device/dram/ddr3: Get rid of useless typedefs
These typedefs are not necessary. Remove them, and rename some elements to avoid any confusion with other DRAM generations, such as DDR4. Change-Id: Ibe40f33372358262c540e371f7866b06a4ac842a Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/51895 Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
4774012515
commit
afb3d7e7ec
7 changed files with 19 additions and 19 deletions
|
|
@ -174,7 +174,7 @@ static void dram_find_spds_ddr3(spd_raw_data *spd, ramctr_timing *ctrl)
|
|||
spd_slot = 2 * channel + slot;
|
||||
printk(BIOS_DEBUG, "SPD probe channel%d, slot%d\n", channel, slot);
|
||||
|
||||
dimm_attr *const dimm = &ctrl->info.dimm[channel][slot];
|
||||
struct dimm_attr_ddr3_st *const dimm = &ctrl->info.dimm[channel][slot];
|
||||
|
||||
/* Search for XMP profile */
|
||||
spd_xmp_decode_ddr3(dimm, spd[spd_slot],
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ void dram_find_common_params(ramctr_timing *ctrl)
|
|||
|
||||
FOR_ALL_CHANNELS for (slot = 0; slot < 2; slot++) {
|
||||
|
||||
const dimm_attr *dimm = &dimms->dimm[channel][slot];
|
||||
const struct dimm_attr_ddr3_st *dimm = &dimms->dimm[channel][slot];
|
||||
if (dimm->dram_type != SPD_MEMORY_TYPE_SDRAM_DDR3)
|
||||
continue;
|
||||
|
||||
|
|
@ -245,7 +245,7 @@ void dram_dimm_mapping(ramctr_timing *ctrl)
|
|||
dimm_info *info = &ctrl->info;
|
||||
|
||||
FOR_ALL_CHANNELS {
|
||||
dimm_attr *dimmA, *dimmB;
|
||||
struct dimm_attr_ddr3_st *dimmA, *dimmB;
|
||||
u32 reg = 0;
|
||||
|
||||
if (info->dimm[channel][0].size_mb >= info->dimm[channel][1].size_mb) {
|
||||
|
|
|
|||
|
|
@ -322,7 +322,7 @@ typedef struct odtmap_st {
|
|||
|
||||
/* WARNING: Do not forget to increase MRC_CACHE_VERSION when this struct is changed! */
|
||||
typedef struct dimm_info_st {
|
||||
dimm_attr dimm[NUM_CHANNELS][NUM_SLOTS];
|
||||
struct dimm_attr_ddr3_st dimm[NUM_CHANNELS][NUM_SLOTS];
|
||||
} dimm_info;
|
||||
|
||||
/* WARNING: Do not forget to increase MRC_CACHE_VERSION when this struct is changed! */
|
||||
|
|
|
|||
|
|
@ -351,7 +351,7 @@ static void workaround_stacked_mode(struct sysinfo *s)
|
|||
static int ddr3_save_dimminfo(u8 dimm_idx, u8 *raw_spd,
|
||||
struct abs_timings *saved_timings, struct sysinfo *s)
|
||||
{
|
||||
struct dimm_attr_st decoded_dimm;
|
||||
struct dimm_attr_ddr3_st decoded_dimm;
|
||||
|
||||
if (spd_decode_ddr3(&decoded_dimm, raw_spd) != SPD_STATUS_OK)
|
||||
return CB_ERR;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue