aboutsummaryrefslogtreecommitdiffstats
path: root/package/boot/uboot-zynq/patches/020-v2018.09-arm-zynq-dts-add-spi-flash-node-to-zedboard.patch
diff options
context:
space:
mode:
authorLuis Araneda <luaraneda@gmail.com>2019-08-18 12:00:29 -0400
committerHauke Mehrtens <hauke@hauke-m.de>2019-09-01 18:38:05 +0200
commit5ca243153b110ceddffecb70ba8a8cd0e33c8f0b (patch)
tree97b0cd14307d1029154c19f74447ec5066f893bf /package/boot/uboot-zynq/patches/020-v2018.09-arm-zynq-dts-add-spi-flash-node-to-zedboard.patch
parent035906fd05b2e5543cedd9471731043945fdcf13 (diff)
downloadupstream-5ca243153b110ceddffecb70ba8a8cd0e33c8f0b.tar.gz
upstream-5ca243153b110ceddffecb70ba8a8cd0e33c8f0b.tar.bz2
upstream-5ca243153b110ceddffecb70ba8a8cd0e33c8f0b.zip
uboot-zynq: update to 2019.07
Signed-off-by: Luis Araneda <luaraneda@gmail.com>
Diffstat (limited to 'package/boot/uboot-zynq/patches/020-v2018.09-arm-zynq-dts-add-spi-flash-node-to-zedboard.patch')
-rw-r--r--package/boot/uboot-zynq/patches/020-v2018.09-arm-zynq-dts-add-spi-flash-node-to-zedboard.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/package/boot/uboot-zynq/patches/020-v2018.09-arm-zynq-dts-add-spi-flash-node-to-zedboard.patch b/package/boot/uboot-zynq/patches/020-v2018.09-arm-zynq-dts-add-spi-flash-node-to-zedboard.patch
deleted file mode 100644
index 195cdf632c..0000000000
--- a/package/boot/uboot-zynq/patches/020-v2018.09-arm-zynq-dts-add-spi-flash-node-to-zedboard.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From a492fdffa3c86f6b8420b6433a2ce07271597324 Mon Sep 17 00:00:00 2001
-From: Luis Araneda <luaraneda@gmail.com>
-Date: Fri, 27 Jul 2018 04:43:42 -0400
-Subject: [PATCH] arm: zynq: dts: add spi flash node to zedboard
-
-Add a flash node to fix the detection of the memory IC.
-With the changes introduced with commit 8fee8845e754
-("enf_sf: reuse setup_flash_device instead of open coding it")
-the SPI speed is now read from device-tree or a default value
-is applied. This replaced the old behavior of setting the
-SPI speed to CONFIG_ENV_SPI_MAX_HZ.
-
-As this board didn't have a flash node, the default value
-was applied to the SPI speed, producing an error when probing
-the flash memory (speed too slow).
-
-Signed-off-by: Luis Araneda <luaraneda@gmail.com>
-Signed-off-by: Michal Simek <michal.simek@xilinx.com>
----
- arch/arm/dts/zynq-zed.dts | 7 +++++++
- 1 file changed, 7 insertions(+)
-
---- a/arch/arm/dts/zynq-zed.dts
-+++ b/arch/arm/dts/zynq-zed.dts
-@@ -51,6 +51,13 @@
- &qspi {
- u-boot,dm-pre-reloc;
- status = "okay";
-+ num-cs = <1>;
-+ flash@0 {
-+ compatible = "spansion,s25fl256s", "spi-flash";
-+ reg = <0>;
-+ spi-max-frequency = <30000000>;
-+ m25p,fast-read;
-+ };
- };
-
- &sdhci0 {