[PATCH 2/2][SRU][Unstable/Mantic] UBUNTU: SAUCE: platform/x86: int3472: Add handshake GPIO function
You-Sheng Yang
vicamo.yang at canonical.com
Tue Oct 24 08:56:53 UTC 2023
From: Hao Yao <hao.yao at intel.com>
BugLink: https://bugs.launchpad.net/bugs/2031412
Handshake pin is used for Lattice MIPI aggregator to enable the
camera sensor. After pulled up, recommend to wail ~250ms to get
everything ready.
Signed-off-by: Hao Yao <hao.yao at intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko at linux.intel.com>
(cherry-picked from https://lore.kernel.org/all/20231007021225.9240-1-hao.yao@intel.com)
Signed-off-by: You-Sheng Yang <vicamo.yang at canonical.com>
---
drivers/platform/x86/intel/int3472/common.h | 1 +
drivers/platform/x86/intel/int3472/discrete.c | 5 +++++
2 files changed, 6 insertions(+)
diff --git a/drivers/platform/x86/intel/int3472/common.h b/drivers/platform/x86/intel/int3472/common.h
index 9f29baa13860..b009ae3aa62f 100644
--- a/drivers/platform/x86/intel/int3472/common.h
+++ b/drivers/platform/x86/intel/int3472/common.h
@@ -22,6 +22,7 @@
#define INT3472_GPIO_TYPE_POWER_ENABLE 0x0b
#define INT3472_GPIO_TYPE_CLK_ENABLE 0x0c
#define INT3472_GPIO_TYPE_PRIVACY_LED 0x0d
+#define INT3472_GPIO_TYPE_HANDSHAKE 0x12
#define INT3472_PDEV_MAX_NAME_LEN 23
#define INT3472_MAX_SENSOR_GPIOS 3
diff --git a/drivers/platform/x86/intel/int3472/discrete.c b/drivers/platform/x86/intel/int3472/discrete.c
index e33c2d75975c..d2b470caea1a 100644
--- a/drivers/platform/x86/intel/int3472/discrete.c
+++ b/drivers/platform/x86/intel/int3472/discrete.c
@@ -110,6 +110,10 @@ static void int3472_get_func_and_polarity(u8 type, const char **func, u32 *polar
*func = "power-enable";
*polarity = GPIO_ACTIVE_HIGH;
break;
+ case INT3472_GPIO_TYPE_HANDSHAKE:
+ *func = "handshake";
+ *polarity = GPIO_ACTIVE_HIGH;
+ break;
default:
*func = "unknown";
*polarity = GPIO_ACTIVE_HIGH;
@@ -200,6 +204,7 @@ static int skl_int3472_handle_gpio_resources(struct acpi_resource *ares,
switch (type) {
case INT3472_GPIO_TYPE_RESET:
case INT3472_GPIO_TYPE_POWERDOWN:
+ case INT3472_GPIO_TYPE_HANDSHAKE:
ret = skl_int3472_map_gpio_to_sensor(int3472, agpio, func, polarity);
if (ret)
err_msg = "Failed to map GPIO pin to sensor\n";
--
2.40.1
More information about the kernel-team
mailing list