aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhang Rui <rui.zhang@intel.com>2014-01-14 03:46:37 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-01-16 17:13:10 -0500
commit8c4ff6d0094a16809a7ecdd49d71cf06b0a51326 (patch)
tree823a96e063da7f47034cdac659175e970677bc5c
parent6eb2451f7c43c4a7f84ae7b613ea975317b951f1 (diff)
ACPI: fix module autoloading for ACPI enumerated devices
ACPI enumerated devices has ACPI style _HID and _CID strings, all of these strings can be used for both driver loading and matching. Currently, in Platform, I2C and SPI bus, the ACPI style driver matching is supported by invoking acpi_driver_match_device() in bus .match() callback. But, the module autoloading is still broken. For example, there is any ACPI device with _HID "INTABCD" that is enumerated to platform bus, and we have a driver that can probe it. The driver exports its module_alias as "acpi:INTABCD" use the following code static const struct acpi_device_id xxx_acpi_match[] = { { "INTABCD", 0 }, { } }; MODULE_DEVICE_TABLE(acpi, xxx_acpi_match); But, unfortunately, the device' modalias is shown as "platform:INTABCD:00", please refer to modalias_show() and platform_uevent() in drivers/base/platform.c. This results in that the driver will not be loaded automatically when the device node is created, because their modalias do not match. This also applies to I2C and SPI bus. With this patch, the device' modalias will be shown as "acpi:INTABCD" as well. Signed-off-by: Zhang Rui <rui.zhang@intel.com> Acked-by: Mark Brown <broonie@linaro.org> Acked-by: Wolfram Sang <wsa@the-dreams.de> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/base/platform.c12
-rw-r--r--drivers/i2c/i2c-core.c11
-rw-r--r--drivers/spi/spi.c10
3 files changed, 32 insertions, 1 deletions
diff --git a/drivers/base/platform.c b/drivers/base/platform.c
index 3a94b799f166..2f4aea2428b2 100644
--- a/drivers/base/platform.c
+++ b/drivers/base/platform.c
@@ -677,7 +677,13 @@ static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
677 char *buf) 677 char *buf)
678{ 678{
679 struct platform_device *pdev = to_platform_device(dev); 679 struct platform_device *pdev = to_platform_device(dev);
680 int len = snprintf(buf, PAGE_SIZE, "platform:%s\n", pdev->name); 680 int len;
681
682 len = acpi_device_modalias(dev, buf, PAGE_SIZE -1);
683 if (len != -ENODEV)
684 return len;
685
686 len = snprintf(buf, PAGE_SIZE, "platform:%s\n", pdev->name);
681 687
682 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len; 688 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
683} 689}
@@ -699,6 +705,10 @@ static int platform_uevent(struct device *dev, struct kobj_uevent_env *env)
699 if (rc != -ENODEV) 705 if (rc != -ENODEV)
700 return rc; 706 return rc;
701 707
708 rc = acpi_device_uevent_modalias(dev, env);
709 if (rc != -ENODEV)
710 return rc;
711
702 add_uevent_var(env, "MODALIAS=%s%s", PLATFORM_MODULE_PREFIX, 712 add_uevent_var(env, "MODALIAS=%s%s", PLATFORM_MODULE_PREFIX,
703 pdev->name); 713 pdev->name);
704 return 0; 714 return 0;
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c
index d74c0b34248e..c4c5588ec0fb 100644
--- a/drivers/i2c/i2c-core.c
+++ b/drivers/i2c/i2c-core.c
@@ -104,6 +104,11 @@ static int i2c_device_match(struct device *dev, struct device_driver *drv)
104static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env) 104static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
105{ 105{
106 struct i2c_client *client = to_i2c_client(dev); 106 struct i2c_client *client = to_i2c_client(dev);
107 int rc;
108
109 rc = acpi_device_uevent_modalias(dev, env);
110 if (rc != -ENODEV)
111 return rc;
107 112
108 if (add_uevent_var(env, "MODALIAS=%s%s", 113 if (add_uevent_var(env, "MODALIAS=%s%s",
109 I2C_MODULE_PREFIX, client->name)) 114 I2C_MODULE_PREFIX, client->name))
@@ -409,6 +414,12 @@ static ssize_t
409show_modalias(struct device *dev, struct device_attribute *attr, char *buf) 414show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
410{ 415{
411 struct i2c_client *client = to_i2c_client(dev); 416 struct i2c_client *client = to_i2c_client(dev);
417 int len;
418
419 len = acpi_device_modalias(dev, buf, PAGE_SIZE -1);
420 if (len != -ENODEV)
421 return len;
422
412 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name); 423 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
413} 424}
414 425
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index 349ebba4b199..827ff49d3d4f 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -58,6 +58,11 @@ static ssize_t
58modalias_show(struct device *dev, struct device_attribute *a, char *buf) 58modalias_show(struct device *dev, struct device_attribute *a, char *buf)
59{ 59{
60 const struct spi_device *spi = to_spi_device(dev); 60 const struct spi_device *spi = to_spi_device(dev);
61 int len;
62
63 len = acpi_device_modalias(dev, buf, PAGE_SIZE - 1);
64 if (len != -ENODEV)
65 return len;
61 66
62 return sprintf(buf, "%s%s\n", SPI_MODULE_PREFIX, spi->modalias); 67 return sprintf(buf, "%s%s\n", SPI_MODULE_PREFIX, spi->modalias);
63} 68}
@@ -114,6 +119,11 @@ static int spi_match_device(struct device *dev, struct device_driver *drv)
114static int spi_uevent(struct device *dev, struct kobj_uevent_env *env) 119static int spi_uevent(struct device *dev, struct kobj_uevent_env *env)
115{ 120{
116 const struct spi_device *spi = to_spi_device(dev); 121 const struct spi_device *spi = to_spi_device(dev);
122 int rc;
123
124 rc = acpi_device_uevent_modalias(dev, env);
125 if (rc != -ENODEV)
126 return rc;
117 127
118 add_uevent_var(env, "MODALIAS=%s%s", SPI_MODULE_PREFIX, spi->modalias); 128 add_uevent_var(env, "MODALIAS=%s%s", SPI_MODULE_PREFIX, spi->modalias);
119 return 0; 129 return 0;