gpio.h 934 B

12345678910111213141516171819202122232425262728293031323334
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2009 Wind River Systems, Inc.
  4. * Tom Rix <Tom.Rix@windriver.com>
  5. *
  6. * This work is derived from the linux 2.6.27 kernel source
  7. * To fetch, use the kernel repository
  8. * git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
  9. * Use the v2.6.27 tag.
  10. *
  11. * Below is the original's header including its copyright
  12. *
  13. * linux/arch/arm/plat-omap/gpio.c
  14. *
  15. * Support functions for OMAP GPIO
  16. *
  17. * Copyright (C) 2003-2005 Nokia Corporation
  18. * Written by Juha Yrjölä <juha.yrjola@nokia.com>
  19. */
  20. #ifndef _GPIO_OMAP3_H
  21. #define _GPIO_OMAP3_H
  22. #include <asm/omap_gpio.h>
  23. #define OMAP_MAX_GPIO 192
  24. #define OMAP34XX_GPIO1_BASE 0x48310000
  25. #define OMAP34XX_GPIO2_BASE 0x49050000
  26. #define OMAP34XX_GPIO3_BASE 0x49052000
  27. #define OMAP34XX_GPIO4_BASE 0x49054000
  28. #define OMAP34XX_GPIO5_BASE 0x49056000
  29. #define OMAP34XX_GPIO6_BASE 0x49058000
  30. #endif /* _GPIO_OMAP3_H */