omap-hdq.txt 535 B

12345678910111213141516171819202122
  1. * OMAP HDQ One wire bus master controller
  2. Required properties:
  3. - compatible : should be "ti,omap3-1w" or "ti,am4372-hdq"
  4. - reg : Address and length of the register set for the device
  5. - interrupts : interrupt line.
  6. - ti,hwmods : "hdq1w"
  7. Optional properties:
  8. - ti,mode: should be "hdq": HDQ mode "1w": one-wire mode.
  9. If not specified HDQ mode is implied.
  10. Example:
  11. - From omap3.dtsi
  12. hdqw1w: 1w@480b2000 {
  13. compatible = "ti,omap3-1w";
  14. reg = <0x480b2000 0x1000>;
  15. interrupts = <58>;
  16. ti,hwmods = "hdq1w";
  17. ti,mode = "hdq";
  18. };