]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
ARM: uniphier: add PH1-LD11 SoC support
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Tue, 24 May 2016 12:14:01 +0000 (21:14 +0900)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Wed, 25 May 2016 15:37:13 +0000 (00:37 +0900)
This is a low-cost ARMv8 SoC from Socionext Inc.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
24 files changed:
arch/arm/mach-uniphier/Kconfig
arch/arm/mach-uniphier/board_early_init_f.c
arch/arm/mach-uniphier/boards.c
arch/arm/mach-uniphier/boot-mode/Makefile
arch/arm/mach-uniphier/boot-mode/boot-mode.c
arch/arm/mach-uniphier/boot-mode/cmd_pinmon.c
arch/arm/mach-uniphier/clk/Makefile
arch/arm/mach-uniphier/clk/clk-ld11.c [new file with mode: 0644]
arch/arm/mach-uniphier/cpu_info.c
arch/arm/mach-uniphier/dram/Makefile
arch/arm/mach-uniphier/dram/umc-ld11.c [new file with mode: 0644]
arch/arm/mach-uniphier/dram/umc64-regs.h
arch/arm/mach-uniphier/early-clk/Makefile
arch/arm/mach-uniphier/early-clk/early-clk-ld11.c [new file with mode: 0644]
arch/arm/mach-uniphier/early-pinctrl/Makefile
arch/arm/mach-uniphier/init.h
arch/arm/mach-uniphier/init/Makefile
arch/arm/mach-uniphier/init/init-ld11.c [new file with mode: 0644]
arch/arm/mach-uniphier/init/init.c
arch/arm/mach-uniphier/pinctrl/Makefile
arch/arm/mach-uniphier/sbc/Makefile
arch/arm/mach-uniphier/sg-regs.h
configs/uniphier_ld11_defconfig [new file with mode: 0644]
include/configs/uniphier.h

index 87d1675ffc3718b1b0218f22762f13093f6abb05..ae763ad94e3f266a767672111844f9163ff3ab46 100644 (file)
@@ -23,6 +23,11 @@ config ARCH_UNIPHIER_PRO5_PXS2_LD6B
        bool "UniPhier PH1-Pro5/ProXstream2/PH1-LD6b SoC"
        select CPU_V7
 
+config ARCH_UNIPHIER_LD11
+       bool "UniPhier PH1-LD11 SoC"
+       select ARM64
+       select SPL_SEPARATE_BSS
+
 config ARCH_UNIPHIER_LD20
        bool "UniPhier PH1-LD20 SoC"
        select ARM64
index 2a7ae1b5297d7bc455314cabfdaf5381fb7f0a38..f853701f44daceb162ce2ed788c690f8640a123d 100644 (file)
@@ -62,6 +62,13 @@ int board_early_init_f(void)
                uniphier_pxs2_clk_init();
                break;
 #endif
+#if defined(CONFIG_ARCH_UNIPHIER_LD11)
+       case SOC_UNIPHIER_LD11:
+               uniphier_ld20_pin_init();
+               led_puts("U1");
+               uniphier_ld11_clk_init();
+               break;
+#endif
 #if defined(CONFIG_ARCH_UNIPHIER_LD20)
        case SOC_UNIPHIER_LD20:
                uniphier_ld20_pin_init();
index f0547c336e067b9a7cbccba1a363f1dc8e022880..ed308f3ecba0d4c2efc839ea02f46de7a29ac859 100644 (file)
@@ -165,6 +165,23 @@ static const struct uniphier_board_data uniphier_ld6b_data = {
 };
 #endif
 
