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 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 | /* * Copyright (c) 2017 Jean-Paul Etienne <fractalclone@gmail.com> * * SPDX-License-Identifier: Apache-2.0 */ /** * @file GPIO driver for the SiFive Freedom Processor */ #include <errno.h> #include <kernel.h> #include <device.h> #include <soc.h> #include <drivers/gpio.h> #include <sys/util.h> #include "gpio_utils.h" typedef void (*sifive_cfg_func_t)(void); /* sifive GPIO register-set structure */ struct gpio_sifive_t { unsigned int in_val; unsigned int in_en; unsigned int out_en; unsigned int out_val; unsigned int pue; unsigned int ds; unsigned int rise_ie; unsigned int rise_ip; unsigned int fall_ie; unsigned int fall_ip; unsigned int high_ie; unsigned int high_ip; unsigned int low_ie; unsigned int low_ip; unsigned int iof_en; unsigned int iof_sel; unsigned int invert; }; struct gpio_sifive_config { uintptr_t gpio_base_addr; /* multi-level encoded interrupt corresponding to pin 0 */ u32_t gpio_irq_base; sifive_cfg_func_t gpio_cfg_func; }; struct gpio_sifive_data { /* list of callbacks */ sys_slist_t cb; }; /* Helper Macros for GPIO */ #define DEV_GPIO_CFG(dev) \ ((const struct gpio_sifive_config * const)(dev)->config->config_info) #define DEV_GPIO(dev) \ ((volatile struct gpio_sifive_t *)(DEV_GPIO_CFG(dev))->gpio_base_addr) #define DEV_GPIO_DATA(dev) \ ((struct gpio_sifive_data *)(dev)->driver_data) static void gpio_sifive_irq_handler(void *arg) { struct device *dev = (struct device *)arg; struct gpio_sifive_data *data = DEV_GPIO_DATA(dev); volatile struct gpio_sifive_t *gpio = DEV_GPIO(dev); const struct gpio_sifive_config *cfg = DEV_GPIO_CFG(dev); /* Calculate pin and mask from base level 2 line */ u8_t pin = 1 + (riscv_plic_get_irq() - (u8_t)(cfg->gpio_irq_base >> 8)); u32_t pin_mask = BIT(pin); /* Call the corresponding callback registered for the pin */ gpio_fire_callbacks(&data->cb, dev, pin_mask); /* * Write to either the rise_ip, fall_ip, high_ip or low_ip registers * to indicate to GPIO controller that interrupt for the corresponding * pin has been handled. */ if (gpio->rise_ip & pin_mask) { gpio->rise_ip = pin_mask; } else if (gpio->fall_ip & pin_mask) { gpio->fall_ip = pin_mask; } else if (gpio->high_ip & pin_mask) { gpio->high_ip = pin_mask; } else if (gpio->low_ip & pin_mask) { gpio->low_ip = pin_mask; } } /** * @brief Configure pin * * @param dev Device structure * @param access_op Access operation * @param pin The pin number * @param flags Flags of pin or port * * @return 0 if successful, failed otherwise */ static int gpio_sifive_config(struct device *dev, int access_op, u32_t pin, int flags) { volatile struct gpio_sifive_t *gpio = DEV_GPIO(dev); if (access_op != GPIO_ACCESS_BY_PIN) { return -ENOTSUP; } if (pin >= SIFIVE_PINMUX_PINS) { return -EINVAL; } /* Configure gpio direction */ if (flags & GPIO_DIR_OUT) { gpio->in_en &= ~BIT(pin); gpio->out_en |= BIT(pin); /* * Account for polarity only for GPIO_DIR_OUT. * invert register handles only output gpios */ if (flags & GPIO_POL_INV) { gpio->invert |= BIT(pin); } else { gpio->invert &= ~BIT(pin); } } else { gpio->out_en &= ~BIT(pin); gpio->in_en |= BIT(pin); /* Polarity inversion is not supported for input gpio */ if (flags & GPIO_POL_INV) { return -EINVAL; } /* * Pull-up can be configured only for input gpios. * Only Pull-up can be enabled or disabled. */ if ((flags & GPIO_PUD_MASK) == GPIO_PUD_PULL_DOWN) { return -EINVAL; } if ((flags & GPIO_PUD_MASK) == GPIO_PUD_PULL_UP) { gpio->pue |= BIT(pin); } else { gpio->pue &= ~BIT(pin); } } /* * Configure interrupt if GPIO_INT is set. * Here, we just configure the gpio interrupt behavior, * we do not enable/disable interrupt for a particular * gpio. * Interrupt for a gpio is: * 1) enabled only via a call to gpio_sifive_enable_callback. * 2) disabled only via a call to gpio_sifive_disabled_callback. */ if (!(flags & GPIO_INT)) { return 0; } /* * Interrupt cannot be set for GPIO_DIR_OUT */ if (flags & GPIO_DIR_OUT) { return -EINVAL; } /* Edge or Level triggered ? */ if (flags & GPIO_INT_EDGE) { gpio->high_ie &= ~BIT(pin); gpio->low_ie &= ~BIT(pin); /* Rising Edge, Falling Edge or Double Edge ? */ if (flags & GPIO_INT_DOUBLE_EDGE) { gpio->rise_ie |= BIT(pin); gpio->fall_ie |= BIT(pin); } else if (flags & GPIO_INT_ACTIVE_HIGH) { gpio->rise_ie |= BIT(pin); gpio->fall_ie &= ~BIT(pin); } else { gpio->rise_ie &= ~BIT(pin); gpio->fall_ie |= BIT(pin); } } else { gpio->rise_ie &= ~BIT(pin); gpio->fall_ie &= ~BIT(pin); /* Level High ? */ if (flags & GPIO_INT_ACTIVE_HIGH) { gpio->high_ie |= BIT(pin); gpio->low_ie &= ~BIT(pin); } else { gpio->high_ie &= ~BIT(pin); gpio->low_ie |= BIT(pin); } } return 0; } /** * @brief Set the pin * * @param dev Device struct * @param access_op Access operation * @param pin The pin number * @param value Value to set (0 or 1) * * @return 0 if successful, failed otherwise */ static int gpio_sifive_write(struct device *dev, int access_op, u32_t pin, u32_t value) { volatile struct gpio_sifive_t *gpio = DEV_GPIO(dev); if (access_op != GPIO_ACCESS_BY_PIN) { return -ENOTSUP; } if (pin >= SIFIVE_PINMUX_PINS) return -EINVAL; /* If pin is configured as input return with error */ if (gpio->in_en & BIT(pin)) { return -EINVAL; } if (value) { gpio->out_val |= BIT(pin); } else { gpio->out_val &= ~BIT(pin); } return 0; } /** * @brief Read the pin * * @param dev Device struct * @param access_op Access operation * @param pin The pin number * @param value Value of input pin(s) * * @return 0 if successful, failed otherwise */ static int gpio_sifive_read(struct device *dev, int access_op, u32_t pin, u32_t *value) { volatile struct gpio_sifive_t *gpio = DEV_GPIO(dev); if (access_op != GPIO_ACCESS_BY_PIN) { return -ENOTSUP; } if (pin >= SIFIVE_PINMUX_PINS) { return -EINVAL; } /* * If gpio is configured as output, * read gpio value from out_val register, * otherwise read gpio value from in_val register */ if (gpio->out_en & BIT(pin)) { *value = !!(gpio->out_val & BIT(pin)); } else { *value = !!(gpio->in_val & BIT(pin)); } return 0; } static int gpio_sifive_manage_callback(struct device *dev, struct gpio_callback *callback, bool set) { struct gpio_sifive_data *data = DEV_GPIO_DATA(dev); return gpio_manage_callback(&data->cb, callback, set); } static int gpio_sifive_enable_callback(struct device *dev, int access_op, u32_t pin) { const struct gpio_sifive_config *cfg = DEV_GPIO_CFG(dev); if (access_op != GPIO_ACCESS_BY_PIN) { return -ENOTSUP; } if (pin >= SIFIVE_PINMUX_PINS) { return -EINVAL; } /* Enable interrupt for the pin at PLIC (level 2) */ irq_enable(cfg->gpio_irq_base + (pin << 8)); return 0; } static int gpio_sifive_disable_callback(struct device *dev, int access_op, u32_t pin) { const struct gpio_sifive_config *cfg = DEV_GPIO_CFG(dev); if (access_op != GPIO_ACCESS_BY_PIN) { return -ENOTSUP; } if (pin >= SIFIVE_PINMUX_PINS) { return -EINVAL; } /* Disable interrupt for the pin at PLIC (level 2) */ irq_disable(cfg->gpio_irq_base + (pin << 8)); return 0; } static const struct gpio_driver_api gpio_sifive_driver = { .config = gpio_sifive_config, .write = gpio_sifive_write, .read = gpio_sifive_read, .manage_callback = gpio_sifive_manage_callback, .enable_callback = gpio_sifive_enable_callback, .disable_callback = gpio_sifive_disable_callback, }; /** * @brief Initialize a GPIO controller * * Perform basic initialization of a GPIO controller * * @param dev GPIO device struct * * @return 0 */ static int gpio_sifive_init(struct device *dev) { volatile struct gpio_sifive_t *gpio = DEV_GPIO(dev); const struct gpio_sifive_config *cfg = DEV_GPIO_CFG(dev); /* Ensure that all gpio registers are reset to 0 initially */ gpio->in_en = 0U; gpio->out_en = 0U; gpio->pue = 0U; gpio->rise_ie = 0U; gpio->fall_ie = 0U; gpio->high_ie = 0U; gpio->low_ie = 0U; gpio->invert = 0U; /* Setup IRQ handler for each gpio pin */ cfg->gpio_cfg_func(); return 0; } static void gpio_sifive_cfg_0(void); static const struct gpio_sifive_config gpio_sifive_config0 = { .gpio_base_addr = DT_INST_0_SIFIVE_GPIO0_BASE_ADDRESS, .gpio_irq_base = DT_INST_0_SIFIVE_GPIO0_IRQ_0, .gpio_cfg_func = gpio_sifive_cfg_0, }; static struct gpio_sifive_data gpio_sifive_data0; DEVICE_AND_API_INIT(gpio_sifive_0, DT_INST_0_SIFIVE_GPIO0_LABEL, gpio_sifive_init, &gpio_sifive_data0, &gpio_sifive_config0, POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEVICE, &gpio_sifive_driver); #define IRQ_INIT(n) \ IRQ_CONNECT(DT_INST_0_SIFIVE_GPIO0_IRQ_##n, \ CONFIG_GPIO_SIFIVE_##n##_PRIORITY, \ gpio_sifive_irq_handler, \ DEVICE_GET(gpio_sifive_0), \ 0); static void gpio_sifive_cfg_0(void) { #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_0 IRQ_INIT(0); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_1 IRQ_INIT(1); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_2 IRQ_INIT(2); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_3 IRQ_INIT(3); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_4 IRQ_INIT(4); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_5 IRQ_INIT(5); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_6 IRQ_INIT(6); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_7 IRQ_INIT(7); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_8 IRQ_INIT(8); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_9 IRQ_INIT(9); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_10 IRQ_INIT(10); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_11 IRQ_INIT(11); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_12 IRQ_INIT(12); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_13 IRQ_INIT(13); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_14 IRQ_INIT(14); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_15 IRQ_INIT(15); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_16 IRQ_INIT(16); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_17 IRQ_INIT(17); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_18 IRQ_INIT(18); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_19 IRQ_INIT(19); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_20 IRQ_INIT(20); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_21 IRQ_INIT(21); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_22 IRQ_INIT(22); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_23 IRQ_INIT(23); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_24 IRQ_INIT(24); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_25 IRQ_INIT(25); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_26 IRQ_INIT(26); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_27 IRQ_INIT(27); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_28 IRQ_INIT(28); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_29 IRQ_INIT(29); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_30 IRQ_INIT(30); #endif #ifdef DT_INST_0_SIFIVE_GPIO0_IRQ_31 IRQ_INIT(31); #endif } |