]> git.sur5r.net Git - u-boot/commitdiff
rockchip: Update the sdram-channel property to support of-platdata
authorSimon Glass <sjg@chromium.org>
Mon, 4 Jul 2016 17:58:25 +0000 (11:58 -0600)
committerSimon Glass <sjg@chromium.org>
Fri, 15 Jul 2016 02:40:24 +0000 (20:40 -0600)
Add an extra byte so that this data is not byteswapped. Add a comment to
the code to explain the purpose.

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/arm/dts/rk3288-firefly.dts
arch/arm/include/asm/arch-rockchip/sdram.h

index aed8d3a712b037b363464759c9c17a6adc1d1e67..3176d5046b2a4a622bb700b2ab189575204ec2c0 100644 (file)
@@ -30,7 +30,8 @@
                0x5 0x0>;
        rockchip,phy-timing = <0x48f9aab4 0xea0910 0x1002c200
                0xa60 0x40 0x10 0x0>;
-       rockchip,sdram-channel = /bits/ 8 <0x1 0xa 0x3 0x2 0x1 0x0 0xf 0xf>;
+       /* Add a dummy value to cause of-platdata think this is bytes */
+       rockchip,sdram-channel = /bits/ 8 <0x1 0xa 0x3 0x2 0x1 0x0 0xf 0xf 0xff>;
        rockchip,sdram-params = <0x30B25564 0x627 3 666000000 3 9 1>;
 };
 
index d3de42d297745152efa3076e0e3aa1427005c7f6..c9e3001720ed86849346023e6f2e006aceb55372 100644 (file)
@@ -24,6 +24,12 @@ struct rk3288_sdram_channel {
        u8 row_3_4;
        u8 cs0_row;
        u8 cs1_row;
+       /*
+        * For of-platdata, which would otherwise convert this into two
+        * byte-swapped integers. With a size of 9 bytes, this struct will
+        * appear in of-platdata as a byte array.
+        */
+       u8 dummy;
 };
 
 struct rk3288_sdram_pctl_timing {