mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-30 06:29:06 -04:00
platform: int3472: discrete: Support multiple HIDs per GPIO map entry
Each int3472_gpio_map entry currently maps exactly one ACPI HID to a GPIO quirk. As more sensors needing the same quirk are identified, this means adding a full duplicate table entry per HID, differing only in the HID string, which does not scale. Change int3472_gpio_map::hid to a NULL-terminated hids array so a single entry can match any number of ACPI HIDs, letting new HIDs be added to the relevant array instead of duplicating quirk entries. Cc: linux-media@vger.kernel.org Suggested-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Tarang Raval <tarang.raval@siliconsignals.io> Tested-by: Kate Hsuan <hpa@redhat.com> Reviewed-by: Kate Hsuan <hpa@redhat.com> Reviewed-by: Hans de Goede <johannes.goede@oss.qualcomm.com> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
This commit is contained in:
committed by
Sakari Ailus
parent
4fdb0342f0
commit
edd0dd59ac
@@ -123,10 +123,31 @@ skl_int3472_gpiod_get_from_temp_lookup(struct int3472_discrete_device *int3472,
|
||||
return desc;
|
||||
}
|
||||
|
||||
/*
|
||||
* Other vana-supply users (e.g. ST, Toshiba, Sony sensors) can be added to
|
||||
* this array instead of adding new quirk table entries.
|
||||
*/
|
||||
static const char * const power_enable_hids_vana[] = {
|
||||
"SONY471A", /* imx471 on Lenovo X9-14 and X9-15 */
|
||||
"TBE20A0", /* imx471 on Lenovo X1 Carbon G14 */
|
||||
NULL
|
||||
};
|
||||
|
||||
static const char * const power_enable_hids_vdd[] = {
|
||||
"INT33F0", /* mt9m114 */
|
||||
NULL
|
||||
};
|
||||
|
||||
static const char * const power_enable_hids_enable[] = {
|
||||
"INT347E", /* ov7251 */
|
||||
NULL
|
||||
};
|
||||
|
||||
/**
|
||||
* struct int3472_gpio_map - Map GPIOs to whatever is expected by the
|
||||
* sensor driver (as in DT bindings)
|
||||
* @hid: The ACPI HID of the device without the instance number e.g. INT347E
|
||||
* @hids: NULL-terminated array of ACPI HIDs of the devices without the
|
||||
* instance number e.g. INT347E
|
||||
* @type_from: The GPIO type from ACPI ?SDT
|
||||
* @type_to: The assigned GPIO type, typically same as @type_from
|
||||
* @enable_time_us: Enable time in usec for GPIOs mapped to regulators
|
||||
@@ -135,7 +156,7 @@ skl_int3472_gpiod_get_from_temp_lookup(struct int3472_discrete_device *int3472,
|
||||
* GPIO_ACTIVE_HIGH otherwise
|
||||
*/
|
||||
struct int3472_gpio_map {
|
||||
const char *hid;
|
||||
const char * const *hids;
|
||||
u8 type_from;
|
||||
u8 type_to;
|
||||
bool polarity_low;
|
||||
@@ -145,38 +166,27 @@ struct int3472_gpio_map {
|
||||
|
||||
static const struct int3472_gpio_map int3472_gpio_map[] = {
|
||||
{ /* mt9m114 designs declare a powerdown pin which controls the regulators */
|
||||
.hid = "INT33F0",
|
||||
.hids = power_enable_hids_vdd,
|
||||
.type_from = INT3472_GPIO_TYPE_POWERDOWN,
|
||||
.type_to = INT3472_GPIO_TYPE_POWER_ENABLE,
|
||||
.con_id = "vdd",
|
||||
.enable_time_us = GPIO_REGULATOR_ENABLE_TIME,
|
||||
},
|
||||
{ /* ov7251 driver / DT-bindings expect "enable" as con_id for reset */
|
||||
.hid = "INT347E",
|
||||
.hids = power_enable_hids_enable,
|
||||
.type_from = INT3472_GPIO_TYPE_RESET,
|
||||
.type_to = INT3472_GPIO_TYPE_RESET,
|
||||
.con_id = "enable",
|
||||
},
|
||||
{ /* ov08x40's handshake pin needs a 45 ms delay on some HP laptops */
|
||||
.hid = "OVTI08F4",
|
||||
.hids = (const char * const[]) { "OVTI08F4", NULL },
|
||||
.type_from = INT3472_GPIO_TYPE_HANDSHAKE,
|
||||
.type_to = INT3472_GPIO_TYPE_HANDSHAKE,
|
||||
.con_id = "dvdd",
|
||||
.enable_time_us = 45 * USEC_PER_MSEC,
|
||||
},
|
||||
{ /* imx471 expects "vana" as con_id for power enable */
|
||||
.hid = "SONY471A",
|
||||
.type_from = INT3472_GPIO_TYPE_POWER_ENABLE,
|
||||
.type_to = INT3472_GPIO_TYPE_POWER_ENABLE,
|
||||
.con_id = "vana",
|
||||
.enable_time_us = GPIO_REGULATOR_ENABLE_TIME,
|
||||
},
|
||||
{
|
||||
/*
|
||||
* imx471 (on Lenovo ThinkPads X1 G14) expects "vana" as con_id
|
||||
* for power enable
|
||||
*/
|
||||
.hid = "TBE20A0",
|
||||
{ /* Sensors which expect "vana" as con_id for power enable */
|
||||
.hids = power_enable_hids_vana,
|
||||
.type_from = INT3472_GPIO_TYPE_POWER_ENABLE,
|
||||
.type_to = INT3472_GPIO_TYPE_POWER_ENABLE,
|
||||
.con_id = "vana",
|
||||
@@ -184,6 +194,17 @@ static const struct int3472_gpio_map int3472_gpio_map[] = {
|
||||
},
|
||||
};
|
||||
|
||||
static bool int3472_gpio_map_hids_match(struct acpi_device *adev,
|
||||
const char * const *hids)
|
||||
{
|
||||
for (unsigned int i = 0; hids[i]; i++) {
|
||||
if (acpi_dev_hid_uid_match(adev, hids[i], NULL))
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
static void int3472_get_con_id_and_polarity(struct int3472_discrete_device *int3472, u8 *type,
|
||||
const char **con_id, unsigned long *gpio_flags,
|
||||
unsigned int *enable_time_us)
|
||||
@@ -200,7 +221,7 @@ static void int3472_get_con_id_and_polarity(struct int3472_discrete_device *int3
|
||||
if (*type != int3472_gpio_map[i].type_from)
|
||||
continue;
|
||||
|
||||
if (!acpi_dev_hid_uid_match(adev, int3472_gpio_map[i].hid, NULL))
|
||||
if (!int3472_gpio_map_hids_match(adev, int3472_gpio_map[i].hids))
|
||||
continue;
|
||||
|
||||
dev_dbg(int3472->dev, "mapping type 0x%02x pin to 0x%02x %s\n",
|
||||
|
||||
Reference in New Issue
Block a user