+#if defined(CONFIG_ARCH_UNIPHIER_LD11)
+static const struct uniphier_board_data uniphier_ld11_data = {
+       .dram_freq = 1600,
+       .dram_nr_ch = 2,
+       .dram_ch[0] = {
+               .base = 0x80000000,
+               .size = 0x20000000,
+               .width = 16,
+       },
+       .dram_ch[1] = {
+               .base = 0xa0000000,
+               .size = 0x20000000,
+               .width = 16,
+       },
+};
+#endif
+
 #if defined(CONFIG_ARCH_UNIPHIER_LD20)
 static const struct uniphier_board_data uniphier_ld20_data = {
        .dram_freq = 1866,
@@ -216,6 +233,9 @@ static const struct uniphier_board_id uniphier_boards[] = {
 #if defined(CONFIG_ARCH_UNIPHIER_LD6B)
        { "socionext,ph1-ld6b", &uniphier_ld6b_data, },
 #endif
+#if defined(CONFIG_ARCH_UNIPHIER_LD11)
+       { "socionext,ph1-ld11", &uniphier_ld11_data, },
+#endif
 #if defined(CONFIG_ARCH_UNIPHIER_LD20)
        { "socionext,ph1-ld20", &uniphier_ld20_data, },
 #endif
index 6cd096ec5fbe722c45b9ad7db5adad0345833f50..d7fefc5bbd0d6af8e7df8e3f00247fcafb7c749d 100644 (file)
@@ -11,6 +11,7 @@ obj-$(CONFIG_ARCH_UNIPHIER_SLD8)      += boot-mode-ld4.o
 obj-$(CONFIG_ARCH_UNIPHIER_PRO5)       += boot-mode-pro5.o
 obj-$(CONFIG_ARCH_UNIPHIER_PXS2)       += boot-mode-pxs2.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD6B)       += boot-mode-pxs2.o
+obj-$(CONFIG_ARCH_UNIPHIER_LD11)       += boot-mode-ld20.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD20)       += boot-mode-ld20.o
 
 obj-$(CONFIG_CMD_PINMON) += cmd_pinmon.o
index b180f44ce8c958c6e17e04d35a6e867436fc46c9..4b744da2529af728733b90da39028ff8d046cda1 100644 (file)
@@ -39,7 +39,8 @@ u32 spl_boot_device_raw(void)
        case SOC_UNIPHIER_LD6B:
                return uniphier_pxs2_boot_device();
 #endif
-#if defined(CONFIG_ARCH_UNIPHIER_LD20)
+#if defined(CONFIG_ARCH_UNIPHIER_LD11) || defined(CONFIG_ARCH_UNIPHIER_LD20)
+       case SOC_UNIPHIER_LD11:
        case SOC_UNIPHIER_LD20:
                return uniphier_ld20_boot_device();
 #endif
index fa97dc5856935354ec3c81ccb2bc7569497543d8..a8ee3822480a3a75614b25e3d7b8ba601c521835 100644 (file)
@@ -39,7 +39,8 @@ static int do_pinmon(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
                uniphier_pxs2_boot_mode_show();
                break;
 #endif
-#if defined(CONFIG_ARCH_UNIPHIER_LD20)
+#if defined(CONFIG_ARCH_UNIPHIER_LD11) || defined(CONFIG_ARCH_UNIPHIER_LD20)
+       case SOC_UNIPHIER_LD11:
        case SOC_UNIPHIER_LD20:
                uniphier_ld20_boot_mode_show();
                break;
index 93e9d91e47848ad5352397cb26be10eaeac94358..1428e0c9cc9163eae771024798a0114ac1c83b30 100644 (file)
@@ -9,4 +9,5 @@ obj-$(CONFIG_ARCH_UNIPHIER_SLD8)        += clk-ld4.o
 obj-$(CONFIG_ARCH_UNIPHIER_PRO5)       += clk-pro5.o
 obj-$(CONFIG_ARCH_UNIPHIER_PXS2)       += clk-pxs2.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD6B)       += clk-pxs2.o
