Commit Graph

1071159 Commits

Author SHA1 Message Date
Vivek Aknurwar
5f22a48d6d clk: qcom: clk-rcg2: Fix possible dereference of clk parent for dfs clocks
Fix possible dereference of clk parent while populating dfs clocks.

Change-Id: I797c499fe3ab57effb16c65f89365da9e5279995
Signed-off-by: Vivek Aknurwar <viveka@codeaurora.org>
2022-03-29 15:13:20 -07:00
Vivek Aknurwar
7a79269412 clk: qcom: Add API to query corner voltage on given clk frequency
Add new API for clients to query corner voltage required by a
given frequency.

Change-Id: Ic469c36e016899d882ca084f74e0d2cb2020476c
Signed-off-by: Vivek Aknurwar <viveka@codeaurora.org>
2022-03-29 15:13:20 -07:00
Vivek Aknurwar
aff8123385 clk: qcom: Maintain qcom_regmap_list of qcom clks
Providers adds ops for list rate and print reg debug nodes
to print necessary debug information, these nodes
can not be added to clk framework and is moved down to provider level.
Since provider does not have complete knowledge on clks owned
at clk framework, providers can not blindly typecast clks owned
by clk framework to call its list/print ops.
A separate qcom_regmap_list is maintained during qcom clk
registration with clk framework. So as when debug list/print
calls are called, provider have knowledge of qcom clks
and only call respective ops on qcom clks maintained
in clk_regmap_list.

Providers can use this API to know if clk is qcom regmaped clk.

Change-Id: I3e4d8280c8fa0c692f855c0d6659dd14f95008df
Signed-off-by: Vivek Aknurwar <viveka@codeaurora.org>
2022-03-29 15:13:20 -07:00
Vivek Aknurwar
963616ec65 clk: qcom: Cache vdd vote if clk is unprepared
When set_rate is called on unprepared clocks new vdd_level
requirement is not cached, which leads to incorrect votes
when later clk_prepare is called. Clocks may not be prepared
when clk pre change rate is called for set_rate change request,
thus cache vdd level and only apply vote during clk prepare.

Change-Id: I54d9a3c75034cd9e67e683c3f71088f2c7cd3db1
Signed-off-by: Vivek Aknurwar <viveka@codeaurora.org>
2022-03-29 15:13:20 -07:00
David Dai
e1cd39eb79 clk: qcom: clk-alpha-pll: add callbacks to deal with voltage voting
Specify prepare, unprepare, pre_change_rate, post_change_rate callbacks
for alpha-pll clk_ops.  This ensures that supply regulator requirements
are managed properly at runtime.

Change-Id: I578b81c2ab77a8d7e2332098bd737b0646cf577d
Signed-off-by: David Dai <daidavid1@codeaurora.org>
Signed-off-by: Mike Tipton <mdtipton@codeaurora.org>
2022-03-29 15:13:20 -07:00
Mike Tipton
a1635fb5e0 clk: qcom: Add clk_regmap_ops
Add ops structure for clk_regmap-specific operations.

Change-Id: I230931fc44e5479c1f45b3521bb56b9b22760730
Signed-off-by: Mike Tipton <mdtipton@codeaurora.org>
2022-03-29 15:13:20 -07:00
David Dai
f71ef2aea2 clk: qcom: clk-rpmh: Add support for optional clocks
Some rpmh clocks aren't present on all boards, so allow marking some as
optional.

Change-Id: I6d2165a84f7e06febc7ea2694c1fb4a2ef9309d5
Signed-off-by: David Dai <daidavid1@codeaurora.org>
Signed-off-by: Mike Tipton <mdtipton@codeaurora.org>
2022-03-29 15:13:20 -07:00
Mike Tipton
3e035473b1 clk: qcom: Add generic sync_state callback
Add generic sync_state function that can be used by qcom clock providers
(qcom_cc_sync_state). Currently this is just a simple wrapper around
clk_sync_state from the framework, but ultimately will contain
additional qcom-specific logic.

Change-Id: I936daafdd19cc7676daa4b9fbe712d9b3181395f
Signed-off-by: Mike Tipton <mdtipton@codeaurora.org>
2022-03-29 15:13:20 -07:00
David Dai
1e204f604d clk: qcom: clk-rcg2: add callbacks to deal with voltage voting
Specify prepare, unprepare and pre/post rate change callbacks for all
clk-rcg2 clk_ops.  This ensures that supply regulator requirements are
managed properly at runtime.

