Implement common DRAM SPD module with EE1004 and SPD5118 driver support to support detecting DRAM modules using SPD information.
This commit is contained in:
parent
3d171c222b
commit
b1d5e83adc
9 changed files with 915 additions and 201 deletions
|
|
@ -33,6 +33,15 @@ public:
|
|||
}
|
||||
};
|
||||
|
||||
class I2CDIMMDeviceDetector
|
||||
{
|
||||
public:
|
||||
I2CDIMMDeviceDetector(std::string name, I2CDIMMDeviceDetectorFunction detector, uint16_t jedec_id, uint8_t dimm_type)
|
||||
{
|
||||
ResourceManager::get()->RegisterI2CDIMMDeviceDetector(name, detector, jedec_id, dimm_type);
|
||||
}
|
||||
};
|
||||
|
||||
class I2CPCIDeviceDetector
|
||||
{
|
||||
public:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue