Home
last modified time | relevance | path

Searched refs:gpch (Results 1 – 3 of 3) sorted by relevance

/Linux-v4.19/drivers/gpio/
Dgpio-rdc321x.c46 struct rdc321x_gpio *gpch; in rdc_gpio_get_value() local
50 gpch = gpiochip_get_data(chip); in rdc_gpio_get_value()
51 reg = gpio < 32 ? gpch->reg1_data_base : gpch->reg2_data_base; in rdc_gpio_get_value()
53 spin_lock(&gpch->lock); in rdc_gpio_get_value()
54 pci_write_config_dword(gpch->sb_pdev, reg, in rdc_gpio_get_value()
55 gpch->data_reg[gpio < 32 ? 0 : 1]); in rdc_gpio_get_value()
56 pci_read_config_dword(gpch->sb_pdev, reg, &value); in rdc_gpio_get_value()
57 spin_unlock(&gpch->lock); in rdc_gpio_get_value()
65 struct rdc321x_gpio *gpch; in rdc_gpio_set_value_impl() local
68 gpch = gpiochip_get_data(chip); in rdc_gpio_set_value_impl()
[all …]
/Linux-v4.19/arch/mips/ar7/
Dgpio.c37 struct ar7_gpio_chip *gpch = gpiochip_get_data(chip); in ar7_gpio_get_value() local
38 void __iomem *gpio_in = gpch->regs + AR7_GPIO_INPUT; in ar7_gpio_get_value()
45 struct ar7_gpio_chip *gpch = gpiochip_get_data(chip); in titan_gpio_get_value() local
46 void __iomem *gpio_in0 = gpch->regs + TITAN_GPIO_INPUT_0; in titan_gpio_get_value()
47 void __iomem *gpio_in1 = gpch->regs + TITAN_GPIO_INPUT_1; in titan_gpio_get_value()
55 struct ar7_gpio_chip *gpch = gpiochip_get_data(chip); in ar7_gpio_set_value() local
56 void __iomem *gpio_out = gpch->regs + AR7_GPIO_OUTPUT; in ar7_gpio_set_value()
68 struct ar7_gpio_chip *gpch = gpiochip_get_data(chip); in titan_gpio_set_value() local
69 void __iomem *gpio_out0 = gpch->regs + TITAN_GPIO_OUTPUT_0; in titan_gpio_set_value()
70 void __iomem *gpio_out1 = gpch->regs + TITAN_GPIO_OUTPUT_1; in titan_gpio_set_value()
[all …]
/Linux-v4.19/arch/mips/rb532/
Dgpio.c89 struct rb532_gpio_chip *gpch; in rb532_gpio_get() local
91 gpch = gpiochip_get_data(chip); in rb532_gpio_get()
92 return !!rb532_get_bit(offset, gpch->regbase + GPIOD); in rb532_gpio_get()
101 struct rb532_gpio_chip *gpch; in rb532_gpio_set() local
103 gpch = gpiochip_get_data(chip); in rb532_gpio_set()
104 rb532_set_bit(value, offset, gpch->regbase + GPIOD); in rb532_gpio_set()
112 struct rb532_gpio_chip *gpch; in rb532_gpio_direction_input() local
114 gpch = gpiochip_get_data(chip); in rb532_gpio_direction_input()
117 rb532_set_bit(0, offset, gpch->regbase + GPIOFUNC); in rb532_gpio_direction_input()
119 rb532_set_bit(0, offset, gpch->regbase + GPIOCFG); in rb532_gpio_direction_input()
[all …]