diff options
| author | Deepak Saxena <dsaxena@plexity.net> | 2005-08-29 17:46:30 -0400 |
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-08-29 17:46:30 -0400 |
| commit | bdf82b59c5dcf04bbdbd1938eefca14dd9cb44d3 (patch) | |
| tree | 68983f484e96c737cd504ecd08e7bf669a925cec | |
| parent | e605ecd7c8a38f65759c938a235a1b84f41a744e (diff) | |
[ARM] 2836/1: Cleanup IXP4xx GPIO code
Patch from Deepak Saxena
This patch implements the set_irq_type() hooks for configuring GPIO
IRQ type and updates all the platforms to use it instead of the
gpio_line_config() function which is now used to configure input
vs. output on the pins.
Signed-off-by: Deepak Saxena <dsaxena@plexity.net>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
| -rw-r--r-- | arch/arm/mach-ixp4xx/common.c | 155 | ||||
| -rw-r--r-- | arch/arm/mach-ixp4xx/coyote-pci.c | 7 | ||||
| -rw-r--r-- | arch/arm/mach-ixp4xx/gtwx5715-pci.c | 28 | ||||
| -rw-r--r-- | arch/arm/mach-ixp4xx/ixdp425-pci.c | 12 | ||||
| -rw-r--r-- | arch/arm/mach-ixp4xx/ixdpg425-pci.c | 4 | ||||
| -rw-r--r-- | include/asm-arm/arch-ixp4xx/platform.h | 19 |
6 files changed, 91 insertions, 134 deletions
diff --git a/arch/arm/mach-ixp4xx/common.c b/arch/arm/mach-ixp4xx/common.c index 04490a9f8f6e..0422e906cc9a 100644 --- a/arch/arm/mach-ixp4xx/common.c +++ b/arch/arm/mach-ixp4xx/common.c | |||
| @@ -38,90 +38,6 @@ | |||
| 38 | #include <asm/mach/irq.h> | 38 | #include <asm/mach/irq.h> |
| 39 | #include <asm/mach/time.h> | 39 | #include <asm/mach/time.h> |
| 40 | 40 | ||
| 41 | enum ixp4xx_irq_type { | ||
| 42 | IXP4XX_IRQ_LEVEL, IXP4XX_IRQ_EDGE | ||
| 43 | }; | ||
| 44 | static void ixp4xx_config_irq(unsigned irq, enum ixp4xx_irq_type type); | ||
| 45 | |||
| 46 | /************************************************************************* | ||
| 47 | * GPIO acces functions | ||
| 48 | *************************************************************************/ | ||
| 49 | |||
| 50 | /* | ||
| 51 | * Configure GPIO line for input, interrupt, or output operation | ||
| 52 | * | ||
| 53 | * TODO: Enable/disable the irq_desc based on interrupt or output mode. | ||
| 54 | * TODO: Should these be named ixp4xx_gpio_? | ||
| 55 | */ | ||
| 56 | void gpio_line_config(u8 line, u32 style) | ||
| 57 | { | ||
| 58 | static const int gpio2irq[] = { | ||
| 59 | 6, 7, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29 | ||
| 60 | }; | ||
| 61 | u32 enable; | ||
| 62 | volatile u32 *int_reg; | ||
| 63 | u32 int_style; | ||
| 64 | enum ixp4xx_irq_type irq_type; | ||
| 65 | |||
| 66 | enable = *IXP4XX_GPIO_GPOER; | ||
| 67 | |||
| 68 | if (style & IXP4XX_GPIO_OUT) { | ||
| 69 | enable &= ~((1) << line); | ||
| 70 | } else if (style & IXP4XX_GPIO_IN) { | ||
| 71 | enable |= ((1) << line); | ||
| 72 | |||
| 73 | switch (style & IXP4XX_GPIO_INTSTYLE_MASK) | ||
| 74 | { | ||
| 75 | case (IXP4XX_GPIO_ACTIVE_HIGH): | ||
| 76 | int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH; | ||
| 77 | irq_type = IXP4XX_IRQ_LEVEL; | ||
| 78 | break; | ||
| 79 | case (IXP4XX_GPIO_ACTIVE_LOW): | ||
| 80 | int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW; | ||
| 81 | irq_type = IXP4XX_IRQ_LEVEL; | ||
| 82 | break; | ||
| 83 | case (IXP4XX_GPIO_RISING_EDGE): | ||
| 84 | int_style = IXP4XX_GPIO_STYLE_RISING_EDGE; | ||
| 85 | irq_type = IXP4XX_IRQ_EDGE; | ||
| 86 | break; | ||
| 87 | case (IXP4XX_GPIO_FALLING_EDGE): | ||
| 88 | int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE; | ||
| 89 | irq_type = IXP4XX_IRQ_EDGE; | ||
| 90 | break; | ||
| 91 | case (IXP4XX_GPIO_TRANSITIONAL): | ||
| 92 | int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL; | ||
| 93 | irq_type = IXP4XX_IRQ_EDGE; | ||
| 94 | break; | ||
| 95 | default: | ||
| 96 | int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH; | ||
| 97 | irq_type = IXP4XX_IRQ_LEVEL; | ||
| 98 | break; | ||
| 99 | } | ||
| 100 | |||
| 101 | if (style & IXP4XX_GPIO_INTSTYLE_MASK) | ||
| 102 | ixp4xx_config_irq(gpio2irq[line], irq_type); | ||
| 103 | |||
| 104 | if (line >= 8) { /* pins 8-15 */ | ||
| 105 | line -= 8; | ||
| 106 | int_reg = IXP4XX_GPIO_GPIT2R; | ||
| 107 | } | ||
| 108 | else { /* pins 0-7 */ | ||
| 109 | int_reg = IXP4XX_GPIO_GPIT1R; | ||
| 110 | } | ||
| 111 | |||
| 112 | /* Clear the style for the appropriate pin */ | ||
| 113 | *int_reg &= ~(IXP4XX_GPIO_STYLE_CLEAR << | ||
| 114 | (line * IXP4XX_GPIO_STYLE_SIZE)); | ||
| 115 | |||
| 116 | /* Set the new style */ | ||
| 117 | *int_reg |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE)); | ||
| 118 | } | ||
| 119 | |||
| 120 | *IXP4XX_GPIO_GPOER = enable; | ||
| 121 | } | ||
| 122 | |||
| 123 | EXPORT_SYMBOL(gpio_line_config); | ||
| 124 | |||
| 125 | /************************************************************************* | 41 | /************************************************************************* |
| 126 | * IXP4xx chipset I/O mapping | 42 | * IXP4xx chipset I/O mapping |
| 127 | *************************************************************************/ | 43 | *************************************************************************/ |
| @@ -165,6 +81,69 @@ void __init ixp4xx_map_io(void) | |||
| 165 | * (be it PCI or something else) configures that GPIO line | 81 | * (be it PCI or something else) configures that GPIO line |
| 166 | * as an IRQ. | 82 | * as an IRQ. |
| 167 | **************************************************************************/ | 83 | **************************************************************************/ |
| 84 | enum ixp4xx_irq_type { | ||
| 85 | IXP4XX_IRQ_LEVEL, IXP4XX_IRQ_EDGE | ||
| 86 | }; | ||
| 87 | |||
| 88 | static void ixp4xx_config_irq(unsigned irq, enum ixp4xx_irq_type type); | ||
| 89 | |||
| 90 | /* | ||
| 91 | * IRQ -> GPIO mapping table | ||
| 92 | */ | ||
| 93 | static int irq2gpio[32] = { | ||
| 94 | -1, -1, -1, -1, -1, -1, 0, 1, | ||
| 95 | -1, -1, -1, -1, -1, -1, -1, -1, | ||
| 96 | -1, -1, -1, 2, 3, 4, 5, 6, | ||
| 97 | 7, 8, 9, 10, 11, 12, -1, -1, | ||
| 98 | }; | ||
| 99 | |||
| 100 | static int ixp4xx_set_irq_type(unsigned int irq, unsigned int type) | ||
| 101 | { | ||
| 102 | int line = irq2gpio[irq]; | ||
| 103 | u32 int_style; | ||
| 104 | enum ixp4xx_irq_type irq_type; | ||
| 105 | volatile u32 *int_reg; | ||
| 106 | |||
| 107 | /* | ||
| 108 | * Only for GPIO IRQs | ||
| 109 | */ | ||
| 110 | if (line < 0) | ||
| 111 | return -EINVAL; | ||
| 112 | |||
| 113 | if (type & IRQT_BOTHEDGE) { | ||
| 114 | int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL; | ||
| 115 | irq_type = IXP4XX_IRQ_EDGE; | ||
| 116 | } else if (type & IRQT_RISING) { | ||
| 117 | int_style = IXP4XX_GPIO_STYLE_RISING_EDGE; | ||
| 118 | irq_type = IXP4XX_IRQ_EDGE; | ||
| 119 | } else if (type & IRQT_FALLING) { | ||
| 120 | int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE; | ||
| 121 | irq_type = IXP4XX_IRQ_EDGE; | ||
| 122 | } else if (type & IRQT_HIGH) { | ||
| 123 | int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH; | ||
| 124 | irq_type = IXP4XX_IRQ_LEVEL; | ||
| 125 | } else if (type & IRQT_LOW) { | ||
| 126 | int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW; | ||
| 127 | irq_type = IXP4XX_IRQ_LEVEL; | ||
| 128 | } | ||
| 129 | |||
| 130 | ixp4xx_config_irq(irq, irq_type); | ||
| 131 | |||
| 132 | if (line >= 8) { /* pins 8-15 */ | ||
| 133 | line -= 8; | ||
| 134 | int_reg = IXP4XX_GPIO_GPIT2R; | ||
| 135 | } else { /* pins 0-7 */ | ||
| 136 | int_reg = IXP4XX_GPIO_GPIT1R; | ||
| 137 | } | ||
| 138 | |||
| 139 | /* Clear the style for the appropriate pin */ | ||
| 140 | *int_reg &= ~(IXP4XX_GPIO_STYLE_CLEAR << | ||
| 141 | (line * IXP4XX_GPIO_STYLE_SIZE)); | ||
| 142 | |||
| 143 | /* Set the new style */ | ||
| 144 | *int_reg |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE)); | ||
| 145 | } | ||
| 146 | |||
| 168 | static void ixp4xx_irq_mask(unsigned int irq) | 147 | static void ixp4xx_irq_mask(unsigned int irq) |
| 169 | { | 148 | { |
| 170 | if (cpu_is_ixp46x() && irq >= 32) | 149 | if (cpu_is_ixp46x() && irq >= 32) |
| @@ -183,12 +162,6 @@ static void ixp4xx_irq_unmask(unsigned int irq) | |||
| 183 | 162 | ||
| 184 | static void ixp4xx_irq_ack(unsigned int irq) | 163 | static void ixp4xx_irq_ack(unsigned int irq) |
| 185 | { | 164 | { |
| 186 | static int irq2gpio[32] = { | ||
| 187 | -1, -1, -1, -1, -1, -1, 0, 1, | ||
| 188 | -1, -1, -1, -1, -1, -1, -1, -1, | ||
| 189 | -1, -1, -1, 2, 3, 4, 5, 6, | ||
| 190 | 7, 8, 9, 10, 11, 12, -1, -1, | ||
| 191 | }; | ||
| 192 | int line = (irq < 32) ? irq2gpio[irq] : -1; | 165 | int line = (irq < 32) ? irq2gpio[irq] : -1; |
| 193 | 166 | ||
| 194 | if (line >= 0) | 167 | if (line >= 0) |
| @@ -209,12 +182,14 @@ static struct irqchip ixp4xx_irq_level_chip = { | |||
| 209 | .ack = ixp4xx_irq_mask, | 182 | .ack = ixp4xx_irq_mask, |
| 210 | .mask = ixp4xx_irq_mask, | 183 | .mask = ixp4xx_irq_mask, |
| 211 | .unmask = ixp4xx_irq_level_unmask, | 184 | .unmask = ixp4xx_irq_level_unmask, |
| 185 | .type = ixp4xx_set_irq_type | ||
| 212 | }; | 186 | }; |
| 213 | 187 | ||
| 214 | static struct irqchip ixp4xx_irq_edge_chip = { | 188 | static struct irqchip ixp4xx_irq_edge_chip = { |
| 215 | .ack = ixp4xx_irq_ack, | 189 | .ack = ixp4xx_irq_ack, |
| 216 | .mask = ixp4xx_irq_mask, | 190 | .mask = ixp4xx_irq_mask, |
| 217 | .unmask = ixp4xx_irq_unmask, | 191 | .unmask = ixp4xx_irq_unmask, |
| 192 | .type = ixp4xx_set_irq_type | ||
| 218 | }; | 193 | }; |
| 219 | 194 | ||
| 220 | static void ixp4xx_config_irq(unsigned irq, enum ixp4xx_irq_type type) | 195 | static void ixp4xx_config_irq(unsigned irq, enum ixp4xx_irq_type type) |
diff --git a/arch/arm/mach-ixp4xx/coyote-pci.c b/arch/arm/mach-ixp4xx/coyote-pci.c index afafb42ae129..60de8a94cff5 100644 --- a/arch/arm/mach-ixp4xx/coyote-pci.c +++ b/arch/arm/mach-ixp4xx/coyote-pci.c | |||
| @@ -30,11 +30,8 @@ extern struct pci_bus *ixp4xx_scan_bus(int nr, struct pci_sys_data *sys); | |||
| 30 | 30 | ||
| 31 | void __init coyote_pci_preinit(void) | 31 | void __init coyote_pci_preinit(void) |
| 32 | { | 32 | { |
| 33 | gpio_line_config(COYOTE_PCI_SLOT0_PIN, | 33 | set_irq_type(IRQ_COYOTE_PCI_SLOT0, IRQT_LOW); |
| 34 | IXP4XX_GPIO_IN | IXP4XX_GPIO_ACTIVE_LOW); | 34 | set_irq_type(IRQ_COYOTE_PCI_SLOT1, IRQT_LOW); |
| 35 | |||
| 36 | gpio_line_config(COYOTE_PCI_SLOT1_PIN, | ||
| 37 | IXP4XX_GPIO_IN | IXP4XX_GPIO_ACTIVE_LOW); | ||
| 38 | 35 | ||
| 39 | gpio_line_isr_clear(COYOTE_PCI_SLOT0_PIN); | 36 | gpio_line_isr_clear(COYOTE_PCI_SLOT0_PIN); |
| 40 | gpio_line_isr_clear(COYOTE_PCI_SLOT1_PIN); | 37 | gpio_line_isr_clear(COYOTE_PCI_SLOT1_PIN); |
diff --git a/arch/arm/mach-ixp4xx/gtwx5715-pci.c b/arch/arm/mach-ixp4xx/gtwx5715-pci.c index b18035824e3e..a66484b63d36 100644 --- a/arch/arm/mach-ixp4xx/gtwx5715-pci.c +++ b/arch/arm/mach-ixp4xx/gtwx5715-pci.c | |||
| @@ -35,26 +35,20 @@ extern void ixp4xx_pci_preinit(void); | |||
| 35 | extern int ixp4xx_setup(int nr, struct pci_sys_data *sys); | 35 | extern int ixp4xx_setup(int nr, struct pci_sys_data *sys); |
| 36 | extern struct pci_bus *ixp4xx_scan_bus(int nr, struct pci_sys_data *sys); | 36 | extern struct pci_bus *ixp4xx_scan_bus(int nr, struct pci_sys_data *sys); |
| 37 | 37 | ||
| 38 | /* | ||
| 39 | * The exact GPIO pins and IRQs are defined in arch-ixp4xx/gtwx5715.h | ||
| 40 | * Slot 0 isn't actually populated with a card connector but | ||
| 41 | * we initialize it anyway in case a future version has the | ||
| 42 | * slot populated or someone with good soldering skills has | ||
| 43 | * some free time. | ||
| 44 | */ | ||
| 45 | |||
| 46 | |||
| 47 | static void gtwx5715_init_gpio(u8 pin, u32 style) | ||
| 48 | { | ||
| 49 | gpio_line_config(pin, style | IXP4XX_GPIO_ACTIVE_LOW); | ||
| 50 | |||
| 51 | if (style & IXP4XX_GPIO_IN) gpio_line_isr_clear(pin); | ||
| 52 | } | ||
| 53 | 38 | ||
| 39 | /* | ||
| 40 | * The exact GPIO pins and IRQs are defined in arch-ixp4xx/gtwx5715.h | ||
| 41 | * Slot 0 isn't actually populated with a card connector but | ||
| 42 | * we initialize it anyway in case a future version has the | ||
| 43 | * slot populated or someone with good soldering skills has | ||
| 44 | * some free time. | ||
| 45 | */ | ||
| 54 | void __init gtwx5715_pci_preinit(void) | 46 | void __init gtwx5715_pci_preinit(void) |
| 55 | { | 47 | { |
| 56 | gtwx5715_init_gpio(GTWX5715_PCI_SLOT0_INTA_GPIO, IXP4XX_GPIO_IN); | 48 | set_irq_type(GTWX5715_PCI_SLOT0_INTA_IRQ, IRQT_LOW); |
| 57 | gtwx5715_init_gpio(GTWX5715_PCI_SLOT1_INTA_GPIO, IXP4XX_GPIO_IN); | 49 | set_irq_type(GTWX5715_PCI_SLOT0_INTB_IRQ, IRQT_LOW); |
| 50 | set_irq_type(GTWX5715_PCI_SLOT1_INTA_IRQ, IRQT_LOW); | ||
| 51 | set_irq_type(GTWX5715_PCI_SLOT1_INTB_IRQ, IRQT_LOW); | ||
| 58 | 52 | ||
| 59 | ixp4xx_pci_preinit(); | 53 | ixp4xx_pci_preinit(); |
| 60 | } | 54 | } |
diff --git a/arch/arm/mach-ixp4xx/ixdp425-pci.c b/arch/arm/mach-ixp4xx/ixdp425-pci.c index c2ab9ebb5980..f9a1d3e7d692 100644 --- a/arch/arm/mach-ixp4xx/ixdp425-pci.c +++ b/arch/arm/mach-ixp4xx/ixdp425-pci.c | |||
| @@ -27,14 +27,10 @@ | |||
| 27 | 27 | ||
| 28 | void __init ixdp425_pci_preinit(void) | 28 | void __init ixdp425_pci_preinit(void) |
| 29 | { | 29 | { |
| 30 | gpio_line_config(IXDP425_PCI_INTA_PIN, | 30 | set_irq_type(IRQ_IXDP425_PCI_INTA, IRQT_LOW); |
| 31 | IXP4XX_GPIO_IN | IXP4XX_GPIO_ACTIVE_LOW); | 31 | set_irq_type(IRQ_IXDP425_PCI_INTB, IRQT_LOW); |
| 32 | gpio_line_config(IXDP425_PCI_INTB_PIN, | 32 | set_irq_type(IRQ_IXDP425_PCI_INTC, IRQT_LOW); |
| 33 | IXP4XX_GPIO_IN | IXP4XX_GPIO_ACTIVE_LOW); | 33 | set_irq_type(IRQ_IXDP425_PCI_INTD, IRQT_LOW); |
| 34 | gpio_line_config(IXDP425_PCI_INTC_PIN, | ||
| 35 | IXP4XX_GPIO_IN | IXP4XX_GPIO_ACTIVE_LOW); | ||
| 36 | gpio_line_config(IXDP425_PCI_INTD_PIN, | ||
| 37 | IXP4XX_GPIO_IN | IXP4XX_GPIO_ACTIVE_LOW); | ||
| 38 | 34 | ||
| 39 | gpio_line_isr_clear(IXDP425_PCI_INTA_PIN); | 35 | gpio_line_isr_clear(IXDP425_PCI_INTA_PIN); |
| 40 | gpio_line_isr_clear(IXDP425_PCI_INTB_PIN); | 36 | gpio_line_isr_clear(IXDP425_PCI_INTB_PIN); |
diff --git a/arch/arm/mach-ixp4xx/ixdpg425-pci.c b/arch/arm/mach-ixp4xx/ixdpg425-pci.c index ce4563f00676..fe5e7660de1d 100644 --- a/arch/arm/mach-ixp4xx/ixdpg425-pci.c +++ b/arch/arm/mach-ixp4xx/ixdpg425-pci.c | |||
| @@ -29,8 +29,8 @@ extern struct pci_bus *ixp4xx_scan_bus(int nr, struct pci_sys_data *sys); | |||
| 29 | 29 | ||
| 30 | void __init ixdpg425_pci_preinit(void) | 30 | void __init ixdpg425_pci_preinit(void) |
| 31 | { | 31 | { |
| 32 | gpio_line_config(6, IXP4XX_GPIO_IN | IXP4XX_GPIO_ACTIVE_LOW); | 32 | set_irq_type(IRQ_IXP4XX_GPIO6, IRQT_LOW); |
| 33 | gpio_line_config(7, IXP4XX_GPIO_IN | IXP4XX_GPIO_ACTIVE_LOW); | 33 | set_irq_type(IRQ_IXP4XX_GPIO7, IRQT_LOW); |
| 34 | 34 | ||
| 35 | gpio_line_isr_clear(6); | 35 | gpio_line_isr_clear(6); |
| 36 | gpio_line_isr_clear(7); | 36 | gpio_line_isr_clear(7); |
diff --git a/include/asm-arm/arch-ixp4xx/platform.h b/include/asm-arm/arch-ixp4xx/platform.h index 3a626c03ea26..d13ee7f78c70 100644 --- a/include/asm-arm/arch-ixp4xx/platform.h +++ b/include/asm-arm/arch-ixp4xx/platform.h | |||
| @@ -83,17 +83,6 @@ extern struct pci_bus *ixp4xx_scan_bus(int nr, struct pci_sys_data *sys); | |||
| 83 | #define IXP4XX_GPIO_OUT 0x1 | 83 | #define IXP4XX_GPIO_OUT 0x1 |
| 84 | #define IXP4XX_GPIO_IN 0x2 | 84 | #define IXP4XX_GPIO_IN 0x2 |
| 85 | 85 | ||
| 86 | #define IXP4XX_GPIO_INTSTYLE_MASK 0x7C /* Bits [6:2] define interrupt style */ | ||
| 87 | |||
| 88 | /* | ||
| 89 | * GPIO interrupt types. | ||
| 90 | */ | ||
| 91 | #define IXP4XX_GPIO_ACTIVE_HIGH 0x4 /* Default */ | ||
| 92 | #define IXP4XX_GPIO_ACTIVE_LOW 0x8 | ||
| 93 | #define IXP4XX_GPIO_RISING_EDGE 0x10 | ||
| 94 | #define IXP4XX_GPIO_FALLING_EDGE 0x20 | ||
| 95 | #define IXP4XX_GPIO_TRANSITIONAL 0x40 | ||
| 96 | |||
| 97 | /* GPIO signal types */ | 86 | /* GPIO signal types */ |
| 98 | #define IXP4XX_GPIO_LOW 0 | 87 | #define IXP4XX_GPIO_LOW 0 |
| 99 | #define IXP4XX_GPIO_HIGH 1 | 88 | #define IXP4XX_GPIO_HIGH 1 |
| @@ -102,7 +91,13 @@ extern struct pci_bus *ixp4xx_scan_bus(int nr, struct pci_sys_data *sys); | |||
| 102 | #define IXP4XX_GPIO_CLK_0 14 | 91 | #define IXP4XX_GPIO_CLK_0 14 |
| 103 | #define IXP4XX_GPIO_CLK_1 15 | 92 | #define IXP4XX_GPIO_CLK_1 15 |
| 104 | 93 | ||
| 105 | extern void gpio_line_config(u8 line, u32 style); | 94 | static inline void gpio_line_config(u8 line, u32 direction) |
| 95 | { | ||
| 96 | if (direction == IXP4XX_GPIO_OUT) | ||
| 97 | *IXP4XX_GPIO_GPOER |= (1 << line); | ||
| 98 | else | ||
| 99 | *IXP4XX_GPIO_GPOER &= ~(1 << line); | ||
| 100 | } | ||
| 106 | 101 | ||
| 107 | static inline void gpio_line_get(u8 line, int *value) | 102 | static inline void gpio_line_get(u8 line, int *value) |
| 108 | { | 103 | { |
