blob: bcf62f856358d095916ffe50de4f9d6e65abae50 [file] [log] [blame]
Roland Stigge69690be2012-07-13 00:08:34 -07001NXP LPC32xx Key Scan Interface
2
Simon Glass1d0b1c72013-01-10 17:41:32 -08003This binding is based on the matrix-keymap binding with the following
4changes:
5
Roland Stigge69690be2012-07-13 00:08:34 -07006Required Properties:
7- compatible: Should be "nxp,lpc3220-key"
8- reg: Physical base address of the controller and length of memory mapped
9 region.
10- interrupts: The interrupt number to the cpu.
Roland Stigge69690be2012-07-13 00:08:34 -070011- nxp,debounce-delay-ms: Debounce delay in ms
12- nxp,scan-delay-ms: Repeated scan period in ms
13- linux,keymap: the key-code to be reported when the key is pressed
14 and released, see also
15 Documentation/devicetree/bindings/input/matrix-keymap.txt
16
Simon Glass1d0b1c72013-01-10 17:41:32 -080017Note: keypad,num-rows and keypad,num-columns are required, and must be equal
18since LPC32xx only supports square matrices
19
Roland Stigge69690be2012-07-13 00:08:34 -070020Example:
21
22 key@40050000 {
23 compatible = "nxp,lpc3220-key";
24 reg = <0x40050000 0x1000>;
25 interrupts = <54 0>;
26 keypad,num-rows = <1>;
27 keypad,num-columns = <1>;
28 nxp,debounce-delay-ms = <3>;
29 nxp,scan-delay-ms = <34>;
30 linux,keymap = <0x00000002>;
31 };