]> Git Repo - J-u-boot.git/blame - arch/arm/mach-mvebu/dram.c
common: Drop asm/global_data.h from common header
[J-u-boot.git] / arch / arm / mach-mvebu / dram.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
4efb77d4
PW
2/*
3 * (C) Copyright 2009
4 * Marvell Semiconductor <www.marvell.com>
5 * Written-by: Prafulla Wadaskar <[email protected]>
4efb77d4
PW
6 */
7
8#include <config.h>
beeb2589 9#include <common.h>
9b4a205f 10#include <init.h>
401d1c4f 11#include <asm/global_data.h>
a7efd719
LW
12#include <asm/io.h>
13#include <asm/arch/cpu.h>
3dc23f78 14#include <asm/arch/soc.h>
4efb77d4 15
81e33f4b
SR
16#if defined(CONFIG_ARCH_MVEBU)
17/* Use common XOR definitions for A3x and AXP */
0ceb2dae
SR
18#include "../../../drivers/ddr/marvell/axp/xor.h"
19#include "../../../drivers/ddr/marvell/axp/xor_regs.h"
8a83c65f
SR
20#endif
21
beeb2589
PW
22DECLARE_GLOBAL_DATA_PTR;
23
96c5f081 24struct sdram_bank {
cf37c5d9
HB
25 u32 win_bar;
26 u32 win_sz;
27};
28
96c5f081
SR
29struct sdram_addr_dec {
30 struct sdram_bank sdram_bank[4];
cf37c5d9
HB
31};
32
96c5f081
SR
33#define REG_CPUCS_WIN_ENABLE (1 << 0)
34#define REG_CPUCS_WIN_WR_PROTECT (1 << 1)
35#define REG_CPUCS_WIN_WIN0_CS(x) (((x) & 0x3) << 2)
36#define REG_CPUCS_WIN_SIZE(x) (((x) & 0xff) << 24)
45515165 37
a8483505
SR
38#ifndef MVEBU_SDRAM_SIZE_MAX
39#define MVEBU_SDRAM_SIZE_MAX 0xc0000000
40#endif
a8b57a90 41
0ceb2dae
SR
42#define SCRUB_MAGIC 0xbeefdead
43
44#define SCRB_XOR_UNIT 0
45#define SCRB_XOR_CHAN 1
46#define SCRB_XOR_WIN 0
47
48#define XEBARX_BASE_OFFS 16
49
4efb77d4 50/*
96c5f081 51 * mvebu_sdram_bar - reads SDRAM Base Address Register
4efb77d4 52 */
96c5f081 53u32 mvebu_sdram_bar(enum memory_bank bank)
4efb77d4 54{
96c5f081
SR
55 struct sdram_addr_dec *base =
56 (struct sdram_addr_dec *)MVEBU_SDRAM_BASE;
4efb77d4 57 u32 result = 0;
cf37c5d9 58 u32 enable = 0x01 & readl(&base->sdram_bank[bank].win_sz);
4efb77d4
PW
59
60 if ((!enable) || (bank > BANK3))
61 return 0;
62
cf37c5d9 63 result = readl(&base->sdram_bank[bank].win_bar);
4efb77d4
PW
64 return result;
65}
66
45515165 67/*
96c5f081 68 * mvebu_sdram_bs_set - writes SDRAM Bank size
45515165 69 */
96c5f081 70static void mvebu_sdram_bs_set(enum memory_bank bank, u32 size)
45515165 71{
96c5f081
SR
72 struct sdram_addr_dec *base =
73 (struct sdram_addr_dec *)MVEBU_SDRAM_BASE;
45515165
GF
74 /* Read current register value */
75 u32 reg = readl(&base->sdram_bank[bank].win_sz);
76
77 /* Clear window size */
96c5f081 78 reg &= ~REG_CPUCS_WIN_SIZE(0xFF);
45515165
GF
79
80 /* Set new window size */
96c5f081 81 reg |= REG_CPUCS_WIN_SIZE((size - 1) >> 24);
45515165
GF
82
83 writel(reg, &base->sdram_bank[bank].win_sz);
84}
85
4efb77d4 86/*
96c5f081 87 * mvebu_sdram_bs - reads SDRAM Bank size
4efb77d4 88 */
96c5f081 89u32 mvebu_sdram_bs(enum memory_bank bank)
4efb77d4 90{
96c5f081
SR
91 struct sdram_addr_dec *base =
92 (struct sdram_addr_dec *)MVEBU_SDRAM_BASE;
4efb77d4 93 u32 result = 0;
cf37c5d9 94 u32 enable = 0x01 & readl(&base->sdram_bank[bank].win_sz);
4efb77d4
PW
95
96 if ((!enable) || (bank > BANK3))
97 return 0;
cf37c5d9 98 result = 0xff000000 & readl(&base->sdram_bank[bank].win_sz);
4efb77d4
PW
99 result += 0x01000000;
100 return result;
101}
beeb2589 102
96c5f081 103void mvebu_sdram_size_adjust(enum memory_bank bank)
b3168f4b
GF
104{
105 u32 size;
106
107 /* probe currently equipped RAM size */
96c5f081
SR
108 size = get_ram_size((void *)mvebu_sdram_bar(bank),
109 mvebu_sdram_bs(bank));
b3168f4b
GF
110
111 /* adjust SDRAM window size accordingly */
96c5f081 112 mvebu_sdram_bs_set(bank, size);
b3168f4b
GF
113}
114
81e33f4b 115#if defined(CONFIG_ARCH_MVEBU)
0ceb2dae
SR
116static u32 xor_ctrl_save;
117static u32 xor_base_save;
118static u32 xor_mask_save;
119
120static void mv_xor_init2(u32 cs)
121{
122 u32 reg, base, size, base2;
123 u32 bank_attr[4] = { 0xe00, 0xd00, 0xb00, 0x700 };
124
125 xor_ctrl_save = reg_read(XOR_WINDOW_CTRL_REG(SCRB_XOR_UNIT,
126 SCRB_XOR_CHAN));
127 xor_base_save = reg_read(XOR_BASE_ADDR_REG(SCRB_XOR_UNIT,
128 SCRB_XOR_WIN));
129 xor_mask_save = reg_read(XOR_SIZE_MASK_REG(SCRB_XOR_UNIT,
130 SCRB_XOR_WIN));
131
132 /* Enable Window x for each CS */
133 reg = 0x1;
134 reg |= (0x3 << 16);
135 reg_write(XOR_WINDOW_CTRL_REG(SCRB_XOR_UNIT, SCRB_XOR_CHAN), reg);
136
137 base = 0;
138 size = mvebu_sdram_bs(cs) - 1;
139 if (size) {
140 base2 = ((base / (64 << 10)) << XEBARX_BASE_OFFS) |
141 bank_attr[cs];
142 reg_write(XOR_BASE_ADDR_REG(SCRB_XOR_UNIT, SCRB_XOR_WIN),
143 base2);
144
145 base += size + 1;
146 size = (size / (64 << 10)) << 16;
147 /* Window x - size - 256 MB */
148 reg_write(XOR_SIZE_MASK_REG(SCRB_XOR_UNIT, SCRB_XOR_WIN), size);
149 }
150
151 mv_xor_hal_init(0);
152
153 return;
154}
155
156static void mv_xor_finish2(void)
157{
158 reg_write(XOR_WINDOW_CTRL_REG(SCRB_XOR_UNIT, SCRB_XOR_CHAN),
159 xor_ctrl_save);
160 reg_write(XOR_BASE_ADDR_REG(SCRB_XOR_UNIT, SCRB_XOR_WIN),
161 xor_base_save);
162 reg_write(XOR_SIZE_MASK_REG(SCRB_XOR_UNIT, SCRB_XOR_WIN),
163 xor_mask_save);
164}
165
166static void dram_ecc_scrubbing(void)
167{
168 int cs;
169 u32 size, temp;
170 u32 total_mem = 0;
171 u64 total;
172 u32 start_addr;
173
174 /*
175 * The DDR training code from the bin_hdr / SPL already
176 * scrubbed the DDR till 0x1000000. And the main U-Boot
177 * is loaded to an address < 0x1000000. So we need to
178 * skip this range to not re-scrub this area again.
179 */
180 temp = reg_read(REG_SDRAM_CONFIG_ADDR);
181 temp |= (1 << REG_SDRAM_CONFIG_IERR_OFFS);
182 reg_write(REG_SDRAM_CONFIG_ADDR, temp);
183
184 for (cs = 0; cs < CONFIG_NR_DRAM_BANKS; cs++) {
c3ab2744 185 size = mvebu_sdram_bs(cs);
0ceb2dae
SR
186 if (size == 0)
187 continue;
188
c3ab2744 189 total = (u64)size;
0ceb2dae
SR
190 total_mem += (u32)(total / (1 << 30));
191 start_addr = 0;
192 mv_xor_init2(cs);
193
194 /* Skip first 16 MiB */
195 if (0 == cs) {
196 start_addr = 0x1000000;
197 size -= start_addr;
198 }
199
c3ab2744 200 mv_xor_mem_init(SCRB_XOR_CHAN, start_addr, size - 1,
0ceb2dae
SR
201 SCRUB_MAGIC, SCRUB_MAGIC);
202
203 /* Wait for previous transfer completion */
204 while (mv_xor_state_get(SCRB_XOR_CHAN) != MV_IDLE)
205 ;
206
207 mv_xor_finish2();
208 }
209
210 temp = reg_read(REG_SDRAM_CONFIG_ADDR);
211 temp &= ~(1 << REG_SDRAM_CONFIG_IERR_OFFS);
212 reg_write(REG_SDRAM_CONFIG_ADDR, temp);
213}
214
215static int ecc_enabled(void)
216{
217 if (reg_read(REG_SDRAM_CONFIG_ADDR) & (1 << REG_SDRAM_CONFIG_ECC_OFFS))
218 return 1;
219
220 return 0;
221}
631407c5
JS
222
223/* Return the width of the DRAM bus, or 0 for unknown. */
224static int bus_width(void)
225{
226 int full_width = 0;
227
228 if (reg_read(REG_SDRAM_CONFIG_ADDR) & (1 << REG_SDRAM_CONFIG_WIDTH_OFFS))
229 full_width = 1;
230
231 switch (mvebu_soc_family()) {
232 case MVEBU_SOC_AXP:
233 return full_width ? 64 : 32;
234 break;
235 case MVEBU_SOC_A375:
236 case MVEBU_SOC_A38X:
237 case MVEBU_SOC_MSYS:
238 return full_width ? 32 : 16;
239 default:
240 return 0;
241 }
242}
243
244static int cycle_mode(void)
245{
246 int val = reg_read(REG_DUNIT_CTRL_LOW_ADDR);
247
248 return (val >> REG_DUNIT_CTRL_LOW_2T_OFFS) & REG_DUNIT_CTRL_LOW_2T_MASK;
249}
250
0ceb2dae
SR
251#else
252static void dram_ecc_scrubbing(void)
253{
254}
255
256static int ecc_enabled(void)
257{
258 return 0;
259}
260#endif
261
beeb2589
PW
262int dram_init(void)
263{
a8b57a90 264 u64 size = 0;
beeb2589
PW
265 int i;
266
beeb2589 267 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
beeb2589
PW
268 /*
269 * It is assumed that all memory banks are consecutive
270 * and without gaps.
271 * If the gap is found, ram_size will be reported for
272 * consecutive memory only
273 */
a8b57a90 274 if (mvebu_sdram_bar(i) != size)
beeb2589
PW
275 break;
276
d80cca29
SR
277 /*
278 * Don't report more than 3GiB of SDRAM, otherwise there is no
279 * address space left for the internal registers etc.
280 */
a8b57a90 281 size += mvebu_sdram_bs(i);
a8483505
SR
282 if (size > MVEBU_SDRAM_SIZE_MAX)
283 size = MVEBU_SDRAM_SIZE_MAX;
beeb2589 284 }
28e57108 285
0ceb2dae
SR
286 if (ecc_enabled())
287 dram_ecc_scrubbing();
288
a8b57a90
SR
289 gd->ram_size = size;
290
beeb2589
PW
291 return 0;
292}
293
294/*
295 * If this function is not defined here,
296 * board.c alters dram bank zero configuration defined above.
297 */
76b00aca 298int dram_init_banksize(void)
beeb2589 299{
a8b57a90
SR
300 u64 size = 0;
301 int i;
302
303 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
304 gd->bd->bi_dram[i].start = mvebu_sdram_bar(i);
305 gd->bd->bi_dram[i].size = mvebu_sdram_bs(i);
306
307 /* Clip the banksize to 1GiB if it exceeds the max size */
308 size += gd->bd->bi_dram[i].size;
a8483505 309 if (size > MVEBU_SDRAM_SIZE_MAX)
a8b57a90
SR
310 mvebu_sdram_bs_set(i, 0x40000000);
311 }
76b00aca
SG
312
313 return 0;
beeb2589 314}
8a83c65f 315
81e33f4b 316#if defined(CONFIG_ARCH_MVEBU)
8a83c65f
SR
317void board_add_ram_info(int use_default)
318{
d718bf2c 319 struct sar_freq_modes sar_freq;
631407c5
JS
320 int mode;
321 int width;
d718bf2c
SR
322
323 get_sar_freq(&sar_freq);
324 printf(" (%d MHz, ", sar_freq.d_clk);
325
631407c5
JS
326 width = bus_width();
327 if (width)
328 printf("%d-bit, ", width);
329
330 mode = cycle_mode();
331 /* Mode 0 = Single cycle
332 * Mode 1 = Two cycles (2T)
333 * Mode 2 = Three cycles (3T)
334 */
335 if (mode == 1)
336 printf("2T, ");
337 if (mode == 2)
338 printf("3T, ");
339
0ceb2dae 340 if (ecc_enabled())
d718bf2c 341 printf("ECC");
8a83c65f 342 else
d718bf2c 343 printf("ECC not");
8a83c65f
SR
344 printf(" enabled)");
345}
d718bf2c 346#endif
This page took 0.516651 seconds and 4 git commands to generate.