2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-02-05 05:42:54 +00:00
|
|
|
/*
|
2016-09-13 16:06:08 +00:00
|
|
|
* Copyright (C) 2012-2015 Panasonic Corporation
|
|
|
|
* Copyright (C) 2015-2016 Socionext Inc.
|
|
|
|
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
2015-02-05 05:42:54 +00:00
|
|
|
*/
|
|
|
|
|
2017-11-29 06:01:22 +00:00
|
|
|
#include <linux/errno.h>
|
2016-06-29 10:39:03 +00:00
|
|
|
#include <linux/io.h>
|
2017-11-29 06:01:22 +00:00
|
|
|
#include <linux/printk.h>
|
2016-06-29 10:39:03 +00:00
|
|
|
|
2016-01-08 16:51:13 +00:00
|
|
|
#include "init.h"
|
|
|
|
#include "micro-support-card.h"
|
|
|
|
#include "soc-info.h"
|
2015-02-05 05:42:54 +00:00
|
|
|
|
2017-01-15 05:59:08 +00:00
|
|
|
#ifdef CONFIG_ARCH_UNIPHIER_LD20
|
|
|
|
static void uniphier_ld20_misc_init(void)
|
2015-02-05 05:42:54 +00:00
|
|
|
{
|
2017-01-15 05:59:08 +00:00
|
|
|
/* ES1 errata: increase VDD09 supply to suppress VBO noise */
|
|
|
|
if (uniphier_get_soc_revision() == 1) {
|
|
|
|
writel(0x00000003, 0x6184e004);
|
|
|
|
writel(0x00000100, 0x6184e040);
|
|
|
|
writel(0x0000b500, 0x6184e024);
|
|
|
|
writel(0x00000001, 0x6184e000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct uniphier_initdata {
|
2017-01-21 09:05:26 +00:00
|
|
|
unsigned int soc_id;
|
2017-01-15 05:59:10 +00:00
|
|
|
void (*sbc_init)(void);
|
2017-01-15 05:59:08 +00:00
|
|
|
void (*pll_init)(void);
|
|
|
|
void (*clk_init)(void);
|
|
|
|
void (*misc_init)(void);
|
|
|
|
};
|
2015-02-05 05:42:54 +00:00
|
|
|
|
2017-01-21 09:05:21 +00:00
|
|
|
static const struct uniphier_initdata uniphier_initdata[] = {
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_LD4)
|
2017-01-15 05:59:08 +00:00
|
|
|
{
|
2017-01-21 09:05:26 +00:00
|
|
|
.soc_id = UNIPHIER_LD4_ID,
|
2017-01-15 05:59:10 +00:00
|
|
|
.sbc_init = uniphier_ld4_sbc_init,
|
2017-01-15 05:59:08 +00:00
|
|
|
.pll_init = uniphier_ld4_pll_init,
|
|
|
|
.clk_init = uniphier_ld4_clk_init,
|
|
|
|
},
|
2015-09-21 15:27:39 +00:00
|
|
|
#endif
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_PRO4)
|
2017-01-15 05:59:08 +00:00
|
|
|
{
|
2017-01-21 09:05:26 +00:00
|
|
|
.soc_id = UNIPHIER_PRO4_ID,
|
2017-01-15 05:59:10 +00:00
|
|
|
.sbc_init = uniphier_sbc_init_savepin,
|
2017-01-15 05:59:08 +00:00
|
|
|
.pll_init = uniphier_pro4_pll_init,
|
|
|
|
.clk_init = uniphier_pro4_clk_init,
|
|
|
|
},
|
2015-09-21 15:27:39 +00:00
|
|
|
#endif
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_SLD8)
|
2017-01-15 05:59:08 +00:00
|
|
|
{
|
2017-01-21 09:05:26 +00:00
|
|
|
.soc_id = UNIPHIER_SLD8_ID,
|
2017-01-15 05:59:10 +00:00
|
|
|
.sbc_init = uniphier_ld4_sbc_init,
|
2017-01-15 05:59:08 +00:00
|
|
|
.pll_init = uniphier_ld4_pll_init,
|
|
|
|
.clk_init = uniphier_ld4_clk_init,
|
|
|
|
},
|
2015-09-21 15:27:40 +00:00
|
|
|
#endif
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_PRO5)
|
2017-01-15 05:59:08 +00:00
|
|
|
{
|
2017-01-21 09:05:26 +00:00
|
|
|
.soc_id = UNIPHIER_PRO5_ID,
|
2017-01-15 05:59:10 +00:00
|
|
|
.sbc_init = uniphier_sbc_init_savepin,
|
2017-01-15 05:59:08 +00:00
|
|
|
.clk_init = uniphier_pro5_clk_init,
|
|
|
|
},
|
2015-09-21 15:27:41 +00:00
|
|
|
#endif
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_PXS2)
|
2017-01-15 05:59:08 +00:00
|
|
|
{
|
2017-01-21 09:05:26 +00:00
|
|
|
.soc_id = UNIPHIER_PXS2_ID,
|
2017-01-15 05:59:10 +00:00
|
|
|
.sbc_init = uniphier_pxs2_sbc_init,
|
2017-01-15 05:59:08 +00:00
|
|
|
.clk_init = uniphier_pxs2_clk_init,
|
|
|
|
},
|
2015-09-21 15:27:41 +00:00
|
|
|
#endif
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_LD6B)
|
2017-01-15 05:59:08 +00:00
|
|
|
{
|
2017-01-21 09:05:26 +00:00
|
|
|
.soc_id = UNIPHIER_LD6B_ID,
|
2017-01-15 05:59:10 +00:00
|
|
|
.sbc_init = uniphier_pxs2_sbc_init,
|
2017-01-15 05:59:08 +00:00
|
|
|
.clk_init = uniphier_pxs2_clk_init,
|
|
|
|
},
|
2016-04-21 05:43:18 +00:00
|
|
|
#endif
|
2016-05-24 12:14:01 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_LD11)
|
2017-01-15 05:59:08 +00:00
|
|
|
{
|
2017-01-21 09:05:26 +00:00
|
|
|
.soc_id = UNIPHIER_LD11_ID,
|
2017-01-15 05:59:10 +00:00
|
|
|
.sbc_init = uniphier_ld11_sbc_init,
|
2017-01-15 05:59:08 +00:00
|
|
|
.pll_init = uniphier_ld11_pll_init,
|
|
|
|
.clk_init = uniphier_ld11_clk_init,
|
|
|
|
},
|
2016-05-24 12:14:01 +00:00
|
|
|
#endif
|
2016-04-21 05:43:18 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_LD20)
|
2017-01-15 05:59:08 +00:00
|
|
|
{
|
2017-01-21 09:05:26 +00:00
|
|
|
.soc_id = UNIPHIER_LD20_ID,
|
2017-01-15 05:59:10 +00:00
|
|
|
.sbc_init = uniphier_ld11_sbc_init,
|
2017-01-15 05:59:08 +00:00
|
|
|
.pll_init = uniphier_ld20_pll_init,
|
2017-02-17 07:17:22 +00:00
|
|
|
.clk_init = uniphier_ld20_clk_init,
|
2017-01-15 05:59:08 +00:00
|
|
|
.misc_init = uniphier_ld20_misc_init,
|
|
|
|
},
|
2015-09-21 15:27:39 +00:00
|
|
|
#endif
|
2017-01-21 09:05:31 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_PXS3)
|
|
|
|
{
|
|
|
|
.soc_id = UNIPHIER_PXS3_ID,
|
|
|
|
.sbc_init = uniphier_pxs2_sbc_init,
|
|
|
|
.pll_init = uniphier_pxs3_pll_init,
|
2017-05-15 05:26:33 +00:00
|
|
|
.clk_init = uniphier_pxs3_clk_init,
|
2017-01-21 09:05:31 +00:00
|
|
|
},
|
|
|
|
#endif
|
2017-01-15 05:59:08 +00:00
|
|
|
};
|
2017-01-21 09:05:27 +00:00
|
|
|
UNIPHIER_DEFINE_SOCDATA_FUNC(uniphier_get_initdata, uniphier_initdata)
|
2017-01-15 05:59:08 +00:00
|
|
|
|
|
|
|
int board_init(void)
|
|
|
|
{
|
2017-01-21 09:05:21 +00:00
|
|
|
const struct uniphier_initdata *initdata;
|
2017-01-15 05:59:08 +00:00
|
|
|
|
|
|
|
led_puts("U0");
|
|
|
|
|
2017-01-21 09:05:27 +00:00
|
|
|
initdata = uniphier_get_initdata();
|
2017-01-15 05:59:08 +00:00
|
|
|
if (!initdata) {
|
2017-01-21 09:05:27 +00:00
|
|
|
pr_err("unsupported SoC\n");
|
2017-01-15 05:59:08 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2017-01-15 05:59:10 +00:00
|
|
|
initdata->sbc_init();
|
|
|
|
|
|
|
|
support_card_init();
|
|
|
|
|
|
|
|
led_puts("U0");
|
|
|
|
|
2017-01-15 05:59:08 +00:00
|
|
|
if (initdata->pll_init)
|
|
|
|
initdata->pll_init();
|
2016-06-29 10:39:03 +00:00
|
|
|
|
2017-08-26 08:58:03 +00:00
|
|
|
led_puts("U1");
|
2015-02-26 17:26:51 +00:00
|
|
|
|
2017-01-15 05:59:08 +00:00
|
|
|
if (initdata->clk_init)
|
|
|
|
initdata->clk_init();
|
2016-09-13 16:06:08 +00:00
|
|
|
|
2017-08-26 08:58:03 +00:00
|
|
|
led_puts("U2");
|
2016-09-13 16:06:08 +00:00
|
|
|
|
2017-01-15 05:59:08 +00:00
|
|
|
if (initdata->misc_init)
|
|
|
|
initdata->misc_init();
|
|
|
|
|
2017-08-26 08:58:03 +00:00
|
|
|
led_puts("U3");
|
2017-01-15 05:59:08 +00:00
|
|
|
|
|
|
|
support_card_late_init();
|
|
|
|
|
2016-09-13 16:06:08 +00:00
|
|
|
led_puts("Uboo");
|
|
|
|
|
2015-02-05 05:42:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|