[PATCH] arm64: dts: qcom: trogdor: Add no-hpd to DSI bridge node

2021-03-23 Thread Stephen Boyd
because the kernel driver blindly disables hpd, but that won't be true for much longer. Cc: Laurent Pinchart Cc: Douglas Anderson Fixes: 7ec3e67307f8 ("arm64: dts: qcom: sc7180-trogdor: add initial trogdor and lazor dt") Signed-off-by: Stephen Boyd --- arch/arm64/boot/dts/qcom/sc7180-tr

Re: [PATCH v2] dt-bindings: interrupt-controller: Convert bindings to yaml for qcom,pdc

2021-03-23 Thread Stephen Boyd
Quoting Maulik Shah (2021-03-22 03:30:15) > -- qcom,pdc-ranges: > - Usage: required > - Value type: > - Definition: Specifies the PDC pin offset and the number of PDC ports. > - The tuples indicates the valid mapping of valid PDC ports > - and

[PATCH v2 07/12] scripts/decode_stacktrace.sh: Support debuginfod

2021-03-23 Thread Stephen Boyd
Cc: Andy Shevchenko Cc: Matthew Wilcox Signed-off-by: Stephen Boyd --- scripts/decode_stacktrace.sh | 81 +++- 1 file changed, 70 insertions(+), 11 deletions(-) diff --git a/scripts/decode_stacktrace.sh b/scripts/decode_stacktrace.sh index 90398347e366

[PATCH v2 03/12] dump_stack: Add vmlinux build ID to stack traces

2021-03-23 Thread Stephen Boyd
://fedoraproject.org/wiki/Releases/FeatureBuildId [1] Link: https://sourceware.org/elfutils/Debuginfod.html [2] Signed-off-by: Stephen Boyd --- lib/dump_stack.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/dump_stack.c b/lib/dump_stack.c index f5a33b6f773f..136bb942c4a3 100644

[PATCH v2 12/12] kdump: Use vmlinux_build_id() to simplify

2021-03-23 Thread Stephen Boyd
Cc: Baoquan He Cc: Vivek Goyal Cc: Signed-off-by: Stephen Boyd --- include/linux/crash_core.h | 6 +- kernel/crash_core.c| 41 ++ 2 files changed, 3 insertions(+), 44 deletions(-) diff --git a/include/linux/crash_core.h b/include/linux

[PATCH v2 10/12] buildid: Mark some arguments const

2021-03-23 Thread Stephen Boyd
These arguments are never modified so they can be marked const to indicate as such. Cc: Jiri Olsa Cc: Alexei Starovoitov Cc: Jessica Yu Cc: Evan Green Cc: Hsin-Yi Wang Signed-off-by: Stephen Boyd --- lib/buildid.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git

[PATCH v2 05/12] arm64: stacktrace: Use %pSb for backtrace printing

2021-03-23 Thread Stephen Boyd
[2] Signed-off-by: Stephen Boyd --- arch/arm64/kernel/stacktrace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/kernel/stacktrace.c b/arch/arm64/kernel/stacktrace.c index ad20981dfda4..9d38da01ff98 100644 --- a/arch/arm64/kernel/stacktrace.c +++ b/arch/arm64

[PATCH v2 11/12] buildid: Fix kernel-doc notation

2021-03-23 Thread Stephen Boyd
Kernel doc should use "Return:" instead of "Returns" to properly reflect the return values. Cc: Jiri Olsa Cc: Alexei Starovoitov Cc: Jessica Yu Cc: Evan Green Cc: Hsin-Yi Wang Signed-off-by: Stephen Boyd --- lib/buildid.c | 2 +- 1 file changed, 1 insertion(+), 1 del

[PATCH v2 06/12] x86/dumpstack: Use %pSb for backtrace printing

2021-03-23 Thread Stephen Boyd
/elfutils/Debuginfod.html [2] Signed-off-by: Stephen Boyd --- arch/x86/kernel/dumpstack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86/kernel/dumpstack.c b/arch/x86/kernel/dumpstack.c index 299c20f0a38b..7ad5eea99b2b 100644 --- a/arch/x86/kernel/dumpstack.c +++ b

[PATCH v2 09/12] scripts/decode_stacktrace.sh: Indicate 'auto' can be used for base path

2021-03-23 Thread Stephen Boyd
indicate the variable argument and that it is optional so that we can differentiate from the literal "auto" that should be passed. Cc: Jiri Olsa Cc: Alexei Starovoitov Cc: Jessica Yu Cc: Evan Green Cc: Hsin-Yi Wang Cc: Konstantin Khlebnikov Cc: Sasha Levin Signed-off-by: Stephen Boyd --- scr

[PATCH v2 04/12] module: Add printk format to add module build ID to stacktraces

2021-03-23 Thread Stephen Boyd
Matthew Wilcox Link: https://fedoraproject.org/wiki/Releases/FeatureBuildId [1] Link: https://sourceware.org/elfutils/Debuginfod.html [2] Signed-off-by: Stephen Boyd --- Documentation/core-api/printk-formats.rst | 9 +++ include/linux/kallsyms.h | 13 +++- include/linux/module.h

[PATCH v2 08/12] scripts/decode_stacktrace.sh: Silence stderr messages from addr2line/nm

2021-03-23 Thread Stephen Boyd
: Alexei Starovoitov Cc: Jessica Yu Cc: Evan Green Cc: Hsin-Yi Wang Cc: Konstantin Khlebnikov Cc: Sasha Levin Signed-off-by: Stephen Boyd --- scripts/decode_stacktrace.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/decode_stacktrace.sh b/scripts

[PATCH v2 02/12] buildid: Add method to get running kernel's build ID

