gpio.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * arch/arm/mach-tegra/include/mach/gpio.h
  3. *
  4. * Copyright (C) 2010 Google, Inc.
  5. *
  6. * Author:
  7. * Erik Gilling <konkers@google.com>
  8. *
  9. * This software is licensed under the terms of the GNU General Public
  10. * License version 2, as published by the Free Software Foundation, and
  11. * may be copied, distributed, and modified under those terms.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. */
  19. #ifndef __MACH_TEGRA_GPIO_H
  20. #define __MACH_TEGRA_GPIO_H
  21. #include <linux/init.h>
  22. #include <mach/irqs.h>
  23. #define TEGRA_NR_GPIOS INT_GPIO_NR
  24. #include <asm-generic/gpio.h>
  25. #define gpio_get_value __gpio_get_value
  26. #define gpio_set_value __gpio_set_value
  27. #define gpio_cansleep __gpio_cansleep
  28. #define TEGRA_GPIO_TO_IRQ(gpio) (INT_GPIO_BASE + (gpio))
  29. #define TEGRA_IRQ_TO_GPIO(irq) ((irq) - INT_GPIO_BASE)
  30. static inline int gpio_to_irq(unsigned int gpio)
  31. {
  32. if (gpio < TEGRA_NR_GPIOS)
  33. return INT_GPIO_BASE + gpio;
  34. return -EINVAL;
  35. }
  36. static inline int irq_to_gpio(unsigned int irq)
  37. {
  38. if ((irq >= INT_GPIO_BASE) && (irq < INT_GPIO_BASE + INT_GPIO_NR))
  39. return irq - INT_GPIO_BASE;
  40. return -EINVAL;
  41. }
  42. struct tegra_gpio_table {
  43. int gpio; /* GPIO number */
  44. bool enable; /* Enable for GPIO at init? */
  45. };
  46. void tegra_gpio_config(struct tegra_gpio_table *table, int num);
  47. void tegra_gpio_enable(int gpio);
  48. void tegra_gpio_disable(int gpio);
  49. #endif