1
0
Fork 0
remarkable-linux/include/dt-bindings/clock
Linus Torvalds db06f826ec The new and exciting feature this time around is in the clk core.
We've added duty cycle support to the clk API so that clk signal
 duty cycle ratios can be adjusted while taking into account things
 like clk dividers and clk tree hierarchy. So far only one SoC has
 implemented support for this, but I expect there will be more to
 come in the future.
 
 Outside of the core, we have the usual pile of clk driver updates
 and additions. The Amlogic meson driver got the most lines in the
 diffstat this time around because it added support for a whole bunch
 of hardware and duty cycle configuration. After that the Rockchip PX30,
 Qualcomm SDM845, and Renesas SoC drivers fill in a majority of the diff.
 We're left with the collection of non-critical fixes after that. Overall
 it looks pretty quiet this time.
 
 Core:
  - Clk duty cycle support
  - Proper CLK_SET_RATE_GATE support throughout the tree
 
 New Drivers:
  - Actions Semi Owl series S700 SoC clk driver
  - Qualcomm SDM845 display clock controller
  - i.MX6SX ocram_s clk support
  - Uniphier NAND, USB3 PHY, and SPI clk support
  - Qualcomm RPMh clk driver
  - i.MX7D mailbox clk support
  - Maxim 9485 Programmable Clock Generator
  - Expose 32 kHz PLL on PXA SoCs
  - imx6sll GPIO clk gate support
  - Atmel at91 I2S audio clk support
  - SI544/SI514 clk on/off support
  - i.MX6UL GPIO clock gates in CCM CCGR
  - Renesas Crypto Engine clocks on R-Car H3
  - Renesas clk support for the new RZ/N1D SoC
  - Allwinner A64 display engine clock support
  - Support for Rockchip's PX30 SoC
  - Amlogic Meson axg PCIe and audio clocks
  - Amlogic Meson GEN CLK on gxbb, gxl and axg
 
 Updates:
  - Remove an unused variable from Exynos4412 ISP driver
  - Fix a thinko bug in SCMI clk division logic
  - Add missing of_node_put()s in some i.MX clk drivers
  - Tegra SDMMC clk jitter improvements with high speed signaling modes
  - SPDX tagging for qcom and cs2000-cp drivers
  - Stop leaking con ids in __clk_put()
  - Fix a corner case in fixed factor clk probing where node is in DT but
    parent clk is registered much later
  - Marvell Armada 3700 clk_pm_cpu_get_parent() had an invalid return value
  - i.MX clk init arrays removed in place of CLK_IS_CRITICAL
  - Convert to CLK_IS_CRITICAL for i.MX51/53 driver
  - Fix Tegra BPMP driver oops when xlating a NULL clk
  - Proper default configuration for vic03 and vde clks on Tegra124
  - Mark Tegra memory controller clks as critical
  - Fix array bounds clamp in Tegra's emc determine_rate() op
  - Ingenic i2s bit update and allow UDC clk to gate
  - Fix name of aspeed SDC clk define to have only one 'CLK'
  - Fix i.MX6QDL video clk parent
  - Critical clk markings for qcom SDM845
  - Fix Stratix10 mpu_free_clk and sdmmc_free_clk parents
  - Mark Rockchip's pclk_rkpwm_pmu as critical clock, due to it supplying
    the pwm used to drive the logic supply of the rk3399 core.
 -----BEGIN PGP SIGNATURE-----
 
 iQJFBAABCAAvFiEE9L57QeeUxqYDyoaDrQKIl8bklSUFAlt0WD0RHHNib3lkQGtl
 cm5lbC5vcmcACgkQrQKIl8bklSX5jBAAlMLb0fqnuAGNJeXZDk5rsCa496LMyGWx
 ku7uLA2H68SlbSQqq8FUPoCjDZkmsu2CbOX1U2/H4HFDS0pqpPiV3mZNtSeacedp
 4Wf8yUB5G3xdq9QUCSX5LxMmEQoGeJ+gaTspBvM6sNvEMBR2kEMGBqUy768tnDTR
 qCQ8Q1jOU6l8IdFV0SZGssmZ+oFqOyQoJVquPWPkw1+p/2f1KyYIyG5J5FXGxgcR
 1XQITY/I/dShQ2wd+ZeDdt+GjZqIXQ06Pt3ruRG7HVP79Zt1XCRJd5dZ2lf+Wj8T
 1ul3TWCAMYZ8gCPebLMbBGzKvQJQJcDU6DpIZsrUDN+C6z7KCS9vqeCxP9cF+3jJ
 LOmA6cWE7z9Vkk9s0I0KJJ2Sw7wRoXzE5OJcwa/yousSz3s9cX+F8SAkdZs77oUF
 0XnzPsvwdHI/egQ4UrsStPHM/gOFhsQqo8vvm5xaaTR2AxLKBHuPa9oUv9YpO/P5
 J6FCst3qeY3Wp69fJ5/Z058OFOAt81dKXij2fZJBOO4KJy7Kse8Sz5ApybXVAbY5
 lfvx+KGMITFqLYrcRIQZmlCuoHcMwI0FtHr9Ens5GXdbrJ+W+FlvP43eLCA0ZmRx
 9DidemChj3k3PC3H6tbax/jzV4IIxZdyUoBJ1imL4uyhhaXp/qr45A/aGwNp8Q8a
 WvkIGm3epK4=
 =Mcn+
 -----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:
 "The new and exciting feature this time around is in the clk core.
  We've added duty cycle support to the clk API so that clk signal duty
  cycle ratios can be adjusted while taking into account things like clk
  dividers and clk tree hierarchy. So far only one SoC has implemented
  support for this, but I expect there will be more to come in the
  future.

  Outside of the core, we have the usual pile of clk driver updates and
  additions. The Amlogic meson driver got the most lines in the diffstat
  this time around because it added support for a whole bunch of
  hardware and duty cycle configuration. After that the Rockchip PX30,
  Qualcomm SDM845, and Renesas SoC drivers fill in a majority of the
  diff. We're left with the collection of non-critical fixes after that.
  Overall it looks pretty quiet this time.

  Core:
   - Clk duty cycle support
   - Proper CLK_SET_RATE_GATE support throughout the tree

  New Drivers:
   - Actions Semi Owl series S700 SoC clk driver
   - Qualcomm SDM845 display clock controller
   - i.MX6SX ocram_s clk support
   - Uniphier NAND, USB3 PHY, and SPI clk support
   - Qualcomm RPMh clk driver
   - i.MX7D mailbox clk support
   - Maxim 9485 Programmable Clock Generator
   - expose 32 kHz PLL on PXA SoCs
   - imx6sll GPIO clk gate support
   - Atmel at91 I2S audio clk support
   - SI544/SI514 clk on/off support
   - i.MX6UL GPIO clock gates in CCM CCGR
   - Renesas Crypto Engine clocks on R-Car H3
   - Renesas clk support for the new RZ/N1D SoC
   - Allwinner A64 display engine clock support
   - support for Rockchip's PX30 SoC
   - Amlogic Meson axg PCIe and audio clocks
   - Amlogic Meson GEN CLK on gxbb, gxl and axg

  Updates:
   - remove an unused variable from Exynos4412 ISP driver
   - fix a thinko bug in SCMI clk division logic
   - add missing of_node_put()s in some i.MX clk drivers
   - Tegra SDMMC clk jitter improvements with high speed signaling modes
   - SPDX tagging for qcom and cs2000-cp drivers
   - stop leaking con ids in __clk_put()
   - fix a corner case in fixed factor clk probing where node is in DT
     but parent clk is registered much later
   - Marvell Armada 3700 clk_pm_cpu_get_parent() had an invalid return
     value
   - i.MX clk init arrays removed in place of CLK_IS_CRITICAL
   - convert to CLK_IS_CRITICAL for i.MX51/53 driver
   - fix Tegra BPMP driver oops when xlating a NULL clk
   - proper default configuration for vic03 and vde clks on Tegra124
   - mark Tegra memory controller clks as critical
   - fix array bounds clamp in Tegra's emc determine_rate() op
   - Ingenic i2s bit update and allow UDC clk to gate
   - fix name of aspeed SDC clk define to have only one 'CLK'
   - fix i.MX6QDL video clk parent
   - critical clk markings for qcom SDM845
   - fix Stratix10 mpu_free_clk and sdmmc_free_clk parents
   - mark Rockchip's pclk_rkpwm_pmu as critical clock, due to it
     supplying the pwm used to drive the logic supply of the rk3399
     core"

* tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux: (85 commits)
  clk: rockchip: Add pclk_rkpwm_pmu to PMU critical clocks in rk3399
  clk: cs2000-cp: convert to SPDX identifiers
  clk: scmi: Fix the rounding of clock rate
  clk: qcom: Add display clock controller driver for SDM845
  clk: mvebu: armada-37xx-periph: Remove unused var num_parents
  clk: samsung: Remove unused mout_user_aclk400_mcuisp_p4x12 variable
  clk: actions: Add S700 SoC clock support
  dt-bindings: clock: Add S700 support for Actions Semi Soc's
  clk: actions: Add missing REGMAP_MMIO dependency
  clk: uniphier: add clock frequency support for SPI
  clk: uniphier: add more USB3 PHY clocks
  clk: uniphier: add NAND 200MHz clock
  clk: tegra: make sdmmc2 and sdmmc4 as sdmmc clocks
  clk: tegra: Add sdmmc mux divider clock
  clk: tegra: Refactor fractional divider calculation
  clk: tegra: Fix includes required by fence_udelay()
  clk: imx6sll: fix missing of_node_put()
  clk: imx6ul: fix missing of_node_put()
  clk: imx: add ocram_s clock for i.mx6sx
  clk: mvebu: armada-37xx-periph: Fix wrong return value in get_parent
  ...
