2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
smsc47b397.c - Part of lm_sensors, Linux kernel modules
|
|
|
|
for hardware monitoring
|
|
|
|
|
|
|
|
Supports the SMSC LPC47B397-NC Super-I/O chip.
|
|
|
|
|
|
|
|
Author/Maintainer: Mark M. Hoffman <mhoffman@lightlink.com>
|
|
|
|
Copyright (C) 2004 Utilitek Systems, Inc.
|
|
|
|
|
|
|
|
derived in part from smsc47m1.c:
|
|
|
|
Copyright (C) 2002 Mark D. Studebaker <mdsxyz123@yahoo.com>
|
|
|
|
Copyright (C) 2004 Jean Delvare <khali@linux-fr.org>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/ioport.h>
|
|
|
|
#include <linux/jiffies.h>
|
|
|
|
#include <linux/i2c.h>
|
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (3/9)
Convert the 10 ISA hardware monitoring drivers (it87, lm78, pc87360,
sis5595, smsc47b397, smsc47m1, via686a, w83627hf, w83627ehf, w83781d) to
explicitely register with i2c-isa. For hybrid drivers (it87, lm78,
w83781d), we now have two separate instances of i2c_driver, one for the
I2C interface of the chip, and one for ISA interface. In the long run,
the one for ISA will be replaced with a different driver type.
At this point, all drivers are working again, except for missing
dependencies in Kconfig.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-07-19 23:51:07 +02:00
|
|
|
#include <linux/i2c-isa.h>
|
2005-07-16 03:39:18 +02:00
|
|
|
#include <linux/hwmon.h>
|
|
|
|
#include <linux/err.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/init.h>
|
2006-01-18 23:19:26 +01:00
|
|
|
#include <linux/mutex.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/io.h>
|
|
|
|
|
|
|
|
/* Address is autodetected, there is no default value */
|
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (5/9)
Call the ISA chip drivers detection function directly instead of relying
on i2c_detect. The net effect is that address lists won't be handled
anymore, but they were mostly useless in the ISA case anyway (pc87360,
smsc47m1, smsc47b397 had already dropped them).
We don't need to handle multiple devices, all we may need is a way to
force a given address instead of the original one (some drivers already
do: sis5595, via686a, w83627hf), and, for drivers supporting multiple
chips, a way to force one given kind. All this may be added later on
demand, but I actually don't think there will be much demand.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-07-19 23:56:35 +02:00
|
|
|
static unsigned short address;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* Super-I/0 registers and commands */
|
|
|
|
|
|
|
|
#define REG 0x2e /* The register to read/write */
|
|
|
|
#define VAL 0x2f /* The value to read/write */
|
|
|
|
|
|
|
|
static inline void superio_outb(int reg, int val)
|
|
|
|
{
|
|
|
|
outb(reg, REG);
|
|
|
|
outb(val, VAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int superio_inb(int reg)
|
|
|
|
{
|
|
|
|
outb(reg, REG);
|
|
|
|
return inb(VAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* select superio logical device */
|
|
|
|
static inline void superio_select(int ld)
|
|
|
|
{
|
|
|
|
superio_outb(0x07, ld);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void superio_enter(void)
|
|
|
|
{
|
|
|
|
outb(0x55, REG);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void superio_exit(void)
|
|
|
|
{
|
|
|
|
outb(0xAA, REG);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SUPERIO_REG_DEVID 0x20
|
|
|
|
#define SUPERIO_REG_DEVREV 0x21
|
|
|
|
#define SUPERIO_REG_BASE_MSB 0x60
|
|
|
|
#define SUPERIO_REG_BASE_LSB 0x61
|
|
|
|
#define SUPERIO_REG_LD8 0x08
|
|
|
|
|
|
|
|
#define SMSC_EXTENT 0x02
|
|
|
|
|
|
|
|
/* 0 <= nr <= 3 */
|
|
|
|
static u8 smsc47b397_reg_temp[] = {0x25, 0x26, 0x27, 0x80};
|
|
|
|
#define SMSC47B397_REG_TEMP(nr) (smsc47b397_reg_temp[(nr)])
|
|
|
|
|
|
|
|
/* 0 <= nr <= 3 */
|
|
|
|
#define SMSC47B397_REG_FAN_LSB(nr) (0x28 + 2 * (nr))
|
|
|
|
#define SMSC47B397_REG_FAN_MSB(nr) (0x29 + 2 * (nr))
|
|
|
|
|
|
|
|
struct smsc47b397_data {
|
|
|
|
struct i2c_client client;
|
2005-07-16 03:39:18 +02:00
|
|
|
struct class_device *class_dev;
|
2006-01-18 23:19:26 +01:00
|
|
|
struct mutex lock;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-01-18 23:19:26 +01:00
|
|
|
struct mutex update_lock;
|
2005-04-17 00:20:36 +02:00
|
|
|
unsigned long last_updated; /* in jiffies */
|
|
|
|
int valid;
|
|
|
|
|
|
|
|
/* register values */
|
|
|
|
u16 fan[4];
|
|
|
|
u8 temp[4];
|
|
|
|
};
|
|
|
|
|
|
|
|
static int smsc47b397_read_value(struct i2c_client *client, u8 reg)
|
|
|
|
{
|
|
|
|
struct smsc47b397_data *data = i2c_get_clientdata(client);
|
|
|
|
int res;
|
|
|
|
|
2006-01-18 23:19:26 +01:00
|
|
|
mutex_lock(&data->lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
outb(reg, client->addr);
|
|
|
|
res = inb_p(client->addr + 1);
|
2006-01-18 23:19:26 +01:00
|
|
|
mutex_unlock(&data->lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct smsc47b397_data *smsc47b397_update_device(struct device *dev)
|
|
|
|
{
|
|
|
|
struct i2c_client *client = to_i2c_client(dev);
|
|
|
|
struct smsc47b397_data *data = i2c_get_clientdata(client);
|
|
|
|
int i;
|
|
|
|
|
2006-01-18 23:19:26 +01:00
|
|
|
mutex_lock(&data->update_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (time_after(jiffies, data->last_updated + HZ) || !data->valid) {
|
|
|
|
dev_dbg(&client->dev, "starting device update...\n");
|
|
|
|
|
|
|
|
/* 4 temperature inputs, 4 fan inputs */
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
data->temp[i] = smsc47b397_read_value(client,
|
|
|
|
SMSC47B397_REG_TEMP(i));
|
|
|
|
|
|
|
|
/* must read LSB first */
|
|
|
|
data->fan[i] = smsc47b397_read_value(client,
|
|
|
|
SMSC47B397_REG_FAN_LSB(i));
|
|
|
|
data->fan[i] |= smsc47b397_read_value(client,
|
|
|
|
SMSC47B397_REG_FAN_MSB(i)) << 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
data->last_updated = jiffies;
|
|
|
|
data->valid = 1;
|
|
|
|
|
|
|
|
dev_dbg(&client->dev, "... device update complete\n");
|
|
|
|
}
|
|
|
|
|
2006-01-18 23:19:26 +01:00
|
|
|
mutex_unlock(&data->update_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TEMP: 0.001C/bit (-128C to +127C)
|
|
|
|
REG: 1C/bit, two's complement */
|
|
|
|
static int temp_from_reg(u8 reg)
|
|
|
|
{
|
|
|
|
return (s8)reg * 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 0 <= nr <= 3 */
|
|
|
|
static ssize_t show_temp(struct device *dev, char *buf, int nr)
|
|
|
|
{
|
|
|
|
struct smsc47b397_data *data = smsc47b397_update_device(dev);
|
|
|
|
return sprintf(buf, "%d\n", temp_from_reg(data->temp[nr]));
|
|
|
|
}
|
|
|
|
|
|
|
|
#define sysfs_temp(num) \
|
2005-05-17 12:42:25 +02:00
|
|
|
static ssize_t show_temp##num(struct device *dev, struct device_attribute *attr, char *buf) \
|
2005-04-17 00:20:36 +02:00
|
|
|
{ \
|
|
|
|
return show_temp(dev, buf, num-1); \
|
|
|
|
} \
|
|
|
|
static DEVICE_ATTR(temp##num##_input, S_IRUGO, show_temp##num, NULL)
|
|
|
|
|
|
|
|
sysfs_temp(1);
|
|
|
|
sysfs_temp(2);
|
|
|
|
sysfs_temp(3);
|
|
|
|
sysfs_temp(4);
|
|
|
|
|
|
|
|
#define device_create_file_temp(client, num) \
|
|
|
|
device_create_file(&client->dev, &dev_attr_temp##num##_input)
|
|
|
|
|
|
|
|
/* FAN: 1 RPM/bit
|
|
|
|
REG: count of 90kHz pulses / revolution */
|
|
|
|
static int fan_from_reg(u16 reg)
|
|
|
|
{
|
|
|
|
return 90000 * 60 / reg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 0 <= nr <= 3 */
|
|
|
|
static ssize_t show_fan(struct device *dev, char *buf, int nr)
|
|
|
|
{
|
|
|
|
struct smsc47b397_data *data = smsc47b397_update_device(dev);
|
|
|
|
return sprintf(buf, "%d\n", fan_from_reg(data->fan[nr]));
|
|
|
|
}
|
|
|
|
|
|
|
|
#define sysfs_fan(num) \
|
2005-05-17 12:42:25 +02:00
|
|
|
static ssize_t show_fan##num(struct device *dev, struct device_attribute *attr, char *buf) \
|
2005-04-17 00:20:36 +02:00
|
|
|
{ \
|
|
|
|
return show_fan(dev, buf, num-1); \
|
|
|
|
} \
|
|
|
|
static DEVICE_ATTR(fan##num##_input, S_IRUGO, show_fan##num, NULL)
|
|
|
|
|
|
|
|
sysfs_fan(1);
|
|
|
|
sysfs_fan(2);
|
|
|
|
sysfs_fan(3);
|
|
|
|
sysfs_fan(4);
|
|
|
|
|
|
|
|
#define device_create_file_fan(client, num) \
|
|
|
|
device_create_file(&client->dev, &dev_attr_fan##num##_input)
|
|
|
|
|
|
|
|
static int smsc47b397_detach_client(struct i2c_client *client)
|
|
|
|
{
|
2005-07-16 03:39:18 +02:00
|
|
|
struct smsc47b397_data *data = i2c_get_clientdata(client);
|
2005-04-17 00:20:36 +02:00
|
|
|
int err;
|
|
|
|
|
2005-07-16 03:39:18 +02:00
|
|
|
hwmon_device_unregister(data->class_dev);
|
|
|
|
|
2005-07-27 22:14:49 +02:00
|
|
|
if ((err = i2c_detach_client(client)))
|
2005-04-17 00:20:36 +02:00
|
|
|
return err;
|
|
|
|
|
|
|
|
release_region(client->addr, SMSC_EXTENT);
|
2005-07-16 03:39:18 +02:00
|
|
|
kfree(data);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (5/9)
Call the ISA chip drivers detection function directly instead of relying
on i2c_detect. The net effect is that address lists won't be handled
anymore, but they were mostly useless in the ISA case anyway (pc87360,
smsc47m1, smsc47b397 had already dropped them).
We don't need to handle multiple devices, all we may need is a way to
force a given address instead of the original one (some drivers already
do: sis5595, via686a, w83627hf), and, for drivers supporting multiple
chips, a way to force one given kind. All this may be added later on
demand, but I actually don't think there will be much demand.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-07-19 23:56:35 +02:00
|
|
|
static int smsc47b397_detect(struct i2c_adapter *adapter);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
static struct i2c_driver smsc47b397_driver = {
|
2005-11-26 20:37:41 +01:00
|
|
|
.driver = {
|
|
|
|
.name = "smsc47b397",
|
|
|
|
},
|
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (5/9)
Call the ISA chip drivers detection function directly instead of relying
on i2c_detect. The net effect is that address lists won't be handled
anymore, but they were mostly useless in the ISA case anyway (pc87360,
smsc47m1, smsc47b397 had already dropped them).
We don't need to handle multiple devices, all we may need is a way to
force a given address instead of the original one (some drivers already
do: sis5595, via686a, w83627hf), and, for drivers supporting multiple
chips, a way to force one given kind. All this may be added later on
demand, but I actually don't think there will be much demand.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-07-19 23:56:35 +02:00
|
|
|
.attach_adapter = smsc47b397_detect,
|
2005-04-17 00:20:36 +02:00
|
|
|
.detach_client = smsc47b397_detach_client,
|
|
|
|
};
|
|
|
|
|
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (5/9)
Call the ISA chip drivers detection function directly instead of relying
on i2c_detect. The net effect is that address lists won't be handled
anymore, but they were mostly useless in the ISA case anyway (pc87360,
smsc47m1, smsc47b397 had already dropped them).
We don't need to handle multiple devices, all we may need is a way to
force a given address instead of the original one (some drivers already
do: sis5595, via686a, w83627hf), and, for drivers supporting multiple
chips, a way to force one given kind. All this may be added later on
demand, but I actually don't think there will be much demand.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-07-19 23:56:35 +02:00
|
|
|
static int smsc47b397_detect(struct i2c_adapter *adapter)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct i2c_client *new_client;
|
|
|
|
struct smsc47b397_data *data;
|
|
|
|
int err = 0;
|
|
|
|
|
2005-11-26 20:37:41 +01:00
|
|
|
if (!request_region(address, SMSC_EXTENT,
|
|
|
|
smsc47b397_driver.driver.name)) {
|
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (5/9)
Call the ISA chip drivers detection function directly instead of relying
on i2c_detect. The net effect is that address lists won't be handled
anymore, but they were mostly useless in the ISA case anyway (pc87360,
smsc47m1, smsc47b397 had already dropped them).
We don't need to handle multiple devices, all we may need is a way to
force a given address instead of the original one (some drivers already
do: sis5595, via686a, w83627hf), and, for drivers supporting multiple
chips, a way to force one given kind. All this may be added later on
demand, but I actually don't think there will be much demand.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-07-19 23:56:35 +02:00
|
|
|
dev_err(&adapter->dev, "Region 0x%x already in use!\n",
|
|
|
|
address);
|
2005-04-17 00:20:36 +02:00
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
|
2005-10-17 23:08:32 +02:00
|
|
|
if (!(data = kzalloc(sizeof(struct smsc47b397_data), GFP_KERNEL))) {
|
2005-04-17 00:20:36 +02:00
|
|
|
err = -ENOMEM;
|
|
|
|
goto error_release;
|
|
|
|
}
|
|
|
|
|
|
|
|
new_client = &data->client;
|
|
|
|
i2c_set_clientdata(new_client, data);
|
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (5/9)
Call the ISA chip drivers detection function directly instead of relying
on i2c_detect. The net effect is that address lists won't be handled
anymore, but they were mostly useless in the ISA case anyway (pc87360,
smsc47m1, smsc47b397 had already dropped them).
We don't need to handle multiple devices, all we may need is a way to
force a given address instead of the original one (some drivers already
do: sis5595, via686a, w83627hf), and, for drivers supporting multiple
chips, a way to force one given kind. All this may be added later on
demand, but I actually don't think there will be much demand.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-07-19 23:56:35 +02:00
|
|
|
new_client->addr = address;
|
2006-01-18 23:19:26 +01:00
|
|
|
mutex_init(&data->lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
new_client->adapter = adapter;
|
|
|
|
new_client->driver = &smsc47b397_driver;
|
|
|
|
new_client->flags = 0;
|
|
|
|
|
|
|
|
strlcpy(new_client->name, "smsc47b397", I2C_NAME_SIZE);
|
|
|
|
|
2006-01-18 23:19:26 +01:00
|
|
|
mutex_init(&data->update_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if ((err = i2c_attach_client(new_client)))
|
|
|
|
goto error_free;
|
|
|
|
|
2005-07-16 03:39:18 +02:00
|
|
|
data->class_dev = hwmon_device_register(&new_client->dev);
|
|
|
|
if (IS_ERR(data->class_dev)) {
|
|
|
|
err = PTR_ERR(data->class_dev);
|
|
|
|
goto error_detach;
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
device_create_file_temp(new_client, 1);
|
|
|
|
device_create_file_temp(new_client, 2);
|
|
|
|
device_create_file_temp(new_client, 3);
|
|
|
|
device_create_file_temp(new_client, 4);
|
|
|
|
|
|
|
|
device_create_file_fan(new_client, 1);
|
|
|
|
device_create_file_fan(new_client, 2);
|
|
|
|
device_create_file_fan(new_client, 3);
|
|
|
|
device_create_file_fan(new_client, 4);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2005-07-16 03:39:18 +02:00
|
|
|
error_detach:
|
|
|
|
i2c_detach_client(new_client);
|
2005-04-17 00:20:36 +02:00
|
|
|
error_free:
|
2005-08-25 23:49:14 +02:00
|
|
|
kfree(data);
|
2005-04-17 00:20:36 +02:00
|
|
|
error_release:
|
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (5/9)
Call the ISA chip drivers detection function directly instead of relying
on i2c_detect. The net effect is that address lists won't be handled
anymore, but they were mostly useless in the ISA case anyway (pc87360,
smsc47m1, smsc47b397 had already dropped them).
We don't need to handle multiple devices, all we may need is a way to
force a given address instead of the original one (some drivers already
do: sis5595, via686a, w83627hf), and, for drivers supporting multiple
chips, a way to force one given kind. All this may be added later on
demand, but I actually don't think there will be much demand.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-07-19 23:56:35 +02:00
|
|
|
release_region(address, SMSC_EXTENT);
|
2005-04-17 00:20:36 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (5/9)
Call the ISA chip drivers detection function directly instead of relying
on i2c_detect. The net effect is that address lists won't be handled
anymore, but they were mostly useless in the ISA case anyway (pc87360,
smsc47m1, smsc47b397 had already dropped them).
We don't need to handle multiple devices, all we may need is a way to
force a given address instead of the original one (some drivers already
do: sis5595, via686a, w83627hf), and, for drivers supporting multiple
chips, a way to force one given kind. All this may be added later on
demand, but I actually don't think there will be much demand.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-07-19 23:56:35 +02:00
|
|
|
static int __init smsc47b397_find(unsigned short *addr)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
u8 id, rev;
|
|
|
|
|
|
|
|
superio_enter();
|
|
|
|
id = superio_inb(SUPERIO_REG_DEVID);
|
|
|
|
|
2005-10-17 23:01:45 +02:00
|
|
|
if ((id != 0x6f) && (id != 0x81)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
superio_exit();
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
rev = superio_inb(SUPERIO_REG_DEVREV);
|
|
|
|
|
|
|
|
superio_select(SUPERIO_REG_LD8);
|
|
|
|
*addr = (superio_inb(SUPERIO_REG_BASE_MSB) << 8)
|
|
|
|
| superio_inb(SUPERIO_REG_BASE_LSB);
|
|
|
|
|
2005-10-17 23:01:45 +02:00
|
|
|
printk(KERN_INFO "smsc47b397: found SMSC %s "
|
|
|
|
"(base address 0x%04x, revision %u)\n",
|
|
|
|
id == 0x81 ? "SCH5307-NS" : "LPC47B397-NC", *addr, rev);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
superio_exit();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int __init smsc47b397_init(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (5/9)
Call the ISA chip drivers detection function directly instead of relying
on i2c_detect. The net effect is that address lists won't be handled
anymore, but they were mostly useless in the ISA case anyway (pc87360,
smsc47m1, smsc47b397 had already dropped them).
We don't need to handle multiple devices, all we may need is a way to
force a given address instead of the original one (some drivers already
do: sis5595, via686a, w83627hf), and, for drivers supporting multiple
chips, a way to force one given kind. All this may be added later on
demand, but I actually don't think there will be much demand.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-07-19 23:56:35 +02:00
|
|
|
if ((ret = smsc47b397_find(&address)))
|
2005-04-17 00:20:36 +02:00
|
|
|
return ret;
|
|
|
|
|
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (3/9)
Convert the 10 ISA hardware monitoring drivers (it87, lm78, pc87360,
sis5595, smsc47b397, smsc47m1, via686a, w83627hf, w83627ehf, w83781d) to
explicitely register with i2c-isa. For hybrid drivers (it87, lm78,
w83781d), we now have two separate instances of i2c_driver, one for the
I2C interface of the chip, and one for ISA interface. In the long run,
the one for ISA will be replaced with a different driver type.
At this point, all drivers are working again, except for missing
dependencies in Kconfig.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-07-19 23:51:07 +02:00
|
|
|
return i2c_isa_add_driver(&smsc47b397_driver);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit smsc47b397_exit(void)
|
|
|
|
{
|
[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (3/9)
Convert the 10 ISA hardware monitoring drivers (it87, lm78, pc87360,
sis5595, smsc47b397, smsc47m1, via686a, w83627hf, w83627ehf, w83781d) to
explicitely register with i2c-isa. For hybrid drivers (it87, lm78,
w83781d), we now have two separate instances of i2c_driver, one for the
I2C interface of the chip, and one for ISA interface. In the long run,
the one for ISA will be replaced with a different driver type.
At this point, all drivers are working again, except for missing
dependencies in Kconfig.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-07-19 23:51:07 +02:00
|
|
|
i2c_isa_del_driver(&smsc47b397_driver);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Mark M. Hoffman <mhoffman@lightlink.com>");
|
|
|
|
MODULE_DESCRIPTION("SMSC LPC47B397 driver");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
|
|
|
module_init(smsc47b397_init);
|
|
|
|
module_exit(smsc47b397_exit);
|