1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright Altera Corporation (C) 2014-2015
9 #include <asm/arch/fpga_manager.h>
10 #include <asm/arch/sdram.h>
11 #include <asm/arch/system_manager.h>
14 struct sdram_prot_rule {
15 u32 sdram_start; /* SDRAM start address */
16 u32 sdram_end; /* SDRAM end address */
17 u32 rule; /* SDRAM protection rule number: 0-19 */
18 int valid; /* Rule valid or not? 1 - valid, 0 not*/
27 static struct socfpga_system_manager *sysmgr_regs =
28 (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS;
29 static struct socfpga_sdr_ctrl *sdr_ctrl =
30 (struct socfpga_sdr_ctrl *)SDR_CTRLGRP_ADDRESS;
33 * get_errata_rows() - Up the number of DRAM rows to cover entire address space
34 * @cfg: SDRAM controller configuration data
36 * SDRAM Failure happens when accessing non-existent memory. Artificially
37 * increase the number of rows so that the memory controller thinks it has
38 * 4GB of RAM. This function returns such amount of rows.
40 static int get_errata_rows(const struct socfpga_sdram_config *cfg)
42 /* Define constant for 4G memory - used for SDRAM errata workaround */
43 #define MEMSIZE_4G (4ULL * 1024ULL * 1024ULL * 1024ULL)
44 const unsigned long long memsize = MEMSIZE_4G;
45 const unsigned int cs =
46 ((cfg->dram_addrw & SDR_CTRLGRP_DRAMADDRW_CSBITS_MASK) >>
47 SDR_CTRLGRP_DRAMADDRW_CSBITS_LSB) + 1;
48 const unsigned int rows =
49 (cfg->dram_addrw & SDR_CTRLGRP_DRAMADDRW_ROWBITS_MASK) >>
50 SDR_CTRLGRP_DRAMADDRW_ROWBITS_LSB;
51 const unsigned int banks =
52 (cfg->dram_addrw & SDR_CTRLGRP_DRAMADDRW_BANKBITS_MASK) >>
53 SDR_CTRLGRP_DRAMADDRW_BANKBITS_LSB;
54 const unsigned int cols =
55 (cfg->dram_addrw & SDR_CTRLGRP_DRAMADDRW_COLBITS_MASK) >>
56 SDR_CTRLGRP_DRAMADDRW_COLBITS_LSB;
57 const unsigned int width = 8;
59 unsigned long long newrows;
60 int bits, inewrowslog2;
62 debug("workaround rows - memsize %lld\n", memsize);
63 debug("workaround rows - cs %d\n", cs);
64 debug("workaround rows - width %d\n", width);
65 debug("workaround rows - rows %d\n", rows);
66 debug("workaround rows - banks %d\n", banks);
67 debug("workaround rows - cols %d\n", cols);
69 newrows = lldiv(memsize, cs * (width / 8));
70 debug("rows workaround - term1 %lld\n", newrows);
72 newrows = lldiv(newrows, (1 << banks) * (1 << cols));
73 debug("rows workaround - term2 %lld\n", newrows);
76 * Compute the hamming weight - same as number of bits set.
77 * Need to see if result is ordinal power of 2 before
78 * attempting log2 of result.
80 bits = generic_hweight32(newrows);
82 debug("rows workaround - bits %d\n", bits);
85 printf("SDRAM workaround failed, bits set %d\n", bits);
89 if (newrows > UINT_MAX) {
90 printf("SDRAM workaround rangecheck failed, %lld\n", newrows);
94 inewrowslog2 = __ilog2(newrows);
96 debug("rows workaround - ilog2 %d, %lld\n", inewrowslog2, newrows);
98 if (inewrowslog2 == -1) {
99 printf("SDRAM workaround failed, newrows %lld\n", newrows);
106 /* SDRAM protection rules vary from 0-19, a total of 20 rules. */
107 static void sdram_set_rule(struct sdram_prot_rule *prule)
111 int ruleno = prule->rule;
113 /* Select the rule */
114 writel(ruleno, &sdr_ctrl->prot_rule_rdwr);
116 /* Obtain the address bits */
117 lo_addr_bits = prule->sdram_start >> 20ULL;
118 hi_addr_bits = (prule->sdram_end - 1) >> 20ULL;
120 debug("sdram set rule start %x, %d\n", lo_addr_bits,
122 debug("sdram set rule end %x, %d\n", hi_addr_bits,
125 /* Set rule addresses */
126 writel(lo_addr_bits | (hi_addr_bits << 12), &sdr_ctrl->prot_rule_addr);
128 /* Set rule protection ids */
129 writel(prule->lo_prot_id | (prule->hi_prot_id << 12),
130 &sdr_ctrl->prot_rule_id);
132 /* Set the rule data */
133 writel(prule->security | (prule->valid << 2) |
134 (prule->portmask << 3) | (prule->result << 13),
135 &sdr_ctrl->prot_rule_data);
138 writel(ruleno | (1 << 5), &sdr_ctrl->prot_rule_rdwr);
140 /* Set rule number to 0 by default */
141 writel(0, &sdr_ctrl->prot_rule_rdwr);
144 static void sdram_get_rule(struct sdram_prot_rule *prule)
149 int ruleno = prule->rule;
152 writel(ruleno, &sdr_ctrl->prot_rule_rdwr);
153 writel(ruleno | (1 << 6), &sdr_ctrl->prot_rule_rdwr);
155 /* Get the addresses */
156 addr = readl(&sdr_ctrl->prot_rule_addr);
157 prule->sdram_start = (addr & 0xFFF) << 20;
158 prule->sdram_end = ((addr >> 12) & 0xFFF) << 20;
160 /* Get the configured protection IDs */
161 id = readl(&sdr_ctrl->prot_rule_id);
162 prule->lo_prot_id = id & 0xFFF;
163 prule->hi_prot_id = (id >> 12) & 0xFFF;
165 /* Get protection data */
166 data = readl(&sdr_ctrl->prot_rule_data);
168 prule->security = data & 0x3;
169 prule->valid = (data >> 2) & 0x1;
170 prule->portmask = (data >> 3) & 0x3FF;
171 prule->result = (data >> 13) & 0x1;
175 sdram_set_protection_config(const u32 sdram_start, const u32 sdram_end)
177 struct sdram_prot_rule rule;
180 /* Start with accepting all SDRAM transaction */
181 writel(0x0, &sdr_ctrl->protport_default);
183 /* Clear all protection rules for warm boot case */
184 memset(&rule, 0, sizeof(rule));
186 for (rules = 0; rules < 20; rules++) {
188 sdram_set_rule(&rule);
191 /* new rule: accept SDRAM */
192 rule.sdram_start = sdram_start;
193 rule.sdram_end = sdram_end;
194 rule.lo_prot_id = 0x0;
195 rule.hi_prot_id = 0xFFF;
196 rule.portmask = 0x3FF;
203 sdram_set_rule(&rule);
205 /* default rule: reject everything */
206 writel(0x3ff, &sdr_ctrl->protport_default);
209 static void sdram_dump_protection_config(void)
211 struct sdram_prot_rule rule;
214 debug("SDRAM Prot rule, default %x\n",
215 readl(&sdr_ctrl->protport_default));
217 for (rules = 0; rules < 20; rules++) {
219 sdram_get_rule(&rule);
220 debug("Rule %d, rules ...\n", rules);
221 debug(" sdram start %x\n", rule.sdram_start);
222 debug(" sdram end %x\n", rule.sdram_end);
223 debug(" low prot id %d, hi prot id %d\n",
226 debug(" portmask %x\n", rule.portmask);
227 debug(" security %d\n", rule.security);
228 debug(" result %d\n", rule.result);
229 debug(" valid %d\n", rule.valid);
234 * sdram_write_verify() - write to register and verify the write.
235 * @addr: Register address
236 * @val: Value to be written and verified
238 * This function writes to a register, reads back the value and compares
239 * the result with the written value to check if the data match.
241 static unsigned sdram_write_verify(const u32 *addr, const u32 val)
245 debug(" Write - Address 0x%p Data 0x%08x\n", addr, val);
248 debug(" Read and verify...");
251 debug("FAIL - Address 0x%p Expected 0x%08x Data 0x%08x\n",
261 * sdr_get_ctrlcfg() - Get the value of DRAM CTRLCFG register
262 * @cfg: SDRAM controller configuration data
264 * Return the value of DRAM CTRLCFG register.
266 static u32 sdr_get_ctrlcfg(const struct socfpga_sdram_config *cfg)
269 ((cfg->dram_addrw & SDR_CTRLGRP_DRAMADDRW_CSBITS_MASK) >>
270 SDR_CTRLGRP_DRAMADDRW_CSBITS_LSB) + 1;
272 (cfg->ctrl_cfg & SDR_CTRLGRP_CTRLCFG_ADDRORDER_MASK) >>
273 SDR_CTRLGRP_CTRLCFG_ADDRORDER_LSB;
275 u32 ctrl_cfg = cfg->ctrl_cfg;
278 * SDRAM Failure When Accessing Non-Existent Memory
279 * Set the addrorder field of the SDRAM control register
280 * based on the CSBITs setting.
284 debug("INFO: Changing address order to 0 (chip, row, bank, column)\n");
286 } else if (csbits == 2) {
288 debug("INFO: Changing address order to 2 (row, chip, bank, column)\n");
292 ctrl_cfg &= ~SDR_CTRLGRP_CTRLCFG_ADDRORDER_MASK;
293 ctrl_cfg |= addrorder << SDR_CTRLGRP_CTRLCFG_ADDRORDER_LSB;
299 * sdr_get_addr_rw() - Get the value of DRAM ADDRW register
300 * @cfg: SDRAM controller configuration data
302 * Return the value of DRAM ADDRW register.
304 static u32 sdr_get_addr_rw(const struct socfpga_sdram_config *cfg)
307 * SDRAM Failure When Accessing Non-Existent Memory
308 * Set SDR_CTRLGRP_DRAMADDRW_CSBITS_LSB to
309 * log2(number of chip select bits). Since there's only
310 * 1 or 2 chip selects, log2(1) => 0, and log2(2) => 1,
311 * which is the same as "chip selects" - 1.
313 const int rows = get_errata_rows(cfg);
314 u32 dram_addrw = cfg->dram_addrw & ~SDR_CTRLGRP_DRAMADDRW_ROWBITS_MASK;
316 return dram_addrw | (rows << SDR_CTRLGRP_DRAMADDRW_ROWBITS_LSB);
320 * sdr_load_regs() - Load SDRAM controller registers
321 * @cfg: SDRAM controller configuration data
323 * This function loads the register values into the SDRAM controller block.
325 static void sdr_load_regs(const struct socfpga_sdram_config *cfg)
327 const u32 ctrl_cfg = sdr_get_ctrlcfg(cfg);
328 const u32 dram_addrw = sdr_get_addr_rw(cfg);
330 debug("\nConfiguring CTRLCFG\n");
331 writel(ctrl_cfg, &sdr_ctrl->ctrl_cfg);
333 debug("Configuring DRAMTIMING1\n");
334 writel(cfg->dram_timing1, &sdr_ctrl->dram_timing1);
336 debug("Configuring DRAMTIMING2\n");
337 writel(cfg->dram_timing2, &sdr_ctrl->dram_timing2);
339 debug("Configuring DRAMTIMING3\n");
340 writel(cfg->dram_timing3, &sdr_ctrl->dram_timing3);
342 debug("Configuring DRAMTIMING4\n");
343 writel(cfg->dram_timing4, &sdr_ctrl->dram_timing4);
345 debug("Configuring LOWPWRTIMING\n");
346 writel(cfg->lowpwr_timing, &sdr_ctrl->lowpwr_timing);
348 debug("Configuring DRAMADDRW\n");
349 writel(dram_addrw, &sdr_ctrl->dram_addrw);
351 debug("Configuring DRAMIFWIDTH\n");
352 writel(cfg->dram_if_width, &sdr_ctrl->dram_if_width);
354 debug("Configuring DRAMDEVWIDTH\n");
355 writel(cfg->dram_dev_width, &sdr_ctrl->dram_dev_width);
357 debug("Configuring LOWPWREQ\n");
358 writel(cfg->lowpwr_eq, &sdr_ctrl->lowpwr_eq);
360 debug("Configuring DRAMINTR\n");
361 writel(cfg->dram_intr, &sdr_ctrl->dram_intr);
363 debug("Configuring STATICCFG\n");
364 writel(cfg->static_cfg, &sdr_ctrl->static_cfg);
366 debug("Configuring CTRLWIDTH\n");
367 writel(cfg->ctrl_width, &sdr_ctrl->ctrl_width);
369 debug("Configuring PORTCFG\n");
370 writel(cfg->port_cfg, &sdr_ctrl->port_cfg);
372 debug("Configuring FIFOCFG\n");
373 writel(cfg->fifo_cfg, &sdr_ctrl->fifo_cfg);
375 debug("Configuring MPPRIORITY\n");
376 writel(cfg->mp_priority, &sdr_ctrl->mp_priority);
378 debug("Configuring MPWEIGHT_MPWEIGHT_0\n");
379 writel(cfg->mp_weight0, &sdr_ctrl->mp_weight0);
380 writel(cfg->mp_weight1, &sdr_ctrl->mp_weight1);
381 writel(cfg->mp_weight2, &sdr_ctrl->mp_weight2);
382 writel(cfg->mp_weight3, &sdr_ctrl->mp_weight3);
384 debug("Configuring MPPACING_MPPACING_0\n");
385 writel(cfg->mp_pacing0, &sdr_ctrl->mp_pacing0);
386 writel(cfg->mp_pacing1, &sdr_ctrl->mp_pacing1);
387 writel(cfg->mp_pacing2, &sdr_ctrl->mp_pacing2);
388 writel(cfg->mp_pacing3, &sdr_ctrl->mp_pacing3);
390 debug("Configuring MPTHRESHOLDRST_MPTHRESHOLDRST_0\n");
391 writel(cfg->mp_threshold0, &sdr_ctrl->mp_threshold0);
392 writel(cfg->mp_threshold1, &sdr_ctrl->mp_threshold1);
393 writel(cfg->mp_threshold2, &sdr_ctrl->mp_threshold2);
395 debug("Configuring PHYCTRL_PHYCTRL_0\n");
396 writel(cfg->phy_ctrl0, &sdr_ctrl->phy_ctrl0);
398 debug("Configuring CPORTWIDTH\n");
399 writel(cfg->cport_width, &sdr_ctrl->cport_width);
401 debug("Configuring CPORTWMAP\n");
402 writel(cfg->cport_wmap, &sdr_ctrl->cport_wmap);
404 debug("Configuring CPORTRMAP\n");
405 writel(cfg->cport_rmap, &sdr_ctrl->cport_rmap);
407 debug("Configuring RFIFOCMAP\n");
408 writel(cfg->rfifo_cmap, &sdr_ctrl->rfifo_cmap);
410 debug("Configuring WFIFOCMAP\n");
411 writel(cfg->wfifo_cmap, &sdr_ctrl->wfifo_cmap);
413 debug("Configuring CPORTRDWR\n");
414 writel(cfg->cport_rdwr, &sdr_ctrl->cport_rdwr);
416 debug("Configuring DRAMODT\n");
417 writel(cfg->dram_odt, &sdr_ctrl->dram_odt);
419 debug("Configuring EXTRATIME1\n");
420 writel(cfg->extratime1, &sdr_ctrl->extratime1);
424 * sdram_mmr_init_full() - Function to initialize SDRAM MMR
425 * @sdr_phy_reg: Value of the PHY control register 0
427 * Initialize the SDRAM MMR.
429 int sdram_mmr_init_full(unsigned int sdr_phy_reg)
431 const struct socfpga_sdram_config *cfg = socfpga_get_sdram_config();
432 const unsigned int rows =
433 (cfg->dram_addrw & SDR_CTRLGRP_DRAMADDRW_ROWBITS_MASK) >>
434 SDR_CTRLGRP_DRAMADDRW_ROWBITS_LSB;
437 writel(rows, &sysmgr_regs->iswgrp_handoff[4]);
441 /* saving this value to SYSMGR.ISWGRP.HANDOFF.FPGA2SDR */
442 writel(cfg->fpgaport_rst, &sysmgr_regs->iswgrp_handoff[3]);
444 /* only enable if the FPGA is programmed */
445 if (fpgamgr_test_fpga_ready()) {
446 ret = sdram_write_verify(&sdr_ctrl->fpgaport_rst,
452 /* Restore the SDR PHY Register if valid */
453 if (sdr_phy_reg != 0xffffffff)
454 writel(sdr_phy_reg, &sdr_ctrl->phy_ctrl0);
456 /* Final step - apply configuration changes */
457 debug("Configuring STATICCFG\n");
458 clrsetbits_le32(&sdr_ctrl->static_cfg,
459 SDR_CTRLGRP_STATICCFG_APPLYCFG_MASK,
460 1 << SDR_CTRLGRP_STATICCFG_APPLYCFG_LSB);
462 sdram_set_protection_config(0, sdram_calculate_size() - 1);
464 sdram_dump_protection_config();
470 * sdram_calculate_size() - Calculate SDRAM size
472 * Calculate SDRAM device size based on SDRAM controller parameters.
473 * Size is specified in bytes.
475 unsigned long sdram_calculate_size(void)
478 unsigned long row, bank, col, cs, width;
479 const struct socfpga_sdram_config *cfg = socfpga_get_sdram_config();
480 const unsigned int csbits =
481 ((cfg->dram_addrw & SDR_CTRLGRP_DRAMADDRW_CSBITS_MASK) >>
482 SDR_CTRLGRP_DRAMADDRW_CSBITS_LSB) + 1;
483 const unsigned int rowbits =
484 (cfg->dram_addrw & SDR_CTRLGRP_DRAMADDRW_ROWBITS_MASK) >>
485 SDR_CTRLGRP_DRAMADDRW_ROWBITS_LSB;
487 temp = readl(&sdr_ctrl->dram_addrw);
488 col = (temp & SDR_CTRLGRP_DRAMADDRW_COLBITS_MASK) >>
489 SDR_CTRLGRP_DRAMADDRW_COLBITS_LSB;
492 * SDRAM Failure When Accessing Non-Existent Memory
493 * Use ROWBITS from Quartus/QSys to calculate SDRAM size
494 * since the FB specifies we modify ROWBITs to work around SDRAM
497 row = readl(&sysmgr_regs->iswgrp_handoff[4]);
501 * If the stored handoff value for rows is greater than
502 * the field width in the sdr.dramaddrw register then
503 * something is very wrong. Revert to using the the #define
504 * value handed off by the SOCEDS tool chain instead of
505 * using a broken value.
510 bank = (temp & SDR_CTRLGRP_DRAMADDRW_BANKBITS_MASK) >>
511 SDR_CTRLGRP_DRAMADDRW_BANKBITS_LSB;
514 * SDRAM Failure When Accessing Non-Existent Memory
515 * Use CSBITs from Quartus/QSys to calculate SDRAM size
516 * since the FB specifies we modify CSBITs to work around SDRAM
521 width = readl(&sdr_ctrl->dram_if_width);
523 /* ECC would not be calculated as its not addressible */
524 if (width == SDRAM_WIDTH_32BIT_WITH_ECC)
526 if (width == SDRAM_WIDTH_16BIT_WITH_ECC)
529 /* calculate the SDRAM size base on this info */
530 temp = 1 << (row + bank + col);
531 temp = temp * cs * (width / 8);
533 debug("%s returns %ld\n", __func__, temp);