mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2024-11-23 08:26:23 -06:00
5dde13b0a1
* Initial commit for ECC support. Preliminary support for AMD Zen. * Clear ECC registers at startup * Add config flag (enable_ecc_polling) to toggle ECC polling. (Currently disabled by default for v7 release)
60 lines
1.2 KiB
C
60 lines
1.2 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef MEMCTRL_H
|
|
#define MEMCTRL_H
|
|
/**
|
|
* \file
|
|
*
|
|
* Provides information about the memory controller status
|
|
* (running DRAM configuration, ECC, ...) and other
|
|
* platform-specific data
|
|
*
|
|
*//*
|
|
* Copyright (C) 2004-2023 Sam Demeulemeester.
|
|
*/
|
|
|
|
typedef struct __attribute__((packed)) imc_infos {
|
|
char *type;
|
|
uint16_t family;
|
|
uint16_t freq;
|
|
uint16_t width;
|
|
uint16_t tCL;
|
|
uint8_t tCL_dec;
|
|
uint16_t tRCD;
|
|
uint16_t tRP;
|
|
uint16_t tRAS;
|
|
} imc_info_t;
|
|
|
|
typedef enum {
|
|
ECC_ERR_NONE,
|
|
ECC_ERR_CORRECTED,
|
|
ECC_ERR_UNCORRECTED,
|
|
ERR_UNKNOWN
|
|
} ecc_error_type_t;
|
|
|
|
typedef struct __attribute__((packed)) ecc_status {
|
|
bool ecc_enabled;
|
|
ecc_error_type_t type;
|
|
uint64_t addr;
|
|
uint32_t count;
|
|
uint16_t core;
|
|
uint8_t channel;
|
|
} ecc_info_t;
|
|
|
|
/**
|
|
* Current DRAM configuration of the Integrated Memory Controller
|
|
*/
|
|
|
|
extern imc_info_t imc;
|
|
|
|
/**
|
|
* Current ECC Status of the Integrated Memory Controller
|
|
*/
|
|
|
|
extern ecc_info_t ecc_status;
|
|
|
|
void memctrl_init(void);
|
|
|
|
void memctrl_poll_ecc(void);
|
|
|
|
#endif // MEMCTRL_H
|