+obj-$(CONFIG_ARCH_UNIPHIER_LD11)       += clk-ld11.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD20)       += clk-ld20.o
diff --git a/arch/arm/mach-uniphier/clk/clk-ld11.c b/arch/arm/mach-uniphier/clk/clk-ld11.c
new file mode 100644 (file)
index 0000000..92a0733
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ * Copyright (C) 2016 Socionext Inc.
+ *
+ * SPDX-License-Identifier:    GPL-2.0+
+ */
+
+#include <common.h>
+#include <linux/bitops.h>
+#include <linux/io.h>
+
+#include "../init.h"
+#include "../sg-regs.h"
+
+void uniphier_ld11_clk_init(void)
+{
+       if (readl(SG_PINMON0) & BIT(27)) {
+               /* if booted without stand-by MPU */
+
+               writel(1, SG_ETPHYPSHUT);
+               writel(1, SG_ETPHYCNT);
+
+               udelay(1); /* wait for regulator level 1.1V -> 2.5V */
+
+               writel(3, SG_ETPHYCNT);
+               writel(3, SG_ETPHYPSHUT);
+               writel(7, SG_ETPHYCNT);
+       }
+}
index f9646c0205b896948a249d735356d751ee23cf47..6ad4c76dc48b91beb6a2c688d9ae8bd929b6169a 100644 (file)
@@ -45,7 +45,7 @@ int print_cpuinfo(void)
                puts("PH1-LD6b (MN2WS0320)");
                break;
        case 0x31:
-               puts("PH1-LD11 ()");
+               puts("PH1-LD11 (SC1405AP1)");
                break;
        case 0x32:
                puts("PH1-LD20 (SC1401AJ1)");
index 41aa53b6b5ed206d5c908a39da2ffc7b2932049d..5b9d8925114ff363a459d620cc90ede02c1821e7 100644 (file)
@@ -12,6 +12,7 @@ obj-$(CONFIG_ARCH_UNIPHIER_SLD8)      += umc-sld8.o \
                                           ddrphy-training.o ddrphy-ld4.o
 obj-$(CONFIG_ARCH_UNIPHIER_PXS2)       += umc-pxs2.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD6B)       += umc-pxs2.o
+obj-$(CONFIG_ARCH_UNIPHIER_LD11)       += umc-ld11.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD20)       += umc-ld20.o
 
 else