Change-Id: I6d7e31983e99c2ef9f546771d7046e8f0111debc
Signed-off-by: David Dai <daidavid1@codeaurora.org>
Signed-off-by: Mike Tipton <mdtipton@codeaurora.org>
2022-03-29 15:13:19 -07:00
David Dai
dc2598a2fe clk: qcom: regmap: Add regmap support for voltage voting
Add support for prepare, unprepare, pre and post rate change regmap
clk_ops callback functions for regmap clocks to handle regulator
requirements.

Change-Id: If4657adcc047e1ca005d3d4f7ab88146dba85ee0
Signed-off-by: David Dai <daidavid1@codeaurora.org>
2022-03-29 15:13:19 -07:00
David Collins
70d08917fd clk: qcom: add vdd-class voltage regulator voting support
Add support to manage voltage supply regulators via the
vdd-class voting interface.  Provide functions that can be
easily used to implement clk_ops callbacks used for voltage
voting.

Change-Id: I891b5944ed8075074c11f139d9e6951d796c7f90
Signed-off-by: David Collins <collinsd@codeaurora.org>
Signed-off-by: David Dai <daidavid1@codeaurora.org>
2022-03-29 15:13:19 -07:00
David Collins
ccfead43b0 clk: qcom: define vdd_levels enum and vdd_corner[] map
Define a vdd_levels enum and vdd_corner[] mapping table which can
be used by clock controller drivers to configure the vdd_class
associated with their clocks.

Change-Id: Ia0c2ed35f7c87cc3dc9947844625a463745e2ac5
Signed-off-by: David Collins <collinsd@codeaurora.org>
Signed-off-by: Mike Tipton <mdtipton@codeaurora.org>
2022-03-29 15:13:19 -07:00
David Collins
ce308ac8f9 clk: qcom: common: only register reset controllers which define resets
Add a condition check to ensure that a reset controller is only
registered for a given clock controller inside of the
qcom_cc_really_probe() function if more than 0 resets are
defined for it.

Change-Id: Iffdfce1f7609ccab184a61c4a448a7edc15bb4ab
Signed-off-by: David Collins <collinsd@codeaurora.org>
2022-03-29 15:13:19 -07:00
David Collins
9e2abb9c90 clk: qcom: common: add device tree consumer support for clk_hws
Add support for device tree consumers to utilize clocks which
are registered via clk_hws in struct qcom_cc_desc.

