HomeSort by: relevance | last modified time | path
    Searched refs:GPIO_PIN_HIGH (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/sys/arch/evbarm/netwalker/
netwalker_spi.c 85 imxgpio_data_write(GPIO_NO(4, 24), GPIO_PIN_HIGH);
89 imxgpio_data_write(GPIO_NO(4, 25), GPIO_PIN_HIGH);
93 imxgpio_data_write(GPIO_NO(3, 0), GPIO_PIN_HIGH);
132 imxgpio_data_write(GPIO_NO(4, 24), GPIO_PIN_HIGH);
136 imxgpio_data_write(GPIO_NO(4, 25), GPIO_PIN_HIGH);
145 imxgpio_data_write(GPIO_NO(3, 0), GPIO_PIN_HIGH);
netwalker_lcd.c 150 imxgpio_data_write(GPIO_NO(3, 3), GPIO_PIN_HIGH);
151 imxgpio_data_write(GPIO_NO(4, 9), GPIO_PIN_HIGH);
153 imxgpio_data_write(GPIO_NO(4, 10), GPIO_PIN_HIGH);
156 imxgpio_data_write(GPIO_NO(2, 13), GPIO_PIN_HIGH);
netwalker_usb.c 151 imxgpio_data_write(GPIO_NO(1, 27), GPIO_PIN_HIGH);
184 imxgpio_data_write(GPIO_NO(1, 7), GPIO_PIN_HIGH);
188 imxgpio_data_write(GPIO_NO(3, 1), GPIO_PIN_HIGH);
197 imxgpio_data_write(GPIO_NO(2, 5), GPIO_PIN_HIGH);
netwalker_lid.c 171 event = (lid == GPIO_PIN_HIGH) ?
netwalker_pwr.c 173 event = (pwr == GPIO_PIN_HIGH) ?
  /src/sys/arch/zaurus/dev/
ioexp.c 229 GPIO_PIN_HIGH, true);
241 GPIO_PIN_HIGH, true);
274 ioexp_gpio_pin_write(sc, IOEXP_IR_ON, GPIO_PIN_HIGH,
303 ioexp_gpio_pin_write(sc, IOEXP_MIC_BIAS, GPIO_PIN_HIGH,
336 GPIO_PIN_HIGH, true);
scoop.c 239 scoop_gpio_pin_write(sc, SCOOP0_MUTE_L, GPIO_PIN_HIGH);
240 scoop_gpio_pin_write(sc, SCOOP0_MUTE_R, GPIO_PIN_HIGH);
264 scoop_gpio_pin_write(sc, SCOOP0_AMP_ON, GPIO_PIN_HIGH);
  /src/sys/dev/gpio/
gpiopwm.c 182 gpio_pin_write(sc->sc_gpio, &sc->sc_map, 0, GPIO_PIN_HIGH);
209 gpio_pin_write(sc->sc_gpio, &sc->sc_map, 0, GPIO_PIN_HIGH);
221 if (gpio_pin_read(sc->sc_gpio, &sc->sc_map, 0) == GPIO_PIN_HIGH) {
225 gpio_pin_write(sc->sc_gpio, &sc->sc_map, 0, GPIO_PIN_HIGH);
gpioiic.c 255 bits & GPIOIIC_SDA ? GPIO_PIN_HIGH : GPIO_PIN_LOW);
257 bits & GPIOIIC_SCL ? GPIO_PIN_HIGH : GPIO_PIN_LOW);
284 sc->sc_pin_sda) == GPIO_PIN_HIGH)
287 sc->sc_pin_scl) == GPIO_PIN_HIGH)
gpiolock.c 173 GPIO_PIN_HIGH)
gpioow.c 246 GPIO_PIN_HIGH ? 1 : 0);
255 value ? GPIO_PIN_HIGH : GPIO_PIN_LOW);
  /src/sys/arch/mips/adm5120/dev/
admgpio.c 91 return ((gpio0 & mask) != 0) ? GPIO_PIN_HIGH : GPIO_PIN_LOW;
106 (value == GPIO_PIN_HIGH) ? (gpio0 | mask) : (gpio0 & ~mask));
  /src/sys/dev/isa/
soekrisgpio.c 201 return (data & (1 << pin)) ? GPIO_PIN_HIGH : GPIO_PIN_LOW;
214 else if (value == GPIO_PIN_HIGH)
245 return (value & 0x1) ? GPIO_PIN_HIGH : GPIO_PIN_LOW;
  /src/sys/sys/
gpio.h 28 #define GPIO_PIN_HIGH 0x01 /* high level (logical 1) */
  /src/lib/lua/gpio/
gpio.c 179 if (val != GPIO_PIN_HIGH && val != GPIO_PIN_LOW)
235 { "PIN_HIGH", GPIO_PIN_HIGH },
  /src/sys/arch/mips/alchemy/dev/
augpio.c 161 return GPIO_PIN_HIGH;
211 return GPIO_PIN_HIGH;
  /src/sys/dev/tc/
tcu.c 230 return (v & (UINT32_C(1) << pin)) ? GPIO_PIN_HIGH : GPIO_PIN_LOW;
245 else if (val == GPIO_PIN_HIGH)
  /src/sys/arch/emips/ebus/
gpio_ebus.c 112 (data & (1 << i)) ? GPIO_PIN_HIGH : GPIO_PIN_LOW;
  /src/sys/dev/fdt/
fdt_pinctrl.c 308 pinval = GPIO_PIN_HIGH;
  /src/sys/dev/usb/
umcpmio_subr.c 733 r = GPIO_PIN_HIGH;
739 r = GPIO_PIN_HIGH;
745 r = GPIO_PIN_HIGH;
751 r = GPIO_PIN_HIGH;
  /src/usr.sbin/gpioctl/
gpioctl.c 196 value = GPIO_PIN_HIGH;
271 if (value == GPIO_PIN_HIGH || value == GPIO_PIN_LOW) {
  /src/sys/dev/ic/
mcp23xxxgpio.c 195 val = data & __BIT(epin) ? GPIO_PIN_HIGH : GPIO_PIN_LOW;
219 if (value == GPIO_PIN_HIGH) {
  /src/sys/arch/arm/marvell/
mvsocgpp.c 213 (valin & mask) ? GPIO_PIN_HIGH : GPIO_PIN_LOW;
217 (valout & mask) ? GPIO_PIN_HIGH : GPIO_PIN_LOW;
  /src/sys/arch/arm/broadcom/
bcm2835_gpio.c 744 GPIO_PIN_HIGH : GPIO_PIN_LOW;
747 pin, (res == GPIO_PIN_HIGH)));
758 if (value == GPIO_PIN_HIGH) {
768 pin, (value == GPIO_PIN_HIGH)));
  /src/sys/arch/mips/atheros/dev/
argpio.c 254 GPIO_PIN_HIGH : GPIO_PIN_LOW);

Completed in 21 milliseconds

1 2