platform/x86: int3472: discrete: Drop GPIO remapping support
authorHans de Goede <hdegoede@redhat.com>
Fri, 16 Jun 2023 17:21:27 +0000 (19:21 +0200)
committerHans de Goede <hdegoede@redhat.com>
Tue, 20 Jun 2023 10:38:48 +0000 (12:38 +0200)
The only sensor driver which needs GPIO remapping support is the ov2680
driver and ACPI enumeration support + other necessary changes to
the ov2680 driver were never upstreamed.

A new series updating the ov2680 driver is pending upstream now and
in this series the ov2680 driver is patched to look for "powerdown"
as con-id, instead of relying on GPIO remapping in the int3472 code,
so the GPIO remapping is no longer necessary.

Tested-by: Hao Yao <hao.yao@intel.com>
Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20230616172132.37859-2-hdegoede@redhat.com
drivers/platform/x86/intel/int3472/common.h
drivers/platform/x86/intel/int3472/discrete.c

index 0c9c899e017bcaef360f632f4939dbdb5cb14935..735567f374a6f02497f6f5ad41d8f5cba896c4eb 100644 (file)
@@ -69,15 +69,9 @@ struct int3472_cldb {
        u8 reserved2[17];
 };
 
-struct int3472_gpio_function_remap {
-       const char *documented;
-       const char *actual;
-};
-
 struct int3472_sensor_config {
        const char *sensor_module_name;
        struct regulator_consumer_supply supply_map;
-       const struct int3472_gpio_function_remap *function_maps;
 };
 
 struct int3472_discrete_device {
index 8111579a59d41a958df55b08b4a8a68d524873c7..2ab3c746698652940579b5463e9df33081ffaa5b 100644 (file)
@@ -39,27 +39,13 @@ static const guid_t cio2_sensor_module_guid =
  * the functions mapping resources to the sensors. Where the sensors have
  * a power enable pin defined in DSDT we need to provide a supply name so
  * the sensor drivers can find the regulator. The device name will be derived
- * from the sensor's ACPI device within the code. Optionally, we can provide a
- * NULL terminated array of function name mappings to deal with any platform
- * specific deviations from the documented behaviour of GPIOs.
- *
- * Map a GPIO function name to NULL to prevent the driver from mapping that
- * GPIO at all.
+ * from the sensor's ACPI device within the code.
  */
-
-static const struct int3472_gpio_function_remap ov2680_gpio_function_remaps[] = {
-       { "reset", NULL },
-       { "powerdown", "reset" },
-       { }
-};
-
 static const struct int3472_sensor_config int3472_sensor_configs[] = {
-       /* Lenovo Miix 510-12ISK - OV2680, Front */
-       { "GNDF140809R", { 0 }, ov2680_gpio_function_remaps },
        /* Lenovo Miix 510-12ISK - OV5648, Rear */
-       { "GEFF150023R", REGULATOR_SUPPLY("avdd", NULL), NULL },
+       { "GEFF150023R", REGULATOR_SUPPLY("avdd", NULL) },
        /* Surface Go 1&2 - OV5693, Front */
-       { "YHCU", REGULATOR_SUPPLY("avdd", NULL), NULL },
+       { "YHCU", REGULATOR_SUPPLY("avdd", NULL) },
 };
 
 static const struct int3472_sensor_config *
@@ -96,7 +82,6 @@ static int skl_int3472_map_gpio_to_sensor(struct int3472_discrete_device *int347
                                          struct acpi_resource_gpio *agpio,
                                          const char *func, u32 polarity)
 {
-       const struct int3472_sensor_config *sensor_config;
        char *path = agpio->resource_source.string_ptr;
        struct gpiod_lookup *table_entry;
        struct acpi_device *adev;
@@ -108,22 +93,6 @@ static int skl_int3472_map_gpio_to_sensor(struct int3472_discrete_device *int347
                return -EINVAL;
        }
 
-       sensor_config = int3472->sensor_config;
-       if (!IS_ERR(sensor_config) && sensor_config->function_maps) {
-               const struct int3472_gpio_function_remap *remap;
-
-               for (remap = sensor_config->function_maps; remap->documented; remap++) {
-                       if (!strcmp(func, remap->documented)) {
-                               func = remap->actual;
-                               break;
-                       }
-               }
-       }
-
-       /* Functions mapped to NULL should not be mapped to the sensor */
-       if (!func)
-               return 0;
-
        status = acpi_get_handle(NULL, path, &handle);
        if (ACPI_FAILURE(status))
                return -EINVAL;