sama5d4.h 918 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Chip-specific header file for the SAMA5D4 family
  3. *
  4. * Copyright (C) 2013 Atmel Corporation,
  5. * Nicolas Ferre <nicolas.ferre@atmel.com>
  6. *
  7. * Common definitions.
  8. * Based on SAMA5D4 datasheet.
  9. *
  10. * Licensed under GPLv2 or later.
  11. */
  12. #ifndef SAMA5D4_H
  13. #define SAMA5D4_H
  14. /*
  15. * User Peripheral physical base addresses.
  16. */
  17. #define SAMA5D4_BASE_USART3 0xfc00c000 /* (USART3 non-secure) Base Address */
  18. #define SAMA5D4_BASE_PMC 0xf0018000 /* (PMC) Base Address */
  19. #define SAMA5D4_BASE_MPDDRC 0xf0010000 /* (MPDDRC) Base Address */
  20. #define SAMA5D4_BASE_PIOD 0xfc068000 /* (PIOD) Base Address */
  21. /* Some other peripherals */
  22. #define SAMA5D4_BASE_SYS2 SAMA5D4_BASE_PIOD
  23. /*
  24. * Internal Memory.
  25. */
  26. #define SAMA5D4_NS_SRAM_BASE 0x00210000 /* Internal SRAM base address Non-Secure */
  27. #define SAMA5D4_NS_SRAM_SIZE (64 * SZ_1K) /* Internal SRAM size Non-Secure part (64Kb) */
  28. #endif