mirror of
https://gitee.com/openharmony/kernel_linux
synced 2025-04-16 22:30:43 +00:00
hwmon: (lm90) Add OF device ID table
The driver doesn't have a struct of_device_id table but supported devices are registered via Device Trees. This is working on the assumption that a I2C device registered via OF will always match a legacy I2C device ID and that the MODALIAS reported will always be of the form i2c:<device>. But this could change in the future so the correct approach is to have an OF device ID table if the devices are registered via OF. Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
00c0f9d3ae
commit
df8d57bf8a
@ -92,6 +92,7 @@
|
|||||||
#include <linux/hwmon.h>
|
#include <linux/hwmon.h>
|
||||||
#include <linux/err.h>
|
#include <linux/err.h>
|
||||||
#include <linux/mutex.h>
|
#include <linux/mutex.h>
|
||||||
|
#include <linux/of_device.h>
|
||||||
#include <linux/sysfs.h>
|
#include <linux/sysfs.h>
|
||||||
#include <linux/interrupt.h>
|
#include <linux/interrupt.h>
|
||||||
#include <linux/regulator/consumer.h>
|
#include <linux/regulator/consumer.h>
|
||||||
@ -235,6 +236,99 @@ static const struct i2c_device_id lm90_id[] = {
|
|||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(i2c, lm90_id);
|
MODULE_DEVICE_TABLE(i2c, lm90_id);
|
||||||
|
|
||||||
|
static const struct of_device_id lm90_of_match[] = {
|
||||||
|
{
|
||||||
|
.compatible = "adi,adm1032",
|
||||||
|
.data = (void *)adm1032
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "adi,adt7461",
|
||||||
|
.data = (void *)adt7461
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "adi,adt7461a",
|
||||||
|
.data = (void *)adt7461
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "gmt,g781",
|
||||||
|
.data = (void *)g781
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "national,lm90",
|
||||||
|
.data = (void *)lm90
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "national,lm86",
|
||||||
|
.data = (void *)lm86
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "national,lm89",
|
||||||
|
.data = (void *)lm86
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "national,lm99",
|
||||||
|
.data = (void *)lm99
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "dallas,max6646",
|
||||||
|
.data = (void *)max6646
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "dallas,max6647",
|
||||||
|
.data = (void *)max6646
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "dallas,max6649",
|
||||||
|
.data = (void *)max6646
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "dallas,max6657",
|
||||||
|
.data = (void *)max6657
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "dallas,max6658",
|
||||||
|
.data = (void *)max6657
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "dallas,max6659",
|
||||||
|
.data = (void *)max6659
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "dallas,max6680",
|
||||||
|
.data = (void *)max6680
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "dallas,max6681",
|
||||||
|
.data = (void *)max6680
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "dallas,max6695",
|
||||||
|
.data = (void *)max6696
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "dallas,max6696",
|
||||||
|
.data = (void *)max6696
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "onnn,nct1008",
|
||||||
|
.data = (void *)adt7461
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "winbond,w83l771",
|
||||||
|
.data = (void *)w83l771
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "nxp,sa56004",
|
||||||
|
.data = (void *)sa56004
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.compatible = "ti,tmp451",
|
||||||
|
.data = (void *)tmp451
|
||||||
|
},
|
||||||
|
{ },
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(of, lm90_of_match);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* chip type specific parameters
|
* chip type specific parameters
|
||||||
*/
|
*/
|
||||||
@ -1677,6 +1771,9 @@ static int lm90_probe(struct i2c_client *client,
|
|||||||
mutex_init(&data->update_lock);
|
mutex_init(&data->update_lock);
|
||||||
|
|
||||||
/* Set the device type */
|
/* Set the device type */
|
||||||
|
if (client->dev.of_node)
|
||||||
|
data->kind = (enum chips)of_device_get_match_data(&client->dev);
|
||||||
|
else
|
||||||
data->kind = id->driver_data;
|
data->kind = id->driver_data;
|
||||||
if (data->kind == adm1032) {
|
if (data->kind == adm1032) {
|
||||||
if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
|
if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
|
||||||
@ -1816,6 +1913,7 @@ static struct i2c_driver lm90_driver = {
|
|||||||
.class = I2C_CLASS_HWMON,
|
.class = I2C_CLASS_HWMON,
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "lm90",
|
.name = "lm90",
|
||||||
|
.of_match_table = of_match_ptr(lm90_of_match),
|
||||||
},
|
},
|
||||||
.probe = lm90_probe,
|
.probe = lm90_probe,
|
||||||
.alert = lm90_alert,
|
.alert = lm90_alert,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user