3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-30 23:02:18 +00:00
Brooklyn/drivers/hwmon/adt7x10.h
crowetic a94b3d14aa Brooklyn+ (PLUS) changes
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
2022-05-12 10:47:00 -07:00

31 lines
695 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __HWMON_ADT7X10_H__
#define __HWMON_ADT7X10_H__
#include <linux/types.h>
#include <linux/pm.h>
/* ADT7410 registers definition */
#define ADT7X10_TEMPERATURE 0
#define ADT7X10_STATUS 2
#define ADT7X10_CONFIG 3
#define ADT7X10_T_ALARM_HIGH 4
#define ADT7X10_T_ALARM_LOW 6
#define ADT7X10_T_CRIT 8
#define ADT7X10_T_HYST 0xA
#define ADT7X10_ID 0xB
struct device;
int adt7x10_probe(struct device *dev, const char *name, int irq,
struct regmap *regmap);
#ifdef CONFIG_PM_SLEEP
extern const struct dev_pm_ops adt7x10_dev_pm_ops;
#define ADT7X10_DEV_PM_OPS (&adt7x10_dev_pm_ops)
#else
#define ADT7X10_DEV_PM_OPS NULL
#endif
#endif