diff --git a/arch/arm/mach-uniphier/dram/umc-ld11.c b/arch/arm/mach-uniphier/dram/umc-ld11.c
new file mode 100644 (file)
index 0000000..1be18a8
--- /dev/null
@@ -0,0 +1,124 @@
+/*
+ * Copyright (C) 2016 Socionext Inc.
+ */
+
+#include <common.h>
+#include <linux/io.h>
+#include <linux/sizes.h>
+#include <asm/processor.h>
+
+#include "../init.h"
+#include "umc64-regs.h"
+
+#define CONFIG_DDR_FREQ                1866
+
+#define DRAM_CH_NR     2
+
+enum dram_freq {
+       DRAM_FREQ_1600M,
+       DRAM_FREQ_NR,
+};
+
+enum dram_size {
+       DRAM_SZ_256M,
+       DRAM_SZ_512M,
+       DRAM_SZ_NR,
+};
+
+/* umc */
+static u32 umc_cmdctla[DRAM_FREQ_NR] = {0x060D0D20};
+static u32 umc_cmdctlb[DRAM_FREQ_NR] = {0x2D211C08};
+static u32 umc_cmdctlc[DRAM_FREQ_NR] = {0x00150C04};
+static u32 umc_cmdctle[DRAM_FREQ_NR] = {0x0078071D};
+static u32 umc_cmdctlf[DRAM_FREQ_NR] = {0x02000200};
+static u32 umc_cmdctlg[DRAM_FREQ_NR] = {0x08080808};
+
+static u32 umc_rdatactl_d0[DRAM_FREQ_NR] = {0x00000810};
+static u32 umc_rdatactl_d1[DRAM_FREQ_NR] = {0x00000810};
+static u32 umc_wdatactl_d0[DRAM_FREQ_NR] = {0x00000004};
+static u32 umc_wdatactl_d1[DRAM_FREQ_NR] = {0x00000004};
+static u32 umc_odtctl_d0[DRAM_FREQ_NR] = {0x02000002};
+static u32 umc_odtctl_d1[DRAM_FREQ_NR] = {0x02000002};
+static u32 umc_acssetb[DRAM_CH_NR] = {0x00000200, 0x00000203};
+static u32 umc_memconfch[DRAM_FREQ_NR] = {0x00023605};
+
+static int umc_dc_init(void __iomem *dc_base, enum dram_freq freq,
+                      unsigned long size, int ch)
+{
+       writel(umc_cmdctla[freq], dc_base + UMC_CMDCTLA);
+       writel(umc_cmdctlb[freq], dc_base + UMC_CMDCTLB);
+       writel(umc_cmdctlc[freq], dc_base + UMC_CMDCTLC);
+       writel(umc_cmdctle[freq], dc_base + UMC_CMDCTLE);
+       writel(umc_cmdctlf[freq], dc_base + UMC_CMDCTLF);
+       writel(umc_cmdctlg[freq], dc_base + UMC_CMDCTLG);
+
+       writel(umc_rdatactl_d0[freq], dc_base + UMC_RDATACTL_D0);
+       writel(umc_rdatactl_d1[freq], dc_base + UMC_RDATACTL_D1);
+
+       writel(umc_wdatactl_d0[freq], dc_base + UMC_WDATACTL_D0);
+       writel(umc_wdatactl_d1[freq], dc_base + UMC_WDATACTL_D1);
+
+       writel(umc_odtctl_d0[freq], dc_base + UMC_ODTCTL_D0);
+       writel(umc_odtctl_d1[freq], dc_base + UMC_ODTCTL_D1);
+
+       writel(0x00000003, dc_base + UMC_ACSSETA);
+       writel(0x00000103, dc_base + UMC_FLOWCTLG);
+       writel(umc_acssetb[ch], dc_base + UMC_ACSSETB);
+       writel(0x02020200, dc_base + UMC_SPCSETB);
+       writel(umc_memconfch[freq], dc_base + UMC_MEMCONFCH);
+       writel(0x00000002, dc_base + UMC_ACFETCHCTRL);
+
+       return 0;
+}
+
+static int umc_ch_init(void __iomem *umc_ch_base,
+                      enum dram_freq freq, unsigned long size, int ch)
+{
+       void __iomem *dc_base  = umc_ch_base;
+
+       return umc_dc_init(dc_base, freq, size, ch);
+}
+
+static void um_init(void __iomem *um_base)
+{
+       writel(0x00000001, um_base + UMC_SIORST);
+       writel(0x00000001, um_base + UMC_VO0RST);
+       writel(0x00000001, um_base + UMC_VPERST);
+       writel(0x00000001, um_base + UMC_RGLRST);
+       writel(0x00000001, um_base + UMC_A2DRST);
+       writel(0x00000001, um_base + UMC_DMDRST);
+}
+
+int uniphier_ld11_umc_init(const struct uniphier_board_data *bd)
+{
+       void __iomem *um_base = (void __iomem *)0x5B800000;
+       void __iomem *umc_ch_base = (void __iomem *)0x5BC00000;
+       enum dram_freq freq;
+       int ch, ret;
+
+       switch (bd->dram_freq) {
+       case 1600:
+               freq = DRAM_FREQ_1600M;
+               break;
+       default:
+               pr_err("unsupported DRAM frequency %d MHz\n", bd->dram_freq);
+               return -EINVAL;
+       }
+
+       for (ch = 0; ch < bd->dram_nr_ch; ch++) {
+               unsigned long size = bd->dram_ch[ch].size;
+               unsigned int width = bd->dram_ch[ch].width;
+
+               ret = umc_ch_init(umc_ch_base, freq, size / (width / 16), ch);
+               if (ret) {
+                       pr_err("failed to initialize UMC ch%d\n", ch);
+                       return ret;
+               }
+
+               umc_ch_base += 0x00200000;
+       }
+
+       um_init(um_base);
+
+       return 0;
+}
index 1b6a838a4c110976dddf5041b095c8b8350da675..860d04e38140deab71aa9a0e31c3fca416720630 100644 (file)
@@ -18,6 +18,8 @@
 #define UMC_INITSET            0x00000040
 #define UMC_INITSTAT           0x00000044
 #define UMC_CMDCTLE            0x00000050
