~postmarketos/upstreaming

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
2 2

[PATCH RESEND v6] arm64: dts: qcom: msm8939-longcheer-l9100: Add rear flash

André Apitzsch via B4 Relay <devnull+git.apitzsch.eu@kernel.org>
Details
Message ID
<20240729-sy7802-v6-1-86bb9083e40b@apitzsch.eu>
DKIM signature
pass
Download raw message
Patch: +27 -0
From: André Apitzsch <git@apitzsch.eu>

The phone has a Silergy SY7802 flash LED controller.

Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>
Signed-off-by: André Apitzsch <git@apitzsch.eu>
---
This series introduces a driver for the Silergy SY7802 charge pump used
in the BQ Aquaris M5 and X5 smartphones.

The implementation is based on information extracted from downstream as
the datasheet provided by a distributor of the hardware didn't include
any information about the i2c register description.
---
Changes in v6:
- Drop applied patches 1/3 and 2/3
- Move #address-/size-cells to the end
- Add R-b tag
- Link to v5: https://lore.kernel.org/r/20240624-sy7802-v5-0-7abc9d96bfa6@apitzsch.eu

Changes in v5:
- Fix language in driver description comment
- Unwrap function arguments
- Remove unnecessary empty lines
- Add Acked-by tag to second patch
- Link to v4: https://lore.kernel.org/r/20240616-sy7802-v4-0-789994180e05@apitzsch.eu

Changes in v4:
- Use for_each_available_child_of_node_scoped() to simplify code
- Use dev_err_probe() to be consistent with the other code in
  sy7802_probe()
- Split devm_add_action() into 2 devm_add_action_or_reset() to simplify
  code and balance regulator_enable()
- Link to v3: https://lore.kernel.org/r/20240612-sy7802-v3-0-1e9cc1c79b79@apitzsch.eu

Changes in v3:
- Add R-b tag to first patch
- Extend driver commit message
- Improve readability of defines by using BIT()
- Rename some variables/parameters
  * led_no -> led_id
  * level -> brightness
  * curr -> fled_{strobe,torch}_used_tmp
  * mask -> {flash,torch}_mask
  * i -> child_num
- Restructure structs ("Place th big stuff at the top")
- Declare 'child' on a separate line
- Move multi-line assignments out of declaration block
- Update warning/error messages and comments
- Use gotos to handle error path
- Use devm API to cleanup module's resources
- Init mutex before LED class device is registered to avoid race
  condition
- Link to v2: https://lore.kernel.org/r/20240401-sy7802-v2-0-1138190a7448@apitzsch.eu

Changes in v2:
- bindings: remove unneeded allOf
- bindings: example: move flash-led-controller under i2c node to fix
  check error
- Cc to phone-devel
- Link to v1: https://lore.kernel.org/r/20240327-sy7802-v1-0-db74ab32faaf@apitzsch.eu
---
 .../boot/dts/qcom/msm8939-longcheer-l9100.dts      | 27 ++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/arch/arm64/boot/dts/qcom/msm8939-longcheer-l9100.dts b/arch/arm64/boot/dts/qcom/msm8939-longcheer-l9100.dts
index e3404c4455cf..b845da4fa23e 100644
--- a/arch/arm64/boot/dts/qcom/msm8939-longcheer-l9100.dts
+++ b/arch/arm64/boot/dts/qcom/msm8939-longcheer-l9100.dts
@@ -159,6 +159,26 @@ led@2 {
			};
		};
	};

	flash-led-controller@53 {
		compatible = "silergy,sy7802";
		reg = <0x53>;

		enable-gpios = <&tlmm 16 GPIO_ACTIVE_HIGH>;

		pinctrl-0 = <&camera_rear_flash_default>;
		pinctrl-names = "default";

		#address-cells = <1>;
		#size-cells = <0>;

		led@0 {
			reg = <0>;
			function = LED_FUNCTION_FLASH;
			color = <LED_COLOR_ID_WHITE>;
			led-sources = <0>, <1>;
		};
	};
};

&blsp_i2c3 {
@@ -318,6 +338,13 @@ camera_front_flash_default: camera-front-flash-default-state {
		bias-disable;
	};

	camera_rear_flash_default: camera-rear-flash-default-state {
		pins = "gpio9", "gpio16", "gpio51";
		function = "gpio";
		drive-strength = <2>;
		bias-disable;
	};

	gpio_hall_sensor_default: gpio-hall-sensor-default-state {
		pins = "gpio20";
		function = "gpio";

---
base-commit: 0b58e108042b0ed28a71cd7edf5175999955b233
change-id: 20240325-sy7802-f40fc6f56525

Best regards,
-- 
André Apitzsch <git@apitzsch.eu>
Bjorn Andersson <andersson@kernel.org>
Details
Message ID
<172375444816.1011236.9460813836275052885.b4-ty@kernel.org>
In-Reply-To
<20240729-sy7802-v6-1-86bb9083e40b@apitzsch.eu> (view parent)
DKIM signature
pass
Download raw message
On Mon, 29 Jul 2024 23:23:04 +0200, André Apitzsch wrote:
> The phone has a Silergy SY7802 flash LED controller.
> 
> 

Applied, thanks!

[1/1] arm64: dts: qcom: msm8939-longcheer-l9100: Add rear flash
      commit: 04b2f8d5aec32973d34839ae983821857924cc66

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>
André Apitzsch <git@apitzsch.eu>
Details
Message ID
<f50d7129b6023d89d7c83820d9f69075800fe1ae.camel@apitzsch.eu>
In-Reply-To
<172375444816.1011236.9460813836275052885.b4-ty@kernel.org> (view parent)
DKIM signature
missing
Download raw message
Am Donnerstag, dem 15.08.2024 um 15:40 -0500 schrieb Bjorn Andersson:
> 
> On Mon, 29 Jul 2024 23:23:04 +0200, André Apitzsch wrote:
> > The phone has a Silergy SY7802 flash LED controller.
> > 
> > 
> 
> Applied, thanks!
> 
> [1/1] arm64: dts: qcom: msm8939-longcheer-l9100: Add rear flash
>       commit: 04b2f8d5aec32973d34839ae983821857924cc66
> 
> Best regards,

Hi Bjorn,

It looks like you applied the patch twice (two different version)[1,2].

Best regards,
André

[1] https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git/commit/?h=for-next&id=f98bdb21cfc94cb7733a5c3216e8f1dec1c06023 (v5)
[2] https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git/commit/?h=for-next&id=04b2f8d5aec32973d34839ae983821857924cc66 (v6)
Reply to thread Export thread (mbox)