/src/sys/dev/gpio/ |
gpiobutton.c | 90 const u_int type = __SHIFTOUT(ga->ga_flags, GPIOBUTTON_TYPE_MASK); 109 const u_int type = __SHIFTOUT(ga->ga_flags, GPIOBUTTON_TYPE_MASK); 110 const u_int pol = __SHIFTOUT(ga->ga_flags, GPIOBUTTON_POLARITY_MASK);
|
gpiovar.h | 82 uint32_t ga_flags; /* driver-specific flags */ member in struct:gpio_attach_args
|
gpio.c | 311 ga.ga_flags = cf->cf_loc[GPIOCF_FLAG]; 752 ga.ga_flags = 0; 852 ga.ga_flags = attach->ga_flags; 860 * GPIOATTACH50 ioctl(2), which had not the ga_flags field 887 /* Don't access attach->ga_flags here. */ 893 ga.ga_dvname, ga.ga_offset, ga.ga_mask, ga.ga_flags)); 897 locs[GPIOCF_FLAG] = ga.ga_flags;
|
gpiopps.c | 149 * trigger ASSERT and CLEAR signals, unless 0x2 is set in ga_flags, 154 * If 0x1 is set in ga_flags, ASSERT is negative edge, otherwise 161 if (ga->ga_flags & GPIOPPS_FLAGS_ASSERT_NEG_EDGE) { 243 (ga->ga_flags & GPIOPPS_FLAGS_NO_DOUBLE_EDGE) == 0) {
|
gpioirq.c | 183 if (ga->ga_flags & GPIOIRQ_FLAGS_VERBOSE) 186 irqmode = ga->ga_flags & GPIOIRQ_FLAGS_IRQMODE;
|
gpioiic.c | 127 if (ga->ga_flags & GPIOIIC_PIN_REVERSE) {
|
/src/usr.sbin/gpioctl/ |
gpioctl.c | 91 uint32_t ga_flags = 0; local in function:main 160 ga_flags = lval; 162 devattach(driver, ga_offset, ga_mask, ga_flags); 380 attach.ga_flags = flags;
|
/src/sys/sys/ |
gpio.h | 108 uint32_t ga_flags; /* driver dependent flags */ member in struct:gpio_attach
|
/src/lib/lua/gpio/ |
gpio.c | 218 attach.ga_flags = (int)luaL_checkinteger(L, 5); 220 attach.ga_flags = 0;
|