lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <Zs3sjN3HzO2PCdRw@lizhi-Precision-Tower-5810>
Date: Tue, 27 Aug 2024 11:11:08 -0400
From: Frank Li <Frank.li@....com>
To: David Leonard <David.Leonard@...i.com>
Cc: linux-arm-kernel@...ts.infradead.org, Shawn Guo <shawnguo@...nel.org>,
	Rob Herring <robh@...nel.org>,
	Krzysztof Kozlowski <krzk+dt@...nel.org>,
	Conor Dooley <conor+dt@...nel.org>, devicetree@...r.kernel.org,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH 5/6] arm64: dts: ls1046a: add pinctrl node

On Tue, Aug 27, 2024 at 12:13:30PM +1000, David Leonard wrote:
>
> Add a node for the LS1046A's pinmux controller and related pinctrl
> properties for the nodes using the gpio and i2c functions it controls.
>
> Signed-off-by: David Leonard <David.Leonard@...i.com>
> ---
>  .../arm64/boot/dts/freescale/fsl-ls1046a.dtsi | 36 +++++++++++++++++++
>  1 file changed, 36 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1046a.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls1046a.dtsi
> index 200e52622f99..d2286fd6f972 100644
> --- a/arch/arm64/boot/dts/freescale/fsl-ls1046a.dtsi
> +++ b/arch/arm64/boot/dts/freescale/fsl-ls1046a.dtsi
> @@ -350,6 +350,29 @@ extirq: interrupt-controller@1ac {
>  			};
>  		};
>
> +		pinmux: pinmux@...040c {
> +			compatible = "fsl,ls1046a-pinctrl";
> +			reg = <0 0x157040c 0 4>;
> +			big-endian;

I can't find fsl,ls1046a-pinctrl in binding doc.
git grep -r fsl,ls1046a-pinctrl Documentation/

I suggest you use pinctrl-single.

Frank

> +
> +			pinctrl_i2c2: pinctrl-i2c2 {
> +				groups = "L4", "M4";
> +				function = "i2c";
> +			};
> +			pinctrl_i2c2_gpio: pinctrl-i2c2-gpio {
> +				groups = "L4", "M4";
> +				function = "gpio";
> +			};
> +			pinctrl_i2c3: pinctrl-i2c3 {
> +				groups = "M3", "N3";
> +				function = "i2c";
> +			};
> +			pinctrl_i2c3_gpio: pinctrl-i2c3-gpio {
> +				groups = "M3", "N3";
> +				function = "gpio";
> +			};
> +		};
> +
>  		crypto: crypto@...0000 {
>  			compatible = "fsl,sec-v5.4", "fsl,sec-v5.0",
>  				     "fsl,sec-v4.0";
> @@ -537,6 +560,10 @@ i2c2: i2c@...0000 {
>  			clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
>  					    QORIQ_CLK_PLL_DIV(2)>;
>  			scl-gpios = <&gpio3 10 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
> +			sda-gpios = <&gpio3 11 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
> +			pinctrl-names = "default", "gpio";
> +			pinctrl-0 = <&pinctrl_i2c2>;
> +			pinctrl-1 = <&pinctrl_i2c2_gpio>;
>  			status = "disabled";
>  		};
>
> @@ -549,6 +576,10 @@ i2c3: i2c@...0000 {
>  			clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
>  					    QORIQ_CLK_PLL_DIV(2)>;
>  			scl-gpios = <&gpio3 12 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
> +			sda-gpios = <&gpio3 13 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
> +			pinctrl-names = "default", "gpio";
> +			pinctrl-0 = <&pinctrl_i2c3>;
> +			pinctrl-1 = <&pinctrl_i2c3_gpio>;
>  			status = "disabled";
>  		};
>
> @@ -626,6 +657,11 @@ gpio3: gpio@...0000 {
>  			#gpio-cells = <2>;
>  			interrupt-controller;
>  			#interrupt-cells = <2>;
> +			gpio-ranges = <&pinmux 10 0 0>,
> +				      <&pinmux 11 0 0>,
> +				      <&pinmux 12 0 0>,
> +				      <&pinmux 13 0 0>;
> +			gpio-ranges-group-names = "L4", "M4", "M3", "N3";
>  		};
>
>  		lpuart0: serial@...0000 {
> --
> 2.43.0
>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