2021-03-23 Thread Stephen Boyd
: Jessica Yu Cc: Evan Green Cc: Hsin-Yi Wang Cc: Dave Young Cc: Baoquan He Cc: Vivek Goyal Cc: Signed-off-by: Stephen Boyd --- include/linux/buildid.h | 2 ++ lib/buildid.c | 19 +++ 2 files changed, 21 insertions(+) diff --git a/include/linux/buildid.h b/include

[PATCH v2 00/12] Add build ID to stacktraces

2021-03-23 Thread Stephen Boyd
: Cc: Matthew Wilcox Cc: Petr Mladek Cc: Rasmus Villemoes Cc: Sasha Levin Cc: Sergey Senozhatsky Cc: Steven Rostedt Cc: Thomas Gleixner Cc: Vivek Goyal Cc: Will Deacon Cc: Stephen Boyd (12): buildid: Add API to parse build ID out of buffer buildid: Add method to get running kernel's

[PATCH v2 01/12] buildid: Add API to parse build ID out of buffer

2021-03-23 Thread Stephen Boyd
Add an API that can parse the build ID out of a buffer, instead of a vma, to support printing a kernel module's build ID for stack traces. Cc: Jiri Olsa Cc: Alexei Starovoitov Cc: Jessica Yu Cc: Evan Green Cc: Hsin-Yi Wang Signed-off-by: Stephen Boyd --- include/linux/buildid.h | 1 + lib

[PATCH v2] firmware: qcom_scm: Only compile legacy calls on ARM