+#define UMC_CMDCTLF            0x00000054
+#define UMC_CMDCTLG            0x00000058
 #define UMC_SPCSETB            0x00000084
 #define   UMC_SPCSETB_AREFMD_MASK      (0x3)   /* Auto Refresh Mode */
 #define   UMC_SPCSETB_AREFMD_ARB       (0x0)   /* control by arbitor */
@@ -32,6 +34,7 @@
 #define UMC_FLOWCTLA           0x00000400
 #define UMC_FLOWCTLB           0x00000404
 #define UMC_FLOWCTLC           0x00000408
+#define UMC_ACFETCHCTRL                0x00000460
 #define UMC_FLOWCTLG           0x00000508
 #define UMC_RDATACTL_D0                0x00000600
 #define UMC_WDATACTL_D0                0x00000604
@@ -42,6 +45,7 @@
 #define UMC_ODTCTL_D1          0x0000061C
 #define UMC_RESPCTL            0x00000624
 #define UMC_DIRECTBUSCTRLA     0x00000680
+#define UMC_DEBUGC             0x00000718
 #define UMC_DCCGCTL            0x00000720
 #define UMC_DICGCTLA           0x00000724
 #define UMC_DICGCTLB           0x00000728
 #define UMC_MBUS9              0x00002478
 #define UMC_MBUS10             0x000024F8
 
+/* UMC1 register */
+#define UMC_SIORST             0x00000728
+#define UMC_VO0RST             0x0000073c
+#define UMC_VPERST             0x00000744
+#define UMC_RGLRST             0x00000750
+#define UMC_A2DRST             0x00000764
+#define UMC_DMDRST             0x00000770
+
 #endif /* UMC_LD20_REGS_H */
index 9242b416c5a4fd8d38da7b4c1e8b1239909e5232..755a3618b571261d0d3266943ca9ee4261f5e183 100644 (file)
@@ -9,4 +9,5 @@ obj-$(CONFIG_ARCH_UNIPHIER_SLD8)        += early-clk-ld4.o
 obj-$(CONFIG_ARCH_UNIPHIER_PRO5)       += early-clk-pro5.o
 obj-$(CONFIG_ARCH_UNIPHIER_PXS2)       += early-clk-pxs2.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD6B)       += early-clk-pxs2.o
+obj-$(CONFIG_ARCH_UNIPHIER_LD11)       += early-clk-ld11.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD20)       += early-clk-ld20.o
diff --git a/arch/arm/mach-uniphier/early-clk/early-clk-ld11.c b/arch/arm/mach-uniphier/early-clk/early-clk-ld11.c
new file mode 100644 (file)
index 0000000..c94d83c
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2016 Socionext Inc.
+ *   Author: Masahiro Yamada <yamada.masahiro@socionext.com>
+ *
+ * SPDX-License-Identifier:    GPL-2.0+
+ */
+
+#include <linux/io.h>
+
+#include "../init.h"
+#include "../sc64-regs.h"
+
+int uniphier_ld11_early_clk_init(const struct uniphier_board_data *bd)
+{
+       u32 tmp;
+
+       /* deassert reset */
+       tmp = readl(SC_RSTCTRL7);
+       tmp |= SC_RSTCTRL7_UMC31 | SC_RSTCTRL7_UMC30;
+       writel(tmp, SC_RSTCTRL7);
+
+       /* provide clocks */
+       tmp = readl(SC_CLKCTRL4);
+       tmp |= SC_CLKCTRL4_PERI;
+       writel(tmp, SC_CLKCTRL4);
+
+       tmp = readl(SC_CLKCTRL7);
+       tmp |= SC_CLKCTRL7_UMC31 | SC_CLKCTRL7_UMC30;
+       writel(tmp, SC_CLKCTRL7);
+
+       return 0;
+}
index a1039025ca4839831b231c92e8471ea7626f2d5b..7177a8cf8f0bbccc9ec55a75a5fabb86476d5893 100644 (file)
@@ -3,4 +3,5 @@
 #
 
 obj-$(CONFIG_ARCH_UNIPHIER_SLD3)       += early-pinctrl-sld3.o
