README.at91 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. Atmel AT91 Evaluation kits
  2. I. Board mapping & boot media
  3. ------------------------------------------------------------------------------
  4. AT91SAM9260EK, AT91SAM9G20EK & AT91SAM9XEEK
  5. ------------------------------------------------------------------------------
  6. Memory map
  7. 0x20000000 - 23FFFFFF SDRAM (64 MB)
  8. 0xC0000000 - Cxxxxxxx Atmel Dataflash card (J13)
  9. 0xD0000000 - D07FFFFF Soldered Atmel Dataflash (AT45DB642)
  10. Environment variables
  11. U-Boot environment variables can be stored at different places:
  12. - Dataflash on SPI chip select 1 (default)
  13. - Dataflash on SPI chip select 0 (dataflash card)
  14. - Nand flash.
  15. You can choose your storage location at config step (here for at91sam9260ek) :
  16. make at91sam9260ek_nandflash_config - use nand flash
  17. make at91sam9260ek_dataflash_cs0_config - use data flash (spi cs0)
  18. make at91sam9260ek_dataflash_cs1_config - use data flash (spi cs1)
  19. ------------------------------------------------------------------------------
  20. AT91SAM9261EK, AT91SAM9G10EK
  21. ------------------------------------------------------------------------------
  22. Memory map
  23. 0x20000000 - 23FFFFFF SDRAM (64 MB)
  24. 0xC0000000 - C07FFFFF Soldered Atmel Dataflash (AT45DB642)
  25. 0xD0000000 - Dxxxxxxx Atmel Dataflash card (J22)
  26. Environment variables
  27. U-Boot environment variables can be stored at different places:
  28. - Dataflash on SPI chip select 0 (default)
  29. - Dataflash on SPI chip select 3 (dataflash card)
  30. - Nand flash.
  31. You can choose your storage location at config step (here for at91sam9260ek) :
  32. make at91sam9261ek_nandflash_config - use nand flash
  33. make at91sam9261ek_dataflash_cs0_config - use data flash (spi cs0)
  34. make at91sam9261ek_dataflash_cs3_config - use data flash (spi cs3)
  35. ------------------------------------------------------------------------------
  36. AT91SAM9263EK
  37. ------------------------------------------------------------------------------
  38. Memory map
  39. 0x20000000 - 23FFFFFF SDRAM (64 MB)
  40. 0xC0000000 - Cxxxxxxx Atmel Dataflash card (J9)
  41. Environment variables
  42. U-Boot environment variables can be stored at different places:
  43. - Dataflash on SPI chip select 0 (dataflash card)
  44. - Nand flash.
  45. - Nor flash (not populate by default)
  46. You can choose your storage location at config step (here for at91sam9260ek) :
  47. make at91sam9263ek_nandflash_config - use nand flash
  48. make at91sam9263ek_dataflash_cs0_config - use data flash (spi cs0)
  49. make at91sam9263ek_norflash_config - use nor flash
  50. You can choose to boot directly from U-Boot at config step
  51. make at91sam9263ek_norflash_boot_config - boot from nor flash
  52. ------------------------------------------------------------------------------
  53. AT91SAM9M10G45EK
  54. ------------------------------------------------------------------------------
  55. Memory map
  56. 0x70000000 - 77FFFFFF SDRAM (128 MB)
  57. Environment variables
  58. U-Boot environment variables can be stored at different places:
  59. - Nand flash.
  60. You can choose your storage location at config step (here for at91sam9m10g45ek) :
  61. make at91sam9m10g45ek_nandflash_config - use nand flash
  62. ------------------------------------------------------------------------------
  63. AT91SAM9RLEK
  64. ------------------------------------------------------------------------------
  65. Memory map
  66. 0x20000000 - 23FFFFFF SDRAM (64 MB)
  67. 0xC0000000 - C07FFFFF Soldered Atmel Dataflash (AT45DB642)
  68. Environment variables
  69. U-Boot environment variables can be stored at different places:
  70. - Dataflash on SPI chip select 0
  71. - Nand flash.
  72. You can choose your storage location at config step (here for at91sam9rlek) :
  73. make at91sam9rlek_nandflash_config - use nand flash
  74. ------------------------------------------------------------------------------
  75. AT91SAM9N12EK, AT91SAM9X5EK
  76. ------------------------------------------------------------------------------
  77. Memory map
  78. 0x20000000 - 27FFFFFF SDRAM (128 MB)
  79. Environment variables
  80. U-Boot environment variables can be stored at different places:
  81. - Nand flash.
  82. - SD/MMC card
  83. - Serialflash/Dataflash on SPI chip select 0
  84. You can choose your storage location at config step (here for at91sam9x5ek) :
  85. make at91sam9x5ek_dataflash_config - use data flash
  86. make at91sam9x5ek_mmc_config - use sd/mmc card
  87. make at91sam9x5ek_nandflash_config - use nand flash
  88. make at91sam9x5ek_spiflash_config - use serial flash
  89. ------------------------------------------------------------------------------
  90. SAMA5D3XEK
  91. ------------------------------------------------------------------------------
  92. Memory map
  93. 0x20000000 - 3FFFFFFF SDRAM (512 MB)
  94. Environment variables
  95. U-Boot environment variables can be stored at different places:
  96. - Nand flash.
  97. - SD/MMC card
  98. - Serialflash on SPI chip select 0
  99. You can choose your storage location at config step (here for sama5d3xek) :
  100. make sama5d3xek_mmc_config - use SD/MMC card
  101. make sama5d3xek_nandflash_config - use nand flash
  102. make sama5d3xek_serialflash_config - use serial flash
  103. II. Watchdog support
  104. For security reasons, the at91 watchdog is running at boot time and,
  105. if deactivated, cannot be used anymore.
  106. If you want to use the watchdog, you will need to keep it running in
  107. your code (make sure not to disable it in AT91Bootstrap for instance).
  108. In the U-Boot configuration, the AT91 watchdog support is enabled using
  109. the CONFIG_AT91SAM9_WATCHDOG and CONFIG_HW_WATCHDOG options.