README-integrator 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. Boot Methods :
  18. ------------
  19. Integrator platforms can be configured to use U-Boot in at least three ways :-
  20. a) Run ARM boot monitor, manually run U-Boot image from flash
  21. b) Run ARM boot monitor, automatically run U-Boot image from flash
  22. c) Run U-Boot image direct from flash.
  23. In cases a) and b) the ARM boot monitor will have configured the CM and mapped
  24. writeable memory to 0x00000000 in the Integrator address space.
  25. U-Boot has to carry out minimal configration before standard code is run.
  26. In case c) it may be necessary for U-Boot to perform CM dependent initialization.
  27. Configuring U-Boot :
  28. ------------------
  29. The makefile contains targets for Integrator platforms of both types
  30. fitted with all current variants of CM. If these targets are to be used with
  31. boot process c) above then CONFIG_INIT_CRITICAL may need to be defined to ensure
  32. that the CM is correctly configured.
  33. There are also targets independent of CM. These may not be suitable for
  34. boot process c) above. They have been preserved for backward compatibility with
  35. existing build processes.
  36. Code Hierarchy Applied :
  37. ----------------------
  38. Code specific to initialization of a particular ARM processor has been placed in
  39. cpu/arm<>/start.S so that it may be used by other boards.
  40. However, to avoid duplicating code through all processor files, a generic core
  41. for ARM Integrator CMs has been added
  42. cpu/arm_intcm
  43. Otherwise. for example, the standard CM reset via the CM control register would
  44. need placing in each CM processor file......
  45. Code specific to the initialization of the CM, rather than the cpu, and initialization
  46. of the Integrator board itself, has been placed in
  47. board/integrator<>/platform.S
  48. board/integrator<>/integrator<>.c