+obj-$(CONFIG_ARCH_UNIPHIER_LD11)       += early-pinctrl-ld20.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD20)       += early-pinctrl-ld20.o
index ab0a68d83d8183b47befc5850fa130676a252746..cba0bc9d37453538848d0d7b6c40b49481ca6160 100644 (file)
@@ -32,6 +32,7 @@ int uniphier_pro4_init(const struct uniphier_board_data *bd);
 int uniphier_sld8_init(const struct uniphier_board_data *bd);
 int uniphier_pro5_init(const struct uniphier_board_data *bd);
 int uniphier_pxs2_init(const struct uniphier_board_data *bd);
+int uniphier_ld11_init(const struct uniphier_board_data *bd);
 int uniphier_ld20_init(const struct uniphier_board_data *bd);
 
 #if defined(CONFIG_MICRO_SUPPORT_CARD)
@@ -81,6 +82,7 @@ int uniphier_ld4_enable_dpll_ssc(const struct uniphier_board_data *bd);
 int uniphier_ld4_early_clk_init(const struct uniphier_board_data *bd);
 int uniphier_pro5_early_clk_init(const struct uniphier_board_data *bd);
 int uniphier_pxs2_early_clk_init(const struct uniphier_board_data *bd);
+int uniphier_ld11_early_clk_init(const struct uniphier_board_data *bd);
 int uniphier_ld20_early_clk_init(const struct uniphier_board_data *bd);
 
 int uniphier_sld3_early_pin_init(const struct uniphier_board_data *bd);
@@ -91,6 +93,7 @@ int uniphier_pro4_umc_init(const struct uniphier_board_data *bd);
 int uniphier_sld8_umc_init(const struct uniphier_board_data *bd);
 int uniphier_pxs2_umc_init(const struct uniphier_board_data *bd);
 int uniphier_ld20_umc_init(const struct uniphier_board_data *bd);
+int uniphier_ld11_umc_init(const struct uniphier_board_data *bd);
 
 void uniphier_sld3_pin_init(void);
 void uniphier_ld4_pin_init(void);
@@ -105,6 +108,7 @@ void uniphier_ld4_clk_init(void);
 void uniphier_pro4_clk_init(void);
 void uniphier_pro5_clk_init(void);
 void uniphier_pxs2_clk_init(void);
+void uniphier_ld11_clk_init(void);
 void uniphier_ld20_clk_init(void);
 
 void cci500_init(int nr_slaves);
index b58e6c885a3a3eec4dca6c2f7c700c0336f3d76c..dcaa4451ad27df4719d653dfd1c616ae7ac2204c 100644 (file)
@@ -11,4 +11,5 @@ obj-$(CONFIG_ARCH_UNIPHIER_SLD8)      += init-sld8.o
 obj-$(CONFIG_ARCH_UNIPHIER_PRO5)       += init-pro5.o
 obj-$(CONFIG_ARCH_UNIPHIER_PXS2)       += init-pxs2.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD6B)       += init-pxs2.o
