aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2017-05-09 09:58:50 -0400
committerDinh Nguyen <dinguyen@kernel.org>2017-06-23 10:29:09 -0400
commit79528279c0cc946d11c9920788391bcb24582991 (patch)
tree3e0511c9256188d9d870968103f44e6e24513d34
parentb8d9b3e407d16ccdc7d256af449e7d250074b5f4 (diff)
ARM: dts: socfpga: Enable QSPI support on VINING FPGA
Enable the QSPI node and add the flash chips. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
-rw-r--r--arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dts38
1 files changed, 38 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dts b/arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dts
index 893198049397..cb4bdbcf54ee 100644
--- a/arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dts
+++ b/arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dts
@@ -300,6 +300,44 @@
300 }; 300 };
301}; 301};
302 302
303&qspi {
304 status = "okay";
305
306 n25q128@0 {
307 #address-cells = <1>;
308 #size-cells = <1>;
309 compatible = "n25q128";
310 reg = <0>; /* chip select */
311 spi-max-frequency = <100000000>;
312 m25p,fast-read;
313
314 cdns,page-size = <256>;
315 cdns,block-size = <16>;
316 cdns,read-delay = <4>;
317 cdns,tshsl-ns = <50>;
318 cdns,tsd2d-ns = <50>;
319 cdns,tchsh-ns = <4>;
320 cdns,tslch-ns = <4>;
321 };
322
323 n25q00@1 {
324 #address-cells = <1>;
325 #size-cells = <1>;
326 compatible = "n25q00";
327 reg = <1>; /* chip select */
328 spi-max-frequency = <100000000>;
329 m25p,fast-read;
330
331 cdns,page-size = <256>;
332 cdns,block-size = <16>;
333 cdns,read-delay = <4>;
334 cdns,tshsl-ns = <50>;
335 cdns,tsd2d-ns = <50>;
336 cdns,tchsh-ns = <4>;
337 cdns,tslch-ns = <4>;
338 };
339};
340
303&usb0 { 341&usb0 {
304 dr_mode = "host"; 342 dr_mode = "host";
305 status = "okay"; 343 status = "okay";