All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] qcom_defconfig: enable msm8916 and msm8996
@ 2024-05-07 18:46 Sam Day
  2024-05-08 12:32 ` Caleb Connolly
  2024-05-08 14:14 ` Caleb Connolly
  0 siblings, 2 replies; 3+ messages in thread
From: Sam Day @ 2024-05-07 18:46 UTC (permalink / raw
  To: Caleb Connolly, Neil Armstrong, Sumit Garg, Tom Rini
  Cc: u-boot-qcom, u-boot, Sam Day

From: Caleb Connolly <caleb.connolly@linaro.org>

Enable the clock/pinctrl drivers for these two SoCs. Previously left out
due to only being used on the db410c and db820c respectively which both
have their own board code. We can still boot these with most features
working without that board code.

Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
---
I nabbed this commit from one of Caleb's work trees. Along with the
carveout patch I just sent, this gets U-Boot to successfully boot when
chained from lk2nd on msm8916 devices supported by that bootloader.

A similar plea on this patch as with the "mach-snapdragon: do carveouts
for qcs404 only" patch: if we could scrape these changes into the
2024.07 release that would be positively sublime.

Signed-off-by: Sam Day <me@samcday.com>
---
 configs/qcom_defconfig | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/configs/qcom_defconfig b/configs/qcom_defconfig
index 80ad3b32e1..c438aeef8e 100644
--- a/configs/qcom_defconfig
+++ b/configs/qcom_defconfig
@@ -37,6 +37,8 @@ CONFIG_OF_LIVE=y
 CONFIG_OF_BOARD_SETUP=y
 CONFIG_BUTTON_QCOM_PMIC=y
 CONFIG_CLK=y
+CONFIG_CLK_QCOM_APQ8016=y
+CONFIG_CLK_QCOM_APQ8096=y
 CONFIG_CLK_QCOM_QCM2290=y
 CONFIG_CLK_QCOM_QCS404=y
 CONFIG_CLK_QCOM_SDM845=y
@@ -73,6 +75,8 @@ CONFIG_PHY_QCOM_QUSB2=y
 CONFIG_PHY_QCOM_USB_SNPS_FEMTO_V2=y
 CONFIG_PHY_QCOM_SNPS_EUSB2=y
 CONFIG_PINCTRL=y
+CONFIG_PINCTRL_QCOM_APQ8016=y
+CONFIG_PINCTRL_QCOM_APQ8096=y
 CONFIG_PINCTRL_QCOM_QCM2290=y
 CONFIG_PINCTRL_QCOM_QCS404=y
 CONFIG_PINCTRL_QCOM_SDM845=y

---
base-commit: 1c40dda60f5f7e83a6d6f541cf5a57eb7e8ec43c
change-id: 20240507-qcom-defconfig-msm8916-61c8437a0b2e

Best regards,
-- 
Sam Day <me@samcday.com>



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] qcom_defconfig: enable msm8916 and msm8996
  2024-05-07 18:46 [PATCH] qcom_defconfig: enable msm8916 and msm8996 Sam Day
@ 2024-05-08 12:32 ` Caleb Connolly
  2024-05-08 14:14 ` Caleb Connolly
  1 sibling, 0 replies; 3+ messages in thread
From: Caleb Connolly @ 2024-05-08 12:32 UTC (permalink / raw
  To: Sam Day, Neil Armstrong, Sumit Garg, Tom Rini; +Cc: u-boot-qcom, u-boot

Hi Sam,

On 07/05/2024 20:46, Sam Day wrote:
> From: Caleb Connolly <caleb.connolly@linaro.org>
> 
> Enable the clock/pinctrl drivers for these two SoCs. Previously left out
> due to only being used on the db410c and db820c respectively which both
> have their own board code. We can still boot these with most features
> working without that board code.
> 
> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
> ---
> I nabbed this commit from one of Caleb's work trees. Along with the
> carveout patch I just sent, this gets U-Boot to successfully boot when
> chained from lk2nd on msm8916 devices supported by that bootloader.

Thanks, it's nice to have this in, even if USB doesn't work.
> 
> A similar plea on this patch as with the "mach-snapdragon: do carveouts
> for qcs404 only" patch: if we could scrape these changes into the
> 2024.07 release that would be positively sublime.
> 
> Signed-off-by: Sam Day <me@samcday.com>
> ---
>   configs/qcom_defconfig | 4 ++++
>   1 file changed, 4 insertions(+)
> 
> diff --git a/configs/qcom_defconfig b/configs/qcom_defconfig
> index 80ad3b32e1..c438aeef8e 100644
> --- a/configs/qcom_defconfig
> +++ b/configs/qcom_defconfig
> @@ -37,6 +37,8 @@ CONFIG_OF_LIVE=y
>   CONFIG_OF_BOARD_SETUP=y
>   CONFIG_BUTTON_QCOM_PMIC=y
>   CONFIG_CLK=y
> +CONFIG_CLK_QCOM_APQ8016=y
> +CONFIG_CLK_QCOM_APQ8096=y
>   CONFIG_CLK_QCOM_QCM2290=y
>   CONFIG_CLK_QCOM_QCS404=y
>   CONFIG_CLK_QCOM_SDM845=y
> @@ -73,6 +75,8 @@ CONFIG_PHY_QCOM_QUSB2=y
>   CONFIG_PHY_QCOM_USB_SNPS_FEMTO_V2=y
>   CONFIG_PHY_QCOM_SNPS_EUSB2=y
>   CONFIG_PINCTRL=y
> +CONFIG_PINCTRL_QCOM_APQ8016=y
> +CONFIG_PINCTRL_QCOM_APQ8096=y
>   CONFIG_PINCTRL_QCOM_QCM2290=y
>   CONFIG_PINCTRL_QCOM_QCS404=y
>   CONFIG_PINCTRL_QCOM_SDM845=y
> 
> ---
> base-commit: 1c40dda60f5f7e83a6d6f541cf5a57eb7e8ec43c
> change-id: 20240507-qcom-defconfig-msm8916-61c8437a0b2e
> 
> Best regards,

-- 
// Caleb (they/them)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] qcom_defconfig: enable msm8916 and msm8996
  2024-05-07 18:46 [PATCH] qcom_defconfig: enable msm8916 and msm8996 Sam Day
  2024-05-08 12:32 ` Caleb Connolly
@ 2024-05-08 14:14 ` Caleb Connolly
  1 sibling, 0 replies; 3+ messages in thread
From: Caleb Connolly @ 2024-05-08 14:14 UTC (permalink / raw
  To: Neil Armstrong, Sumit Garg, Tom Rini, Sam Day; +Cc: u-boot-qcom, u-boot


On Tue, 07 May 2024 18:46:54 +0000, Sam Day wrote:
> Enable the clock/pinctrl drivers for these two SoCs. Previously left out
> due to only being used on the db410c and db820c respectively which both
> have their own board code. We can still boot these with most features
> working without that board code.
> 
> 

Applied, thanks!

[1/1] qcom_defconfig: enable msm8916 and msm8996
      https://source.denx.de/u-boot/custodians/u-boot-snapdragon/-/commit/9291868db7d9

Best regards,
-- 
Caleb Connolly <caleb.connolly@linaro.org>


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-05-08 14:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-07 18:46 [PATCH] qcom_defconfig: enable msm8916 and msm8996 Sam Day
2024-05-08 12:32 ` Caleb Connolly
2024-05-08 14:14 ` Caleb Connolly

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.