README.at91 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. II. Watchdog support
  75. For security reasons, the at91 watchdog is running at boot time and,
  76. if deactivated, cannot be used anymore.
  77. If you want to use the watchdog, you will need to keep it running in
  78. your code (make sure not to disable it in AT91Bootstrap for instance).
  79. In the U-Boot configuration, the AT91 watchdog support is enabled using
  80. the CONFIG_AT91SAM9_WATCHDOG and CONFIG_HW_WATCHDOG options.