gpio.h 1014 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright (c) 2009 Wind River Systems, Inc.
  3. * Tom Rix <Tom.Rix@windriver.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0
  6. *
  7. * This work is derived from the linux 2.6.27 kernel source
  8. * To fetch, use the kernel repository
  9. * git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
  10. * Use the v2.6.27 tag.
  11. *
  12. * Below is the original's header including its copyright
  13. *
  14. * linux/arch/arm/plat-omap/gpio.c
  15. *
  16. * Support functions for OMAP GPIO
  17. *
  18. * Copyright (C) 2003-2005 Nokia Corporation
  19. * Written by Juha Yrjölä <juha.yrjola@nokia.com>
  20. */
  21. #ifndef _GPIO_OMAP5_H
  22. #define _GPIO_OMAP5_H
  23. #include <asm/omap_gpio.h>
  24. #define OMAP_MAX_GPIO 256
  25. #define OMAP54XX_GPIO1_BASE 0x4Ae10000
  26. #define OMAP54XX_GPIO2_BASE 0x48055000
  27. #define OMAP54XX_GPIO3_BASE 0x48057000
  28. #define OMAP54XX_GPIO4_BASE 0x48059000
  29. #define OMAP54XX_GPIO5_BASE 0x4805B000
  30. #define OMAP54XX_GPIO6_BASE 0x4805D000
  31. #define OMAP54XX_GPIO7_BASE 0x48051000
  32. #define OMAP54XX_GPIO8_BASE 0x48053000
  33. #endif /* _GPIO_OMAP5_H */