From: Andre Przywara <andre.przywara@arm.com>
To: Andreas Feldner <pelzi@flying-snail.de>
Cc: Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Chen-Yu Tsai <wens@csie.org>,
Jernej Skrabec <jernej.skrabec@gmail.com>,
Samuel Holland <samuel@sholland.org>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] ARM: dts: allwinner: minimize irq debounce filter per default
Date: Tue, 7 Feb 2023 01:16:08 +0000 [thread overview]
Message-ID: <20230207011608.2ce24d17@slackpad.lan> (raw)
In-Reply-To: <Y+FaVorMl37F5Dve@debian-qemu.internal.flying-snail.de>
On Mon, 6 Feb 2023 20:51:50 +0100
Andreas Feldner <pelzi@flying-snail.de> wrote:
Hi Andreas,
thanks for taking care about this board and sending patches!
> The SoC features debounce logic for external interrupts. Per default,
> this is based on a 32kHz oscillator, in effect filtering away multiple
> interrupts separated by less than roughly 100�s.
>
> This patch sets different defaults for this filter for this board:
> PG is connected to non-mechanical components, without any risk for
> showing bounces. PA is mostly exposed to GPIO pins, however the
> existence of a debounce filter is undesirable as well if electronic
> components are connected.
So how do you know if that's the case? It seems to be quite normal to
just connect mechanical switches to GPIO pins.
If you are trying to fix a particular issue you encountered, please
describe that here, and say how (or at least that) the patch fixes it.
And I would suggest to treat port G and port A differently. If you
need a lower debounce threshold for port A, you can apply a DT overlay
in U-Boot, just for your board.
> Additionally, the clock-frequency attribute is added for each of
> the 4 cores to eliminate the kernel error message on boot, that
> the attribute is missing.
>
> Signed-off-by: Andreas Feldner <pelzi@flying-snail.de>
> ---
> .../dts/sun8i-h2-plus-bananapi-m2-zero.dts | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/arch/arm/boot/dts/sun8i-h2-plus-bananapi-m2-zero.dts b/arch/arm/boot/dts/sun8i-h2-plus-bananapi-m2-zero.dts
> index d729b7c705db..1fc0d5d1e51a 100644
> --- a/arch/arm/boot/dts/sun8i-h2-plus-bananapi-m2-zero.dts
> +++ b/arch/arm/boot/dts/sun8i-h2-plus-bananapi-m2-zero.dts
> @@ -113,6 +113,22 @@ wifi_pwrseq: wifi_pwrseq {
>
> &cpu0 {
> cpu-supply = <®_vdd_cpux>;
> + clock-frequency = <1296000000>;
I see where you are coming from, this is really an unnecessary warning
message. However this message should be really removed from the kernel
instead of adding some rather meaningless value here.
The current DT spec marks this property as required, though, so I added
a PR there to get this fixed:
https://github.com/devicetree-org/devicetree-specification/pull/61
Once this is through, we can try to remove the kernel message.
> +};
> +
> +&cpu1 {
> + cpu-supply = <®_vdd_cpux>;
I don't think we need this for every core?
> + clock-frequency = <1296000000>;
> +};
> +
> +&cpu2 {
> + cpu-supply = <®_vdd_cpux>;
> + clock-frequency = <1296000000>;
> +};
> +
> +&cpu3 {
> + cpu-supply = <®_vdd_cpux>;
> + clock-frequency = <1296000000>;
> };
>
> &de {
> @@ -193,6 +209,8 @@ bluetooth {
> };
>
> &pio {
> + /* 1�s debounce filter on both IRQ banks */
Is that supposed to be <micro> in UTF-8? It seems to have got lost in
translation, or is that just me?
> + input-debounce = <1 1>;
As mentioned above, I am not so sure this is generic enough to put it
here for PA. And what is the significance of "1 us", in particular? Is
that just the smallest value?
Cheers,
Andre
> gpio-line-names =
> /* PA */
> "CON2-P13", "CON2-P11", "CON2-P22", "CON2-P15",
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2023-02-07 1:19 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-06 19:51 [PATCH] ARM: dts: allwinner: minimize irq debounce filter per default Andreas Feldner
2023-02-07 1:16 ` Andre Przywara [this message]
2023-02-08 12:50 ` Andreas Feldner
2023-02-09 20:29 ` Andre Przywara
2023-02-10 8:29 ` Maxime Ripard
2023-02-10 9:44 ` Andre Przywara
2023-02-10 10:06 ` Maxime Ripard
2023-02-10 10:18 ` Andre Przywara
2023-02-11 12:50 ` pelzi
2023-02-11 15:13 ` Andre Przywara
2023-02-11 18:08 ` [PATCH] pinctrl: sunxi: set minimal debounce on input-debounce 0 Andreas Feldner
2023-02-11 19:59 ` Andre Przywara
2023-02-13 8:43 ` [PATCH] ARM: dts: allwinner: minimize irq debounce filter per default Maxime Ripard
2023-02-13 8:49 ` pelzi
2023-02-13 9:18 ` Maxime Ripard
2023-02-13 11:56 ` Andre Przywara
2023-02-14 18:49 ` pelzi
2023-02-15 8:36 ` Maxime Ripard
2023-02-11 19:45 ` Samuel Holland
2023-02-13 1:51 ` Andre Przywara
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230207011608.2ce24d17@slackpad.lan \
--to=andre.przywara@arm.com \
--cc=devicetree@vger.kernel.org \
--cc=jernej.skrabec@gmail.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sunxi@lists.linux.dev \
--cc=pelzi@flying-snail.de \
--cc=robh+dt@kernel.org \
--cc=samuel@sholland.org \
--cc=wens@csie.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).