mvgpio.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * (C) Copyright 2011
  3. * eInfochips Ltd. <www.einfochips.com>
  4. * Written-by: Ajay Bhargav <contact@8051projects.net>
  5. *
  6. * (C) Copyright 2010
  7. * Marvell Semiconductor <www.marvell.com>
  8. *
  9. * SPDX-License-Identifier: GPL-2.0+
  10. */
  11. #ifndef __MVGPIO_H__
  12. #define __MVGPIO_H__
  13. #include <common.h>
  14. /*
  15. * GPIO Register map for Marvell SOCs
  16. */
  17. struct gpio_reg {
  18. u32 gplr; /* Pin Level Register - 0x0000 */
  19. u32 pad0[2];
  20. u32 gpdr; /* Pin Direction Register - 0x000C */
  21. u32 pad1[2];
  22. u32 gpsr; /* Pin Output Set Register - 0x0018 */
  23. u32 pad2[2];
  24. u32 gpcr; /* Pin Output Clear Register - 0x0024 */
  25. u32 pad3[2];
  26. u32 grer; /* Rising-Edge Detect Enable Register - 0x0030 */
  27. u32 pad4[2];
  28. u32 gfer; /* Falling-Edge Detect Enable Register - 0x003C */
  29. u32 pad5[2];
  30. u32 gedr; /* Edge Detect Status Register - 0x0048 */
  31. u32 pad6[2];
  32. u32 gsdr; /* Bitwise Set of GPIO Direction Register - 0x0054 */
  33. u32 pad7[2];
  34. u32 gcdr; /* Bitwise Clear of GPIO Direction Register - 0x0060 */
  35. u32 pad8[2];
  36. u32 gsrer; /* Bitwise Set of Rising-Edge Detect Enable
  37. Register - 0x006C */
  38. u32 pad9[2];
  39. u32 gcrer; /* Bitwise Clear of Rising-Edge Detect Enable
  40. Register - 0x0078 */
  41. u32 pad10[2];
  42. u32 gsfer; /* Bitwise Set of Falling-Edge Detect Enable
  43. Register - 0x0084 */
  44. u32 pad11[2];
  45. u32 gcfer; /* Bitwise Clear of Falling-Edge Detect Enable
  46. Register - 0x0090 */
  47. u32 pad12[2];
  48. u32 apmask; /* Bitwise Mask of Edge Detect Register - 0x009C */
  49. };
  50. #endif /* __MVGPIO_H__ */