mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 07:12:18 +00:00
a94b3d14aa
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
59 lines
1.4 KiB
C
59 lines
1.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* Copyright (c) 2021 Intel Corporation */
|
|
|
|
#include <linux/mutex.h>
|
|
#include <linux/types.h>
|
|
|
|
#ifndef __PECI_HWMON_COMMON_H
|
|
#define __PECI_HWMON_COMMON_H
|
|
|
|
#define PECI_HWMON_UPDATE_INTERVAL HZ
|
|
|
|
/**
|
|
* struct peci_sensor_state - PECI state information
|
|
* @valid: flag to indicate the sensor value is valid
|
|
* @last_updated: time of the last update in jiffies
|
|
* @lock: mutex to protect sensor access
|
|
*/
|
|
struct peci_sensor_state {
|
|
bool valid;
|
|
unsigned long last_updated;
|
|
struct mutex lock; /* protect sensor access */
|
|
};
|
|
|
|
/**
|
|
* struct peci_sensor_data - PECI sensor information
|
|
* @value: sensor value in milli units
|
|
* @state: sensor update state
|
|
*/
|
|
|
|
struct peci_sensor_data {
|
|
s32 value;
|
|
struct peci_sensor_state state;
|
|
};
|
|
|
|
/**
|
|
* peci_sensor_need_update() - check whether sensor update is needed or not
|
|
* @sensor: pointer to sensor data struct
|
|
*
|
|
* Return: true if update is needed, false if not.
|
|
*/
|
|
|
|
static inline bool peci_sensor_need_update(struct peci_sensor_state *state)
|
|
{
|
|
return !state->valid ||
|
|
time_after(jiffies, state->last_updated + PECI_HWMON_UPDATE_INTERVAL);
|
|
}
|
|
|
|
/**
|
|
* peci_sensor_mark_updated() - mark the sensor is updated
|
|
* @sensor: pointer to sensor data struct
|
|
*/
|
|
static inline void peci_sensor_mark_updated(struct peci_sensor_state *state)
|
|
{
|
|
state->valid = true;
|
|
state->last_updated = jiffies;
|
|
}
|
|
|
|
#endif /* __PECI_HWMON_COMMON_H */
|