[PATCH 2/4] drivers: media: i2c: imx471: Add vdig and vif power supplies
From: Danila Tikhonov
Date: Wed Aug 05 2026 - 15:56:48 EST
According to the product brief, the IMX471 sensor requires analog
(vana, 2.8V), digital (vdig, 1.05V), and interface (vif, 1.8V) power
supplies. Currently, only the analog supply is requested.
Add 'vdig' and 'vif' to the regulator supply array. Following the
pattern of other media i2c drivers (e.g., imx219, imx415), the regulator
core will automatically substitute dummy regulators if these are
missing.
Signed-off-by: Danila Tikhonov <danila@xxxxxxxxxxxxxx>
---
drivers/media/i2c/imx471.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/media/i2c/imx471.c b/drivers/media/i2c/imx471.c
index 4053aed84340..3ad123699f14 100644
--- a/drivers/media/i2c/imx471.c
+++ b/drivers/media/i2c/imx471.c
@@ -117,7 +117,9 @@
#define to_imx471(_sd) container_of_const(_sd, struct imx471, sd)
static const char * const imx471_supply_name[] = {
- "vana",
+ "vana", /* 2p8V */
+ "vdig", /* 1p05V */
+ "vif", /* 1p8V */
};
struct imx471_mode {
--
2.55.0