[PATCH] arm64: Add DTS support for FSL's LS1012A SoC
From: Harninder Rai <hidden>
Date: 2016-11-15 06:46:41
Also in:
linux-devicetree
-----Original Message----- From: Harninder Rai Sent: Tuesday, November 15, 2016 12:15 PM To: 'Shawn Guo' <shawnguo@kernel.org> Cc: devicetree at vger.kernel.org; robh+dt at kernel.org; mark.rutland at arm.com; oss at buserror.net; Bhaskar U [off-list ref]; linux-arm-kernel at lists.infradead.org Subject: RE: [PATCH] arm64: Add DTS support for FSL's LS1012A SoCquoted
quoted
dtb-$(CONFIG_ARCH_LAYERSCAPE) += fsl-ls1043a-qds.dtb dtb-$(CONFIG_ARCH_LAYERSCAPE) += fsl-ls1043a-rdb.dtb dtb-$(CONFIG_ARCH_LAYERSCAPE) += fsl-ls1046a-qds.dtbIt seems that the patch is not generated against mainline kernel. We do not have fsl-ls1046a-qds.dtb target in mainline kernel.You already clarified in the following mail :)quoted
quoted
+ + reg_1p8v: regulator at 0 {Drop the unit-address from node name, and name it like regulator-1p8v.Ok. Will take care in V2quoted
quoted
+ +&duart0 {Please sort labeled nodes alphabetically.Ok Surequoted
quoted
+ status = "okay"; +}; + +&sai2 { + status = "okay"; +};<snip>quoted
+ }; + + timer { + compatible = "arm,armv8-timer"; + /* Physical Secure PPI */ + interrupts = <1 13 IRQ_TYPE_LEVEL_LOW>, + /* Physical Non-Secure PPI */ + <1 14 IRQ_TYPE_LEVEL_LOW>, + /* Virtual PPI */ + <1 11 IRQ_TYPE_LEVEL_LOW>, + /* Hypervisor PPI */ + <1 10 IRQ_TYPE_LEVEL_LOW>;The following form should be easier for read. interrupts = <1 13 IRQ_TYPE_LEVEL_LOW>, /* Physical SecurePPI */quoted
<1 14 IRQ_TYPE_LEVEL_LOW>, /* Physical Non-Secure PPI */quoted
<1 11 IRQ_TYPE_LEVEL_LOW>, /* Virtual PPI */ <1 10 IRQ_TYPE_LEVEL_LOW>; /* Hypervisor PPI*/quoted
Agreed. My bad. Will correct in v2quoted
quoted
+ scfg: scfg at 1570000 { + compatible = "fsl,ls1012a-scfg", "syscon"; + reg = <0x0 0x1570000 0x0 0x10000>; + big-endian; + };Please sort these nodes with unit-address in order of the address.
ok
quoted
Shawn