24 Jan, 2018

1 commit

  • Adopt the Linux DT bindings and clean-up duplicate
    and unused values.

    Fix indentation of the QSPI node in the keystone k2g
    device tree.

    Tested on TI K2G platform:
    Tested-by: Vignesh R

    Tested on a socfpga-cyclonev board:
    Tested-by: Simon Goldschmidt

    Signed-off-by: Jason Rush
    Reviewed-by: Jagan Teki
    Acked-by: Simon Goldschmidt
    Acked-by: Marek Vasut

    Jason Rush
     

11 Jul, 2017

2 commits

  • Upstream Linux has the unit address being added to the various 66AK2Gx
    boards dts. Therefore, update the dts to mimic this change.

    Also remove memory node from the base K2G dtsi file.

    Signed-off-by: Franklin S Cooper Jr
    Reviewed-by: Tom Rini

    Cooper Jr., Franklin
     
  • Adding the unit address to the memory node was causing the below error:
    Warning (reg_format): "reg" property in /memory has invalid length
    (8 bytes) (#address-cells == 2, #size-cells == 2)

    Further debugging showed that this was due to the memory node added by
    default to skeleton.dtsi which was being included in keystone-k2g.dtsi.
    Adding a missing node was all that was needed to remove this deprecated
    dtsi file from the SoC dtsi. With skeleton.dtsi removed the dtc compiler
    no longer complained about including the unit address for the memory node.

    Signed-off-by: Franklin S Cooper Jr
    Reviewed-by: Tom Rini

    Cooper Jr., Franklin
     

09 May, 2017

1 commit


09 Feb, 2017

1 commit

  • As reported in [1], rename the k2* dts files to keystone-* files
    this will force consistency throughout.

    Script for the same (and hand modified for Makefile and config
    files):
    for i in arch/arm/dts/k2*
    do
    b=`basename $i`;
    git mv $i arch/arm/dts/keystone-$b;
    sed -i -e "s/$b/keystone-$b/g" arch/arm/dts/*[si]
    done

    This is similar to linux kernel commit 5edafc29829bc ("ARM: dts: k2*: Rename
    the k2* files to keystone-k2* files")

    [1] http://marc.info/?l=linux-arm-kernel&m=145637407804754&w=2

    Signed-off-by: Lokesh Vutla
    Reviewed-by: Tom Rini

    Lokesh Vutla