cpu.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Copyright (C) 2011 by Vladimir Zapolskiy <vz@mleia.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef _LPC32XX_CPU_H
  7. #define _LPC32XX_CPU_H
  8. /* LPC32XX Memory map */
  9. /* AHB physical base addresses */
  10. #define SLC_NAND_BASE 0x20020000 /* SLC NAND Flash registers base */
  11. #define SSP0_BASE 0x20084000 /* SSP0 registers base */
  12. #define SD_CARD_BASE 0x20098000 /* SD card interface registers base */
  13. #define MLC_NAND_BASE 0x200A8000 /* MLC NAND Flash registers base */
  14. #define DMA_BASE 0x31000000 /* DMA controller registers base */
  15. #define USB_BASE 0x31020000 /* USB registers base */
  16. #define LCD_BASE 0x31040000 /* LCD registers base */
  17. #define ETHERNET_BASE 0x31060000 /* Ethernet registers base */
  18. #define EMC_BASE 0x31080000 /* EMC configuration registers base */
  19. /* FAB peripherals base addresses */
  20. #define CLK_PM_BASE 0x40004000 /* System control registers base */
  21. #define HS_UART1_BASE 0x40014000 /* High speed UART 1 registers base */
  22. #define HS_UART2_BASE 0x40018000 /* High speed UART 2 registers base */
  23. #define HS_UART7_BASE 0x4001C000 /* High speed UART 7 registers base */
  24. #define RTC_BASE 0x40024000 /* RTC registers base */
  25. #define GPIO_BASE 0x40028000 /* GPIO registers base */
  26. #define MUX_BASE 0x40028100 /* MUX registers base */
  27. #define WDT_BASE 0x4003C000 /* Watchdog timer registers base */
  28. #define TIMER0_BASE 0x40044000 /* Timer0 registers base */
  29. #define TIMER1_BASE 0x4004C000 /* Timer1 registers base */
  30. #define UART_CTRL_BASE 0x40054000 /* UART control regsisters base */
  31. /* APB peripherals base addresses */
  32. #define UART3_BASE 0x40080000 /* UART 3 registers base */
  33. #define UART4_BASE 0x40088000 /* UART 4 registers base */
  34. #define UART5_BASE 0x40090000 /* UART 5 registers base */
  35. #define UART6_BASE 0x40098000 /* UART 6 registers base */
  36. #define I2C1_BASE 0x400A0000 /* I2C 1 registers base */
  37. #define I2C2_BASE 0x400A8000 /* I2C 2 registers base */
  38. /* External SDRAM Memory Bank base addresses */
  39. #define EMC_DYCS0_BASE 0x80000000 /* SDRAM DYCS0 base address */
  40. #define EMC_DYCS1_BASE 0xA0000000 /* SDRAM DYCS1 base address */
  41. /* External Static Memory Bank base addresses */
  42. #define EMC_CS0_BASE 0xE0000000
  43. #define EMC_CS1_BASE 0xE1000000
  44. #define EMC_CS2_BASE 0xE2000000
  45. #define EMC_CS3_BASE 0xE3000000
  46. #endif /* _LPC32XX_CPU_H */