Hi Peter,

On 2020/11/9 上午7:02, Peter Robinson wrote:
Move the bits that are device specific to the -u-boot.dtsi as the
bits may be different on other devices and hence breaks SPI on
those devices such as the Pinebook Pro.

Signed-off-by: Peter Robinson <pbrobin...@gmail.com>
Fixes: c4cea2bbf995 ("rockchip: Enable building a SPI ROM image on bob")
Cc: Simon Glass <s...@chromium.org>
---
  arch/arm/dts/rk3399-gru-u-boot.dtsi | 30 +++++++++++++++++++++++++++++
  arch/arm/dts/rk3399-u-boot.dtsi     | 25 ------------------------
  2 files changed, 30 insertions(+), 25 deletions(-)

diff --git a/arch/arm/dts/rk3399-gru-u-boot.dtsi 
b/arch/arm/dts/rk3399-gru-u-boot.dtsi
index 390ac2bb5a..5e95cacfea 100644
--- a/arch/arm/dts/rk3399-gru-u-boot.dtsi
+++ b/arch/arm/dts/rk3399-gru-u-boot.dtsi
@@ -5,6 +5,36 @@
#include "rk3399-u-boot.dtsi" +/ {
+       aliases {
+               spi1 = &spi1;
+       };
+};

Does this still need to remove from common code after your another patch applied? It look reasonable and

not likely to break others.

https://patchwork.ozlabs.org/project/uboot/patch/20201108140023.32501-1-sigma...@gmail.com/

+
+#ifdef CONFIG_ROCKCHIP_SPI_IMAGE
+&binman {
+       rom {
+               filename = "u-boot.rom";
+               size = <0x400000>;
+               pad-byte = <0xff>;
+
+               mkimage {
+                       args = "-n rk3399 -T rkspi";
+                       u-boot-spl {
+                       };
+               };
+               u-boot-img {
+                       offset = <0x40000>;
+               };
+               u-boot {
+                       offset = <0x300000>;
+               };
+               fdtmap {
+               };
+       };
+};
+#endif


What's the image space mapping for Pinebook Pro do you using?

I think there should be another binman config if this is not common .


Thanks,

- Kever

+
  &spi_flash {
        u-boot,dm-pre-reloc;
  };
diff --git a/arch/arm/dts/rk3399-u-boot.dtsi b/arch/arm/dts/rk3399-u-boot.dtsi
index ecd230c720..26b0a34e64 100644
--- a/arch/arm/dts/rk3399-u-boot.dtsi
+++ b/arch/arm/dts/rk3399-u-boot.dtsi
@@ -11,7 +11,6 @@
                mmc0 = &sdhci;
                mmc1 = &sdmmc;
                pci0 = &pcie0;
-               spi1 = &spi1;
        };
cic: syscon@ff620000 {
@@ -60,30 +59,6 @@
}; -#ifdef CONFIG_ROCKCHIP_SPI_IMAGE
-&binman {
-       rom {
-               filename = "u-boot.rom";
-               size = <0x400000>;
-               pad-byte = <0xff>;
-
-               mkimage {
-                       args = "-n rk3399 -T rkspi";
-                       u-boot-spl {
-                       };
-               };
-               u-boot-img {
-                       offset = <0x40000>;
-               };
-               u-boot {
-                       offset = <0x300000>;
-               };
-               fdtmap {
-               };
-       };
-};
-#endif
-
  &cru {
        u-boot,dm-pre-reloc;
  };


Reply via email to