Merge branch 'master' of git://git.denx.de/u-boot-uniphier
This commit is contained in:
commit
9a1f4bae0b
@ -43,7 +43,7 @@ static struct boot_device_info boot_device_table[] = {
|
||||
{BOOT_DEVICE_MMC1, "eMMC (High Speed SDR, 8bit, 1.8V, Training Off)"},
|
||||
{BOOT_DEVICE_MMC1, "eMMC (High Speed SDR, 8bit, 1.8V, Training On)"},
|
||||
{BOOT_DEVICE_MMC1, "eMMC (Legacy, 4bit, 1.8V, Training Off)"},
|
||||
{BOOT_DEVICE_NONE, "Reserved"},
|
||||
{BOOT_DEVICE_NOR, "NOR Boot (XECS1)"},
|
||||
};
|
||||
|
||||
static int get_boot_mode_sel(void)
|
||||
|
@ -21,6 +21,10 @@ int uniphier_ld20_early_clk_init(const struct uniphier_board_data *bd)
|
||||
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_UMCSB | SC_CLKCTRL7_UMC32 | SC_CLKCTRL7_UMC31 |
|
||||
SC_CLKCTRL7_UMC30;
|
||||
|
@ -3,3 +3,4 @@
|
||||
#
|
||||
|
||||
obj-$(CONFIG_ARCH_UNIPHIER_SLD3) += early-pinctrl-sld3.o
|
||||
obj-$(CONFIG_ARCH_UNIPHIER_LD20) += early-pinctrl-ld20.o
|
||||
|
32
arch/arm/mach-uniphier/early-pinctrl/early-pinctrl-ld20.c
Normal file
32
arch/arm/mach-uniphier/early-pinctrl/early-pinctrl-ld20.c
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Copyright (C) 2016 Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include "../init.h"
|
||||
#include "../sg-regs.h"
|
||||
|
||||
int uniphier_ld20_early_pin_init(const struct uniphier_board_data *bd)
|
||||
{
|
||||
/* Comment format: PAD Name -> Function Name */
|
||||
sg_set_pinsel(0, 0, 8, 4); /* XECS1 -> XECS1 */
|
||||
sg_set_pinsel(1, 0, 8, 4); /* ERXW -> ERXW */
|
||||
sg_set_pinsel(2, 0, 8, 4); /* XERWE1 -> XERWE1 */
|
||||
sg_set_pinsel(6, 2, 8, 4); /* XNFRE -> XERWE0 */
|
||||
sg_set_pinsel(7, 2, 8, 4); /* XNFWE -> ES0 */
|
||||
sg_set_pinsel(8, 2, 8, 4); /* NFALE -> ES1 */
|
||||
sg_set_pinsel(9, 2, 8, 4); /* NFCLE -> ES2 */
|
||||
sg_set_pinsel(10, 2, 8, 4); /* NFD0 -> ED0 */
|
||||
sg_set_pinsel(11, 2, 8, 4); /* NFD1 -> ED1 */
|
||||
sg_set_pinsel(12, 2, 8, 4); /* NFD2 -> ED2 */
|
||||
sg_set_pinsel(13, 2, 8, 4); /* NFD3 -> ED3 */
|
||||
sg_set_pinsel(14, 2, 8, 4); /* NFD4 -> ED4 */
|
||||
sg_set_pinsel(15, 2, 8, 4); /* NFD5 -> ED5 */
|
||||
sg_set_pinsel(16, 2, 8, 4); /* NFD6 -> ED6 */
|
||||
sg_set_pinsel(17, 2, 8, 4); /* NFD7 -> ED7 */
|
||||
sg_set_iectrl_range(0, 2);
|
||||
sg_set_iectrl_range(6, 17);
|
||||
|
||||
return 0;
|
||||
}
|
@ -22,5 +22,7 @@ int uniphier_sld3_early_pin_init(const struct uniphier_board_data *bd)
|
||||
sg_set_pinsel(102, 2, 4, 4); /* TXD2 */
|
||||
#endif
|
||||
|
||||
sg_set_pinsel(99, 1, 4, 4); /* GPIO26 -> EA24 */
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -37,7 +37,6 @@ int uniphier_ld20_init(const struct uniphier_board_data *bd);
|
||||
#if defined(CONFIG_MICRO_SUPPORT_CARD)
|
||||
int uniphier_sbc_init_admulti(const struct uniphier_board_data *bd);
|
||||
int uniphier_sbc_init_savepin(const struct uniphier_board_data *bd);
|
||||
int uniphier_sld3_sbc_init(const struct uniphier_board_data *bd);
|
||||
int uniphier_ld4_sbc_init(const struct uniphier_board_data *bd);
|
||||
int uniphier_pxs2_sbc_init(const struct uniphier_board_data *bd);
|
||||
#else
|
||||
@ -53,11 +52,6 @@ static inline int uniphier_sbc_init_savepin(
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline int uniphier_sld3_sbc_init(const struct uniphier_board_data *bd)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline int uniphier_ld4_sbc_init(const struct uniphier_board_data *bd)
|
||||
{
|
||||
return 0;
|
||||
@ -90,6 +84,7 @@ int uniphier_pxs2_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);
|
||||
int uniphier_ld20_early_pin_init(const struct uniphier_board_data *bd);
|
||||
|
||||
int uniphier_ld4_umc_init(const struct uniphier_board_data *bd);
|
||||
int uniphier_pro4_umc_init(const struct uniphier_board_data *bd);
|
||||
|
@ -13,6 +13,8 @@
|
||||
int uniphier_ld20_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();
|
||||
|
||||
|
@ -15,7 +15,8 @@ int uniphier_sld3_init(const struct uniphier_board_data *bd)
|
||||
uniphier_sld3_bcu_init(bd);
|
||||
|
||||
uniphier_sbc_init_admulti(bd);
|
||||
uniphier_sld3_sbc_init(bd);
|
||||
|
||||
uniphier_sld3_early_pin_init(bd);
|
||||
|
||||
support_card_reset();
|
||||
|
||||
@ -34,8 +35,6 @@ int uniphier_sld3_init(const struct uniphier_board_data *bd)
|
||||
|
||||
led_puts("L2");
|
||||
|
||||
uniphier_sld3_early_pin_init(bd);
|
||||
|
||||
led_puts("L3");
|
||||
|
||||
#ifdef CONFIG_SPL_SERIAL_SUPPORT
|
||||
|
@ -2,11 +2,11 @@
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
|
||||
obj-$(CONFIG_ARCH_UNIPHIER_SLD3) += sbc-admulti.o sbc-sld3.o
|
||||
obj-$(CONFIG_ARCH_UNIPHIER_SLD3) += sbc-admulti.o
|
||||
obj-$(CONFIG_ARCH_UNIPHIER_LD4) += sbc-savepin.o sbc-ld4.o
|
||||
obj-$(CONFIG_ARCH_UNIPHIER_PRO4) += sbc-savepin.o
|
||||
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_LD20) += sbc-savepin.o
|
||||
obj-$(CONFIG_ARCH_UNIPHIER_LD20) += sbc-savepin.o sbc-pxs2.o
|
||||
|
@ -1,17 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2011-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include <linux/io.h>
|
||||
|
||||
#include "../init.h"
|
||||
#include "../sg-regs.h"
|
||||
|
||||
int uniphier_sld3_sbc_init(const struct uniphier_board_data *bd)
|
||||
{
|
||||
sg_set_pinsel(99, 1, 4, 4); /* GPIO26 -> EA24 */
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user