mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2026-08-26 13:17:12 -05:00
* Initial commit for DDR5 Temperature report * Change smbus.h to i2c_x86.h * Change I2C includes defines name to avoid conflict * Add dummy get_ram_temp() function on LA64 * Add menu option for RAM/DDR5 Temperature polling
48 lines
1.0 KiB
C
48 lines
1.0 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef TEMPERATURE_H
|
|
#define TEMPERATURE_H
|
|
/**
|
|
* \file
|
|
*
|
|
* Provides a function to read the CPU core temperature.
|
|
*
|
|
*//*
|
|
* Copyright (C) 2020-2022 Martin Whitaker.
|
|
* Copyright (C) 2003-2025 Sam Demeulemeester.
|
|
*/
|
|
|
|
#define AMD_TEMP_REG_K8 0xE4
|
|
#define AMD_TEMP_REG_K10 0xA4
|
|
|
|
#define AMD_SMU_INDEX_ADDR_REG 0xB8
|
|
#define AMD_SMU_INDEX_DATA_REG 0xBC
|
|
#define AMD_F15_M60H_TEMP_CTRL_OFFSET 0xD8200CA4
|
|
|
|
// Temp Registers on AMD ZEN System Management Network
|
|
#define SMN_SMUIO_THM 0x00059800
|
|
#define SMN_THM_TCON_CUR_TMP (SMN_SMUIO_THM + 0x00)
|
|
|
|
/**
|
|
* Global CPU Temperature offset
|
|
*/
|
|
extern float cpu_temp_offset;
|
|
|
|
/**
|
|
* Init temperature sensor and compute offsets if needed
|
|
*/
|
|
void cpu_temp_init(void);
|
|
|
|
/**
|
|
* Returns the current temperature of the CPU. Returns 0 if
|
|
* the temperature cannot be read.
|
|
*/
|
|
int get_cpu_temp(void);
|
|
|
|
/**
|
|
* Returns the current temperature of the RAM. Returns 0 if
|
|
* the temperature cannot be read. Only for DDR5
|
|
*/
|
|
int get_ram_temp(uint8_t slot);
|
|
|
|
#endif // TEMPERATURE_H
|