]>
Commit | Line | Data |
---|---|---|
14ed50a4 SDPP |
1 | // SPDX-License-Identifier: GPL-2.0+ |
2 | /* | |
3 | * dts file for Xilinx ZynqMP Mini Configuration | |
4 | * | |
d31f1c92 | 5 | * (C) Copyright 2015 - 2020, Xilinx, Inc. |
14ed50a4 | 6 | * |
2036621a | 7 | * Siva Durga Prasad Paladugu <[email protected]> |
174d7284 | 8 | * Michal Simek <[email protected]> |
14ed50a4 SDPP |
9 | */ |
10 | ||
11 | /dts-v1/; | |
12 | ||
13 | / { | |
14 | model = "ZynqMP MINI QSPI"; | |
15 | compatible = "xlnx,zynqmp"; | |
16 | #address-cells = <2>; | |
17 | #size-cells = <1>; | |
18 | ||
19 | aliases { | |
20 | serial0 = &dcc; | |
21 | spi0 = &qspi; | |
22 | }; | |
23 | ||
24 | chosen { | |
25 | stdout-path = "serial0:115200n8"; | |
26 | }; | |
27 | ||
28 | memory@fffc0000 { | |
29 | device_type = "memory"; | |
30 | reg = <0x0 0xfffc0000 0x40000>; | |
31 | }; | |
32 | ||
33 | dcc: dcc { | |
34 | compatible = "arm,dcc"; | |
35 | status = "disabled"; | |
8c103c33 | 36 | bootph-all; |
14ed50a4 SDPP |
37 | }; |
38 | ||
4a276d32 MS |
39 | misc_clk: misc-clk { |
40 | compatible = "fixed-clock"; | |
41 | #clock-cells = <0>; | |
42 | clock-frequency = <125000000>; | |
43 | }; | |
44 | ||
99d240e8 | 45 | amba: axi { |
14ed50a4 SDPP |
46 | compatible = "simple-bus"; |
47 | #address-cells = <2>; | |
48 | #size-cells = <1>; | |
49 | ranges; | |
50 | ||
51 | qspi: spi@ff0f0000 { | |
52 | compatible = "xlnx,zynqmp-qspi-1.0"; | |
53 | status = "disabled"; | |
54 | clock-names = "ref_clk", "pclk"; | |
55 | clocks = <&misc_clk &misc_clk>; | |
56 | num-cs = <1>; | |
57 | reg = <0x0 0xff0f0000 0x1000 0x0 0xc0000000 0x8000000>; | |
58 | #address-cells = <1>; | |
59 | #size-cells = <0>; | |
60 | }; | |
14ed50a4 SDPP |
61 | }; |
62 | }; | |
63 | ||
64 | &qspi { | |
65 | status = "okay"; | |
3b4146f1 | 66 | flash0: flash@0 { |
4a276d32 | 67 | compatible = "jedec,spi-nor"; |
14ed50a4 SDPP |
68 | #address-cells = <1>; |
69 | #size-cells = <1>; | |
70 | reg = <0x0>; | |
6e38e2ea | 71 | spi-tx-bus-width = <4>; |
14ed50a4 | 72 | spi-rx-bus-width = <4>; |
d93fbac5 | 73 | spi-max-frequency = <40000000>; |
14ed50a4 SDPP |
74 | }; |
75 | }; | |
76 | ||
77 | &dcc { | |
78 | status = "okay"; | |
79 | }; |