// SPDX-License-Identifier: GPL-2.0+ /* * Copyright 2018 NXP */ #include <common.h> #include <linux/kernel.h> #include <asm/arch/ddr.h> #include <asm/arch/imx8m_ddr.h> #include <asm/arch/lpddr4_define.h> static void dwc_ddrphy_apb_wr_list(struct dram_cfg_param *dram_cfg, int cnt) { int i; for (i = 0; i < cnt; i++) { dwc_ddrphy_apb_wr(dram_cfg->reg, dram_cfg->val); dram_cfg++; } } void ddr_cfg_phy(struct dram_timing_info *dram_timing) { struct dram_fsp_msg *fsp_msg; int i = 0; int drate = 0; /* initialize PHY configuration */ dwc_ddrphy_apb_wr_list(dram_timing->ddrphy_cfg, dram_timing->ddrphy_cfg_num); /* load the frequency setpoint message block config */ fsp_msg = dram_timing->fsp_msg; for (i = 0; i < dram_timing->fsp_msg_num; i++) { debug("DRAM PHY training for %dMTS\n", fsp_msg->drate); /* set dram PHY input clocks to desired frequency */ if (drate != fsp_msg->drate) { drate = fsp_msg->drate; ddrphy_init_set_dfi_clk(fsp_msg->drate); } /* load the dram training firmware image */ dwc_ddrphy_apb_wr(0xd0000, 0x0); ddr_load_train_firmware(fsp_msg->fw_type); printf("config to do %u %ud training.\n", fsp_msg->drate, fsp_msg->fw_type == FW_1D_IMAGE ? 1 : 2); /* load the frequency set point message block parameter */ dwc_ddrphy_apb_wr_list(fsp_msg->fsp_cfg, fsp_msg->fsp_cfg_num); /* * -------------------- excute the firmware -------------------- * Running the firmware is a simply process to taking the * PMU out of reset and stall, then the firwmare will be run * 1. reset the PMU; * 2. begin the excution; * 3. wait for the training done; * 4. read the message block result. * ------------------------------------------------------------- */ dwc_ddrphy_apb_wr(0xd0000, 0x1); dwc_ddrphy_apb_wr(0xd0099, 0x9); dwc_ddrphy_apb_wr(0xd0099, 0x1); dwc_ddrphy_apb_wr(0xd0099, 0x0); /* Wait for the training firmware to complete */ wait_ddrphy_training_complete(); /* Halt the microcontroller. */ dwc_ddrphy_apb_wr(0xd0099, 0x1); /* Read the Message Block results */ dwc_ddrphy_apb_wr(0xd0000, 0x0); ddrphy_init_read_msg_block(fsp_msg->fw_type); dwc_ddrphy_apb_wr(0xd0000, 0x1); fsp_msg++; } /* Load PHY Init Engine Image */ dwc_ddrphy_apb_wr_list(dram_timing->ddrphy_pie, dram_timing->ddrphy_pie_num); /* save the ddr PHY trained CSR in memory for low power use */ ddrphy_trained_csr_save(ddrphy_trained_csr, ddrphy_trained_csr_num); }