README-integrator 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. U-Boot for ARM Integrator Development Platforms
  2. Peter Pearse, ARM Ltd.
  3. peter.pearse@arm.com
  4. www.arm.com
  5. Manuals available from :-
  6. http://www.arm.com/products/DevTools/Hardware_Platforms.html
  7. Overview :
  8. --------
  9. There are two Integrator variants - Integrator/AP and Integrator/CP.
  10. Each may be fitted with a variety of core modules (CMs).
  11. Each CM consists of a ARM processor core and associated hardware e.g
  12. FPGA implementing various controllers and/or register
  13. SSRAM
  14. SDRAM
  15. RAM controllers
  16. clock generators etc.
  17. CMs may be fitted with varying amounts of SDRAM using a DIMM socket.
  18. Boot Methods :
  19. ------------
  20. Integrator platforms can be configured to use U-Boot in at least three ways :-
  21. a) Run ARM boot monitor, manually run U-Boot image from flash
  22. b) Run ARM boot monitor, automatically run U-Boot image from flash
  23. c) Run U-Boot image direct from flash.
  24. In cases a) and b) the ARM boot monitor will have configured the CM and mapped
  25. writeable memory to 0x00000000 in the Integrator address space.
  26. U-Boot has to carry out minimal configration before standard code is run.
  27. In case c) it may be necessary for U-Boot to perform CM dependent initialization.
  28. Configuring U-Boot :
  29. ------------------
  30. The makefile contains targets for Integrator platforms of both types
  31. fitted with all current variants of CM. If these targets are to be used with
  32. boot process c) above then CONFIG_INIT_CRITICAL may need to be defined to ensure
  33. that the CM is correctly configured.
  34. There are also targets independent of CM. These may not be suitable for
  35. boot process c) above. They have been preserved for backward compatibility with
  36. existing build processes.
  37. Code Hierarchy Applied :
  38. ----------------------
  39. Code specific to initialization of a particular ARM processor has been placed in
  40. cpu/arm<>/start.S so that it may be used by other boards.
  41. However, to avoid duplicating code through all processor files, a generic core
  42. for ARM Integrator CMs has been added
  43. cpu/arm_intcm
  44. Otherwise. for example, the standard CM reset via the CM control register would
  45. need placing in each CM processor file......
  46. Code specific to the initialization of the CM, rather than the cpu, and initialization
  47. of the Integrator board itself, has been placed in
  48. board/integrator<>/platform.S
  49. board/integrator<>/integrator<>.c