This modification is effectively
commit 84196373f39d ("clk: qcom: Support to add hardware clocks
to of_clk_hw_provider")
reconciled with
commit 760be6586f ("clk: qcom: Make common clk_hw
registrations").

Change-Id: I1e0bdeecd2d4092bff3110168438211493f4feda
Signed-off-by: David Collins <collinsd@codeaurora.org>
Signed-off-by: Mike Tipton <mdtipton@codeaurora.org>
2022-03-29 15:13:19 -07:00
David Collins
9c4534f1cf clk: qcom: clk-rcg2: correct set rate handling for FORCE_ENABLE_RCG
Currently, if clk_set_rate() is called on a disabled clock that
has flags = FORCE_ENABLE_RCG, the rate is neither physically set
nor properly cached in software.  This means that when the clock
is later enabled, its rate will not be what was previously
requested.

Change the handling of FORCE_ENABLE_RCG so that all clk_set_rate()
calls are respected regardless of a clock's enable state.  In
doing so, ensure that FORCE_ENABLE_RCG and enable_safe_config are
supported both individually and together.

Implement the following behavior:

enable_safe_config == true:
enable   - configure the RCG according to the cached current_freq
disable  - configure the RCG for CXO (safe) source
set_rate - (if prepared) configure the RCG for the requested rate
           (if not prepared) cache the rate in current_freq

flags | FORCE_ENABLE_RCG:
enable   - set ROOT_EN=1 to force the RCG to be enabled
disable  - set ROOT_EN=0
set_rate - configure the RCG for the requested rate;
           if disabled, then set ROOT_EN=1 before the
           configuration is changed and ROOT_EN=0 after

enable_safe_config && (flags | FORCE_ENABLE_RCG):
enable   - set ROOT_EN=1 and configure the RCG according to the
           cached current_freq
disable  - configure the RCG for CXO source and set ROOT_EN=0
set_rate - (if prepared) configure the RCG for the requested rate
           (if not prepared) cache the rate in current_freq

Change-Id: Ib7442e4a4b572ae7c567929044410e09a9886c76
Signed-off-by: David Collins <collinsd@codeaurora.org>
2022-03-29 15:13:19 -07:00
Taniya Das
9c20337119 clk: qcom: rcg2: Remove support for update_src_map
The commit eb325c3d2a90 ("clk: qcom: clk-rcg2: Read RCG source before
calculating clk rate")' had introduced a function to update the src map,
but there could be a race where a set_rate for a clock from a particular
CC on a CPU could override the global cxo_f which was set by clock
enable/disable for a clock from another CC.

Change-Id: Id86818895e226a387e7fd1a09e2034eee18fd361
Signed-off-by: Taniya Das <tdas@codeaurora.org>
2022-03-29 15:13:19 -07:00
David Collins
0980686087 clk: qcom: add null pointer checks for parent clocks
Add null pointer checks for the parent clock pointers returned
by clk_hw_get_parent() and clk_hw_get_parent_by_index() in
several qcom clock drivers.

Change-Id: I869c9e35b7ec083b34bcc70d18601aec64c3ac97
Signed-off-by: David Collins <collinsd@codeaurora.org>
2022-03-29 15:13:19 -07:00
David Dai
6e0b4c6522 clk: qcom: clk-alpha-pll: add additional configuration support for PLLs
Add support to configure cal_l fields for PLLs.

Change-Id: Ib5a7a74aecd8d9885e0a3034f097c13cda4d2268
Signed-off-by: David Dai <daidavid1@codeaurora.org>
Signed-off-by: Mike Tipton <mdtipton@codeaurora.org>
2022-03-29 15:13:19 -07:00
David Collins
4297f2dcbe clk: qcom: clk-spmi-pmic-div: avoid potential divide-by-0
Add a check of the cxo_hz value to ensure that it is greater than
0.  That way, there is no chance of division by zero when using
cxo_hz to calculate cxo_period_ns.

Change-Id: I5498b7a08e4cb3be45469041a973d045f2ec2bdb
Signed-off-by: David Collins <collinsd@codeaurora.org>
2022-03-29 15:13:19 -07:00
David Collins
cc4ad0b211 clk: qcom: clk-spmi-pmic-div: add support for clock-output-names
Some boards utilize several PMICs which contain clock divider
peripherals.  Add support for the clock-output-names property
so that unique names can be specified for each divider clock.
If clock-output-names is not specified, then the clock names
will be div_clkN where N=1 to qcom,num-clkdivs.

Change-Id: I66b5fcd0a3890886fe1e8cd85b15ada8a55ecb0f
Signed-off-by: David Collins <collinsd@codeaurora.org>
2022-03-29 15:13:19 -07:00
Taniya Das
21f18e9e49 clk: qcom: rcg2: Add support for hardware control mode
Add a flag to indicate to support and enable hardware control mode
of an RCG.

Change-Id: I21194a463441ea13b7575a4174b1f96504b42b1e
Signed-off-by: Taniya Das <tdas@codeaurora.org>
2022-03-29 15:13:19 -07:00
Shefali Jain
256df2bfba clk: qcom: clk-rcg2: Read RCG source before calculating clk rate
If the clock rate is set previously to hlos and enable
safe config is true. In that case we need to check the
rcg source to make sure recalc will return correct rate.
Rate calculation is done based on selected source rather
than 19.2 MHZ. Also, we are setting correct src value for
XO based on the parent map of a particular clock.

Change-Id: Id6d2923136a0848d55cff37fb5ef2e3b092af27a
Signed-off-by: Shefali Jain <shefjain@codeaurora.org>
2022-03-29 15:13:19 -07:00
Taniya Das
0724ed51f8 clk: qcom: Retrieve pre_div from freq_tbl for shared RCG
There could be cases where a simultaneous clk_disable and clk_set_rate on
the same rcg could result in a wrong recalc rate. So for shared rcgs
get the pre_div value based on the current frequency from the frequency
table.

Change-Id: Ia5730e43965b2d0ba19da05fca47825514f98865
Signed-off-by: Taniya Das <tdas@codeaurora.org>
2022-03-29 15:13:19 -07:00
Shefali Jain
42497813c1 clk: qcom: rcg2: Add DIV_ROUND_CLOSEST_ULL to roundoff RCG frequency
The Alpha BW for Fabia PLL is 16 bit and the calculated hw rate has
additional KHz of frequency. Due to this additional frequency, the
source is wrongly selected. Truncate the additional KHz using the
DIV_ROUND_CLOSEST_ULL.

Change-Id: Ic9c523c87277c4813b676cf8a52a1207e8f1ecc2
Signed-off-by: Shefali Jain <shefjain@codeaurora.org>
2022-03-29 15:13:18 -07:00
Taniya Das
0fa01f415e clk: qcom: Add support for RCGs with dynamic and fixed sources
Some RCGs could have sources with dynamic frequencies and fixed sources
where if the RCG has the flag of CLK_SET_RATE_PARENT set, it would try to
propagate the clock rate to the fixed source PLLs too. To identify sources
of the RCGs where the rate should propagate to parent PLL, add a member in
freq_tbl to represent source frequency. This would be used by the
_freq_tbl_determine_rate to set its parent frequency on the PLL.

Change-Id: I7f1c0d9d84607821893a1e5d17934dae5acef5f4
Signed-off-by: Taniya Das <tdas@codeaurora.org>
Signed-off-by: David Dai <daidavid1@codeaurora.org>
2022-03-29 15:13:18 -07:00
Deepak Katragadda
356aa27ef3 clk: qcom: clk-rcg2: Add support to force enable an RCG
In certain cases, it is desirable for an RCG to be turned on
explicitly instead of just relying on the enable signal from
its branch clock(s). Add support for this.

Change-Id: I2b0b81bddfe7cc7543c313e4ed13a332fb1a0fcb
Signed-off-by: Deepak Katragadda <dkatraga@codeaurora.org>
Signed-off-by: David Dai <daidavid1@codeaurora.org>
2022-03-29 15:13:18 -07:00
Deepak Katragadda
76ec230456 clk: qcom: clk-rcg2: Configure the RCGs to a safe frequency as needed
In certain cases, an RCG might be prone to being enabled even
though the overlying software thinks that it disabled the RCG.
In order to avoid letting the RCG go into an invalid state, support
parking it at a safe frequency during clk_disable() and deferring
all the RCG configuration updates to be done during clk_enable(),
if a scaling request comes in whilst the clock is disabled.

Change-Id: I55f1d1d346182a2b480127c57d6659fc9a63331b
Signed-off-by: Deepak Katragadda <dkatraga@codeaurora.org>
Signed-off-by: David Dai <daidavid1@codeaurora.org>
Signed-off-by: David Collins <collinsd@codeaurora.org>
2022-03-29 15:13:18 -07:00
Rajkumar Subbiah
da4207ca10 clk: qcom: Add support for divider flags and table
The clk-divider module in the clock framework provides support
for different kinds of dividers such as power-of-two and discrete
table based dividers. clk-regmap-divider module which adds regmap
support to the clk-divider doesn't handle the flags and table
parameters in the clk-divider that enables these divider types.
This change adds those two parameters to the clk-regmap-divider
struct and passes them to the clk-divider appropriately.

Change-Id: I0f9a923a62786b19264c45bbcf2400292ed7e61f
Signed-off-by: Rajkumar Subbiah <rsubbia@codeaurora.org>
2022-03-29 15:13:18 -07:00
Deepak Katragadda
8e88bc5ff9 clk: qcom: Add support for hardware control branch clocks
Add new ops to allow clock clients to enable/disable hardware
dynamic gating of the clock branch.

Change-Id: I14abed3827de8cefc31f3deb3c1e589136c32b8d
Signed-off-by: Taniya Das <tdas@codeaurora.org>
Signed-off-by: Deepak Katragadda <dkatraga@codeaurora.org>
Signed-off-by: David Dai <daidavid1@codeaurora.org>
Signed-off-by: David Collins <collinsd@codeaurora.org>
2022-03-29 15:13:18 -07:00
Mike Tipton
fc8bd86451 modules.list.msm.pineapple: Add clk-qcom module
Add the clk-qcom module, which is required by clk-dummy for measure
support and for future cc modules such as gcc.

Change-Id: I14fabfc40ab51b7d21858c4dafb2c87abac3889a
Signed-off-by: Mike Tipton <quic_mdtipton@quicinc.com>
2022-03-29 15:10:30 -07:00
Mike Tipton
5d4d927001 dt-bindings: regulator: rpmh-regulator: Add levels snapshot from msm-5.10
Add qcom,rpmh-regulator-levels.h snapshot from msm-5.10 commit
98e2ff81a28d ("Merge "usb: redriver: nb7vpq904m: return early in pullup
operation"").

Change-Id: Id07625f155599ccf04a10d7a1ad57990d1672ea8
Signed-off-by: Mike Tipton <quic_mdtipton@quicinc.com>
2022-03-29 15:09:50 -07:00
qctecmdr
7d37a5ae8c Merge "build.config.msm.pineapple: Switch to UART" 2022-03-24 18:41:51 -07:00
qctecmdr
ad42487eed Merge "modules.list.msm.pineapple: Add stub-regulator module" 2022-03-24 18:41:50 -07:00
qctecmdr
09a701a7d7 Merge "pinctrl: pineapple: Update driver to match TLMM data" 2022-03-24 18:41:49 -07:00
Vivek Aknurwar
eb497e5cd6 modules.list.msm.pineapple: Add stub-regulator module
Add stub-regulator module to pineapple target load file.

Change-Id: Iec79d5b261741571cdc8db76e567a1a3f8b92a90
Signed-off-by: Vivek Aknurwar <quic_viveka@quicinc.com>
2022-03-23 12:21:18 -07:00
Vivek Aknurwar
8b043925ba defconfig: pineapple-gki: Enable stub regulator support
Enable CONFIG_REGULATOR_STUB in pineapple GKI defconfig to enable
regulator stubs required for clock gdscs.

Change-Id: Ife97a0286e759ebd039699b6995bb1651cd28d0f
Signed-off-by: Vivek Aknurwar <quic_viveka@quicinc.com>
2022-03-23 12:21:18 -07:00
David Collins
740353771a regulator: add stub-regulator driver
Add a stub-regulator driver which can be used to simulate any
particular regulator.  This stub regulator driver must support
regulator_set_voltage() which is not possible via the existing
dummy regulator.  Stub regulator devices can be used to verify
that regulator consumers make correct regulator framework calls
before it is possible to implement true regulator control.

Change-Id: Ia73d245419e44d74712b813e58de1973112233c4
Signed-off-by: David Collins <collinsd@codeaurora.org>
Signed-off-by: Vivek Aknurwar <viveka@codeaurora.org>
2022-03-23 12:21:17 -07:00
Vivek Aknurwar
317ae2cc5c modules.list.msm.pineapple: Add clk-dummy module
Add clk-dummy module for pineapple target load file.

Change-Id: I7c0c50e623b531f72c9ce38853a9f99e85b254e9
Signed-off-by: Vivek Aknurwar <quic_viveka@quicinc.com>
2022-03-23 12:21:17 -07:00
Vivek Aknurwar
47cf913c95 defconfig: pineapple-gki: Enable common qcom clk support
Enable CONFIG_COMMON_CLK_QCOM in pineaplle_GKI defconfig to enable
common QCOM clock and stub controllers for pineapple.

Change-Id: I0911d182e95d2bc38cb9423c5a44a760b6a661c7
Signed-off-by: Vivek Aknurwar <quic_viveka@quicinc.com>
2022-03-23 12:21:16 -07:00
Vivek Aknurwar
608cacce69 dt-bindings: clock: Add support for clock ids to pineapple
Add clock IDs for all clock controllers to enable client requests for
clocks from gcc, camcc, videocc, dispcc, gpuccc, tcsrcc clock controllers.

Change-Id: I87c3446d7ef83339358f57fac783042944f01048
Signed-off-by: Vivek Aknurwar <quic_viveka@quicinc.com>
2022-03-23 12:21:15 -07:00
David Collins
e1793a57e5 clk: qcom: clk-dummy: convert into a platform driver
Modify the clk-dummy driver so that it registers a platform
driver instead of using CLK_OF_DECLARE().  This is needed for
device struct based dependency tracking to work properly.

Change-Id: I545c6e6a11e349e6eec0c75c106932d3909c54c8
Signed-off-by: David Collins <collinsd@codeaurora.org>
Signed-off-by: Vivek Aknurwar <viveka@codeaurora.org>
2022-03-23 12:21:15 -07:00
Deepak Katragadda
2f89497a34 clk: qcom: clk-dummy: Add a dummy clock provider
Add a dummy clock provider that registers a simple callback that
in turn always returns the dummy clock for any clk_get call.

In addition, consumers of dummy clock provider requires support
for dummy resets, which would make a dummy assert/deassert
of the reset signals.

Change-Id: I08fcb174fd0e0c49f8069e106b48597bcdfe847d
Signed-off-by: Taniya Das <tdas@codeaurora.org>
Signed-off-by: Deepak Katragadda <dkatraga@codeaurora.org>
Signed-off-by: David Dai <daidavid1@codeaurora.org>
Signed-off-by: Vivek Aknurwar <viveka@codeaurora.org>
2022-03-23 12:20:27 -07:00
Guru Das Srinagesh
b5df9d72ea build.config.msm.pineapple: Switch to UART
Edit the kernel command line to enable serial console output on UART.

Change-Id: I6eecdcb3e5f2f265324fe0abd79b2f8c716741ef
Signed-off-by: Guru Das Srinagesh <quic_gurus@quicinc.com>
2022-03-22 17:09:33 -07:00
Guru Das Srinagesh
fc6109efd4 Documentation: Avoid cleaning devicetree bindings
'make mrproper' runs through all the sub-directories and cleans up
generated files. As the dt-schema checking makefile is not being
done/not present, update the makefile to avoid looking for the makefile.

Change-Id: I686381e1a1fef459e71aafae975f602a2c8cf89c
Signed-off-by: Jeevan Shriram <jshriram@codeaurora.org>
Signed-off-by: Guru Das Srinagesh <quic_gurus@quicinc.com>
2022-03-22 14:38:03 -07:00
Guru Das Srinagesh
50753d29ae pinctrl: pineapple: Update driver to match TLMM data
Update the driver to match the data corresponding to the TLMM block on
pineapple SoC.

Change-Id: I9ce707d1497de74ba960d896692aeab234f987c5
Signed-off-by: Guru Das Srinagesh <quic_gurus@quicinc.com>
2022-03-17 16:17:01 -07:00
Guru Das Srinagesh
b1df6fa11b build.config.msm.common: Temporarily turn off config delta checks
Turn off comparing config overrides until an upstream change removes
CONFIG_TEST_STACKINIT from consolidate.fragment.

Change-Id: I1970770e7c8c8c16b6dcaa941cc895133ccceee5
Signed-off-by: Guru Das Srinagesh <quic_gurus@quicinc.com>
2022-03-10 09:48:22 -08:00
Guru Das Srinagesh
7c02a9c4d6 build.config: pineapple: Edit kernel cmdline
The GENI serial console is not to be enabled by default.

Change-Id: I536ae937cf840a2def40be2620669777c7ae549e
Signed-off-by: Guru Das Srinagesh <quic_gurus@quicinc.com>
2022-03-10 09:48:22 -08:00
Guru Das Srinagesh
a9de059252 arm64: defconfig: Enable PINCTRL_PINEAPPLE in GKI
Enable the TLMM pinctrl driver for the Pineapple target in the GKI
build.

Change-Id: I4fafcbd32f87f60e32a593af750e5a097f8fffb9
Signed-off-by: Guru Das Srinagesh <quic_gurus@quicinc.com>
2022-03-10 09:48:21 -08:00
Guru Das Srinagesh
bacbc2cbe1 pinctrl: qcom: Add Pineapple pinctrl driver
Add pinctrl driver to support pin configuration on the Pineapple SoC.

Change-Id: I124fca313a7bc0203f238c0ce26e109746fc2ffe
Signed-off-by: Guru Das Srinagesh <quic_gurus@quicinc.com>
2022-03-10 09:48:20 -08:00
Vamsi Krishna Lanka
9df35155cb pinctrl: qcom: Propagate set of changes to pinctrl-msm
This is a propagated change from msm-5.10 "msm-kalama" commit
<375ce1eae> ("pinctrl: qcom: Merge changes of msm pinctrl driver from
msm-5.10").

Change-Id: Idb10beef6fc45399ee98b653667ccd59c722d3df
Signed-off-by: Vamsi Krishna Lanka <vamslank@codeaurora.org>
[gurus: Fixed merge conflict in pinctrl-msm.c]
Signed-off-by: Guru Das Srinagesh <quic_gurus@quicinc.com>
2022-03-10 09:48:14 -08:00