Re: [PATCH v5] i2c: i801: Register optional lis3lv02d I2C device on Dell machines

2019-06-07 Thread Wolfram Sang
On Thu, Jun 06, 2019 at 08:18:45PM +0200, Pali Rohár wrote:
> Dell platform team told us that some (DMI whitelisted) Dell Latitude
> machines have ST microelectronics accelerometer at I2C address 0x29.
> 
> Presence of that ST microelectronics accelerometer is verified by existence
> of SMO88xx ACPI device which represent that accelerometer. Unfortunately
> ACPI device does not specify I2C address.
> 
> This patch registers lis3lv02d device for selected Dell Latitude machines
> at I2C address 0x29 after detection. And for Dell Vostro V131 machine at
> I2C address 0x1d which was manually detected.
> 
> Finally commit a7ae81952cda ("i2c: i801: Allow ACPI SystemIO OpRegion to
> conflict with PCI BAR") allowed to use i2c-i801 driver on Dell machines so
> lis3lv02d correctly initialize accelerometer.
> 
> Tested on Dell Latitude E6440.
> 
> Signed-off-by: Pali Rohár 
> 

Applied to for-next, thanks for keeping at it!



signature.asc
Description: PGP signature


Re: [PATCH v5] i2c: i801: Register optional lis3lv02d I2C device on Dell machines

2019-06-07 Thread Jean Delvare
On Thu,  6 Jun 2019 20:18:45 +0200, Pali Rohár wrote:
> Dell platform team told us that some (DMI whitelisted) Dell Latitude
> machines have ST microelectronics accelerometer at I2C address 0x29.
> 
> Presence of that ST microelectronics accelerometer is verified by existence
> of SMO88xx ACPI device which represent that accelerometer. Unfortunately
> ACPI device does not specify I2C address.
> 
> This patch registers lis3lv02d device for selected Dell Latitude machines
> at I2C address 0x29 after detection. And for Dell Vostro V131 machine at
> I2C address 0x1d which was manually detected.
> 
> Finally commit a7ae81952cda ("i2c: i801: Allow ACPI SystemIO OpRegion to
> conflict with PCI BAR") allowed to use i2c-i801 driver on Dell machines so
> lis3lv02d correctly initialize accelerometer.
> 
> Tested on Dell Latitude E6440.
> 
> Signed-off-by: Pali Rohár 
> 
> ---
> Changes since v4:
>  * Remove usage of redundant acpi_bus_get_status_handle()
>  * Update comment about acpi_get_devices()
> (...)

Looks all good now.

Reviewed-by: Jean Delvare 

Thanks!
-- 
Jean Delvare
SUSE L3 Support


[PATCH v5] i2c: i801: Register optional lis3lv02d I2C device on Dell machines

2019-06-06 Thread Pali Rohár
Dell platform team told us that some (DMI whitelisted) Dell Latitude
machines have ST microelectronics accelerometer at I2C address 0x29.

Presence of that ST microelectronics accelerometer is verified by existence
of SMO88xx ACPI device which represent that accelerometer. Unfortunately
ACPI device does not specify I2C address.

This patch registers lis3lv02d device for selected Dell Latitude machines
at I2C address 0x29 after detection. And for Dell Vostro V131 machine at
I2C address 0x1d which was manually detected.

Finally commit a7ae81952cda ("i2c: i801: Allow ACPI SystemIO OpRegion to
conflict with PCI BAR") allowed to use i2c-i801 driver on Dell machines so
lis3lv02d correctly initialize accelerometer.

Tested on Dell Latitude E6440.

Signed-off-by: Pali Rohár 

---
Changes since v4:
 * Remove usage of redundant acpi_bus_get_status_handle()
 * Update comment about acpi_get_devices()

Changes since v3:
 * Use char * [] type for list of acpi ids
 * Check that SMO88xx acpi device is present, enabled and functioning
 * Simplify usage of acpi_get_devices()
 * Change i2c to I2C
 * Make dell_lis3lv02d_devices const

Changes since v2:
 * Use explicit list of SMOxx ACPI devices

Changes since v1:
 * Added Dell Vostro V131 based on Michał Kępień testing
 * Changed DMI product structure to include also i2c address
---
 drivers/i2c/busses/i2c-i801.c   | 117 
 drivers/platform/x86/dell-smo8800.c |   1 +
 2 files changed, 118 insertions(+)

diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
index ac7f7817dc89..2d9f77ea02e4 100644
--- a/drivers/i2c/busses/i2c-i801.c
+++ b/drivers/i2c/busses/i2c-i801.c
@@ -1134,6 +1134,120 @@ static void dmi_check_onboard_devices(const struct 
dmi_header *dm, void *adap)
}
 }
 
+/* NOTE: Keep this list in sync with drivers/platform/x86/dell-smo8800.c */
+static const char *const acpi_smo8800_ids[] = {
+   "SMO8800",
+   "SMO8801",
+   "SMO8810",
+   "SMO8811",
+   "SMO8820",
+   "SMO8821",
+   "SMO8830",
+   "SMO8831",
+};
+
+static acpi_status check_acpi_smo88xx_device(acpi_handle obj_handle,
+u32 nesting_level,
+void *context,
+void **return_value)
+{
+   struct acpi_device_info *info;
+   acpi_status status;
+   char *hid;
+   int i;
+
+   status = acpi_get_object_info(obj_handle, );
+   if (!ACPI_SUCCESS(status) || !(info->valid & ACPI_VALID_HID))
+   return AE_OK;
+
+   hid = info->hardware_id.string;
+   if (!hid)
+   return AE_OK;
+
+   for (i = 0; i < ARRAY_SIZE(acpi_smo8800_ids); ++i) {
+   if (strcmp(hid, acpi_smo8800_ids[i]) == 0) {
+   *((bool *)return_value) = true;
+   return AE_CTRL_TERMINATE;
+   }
+   }
+
+   return AE_OK;
+}
+
+static bool is_dell_system_with_lis3lv02d(void)
+{
+   bool found;
+   const char *vendor;
+
+   vendor = dmi_get_system_info(DMI_SYS_VENDOR);
+   if (strcmp(vendor, "Dell Inc.") != 0)
+   return false;
+
+   /*
+* Check that ACPI device SMO88xx is present and is functioning.
+* Function acpi_get_devices() already filters all ACPI devices
+* which are not present or are not functioning.
+* ACPI device SMO88xx represents our ST microelectronics lis3lv02d
+* accelerometer but unfortunately ACPI does not provide any other
+* information (like I2C address).
+*/
+   found = false;
+   acpi_get_devices(NULL, check_acpi_smo88xx_device, NULL,
+(void **));
+
+   return found;
+}
+
+/*
+ * Accelerometer's I2C address is not specified in DMI nor ACPI,
+ * so it is needed to define mapping table based on DMI product names.
+ */
+static const struct {
+   const char *dmi_product_name;
+   unsigned short i2c_addr;
+} dell_lis3lv02d_devices[] = {
+   /*
+* Dell platform team told us that these Latitude devices have
+* ST microelectronics accelerometer at I2C address 0x29.
+*/
+   { "Latitude E5250", 0x29 },
+   { "Latitude E5450", 0x29 },
+   { "Latitude E5550", 0x29 },
+   { "Latitude E6440", 0x29 },
+   { "Latitude E6440 ATG", 0x29 },
+   { "Latitude E6540", 0x29 },
+   /*
+* Additional individual entries were added after verification.
+*/
+   { "Vostro V131",0x1d },
+};
+
+static void register_dell_lis3lv02d_i2c_device(struct i801_priv *priv)
+{
+   struct i2c_board_info info;
+   const char *dmi_product_name;
+   int i;
+
+   dmi_product_name = dmi_get_system_info(DMI_PRODUCT_NAME);
+   for (i = 0; i < ARRAY_SIZE(dell_lis3lv02d_devices); ++i) {
+   if (strcmp(dmi_product_name,
+