2020-05-24 15:30:55 -05:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef TEMPERATURE_H
|
|
|
|
#define TEMPERATURE_H
|
2022-02-19 10:17:40 -06:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
*
|
2020-05-24 15:30:55 -05:00
|
|
|
* Provides a function to read the CPU core temperature.
|
|
|
|
*
|
2022-02-19 13:56:55 -06:00
|
|
|
*//*
|
2022-02-19 10:17:40 -06:00
|
|
|
* Copyright (C) 2020-2022 Martin Whitaker.
|
2023-02-13 15:29:17 -06:00
|
|
|
* Copyright (C) 2003-2023 Sam Demeulemeester.
|
2020-05-24 15:30:55 -05:00
|
|
|
*/
|
|
|
|
|
2023-02-13 15:29:17 -06:00
|
|
|
#define AMD_TEMP_REG_K8 0xE4
|
|
|
|
#define AMD_TEMP_REG_K10 0xA4
|
|
|
|
|
2023-05-12 08:33:28 -05:00
|
|
|
// Temp Registers on AMD ZEN System Management Network
|
|
|
|
#define SMN_SMUIO_THM 0x00059800
|
|
|
|
#define SMN_THM_TCON_CUR_TMP (SMN_SMUIO_THM + 0x00)
|
|
|
|
|
2023-02-13 15:29:17 -06:00
|
|
|
/**
|
|
|
|
* Global CPU Temperature offset
|
|
|
|
*/
|
|
|
|
extern float cpu_temp_offset;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Init temperature sensor and compute offsets if needed
|
|
|
|
*/
|
|
|
|
void temperature_init(void);
|
|
|
|
|
2022-02-19 10:17:40 -06:00
|
|
|
/**
|
2020-05-24 15:30:55 -05:00
|
|
|
* Returns the current temperature of the CPU. Returns 0 if
|
|
|
|
* the temperature cannot be read.
|
|
|
|
*/
|
|
|
|
int get_cpu_temperature(void);
|
|
|
|
|
|
|
|
#endif // TEMPERATURE_H
|