Searched refs:gpch (Results 1 – 3 of 3) sorted by relevance
/linux-6.1.9/drivers/gpio/ |
D | gpio-rdc321x.c | 32 struct rdc321x_gpio *gpch; in rdc_gpio_get_value() local 36 gpch = gpiochip_get_data(chip); in rdc_gpio_get_value() 37 reg = gpio < 32 ? gpch->reg1_data_base : gpch->reg2_data_base; in rdc_gpio_get_value() 39 spin_lock(&gpch->lock); in rdc_gpio_get_value() 40 pci_write_config_dword(gpch->sb_pdev, reg, in rdc_gpio_get_value() 41 gpch->data_reg[gpio < 32 ? 0 : 1]); in rdc_gpio_get_value() 42 pci_read_config_dword(gpch->sb_pdev, reg, &value); in rdc_gpio_get_value() 43 spin_unlock(&gpch->lock); in rdc_gpio_get_value() 51 struct rdc321x_gpio *gpch; in rdc_gpio_set_value_impl() local 54 gpch = gpiochip_get_data(chip); in rdc_gpio_set_value_impl() [all …]
|
/linux-6.1.9/arch/mips/ar7/ |
D | gpio.c | 24 struct ar7_gpio_chip *gpch = gpiochip_get_data(chip); in ar7_gpio_get_value() local 25 void __iomem *gpio_in = gpch->regs + AR7_GPIO_INPUT; in ar7_gpio_get_value() 32 struct ar7_gpio_chip *gpch = gpiochip_get_data(chip); in titan_gpio_get_value() local 33 void __iomem *gpio_in0 = gpch->regs + TITAN_GPIO_INPUT_0; in titan_gpio_get_value() 34 void __iomem *gpio_in1 = gpch->regs + TITAN_GPIO_INPUT_1; in titan_gpio_get_value() 42 struct ar7_gpio_chip *gpch = gpiochip_get_data(chip); in ar7_gpio_set_value() local 43 void __iomem *gpio_out = gpch->regs + AR7_GPIO_OUTPUT; in ar7_gpio_set_value() 55 struct ar7_gpio_chip *gpch = gpiochip_get_data(chip); in titan_gpio_set_value() local 56 void __iomem *gpio_out0 = gpch->regs + TITAN_GPIO_OUTPUT_0; in titan_gpio_set_value() 57 void __iomem *gpio_out1 = gpch->regs + TITAN_GPIO_OUTPUT_1; in titan_gpio_set_value() [all …]
|
/linux-6.1.9/arch/mips/rb532/ |
D | gpio.c | 99 struct rb532_gpio_chip *gpch; in rb532_gpio_get() local 101 gpch = gpiochip_get_data(chip); in rb532_gpio_get() 102 return !!rb532_get_bit(offset, gpch->regbase + GPIOD); in rb532_gpio_get() 111 struct rb532_gpio_chip *gpch; in rb532_gpio_set() local 113 gpch = gpiochip_get_data(chip); in rb532_gpio_set() 114 rb532_set_bit(value, offset, gpch->regbase + GPIOD); in rb532_gpio_set() 122 struct rb532_gpio_chip *gpch; in rb532_gpio_direction_input() local 124 gpch = gpiochip_get_data(chip); in rb532_gpio_direction_input() 127 rb532_set_bit(0, offset, gpch->regbase + GPIOFUNC); in rb532_gpio_direction_input() 129 rb532_set_bit(0, offset, gpch->regbase + GPIOCFG); in rb532_gpio_direction_input() [all …]
|