RE: [PATCH 1/5] ARM: dts: Add SoC level device tree support for LS1021A

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




>-----Original Message-----
>From: Mark Rutland [mailto:mark.rutland@xxxxxxx]
>Sent: Wednesday, July 02, 2014 7:15 PM
>To: Lu Jingchang-B35083
>Cc: shawn.guo@xxxxxxxxxx; linux-arm-kernel@xxxxxxxxxxxxxxxxxxx;
>devicetree@xxxxxxxxxxxxxxx; Lu Jingchang-B35083; Badola Nikhil-B46172;
>Zhao Chenhui-B35336; Gupta Suresh-B42813; Leekha Shaveta-B20052; Sendroiu
>Adrian-B46904; Gupta Ruchika-R66431; Sharma Bhupesh-B45370; Fu Chao-B44548;
>Xiubo Li-B47053
>Subject: Re: [PATCH 1/5] ARM: dts: Add SoC level device tree support for
>LS1021A
>
>Hi,
>
>As a general note, there seem to be many nodes for which bindings and
>drivers do not yet exist.
>
>For those nodes which are unusable for reasons other than their status
>being "disabled", I would prefer that they were removed. They're useless
>now, and might not match the bindings that are eventually decided upon,
>which will result in annoying churn and possible breakage.
>
Thanks for help review these patches, I will revise the node as your comment.
The LS1021A shares IP and driver with i.MX, Vybrid and PowerPC, some driver's
behavior minor different between them, so patches is needed to make them work
well between different platform and architecture. Thus some compatible include
undocumented string, could it be added along with the driver support after the
platform support is accepted? Thanks. 