+obj-$(CONFIG_ARCH_UNIPHIER_LD11)       += init-ld11.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD20)       += init-ld20.o
diff --git a/arch/arm/mach-uniphier/init/init-ld11.c b/arch/arm/mach-uniphier/init/init-ld11.c
new file mode 100644 (file)
index 0000000..de2dc62
--- /dev/null
@@ -0,0 +1,59 @@
+/*
+ * Copyright (C) 2016 Socionext Inc.
+ *   Author: Masahiro Yamada <yamada.masahiro@socionext.com>
+ *
+ * SPDX-License-Identifier:    GPL-2.0+
+ */
+
+#include <common.h>
+#include <spl.h>
+
+#include "../init.h"
+#include "../micro-support-card.h"
+
+int uniphier_ld11_init(const struct uniphier_board_data *bd)
+{
+       uniphier_sbc_init_savepin(bd);
+       uniphier_pxs2_sbc_init(bd);
+       uniphier_ld20_early_pin_init(bd);
+
+       support_card_reset();
+
+       support_card_init();
+
+       led_puts("L0");
+
+       memconf_init(bd);
+
+       led_puts("L1");
+
+       uniphier_ld11_early_clk_init(bd);
+
+       led_puts("L2");
+
+       led_puts("L3");
+
+#ifdef CONFIG_SPL_SERIAL_SUPPORT
+       preloader_console_init();
+#endif
+
+       led_puts("L4");
+
+       {
+               int res;
+
+               res = uniphier_ld11_umc_init(bd);
+               if (res < 0) {
+                       while (1)
+                               ;
+               }
+       }
+
+       led_puts("L5");
+
+       dcache_disable();
+
+       led_puts("L6");
+
+       return 0;
+}
index 15a53ce0689555a8460b1634238d91e8d82c8597..77e5b99047bc868347ac93003874cf90552f7c04 100644 (file)
@@ -55,6 +55,11 @@ void spl_board_init(void)
                uniphier_pxs2_init(param);
                break;
 #endif
+#if defined(CONFIG_ARCH_UNIPHIER_LD11)
+       case SOC_UNIPHIER_LD11:
+               uniphier_ld11_init(param);
+               break;
+#endif
 #if defined(CONFIG_ARCH_UNIPHIER_LD20)
        case SOC_UNIPHIER_LD20:
                uniphier_ld20_init(param);
index b579cb06e74e044d1a1325e732f78b9e4cd4f8e5..7f4d9f76a8dcc75f8cae38a8e8449b263ae1a4fe 100644 (file)
@@ -9,4 +9,5 @@ obj-$(CONFIG_ARCH_UNIPHIER_SLD8)        += pinctrl-sld8.o
 obj-$(CONFIG_ARCH_UNIPHIER_PRO5)       += pinctrl-pro5.o
 obj-$(CONFIG_ARCH_UNIPHIER_PXS2)       += pinctrl-pxs2.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD6B)       += pinctrl-ld6b.o
+obj-$(CONFIG_ARCH_UNIPHIER_LD11)       += pinctrl-ld20.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD20)       += pinctrl-ld20.o
index 38da253975c8243f945cc2a4c94f5a02139bf02e..ec3c22c28d87a371af504443d39e989f18b7b1a0 100644 (file)
@@ -9,4 +9,5 @@ obj-$(CONFIG_ARCH_UNIPHIER_SLD8)        += sbc-savepin.o sbc-ld4.o
 obj-$(CONFIG_ARCH_UNIPHIER_PRO5)       += sbc-savepin.o
 obj-$(CONFIG_ARCH_UNIPHIER_PXS2)       += sbc-savepin.o sbc-pxs2.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD6B)       += sbc-savepin.o sbc-pxs2.o
+obj-$(CONFIG_ARCH_UNIPHIER_LD11)       += sbc-savepin.o sbc-pxs2.o
 obj-$(CONFIG_ARCH_UNIPHIER_LD20)       += sbc-savepin.o sbc-pxs2.o
index 1d71ce87ae88bd43355961626c6f0d7381b7fed0..a179d615be9e0c77b59245cf762ac3848c186140 100644 (file)
@@ -59,6 +59,9 @@
 
 #define SG_MEMCONF_SPARSEMEM           (0x1 << 4)
 
