On 2023-08-15 14:59, Muhammed Efe Cetin wrote: > Add initial support for OPi5 that includes support for USB2, PCIe2, Sata, > Sdmmc, SPI Flash, PMIC. > > Signed-off-by: Muhammed Efe Cetin <efectn@xxxxxxxx> > --- > .../boot/dts/rockchip/rk3588s-orangepi-5.dts | 873 ++++++++++++++++++ > 1 file changed, 873 insertions(+) > create mode 100644 arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dts > > diff --git a/arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dts b/arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dts > new file mode 100644 > index 000000000000..85071084a207 > --- /dev/null > +++ b/arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dts > @@ -0,0 +1,873 @@ > +// SPDX-License-Identifier: (GPL-2.0+ OR MIT) > + [...] > + > +&sfc { > + pinctrl-0 = <&fspim0_pins>; > + pinctrl-names = "default"; > + max-freq = <100000000>; > + #address-cells = <1>; > + #size-cells = <0>; > + status = "okay"; > + > + spi_flash: spi-flash@0 { Node should be named flash@0 to help SPI flash boot with U-Boot. Regards, Jonas > + compatible = "jedec,spi-nor"; > + reg = <0x0>; > + spi-max-frequency = <100000000>; > + spi-tx-bus-width = <1>; > + spi-rx-bus-width = <4>; > + #address-cells = <1>; > + #size-cells = <0>; > + status = "okay"; > + > + partitions { > + compatible = "fixed-partitions"; > + #address-cells = <1>; > + #size-cells = <1>; > + > + loader@0 { > + label = "loader"; > + reg = <0x0 0x1000000>; > + }; > + }; > + }; > +}; > + [...]