All of lore.kernel.org
 help / color / mirror / Atom feed
From: Patrick DELAUNAY <patrick.delaunay@st.com>
To: u-boot@lists.denx.de
Subject: [PATCH V2 06/14] ARM: dts: stm32: Add QSPI NOR on AV96
Date: Tue, 31 Mar 2020 13:39:56 +0000	[thread overview]
Message-ID: <7287529d9273450b8e68fe7688e33ef1@SFHDAG6NODE3.st.com> (raw)
In-Reply-To: <20200331004851.282583-7-marex@denx.de>

Hi Marek,

> From: Marek Vasut <marex@denx.de>
> Sent: mardi 31 mars 2020 02:49
> 
> The DH Electronics DHCOR SOM has QSPI NOR on the SoM itself, add it into the
> DT.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Patrick Delaunay <patrick.delaunay@st.com>
> Cc: Patrice Chotard <patrice.chotard@st.com>
> ---
> V2: Drop the explicit flash type in DT node, use spi-flash
> ---
>  arch/arm/dts/stm32mp157a-avenger96.dts | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
> 
> diff --git a/arch/arm/dts/stm32mp157a-avenger96.dts
> b/arch/arm/dts/stm32mp157a-avenger96.dts
> index 3fca1ed56d..512ef5f7bb 100644
> --- a/arch/arm/dts/stm32mp157a-avenger96.dts
> +++ b/arch/arm/dts/stm32mp157a-avenger96.dts
> @@ -20,6 +20,7 @@
>  		mmc0 = &sdmmc1;
>  		serial0 = &uart4;
>  		serial1 = &uart7;
> +		spi0 = &qspi;
>  	};
> 
>  	chosen {
> @@ -300,6 +301,25 @@
>  	vdd_3v3_usbfs-supply = <&vdd_usb>;
>  };
> 
> +&qspi {
> +	pinctrl-names = "default", "sleep";
> +	pinctrl-0 = <&qspi_clk_pins_a &qspi_bk1_pins_a>;
> +	pinctrl-1 = <&qspi_clk_sleep_pins_a &qspi_bk1_sleep_pins_a>;
> +	reg = <0x58003000 0x1000>, <0x70000000 0x4000000>;

In https://www.dh-electronics.com/en/products/dhsom-system-on-modules/dhcor-stm32mp1 

SPI NOR flash	=> 2 Mbyte boot flash

So I think that memory mapped register should be limited to 2Mbyte = 0x200000 and not 64MBytes

reg = <0x58003000 0x1000>, <0x70000000 0x200000>;


> +	#address-cells = <1>;
> +	#size-cells = <0>;
> +	status = "okay";
> +
> +	flash0: spi-flash at 0 {
> +		compatible = "jedec,spi-nor";
> +		reg = <0>;
> +		spi-rx-bus-width = <4>;
> +		spi-max-frequency = <108000000>;
> +		#address-cells = <1>;
> +		#size-cells = <1>;
> +	};
> +};
> +
>  &rng1 {
>  	status = "okay";
>  };
> --
> 2.25.1

  parent reply	other threads:[~2020-03-31 13:39 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-31  0:48 [PATCH V2 00/14] ARM: stm32: Fix Avenger96 Marek Vasut
2020-03-31  0:48 ` [PATCH V2 01/14] ARM: dts: stm32: Repair SD1 pre-reloc pinmux DT node on AV96 Marek Vasut
2020-03-31  8:25   ` Patrice CHOTARD
2020-03-31 12:31   ` Patrick DELAUNAY
2020-03-31  0:48 ` [PATCH V2 02/14] ARM: dts: stm32: Add alternate pinmux for SDMMC1 direction pins Marek Vasut
2020-03-31  8:26   ` Patrice CHOTARD
2020-03-31 12:34   ` Patrick DELAUNAY
2020-03-31  0:48 ` [PATCH V2 03/14] ARM: dts: stm32: Repair SDMMC1 operation on AV96 Marek Vasut
2020-03-31  8:33   ` Patrice CHOTARD
2020-03-31 12:41   ` Patrick DELAUNAY
2020-03-31  0:48 ` [PATCH V2 04/14] ARM: dts: stm32: Add alternate pinmux for SDMMC2 pins 4-7 Marek Vasut
2020-03-31  8:27   ` Patrice CHOTARD
2020-03-31 12:42   ` Patrick DELAUNAY
2020-03-31  0:48 ` [PATCH V2 05/14] ARM: dts: stm32: Repair SDMMC2 operation Marek Vasut
2020-03-31  8:28   ` Patrice CHOTARD
2020-03-31 12:44   ` Patrick DELAUNAY
2020-03-31 13:41   ` Patrick DELAUNAY
2020-03-31  0:48 ` [PATCH V2 06/14] ARM: dts: stm32: Add QSPI NOR on AV96 Marek Vasut
2020-03-31  8:33   ` Patrice CHOTARD
2020-03-31 13:39   ` Patrick DELAUNAY [this message]
2020-03-31 16:38     ` Marek Vasut
2020-03-31  0:48 ` [PATCH V2 07/14] ARM: dts: stm32: Use DT alias for the configuration EEPROM Marek Vasut
2020-03-31  8:34   ` Patrice CHOTARD
2020-03-31 13:56   ` Patrick DELAUNAY
2020-03-31  0:48 ` [PATCH V2 08/14] ARM: dts: stm32: Add configuration EEPROM on AV96 Marek Vasut
2020-03-31  8:34   ` Patrice CHOTARD
2020-03-31 13:57   ` Patrick DELAUNAY
2020-03-31  0:48 ` [PATCH V2 09/14] ARM: dts: stm32: Add alternate pinmux for ethernet RGMII Marek Vasut
2020-03-31  8:35   ` Patrice CHOTARD
2020-03-31 13:58   ` Patrick DELAUNAY
2020-03-31  0:48 ` [PATCH V2 10/14] ARM: dts: stm32: Repair ethernet operation on AV96 Marek Vasut
2020-03-31  8:35   ` Patrice CHOTARD
2020-03-31 13:59   ` Patrick DELAUNAY
2020-03-31  0:48 ` [PATCH V2 11/14] ARM: dts: stm32: Add missing ethernet PHY reset " Marek Vasut
2020-03-31  8:35   ` Patrice CHOTARD
2020-03-31 14:06   ` Patrick DELAUNAY
2020-03-31 17:06     ` Marek Vasut
2020-04-01  8:57       ` Patrick DELAUNAY
2020-04-01 10:52         ` Marek Vasut
2020-03-31  0:48 ` [PATCH V2 12/14] ARM: dts: stm32: Repair PMIC configuration " Marek Vasut
2020-03-31  8:37   ` Patrice CHOTARD
2020-03-31  0:48 ` [PATCH V2 13/14] ARM: dts: stm32: Adjust PLL4 settings " Marek Vasut
2020-03-31  8:41   ` Patrice CHOTARD
2020-03-31 14:25   ` Patrick DELAUNAY
2020-03-31  0:48 ` [PATCH V2 14/14] ARM: dts: stm32: Split AV96 into DHCOR SoM and AV96 board Marek Vasut
2020-03-31  8:38   ` Patrice CHOTARD
2020-03-31 14:59   ` Patrick DELAUNAY
2020-03-31 16:37     ` Marek Vasut
2020-04-01  8:37       ` Patrick DELAUNAY
2020-04-01 10:53         ` Marek Vasut
2020-03-31 15:22 ` [PATCH V2 00/14] ARM: stm32: Fix Avenger96 Patrick DELAUNAY
2020-03-31 16:58   ` Marek Vasut
2020-04-01  9:15     ` Patrick DELAUNAY
2020-04-01 10:55       ` Marek Vasut

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=7287529d9273450b8e68fe7688e33ef1@SFHDAG6NODE3.st.com \
    --to=patrick.delaunay@st.com \
    --cc=u-boot@lists.denx.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.