Searched refs:gpiodir (Results 1 – 12 of 12) sorted by relevance
| /OK3568_Linux_fs/kernel/drivers/gpio/ |
| H A D | gpio-zx.c | 51 u16 gpiodir; in zx_direction_input() local 57 gpiodir = readw_relaxed(chip->base + ZX_GPIO_DIR); in zx_direction_input() 58 gpiodir &= ~BIT(offset); in zx_direction_input() 59 writew_relaxed(gpiodir, chip->base + ZX_GPIO_DIR); in zx_direction_input() 70 u16 gpiodir; in zx_direction_output() local 76 gpiodir = readw_relaxed(chip->base + ZX_GPIO_DIR); in zx_direction_output() 77 gpiodir |= BIT(offset); in zx_direction_output() 78 writew_relaxed(gpiodir, chip->base + ZX_GPIO_DIR); in zx_direction_output()
|
| H A D | gpio-pl061.c | 77 unsigned char gpiodir; in pl061_direction_input() local 80 gpiodir = readb(pl061->base + GPIODIR); in pl061_direction_input() 81 gpiodir &= ~(BIT(offset)); in pl061_direction_input() 82 writeb(gpiodir, pl061->base + GPIODIR); in pl061_direction_input() 93 unsigned char gpiodir; in pl061_direction_output() local 97 gpiodir = readb(pl061->base + GPIODIR); in pl061_direction_output() 98 gpiodir |= BIT(offset); in pl061_direction_output() 99 writeb(gpiodir, pl061->base + GPIODIR); in pl061_direction_output()
|
| /OK3568_Linux_fs/u-boot/drivers/gpio/ |
| H A D | xilinx_gpio.c | 24 u32 gpiodir; member 129 val = readl(®s->gpiodir); in gpio_set_direction() 137 writel(val, ®s->gpiodir); in gpio_set_direction() 157 val = readl(®s->gpiodir); in gpio_get_direction()
|
| H A D | spear_gpio.c | 23 val = readl(®s->gpiodir); in gpio_direction() 30 writel(val, ®s->gpiodir); in gpio_direction()
|
| /OK3568_Linux_fs/u-boot/arch/arm/include/asm/arch-spear/ |
| H A D | gpio.h | 18 u32 gpiodir; /* 0x400 */ member
|
| /OK3568_Linux_fs/u-boot/board/freescale/common/ |
| H A D | ngpixis.h | 27 u8 gpiodir; member
|
| /OK3568_Linux_fs/kernel/sound/pci/ice1712/ |
| H A D | hoontech.c | 324 ice->gpio.direction = ice->eeprom.gpiodir; in snd_ice1712_ez8_init() 326 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DIRECTION, ice->eeprom.gpiodir); in snd_ice1712_ez8_init()
|
| H A D | delta.c | 621 ice->eeprom.gpiodir == 0x7b) in snd_ice1712_delta_init() 625 ice->eeprom.gpiodir == 0xfb) in snd_ice1712_delta_init()
|
| H A D | ice1712.h | 220 unsigned int gpiodir; member
|
| H A D | ice1724.c | 1528 ice->eeprom.gpiodir); in snd_vt1724_proc_read() 2359 ice->eeprom.gpiodir = eeprom_triple(ice, ICE_EEP2_GPIO_DIR); in snd_vt1724_read_eeprom() 2384 ice->gpio.direction = ice->eeprom.gpiodir; in snd_vt1724_chip_init() 2386 snd_vt1724_set_gpio_dir(ice, ice->eeprom.gpiodir); in snd_vt1724_chip_init()
|
| H A D | ice1712.c | 1540 snd_iprintf(buffer, " GPIO direction : 0x%x\n", ice->eeprom.gpiodir); in snd_ice1712_proc_read() 2311 ice->eeprom.gpiodir = ice->eeprom.data[ICE_EEP1_GPIO_DIR]; in snd_ice1712_read_eeprom() 2338 ice->gpio.direction = ice->eeprom.gpiodir; in snd_ice1712_chip_init() 2342 ice->eeprom.gpiodir); in snd_ice1712_chip_init()
|
| /OK3568_Linux_fs/kernel/sound/pci/hda/ |
| H A D | patch_sigmatel.c | 292 unsigned int gpiostate, gpiomask, gpiodir; in stac_gpio_set() local 305 gpiodir = snd_hda_codec_read(codec, fg, 0, in stac_gpio_set() 307 gpiodir |= dir_mask; in stac_gpio_set() 315 AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */ in stac_gpio_set()
|