allwinner,sun4i-ps2.txt 757 B

1234567891011121314151617181920212223
  1. * Device tree bindings for Allwinner A10, A20 PS2 host controller
  2. A20 PS2 is dual role controller (PS2 host and PS2 device). These bindings are
  3. for PS2 A10/A20 host controller. IBM compliant IBM PS2 and AT-compatible keyboard
  4. and mouse can be connected.
  5. Required properties:
  6. - reg : Offset and length of the register set for the device.
  7. - compatible : Should be as of the following:
  8. - "allwinner,sun4i-a10-ps2"
  9. - interrupts : The interrupt line connected to the PS2.
  10. - clocks : The gate clk connected to the PS2.
  11. Example:
  12. ps20: ps2@0x01c2a000 {
  13. compatible = "allwinner,sun4i-a10-ps2";
  14. reg = <0x01c2a000 0x400>;
  15. interrupts = <0 62 4>;
  16. clocks = <&apb1_gates 6>;
  17. status = "disabled";
  18. };