mirror of
https://github.com/torvalds/linux.git
synced 2026-04-24 17:42:27 -04:00
Allwinner A83T SoC has a low res adc like the one in Allwinner A10 SoC, however, the A10 SoC's vref of lradc internally is divided by 2/3 and the A83T SoC's vref of lradc internally is divided by 3/4, thus add a hardware variant for it to be compatible with various devices. Signed-off-by: Ziping Chen <techping.chan@gmail.com> Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
65 lines
1.4 KiB
Plaintext
65 lines
1.4 KiB
Plaintext
Allwinner sun4i low res adc attached tablet keys
|
|
------------------------------------------------
|
|
|
|
Required properties:
|
|
- compatible: should be one of the following string:
|
|
"allwinner,sun4i-a10-lradc-keys"
|
|
"allwinner,sun8i-a83t-r-lradc"
|
|
- reg: mmio address range of the chip
|
|
- interrupts: interrupt to which the chip is connected
|
|
- vref-supply: powersupply for the lradc reference voltage
|
|
|
|
Each key is represented as a sub-node of the compatible mentioned above:
|
|
|
|
Required subnode-properties:
|
|
- label: Descriptive name of the key.
|
|
- linux,code: Keycode to emit.
|
|
- channel: Channel this key is attached to, must be 0 or 1.
|
|
- voltage: Voltage in µV at lradc input when this key is pressed.
|
|
|
|
Example:
|
|
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
lradc: lradc@1c22800 {
|
|
compatible = "allwinner,sun4i-a10-lradc-keys";
|
|
reg = <0x01c22800 0x100>;
|
|
interrupts = <31>;
|
|
vref-supply = <®_vcc3v0>;
|
|
|
|
button@191 {
|
|
label = "Volume Up";
|
|
linux,code = <KEY_VOLUMEUP>;
|
|
channel = <0>;
|
|
voltage = <191274>;
|
|
};
|
|
|
|
button@392 {
|
|
label = "Volume Down";
|
|
linux,code = <KEY_VOLUMEDOWN>;
|
|
channel = <0>;
|
|
voltage = <392644>;
|
|
};
|
|
|
|
button@601 {
|
|
label = "Menu";
|
|
linux,code = <KEY_MENU>;
|
|
channel = <0>;
|
|
voltage = <601151>;
|
|
};
|
|
|
|
button@795 {
|
|
label = "Enter";
|
|
linux,code = <KEY_ENTER>;
|
|
channel = <0>;
|
|
voltage = <795090>;
|
|
};
|
|
|
|
button@987 {
|
|
label = "Home";
|
|
linux,code = <KEY_HOMEPAGE>;
|
|
channel = <0>;
|
|
voltage = <987387>;
|
|
};
|
|
};
|