omap-ocp2scp.txt 661 B

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