* [PATCH 0/3] ARM: dts: sun7i: Olimex A20-SOM-EVB: LRADC-keys, MMC3 and typo fix in the sunxi LRADC binding @ 2015-12-10 20:31 Karsten Merker [not found] ` <1449779521-754-1-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> 0 siblings, 1 reply; 10+ messages in thread From: Karsten Merker @ 2015-12-10 20:31 UTC (permalink / raw) To: Maxime Ripard, Chen-Yu Tsai, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, dev-3kdeTeqwOZ9EV1b7eY7vFQ Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, Hans de Goede, Rob Herring, Ian Campbell, Karsten Merker Hello, the Olimex A20-SOM-EVB is an evaluation board for the Olimex A20-SOM system-on-module. This patchset adds/enables some more hardware features in the board dts: - Patch 1 adds support for the LRADC-keys on the baseboard. - Patch 2 enables the MMC3 controller to allow use of the full-size SD card socket on the baseboard. While adding the LRADC-keys support, I have stumbled over a typo in the bindings documentation. Patch 3 fixes that. Regards, Karsten Karsten Merker (3): ARM: dts: sun7i: Olimex A20-SOM-EVB: Add LRADC keys ARM: dts: sun7i: Olimex A20-SOM-EVB: Enable mmc3 (baseboard SD socket) ARM: dts: sunxi: allwinner,sun4i-a10-lradc-keys binding: typo fix .../devicetree/bindings/input/sun4i-lradc-keys.txt | 2 +- arch/arm/boot/dts/sun7i-a20-olimex-som-evb.dts | 73 ++++++++++++++++++++++ 2 files changed, 74 insertions(+), 1 deletion(-) -- 2.1.4 ^ permalink raw reply [flat|nested] 10+ messages in thread
[parent not found: <1449779521-754-1-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>]
* [PATCH 1/3] ARM: dts: sun7i: Olimex A20-SOM-EVB: Add LRADC keys [not found] ` <1449779521-754-1-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> @ 2015-12-10 20:31 ` Karsten Merker [not found] ` <1449779521-754-2-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> 2015-12-10 20:32 ` [PATCH 2/3] ARM: dts: sun7i: Olimex A20-SOM-EVB: Enable mmc3 (baseboard SD socket) Karsten Merker 2015-12-10 20:32 ` [PATCH 3/3] ARM: dts: sunxi: allwinner,sun4i-a10-lradc-keys binding: typo fix Karsten Merker 2 siblings, 1 reply; 10+ messages in thread From: Karsten Merker @ 2015-12-10 20:31 UTC (permalink / raw) To: Maxime Ripard, Chen-Yu Tsai, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, dev-3kdeTeqwOZ9EV1b7eY7vFQ Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, Hans de Goede, Rob Herring, Ian Campbell, Karsten Merker The Olimex A20-SOM-EVB is an evaluation board for the Olimex A20-SOM system-on-module. It provides a set of android-style buttons (labeled "VOL+", "VOL-", "MENU", "SEARCH", "HOME", "ESC" and "ENTER") which are connected to a low-resolution ADC via a resistor network. This patch adds appropriate button definitions to the board dts. The voltages assigned to the keys are specified in the board schematics published by the manufacturer. Signed-off-by: Karsten Merker <merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> --- arch/arm/boot/dts/sun7i-a20-olimex-som-evb.dts | 56 ++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/arch/arm/boot/dts/sun7i-a20-olimex-som-evb.dts b/arch/arm/boot/dts/sun7i-a20-olimex-som-evb.dts index b7fe102..6562a6bc 100644 --- a/arch/arm/boot/dts/sun7i-a20-olimex-som-evb.dts +++ b/arch/arm/boot/dts/sun7i-a20-olimex-som-evb.dts @@ -1,5 +1,6 @@ /* * Copyright 2015 - Marcus Cooper <codekipper-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> + * Copyright 2015 - Karsten Merker <merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> * * This file is dual-licensed: you can use it either under the terms * of the GPL or the X11 license, at your option. Note that this dual @@ -45,6 +46,7 @@ #include "sunxi-common-regulators.dtsi" #include <dt-bindings/gpio/gpio.h> +#include <dt-bindings/input/input.h> #include <dt-bindings/interrupt-controller/irq.h> #include <dt-bindings/pinctrl/sun4i-a10.h> @@ -110,6 +112,60 @@ }; }; +&lradc { + vref-supply = <®_vcc3v0>; + status = "okay"; + + button@190 { + label = "Volume Up"; + linux,code = <KEY_VOLUMEUP>; + channel = <0>; + voltage = <190000>; + }; + + button@390 { + label = "Volume Down"; + linux,code = <KEY_VOLUMEDOWN>; + channel = <0>; + voltage = <390000>; + }; + + button@600 { + label = "Menu"; + linux,code = <KEY_MENU>; + channel = <0>; + voltage = <600000>; + }; + + button@800 { + label = "Search"; + linux,code = <KEY_SEARCH>; + channel = <0>; + voltage = <800000>; + }; + + button@980 { + label = "Home"; + linux,code = <KEY_HOMEPAGE>; + channel = <0>; + voltage = <980000>; + }; + + button@1180 { + label = "Esc"; + linux,code = <KEY_ESC>; + channel = <0>; + voltage = <1180000>; + }; + + button@1400 { + label = "Enter"; + linux,code = <KEY_ENTER>; + channel = <0>; + voltage = <1400000>; + }; +}; + &mmc0 { pinctrl-names = "default"; pinctrl-0 = <&mmc0_pins_a>, <&mmc0_cd_pin_reference_design>; -- 2.1.4 ^ permalink raw reply related [flat|nested] 10+ messages in thread
[parent not found: <1449779521-754-2-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>]
* Re: [PATCH 1/3] ARM: dts: sun7i: Olimex A20-SOM-EVB: Add LRADC keys [not found] ` <1449779521-754-2-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> @ 2015-12-11 4:05 ` Chen-Yu Tsai 2015-12-11 8:22 ` Maxime Ripard 1 sibling, 0 replies; 10+ messages in thread From: Chen-Yu Tsai @ 2015-12-11 4:05 UTC (permalink / raw) To: Karsten Merker Cc: Maxime Ripard, Chen-Yu Tsai, linux-arm-kernel, devicetree, dev, linux-kernel, Hans de Goede, Rob Herring, Ian Campbell On Fri, Dec 11, 2015 at 4:31 AM, Karsten Merker <merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> wrote: > The Olimex A20-SOM-EVB is an evaluation board for the Olimex > A20-SOM system-on-module. It provides a set of android-style > buttons (labeled "VOL+", "VOL-", "MENU", "SEARCH", "HOME", "ESC" > and "ENTER") which are connected to a low-resolution ADC via a > resistor network. > > This patch adds appropriate button definitions to the board > dts. The voltages assigned to the keys are specified in the > board schematics published by the manufacturer. > > Signed-off-by: Karsten Merker <merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> Acked-by: Chen-Yu Tsai <wens-jdAy2FN1RRM@public.gmane.org> ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/3] ARM: dts: sun7i: Olimex A20-SOM-EVB: Add LRADC keys [not found] ` <1449779521-754-2-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> 2015-12-11 4:05 ` Chen-Yu Tsai @ 2015-12-11 8:22 ` Maxime Ripard 1 sibling, 0 replies; 10+ messages in thread From: Maxime Ripard @ 2015-12-11 8:22 UTC (permalink / raw) To: Karsten Merker Cc: Chen-Yu Tsai, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, dev-3kdeTeqwOZ9EV1b7eY7vFQ, linux-kernel-u79uwXL29TY76Z2rM5mHXA, Hans de Goede, Rob Herring, Ian Campbell [-- Attachment #1: Type: text/plain, Size: 749 bytes --] Hi, On Thu, Dec 10, 2015 at 09:31:59PM +0100, Karsten Merker wrote: > The Olimex A20-SOM-EVB is an evaluation board for the Olimex > A20-SOM system-on-module. It provides a set of android-style > buttons (labeled "VOL+", "VOL-", "MENU", "SEARCH", "HOME", "ESC" > and "ENTER") which are connected to a low-resolution ADC via a > resistor network. > > This patch adds appropriate button definitions to the board > dts. The voltages assigned to the keys are specified in the > board schematics published by the manufacturer. > > Signed-off-by: Karsten Merker <merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> Applied 1 and 2, thanks! Maxime -- Maxime Ripard, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 2/3] ARM: dts: sun7i: Olimex A20-SOM-EVB: Enable mmc3 (baseboard SD socket) [not found] ` <1449779521-754-1-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> 2015-12-10 20:31 ` [PATCH 1/3] ARM: dts: sun7i: Olimex A20-SOM-EVB: Add LRADC keys Karsten Merker @ 2015-12-10 20:32 ` Karsten Merker [not found] ` <1449779521-754-3-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> 2015-12-10 20:32 ` [PATCH 3/3] ARM: dts: sunxi: allwinner,sun4i-a10-lradc-keys binding: typo fix Karsten Merker 2 siblings, 1 reply; 10+ messages in thread From: Karsten Merker @ 2015-12-10 20:32 UTC (permalink / raw) To: Maxime Ripard, Chen-Yu Tsai, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, dev-3kdeTeqwOZ9EV1b7eY7vFQ Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, Hans de Goede, Rob Herring, Ian Campbell, Karsten Merker The Olimex A20-SOM-EVB is an evaluation board for the Olimex A20-SOM system-on-module. The baseboard provides a full-size SD socket (connected to mmc3) in addition to the micro-SD socket on the SOM itself (which is connected to mmc0). Enable the mmc3 controller in the dts. Signed-off-by: Karsten Merker <merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> --- arch/arm/boot/dts/sun7i-a20-olimex-som-evb.dts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/arch/arm/boot/dts/sun7i-a20-olimex-som-evb.dts b/arch/arm/boot/dts/sun7i-a20-olimex-som-evb.dts index 6562a6bc..6a3d95d 100644 --- a/arch/arm/boot/dts/sun7i-a20-olimex-som-evb.dts +++ b/arch/arm/boot/dts/sun7i-a20-olimex-som-evb.dts @@ -176,6 +176,16 @@ status = "okay"; }; +&mmc3 { + pinctrl-names = "default"; + pinctrl-0 = <&mmc3_pins_a>, <&mmc3_cd_pin_olimex_som_evb>; + vmmc-supply = <®_vcc3v3>; + bus-width = <4>; + cd-gpios = <&pio 7 0 GPIO_ACTIVE_HIGH>; /* PH0 */ + cd-inverted; + status = "okay"; +}; + &ohci0 { status = "okay"; }; @@ -198,6 +208,13 @@ allwinner,drive = <SUN4I_PINCTRL_20_MA>; allwinner,pull = <SUN4I_PINCTRL_NO_PULL>; }; + + mmc3_cd_pin_olimex_som_evb: mmc3_cd_pin@0 { + allwinner,pins = "PH0"; + allwinner,function = "gpio_in"; + allwinner,drive = <SUN4I_PINCTRL_10_MA>; + allwinner,pull = <SUN4I_PINCTRL_PULL_UP>; + }; }; ®_ahci_5v { -- 2.1.4 ^ permalink raw reply related [flat|nested] 10+ messages in thread
[parent not found: <1449779521-754-3-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>]
* Re: [PATCH 2/3] ARM: dts: sun7i: Olimex A20-SOM-EVB: Enable mmc3 (baseboard SD socket) [not found] ` <1449779521-754-3-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> @ 2015-12-11 4:07 ` Chen-Yu Tsai 0 siblings, 0 replies; 10+ messages in thread From: Chen-Yu Tsai @ 2015-12-11 4:07 UTC (permalink / raw) To: Karsten Merker Cc: Maxime Ripard, Chen-Yu Tsai, linux-arm-kernel, devicetree, dev, linux-kernel, Hans de Goede, Rob Herring, Ian Campbell On Fri, Dec 11, 2015 at 4:32 AM, Karsten Merker <merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> wrote: > The Olimex A20-SOM-EVB is an evaluation board for the Olimex > A20-SOM system-on-module. The baseboard provides a full-size SD > socket (connected to mmc3) in addition to the micro-SD socket on > the SOM itself (which is connected to mmc0). > > Enable the mmc3 controller in the dts. > > Signed-off-by: Karsten Merker <merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> Acked-by: Chen-Yu Tsai <wens-jdAy2FN1RRM@public.gmane.org> ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 3/3] ARM: dts: sunxi: allwinner,sun4i-a10-lradc-keys binding: typo fix [not found] ` <1449779521-754-1-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> 2015-12-10 20:31 ` [PATCH 1/3] ARM: dts: sun7i: Olimex A20-SOM-EVB: Add LRADC keys Karsten Merker 2015-12-10 20:32 ` [PATCH 2/3] ARM: dts: sun7i: Olimex A20-SOM-EVB: Enable mmc3 (baseboard SD socket) Karsten Merker @ 2015-12-10 20:32 ` Karsten Merker [not found] ` <1449779521-754-4-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> 2 siblings, 1 reply; 10+ messages in thread From: Karsten Merker @ 2015-12-10 20:32 UTC (permalink / raw) To: Maxime Ripard, Chen-Yu Tsai, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, dev-3kdeTeqwOZ9EV1b7eY7vFQ Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, Hans de Goede, Rob Herring, Ian Campbell, Karsten Merker Trivial typo fix ("mut" -> "must") in the sunxi LRADC-keys binding documentation. Signed-off-by: Karsten Merker <merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> --- Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt b/Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt index b9c32f6..4357e49 100644 --- a/Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt +++ b/Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt @@ -12,7 +12,7 @@ Each key is represented as a sub-node of "allwinner,sun4i-a10-lradc-keys": Required subnode-properties: - label: Descriptive name of the key. - linux,code: Keycode to emit. - - channel: Channel this key is attached to, mut be 0 or 1. + - 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: -- 2.1.4 -- You received this message because you are subscribed to the Google Groups "linux-sunxi" group. To unsubscribe from this group and stop receiving emails from it, send an email to linux-sunxi+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/d/optout. ^ permalink raw reply related [flat|nested] 10+ messages in thread
[parent not found: <1449779521-754-4-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>]
* Re: [PATCH 3/3] ARM: dts: sunxi: allwinner,sun4i-a10-lradc-keys binding: typo fix [not found] ` <1449779521-754-4-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> @ 2015-12-11 3:45 ` Rob Herring 2015-12-11 3:54 ` Chen-Yu Tsai 0 siblings, 1 reply; 10+ messages in thread From: Rob Herring @ 2015-12-11 3:45 UTC (permalink / raw) To: Karsten Merker Cc: Maxime Ripard, Chen-Yu Tsai, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, dev-3kdeTeqwOZ9EV1b7eY7vFQ, linux-kernel-u79uwXL29TY76Z2rM5mHXA, Hans de Goede, Ian Campbell On Thu, Dec 10, 2015 at 09:32:01PM +0100, Karsten Merker wrote: > Trivial typo fix ("mut" -> "must") in the sunxi LRADC-keys binding > documentation. > > Signed-off-by: Karsten Merker <merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> > --- > Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt b/Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt > index b9c32f6..4357e49 100644 > --- a/Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt > +++ b/Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt > @@ -12,7 +12,7 @@ Each key is represented as a sub-node of "allwinner,sun4i-a10-lradc-keys": > Required subnode-properties: > - label: Descriptive name of the key. > - linux,code: Keycode to emit. > - - channel: Channel this key is attached to, mut be 0 or 1. > + - 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: > -- > 2.1.4 > -- You received this message because you are subscribed to the Google Groups "linux-sunxi" group. To unsubscribe from this group and stop receiving emails from it, send an email to linux-sunxi+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/d/optout. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 3/3] ARM: dts: sunxi: allwinner,sun4i-a10-lradc-keys binding: typo fix 2015-12-11 3:45 ` Rob Herring @ 2015-12-11 3:54 ` Chen-Yu Tsai [not found] ` <CAGb2v65T=-iPqcyHDUfKX5LFstjcc7XGYfaqkViMpqc_jYAD5A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 10+ messages in thread From: Chen-Yu Tsai @ 2015-12-11 3:54 UTC (permalink / raw) To: Karsten Merker Cc: Rob Herring, Maxime Ripard, Chen-Yu Tsai, linux-arm-kernel, devicetree, dev, linux-kernel, Hans de Goede, Ian Campbell On Fri, Dec 11, 2015 at 11:45 AM, Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> wrote: > On Thu, Dec 10, 2015 at 09:32:01PM +0100, Karsten Merker wrote: >> Trivial typo fix ("mut" -> "must") in the sunxi LRADC-keys binding >> documentation. >> >> Signed-off-by: Karsten Merker <merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> > > Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> Acked-by: Chen-Yu Tsai <wens-jdAy2FN1RRM@public.gmane.org> ^ permalink raw reply [flat|nested] 10+ messages in thread
[parent not found: <CAGb2v65T=-iPqcyHDUfKX5LFstjcc7XGYfaqkViMpqc_jYAD5A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH 3/3] ARM: dts: sunxi: allwinner,sun4i-a10-lradc-keys binding: typo fix [not found] ` <CAGb2v65T=-iPqcyHDUfKX5LFstjcc7XGYfaqkViMpqc_jYAD5A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2015-12-11 3:55 ` Chen-Yu Tsai 0 siblings, 0 replies; 10+ messages in thread From: Chen-Yu Tsai @ 2015-12-11 3:55 UTC (permalink / raw) To: Karsten Merker Cc: Chen-Yu Tsai, Rob Herring, Maxime Ripard, linux-arm-kernel, devicetree, dev, linux-kernel, Hans de Goede, Ian Campbell On Fri, Dec 11, 2015 at 11:54 AM, Chen-Yu Tsai <wens-jdAy2FN1RRM@public.gmane.org> wrote: > On Fri, Dec 11, 2015 at 11:45 AM, Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> wrote: >> On Thu, Dec 10, 2015 at 09:32:01PM +0100, Karsten Merker wrote: >>> Trivial typo fix ("mut" -> "must") in the sunxi LRADC-keys binding >>> documentation. >>> >>> Signed-off-by: Karsten Merker <merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> >> >> Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> > > Acked-by: Chen-Yu Tsai <wens-jdAy2FN1RRM@public.gmane.org> You should send this patch to the input subsystem maintainer and input mailing list (with all the acks gathered in this thread). ChenYu ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2015-12-11 8:22 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-12-10 20:31 [PATCH 0/3] ARM: dts: sun7i: Olimex A20-SOM-EVB: LRADC-keys, MMC3 and typo fix in the sunxi LRADC binding Karsten Merker [not found] ` <1449779521-754-1-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> 2015-12-10 20:31 ` [PATCH 1/3] ARM: dts: sun7i: Olimex A20-SOM-EVB: Add LRADC keys Karsten Merker [not found] ` <1449779521-754-2-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> 2015-12-11 4:05 ` Chen-Yu Tsai 2015-12-11 8:22 ` Maxime Ripard 2015-12-10 20:32 ` [PATCH 2/3] ARM: dts: sun7i: Olimex A20-SOM-EVB: Enable mmc3 (baseboard SD socket) Karsten Merker [not found] ` <1449779521-754-3-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> 2015-12-11 4:07 ` Chen-Yu Tsai 2015-12-10 20:32 ` [PATCH 3/3] ARM: dts: sunxi: allwinner,sun4i-a10-lradc-keys binding: typo fix Karsten Merker [not found] ` <1449779521-754-4-git-send-email-merker-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> 2015-12-11 3:45 ` Rob Herring 2015-12-11 3:54 ` Chen-Yu Tsai [not found] ` <CAGb2v65T=-iPqcyHDUfKX5LFstjcc7XGYfaqkViMpqc_jYAD5A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2015-12-11 3:55 ` Chen-Yu Tsai
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).