omap-ocp2scp.txt 735 B

123456789101112131415161718192021222324252627282930
  1. * OMAP OCP2SCP - ocp interface to scp interface
  2. properties:
  3. - compatible : Should be "ti,am437x-ocp2scp" for AM437x processor
  4. Should be "ti,omap-ocp2scp" for all others
  5. - reg : Address and length of the register set for the device
  6. - #address-cells, #size-cells : Must be present if the device has sub-nodes
  7. - ranges : the child address space are mapped 1:1 onto the parent address space
  8. - ti,hwmods : must be "ocp2scp_usb_phy"
  9. Sub-nodes:
  10. All the devices connected to ocp2scp are described using sub-node to ocp2scp
  11. ocp2scp@4a0ad000 {
  12. compatible = "ti,omap-ocp2scp";
  13. reg = <0x4a0ad000 0x1f>;
  14. #address-cells = <1>;
  15. #size-cells = <1>;
  16. ranges;
  17. ti,hwmods = "ocp2scp_usb_phy";
  18. subnode1 {
  19. ...
  20. };
  21. subnode2 {
  22. ...
  23. };
  24. };