smp-sram.txt 875 B

1234567891011121314151617181920212223242526272829303132
  1. Amlogic Meson8 and Meson8b SRAM for smp bringup:
  2. ------------------------------------------------
  3. Amlogic's SMP-capable SoCs use part of the sram for the bringup of the cores.
  4. Once the core gets powered up it executes the code that is residing at a
  5. specific location.
  6. Therefore a reserved section sub-node has to be added to the mmio-sram
  7. declaration.
  8. Required sub-node properties:
  9. - compatible : depending on the SoC this should be one of:
  10. "amlogic,meson8-smp-sram"
  11. "amlogic,meson8b-smp-sram"
  12. The rest of the properties should follow the generic mmio-sram discription
  13. found in ../../misc/sram.txt
  14. Example:
  15. sram: sram@d9000000 {
  16. compatible = "mmio-sram";
  17. reg = <0xd9000000 0x20000>;
  18. #address-cells = <1>;
  19. #size-cells = <1>;
  20. ranges = <0 0xd9000000 0x20000>;
  21. smp-sram@1ff80 {
  22. compatible = "amlogic,meson8b-smp-sram";
  23. reg = <0x1ff80 0x8>;
  24. };
  25. };