device/dram/ddr5: Add 7500 MT/s support
Before I got the following error: [ERROR] DDR5 speed of 3750 MHz is out of range tested: glinda based mainboard Change-Id: I141f63c4fc505a9e16eed132a9a550441f4ad68d Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/86543 Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Reviewed-by: Alicja Michalska <ahplka19@gmail.com> Reviewed-by: Andy Ebrahiem <ahmet.ebrahiem@9elements.com> Reviewed-by: Marvin Drees <marvin.drees@9elements.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Naresh Solanki <naresh.solanki@9elements.com>
This commit is contained in:
parent
3ef23c9a88
commit
0ac29ad3ce
1 changed files with 6 additions and 0 deletions
|
|
@ -21,6 +21,7 @@ enum ddr5_speed_grade {
|
|||
DDR5_5500,
|
||||
DDR5_6000,
|
||||
DDR5_6400,
|
||||
DDR5_7500,
|
||||
};
|
||||
|
||||
struct ddr5_speed_attr {
|
||||
|
|
@ -108,6 +109,11 @@ static const struct ddr5_speed_attr ddr5_speeds[] = {
|
|||
.max_clock_mhz = 3200,
|
||||
.reported_mts = 6400
|
||||
},
|
||||
[DDR5_7500] = {
|
||||
.min_clock_mhz = 3201,
|
||||
.max_clock_mhz = 3750,
|
||||
.reported_mts = 7500
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue