xref: /linux/drivers/clk/qcom/Kconfig (revision e3388328e47c45cc91fe74b334694fa455c1c935)
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
315a5223ffSManivannan Sadhasivamconfig QCOM_A7PLL
32af44e327SRohit Agarwal	tristate "A7 PLL driver for SDX55 and SDX65"
335a5223ffSManivannan Sadhasivam	help
34af44e327SRohit Agarwal	  Support for the A7 PLL on SDX55 and SDX65 devices. It provides the CPU with
355a5223ffSManivannan Sadhasivam	  frequencies above 1GHz.
36af44e327SRohit Agarwal	  Say Y if you want to support higher CPU frequencies on SDX55 and SDX65
375a5223ffSManivannan Sadhasivam	  devices.
385a5223ffSManivannan Sadhasivam
3981ac3884SGeorgi Djakovconfig QCOM_CLK_APCS_MSM8916
4081ac3884SGeorgi Djakov	tristate "MSM8916 APCS Clock Controller"
4181ac3884SGeorgi Djakov	depends on QCOM_APCS_IPC || COMPILE_TEST
4281ac3884SGeorgi Djakov	help
4381ac3884SGeorgi Djakov	  Support for the APCS Clock Controller on msm8916 devices. The
4481ac3884SGeorgi Djakov	  APCS is managing the mux and divider which feeds the CPUs.
4581ac3884SGeorgi Djakov	  Say Y if you want to support CPU frequency scaling on devices
4681ac3884SGeorgi Djakov	  such as msm8916.
4781ac3884SGeorgi Djakov
4803e342dcSLoic Poulainconfig QCOM_CLK_APCC_MSM8996
4903e342dcSLoic Poulain	tristate "MSM8996 CPU Clock Controller"
5003e342dcSLoic Poulain	select QCOM_KRYO_L2_ACCESSORS
5112dc7195SDmitry Baryshkov	select INTERCONNECT_CLK if INTERCONNECT
5203e342dcSLoic Poulain	depends on ARM64
5303e342dcSLoic Poulain	help
5403e342dcSLoic Poulain	  Support for the CPU clock controller on msm8996 devices.
5503e342dcSLoic Poulain	  Say Y if you want to support CPU clock scaling using CPUfreq
5602d8e879SColin Ian King	  drivers for dynamic power management.
5703e342dcSLoic Poulain
58f28dec1aSManivannan Sadhasivamconfig QCOM_CLK_APCS_SDX55
592081df36SRohit Agarwal	tristate "SDX55 and SDX65 APCS Clock Controller"
60f28dec1aSManivannan Sadhasivam	depends on QCOM_APCS_IPC || COMPILE_TEST
61ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
62f28dec1aSManivannan Sadhasivam	help
632081df36SRohit Agarwal	  Support for the APCS Clock Controller on SDX55, SDX65 platforms. The
64f28dec1aSManivannan Sadhasivam	  APCS is managing the mux and divider which feeds the CPUs.
65f28dec1aSManivannan Sadhasivam	  Say Y if you want to support CPU frequency scaling on devices
662081df36SRohit Agarwal	  such as SDX55, SDX65.
67f28dec1aSManivannan Sadhasivam
68872f91b5SGeorgi Djakovconfig QCOM_CLK_RPM
69872f91b5SGeorgi Djakov	tristate "RPM based Clock Controller"
70f071bcebSStephen Boyd	depends on MFD_QCOM_RPM
71872f91b5SGeorgi Djakov	select QCOM_RPMCC
72872f91b5SGeorgi Djakov	help
73872f91b5SGeorgi Djakov	  The RPM (Resource Power Manager) is a dedicated hardware engine for
74872f91b5SGeorgi Djakov	  managing the shared SoC resources in order to keep the lowest power
75872f91b5SGeorgi Djakov	  profile. It communicates with other hardware subsystems via shared
76872f91b5SGeorgi Djakov	  memory and accepts clock requests, aggregates the requests and turns
77872f91b5SGeorgi Djakov	  the clocks on/off or scales them on demand.
78872f91b5SGeorgi Djakov	  Say Y if you want to support the clocks exposed by the RPM on
79872f91b5SGeorgi Djakov	  platforms such as apq8064, msm8660, msm8960 etc.
80872f91b5SGeorgi Djakov
8100f64b58SGeorgi Djakovconfig QCOM_CLK_SMD_RPM
8200f64b58SGeorgi Djakov	tristate "RPM over SMD based Clock Controller"
83f071bcebSStephen Boyd	depends on QCOM_SMD_RPM
8400f64b58SGeorgi Djakov	select QCOM_RPMCC
8500f64b58SGeorgi Djakov	help
8600f64b58SGeorgi Djakov	  The RPM (Resource Power Manager) is a dedicated hardware engine for
8700f64b58SGeorgi Djakov	  managing the shared SoC resources in order to keep the lowest power
8800f64b58SGeorgi Djakov	  profile. It communicates with other hardware subsystems via shared
8900f64b58SGeorgi Djakov	  memory and accepts clock requests, aggregates the requests and turns
9000f64b58SGeorgi Djakov	  the clocks on/off or scales them on demand.
9100f64b58SGeorgi Djakov	  Say Y if you want to support the clocks exposed by the RPM on
9200f64b58SGeorgi Djakov	  platforms such as apq8016, apq8084, msm8974 etc.
9300f64b58SGeorgi Djakov
949c7e4702STaniya Dasconfig QCOM_CLK_RPMH
959c7e4702STaniya Das	tristate "RPMh Clock Driver"
96f071bcebSStephen Boyd	depends on QCOM_RPMH
979c7e4702STaniya Das	help
989c7e4702STaniya Das	 RPMh manages shared resources on some Qualcomm Technologies, Inc.
999c7e4702STaniya Das	 SoCs. It accepts requests from other hardware subsystems via RSC.
1009c7e4702STaniya Das	 Say Y if you want to support the clocks exposed by RPMh on
1019c7e4702STaniya Das	 platforms such as SDM845.
1029c7e4702STaniya Das
10302824653SGeorgi Djakovconfig APQ_GCC_8084
10402824653SGeorgi Djakov	tristate "APQ8084 Global Clock Controller"
105ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
106639af949SRajendra Nayak	select QCOM_GDSC
10702824653SGeorgi Djakov	help
10802824653SGeorgi Djakov	  Support for the global clock controller on apq8084 devices.
10902824653SGeorgi Djakov	  Say Y if you want to use peripheral devices such as UART, SPI,
11002824653SGeorgi Djakov	  i2c, USB, SD/eMMC, SATA, PCIe, etc.
11102824653SGeorgi Djakov
1122b46cd23SGeorgi Djakovconfig APQ_MMCC_8084
1132b46cd23SGeorgi Djakov	tristate "APQ8084 Multimedia Clock Controller"
114ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
1152b46cd23SGeorgi Djakov	select APQ_GCC_8084
116cb2eb7deSStephane Viau	select QCOM_GDSC
1172b46cd23SGeorgi Djakov	help
1182b46cd23SGeorgi Djakov	  Support for the multimedia clock controller on apq8084 devices.
1192b46cd23SGeorgi Djakov	  Say Y if you want to support multimedia devices such as display,
1202b46cd23SGeorgi Djakov	  graphics, video encode/decode, camera, etc.
1212b46cd23SGeorgi Djakov
122ecd2bacfSSivaprakash Murugesanconfig IPQ_APSS_PLL
123ecd2bacfSSivaprakash Murugesan	tristate "IPQ APSS PLL"
124ecd2bacfSSivaprakash Murugesan	help
125ecd2bacfSSivaprakash Murugesan	  Support for APSS PLL on ipq devices. The APSS PLL is the main
126ecd2bacfSSivaprakash Murugesan	  clock that feeds the CPUs on ipq based devices.
127ecd2bacfSSivaprakash Murugesan	  Say Y if you want to support CPU frequency scaling on ipq based
128ecd2bacfSSivaprakash Murugesan	  devices.
129ecd2bacfSSivaprakash Murugesan
1305e77b4efSSivaprakash Murugesanconfig IPQ_APSS_6018
1315e77b4efSSivaprakash Murugesan	tristate "IPQ APSS Clock Controller"
1325e77b4efSSivaprakash Murugesan	select IPQ_APSS_PLL
1335e77b4efSSivaprakash Murugesan	depends on QCOM_APCS_IPC || COMPILE_TEST
1346a15647dSVaradarajan Narayanan	depends on QCOM_SMEM
1355e77b4efSSivaprakash Murugesan	help
1365e77b4efSSivaprakash Murugesan	  Support for APSS clock controller on IPQ platforms. The
1375e77b4efSSivaprakash Murugesan	  APSS clock controller manages the Mux and enable block that feeds the
1385e77b4efSSivaprakash Murugesan	  CPUs.
1395e77b4efSSivaprakash Murugesan	  Say Y if you want to support CPU frequency scaling on
1405e77b4efSSivaprakash Murugesan	  ipq based devices.
1415e77b4efSSivaprakash Murugesan
1426971e863SVaradarajan Narayananconfig IPQ_GCC_4019
1436971e863SVaradarajan Narayanan	tristate "IPQ4019 Global Clock Controller"
1446971e863SVaradarajan Narayanan	help
1456971e863SVaradarajan Narayanan	  Support for the global clock controller on ipq4019 devices.
1466971e863SVaradarajan Narayanan	  Say Y if you want to use peripheral devices such as UART, SPI,
1476971e863SVaradarajan Narayanan	  i2c, USB, SD/eMMC, etc.
1486971e863SVaradarajan Narayanan
149e3fdbef1SSricharan Ramabadhranconfig IPQ_GCC_5018
150e3fdbef1SSricharan Ramabadhran	tristate "IPQ5018 Global Clock Controller"
151e3fdbef1SSricharan Ramabadhran	depends on ARM64 || COMPILE_TEST
152e3fdbef1SSricharan Ramabadhran	help
153e3fdbef1SSricharan Ramabadhran	  Support for global clock controller on ipq5018 devices.
154e3fdbef1SSricharan Ramabadhran	  Say Y if you want to use peripheral devices such as UART, SPI,
155e3fdbef1SSricharan Ramabadhran	  i2c, USB, SD/eMMC, etc.
156e3fdbef1SSricharan Ramabadhran
1573d89d529SKathiravan Tconfig IPQ_GCC_5332
1583d89d529SKathiravan T	tristate "IPQ5332 Global Clock Controller"
1593d89d529SKathiravan T	depends on ARM64 || COMPILE_TEST
1603d89d529SKathiravan T	help
1613d89d529SKathiravan T	  Support for the global clock controller on ipq5332 devices.
1623d89d529SKathiravan T	  Say Y if you want to use peripheral devices such as UART, SPI,
1633d89d529SKathiravan T	  i2c, USB, SD/eMMC, etc.
1643d89d529SKathiravan T
165d9db07f0SSricharan Rconfig IPQ_GCC_6018
166d9db07f0SSricharan R	tristate "IPQ6018 Global Clock Controller"
167d9db07f0SSricharan R	help
168d9db07f0SSricharan R	  Support for global clock controller on ipq6018 devices.
169d9db07f0SSricharan R	  Say Y if you want to use peripheral devices such as UART, SPI,
170d9db07f0SSricharan R	  i2c, USB, SD/eMMC, etc. Select this for the root clock
171d9db07f0SSricharan R	  of ipq6018.
172d9db07f0SSricharan R
17324d8fba4SKumar Galaconfig IPQ_GCC_806X
17424d8fba4SKumar Gala	tristate "IPQ806x Global Clock Controller"
175ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
17624d8fba4SKumar Gala	help
17724d8fba4SKumar Gala	  Support for the global clock controller on ipq806x devices.
17824d8fba4SKumar Gala	  Say Y if you want to use peripheral devices such as UART, SPI,
17924d8fba4SKumar Gala	  i2c, USB, SD/eMMC, etc.
18024d8fba4SKumar Gala
181c99e515aSRajendra Nayakconfig IPQ_LCC_806X
182c99e515aSRajendra Nayak	tristate "IPQ806x LPASS Clock Controller"
183ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
184c99e515aSRajendra Nayak	select IPQ_GCC_806X
185c99e515aSRajendra Nayak	help
186c99e515aSRajendra Nayak	  Support for the LPASS clock controller on ipq806x devices.
187c99e515aSRajendra Nayak	  Say Y if you want to use audio devices such as i2s, pcm,
188c99e515aSRajendra Nayak	  S/PDIF, etc.
189c99e515aSRajendra Nayak
190371a9507SAbhishek Sahuconfig IPQ_GCC_8074
191371a9507SAbhishek Sahu	tristate "IPQ8074 Global Clock Controller"
1928add990aSRobert Marko	select QCOM_GDSC
193371a9507SAbhishek Sahu	help
194371a9507SAbhishek Sahu	  Support for global clock controller on ipq8074 devices.
195371a9507SAbhishek Sahu	  Say Y if you want to use peripheral devices such as UART, SPI,
196371a9507SAbhishek Sahu	  i2c, USB, SD/eMMC, etc. Select this for the root clock
197371a9507SAbhishek Sahu	  of ipq8074.
198371a9507SAbhishek Sahu
199d75b82cfSDevi Priyaconfig IPQ_GCC_9574
200d75b82cfSDevi Priya	tristate "IPQ9574 Global Clock Controller"
201d75b82cfSDevi Priya	help
202d75b82cfSDevi Priya	  Support for global clock controller on ipq9574 devices.
203d75b82cfSDevi Priya	  Say Y if you want to use peripheral devices such as UART, SPI,
204d75b82cfSDevi Priya	  i2c, USB, SD/eMMC, etc. Select this for the root clock
205d75b82cfSDevi Priya	  of ipq9574.
206d75b82cfSDevi Priya
2070eeff27bSStephen Boydconfig MSM_GCC_8660
2080eeff27bSStephen Boyd	tristate "MSM8660 Global Clock Controller"
209ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
2100eeff27bSStephen Boyd	help
2110eeff27bSStephen Boyd	  Support for the global clock controller on msm8660 devices.
2120eeff27bSStephen Boyd	  Say Y if you want to use peripheral devices such as UART, SPI,
2130eeff27bSStephen Boyd	  i2c, USB, SD/eMMC, etc.
2140eeff27bSStephen Boyd
215bf37a057SStephan Gerholdconfig MSM_GCC_8909
216bf37a057SStephan Gerhold	tristate "MSM8909 Global Clock Controller"
217ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
218bf37a057SStephan Gerhold	select QCOM_GDSC
219bf37a057SStephan Gerhold	help
220bf37a057SStephan Gerhold	  Support for the global clock controller on msm8909 devices.
221bf37a057SStephan Gerhold	  Say Y if you want to use devices such as UART, SPI, I2C, USB,
222bf37a057SStephan Gerhold	  SD/eMMC, display, graphics, camera etc.
223bf37a057SStephan Gerhold
2243966fab8SGeorgi Djakovconfig MSM_GCC_8916
2253966fab8SGeorgi Djakov	tristate "MSM8916 Global Clock Controller"
226073ae2b4SRajendra Nayak	select QCOM_GDSC
2273966fab8SGeorgi Djakov	help
2283966fab8SGeorgi Djakov	  Support for the global clock controller on msm8916 devices.
2293966fab8SGeorgi Djakov	  Say Y if you want to use devices such as UART, SPI i2c, USB,
2303966fab8SGeorgi Djakov	  SD/eMMC, display, graphics, camera etc.
2313966fab8SGeorgi Djakov
23233cc27a4SOtto Pflügerconfig MSM_GCC_8917
23333cc27a4SOtto Pflüger	tristate "MSM8917/QM215 Global Clock Controller"
23433cc27a4SOtto Pflüger	depends on ARM64 || COMPILE_TEST
23533cc27a4SOtto Pflüger	select QCOM_GDSC
23633cc27a4SOtto Pflüger	help
23733cc27a4SOtto Pflüger	  Support for the global clock controller on msm8917 and qm215
23833cc27a4SOtto Pflüger	  devices.
23933cc27a4SOtto Pflüger	  Say Y if you want to use devices such as UART, SPI i2c, USB,
24033cc27a4SOtto Pflüger	  SD/eMMC, display, graphics, camera etc.
24133cc27a4SOtto Pflüger
2421664014eSBryan O'Donoghueconfig MSM_GCC_8939
2431664014eSBryan O'Donoghue	tristate "MSM8939 Global Clock Controller"
2441664014eSBryan O'Donoghue	select QCOM_GDSC
2451664014eSBryan O'Donoghue	help
2461664014eSBryan O'Donoghue	  Support for the global clock controller on msm8939 devices.
2471664014eSBryan O'Donoghue	  Say Y if you want to use devices such as UART, SPI i2c, USB,
2481664014eSBryan O'Donoghue	  SD/eMMC, display, graphics, camera etc.
2491664014eSBryan O'Donoghue
2502ec94130SStephen Boydconfig MSM_GCC_8960
2512d85a713SKumar Gala	tristate "APQ8064/MSM8960 Global Clock Controller"
252ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
2532ec94130SStephen Boyd	help
2542d85a713SKumar Gala	  Support for the global clock controller on apq8064/msm8960 devices.
2552ec94130SStephen Boyd	  Say Y if you want to use peripheral devices such as UART, SPI,
2562ec94130SStephen Boyd	  i2c, USB, SD/eMMC, SATA, PCIe, etc.
2576d00b56fSStephen Boyd
258b82875eeSStephen Boydconfig MSM_LCC_8960
259bac4675aSDmitry Baryshkov	tristate "APQ8064/MSM8960/MDM9650 LPASS Clock Controller"
260ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
261b82875eeSStephen Boyd	help
262bac4675aSDmitry Baryshkov	  Support for the LPASS clock controller on apq8064/msm8960/mdm9650
263bac4675aSDmitry Baryshkov	  devices.
264b82875eeSStephen Boyd	  Say Y if you want to use audio devices such as i2s, pcm,
265b82875eeSStephen Boyd	  SLIMBus, etc.
266b82875eeSStephen Boyd
26748b72532SKonrad Dybcioconfig MDM_GCC_9607
26848b72532SKonrad Dybcio	tristate "MDM9607 Global Clock Controller"
269ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
27048b72532SKonrad Dybcio	help
27148b72532SKonrad Dybcio	  Support for the global clock controller on mdm9607 devices.
27248b72532SKonrad Dybcio	  Say Y if you want to use peripheral devices such as UART, SPI,
27348b72532SKonrad Dybcio	  I2C, USB, SD/eMMC, etc.
27448b72532SKonrad Dybcio
2757792a8d6SNeil Armstrongconfig MDM_GCC_9615
2767792a8d6SNeil Armstrong	tristate "MDM9615 Global Clock Controller"
277ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
2787792a8d6SNeil Armstrong	help
2797792a8d6SNeil Armstrong	  Support for the global clock controller on mdm9615 devices.
2807792a8d6SNeil Armstrong	  Say Y if you want to use peripheral devices such as UART, SPI,
2817792a8d6SNeil Armstrong	  i2c, USB, SD/eMMC, etc.
2827792a8d6SNeil Armstrong
2836d00b56fSStephen Boydconfig MSM_MMCC_8960
2846d00b56fSStephen Boyd	tristate "MSM8960 Multimedia Clock Controller"
285ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
2866d00b56fSStephen Boyd	select MSM_GCC_8960
2876d00b56fSStephen Boyd	help
2886d00b56fSStephen Boyd	  Support for the multimedia clock controller on msm8960 devices.
2896d00b56fSStephen Boyd	  Say Y if you want to support multimedia devices such as display,
2906d00b56fSStephen Boyd	  graphics, video encode/decode, camera, etc.
291d33faa9eSStephen Boyd
2929bb6cfc3SVladimir Lypakconfig MSM_GCC_8953
2939bb6cfc3SVladimir Lypak	tristate "MSM8953 Global Clock Controller"
2949bb6cfc3SVladimir Lypak	select QCOM_GDSC
2959bb6cfc3SVladimir Lypak	help
2969bb6cfc3SVladimir Lypak	  Support for the global clock controller on msm8953 devices.
2979bb6cfc3SVladimir Lypak	  Say Y if you want to use devices such as UART, SPI i2c, USB,
2989bb6cfc3SVladimir Lypak	  SD/eMMC, display, graphics, camera etc.
2999bb6cfc3SVladimir Lypak
300d33faa9eSStephen Boydconfig MSM_GCC_8974
301d33faa9eSStephen Boyd	tristate "MSM8974 Global Clock Controller"
302ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
303340029efSStephen Boyd	select QCOM_GDSC
304d33faa9eSStephen Boyd	help
305d33faa9eSStephen Boyd	  Support for the global clock controller on msm8974 devices.
306d33faa9eSStephen Boyd	  Say Y if you want to use peripheral devices such as UART, SPI,
307d33faa9eSStephen Boyd	  i2c, USB, SD/eMMC, SATA, PCIe, etc.
308d8b21201SStephen Boyd
309d8b21201SStephen Boydconfig MSM_MMCC_8974
310d8b21201SStephen Boyd	tristate "MSM8974 Multimedia Clock Controller"
311ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
312d8b21201SStephen Boyd	select MSM_GCC_8974
3138108b23cSStephen Boyd	select QCOM_GDSC
314d8b21201SStephen Boyd	help
315d8b21201SStephen Boyd	  Support for the multimedia clock controller on msm8974 devices.
316d8b21201SStephen Boyd	  Say Y if you want to support multimedia devices such as display,
317d8b21201SStephen Boyd	  graphics, video encode/decode, camera, etc.
318b1e010c0SStephen Boyd
3198f62718bSAngeloGioacchino Del Regnoconfig MSM_GCC_8976
3208f62718bSAngeloGioacchino Del Regno	tristate "MSM8956/76 Global Clock Controller"
3218f62718bSAngeloGioacchino Del Regno	select QCOM_GDSC
3228f62718bSAngeloGioacchino Del Regno	help
3238f62718bSAngeloGioacchino Del Regno	  Support for the global clock controller on msm8956/76 devices.
3248f62718bSAngeloGioacchino Del Regno	  Say Y if you want to use peripheral devices such as UART, SPI,
3258f62718bSAngeloGioacchino Del Regno	  i2c, USB, SD/eMMC, SATA, PCIe, etc.
3268f62718bSAngeloGioacchino Del Regno
3274d5b4572SKonrad Dybcioconfig MSM_MMCC_8994
3284d5b4572SKonrad Dybcio	tristate "MSM8994 Multimedia Clock Controller"
3294d5b4572SKonrad Dybcio	select MSM_GCC_8994
3304d5b4572SKonrad Dybcio	select QCOM_GDSC
3314d5b4572SKonrad Dybcio	help
3324d5b4572SKonrad Dybcio	  Support for the multimedia clock controller on msm8994 devices.
3334d5b4572SKonrad Dybcio	  Say Y if you want to support multimedia devices such as display,
3344d5b4572SKonrad Dybcio	  graphics, video encode/decode, camera, etc.
3354d5b4572SKonrad Dybcio
336aec89f78SBastian Köcherconfig MSM_GCC_8994
337aec89f78SBastian Köcher	tristate "MSM8994 Global Clock Controller"
338aec89f78SBastian Köcher	help
339aec89f78SBastian Köcher	  Support for the global clock controller on msm8994 devices.
340aec89f78SBastian Köcher	  Say Y if you want to use peripheral devices such as UART, SPI,
341aec89f78SBastian Köcher	  i2c, USB, UFS, SD/eMMC, PCIe, etc.
342aec89f78SBastian Köcher
343b1e010c0SStephen Boydconfig MSM_GCC_8996
344b1e010c0SStephen Boyd	tristate "MSM8996 Global Clock Controller"
3456d91f2c0SSrinivas Kandagatla	select QCOM_GDSC
346b1e010c0SStephen Boyd	help
347b1e010c0SStephen Boyd	  Support for the global clock controller on msm8996 devices.
348b1e010c0SStephen Boyd	  Say Y if you want to use peripheral devices such as UART, SPI,
349b1e010c0SStephen Boyd	  i2c, USB, UFS, SD/eMMC, PCIe, etc.
350c2526597SStephen Boyd
351c2526597SStephen Boydconfig MSM_MMCC_8996
352c2526597SStephen Boyd	tristate "MSM8996 Multimedia Clock Controller"
353c2526597SStephen Boyd	select MSM_GCC_8996
3546d91f2c0SSrinivas Kandagatla	select QCOM_GDSC
355c2526597SStephen Boyd	help
356c2526597SStephen Boyd	  Support for the multimedia clock controller on msm8996 devices.
357c2526597SStephen Boyd	  Say Y if you want to support multimedia devices such as display,
358c2526597SStephen Boyd	  graphics, video encode/decode, camera, etc.
3594cfaa55fSTirupathi Reddy
360b5f5f525SJoonwoo Parkconfig MSM_GCC_8998
361b5f5f525SJoonwoo Park	tristate "MSM8998 Global Clock Controller"
36283b4c147SMarc Gonzalez	select QCOM_GDSC
363b5f5f525SJoonwoo Park	help
364b5f5f525SJoonwoo Park	  Support for the global clock controller on msm8998 devices.
365b5f5f525SJoonwoo Park	  Say Y if you want to use peripheral devices such as UART, SPI,
366b5f5f525SJoonwoo Park	  i2c, USB, UFS, SD/eMMC, PCIe, etc.
367b5f5f525SJoonwoo Park
3683f7df5baSJeffrey Hugoconfig MSM_GPUCC_8998
3693f7df5baSJeffrey Hugo	tristate "MSM8998 Graphics Clock Controller"
3703f7df5baSJeffrey Hugo	select MSM_GCC_8998
3713f7df5baSJeffrey Hugo	select QCOM_GDSC
3723f7df5baSJeffrey Hugo	help
3733f7df5baSJeffrey Hugo	  Support for the graphics clock controller on MSM8998 devices.
3743f7df5baSJeffrey Hugo	  Say Y if you want to support graphics controller devices and
3753f7df5baSJeffrey Hugo	  functionality such as 3D graphics.
3763f7df5baSJeffrey Hugo
377d14b15b5SJeffrey Hugoconfig MSM_MMCC_8998
378d14b15b5SJeffrey Hugo	tristate "MSM8998 Multimedia Clock Controller"
379d14b15b5SJeffrey Hugo	select MSM_GCC_8998
380d14b15b5SJeffrey Hugo	select QCOM_GDSC
381d14b15b5SJeffrey Hugo	help
382d14b15b5SJeffrey Hugo	  Support for the multimedia clock controller on msm8998 devices.
383d14b15b5SJeffrey Hugo	  Say Y if you want to support multimedia devices such as display,
384d14b15b5SJeffrey Hugo	  graphics, video encode/decode, camera, etc.
385d14b15b5SJeffrey Hugo
386496d1a13SShawn Guoconfig QCM_GCC_2290
387496d1a13SShawn Guo	tristate "QCM2290 Global Clock Controller"
388496d1a13SShawn Guo	select QCOM_GDSC
389496d1a13SShawn Guo	help
390496d1a13SShawn Guo	  Support for the global clock controller on QCM2290 devices.
391496d1a13SShawn Guo	  Say Y if you want to use multimedia devices or peripheral
392496d1a13SShawn Guo	  devices such as UART, SPI, I2C, USB, SD/eMMC etc.
393496d1a13SShawn Guo
394cc517ea3SLoic Poulainconfig QCM_DISPCC_2290
395cc517ea3SLoic Poulain	tristate "QCM2290 Display Clock Controller"
396cc517ea3SLoic Poulain	select QCM_GCC_2290
397cc517ea3SLoic Poulain	help
398cc517ea3SLoic Poulain	  Support for the display clock controller on Qualcomm Technologies, Inc
399cc517ea3SLoic Poulain	  QCM2290 devices.
400cc517ea3SLoic Poulain	  Say Y if you want to support display devices and functionality such as
401cc517ea3SLoic Poulain	  splash screen.
402cc517ea3SLoic Poulain
403652f1813SShefali Jainconfig QCS_GCC_404
404652f1813SShefali Jain	tristate "QCS404 Global Clock Controller"
405652f1813SShefali Jain	help
406652f1813SShefali Jain	  Support for the global clock controller on QCS404 devices.
407652f1813SShefali Jain	  Say Y if you want to use multimedia devices or peripheral
408652f1813SShefali Jain	  devices such as UART, SPI, I2C, USB, SD/eMMC, PCIe etc.
409652f1813SShefali Jain
41015d09e83STaniya Dasconfig SC_CAMCC_7180
41115d09e83STaniya Das	tristate "SC7180 Camera Clock Controller"
412ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
41315d09e83STaniya Das	select SC_GCC_7180
41415d09e83STaniya Das	help
41515d09e83STaniya Das	  Support for the camera clock controller on Qualcomm Technologies, Inc
41615d09e83STaniya Das	  SC7180 devices.
41715d09e83STaniya Das	  Say Y if you want to support camera devices and functionality such as
41815d09e83STaniya Das	  capturing pictures.
41915d09e83STaniya Das
4201daec8cfSTaniya Dasconfig SC_CAMCC_7280
4211daec8cfSTaniya Das	tristate "SC7280 Camera Clock Controller"
422ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
4231daec8cfSTaniya Das	select SC_GCC_7280
4241daec8cfSTaniya Das	help
4251daec8cfSTaniya Das	  Support for the camera clock controller on Qualcomm Technologies, Inc
4261daec8cfSTaniya Das	  SC7280 devices.
4271daec8cfSTaniya Das	  Say Y if you want to support camera devices and functionality such as
4281daec8cfSTaniya Das	  capturing pictures.
4291daec8cfSTaniya Das
430ff93872aSBryan O'Donoghueconfig SC_CAMCC_8280XP
431ff93872aSBryan O'Donoghue	tristate "SC8280XP Camera Clock Controller"
432ff93872aSBryan O'Donoghue	select SC_GCC_8280XP
433ff93872aSBryan O'Donoghue	help
434ff93872aSBryan O'Donoghue	  Support for the camera clock controller on Qualcomm Technologies, Inc
435ff93872aSBryan O'Donoghue	  SC8280XP devices.
436ff93872aSBryan O'Donoghue	  Say Y if you want to support camera devices and functionality such as
437ff93872aSBryan O'Donoghue	  capturing pictures.
438ff93872aSBryan O'Donoghue
439dd3d0662STaniya Dasconfig SC_DISPCC_7180
440dd3d0662STaniya Das	tristate "SC7180 Display Clock Controller"
441ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
442dd3d0662STaniya Das	select SC_GCC_7180
443dd3d0662STaniya Das	help
444dd3d0662STaniya Das	  Support for the display clock controller on Qualcomm Technologies, Inc
445dd3d0662STaniya Das	  SC7180 devices.
446dd3d0662STaniya Das	  Say Y if you want to support display devices and functionality such as
447dd3d0662STaniya Das	  splash screen.
448dd3d0662STaniya Das
4491a00c962STaniya Dasconfig SC_DISPCC_7280
4501a00c962STaniya Das	tristate "SC7280 Display Clock Controller"
451ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
4521a00c962STaniya Das	select SC_GCC_7280
4531a00c962STaniya Das	help
4541a00c962STaniya Das	  Support for the display clock controller on Qualcomm Technologies, Inc.
4551a00c962STaniya Das	  SC7280 devices.
4561a00c962STaniya Das	  Say Y if you want to support display devices and functionality such as
4571a00c962STaniya Das	  splash screen.
4581a00c962STaniya Das
4594a66e76fSBjorn Anderssonconfig SC_DISPCC_8280XP
4604a66e76fSBjorn Andersson	tristate "SC8280XP Display Clock Controller"
461ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
4624a66e76fSBjorn Andersson	select SC_GCC_8280XP
4634a66e76fSBjorn Andersson	help
4644a66e76fSBjorn Andersson	  Support for the two display clock controllers on Qualcomm
4654a66e76fSBjorn Andersson	  Technologies, Inc. SC8280XP devices.
4664a66e76fSBjorn Andersson	  Say Y if you want to support display devices and functionality such as
4674a66e76fSBjorn Andersson	  splash screen.
4684a66e76fSBjorn Andersson
46908c51cebSShazad Hussainconfig SA_GCC_8775P
47008c51cebSShazad Hussain	tristate "SA8775 Global Clock Controller"
47108c51cebSShazad Hussain	select QCOM_GDSC
47208c51cebSShazad Hussain	depends on COMMON_CLK_QCOM
47308c51cebSShazad Hussain	help
47408c51cebSShazad Hussain	  Support for the global clock controller on SA8775 devices.
47508c51cebSShazad Hussain	  Say Y if you want to use peripheral devices such as UART, SPI,
47608c51cebSShazad Hussain	  I2C, USB, UFS, SDCC, etc.
47708c51cebSShazad Hussain
4780afa16afSShazad Hussainconfig SA_GPUCC_8775P
4790afa16afSShazad Hussain	tristate "SA8775P Graphics clock controller"
4800afa16afSShazad Hussain	select QCOM_GDSC
4810afa16afSShazad Hussain	select SA_GCC_8775P
4820afa16afSShazad Hussain	help
4830afa16afSShazad Hussain	  Support for the graphics clock controller on SA8775P devices.
4840afa16afSShazad Hussain	  Say Y if you want to support graphics controller devices and
4850afa16afSShazad Hussain	  functionality such as 3D graphics.
4860afa16afSShazad Hussain
48717269568STaniya Dasconfig SC_GCC_7180
48817269568STaniya Das	tristate "SC7180 Global Clock Controller"
48917269568STaniya Das	select QCOM_GDSC
49017269568STaniya Das	depends on COMMON_CLK_QCOM
491ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
49217269568STaniya Das	help
49317269568STaniya Das	  Support for the global clock controller on SC7180 devices.
49417269568STaniya Das	  Say Y if you want to use peripheral devices such as UART, SPI,
49517269568STaniya Das	  I2C, USB, UFS, SDCC, etc.
49617269568STaniya Das
497a3cc0921STaniya Dasconfig SC_GCC_7280
498a3cc0921STaniya Das	tristate "SC7280 Global Clock Controller"
499a3cc0921STaniya Das	select QCOM_GDSC
500a3cc0921STaniya Das	depends on COMMON_CLK_QCOM
501ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
502a3cc0921STaniya Das	help
503a3cc0921STaniya Das	  Support for the global clock controller on SC7280 devices.
504a3cc0921STaniya Das	  Say Y if you want to use peripheral devices such as UART, SPI,
505a3cc0921STaniya Das	  I2C, USB, UFS, SDCC, PCIe etc.
506a3cc0921STaniya Das
5074433594bSBjorn Anderssonconfig SC_GCC_8180X
5084433594bSBjorn Andersson	tristate "SC8180X Global Clock Controller"
5094433594bSBjorn Andersson	select QCOM_GDSC
5104433594bSBjorn Andersson	depends on COMMON_CLK_QCOM
511ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
5124433594bSBjorn Andersson	help
5134433594bSBjorn Andersson	  Support for the global clock controller on SC8180X devices.
5144433594bSBjorn Andersson	  Say Y if you want to use peripheral devices such as UART, SPI,
5154433594bSBjorn Andersson	  I2C, USB, UFS, SDCC, etc.
5164433594bSBjorn Andersson
517d65d005fSBjorn Anderssonconfig SC_GCC_8280XP
518d65d005fSBjorn Andersson	tristate "SC8280XP Global Clock Controller"
519d65d005fSBjorn Andersson	select QCOM_GDSC
520d65d005fSBjorn Andersson	depends on COMMON_CLK_QCOM
521ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
522d65d005fSBjorn Andersson	help
523d65d005fSBjorn Andersson	  Support for the global clock controller on SC8280XP devices.
524d65d005fSBjorn Andersson	  Say Y if you want to use peripheral devices such as UART, SPI,
525d65d005fSBjorn Andersson	  I2C, USB, UFS, SDCC, etc.
526d65d005fSBjorn Andersson
527745ff069STaniya Dasconfig SC_GPUCC_7180
528745ff069STaniya Das	tristate "SC7180 Graphics Clock Controller"
529ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
530745ff069STaniya Das	select SC_GCC_7180
531745ff069STaniya Das	help
532745ff069STaniya Das	  Support for the graphics clock controller on SC7180 devices.
533745ff069STaniya Das	  Say Y if you want to support graphics controller devices and
534745ff069STaniya Das	  functionality such as 3D graphics.
535745ff069STaniya Das
5363e0f01d6STaniya Dasconfig SC_GPUCC_7280
5373e0f01d6STaniya Das	tristate "SC7280 Graphics Clock Controller"
538ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
5393e0f01d6STaniya Das	select SC_GCC_7280
5403e0f01d6STaniya Das	help
5413e0f01d6STaniya Das	  Support for the graphics clock controller on SC7280 devices.
5423e0f01d6STaniya Das	  Say Y if you want to support graphics controller devices and
5433e0f01d6STaniya Das	  functionality such as 3D graphics.
5443e0f01d6STaniya Das
545e55d937dSBjorn Anderssonconfig SC_GPUCC_8280XP
546e55d937dSBjorn Andersson	tristate "SC8280XP Graphics Clock Controller"
547ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
548e55d937dSBjorn Andersson	select SC_GCC_8280XP
549e55d937dSBjorn Andersson	help
550e55d937dSBjorn Andersson	  Support for the graphics clock controller on SC8280XP devices.
551e55d937dSBjorn Andersson	  Say Y if you want to support graphics controller devices and
552e55d937dSBjorn Andersson	  functionality such as 3D graphics.
553e55d937dSBjorn Andersson
5544ab43d17STaniya Dasconfig SC_LPASSCC_7280
5554ab43d17STaniya Das	tristate "SC7280 Low Power Audio Subsystem (LPASS) Clock Controller"
556ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
5574ab43d17STaniya Das	select SC_GCC_7280
5584ab43d17STaniya Das	help
5594ab43d17STaniya Das	  Support for the LPASS clock controller on SC7280 devices.
5604ab43d17STaniya Das	  Say Y if you want to use the LPASS branch clocks of the LPASS clock
5614ab43d17STaniya Das	  controller to reset the LPASS subsystem.
5624ab43d17STaniya Das
563a5c9c3baSSrinivas Kandagatlaconfig SC_LPASSCC_8280XP
564a5c9c3baSSrinivas Kandagatla	tristate "SC8280 Low Power Audio Subsystem (LPASS) Clock Controller"
565a5c9c3baSSrinivas Kandagatla	depends on ARM64 || COMPILE_TEST
566a5c9c3baSSrinivas Kandagatla	select SC_GCC_8280XP
567a5c9c3baSSrinivas Kandagatla	help
568a5c9c3baSSrinivas Kandagatla	  Support for the LPASS clock controller on SC8280XP devices.
569a5c9c3baSSrinivas Kandagatla	  Say Y if you want to use the LPASS branch clocks of the LPASS clock
570a5c9c3baSSrinivas Kandagatla	  controller to reset the LPASS subsystem.
571a5c9c3baSSrinivas Kandagatla
57272c4996aSTaniya Dasconfig SC_LPASS_CORECC_7180
57372c4996aSTaniya Das	tristate "SC7180 LPASS Core Clock Controller"
574ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
57572c4996aSTaniya Das	select SC_GCC_7180
57672c4996aSTaniya Das	help
57772c4996aSTaniya Das	  Support for the LPASS(Low Power Audio Subsystem) core clock controller
57872c4996aSTaniya Das	  on SC7180 devices.
57972c4996aSTaniya Das	  Say Y if you want to use LPASS clocks and power domains of the LPASS
58072c4996aSTaniya Das	  core clock controller.
58172c4996aSTaniya Das
582a9dd2663STaniya Dasconfig SC_LPASS_CORECC_7280
583a9dd2663STaniya Das	tristate "SC7280 LPASS Core & Audio Clock Controller"
584ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
585a9dd2663STaniya Das	select SC_GCC_7280
586a9dd2663STaniya Das	select QCOM_GDSC
587a9dd2663STaniya Das	help
588a9dd2663STaniya Das	  Support for the LPASS(Low Power Audio Subsystem) core and audio clock
589a9dd2663STaniya Das	  controller on SC7280 devices.
590a9dd2663STaniya Das	  Say Y if you want to use LPASS clocks and power domains of the LPASS
591a9dd2663STaniya Das	  core clock controller.
592a9dd2663STaniya Das
5938def929cSTaniya Dasconfig SC_MSS_7180
5948def929cSTaniya Das	tristate "SC7180 Modem Clock Controller"
595ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
5968def929cSTaniya Das	select SC_GCC_7180
5978def929cSTaniya Das	help
5988def929cSTaniya Das	  Support for the Modem Subsystem clock controller on Qualcomm
5998def929cSTaniya Das	  Technologies, Inc on SC7180 devices.
6008def929cSTaniya Das	  Say Y if you want to use the Modem branch clocks of the Modem
6018def929cSTaniya Das	  subsystem clock controller to reset the MSS subsystem.
6028def929cSTaniya Das
603253dc75aSTaniya Dasconfig SC_VIDEOCC_7180
604253dc75aSTaniya Das	tristate "SC7180 Video Clock Controller"
605ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
606253dc75aSTaniya Das	select SC_GCC_7180
607253dc75aSTaniya Das	help
608253dc75aSTaniya Das	  Support for the video clock controller on SC7180 devices.
609253dc75aSTaniya Das	  Say Y if you want to support video devices and functionality such as
610253dc75aSTaniya Das	  video encode and decode.
611253dc75aSTaniya Das
612fae7617bSTaniya Dasconfig SC_VIDEOCC_7280
613fae7617bSTaniya Das	tristate "SC7280 Video Clock Controller"
614ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
615fae7617bSTaniya Das	select SC_GCC_7280
616fae7617bSTaniya Das	help
617fae7617bSTaniya Das	  Support for the video clock controller on SC7280 devices.
618fae7617bSTaniya Das	  Say Y if you want to support video devices and functionality such as
619fae7617bSTaniya Das	  video encode and decode.
620fae7617bSTaniya Das
62178412c26SAmit Nischalconfig SDM_CAMCC_845
62278412c26SAmit Nischal	tristate "SDM845 Camera Clock Controller"
623ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
62478412c26SAmit Nischal	select SDM_GCC_845
62578412c26SAmit Nischal	help
62678412c26SAmit Nischal	  Support for the camera clock controller on SDM845 devices.
62778412c26SAmit Nischal	  Say Y if you want to support camera devices and camera functionality.
62878412c26SAmit Nischal
629f2a76a29STaniya Dasconfig SDM_GCC_660
630f2a76a29STaniya Das	tristate "SDM660 Global Clock Controller"
631ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
632f2a76a29STaniya Das	select QCOM_GDSC
633f2a76a29STaniya Das	help
634f2a76a29STaniya Das	  Support for the global clock controller on SDM660 devices.
635f2a76a29STaniya Das	  Say Y if you want to use peripheral devices such as UART, SPI,
636f2a76a29STaniya Das	  i2C, USB, UFS, SDDC, PCIe, etc.
637f2a76a29STaniya Das
6385db3ae8bSMartin Botkaconfig SDM_MMCC_660
6395db3ae8bSMartin Botka	tristate "SDM660 Multimedia Clock Controller"
640ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
6415db3ae8bSMartin Botka	select SDM_GCC_660
6425db3ae8bSMartin Botka	select QCOM_GDSC
6435db3ae8bSMartin Botka	help
6445db3ae8bSMartin Botka	  Support for the multimedia clock controller on SDM660 devices.
6455db3ae8bSMartin Botka	  Say Y if you want to support multimedia devices such as display,
6465db3ae8bSMartin Botka	  graphics, video encode/decode, camera, etc.
6475db3ae8bSMartin Botka
64879b5d1fcSAngeloGioacchino Del Regnoconfig SDM_GPUCC_660
64979b5d1fcSAngeloGioacchino Del Regno	tristate "SDM660 Graphics Clock Controller"
650ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
65179b5d1fcSAngeloGioacchino Del Regno	select SDM_GCC_660
65279b5d1fcSAngeloGioacchino Del Regno	select QCOM_GDSC
65379b5d1fcSAngeloGioacchino Del Regno	help
65479b5d1fcSAngeloGioacchino Del Regno	  Support for the graphics clock controller on SDM630/636/660 devices.
65579b5d1fcSAngeloGioacchino Del Regno	  Say Y if you want to support graphics controller devices and
65679b5d1fcSAngeloGioacchino Del Regno	  functionality such as 3D graphics
65779b5d1fcSAngeloGioacchino Del Regno
658892df019SBjorn Anderssonconfig QCS_TURING_404
659892df019SBjorn Andersson	tristate "QCS404 Turing Clock Controller"
660892df019SBjorn Andersson	help
661892df019SBjorn Andersson	  Support for the Turing Clock Controller on QCS404, provides clocks
662892df019SBjorn Andersson	  and resets for the Turing subsystem.
663892df019SBjorn Andersson
6646cdef273SGovind Singhconfig QCS_Q6SSTOP_404
6656cdef273SGovind Singh	tristate "QCS404 Q6SSTOP Clock Controller"
6666cdef273SGovind Singh	select QCS_GCC_404
6676cdef273SGovind Singh	help
6686cdef273SGovind Singh	  Support for the Q6SSTOP clock controller on QCS404 devices.
6696cdef273SGovind Singh	  Say Y if you want to use the Q6SSTOP branch clocks of the WCSS clock
6706cdef273SGovind Singh	  controller to reset the Q6SSTOP subsystem.
6716cdef273SGovind Singh
6721c9efb0bSTaniya Dasconfig QDU_GCC_1000
6731c9efb0bSTaniya Das	tristate "QDU1000/QRU1000 Global Clock Controller"
6741c9efb0bSTaniya Das	select QCOM_GDSC
6751c9efb0bSTaniya Das	help
6761c9efb0bSTaniya Das	  Support for the global clock controller on QDU1000 and
6771c9efb0bSTaniya Das	  QRU1000 devices. Say Y if you want to use peripheral
6781c9efb0bSTaniya Das	  devices such as UART, SPI, I2C, USB, SD, PCIe, etc.
6791c9efb0bSTaniya Das
68006391eddSTaniya Dasconfig SDM_GCC_845
681ae66b1feSRichard Acayan	tristate "SDM845/SDM670 Global Clock Controller"
682ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
68306391eddSTaniya Das	select QCOM_GDSC
68406391eddSTaniya Das	help
685ae66b1feSRichard Acayan	  Support for the global clock controller on SDM845 and SDM670 devices.
68606391eddSTaniya Das	  Say Y if you want to use peripheral devices such as UART, SPI,
68777122d6fSStephen Boyd	  i2C, USB, UFS, SDDC, PCIe, etc.
68806391eddSTaniya Das
689453361cdSAmit Nischalconfig SDM_GPUCC_845
690453361cdSAmit Nischal	tristate "SDM845 Graphics Clock Controller"
691ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
692453361cdSAmit Nischal	select SDM_GCC_845
693453361cdSAmit Nischal	help
694453361cdSAmit Nischal	  Support for the graphics clock controller on SDM845 devices.
695453361cdSAmit Nischal	  Say Y if you want to support graphics controller devices and
696453361cdSAmit Nischal	  functionality such as 3D graphics.
697453361cdSAmit Nischal
698c646b347SAmit Nischalconfig SDM_VIDEOCC_845
699c646b347SAmit Nischal	tristate "SDM845 Video Clock Controller"
700ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
701c646b347SAmit Nischal	select SDM_GCC_845
702c646b347SAmit Nischal	select QCOM_GDSC
703c646b347SAmit Nischal	help
70477122d6fSStephen Boyd	  Support for the video clock controller on SDM845 devices.
705c646b347SAmit Nischal	  Say Y if you want to support video devices and functionality such as
706c646b347SAmit Nischal	  video encode and decode.
707c646b347SAmit Nischal
70881351776STaniya Dasconfig SDM_DISPCC_845
70981351776STaniya Das	tristate "SDM845 Display Clock Controller"
710ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
71181351776STaniya Das	select SDM_GCC_845
71281351776STaniya Das	help
71381351776STaniya Das	  Support for the display clock controller on Qualcomm Technologies, Inc
71481351776STaniya Das	  SDM845 devices.
71581351776STaniya Das	  Say Y if you want to support display devices and functionality such as
71681351776STaniya Das	  splash screen.
71781351776STaniya Das
7188d3e5b9cSTaniya Dasconfig SDM_LPASSCC_845
7198d3e5b9cSTaniya Das	tristate "SDM845 Low Power Audio Subsystem (LPAAS) Clock Controller"
720ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
7218d3e5b9cSTaniya Das	select SDM_GCC_845
7228d3e5b9cSTaniya Das	help
7238d3e5b9cSTaniya Das	  Support for the LPASS clock controller on SDM845 devices.
7248d3e5b9cSTaniya Das	  Say Y if you want to use the LPASS branch clocks of the LPASS clock
7258d3e5b9cSTaniya Das	  controller to reset the LPASS subsystem.
7268d3e5b9cSTaniya Das
7273fade566SNaveen Yadavconfig SDX_GCC_55
7283fade566SNaveen Yadav	tristate "SDX55 Global Clock Controller"
729ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
730063930edSManivannan Sadhasivam	select QCOM_GDSC
7313fade566SNaveen Yadav	help
7323fade566SNaveen Yadav	  Support for the global clock controller on SDX55 devices.
7333fade566SNaveen Yadav	  Say Y if you want to use peripheral devices such as UART,
7343fade566SNaveen Yadav	  SPI, I2C, USB, SD/UFS, PCIe etc.
7353fade566SNaveen Yadav
736d79afa20SVamsi Krishna Lankaconfig SDX_GCC_65
737d79afa20SVamsi Krishna Lanka	tristate "SDX65 Global Clock Controller"
738ab7f0037SKrzysztof Kozlowski	depends on ARM || COMPILE_TEST
739d79afa20SVamsi Krishna Lanka	select QCOM_GDSC
740d79afa20SVamsi Krishna Lanka	help
741d79afa20SVamsi Krishna Lanka	  Support for the global clock controller on SDX65 devices.
742d79afa20SVamsi Krishna Lanka	  Say Y if you want to use peripheral devices such as UART,
743d79afa20SVamsi Krishna Lanka	  SPI, I2C, USB, SD/UFS, PCIe etc.
744d79afa20SVamsi Krishna Lanka
745108cdc09SImran Shaikconfig SDX_GCC_75
746108cdc09SImran Shaik	tristate "SDX75 Global Clock Controller"
747108cdc09SImran Shaik	select QCOM_GDSC
748108cdc09SImran Shaik	help
749108cdc09SImran Shaik	  Support for the global clock controller on SDX75 devices.
750108cdc09SImran Shaik	  Say Y if you want to use peripheral devices such as UART,
751108cdc09SImran Shaik	  SPI, I2C, USB, SD/eMMC, PCIe etc.
752108cdc09SImran Shaik
75380f5451dSKonrad Dybcioconfig SM_CAMCC_6350
75480f5451dSKonrad Dybcio	tristate "SM6350 Camera Clock Controller"
755ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
75680f5451dSKonrad Dybcio	select SM_GCC_6350
75780f5451dSKonrad Dybcio	help
75880f5451dSKonrad Dybcio	  Support for the camera clock controller on SM6350 devices.
75980f5451dSKonrad Dybcio	  Say Y if you want to support camera devices and camera functionality.
76080f5451dSKonrad Dybcio
761620f5125SMarijn Suijtenconfig SM_CAMCC_8250
762620f5125SMarijn Suijten	tristate "SM8250 Camera Clock Controller"
763ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
764620f5125SMarijn Suijten	select SM_GCC_8250
765620f5125SMarijn Suijten	help
766620f5125SMarijn Suijten	  Support for the camera clock controller on SM8250 devices.
767620f5125SMarijn Suijten	  Say Y if you want to support camera devices and camera functionality.
768620f5125SMarijn Suijten
7696082037fSVladimir Zapolskiyconfig SM_CAMCC_8450
7706082037fSVladimir Zapolskiy	tristate "SM8450 Camera Clock Controller"
771ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
7726082037fSVladimir Zapolskiy	select SM_GCC_8450
7736082037fSVladimir Zapolskiy	help
7746082037fSVladimir Zapolskiy	  Support for the camera clock controller on SM8450 devices.
7756082037fSVladimir Zapolskiy	  Say Y if you want to support camera devices and camera functionality.
7766082037fSVladimir Zapolskiy
777ccc4e6a0SJagadeesh Konaconfig SM_CAMCC_8550
778ccc4e6a0SJagadeesh Kona	tristate "SM8550 Camera Clock Controller"
779ccc4e6a0SJagadeesh Kona	select SM_GCC_8550
780ccc4e6a0SJagadeesh Kona	help
781ccc4e6a0SJagadeesh Kona	  Support for the camera clock controller on SM8550 devices.
782ccc4e6a0SJagadeesh Kona	  Say Y if you want to support camera devices and camera functionality.
783ccc4e6a0SJagadeesh Kona
7849b518788SAdam Skladowskiconfig SM_DISPCC_6115
7859b518788SAdam Skladowski	tristate "SM6115 Display Clock Controller"
786ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
7879b518788SAdam Skladowski	depends on SM_GCC_6115
7889b518788SAdam Skladowski	help
7899b518788SAdam Skladowski	  Support for the display clock controller on Qualcomm Technologies, Inc
7909b518788SAdam Skladowski	  SM6115/SM4250 devices.
7919b518788SAdam Skladowski	  Say Y if you want to support display devices and functionality such as
7929b518788SAdam Skladowski	  splash screen
7939b518788SAdam Skladowski
7946e87c8f0SMartin Botkaconfig SM_DISPCC_6125
7956e87c8f0SMartin Botka	tristate "SM6125 Display Clock Controller"
796ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
7976e87c8f0SMartin Botka	depends on SM_GCC_6125
7986e87c8f0SMartin Botka	help
7996e87c8f0SMartin Botka	  Support for the display clock controller on Qualcomm Technologies, Inc
8006e87c8f0SMartin Botka	  SM6125 devices.
8016e87c8f0SMartin Botka	  Say Y if you want to support display devices and functionality such as
8026e87c8f0SMartin Botka	  splash screen
8036e87c8f0SMartin Botka
80480a18f4aSJonathan Marekconfig SM_DISPCC_8250
805205737feSJonathan Marek	tristate "SM8150/SM8250/SM8350 Display Clock Controller"
806ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
807205737feSJonathan Marek	depends on SM_GCC_8150 || SM_GCC_8250 || SM_GCC_8350
80880a18f4aSJonathan Marek	help
80980a18f4aSJonathan Marek	  Support for the display clock controller on Qualcomm Technologies, Inc
810205737feSJonathan Marek	  SM8150/SM8250/SM8350 devices.
81180a18f4aSJonathan Marek	  Say Y if you want to support display devices and functionality such as
81280a18f4aSJonathan Marek	  splash screen.
81380a18f4aSJonathan Marek
81483751977SKonrad Dybcioconfig SM_DISPCC_6350
81583751977SKonrad Dybcio	tristate "SM6350 Display Clock Controller"
816ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
81783751977SKonrad Dybcio	depends on SM_GCC_6350
81883751977SKonrad Dybcio	help
81983751977SKonrad Dybcio	  Support for the display clock controller on Qualcomm Technologies, Inc
82083751977SKonrad Dybcio	  SM6350 devices.
82183751977SKonrad Dybcio	  Say Y if you want to support display devices and functionality such as
82283751977SKonrad Dybcio	  splash screen.
82383751977SKonrad Dybcio
824aec5f36cSKonrad Dybcioconfig SM_DISPCC_6375
825aec5f36cSKonrad Dybcio	tristate "SM6375 Display Clock Controller"
826ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
827aec5f36cSKonrad Dybcio	depends on SM_GCC_6375
828aec5f36cSKonrad Dybcio	help
829aec5f36cSKonrad Dybcio	  Support for the display clock controller on Qualcomm Technologies, Inc
830aec5f36cSKonrad Dybcio	  SM6375 devices.
831aec5f36cSKonrad Dybcio	  Say Y if you want to support display devices and functionality such as
832aec5f36cSKonrad Dybcio	  splash screen.
833aec5f36cSKonrad Dybcio
83416fb89f9SDmitry Baryshkovconfig SM_DISPCC_8450
83516fb89f9SDmitry Baryshkov	tristate "SM8450 Display Clock Controller"
836ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
83716fb89f9SDmitry Baryshkov	depends on SM_GCC_8450
83816fb89f9SDmitry Baryshkov	help
83916fb89f9SDmitry Baryshkov	  Support for the display clock controller on Qualcomm Technologies, Inc
84016fb89f9SDmitry Baryshkov	  SM8450 devices.
84116fb89f9SDmitry Baryshkov	  Say Y if you want to support display devices and functionality such as
84216fb89f9SDmitry Baryshkov	  splash screen.
84316fb89f9SDmitry Baryshkov
84490114ca1SNeil Armstrongconfig SM_DISPCC_8550
84590114ca1SNeil Armstrong	tristate "SM8550 Display Clock Controller"
846ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
84790114ca1SNeil Armstrong	depends on SM_GCC_8550
84890114ca1SNeil Armstrong	help
84990114ca1SNeil Armstrong	  Support for the display clock controller on Qualcomm Technologies, Inc
85090114ca1SNeil Armstrong	  SM8550 devices.
85190114ca1SNeil Armstrong	  Say Y if you want to support display devices and functionality such as
85290114ca1SNeil Armstrong	  splash screen.
85390114ca1SNeil Armstrong
854c32c4ef9SAjit Pandeyconfig SM_GCC_4450
855c32c4ef9SAjit Pandey	tristate "SM4450 Global Clock Controller"
856c32c4ef9SAjit Pandey	depends on ARM64 || COMPILE_TEST
857c32c4ef9SAjit Pandey	select QCOM_GDSC
858c32c4ef9SAjit Pandey	help
859c32c4ef9SAjit Pandey	  Support for the global clock controller on SM4450 devices.
860c32c4ef9SAjit Pandey	  Say Y if you want to use peripheral devices such as UART, SPI,
861c32c4ef9SAjit Pandey	  I2C, USB, SD/UFS, PCIe, etc.
862c32c4ef9SAjit Pandey
863cbe63bfdSIskren Chernevconfig SM_GCC_6115
864cbe63bfdSIskren Chernev	tristate "SM6115 and SM4250 Global Clock Controller"
865ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
86650ee65dcSDang Huynh	select QCOM_GDSC
867cbe63bfdSIskren Chernev	help
868cbe63bfdSIskren Chernev	  Support for the global clock controller on SM6115 and SM4250 devices.
869cbe63bfdSIskren Chernev	  Say Y if you want to use peripheral devices such as UART, SPI,
870cbe63bfdSIskren Chernev	  i2C, USB, UFS, SDDC, PCIe, etc.
871cbe63bfdSIskren Chernev
8724b8d6ae5SKonrad Dybcioconfig SM_GCC_6125
8734b8d6ae5SKonrad Dybcio	tristate "SM6125 Global Clock Controller"
874ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
8754b8d6ae5SKonrad Dybcio	help
8764b8d6ae5SKonrad Dybcio	  Support for the global clock controller on SM6125 devices.
8774b8d6ae5SKonrad Dybcio	  Say Y if you want to use peripheral devices such as UART,
8784b8d6ae5SKonrad Dybcio	  SPI, I2C, USB, SD/UFS, PCIe etc.
8794b8d6ae5SKonrad Dybcio
880131abae9SKonrad Dybcioconfig SM_GCC_6350
881131abae9SKonrad Dybcio	tristate "SM6350 Global Clock Controller"
882ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
88392c02ff1SLuca Weiss	select QCOM_GDSC
884131abae9SKonrad Dybcio	help
885131abae9SKonrad Dybcio	  Support for the global clock controller on SM6350 devices.
886131abae9SKonrad Dybcio	  Say Y if you want to use peripheral devices such as UART,
887131abae9SKonrad Dybcio	  SPI, I2C, USB, SD/UFS, PCIe etc.
888131abae9SKonrad Dybcio
889184fdd87SKonrad Dybcioconfig SM_GCC_6375
890184fdd87SKonrad Dybcio	tristate "SM6375 Global Clock Controller"
891ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
892184fdd87SKonrad Dybcio	select QCOM_GDSC
893184fdd87SKonrad Dybcio	help
894184fdd87SKonrad Dybcio	  Support for the global clock controller on SM6375 devices.
895184fdd87SKonrad Dybcio	  Say Y if you want to use peripheral devices such as UART,
896184fdd87SKonrad Dybcio	  SPI, I2C, USB, SD/UFS etc.
897184fdd87SKonrad Dybcio
898a808d58dSDanila Tikhonovconfig SM_GCC_7150
899a808d58dSDanila Tikhonov	tristate "SM7150 Global Clock Controller"
900a808d58dSDanila Tikhonov	select QCOM_GDSC
901a808d58dSDanila Tikhonov	help
902a808d58dSDanila Tikhonov	  Support for the global clock controller on SM7150 devices.
903a808d58dSDanila Tikhonov	  Say Y if you want to use peripheral devices such as UART,
904a808d58dSDanila Tikhonov	  SPI, I2C, USB, SD/UFS, PCIe etc.
905a808d58dSDanila Tikhonov
9062a1d7eb8SDeepak Katragaddaconfig SM_GCC_8150
9072a1d7eb8SDeepak Katragadda	tristate "SM8150 Global Clock Controller"
908ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
9092a1d7eb8SDeepak Katragadda	help
9102a1d7eb8SDeepak Katragadda	  Support for the global clock controller on SM8150 devices.
9112a1d7eb8SDeepak Katragadda	  Say Y if you want to use peripheral devices such as UART,
9122a1d7eb8SDeepak Katragadda	  SPI, I2C, USB, SD/UFS, PCIe etc.
9132a1d7eb8SDeepak Katragadda
9143e577092STaniya Dasconfig SM_GCC_8250
9153e577092STaniya Das	tristate "SM8250 Global Clock Controller"
916ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
9173a4ef4caSJonathan Marek	select QCOM_GDSC
9183e577092STaniya Das	help
9193e577092STaniya Das	  Support for the global clock controller on SM8250 devices.
9203e577092STaniya Das	  Say Y if you want to use peripheral devices such as UART,
9213e577092STaniya Das	  SPI, I2C, USB, SD/UFS, PCIe etc.
9223e577092STaniya Das
92344c20c9eSVivek Aknurwarconfig SM_GCC_8350
92444c20c9eSVivek Aknurwar	tristate "SM8350 Global Clock Controller"
925ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
92644c20c9eSVivek Aknurwar	select QCOM_GDSC
92744c20c9eSVivek Aknurwar	help
92844c20c9eSVivek Aknurwar	  Support for the global clock controller on SM8350 devices.
92944c20c9eSVivek Aknurwar	  Say Y if you want to use peripheral devices such as UART,
93044c20c9eSVivek Aknurwar	  SPI, I2C, USB, SD/UFS, PCIe etc.
93144c20c9eSVivek Aknurwar
932db0c944eSVinod Koulconfig SM_GCC_8450
933db0c944eSVinod Koul	tristate "SM8450 Global Clock Controller"
934ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
935db0c944eSVinod Koul	select QCOM_GDSC
936db0c944eSVinod Koul	help
937db0c944eSVinod Koul	  Support for the global clock controller on SM8450 devices.
938db0c944eSVinod Koul	  Say Y if you want to use peripheral devices such as UART,
939db0c944eSVinod Koul	  SPI, I2C, USB, SD/UFS, PCIe etc.
940db0c944eSVinod Koul
941955f2ea3SAbel Vesaconfig SM_GCC_8550
942955f2ea3SAbel Vesa	tristate "SM8550 Global Clock Controller"
943ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
944955f2ea3SAbel Vesa	select QCOM_GDSC
945955f2ea3SAbel Vesa	help
946955f2ea3SAbel Vesa	  Support for the global clock controller on SM8550 devices.
947955f2ea3SAbel Vesa	  Say Y if you want to use peripheral devices such as UART,
948955f2ea3SAbel Vesa	  SPI, I2C, USB, SD/UFS, PCIe etc.
949955f2ea3SAbel Vesa
950aa381a2bSNeil Armstrongconfig SM_GCC_8650
951aa381a2bSNeil Armstrong	tristate "SM8650 Global Clock Controller"
952aa381a2bSNeil Armstrong	depends on ARM64 || COMPILE_TEST
953aa381a2bSNeil Armstrong	select QCOM_GDSC
954aa381a2bSNeil Armstrong	help
955aa381a2bSNeil Armstrong	  Support for the global clock controller on SM8650 devices.
956aa381a2bSNeil Armstrong	  Say Y if you want to use peripheral devices such as UART,
957aa381a2bSNeil Armstrong	  SPI, I2C, USB, SD/UFS, PCIe etc.
958aa381a2bSNeil Armstrong
959092209f1SKonrad Dybcioconfig SM_GPUCC_6115
960092209f1SKonrad Dybcio	tristate "SM6115 Graphics Clock Controller"
961092209f1SKonrad Dybcio	select SM_GCC_6115
962092209f1SKonrad Dybcio	depends on ARM64 || COMPILE_TEST
963092209f1SKonrad Dybcio	help
964092209f1SKonrad Dybcio	  Support for the graphics clock controller on SM6115 devices.
965092209f1SKonrad Dybcio	  Say Y if you want to support graphics controller devices and
966092209f1SKonrad Dybcio	  functionality such as 3D graphics.
967092209f1SKonrad Dybcio
968a6b18286SKonrad Dybcioconfig SM_GPUCC_6125
969a6b18286SKonrad Dybcio	tristate "SM6125 Graphics Clock Controller"
970a6b18286SKonrad Dybcio	select SM_GCC_6125
971a6b18286SKonrad Dybcio	depends on ARM64 || COMPILE_TEST
972a6b18286SKonrad Dybcio	help
973a6b18286SKonrad Dybcio	  Support for the graphics clock controller on SM6125 devices.
974a6b18286SKonrad Dybcio	  Say Y if you want to support graphics controller devices and
975a6b18286SKonrad Dybcio	  functionality such as 3D graphics.
976a6b18286SKonrad Dybcio
9778397e242SKonrad Dybcioconfig SM_GPUCC_6375
9788397e242SKonrad Dybcio	tristate "SM6375 Graphics Clock Controller"
9798397e242SKonrad Dybcio	select SM_GCC_6375
9808397e242SKonrad Dybcio	depends on ARM64 || COMPILE_TEST
9818397e242SKonrad Dybcio	help
9828397e242SKonrad Dybcio	  Support for the graphics clock controller on SM6375 devices.
9838397e242SKonrad Dybcio	  Say Y if you want to support graphics controller devices and
9848397e242SKonrad Dybcio	  functionality such as 3D graphics.
9858397e242SKonrad Dybcio
986013804a7SKonrad Dybcioconfig SM_GPUCC_6350
987013804a7SKonrad Dybcio	tristate "SM6350 Graphics Clock Controller"
988ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
989013804a7SKonrad Dybcio	select SM_GCC_6350
990013804a7SKonrad Dybcio	help
991013804a7SKonrad Dybcio	  Support for the graphics clock controller on SM6350 devices.
992013804a7SKonrad Dybcio	  Say Y if you want to support graphics controller devices and
993013804a7SKonrad Dybcio	  functionality such as 3D graphics.
994013804a7SKonrad Dybcio
9950cef71f2SJonathan Marekconfig SM_GPUCC_8150
9960cef71f2SJonathan Marek	tristate "SM8150 Graphics Clock Controller"
997ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
9980cef71f2SJonathan Marek	select SM_GCC_8150
9990cef71f2SJonathan Marek	help
10000cef71f2SJonathan Marek	  Support for the graphics clock controller on SM8150 devices.
10010cef71f2SJonathan Marek	  Say Y if you want to support graphics controller devices and
10020cef71f2SJonathan Marek	  functionality such as 3D graphics.
10030cef71f2SJonathan Marek
100428f0769cSJonathan Marekconfig SM_GPUCC_8250
100528f0769cSJonathan Marek	tristate "SM8250 Graphics Clock Controller"
1006ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
100728f0769cSJonathan Marek	select SM_GCC_8250
100828f0769cSJonathan Marek	help
100928f0769cSJonathan Marek	  Support for the graphics clock controller on SM8250 devices.
101028f0769cSJonathan Marek	  Say Y if you want to support graphics controller devices and
101128f0769cSJonathan Marek	  functionality such as 3D graphics.
101228f0769cSJonathan Marek
1013160758b0SRobert Fossconfig SM_GPUCC_8350
1014160758b0SRobert Foss	tristate "SM8350 Graphics Clock Controller"
1015ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
1016160758b0SRobert Foss	select SM_GCC_8350
1017160758b0SRobert Foss	help
1018160758b0SRobert Foss	  Support for the graphics clock controller on SM8350 devices.
1019160758b0SRobert Foss	  Say Y if you want to support graphics controller devices and
1020160758b0SRobert Foss	  functionality such as 3D graphics.
1021160758b0SRobert Foss
1022728692d4SKonrad Dybcioconfig SM_GPUCC_8450
1023728692d4SKonrad Dybcio	tristate "SM8450 Graphics Clock Controller"
102475d1d3a4SNathan Chancellor	depends on ARM64 || COMPILE_TEST
1025728692d4SKonrad Dybcio	select SM_GCC_8450
1026728692d4SKonrad Dybcio	help
1027728692d4SKonrad Dybcio	  Support for the graphics clock controller on SM8450 devices.
1028728692d4SKonrad Dybcio	  Say Y if you want to support graphics controller devices and
1029728692d4SKonrad Dybcio	  functionality such as 3D graphics.
1030728692d4SKonrad Dybcio
1031bfae4074SJagadeesh Konaconfig SM_GPUCC_8550
1032bfae4074SJagadeesh Kona	tristate "SM8550 Graphics Clock Controller"
1033b6bcd1c0SArnd Bergmann	depends on ARM64 || COMPILE_TEST
1034bfae4074SJagadeesh Kona	select SM_GCC_8550
1035bfae4074SJagadeesh Kona	help
1036bfae4074SJagadeesh Kona	  Support for the graphics clock controller on SM8550 devices.
1037bfae4074SJagadeesh Kona	  Say Y if you want to support graphics controller devices and
1038bfae4074SJagadeesh Kona	  functionality such as 3D graphics.
1039bfae4074SJagadeesh Kona
1040e9a7b78bSAbel Vesaconfig SM_TCSRCC_8550
1041e9a7b78bSAbel Vesa	tristate "SM8550 TCSR Clock Controller"
1042ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
1043e9a7b78bSAbel Vesa	select QCOM_GDSC
1044e9a7b78bSAbel Vesa	help
1045e9a7b78bSAbel Vesa	  Support for the TCSR clock controller on SM8550 devices.
1046e9a7b78bSAbel Vesa	  Say Y if you want to use peripheral devices such as SD/UFS.
1047e9a7b78bSAbel Vesa
1048*e3388328SNeil Armstrongconfig SM_TCSRCC_8650
1049*e3388328SNeil Armstrong	tristate "SM8650 TCSR Clock Controller"
1050*e3388328SNeil Armstrong	depends on ARM64 || COMPILE_TEST
1051*e3388328SNeil Armstrong	select QCOM_GDSC
1052*e3388328SNeil Armstrong	help
1053*e3388328SNeil Armstrong	  Support for the TCSR clock controller on SM8650 devices.
1054*e3388328SNeil Armstrong	  Say Y if you want to use peripheral devices such as SD/UFS.
1055*e3388328SNeil Armstrong
10565658e8cfSJonathan Marekconfig SM_VIDEOCC_8150
10575658e8cfSJonathan Marek	tristate "SM8150 Video Clock Controller"
1058ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
1059386ea3bdSLukas Bulwahn	select SM_GCC_8150
10605658e8cfSJonathan Marek	select QCOM_GDSC
10615658e8cfSJonathan Marek	help
10625658e8cfSJonathan Marek	  Support for the video clock controller on SM8150 devices.
10635658e8cfSJonathan Marek	  Say Y if you want to support video devices and functionality such as
10645658e8cfSJonathan Marek	  video encode and decode.
10655658e8cfSJonathan Marek
10660e94711aSJonathan Marekconfig SM_VIDEOCC_8250
10670e94711aSJonathan Marek	tristate "SM8250 Video Clock Controller"
1068ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
1069386ea3bdSLukas Bulwahn	select SM_GCC_8250
10700e94711aSJonathan Marek	select QCOM_GDSC
10710e94711aSJonathan Marek	help
10720e94711aSJonathan Marek	  Support for the video clock controller on SM8250 devices.
10730e94711aSJonathan Marek	  Say Y if you want to support video devices and functionality such as
10740e94711aSJonathan Marek	  video encode and decode.
10750e94711aSJonathan Marek
1076fd0b5b10SKonrad Dybcioconfig SM_VIDEOCC_8350
1077fd0b5b10SKonrad Dybcio	tristate "SM8350 Video Clock Controller"
1078b6bcd1c0SArnd Bergmann	depends on ARM64 || COMPILE_TEST
1079fd0b5b10SKonrad Dybcio	select SM_GCC_8350
1080fd0b5b10SKonrad Dybcio	select QCOM_GDSC
1081fd0b5b10SKonrad Dybcio	help
1082fd0b5b10SKonrad Dybcio	  Support for the video clock controller on SM8350 devices.
1083fd0b5b10SKonrad Dybcio	  Say Y if you want to support video devices and functionality such as
1084fd0b5b10SKonrad Dybcio	  video encode and decode.
1085fd0b5b10SKonrad Dybcio
1086f53153a3SJagadeesh Konaconfig SM_VIDEOCC_8550
1087f53153a3SJagadeesh Kona	tristate "SM8550 Video Clock Controller"
1088b6bcd1c0SArnd Bergmann	depends on ARM64 || COMPILE_TEST
1089f53153a3SJagadeesh Kona	select SM_GCC_8550
1090f53153a3SJagadeesh Kona	select QCOM_GDSC
1091f53153a3SJagadeesh Kona	help
1092f53153a3SJagadeesh Kona	  Support for the video clock controller on Qualcomm Technologies, Inc.
1093f53153a3SJagadeesh Kona	  SM8550 devices.
1094f53153a3SJagadeesh Kona	  Say Y if you want to support video devices and functionality such as
1095f53153a3SJagadeesh Kona	  video encode/decode.
1096f53153a3SJagadeesh Kona
10974cfaa55fSTirupathi Reddyconfig SPMI_PMIC_CLKDIV
10984cfaa55fSTirupathi Reddy	tristate "SPMI PMIC clkdiv Support"
1099f071bcebSStephen Boyd	depends on SPMI || COMPILE_TEST
11004cfaa55fSTirupathi Reddy	help
11014cfaa55fSTirupathi Reddy	  This driver supports the clkdiv functionality on the Qualcomm
11024cfaa55fSTirupathi Reddy	  Technologies, Inc. SPMI PMIC. It configures the frequency of
11034cfaa55fSTirupathi Reddy	  clkdiv outputs of the PMIC. These clocks are typically wired
11044cfaa55fSTirupathi Reddy	  through alternate functions on GPIO pins.
1105cb546b79SStephen Boyd
1106cb546b79SStephen Boydconfig QCOM_HFPLL
1107cb546b79SStephen Boyd	tristate "High-Frequency PLL (HFPLL) Clock Controller"
1108cb546b79SStephen Boyd	help
1109cb546b79SStephen Boyd	  Support for the high-frequency PLLs present on Qualcomm devices.
1110cb546b79SStephen Boyd	  Say Y if you want to support CPU frequency scaling on devices
1111cb546b79SStephen Boyd	  such as MSM8974, APQ8084, etc.
11123ddc3564SStephen Boyd
11133ddc3564SStephen Boydconfig KPSS_XCC
11143ddc3564SStephen Boyd	tristate "KPSS Clock Controller"
11153ddc3564SStephen Boyd	help
11163ddc3564SStephen Boyd	  Support for the Krait ACC and GCC clock controllers. Say Y
11173ddc3564SStephen Boyd	  if you want to support CPU frequency scaling on devices such
11183ddc3564SStephen Boyd	  as MSM8960, APQ8064, etc.
1119bb5c4a85SStephen Boyd
1120bb5c4a85SStephen Boydconfig KRAITCC
1121bb5c4a85SStephen Boyd	tristate "Krait Clock Controller"
1122f071bcebSStephen Boyd	depends on ARM
1123bb5c4a85SStephen Boyd	select KRAIT_CLOCKS
1124bb5c4a85SStephen Boyd	help
1125bb5c4a85SStephen Boyd	  Support for the Krait CPU clocks on Qualcomm devices.
1126bb5c4a85SStephen Boyd	  Say Y if you want to support CPU frequency scaling.
1127f071bcebSStephen Boyd
1128a2d8f507SSrinivas Kandagatlaconfig CLK_GFM_LPASS_SM8250
1129a2d8f507SSrinivas Kandagatla	tristate "SM8250 GFM LPASS Clocks"
1130ab7f0037SKrzysztof Kozlowski	depends on ARM64 || COMPILE_TEST
1131a2d8f507SSrinivas Kandagatla	help
1132a2d8f507SSrinivas Kandagatla	  Support for the Glitch Free Mux (GFM) Low power audio
1133a2d8f507SSrinivas Kandagatla          subsystem (LPASS) clocks found on SM8250 SoCs.
1134a2d8f507SSrinivas Kandagatla
1135441fe711STaniya Dasconfig SM_VIDEOCC_8450
1136441fe711STaniya Das	tristate "SM8450 Video Clock Controller"
1137b6bcd1c0SArnd Bergmann	depends on ARM64 || COMPILE_TEST
1138441fe711STaniya Das	select SM_GCC_8450
1139441fe711STaniya Das	select QCOM_GDSC
1140441fe711STaniya Das	help
1141441fe711STaniya Das	  Support for the video clock controller on Qualcomm Technologies, Inc.
1142441fe711STaniya Das	  SM8450 devices.
1143441fe711STaniya Das	  Say Y if you want to support video devices and functionality such as
1144441fe711STaniya Das	  video encode/decode.
1145f071bcebSStephen Boydendif
1146