]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - doc/README.at91
ARM: at91: fix and update README.at91 document
[karo-tx-uboot.git] / doc / README.at91
1 Atmel AT91 Evaluation kits
2
3 I. Board mapping & boot media
4 ------------------------------------------------------------------------------
5 AT91SAM9260EK, AT91SAM9G20EK & AT91SAM9XEEK
6 ------------------------------------------------------------------------------
7
8 Memory map
9         0x20000000 - 23FFFFFF   SDRAM (64 MB)
10         0xC0000000 - Cxxxxxxx   Atmel Dataflash card (J13)
11         0xD0000000 - D07FFFFF   Soldered Atmel Dataflash (AT45DB642)
12
13 Environment 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) :
21                 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 ------------------------------------------------------------------------------
27 AT91SAM9261EK, AT91SAM9G10EK
28 ------------------------------------------------------------------------------
29
30 Memory map
31         0x20000000 - 23FFFFFF   SDRAM (64 MB)
32         0xC0000000 - C07FFFFF   Soldered Atmel Dataflash (AT45DB642)
33         0xD0000000 - Dxxxxxxx   Atmel Dataflash card (J22)
34
35 Environment 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) :
43                 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 ------------------------------------------------------------------------------
49 AT91SAM9263EK
50 ------------------------------------------------------------------------------
51
52 Memory map
53         0x20000000 - 23FFFFFF   SDRAM (64 MB)
54         0xC0000000 - Cxxxxxxx   Atmel Dataflash card (J9)
55
56 Environment 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.
61                 - Nor flash (not populate by default)
62
63         You can choose your storage location at config step (here for at91sam9260ek) :
64                 make at91sam9263ek_nandflash_config     - use nand flash
65                 make at91sam9263ek_dataflash_cs0_config - use data flash (spi cs0)
66                 make at91sam9263ek_norflash_config      - use nor flash
67
68         You can choose to boot directly from U-Boot at config step
69                 make at91sam9263ek_norflash_boot_config - boot from nor flash
70
71
72 ------------------------------------------------------------------------------
73 AT91SAM9M10G45EK
74 ------------------------------------------------------------------------------
75
76 Memory map
77         0x70000000 - 77FFFFFF   SDRAM (128 MB)
78
79 Environment variables
80
81         U-Boot environment variables can be stored at different places:
82                 - Nand flash.
83
84         You can choose your storage location at config step (here for at91sam9m10g45ek) :
85                 make at91sam9m10g45ek_nandflash_config          - use nand flash
86
87
88 ------------------------------------------------------------------------------
89 AT91SAM9RLEK
90 ------------------------------------------------------------------------------
91
92 Memory map
93         0x20000000 - 23FFFFFF   SDRAM (64 MB)
94         0xC0000000 - C07FFFFF   Soldered Atmel Dataflash (AT45DB642)
95
96 Environment variables
97
98         U-Boot environment variables can be stored at different places:
99                 - Dataflash on SPI chip select 0
100                 - Nand flash.
101
102         You can choose your storage location at config step (here for at91sam9rlek) :
103                 make at91sam9rlek_nandflash_config      - use nand flash
104
105 II. Watchdog support
106
107         For security reasons, the at91 watchdog is running at boot time and,
108         if deactivated, cannot be used anymore.
109         If you want to use the watchdog, you will need to keep it running in
110         your code (make sure not to disable it in AT91Bootstrap for instance).
111
112         In the U-Boot configuration, the AT91 watchdog support is enabled using
113         the CONFIG_AT91SAM9_WATCHDOG and CONFIG_HW_WATCHDOG options.