Implement common DRAM SPD module with EE1004 and SPD5118 driver support to support detecting DRAM modules using SPD information.

This commit is contained in:
Milan Čermák 2024-12-04 20:41:52 +00:00 committed by Adam Honse
parent 3d171c222b
commit b1d5e83adc
9 changed files with 915 additions and 201 deletions

View file

@ -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: