|
@@ -37,34 +37,22 @@
|
|
struct wf_lm75_sensor {
|
|
struct wf_lm75_sensor {
|
|
int ds1775 : 1;
|
|
int ds1775 : 1;
|
|
int inited : 1;
|
|
int inited : 1;
|
|
- struct i2c_client i2c;
|
|
|
|
|
|
+ struct i2c_client *i2c;
|
|
struct wf_sensor sens;
|
|
struct wf_sensor sens;
|
|
};
|
|
};
|
|
#define wf_to_lm75(c) container_of(c, struct wf_lm75_sensor, sens)
|
|
#define wf_to_lm75(c) container_of(c, struct wf_lm75_sensor, sens)
|
|
-#define i2c_to_lm75(c) container_of(c, struct wf_lm75_sensor, i2c)
|
|
|
|
-
|
|
|
|
-static int wf_lm75_attach(struct i2c_adapter *adapter);
|
|
|
|
-static int wf_lm75_detach(struct i2c_client *client);
|
|
|
|
-
|
|
|
|
-static struct i2c_driver wf_lm75_driver = {
|
|
|
|
- .driver = {
|
|
|
|
- .name = "wf_lm75",
|
|
|
|
- },
|
|
|
|
- .attach_adapter = wf_lm75_attach,
|
|
|
|
- .detach_client = wf_lm75_detach,
|
|
|
|
-};
|
|
|
|
|
|
|
|
static int wf_lm75_get(struct wf_sensor *sr, s32 *value)
|
|
static int wf_lm75_get(struct wf_sensor *sr, s32 *value)
|
|
{
|
|
{
|
|
struct wf_lm75_sensor *lm = wf_to_lm75(sr);
|
|
struct wf_lm75_sensor *lm = wf_to_lm75(sr);
|
|
s32 data;
|
|
s32 data;
|
|
|
|
|
|
- if (lm->i2c.adapter == NULL)
|
|
|
|
|
|
+ if (lm->i2c == NULL)
|
|
return -ENODEV;
|
|
return -ENODEV;
|
|
|
|
|
|
/* Init chip if necessary */
|
|
/* Init chip if necessary */
|
|
if (!lm->inited) {
|
|
if (!lm->inited) {
|
|
- u8 cfg_new, cfg = (u8)i2c_smbus_read_byte_data(&lm->i2c, 1);
|
|
|
|
|
|
+ u8 cfg_new, cfg = (u8)i2c_smbus_read_byte_data(lm->i2c, 1);
|
|
|
|
|
|
DBG("wf_lm75: Initializing %s, cfg was: %02x\n",
|
|
DBG("wf_lm75: Initializing %s, cfg was: %02x\n",
|
|
sr->name, cfg);
|
|
sr->name, cfg);
|
|
@@ -73,7 +61,7 @@ static int wf_lm75_get(struct wf_sensor *sr, s32 *value)
|
|
* the firmware for now
|
|
* the firmware for now
|
|
*/
|
|
*/
|
|
cfg_new = cfg & ~0x01;
|
|
cfg_new = cfg & ~0x01;
|
|
- i2c_smbus_write_byte_data(&lm->i2c, 1, cfg_new);
|
|
|
|
|
|
+ i2c_smbus_write_byte_data(lm->i2c, 1, cfg_new);
|
|
lm->inited = 1;
|
|
lm->inited = 1;
|
|
|
|
|
|
/* If we just powered it up, let's wait 200 ms */
|
|
/* If we just powered it up, let's wait 200 ms */
|
|
@@ -81,7 +69,7 @@ static int wf_lm75_get(struct wf_sensor *sr, s32 *value)
|
|
}
|
|
}
|
|
|
|
|
|
/* Read temperature register */
|
|
/* Read temperature register */
|
|
- data = (s32)le16_to_cpu(i2c_smbus_read_word_data(&lm->i2c, 0));
|
|
|
|
|
|
+ data = (s32)le16_to_cpu(i2c_smbus_read_word_data(lm->i2c, 0));
|
|
data <<= 8;
|
|
data <<= 8;
|
|
*value = data;
|
|
*value = data;
|
|
|
|
|
|
@@ -92,12 +80,6 @@ static void wf_lm75_release(struct wf_sensor *sr)
|
|
{
|
|
{
|
|
struct wf_lm75_sensor *lm = wf_to_lm75(sr);
|
|
struct wf_lm75_sensor *lm = wf_to_lm75(sr);
|
|
|
|
|
|
- /* check if client is registered and detach from i2c */
|
|
|
|
- if (lm->i2c.adapter) {
|
|
|
|
- i2c_detach_client(&lm->i2c);
|
|
|
|
- lm->i2c.adapter = NULL;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
kfree(lm);
|
|
kfree(lm);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -107,59 +89,77 @@ static struct wf_sensor_ops wf_lm75_ops = {
|
|
.owner = THIS_MODULE,
|
|
.owner = THIS_MODULE,
|
|
};
|
|
};
|
|
|
|
|
|
-static struct wf_lm75_sensor *wf_lm75_create(struct i2c_adapter *adapter,
|
|
|
|
- u8 addr, int ds1775,
|
|
|
|
- const char *loc)
|
|
|
|
|
|
+static int wf_lm75_probe(struct i2c_client *client,
|
|
|
|
+ const struct i2c_device_id *id)
|
|
{
|
|
{
|
|
struct wf_lm75_sensor *lm;
|
|
struct wf_lm75_sensor *lm;
|
|
int rc;
|
|
int rc;
|
|
|
|
|
|
- DBG("wf_lm75: creating %s device at address 0x%02x\n",
|
|
|
|
- ds1775 ? "ds1775" : "lm75", addr);
|
|
|
|
-
|
|
|
|
lm = kzalloc(sizeof(struct wf_lm75_sensor), GFP_KERNEL);
|
|
lm = kzalloc(sizeof(struct wf_lm75_sensor), GFP_KERNEL);
|
|
if (lm == NULL)
|
|
if (lm == NULL)
|
|
- return NULL;
|
|
|
|
|
|
+ return -ENODEV;
|
|
|
|
+
|
|
|
|
+ lm->inited = 0;
|
|
|
|
+ lm->ds1775 = id->driver_data;
|
|
|
|
+ lm->i2c = client;
|
|
|
|
+ lm->sens.name = client->dev.platform_data;
|
|
|
|
+ lm->sens.ops = &wf_lm75_ops;
|
|
|
|
+ i2c_set_clientdata(client, lm);
|
|
|
|
+
|
|
|
|
+ rc = wf_register_sensor(&lm->sens);
|
|
|
|
+ if (rc) {
|
|
|
|
+ i2c_set_clientdata(client, NULL);
|
|
|
|
+ kfree(lm);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return rc;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static struct i2c_client *wf_lm75_create(struct i2c_adapter *adapter,
|
|
|
|
+ u8 addr, int ds1775,
|
|
|
|
+ const char *loc)
|
|
|
|
+{
|
|
|
|
+ struct i2c_board_info info;
|
|
|
|
+ struct i2c_client *client;
|
|
|
|
+ char *name;
|
|
|
|
+
|
|
|
|
+ DBG("wf_lm75: creating %s device at address 0x%02x\n",
|
|
|
|
+ ds1775 ? "ds1775" : "lm75", addr);
|
|
|
|
|
|
/* Usual rant about sensor names not beeing very consistent in
|
|
/* Usual rant about sensor names not beeing very consistent in
|
|
* the device-tree, oh well ...
|
|
* the device-tree, oh well ...
|
|
* Add more entries below as you deal with more setups
|
|
* Add more entries below as you deal with more setups
|
|
*/
|
|
*/
|
|
if (!strcmp(loc, "Hard drive") || !strcmp(loc, "DRIVE BAY"))
|
|
if (!strcmp(loc, "Hard drive") || !strcmp(loc, "DRIVE BAY"))
|
|
- lm->sens.name = "hd-temp";
|
|
|
|
|
|
+ name = "hd-temp";
|
|
else if (!strcmp(loc, "Incoming Air Temp"))
|
|
else if (!strcmp(loc, "Incoming Air Temp"))
|
|
- lm->sens.name = "incoming-air-temp";
|
|
|
|
|
|
+ name = "incoming-air-temp";
|
|
else if (!strcmp(loc, "ODD Temp"))
|
|
else if (!strcmp(loc, "ODD Temp"))
|
|
- lm->sens.name = "optical-drive-temp";
|
|
|
|
|
|
+ name = "optical-drive-temp";
|
|
else if (!strcmp(loc, "HD Temp"))
|
|
else if (!strcmp(loc, "HD Temp"))
|
|
- lm->sens.name = "hard-drive-temp";
|
|
|
|
|
|
+ name = "hard-drive-temp";
|
|
else
|
|
else
|
|
goto fail;
|
|
goto fail;
|
|
|
|
|
|
- lm->inited = 0;
|
|
|
|
- lm->sens.ops = &wf_lm75_ops;
|
|
|
|
- lm->ds1775 = ds1775;
|
|
|
|
- lm->i2c.addr = (addr >> 1) & 0x7f;
|
|
|
|
- lm->i2c.adapter = adapter;
|
|
|
|
- lm->i2c.driver = &wf_lm75_driver;
|
|
|
|
- strncpy(lm->i2c.name, lm->sens.name, I2C_NAME_SIZE-1);
|
|
|
|
-
|
|
|
|
- rc = i2c_attach_client(&lm->i2c);
|
|
|
|
- if (rc) {
|
|
|
|
- printk(KERN_ERR "windfarm: failed to attach %s %s to i2c,"
|
|
|
|
- " err %d\n", ds1775 ? "ds1775" : "lm75",
|
|
|
|
- lm->i2c.name, rc);
|
|
|
|
- goto fail;
|
|
|
|
- }
|
|
|
|
|
|
+ memset(&info, 0, sizeof(struct i2c_board_info));
|
|
|
|
+ info.addr = (addr >> 1) & 0x7f;
|
|
|
|
+ info.platform_data = name;
|
|
|
|
+ strlcpy(info.type, ds1775 ? "wf_ds1775" : "wf_lm75", I2C_NAME_SIZE);
|
|
|
|
|
|
- if (wf_register_sensor(&lm->sens)) {
|
|
|
|
- i2c_detach_client(&lm->i2c);
|
|
|
|
|
|
+ client = i2c_new_device(adapter, &info);
|
|
|
|
+ if (client == NULL) {
|
|
|
|
+ printk(KERN_ERR "windfarm: failed to attach %s %s to i2c\n",
|
|
|
|
+ ds1775 ? "ds1775" : "lm75", name);
|
|
goto fail;
|
|
goto fail;
|
|
}
|
|
}
|
|
|
|
|
|
- return lm;
|
|
|
|
|
|
+ /*
|
|
|
|
+ * Let i2c-core delete that device on driver removal.
|
|
|
|
+ * This is safe because i2c-core holds the core_lock mutex for us.
|
|
|
|
+ */
|
|
|
|
+ list_add_tail(&client->detected, &client->driver->clients);
|
|
|
|
+ return client;
|
|
fail:
|
|
fail:
|
|
- kfree(lm);
|
|
|
|
return NULL;
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -202,21 +202,38 @@ static int wf_lm75_attach(struct i2c_adapter *adapter)
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
-static int wf_lm75_detach(struct i2c_client *client)
|
|
|
|
|
|
+static int wf_lm75_remove(struct i2c_client *client)
|
|
{
|
|
{
|
|
- struct wf_lm75_sensor *lm = i2c_to_lm75(client);
|
|
|
|
|
|
+ struct wf_lm75_sensor *lm = i2c_get_clientdata(client);
|
|
|
|
|
|
DBG("wf_lm75: i2c detatch called for %s\n", lm->sens.name);
|
|
DBG("wf_lm75: i2c detatch called for %s\n", lm->sens.name);
|
|
|
|
|
|
/* Mark client detached */
|
|
/* Mark client detached */
|
|
- lm->i2c.adapter = NULL;
|
|
|
|
|
|
+ lm->i2c = NULL;
|
|
|
|
|
|
/* release sensor */
|
|
/* release sensor */
|
|
wf_unregister_sensor(&lm->sens);
|
|
wf_unregister_sensor(&lm->sens);
|
|
|
|
|
|
|
|
+ i2c_set_clientdata(client, NULL);
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static const struct i2c_device_id wf_lm75_id[] = {
|
|
|
|
+ { "wf_lm75", 0 },
|
|
|
|
+ { "wf_ds1775", 1 },
|
|
|
|
+ { }
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct i2c_driver wf_lm75_driver = {
|
|
|
|
+ .driver = {
|
|
|
|
+ .name = "wf_lm75",
|
|
|
|
+ },
|
|
|
|
+ .attach_adapter = wf_lm75_attach,
|
|
|
|
+ .probe = wf_lm75_probe,
|
|
|
|
+ .remove = wf_lm75_remove,
|
|
|
|
+ .id_table = wf_lm75_id,
|
|
|
|
+};
|
|
|
|
+
|
|
static int __init wf_lm75_sensor_init(void)
|
|
static int __init wf_lm75_sensor_init(void)
|
|
{
|
|
{
|
|
/* Don't register on old machines that use therm_pm72 for now */
|
|
/* Don't register on old machines that use therm_pm72 for now */
|