2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-09-21 15:27:39 +00:00
|
|
|
/*
|
2016-07-22 04:38:32 +00:00
|
|
|
* Copyright (C) 2015-2016 Socionext Inc.
|
|
|
|
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
2015-09-21 15:27:39 +00:00
|
|
|
*/
|
|
|
|
|
2018-03-04 16:20:11 +00:00
|
|
|
#include <linux/libfdt.h>
|
2015-09-21 15:27:39 +00:00
|
|
|
#include <linux/kernel.h>
|
2020-05-20 03:31:27 +00:00
|
|
|
#include <asm/global_data.h>
|
2016-01-08 16:51:13 +00:00
|
|
|
|
|
|
|
#include "init.h"
|
2015-09-21 15:27:39 +00:00
|
|
|
|
2015-12-17 08:47:42 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_LD4)
|
2016-03-30 11:17:02 +00:00
|
|
|
static const struct uniphier_board_data uniphier_ld4_data = {
|
2016-02-26 05:21:34 +00:00
|
|
|
.dram_freq = 1600,
|
|
|
|
.dram_ch[0] = {
|
|
|
|
.size = 0x10000000,
|
|
|
|
.width = 16,
|
|
|
|
},
|
|
|
|
.dram_ch[1] = {
|
|
|
|
.size = 0x10000000,
|
|
|
|
.width = 16,
|
|
|
|
},
|
2016-07-22 04:38:32 +00:00
|
|
|
.flags = UNIPHIER_BD_DDR3PLUS,
|
2015-09-21 15:27:39 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_PRO4)
|
2016-02-12 11:27:02 +00:00
|
|
|
/* 1GB RAM board */
|
2016-03-30 11:17:02 +00:00
|
|
|
static const struct uniphier_board_data uniphier_pro4_data = {
|
2016-02-26 05:21:34 +00:00
|
|
|
.dram_freq = 1600,
|
|
|
|
.dram_ch[0] = {
|
|
|
|
.size = 0x20000000,
|
|
|
|
.width = 32,
|
|
|
|
},
|
|
|
|
.dram_ch[1] = {
|
|
|
|
.size = 0x20000000,
|
|
|
|
.width = 32,
|
|
|
|
},
|
2015-09-21 15:27:39 +00:00
|
|
|
};
|
2016-02-12 11:27:02 +00:00
|
|
|
|
|
|
|
/* 2GB RAM board */
|
2016-03-30 11:17:02 +00:00
|
|
|
static const struct uniphier_board_data uniphier_pro4_2g_data = {
|
2016-02-26 05:21:34 +00:00
|
|
|
.dram_freq = 1600,
|
|
|
|
.dram_ch[0] = {
|
|
|
|
.size = 0x40000000,
|
|
|
|
.width = 32,
|
|
|
|
},
|
|
|
|
.dram_ch[1] = {
|
|
|
|
.size = 0x40000000,
|
|
|
|
.width = 32,
|
|
|
|
},
|
2016-02-12 11:27:02 +00:00
|
|
|
};
|
2015-09-21 15:27:39 +00:00
|
|
|
#endif
|
|
|
|
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_SLD8)
|
2016-03-30 11:17:02 +00:00
|
|
|
static const struct uniphier_board_data uniphier_sld8_data = {
|
2016-02-26 05:21:34 +00:00
|
|
|
.dram_freq = 1333,
|
|
|
|
.dram_ch[0] = {
|
|
|
|
.size = 0x10000000,
|
|
|
|
.width = 16,
|
|
|
|
},
|
|
|
|
.dram_ch[1] = {
|
|
|
|
.size = 0x10000000,
|
|
|
|
.width = 16,
|
|
|
|
},
|
2016-07-22 04:38:32 +00:00
|
|
|
.flags = UNIPHIER_BD_DDR3PLUS,
|
2015-09-21 15:27:39 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_PRO5)
|
2016-03-30 11:17:02 +00:00
|
|
|
static const struct uniphier_board_data uniphier_pro5_data = {
|
2016-02-26 05:21:34 +00:00
|
|
|
.dram_freq = 1866,
|
|
|
|
.dram_ch[0] = {
|
|
|
|
.size = 0x20000000,
|
|
|
|
.width = 32,
|
|
|
|
},
|
|
|
|
.dram_ch[1] = {
|
|
|
|
.size = 0x20000000,
|
|
|
|
.width = 32,
|
|
|
|
},
|
2015-09-21 15:27:40 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_PXS2)
|
2016-03-30 11:17:02 +00:00
|
|
|
static const struct uniphier_board_data uniphier_pxs2_data = {
|
2016-02-26 05:21:34 +00:00
|
|
|
.dram_freq = 2133,
|
|
|
|
.dram_ch[0] = {
|
|
|
|
.size = 0x40000000,
|
|
|
|
.width = 32,
|
|
|
|
},
|
|
|
|
.dram_ch[1] = {
|
|
|
|
.size = 0x20000000,
|
|
|
|
.width = 32,
|
|
|
|
},
|
|
|
|
.dram_ch[2] = {
|
|
|
|
.size = 0x20000000,
|
|
|
|
.width = 16,
|
|
|
|
},
|
2015-12-17 08:47:43 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_LD6B)
|
2016-03-30 11:17:02 +00:00
|
|
|
static const struct uniphier_board_data uniphier_ld6b_data = {
|
2016-02-26 05:21:34 +00:00
|
|
|
.dram_freq = 1866,
|
|
|
|
.dram_ch[0] = {
|
|
|
|
.size = 0x40000000,
|
|
|
|
.width = 32,
|
|
|
|
},
|
|
|
|
.dram_ch[1] = {
|
|
|
|
.size = 0x20000000,
|
|
|
|
.width = 32,
|
|
|
|
},
|
|
|
|
.dram_ch[2] = {
|
|
|
|
.size = 0x20000000,
|
|
|
|
.width = 16,
|
|
|
|
},
|
2015-09-21 15:27:41 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2015-09-21 15:27:39 +00:00
|
|
|
struct uniphier_board_id {
|
|
|
|
const char *compatible;
|
|
|
|
const struct uniphier_board_data *param;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct uniphier_board_id uniphier_boards[] = {
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_LD4)
|
2016-10-07 07:43:00 +00:00
|
|
|
{ "socionext,uniphier-ld4", &uniphier_ld4_data, },
|
2015-09-21 15:27:39 +00:00
|
|
|
#endif
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_PRO4)
|
2016-10-07 07:43:00 +00:00
|
|
|
{ "socionext,uniphier-pro4-ace", &uniphier_pro4_2g_data, },
|
|
|
|
{ "socionext,uniphier-pro4-sanji", &uniphier_pro4_2g_data, },
|
|
|
|
{ "socionext,uniphier-pro4", &uniphier_pro4_data, },
|
2015-09-21 15:27:39 +00:00
|
|
|
#endif
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_SLD8)
|
2016-10-07 07:43:00 +00:00
|
|
|
{ "socionext,uniphier-sld8", &uniphier_sld8_data, },
|
2015-09-21 15:27:39 +00:00
|
|
|
#endif
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_PRO5)
|
2016-10-07 07:43:00 +00:00
|
|
|
{ "socionext,uniphier-pro5", &uniphier_pro5_data, },
|
2015-09-21 15:27:40 +00:00
|
|
|
#endif
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_PXS2)
|
2016-10-07 07:43:00 +00:00
|
|
|
{ "socionext,uniphier-pxs2", &uniphier_pxs2_data, },
|
2015-09-21 15:27:41 +00:00
|
|
|
#endif
|
2016-03-18 07:41:43 +00:00
|
|
|
#if defined(CONFIG_ARCH_UNIPHIER_LD6B)
|
2016-10-07 07:43:00 +00:00
|
|
|
{ "socionext,uniphier-ld6b", &uniphier_ld6b_data, },
|
2015-09-21 15:27:41 +00:00
|
|
|
#endif
|
2015-09-21 15:27:39 +00:00
|
|
|
};
|
|
|
|
|
2015-12-17 08:47:42 +00:00
|
|
|
const struct uniphier_board_data *uniphier_get_board_param(void)
|
2015-09-21 15:27:39 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(uniphier_boards); i++) {
|
2015-12-17 08:47:42 +00:00
|
|
|
if (!fdt_node_check_compatible(gd->fdt_blob, 0,
|
2015-09-21 15:27:39 +00:00
|
|
|
uniphier_boards[i].compatible))
|
|
|
|
return uniphier_boards[i].param;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|