1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2019 Intel Corporation <www.intel.com>
16 #include "sdram_soc64.h"
18 #include <asm/arch/firewall.h>
19 #include <asm/arch/reset_manager.h>
20 #include <asm/arch/system_manager.h>
22 #include <linux/sizes.h>
24 DECLARE_GLOBAL_DATA_PTR;
26 int sdram_mmr_init_full(struct udevice *dev)
28 struct altera_sdram_platdata *plat = dev->platdata;
29 struct altera_sdram_priv *priv = dev_get_priv(dev);
35 /* Ensure HMC clock is running */
36 if (poll_hmc_clock_status()) {
37 debug("DDR: Error as HMC clock was not running\n");
41 /* Trying 3 times to do a calibration */
42 for (i = 0; i < 3; i++) {
43 ret = wait_for_bit_le32((const void *)(plat->hmc +
45 DDR_HMC_DDRCALSTAT_CAL_MSK, true, 1000,
54 puts("DDR: Error as SDRAM calibration failed\n");
57 debug("DDR: Calibration success\n");
60 * Configure the DDR IO size
61 * niosreserve0: Used to indicate DDR width &
62 * bit[7:0] = Number of data bits (bit[6:5] 0x01=32bit, 0x10=64bit)
63 * bit[8] = 1 if user-mode OCT is present
64 * bit[9] = 1 if warm reset compiled into EMIF Cal Code
65 * bit[10] = 1 if warm reset is on during generation in EMIF Cal
66 * niosreserve1: IP ADCDS version encoded as 16 bit value
67 * bit[2:0] = Variant (0=not special,1=FAE beta, 2=Customer beta,
68 * 3=EAP, 4-6 are reserved)
69 * bit[5:3] = Service Pack # (e.g. 1)
70 * bit[9:6] = Minor Release #
71 * bit[14:10] = Major Release #
73 /* Configure DDR IO size x16, x32 and x64 mode */
76 update_value = hmc_readl(plat, NIOSRESERVED0);
77 update_value = (update_value & 0xFF) >> 5;
79 /* Configure DDR data rate 0-HAlf-rate 1-Quarter-rate */
80 update_value |= (hmc_readl(plat, CTRLCFG3) & 0x4);
81 hmc_ecc_writel(plat, update_value, DDRIOCTRL);
83 /* Copy values MMR IOHMC dramaddrw to HMC adp DRAMADDRWIDTH */
84 hmc_ecc_writel(plat, hmc_readl(plat, DRAMADDRW), DRAMADDRWIDTH);
86 /* assigning the SDRAM size */
87 phys_size_t size = sdram_calculate_size(plat);
90 hw_size = PHYS_SDRAM_1_SIZE;
94 /* Get bank configuration from devicetree */
95 ret = fdtdec_decode_ram_size(gd->fdt_blob, NULL, 0, NULL,
96 (phys_size_t *)&gd->ram_size, &bd);
98 puts("DDR: Failed to decode memory node\n");
102 if (gd->ram_size != hw_size) {
103 printf("DDR: Warning: DRAM size from device tree (%lld MiB)\n",
105 printf(" mismatch with hardware (%lld MiB).\n",
109 if (gd->ram_size > hw_size) {
110 printf("DDR: Error: DRAM size from device tree is greater\n");
111 printf(" than hardware size.\n");
115 printf("DDR: %lld MiB\n", gd->ram_size >> 20);
117 /* This enables nonsecure access to DDR */
118 /* mpuregion0addr_limit */
119 FW_MPU_DDR_SCR_WRITEL(gd->ram_size - 1,
120 FW_MPU_DDR_SCR_MPUREGION0ADDR_LIMIT);
121 FW_MPU_DDR_SCR_WRITEL(0x1F, FW_MPU_DDR_SCR_MPUREGION0ADDR_LIMITEXT);
123 /* nonmpuregion0addr_limit */
124 FW_MPU_DDR_SCR_WRITEL(gd->ram_size - 1,
125 FW_MPU_DDR_SCR_NONMPUREGION0ADDR_LIMIT);
127 /* Enable mpuregion0enable and nonmpuregion0enable */
128 FW_MPU_DDR_SCR_WRITEL(MPUREGION0_ENABLE | NONMPUREGION0_ENABLE,
129 FW_MPU_DDR_SCR_EN_SET);
131 u32 ctrlcfg1 = hmc_readl(plat, CTRLCFG1);
133 /* Enable or disable the DDR ECC */
134 if (CTRLCFG1_CFG_CTRL_EN_ECC(ctrlcfg1)) {
135 setbits_le32(plat->hmc + ECCCTRL1,
136 (DDR_HMC_ECCCTL_AWB_CNT_RST_SET_MSK |
137 DDR_HMC_ECCCTL_CNT_RST_SET_MSK |
138 DDR_HMC_ECCCTL_ECC_EN_SET_MSK));
139 clrbits_le32(plat->hmc + ECCCTRL1,
140 (DDR_HMC_ECCCTL_AWB_CNT_RST_SET_MSK |
141 DDR_HMC_ECCCTL_CNT_RST_SET_MSK));
142 setbits_le32(plat->hmc + ECCCTRL2,
143 (DDR_HMC_ECCCTL2_RMW_EN_SET_MSK |
144 DDR_HMC_ECCCTL2_AWB_EN_SET_MSK));
145 setbits_le32(plat->hmc + ERRINTEN,
146 DDR_HMC_ERRINTEN_DERRINTEN_EN_SET_MSK);
148 if (!cpu_has_been_warmreset())
149 sdram_init_ecc_bits(&bd);
151 clrbits_le32(plat->hmc + ECCCTRL1,
152 (DDR_HMC_ECCCTL_AWB_CNT_RST_SET_MSK |
153 DDR_HMC_ECCCTL_CNT_RST_SET_MSK |
154 DDR_HMC_ECCCTL_ECC_EN_SET_MSK));
155 clrbits_le32(plat->hmc + ECCCTRL2,
156 (DDR_HMC_ECCCTL2_RMW_EN_SET_MSK |
157 DDR_HMC_ECCCTL2_AWB_EN_SET_MSK));
160 /* Enable non-secure reads/writes to HMC Adapter for SDRAM ECC */
161 writel(FW_HMC_ADAPTOR_MPU_MASK, FW_HMC_ADAPTOR_REG_ADDR);
163 sdram_size_check(&bd);
165 priv->info.base = bd.bi_dram[0].start;
166 priv->info.size = gd->ram_size;
168 debug("DDR: HMC init success\n");