hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 * Device Tree Include file for Freescale Layerscape-1046A family SoC.
 *
 * Copyright (C) 2016, Freescale Semiconductor
 *
 * Mingkai Hu <Mingkai.hu@nxp.com>
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */
 
/include/ "fsl-ls1046a.dtsi"
 
/ {
   model = "LS1046A QDS Board";
   aliases {
       spi0 = &qspi;
       spi1 = &dspi0;
   };
};
 
&dspi0 {
   bus-num = <0>;
   status = "okay";
 
   dflash0: n25q128a {
       #address-cells = <1>;
       #size-cells = <1>;
       compatible = "spi-flash";
       spi-max-frequency = <1000000>; /* input clock */
       spi-cpol;
       spi-cpha;
       reg = <0>;
   };
 
   dflash1: sst25wf040b {
       #address-cells = <1>;
       #size-cells = <1>;
       compatible = "spi-flash";
       spi-max-frequency = <3500000>;
       spi-cpol;
       spi-cpha;
       reg = <1>;
   };
 
   dflash2: en25s64 {
       #address-cells = <1>;
       #size-cells = <1>;
       compatible = "spi-flash";
       spi-max-frequency = <3500000>;
       spi-cpol;
       spi-cpha;
       reg = <2>;
   };
};
 
&qspi {
   bus-num = <0>;
   status = "okay";
 
   qflash0: s25fl128s@0 {
       #address-cells = <1>;
       #size-cells = <1>;
       compatible = "spi-flash";
       spi-max-frequency = <20000000>;
       reg = <0>;
   };
};
 
&duart0 {
   status = "okay";
};
 
&duart1 {
   status = "okay";
};
 
&lpuart0 {
   status = "okay";
};