Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 1 | /* |
Bo Shen | 39b787e | 2013-08-13 14:38:32 +0800 | [diff] [blame] | 2 | * Copyright (C) 2013 Bo Shen <voice.shen@atmel.com> |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2009 Jens Scharsig (js_at_ng@scharsoft.de) |
| 5 | * |
| 6 | * Copyright (C) 2005 HP Labs |
| 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <config.h> |
| 12 | #include <common.h> |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 13 | #include <dm.h> |
Reinhard Meyer | 86592f6 | 2010-11-07 13:26:14 +0100 | [diff] [blame] | 14 | #include <asm/io.h> |
Alexey Brodkin | 1ace402 | 2014-02-26 17:47:58 +0400 | [diff] [blame] | 15 | #include <linux/sizes.h> |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 16 | #include <asm/gpio.h> |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 17 | #include <asm/arch/hardware.h> |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 18 | #include <asm/arch/at91_pio.h> |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 19 | |
| 20 | #define GPIO_PER_BANK 32 |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 21 | |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 22 | static struct at91_port *at91_pio_get_port(unsigned port) |
| 23 | { |
| 24 | switch (port) { |
| 25 | case AT91_PIO_PORTA: |
| 26 | return (struct at91_port *)ATMEL_BASE_PIOA; |
| 27 | case AT91_PIO_PORTB: |
| 28 | return (struct at91_port *)ATMEL_BASE_PIOB; |
| 29 | case AT91_PIO_PORTC: |
| 30 | return (struct at91_port *)ATMEL_BASE_PIOC; |
| 31 | #if (ATMEL_PIO_PORTS > 3) |
| 32 | case AT91_PIO_PORTD: |
| 33 | return (struct at91_port *)ATMEL_BASE_PIOD; |
| 34 | #if (ATMEL_PIO_PORTS > 4) |
| 35 | case AT91_PIO_PORTE: |
| 36 | return (struct at91_port *)ATMEL_BASE_PIOE; |
| 37 | #endif |
| 38 | #endif |
| 39 | default: |
Wu, Josh | 7d82d89 | 2014-05-07 16:50:45 +0800 | [diff] [blame] | 40 | printf("Error: at91_gpio: Fail to get PIO base!\n"); |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 41 | return NULL; |
| 42 | } |
| 43 | } |
| 44 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 45 | static void at91_set_port_pullup(struct at91_port *at91_port, unsigned offset, |
| 46 | int use_pullup) |
| 47 | { |
| 48 | u32 mask; |
| 49 | |
| 50 | mask = 1 << offset; |
| 51 | if (use_pullup) |
| 52 | writel(mask, &at91_port->puer); |
| 53 | else |
| 54 | writel(mask, &at91_port->pudr); |
| 55 | writel(mask, &at91_port->per); |
| 56 | } |
| 57 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 58 | int at91_set_pio_pullup(unsigned port, unsigned pin, int use_pullup) |
| 59 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 60 | struct at91_port *at91_port = at91_pio_get_port(port); |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 61 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 62 | if (at91_port && (pin < GPIO_PER_BANK)) |
| 63 | at91_set_port_pullup(at91_port, pin, use_pullup); |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 64 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 65 | return 0; |
| 66 | } |
| 67 | |
| 68 | /* |
| 69 | * mux the pin to the "GPIO" peripheral role. |
| 70 | */ |
| 71 | int at91_set_pio_periph(unsigned port, unsigned pin, int use_pullup) |
| 72 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 73 | struct at91_port *at91_port = at91_pio_get_port(port); |
| 74 | u32 mask; |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 75 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 76 | if (at91_port && (pin < GPIO_PER_BANK)) { |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 77 | mask = 1 << pin; |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 78 | writel(mask, &at91_port->idr); |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 79 | at91_set_pio_pullup(port, pin, use_pullup); |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 80 | writel(mask, &at91_port->per); |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 81 | } |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 82 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 83 | return 0; |
| 84 | } |
| 85 | |
| 86 | /* |
| 87 | * mux the pin to the "A" internal peripheral role. |
| 88 | */ |
| 89 | int at91_set_a_periph(unsigned port, unsigned pin, int use_pullup) |
| 90 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 91 | struct at91_port *at91_port = at91_pio_get_port(port); |
| 92 | u32 mask; |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 93 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 94 | if (at91_port && (pin < GPIO_PER_BANK)) { |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 95 | mask = 1 << pin; |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 96 | writel(mask, &at91_port->idr); |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 97 | at91_set_pio_pullup(port, pin, use_pullup); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 98 | #if defined(CPU_HAS_PIO3) |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 99 | writel(readl(&at91_port->abcdsr1) & ~mask, |
| 100 | &at91_port->abcdsr1); |
| 101 | writel(readl(&at91_port->abcdsr2) & ~mask, |
| 102 | &at91_port->abcdsr2); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 103 | #else |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 104 | writel(mask, &at91_port->asr); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 105 | #endif |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 106 | writel(mask, &at91_port->pdr); |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 107 | } |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 108 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 109 | return 0; |
| 110 | } |
| 111 | |
| 112 | /* |
| 113 | * mux the pin to the "B" internal peripheral role. |
| 114 | */ |
| 115 | int at91_set_b_periph(unsigned port, unsigned pin, int use_pullup) |
| 116 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 117 | struct at91_port *at91_port = at91_pio_get_port(port); |
| 118 | u32 mask; |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 119 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 120 | if (at91_port && (pin < GPIO_PER_BANK)) { |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 121 | mask = 1 << pin; |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 122 | writel(mask, &at91_port->idr); |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 123 | at91_set_pio_pullup(port, pin, use_pullup); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 124 | #if defined(CPU_HAS_PIO3) |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 125 | writel(readl(&at91_port->abcdsr1) | mask, |
| 126 | &at91_port->abcdsr1); |
| 127 | writel(readl(&at91_port->abcdsr2) & ~mask, |
| 128 | &at91_port->abcdsr2); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 129 | #else |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 130 | writel(mask, &at91_port->bsr); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 131 | #endif |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 132 | writel(mask, &at91_port->pdr); |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 133 | } |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 134 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 135 | return 0; |
| 136 | } |
| 137 | |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 138 | #if defined(CPU_HAS_PIO3) |
| 139 | /* |
| 140 | * mux the pin to the "C" internal peripheral role. |
| 141 | */ |
| 142 | int at91_set_c_periph(unsigned port, unsigned pin, int use_pullup) |
| 143 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 144 | struct at91_port *at91_port = at91_pio_get_port(port); |
| 145 | u32 mask; |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 146 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 147 | if (at91_port && (pin < GPIO_PER_BANK)) { |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 148 | mask = 1 << pin; |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 149 | writel(mask, &at91_port->idr); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 150 | at91_set_pio_pullup(port, pin, use_pullup); |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 151 | writel(readl(&at91_port->abcdsr1) & ~mask, |
| 152 | &at91_port->abcdsr1); |
| 153 | writel(readl(&at91_port->abcdsr2) | mask, |
| 154 | &at91_port->abcdsr2); |
| 155 | writel(mask, &at91_port->pdr); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 156 | } |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 157 | |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 158 | return 0; |
| 159 | } |
| 160 | |
| 161 | /* |
| 162 | * mux the pin to the "D" internal peripheral role. |
| 163 | */ |
| 164 | int at91_set_d_periph(unsigned port, unsigned pin, int use_pullup) |
| 165 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 166 | struct at91_port *at91_port = at91_pio_get_port(port); |
| 167 | u32 mask; |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 168 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 169 | if (at91_port && (pin < GPIO_PER_BANK)) { |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 170 | mask = 1 << pin; |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 171 | writel(mask, &at91_port->idr); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 172 | at91_set_pio_pullup(port, pin, use_pullup); |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 173 | writel(readl(&at91_port->abcdsr1) | mask, |
| 174 | &at91_port->abcdsr1); |
| 175 | writel(readl(&at91_port->abcdsr2) | mask, |
| 176 | &at91_port->abcdsr2); |
| 177 | writel(mask, &at91_port->pdr); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 178 | } |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 179 | |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 180 | return 0; |
| 181 | } |
| 182 | #endif |
| 183 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 184 | #ifdef CONFIG_DM_GPIO |
| 185 | static bool at91_get_port_output(struct at91_port *at91_port, int offset) |
| 186 | { |
| 187 | u32 mask, val; |
| 188 | |
| 189 | mask = 1 << offset; |
| 190 | val = readl(&at91_port->osr); |
| 191 | return val & mask; |
| 192 | } |
| 193 | #endif |
| 194 | |
| 195 | static void at91_set_port_input(struct at91_port *at91_port, int offset, |
| 196 | int use_pullup) |
| 197 | { |
| 198 | u32 mask; |
| 199 | |
| 200 | mask = 1 << offset; |
| 201 | writel(mask, &at91_port->idr); |
| 202 | at91_set_port_pullup(at91_port, offset, use_pullup); |
| 203 | writel(mask, &at91_port->odr); |
| 204 | writel(mask, &at91_port->per); |
| 205 | } |
| 206 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 207 | /* |
| 208 | * mux the pin to the gpio controller (instead of "A" or "B" peripheral), and |
| 209 | * configure it for an input. |
| 210 | */ |
| 211 | int at91_set_pio_input(unsigned port, u32 pin, int use_pullup) |
| 212 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 213 | struct at91_port *at91_port = at91_pio_get_port(port); |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 214 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 215 | if (at91_port && (pin < GPIO_PER_BANK)) |
| 216 | at91_set_port_input(at91_port, pin, use_pullup); |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 217 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 218 | return 0; |
| 219 | } |
| 220 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 221 | static void at91_set_port_output(struct at91_port *at91_port, int offset, |
| 222 | int value) |
| 223 | { |
| 224 | u32 mask; |
| 225 | |
| 226 | mask = 1 << offset; |
| 227 | writel(mask, &at91_port->idr); |
| 228 | writel(mask, &at91_port->pudr); |
| 229 | if (value) |
| 230 | writel(mask, &at91_port->sodr); |
| 231 | else |
| 232 | writel(mask, &at91_port->codr); |
| 233 | writel(mask, &at91_port->oer); |
| 234 | writel(mask, &at91_port->per); |
| 235 | } |
| 236 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 237 | /* |
| 238 | * mux the pin to the gpio controller (instead of "A" or "B" peripheral), |
| 239 | * and configure it for an output. |
| 240 | */ |
| 241 | int at91_set_pio_output(unsigned port, u32 pin, int value) |
| 242 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 243 | struct at91_port *at91_port = at91_pio_get_port(port); |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 244 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 245 | if (at91_port && (pin < GPIO_PER_BANK)) |
| 246 | at91_set_port_output(at91_port, pin, value); |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 247 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 248 | return 0; |
| 249 | } |
| 250 | |
| 251 | /* |
| 252 | * enable/disable the glitch filter. mostly used with IRQ handling. |
| 253 | */ |
| 254 | int at91_set_pio_deglitch(unsigned port, unsigned pin, int is_on) |
| 255 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 256 | struct at91_port *at91_port = at91_pio_get_port(port); |
| 257 | u32 mask; |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 258 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 259 | if (at91_port && (pin < GPIO_PER_BANK)) { |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 260 | mask = 1 << pin; |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 261 | if (is_on) { |
| 262 | #if defined(CPU_HAS_PIO3) |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 263 | writel(mask, &at91_port->ifscdr); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 264 | #endif |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 265 | writel(mask, &at91_port->ifer); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 266 | } else { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 267 | writel(mask, &at91_port->ifdr); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 268 | } |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 269 | } |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 270 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 271 | return 0; |
| 272 | } |
| 273 | |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 274 | #if defined(CPU_HAS_PIO3) |
| 275 | /* |
| 276 | * enable/disable the debounce filter. |
| 277 | */ |
| 278 | int at91_set_pio_debounce(unsigned port, unsigned pin, int is_on, int div) |
| 279 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 280 | struct at91_port *at91_port = at91_pio_get_port(port); |
| 281 | u32 mask; |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 282 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 283 | if (at91_port && (pin < GPIO_PER_BANK)) { |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 284 | mask = 1 << pin; |
| 285 | if (is_on) { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 286 | writel(mask, &at91_port->ifscer); |
| 287 | writel(div & PIO_SCDR_DIV, &at91_port->scdr); |
| 288 | writel(mask, &at91_port->ifer); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 289 | } else { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 290 | writel(mask, &at91_port->ifdr); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 291 | } |
| 292 | } |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 293 | |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | /* |
| 298 | * enable/disable the pull-down. |
| 299 | * If pull-up already enabled while calling the function, we disable it. |
| 300 | */ |
| 301 | int at91_set_pio_pulldown(unsigned port, unsigned pin, int is_on) |
| 302 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 303 | struct at91_port *at91_port = at91_pio_get_port(port); |
| 304 | u32 mask; |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 305 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 306 | if (at91_port && (pin < GPIO_PER_BANK)) { |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 307 | mask = 1 << pin; |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 308 | writel(mask, &at91_port->pudr); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 309 | if (is_on) |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 310 | writel(mask, &at91_port->ppder); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 311 | else |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 312 | writel(mask, &at91_port->ppddr); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 313 | } |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 314 | |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 315 | return 0; |
| 316 | } |
| 317 | |
| 318 | /* |
| 319 | * disable Schmitt trigger |
| 320 | */ |
| 321 | int at91_set_pio_disable_schmitt_trig(unsigned port, unsigned pin) |
| 322 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 323 | struct at91_port *at91_port = at91_pio_get_port(port); |
| 324 | u32 mask; |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 325 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 326 | if (at91_port && (pin < GPIO_PER_BANK)) { |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 327 | mask = 1 << pin; |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 328 | writel(readl(&at91_port->schmitt) | mask, |
| 329 | &at91_port->schmitt); |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 330 | } |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 331 | |
Bo Shen | 2b3b1c6 | 2012-05-20 15:50:00 +0000 | [diff] [blame] | 332 | return 0; |
| 333 | } |
| 334 | #endif |
| 335 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 336 | /* |
| 337 | * enable/disable the multi-driver. This is only valid for output and |
| 338 | * allows the output pin to run as an open collector output. |
| 339 | */ |
| 340 | int at91_set_pio_multi_drive(unsigned port, unsigned pin, int is_on) |
| 341 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 342 | struct at91_port *at91_port = at91_pio_get_port(port); |
| 343 | u32 mask; |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 344 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 345 | if (at91_port && (pin < GPIO_PER_BANK)) { |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 346 | mask = 1 << pin; |
| 347 | if (is_on) |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 348 | writel(mask, &at91_port->mder); |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 349 | else |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 350 | writel(mask, &at91_port->mddr); |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 351 | } |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 352 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 353 | return 0; |
| 354 | } |
| 355 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 356 | static void at91_set_port_value(struct at91_port *at91_port, int offset, |
| 357 | int value) |
| 358 | { |
| 359 | u32 mask; |
| 360 | |
| 361 | mask = 1 << offset; |
| 362 | if (value) |
| 363 | writel(mask, &at91_port->sodr); |
| 364 | else |
| 365 | writel(mask, &at91_port->codr); |
| 366 | } |
| 367 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 368 | /* |
| 369 | * assuming the pin is muxed as a gpio output, set its value. |
| 370 | */ |
| 371 | int at91_set_pio_value(unsigned port, unsigned pin, int value) |
| 372 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 373 | struct at91_port *at91_port = at91_pio_get_port(port); |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 374 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 375 | if (at91_port && (pin < GPIO_PER_BANK)) |
| 376 | at91_set_port_value(at91_port, pin, value); |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 377 | |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 378 | return 0; |
| 379 | } |
| 380 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 381 | static int at91_get_port_value(struct at91_port *at91_port, int offset) |
| 382 | { |
| 383 | u32 pdsr = 0, mask; |
| 384 | |
| 385 | mask = 1 << offset; |
| 386 | pdsr = readl(&at91_port->pdsr) & mask; |
| 387 | |
| 388 | return pdsr != 0; |
| 389 | } |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 390 | /* |
| 391 | * read the pin's value (works even if it's not muxed as a gpio). |
| 392 | */ |
| 393 | int at91_get_pio_value(unsigned port, unsigned pin) |
| 394 | { |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 395 | struct at91_port *at91_port = at91_pio_get_port(port); |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 396 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 397 | if (at91_port && (pin < GPIO_PER_BANK)) |
| 398 | return at91_get_port_value(at91_port, pin); |
Bo Shen | 4bc9b7a | 2013-08-22 15:24:40 +0800 | [diff] [blame] | 399 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 400 | return 0; |
Jens Scharsig | ea8fbba | 2010-02-03 22:46:16 +0100 | [diff] [blame] | 401 | } |
Bo Shen | 6edaea8 | 2013-08-13 14:38:31 +0800 | [diff] [blame] | 402 | |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 403 | #ifndef CONFIG_DM_GPIO |
Bo Shen | 6edaea8 | 2013-08-13 14:38:31 +0800 | [diff] [blame] | 404 | /* Common GPIO API */ |
| 405 | |
Bo Shen | 6edaea8 | 2013-08-13 14:38:31 +0800 | [diff] [blame] | 406 | int gpio_request(unsigned gpio, const char *label) |
| 407 | { |
| 408 | return 0; |
| 409 | } |
| 410 | |
| 411 | int gpio_free(unsigned gpio) |
| 412 | { |
| 413 | return 0; |
| 414 | } |
| 415 | |
| 416 | int gpio_direction_input(unsigned gpio) |
| 417 | { |
| 418 | at91_set_pio_input(at91_gpio_to_port(gpio), |
| 419 | at91_gpio_to_pin(gpio), 0); |
| 420 | return 0; |
| 421 | } |
| 422 | |
| 423 | int gpio_direction_output(unsigned gpio, int value) |
| 424 | { |
| 425 | at91_set_pio_output(at91_gpio_to_port(gpio), |
| 426 | at91_gpio_to_pin(gpio), value); |
| 427 | return 0; |
| 428 | } |
| 429 | |
| 430 | int gpio_get_value(unsigned gpio) |
| 431 | { |
| 432 | return at91_get_pio_value(at91_gpio_to_port(gpio), |
| 433 | at91_gpio_to_pin(gpio)); |
| 434 | } |
| 435 | |
| 436 | int gpio_set_value(unsigned gpio, int value) |
| 437 | { |
| 438 | at91_set_pio_value(at91_gpio_to_port(gpio), |
| 439 | at91_gpio_to_pin(gpio), value); |
| 440 | |
| 441 | return 0; |
| 442 | } |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 443 | #endif |
| 444 | |
| 445 | #ifdef CONFIG_DM_GPIO |
| 446 | |
| 447 | struct at91_port_priv { |
| 448 | struct at91_port *regs; |
| 449 | }; |
| 450 | |
| 451 | /* set GPIO pin 'gpio' as an input */ |
| 452 | static int at91_gpio_direction_input(struct udevice *dev, unsigned offset) |
| 453 | { |
Axel Lin | d895821 | 2015-01-31 14:47:34 +0800 | [diff] [blame] | 454 | struct at91_port_priv *port = dev_get_priv(dev); |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 455 | |
| 456 | at91_set_port_input(port->regs, offset, 0); |
| 457 | |
| 458 | return 0; |
| 459 | } |
| 460 | |
| 461 | /* set GPIO pin 'gpio' as an output, with polarity 'value' */ |
| 462 | static int at91_gpio_direction_output(struct udevice *dev, unsigned offset, |
| 463 | int value) |
| 464 | { |
Axel Lin | d895821 | 2015-01-31 14:47:34 +0800 | [diff] [blame] | 465 | struct at91_port_priv *port = dev_get_priv(dev); |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 466 | |
| 467 | at91_set_port_output(port->regs, offset, value); |
| 468 | |
| 469 | return 0; |
| 470 | } |
| 471 | |
| 472 | /* read GPIO IN value of pin 'gpio' */ |
| 473 | static int at91_gpio_get_value(struct udevice *dev, unsigned offset) |
| 474 | { |
Axel Lin | d895821 | 2015-01-31 14:47:34 +0800 | [diff] [blame] | 475 | struct at91_port_priv *port = dev_get_priv(dev); |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 476 | |
| 477 | return at91_get_port_value(port->regs, offset); |
| 478 | } |
| 479 | |
| 480 | /* write GPIO OUT value to pin 'gpio' */ |
| 481 | static int at91_gpio_set_value(struct udevice *dev, unsigned offset, |
| 482 | int value) |
| 483 | { |
Axel Lin | d895821 | 2015-01-31 14:47:34 +0800 | [diff] [blame] | 484 | struct at91_port_priv *port = dev_get_priv(dev); |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 485 | |
| 486 | at91_set_port_value(port->regs, offset, value); |
| 487 | |
| 488 | return 0; |
| 489 | } |
| 490 | |
| 491 | static int at91_gpio_get_function(struct udevice *dev, unsigned offset) |
| 492 | { |
Axel Lin | d895821 | 2015-01-31 14:47:34 +0800 | [diff] [blame] | 493 | struct at91_port_priv *port = dev_get_priv(dev); |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 494 | |
| 495 | /* GPIOF_FUNC is not implemented yet */ |
| 496 | if (at91_get_port_output(port->regs, offset)) |
| 497 | return GPIOF_OUTPUT; |
| 498 | else |
| 499 | return GPIOF_INPUT; |
| 500 | } |
| 501 | |
| 502 | static const struct dm_gpio_ops gpio_at91_ops = { |
| 503 | .direction_input = at91_gpio_direction_input, |
| 504 | .direction_output = at91_gpio_direction_output, |
| 505 | .get_value = at91_gpio_get_value, |
| 506 | .set_value = at91_gpio_set_value, |
| 507 | .get_function = at91_gpio_get_function, |
| 508 | }; |
| 509 | |
| 510 | static int at91_gpio_probe(struct udevice *dev) |
| 511 | { |
| 512 | struct at91_port_priv *port = dev_get_priv(dev); |
| 513 | struct at91_port_platdata *plat = dev_get_platdata(dev); |
Simon Glass | e564f05 | 2015-03-05 12:25:20 -0700 | [diff] [blame] | 514 | struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev); |
Simon Glass | 918354b | 2014-10-29 13:08:57 -0600 | [diff] [blame] | 515 | |
| 516 | uc_priv->bank_name = plat->bank_name; |
| 517 | uc_priv->gpio_count = GPIO_PER_BANK; |
| 518 | port->regs = (struct at91_port *)plat->base_addr; |
| 519 | |
| 520 | return 0; |
| 521 | } |
| 522 | |
| 523 | U_BOOT_DRIVER(gpio_at91) = { |
| 524 | .name = "gpio_at91", |
| 525 | .id = UCLASS_GPIO, |
| 526 | .ops = &gpio_at91_ops, |
| 527 | .probe = at91_gpio_probe, |
| 528 | .priv_auto_alloc_size = sizeof(struct at91_port_priv), |
| 529 | }; |
| 530 | #endif |