]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/mach-uniphier/dram/cmd_ddrphy.c
ARM: uniphier: shrink arrays of DDR-PHY parameters for LD20 SoC
[u-boot] / arch / arm / mach-uniphier / dram / cmd_ddrphy.c
index c868eb03fd72a6cb851d08603d8f5a070fa31934..d6d9db3e2c1092524939c9badfae6afb31d33c4c 100644 (file)
@@ -22,6 +22,8 @@
 /* field separator */
 #define FS "   "
 
+#define ptr_to_uint(p) ((unsigned int)(unsigned long)(p))
+
 struct phy_param {
        resource_size_t base;
        unsigned int nr_dx;
@@ -47,6 +49,11 @@ static const struct phy_param uniphier_sld8_phy_param[] = {
        { /* sentinel */ }
 };
 
+static const struct phy_param uniphier_ld11_phy_param[] = {
+       { .base = 0x5bc01000, .nr_dx = 4, },
+       { /* sentinel */ }
+};
+
 static void print_bdl(void __iomem *reg, int n)
 {
        u32 val = readl(reg);
@@ -174,15 +181,17 @@ static void mdl_dump(const struct phy_param *phy_param)
 
 #define REG_DUMP(x)                                                    \
        { int ofst = PHY_ ## x; void __iomem *reg = phy_base + ofst;    \
-               printf("%3d: %-10s: %p : %08x\n",                       \
-                      ofst >> PHY_REG_SHIFT, #x, reg, readl(reg)); }
+               printf("%3d: %-10s: %08x : %08x\n",                     \
+                      ofst >> PHY_REG_SHIFT, #x,                       \
+                      ptr_to_uint(reg), readl(reg)); }
 
 #define DX_REG_DUMP(dx, x)                                             \
        { int ofst = PHY_DX_BASE + PHY_DX_STRIDE * (dx) +               \
                        PHY_DX_## x;                                    \
                void __iomem *reg = phy_base + ofst;                    \
-               printf("%3d: DX%d%-7s: %p : %08x\n",                    \
-                      ofst >> PHY_REG_SHIFT, (dx), #x, reg, readl(reg)); }
+               printf("%3d: DX%d%-7s: %08x : %08x\n",                  \
+                      ofst >> PHY_REG_SHIFT, (dx), #x,                 \
+                      ptr_to_uint(reg), readl(reg)); }
 
 static void reg_dump(const struct phy_param *phy_param)
 {
@@ -194,7 +203,7 @@ static void reg_dump(const struct phy_param *phy_param)
        for (p = 0; phy_param->base; phy_param++, p++) {
                phy_base = ioremap(phy_param->base, SZ_4K);
 
-               printf("== PHY%d (base: %p) ==\n", p, phy_base);
+               printf("== PHY%d (base: %08x) ==\n", p, ptr_to_uint(phy_base));
                printf(" No: Name      : Address  : Data\n");
 
                REG_DUMP(RIDR);
@@ -236,16 +245,19 @@ static int do_ddr(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
        char *cmd = argv[1];
        const struct phy_param *phy_param;
 
-       switch (uniphier_get_soc_type()) {
-       case SOC_UNIPHIER_LD4:
+       switch (uniphier_get_soc_id()) {
+       case UNIPHIER_LD4_ID:
                phy_param = uniphier_ld4_phy_param;
                break;
-       case SOC_UNIPHIER_PRO4:
+       case UNIPHIER_PRO4_ID:
                phy_param = uniphier_pro4_phy_param;
                break;
-       case SOC_UNIPHIER_SLD8:
+       case UNIPHIER_SLD8_ID:
                phy_param = uniphier_sld8_phy_param;
                break;
+       case UNIPHIER_LD11_ID:
+               phy_param = uniphier_ld11_phy_param;
+               break;
        default:
                printf("unsupported SoC\n");
                return CMD_RET_FAILURE;