blob: 5cf977095eeef20c847117a323ff902576015b84 [file] [log] [blame]
Nicolas Ferre89a7a872008-12-06 13:11:14 +01001Atmel AT91 Evaluation kits
2
Jean-Christophe PLAGNIOL-VILLARD843a2652009-03-27 23:26:42 +01003I. Board mapping & boot media
Nicolas Ferre89a7a872008-12-06 13:11:14 +01004------------------------------------------------------------------------------
Nicolas Ferredf486b12009-03-22 14:48:16 +01005AT91SAM9260EK, AT91SAM9G20EK & AT91SAM9XEEK
Nicolas Ferre89a7a872008-12-06 13:11:14 +01006------------------------------------------------------------------------------
7
8Memory map
9 0x20000000 - 23FFFFFF SDRAM (64 MB)
10 0xC0000000 - Cxxxxxxx Atmel Dataflash card (J13)
Bo Shenc9b23f82013-05-12 23:28:38 +000011 0xD0000000 - D07FFFFF Soldered Atmel Dataflash (AT45DB642)
Nicolas Ferre89a7a872008-12-06 13:11:14 +010012
13Environment variables
14
15 U-Boot environment variables can be stored at different places:
16 - Dataflash on SPI chip select 1 (default)
17 - Dataflash on SPI chip select 0 (dataflash card)
18 - Nand flash.
19
20 You can choose your storage location at config step (here for at91sam9260ek) :
Nicolas Ferre89a7a872008-12-06 13:11:14 +010021 make at91sam9260ek_nandflash_config - use nand flash
22 make at91sam9260ek_dataflash_cs0_config - use data flash (spi cs0)
23 make at91sam9260ek_dataflash_cs1_config - use data flash (spi cs1)
24
25
26------------------------------------------------------------------------------
Sedji Gaouaou5ccc2d92009-06-25 17:04:15 +020027AT91SAM9261EK, AT91SAM9G10EK
Nicolas Ferre89a7a872008-12-06 13:11:14 +010028------------------------------------------------------------------------------
29
30Memory map
31 0x20000000 - 23FFFFFF SDRAM (64 MB)
Bo Shenc9b23f82013-05-12 23:28:38 +000032 0xC0000000 - C07FFFFF Soldered Atmel Dataflash (AT45DB642)
Nicolas Ferre89a7a872008-12-06 13:11:14 +010033 0xD0000000 - Dxxxxxxx Atmel Dataflash card (J22)
34
35Environment variables
36
37 U-Boot environment variables can be stored at different places:
38 - Dataflash on SPI chip select 0 (default)
39 - Dataflash on SPI chip select 3 (dataflash card)
40 - Nand flash.
41
42 You can choose your storage location at config step (here for at91sam9260ek) :
Nicolas Ferre89a7a872008-12-06 13:11:14 +010043 make at91sam9261ek_nandflash_config - use nand flash
44 make at91sam9261ek_dataflash_cs0_config - use data flash (spi cs0)
45 make at91sam9261ek_dataflash_cs3_config - use data flash (spi cs3)
46
47
48------------------------------------------------------------------------------
49AT91SAM9263EK
50------------------------------------------------------------------------------
51
52Memory map
53 0x20000000 - 23FFFFFF SDRAM (64 MB)
54 0xC0000000 - Cxxxxxxx Atmel Dataflash card (J9)
55
56Environment variables
57
58 U-Boot environment variables can be stored at different places:
59 - Dataflash on SPI chip select 0 (dataflash card)
60 - Nand flash.
Thomas Weberc46bf092012-03-24 22:44:01 +000061 - Nor flash (not populate by default)
Nicolas Ferre89a7a872008-12-06 13:11:14 +010062
63 You can choose your storage location at config step (here for at91sam9260ek) :
Nicolas Ferre89a7a872008-12-06 13:11:14 +010064 make at91sam9263ek_nandflash_config - use nand flash
65 make at91sam9263ek_dataflash_cs0_config - use data flash (spi cs0)
Thomas Weberc46bf092012-03-24 22:44:01 +000066 make at91sam9263ek_norflash_config - use nor flash
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +020067
68 You can choose to boot directly from U-Boot at config step
Thomas Weberc46bf092012-03-24 22:44:01 +000069 make at91sam9263ek_norflash_boot_config - boot from nor flash
Nicolas Ferre89a7a872008-12-06 13:11:14 +010070
71
72------------------------------------------------------------------------------
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020073AT91SAM9M10G45EK
74------------------------------------------------------------------------------
75
76Memory map
Bo Shenc9b23f82013-05-12 23:28:38 +000077 0x70000000 - 77FFFFFF SDRAM (128 MB)
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020078
79Environment variables
80
81 U-Boot environment variables can be stored at different places:
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020082 - Nand flash.
83
84 You can choose your storage location at config step (here for at91sam9m10g45ek) :
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020085 make at91sam9m10g45ek_nandflash_config - use nand flash
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020086
87
88------------------------------------------------------------------------------
Nicolas Ferre89a7a872008-12-06 13:11:14 +010089AT91SAM9RLEK
90------------------------------------------------------------------------------
91
92Memory map
93 0x20000000 - 23FFFFFF SDRAM (64 MB)
Bo Shenc9b23f82013-05-12 23:28:38 +000094 0xC0000000 - C07FFFFF Soldered Atmel Dataflash (AT45DB642)
Nicolas Ferre89a7a872008-12-06 13:11:14 +010095
96Environment variables
97
98 U-Boot environment variables can be stored at different places:
99 - Dataflash on SPI chip select 0
100 - Nand flash.
101
Bo Shenc9b23f82013-05-12 23:28:38 +0000102 You can choose your storage location at config step (here for at91sam9rlek) :
103 make at91sam9rlek_nandflash_config - use nand flash
Jean-Christophe PLAGNIOL-VILLARD843a2652009-03-27 23:26:42 +0100104
Bo Shene9350d62013-05-12 23:28:39 +0000105
106------------------------------------------------------------------------------
107AT91SAM9N12EK, AT91SAM9X5EK
108------------------------------------------------------------------------------
109
110Memory map
111 0x20000000 - 27FFFFFF SDRAM (128 MB)
112
113Environment variables
114
115 U-Boot environment variables can be stored at different places:
116 - Nand flash.
117 - SD/MMC card
118 - Serialflash/Dataflash on SPI chip select 0
119
120 You can choose your storage location at config step (here for at91sam9x5ek) :
121 make at91sam9x5ek_dataflash_config - use data flash
122 make at91sam9x5ek_mmc_config - use sd/mmc card
123 make at91sam9x5ek_nandflash_config - use nand flash
124 make at91sam9x5ek_spiflash_config - use serial flash
125
126
127------------------------------------------------------------------------------
128SAMA5D3XEK
129------------------------------------------------------------------------------
130
131Memory map
132 0x20000000 - 3FFFFFFF SDRAM (512 MB)
133
134Environment variables
135
136 U-Boot environment variables can be stored at different places:
137 - Nand flash.
138 - SD/MMC card
139 - Serialflash on SPI chip select 0
140
141 You can choose your storage location at config step (here for sama5d3xek) :
142 make sama5d3xek_mmc_config - use SD/MMC card
143 make sama5d3xek_nandflash_config - use nand flash
144 make sama5d3xek_serialflash_config - use serial flash
145
146
Jean-Christophe PLAGNIOL-VILLARD843a2652009-03-27 23:26:42 +0100147II. Watchdog support
148
149 For security reasons, the at91 watchdog is running at boot time and,
150 if deactivated, cannot be used anymore.
151 If you want to use the watchdog, you will need to keep it running in
152 your code (make sure not to disable it in AT91Bootstrap for instance).
153
154 In the U-Boot configuration, the AT91 watchdog support is enabled using
155 the CONFIG_AT91SAM9_WATCHDOG and CONFIG_HW_WATCHDOG options.