0012-cameras.patch 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708
  1. From 5fdcd780891777ef73585adf610593e6e097e6d6 Mon Sep 17 00:00:00 2001
  2. From: Hans de Goede <hdegoede@redhat.com>
  3. Date: Sun, 10 Oct 2021 20:56:57 +0200
  4. Subject: [PATCH] ACPI: delay enumeration of devices with a _DEP pointing to an
  5. INT3472 device
  6. The clk and regulator frameworks expect clk/regulator consumer-devices
  7. to have info about the consumed clks/regulators described in the device's
  8. fw_node.
  9. To work around cases where this info is not present in the firmware tables,
  10. which is often the case on x86/ACPI devices, both frameworks allow the
  11. provider-driver to attach info about consumers to the clks/regulators
  12. when registering these.
  13. This causes problems with the probe ordering wrt drivers for consumers
  14. of these clks/regulators. Since the lookups are only registered when the
  15. provider-driver binds, trying to get these clks/regulators before then
  16. results in a -ENOENT error for clks and a dummy regulator for regulators.
  17. One case where we hit this issue is camera sensors such as e.g. the OV8865
  18. sensor found on the Microsoft Surface Go. The sensor uses clks, regulators
  19. and GPIOs provided by a TPS68470 PMIC which is described in an INT3472
  20. ACPI device. There is special platform code handling this and setting
  21. platform_data with the necessary consumer info on the MFD cells
  22. instantiated for the PMIC under: drivers/platform/x86/intel/int3472.
  23. For this to work properly the ov8865 driver must not bind to the I2C-client
  24. for the OV8865 sensor until after the TPS68470 PMIC gpio, regulator and
  25. clk MFD cells have all been fully setup.
  26. The OV8865 on the Microsoft Surface Go is just one example, all X86
  27. devices using the Intel IPU3 camera block found on recent Intel SoCs
  28. have similar issues where there is an INT3472 HID ACPI-device, which
  29. describes the clks and regulators, and the driver for this INT3472 device
  30. must be fully initialized before the sensor driver (any sensor driver)
  31. binds for things to work properly.
  32. On these devices the ACPI nodes describing the sensors all have a _DEP
  33. dependency on the matching INT3472 ACPI device (there is one per sensor).
  34. This allows solving the probe-ordering problem by delaying the enumeration
  35. (instantiation of the I2C-client in the ov8865 example) of ACPI-devices
  36. which have a _DEP dependency on an INT3472 device.
  37. The new acpi_dev_ready_for_enumeration() helper used for this is also
  38. exported because for devices, which have the enumeration_by_parent flag
  39. set, the parent-driver will do its own scan of child ACPI devices and
  40. it will try to enumerate those during its probe(). Code doing this such
  41. as e.g. the i2c-core-acpi.c code must call this new helper to ensure
  42. that it too delays the enumeration until all the _DEP dependencies are
  43. met on devices which have the new honor_deps flag set.
  44. Signed-off-by: Hans de Goede <hdegoede@redhat.com>
  45. Patchset: cameras
  46. ---
  47. drivers/acpi/scan.c | 3 +++
  48. 1 file changed, 3 insertions(+)
  49. diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c
  50. index 02bb2cce423f..b123138d3dc0 100644
  51. --- a/drivers/acpi/scan.c
  52. +++ b/drivers/acpi/scan.c
  53. @@ -2114,6 +2114,9 @@ static acpi_status acpi_bus_check_add_2(acpi_handle handle, u32 lvl_not_used,
  54. static void acpi_default_enumeration(struct acpi_device *device)
  55. {
  56. + if (!acpi_dev_ready_for_enumeration(device))
  57. + return;
  58. +
  59. /*
  60. * Do not enumerate devices with enumeration_by_parent flag set as
  61. * they will be enumerated by their respective parents.
  62. --
  63. 2.43.0
  64. From eb19f5e13f14a8973920d406125f205945558fb9 Mon Sep 17 00:00:00 2001
  65. From: zouxiaoh <xiaohong.zou@intel.com>
  66. Date: Fri, 25 Jun 2021 08:52:59 +0800
  67. Subject: [PATCH] iommu: intel-ipu: use IOMMU passthrough mode for Intel IPUs
  68. Intel IPU(Image Processing Unit) has its own (IO)MMU hardware,
  69. The IPU driver allocates its own page table that is not mapped
  70. via the DMA, and thus the Intel IOMMU driver blocks access giving
  71. this error: DMAR: DRHD: handling fault status reg 3 DMAR:
  72. [DMA Read] Request device [00:05.0] PASID ffffffff
  73. fault addr 76406000 [fault reason 06] PTE Read access is not set
  74. As IPU is not an external facing device which is not risky, so use
  75. IOMMU passthrough mode for Intel IPUs.
  76. Change-Id: I6dcccdadac308cf42e20a18e1b593381391e3e6b
  77. Depends-On: Iacd67578e8c6a9b9ac73285f52b4081b72fb68a6
  78. Tracked-On: #JIITL8-411
  79. Signed-off-by: Bingbu Cao <bingbu.cao@intel.com>
  80. Signed-off-by: zouxiaoh <xiaohong.zou@intel.com>
  81. Signed-off-by: Xu Chongyang <chongyang.xu@intel.com>
  82. Patchset: cameras
  83. ---
  84. drivers/iommu/intel/iommu.c | 30 ++++++++++++++++++++++++++++++
  85. 1 file changed, 30 insertions(+)
  86. diff --git a/drivers/iommu/intel/iommu.c b/drivers/iommu/intel/iommu.c
  87. index cc6569613255..8a532d32efdd 100644
  88. --- a/drivers/iommu/intel/iommu.c
  89. +++ b/drivers/iommu/intel/iommu.c
  90. @@ -38,6 +38,12 @@
  91. #define IS_GFX_DEVICE(pdev) ((pdev->class >> 16) == PCI_BASE_CLASS_DISPLAY)
  92. #define IS_USB_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_SERIAL_USB)
  93. #define IS_ISA_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_BRIDGE_ISA)
  94. +#define IS_INTEL_IPU(pdev) ((pdev)->vendor == PCI_VENDOR_ID_INTEL && \
  95. + ((pdev)->device == 0x9a19 || \
  96. + (pdev)->device == 0x9a39 || \
  97. + (pdev)->device == 0x4e19 || \
  98. + (pdev)->device == 0x465d || \
  99. + (pdev)->device == 0x1919))
  100. #define IS_IPTS(pdev) ((pdev)->vendor == PCI_VENDOR_ID_INTEL && \
  101. ((pdev)->device == 0x9d3e))
  102. #define IS_AZALIA(pdev) ((pdev)->vendor == 0x8086 && (pdev)->device == 0x3a3e)
  103. @@ -294,12 +300,14 @@ EXPORT_SYMBOL_GPL(intel_iommu_enabled);
  104. static int dmar_map_gfx = 1;
  105. static int dmar_map_ipts = 1;
  106. +static int dmar_map_ipu = 1;
  107. static int intel_iommu_superpage = 1;
  108. static int iommu_identity_mapping;
  109. static int iommu_skip_te_disable;
  110. #define IDENTMAP_GFX 2
  111. #define IDENTMAP_AZALIA 4
  112. +#define IDENTMAP_IPU 8
  113. #define IDENTMAP_IPTS 16
  114. const struct iommu_ops intel_iommu_ops;
  115. @@ -2553,6 +2561,9 @@ static int device_def_domain_type(struct device *dev)
  116. if ((iommu_identity_mapping & IDENTMAP_GFX) && IS_GFX_DEVICE(pdev))
  117. return IOMMU_DOMAIN_IDENTITY;
  118. + if ((iommu_identity_mapping & IDENTMAP_IPU) && IS_INTEL_IPU(pdev))
  119. + return IOMMU_DOMAIN_IDENTITY;
  120. +
  121. if ((iommu_identity_mapping & IDENTMAP_IPTS) && IS_IPTS(pdev))
  122. return IOMMU_DOMAIN_IDENTITY;
  123. }
  124. @@ -2862,6 +2873,9 @@ static int __init init_dmars(void)
  125. if (!dmar_map_gfx)
  126. iommu_identity_mapping |= IDENTMAP_GFX;
  127. + if (!dmar_map_ipu)
  128. + iommu_identity_mapping |= IDENTMAP_IPU;
  129. +
  130. if (!dmar_map_ipts)
  131. iommu_identity_mapping |= IDENTMAP_IPTS;
  132. @@ -4987,6 +5001,18 @@ static void quirk_iommu_igfx(struct pci_dev *dev)
  133. dmar_map_gfx = 0;
  134. }
  135. +static void quirk_iommu_ipu(struct pci_dev *dev)
  136. +{
  137. + if (!IS_INTEL_IPU(dev))
  138. + return;
  139. +
  140. + if (risky_device(dev))
  141. + return;
  142. +
  143. + pci_info(dev, "Passthrough IOMMU for integrated Intel IPU\n");
  144. + dmar_map_ipu = 0;
  145. +}
  146. +
  147. static void quirk_iommu_ipts(struct pci_dev *dev)
  148. {
  149. if (!IS_IPTS(dev))
  150. @@ -4998,6 +5024,7 @@ static void quirk_iommu_ipts(struct pci_dev *dev)
  151. pci_info(dev, "Passthrough IOMMU for IPTS\n");
  152. dmar_map_ipts = 0;
  153. }
  154. +
  155. /* G4x/GM45 integrated gfx dmar support is totally busted. */
  156. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2a40, quirk_iommu_igfx);
  157. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x2e00, quirk_iommu_igfx);
  158. @@ -5033,6 +5060,9 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x1632, quirk_iommu_igfx);
  159. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x163A, quirk_iommu_igfx);
  160. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x163D, quirk_iommu_igfx);
  161. +/* disable IPU dmar support */
  162. +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_ANY_ID, quirk_iommu_ipu);
  163. +
  164. /* disable IPTS dmar support */
  165. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x9D3E, quirk_iommu_ipts);
  166. --
  167. 2.43.0
  168. From 1b16e7cbcbf699e4d841424568e0de1cee048d93 Mon Sep 17 00:00:00 2001
  169. From: Daniel Scally <djrscally@gmail.com>
  170. Date: Sun, 10 Oct 2021 20:57:02 +0200
  171. Subject: [PATCH] platform/x86: int3472: Enable I2c daisy chain
  172. The TPS68470 PMIC has an I2C passthrough mode through which I2C traffic
  173. can be forwarded to a device connected to the PMIC as though it were
  174. connected directly to the system bus. Enable this mode when the chip
  175. is initialised.
  176. Signed-off-by: Daniel Scally <djrscally@gmail.com>
  177. Patchset: cameras
  178. ---
  179. drivers/platform/x86/intel/int3472/tps68470.c | 7 +++++++
  180. 1 file changed, 7 insertions(+)
  181. diff --git a/drivers/platform/x86/intel/int3472/tps68470.c b/drivers/platform/x86/intel/int3472/tps68470.c
  182. index 1e107fd49f82..e3e1696e7f0e 100644
  183. --- a/drivers/platform/x86/intel/int3472/tps68470.c
  184. +++ b/drivers/platform/x86/intel/int3472/tps68470.c
  185. @@ -46,6 +46,13 @@ static int tps68470_chip_init(struct device *dev, struct regmap *regmap)
  186. return ret;
  187. }
  188. + /* Enable I2C daisy chain */
  189. + ret = regmap_write(regmap, TPS68470_REG_S_I2C_CTL, 0x03);
  190. + if (ret) {
  191. + dev_err(dev, "Failed to enable i2c daisy chain\n");
  192. + return ret;
  193. + }
  194. +
  195. dev_info(dev, "TPS68470 REVID: 0x%02x\n", version);
  196. return 0;
  197. --
  198. 2.43.0
  199. From a856e6ec1aa1ce0e88abdd423a151f2bbddb8134 Mon Sep 17 00:00:00 2001
  200. From: Daniel Scally <dan.scally@ideasonboard.com>
  201. Date: Thu, 2 Mar 2023 12:59:39 +0000
  202. Subject: [PATCH] platform/x86: int3472: Remap reset GPIO for INT347E
  203. ACPI _HID INT347E represents the OmniVision 7251 camera sensor. The
  204. driver for this sensor expects a single pin named "enable", but on
  205. some Microsoft Surface platforms the sensor is assigned a single
  206. GPIO who's type flag is INT3472_GPIO_TYPE_RESET.
  207. Remap the GPIO pin's function from "reset" to "enable". This is done
  208. outside of the existing remap table since it is a more widespread
  209. discrepancy than that method is designed for. Additionally swap the
  210. polarity of the pin to match the driver's expectation.
  211. Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>
  212. Patchset: cameras
  213. ---
  214. drivers/platform/x86/intel/int3472/discrete.c | 14 ++++++++++++++
  215. 1 file changed, 14 insertions(+)
  216. diff --git a/drivers/platform/x86/intel/int3472/discrete.c b/drivers/platform/x86/intel/int3472/discrete.c
  217. index 07b302e09340..1d3097bc7e48 100644
  218. --- a/drivers/platform/x86/intel/int3472/discrete.c
  219. +++ b/drivers/platform/x86/intel/int3472/discrete.c
  220. @@ -83,12 +83,26 @@ static int skl_int3472_map_gpio_to_sensor(struct int3472_discrete_device *int347
  221. const char *func, u32 polarity)
  222. {
  223. int ret;
  224. + const struct acpi_device_id ov7251_ids[] = {
  225. + { "INT347E" },
  226. + };
  227. if (int3472->n_sensor_gpios >= INT3472_MAX_SENSOR_GPIOS) {
  228. dev_warn(int3472->dev, "Too many GPIOs mapped\n");
  229. return -EINVAL;
  230. }
  231. + /*
  232. + * In addition to the function remap table we need to bulk remap the
  233. + * "reset" GPIO for the OmniVision 7251 sensor, as the driver for that
  234. + * expects its only GPIO pin to be called "enable" (and to have the
  235. + * opposite polarity).
  236. + */
  237. + if (!strcmp(func, "reset") && !acpi_match_device_ids(int3472->sensor, ov7251_ids)) {
  238. + func = "enable";
  239. + polarity = GPIO_ACTIVE_HIGH;
  240. + }
  241. +
  242. ret = skl_int3472_fill_gpiod_lookup(&int3472->gpios.table[int3472->n_sensor_gpios],
  243. agpio, func, polarity);
  244. if (ret)
  245. --
  246. 2.43.0
  247. From a7a10c4493fe0a381f12fd6a20a024e7797bd37c Mon Sep 17 00:00:00 2001
  248. From: Daniel Scally <dan.scally@ideasonboard.com>
  249. Date: Tue, 21 Mar 2023 13:45:26 +0000
  250. Subject: [PATCH] media: i2c: Clarify that gain is Analogue gain in OV7251
  251. Update the control ID for the gain control in the ov7251 driver to
  252. V4L2_CID_ANALOGUE_GAIN.
  253. Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>
  254. Patchset: cameras
  255. ---
  256. drivers/media/i2c/ov7251.c | 4 ++--
  257. 1 file changed, 2 insertions(+), 2 deletions(-)
  258. diff --git a/drivers/media/i2c/ov7251.c b/drivers/media/i2c/ov7251.c
  259. index 6582cc0e2384..fd0796b6e07e 100644
  260. --- a/drivers/media/i2c/ov7251.c
  261. +++ b/drivers/media/i2c/ov7251.c
  262. @@ -1051,7 +1051,7 @@ static int ov7251_s_ctrl(struct v4l2_ctrl *ctrl)
  263. case V4L2_CID_EXPOSURE:
  264. ret = ov7251_set_exposure(ov7251, ctrl->val);
  265. break;
  266. - case V4L2_CID_GAIN:
  267. + case V4L2_CID_ANALOGUE_GAIN:
  268. ret = ov7251_set_gain(ov7251, ctrl->val);
  269. break;
  270. case V4L2_CID_TEST_PATTERN:
  271. @@ -1553,7 +1553,7 @@ static int ov7251_init_ctrls(struct ov7251 *ov7251)
  272. ov7251->exposure = v4l2_ctrl_new_std(&ov7251->ctrls, &ov7251_ctrl_ops,
  273. V4L2_CID_EXPOSURE, 1, 32, 1, 32);
  274. ov7251->gain = v4l2_ctrl_new_std(&ov7251->ctrls, &ov7251_ctrl_ops,
  275. - V4L2_CID_GAIN, 16, 1023, 1, 16);
  276. + V4L2_CID_ANALOGUE_GAIN, 16, 1023, 1, 16);
  277. v4l2_ctrl_new_std_menu_items(&ov7251->ctrls, &ov7251_ctrl_ops,
  278. V4L2_CID_TEST_PATTERN,
  279. ARRAY_SIZE(ov7251_test_pattern_menu) - 1,
  280. --
  281. 2.43.0
  282. From e96fa67c9172fac9aa6e68199cf7e29d074c21e6 Mon Sep 17 00:00:00 2001
  283. From: Daniel Scally <dan.scally@ideasonboard.com>
  284. Date: Wed, 22 Mar 2023 11:01:42 +0000
  285. Subject: [PATCH] media: v4l2-core: Acquire privacy led in
  286. v4l2_async_register_subdev()
  287. The current call to v4l2_subdev_get_privacy_led() is contained in
  288. v4l2_async_register_subdev_sensor(), but that function isn't used by
  289. all the sensor drivers. Move the acquisition of the privacy led to
  290. v4l2_async_register_subdev() instead.
  291. Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>
  292. Patchset: cameras
  293. ---
  294. drivers/media/v4l2-core/v4l2-async.c | 4 ++++
  295. drivers/media/v4l2-core/v4l2-fwnode.c | 4 ----
  296. 2 files changed, 4 insertions(+), 4 deletions(-)
  297. diff --git a/drivers/media/v4l2-core/v4l2-async.c b/drivers/media/v4l2-core/v4l2-async.c
  298. index 8cfd593d293d..c32f0d1b29d4 100644
  299. --- a/drivers/media/v4l2-core/v4l2-async.c
  300. +++ b/drivers/media/v4l2-core/v4l2-async.c
  301. @@ -796,6 +796,10 @@ int v4l2_async_register_subdev(struct v4l2_subdev *sd)
  302. INIT_LIST_HEAD(&sd->asc_list);
  303. + ret = v4l2_subdev_get_privacy_led(sd);
  304. + if (ret < 0)
  305. + return ret;
  306. +
  307. /*
  308. * No reference taken. The reference is held by the device (struct
  309. * v4l2_subdev.dev), and async sub-device does not exist independently
  310. diff --git a/drivers/media/v4l2-core/v4l2-fwnode.c b/drivers/media/v4l2-core/v4l2-fwnode.c
  311. index 7f181fbbb140..1c0347de4e21 100644
  312. --- a/drivers/media/v4l2-core/v4l2-fwnode.c
  313. +++ b/drivers/media/v4l2-core/v4l2-fwnode.c
  314. @@ -1217,10 +1217,6 @@ int v4l2_async_register_subdev_sensor(struct v4l2_subdev *sd)
  315. v4l2_async_subdev_nf_init(notifier, sd);
  316. - ret = v4l2_subdev_get_privacy_led(sd);
  317. - if (ret < 0)
  318. - goto out_cleanup;
  319. -
  320. ret = v4l2_async_nf_parse_fwnode_sensor(sd->dev, notifier);
  321. if (ret < 0)
  322. goto out_cleanup;
  323. --
  324. 2.43.0
  325. From 68dac72bec1c99890d35d6bfd1b1f66e0cf8789c Mon Sep 17 00:00:00 2001
  326. From: Kate Hsuan <hpa@redhat.com>
  327. Date: Tue, 21 Mar 2023 23:37:16 +0800
  328. Subject: [PATCH] platform: x86: int3472: Add MFD cell for tps68470 LED
  329. Add MFD cell for tps68470-led.
  330. Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
  331. Signed-off-by: Kate Hsuan <hpa@redhat.com>
  332. Reviewed-by: Hans de Goede <hdegoede@redhat.com>
  333. Patchset: cameras
  334. ---
  335. drivers/platform/x86/intel/int3472/tps68470.c | 5 +++--
  336. 1 file changed, 3 insertions(+), 2 deletions(-)
  337. diff --git a/drivers/platform/x86/intel/int3472/tps68470.c b/drivers/platform/x86/intel/int3472/tps68470.c
  338. index e3e1696e7f0e..423dc555093f 100644
  339. --- a/drivers/platform/x86/intel/int3472/tps68470.c
  340. +++ b/drivers/platform/x86/intel/int3472/tps68470.c
  341. @@ -17,7 +17,7 @@
  342. #define DESIGNED_FOR_CHROMEOS 1
  343. #define DESIGNED_FOR_WINDOWS 2
  344. -#define TPS68470_WIN_MFD_CELL_COUNT 3
  345. +#define TPS68470_WIN_MFD_CELL_COUNT 4
  346. static const struct mfd_cell tps68470_cros[] = {
  347. { .name = "tps68470-gpio" },
  348. @@ -200,7 +200,8 @@ static int skl_int3472_tps68470_probe(struct i2c_client *client)
  349. cells[1].name = "tps68470-regulator";
  350. cells[1].platform_data = (void *)board_data->tps68470_regulator_pdata;
  351. cells[1].pdata_size = sizeof(struct tps68470_regulator_platform_data);
  352. - cells[2].name = "tps68470-gpio";
  353. + cells[2].name = "tps68470-led";
  354. + cells[3].name = "tps68470-gpio";
  355. for (i = 0; i < board_data->n_gpiod_lookups; i++)
  356. gpiod_add_lookup_table(board_data->tps68470_gpio_lookup_tables[i]);
  357. --
  358. 2.43.0
  359. From 3f446f24aecaba808693f0173e28972e651fa87d Mon Sep 17 00:00:00 2001
  360. From: Kate Hsuan <hpa@redhat.com>
  361. Date: Tue, 21 Mar 2023 23:37:17 +0800
  362. Subject: [PATCH] include: mfd: tps68470: Add masks for LEDA and LEDB
  363. Add flags for both LEDA(TPS68470_ILEDCTL_ENA), LEDB
  364. (TPS68470_ILEDCTL_ENB), and current control mask for LEDB
  365. (TPS68470_ILEDCTL_CTRLB)
  366. Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
  367. Reviewed-by: Hans de Goede <hdegoede@redhat.com>
  368. Signed-off-by: Kate Hsuan <hpa@redhat.com>
  369. Patchset: cameras
  370. ---
  371. include/linux/mfd/tps68470.h | 5 +++++
  372. 1 file changed, 5 insertions(+)
  373. diff --git a/include/linux/mfd/tps68470.h b/include/linux/mfd/tps68470.h
  374. index 7807fa329db0..2d2abb25b944 100644
  375. --- a/include/linux/mfd/tps68470.h
  376. +++ b/include/linux/mfd/tps68470.h
  377. @@ -34,6 +34,7 @@
  378. #define TPS68470_REG_SGPO 0x22
  379. #define TPS68470_REG_GPDI 0x26
  380. #define TPS68470_REG_GPDO 0x27
  381. +#define TPS68470_REG_ILEDCTL 0x28
  382. #define TPS68470_REG_VCMVAL 0x3C
  383. #define TPS68470_REG_VAUX1VAL 0x3D
  384. #define TPS68470_REG_VAUX2VAL 0x3E
  385. @@ -94,4 +95,8 @@
  386. #define TPS68470_GPIO_MODE_OUT_CMOS 2
  387. #define TPS68470_GPIO_MODE_OUT_ODRAIN 3
  388. +#define TPS68470_ILEDCTL_ENA BIT(2)
  389. +#define TPS68470_ILEDCTL_ENB BIT(6)
  390. +#define TPS68470_ILEDCTL_CTRLB GENMASK(5, 4)
  391. +
  392. #endif /* __LINUX_MFD_TPS68470_H */
  393. --
  394. 2.43.0
  395. From a0fe4ec438c5edb9f4360c8a2a5f5269d05c44ef Mon Sep 17 00:00:00 2001
  396. From: Kate Hsuan <hpa@redhat.com>
  397. Date: Tue, 21 Mar 2023 23:37:18 +0800
  398. Subject: [PATCH] leds: tps68470: Add LED control for tps68470
  399. There are two LED controllers, LEDA indicator LED and LEDB flash LED for
  400. tps68470. LEDA can be enabled by setting TPS68470_ILEDCTL_ENA. Moreover,
  401. tps68470 provides four levels of power status for LEDB. If the
  402. properties called "ti,ledb-current" can be found, the current will be
  403. set according to the property values. These two LEDs can be controlled
  404. through the LED class of sysfs (tps68470-leda and tps68470-ledb).
  405. Signed-off-by: Kate Hsuan <hpa@redhat.com>
  406. Reviewed-by: Hans de Goede <hdegoede@redhat.com>
  407. Patchset: cameras
  408. ---
  409. drivers/leds/Kconfig | 12 +++
  410. drivers/leds/Makefile | 1 +
  411. drivers/leds/leds-tps68470.c | 185 +++++++++++++++++++++++++++++++++++
  412. 3 files changed, 198 insertions(+)
  413. create mode 100644 drivers/leds/leds-tps68470.c
  414. diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig
  415. index a3a9ac5b5338..0bc6845b5d29 100644
  416. --- a/drivers/leds/Kconfig
  417. +++ b/drivers/leds/Kconfig
  418. @@ -875,6 +875,18 @@ config LEDS_TPS6105X
  419. It is a single boost converter primarily for white LEDs and
  420. audio amplifiers.
  421. +config LEDS_TPS68470
  422. + tristate "LED support for TI TPS68470"
  423. + depends on LEDS_CLASS
  424. + depends on INTEL_SKL_INT3472
  425. + help
  426. + This driver supports TPS68470 PMIC with LED chip.
  427. + It provides two LED controllers, with the ability to drive 2
  428. + indicator LEDs and 2 flash LEDs.
  429. +
  430. + To compile this driver as a module, choose M and it will be
  431. + called leds-tps68470
  432. +
  433. config LEDS_IP30
  434. tristate "LED support for SGI Octane machines"
  435. depends on LEDS_CLASS
  436. diff --git a/drivers/leds/Makefile b/drivers/leds/Makefile
  437. index d7348e8bc019..10caea4e7c61 100644
  438. --- a/drivers/leds/Makefile
  439. +++ b/drivers/leds/Makefile
  440. @@ -84,6 +84,7 @@ obj-$(CONFIG_LEDS_TCA6507) += leds-tca6507.o
  441. obj-$(CONFIG_LEDS_TI_LMU_COMMON) += leds-ti-lmu-common.o
  442. obj-$(CONFIG_LEDS_TLC591XX) += leds-tlc591xx.o
  443. obj-$(CONFIG_LEDS_TPS6105X) += leds-tps6105x.o
  444. +obj-$(CONFIG_LEDS_TPS68470) += leds-tps68470.o
  445. obj-$(CONFIG_LEDS_TURRIS_OMNIA) += leds-turris-omnia.o
  446. obj-$(CONFIG_LEDS_WM831X_STATUS) += leds-wm831x-status.o
  447. obj-$(CONFIG_LEDS_WM8350) += leds-wm8350.o
  448. diff --git a/drivers/leds/leds-tps68470.c b/drivers/leds/leds-tps68470.c
  449. new file mode 100644
  450. index 000000000000..35aeb5db89c8
  451. --- /dev/null
  452. +++ b/drivers/leds/leds-tps68470.c
  453. @@ -0,0 +1,185 @@
  454. +// SPDX-License-Identifier: GPL-2.0
  455. +/*
  456. + * LED driver for TPS68470 PMIC
  457. + *
  458. + * Copyright (C) 2023 Red Hat
  459. + *
  460. + * Authors:
  461. + * Kate Hsuan <hpa@redhat.com>
  462. + */
  463. +
  464. +#include <linux/leds.h>
  465. +#include <linux/mfd/tps68470.h>
  466. +#include <linux/module.h>
  467. +#include <linux/platform_device.h>
  468. +#include <linux/property.h>
  469. +#include <linux/regmap.h>
  470. +
  471. +
  472. +#define lcdev_to_led(led_cdev) \
  473. + container_of(led_cdev, struct tps68470_led, lcdev)
  474. +
  475. +#define led_to_tps68470(led, index) \
  476. + container_of(led, struct tps68470_device, leds[index])
  477. +
  478. +enum tps68470_led_ids {
  479. + TPS68470_ILED_A,
  480. + TPS68470_ILED_B,
  481. + TPS68470_NUM_LEDS
  482. +};
  483. +
  484. +static const char *tps68470_led_names[] = {
  485. + [TPS68470_ILED_A] = "tps68470-iled_a",
  486. + [TPS68470_ILED_B] = "tps68470-iled_b",
  487. +};
  488. +
  489. +struct tps68470_led {
  490. + unsigned int led_id;
  491. + struct led_classdev lcdev;
  492. +};
  493. +
  494. +struct tps68470_device {
  495. + struct device *dev;
  496. + struct regmap *regmap;
  497. + struct tps68470_led leds[TPS68470_NUM_LEDS];
  498. +};
  499. +
  500. +enum ctrlb_current {
  501. + CTRLB_2MA = 0,
  502. + CTRLB_4MA = 1,
  503. + CTRLB_8MA = 2,
  504. + CTRLB_16MA = 3,
  505. +};
  506. +
  507. +static int tps68470_brightness_set(struct led_classdev *led_cdev, enum led_brightness brightness)
  508. +{
  509. + struct tps68470_led *led = lcdev_to_led(led_cdev);
  510. + struct tps68470_device *tps68470 = led_to_tps68470(led, led->led_id);
  511. + struct regmap *regmap = tps68470->regmap;
  512. +
  513. + switch (led->led_id) {
  514. + case TPS68470_ILED_A:
  515. + return regmap_update_bits(regmap, TPS68470_REG_ILEDCTL, TPS68470_ILEDCTL_ENA,
  516. + brightness ? TPS68470_ILEDCTL_ENA : 0);
  517. + case TPS68470_ILED_B:
  518. + return regmap_update_bits(regmap, TPS68470_REG_ILEDCTL, TPS68470_ILEDCTL_ENB,
  519. + brightness ? TPS68470_ILEDCTL_ENB : 0);
  520. + }
  521. + return -EINVAL;
  522. +}
  523. +
  524. +static enum led_brightness tps68470_brightness_get(struct led_classdev *led_cdev)
  525. +{
  526. + struct tps68470_led *led = lcdev_to_led(led_cdev);
  527. + struct tps68470_device *tps68470 = led_to_tps68470(led, led->led_id);
  528. + struct regmap *regmap = tps68470->regmap;
  529. + int ret = 0;
  530. + int value = 0;
  531. +
  532. + ret = regmap_read(regmap, TPS68470_REG_ILEDCTL, &value);
  533. + if (ret)
  534. + return dev_err_probe(led_cdev->dev, -EINVAL, "failed on reading register\n");
  535. +
  536. + switch (led->led_id) {
  537. + case TPS68470_ILED_A:
  538. + value = value & TPS68470_ILEDCTL_ENA;
  539. + break;
  540. + case TPS68470_ILED_B:
  541. + value = value & TPS68470_ILEDCTL_ENB;
  542. + break;
  543. + }
  544. +
  545. + return value ? LED_ON : LED_OFF;
  546. +}
  547. +
  548. +
  549. +static int tps68470_ledb_current_init(struct platform_device *pdev,
  550. + struct tps68470_device *tps68470)
  551. +{
  552. + int ret = 0;
  553. + unsigned int curr;
  554. +
  555. + /* configure LEDB current if the properties can be got */
  556. + if (!device_property_read_u32(&pdev->dev, "ti,ledb-current", &curr)) {
  557. + if (curr > CTRLB_16MA) {
  558. + dev_err(&pdev->dev,
  559. + "Invalid LEDB current value: %d\n",
  560. + curr);
  561. + return -EINVAL;
  562. + }
  563. + ret = regmap_update_bits(tps68470->regmap, TPS68470_REG_ILEDCTL,
  564. + TPS68470_ILEDCTL_CTRLB, curr);
  565. + }
  566. + return ret;
  567. +}
  568. +
  569. +static int tps68470_leds_probe(struct platform_device *pdev)
  570. +{
  571. + int i = 0;
  572. + int ret = 0;
  573. + struct tps68470_device *tps68470;
  574. + struct tps68470_led *led;
  575. + struct led_classdev *lcdev;
  576. +
  577. + tps68470 = devm_kzalloc(&pdev->dev, sizeof(struct tps68470_device),
  578. + GFP_KERNEL);
  579. + if (!tps68470)
  580. + return -ENOMEM;
  581. +
  582. + tps68470->dev = &pdev->dev;
  583. + tps68470->regmap = dev_get_drvdata(pdev->dev.parent);
  584. +
  585. + for (i = 0; i < TPS68470_NUM_LEDS; i++) {
  586. + led = &tps68470->leds[i];
  587. + lcdev = &led->lcdev;
  588. +
  589. + led->led_id = i;
  590. +
  591. + lcdev->name = devm_kasprintf(tps68470->dev, GFP_KERNEL, "%s::%s",
  592. + tps68470_led_names[i], LED_FUNCTION_INDICATOR);
  593. + if (!lcdev->name)
  594. + return -ENOMEM;
  595. +
  596. + lcdev->max_brightness = 1;
  597. + lcdev->brightness = 0;
  598. + lcdev->brightness_set_blocking = tps68470_brightness_set;
  599. + lcdev->brightness_get = tps68470_brightness_get;
  600. + lcdev->dev = &pdev->dev;
  601. +
  602. + ret = devm_led_classdev_register(tps68470->dev, lcdev);
  603. + if (ret) {
  604. + dev_err_probe(tps68470->dev, ret,
  605. + "error registering led\n");
  606. + goto err_exit;
  607. + }
  608. +
  609. + if (i == TPS68470_ILED_B) {
  610. + ret = tps68470_ledb_current_init(pdev, tps68470);
  611. + if (ret)
  612. + goto err_exit;
  613. + }
  614. + }
  615. +
  616. +err_exit:
  617. + if (ret) {
  618. + for (i = 0; i < TPS68470_NUM_LEDS; i++) {
  619. + if (tps68470->leds[i].lcdev.name)
  620. + devm_led_classdev_unregister(&pdev->dev,
  621. + &tps68470->leds[i].lcdev);
  622. + }
  623. + }
  624. +
  625. + return ret;
  626. +}
  627. +static struct platform_driver tps68470_led_driver = {
  628. + .driver = {
  629. + .name = "tps68470-led",
  630. + },
  631. + .probe = tps68470_leds_probe,
  632. +};
  633. +
  634. +module_platform_driver(tps68470_led_driver);
  635. +
  636. +MODULE_ALIAS("platform:tps68470-led");
  637. +MODULE_DESCRIPTION("LED driver for TPS68470 PMIC");
  638. +MODULE_LICENSE("GPL v2");
  639. --
  640. 2.43.0