1
0
Fork 0
alistair23-linux/include/dt-bindings/clock
Linus Torvalds 519f64bf15 This time it looks like a quieter release cycle in the clk tree. I guess that's
because of summer time holidays/vacations. The biggest change in the diffstat
 is in the Qualcomm clk driver, where they got support for CPUs and handful of
 SoCs. After that, the at91 driver got a major rewrite for newer DT bindings
 that should make things easier going forward and the TI code moved to a
 clockdomain based design. The long tail is mostly small driver updates for
 newer clks and some simpler SoC clock drivers such as the Hisilicon and imx
 support.
 
 In the core framework, we only have two small changes this time. One is a new
 clk API to get all clks for a device with the bulk clk APIs. This allows
 drivers that don't care about doing anything besides turning on all the clks to
 just clk_get() them all and turn them on. The other change is the beginning of
 a way to support save and restore of clk settings in the clk framework. TI is
 the only user right now, but we will want to expand upon this design in the
 future to support more save and restore of clk registers.  At least this gets
 us started and works well enough for one SoC, but there's more work in the
 future.
 
 Core:
  - clk_bulk_get_all() API and friends to get all the clks for a device
  - Basic clk state save/restore hooks
 
 New Drivers:
  - Renesas RZ/A2 (R7S9210) SoC, including early clocks
  - Rensas RZ/G1N (R8A7744) and RZ/G2E (R8A774C0) SoCs
  - Rensas RZ/G2M (r8a774a1) SoC
  - Qualcomm Krait CPU clk support
  - Qualcomm QCS404 GCC support
  - Qualcomm SDM660 GCC support
  - Qualcomm SDM845 camera clock controller
  - Ingenic jz4725b CGU
  - Hisilicon 3670 SoC support
  - TI SCI clks on K3 SoCs
  - iMX6 MMDC clks
  - Reset Controller (RMU) support for Actions Semi Owl S900 and S700 SoCs
 
 Updates:
  - Rework at91 PMC clock driver for new DT bindings
  - Nvidia Tegra clk driver MBIST workaround fix
  - S2RAM support for Marvell mvebu periph clks
  - Use updated printk format for OF node names
  - Fix TI code to only search DT subnodes
  - Various static analysis finds
  - Tag various drivers with SPDX license tags
  - Support dynamic frequency switching (DFS) on qcom SDM845 GCC
  - Only use s2mps11 dt-binding defines instead of redefining them in the driver
  - Add some more missing clks to qcom MSM8996 GCC
  - Quad SPI clks on qcom SDM845
  - Add support for CMT timer clocks on R-Car V3H
  - Add support for SHDI and various timer clocks on R-Car V3M
  - Improve OSC and RCLK (watchdog) handling on R-Car Gen3 SoCs
  - Amlogic clk-pll driver improvements and updates
  - Amlogic axg audio controller system clocks
  - Register Amlogic meson8b clock controller early
  - Add support for SATA and Fine Display Processor (FDP) clocks on R-Car M3-N
  - Consolidation of system suspend related code in Exynos, S5P, S3C SoC clk drivers
  - Fixes for system suspend support on Exynos542x (Odroid boards) and Exynos5433 SoC
  - Remove obsoleted Exynos4212 ISP clock definitions
  - Migrated TI am3/4/5 and dra7 SoCs to clockdomain based design
  - TI RTC+DDR sleep mode support for clock save/restore
  - Allwinner A64 display engine support and fixes
  - Allwinner A83t display engine support and fixes
 -----BEGIN PGP SIGNATURE-----
 
 iQJFBAABCAAvFiEE9L57QeeUxqYDyoaDrQKIl8bklSUFAlvY4ysRHHNib3lkQGtl
 cm5lbC5vcmcACgkQrQKIl8bklSVaDBAA3Wv/rsCn4FJ2ZgIWYWQqr69lAWDcBVVe
 4nNbFqzEmRoml8e+XOfVFwnbsai4B5ALVxyMnRlkDyxQ5TFQtF957U12Pf8upPa5
 R447YBt4tw40NCj8u5KNAaBmYYHdmXXDvsBPXyQn+1iy/9R8Is8AcDmv+D2ucuJF
 PPBXOwb+2CstUQhuwlXyvsAw/tqq/rJDVyAZVJUoqXJwlNMjr76V0m0ZXHN6NcyC
 F2SfnzIO4srRteTeKXVFcMU/3uHC3zofEfammSJjGZkk4WHULuPpkD17RMEyBul1
 Ju1S1nzGiKvYME/mmbIcRPNcpry65EVo/wn6IjAcG2m4GaWSq3F6qIttnoc6dnra
 R2VylIEy7HnNcAf8fkQdkd/l+h/TDp3iVrXg0p/rRxRk4Jlc86n2PWO6jtsZv4S+
 NySeRhTb51KrTl72J76LP+dfDWdbeZfkAqr0Qx6QM04OznVYSTHlnQaeM1Nx2SZR
 5+k126NdxDp7xgoJNfq18wzufrlefjuRTg2Kck1YuFuhV4Fjmq7ZC81bSSaakYPh
 /t073TcSZ+VfEYP5hVsl/pjMdFzHcj8pbavhs0UNIYLQNXe494Bm9PyYJOzQKnwz
 Zpbf7V6eplh8J1I03VI8RHviNp340iv2hhz9vp4mNP1vIhgdNiz7R2gn5sLSoFt+
 vei0J0vEzCA=
 =V5aK
 -----END PGP SIGNATURE-----

