File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -162,6 +162,8 @@ const char * const edac_mem_types[] = {
162
162
[MEM_LPDDR4 ] = "Low-Power-DDR4-RAM" ,
163
163
[MEM_LRDDR4 ] = "Load-Reduced-DDR4-RAM" ,
164
164
[MEM_DDR5 ] = "Unbuffered-DDR5" ,
165
+ [MEM_RDDR5 ] = "Registered-DDR5" ,
166
+ [MEM_LRDDR5 ] = "Load-Reduced-DDR5-RAM" ,
165
167
[MEM_NVDIMM ] = "Non-volatile-RAM" ,
166
168
[MEM_WIO2 ] = "Wide-IO-2" ,
167
169
[MEM_HBM2 ] = "High-bandwidth-memory-Gen2" ,
Original file line number Diff line number Diff line change @@ -182,6 +182,8 @@ static inline char *mc_event_error_type(const unsigned int err_type)
182
182
* @MEM_LRDDR4: Load-Reduced DDR4 memory.
183
183
* @MEM_LPDDR4: Low-Power DDR4 memory.
184
184
* @MEM_DDR5: Unbuffered DDR5 RAM
185
+ * @MEM_RDDR5: Registered DDR5 RAM
186
+ * @MEM_LRDDR5: Load-Reduced DDR5 memory.
185
187
* @MEM_NVDIMM: Non-volatile RAM
186
188
* @MEM_WIO2: Wide I/O 2.
187
189
* @MEM_HBM2: High bandwidth Memory Gen 2.
@@ -211,6 +213,8 @@ enum mem_type {
211
213
MEM_LRDDR4 ,
212
214
MEM_LPDDR4 ,
213
215
MEM_DDR5 ,
216
+ MEM_RDDR5 ,
217
+ MEM_LRDDR5 ,
214
218
MEM_NVDIMM ,
215
219
MEM_WIO2 ,
216
220
MEM_HBM2 ,
@@ -239,6 +243,8 @@ enum mem_type {
239
243
#define MEM_FLAG_LRDDR4 BIT(MEM_LRDDR4)
240
244
#define MEM_FLAG_LPDDR4 BIT(MEM_LPDDR4)
241
245
#define MEM_FLAG_DDR5 BIT(MEM_DDR5)
246
+ #define MEM_FLAG_RDDR5 BIT(MEM_RDDR5)
247
+ #define MEM_FLAG_LRDDR5 BIT(MEM_LRDDR5)
242
248
#define MEM_FLAG_NVDIMM BIT(MEM_NVDIMM)
243
249
#define MEM_FLAG_WIO2 BIT(MEM_WIO2)
244
250
#define MEM_FLAG_HBM2 BIT(MEM_HBM2)
You can’t perform that action at this time.
0 commit comments