2018-08-15 21:41:21 -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: clk: add am33xx clkctrl definitions 2017-12-01 15:17:23 +02:00
am4.h dt-bindings: clk: add am43xx clkctrl definitions 2017-12-01 15:17:28 +02:00
aspeed-clock.h clk: aspeed: Fix SDCLK name 2018-07-06 13:56:06 -07:00
at91.h clk: at91: add PMC sama5d2 support 2015-10-01 12:39:44 -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: clk: add dra7 clkctrl definitions 2017-12-01 15:17:18 +02: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 clk: samsung: Add dt bindings for Exynos4412 ISP clock controller 2017-10-16 11:25:35 +02:00
exynos7-clk.h clk: samsung: exynos7: Add required clock tree for UFS 2015-09-15 11:18:15 +02:00
exynos3250.h dt-bindings: Add the clock id of UART2 and MMC2 for Exynos3250 2016-03-31 12:25:44 +02:00
exynos5250.h clk: samsung: exynos5250: Add DISP1 clocks 2015-10-24 04:31:18 +09:00
exynos5260-clk.h clk/exynos5260: add macros and documentation for exynos5260 2014-05-14 19:16:55 +02:00
exynos5410.h clk: samsung: exynos5410: Add clock IDs for PDMA and EPLL clocks 2016-09-09 10:13:02 +02:00
exynos5420.h clk: samsung: Add missing exynos5420 audio related clocks 2017-06-09 13:12:54 +02:00
exynos5433.h clk: samsung: exynos5433: Add IDs for PHYCLK_MIPIDPHY0_* clocks 2017-01-27 11:33:59 +01:00
exynos5440.h clk: samsung: Use common registration function for pll2550x 2016-09-09 17:35:10 +02: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
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: imx6: add EPIT clock support 2018-06-01 19:19:30 -07:00
imx6sl-clock.h clk: imx6: Add SPDIF_GCLK clock in clock tree 2015-10-12 21:55:59 +08:00
imx6sll-clock.h clk: imx6sll: add GPIO LPCGs 2018-07-06 13:58:20 -07:00
imx6sx-clock.h clk: imx6sx: add missing lvds2 clock to the clock tree 2018-05-04 19:56:58 -07:00
imx6ul-clock.h clk: imx6ul: add GPIO clock gates 2018-06-29 11:41:19 -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
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 DT include for MAX77686 PMIC clock 2014-09-09 13:55:38 -07:00
maxim,max77802.h clk: Add driver for Maxim 77802 PMIC clocks 2014-09-09 13:55:59 -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,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: Fully support apq8064 global clock control 2014-07-11 13:21:22 -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: msm8996-gcc: add missing smmu clks 2017-08-23 16:07:18 -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-sdm845.h clk: qcom: Enable clocks which needs to be always on for SDM845 2018-07-03 10:10:36 -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
r7s72100-clock.h dt-bindings: clk: r7s72100: Add missing I and G clocks 2017-10-16 11:51:10 +02:00
r8a73a4-clock.h ARM: dts: r8a73a4: Add INTC-SYS clock to device tree 2017-03-10 10:19:50 +01: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 clk: renesas: Add r8a7743 CPG Core Clock Definitions 2016-11-07 15:09:12 +01:00
r8a7745-cpg-mssr.h clk: renesas: Add r8a7745 CPG Core Clock Definitions 2016-11-07 15:13:30 +01: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 clk: renesas: Add r8a7790 CPG Core Clock Definitions 2017-05-24 10:19:42 +02:00
r8a7791-clock.h ARM: dts: r8a7791: add GyroADC clock 2017-05-15 09:02:37 +02:00
r8a7791-cpg-mssr.h clk: renesas: Add r8a7791 CPG Core Clock Definitions 2017-05-24 10:19:45 +02:00
r8a7792-clock.h ARM: dts: r8a7792: Correct Z clock 2017-04-03 06:33:23 -04:00
r8a7792-cpg-mssr.h clk: renesas: Add r8a7792 CPG Core Clock Definitions 2017-05-24 10:19:47 +02:00
r8a7793-clock.h ARM: dts: r8a7793: Add INTC-SYS clock to device tree 2017-03-13 10:15:31 +01:00
r8a7793-cpg-mssr.h clk: renesas: Add r8a7793 CPG Core Clock Definitions 2017-05-24 10:19:50 +02:00
r8a7794-clock.h ARM: dts: r8a7794: Add DU1 clock to device tree 2017-03-28 14:17:51 +02:00
r8a7794-cpg-mssr.h clk: renesas: Add r8a7794 CPG Core Clock Definitions 2017-05-24 10:19:53 +02:00
r8a7795-cpg-mssr.h clk: renesas: Add r8a7795 ES2.0 CPG Core Clock Definitions 2017-03-30 13:25:43 +02:00
r8a7796-cpg-mssr.h clk: renesas: Add r8a7796 CPG Core Clock Definitions 2016-06-06 11:58:27 +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: Add R8A77970 CPG core clock definitions 2017-09-19 10:57:35 +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 clk: renesas: Add r8a77995 CPG Core Clock Definitions 2017-08-16 09:51:46 +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 clk: shmobile: Add new Renesas CPG/MSSR DT bindings 2015-10-20 20:35:34 +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 more rk3188 graphics clock ids 2017-10-14 21:30:22 +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 clk: samsung: add clock controller driver for s3c2410, s3c2440 and s3c2442 2014-05-13 08:00:40 +09:00
s3c2412.h clk: samsung: add clock controller driver for s3c2412 2014-04-15 02:11:36 +09:00
s3c2443.h clk: samsung: Add explicit MPLL, EPLL clkdev aliases in S3C2443 driver 2017-10-09 11:32:56 +02: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: samsung: Add bindings for 32kHz clocks from s2mps11 2015-05-17 10:51:10 +09:00
samsung,s3c64xx-clock.h clk: samsung: Add clock driver for S3C64xx SoCs 2013-08-05 11:58:37 -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 clk: sunxi-ng: a64: Export PLL_PERIPH0 clock for the PRCM 2017-05-31 21:57:30 +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
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