0013-cameras.patch 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678
  1. From 673bc3f1e5f697afc8066e59245458935f28546c 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 fb1fe9f3b1a3..5be8893b3912 100644
  51. --- a/drivers/acpi/scan.c
  52. +++ b/drivers/acpi/scan.c
  53. @@ -2197,6 +2197,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.50.0
  64. From cf8447073f3dee50253c653d9b20ae9cc52a5106 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 c07d15343f76..f0fd3155340a 100644
  88. --- a/drivers/iommu/intel/iommu.c
  89. +++ b/drivers/iommu/intel/iommu.c
  90. @@ -44,6 +44,13 @@
  91. ((pdev)->vendor == PCI_VENDOR_ID_INTEL && (pdev)->device == 0x34E4) \
  92. )
  93. +#define IS_INTEL_IPU(pdev) ((pdev)->vendor == PCI_VENDOR_ID_INTEL && \
  94. + ((pdev)->device == 0x9a19 || \
  95. + (pdev)->device == 0x9a39 || \
  96. + (pdev)->device == 0x4e19 || \
  97. + (pdev)->device == 0x465d || \
  98. + (pdev)->device == 0x1919))
  99. +
  100. #define IOAPIC_RANGE_START (0xfee00000)
  101. #define IOAPIC_RANGE_END (0xfeefffff)
  102. #define IOVA_START_ADDR (0x1000)
  103. @@ -213,12 +220,14 @@ int intel_iommu_enabled = 0;
  104. EXPORT_SYMBOL_GPL(intel_iommu_enabled);
  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. static int disable_igfx_iommu;
  111. #define IDENTMAP_AZALIA 4
  112. +#define IDENTMAP_IPU 8
  113. #define IDENTMAP_IPTS 16
  114. const struct iommu_ops intel_iommu_ops;
  115. @@ -1943,6 +1952,9 @@ static int device_def_domain_type(struct device *dev)
  116. if ((iommu_identity_mapping & IDENTMAP_AZALIA) && IS_AZALIA(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. @@ -2239,6 +2251,9 @@ static int __init init_dmars(void)
  125. iommu_set_root_entry(iommu);
  126. }
  127. + if (!dmar_map_ipu)
  128. + iommu_identity_mapping |= IDENTMAP_IPU;
  129. +
  130. if (!dmar_map_ipts)
  131. iommu_identity_mapping |= IDENTMAP_IPTS;
  132. @@ -4443,6 +4458,18 @@ static void quirk_iommu_igfx(struct pci_dev *dev)
  133. disable_igfx_iommu = 1;
  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. @@ -4493,6 +4520,9 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x1632, quirk_iommu_igfx);
  151. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x163A, quirk_iommu_igfx);
  152. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x163D, quirk_iommu_igfx);
  153. +/* disable IPU dmar support */
  154. +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_ANY_ID, quirk_iommu_ipu);
  155. +
  156. /* disable IPTS dmar support */
  157. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x9D3E, quirk_iommu_ipts);
  158. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x34E4, quirk_iommu_ipts);
  159. --
  160. 2.50.0
  161. From d4df94633dd54daa123fb5497a741d5f0d8d9b9e Mon Sep 17 00:00:00 2001
  162. From: Daniel Scally <djrscally@gmail.com>
  163. Date: Sun, 10 Oct 2021 20:57:02 +0200
  164. Subject: [PATCH] platform/x86: int3472: Enable I2c daisy chain
  165. The TPS68470 PMIC has an I2C passthrough mode through which I2C traffic
  166. can be forwarded to a device connected to the PMIC as though it were
  167. connected directly to the system bus. Enable this mode when the chip
  168. is initialised.
  169. Signed-off-by: Daniel Scally <djrscally@gmail.com>
  170. Patchset: cameras
  171. ---
  172. drivers/platform/x86/intel/int3472/tps68470.c | 7 +++++++
  173. 1 file changed, 7 insertions(+)
  174. diff --git a/drivers/platform/x86/intel/int3472/tps68470.c b/drivers/platform/x86/intel/int3472/tps68470.c
  175. index 81ac4c691963..f453c9043042 100644
  176. --- a/drivers/platform/x86/intel/int3472/tps68470.c
  177. +++ b/drivers/platform/x86/intel/int3472/tps68470.c
  178. @@ -46,6 +46,13 @@ static int tps68470_chip_init(struct device *dev, struct regmap *regmap)
  179. return ret;
  180. }
  181. + /* Enable I2C daisy chain */
  182. + ret = regmap_write(regmap, TPS68470_REG_S_I2C_CTL, 0x03);
  183. + if (ret) {
  184. + dev_err(dev, "Failed to enable i2c daisy chain\n");
  185. + return ret;
  186. + }
  187. +
  188. dev_info(dev, "TPS68470 REVID: 0x%02x\n", version);
  189. return 0;
  190. --
  191. 2.50.0
  192. From a0ce4892cc5518186d1fb1f54d61aaf7fd4ca64e Mon Sep 17 00:00:00 2001
  193. From: Daniel Scally <dan.scally@ideasonboard.com>
  194. Date: Tue, 21 Mar 2023 13:45:26 +0000
  195. Subject: [PATCH] media: i2c: Clarify that gain is Analogue gain in OV7251
  196. Update the control ID for the gain control in the ov7251 driver to
  197. V4L2_CID_ANALOGUE_GAIN.
  198. Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>
  199. Patchset: cameras
  200. ---
  201. drivers/media/i2c/ov7251.c | 4 ++--
  202. 1 file changed, 2 insertions(+), 2 deletions(-)
  203. diff --git a/drivers/media/i2c/ov7251.c b/drivers/media/i2c/ov7251.c
  204. index 3226888d77e9..3bfe45b764f7 100644
  205. --- a/drivers/media/i2c/ov7251.c
  206. +++ b/drivers/media/i2c/ov7251.c
  207. @@ -1053,7 +1053,7 @@ static int ov7251_s_ctrl(struct v4l2_ctrl *ctrl)
  208. case V4L2_CID_EXPOSURE:
  209. ret = ov7251_set_exposure(ov7251, ctrl->val);
  210. break;
  211. - case V4L2_CID_GAIN:
  212. + case V4L2_CID_ANALOGUE_GAIN:
  213. ret = ov7251_set_gain(ov7251, ctrl->val);
  214. break;
  215. case V4L2_CID_TEST_PATTERN:
  216. @@ -1574,7 +1574,7 @@ static int ov7251_init_ctrls(struct ov7251 *ov7251)
  217. ov7251->exposure = v4l2_ctrl_new_std(&ov7251->ctrls, &ov7251_ctrl_ops,
  218. V4L2_CID_EXPOSURE, 1, 32, 1, 32);
  219. ov7251->gain = v4l2_ctrl_new_std(&ov7251->ctrls, &ov7251_ctrl_ops,
  220. - V4L2_CID_GAIN, 16, 1023, 1, 16);
  221. + V4L2_CID_ANALOGUE_GAIN, 16, 1023, 1, 16);
  222. v4l2_ctrl_new_std_menu_items(&ov7251->ctrls, &ov7251_ctrl_ops,
  223. V4L2_CID_TEST_PATTERN,
  224. ARRAY_SIZE(ov7251_test_pattern_menu) - 1,
  225. --
  226. 2.50.0
  227. From 75ac36f76af5da0031f58d842158d2a07fc2fe28 Mon Sep 17 00:00:00 2001
  228. From: Daniel Scally <dan.scally@ideasonboard.com>
  229. Date: Wed, 22 Mar 2023 11:01:42 +0000
  230. Subject: [PATCH] media: v4l2-core: Acquire privacy led in
  231. v4l2_async_register_subdev()
  232. The current call to v4l2_subdev_get_privacy_led() is contained in
  233. v4l2_async_register_subdev_sensor(), but that function isn't used by
  234. all the sensor drivers. Move the acquisition of the privacy led to
  235. v4l2_async_register_subdev() instead.
  236. Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>
  237. Patchset: cameras
  238. ---
  239. drivers/media/v4l2-core/v4l2-async.c | 4 ++++
  240. drivers/media/v4l2-core/v4l2-fwnode.c | 4 ----
  241. 2 files changed, 4 insertions(+), 4 deletions(-)
  242. diff --git a/drivers/media/v4l2-core/v4l2-async.c b/drivers/media/v4l2-core/v4l2-async.c
  243. index ee884a8221fb..4f6bafd900ee 100644
  244. --- a/drivers/media/v4l2-core/v4l2-async.c
  245. +++ b/drivers/media/v4l2-core/v4l2-async.c
  246. @@ -799,6 +799,10 @@ int __v4l2_async_register_subdev(struct v4l2_subdev *sd, struct module *module)
  247. INIT_LIST_HEAD(&sd->asc_list);
  248. + ret = v4l2_subdev_get_privacy_led(sd);
  249. + if (ret < 0)
  250. + return ret;
  251. +
  252. /*
  253. * No reference taken. The reference is held by the device (struct
  254. * v4l2_subdev.dev), and async sub-device does not exist independently
  255. diff --git a/drivers/media/v4l2-core/v4l2-fwnode.c b/drivers/media/v4l2-core/v4l2-fwnode.c
  256. index cb153ce42c45..f11b499e14bb 100644
  257. --- a/drivers/media/v4l2-core/v4l2-fwnode.c
  258. +++ b/drivers/media/v4l2-core/v4l2-fwnode.c
  259. @@ -1260,10 +1260,6 @@ int v4l2_async_register_subdev_sensor(struct v4l2_subdev *sd)
  260. v4l2_async_subdev_nf_init(notifier, sd);
  261. - ret = v4l2_subdev_get_privacy_led(sd);
  262. - if (ret < 0)
  263. - goto out_cleanup;
  264. -
  265. ret = v4l2_async_nf_parse_fwnode_sensor(sd->dev, notifier);
  266. if (ret < 0)
  267. goto out_cleanup;
  268. --
  269. 2.50.0
  270. From a726339cb0b04a33e5cf091d7e400e46d3a0fe00 Mon Sep 17 00:00:00 2001
  271. From: Kate Hsuan <hpa@redhat.com>
  272. Date: Tue, 21 Mar 2023 23:37:16 +0800
  273. Subject: [PATCH] platform: x86: int3472: Add MFD cell for tps68470 LED
  274. Add MFD cell for tps68470-led.
  275. Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
  276. Signed-off-by: Kate Hsuan <hpa@redhat.com>
  277. Reviewed-by: Hans de Goede <hdegoede@redhat.com>
  278. Patchset: cameras
  279. ---
  280. drivers/platform/x86/intel/int3472/tps68470.c | 5 +++--
  281. 1 file changed, 3 insertions(+), 2 deletions(-)
  282. diff --git a/drivers/platform/x86/intel/int3472/tps68470.c b/drivers/platform/x86/intel/int3472/tps68470.c
  283. index f453c9043042..b8ad6b413e8b 100644
  284. --- a/drivers/platform/x86/intel/int3472/tps68470.c
  285. +++ b/drivers/platform/x86/intel/int3472/tps68470.c
  286. @@ -17,7 +17,7 @@
  287. #define DESIGNED_FOR_CHROMEOS 1
  288. #define DESIGNED_FOR_WINDOWS 2
  289. -#define TPS68470_WIN_MFD_CELL_COUNT 3
  290. +#define TPS68470_WIN_MFD_CELL_COUNT 4
  291. static const struct mfd_cell tps68470_cros[] = {
  292. { .name = "tps68470-gpio" },
  293. @@ -203,7 +203,8 @@ static int skl_int3472_tps68470_probe(struct i2c_client *client)
  294. cells[1].name = "tps68470-regulator";
  295. cells[1].platform_data = (void *)board_data->tps68470_regulator_pdata;
  296. cells[1].pdata_size = sizeof(struct tps68470_regulator_platform_data);
  297. - cells[2].name = "tps68470-gpio";
  298. + cells[2].name = "tps68470-led";
  299. + cells[3].name = "tps68470-gpio";
  300. for (i = 0; i < board_data->n_gpiod_lookups; i++)
  301. gpiod_add_lookup_table(board_data->tps68470_gpio_lookup_tables[i]);
  302. --
  303. 2.50.0
  304. From 15ebc12622ba3d93a9f554e927a63e9e8672f40b Mon Sep 17 00:00:00 2001
  305. From: Kate Hsuan <hpa@redhat.com>
  306. Date: Tue, 21 Mar 2023 23:37:17 +0800
  307. Subject: [PATCH] include: mfd: tps68470: Add masks for LEDA and LEDB
  308. Add flags for both LEDA(TPS68470_ILEDCTL_ENA), LEDB
  309. (TPS68470_ILEDCTL_ENB), and current control mask for LEDB
  310. (TPS68470_ILEDCTL_CTRLB)
  311. Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
  312. Reviewed-by: Hans de Goede <hdegoede@redhat.com>
  313. Signed-off-by: Kate Hsuan <hpa@redhat.com>
  314. Patchset: cameras
  315. ---
  316. include/linux/mfd/tps68470.h | 5 +++++
  317. 1 file changed, 5 insertions(+)
  318. diff --git a/include/linux/mfd/tps68470.h b/include/linux/mfd/tps68470.h
  319. index 7807fa329db0..2d2abb25b944 100644
  320. --- a/include/linux/mfd/tps68470.h
  321. +++ b/include/linux/mfd/tps68470.h
  322. @@ -34,6 +34,7 @@
  323. #define TPS68470_REG_SGPO 0x22
  324. #define TPS68470_REG_GPDI 0x26
  325. #define TPS68470_REG_GPDO 0x27
  326. +#define TPS68470_REG_ILEDCTL 0x28
  327. #define TPS68470_REG_VCMVAL 0x3C
  328. #define TPS68470_REG_VAUX1VAL 0x3D
  329. #define TPS68470_REG_VAUX2VAL 0x3E
  330. @@ -94,4 +95,8 @@
  331. #define TPS68470_GPIO_MODE_OUT_CMOS 2
  332. #define TPS68470_GPIO_MODE_OUT_ODRAIN 3
  333. +#define TPS68470_ILEDCTL_ENA BIT(2)
  334. +#define TPS68470_ILEDCTL_ENB BIT(6)
  335. +#define TPS68470_ILEDCTL_CTRLB GENMASK(5, 4)
  336. +
  337. #endif /* __LINUX_MFD_TPS68470_H */
  338. --
  339. 2.50.0
  340. From 726379fff106ed4f53dd44877af3a23fd879145c Mon Sep 17 00:00:00 2001
  341. From: Kate Hsuan <hpa@redhat.com>
  342. Date: Tue, 21 Mar 2023 23:37:18 +0800
  343. Subject: [PATCH] leds: tps68470: Add LED control for tps68470
  344. There are two LED controllers, LEDA indicator LED and LEDB flash LED for
  345. tps68470. LEDA can be enabled by setting TPS68470_ILEDCTL_ENA. Moreover,
  346. tps68470 provides four levels of power status for LEDB. If the
  347. properties called "ti,ledb-current" can be found, the current will be
  348. set according to the property values. These two LEDs can be controlled
  349. through the LED class of sysfs (tps68470-leda and tps68470-ledb).
  350. Signed-off-by: Kate Hsuan <hpa@redhat.com>
  351. Reviewed-by: Hans de Goede <hdegoede@redhat.com>
  352. Patchset: cameras
  353. ---
  354. drivers/leds/Kconfig | 12 +++
  355. drivers/leds/Makefile | 1 +
  356. drivers/leds/leds-tps68470.c | 185 +++++++++++++++++++++++++++++++++++
  357. 3 files changed, 198 insertions(+)
  358. create mode 100644 drivers/leds/leds-tps68470.c
  359. diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig
  360. index a104cbb0a001..535a10cbbff1 100644
  361. --- a/drivers/leds/Kconfig
  362. +++ b/drivers/leds/Kconfig
  363. @@ -995,6 +995,18 @@ config LEDS_TPS6105X
  364. It is a single boost converter primarily for white LEDs and
  365. audio amplifiers.
  366. +config LEDS_TPS68470
  367. + tristate "LED support for TI TPS68470"
  368. + depends on LEDS_CLASS
  369. + depends on INTEL_SKL_INT3472
  370. + help
  371. + This driver supports TPS68470 PMIC with LED chip.
  372. + It provides two LED controllers, with the ability to drive 2
  373. + indicator LEDs and 2 flash LEDs.
  374. +
  375. + To compile this driver as a module, choose M and it will be
  376. + called leds-tps68470
  377. +
  378. config LEDS_IP30
  379. tristate "LED support for SGI Octane machines"
  380. depends on LEDS_CLASS
  381. diff --git a/drivers/leds/Makefile b/drivers/leds/Makefile
  382. index 2f170d69dcbf..17f0ecd1f52e 100644
  383. --- a/drivers/leds/Makefile
  384. +++ b/drivers/leds/Makefile
  385. @@ -92,6 +92,7 @@ obj-$(CONFIG_LEDS_TCA6507) += leds-tca6507.o
  386. obj-$(CONFIG_LEDS_TI_LMU_COMMON) += leds-ti-lmu-common.o
  387. obj-$(CONFIG_LEDS_TLC591XX) += leds-tlc591xx.o
  388. obj-$(CONFIG_LEDS_TPS6105X) += leds-tps6105x.o
  389. +obj-$(CONFIG_LEDS_TPS68470) += leds-tps68470.o
  390. obj-$(CONFIG_LEDS_TURRIS_OMNIA) += leds-turris-omnia.o
  391. obj-$(CONFIG_LEDS_UPBOARD) += leds-upboard.o
  392. obj-$(CONFIG_LEDS_WM831X_STATUS) += leds-wm831x-status.o
  393. diff --git a/drivers/leds/leds-tps68470.c b/drivers/leds/leds-tps68470.c
  394. new file mode 100644
  395. index 000000000000..35aeb5db89c8
  396. --- /dev/null
  397. +++ b/drivers/leds/leds-tps68470.c
  398. @@ -0,0 +1,185 @@
  399. +// SPDX-License-Identifier: GPL-2.0
  400. +/*
  401. + * LED driver for TPS68470 PMIC
  402. + *
  403. + * Copyright (C) 2023 Red Hat
  404. + *
  405. + * Authors:
  406. + * Kate Hsuan <hpa@redhat.com>
  407. + */
  408. +
  409. +#include <linux/leds.h>
  410. +#include <linux/mfd/tps68470.h>
  411. +#include <linux/module.h>
  412. +#include <linux/platform_device.h>
  413. +#include <linux/property.h>
  414. +#include <linux/regmap.h>
  415. +
  416. +
  417. +#define lcdev_to_led(led_cdev) \
  418. + container_of(led_cdev, struct tps68470_led, lcdev)
  419. +
  420. +#define led_to_tps68470(led, index) \
  421. + container_of(led, struct tps68470_device, leds[index])
  422. +
  423. +enum tps68470_led_ids {
  424. + TPS68470_ILED_A,
  425. + TPS68470_ILED_B,
  426. + TPS68470_NUM_LEDS
  427. +};
  428. +
  429. +static const char *tps68470_led_names[] = {
  430. + [TPS68470_ILED_A] = "tps68470-iled_a",
  431. + [TPS68470_ILED_B] = "tps68470-iled_b",
  432. +};
  433. +
  434. +struct tps68470_led {
  435. + unsigned int led_id;
  436. + struct led_classdev lcdev;
  437. +};
  438. +
  439. +struct tps68470_device {
  440. + struct device *dev;
  441. + struct regmap *regmap;
  442. + struct tps68470_led leds[TPS68470_NUM_LEDS];
  443. +};
  444. +
  445. +enum ctrlb_current {
  446. + CTRLB_2MA = 0,
  447. + CTRLB_4MA = 1,
  448. + CTRLB_8MA = 2,
  449. + CTRLB_16MA = 3,
  450. +};
  451. +
  452. +static int tps68470_brightness_set(struct led_classdev *led_cdev, enum led_brightness brightness)
  453. +{
  454. + struct tps68470_led *led = lcdev_to_led(led_cdev);
  455. + struct tps68470_device *tps68470 = led_to_tps68470(led, led->led_id);
  456. + struct regmap *regmap = tps68470->regmap;
  457. +
  458. + switch (led->led_id) {
  459. + case TPS68470_ILED_A:
  460. + return regmap_update_bits(regmap, TPS68470_REG_ILEDCTL, TPS68470_ILEDCTL_ENA,
  461. + brightness ? TPS68470_ILEDCTL_ENA : 0);
  462. + case TPS68470_ILED_B:
  463. + return regmap_update_bits(regmap, TPS68470_REG_ILEDCTL, TPS68470_ILEDCTL_ENB,
  464. + brightness ? TPS68470_ILEDCTL_ENB : 0);
  465. + }
  466. + return -EINVAL;
  467. +}
  468. +
  469. +static enum led_brightness tps68470_brightness_get(struct led_classdev *led_cdev)
  470. +{
  471. + struct tps68470_led *led = lcdev_to_led(led_cdev);
  472. + struct tps68470_device *tps68470 = led_to_tps68470(led, led->led_id);
  473. + struct regmap *regmap = tps68470->regmap;
  474. + int ret = 0;
  475. + int value = 0;
  476. +
  477. + ret = regmap_read(regmap, TPS68470_REG_ILEDCTL, &value);
  478. + if (ret)
  479. + return dev_err_probe(led_cdev->dev, -EINVAL, "failed on reading register\n");
  480. +
  481. + switch (led->led_id) {
  482. + case TPS68470_ILED_A:
  483. + value = value & TPS68470_ILEDCTL_ENA;
  484. + break;
  485. + case TPS68470_ILED_B:
  486. + value = value & TPS68470_ILEDCTL_ENB;
  487. + break;
  488. + }
  489. +
  490. + return value ? LED_ON : LED_OFF;
  491. +}
  492. +
  493. +
  494. +static int tps68470_ledb_current_init(struct platform_device *pdev,
  495. + struct tps68470_device *tps68470)
  496. +{
  497. + int ret = 0;
  498. + unsigned int curr;
  499. +
  500. + /* configure LEDB current if the properties can be got */
  501. + if (!device_property_read_u32(&pdev->dev, "ti,ledb-current", &curr)) {
  502. + if (curr > CTRLB_16MA) {
  503. + dev_err(&pdev->dev,
  504. + "Invalid LEDB current value: %d\n",
  505. + curr);
  506. + return -EINVAL;
  507. + }
  508. + ret = regmap_update_bits(tps68470->regmap, TPS68470_REG_ILEDCTL,
  509. + TPS68470_ILEDCTL_CTRLB, curr);
  510. + }
  511. + return ret;
  512. +}
  513. +
  514. +static int tps68470_leds_probe(struct platform_device *pdev)
  515. +{
  516. + int i = 0;
  517. + int ret = 0;
  518. + struct tps68470_device *tps68470;
  519. + struct tps68470_led *led;
  520. + struct led_classdev *lcdev;
  521. +
  522. + tps68470 = devm_kzalloc(&pdev->dev, sizeof(struct tps68470_device),
  523. + GFP_KERNEL);
  524. + if (!tps68470)
  525. + return -ENOMEM;
  526. +
  527. + tps68470->dev = &pdev->dev;
  528. + tps68470->regmap = dev_get_drvdata(pdev->dev.parent);
  529. +
  530. + for (i = 0; i < TPS68470_NUM_LEDS; i++) {
  531. + led = &tps68470->leds[i];
  532. + lcdev = &led->lcdev;
  533. +
  534. + led->led_id = i;
  535. +
  536. + lcdev->name = devm_kasprintf(tps68470->dev, GFP_KERNEL, "%s::%s",
  537. + tps68470_led_names[i], LED_FUNCTION_INDICATOR);
  538. + if (!lcdev->name)
  539. + return -ENOMEM;
  540. +
  541. + lcdev->max_brightness = 1;
  542. + lcdev->brightness = 0;
  543. + lcdev->brightness_set_blocking = tps68470_brightness_set;
  544. + lcdev->brightness_get = tps68470_brightness_get;
  545. + lcdev->dev = &pdev->dev;
  546. +
  547. + ret = devm_led_classdev_register(tps68470->dev, lcdev);
  548. + if (ret) {
  549. + dev_err_probe(tps68470->dev, ret,
  550. + "error registering led\n");
  551. + goto err_exit;
  552. + }
  553. +
  554. + if (i == TPS68470_ILED_B) {
  555. + ret = tps68470_ledb_current_init(pdev, tps68470);
  556. + if (ret)
  557. + goto err_exit;
  558. + }
  559. + }
  560. +
  561. +err_exit:
  562. + if (ret) {
  563. + for (i = 0; i < TPS68470_NUM_LEDS; i++) {
  564. + if (tps68470->leds[i].lcdev.name)
  565. + devm_led_classdev_unregister(&pdev->dev,
  566. + &tps68470->leds[i].lcdev);
  567. + }
  568. + }
  569. +
  570. + return ret;
  571. +}
  572. +static struct platform_driver tps68470_led_driver = {
  573. + .driver = {
  574. + .name = "tps68470-led",
  575. + },
  576. + .probe = tps68470_leds_probe,
  577. +};
  578. +
  579. +module_platform_driver(tps68470_led_driver);
  580. +
  581. +MODULE_ALIAS("platform:tps68470-led");
  582. +MODULE_DESCRIPTION("LED driver for TPS68470 PMIC");
  583. +MODULE_LICENSE("GPL v2");
  584. --
  585. 2.50.0
  586. From 2e92d47015628f6ed7e3fbd68f2df381fb739876 Mon Sep 17 00:00:00 2001
  587. From: mojyack <mojyack@gmail.com>
  588. Date: Tue, 26 Mar 2024 05:55:44 +0900
  589. Subject: [PATCH] media: i2c: dw9719: fix probe error on surface go 2
  590. On surface go 2, sometimes probing dw9719 fails with "dw9719: probe of i2c-INT347A:00-VCM failed with error -121".
  591. The -121(-EREMOTEIO) is came from drivers/i2c/busses/i2c-designware-common.c:575, and indicates the initialize occurs too early.
  592. So just add some delay.
  593. There is no exact reason for this 10000us, but 100us failed.
  594. Patchset: cameras
  595. ---
  596. drivers/media/i2c/dw9719.c | 3 +++
  597. 1 file changed, 3 insertions(+)
  598. diff --git a/drivers/media/i2c/dw9719.c b/drivers/media/i2c/dw9719.c
  599. index 032fbcb981f2..e03a1d8cdcb4 100644
  600. --- a/drivers/media/i2c/dw9719.c
  601. +++ b/drivers/media/i2c/dw9719.c
  602. @@ -87,6 +87,9 @@ static int dw9719_power_up(struct dw9719_device *dw9719, bool detect)
  603. if (ret)
  604. return ret;
  605. + /* Wait for device to be acknowledged */
  606. + fsleep(10000);
  607. +
  608. /* Jiggle SCL pin to wake up device */
  609. cci_write(dw9719->regmap, DW9719_CONTROL, DW9719_SHUTDOWN, &ret);
  610. fsleep(100);
  611. --
  612. 2.50.0