xref: /openbmc/linux/drivers/clk/qcom/Kconfig (revision 0cef71f2)
1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only
24d7dc77bSStephen Boydconfig KRAIT_CLOCKS
34d7dc77bSStephen Boyd	bool
44d7dc77bSStephen Boyd	select KRAIT_L2_ACCESSORS
54d7dc77bSStephen Boyd
673bb7dc0SStephen Boydconfig QCOM_GDSC
773bb7dc0SStephen Boyd	bool
873bb7dc0SStephen Boyd	select PM_GENERIC_DOMAINS if PM
973bb7dc0SStephen Boyd
1000f64b58SGeorgi Djakovconfig QCOM_RPMCC
1100f64b58SGeorgi Djakov	bool
1200f64b58SGeorgi Djakov
13f071bcebSStephen Boydmenuconfig COMMON_CLK_QCOM
14085d7a45SStephen Boyd	tristate "Support for Qualcomm's clock controllers"
15085d7a45SStephen Boyd	depends on OF
163937567dSBartlomiej Zolnierkiewicz	depends on ARCH_QCOM || COMPILE_TEST
17cddf1f82STaniya Das	select RATIONAL
18085d7a45SStephen Boyd	select REGMAP_MMIO
19b36ba30cSStephen Boyd	select RESET_CONTROLLER
202ec94130SStephen Boyd
21f071bcebSStephen Boydif COMMON_CLK_QCOM
22f071bcebSStephen Boyd
230c6ab1b8SGeorgi Djakovconfig QCOM_A53PLL
240c6ab1b8SGeorgi Djakov	tristate "MSM8916 A53 PLL"
250c6ab1b8SGeorgi Djakov	help
260c6ab1b8SGeorgi Djakov	  Support for the A53 PLL on MSM8916 devices. It provides
270c6ab1b8SGeorgi Djakov	  the CPU with frequencies above 1GHz.
280c6ab1b8SGeorgi Djakov	  Say Y if you want to support higher CPU frequencies on MSM8916
290c6ab1b8SGeorgi Djakov	  devices.
300c6ab1b8SGeorgi Djakov
3181ac3884SGeorgi Djakovconfig QCOM_CLK_APCS_MSM8916
3281ac3884SGeorgi Djakov	tristate "MSM8916 APCS Clock Controller"
3381ac3884SGeorgi Djakov	depends on QCOM_APCS_IPC || COMPILE_TEST
3481ac3884SGeorgi Djakov	help
3581ac3884SGeorgi Djakov	  Support for the APCS Clock Controller on msm8916 devices. The
3681ac3884SGeorgi Djakov	  APCS is managing the mux and divider which feeds the CPUs.
3781ac3884SGeorgi Djakov	  Say Y if you want to support CPU frequency scaling on devices
3881ac3884SGeorgi Djakov	  such as msm8916.
3981ac3884SGeorgi Djakov
4003e342dcSLoic Poulainconfig QCOM_CLK_APCC_MSM8996
4103e342dcSLoic Poulain	tristate "MSM8996 CPU Clock Controller"
4203e342dcSLoic Poulain	select QCOM_KRYO_L2_ACCESSORS
4303e342dcSLoic Poulain	depends on ARM64
4403e342dcSLoic Poulain	help
4503e342dcSLoic Poulain	  Support for the CPU clock controller on msm8996 devices.
4603e342dcSLoic Poulain	  Say Y if you want to support CPU clock scaling using CPUfreq
4703e342dcSLoic Poulain	  drivers for dyanmic power management.
4803e342dcSLoic Poulain
49872f91b5SGeorgi Djakovconfig QCOM_CLK_RPM
50872f91b5SGeorgi Djakov	tristate "RPM based Clock Controller"
51f071bcebSStephen Boyd	depends on MFD_QCOM_RPM
52872f91b5SGeorgi Djakov	select QCOM_RPMCC
53872f91b5SGeorgi Djakov	help
54872f91b5SGeorgi Djakov	  The RPM (Resource Power Manager) is a dedicated hardware engine for
55872f91b5SGeorgi Djakov	  managing the shared SoC resources in order to keep the lowest power
56872f91b5SGeorgi Djakov	  profile. It communicates with other hardware subsystems via shared
57872f91b5SGeorgi Djakov	  memory and accepts clock requests, aggregates the requests and turns
58872f91b5SGeorgi Djakov	  the clocks on/off or scales them on demand.
59872f91b5SGeorgi Djakov	  Say Y if you want to support the clocks exposed by the RPM on
60872f91b5SGeorgi Djakov	  platforms such as apq8064, msm8660, msm8960 etc.
61872f91b5SGeorgi Djakov
6200f64b58SGeorgi Djakovconfig QCOM_CLK_SMD_RPM
6300f64b58SGeorgi Djakov	tristate "RPM over SMD based Clock Controller"
64f071bcebSStephen Boyd	depends on QCOM_SMD_RPM
6500f64b58SGeorgi Djakov	select QCOM_RPMCC
6600f64b58SGeorgi Djakov	help
6700f64b58SGeorgi Djakov	  The RPM (Resource Power Manager) is a dedicated hardware engine for
6800f64b58SGeorgi Djakov	  managing the shared SoC resources in order to keep the lowest power
6900f64b58SGeorgi Djakov	  profile. It communicates with other hardware subsystems via shared
7000f64b58SGeorgi Djakov	  memory and accepts clock requests, aggregates the requests and turns
7100f64b58SGeorgi Djakov	  the clocks on/off or scales them on demand.
7200f64b58SGeorgi Djakov	  Say Y if you want to support the clocks exposed by the RPM on
7300f64b58SGeorgi Djakov	  platforms such as apq8016, apq8084, msm8974 etc.
7400f64b58SGeorgi Djakov
759c7e4702STaniya Dasconfig QCOM_CLK_RPMH
769c7e4702STaniya Das	tristate "RPMh Clock Driver"
77f071bcebSStephen Boyd	depends on QCOM_RPMH
789c7e4702STaniya Das	help
799c7e4702STaniya Das	 RPMh manages shared resources on some Qualcomm Technologies, Inc.
809c7e4702STaniya Das	 SoCs. It accepts requests from other hardware subsystems via RSC.
819c7e4702STaniya Das	 Say Y if you want to support the clocks exposed by RPMh on
829c7e4702STaniya Das	 platforms such as SDM845.
839c7e4702STaniya Das
8402824653SGeorgi Djakovconfig APQ_GCC_8084
8502824653SGeorgi Djakov	tristate "APQ8084 Global Clock Controller"
86639af949SRajendra Nayak	select QCOM_GDSC
8702824653SGeorgi Djakov	help
8802824653SGeorgi Djakov	  Support for the global clock controller on apq8084 devices.
8902824653SGeorgi Djakov	  Say Y if you want to use peripheral devices such as UART, SPI,
9002824653SGeorgi Djakov	  i2c, USB, SD/eMMC, SATA, PCIe, etc.
9102824653SGeorgi Djakov
922b46cd23SGeorgi Djakovconfig APQ_MMCC_8084
932b46cd23SGeorgi Djakov	tristate "APQ8084 Multimedia Clock Controller"
942b46cd23SGeorgi Djakov	select APQ_GCC_8084
95cb2eb7deSStephane Viau	select QCOM_GDSC
962b46cd23SGeorgi Djakov	help
972b46cd23SGeorgi Djakov	  Support for the multimedia clock controller on apq8084 devices.
982b46cd23SGeorgi Djakov	  Say Y if you want to support multimedia devices such as display,
992b46cd23SGeorgi Djakov	  graphics, video encode/decode, camera, etc.
1002b46cd23SGeorgi Djakov
101ecd2bacfSSivaprakash Murugesanconfig IPQ_APSS_PLL
102ecd2bacfSSivaprakash Murugesan	tristate "IPQ APSS PLL"
103ecd2bacfSSivaprakash Murugesan	help
104ecd2bacfSSivaprakash Murugesan	  Support for APSS PLL on ipq devices. The APSS PLL is the main
105ecd2bacfSSivaprakash Murugesan	  clock that feeds the CPUs on ipq based devices.
106ecd2bacfSSivaprakash Murugesan	  Say Y if you want to support CPU frequency scaling on ipq based
107ecd2bacfSSivaprakash Murugesan	  devices.
108ecd2bacfSSivaprakash Murugesan
1095e77b4efSSivaprakash Murugesanconfig IPQ_APSS_6018
1105e77b4efSSivaprakash Murugesan	tristate "IPQ APSS Clock Controller"
1115e77b4efSSivaprakash Murugesan	select IPQ_APSS_PLL
1125e77b4efSSivaprakash Murugesan	depends on QCOM_APCS_IPC || COMPILE_TEST
1135e77b4efSSivaprakash Murugesan	help
1145e77b4efSSivaprakash Murugesan	  Support for APSS clock controller on IPQ platforms. The
1155e77b4efSSivaprakash Murugesan	  APSS clock controller manages the Mux and enable block that feeds the
1165e77b4efSSivaprakash Murugesan	  CPUs.
1175e77b4efSSivaprakash Murugesan	  Say Y if you want to support CPU frequency scaling on
1185e77b4efSSivaprakash Murugesan	  ipq based devices.
1195e77b4efSSivaprakash Murugesan
1206971e863SVaradarajan Narayananconfig IPQ_GCC_4019
1216971e863SVaradarajan Narayanan	tristate "IPQ4019 Global Clock Controller"
1226971e863SVaradarajan Narayanan	help
1236971e863SVaradarajan Narayanan	  Support for the global clock controller on ipq4019 devices.
1246971e863SVaradarajan Narayanan	  Say Y if you want to use peripheral devices such as UART, SPI,
1256971e863SVaradarajan Narayanan	  i2c, USB, SD/eMMC, etc.
1266971e863SVaradarajan Narayanan
127d9db07f0SSricharan Rconfig IPQ_GCC_6018
128d9db07f0SSricharan R	tristate "IPQ6018 Global Clock Controller"
129d9db07f0SSricharan R	help
130d9db07f0SSricharan R	  Support for global clock controller on ipq6018 devices.
131d9db07f0SSricharan R	  Say Y if you want to use peripheral devices such as UART, SPI,
132d9db07f0SSricharan R	  i2c, USB, SD/eMMC, etc. Select this for the root clock
133d9db07f0SSricharan R	  of ipq6018.
134d9db07f0SSricharan R
13524d8fba4SKumar Galaconfig IPQ_GCC_806X
13624d8fba4SKumar Gala	tristate "IPQ806x Global Clock Controller"
13724d8fba4SKumar Gala	help
13824d8fba4SKumar Gala	  Support for the global clock controller on ipq806x devices.
13924d8fba4SKumar Gala	  Say Y if you want to use peripheral devices such as UART, SPI,
14024d8fba4SKumar Gala	  i2c, USB, SD/eMMC, etc.
14124d8fba4SKumar Gala
142c99e515aSRajendra Nayakconfig IPQ_LCC_806X
143c99e515aSRajendra Nayak	tristate "IPQ806x LPASS Clock Controller"
144c99e515aSRajendra Nayak	select IPQ_GCC_806X
145c99e515aSRajendra Nayak	help
146c99e515aSRajendra Nayak	  Support for the LPASS clock controller on ipq806x devices.
147c99e515aSRajendra Nayak	  Say Y if you want to use audio devices such as i2s, pcm,
148c99e515aSRajendra Nayak	  S/PDIF, etc.
149c99e515aSRajendra Nayak
150371a9507SAbhishek Sahuconfig IPQ_GCC_8074
151371a9507SAbhishek Sahu	tristate "IPQ8074 Global Clock Controller"
152371a9507SAbhishek Sahu	help
153371a9507SAbhishek Sahu	  Support for global clock controller on ipq8074 devices.
154371a9507SAbhishek Sahu	  Say Y if you want to use peripheral devices such as UART, SPI,
155371a9507SAbhishek Sahu	  i2c, USB, SD/eMMC, etc. Select this for the root clock
156371a9507SAbhishek Sahu	  of ipq8074.
157371a9507SAbhishek Sahu
1580eeff27bSStephen Boydconfig MSM_GCC_8660
1590eeff27bSStephen Boyd	tristate "MSM8660 Global Clock Controller"
1600eeff27bSStephen Boyd	help
1610eeff27bSStephen Boyd	  Support for the global clock controller on msm8660 devices.
1620eeff27bSStephen Boyd	  Say Y if you want to use peripheral devices such as UART, SPI,
1630eeff27bSStephen Boyd	  i2c, USB, SD/eMMC, etc.
1640eeff27bSStephen Boyd
1653966fab8SGeorgi Djakovconfig MSM_GCC_8916
1663966fab8SGeorgi Djakov	tristate "MSM8916 Global Clock Controller"
167073ae2b4SRajendra Nayak	select QCOM_GDSC
1683966fab8SGeorgi Djakov	help
1693966fab8SGeorgi Djakov	  Support for the global clock controller on msm8916 devices.
1703966fab8SGeorgi Djakov	  Say Y if you want to use devices such as UART, SPI i2c, USB,
1713966fab8SGeorgi Djakov	  SD/eMMC, display, graphics, camera etc.
1723966fab8SGeorgi Djakov
1731664014eSBryan O'Donoghueconfig MSM_GCC_8939
1741664014eSBryan O'Donoghue	tristate "MSM8939 Global Clock Controller"
1751664014eSBryan O'Donoghue	select QCOM_GDSC
1761664014eSBryan O'Donoghue	help
1771664014eSBryan O'Donoghue	  Support for the global clock controller on msm8939 devices.
1781664014eSBryan O'Donoghue	  Say Y if you want to use devices such as UART, SPI i2c, USB,
1791664014eSBryan O'Donoghue	  SD/eMMC, display, graphics, camera etc.
1801664014eSBryan O'Donoghue
1812ec94130SStephen Boydconfig MSM_GCC_8960
1822d85a713SKumar Gala	tristate "APQ8064/MSM8960 Global Clock Controller"
1832ec94130SStephen Boyd	help
1842d85a713SKumar Gala	  Support for the global clock controller on apq8064/msm8960 devices.
1852ec94130SStephen Boyd	  Say Y if you want to use peripheral devices such as UART, SPI,
1862ec94130SStephen Boyd	  i2c, USB, SD/eMMC, SATA, PCIe, etc.
1876d00b56fSStephen Boyd
188b82875eeSStephen Boydconfig MSM_LCC_8960
189b82875eeSStephen Boyd	tristate "APQ8064/MSM8960 LPASS Clock Controller"
190b82875eeSStephen Boyd	select MSM_GCC_8960
191b82875eeSStephen Boyd	help
192b82875eeSStephen Boyd	  Support for the LPASS clock controller on apq8064/msm8960 devices.
193b82875eeSStephen Boyd	  Say Y if you want to use audio devices such as i2s, pcm,
194b82875eeSStephen Boyd	  SLIMBus, etc.
195b82875eeSStephen Boyd
1967792a8d6SNeil Armstrongconfig MDM_GCC_9615
1977792a8d6SNeil Armstrong	tristate "MDM9615 Global Clock Controller"
1987792a8d6SNeil Armstrong	help
1997792a8d6SNeil Armstrong	  Support for the global clock controller on mdm9615 devices.
2007792a8d6SNeil Armstrong	  Say Y if you want to use peripheral devices such as UART, SPI,
2017792a8d6SNeil Armstrong	  i2c, USB, SD/eMMC, etc.
2027792a8d6SNeil Armstrong
2037792a8d6SNeil Armstrongconfig MDM_LCC_9615
2047792a8d6SNeil Armstrong	tristate "MDM9615 LPASS Clock Controller"
2057792a8d6SNeil Armstrong	select MDM_GCC_9615
2067792a8d6SNeil Armstrong	help
2077792a8d6SNeil Armstrong	  Support for the LPASS clock controller on mdm9615 devices.
2087792a8d6SNeil Armstrong	  Say Y if you want to use audio devices such as i2s, pcm,
2097792a8d6SNeil Armstrong	  SLIMBus, etc.
2107792a8d6SNeil Armstrong
2116d00b56fSStephen Boydconfig MSM_MMCC_8960
2126d00b56fSStephen Boyd	tristate "MSM8960 Multimedia Clock Controller"
2136d00b56fSStephen Boyd	select MSM_GCC_8960
2146d00b56fSStephen Boyd	help
2156d00b56fSStephen Boyd	  Support for the multimedia clock controller on msm8960 devices.
2166d00b56fSStephen Boyd	  Say Y if you want to support multimedia devices such as display,
2176d00b56fSStephen Boyd	  graphics, video encode/decode, camera, etc.
218d33faa9eSStephen Boyd
219d33faa9eSStephen Boydconfig MSM_GCC_8974
220d33faa9eSStephen Boyd	tristate "MSM8974 Global Clock Controller"
221340029efSStephen Boyd	select QCOM_GDSC
222d33faa9eSStephen Boyd	help
223d33faa9eSStephen Boyd	  Support for the global clock controller on msm8974 devices.
224d33faa9eSStephen Boyd	  Say Y if you want to use peripheral devices such as UART, SPI,
225d33faa9eSStephen Boyd	  i2c, USB, SD/eMMC, SATA, PCIe, etc.
226d8b21201SStephen Boyd
227d8b21201SStephen Boydconfig MSM_MMCC_8974
228d8b21201SStephen Boyd	tristate "MSM8974 Multimedia Clock Controller"
229d8b21201SStephen Boyd	select MSM_GCC_8974
2308108b23cSStephen Boyd	select QCOM_GDSC
231d8b21201SStephen Boyd	help
232d8b21201SStephen Boyd	  Support for the multimedia clock controller on msm8974 devices.
233d8b21201SStephen Boyd	  Say Y if you want to support multimedia devices such as display,
234d8b21201SStephen Boyd	  graphics, video encode/decode, camera, etc.
235b1e010c0SStephen Boyd
236aec89f78SBastian Köcherconfig MSM_GCC_8994
237aec89f78SBastian Köcher	tristate "MSM8994 Global Clock Controller"
238aec89f78SBastian Köcher	help
239aec89f78SBastian Köcher	  Support for the global clock controller on msm8994 devices.
240aec89f78SBastian Köcher	  Say Y if you want to use peripheral devices such as UART, SPI,
241aec89f78SBastian Köcher	  i2c, USB, UFS, SD/eMMC, PCIe, etc.
242aec89f78SBastian Köcher
243b1e010c0SStephen Boydconfig MSM_GCC_8996
244b1e010c0SStephen Boyd	tristate "MSM8996 Global Clock Controller"
2456d91f2c0SSrinivas Kandagatla	select QCOM_GDSC
246b1e010c0SStephen Boyd	help
247b1e010c0SStephen Boyd	  Support for the global clock controller on msm8996 devices.
248b1e010c0SStephen Boyd	  Say Y if you want to use peripheral devices such as UART, SPI,
249b1e010c0SStephen Boyd	  i2c, USB, UFS, SD/eMMC, PCIe, etc.
250c2526597SStephen Boyd
251c2526597SStephen Boydconfig MSM_MMCC_8996
252c2526597SStephen Boyd	tristate "MSM8996 Multimedia Clock Controller"
253c2526597SStephen Boyd	select MSM_GCC_8996
2546d91f2c0SSrinivas Kandagatla	select QCOM_GDSC
255c2526597SStephen Boyd	help
256c2526597SStephen Boyd	  Support for the multimedia clock controller on msm8996 devices.
257c2526597SStephen Boyd	  Say Y if you want to support multimedia devices such as display,
258c2526597SStephen Boyd	  graphics, video encode/decode, camera, etc.
2594cfaa55fSTirupathi Reddy
260b5f5f525SJoonwoo Parkconfig MSM_GCC_8998
261b5f5f525SJoonwoo Park	tristate "MSM8998 Global Clock Controller"
26283b4c147SMarc Gonzalez	select QCOM_GDSC
263b5f5f525SJoonwoo Park	help
264b5f5f525SJoonwoo Park	  Support for the global clock controller on msm8998 devices.
265b5f5f525SJoonwoo Park	  Say Y if you want to use peripheral devices such as UART, SPI,
266b5f5f525SJoonwoo Park	  i2c, USB, UFS, SD/eMMC, PCIe, etc.
267b5f5f525SJoonwoo Park
2683f7df5baSJeffrey Hugoconfig MSM_GPUCC_8998
2693f7df5baSJeffrey Hugo	tristate "MSM8998 Graphics Clock Controller"
2703f7df5baSJeffrey Hugo	select MSM_GCC_8998
2713f7df5baSJeffrey Hugo	select QCOM_GDSC
2723f7df5baSJeffrey Hugo	help
2733f7df5baSJeffrey Hugo	  Support for the graphics clock controller on MSM8998 devices.
2743f7df5baSJeffrey Hugo	  Say Y if you want to support graphics controller devices and
2753f7df5baSJeffrey Hugo	  functionality such as 3D graphics.
2763f7df5baSJeffrey Hugo
277d14b15b5SJeffrey Hugoconfig MSM_MMCC_8998
278d14b15b5SJeffrey Hugo	tristate "MSM8998 Multimedia Clock Controller"
279d14b15b5SJeffrey Hugo	select MSM_GCC_8998
280d14b15b5SJeffrey Hugo	select QCOM_GDSC
281d14b15b5SJeffrey Hugo	help
282d14b15b5SJeffrey Hugo	  Support for the multimedia clock controller on msm8998 devices.
283d14b15b5SJeffrey Hugo	  Say Y if you want to support multimedia devices such as display,
284d14b15b5SJeffrey Hugo	  graphics, video encode/decode, camera, etc.
285d14b15b5SJeffrey Hugo
286652f1813SShefali Jainconfig QCS_GCC_404
287652f1813SShefali Jain	tristate "QCS404 Global Clock Controller"
288652f1813SShefali Jain	help
289652f1813SShefali Jain	  Support for the global clock controller on QCS404 devices.
290652f1813SShefali Jain	  Say Y if you want to use multimedia devices or peripheral
291652f1813SShefali Jain	  devices such as UART, SPI, I2C, USB, SD/eMMC, PCIe etc.
292652f1813SShefali Jain
293dd3d0662STaniya Dasconfig SC_DISPCC_7180
294dd3d0662STaniya Das	tristate "SC7180 Display Clock Controller"
295dd3d0662STaniya Das	select SC_GCC_7180
296dd3d0662STaniya Das	help
297dd3d0662STaniya Das	  Support for the display clock controller on Qualcomm Technologies, Inc
298dd3d0662STaniya Das	  SC7180 devices.
299dd3d0662STaniya Das	  Say Y if you want to support display devices and functionality such as
300dd3d0662STaniya Das	  splash screen.
301dd3d0662STaniya Das
30217269568STaniya Dasconfig SC_GCC_7180
30317269568STaniya Das	tristate "SC7180 Global Clock Controller"
30417269568STaniya Das	select QCOM_GDSC
30517269568STaniya Das	depends on COMMON_CLK_QCOM
30617269568STaniya Das	help
30717269568STaniya Das	  Support for the global clock controller on SC7180 devices.
30817269568STaniya Das	  Say Y if you want to use peripheral devices such as UART, SPI,
30917269568STaniya Das	  I2C, USB, UFS, SDCC, etc.
31017269568STaniya Das
311745ff069STaniya Dasconfig SC_GPUCC_7180
312745ff069STaniya Das	tristate "SC7180 Graphics Clock Controller"
313745ff069STaniya Das	select SC_GCC_7180
314745ff069STaniya Das	help
315745ff069STaniya Das	  Support for the graphics clock controller on SC7180 devices.
316745ff069STaniya Das	  Say Y if you want to support graphics controller devices and
317745ff069STaniya Das	  functionality such as 3D graphics.
318745ff069STaniya Das
3198def929cSTaniya Dasconfig SC_MSS_7180
3208def929cSTaniya Das	tristate "SC7180 Modem Clock Controller"
3218def929cSTaniya Das	select SC_GCC_7180
3228def929cSTaniya Das	help
3238def929cSTaniya Das	  Support for the Modem Subsystem clock controller on Qualcomm
3248def929cSTaniya Das	  Technologies, Inc on SC7180 devices.
3258def929cSTaniya Das	  Say Y if you want to use the Modem branch clocks of the Modem
3268def929cSTaniya Das	  subsystem clock controller to reset the MSS subsystem.
3278def929cSTaniya Das
328253dc75aSTaniya Dasconfig SC_VIDEOCC_7180
329253dc75aSTaniya Das	tristate "SC7180 Video Clock Controller"
330253dc75aSTaniya Das	select SC_GCC_7180
331253dc75aSTaniya Das	help
332253dc75aSTaniya Das	  Support for the video clock controller on SC7180 devices.
333253dc75aSTaniya Das	  Say Y if you want to support video devices and functionality such as
334253dc75aSTaniya Das	  video encode and decode.
335253dc75aSTaniya Das
33678412c26SAmit Nischalconfig SDM_CAMCC_845
33778412c26SAmit Nischal	tristate "SDM845 Camera Clock Controller"
33878412c26SAmit Nischal	select SDM_GCC_845
33978412c26SAmit Nischal	help
34078412c26SAmit Nischal	  Support for the camera clock controller on SDM845 devices.
34178412c26SAmit Nischal	  Say Y if you want to support camera devices and camera functionality.
34278412c26SAmit Nischal
343f2a76a29STaniya Dasconfig SDM_GCC_660
344f2a76a29STaniya Das	tristate "SDM660 Global Clock Controller"
345f2a76a29STaniya Das	select QCOM_GDSC
346f2a76a29STaniya Das	help
347f2a76a29STaniya Das	  Support for the global clock controller on SDM660 devices.
348f2a76a29STaniya Das	  Say Y if you want to use peripheral devices such as UART, SPI,
349f2a76a29STaniya Das	  i2C, USB, UFS, SDDC, PCIe, etc.
350f2a76a29STaniya Das
351892df019SBjorn Anderssonconfig QCS_TURING_404
352892df019SBjorn Andersson	tristate "QCS404 Turing Clock Controller"
353892df019SBjorn Andersson	help
354892df019SBjorn Andersson	  Support for the Turing Clock Controller on QCS404, provides clocks
355892df019SBjorn Andersson	  and resets for the Turing subsystem.
356892df019SBjorn Andersson
3576cdef273SGovind Singhconfig QCS_Q6SSTOP_404
3586cdef273SGovind Singh	tristate "QCS404 Q6SSTOP Clock Controller"
3596cdef273SGovind Singh	select QCS_GCC_404
3606cdef273SGovind Singh	help
3616cdef273SGovind Singh	  Support for the Q6SSTOP clock controller on QCS404 devices.
3626cdef273SGovind Singh	  Say Y if you want to use the Q6SSTOP branch clocks of the WCSS clock
3636cdef273SGovind Singh	  controller to reset the Q6SSTOP subsystem.
3646cdef273SGovind Singh
36506391eddSTaniya Dasconfig SDM_GCC_845
36606391eddSTaniya Das	tristate "SDM845 Global Clock Controller"
36706391eddSTaniya Das	select QCOM_GDSC
36806391eddSTaniya Das	help
36977122d6fSStephen Boyd	  Support for the global clock controller on SDM845 devices.
37006391eddSTaniya Das	  Say Y if you want to use peripheral devices such as UART, SPI,
37177122d6fSStephen Boyd	  i2C, USB, UFS, SDDC, PCIe, etc.
37206391eddSTaniya Das
373453361cdSAmit Nischalconfig SDM_GPUCC_845
374453361cdSAmit Nischal	tristate "SDM845 Graphics Clock Controller"
375453361cdSAmit Nischal	select SDM_GCC_845
376453361cdSAmit Nischal	help
377453361cdSAmit Nischal	  Support for the graphics clock controller on SDM845 devices.
378453361cdSAmit Nischal	  Say Y if you want to support graphics controller devices and
379453361cdSAmit Nischal	  functionality such as 3D graphics.
380453361cdSAmit Nischal
381c646b347SAmit Nischalconfig SDM_VIDEOCC_845
382c646b347SAmit Nischal	tristate "SDM845 Video Clock Controller"
383c646b347SAmit Nischal	select SDM_GCC_845
384c646b347SAmit Nischal	select QCOM_GDSC
385c646b347SAmit Nischal	help
38677122d6fSStephen Boyd	  Support for the video clock controller on SDM845 devices.
387c646b347SAmit Nischal	  Say Y if you want to support video devices and functionality such as
388c646b347SAmit Nischal	  video encode and decode.
389c646b347SAmit Nischal
39081351776STaniya Dasconfig SDM_DISPCC_845
39181351776STaniya Das	tristate "SDM845 Display Clock Controller"
39281351776STaniya Das	select SDM_GCC_845
39381351776STaniya Das	help
39481351776STaniya Das	  Support for the display clock controller on Qualcomm Technologies, Inc
39581351776STaniya Das	  SDM845 devices.
39681351776STaniya Das	  Say Y if you want to support display devices and functionality such as
39781351776STaniya Das	  splash screen.
39881351776STaniya Das
3998d3e5b9cSTaniya Dasconfig SDM_LPASSCC_845
4008d3e5b9cSTaniya Das	tristate "SDM845 Low Power Audio Subsystem (LPAAS) Clock Controller"
4018d3e5b9cSTaniya Das	select SDM_GCC_845
4028d3e5b9cSTaniya Das	help
4038d3e5b9cSTaniya Das	  Support for the LPASS clock controller on SDM845 devices.
4048d3e5b9cSTaniya Das	  Say Y if you want to use the LPASS branch clocks of the LPASS clock
4058d3e5b9cSTaniya Das	  controller to reset the LPASS subsystem.
4068d3e5b9cSTaniya Das
4072a1d7eb8SDeepak Katragaddaconfig SM_GCC_8150
4082a1d7eb8SDeepak Katragadda	tristate "SM8150 Global Clock Controller"
4092a1d7eb8SDeepak Katragadda	help
4102a1d7eb8SDeepak Katragadda	  Support for the global clock controller on SM8150 devices.
4112a1d7eb8SDeepak Katragadda	  Say Y if you want to use peripheral devices such as UART,
4122a1d7eb8SDeepak Katragadda	  SPI, I2C, USB, SD/UFS, PCIe etc.
4132a1d7eb8SDeepak Katragadda
4143e577092STaniya Dasconfig SM_GCC_8250
4153e577092STaniya Das	tristate "SM8250 Global Clock Controller"
4163a4ef4caSJonathan Marek	select QCOM_GDSC
4173e577092STaniya Das	help
4183e577092STaniya Das	  Support for the global clock controller on SM8250 devices.
4193e577092STaniya Das	  Say Y if you want to use peripheral devices such as UART,
4203e577092STaniya Das	  SPI, I2C, USB, SD/UFS, PCIe etc.
4213e577092STaniya Das
4220cef71f2SJonathan Marekconfig SM_GPUCC_8150
4230cef71f2SJonathan Marek	tristate "SM8150 Graphics Clock Controller"
4240cef71f2SJonathan Marek	select SM_GCC_8150
4250cef71f2SJonathan Marek	help
4260cef71f2SJonathan Marek	  Support for the graphics clock controller on SM8150 devices.
4270cef71f2SJonathan Marek	  Say Y if you want to support graphics controller devices and
4280cef71f2SJonathan Marek	  functionality such as 3D graphics.
4290cef71f2SJonathan Marek
4304cfaa55fSTirupathi Reddyconfig SPMI_PMIC_CLKDIV
4314cfaa55fSTirupathi Reddy	tristate "SPMI PMIC clkdiv Support"
432f071bcebSStephen Boyd	depends on SPMI || COMPILE_TEST
4334cfaa55fSTirupathi Reddy	help
4344cfaa55fSTirupathi Reddy	  This driver supports the clkdiv functionality on the Qualcomm
4354cfaa55fSTirupathi Reddy	  Technologies, Inc. SPMI PMIC. It configures the frequency of
4364cfaa55fSTirupathi Reddy	  clkdiv outputs of the PMIC. These clocks are typically wired
4374cfaa55fSTirupathi Reddy	  through alternate functions on GPIO pins.
438cb546b79SStephen Boyd
439cb546b79SStephen Boydconfig QCOM_HFPLL
440cb546b79SStephen Boyd	tristate "High-Frequency PLL (HFPLL) Clock Controller"
441cb546b79SStephen Boyd	help
442cb546b79SStephen Boyd	  Support for the high-frequency PLLs present on Qualcomm devices.
443cb546b79SStephen Boyd	  Say Y if you want to support CPU frequency scaling on devices
444cb546b79SStephen Boyd	  such as MSM8974, APQ8084, etc.
4453ddc3564SStephen Boyd
4463ddc3564SStephen Boydconfig KPSS_XCC
4473ddc3564SStephen Boyd	tristate "KPSS Clock Controller"
4483ddc3564SStephen Boyd	help
4493ddc3564SStephen Boyd	  Support for the Krait ACC and GCC clock controllers. Say Y
4503ddc3564SStephen Boyd	  if you want to support CPU frequency scaling on devices such
4513ddc3564SStephen Boyd	  as MSM8960, APQ8064, etc.
452bb5c4a85SStephen Boyd
453bb5c4a85SStephen Boydconfig KRAITCC
454bb5c4a85SStephen Boyd	tristate "Krait Clock Controller"
455f071bcebSStephen Boyd	depends on ARM
456bb5c4a85SStephen Boyd	select KRAIT_CLOCKS
457bb5c4a85SStephen Boyd	help
458bb5c4a85SStephen Boyd	  Support for the Krait CPU clocks on Qualcomm devices.
459bb5c4a85SStephen Boyd	  Say Y if you want to support CPU frequency scaling.
460f071bcebSStephen Boyd
461f071bcebSStephen Boydendif
462