2 * A driver for the Integrated Circuits ICS932S401
3 * Copyright (C) 2008 IBM
5 * Author: Darrick J. Wong <djwong@us.ibm.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/module.h>
23 #include <linux/jiffies.h>
24 #include <linux/i2c.h>
25 #include <linux/err.h>
26 #include <linux/mutex.h>
27 #include <linux/delay.h>
28 #include <linux/log2.h>
30 /* Addresses to scan */
31 static const unsigned short normal_i2c
[] = { 0x69, I2C_CLIENT_END
};
33 /* Insmod parameters */
34 I2C_CLIENT_INSMOD_1(ics932s401
);
36 /* ICS932S401 registers */
37 #define ICS932S401_REG_CFG2 0x01
38 #define ICS932S401_CFG1_SPREAD 0x01
39 #define ICS932S401_REG_CFG7 0x06
40 #define ICS932S401_FS_MASK 0x07
41 #define ICS932S401_REG_VENDOR_REV 0x07
42 #define ICS932S401_VENDOR 1
43 #define ICS932S401_VENDOR_MASK 0x0F
44 #define ICS932S401_REV 4
45 #define ICS932S401_REV_SHIFT 4
46 #define ICS932S401_REG_DEVICE 0x09
47 #define ICS932S401_DEVICE 11
48 #define ICS932S401_REG_CTRL 0x0A
49 #define ICS932S401_MN_ENABLED 0x80
50 #define ICS932S401_CPU_ALT 0x04
51 #define ICS932S401_SRC_ALT 0x08
52 #define ICS932S401_REG_CPU_M_CTRL 0x0B
53 #define ICS932S401_M_MASK 0x3F
54 #define ICS932S401_REG_CPU_N_CTRL 0x0C
55 #define ICS932S401_REG_CPU_SPREAD1 0x0D
56 #define ICS932S401_REG_CPU_SPREAD2 0x0E
57 #define ICS932S401_SPREAD_MASK 0x7FFF
58 #define ICS932S401_REG_SRC_M_CTRL 0x0F
59 #define ICS932S401_REG_SRC_N_CTRL 0x10
60 #define ICS932S401_REG_SRC_SPREAD1 0x11
61 #define ICS932S401_REG_SRC_SPREAD2 0x12
62 #define ICS932S401_REG_CPU_DIVISOR 0x13
63 #define ICS932S401_CPU_DIVISOR_SHIFT 4
64 #define ICS932S401_REG_PCISRC_DIVISOR 0x14
65 #define ICS932S401_SRC_DIVISOR_MASK 0x0F
66 #define ICS932S401_PCI_DIVISOR_SHIFT 4
68 /* Base clock is 14.318MHz */
69 #define BASE_CLOCK 14318
72 #define NUM_MIRRORED_REGS 15
74 static int regs_to_copy
[NUM_MIRRORED_REGS
] = {
77 ICS932S401_REG_VENDOR_REV
,
78 ICS932S401_REG_DEVICE
,
80 ICS932S401_REG_CPU_M_CTRL
,
81 ICS932S401_REG_CPU_N_CTRL
,
82 ICS932S401_REG_CPU_SPREAD1
,
83 ICS932S401_REG_CPU_SPREAD2
,
84 ICS932S401_REG_SRC_M_CTRL
,
85 ICS932S401_REG_SRC_N_CTRL
,
86 ICS932S401_REG_SRC_SPREAD1
,
87 ICS932S401_REG_SRC_SPREAD2
,
88 ICS932S401_REG_CPU_DIVISOR
,
89 ICS932S401_REG_PCISRC_DIVISOR
,
92 /* How often do we reread sensors values? (In jiffies) */
93 #define SENSOR_REFRESH_INTERVAL (2 * HZ)
95 /* How often do we reread sensor limit values? (In jiffies) */
96 #define LIMIT_REFRESH_INTERVAL (60 * HZ)
98 struct ics932s401_data
{
99 struct attribute_group attrs
;
102 unsigned long sensors_last_updated
; /* In jiffies */
107 static int ics932s401_probe(struct i2c_client
*client
,
108 const struct i2c_device_id
*id
);
109 static int ics932s401_detect(struct i2c_client
*client
, int kind
,
110 struct i2c_board_info
*info
);
111 static int ics932s401_remove(struct i2c_client
*client
);
113 static const struct i2c_device_id ics932s401_id
[] = {
114 { "ics932s401", ics932s401
},
117 MODULE_DEVICE_TABLE(i2c
, ics932s401_id
);
119 static struct i2c_driver ics932s401_driver
= {
120 .class = I2C_CLASS_HWMON
,
122 .name
= "ics932s401",
124 .probe
= ics932s401_probe
,
125 .remove
= ics932s401_remove
,
126 .id_table
= ics932s401_id
,
127 .detect
= ics932s401_detect
,
128 .address_data
= &addr_data
,
131 static struct ics932s401_data
*ics932s401_update_device(struct device
*dev
)
133 struct i2c_client
*client
= to_i2c_client(dev
);
134 struct ics932s401_data
*data
= i2c_get_clientdata(client
);
135 unsigned long local_jiffies
= jiffies
;
138 mutex_lock(&data
->lock
);
139 if (time_before(local_jiffies
, data
->sensors_last_updated
+
140 SENSOR_REFRESH_INTERVAL
)
141 && data
->sensors_valid
)
145 * Each register must be read as a word and then right shifted 8 bits.
146 * Not really sure why this is; setting the "byte count programming"
147 * register to 1 does not fix this problem.
149 for (i
= 0; i
< NUM_MIRRORED_REGS
; i
++) {
150 temp
= i2c_smbus_read_word_data(client
, regs_to_copy
[i
]);
151 data
->regs
[regs_to_copy
[i
]] = temp
>> 8;
154 data
->sensors_last_updated
= local_jiffies
;
155 data
->sensors_valid
= 1;
158 mutex_unlock(&data
->lock
);
162 static ssize_t
show_spread_enabled(struct device
*dev
,
163 struct device_attribute
*devattr
,
166 struct ics932s401_data
*data
= ics932s401_update_device(dev
);
168 if (data
->regs
[ICS932S401_REG_CFG2
] & ICS932S401_CFG1_SPREAD
)
169 return sprintf(buf
, "1\n");
171 return sprintf(buf
, "0\n");
174 /* bit to cpu khz map */
175 static const int fs_speeds
[] = {
186 /* clock divisor map */
187 static const int divisors
[] = {2, 3, 5, 15, 4, 6, 10, 30, 8, 12, 20, 60, 16,
190 /* Calculate CPU frequency from the M/N registers. */
191 static int calculate_cpu_freq(struct ics932s401_data
*data
)
195 m
= data
->regs
[ICS932S401_REG_CPU_M_CTRL
] & ICS932S401_M_MASK
;
196 n
= data
->regs
[ICS932S401_REG_CPU_N_CTRL
];
198 /* Pull in bits 8 & 9 from the M register */
199 n
|= ((int)data
->regs
[ICS932S401_REG_CPU_M_CTRL
] & 0x80) << 1;
200 n
|= ((int)data
->regs
[ICS932S401_REG_CPU_M_CTRL
] & 0x40) << 3;
202 freq
= BASE_CLOCK
* (n
+ 8) / (m
+ 2);
203 freq
/= divisors
[data
->regs
[ICS932S401_REG_CPU_DIVISOR
] >>
204 ICS932S401_CPU_DIVISOR_SHIFT
];
209 static ssize_t
show_cpu_clock(struct device
*dev
,
210 struct device_attribute
*devattr
,
213 struct ics932s401_data
*data
= ics932s401_update_device(dev
);
215 return sprintf(buf
, "%d\n", calculate_cpu_freq(data
));
218 static ssize_t
show_cpu_clock_sel(struct device
*dev
,
219 struct device_attribute
*devattr
,
222 struct ics932s401_data
*data
= ics932s401_update_device(dev
);
225 if (data
->regs
[ICS932S401_REG_CTRL
] & ICS932S401_MN_ENABLED
)
226 freq
= calculate_cpu_freq(data
);
228 /* Freq is neatly wrapped up for us */
229 int fid
= data
->regs
[ICS932S401_REG_CFG7
] & ICS932S401_FS_MASK
;
230 freq
= fs_speeds
[fid
];
231 if (data
->regs
[ICS932S401_REG_CTRL
] & ICS932S401_CPU_ALT
) {
243 return sprintf(buf
, "%d\n", freq
);
246 /* Calculate SRC frequency from the M/N registers. */
247 static int calculate_src_freq(struct ics932s401_data
*data
)
251 m
= data
->regs
[ICS932S401_REG_SRC_M_CTRL
] & ICS932S401_M_MASK
;
252 n
= data
->regs
[ICS932S401_REG_SRC_N_CTRL
];
254 /* Pull in bits 8 & 9 from the M register */
255 n
|= ((int)data
->regs
[ICS932S401_REG_SRC_M_CTRL
] & 0x80) << 1;
256 n
|= ((int)data
->regs
[ICS932S401_REG_SRC_M_CTRL
] & 0x40) << 3;
258 freq
= BASE_CLOCK
* (n
+ 8) / (m
+ 2);
259 freq
/= divisors
[data
->regs
[ICS932S401_REG_PCISRC_DIVISOR
] &
260 ICS932S401_SRC_DIVISOR_MASK
];
265 static ssize_t
show_src_clock(struct device
*dev
,
266 struct device_attribute
*devattr
,
269 struct ics932s401_data
*data
= ics932s401_update_device(dev
);
271 return sprintf(buf
, "%d\n", calculate_src_freq(data
));
274 static ssize_t
show_src_clock_sel(struct device
*dev
,
275 struct device_attribute
*devattr
,
278 struct ics932s401_data
*data
= ics932s401_update_device(dev
);
281 if (data
->regs
[ICS932S401_REG_CTRL
] & ICS932S401_MN_ENABLED
)
282 freq
= calculate_src_freq(data
);
284 /* Freq is neatly wrapped up for us */
285 if (data
->regs
[ICS932S401_REG_CTRL
] & ICS932S401_CPU_ALT
&&
286 data
->regs
[ICS932S401_REG_CTRL
] & ICS932S401_SRC_ALT
)
291 return sprintf(buf
, "%d\n", freq
);
294 /* Calculate PCI frequency from the SRC M/N registers. */
295 static int calculate_pci_freq(struct ics932s401_data
*data
)
299 m
= data
->regs
[ICS932S401_REG_SRC_M_CTRL
] & ICS932S401_M_MASK
;
300 n
= data
->regs
[ICS932S401_REG_SRC_N_CTRL
];
302 /* Pull in bits 8 & 9 from the M register */
303 n
|= ((int)data
->regs
[ICS932S401_REG_SRC_M_CTRL
] & 0x80) << 1;
304 n
|= ((int)data
->regs
[ICS932S401_REG_SRC_M_CTRL
] & 0x40) << 3;
306 freq
= BASE_CLOCK
* (n
+ 8) / (m
+ 2);
307 freq
/= divisors
[data
->regs
[ICS932S401_REG_PCISRC_DIVISOR
] >>
308 ICS932S401_PCI_DIVISOR_SHIFT
];
313 static ssize_t
show_pci_clock(struct device
*dev
,
314 struct device_attribute
*devattr
,
317 struct ics932s401_data
*data
= ics932s401_update_device(dev
);
319 return sprintf(buf
, "%d\n", calculate_pci_freq(data
));
322 static ssize_t
show_pci_clock_sel(struct device
*dev
,
323 struct device_attribute
*devattr
,
326 struct ics932s401_data
*data
= ics932s401_update_device(dev
);
329 if (data
->regs
[ICS932S401_REG_CTRL
] & ICS932S401_MN_ENABLED
)
330 freq
= calculate_pci_freq(data
);
334 return sprintf(buf
, "%d\n", freq
);
337 static ssize_t
show_value(struct device
*dev
,
338 struct device_attribute
*devattr
,
341 static ssize_t
show_spread(struct device
*dev
,
342 struct device_attribute
*devattr
,
345 static DEVICE_ATTR(spread_enabled
, S_IRUGO
, show_spread_enabled
, NULL
);
346 static DEVICE_ATTR(cpu_clock_selection
, S_IRUGO
, show_cpu_clock_sel
, NULL
);
347 static DEVICE_ATTR(cpu_clock
, S_IRUGO
, show_cpu_clock
, NULL
);
348 static DEVICE_ATTR(src_clock_selection
, S_IRUGO
, show_src_clock_sel
, NULL
);
349 static DEVICE_ATTR(src_clock
, S_IRUGO
, show_src_clock
, NULL
);
350 static DEVICE_ATTR(pci_clock_selection
, S_IRUGO
, show_pci_clock_sel
, NULL
);
351 static DEVICE_ATTR(pci_clock
, S_IRUGO
, show_pci_clock
, NULL
);
352 static DEVICE_ATTR(usb_clock
, S_IRUGO
, show_value
, NULL
);
353 static DEVICE_ATTR(ref_clock
, S_IRUGO
, show_value
, NULL
);
354 static DEVICE_ATTR(cpu_spread
, S_IRUGO
, show_spread
, NULL
);
355 static DEVICE_ATTR(src_spread
, S_IRUGO
, show_spread
, NULL
);
357 static struct attribute
*ics932s401_attr
[] =
359 &dev_attr_spread_enabled
.attr
,
360 &dev_attr_cpu_clock_selection
.attr
,
361 &dev_attr_cpu_clock
.attr
,
362 &dev_attr_src_clock_selection
.attr
,
363 &dev_attr_src_clock
.attr
,
364 &dev_attr_pci_clock_selection
.attr
,
365 &dev_attr_pci_clock
.attr
,
366 &dev_attr_usb_clock
.attr
,
367 &dev_attr_ref_clock
.attr
,
368 &dev_attr_cpu_spread
.attr
,
369 &dev_attr_src_spread
.attr
,
373 static ssize_t
show_value(struct device
*dev
,
374 struct device_attribute
*devattr
,
379 if (devattr
== &dev_attr_usb_clock
)
381 else if (devattr
== &dev_attr_ref_clock
)
386 return sprintf(buf
, "%d\n", x
);
389 static ssize_t
show_spread(struct device
*dev
,
390 struct device_attribute
*devattr
,
393 struct ics932s401_data
*data
= ics932s401_update_device(dev
);
397 if (!(data
->regs
[ICS932S401_REG_CFG2
] & ICS932S401_CFG1_SPREAD
))
398 return sprintf(buf
, "0%%\n");
400 if (devattr
== &dev_attr_src_spread
)
401 reg
= ICS932S401_REG_SRC_SPREAD1
;
402 else if (devattr
== &dev_attr_cpu_spread
)
403 reg
= ICS932S401_REG_CPU_SPREAD1
;
407 val
= data
->regs
[reg
] | (data
->regs
[reg
+ 1] << 8);
408 val
&= ICS932S401_SPREAD_MASK
;
410 /* Scale 0..2^14 to -0.5. */
411 val
= 500000 * val
/ 16384;
412 return sprintf(buf
, "-0.%lu%%\n", val
);
415 /* Return 0 if detection is successful, -ENODEV otherwise */
416 static int ics932s401_detect(struct i2c_client
*client
, int kind
,
417 struct i2c_board_info
*info
)
419 struct i2c_adapter
*adapter
= client
->adapter
;
421 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_BYTE_DATA
))
425 int vendor
, device
, revision
;
427 vendor
= i2c_smbus_read_word_data(client
,
428 ICS932S401_REG_VENDOR_REV
);
430 revision
= vendor
>> ICS932S401_REV_SHIFT
;
431 vendor
&= ICS932S401_VENDOR_MASK
;
432 if (vendor
!= ICS932S401_VENDOR
)
435 device
= i2c_smbus_read_word_data(client
,
436 ICS932S401_REG_DEVICE
);
438 if (device
!= ICS932S401_DEVICE
)
441 if (revision
!= ICS932S401_REV
)
442 dev_info(&adapter
->dev
, "Unknown revision %d\n",
445 dev_dbg(&adapter
->dev
, "detection forced\n");
447 strlcpy(info
->type
, "ics932s401", I2C_NAME_SIZE
);
452 static int ics932s401_probe(struct i2c_client
*client
,
453 const struct i2c_device_id
*id
)
455 struct ics932s401_data
*data
;
458 data
= kzalloc(sizeof(struct ics932s401_data
), GFP_KERNEL
);
464 i2c_set_clientdata(client
, data
);
465 mutex_init(&data
->lock
);
467 dev_info(&client
->dev
, "%s chip found\n", client
->name
);
469 /* Register sysfs hooks */
470 data
->attrs
.attrs
= ics932s401_attr
;
471 err
= sysfs_create_group(&client
->dev
.kobj
, &data
->attrs
);
483 static int ics932s401_remove(struct i2c_client
*client
)
485 struct ics932s401_data
*data
= i2c_get_clientdata(client
);
487 sysfs_remove_group(&client
->dev
.kobj
, &data
->attrs
);
492 static int __init
ics932s401_init(void)
494 return i2c_add_driver(&ics932s401_driver
);
497 static void __exit
ics932s401_exit(void)
499 i2c_del_driver(&ics932s401_driver
);
502 MODULE_AUTHOR("Darrick J. Wong <djwong@us.ibm.com>");
503 MODULE_DESCRIPTION("ICS932S401 driver");
504 MODULE_LICENSE("GPL");
506 module_init(ics932s401_init
);
507 module_exit(ics932s401_exit
);
509 /* IBM IntelliStation Z30 */
510 MODULE_ALIAS("dmi:bvnIBM:*:rn9228:*");
511 MODULE_ALIAS("dmi:bvnIBM:*:rn9232:*");
513 /* IBM x3650/x3550 */
514 MODULE_ALIAS("dmi:bvnIBM:*:pnIBMSystemx3650*");
515 MODULE_ALIAS("dmi:bvnIBM:*:pnIBMSystemx3550*");