Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 | /* * Copyright (c) 2016 Intel Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @file Driver for the Atmel SAM3 PIO Controller. */ #include <errno.h> #include <nanokernel.h> #include <device.h> #include <init.h> #include <soc.h> #include <gpio.h> #include "gpio_utils.h" #include "gpio_api_compat.h" typedef void (*config_func_t)(struct device *port); /* Configuration data */ struct gpio_sam3_config { volatile struct __pio *port; /* callbacks */ sys_slist_t cb; config_func_t config_func; }; static void _config(struct device *dev, uint32_t mask, int flags) { struct gpio_sam3_config *cfg = dev->config->config_info; /* Disable the pin and return as setup is meaningless now */ if (flags & GPIO_PIN_DISABLE) { cfg->port->pdr = mask; return; } /* Setup the pin direction */ if ((flags & GPIO_DIR_MASK) == GPIO_DIR_OUT) { cfg->port->oer = mask; } else { cfg->port->odr = mask; } /* Setup interrupt config */ if (flags & GPIO_INT) { if (flags & GPIO_INT_DOUBLE_EDGE) { cfg->port->aimdr = mask; } else { cfg->port->aimer = mask; if (flags & GPIO_INT_EDGE) { cfg->port->esr = mask; } else if (flags & GPIO_INT_LEVEL) { cfg->port->lsr = mask; } if (flags & GPIO_INT_ACTIVE_LOW) { cfg->port->fellsr = mask; } else if (flags & GPIO_INT_ACTIVE_HIGH) { cfg->port->rehlsr = mask; } } } /* Pull-up? */ if ((flags & GPIO_PUD_MASK) == GPIO_PUD_PULL_UP) { /* Enable pull-up */ cfg->port->puer = mask; } else { /* Disable pull-up */ cfg->port->pudr = mask; } /* Debounce */ if (flags & GPIO_INT_DEBOUNCE) { cfg->port->difsr = mask; } else { cfg->port->scifsr = mask; } /* Enable the pin last after pin setup */ if (flags & GPIO_PIN_ENABLE) { cfg->port->per = mask; } } /** * @brief Configurate pin or port * * @param dev Device struct * @param access_op Access operation (pin or port) * @param pin The pin number * @param flags Flags of pin or port * * @return 0 if successful, failed otherwise */ static int gpio_sam3_config(struct device *dev, int access_op, uint32_t pin, int flags) { switch (access_op) { case GPIO_ACCESS_BY_PIN: _config(dev, BIT(pin), flags); break; case GPIO_ACCESS_BY_PORT: _config(dev, (0xFFFFFFFF), flags); break; default: return -ENOTSUP; } return 0; } /** * @brief Set the pin or port output * * @param dev Device struct * @param access_op Access operation (pin or port) * @param pin The pin number * @param value Value to set (0 or 1) * * @return 0 if successful, failed otherwise */ static int gpio_sam3_write(struct device *dev, int access_op, uint32_t pin, uint32_t value) { struct gpio_sam3_config *cfg = dev->config->config_info; switch (access_op) { case GPIO_ACCESS_BY_PIN: if (value) { /* set the pin */ cfg->port->sodr = BIT(pin); } else { /* clear the pin */ cfg->port->codr = BIT(pin); } break; case GPIO_ACCESS_BY_PORT: if (value) { /* set all pins */ cfg->port->sodr = 0xFFFFFFFF; } else { /* clear all pins */ cfg->port->codr = 0xFFFFFFFF; } break; default: return -ENOTSUP; } return 0; } /** * @brief Read the pin or port status * * @param dev Device struct * @param access_op Access operation (pin or port) * @param pin The pin number * @param value Value of input pin(s) * * @return 0 if successful, failed otherwise */ static int gpio_sam3_read(struct device *dev, int access_op, uint32_t pin, uint32_t *value) { struct gpio_sam3_config *cfg = dev->config->config_info; *value = cfg->port->pdsr; switch (access_op) { case GPIO_ACCESS_BY_PIN: *value = (*value >> pin) & 0x01; break; case GPIO_ACCESS_BY_PORT: break; default: return -ENOTSUP; } return 0; } static void gpio_sam3_isr(void *arg) { struct device *dev = (struct device *)arg; struct gpio_sam3_config *cfg = dev->config->config_info; uint32_t int_stat; int_stat = cfg->port->isr; _gpio_fire_callbacks(&cfg->cb, dev, int_stat); } static int gpio_sam3_manage_callback(struct device *dev, struct gpio_callback *callback, bool set) { struct gpio_sam3_config *cfg = dev->config->config_info; _gpio_manage_callback(&cfg->cb, callback, set); return 0; } static int gpio_sam3_enable_callback(struct device *dev, int access_op, uint32_t pin) { struct gpio_sam3_config *cfg = dev->config->config_info; uint32_t mask; switch (access_op) { case GPIO_ACCESS_BY_PIN: mask = BIT(pin); break; case GPIO_ACCESS_BY_PORT: mask = 0xFFFFFFFF; break; default: return -ENOTSUP; } _gpio_enable_callback(dev, mask); cfg->port->ier |= mask; return 0; } static int gpio_sam3_disable_callback(struct device *dev, int access_op, uint32_t pin) { struct gpio_sam3_config *cfg = dev->config->config_info; uint32_t mask; switch (access_op) { case GPIO_ACCESS_BY_PIN: mask = BIT(pin); break; case GPIO_ACCESS_BY_PORT: mask = 0xFFFFFFFF; break; default: return -ENOTSUP; } _gpio_disable_callback(dev, mask); cfg->port->idr |= mask; return 0; } static struct gpio_driver_api gpio_sam3_drv_api_funcs = { .config = gpio_sam3_config, .write = gpio_sam3_write, .read = gpio_sam3_read, .manage_callback = gpio_sam3_manage_callback, .enable_callback = gpio_sam3_enable_callback, .disable_callback = gpio_sam3_disable_callback, }; /** * @brief Initialization function of MMIO * * @param dev Device struct * @return 0 if successful, failed otherwise. */ int gpio_sam3_init(struct device *dev) { struct gpio_sam3_config *cfg = dev->config->config_info; cfg->config_func(dev); return 0; } /* Port A */ #ifdef CONFIG_GPIO_ATMEL_SAM3_PORTA void gpio_sam3_config_a(struct device *dev); static struct gpio_sam3_config gpio_sam3_a_cfg = { .port = __PIOA, .config_func = gpio_sam3_config_a, }; DEVICE_AND_API_INIT(gpio_sam3_a, CONFIG_GPIO_ATMEL_SAM3_PORTA_DEV_NAME, gpio_sam3_init, NULL, &gpio_sam3_a_cfg, SECONDARY, CONFIG_KERNEL_INIT_PRIORITY_DEVICE, &gpio_sam3_drv_api_funcs); GPIO_SETUP_COMPAT_DEV(gpio_sam3_a); void gpio_sam3_config_a(struct device *dev) { /* Enable clock for PIO controller */ __PMC->pcer0 = BIT(PID_PIOA); IRQ_CONNECT(IRQ_PIOA, CONFIG_GPIO_ATMEL_SAM3_PORTA_IRQ_PRI, gpio_sam3_isr, DEVICE_GET(gpio_sam3_a), 0); irq_enable(IRQ_PIOA); } #endif /* CONFIG_GPIO_ATMEL_SAM3_PORTA */ /* Port B */ #ifdef CONFIG_GPIO_ATMEL_SAM3_PORTB void gpio_sam3_config_b(struct device *dev); static struct gpio_sam3_config gpio_sam3_b_cfg = { .port = __PIOB, .config_func = gpio_sam3_config_b, }; DEVICE_AND_API_INIT(gpio_sam3_b, CONFIG_GPIO_ATMEL_SAM3_PORTB_DEV_NAME, gpio_sam3_init, NULL, &gpio_sam3_b_cfg, SECONDARY, CONFIG_KERNEL_INIT_PRIORITY_DEVICE, &gpio_sam3_drv_api_funcs); GPIO_SETUP_COMPAT_DEV(gpio_sam3_b); void gpio_sam3_config_b(struct device *dev) { /* Enable clock for PIO controller */ __PMC->pcer0 = BIT(PID_PIOB); IRQ_CONNECT(IRQ_PIOB, CONFIG_GPIO_ATMEL_SAM3_PORTB_IRQ_PRI, gpio_sam3_isr, DEVICE_GET(gpio_sam3_b), 0); irq_enable(IRQ_PIOB); } #endif /* CONFIG_GPIO_ATMEL_SAM3_PORTB */ /* Port C */ #ifdef CONFIG_GPIO_ATMEL_SAM3_PORTC void gpio_sam3_config_c(struct device *dev); static struct gpio_sam3_config gpio_sam3_c_cfg = { .port = __PIOC, .config_func = gpio_sam3_config_c, }; DEVICE_AND_API_INIT(gpio_sam3_c, CONFIG_GPIO_ATMEL_SAM3_PORTC_DEV_NAME, gpio_sam3_init, NULL, &gpio_sam3_c_cfg, SECONDARY, CONFIG_KERNEL_INIT_PRIORITY_DEVICE, &gpio_sam3_drv_api_funcs); GPIO_SETUP_COMPAT_DEV(gpio_sam3_c); void gpio_sam3_config_c(struct device *dev) { /* Enable clock for PIO controller */ __PMC->pcer0 = BIT(PID_PIOC); IRQ_CONNECT(IRQ_PIOC, CONFIG_GPIO_ATMEL_SAM3_PORTC_IRQ_PRI, gpio_sam3_isr, DEVICE_GET(gpio_sam3_c), 0); irq_enable(IRQ_PIOC); } #endif /* CONFIG_GPIO_ATMEL_SAM3_PORTA */ /* Port D */ #ifdef CONFIG_GPIO_ATMEL_SAM3_PORTD void gpio_sam3_config_d(struct device *dev); static struct gpio_sam3_config gpio_sam3_d_cfg = { .port = __PIOD, .config_func = gpio_sam3_config_d, }; DEVICE_AND_API_INIT(gpio_sam3_d, CONFIG_GPIO_ATMEL_SAM3_PORTD_DEV_NAME, gpio_sam3_init, NULL, &gpio_sam3_d_cfg, SECONDARY, CONFIG_KERNEL_INIT_PRIORITY_DEVICE, &gpio_sam3_drv_api_funcs); GPIO_SETUP_COMPAT_DEV(gpio_sam3_d); void gpio_sam3_config_d(struct device *dev) { /* Enable clock for PIO controller */ __PMC->pcer0 = BIT(PID_PIOD); IRQ_CONNECT(IRQ_PIOD, CONFIG_GPIO_ATMEL_SAM3_PORTD_IRQ_PRI, gpio_sam3_isr, DEVICE_GET(gpio_sam3_d), 0); irq_enable(IRQ_PIOD); } #endif /* CONFIG_GPIO_ATMEL_SAM3_PORTD */ |