Re: [PATCH] mach-snapdragon: do carveouts for qcs404 only

2024-05-09 Thread Sam Day
'Ello Sumit, On Wednesday, 8 May 2024 at 4:48 PM, Sumit Garg wrote: > > > On Wed, 8 May 2024 at 18:09, Caleb Connolly caleb.conno...@linaro.org wrote: > > > Hi Sam, > > > > On 08/05/2024 13:40, Sam Day wrote: > > > > > Salutations Sumit,

Re: [PATCH] mach-snapdragon: do carveouts for qcs404 only

2024-05-08 Thread Sam Day
Salutations Sumit, On Wednesday, 8 May 2024 at 11:14 AM, Sumit Garg wrote: > > > Hi Sam, > > On Wed, 8 May 2024 at 00:11, Sam Day m...@samcday.com wrote: > > > The newly introduced carve_out_reserved_memory causes issues when > > U-Boot is chained from the lk2n

[PATCH] qcom_defconfig: enable msm8916 and msm8996

2024-05-07 Thread Sam Day
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 --- configs/qcom_defconfig | 4 1 file changed, 4 insertions(+) diff --git a/configs/qcom_defconfig b/configs/qcom_defconfig index 80ad3b32e1..c4

[PATCH] mach-snapdragon: do carveouts for qcs404 only

2024-05-07 Thread Sam Day
2024.07 release, but it'd be great if we could - it's the only thing that breaks U-Boot master on msm8916 devices that chain from lk2nd. Signed-off-by: Sam Day --- arch/arm/mach-snapdragon/board.c | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/arch/arm/

[PATCH v2 2/2] ehci: msm: bring up iface + core clocks

2024-05-06 Thread Sam Day
This seems to be necessary on my samsung-a5. Without this patch, the first access of EHCI registers causes a bus stall and subsequent reset. I am unsure why this wasn't already necessary for db410c, perhaps those clocks are already enabled on boot. Reviewed-by: Caleb Connolly Signed-off-by

[PATCH v2 1/2] clk/qcom: apq8016: add support for USB_HS clocks

2024-05-06 Thread Sam Day
The newer "register map for simple gate clocks" support added for qcom clocks is used. As a result gcc_apq8016 now has a mixture of the old and new styles. I didn't (and still don't!) feel comfortable enough in this area to update the existing code. Signed-off-by: Sam Day -

[PATCH v2 0/2] qcom: ehci: enable core + iface clocks

2024-05-06 Thread Sam Day
ently making use of it so I think this change shouldn't break anything elsewhere. Signed-off-by: Sam Day --- Changes in v2: - Remove nonsensical/unnecessary reference to pending qcom debug dump from commit message. - Collapse ftbl_gcc_usb_hs_system_clk into apq8016_clk_set_rate, since i

[PATCH 1/2] clk/qcom: apq8016: add support for USB_HS clocks

2024-05-02 Thread Sam Day
id to dump the state of these gate clocks with the recently-added qcom dump callbacks. Signed-off-by: Sam Day --- drivers/clk/qcom/clock-apq8016.c | 31 +++ 1 file changed, 31 insertions(+) diff --git a/drivers/clk/qcom/clock-apq8016.c b/drivers/clk/qcom/clock-apq801

[PATCH 2/2] ehci: msm: bring up iface + core clocks

2024-05-02 Thread Sam Day
This seems to be necessary on my samsung-a5. Without this patch, the first access of EHCI registers causes a bus stall and subsequent reset. I am unsure why this wasn't already necessary for db410c, perhaps those clocks are already enabled on boot. Signed-off-by: Sam Day --- drivers/usb

[PATCH 0/2] qcom: ehci: enable core + iface clocks

2024-05-02 Thread Sam Day
ently making use of it so I think this change shouldn't break anything elsewhere. Signed-off-by: Sam Day --- Sam Day (2): clk/qcom: apq8016: add support for USB_HS clocks ehci: msm: bring up iface + core clocks drivers/clk/qcom/clock-apq8016.c | 31 ++