mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
![]() the diff is all the new Qualcomm clk drivers added for a few SoCs they're working on. The other two vendors with significant work this cycle are Renesas and Amlogic. Renesas adds a bunch of clks to existing drivers and supports some new SoCs while Amlogic is starting a significant refactoring to simplify their code. The core framework gained a pair of helpers to get the 'struct device' or 'struct device_node' associated with a 'struct clk_hw'. Some associated KUnit tests were added for these simple helpers as well. Beyond that core change there are lots of little fixes throughout the clk drivers for the stuff we see every day, wrong clk driver data that affects tree topology or supported frequencies, etc. They're not found until the clks are actually used by some consumer device driver. New Drivers: - Global, display, gpu, video, camera, tcsr, and rpmh clock controller for the Qualcomm Milos SoC - Camera, display, GPU, and video clock controllers for Qualcomm QCS615 - Video clock controller driver for Qualcomm SM6350 - Camera clock controller driver for Qualcomm SC8180X - I3C clocks and resets on Renesas RZ/G3E - Expanded Serial Peripheral Interface (xSPI) clocks and resets on Renesas RZ/V2H(P) and RZ/V2N - SPI (RSPI) clocks and resets on Renesas RZ/V2H(P) - SDHI and I2C clocks on Renesas RZ/T2H and RZ/N2H - Ethernet clocks and resets on Renesas RZ/G3E - Initial support for the Renesas RZ/T2H (R9A09G077) and RZ/N2H (R9A09G087) SoCs - Ethernet clocks and resets on Renesas RZ/V2H and RZ/V2N - Timer, I2C, watchdog, GPU, and USB2.0 clocks and resets on Renesas RZ/V2N Updates: - Support atomic PWMs in the PWM clk driver - clk_hw_get_dev() and clk_hw_get_of_node() helpers - Replace round_rate() with determine_rate() in various clk drivers - Convert clk DT bindings to DT schema format for DT validation - Various clk driver cleanups and refactorings from static analysis tools and possibly real humans - A lot of little fixes here and there to things like clk tree topology, missing frequencies, flagging clks as critical, etc. The full details are in the commits and sub-tree merge logs -----BEGIN PGP SIGNATURE----- iQJIBAABCAAyFiEE9L57QeeUxqYDyoaDrQKIl8bklSUFAmiLljkUHHN3Ym95ZEBj aHJvbWl1bS5vcmcACgkQrQKIl8bklSVR1BAAm5hnFdYvNX/AYK+bNNbb/YkbveGr wxrZFjd/1QEZii7UBBOENLjvbrxT4N93TGuwuHOy+iz53X4mWg1BST0RENtmks9v rys7suEkDVA7KoDEbcvbUhLbLObEQvr3sxurl2mvq563y02hkJ+rt3kDqdCn/MFK fUfqZ79oPLaMULy3XwFyrEQEcxqQTX7i+j1atCB4TPmBSu3R5WMsCS+IVKPCuxCF qcan5hCXakv4gBE/jF9x/u28j0m9v16uB2O/7sH3uDzHo/FxShBmC53Bj2Mtaf2w lSKhEngCAMItU2LtruO2szpsmoy9EZTIqzELr5GJGXFDQDHiTzcigRtD5MCWjdG1 aapgWs47Yslh0M+d8Im81hu1YaLGDuoY7QiOVMN/htn0nPEozU1farKJbD3/gj9U C6648EXYa/dqDBRRHeqLi4n1RK0Fzb15VvsanKn1nLy+cOvzNI4bpJjEJlUQjZMN 8MzvzBgLNsydDQC5I8JAPPK2Fcdpk3KpchphZrXLZY8iRco5kvx1mRjh90Lvr8N8 rmpUC6p1BdEIGhL+NAh7qCz9DOKfsaFr13tHpqD/PItzfHIyd7mss+7GSD6WCa/b MduE9172Uq0mY8ZnWe0vV7/+s9GE7oTsxdMC6oF5yTXRIpog7evkUqNyXhpNTxgS C2DLCDhaqpHI28c= =S+dB -----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 is the usual collection of primarily clk driver updates. The big part of the diff is all the new Qualcomm clk drivers added for a few SoCs they're working on. The other two vendors with significant work this cycle are Renesas and Amlogic. Renesas adds a bunch of clks to existing drivers and supports some new SoCs while Amlogic is starting a significant refactoring to simplify their code. The core framework gained a pair of helpers to get the 'struct device' or 'struct device_node' associated with a 'struct clk_hw'. Some associated KUnit tests were added for these simple helpers as well. Beyond that core change there are lots of little fixes throughout the clk drivers for the stuff we see every day, wrong clk driver data that affects tree topology or supported frequencies, etc. They're not found until the clks are actually used by some consumer device driver. New Drivers: - Global, display, gpu, video, camera, tcsr, and rpmh clock controller for the Qualcomm Milos SoC - Camera, display, GPU, and video clock controllers for Qualcomm QCS615 - Video clock controller driver for Qualcomm SM6350 - Camera clock controller driver for Qualcomm SC8180X - I3C clocks and resets on Renesas RZ/G3E - Expanded Serial Peripheral Interface (xSPI) clocks and resets on Renesas RZ/V2H(P) and RZ/V2N - SPI (RSPI) clocks and resets on Renesas RZ/V2H(P) - SDHI and I2C clocks on Renesas RZ/T2H and RZ/N2H - Ethernet clocks and resets on Renesas RZ/G3E - Initial support for the Renesas RZ/T2H (R9A09G077) and RZ/N2H (R9A09G087) SoCs - Ethernet clocks and resets on Renesas RZ/V2H and RZ/V2N - Timer, I2C, watchdog, GPU, and USB2.0 clocks and resets on Renesas RZ/V2N Updates: - Support atomic PWMs in the PWM clk driver - clk_hw_get_dev() and clk_hw_get_of_node() helpers - Replace round_rate() with determine_rate() in various clk drivers - Convert clk DT bindings to DT schema format for DT validation - Various clk driver cleanups and refactorings from static analysis tools and possibly real humans - A lot of little fixes here and there to things like clk tree topology, missing frequencies, flagging clks as critical, etc" * tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux: (216 commits) clk: clocking-wizard: Fix the round rate handling for versal clk: Fix typos clk: spacemit: ccu_pll: fix error return value in recalc_rate callback clk: tegra: periph: Make tegra_clk_periph_ops static clk: tegra: periph: Fix error handling and resolve unsigned compare warning clk: imx: scu: convert from round_rate() to determine_rate() clk: imx: pllv4: convert from round_rate() to determine_rate() clk: imx: pllv3: convert from round_rate() to determine_rate() clk: imx: pllv2: convert from round_rate() to determine_rate() clk: imx: pll14xx: convert from round_rate() to determine_rate() clk: imx: pfd: convert from round_rate() to determine_rate() clk: imx: frac-pll: convert from round_rate() to determine_rate() clk: imx: fracn-gppll: convert from round_rate() to determine_rate() clk: imx: fixup-div: convert from round_rate() to determine_rate() clk: imx: cpu: convert from round_rate() to determine_rate() clk: imx: busy: convert from round_rate() to determine_rate() clk: imx: composite-93: remove round_rate() in favor of determine_rate() clk: imx: composite-8m: remove round_rate() in favor of determine_rate() clk: qcom: Remove redundant pm_runtime_mark_last_busy() calls clk: imx: Remove redundant pm_runtime_mark_last_busy() calls ... |
||
---|---|---|
.. | ||
actions,s500-cmu.h | ||
actions,s700-cmu.h | ||
actions,s900-cmu.h | ||
agilex-clock.h | ||
alphascale,asm9260.h | ||
am3.h | ||
am4.h | ||
amlogic,a1-peripherals-clkc.h | ||
amlogic,a1-pll-clkc.h | ||
amlogic,c3-peripherals-clkc.h | ||
amlogic,c3-pll-clkc.h | ||
amlogic,c3-scmi-clkc.h | ||
amlogic,s4-peripherals-clkc.h | ||
amlogic,s4-pll-clkc.h | ||
aspeed,ast2700-scu.h | ||
aspeed-clock.h | ||
ast2600-clock.h | ||
at91.h | ||
ath79-clk.h | ||
axg-aoclkc.h | ||
axg-audio-clkc.h | ||
axg-clkc.h | ||
axis,artpec6-clkctrl.h | ||
bcm-cygnus.h | ||
bcm-ns2.h | ||
bcm-nsp.h | ||
bcm-sr.h | ||
bcm281xx.h | ||
bcm2835-aux.h | ||
bcm2835.h | ||
bcm3368-clock.h | ||
bcm6318-clock.h | ||
bcm6328-clock.h | ||
bcm6358-clock.h | ||
bcm6362-clock.h | ||
bcm6368-clock.h | ||
bcm21664.h | ||
bcm63268-clock.h | ||
berlin2.h | ||
berlin2q.h | ||
bm1880-clock.h | ||
boston-clock.h | ||
bt1-ccu.h | ||
cirrus,cs2000-cp.h | ||
cirrus,ep9301-syscon.h | ||
cix,sky1.h | ||
clps711x-clock.h | ||
cortina,gemini-clock.h | ||
dm814.h | ||
dm816.h | ||
dra7.h | ||
en7523-clk.h | ||
exynos-audss-clk.h | ||
exynos4.h | ||
exynos7-clk.h | ||
exynos850.h | ||
exynos3250.h | ||
exynos5250.h | ||
exynos5260-clk.h | ||
exynos5410.h | ||
exynos5420.h | ||
exynos5433.h | ||
exynos7885.h | ||
fsd-clk.h | ||
fsl,qoriq-clockgen.h | ||
g12a-aoclkc.h | ||
g12a-clkc.h | ||
google,gs101.h | ||
gxbb-aoclkc.h | ||
gxbb-clkc.h | ||
hi3516cv300-clock.h | ||
hi3519-clock.h | ||
hi3559av100-clock.h | ||
hi3620-clock.h | ||
hi3660-clock.h | ||
hi3670-clock.h | ||
hi6220-clock.h | ||
hip04-clock.h | ||
histb-clock.h | ||
hix5hd2-clock.h | ||
imx1-clock.h | ||
imx5-clock.h | ||
imx6qdl-clock.h | ||
imx6sl-clock.h | ||
imx6sll-clock.h | ||
imx6sx-clock.h | ||
imx6ul-clock.h | ||
imx7d-clock.h | ||
imx7ulp-clock.h | ||
imx8-clock.h | ||
imx8-lpcg.h | ||
imx8mm-clock.h | ||
imx8mn-clock.h | ||
imx8mp-clock.h | ||
imx8mq-clock.h | ||
imx8ulp-clock.h | ||
imx21-clock.h | ||
imx27-clock.h | ||
imx93-clock.h | ||
imxrt1050-clock.h | ||
ingenic,jz4725b-cgu.h | ||
ingenic,jz4740-cgu.h | ||
ingenic,jz4755-cgu.h | ||
ingenic,jz4760-cgu.h | ||
ingenic,jz4770-cgu.h | ||
ingenic,jz4780-cgu.h | ||
ingenic,sysost.h | ||
ingenic,tcu.h | ||
ingenic,x1000-cgu.h | ||
ingenic,x1830-cgu.h | ||
intel,agilex5-clkmgr.h | ||
intel,lgm-clk.h | ||
k210-clk.h | ||
lochnagar.h | ||
loongson,ls1x-clk.h | ||
loongson,ls2k-clk.h | ||
lpc18xx-ccu.h | ||
lpc18xx-cgu.h | ||
lpc32xx-clock.h | ||
lsi,axm5516-clks.h | ||
marvell,mmp2-audio.h | ||
marvell,mmp2.h | ||
marvell,pxa168.h | ||
marvell,pxa910.h | ||
marvell,pxa1908.h | ||
marvell,pxa1928.h | ||
maxim,max9485.h | ||
maxim,max77620.h | ||
maxim,max77686.h | ||
maxim,max77802.h | ||
mediatek,mt6735-apmixedsys.h | ||
mediatek,mt6735-imgsys.h | ||
mediatek,mt6735-infracfg.h | ||
mediatek,mt6735-mfgcfg.h | ||
mediatek,mt6735-pericfg.h | ||
mediatek,mt6735-topckgen.h | ||
mediatek,mt6735-vdecsys.h | ||
mediatek,mt6735-vencsys.h | ||
mediatek,mt6795-clk.h | ||
mediatek,mt7981-clk.h | ||
mediatek,mt7988-clk.h | ||
mediatek,mt8188-clk.h | ||
mediatek,mt8365-clk.h | ||
mediatek,mtmips-sysc.h | ||
meson8-ddr-clkc.h | ||
meson8b-clkc.h | ||
microchip,lan966x.h | ||
microchip,mpfs-clock.h | ||
microchip,pic32-clock.h | ||
microchip,sparx5.h | ||
mobileye,eyeq5-clk.h | ||
mpc512x-clock.h | ||
mstar-msc313-mpll.h | ||
mt2701-clk.h | ||
mt2712-clk.h | ||
mt6765-clk.h | ||
mt6779-clk.h | ||
mt6797-clk.h | ||
mt7621-clk.h | ||
mt7622-clk.h | ||
mt7629-clk.h | ||
mt7986-clk.h | ||
mt8135-clk.h | ||
mt8167-clk.h | ||
mt8173-clk.h | ||
mt8183-clk.h | ||
mt8186-clk.h | ||
mt8192-clk.h | ||
mt8195-clk.h | ||
mt8516-clk.h | ||
nuvoton,ma35d1-clk.h | ||
nuvoton,npcm7xx-clock.h | ||
nuvoton,npcm845-clk.h | ||
nvidia,tegra264.h | ||
nxp,imx94-clock.h | ||
nxp,imx95-clock.h | ||
omap4.h | ||
omap5.h | ||
oxsemi,ox810se.h | ||
oxsemi,ox820.h | ||
pistachio-clk.h | ||
px30-cru.h | ||
pxa-clock.h | ||
qcom,apss-ipq.h | ||
qcom,camcc-sc7180.h | ||
qcom,camcc-sc7280.h | ||
qcom,camcc-sdm845.h | ||
qcom,camcc-sm8250.h | ||
qcom,dispcc-qcm2290.h | ||
qcom,dispcc-sc7180.h | ||
qcom,dispcc-sc7280.h | ||
qcom,dispcc-sc8280xp.h | ||
qcom,dispcc-sdm845.h | ||
qcom,dispcc-sm6125.h | ||
qcom,dispcc-sm6350.h | ||
qcom,dispcc-sm8150.h | ||
qcom,dispcc-sm8250.h | ||
qcom,dispcc-sm8350.h | ||
qcom,dsi-phy-28nm.h | ||
qcom,gcc-apq8084.h | ||
qcom,gcc-ipq806x.h | ||
qcom,gcc-ipq4019.h | ||
qcom,gcc-ipq5018.h | ||
qcom,gcc-ipq6018.h | ||
qcom,gcc-ipq8074.h | ||
qcom,gcc-mdm9607.h | ||
qcom,gcc-mdm9615.h | ||
qcom,gcc-msm8660.h | ||
qcom,gcc-msm8909.h | ||
qcom,gcc-msm8916.h | ||
qcom,gcc-msm8917.h | ||
qcom,gcc-msm8939.h | ||
qcom,gcc-msm8953.h | ||
qcom,gcc-msm8960.h | ||
qcom,gcc-msm8974.h | ||
qcom,gcc-msm8976.h | ||
qcom,gcc-msm8994.h | ||
qcom,gcc-msm8996.h | ||
qcom,gcc-msm8998.h | ||
qcom,gcc-qcm2290.h | ||
qcom,gcc-qcs404.h | ||
qcom,gcc-sc7180.h | ||
qcom,gcc-sc7280.h | ||
qcom,gcc-sc8180x.h | ||
qcom,gcc-sc8280xp.h | ||
qcom,gcc-sdm660.h | ||
qcom,gcc-sdm845.h | ||
qcom,gcc-sdx55.h | ||
qcom,gcc-sdx65.h | ||
qcom,gcc-sm6115.h | ||
qcom,gcc-sm6125.h | ||
qcom,gcc-sm6350.h | ||
qcom,gcc-sm8150.h | ||
qcom,gcc-sm8250.h | ||
qcom,gcc-sm8350.h | ||
qcom,gcc-sm8450.h | ||
qcom,gpucc-msm8998.h | ||
qcom,gpucc-sc7180.h | ||
qcom,gpucc-sc7280.h | ||
qcom,gpucc-sc8280xp.h | ||
qcom,gpucc-sdm660.h | ||
qcom,gpucc-sdm845.h | ||
qcom,gpucc-sm6350.h | ||
qcom,gpucc-sm8150.h | ||
qcom,gpucc-sm8250.h | ||
qcom,gpucc-sm8350.h | ||
qcom,ipq-cmn-pll.h | ||
qcom,ipq5018-cmn-pll.h | ||
qcom,ipq5332-gcc.h | ||
qcom,ipq5424-cmn-pll.h | ||
qcom,ipq5424-gcc.h | ||
qcom,ipq9574-gcc.h | ||
qcom,ipq9574-nsscc.h | ||
qcom,lcc-ipq806x.h | ||
qcom,lcc-msm8960.h | ||
qcom,lpass-sc7280.h | ||
qcom,lpass-sdm845.h | ||
qcom,lpassaudiocc-sc7280.h | ||
qcom,lpasscorecc-sc7180.h | ||
qcom,lpasscorecc-sc7280.h | ||
qcom,milos-camcc.h | ||
qcom,milos-dispcc.h | ||
qcom,milos-gcc.h | ||
qcom,milos-gpucc.h | ||
qcom,milos-videocc.h | ||
qcom,mmcc-apq8084.h | ||
qcom,mmcc-msm8960.h | ||
qcom,mmcc-msm8974.h | ||
qcom,mmcc-msm8994.h | ||
qcom,mmcc-msm8996.h | ||
qcom,mmcc-msm8998.h | ||
qcom,mmcc-sdm660.h | ||
qcom,mss-sc7180.h | ||
qcom,q6sstopcc-qcs404.h | ||
qcom,qca8k-nsscc.h | ||
qcom,qcm2290-gpucc.h | ||
qcom,qcs615-camcc.h | ||
qcom,qcs615-dispcc.h | ||
qcom,qcs615-gcc.h | ||
qcom,qcs615-gpucc.h | ||
qcom,qcs615-videocc.h | ||
qcom,qcs8300-camcc.h | ||
qcom,qcs8300-gcc.h | ||
qcom,qcs8300-gpucc.h | ||
qcom,qdu1000-ecpricc.h | ||
qcom,qdu1000-gcc.h | ||
qcom,rpmcc.h | ||
qcom,rpmh.h | ||
qcom,sa8775p-camcc.h | ||
qcom,sa8775p-dispcc.h | ||
qcom,sa8775p-gcc.h | ||
qcom,sa8775p-gpucc.h | ||
qcom,sa8775p-videocc.h | ||
qcom,sar2130p-gcc.h | ||
qcom,sar2130p-gpucc.h | ||
qcom,sc8180x-camcc.h | ||
qcom,sc8280xp-camcc.h | ||
qcom,sc8280xp-lpasscc.h | ||
qcom,sdx75-gcc.h | ||
qcom,sm4450-camcc.h | ||
qcom,sm4450-dispcc.h | ||
qcom,sm4450-gcc.h | ||
qcom,sm4450-gpucc.h | ||
qcom,sm6115-dispcc.h | ||
qcom,sm6115-gpucc.h | ||
qcom,sm6115-lpasscc.h | ||
qcom,sm6125-gpucc.h | ||
qcom,sm6350-camcc.h | ||
qcom,sm6350-videocc.h | ||
qcom,sm6375-dispcc.h | ||
qcom,sm6375-gcc.h | ||
qcom,sm6375-gpucc.h | ||
qcom,sm7150-camcc.h | ||
qcom,sm7150-dispcc.h | ||
qcom,sm7150-gcc.h | ||
qcom,sm7150-videocc.h | ||
qcom,sm8150-camcc.h | ||
qcom,sm8250-lpass-aoncc.h | ||
qcom,sm8250-lpass-audiocc.h | ||
qcom,sm8350-videocc.h | ||
qcom,sm8450-camcc.h | ||
qcom,sm8450-dispcc.h | ||
qcom,sm8450-gpucc.h | ||
qcom,sm8450-videocc.h | ||
qcom,sm8550-camcc.h | ||
qcom,sm8550-dispcc.h | ||
qcom,sm8550-gcc.h | ||
qcom,sm8550-gpucc.h | ||
qcom,sm8550-tcsr.h | ||
qcom,sm8650-camcc.h | ||
qcom,sm8650-dispcc.h | ||
qcom,sm8650-gcc.h | ||
qcom,sm8650-gpucc.h | ||
qcom,sm8650-tcsr.h | ||
qcom,sm8650-videocc.h | ||
qcom,sm8750-dispcc.h | ||
qcom,sm8750-gcc.h | ||
qcom,sm8750-tcsr.h | ||
qcom,turingcc-qcs404.h | ||
qcom,videocc-sc7180.h | ||
qcom,videocc-sc7280.h | ||
qcom,videocc-sdm845.h | ||
qcom,videocc-sm8150.h | ||
qcom,videocc-sm8250.h | ||
qcom,x1e80100-camcc.h | ||
qcom,x1e80100-dispcc.h | ||
qcom,x1e80100-gcc.h | ||
qcom,x1e80100-gpucc.h | ||
qcom,x1e80100-tcsr.h | ||
r7s9210-cpg-mssr.h | ||
r7s72100-clock.h | ||
r8a73a4-clock.h | ||
r8a774a1-cpg-mssr.h | ||
r8a774b1-cpg-mssr.h | ||
r8a774c0-cpg-mssr.h | ||
r8a774e1-cpg-mssr.h | ||
r8a779a0-cpg-mssr.h | ||
r8a779f0-cpg-mssr.h | ||
r8a779g0-cpg-mssr.h | ||
r8a7740-clock.h | ||
r8a7742-cpg-mssr.h | ||
r8a7743-cpg-mssr.h | ||
r8a7744-cpg-mssr.h | ||
r8a7745-cpg-mssr.h | ||
r8a7778-clock.h | ||
r8a7779-clock.h | ||
r8a7790-cpg-mssr.h | ||
r8a7791-cpg-mssr.h | ||
r8a7792-cpg-mssr.h | ||
r8a7793-cpg-mssr.h | ||
r8a7794-cpg-mssr.h | ||
r8a7795-cpg-mssr.h | ||
r8a7796-cpg-mssr.h | ||
r8a77470-cpg-mssr.h | ||
r8a77961-cpg-mssr.h | ||
r8a77965-cpg-mssr.h | ||
r8a77970-cpg-mssr.h | ||
r8a77980-cpg-mssr.h | ||
r8a77990-cpg-mssr.h | ||
r8a77995-cpg-mssr.h | ||
r9a06g032-sysctrl.h | ||
r9a07g043-cpg.h | ||
r9a07g044-cpg.h | ||
r9a07g054-cpg.h | ||
r9a08g045-cpg.h | ||
r9a09g011-cpg.h | ||
raspberrypi,rp1-clocks.h | ||
renesas,r8a779h0-cpg-mssr.h | ||
renesas,r9a08g045-vbattb.h | ||
renesas,r9a09g047-cpg.h | ||
renesas,r9a09g056-cpg.h | ||
renesas,r9a09g057-cpg.h | ||
renesas,r9a09g077-cpg-mssr.h | ||
renesas,r9a09g087-cpg-mssr.h | ||
renesas-cpg-mssr.h | ||
rk3036-cru.h | ||
rk3066a-cru.h | ||
rk3128-cru.h | ||
rk3188-cru-common.h | ||
rk3188-cru.h | ||
rk3228-cru.h | ||
rk3288-cru.h | ||
rk3308-cru.h | ||
rk3328-cru.h | ||
rk3368-cru.h | ||
rk3399-cru.h | ||
rk3399-ddr.h | ||
rk3568-cru.h | ||
rockchip,rk808.h | ||
rockchip,rk3528-cru.h | ||
rockchip,rk3562-cru.h | ||
rockchip,rk3576-cru.h | ||
rockchip,rk3588-cru.h | ||
rockchip,rv1126-cru.h | ||
rv1108-cru.h | ||
s5pv210-audss.h | ||
s5pv210.h | ||
samsung,exynos990.h | ||
samsung,exynos2200-cmu.h | ||
samsung,exynos7870-cmu.h | ||
samsung,exynos8895.h | ||
samsung,exynosautov9.h | ||
samsung,exynosautov920.h | ||
samsung,s2mps11.h | ||
samsung,s3c64xx-clock.h | ||
sh73a0-clock.h | ||
sifive-fu540-prci.h | ||
sifive-fu740-prci.h | ||
sophgo,cv1800.h | ||
sophgo,sg2042-clkgen.h | ||
sophgo,sg2042-pll.h | ||
sophgo,sg2042-rpgate.h | ||
sophgo,sg2044-clk.h | ||
sophgo,sg2044-pll.h | ||
spacemit,k1-syscon.h | ||
sprd,sc9860-clk.h | ||
sprd,sc9863a-clk.h | ||
sprd,ums512-clk.h | ||
st,stm32mp25-rcc.h | ||
starfive,jh7110-crg.h | ||
starfive-jh7100-audio.h | ||
starfive-jh7100.h | ||
ste-ab8500.h | ||
ste-db8500-clkout.h | ||
stih407-clks.h | ||
stih410-clks.h | ||
stih418-clks.h | ||
stm32fx-clock.h | ||
stm32h7-clks.h | ||
stm32mp1-clks.h | ||
stm32mp13-clks.h | ||
stratix10-clock.h | ||
sun4i-a10-ccu.h | ||
sun4i-a10-pll2.h | ||
sun5i-ccu.h | ||
sun6i-a31-ccu.h | ||
sun6i-rtc.h | ||
sun7i-a20-ccu.h | ||
sun8i-a23-a33-ccu.h | ||
sun8i-a83t-ccu.h | ||
sun8i-de2.h | ||
sun8i-h3-ccu.h | ||
sun8i-r-ccu.h | ||
sun8i-r40-ccu.h | ||
sun8i-tcon-top.h | ||
sun8i-v3s-ccu.h | ||
sun9i-a80-ccu.h | ||
sun9i-a80-de.h | ||
sun9i-a80-usb.h | ||
sun20i-d1-ccu.h | ||
sun20i-d1-r-ccu.h | ||
sun50i-a64-ccu.h | ||
sun50i-a100-ccu.h | ||
sun50i-a100-r-ccu.h | ||
sun50i-h6-ccu.h | ||
sun50i-h6-r-ccu.h | ||
sun50i-h616-ccu.h | ||
sun55i-a523-ccu.h | ||
sun55i-a523-r-ccu.h | ||
suniv-ccu-f1c100s.h | ||
sunplus,sp7021-clkc.h | ||
tegra20-car.h | ||
tegra30-car.h | ||
tegra114-car.h | ||
tegra124-car-common.h | ||
tegra124-car.h | ||
tegra186-clock.h | ||
tegra194-clock.h | ||
tegra210-car.h | ||
tegra234-clock.h | ||
thead,th1520-clk-ap.h | ||
ti-dra7-atl.h | ||
toshiba,tmpv770x.h | ||
versaclock.h | ||
vf610-clock.h | ||
xlnx-vcu.h | ||
xlnx-versal-clk.h | ||
xlnx-zynqmp-clk.h |