arm64: dts: ls1012a: Add more nodes to LS1012A-FRWY board support
authorBhaskar Upadhaya <Bhaskar.Upadhaya@nxp.com>
Mon, 7 May 2018 06:22:04 +0000 (11:52 +0530)
committerDong Aisheng <aisheng.dong@nxp.com>
Mon, 14 Dec 2020 03:25:55 +0000 (11:25 +0800)
LS1012A-FRWY is a different design from LS1012A-FRDM,
but has some common SoC features. Key feature on this
board is 2x1G SGMII PFE MAC, Micro SD, USB 3.0, DDR,
QuadSPI, Audio, UART.

Signed-off-by: Bhaskar Upadhaya <Bhaskar.Upadhaya@nxp.com>
Signed-off-by: Li Yang <leoyang.li@nxp.com>
arch/arm64/boot/dts/freescale/fsl-ls1012a-frwy.dts

index 6290e2f..5a2c109 100644 (file)
 / {
        model = "LS1012A FRWY Board";
        compatible = "fsl,ls1012a-frwy", "fsl,ls1012a";
+
+       aliases {
+               ethernet0 = &pfe_mac0;
+               ethernet1 = &pfe_mac1;
+       };
+
+       sys_mclk: clock-mclk {
+               compatible = "fixed-clock";
+               #clock-cells = <0>;
+               clock-frequency = <25000000>;
+       };
+
+       reg_1p8v: regulator-1p8v {
+               compatible = "regulator-fixed";
+               regulator-name = "1P8V";
+               regulator-min-microvolt = <1800000>;
+               regulator-max-microvolt = <1800000>;
+               regulator-always-on;
+       };
+
+       sound {
+               compatible = "simple-audio-card";
+               simple-audio-card,format = "i2s";
+               simple-audio-card,widgets =
+                       "Microphone", "Microphone Jack",
+                       "Headphone", "Headphone Jack",
+                       "Speaker", "Speaker Ext",
+                       "Line", "Line In Jack";
+               simple-audio-card,routing =
+                       "MIC_IN", "Microphone Jack",
+                       "Microphone Jack", "Mic Bias",
+                       "LINE_IN", "Line In Jack",
+                       "Headphone Jack", "HP_OUT",
+                       "Speaker Ext", "LINE_OUT";
+
+               simple-audio-card,cpu {
+                       sound-dai = <&sai2>;
+                       frame-master;
+                       bitclock-master;
+               };
+
+               simple-audio-card,codec {
+                       sound-dai = <&codec>;
+                       frame-master;
+                       bitclock-master;
+                       system-clock-frequency = <25000000>;
+               };
+       };
+};
+
+&pcie1 {
+       status = "okay";
 };
 
 &duart0 {
 
 &i2c0 {
        status = "okay";
+
+       codec: sgtl5000@a {
+               compatible = "fsl,sgtl5000";
+               #sound-dai-cells = <0>;
+               reg = <0xa>;
+               VDDA-supply = <&reg_1p8v>;
+               VDDIO-supply = <&reg_1p8v>;
+               clocks = <&sys_mclk>;
+       };
+};
+
+&qspi {
+       num-cs = <1>;
+       bus-num = <0>;
+       status = "okay";
+
+       qflash0: w25q16dw@0 {
+               compatible = "spansion,m25p80";
+               #address-cells = <1>;
+               #size-cells = <1>;
+               m25p,fast-read;
+               spi-max-frequency = <20000000>;
+               reg = <0>;
+       };
+};
+
+&pfe {
+       status = "okay";
+       #address-cells = <1>;
+       #size-cells = <0>;
+
+       ethernet@0 {
+               compatible = "fsl,pfe-gemac-port";
+               #address-cells = <1>;
+               #size-cells = <0>;
+               reg = <0x0>;    /* GEM_ID */
+               fsl,gemac-bus-id = <0x0>;       /* BUS_ID */
+               fsl,gemac-phy-id = <0x2>;       /* PHY_ID */
+               fsl,mdio-mux-val = <0x0>;
+               phy-mode = "sgmii";
+               fsl,pfe-phy-if-flags = <0x0>;
+
+               mdio@0 {
+                       reg = <0x1>; /* enabled/disabled */
+               };
+       };
+
+       ethernet@1 {
+               compatible = "fsl,pfe-gemac-port";
+               #address-cells = <1>;
+               #size-cells = <0>;
+               reg = <0x1>;    /* GEM_ID */
+               fsl,gemac-bus-id = <0x1>;       /* BUS_ID */
+               fsl,gemac-phy-id = <0x1>;       /* PHY_ID */
+               fsl,mdio-mux-val = <0x0>;
+               phy-mode = "sgmii";
+               fsl,pfe-phy-if-flags = <0x0>;
+
+               mdio@0 {
+                       reg = <0x0>; /* enabled/disabled */
+               };
+       };
+};
+
+&sai2 {
+       status = "okay";
 };
 
 &qspi {