smp-sram.txt 779 B

12345678910111213141516171819202122232425262728293031
  1. Rockchip SRAM for smp bringup:
  2. ------------------------------
  3. Rockchip's smp-capable SoCs use the first part of the sram for the bringup
  4. of the cores. Once the core gets powered up it executes the code that is
  5. residing at the very beginning of the sram.
  6. Therefore a reserved section sub-node has to be added to the mmio-sram
  7. declaration.
  8. Required sub-node properties:
  9. - compatible : should be "rockchip,rk3066-smp-sram"
  10. The rest of the properties should follow the generic mmio-sram discription
  11. found in ../../misc/sram.txt
  12. Example:
  13. sram: sram@10080000 {
  14. compatible = "mmio-sram";
  15. reg = <0x10080000 0x10000>;
  16. #address-cells = <1>;
  17. #size-cells = <1>;
  18. ranges;
  19. smp-sram@10080000 {
  20. compatible = "rockchip,rk3066-smp-sram";
  21. reg = <0x10080000 0x50>;
  22. };
  23. };