Merge tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux

Pull clk updates from Stephen Boyd:
 "This time it looks like a quieter release cycle in the clk tree. I
  guess that's because of summer time holidays/vacations. The biggest
  change in the diffstat is in the Qualcomm clk driver, where they got
  support for CPUs and handful of SoCs. After that, the at91 driver got
  a major rewrite for newer DT bindings that should make things easier
  going forward and the TI code moved to a clockdomain based design.

  The long tail is mostly small driver updates for newer clks and some
  simpler SoC clock drivers such as the Hisilicon and imx support.

  In the core framework, we only have two small changes this time.

  One is a new clk API to get all clks for a device with the bulk clk
  APIs. This allows drivers that don't care about doing anything besides
  turning on all the clks to just clk_get() them all and turn them on.

  The other change is the beginning of a way to support save and restore
  of clk settings in the clk framework. TI is the only user right now,
  but we will want to expand upon this design in the future to support
  more save and restore of clk registers. At least this gets us started
  and works well enough for one SoC, but there's more work in the
  future.

  Core:
   - clk_bulk_get_all() API and friends to get all the clks for a device
   - Basic clk state save/restore hooks

  New Drivers:
   - Renesas RZ/A2 (R7S9210) SoC, including early clocks
   - Rensas RZ/G1N (R8A7744) and RZ/G2E (R8A774C0) SoCs
   - Rensas RZ/G2M (r8a774a1) SoC
   - Qualcomm Krait CPU clk support
   - Qualcomm QCS404 GCC support
   - Qualcomm SDM660 GCC support
   - Qualcomm SDM845 camera clock controller
   - Ingenic jz4725b CGU
   - Hisilicon 3670 SoC support
   - TI SCI clks on K3 SoCs
   - iMX6 MMDC clks
   - Reset Controller (RMU) support for Actions Semi Owl S900 and S700 SoCs

  Updates:
   - Rework at91 PMC clock driver for new DT bindings
   - Nvidia Tegra clk driver MBIST workaround fix
   - S2RAM support for Marvell mvebu periph clks
   - Use updated printk format for OF node names
   - Fix TI code to only search DT subnodes
   - Various static analysis finds
   - Tag various drivers with SPDX license tags
   - Support dynamic frequency switching (DFS) on qcom SDM845 GCC
   - Only use s2mps11 dt-binding defines instead of redefining them in the driver
   - Add some more missing clks to qcom MSM8996 GCC
   - Quad SPI clks on qcom SDM845
   - Add support for CMT timer clocks on R-Car V3H
   - Add support for SHDI and various timer clocks on R-Car V3M
   - Improve OSC and RCLK (watchdog) handling on R-Car Gen3 SoCs
   - Amlogic clk-pll driver improvements and updates
   - Amlogic axg audio controller system clocks
   - Register Amlogic meson8b clock controller early
   - Add support for SATA and Fine Display Processor (FDP) clocks on R-Car M3-N
   - Consolidation of system suspend related code in Exynos, S5P, S3C SoC clk drivers
   - Fixes for system suspend support on Exynos542x (Odroid boards) and Exynos5433 SoC
   - Remove obsoleted Exynos4212 ISP clock definitions
   - Migrated TI am3/4/5 and dra7 SoCs to clockdomain based design
   - TI RTC+DDR sleep mode support for clock save/restore
   - Allwinner A64 display engine support and fixes
   - Allwinner A83t display engine support and fixes"

* tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux: (186 commits)
  clk: qcom: Remove unused arrays in SDM845 GCC
  clk: fixed-rate: fix of_node_get-put imbalance
  clk: s2mps11: Add used attribute to s2mps11_dt_match
  clk: qcom: gcc-sdm660: Add MODULE_LICENSE
  clk: qcom: Add safe switch hook for krait mux clocks
  dt-bindings: clock: Document qcom,krait-cc
  clk: qcom: Add Krait clock controller driver
  dt-bindings: arm: Document qcom,kpss-gcc
  clk: qcom: Add KPSS ACC/GCC driver
  clk: qcom: Add support for Krait clocks
  clk: qcom: Add IPQ806X's HFPLLs
  clk: qcom: Add MSM8960/APQ8064's HFPLLs
  dt-bindings: clock: Document qcom,hfpll
  clk: qcom: Add HFPLL driver
  clk: qcom: Add support for High-Frequency PLLs (HFPLLs)
  ARM: Add Krait L2 register accessor functions
  clk: imx6q: add mmdc0 ipg clock
  clk: imx6sl: add mmdc ipg clocks
  clk: imx6sll: add mmdc1 ipg clock
  clk: imx6sx: add mmdc1 ipg clock
  ...
2018-10-31 11:08:30 -07:00
..
actions,s700-cmu.h dt-bindings: clock: Add S700 support for Actions Semi Soc's 2018-07-25 16:40:53 -07:00
actions,s900-cmu.h dt-bindings: clock: Add Actions S900 clock bindings 2018-03-19 17:59:38 -07:00
alphascale,asm9260.h ARM: clk: add clk-asm9260 driver 2015-01-20 10:10:51 -08:00
am3.h dt-bindings: clock: am33xx: add clkctrl indices for new data layout 2018-10-03 15:02:26 +03:00
am4.h dt-bindings: clock: am43xx: add clkctrl indices for new data layout 2018-10-03 15:02:26 +03:00
aspeed-clock.h clk: aspeed: Fix SDCLK name 2018-07-06 13:56:06 -07:00
at91.h clk: at91: add new DT lookup function 2018-10-17 10:44:33 -07:00
ath79-clk.h MIPS: ath79: Introduce <dt-bindings/clock/ath79-clk.h> 2016-05-13 14:01:45 +02:00
axg-aoclkc.h dt-bindings: clock: reset: Add AXG AO Clock and Reset Bindings 2018-05-15 14:07:11 +02:00
axg-audio-clkc.h dt-bindings: clock: add meson axg audio clock controller bindings 2018-06-22 12:59:05 +02:00
axg-clkc.h clk: meson: expose GEN_CLK clkid 2018-07-09 13:37:31 +02:00
axis,artpec6-clkctrl.h clk: add device tree binding for Artpec-6 clock controller 2016-04-15 16:00:37 -07:00
bcm-cygnus.h clk: iproc: Add support for Cygnus audio clocks 2016-01-29 16:31:38 -08:00
bcm-ns2.h clk: ns2: add clock support for Broadcom Northstar 2 SoC 2015-10-21 17:22:58 -07:00
bcm-nsp.h clk: nsp: add clock support for Broadcom Northstar Plus SoC 2015-10-21 16:53:20 -07:00
bcm-sr.h dt-bindings: clk: Update Stingray binding doc 2018-06-01 23:26:36 -07:00
bcm281xx.h clk: bcm281xx: move compatible string definitions 2014-04-30 11:51:39 -07:00
bcm2835-aux.h clk: bcm2835: Add bindings for the auxiliary peripheral clock gates. 2015-12-22 16:46:58 -08:00
bcm2835.h clk: bcm2835: Register the DSI0/DSI1 pixel clocks. 2017-01-20 16:22:55 -08:00
bcm21664.h clk: bcm21664: use common clock framework 2014-04-30 11:51:44 -07:00
berlin2.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
berlin2q.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
boston-clock.h dt-bindings: Document img,boston-clock binding 2017-07-11 14:13:06 +02:00
clps711x-clock.h clk: Add CLPS711X clk driver 2014-07-28 23:30:46 -07:00
cortina,gemini-clock.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
dm814.h dt-bindings: clk: add dm814 clkctrl definitions 2017-12-01 15:17:57 +02:00
dm816.h dt-bindings: clk: add dm816 clkctrl definitions 2017-12-01 15:18:04 +02:00
dra7.h dt-bindings: clock: dra7xx: add clkctrl indices for new data layout 2018-10-03 15:02:26 +03:00
efm32-cmu.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
exynos-audss-clk.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
exynos4.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos7-clk.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos3250.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos5250.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos5260-clk.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos5410.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos5420.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
exynos5433.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
gxbb-aoclkc.h dt-bindings: clock: gxbb-aoclk: Add CEC 32k clock 2017-08-04 17:49:35 +02:00
gxbb-clkc.h clk: meson: expose GEN_CLK clkid 2018-07-09 13:37:31 +02:00
hi3516cv300-clock.h clk: hisilicon: add CRG driver for Hi3516CV300 SoC 2016-11-14 12:04:39 -08:00
hi3519-clock.h clk: hisilicon: add CRG driver for hi3519 soc 2016-05-06 11:13:32 -07:00
hi3620-clock.h clk: hisilicon: add hi3620_mmc_clks 2014-02-26 16:03:56 -08:00
hi3660-clock.h dt-bindings: clk: Hi3660: Document stub clock 2017-12-06 22:54:37 -08:00
hi3670-clock.h dt-bindings: clk: hisilicon: Add bindings for Hi3670 clk 2018-10-16 14:46:56 -07:00
hi6220-clock.h clk: hi6220: add acpu clock 2017-06-19 19:02:42 -07:00
hip04-clock.h clk: hip04: add clock driver 2014-03-19 15:23:53 +08:00
histb-clock.h clk: hisilicon: add missing usb3 clocks for Hi3798CV200 SoC 2018-05-15 15:12:06 -07:00
hix5hd2-clock.h clk: hix5hd2: add I2C clocks 2014-09-28 10:27:09 +08:00
imx1-clock.h ARM: i.MX1 clk: Add devicetree support 2014-07-18 16:10:03 +08:00
imx5-clock.h clk: imx53: Add clocks configuration 2016-09-20 16:52:06 -07:00
imx6qdl-clock.h clk: imx6q: add mmdc0 ipg clock 2018-10-17 11:16:02 -07:00
imx6sl-clock.h clk: imx6sl: add mmdc ipg clocks 2018-10-17 11:15:51 -07:00
imx6sll-clock.h clk: imx6sll: add mmdc1 ipg clock 2018-10-17 11:15:44 -07:00
imx6sx-clock.h clk: imx6sx: add mmdc1 ipg clock 2018-10-17 11:15:32 -07:00
imx6ul-clock.h clk: imx6ul: add mmdc1 ipg clock 2018-10-17 11:15:20 -07:00
imx7d-clock.h clk: imx7d: correct enet clock CCGR registers 2018-06-01 12:15:21 -07:00
imx21-clock.h ARM: i.MX21 clk: Add devicetree support 2014-07-18 16:11:32 +08:00
imx27-clock.h ARM: i.MX27 clk: Add 26 MHz oscillator circuit clock gate 2014-07-18 16:11:38 +08:00
jz4725b-cgu.h dt-bindings: clock: Add jz4725b-cgu.h header 2018-10-16 15:19:43 -07:00
jz4740-cgu.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
jz4770-cgu.h dt-bindings: clock: Add jz4770-cgu.h header 2018-01-18 22:05:42 +00:00
jz4780-cgu.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
lpc18xx-ccu.h clk: add lpc18xx ccu clk driver 2015-06-18 15:44:48 -07:00
lpc18xx-cgu.h clk: add lpc18xx cgu clk driver 2015-06-18 15:44:47 -07:00
lpc32xx-clock.h clk: lpc32xx: allow peripheral clock selection in device tree 2016-07-06 17:51:14 -07:00
lsi,axm5516-clks.h ARM: Add platform support for LSI AXM55xx SoC 2014-05-23 18:18:39 +02:00
marvell,mmp2.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
marvell,pxa168.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
marvell,pxa910.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
marvell,pxa1928.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
maxim,max9485.h dts: clk: add devicetree bindings for MAX9485 2018-07-06 11:27:24 -07:00
maxim,max77620.h clk: max77686: Add DT binding details for PMIC MAX77620 2016-08-15 15:33:14 -07:00
maxim,max77686.h clk: max77686: Add SPDX license identifiers 2018-08-27 14:16:51 -07:00
maxim,max77802.h clk: max77686: Add SPDX license identifiers 2018-08-27 14:16:51 -07:00
meson8b-clkc.h dt-bindings: clock: meson8b: export the NAND clock 2018-04-25 12:05:55 +02:00
microchip,pic32-clock.h dt/bindings/clk: Add PIC32 clock binding documentation. 2016-05-13 15:30:25 +02:00
mpc512x-clock.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
mt2701-clk.h Merge branches 'clk-hisi-usb', 'clk-silent-bulk', 'clk-mtk-hdmi', 'clk-mtk-mali' and 'clk-imx6ul-ccosr' into clk-next 2018-06-04 12:27:40 -07:00
mt2712-clk.h dt-bindings: clock: add clocks for MT2712 2018-03-19 14:37:31 -07:00
mt6797-clk.h clk: mediatek: add mt6797 clock IDs 2017-04-19 09:15:33 -07:00
mt7622-clk.h clk: mediatek: update missing clock data for MT7622 audsys 2018-03-19 13:40:57 -07:00
mt8135-clk.h clk: mediatek: Add basic clocks for Mediatek MT8135. 2015-05-05 22:50:35 -07:00
mt8173-clk.h clk: mediatek: export cpu multiplexer clock for MT8173 SoCs 2017-06-19 19:02:44 -07:00
nuvoton,npcm7xx-clock.h dt-binding: clk: npcm750: Add binding for Nuvoton NPCM7XX Clock 2018-03-23 10:11:25 -07:00
omap4.h dt-bindings: clk: add omap4 clkctrl definitions 2017-06-15 10:47:59 +03:00
omap5.h dt-bindings: clk: add omap5 clkctrl definitions 2017-12-01 15:17:17 +02:00
oxsemi,ox810se.h clk: oxnas: Add dt-bindings include file for OX810SE 2016-10-23 10:18:33 -07:00
oxsemi,ox820.h clk: oxnas: Add dt-bindings include file for OX820 2016-10-23 10:18:36 -07:00
pistachio-clk.h CLK: Add binding document for Pistachio clock controllers 2015-03-27 18:51:31 +01:00
px30-cru.h clk: rockchip: add dt-binding header for px30 2018-07-03 20:49:09 +02:00
pxa-clock.h clk: pxa: export 32kHz PLL 2018-07-06 13:52:57 -07:00
qcom,camcc-sdm845.h dt-bindings: clock: Introduce QCOM Camera clock bindings 2018-08-30 18:26:45 -07:00
qcom,dispcc-sdm845.h dt-bindings: clock: Introduce QCOM Display clock bindings 2018-07-06 16:46:22 -07:00
qcom,gcc-apq8084.h clk: qcom: gdsc: Add GDSCs in apq8084 GCC 2015-09-16 15:22:45 -07:00
qcom,gcc-ipq806x.h clk: qcom: Add support for NSS/GMAC clocks and resets 2015-05-30 17:04:36 -07:00
qcom,gcc-ipq4019.h clk: qcom: ipq4019: Add the nodes for pcnoc 2016-12-21 15:57:27 -08:00
qcom,gcc-ipq8074.h dt-bindings: clock: qcom: add misc resets for PCIE and NSS 2017-12-21 16:03:38 -08:00
qcom,gcc-mdm9615.h clk: mdm9615: Add EBI2 clock 2017-01-09 16:33:26 -08:00
qcom,gcc-msm8660.h clk: qcom: Add support for MSM8660's global clock controller (GCC) 2014-01-16 12:01:05 -08:00
qcom,gcc-msm8916.h clk:gcc-msm8916: add missing mss_q6_bimc_axi clock 2016-01-29 16:35:22 -08:00
qcom,gcc-msm8960.h clk: qcom: Add MSM8960/APQ8064's HFPLLs 2018-10-17 13:14:45 -07:00
qcom,gcc-msm8974.h clk: qcom: gdsc: Add GDSCs in msm8974 GCC 2015-09-16 15:22:43 -07:00
qcom,gcc-msm8994.h dt-bindings: qcom: clk: Add missing binding for SDCHI enablement on Nexus 5X/6P 2017-01-27 13:33:03 -08:00
qcom,gcc-msm8996.h clk: qcom: Add some missing gcc clks for msm8996 2018-08-28 15:51:44 -07:00
qcom,gcc-msm8998.h clk: qcom: Add MSM8998 Global Clock Control (GCC) driver 2018-04-16 22:51:27 -07:00
qcom,gcc-qcs404.h clk: qcom: gcc: Add global clock controller driver for QCS404 2018-10-16 15:13:54 -07:00
qcom,gcc-sdm660.h clk: qcom: Add Global Clock controller (GCC) driver for SDM660 2018-10-16 15:06:43 -07:00
qcom,gcc-sdm845.h clk: qcom: Add qspi (Quad SPI) clock defines for sdm845 to header 2018-08-28 15:56:25 -07:00
qcom,lcc-ipq806x.h dt-bindings: Add #defines for IPQ806x lpass clock control 2015-01-27 11:49:14 -08:00
qcom,lcc-mdm9615.h dt-bindings: Add MDM9615 DT bindings include files for GCC and LCC 2016-08-15 15:51:18 -07:00
qcom,lcc-msm8960.h clk: qcom: Add MSM8960/APQ8064 LPASS clock controller (LCC) driver 2015-01-27 11:49:34 -08:00
qcom,mmcc-apq8084.h clk: qcom: gdsc: Add GDSCs in apq8084 MMCC 2015-09-16 15:22:47 -07:00
qcom,mmcc-msm8960.h clk: qcom: Add support for APQ8064 multimedia clocks 2014-07-15 16:39:03 -07:00
qcom,mmcc-msm8974.h clk: qcom: gdsc: Add GDSCs in msm8974 MMCC 2015-09-16 15:22:44 -07:00
qcom,mmcc-msm8996.h clk: qcom: gdsc: Add the missing BIMC gdsc for msm8996 2016-08-19 12:55:19 -07:00
qcom,rpmcc.h clk: qcom: rpmcc: Add support to XO buffered clocks 2018-03-19 14:40:26 -07:00
qcom,rpmh.h dt-bindings: clock: Introduce QCOM RPMh clock bindings 2018-05-02 08:11:15 -07:00
qcom,videocc-sdm845.h dt-bindings: clock: Introduce QCOM Video clock bindings 2018-06-01 11:49:07 -07:00
r7s9210-cpg-mssr.h clk: renesas: cpg-mssr: Add R7S9210 support 2018-09-11 12:01:07 +02:00
r7s72100-clock.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a73a4-clock.h ARM: dts: r8a73a4: Add INTC-SYS clock to device tree 2017-03-10 10:19:50 +01:00
r8a774a1-cpg-mssr.h clk: renesas: Add r8a774a1 CPG Core Clock Definitions 2018-08-27 17:00:19 +02:00
r8a774c0-cpg-mssr.h clk: renesas: Add r8a774c0 CPG Core Clock Definitions 2018-09-19 16:41:00 +02:00
r8a7740-clock.h ARM: shmobile: r8a7740 dtsi: Add missing INTCA clock for irqpin module 2014-10-30 09:56:22 +09:00
r8a7743-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7744-cpg-mssr.h clk: renesas: Add r8a7744 CPG Core Clock Definitions 2018-09-19 16:37:56 +02:00
r8a7745-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7778-clock.h ARM: shmobile: r8a7778: add CPG register bits header 2015-02-24 06:40:44 +09:00
r8a7779-clock.h ARM: shmobile: r8a7779: Add clock index macros for DT sources 2014-05-27 19:17:25 -07:00
r8a7790-clock.h ARM: dts: r8a7790: Add INTC-SYS clock to device tree 2017-03-10 10:20:02 +01:00
r8a7790-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7791-clock.h ARM: dts: r8a7791: add GyroADC clock 2017-05-15 09:02:37 +02:00
r8a7791-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7792-clock.h ARM: dts: r8a7792: Correct Z clock 2017-04-03 06:33:23 -04:00
r8a7792-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7793-clock.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7793-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7794-clock.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7794-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7795-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a7796-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a77470-cpg-mssr.h clk: renesas: Add r8a77470 CPG Core Clock Definitions 2018-04-16 13:39:38 +02:00
r8a77965-cpg-mssr.h clk: renesas: cpg-mssr: Add support for R-Car M3-N 2018-02-26 09:13:29 +01:00
r8a77970-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r8a77980-cpg-mssr.h dt-bindings: clock: add R8A77980 CPG core clock definitions 2018-02-20 13:38:32 +01:00
r8a77990-cpg-mssr.h clk: renesas: Add r8a77990 CPG Core Clock Definitions 2018-04-24 09:54:34 +02:00
r8a77995-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
r9a06g032-sysctrl.h dt-bindings: clock: Add the r9a06g032-sysctrl.h file 2018-06-22 15:24:42 +02:00
renesas-cpg-mssr.h dt-bindings: clock: renesas: Convert to SPDX identifiers 2018-09-19 16:33:10 +02:00
rk3036-cru.h clk: rockchip: add clock-id for rk3036 emac pll source clock 2016-03-16 19:28:02 -04:00
rk3066a-cru.h clk: rockchip: add missing include guards 2015-07-06 15:09:01 -07:00
rk3128-cru.h clk: rockchip: add dt-binding header for rk3128 2017-06-02 14:17:05 +02:00
rk3188-cru-common.h clk: rockchip: add clock-id for HCLK_HDMI on rk3066 2018-10-11 14:57:25 +02:00
rk3188-cru.h clk: rockchip: add missing include guards 2015-07-06 15:09:01 -07:00
rk3228-cru.h clk: rockchip: add rk3228 sclk_sdio_src ID 2017-08-22 00:36:50 +02:00
rk3288-cru.h clk: rockchip: add rk3288 vip_out clock id 2017-01-22 17:07:03 +01:00
rk3328-cru.h clk: rockchip: remove HCLK_VIO from rk3328 dt header 2018-02-12 15:00:44 +01:00
rk3368-cru.h clk: rockchip: add clock id for PCLK_EFUSE256 of RK3368 SoCs 2017-10-14 21:26:51 +02:00
rk3399-cru.h clk: rockchip: add ids for camera on rk3399 2017-05-17 19:46:17 +02:00
rk3399-ddr.h dt-bindings: clock: add rk3399 DDR3 standard speed bins. 2018-07-18 13:58:30 +09:00
rockchip,rk808.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
rv1108-cru.h clk: rockchip: rename rv1108 macphy clock to mac 2017-08-22 02:53:55 +02:00
s3c2410.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
s3c2412.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
s3c2443.h dt-bindings: clock: samsung: Add SPDX license identifiers 2018-10-15 13:35:00 -05:00
s5pv210-audss.h clk: samsung: Add S5PV210 Audio Subsystem clock driver 2014-07-19 04:25:08 +09:00
s5pv210.h clk: samsung: Add clock driver for S5PV210 and compatible SoCs 2014-07-19 04:24:42 +09:00
samsung,s2mps11.h clk: s2mps11,s3c64xx: Add SPDX license identifiers 2018-08-27 14:17:03 -07:00
samsung,s3c64xx-clock.h clk: s2mps11,s3c64xx: Add SPDX license identifiers 2018-08-27 14:17:03 -07:00
sh73a0-clock.h ARM: shmobile: sh73a0: Add MSIOF clocks 2015-12-01 15:35:34 +09:00
sprd,sc9860-clk.h dt-bindings: clocks: add APB RTC gate for SC9860 2018-03-16 15:53:31 -07:00
ste-ab8500.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
stih407-clks.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
stih410-clks.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
stih416-clks.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
stih418-clks.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
stm32fx-clock.h clk: stm32: Add DSI clock for STM32F469 Board 2018-03-19 13:45:11 -07:00
stm32h7-clks.h clk: stm32h7: Add stm32h743 clock driver 2017-08-31 18:35:47 -07:00
stm32mp1-clks.h clk: stm32mp1: remove ck_apb_dbg clock 2018-04-06 13:43:23 -07:00
stratix10-clock.h dt-bindings: documentation: add clock bindings information for Stratix10 2018-04-06 09:54:59 -07:00
sun4i-a10-ccu.h clk: sunxi-ng: sun4i: Export video PLLs 2017-10-17 19:32:16 +02:00
sun4i-a10-pll2.h clk: sunxi: Add a driver for the PLL2 2015-10-21 21:51:27 +02:00
sun5i-ccu.h clk: sunxi-ng: sun5i: Export video PLLs 2017-06-07 15:32:14 +02:00
sun6i-a31-ccu.h clk: sunxi-ng: sun6i: Export video PLLs 2017-09-29 10:46:10 +02:00
sun7i-a20-ccu.h clk: sunxi-ng: Add sun4i/sun7i CCU driver 2017-08-24 10:15:54 +02:00
sun8i-a23-a33-ccu.h clk: sunxi-ng: Add A33 CCU support 2016-09-10 11:41:19 +02:00
sun8i-a83t-ccu.h clk: sunxi-ng: Add driver for A83T CCU 2017-06-07 15:32:16 +02:00
sun8i-de2.h dt-bindings: add binding for the Allwinner DE2 CCU 2017-06-07 15:32:12 +02:00
sun8i-h3-ccu.h clk: sunxi-ng: h3: h5: export CLK_PLL_VIDEO 2018-03-02 08:42:30 +01:00
sun8i-r-ccu.h clk: sunxi-ng: add support for PRCM CCUs 2017-04-04 17:43:52 +02:00
sun8i-r40-ccu.h clk: sunxi-ng: r40: Export video PLLs 2018-06-27 19:06:56 +02:00
sun8i-tcon-top.h dt-bindings: display: sunxi-drm: Add TCON TOP description 2018-06-27 21:43:47 +02:00
sun8i-v3s-ccu.h clk: sunxi-ng: add support for V3s CCU 2017-01-20 21:39:03 +01:00
sun9i-a80-ccu.h clk: sunxi-ng: Add A80 CCU 2017-01-30 08:37:30 +01:00
sun9i-a80-de.h clk: sunxi-ng: Add A80 Display Engine CCU 2017-01-30 08:38:30 +01:00
sun9i-a80-usb.h clk: sunxi-ng: Add A80 USB CCU 2017-01-30 08:37:51 +01:00
sun50i-a64-ccu.h dt-bindings: clock: sun50i-a64-ccu: Add PLL_VIDEO0 macro 2018-09-05 09:19:59 +02:00
sun50i-h6-ccu.h clk: sunxi-ng: add missing hdmi-slow clock for H6 CCU 2018-03-21 12:27:13 +01:00
sun50i-h6-r-ccu.h clk: sunxi-ng: add support for H6 PRCM CCU 2018-05-04 17:05:46 +02:00
tegra20-car.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
tegra30-car.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
tegra114-car.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
tegra124-car-common.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
tegra124-car.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
tegra186-clock.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
tegra194-clock.h arm64: tegra: Add Tegra194 chip device tree 2018-03-08 14:31:13 +01:00
tegra210-car.h clk: tegra: Add la clock for Tegra210 2018-03-08 15:26:11 +01:00
vf610-clock.h clk: imx: vf610: fix whitespace in vf610-clock.h 2016-04-12 09:31:08 +08:00
xlnx,zynqmp-clk.h dt-bindings: clock: Add bindings for ZynqMP clock driver 2018-10-09 13:26:34 +02:00
zx296702-clock.h clk: zx: Add audio and GPIO clock for zx296702 2015-07-28 11:59:37 -07:00
zx296718-clock.h clk: zx296718: export I2S mux clocks 2017-06-19 19:02:42 -07:00