Since the PMIC driver now has IRQ handling, add the GPIO to
listen to things like RTC alarm or ADC conversion completion.
Signed-off-by: Andreas Kemnade <[email protected]>
---
The corresponding property is added to the bindings documentation in
https://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git/log/?h=ib-mfd-iio-rtc-5.7
arch/arm/boot/dts/e60k02.dtsi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm/boot/dts/e60k02.dtsi b/arch/arm/boot/dts/e60k02.dtsi
index ce50c4dc6f2a..3af1ab4458ef 100644
--- a/arch/arm/boot/dts/e60k02.dtsi
+++ b/arch/arm/boot/dts/e60k02.dtsi
@@ -117,6 +117,8 @@
ricoh619: pmic@32 {
compatible = "ricoh,rc5t619";
reg = <0x32>;
+ interrupt-parent = <&gpio5>;
+ interrupts = <11 IRQ_TYPE_EDGE_FALLING>;
system-power-controller;
regulators {
--
2.20.1
ping...
Regards,
Andreas
On Sun, 29 Mar 2020 12:42:50 +0200
Andreas Kemnade <[email protected]> wrote:
> Since the PMIC driver now has IRQ handling, add the GPIO to
> listen to things like RTC alarm or ADC conversion completion.
>
> Signed-off-by: Andreas Kemnade <[email protected]>
> ---
> The corresponding property is added to the bindings documentation in
> https://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git/log/?h=ib-mfd-iio-rtc-5.7
> arch/arm/boot/dts/e60k02.dtsi | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/arch/arm/boot/dts/e60k02.dtsi b/arch/arm/boot/dts/e60k02.dtsi
> index ce50c4dc6f2a..3af1ab4458ef 100644
> --- a/arch/arm/boot/dts/e60k02.dtsi
> +++ b/arch/arm/boot/dts/e60k02.dtsi
> @@ -117,6 +117,8 @@
> ricoh619: pmic@32 {
> compatible = "ricoh,rc5t619";
> reg = <0x32>;
> + interrupt-parent = <&gpio5>;
> + interrupts = <11 IRQ_TYPE_EDGE_FALLING>;
> system-power-controller;
>
> regulators {
On Sun, Mar 29, 2020 at 12:42:50PM +0200, Andreas Kemnade wrote:
> Since the PMIC driver now has IRQ handling, add the GPIO to
> listen to things like RTC alarm or ADC conversion completion.
>
> Signed-off-by: Andreas Kemnade <[email protected]>
Subject should be prefixed like 'ARM: dts: ...'
I fixed it up and applied the patch.
Shawn