ste-u300.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ST-Ericsson U300 Device Tree Bindings
  2. For various board the "board" node may contain specific properties
  3. that pertain to this particular board, such as board-specific GPIOs
  4. or board power regulator supplies.
  5. Required root node property:
  6. compatible="stericsson,u300";
  7. Required node: syscon
  8. This contains the system controller.
  9. - compatible: must be "stericsson,u300-syscon".
  10. - reg: the base address and size of the system controller.
  11. Boards with the U300 SoC include:
  12. S365 "Small Board U365":
  13. Required node: s365
  14. This contains the board-specific information.
  15. - compatible: must be "stericsson,s365".
  16. - vana15-supply: the regulator supplying the 1.5V to drive the
  17. board.
  18. - syscon: a pointer to the syscon node so we can access the
  19. syscon registers to set the board as self-powered.
  20. Example:
  21. / {
  22. model = "ST-Ericsson U300";
  23. compatible = "stericsson,u300";
  24. #address-cells = <1>;
  25. #size-cells = <1>;
  26. s365 {
  27. compatible = "stericsson,s365";
  28. vana15-supply = <&ab3100_ldo_d_reg>;
  29. syscon = <&syscon>;
  30. };
  31. syscon: syscon@c0011000 {
  32. compatible = "stericsson,u300-syscon";
  33. reg = <0xc0011000 0x1000>;
  34. };
  35. };