diff options
author | Aniket Limaye <a-limaye@ti.com> | 2024-03-06 12:07:47 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-03-19 18:40:46 -0400 |
commit | e0b0a5eb9c4371254cbeea962d17502e38478aac (patch) | |
tree | df7c390a0a3f727a6ef1f3591cfac0a71cf70ada | |
parent | 94e2dc01ca31c5cb381683f9055f11f546432c31 (diff) | |
download | u-boot-e0b0a5eb9c4371254cbeea962d17502e38478aac.zip u-boot-e0b0a5eb9c4371254cbeea962d17502e38478aac.tar.gz u-boot-e0b0a5eb9c4371254cbeea962d17502e38478aac.tar.bz2 |
arm: dts: k3-j7200: Fix support for OSPI flash
- Add the missing bootph-all property in the flash subnode for ospi
- Add the missing overrides for the ospi node in the r5 devicetree
Signed-off-by: Aniket Limaye <a-limaye@ti.com>
Reviewed-by: Udit Kumar <u-kumar1@ti.com>
-rw-r--r-- | arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi | 4 | ||||
-rw-r--r-- | arch/arm/dts/k3-j7200-r5-common-proc-board.dts | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi b/arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi index 60ca6d2..c9fee0e 100644 --- a/arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi +++ b/arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi @@ -195,6 +195,10 @@ &ospi0 { bootph-all; + + flash@0 { + bootph-all; + }; }; &serdes_ln_ctrl { diff --git a/arch/arm/dts/k3-j7200-r5-common-proc-board.dts b/arch/arm/dts/k3-j7200-r5-common-proc-board.dts index 018faaa..195637a 100644 --- a/arch/arm/dts/k3-j7200-r5-common-proc-board.dts +++ b/arch/arm/dts/k3-j7200-r5-common-proc-board.dts @@ -83,3 +83,8 @@ &wkup_vtm0 { bootph-pre-ram; }; + +&ospi0 { + reg = <0x0 0x47040000 0x0 0x100>, + <0x0 0x50000000 0x0 0x8000000>; +}; |