2021-03-23 Thread Stephen Boyd
to support these legacy APIs on arm64 kernels. Cc: Elliot Berman Cc: Brian Masney Cc: Stephan Gerhold Cc: Jeffrey Hugo Cc: Douglas Anderson Signed-off-by: Stephen Boyd --- Followup to v1 (https://lore.kernel.org/r/20210223214539.1336155-7-swb...@chromium.org): * Don't change the legacy f

Re: [PATCH 6/6] arm64: dts: qcom: sc7280: Add nodes to boot WPSS

2021-03-23 Thread Stephen Boyd
Quoting Bjorn Andersson (2021-03-13 20:16:39) > On Sat 13 Mar 15:46 CST 2021, Stephen Boyd wrote: > > > Quoting Sibi Sankar (2021-03-08 21:51:51) > > > Add miscellaneous nodes to boot the Wireless Processor Subsystem on > > > > Maybe add (WPSS) after th

Re: [PATCH 2/3] dt-bindings: phy: qcom,usb-snps-femto-v2: Add bindings for SC7280

2021-03-23 Thread Stephen Boyd
Quoting Sandeep Maheswaram (2021-03-17 04:01:40) > Add the compatible string for sc7280 SoC from Qualcomm > > Signed-off-by: Sandeep Maheswaram > --- Reviewed-by: Stephen Boyd

Re: [PATCH 1/3] dt-bindings: usb: qcom,dwc3: Add bindings for SC7280

2021-03-23 Thread Stephen Boyd
Quoting Sandeep Maheswaram (2021-03-17 04:01:39) > Add the compatible string for sc7280 SoC from Qualcomm. > > Signed-off-by: Sandeep Maheswaram > --- Reviewed-by: Stephen Boyd

Re: [PATCH] clk: qcom: camcc: Update the clock ops for the SC7180

2021-03-23 Thread Stephen Boyd
Quoting Taniya Das (2021-03-19 00:47:34) > Update the RCGs to use shared ops to park the RCGs at XO. s/Update/fix/? Can you also elaborate more on why we need to park the RCGs here for all these different clks? Is the camera driver supposed to not touch these and let the firmware take over? Is

Re: [PATCH v2 0/4] drm/bridge: ti-sn65dsi86: Support EDID reading

2021-03-23 Thread Stephen Boyd
Quoting Laurent Pinchart (2021-03-22 17:00:23) > Hi Stephen, > > On Mon, Nov 02, 2020 at 05:15:24PM -0800, Stephen Boyd wrote: > > Quoting Sam Ravnborg (2020-11-01 09:37:41) > > > Hi Stephen. > > > > > > On Thu, Oct 29, 2020 at 06:17:34PM -0700, Ste

Re: [PATCH v2 05/14] arm64: dts: qcom: sc7280: Add RSC and PDC devices

2021-03-23 Thread Stephen Boyd
Quoting Maulik Shah (2021-03-07 21:21:04) > Hi, > > On 3/5/2021 11:12 AM, Rajendra Nayak wrote: > > > > On 3/4/2021 5:34 AM, Stephen Boyd wrote: > >> Quoting Rajendra Nayak (2021-03-03 04:17:49) > >>> diff --git a/arch/arm64/boot/dts/qcom/sc7280.dtsi &g

Re: [PATCH V2] arm64: dts: qcom: sc7280: Add nodes for eMMC and SD card

2021-03-23 Thread Stephen Boyd
Quoting Shaik Sajida Bhanu (2021-03-20 11:17:00) > diff --git a/arch/arm64/boot/dts/qcom/sc7280-idp.dts > b/arch/arm64/boot/dts/qcom/sc7280-idp.dts > index 54d2cb3..4105263 100644 > --- a/arch/arm64/boot/dts/qcom/sc7280-idp.dts > +++ b/arch/arm64/boot/dts/qcom/sc7280-idp.dts > @@ -8,6 +8,7 @@ >

Re: [PATCH 8/9] arm64: dts: qcom: sc7280: Add AOSS QMP node

2021-03-22 Thread Stephen Boyd
Quoting Sibi Sankar (2021-03-08 21:58:21) > On 2021-02-27 19:26, Sai Prakash Ranjan wrote: > > On 2021-02-27 00:16, Stephen Boyd wrote: > >> Quoting Sai Prakash Ranjan (2021-02-25 23:51:00) > >>> On 2021-02-26 01:11, Stephen Boyd wrote: > >>> > Qu

Re: [PATCH 6/6] firmware: qcom_scm: Only compile legacy calls on ARM

2021-03-22 Thread Stephen Boyd
Quoting Bjorn Andersson (2021-03-07 09:42:45) > On Sat 06 Mar 00:18 CST 2021, Stephen Boyd wrote: > > > Quoting Elliot Berman (2021-03-05 10:18:09) > > > On 3/3/2021 10:14 PM, Stephen Boyd wrote: > > > > Quoting Elliot Berman (2021-03-03 19:35:08) > >

Re: [PATCH V1 1/1] soc: qcom: smp2p: Add enable_irq_wake to SMP2P IRQ

2021-03-22 Thread Stephen Boyd
Quoting Deepak Kumar Singh (2021-03-18 11:37:04) > SMP2P interrupts are expected to wake the processor from suspend. > Use enable_irq_wake to mark it wakeup capable from suspend. > > Signed-off-by: Chris Lew > Signed-off-by: Deepak Kumar Singh > --- > drivers/soc/qcom/smp2p.c | 1 + > 1 file

Re: [PATCH] drm/msm/dp: Fixed couple of typos

2021-03-22 Thread Stephen Boyd
Quoting Bhaskar Chowdhury (2021-03-17 23:26:50) > s/modueles/modules/ two different places > > Signed-off-by: Bhaskar Chowdhury > --- Reviewed-by: Stephen Boyd

Re: [PATCH v3 3/4] drm/bridge: ti-sn65dsi86: Read EDID blob over DDC

2021-03-22 Thread Stephen Boyd
Quoting Laurent Pinchart (2021-03-17 17:20:43) > Hi Stephen, > > Reviving a bit of an old thread, for a question. > > On Mon, Nov 02, 2020 at 10:11:43AM -0800, Stephen Boyd wrote: > > @@ -265,6 +267,23 @@ connector_to_ti_sn_bridge(struct drm_connector > >

Re: [PATCH] arm64: dts: qcom: sc7180: Fix sc7180-qmp-usb3-dp-phy reg sizes

2021-03-22 Thread Stephen Boyd
quot;reg"? > > [1] https://lore.kernel.org/r/ee5695bb-a603-0dd5-7a7f-695e919b1...@linaro.org > > Cc: Stephen Boyd > Cc: Jeykumar Sankaran > Cc: Chandan Uddaraju > Cc: Vara Reddy > Cc: Tanmay Shah > Cc: Rob Clark > Fixes: 58fd7ae621e7 ("arm64: dts: qco

Re: [PATCH v5 4/4] clk: rockchip: add clock controller for rk3568

2021-03-16 Thread Stephen Boyd
Quoting Elaine Zhang (2021-03-15 01:56:08) > Add the clock tree definition for the new rk3568 SoC. > > Signed-off-by: Elaine Zhang > Reviewed-by: Kever Yang > --- Acked-by: Stephen Boyd

Re: [PATCH v5 3/4] clk: rockchip: support more core div setting

2021-03-16 Thread Stephen Boyd
Yang > --- Acked-by: Stephen Boyd

Re: [PATCH v5 2/4] clk: rockchip: add dt-binding header for rk3568

2021-03-16 Thread Stephen Boyd
iewed-by: Rob Herring > --- Acked-by: Stephen Boyd

Re: [PATCH v5 1/4] dt-binding: clock: Document rockchip,rk3568-cru bindings

2021-03-16 Thread Stephen Boyd
Herring > --- Acked-by: Stephen Boyd

Re: [PATCH] dt-bindings: Clean-up undocumented compatible strings

2021-03-16 Thread Stephen Boyd
ases, fixing the compatible revealed some schema errors > which are fixed. > > There's a bunch of others remaining after this which have bindings, but > those aren't converted to schema yet. > > Cc: Stephen Boyd > Cc: Maxime Ripard > Cc: Thierry Reding > Cc: Sam Ravn

Re: [PATCH v7 1/2] arm64: dts: qcom: sc7180-trogdor: Add lpass dai link for I2S driver

2021-03-16 Thread Stephen Boyd
y: Ajit Pandey > Signed-off-by: V Sujith Kumar Reddy > Signed-off-by: Srinivasa Rao Mandadapu > --- Reviewed-by: Stephen Boyd

Re: [PATCH v7 2/2] arm64: dts: qcom: Add sound node for sc7180-trogdor-coachz

2021-03-16 Thread Stephen Boyd
Quoting Srinivasa Rao Mandadapu (2021-03-13 22:10:54) > This is a trgodor variant, required to have sound node variable > for coachz specific platform. > > Signed-off-by: Srinivasa Rao Mandadapu > Reviewed-by: Stephen Boyd > --- Reviewed-by: Stephen Boyd

Re: [PATCH v2 1/2] arm64: dts: qcom: Add "dmic_clk_en" for sc7180-trogdor-coachz

2021-03-16 Thread Stephen Boyd
Cc: Srinivasa Rao Mandadapu > Cc: Ajit Pandey > Cc: Judy Hsiao > Cc: Cheng-Yi Chiang > Cc: Stephen Boyd > Cc: Matthias Kaehlcke > Signed-off-by: Douglas Anderson > --- Reviewed-by: Stephen Boyd

Re: [PATCH v2 2/2] arm64: dts: qcom: Add "dmic_clk_en" + sound model for sc7180-trogdor-pompom

2021-03-16 Thread Stephen Boyd
Quoting Douglas Anderson (2021-03-15 13:39:31) > Match what's downstream for this board. > > Cc: Srinivasa Rao Mandadapu > Cc: Ajit Pandey > Cc: Judy Hsiao > Cc: Cheng-Yi Chiang > Cc: Stephen Boyd > Cc: Matthias Kaehlcke > Signed-off-by: Douglas Anderson > --- Reviewed-by: Stephen Boyd

Re: [PATCH v3] phy: qcom-qmp: add hbr3_hbr2 voltage and premphasis swing table

2021-03-16 Thread Stephen Boyd
t; > Signed-off-by: Kuogee Hsieh > > Reviewed-by: Stephen Boyd Fixes: 52e013d0bffa ("phy: qcom-qmp: Add support for DP in USB3+DP combo phy")

Re: [PATCH v2] clk: qcom: clk-rcg2: Add support for duty-cycle for RCG

2021-03-13 Thread Stephen Boyd
Quoting Taniya Das (2021-03-11 04:51:32) > The root clock generators with MND divider has the capability to support > change in duty-cycle by updating the 'D'. Add the clock ops which would > check all the boundary conditions and enable setting the desired duty-cycle > as per the consumer. > >

Re: [PATCH 1/4] mips: bmips: add BCM63268 timer clock definitions

2021-03-13 Thread Stephen Boyd
Subject should probably be clk related instead of mips prefixed. Or dt-bindings: clk: ?

Re: [PATCH 4/4] clk: bcm: Add BCM63268 timer clock and reset driver

2021-03-13 Thread Stephen Boyd
Quoting Alvaro Fernandez Rojas (2021-02-25 11:42:01) > diff --git a/drivers/clk/bcm/clk-bcm63268-timer.c > b/drivers/clk/bcm/clk-bcm63268-timer.c > new file mode 100644 > index ..5609c4ddb50c > --- /dev/null > +++ b/drivers/clk/bcm/clk-bcm63268-timer.c > @@ -0,0 +1,232 @@ > +//

Re: [PATCH] arm64: dts: qcom: sc7180: Drop duplicate dp_hot_plug_det node in trogdor

2021-03-13 Thread Stephen Boyd
Quoting Douglas Anderson (2021-03-11 13:12:41) > From: Stephen Boyd > > This moved from being trogdor specific to being part of the general > sc7180.dtsi SoC file in commit 681a607ad21a ("arm64: dts: qcom: > sc7180: Add DisplayPort HPD pin dt node"). Then we d

Re: [PATCH 1/2] clk: Add clk_get_first_to_set_rate

2021-03-13 Thread Stephen Boyd
Quoting Paul Cercueil (2021-03-07 09:07:41) > The purpose of this function is to be used along with the notifier > mechanism. > > When a parent clock can see its rate externally changed at any moment, > and a driver needs a specific clock rate to function, it can register a > notifier on the

Re: [PATCH] clk: Call clk_core_enable_lock variant when lock is needed

2021-03-13 Thread Stephen Boyd
Quoting Abel Vesa (2021-03-07 10:52:08) > Instead of locking explicitly every time, call the clk_core_enable_lock > variant. > > Signed-off-by: Abel Vesa This is done by https://lore.kernel.org/r/20210305003334.575831-1-li...@rasmusvillemoes.dk

Re: [PATCH v3 4/4] clk: rockchip: add clock controller for rk3568

2021-03-13 Thread Stephen Boyd
Quoting Elaine Zhang (2021-02-28 22:47:49) > Add the clock tree definition for the new rk3568 SoC. > > Signed-off-by: Elaine Zhang > --- > drivers/clk/rockchip/Kconfig |7 + > drivers/clk/rockchip/Makefile |1 + > drivers/clk/rockchip/clk-rk3568.c | 1726

Re: [PATCH 6/6] arm64: dts: qcom: sc7280: Add nodes to boot WPSS

2021-03-13 Thread Stephen Boyd
Quoting Sibi Sankar (2021-03-08 21:51:51) > Add miscellaneous nodes to boot the Wireless Processor Subsystem on Maybe add (WPSS) after the name so we know they're related. > SC7280 SoCs. > > Signed-off-by: Sibi Sankar > --- > >

Re: [PATCH 5/6] reset: qcom: Add PDC Global reset signals for WPSS

2021-03-13 Thread Stephen Boyd
Quoting Sibi Sankar (2021-03-08 21:51:50) > Add PDC Global reset signals for Wireless Processor Subsystem (WPSS) > on SC7280 SoCs. > > Signed-off-by: Sibi Sankar > --- > drivers/reset/reset-qcom-pdc.c | 62 > ++ > 1 file changed, 51 insertions(+), 11

Re: [PATCH 4/6] dt-bindings: reset: pdc: Add PDC Global bindings

2021-03-13 Thread Stephen Boyd
Quoting Sibi Sankar (2021-03-08 21:51:49) > Add PDC Global reset controller bindings for SC7280 SoCs. > > Signed-off-by: Sibi Sankar > --- > Documentation/devicetree/bindings/reset/qcom,pdc-global.yaml | 4 > include/dt-bindings/reset/qcom,sdm845-pdc.h | 2 ++ > 2 files

Re: [PATCH 2/6] dt-bindings: mailbox: Add WPSS client index to IPCC

2021-03-13 Thread Stephen Boyd
Quoting Sibi Sankar (2021-03-08 21:51:47) > Add WPSS remote processor client index to Inter-Processor Communication > Controller (IPCC) block. > > Signed-off-by: Sibi Sankar > --- Reviewed-by: Stephen Boyd

Re: [PATCH 3/6] dt-bindings: reset: aoss: Add AOSS reset controller binding

2021-03-13 Thread Stephen Boyd
Quoting Sibi Sankar (2021-03-08 21:51:48) > Add AOSS reset controller bindings for SC7280 SoCs. > > Signed-off-by: Sibi Sankar > --- Reviewed-by: Stephen Boyd

Re: [PATCH 1/6] soc: qcom: smem: Update max processor count

2021-03-13 Thread Stephen Boyd
Quoting Sibi Sankar (2021-03-08 21:51:46) > Update max processor count to reflect the number of co-processors on > SC7280 SoCs. > > Signed-off-by: Sibi Sankar > --- Reviewed-by: Stephen Boyd

Re: [PATCH] clk: socfpga: fix iomem pointer cast on 64-bit

2021-03-13 Thread Stephen Boyd
Quoting Krzysztof Kozlowski (2021-03-11 06:48:33) > Pointers should be cast to unsigned long instead of integer. This fixes > warning when compile testing on ARM64: > > drivers/clk/socfpga/clk-gate.c: In function ‘socfpga_clk_recalc_rate’: > drivers/clk/socfpga/clk-gate.c:102:7: warning:

Re: [PATCH] clk: clk.c: Fixed statics initialized to 0

2021-03-13 Thread Stephen Boyd
Quoting Pallavi Prabhu (2021-03-12 19:41:12) > Uninitialized static variable from 0, as statics get auto-initialized to 0 > during execution. > Signed-off-by: Pallavi Prabhu Need a newline between signed-off-by line and commit text. Also please wrap the commit text at 80 or 78 characters or so.

Re: [PATCH] clk: at91: Trivial typo fixes in the file sama7g5.c

2021-03-13 Thread Stephen Boyd
Quoting Bhaskar Chowdhury (2021-03-12 21:32:22) > > s/critial/critical/ ..two different places > s/parrent/parent/ > > Signed-off-by: Bhaskar Chowdhury > --- Applied to clk-next

Re: [PATCH] clk: qcom: gcc-sc7180: Use floor ops for the correct sdcc1 clk

2021-03-13 Thread Stephen Boyd
Quoting Douglas Anderson (2021-02-24 09:50:25) > While picking commit a8cd989e1a57 ("mmc: sdhci-msm: Warn about > overclocking SD/MMC") back to my tree I was surprised that it was > reporting warnings. I thought I fixed those! Looking closer at the > fix, I see that I totally bungled it (or at

Re: [PATCH] clk: qcom: rcg2: Rectify clk_gfx3d rate rounding without mux division

2021-03-13 Thread Stephen Boyd
Quoting Marijn Suijten (2021-03-02 15:41:06) > In case the mux is not divided parent_req was mistakenly not assigned to > leading __clk_determine_rate to determine the best frequency setting for > a requested rate of 0, resulting in the msm8996 platform not booting. > Rectify this by refactoring

Re: [PATCH v1] clk: qcom: rpmh: Update the XO clock source for SC7280

2021-03-13 Thread Stephen Boyd
Quoting Taniya Das (2021-03-10 10:18:03) > The bi_tcxo clock source for SC7280 requires a div 4 to derive 19.2MHz > from the xo_board. Thus update the same. > > Fixes: fff2b9a65162 ("clk: qcom: rpmh: Add support for RPMH clocks on SC7280") > Signed-off-by: Taniya Das > --- Applied to clk-fixes

Re: [PATCH v6 2/2] arm64: dts: qcom: Add sound node for sc7180-trogdor-coachz

2021-03-13 Thread Stephen Boyd
Quoting Srinivasa Rao Mandadapu (2021-03-12 21:46:54) > This is a trgodor variant, required to have sound node variable > for coachz specific platform. > > Signed-off-by: Srinivasa Rao Mandadapu > --- Reviewed-by: Stephen Boyd

Re: [PATCH v6 1/2] arm64: dts: qcom: sc7180-trogdor: Add lpass dai link for I2S driver

2021-03-13 Thread Stephen Boyd
Quoting Srinivasa Rao Mandadapu (2021-03-12 21:46:53) > From: Ajit Pandey > > Add dai link for supporting lpass I2S driver, which is used > for audio capture and playback. > Add lpass-cpu node with pin controls and i2s primary Why two spaces before 'pin'? > and secondary dai-links Please end

Re: [PATCH] clk: use clk_core_enable_lock() a bit more

2021-03-13 Thread Stephen Boyd
Quoting Rasmus Villemoes (2021-03-04 16:33:34) > Use clk_core_enable_lock() and clk_core_disable_lock() in a few places > rather than open-coding them. > > Signed-off-by: Rasmus Villemoes > --- Applied to clk-next

Re: [PATCH 2/3] drm/bridge: ti-sn65dsi86: Move code in prep for EDID read fix

2021-03-13 Thread Stephen Boyd
Quoting Douglas Anderson (2021-03-04 15:52:00) > This patch is _only_ code motion to prepare for the patch > ("drm/bridge: ti-sn65dsi86: Properly get the EDID, but only if > refclk") and make it easier to understand. > > Signed-off-by: Douglas Anderson > --- Reviewed-by: Stephen Boyd

Re: [PATCH 1/3] drm/bridge: ti-sn65dsi86: Simplify refclk handling

2021-03-13 Thread Stephen Boyd
the enable case anyway so why not avoid the extra > call? > > Signed-off-by: Douglas Anderson > --- Reviewed-by: Stephen Boyd

Re: [PATCH 6/6] firmware: qcom_scm: Only compile legacy calls on ARM

2021-03-05 Thread Stephen Boyd
Quoting Elliot Berman (2021-03-05 10:18:09) > On 3/3/2021 10:14 PM, Stephen Boyd wrote: > > Quoting Elliot Berman (2021-03-03 19:35:08) > >> > >> On 2/23/2021 1:45 PM, Stephen Boyd wrote: > >>> These scm calls are never used outside of legacy ARMv7 bas

Re: [PATCH 5/7] printk: Make %pS and friends print module build ID

2021-03-04 Thread Stephen Boyd
Quoting Rasmus Villemoes (2021-03-04 15:11:47) > On 04/03/2021 20.15, Stephen Boyd wrote: > > Quoting Matthew Wilcox (2021-03-04 09:00:52) > >> On Mon, Mar 01, 2021 at 09:47:47AM -0800, Stephen Boyd wrote: > >>> Example: > >>> > >>> WAR

Re: [PATCH 5/7] printk: Make %pS and friends print module build ID

2021-03-04 Thread Stephen Boyd
Quoting Matthew Wilcox (2021-03-04 09:00:52) > On Mon, Mar 01, 2021 at 09:47:47AM -0800, Stephen Boyd wrote: > > Example: > > > > WARNING: CPU: 4 PID: 3255 at drivers/misc/lkdtm/bugs.c:83 > > lkdtm_WARNING+0x28/0x30 [lkdtm] (ed5019fdf5e53be37cb1ba7899292d7e143b25

Re: [PATCH 5/7] printk: Make %pS and friends print module build ID

2021-03-04 Thread Stephen Boyd
Quoting Matthew Wilcox (2021-03-04 09:19:40) > On Mon, Mar 01, 2021 at 09:43:19PM -0500, Steven Rostedt wrote: > > On Mon, 1 Mar 2021 09:47:47 -0800 > > Stephen Boyd wrote: > > > > > The %pS printk format (among some others) is used to print kernel > > >

Re: [PATCH 5/7] printk: Make %pS and friends print module build ID

2021-03-03 Thread Stephen Boyd
Quoting Steven Rostedt (2021-03-03 17:19:32) > On Wed, 03 Mar 2021 16:38:28 -0800 > Stephen Boyd wrote: > > > I'm starting to feel like nobody read the commit text, or I messed up > > somehow and the commit text was confusing? :( > > > > I read it, I'm jus

Re: [PATCH 6/6] firmware: qcom_scm: Only compile legacy calls on ARM

2021-03-03 Thread Stephen Boyd
Quoting Elliot Berman (2021-03-03 19:35:08) > > On 2/23/2021 1:45 PM, Stephen Boyd wrote: > > These scm calls are never used outside of legacy ARMv7 based platforms. > > That's because PSCI, mandated on arm64, implements them for modern SoCs > > via the PSCI spec. Let's

Re: [PATCH 5/7] printk: Make %pS and friends print module build ID

2021-03-03 Thread Stephen Boyd
Quoting Petr Mladek (2021-03-03 02:25:58) > On Mon 2021-03-01 09:47:47, Stephen Boyd wrote: > > The %pS printk format (among some others) is used to print kernel > > addresses symbolically. When the kernel prints an address inside of a > > module, the kernel prints the address

Re: [PATCH 1/7] buildid: Add method to get running kernel's build ID

2021-03-03 Thread Stephen Boyd
Quoting Stephen Boyd (2021-03-02 15:28:25) > (HTML mail?) > > Quoting Andy Shevchenko (2021-03-01 15:33:06) > > > > > > On Monday, March 1, 2021, Stephen Boyd wrote: > > @@ -147,3 +158,31 @@ int build_id_parse(struct vm_area_struct *vma

Re: [PATCH 5/7] printk: Make %pS and friends print module build ID

2021-03-03 Thread Stephen Boyd
Quoting Andy Shevchenko (2021-03-03 08:17:01) > On Wed, Mar 03, 2021 at 10:00:12AM -0500, Steven Rostedt wrote: > > On Wed, 3 Mar 2021 11:25:58 +0100 > > Petr Mladek wrote: > > > > > Alternative solution would be to minimize the information, for > > > example, by printing only the modules that

Re: [PATCH 1/1] clk: sunxi: Demote non-conformant kernel-doc headers

2021-03-03 Thread Stephen Boyd
on parameter or > member 'req' not described in 'sun6i_get_ar100_factors' > > Cc: "Emilio López" > Cc: Michael Turquette > Cc: Stephen Boyd > Cc: Maxime Ripard > Cc: Chen-Yu Tsai > Cc: Jernej Skrabec > Cc: Boris BREZILLON > Cc: linux-...@vger.kernel.or

Re: [PATCH v2 12/14] arm64: dts: qcom: sc7280: Add SPMI PMIC arbiter device for SC7280

2021-03-03 Thread Stephen Boyd
Quoting Rajendra Nayak (2021-03-03 04:17:56) > diff --git a/arch/arm64/boot/dts/qcom/sc7280.dtsi > b/arch/arm64/boot/dts/qcom/sc7280.dtsi > index fe4fdb9..aa6f847 100644 > --- a/arch/arm64/boot/dts/qcom/sc7280.dtsi > +++ b/arch/arm64/boot/dts/qcom/sc7280.dtsi > @@ -239,6 +239,25 @@ >

Re: [PATCH v2 14/14] arm64: dts: qcom: sc7280: Add rpmh power-domain node

2021-03-03 Thread Stephen Boyd
Quoting Rajendra Nayak (2021-03-03 04:17:58) > Add the DT node for the rpmhpd power controller on SC7280 SoCs. > > Signed-off-by: Rajendra Nayak > --- Reviewed-by: Stephen Boyd

Re: [PATCH v2 05/14] arm64: dts: qcom: sc7280: Add RSC and PDC devices

2021-03-03 Thread Stephen Boyd
Quoting Rajendra Nayak (2021-03-03 04:17:49) > diff --git a/arch/arm64/boot/dts/qcom/sc7280.dtsi > b/arch/arm64/boot/dts/qcom/sc7280.dtsi > index 4a56d9c..21c2399 100644 > --- a/arch/arm64/boot/dts/qcom/sc7280.dtsi > +++ b/arch/arm64/boot/dts/qcom/sc7280.dtsi > @@ -30,6 +31,18 @@ >

Re: [PATCH v2 13/14] arm64: dts: qcom: sc7280: Add cpuidle states

2021-03-03 Thread Stephen Boyd
Maulik Shah > Signed-off-by: Rajendra Nayak > --- With that commit text update Reviewed-by: Stephen Boyd

Re: [PATCH v2 06/14] arm64: dts: qcom: SC7280: Add rpmhcc clock controller node

2021-03-03 Thread Stephen Boyd
Quoting Rajendra Nayak (2021-03-03 04:17:50) > Add rpmhcc clock controller node for SC7280. Also add references to > rpmhcc clocks in gcc. > > Signed-off-by: Taniya Das > Signed-off-by: Rajendra Nayak > --- Reviewed-by: Stephen Boyd

Re: [PATCH v2 03/14] arm64: dts: sc7280: Add basic dts/dtsi files for sc7280 soc

2021-03-03 Thread Stephen Boyd
Quoting Rajendra Nayak (2021-03-03 04:17:47) > diff --git a/arch/arm64/boot/dts/qcom/sc7280.dtsi > b/arch/arm64/boot/dts/qcom/sc7280.dtsi > new file mode 100644 > index 000..4a56d9c > --- /dev/null > +++ b/arch/arm64/boot/dts/qcom/sc7280.dtsi > @@ -0,0 +1,299 @@ > +// SPDX-License-Identifier:

Re: [PATCH 5/7] printk: Make %pS and friends print module build ID

2021-03-03 Thread Stephen Boyd
Quoting Andy Shevchenko (2021-03-03 00:19:05) > On Tue, Mar 02, 2021 at 07:00:32PM -0800, Stephen Boyd wrote: > > Quoting Steven Rostedt (2021-03-02 18:01:36) > > > On Mon, 1 Mar 2021 09:47:47 -0800 > > > Stephen Boyd wrote: > > > > > > > WARNIN

Re: [PATCH 06/13] arm64: dts: qcom: SC7280: Add rpmhcc clock controller node

2021-03-03 Thread Stephen Boyd
Quoting Taniya Das (2021-03-01 09:27:06) > On 2/23/2021 1:13 PM, Stephen Boyd wrote: > > Quoting Rajendra Nayak (2021-02-11 23:28:43) > >> diff --git a/arch/arm64/boot/dts/qcom/sc7280.dtsi > >> b/arch/arm64/boot/dts/qcom/sc7280.dtsi > >> +

Re: [PATCH v2 13/13] arm64: dts: qcom: Add sc7180-trogdor-coachz skus

2021-03-03 Thread Stephen Boyd
ce sound hasn't landed upstream yet. > > Cc: Gwendal Grignou > Cc: Matthias Kaehlcke > Cc: Stephen Boyd > Cc: Tzung-Bi Shih > Cc: Judy Hsiao > Signed-off-by: Douglas Anderson > Reviewed-by: Matthias Kaehlcke > --- Reviewed-by: Stephen Boyd

Re: [PATCH v2 12/13] arm64: dts: qcom: Add sc7180-trogdor-pompom skus

2021-03-03 Thread Stephen Boyd
node since sound hasn't landed upstream yet. > - In incorporate the pending <https://crrev.com/c/2719075> for the > keyboard. > > Cc: Philip Chen > Cc: Matthias Kaehlcke > Cc: Stephen Boyd > Cc: Tzung-Bi Shih > Cc: Judy Hsiao > Signed-off-by: Douglas Anderson

Re: [PATCH v2 11/13] arm64: dts: qcom: Add sc7180-lazor-limozeen skus

2021-03-03 Thread Stephen Boyd
nce a few > people have them we might as well. If it ever causes problems we > can delete it. > > [1] > https://lore.kernel.org/r/20210115144345.v2.4.I6889e21811df6adaff5c5b8a8c80fda0669ab3a5@changeid > > Cc: Stephen Boyd > Signed-off-by: Douglas Anderson > Reviewed-by: Matthias Kaehlcke > --- Reviewed-by: Stephen Boyd

Re: [PATCH v2 09/13] arm64: dts: qcom: sc7180: add GO_LAZOR variant property for lazor

2021-03-03 Thread Stephen Boyd
d-off-by: Abhishek Kumar > [dianders: adjusted subject line and sort order] > Signed-off-by: Douglas Anderson > Reviewed-by: Matthias Kaehlcke > --- Reviewed-by: Stephen Boyd

Re: [PATCH v2 10/13] arm64: dts: qcom: sc7180: Set up lazor r3+ as sc7180-lite SKUs

2021-03-03 Thread Stephen Boyd
Quoting Douglas Anderson (2021-03-01 13:34:34) > From: Matthias Kaehlcke > > Lazor rev3 and later use the 'lite' version of the SC7180 SoC. > > Cc: Stephen Boyd > Signed-off-by: Matthias Kaehlcke > [dianders: Adjust commit message which referred to downstream history] >

Re: [PATCH v2 07/13] arm64: dts: qcom: sc7180-trogdor: Remove fp control pins in prep for coachz

2021-03-03 Thread Stephen Boyd
, >it would interfere with flash_fp_mcu at the most inopportune times > > Since we're not using hogs, we rely on AP firmware to set all the > control pins correctly. > > Cc: Stephen Boyd > Cc: Craig Hesling > Signed-off-by: Alexandru M Stan > [dianders: adjusted s

Re: [PATCH v2 08/13] arm64: dts: qcom: sc7180: Remove clock for bluetooth on Trogdor

2021-03-03 Thread Stephen Boyd
a Gubba > Signed-off-by: Douglas Anderson > Reviewed-by: Matthias Kaehlcke > --- Reviewed-by: Stephen Boyd

Re: [PATCH v2 02/13] arm64: dts: qcom: Move sc7180 MI2S config to board files and make pulldown

2021-03-03 Thread Stephen Boyd
g-Bi Shih > Cc: Judy Hsiao > Signed-off-by: Douglas Anderson > Reviewed-by: Matthias Kaehlcke > --- Reviewed-by: Stephen Boyd

Re: [PATCH v2 03/13] arm64: dts: qcom: Prep sc7180-trogdor trackpad IRQ for new boards

2021-03-03 Thread Stephen Boyd
ce trees yet, this change > looks silly on its own but it will make sense after more boards are > supported. > > Signed-off-by: Douglas Anderson > Reviewed-by: Matthias Kaehlcke > --- Reviewed-by: Stephen Boyd

Re: [PATCH v2 04/13] arm64: dts: qcom: Unify the sc7180-trogdor panel nodes

2021-03-03 Thread Stephen Boyd
Quoting Douglas Anderson (2021-03-01 13:34:28) > Let's avoid a bit of duplication by pushing this up to the trogdor.dtsi > file. > > Signed-off-by: Douglas Anderson > Reviewed-by: Matthias Kaehlcke > --- Suggested-by: Stephen Boyd Reviewed-by: Stephen Boyd

Re: [PATCH 2/4] arm64: dts: qcom: sdm845: Rename the qmp node to power-controller

2021-03-03 Thread Stephen Boyd
Quoting Sai Prakash Ranjan (2021-03-01 23:28:02) > Use the generic DT node name "power-controller" for AOSS message ram > instead of the protocol name QMP(Qualcomm Messaging Protocol) since > it is used for power management requests. > > Suggested-by: Stephen Boyd >

Re: [PATCH 3/4] arm64: dts: qcom: sm8250: Rename the qmp node to power-controller

2021-03-03 Thread Stephen Boyd
Quoting Sai Prakash Ranjan (2021-03-01 23:28:03) > Use the generic DT node name "power-controller" for AOSS message ram > instead of the protocol name QMP(Qualcomm Messaging Protocol) since > it is used for power management requests. > > Suggested-by: Stephen Boyd >

Re: [PATCH 4/4] arm64: dts: qcom: sm8350: Rename the qmp node to power-controller

2021-03-03 Thread Stephen Boyd
Quoting Sai Prakash Ranjan (2021-03-01 23:28:04) > Use the generic DT node name "power-controller" for AOSS message ram > instead of the protocol name QMP(Qualcomm Messaging Protocol) since > it is used for power management requests. > > Suggested-by: Stephen Boyd >

Re: [PATCH 1/4] arm64: dts: qcom: sc7180: Rename the qmp node to power-controller

2021-03-03 Thread Stephen Boyd
Quoting Sai Prakash Ranjan (2021-03-01 23:28:01) > Use the generic DT node name "power-controller" for AOSS message ram > instead of the protocol name QMP(Qualcomm Messaging Protocol) since > it is used for power management requests. > > Suggested-by: Stephen Boyd >

Re: [PATCH 5/7] printk: Make %pS and friends print module build ID

2021-03-03 Thread Stephen Boyd
Quoting Steven Rostedt (2021-03-02 18:01:36) > On Mon, 1 Mar 2021 09:47:47 -0800 > Stephen Boyd wrote: > > > WARNING: CPU: 4 PID: 3255 at drivers/misc/lkdtm/bugs.c:83 > > lkdtm_WARNING+0x28/0x30 [lkdtm] (ed5019fdf5e53be37cb1ba7899292d7e143b259e) > > Modules linked

Re: [PATCH 5/7] printk: Make %pS and friends print module build ID

2021-03-03 Thread Stephen Boyd
Quoting Steven Rostedt (2021-03-01 18:43:19) > On Mon, 1 Mar 2021 09:47:47 -0800 > Stephen Boyd wrote: > > > The %pS printk format (among some others) is used to print kernel > > addresses symbolically. When the kernel prints an address inside of a > > module, the

Re: [PATCH 7/7] kdump: Use vmlinux_build_id() to simplify

2021-03-03 Thread Stephen Boyd
Quoting Baoquan He (2021-03-02 00:19:09) > On 03/01/21 at 09:47am, Stephen Boyd wrote: > > - note_sec->n_hdr.n_descsz, > > - BUILD_ID_MAX); > > - return; > > - } > > -

Re: [PATCH AUTOSEL 5.10 22/47] clk: qcom: gdsc: Implement NO_RET_PERIPH flag

2021-03-03 Thread Stephen Boyd
er case. > Same comment as on 5.11 > Signed-off-by: AngeloGioacchino Del Regno > > Link: > https://lore.kernel.org/r/20210113183817.447866-8-angelogioacchino.delre...@somainline.org > Signed-off-by: Stephen Boyd > Signed-off-by: Sasha Levin > --- > drivers/clk/qcom/

Re: [PATCH AUTOSEL 5.11 26/52] clk: qcom: gdsc: Implement NO_RET_PERIPH flag

2021-03-03 Thread Stephen Boyd
case. Is there a patch that's going to use this in stable trees? On its own this patch doesn't make sense to backport. > > Signed-off-by: AngeloGioacchino Del Regno > > Link: > https://lore.kernel.org/r/20210113183817.447866-8-angelogioacchino.delre...@somainline.org > Sig

<    1   2   3   4   5   6   7   8   9   10   >