hc
2023-03-13 25c72f09e887f85fcff4a3f978d294da97ab1420
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Device-Tree binding for ps/2 gpio device
 
Required properties:
   - compatible = "ps2-gpio"
   - data-gpios: the data pin
   - clk-gpios: the clock pin
   - interrupts: Should trigger on the falling edge of the clock line.
 
Optional properties:
   - write-enable: Indicates whether write function is provided
   to serio device. Possibly providing the write fn will not work, because
   of the tough timing requirements.
 
Example nodes:
 
ps2@0 {
   compatible = "ps2-gpio";
   interrupt-parent = <&gpio>;
   interrupts = <23 IRQ_TYPE_EDGE_FALLING>;
   data-gpios = <&gpio 24 GPIO_ACTIVE_HIGH>;
   clk-gpios = <&gpio 23 GPIO_ACTIVE_HIGH>;
   write-enable;
};