• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
13 #ifndef SAMA5D4_H
14 #define SAMA5D4_H
15 
16 /*
17  * User Peripheral physical base addresses.
18  */
19 #define SAMA5D4_BASE_USART3	0xfc00c000 /* (USART3 non-secure) Base Address */
20 #define SAMA5D4_BASE_PMC	0xf0018000 /* (PMC) Base Address */
21 #define SAMA5D4_BASE_MPDDRC	0xf0010000 /* (MPDDRC) Base Address */
22 #define SAMA5D4_BASE_PIOD	0xfc068000 /* (PIOD) Base Address */
23 
24 /* Some other peripherals */
25 #define SAMA5D4_BASE_SYS2	SAMA5D4_BASE_PIOD
26 
27 /*
28  * Internal Memory.
29  */
30 #define SAMA5D4_NS_SRAM_BASE     0x00210000      /* Internal SRAM base address Non-Secure */
31 #define SAMA5D4_NS_SRAM_SIZE     (64 * SZ_1K)   /* Internal SRAM size Non-Secure part (64Kb) */
32 
33 #endif
34