blob: b614e63285662d5e93a8963f7e56867853091c7e [file] [log] [blame]
Thomas Gleixner74ba9202019-05-20 09:19:02 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 lm75.h - Part of lm_sensors, Linux kernel modules for hardware
Frans Meulenbroeksa01a6842012-01-04 23:16:39 +01004 monitoring
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 Copyright (c) 2003 Mark M. Hoffman <mhoffman@lightlink.com>
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007*/
8
9/*
10 This file contains common code for encoding/decoding LM75 type
11 temperature readings, which are emulated by many of the chips
12 we support. As the user is unlikely to load more than one driver
13 which contains this code, we don't worry about the wasted space.
14*/
15
Jean Delvare5a4c0602013-03-18 21:19:49 +010016#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/* straight from the datasheet */
19#define LM75_TEMP_MIN (-55000)
20#define LM75_TEMP_MAX 125000
Shubhrajyoti Datta99145182010-08-14 21:08:50 +020021#define LM75_SHUTDOWN 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23/* TEMP: 0.001C/bit (-55C to +125C)
24 REG: (0.5C/bit, two's complement) << 7 */
Christian Hohnstaedt5bfedac2007-08-16 11:40:10 +020025static inline u16 LM75_TEMP_TO_REG(long temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026{
Guenter Roeck2a844c12013-01-09 08:09:34 -080027 int ntemp = clamp_val(temp, LM75_TEMP_MIN, LM75_TEMP_MAX);
Frans Meulenbroeksa01a6842012-01-04 23:16:39 +010028 ntemp += (ntemp < 0 ? -250 : 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 return (u16)((ntemp / 500) << 7);
30}
31
32static inline int LM75_TEMP_FROM_REG(u16 reg)
33{
34 /* use integer division instead of equivalent right shift to
35 guarantee arithmetic shift and preserve the sign */
36 return ((s16)reg / 128) * 500;
37}