123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708 |
- From 5fdcd780891777ef73585adf610593e6e097e6d6 Mon Sep 17 00:00:00 2001
- From: Hans de Goede <hdegoede@redhat.com>
- Date: Sun, 10 Oct 2021 20:56:57 +0200
- Subject: [PATCH] ACPI: delay enumeration of devices with a _DEP pointing to an
- INT3472 device
- The clk and regulator frameworks expect clk/regulator consumer-devices
- to have info about the consumed clks/regulators described in the device's
- fw_node.
- To work around cases where this info is not present in the firmware tables,
- which is often the case on x86/ACPI devices, both frameworks allow the
- provider-driver to attach info about consumers to the clks/regulators
- when registering these.
- This causes problems with the probe ordering wrt drivers for consumers
- of these clks/regulators. Since the lookups are only registered when the
- provider-driver binds, trying to get these clks/regulators before then
- results in a -ENOENT error for clks and a dummy regulator for regulators.
- One case where we hit this issue is camera sensors such as e.g. the OV8865
- sensor found on the Microsoft Surface Go. The sensor uses clks, regulators
- and GPIOs provided by a TPS68470 PMIC which is described in an INT3472
- ACPI device. There is special platform code handling this and setting
- platform_data with the necessary consumer info on the MFD cells
- instantiated for the PMIC under: drivers/platform/x86/intel/int3472.
- For this to work properly the ov8865 driver must not bind to the I2C-client
- for the OV8865 sensor until after the TPS68470 PMIC gpio, regulator and
- clk MFD cells have all been fully setup.
- The OV8865 on the Microsoft Surface Go is just one example, all X86
- devices using the Intel IPU3 camera block found on recent Intel SoCs
- have similar issues where there is an INT3472 HID ACPI-device, which
- describes the clks and regulators, and the driver for this INT3472 device
- must be fully initialized before the sensor driver (any sensor driver)
- binds for things to work properly.
- On these devices the ACPI nodes describing the sensors all have a _DEP
- dependency on the matching INT3472 ACPI device (there is one per sensor).
- This allows solving the probe-ordering problem by delaying the enumeration
- (instantiation of the I2C-client in the ov8865 example) of ACPI-devices
- which have a _DEP dependency on an INT3472 device.
- The new acpi_dev_ready_for_enumeration() helper used for this is also
- exported because for devices, which have the enumeration_by_parent flag
- set, the parent-driver will do its own scan of child ACPI devices and
- it will try to enumerate those during its probe(). Code doing this such
- as e.g. the i2c-core-acpi.c code must call this new helper to ensure
- that it too delays the enumeration until all the _DEP dependencies are
- met on devices which have the new honor_deps flag set.
- Signed-off-by: Hans de Goede <hdegoede@redhat.com>
- Patchset: cameras
- ---
- drivers/acpi/scan.c | 3 +++
- 1 file changed, 3 insertions(+)
- diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c
- index 02bb2cce423f..b123138d3dc0 100644
- --- a/drivers/acpi/scan.c
- +++ b/drivers/acpi/scan.c
- @@ -2114,6 +2114,9 @@ static acpi_status acpi_bus_check_add_2(acpi_handle handle, u32 lvl_not_used,
-
- static void acpi_default_enumeration(struct acpi_device *device)
- {
- + if (!acpi_dev_ready_for_enumeration(device))
- + return;
- +
- /*
- * Do not enumerate devices with enumeration_by_parent flag set as
- * they will be enumerated by their respective parents.
- --
- 2.43.0
- From eb19f5e13f14a8973920d406125f205945558fb9 Mon Sep 17 00:00:00 2001
- From: zouxiaoh <xiaohong.zou@intel.com>
- Date: Fri, 25 Jun 2021 08:52:59 +0800
- Subject: [PATCH] iommu: intel-ipu: use IOMMU passthrough mode for Intel IPUs
- Intel IPU(Image Processing Unit) has its own (IO)MMU hardware,
- The IPU driver allocates its own page table that is not mapped
- via the DMA, and thus the Intel IOMMU driver blocks access giving
- this error: DMAR: DRHD: handling fault status reg 3 DMAR:
- [DMA Read] Request device [00:05.0] PASID ffffffff
- fault addr 76406000 [fault reason 06] PTE Read access is not set
- As IPU is not an external facing device which is not risky, so use
- IOMMU passthrough mode for Intel IPUs.
- Change-Id: I6dcccdadac308cf42e20a18e1b593381391e3e6b
- Depends-On: Iacd67578e8c6a9b9ac73285f52b4081b72fb68a6
- Tracked-On: #JIITL8-411
- Signed-off-by: Bingbu Cao <bingbu.cao@intel.com>
- Signed-off-by: zouxiaoh <xiaohong.zou@intel.com>
- Signed-off-by: Xu Chongyang <chongyang.xu@intel.com>
- Patchset: cameras
- ---
- drivers/iommu/intel/iommu.c | 30 ++++++++++++++++++++++++++++++
- 1 file changed, 30 insertions(+)
- diff --git a/drivers/iommu/intel/iommu.c b/drivers/iommu/intel/iommu.c
- index cc6569613255..8a532d32efdd 100644
- --- a/drivers/iommu/intel/iommu.c
- +++ b/drivers/iommu/intel/iommu.c
- @@ -38,6 +38,12 @@
- #define IS_GFX_DEVICE(pdev) ((pdev->class >> 16) == PCI_BASE_CLASS_DISPLAY)
- #define IS_USB_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_SERIAL_USB)
- #define IS_ISA_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_BRIDGE_ISA)
- +#define IS_INTEL_IPU(pdev) ((pdev)->vendor == PCI_VENDOR_ID_INTEL && \
- + ((pdev)->device == 0x9a19 || \
- + (pdev)->device == 0x9a39 || \
- + (pdev)->device == 0x4e19 || \
- + (pdev)->device == 0x465d || \
- + (pdev)->device == 0x1919))
- #define IS_IPTS(pdev) ((pdev)->vendor == PCI_VENDOR_ID_INTEL && \
- ((pdev)->device == 0x9d3e))
- #define IS_AZALIA(pdev) ((pdev)->vendor == 0x8086 && (pdev)->device == 0x3a3e)
- @@ -294,12 +300,14 @@ EXPORT_SYMBOL_GPL(intel_iommu_enabled);
-
- static int dmar_map_gfx = 1;
- static int dmar_map_ipts = 1;
- +static int dmar_map_ipu = 1;
- static int intel_iommu_superpage = 1;
- static int iommu_identity_mapping;
- static int iommu_skip_te_disable;
-
- #define IDENTMAP_GFX 2
- #define IDENTMAP_AZALIA 4
- +#define IDENTMAP_IPU 8
- #define IDENTMAP_IPTS 16
-
- const struct iommu_ops intel_iommu_ops;
- @@ -2553,6 +2561,9 @@ static int device_def_domain_type(struct device *dev)
- if ((iommu_identity_mapping & IDENTMAP_GFX) && IS_GFX_DEVICE(pdev))
- return IOMMU_DOMAIN_IDENTITY;
-
- + if ((iommu_identity_mapping & IDENTMAP_IPU) && IS_INTEL_IPU(pdev))
- + return IOMMU_DOMAIN_IDENTITY;
- +
- if ((iommu_identity_mapping & IDENTMAP_IPTS) && IS_IPTS(pdev))
- return IOMMU_DOMAIN_IDENTITY;
- }
- @@ -2862,6 +2873,9 @@ static int __init init_dmars(void)
- if (!dmar_map_gfx)
- iommu_identity_mapping |= IDENTMAP_GFX;
-
- + if (!dmar_map_ipu)
- + iommu_identity_mapping |= IDENTMAP_IPU;
- +
- if (!dmar_map_ipts)
- iommu_identity_mapping |= IDENTMAP_IPTS;
-
- @@ -4987,6 +5001,18 @@ static void quirk_iommu_igfx(struct pci_dev *dev)
- dmar_map_gfx = 0;
- }
-
- +static void quirk_iommu_ipu(struct pci_dev *dev)
- +{
- + if (!IS_INTEL_IPU(dev))
- + return;
- +
- + if (risky_device(dev))
- + return;
- +
- + pci_info(dev, "Passthrough IOMMU for integrated Intel IPU\n");
- + dmar_map_ipu = 0;
- +}
- +
- static void quirk_iommu_ipts(struct pci_dev *dev)
- {
- if (!IS_IPTS(dev))
- @@ -4998,6 +5024,7 @@ static void quirk_iommu_ipts(struct pci_dev *dev)
- pci_info(dev, "Passthrough IOMMU for IPTS\n");
- dmar_map_ipts = 0;
- }
- +
- /* G4x/GM45 integrated gfx dmar support is totally busted. */
- DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_igfx);
- DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_igfx);
- @@ -5033,6 +5060,9 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x1632, quirk_iommu_igfx);
- DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x163A, quirk_iommu_igfx);
- DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x163D, quirk_iommu_igfx);
-
- +/* disable IPU dmar support */
- +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_ANY_ID, quirk_iommu_ipu);
- +
- /* disable IPTS dmar support */
- DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x9D3E, quirk_iommu_ipts);
-
- --
- 2.43.0
- From 1b16e7cbcbf699e4d841424568e0de1cee048d93 Mon Sep 17 00:00:00 2001
- From: Daniel Scally <djrscally@gmail.com>
- Date: Sun, 10 Oct 2021 20:57:02 +0200
- Subject: [PATCH] platform/x86: int3472: Enable I2c daisy chain
- The TPS68470 PMIC has an I2C passthrough mode through which I2C traffic
- can be forwarded to a device connected to the PMIC as though it were
- connected directly to the system bus. Enable this mode when the chip
- is initialised.
- Signed-off-by: Daniel Scally <djrscally@gmail.com>
- Patchset: cameras
- ---
- drivers/platform/x86/intel/int3472/tps68470.c | 7 +++++++
- 1 file changed, 7 insertions(+)
- diff --git a/drivers/platform/x86/intel/int3472/tps68470.c b/drivers/platform/x86/intel/int3472/tps68470.c
- index 1e107fd49f82..e3e1696e7f0e 100644
- --- a/drivers/platform/x86/intel/int3472/tps68470.c
- +++ b/drivers/platform/x86/intel/int3472/tps68470.c
- @@ -46,6 +46,13 @@ static int tps68470_chip_init(struct device *dev, struct regmap *regmap)
- return ret;
- }
-
- + /* Enable I2C daisy chain */
- + ret = regmap_write(regmap, TPS68470_REG_S_I2C_CTL, 0x03);
- + if (ret) {
- + dev_err(dev, "Failed to enable i2c daisy chain\n");
- + return ret;
- + }
- +
- dev_info(dev, "TPS68470 REVID: 0x%02x\n", version);
-
- return 0;
- --
- 2.43.0
- From a856e6ec1aa1ce0e88abdd423a151f2bbddb8134 Mon Sep 17 00:00:00 2001
- From: Daniel Scally <dan.scally@ideasonboard.com>
- Date: Thu, 2 Mar 2023 12:59:39 +0000
- Subject: [PATCH] platform/x86: int3472: Remap reset GPIO for INT347E
- ACPI _HID INT347E represents the OmniVision 7251 camera sensor. The
- driver for this sensor expects a single pin named "enable", but on
- some Microsoft Surface platforms the sensor is assigned a single
- GPIO who's type flag is INT3472_GPIO_TYPE_RESET.
- Remap the GPIO pin's function from "reset" to "enable". This is done
- outside of the existing remap table since it is a more widespread
- discrepancy than that method is designed for. Additionally swap the
- polarity of the pin to match the driver's expectation.
- Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>
- Patchset: cameras
- ---
- drivers/platform/x86/intel/int3472/discrete.c | 14 ++++++++++++++
- 1 file changed, 14 insertions(+)
- diff --git a/drivers/platform/x86/intel/int3472/discrete.c b/drivers/platform/x86/intel/int3472/discrete.c
- index 07b302e09340..1d3097bc7e48 100644
- --- a/drivers/platform/x86/intel/int3472/discrete.c
- +++ b/drivers/platform/x86/intel/int3472/discrete.c
- @@ -83,12 +83,26 @@ static int skl_int3472_map_gpio_to_sensor(struct int3472_discrete_device *int347
- const char *func, u32 polarity)
- {
- int ret;
- + const struct acpi_device_id ov7251_ids[] = {
- + { "INT347E" },
- + };
-
- if (int3472->n_sensor_gpios >= INT3472_MAX_SENSOR_GPIOS) {
- dev_warn(int3472->dev, "Too many GPIOs mapped\n");
- return -EINVAL;
- }
-
- + /*
- + * In addition to the function remap table we need to bulk remap the
- + * "reset" GPIO for the OmniVision 7251 sensor, as the driver for that
- + * expects its only GPIO pin to be called "enable" (and to have the
- + * opposite polarity).
- + */
- + if (!strcmp(func, "reset") && !acpi_match_device_ids(int3472->sensor, ov7251_ids)) {
- + func = "enable";
- + polarity = GPIO_ACTIVE_HIGH;
- + }
- +
- ret = skl_int3472_fill_gpiod_lookup(&int3472->gpios.table[int3472->n_sensor_gpios],
- agpio, func, polarity);
- if (ret)
- --
- 2.43.0
- From a7a10c4493fe0a381f12fd6a20a024e7797bd37c Mon Sep 17 00:00:00 2001
- From: Daniel Scally <dan.scally@ideasonboard.com>
- Date: Tue, 21 Mar 2023 13:45:26 +0000
- Subject: [PATCH] media: i2c: Clarify that gain is Analogue gain in OV7251
- Update the control ID for the gain control in the ov7251 driver to
- V4L2_CID_ANALOGUE_GAIN.
- Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>
- Patchset: cameras
- ---
- drivers/media/i2c/ov7251.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
- diff --git a/drivers/media/i2c/ov7251.c b/drivers/media/i2c/ov7251.c
- index 6582cc0e2384..fd0796b6e07e 100644
- --- a/drivers/media/i2c/ov7251.c
- +++ b/drivers/media/i2c/ov7251.c
- @@ -1051,7 +1051,7 @@ static int ov7251_s_ctrl(struct v4l2_ctrl *ctrl)
- case V4L2_CID_EXPOSURE:
- ret = ov7251_set_exposure(ov7251, ctrl->val);
- break;
- - case V4L2_CID_GAIN:
- + case V4L2_CID_ANALOGUE_GAIN:
- ret = ov7251_set_gain(ov7251, ctrl->val);
- break;
- case V4L2_CID_TEST_PATTERN:
- @@ -1553,7 +1553,7 @@ static int ov7251_init_ctrls(struct ov7251 *ov7251)
- ov7251->exposure = v4l2_ctrl_new_std(&ov7251->ctrls, &ov7251_ctrl_ops,
- V4L2_CID_EXPOSURE, 1, 32, 1, 32);
- ov7251->gain = v4l2_ctrl_new_std(&ov7251->ctrls, &ov7251_ctrl_ops,
- - V4L2_CID_GAIN, 16, 1023, 1, 16);
- + V4L2_CID_ANALOGUE_GAIN, 16, 1023, 1, 16);
- v4l2_ctrl_new_std_menu_items(&ov7251->ctrls, &ov7251_ctrl_ops,
- V4L2_CID_TEST_PATTERN,
- ARRAY_SIZE(ov7251_test_pattern_menu) - 1,
- --
- 2.43.0
- From e96fa67c9172fac9aa6e68199cf7e29d074c21e6 Mon Sep 17 00:00:00 2001
- From: Daniel Scally <dan.scally@ideasonboard.com>
- Date: Wed, 22 Mar 2023 11:01:42 +0000
- Subject: [PATCH] media: v4l2-core: Acquire privacy led in
- v4l2_async_register_subdev()
- The current call to v4l2_subdev_get_privacy_led() is contained in
- v4l2_async_register_subdev_sensor(), but that function isn't used by
- all the sensor drivers. Move the acquisition of the privacy led to
- v4l2_async_register_subdev() instead.
- Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>
- Patchset: cameras
- ---
- drivers/media/v4l2-core/v4l2-async.c | 4 ++++
- drivers/media/v4l2-core/v4l2-fwnode.c | 4 ----
- 2 files changed, 4 insertions(+), 4 deletions(-)
- diff --git a/drivers/media/v4l2-core/v4l2-async.c b/drivers/media/v4l2-core/v4l2-async.c
- index 8cfd593d293d..c32f0d1b29d4 100644
- --- a/drivers/media/v4l2-core/v4l2-async.c
- +++ b/drivers/media/v4l2-core/v4l2-async.c
- @@ -796,6 +796,10 @@ int v4l2_async_register_subdev(struct v4l2_subdev *sd)
-
- INIT_LIST_HEAD(&sd->asc_list);
-
- + ret = v4l2_subdev_get_privacy_led(sd);
- + if (ret < 0)
- + return ret;
- +
- /*
- * No reference taken. The reference is held by the device (struct
- * v4l2_subdev.dev), and async sub-device does not exist independently
- diff --git a/drivers/media/v4l2-core/v4l2-fwnode.c b/drivers/media/v4l2-core/v4l2-fwnode.c
- index 7f181fbbb140..1c0347de4e21 100644
- --- a/drivers/media/v4l2-core/v4l2-fwnode.c
- +++ b/drivers/media/v4l2-core/v4l2-fwnode.c
- @@ -1217,10 +1217,6 @@ int v4l2_async_register_subdev_sensor(struct v4l2_subdev *sd)
-
- v4l2_async_subdev_nf_init(notifier, sd);
-
- - ret = v4l2_subdev_get_privacy_led(sd);
- - if (ret < 0)
- - goto out_cleanup;
- -
- ret = v4l2_async_nf_parse_fwnode_sensor(sd->dev, notifier);
- if (ret < 0)
- goto out_cleanup;
- --
- 2.43.0
- From 68dac72bec1c99890d35d6bfd1b1f66e0cf8789c Mon Sep 17 00:00:00 2001
- From: Kate Hsuan <hpa@redhat.com>
- Date: Tue, 21 Mar 2023 23:37:16 +0800
- Subject: [PATCH] platform: x86: int3472: Add MFD cell for tps68470 LED
- Add MFD cell for tps68470-led.
- Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
- Signed-off-by: Kate Hsuan <hpa@redhat.com>
- Reviewed-by: Hans de Goede <hdegoede@redhat.com>
- Patchset: cameras
- ---
- drivers/platform/x86/intel/int3472/tps68470.c | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
- diff --git a/drivers/platform/x86/intel/int3472/tps68470.c b/drivers/platform/x86/intel/int3472/tps68470.c
- index e3e1696e7f0e..423dc555093f 100644
- --- a/drivers/platform/x86/intel/int3472/tps68470.c
- +++ b/drivers/platform/x86/intel/int3472/tps68470.c
- @@ -17,7 +17,7 @@
- #define DESIGNED_FOR_CHROMEOS 1
- #define DESIGNED_FOR_WINDOWS 2
-
- -#define TPS68470_WIN_MFD_CELL_COUNT 3
- +#define TPS68470_WIN_MFD_CELL_COUNT 4
-
- static const struct mfd_cell tps68470_cros[] = {
- { .name = "tps68470-gpio" },
- @@ -200,7 +200,8 @@ static int skl_int3472_tps68470_probe(struct i2c_client *client)
- cells[1].name = "tps68470-regulator";
- cells[1].platform_data = (void *)board_data->tps68470_regulator_pdata;
- cells[1].pdata_size = sizeof(struct tps68470_regulator_platform_data);
- - cells[2].name = "tps68470-gpio";
- + cells[2].name = "tps68470-led";
- + cells[3].name = "tps68470-gpio";
-
- for (i = 0; i < board_data->n_gpiod_lookups; i++)
- gpiod_add_lookup_table(board_data->tps68470_gpio_lookup_tables[i]);
- --
- 2.43.0
- From 3f446f24aecaba808693f0173e28972e651fa87d Mon Sep 17 00:00:00 2001
- From: Kate Hsuan <hpa@redhat.com>
- Date: Tue, 21 Mar 2023 23:37:17 +0800
- Subject: [PATCH] include: mfd: tps68470: Add masks for LEDA and LEDB
- Add flags for both LEDA(TPS68470_ILEDCTL_ENA), LEDB
- (TPS68470_ILEDCTL_ENB), and current control mask for LEDB
- (TPS68470_ILEDCTL_CTRLB)
- Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
- Reviewed-by: Hans de Goede <hdegoede@redhat.com>
- Signed-off-by: Kate Hsuan <hpa@redhat.com>
- Patchset: cameras
- ---
- include/linux/mfd/tps68470.h | 5 +++++
- 1 file changed, 5 insertions(+)
- diff --git a/include/linux/mfd/tps68470.h b/include/linux/mfd/tps68470.h
- index 7807fa329db0..2d2abb25b944 100644
- --- a/include/linux/mfd/tps68470.h
- +++ b/include/linux/mfd/tps68470.h
- @@ -34,6 +34,7 @@
- #define TPS68470_REG_SGPO 0x22
- #define TPS68470_REG_GPDI 0x26
- #define TPS68470_REG_GPDO 0x27
- +#define TPS68470_REG_ILEDCTL 0x28
- #define TPS68470_REG_VCMVAL 0x3C
- #define TPS68470_REG_VAUX1VAL 0x3D
- #define TPS68470_REG_VAUX2VAL 0x3E
- @@ -94,4 +95,8 @@
- #define TPS68470_GPIO_MODE_OUT_CMOS 2
- #define TPS68470_GPIO_MODE_OUT_ODRAIN 3
-
- +#define TPS68470_ILEDCTL_ENA BIT(2)
- +#define TPS68470_ILEDCTL_ENB BIT(6)
- +#define TPS68470_ILEDCTL_CTRLB GENMASK(5, 4)
- +
- #endif /* __LINUX_MFD_TPS68470_H */
- --
- 2.43.0
- From a0fe4ec438c5edb9f4360c8a2a5f5269d05c44ef Mon Sep 17 00:00:00 2001
- From: Kate Hsuan <hpa@redhat.com>
- Date: Tue, 21 Mar 2023 23:37:18 +0800
- Subject: [PATCH] leds: tps68470: Add LED control for tps68470
- There are two LED controllers, LEDA indicator LED and LEDB flash LED for
- tps68470. LEDA can be enabled by setting TPS68470_ILEDCTL_ENA. Moreover,
- tps68470 provides four levels of power status for LEDB. If the
- properties called "ti,ledb-current" can be found, the current will be
- set according to the property values. These two LEDs can be controlled
- through the LED class of sysfs (tps68470-leda and tps68470-ledb).
- Signed-off-by: Kate Hsuan <hpa@redhat.com>
- Reviewed-by: Hans de Goede <hdegoede@redhat.com>
- Patchset: cameras
- ---
- drivers/leds/Kconfig | 12 +++
- drivers/leds/Makefile | 1 +
- drivers/leds/leds-tps68470.c | 185 +++++++++++++++++++++++++++++++++++
- 3 files changed, 198 insertions(+)
- create mode 100644 drivers/leds/leds-tps68470.c
- diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig
- index a3a9ac5b5338..0bc6845b5d29 100644
- --- a/drivers/leds/Kconfig
- +++ b/drivers/leds/Kconfig
- @@ -875,6 +875,18 @@ config LEDS_TPS6105X
- It is a single boost converter primarily for white LEDs and
- audio amplifiers.
-
- +config LEDS_TPS68470
- + tristate "LED support for TI TPS68470"
- + depends on LEDS_CLASS
- + depends on INTEL_SKL_INT3472
- + help
- + This driver supports TPS68470 PMIC with LED chip.
- + It provides two LED controllers, with the ability to drive 2
- + indicator LEDs and 2 flash LEDs.
- +
- + To compile this driver as a module, choose M and it will be
- + called leds-tps68470
- +
- config LEDS_IP30
- tristate "LED support for SGI Octane machines"
- depends on LEDS_CLASS
- diff --git a/drivers/leds/Makefile b/drivers/leds/Makefile
- index d7348e8bc019..10caea4e7c61 100644
- --- a/drivers/leds/Makefile
- +++ b/drivers/leds/Makefile
- @@ -84,6 +84,7 @@ obj-$(CONFIG_LEDS_TCA6507) += leds-tca6507.o
- obj-$(CONFIG_LEDS_TI_LMU_COMMON) += leds-ti-lmu-common.o
- obj-$(CONFIG_LEDS_TLC591XX) += leds-tlc591xx.o
- obj-$(CONFIG_LEDS_TPS6105X) += leds-tps6105x.o
- +obj-$(CONFIG_LEDS_TPS68470) += leds-tps68470.o
- obj-$(CONFIG_LEDS_TURRIS_OMNIA) += leds-turris-omnia.o
- obj-$(CONFIG_LEDS_WM831X_STATUS) += leds-wm831x-status.o
- obj-$(CONFIG_LEDS_WM8350) += leds-wm8350.o
- diff --git a/drivers/leds/leds-tps68470.c b/drivers/leds/leds-tps68470.c
- new file mode 100644
- index 000000000000..35aeb5db89c8
- --- /dev/null
- +++ b/drivers/leds/leds-tps68470.c
- @@ -0,0 +1,185 @@
- +// SPDX-License-Identifier: GPL-2.0
- +/*
- + * LED driver for TPS68470 PMIC
- + *
- + * Copyright (C) 2023 Red Hat
- + *
- + * Authors:
- + * Kate Hsuan <hpa@redhat.com>
- + */
- +
- +#include <linux/leds.h>
- +#include <linux/mfd/tps68470.h>
- +#include <linux/module.h>
- +#include <linux/platform_device.h>
- +#include <linux/property.h>
- +#include <linux/regmap.h>
- +
- +
- +#define lcdev_to_led(led_cdev) \
- + container_of(led_cdev, struct tps68470_led, lcdev)
- +
- +#define led_to_tps68470(led, index) \
- + container_of(led, struct tps68470_device, leds[index])
- +
- +enum tps68470_led_ids {
- + TPS68470_ILED_A,
- + TPS68470_ILED_B,
- + TPS68470_NUM_LEDS
- +};
- +
- +static const char *tps68470_led_names[] = {
- + [TPS68470_ILED_A] = "tps68470-iled_a",
- + [TPS68470_ILED_B] = "tps68470-iled_b",
- +};
- +
- +struct tps68470_led {
- + unsigned int led_id;
- + struct led_classdev lcdev;
- +};
- +
- +struct tps68470_device {
- + struct device *dev;
- + struct regmap *regmap;
- + struct tps68470_led leds[TPS68470_NUM_LEDS];
- +};
- +
- +enum ctrlb_current {
- + CTRLB_2MA = 0,
- + CTRLB_4MA = 1,
- + CTRLB_8MA = 2,
- + CTRLB_16MA = 3,
- +};
- +
- +static int tps68470_brightness_set(struct led_classdev *led_cdev, enum led_brightness brightness)
- +{
- + struct tps68470_led *led = lcdev_to_led(led_cdev);
- + struct tps68470_device *tps68470 = led_to_tps68470(led, led->led_id);
- + struct regmap *regmap = tps68470->regmap;
- +
- + switch (led->led_id) {
- + case TPS68470_ILED_A:
- + return regmap_update_bits(regmap, TPS68470_REG_ILEDCTL, TPS68470_ILEDCTL_ENA,
- + brightness ? TPS68470_ILEDCTL_ENA : 0);
- + case TPS68470_ILED_B:
- + return regmap_update_bits(regmap, TPS68470_REG_ILEDCTL, TPS68470_ILEDCTL_ENB,
- + brightness ? TPS68470_ILEDCTL_ENB : 0);
- + }
- + return -EINVAL;
- +}
- +
- +static enum led_brightness tps68470_brightness_get(struct led_classdev *led_cdev)
- +{
- + struct tps68470_led *led = lcdev_to_led(led_cdev);
- + struct tps68470_device *tps68470 = led_to_tps68470(led, led->led_id);
- + struct regmap *regmap = tps68470->regmap;
- + int ret = 0;
- + int value = 0;
- +
- + ret = regmap_read(regmap, TPS68470_REG_ILEDCTL, &value);
- + if (ret)
- + return dev_err_probe(led_cdev->dev, -EINVAL, "failed on reading register\n");
- +
- + switch (led->led_id) {
- + case TPS68470_ILED_A:
- + value = value & TPS68470_ILEDCTL_ENA;
- + break;
- + case TPS68470_ILED_B:
- + value = value & TPS68470_ILEDCTL_ENB;
- + break;
- + }
- +
- + return value ? LED_ON : LED_OFF;
- +}
- +
- +
- +static int tps68470_ledb_current_init(struct platform_device *pdev,
- + struct tps68470_device *tps68470)
- +{
- + int ret = 0;
- + unsigned int curr;
- +
- + /* configure LEDB current if the properties can be got */
- + if (!device_property_read_u32(&pdev->dev, "ti,ledb-current", &curr)) {
- + if (curr > CTRLB_16MA) {
- + dev_err(&pdev->dev,
- + "Invalid LEDB current value: %d\n",
- + curr);
- + return -EINVAL;
- + }
- + ret = regmap_update_bits(tps68470->regmap, TPS68470_REG_ILEDCTL,
- + TPS68470_ILEDCTL_CTRLB, curr);
- + }
- + return ret;
- +}
- +
- +static int tps68470_leds_probe(struct platform_device *pdev)
- +{
- + int i = 0;
- + int ret = 0;
- + struct tps68470_device *tps68470;
- + struct tps68470_led *led;
- + struct led_classdev *lcdev;
- +
- + tps68470 = devm_kzalloc(&pdev->dev, sizeof(struct tps68470_device),
- + GFP_KERNEL);
- + if (!tps68470)
- + return -ENOMEM;
- +
- + tps68470->dev = &pdev->dev;
- + tps68470->regmap = dev_get_drvdata(pdev->dev.parent);
- +
- + for (i = 0; i < TPS68470_NUM_LEDS; i++) {
- + led = &tps68470->leds[i];
- + lcdev = &led->lcdev;
- +
- + led->led_id = i;
- +
- + lcdev->name = devm_kasprintf(tps68470->dev, GFP_KERNEL, "%s::%s",
- + tps68470_led_names[i], LED_FUNCTION_INDICATOR);
- + if (!lcdev->name)
- + return -ENOMEM;
- +
- + lcdev->max_brightness = 1;
- + lcdev->brightness = 0;
- + lcdev->brightness_set_blocking = tps68470_brightness_set;
- + lcdev->brightness_get = tps68470_brightness_get;
- + lcdev->dev = &pdev->dev;
- +
- + ret = devm_led_classdev_register(tps68470->dev, lcdev);
- + if (ret) {
- + dev_err_probe(tps68470->dev, ret,
- + "error registering led\n");
- + goto err_exit;
- + }
- +
- + if (i == TPS68470_ILED_B) {
- + ret = tps68470_ledb_current_init(pdev, tps68470);
- + if (ret)
- + goto err_exit;
- + }
- + }
- +
- +err_exit:
- + if (ret) {
- + for (i = 0; i < TPS68470_NUM_LEDS; i++) {
- + if (tps68470->leds[i].lcdev.name)
- + devm_led_classdev_unregister(&pdev->dev,
- + &tps68470->leds[i].lcdev);
- + }
- + }
- +
- + return ret;
- +}
- +static struct platform_driver tps68470_led_driver = {
- + .driver = {
- + .name = "tps68470-led",
- + },
- + .probe = tps68470_leds_probe,
- +};
- +
- +module_platform_driver(tps68470_led_driver);
- +
- +MODULE_ALIAS("platform:tps68470-led");
- +MODULE_DESCRIPTION("LED driver for TPS68470 PMIC");
- +MODULE_LICENSE("GPL v2");
- --
- 2.43.0
|