+#define SG_ETPHYPSHUT                  (SG_CTRL_BASE | 0x554)
+#define SG_ETPHYCNT                    (SG_CTRL_BASE | 0x550)
+
 /* Pin Control */
 #define SG_PINCTRL_BASE                        (SG_CTRL_BASE | 0x1000)
 
diff --git a/configs/uniphier_ld11_defconfig b/configs/uniphier_ld11_defconfig
new file mode 100644 (file)
index 0000000..ffcac79
--- /dev/null
@@ -0,0 +1,31 @@
+CONFIG_ARM=y
+CONFIG_ARCH_UNIPHIER=y
+CONFIG_SYS_MALLOC_F_LEN=0x2000
+CONFIG_ARCH_UNIPHIER_LD11=y
+CONFIG_MICRO_SUPPORT_CARD=y
+CONFIG_SYS_TEXT_BASE=0x84000000
+CONFIG_DEFAULT_DEVICE_TREE="uniphier-ph1-ld11-ref"
+CONFIG_HUSH_PARSER=y
+# CONFIG_CMD_XIMG is not set
+# CONFIG_CMD_ENV_EXISTS is not set
+CONFIG_CMD_MMC=y
+CONFIG_CMD_I2C=y
+CONFIG_CMD_USB=y
+# CONFIG_CMD_FPGA is not set
+CONFIG_CMD_GPIO=y
+CONFIG_CMD_TFTPPUT=y
+CONFIG_CMD_PING=y
+CONFIG_CMD_TIME=y
+# CONFIG_CMD_MISC is not set
+CONFIG_CMD_FAT=y
+CONFIG_NET_RANDOM_ETHADDR=y
+CONFIG_SPL_OF_TRANSLATE=y
+CONFIG_GPIO_UNIPHIER=y
+CONFIG_PINCTRL=y
+CONFIG_SPL_PINCTRL=y
+CONFIG_UNIPHIER_SERIAL=y
+CONFIG_USB=y
+CONFIG_DM_USB=y
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_EHCI_GENERIC=y
+CONFIG_USB_STORAGE=y
index 18cb963844763ade36b4035f48ce853c6c947e3f..10fd8c21ea53b3d910437d96eb4d833efbe0c04d 100644 (file)
 #define COUNTER_FREQUENCY                      50000000
 #define CONFIG_GICV3
 #define GICD_BASE                              0x5fe00000
+#if defined(CONFIG_ARCH_UNIPHIER_LD11)
+#define GICR_BASE                              0x5fe40000
+#elif defined(CONFIG_ARCH_UNIPHIER_LD20)
 #define GICR_BASE                              0x5fe80000
+#endif
 #else
 /* Time clock 1MHz */
 #define CONFIG_SYS_TIMER_RATE                  1000000
 #define CONFIG_SPL_TEXT_BASE           0x00100000
 #endif
 
-#if defined(CONFIG_ARCH_UNIPHIER_LD20)
+#if defined(CONFIG_ARCH_UNIPHIER_LD11)
+#define CONFIG_SPL_STACK               (0x30014c00)
+#elif defined(CONFIG_ARCH_UNIPHIER_LD20)
 #define CONFIG_SPL_STACK               (0x3001c000)
 #else
 #define CONFIG_SPL_STACK               (0x00100000)
 #define CONFIG_SPL_TARGET                      "u-boot-with-spl.bin"
 #define CONFIG_SPL_MAX_FOOTPRINT               0x10000
 #define CONFIG_SPL_MAX_SIZE                    0x10000
+#if defined(CONFIG_ARCH_UNIPHIER_LD11)
+#define CONFIG_SPL_BSS_START_ADDR              0x30012000
+#elif defined(CONFIG_ARCH_UNIPHIER_LD20)
 #define CONFIG_SPL_BSS_START_ADDR              0x30016000
+#endif
 #define CONFIG_SPL_BSS_MAX_SIZE                        0x2000
 
 #endif /* __CONFIG_UNIPHIER_COMMON_H__ */