]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-uniphier/dram_init.c
board_f: Drop setup_dram_config() wrapper
[people/ms/u-boot.git] / arch / arm / mach-uniphier / dram_init.c
CommitLineData
5894ca00 1/*
3e9952be
MY
2 * Copyright (C) 2012-2015 Panasonic Corporation
3 * Copyright (C) 2015-2017 Socionext Inc.
4 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
5894ca00
MY
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
7b3a032d 10#include <fdtdec.h>
0f4ec05b 11#include <linux/errno.h>
3e9952be 12#include <linux/sizes.h>
cf88affa 13
3e9952be 14#include "sg-regs.h"
51ea5a06
MY
15#include "soc-info.h"
16
04cd4e72
MY
17#define pr_warn(fmt, args...) printf(fmt, ##args)
18#define pr_err(fmt, args...) printf(fmt, ##args)
19
cf88affa
MY
20DECLARE_GLOBAL_DATA_PTR;
21
3e9952be
MY
22struct uniphier_memif_data {
23 unsigned int soc_id;
24 unsigned long sparse_ch1_base;
25 int have_ch2;
26};
27
28static const struct uniphier_memif_data uniphier_memif_data[] = {
29 {
30 .soc_id = UNIPHIER_SLD3_ID,
31 .sparse_ch1_base = 0xc0000000,
32 /*
33 * In fact, SLD3 has DRAM ch2, but the memory regions for ch1
34 * and ch2 overlap, and host cannot get access to them at the
35 * same time. Hide the ch2 from U-Boot.
36 */
37 },
38 {
39 .soc_id = UNIPHIER_LD4_ID,
40 .sparse_ch1_base = 0xc0000000,
41 },
42 {
43 .soc_id = UNIPHIER_PRO4_ID,
44 .sparse_ch1_base = 0xa0000000,
45 },
46 {
47 .soc_id = UNIPHIER_SLD8_ID,
48 .sparse_ch1_base = 0xc0000000,
49 },
50 {
51 .soc_id = UNIPHIER_PRO5_ID,
52 .sparse_ch1_base = 0xc0000000,
53 },
54 {
55 .soc_id = UNIPHIER_PXS2_ID,
56 .sparse_ch1_base = 0xc0000000,
57 .have_ch2 = 1,
58 },
59 {
60 .soc_id = UNIPHIER_LD6B_ID,
61 .sparse_ch1_base = 0xc0000000,
62 .have_ch2 = 1,
63 },
64 {
65 .soc_id = UNIPHIER_LD11_ID,
66 .sparse_ch1_base = 0xc0000000,
67 },
68 {
69 .soc_id = UNIPHIER_LD20_ID,
70 .sparse_ch1_base = 0xc0000000,
71 .have_ch2 = 1,
72 },
73 {
74 .soc_id = UNIPHIER_PXS3_ID,
75 .sparse_ch1_base = 0xc0000000,
76 .have_ch2 = 1,
77 },
78};
79UNIPHIER_DEFINE_SOCDATA_FUNC(uniphier_get_memif_data, uniphier_memif_data)
80
04cd4e72
MY
81struct uniphier_dram_map {
82 unsigned long base;
83 unsigned long size;
84};
85
86static int uniphier_memconf_decode(struct uniphier_dram_map *dram_map)
cf88affa 87{
3e9952be
MY
88 const struct uniphier_memif_data *data;
89 unsigned long size;
90 u32 val;
cf88affa 91
3e9952be
MY
92 data = uniphier_get_memif_data();
93 if (!data) {
94 pr_err("unsupported SoC\n");
95 return -EINVAL;
96 }
cf88affa 97
3e9952be 98 val = readl(SG_MEMCONF);
5894ca00 99
3e9952be 100 /* set up ch0 */
04cd4e72 101 dram_map[0].base = CONFIG_SYS_SDRAM_BASE;
3e9952be
MY
102
103 switch (val & SG_MEMCONF_CH0_SZ_MASK) {
104 case SG_MEMCONF_CH0_SZ_64M:
105 size = SZ_64M;
106 break;
107 case SG_MEMCONF_CH0_SZ_128M:
108 size = SZ_128M;
109 break;
110 case SG_MEMCONF_CH0_SZ_256M:
111 size = SZ_256M;
112 break;
113 case SG_MEMCONF_CH0_SZ_512M:
114 size = SZ_512M;
115 break;
116 case SG_MEMCONF_CH0_SZ_1G:
117 size = SZ_1G;
118 break;
119 default:
0f5bf09c 120 pr_err("error: invalid value is set to MEMCONF ch0 size\n");
cf88affa 121 return -EINVAL;
ac2a1030
MY
122 }
123
3e9952be
MY
124 if ((val & SG_MEMCONF_CH0_NUM_MASK) == SG_MEMCONF_CH0_NUM_2)
125 size *= 2;
126
04cd4e72 127 dram_map[0].size = size;
3e9952be
MY
128
129 /* set up ch1 */
04cd4e72 130 dram_map[1].base = dram_map[0].base + size;
3e9952be
MY
131
132 if (val & SG_MEMCONF_SPARSEMEM) {
04cd4e72 133 if (dram_map[1].base > data->sparse_ch1_base) {
3e9952be
MY
134 pr_warn("Sparse mem is enabled, but ch0 and ch1 overlap\n");
135 pr_warn("Only ch0 is available\n");
04cd4e72 136 dram_map[1].base = 0;
3e9952be
MY
137 return 0;
138 }
139
04cd4e72 140 dram_map[1].base = data->sparse_ch1_base;
3e9952be
MY
141 }
142
143 switch (val & SG_MEMCONF_CH1_SZ_MASK) {
144 case SG_MEMCONF_CH1_SZ_64M:
145 size = SZ_64M;
146 break;
147 case SG_MEMCONF_CH1_SZ_128M:
148 size = SZ_128M;
149 break;
150 case SG_MEMCONF_CH1_SZ_256M:
151 size = SZ_256M;
152 break;
153 case SG_MEMCONF_CH1_SZ_512M:
154 size = SZ_512M;
155 break;
156 case SG_MEMCONF_CH1_SZ_1G:
157 size = SZ_1G;
158 break;
159 default:
0f5bf09c 160 pr_err("error: invalid value is set to MEMCONF ch1 size\n");
ac2a1030 161 return -EINVAL;
3e9952be
MY
162 }
163
164 if ((val & SG_MEMCONF_CH1_NUM_MASK) == SG_MEMCONF_CH1_NUM_2)
165 size *= 2;
ac2a1030 166
04cd4e72 167 dram_map[1].size = size;
cf88affa 168
bed1624d 169 if (!data->have_ch2 || val & SG_MEMCONF_CH2_DISABLE)
3e9952be 170 return 0;
cf88affa 171
3e9952be 172 /* set up ch2 */
04cd4e72 173 dram_map[2].base = dram_map[1].base + size;
3e9952be
MY
174
175 switch (val & SG_MEMCONF_CH2_SZ_MASK) {
176 case SG_MEMCONF_CH2_SZ_64M:
177 size = SZ_64M;
178 break;
179 case SG_MEMCONF_CH2_SZ_128M:
180 size = SZ_128M;
181 break;
182 case SG_MEMCONF_CH2_SZ_256M:
183 size = SZ_256M;
184 break;
185 case SG_MEMCONF_CH2_SZ_512M:
186 size = SZ_512M;
187 break;
188 case SG_MEMCONF_CH2_SZ_1G:
189 size = SZ_1G;
190 break;
191 default:
0f5bf09c 192 pr_err("error: invalid value is set to MEMCONF ch2 size\n");
3e9952be
MY
193 return -EINVAL;
194 }
195
196 if ((val & SG_MEMCONF_CH2_NUM_MASK) == SG_MEMCONF_CH2_NUM_2)
197 size *= 2;
198
04cd4e72 199 dram_map[2].size = size;
5894ca00 200
5894ca00
MY
201 return 0;
202}
cf88affa 203
3e9952be 204int dram_init(void)
cf88affa 205{
04cd4e72 206 struct uniphier_dram_map dram_map[3] = {};
3e9952be
MY
207 int ret, i;
208
209 gd->ram_size = 0;
210
04cd4e72 211 ret = uniphier_memconf_decode(dram_map);
3e9952be
MY
212 if (ret)
213 return ret;
214
04cd4e72 215 for (i = 0; i < ARRAY_SIZE(dram_map); i++) {
3e9952be 216
04cd4e72 217 if (!dram_map[i].size)
3e9952be
MY
218 break;
219
220 /*
221 * U-Boot relocates itself to the tail of the memory region,
222 * but it does not expect sparse memory. We use the first
223 * contiguous chunk here.
224 */
04cd4e72
MY
225 if (i > 0 && dram_map[i - 1].base + dram_map[i - 1].size <
226 dram_map[i].base)
3e9952be
MY
227 break;
228
04cd4e72 229 gd->ram_size += dram_map[i].size;
ac2a1030
MY
230 }
231
3e9952be
MY
232 return 0;
233}
234
76b00aca 235int dram_init_banksize(void)
3e9952be 236{
04cd4e72 237 struct uniphier_dram_map dram_map[3] = {};
3e9952be 238 int i;
ac2a1030 239
04cd4e72 240 uniphier_memconf_decode(dram_map);
cf88affa 241
04cd4e72 242 for (i = 0; i < ARRAY_SIZE(dram_map); i++) {
3e9952be
MY
243 if (i >= ARRAY_SIZE(gd->bd->bi_dram))
244 break;
cf88affa 245
04cd4e72
MY
246 gd->bd->bi_dram[i].start = dram_map[i].base;
247 gd->bd->bi_dram[i].size = dram_map[i].size;
cf88affa 248 }
76b00aca
SG
249
250 return 0;
cf88affa 251}
51ea5a06
MY
252
253#ifdef CONFIG_OF_BOARD_SETUP
254/*
255 * The DRAM PHY requires 64 byte scratch area in each DRAM channel
256 * for its dynamic PHY training feature.
257 */
258int ft_board_setup(void *fdt, bd_t *bd)
259{
51ea5a06
MY
260 unsigned long rsv_addr;
261 const unsigned long rsv_size = 64;
c995f3a3 262 int i, ret;
51ea5a06 263
e27d6c7d 264 if (uniphier_get_soc_id() != UNIPHIER_LD20_ID)
51ea5a06
MY
265 return 0;
266
c995f3a3 267 for (i = 0; i < ARRAY_SIZE(gd->bd->bi_dram); i++) {
87c3308c
MY
268 if (!gd->bd->bi_dram[i].size)
269 continue;
270
c995f3a3 271 rsv_addr = gd->bd->bi_dram[i].start + gd->bd->bi_dram[i].size;
51ea5a06
MY
272 rsv_addr -= rsv_size;
273
274 ret = fdt_add_mem_rsv(fdt, rsv_addr, rsv_size);
275 if (ret)
276 return -ENOSPC;
277
278 printf(" Reserved memory region for DRAM PHY training: addr=%lx size=%lx\n",
279 rsv_addr, rsv_size);
280 }
281
282 return 0;
283}
284#endif