1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
|
/*
* Copyright (C) 2022-2024, STMicroelectronics - All Rights Reserved
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <common/debug.h>
#include <drivers/delay_timer.h>
#include <drivers/st/stm32mp_ddr.h>
#include <drivers/st/stm32mp_ddrctrl_regs.h>
#include <lib/mmio.h>
#include <platform_def.h>
#define INVALID_OFFSET 0xFFU
static bool axi_port_reenable_request;
static bool host_interface_reenable_request;
static uintptr_t get_base_addr(const struct stm32mp_ddr_priv *priv, enum stm32mp_ddr_base_type base)
{
if (base == DDRPHY_BASE) {
return (uintptr_t)priv->phy;
} else {
return (uintptr_t)priv->ctl;
}
}
void stm32mp_ddr_set_reg(const struct stm32mp_ddr_priv *priv, enum stm32mp_ddr_reg_type type,
const void *param, const struct stm32mp_ddr_reg_info *ddr_registers)
{
unsigned int i;
unsigned int value;
enum stm32mp_ddr_base_type base = ddr_registers[type].base;
uintptr_t base_addr = get_base_addr(priv, base);
const struct stm32mp_ddr_reg_desc *desc = ddr_registers[type].desc;
VERBOSE("init %s\n", ddr_registers[type].name);
for (i = 0; i < ddr_registers[type].size; i++) {
uintptr_t ptr = base_addr + desc[i].offset;
if (desc[i].par_offset == INVALID_OFFSET) {
ERROR("invalid parameter offset for %s - index %u",
ddr_registers[type].name, i);
panic();
} else {
#if !STM32MP13 && !STM32MP15
if (desc[i].qd) {
stm32mp_ddr_start_sw_done(priv->ctl);
}
#endif
value = *((uint32_t *)((uintptr_t)param +
desc[i].par_offset));
mmio_write_32(ptr, value);
#if !STM32MP13 && !STM32MP15
if (desc[i].qd) {
stm32mp_ddr_wait_sw_done_ack(priv->ctl);
}
#endif
}
}
}
/* Start quasi dynamic register update */
void stm32mp_ddr_start_sw_done(struct stm32mp_ddrctl *ctl)
{
mmio_clrbits_32((uintptr_t)&ctl->swctl, DDRCTRL_SWCTL_SW_DONE);
VERBOSE("[0x%lx] swctl = 0x%x\n",
(uintptr_t)&ctl->swctl, mmio_read_32((uintptr_t)&ctl->swctl));
}
/* Wait quasi dynamic register update */
void stm32mp_ddr_wait_sw_done_ack(struct stm32mp_ddrctl *ctl)
{
uint64_t timeout;
uint32_t swstat;
mmio_setbits_32((uintptr_t)&ctl->swctl, DDRCTRL_SWCTL_SW_DONE);
VERBOSE("[0x%lx] swctl = 0x%x\n",
(uintptr_t)&ctl->swctl, mmio_read_32((uintptr_t)&ctl->swctl));
timeout = timeout_init_us(DDR_TIMEOUT_US_1S);
do {
swstat = mmio_read_32((uintptr_t)&ctl->swstat);
VERBOSE("[0x%lx] swstat = 0x%x ",
(uintptr_t)&ctl->swstat, swstat);
if (timeout_elapsed(timeout)) {
panic();
}
} while ((swstat & DDRCTRL_SWSTAT_SW_DONE_ACK) == 0U);
VERBOSE("[0x%lx] swstat = 0x%x\n",
(uintptr_t)&ctl->swstat, swstat);
}
void stm32mp_ddr_enable_axi_port(struct stm32mp_ddrctl *ctl)
{
/* Enable uMCTL2 AXI port 0 */
mmio_setbits_32((uintptr_t)&ctl->pctrl_0, DDRCTRL_PCTRL_N_PORT_EN);
VERBOSE("[0x%lx] pctrl_0 = 0x%x\n", (uintptr_t)&ctl->pctrl_0,
mmio_read_32((uintptr_t)&ctl->pctrl_0));
#if STM32MP_DDR_DUAL_AXI_PORT
/* Enable uMCTL2 AXI port 1 */
mmio_setbits_32((uintptr_t)&ctl->pctrl_1, DDRCTRL_PCTRL_N_PORT_EN);
VERBOSE("[0x%lx] pctrl_1 = 0x%x\n", (uintptr_t)&ctl->pctrl_1,
mmio_read_32((uintptr_t)&ctl->pctrl_1));
#endif
}
int stm32mp_ddr_disable_axi_port(struct stm32mp_ddrctl *ctl)
{
uint64_t timeout;
uint32_t pstat;
/* Disable uMCTL2 AXI port 0 */
mmio_clrbits_32((uintptr_t)&ctl->pctrl_0, DDRCTRL_PCTRL_N_PORT_EN);
VERBOSE("[0x%lx] pctrl_0 = 0x%x\n", (uintptr_t)&ctl->pctrl_0,
mmio_read_32((uintptr_t)&ctl->pctrl_0));
#if STM32MP_DDR_DUAL_AXI_PORT
/* Disable uMCTL2 AXI port 1 */
mmio_clrbits_32((uintptr_t)&ctl->pctrl_1, DDRCTRL_PCTRL_N_PORT_EN);
VERBOSE("[0x%lx] pctrl_1 = 0x%x\n", (uintptr_t)&ctl->pctrl_1,
mmio_read_32((uintptr_t)&ctl->pctrl_1));
#endif
/*
* Waits until all AXI ports are idle
* Poll PSTAT.rd_port_busy_n = 0
* Poll PSTAT.wr_port_busy_n = 0
*/
timeout = timeout_init_us(DDR_TIMEOUT_US_1S);
do {
pstat = mmio_read_32((uintptr_t)&ctl->pstat);
VERBOSE("[0x%lx] pstat = 0x%x ",
(uintptr_t)&ctl->pstat, pstat);
if (timeout_elapsed(timeout)) {
return -1;
}
} while (pstat != 0U);
return 0;
}
static bool ddr_is_axi_port_enabled(struct stm32mp_ddrctl *ctl)
{
return (mmio_read_32((uintptr_t)&ctl->pctrl_0) & DDRCTRL_PCTRL_N_PORT_EN) != 0U;
}
void stm32mp_ddr_enable_host_interface(struct stm32mp_ddrctl *ctl)
{
mmio_clrbits_32((uintptr_t)&ctl->dbg1, DDRCTRL_DBG1_DIS_HIF);
VERBOSE("[0x%lx] dbg1 = 0x%x\n",
(uintptr_t)&ctl->dbg1,
mmio_read_32((uintptr_t)&ctl->dbg1));
}
void stm32mp_ddr_disable_host_interface(struct stm32mp_ddrctl *ctl)
{
uint64_t timeout;
uint32_t dbgcam;
int count = 0;
mmio_setbits_32((uintptr_t)&ctl->dbg1, DDRCTRL_DBG1_DIS_HIF);
VERBOSE("[0x%lx] dbg1 = 0x%x\n",
(uintptr_t)&ctl->dbg1,
mmio_read_32((uintptr_t)&ctl->dbg1));
/*
* Waits until all queues and pipelines are empty
* Poll DBGCAM.dbg_wr_q_empty = 1
* Poll DBGCAM.dbg_rd_q_empty = 1
* Poll DBGCAM.dbg_wr_data_pipeline_empty = 1
* Poll DBGCAM.dbg_rd_data_pipeline_empty = 1
*
* data_pipeline fields must be polled twice to ensure
* value propoagation, so count is added to loop condition.
*/
timeout = timeout_init_us(DDR_TIMEOUT_US_1S);
do {
dbgcam = mmio_read_32((uintptr_t)&ctl->dbgcam);
VERBOSE("[0x%lx] dbgcam = 0x%x ",
(uintptr_t)&ctl->dbgcam, dbgcam);
if (timeout_elapsed(timeout)) {
panic();
}
count++;
} while (((dbgcam & DDRCTRL_DBG_Q_AND_DATA_PIPELINE_EMPTY) !=
DDRCTRL_DBG_Q_AND_DATA_PIPELINE_EMPTY) || (count < 2));
}
static bool ddr_is_host_interface_enabled(struct stm32mp_ddrctl *ctl)
{
return (mmio_read_32((uintptr_t)&ctl->dbg1) & DDRCTRL_DBG1_DIS_HIF) == 0U;
}
int stm32mp_ddr_sw_selfref_entry(struct stm32mp_ddrctl *ctl)
{
uint64_t timeout;
uint32_t stat;
uint32_t operating_mode;
uint32_t selref_type;
mmio_setbits_32((uintptr_t)&ctl->pwrctl, DDRCTRL_PWRCTL_SELFREF_SW);
VERBOSE("[0x%lx] pwrctl = 0x%x\n",
(uintptr_t)&ctl->pwrctl,
mmio_read_32((uintptr_t)&ctl->pwrctl));
/*
* Wait operating mode change in self-refresh mode
* with STAT.operating_mode[1:0]==11.
* Ensure transition to self-refresh was due to software
* by checking also that STAT.selfref_type[1:0]=2.
*/
timeout = timeout_init_us(DDR_TIMEOUT_500US);
while (!timeout_elapsed(timeout)) {
stat = mmio_read_32((uintptr_t)&ctl->stat);
operating_mode = stat & DDRCTRL_STAT_OPERATING_MODE_MASK;
selref_type = stat & DDRCTRL_STAT_SELFREF_TYPE_MASK;
if ((operating_mode == DDRCTRL_STAT_OPERATING_MODE_SR) &&
(selref_type == DDRCTRL_STAT_SELFREF_TYPE_SR)) {
return 0;
}
}
return -1;
}
void stm32mp_ddr_sw_selfref_exit(struct stm32mp_ddrctl *ctl)
{
mmio_clrbits_32((uintptr_t)&ctl->pwrctl, DDRCTRL_PWRCTL_SELFREF_SW);
VERBOSE("[0x%lx] pwrctl = 0x%x\n",
(uintptr_t)&ctl->pwrctl,
mmio_read_32((uintptr_t)&ctl->pwrctl));
}
void stm32mp_ddr_set_qd3_update_conditions(struct stm32mp_ddrctl *ctl)
{
if (ddr_is_axi_port_enabled(ctl)) {
if (stm32mp_ddr_disable_axi_port(ctl) != 0) {
panic();
}
axi_port_reenable_request = true;
}
if (ddr_is_host_interface_enabled(ctl)) {
stm32mp_ddr_disable_host_interface(ctl);
host_interface_reenable_request = true;
}
stm32mp_ddr_start_sw_done(ctl);
}
void stm32mp_ddr_unset_qd3_update_conditions(struct stm32mp_ddrctl *ctl)
{
stm32mp_ddr_wait_sw_done_ack(ctl);
if (host_interface_reenable_request) {
stm32mp_ddr_enable_host_interface(ctl);
host_interface_reenable_request = false;
}
if (axi_port_reenable_request) {
stm32mp_ddr_enable_axi_port(ctl);
axi_port_reenable_request = false;
}
}
void stm32mp_ddr_wait_refresh_update_done_ack(struct stm32mp_ddrctl *ctl)
{
uint64_t timeout;
uint32_t rfshctl3;
uint32_t refresh_update_level = DDRCTRL_RFSHCTL3_REFRESH_UPDATE_LEVEL;
/* Toggle rfshctl3.refresh_update_level */
rfshctl3 = mmio_read_32((uintptr_t)&ctl->rfshctl3);
if ((rfshctl3 & refresh_update_level) == refresh_update_level) {
mmio_setbits_32((uintptr_t)&ctl->rfshctl3, refresh_update_level);
} else {
mmio_clrbits_32((uintptr_t)&ctl->rfshctl3, refresh_update_level);
refresh_update_level = 0U;
}
VERBOSE("[0x%lx] rfshctl3 = 0x%x\n",
(uintptr_t)&ctl->rfshctl3, mmio_read_32((uintptr_t)&ctl->rfshctl3));
timeout = timeout_init_us(DDR_TIMEOUT_US_1S);
do {
rfshctl3 = mmio_read_32((uintptr_t)&ctl->rfshctl3);
VERBOSE("[0x%lx] rfshctl3 = 0x%x ", (uintptr_t)&ctl->rfshctl3, rfshctl3);
if (timeout_elapsed(timeout)) {
panic();
}
} while ((rfshctl3 & DDRCTRL_RFSHCTL3_REFRESH_UPDATE_LEVEL) != refresh_update_level);
VERBOSE("[0x%lx] rfshctl3 = 0x%x\n", (uintptr_t)&ctl->rfshctl3, rfshctl3);
}
|