>On Wed, Jul 02, 2014 at 10:02:48AM +0100, Jingchang Lu wrote:
>> From: Jingchang Lu <b35083@xxxxxxxxxxxxx>
>>
>> Add Freescale LS1021A SoC device tree support
>>
>> Signed-off-by: Nikhil Badola <nikhil.badola@xxxxxxxxxxxxx>
>> Signed-off-by: Chenhui Zhao <chenhui.zhao@xxxxxxxxxxxxx>
>> Signed-off-by: Suresh Gupta <suresh.gupta@xxxxxxxxxxxxx>
>> Signed-off-by: Shaveta Leekha <shaveta@xxxxxxxxxxxxx>
>> Signed-off-by: Adrian Sendroiu <adrian.sendroiu@xxxxxxxxxxxxx>
>> Signed-off-by: Ruchika Gupta <ruchika.gupta@xxxxxxxxxxxxx>
>> Signed-off-by: Bhupesh Sharma <bhupesh.sharma@xxxxxxxxxxxxx>
>> Signed-off-by: Chao Fu <b44548@xxxxxxxxxxxxx>
>> Signed-off-by: Xiubo Li <Li.Xiubo@xxxxxxxxxxxxx>
>> Signed-off-by: Jingchang Lu <jingchang.lu@xxxxxxxxxxxxx>
>> ---
>>  arch/arm/boot/dts/ls1021a.dtsi | 852
>> +++++++++++++++++++++++++++++++++++++++++
>>  1 file changed, 852 insertions(+)
>>  create mode 100644 arch/arm/boot/dts/ls1021a.dtsi
>>
>> diff --git a/arch/arm/boot/dts/ls1021a.dtsi
>> b/arch/arm/boot/dts/ls1021a.dtsi new file mode 100644 index
>> 0000000..b06b320
>> --- /dev/null
>> +++ b/arch/arm/boot/dts/ls1021a.dtsi
>
>[...]
>
>> +       memory {
>> +               reg = <0x0 0x80000000 0x0 0x20000000>;
>> +       };
>
>Missing device_type = "memory";
>
>For unit-address and reg consistency, this should be memory@0,80000000.
>
I will add this, thanks.
>> +
>> +       cpus {
>> +               #address-cells = <1>;
>> +               #size-cells = <0>;
>> +
>> +               cpu@0 {
>> +                       compatible = "arm,cortex-a7";
>> +                       device_type = "cpu";
>> +                       reg = <0xf00>;
>> +               };
>
>That reg doesn't match the unit-address, which should be cpu@f00.
>
>Why is MPIDR.Aff1 == 0xf?
The MPIDR value got from the SoC is 80000f00, so to match this the reg is set to x0f00.
Thanks. 
>[...]
>> +
>> +               tzasc: tzasc@1500000 {
>> +                       reg = <0x0 0x1500000 0x0 0x10000>;
>> +                       interrupts = <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>;
>> +                       status = "disabled";
>> +               };
>
>There's no compatible string and "tzasc" doesn't appear to be handled
>magically anywhere, so this can't be probed even without the status
>property being "disabled".
I will remove this and all other unused node, it is not used currently. Thanks.
>
>
>> +
>> +               ifc: ifc@1530000 {
>> +                       compatible = "fsl,ls1021a-ifc", "fsl,ifc",
>> + "simple-bus";
>
>This doesn't seem to have any children, ranges, #address-cells, or #size-
>cells. So why is "simple-bus" in the compatible list?
>
>As far as I can see this is a flash controller, so "simple-bus" doesn't
>make any sense whatsoever (and existing uses, including that in the
>binding are a bug).
Yes, it is a flash controller, the child nodes, ranges are in the <ls1021a-board>.dts.
Here only describe the SoC level device and resource.
I will remove the "simple-bus" string, Thanks.
>
>> +                       reg = <0x0 0x1530000 0x0 0x10000>;
>> +                       interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
>> +               };
>> +
>> +               dcfg: dcfg@1ee0000 {
>> +                       compatible = "fsl,ls1021a-dcfg";
>> +                       reg = <0x0 0x1ee0000 0x0 0x10000>;
>> +               };
>
>Undocumented/unsupported binding.
>
>What is this?
It is the device configuration unit that provides general purpose configuration and status
for the device, there isn't a dedicate driver for it, device that has configuration and status
register located in this space could operate on it. Currently it is used to set the secondary
core start address and release the secondary core from holdoff and startup. Thanks.
>
>> +               qspi: quadspi@1550000 {
>> +                       #address-cells = <1>;
>> +                       #size-cells = <0>;
>> +                       compatible = "fsl,vf610-qspi";
>
>Please put the compatible string first. It makes it easier to find.
>
>> +                       reg = <0x0 0x1550000 0x0 0x10000>;
>
>Missing the second reg entry? The binding didn't state it was optional.
I will check this, thanks.
>
>> +                       interrupts = <GIC_SPI 131 IRQ_TYPE_LEVEL_HIGH>;
>> +                       clock-names = "qspi_en", "qspi";
>> +                       clocks = <&platform_clk 1>, <&platform_clk 1>;
>
>Normally we put $X before $X-names properties.
>
>I note that these clock-names are poorly documented. It would be nice to
>see that fixed up.
We will check this subsequently. Thanks.
>
>> +                       big-endian;
>
>The binding doesn't mention this. Does the driver support it?
>
>> +                       amba-base = <0x40000000>;
>
>The string "amba-base" shows up nowhere in mainline. What is this, and why
>is it here?
>
>[...]
>
>> +               scfg: scfg@1570000 {
>> +                       compatible = "fsl,ls1021a-scfg";
>> +                       reg = <0x0 0x1570000 0x0 0x10000>;
>> +               };
>
>Undocumented/unsupported binding.
>
>What is this?
It is the supplemental configuration unit, provides SoC specific configuration and status
registers for the device. Some device driver need this space to configure or get status.
If this is need document, which location is suitable for its document?
Thanks.
>
>[...]
>
>> +               rcpm: rcpm@1ee2000 {
>> +                       compatible = "fsl,ls1021a-rcpm", "fsl,qoriq-
>rcpm-2.1";
>> +                       reg = <0x0 0x1ee2000 0x0 0x10000>;
>> +               };
>
>Undocumented/unsupported binding (both compatible strings).
>
>What is this?
The Run Control and Power Management (RCPM) module performs all device-level tasks associated with
device run control and power management. It will be used by the PM driver currently. Thanks.
>
>[...]
>
>> +               gpio1: gpio@2300000 {
>> +                       compatible = "fsl,ls1021a-gpio";
>> +                       reg = <0x0 0x2300000 0x0 0x10000>;
>> +                       interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>;
>> +                       gpio-controller;
>> +                       #gpio-cells = <2>;
>> +                       interrupt-controller;
>> +                       #interrupt-cells = <2>;
>> +               };
>
>Undocumented/unsupported binding.
The bind document will be add along with the SoC platform support patch for it. Thanks.
>
>[...]
>
>> +               lpuart1: serial@2960000 {
>> +                       compatible = "fsl,ls1021a-lpuart";
>> +                       reg = <0x0 0x2960000 0x0 0x1000>;
>> +                       interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
>> +                       clocks = <&platform_clk 1>;
>> +                       clock-names = "ipg";
>> +                       status = "disabled";
>> +               };
>
>Undocumented/unsupported binding.
I will add the bind document for this. Thanks.
>
>[...]
>
>[...]
>
>> +               wdog0: wdog@2ad0000 {
>> +                       compatible = "fsl,ls1021a-wdt", "fsl,imx21-wdt";
>> +                       reg = <0x0 0x2ad0000 0x0 0x10000>;
>> +                       interrupts = <GIC_SPI 115 IRQ_TYPE_LEVEL_HIGH>;
>> +                       clocks = <&platform_clk 1>;
>> +                       clock-names = "wdog";
>> +                       big-endian;
>> +               };
>
>That clock name looks aribitrary, and "fsl,imx21-wdt" isn't documented as
>taking a clock.
>
>What is going on here?
The imx2_wdt driver need the clock, the clock name is not used, should it be removed?
and maybe the document is omitted, we'll check and add it subsequently. Thanks.
>
>[...]
>
>> +               can0: can@2a70000 {
>> +                       compatible = "fsl,ls1021a-flexcan";
>> +                       reg = <0x0 0x2a70000 0x0 0x1000>;
>> +                       interrupts = <GIC_SPI 126 IRQ_TYPE_LEVEL_HIGH>;
>> +                       clocks = <&platform_clk 1>;
>> +                       clock-names = "per";
>> +                       status = "disabled";
>> +               };
>
>Undocumented/unsupported binding.
>
>Was this mean to have an existing compatible string in the list?
There will be fsl,ls1021a-flexcan support after the platform support is accepted,
It is list here just for the SoC level device resource.
>
>> +
>> +               can1: can@2a80000 {
>> +                       compatible = "fsl,ls1021a-flexcan";
>> +                       reg = <0x0 0x2a80000 0x0 0x1000>;
>> +                       interrupts = <GIC_SPI 127 IRQ_TYPE_LEVEL_HIGH>;
>> +                       clocks = <&platform_clk 1>;
>> +                       clock-names = "per";
>> +                       status = "disabled";
>> +               };
>> +
>> +               can2: can@2a90000 {
>> +                       compatible = "fsl,ls1021a-flexcan";
>> +                       reg = <0x0 0x2a90000 0x0 0x1000>;
>> +                       interrupts = <GIC_SPI 128 IRQ_TYPE_LEVEL_HIGH>;
>> +                       clocks = <&platform_clk 1>;
>> +                       clock-names = "per";
>> +                       status = "disabled";
>> +               };
>> +
>> +               can3: can@2aa0000 {
>> +                       compatible = "fsl,ls1021a-flexcan";
>> +                       reg = <0x0 0x2aa0000 0x0 0x1000>;
>> +                       interrupts = <GIC_SPI 129 IRQ_TYPE_LEVEL_HIGH>;
>> +                       clocks = <&platform_clk 1>;
>> +                       clock-names = "per";
>> +                       status = "disabled";
>> +               };
>> +       };
>> +
>> +       dcsr@20000000 {
>> +               #address-cells = <1>;
>> +               #size-cells = <1>;
>> +               compatible = "fsl,ls1021a-dcsr", "simple-bus";
>
>Missing a reg entry? Or is the unit-address arbitrary?
>
>The "fsl,ls1021a-dcsr" string is undocumented/unsupported, as with the
>compatible strings of all the child nodes below.
>
>Thanks,
>Mark.
It share the drive with PowerPC SoCs, the reg here is not used, only the child node's will
be used. Thanks.


Best Regards,
Jingchang



��.n��������+%������w��{.n����z�{��ܨ}���Ơz�j:+v�����w����ޙ��&�)ߡ�a����z�ޗ���ݢj��w�f





[Index of Archives]     [Device Tree Compilter]     [Device Tree Spec]     [Linux Driver Backports]     [Video for Linux]     [Linux USB Devel]     [Linux PCI Devel]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [XFree86]     [Yosemite Backpacking]
  Powered by Linux