1
0
Fork 0
alistair23-linux/Documentation/devicetree/bindings/arm
Linus Torvalds 916f562fb2 This round of clk driver and framework updates is heavy on the driver update
side. The two main highlights in the core framework are the addition of an bulk
 clk_get API that handles optional clks and an extra debugfs file that tells the
 developer about the current parent of a clk.
 
 The driver updates are dominated by i.MX in the diffstat, but that is mostly
 because that SoC has started converting to the clk_hw style of clk
 registration. The next big update is in the Amlogic meson clk driver that
 gained some support for audio, cpu, and temperature clks while fixing some PLL
 issues. Finally, the biggest thing that stands out is the conversion of a large
 part of the Allwinner sunxi-ng driver to the new clk parent scheme that uses
 less strings and more pointer comparisons to match clk parents and children up.
 
 In general, it looks like we have a lot of little fixes and tweaks here and
 there to clk data along with the normal addition of a handful of new drivers
 and a couple new core framework features.
 
 Core:
  - Add a 'clk_parent' file in clk debugfs
  - Add a clk_bulk_get_optional() API (with devm too)
 
 New Drivers:
  - Support gated clk controller on MIPS based BCM63XX SoCs
  - Support SiLabs Si5341 and Si5340 chips
  - Support for CPU clks on Raspberry Pi devices
  - Audsys clock driver for MediaTek MT8516 SoCs
 
 Updates:
  - Convert a large portion of the Allwinner sunxi-ng driver to new clk parent scheme
  - Small frequency support for SiLabs Si544 chips
  - Slow clk support for AT91 SAM9X60 SoCs
  - Remove dead code in various clk drivers (-Wunused)
  - Support for Marvell 98DX1135 SoCs
  - Get duty cycle of generic pwm clks
  - Improvement in mmc phase calculation and cleanup of some rate defintions
  - Switch i.MX6 and i.MX7 clock drivers to clk_hw based APIs
  - Add GPIO, SNVS and GIC clocks for i.MX8 drivers
  - Mark imx6sx/ul/ull/sll MMDC_P1_IPG and imx8mm DRAM_APB as critical clock
  - Correct imx7ulp nic1_bus_clk and imx8mm audio_pll2_clk clock setting
  - Add clks for new Exynos5422 Dynamic Memory Controller driver
  - Clock definition for Exynos4412 Mali
  - Add CMM (Color Management Module) clocks on Renesas R-Car H3, M3-N, E3, and D3
  - Add TPU (Timer Pulse Unit / PWM) clocks on Renesas RZ/G2M
  - Support for 32 bit clock IDs in TI's sci-clks for J721e SoCs
  - TI clock probing done from DT by default instead of firmware
  - Fix Amlogic Meson mpll fractional part and spread sprectrum issues
  - Add Amlogic meson8 audio clocks
  - Add Amlogic g12a temperature sensors clocks
  - Add Amlogic g12a and g12b cpu clocks
  - Add TPU (Timer Pulse Unit / PWM) clocks on Renesas R-Car H3, M3-W, and M3-N
  - Add CMM (Color Management Module) clocks on Renesas R-Car M3-W
  - Add Clock Domain support on Renesas RZ/N1
 -----BEGIN PGP SIGNATURE-----
 
 iQJFBAABCAAvFiEE9L57QeeUxqYDyoaDrQKIl8bklSUFAl0uBEERHHNib3lkQGtl
 cm5lbC5vcmcACgkQrQKIl8bklSWucw/9ELKlfvdxrc8mdIuzt+CpKdNiSG88shXY
 hF+vnuE6Jhv5hmlbA/DbplPTAnHT/FQF65/GPQMAYy2wYO6CjleNxQyepiVv4h8/
 tWoXu5vYZXubtQyMnYTffREzjYFPBNAscLUhXNwJKRno7nT0qKCk62WgOMfaW/KN
 lP5dKmrL7rdJDUvxHEStrwP515Lg5Wkhj3+XzgbgFUKGuGlvHfwUOEZucT++kqhu
 Z1vMjPv2ksHQf3r15BsbX/6jMIONEt2Xd6jA3Lm7ebDXJl2hjX4Gq0Kkl5pmkj2w
 F0V7Tw4XYk6DkSl7HQaOBgQ8KV0Mw2L8Vj6eEDhUwx6wPGlQ5YTKkUCJkjs0mUyb
 UpO3TuPFN2W0hsTNDzwYpjqcfodDn159XJcduv1/ZpIanUvHgx0uVzQ7iwwYwW+l
 VR4SipY5AEn9hpief30X7TAUSKsE4do58imYeoGBrq78zdsJaEcDAMX7AcYdXVQ9
 ahBS8ME/d1JEBNdRsSW7eTAfu8dZdI08uR8/T37GRG59XyZSjsyVmZ6kHCYrBygF
 AyLNMsXMCbW1rOoIpWkuGMD86XZy40laLg8T7WWTaq28t1VQ0BaBTGM4/eEexs3p
 FhZ1M7aH+PsDLrI2IGTBt/4xAMv+dhDS7HnxRlOONbWnLWVqmR+tYzF0aCkqJCmd
 O2zWCGffeYs=
 =mK0C
 -----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 round of clk driver and framework updates is heavy on the driver
  update side. The two main highlights in the core framework are the
  addition of an bulk clk_get API that handles optional clks and an
  extra debugfs file that tells the developer about the current parent
  of a clk.

  The driver updates are dominated by i.MX in the diffstat, but that is
  mostly because that SoC has started converting to the clk_hw style of
  clk registration. The next big update is in the Amlogic meson clk
  driver that gained some support for audio, cpu, and temperature clks
  while fixing some PLL issues. Finally, the biggest thing that stands
  out is the conversion of a large part of the Allwinner sunxi-ng driver
  to the new clk parent scheme that uses less strings and more pointer
  comparisons to match clk parents and children up.

  In general, it looks like we have a lot of little fixes and tweaks
  here and there to clk data along with the normal addition of a handful
  of new drivers and a couple new core framework features.

  Core:
   - Add a 'clk_parent' file in clk debugfs
   - Add a clk_bulk_get_optional() API (with devm too)

  New Drivers:
   - Support gated clk controller on MIPS based BCM63XX SoCs
   - Support SiLabs Si5341 and Si5340 chips
   - Support for CPU clks on Raspberry Pi devices
   - Audsys clock driver for MediaTek MT8516 SoCs

  Updates:
   - Convert a large portion of the Allwinner sunxi-ng driver to new clk parent scheme
   - Small frequency support for SiLabs Si544 chips
   - Slow clk support for AT91 SAM9X60 SoCs
   - Remove dead code in various clk drivers (-Wunused)
   - Support for Marvell 98DX1135 SoCs
   - Get duty cycle of generic pwm clks
   - Improvement in mmc phase calculation and cleanup of some rate defintions
   - Switch i.MX6 and i.MX7 clock drivers to clk_hw based APIs
   - Add GPIO, SNVS and GIC clocks for i.MX8 drivers
   - Mark imx6sx/ul/ull/sll MMDC_P1_IPG and imx8mm DRAM_APB as critical clock
   - Correct imx7ulp nic1_bus_clk and imx8mm audio_pll2_clk clock setting
   - Add clks for new Exynos5422 Dynamic Memory Controller driver
   - Clock definition for Exynos4412 Mali
   - Add CMM (Color Management Module) clocks on Renesas R-Car H3, M3-N, E3, and D3
   - Add TPU (Timer Pulse Unit / PWM) clocks on Renesas RZ/G2M
   - Support for 32 bit clock IDs in TI's sci-clks for J721e SoCs
   - TI clock probing done from DT by default instead of firmware
   - Fix Amlogic Meson mpll fractional part and spread sprectrum issues
   - Add Amlogic meson8 audio clocks
   - Add Amlogic g12a temperature sensors clocks
   - Add Amlogic g12a and g12b cpu clocks
   - Add TPU (Timer Pulse Unit / PWM) clocks on Renesas R-Car H3, M3-W, and M3-N
   - Add CMM (Color Management Module) clocks on Renesas R-Car M3-W
   - Add Clock Domain support on Renesas RZ/N1"

* tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux: (190 commits)
  clk: consoldiate the __clk_get_hw() declarations
  clk: sprd: Add check for return value of sprd_clk_regmap_init()
  clk: lochnagar: Update DT binding doc to include the primary SPDIF MCLK
  clk: Add Si5341/Si5340 driver
  dt-bindings: clock: Add silabs,si5341
  clk: clk-si544: Implement small frequency change support
  clk: add BCM63XX gated clock controller driver
  devicetree: document the BCM63XX gated clock bindings
  clk: at91: sckc: use dedicated functions to unregister clock
  clk: at91: sckc: improve error path for sama5d4 sck registration
  clk: at91: sckc: remove unnecessary line
  clk: at91: sckc: improve error path for sam9x5 sck register
  clk: at91: sckc: add support to free slow clock osclillator
  clk: at91: sckc: add support to free slow rc oscillator
  clk: at91: sckc: add support to free slow oscillator
  clk: rockchip: export HDMIPHY clock on rk3228
  clk: rockchip: add watchdog pclk on rk3328
  clk: rockchip: add clock id for hdmi_phy special clock on rk3228
  clk: rockchip: add clock id for watchdog pclk on rk3328
  clk: at91: sckc: add support for SAM9X60
  ...
2019-07-17 10:07:48 -07:00
..
altera dt-bindings: arm: socfpga: Add S10 System Manager binding 2019-04-02 07:37:54 +01:00
amlogic ARM: Device-tree updates for 4.15 2017-11-16 15:48:26 -08:00
apm
bcm dt-bindings: bcm: Add Raspberry Pi 3 A+ 2019-02-01 11:53:44 +01:00
calxeda dt-bindings: move Calxeda bindings to appropriate subsystems 2015-10-22 09:21:24 -05:00
cpu-enable-method dt-bindings: arm: alpine: Move CPU control related binding to cpu-enable-method/al,alpine-smp 2018-10-04 20:06:21 -05:00
firmware Docs: dt: add devicetree binding for describing arm64 SDEI firmware 2018-01-13 10:44:48 +00:00
freescale dt-bindings: fsl: scu: add ocotp binding 2019-06-19 19:35:50 +02:00
hisilicon dt-bindings: arm: hisilicon: Add binding for HiKey970 board 2018-09-19 16:15:13 +01:00
keystone firmware: ti_sci: Add RM mapping table for am654 2019-05-01 10:41:08 +01:00
marvell dt-bindings: cp110: document the thermal interrupt capabilities 2019-01-02 04:47:19 -08:00
mediatek This round of clk driver and framework updates is heavy on the driver update 2019-07-17 10:07:48 -07:00
mrvl dt-bindings: arm: mrvl: amend Browstone compatible string 2018-12-13 11:10:46 -06:00
msm This time it looks like a quieter release cycle in the clk tree. I guess that's 2018-10-31 11:08:30 -07:00
npcm arm: dts: add Nuvoton NPCM750 device tree 2018-03-06 18:01:15 +01:00
nxp dt-bindings: arm: Convert NXP LPC32xx board/soc bindings to json-schema 2019-06-27 11:24:34 -06:00
omap dt: fix refs that were renamed to json with the same file name 2019-05-22 09:01:01 -05:00
rockchip dt-bindings: Consolidate SRAM bindings from all vendors 2015-12-09 15:29:37 -06:00
samsung ARM: Device-tree updates 2018-08-23 14:02:22 -07:00
socionext dt-bindings: Add documentation for Milbeaut SoCs 2019-03-01 15:18:26 +01:00
stm32 dt-bindings: stm32: syscon: Add clock support 2019-05-14 08:13:25 +01:00
sunxi dt-bindings: bus: Add binding for the Allwinner MBUS controller 2019-04-10 16:33:47 -05:00
tegra dt-bindings: tegra186-pmc: Add interrupt controller properties 2018-11-28 16:42:58 +01:00
ti dt-bindings: arm: Convert TI nspire board/soc bindings to json-schema 2018-12-13 11:09:46 -06:00
ux500 dt-bindings: arm: scu: Correct example SCU unit addresses 2018-09-20 14:55:55 -07:00
vt8500 dt-bindings: move various timer bindings to timer/ directory 2018-04-27 16:56:47 -05:00
actions.txt Actions Semi arm64 based SoC DT for v4.16 2018-01-04 22:36:42 -08:00
al,alpine.yaml dt-bindings: arm: Convert Alpine board/soc bindings to json-schema 2019-06-27 11:22:00 -06:00
altera.yaml dt-bindings: arm: Convert Altera board/soc bindings to json-schema 2018-12-13 09:41:50 -06:00
amlogic,scpi.txt Documentation: bindings: Add missing Amlogic SCPI sensor bindings 2018-11-29 12:29:58 -08:00
amlogic.txt arm64: dts: Add SEI Robotics SEI510 Board 2019-03-18 09:07:15 -07:00
arm,scmi.txt dt-bindings: arm: add support for ARM System Control and Management Interface(SCMI) protocol 2018-02-28 16:37:57 +00:00
arm,scpi.txt Documentation: bindings: add compatible specific to pre v1.0 SCPI protocols 2016-11-17 16:31:12 +00:00
arm-boards dt-bindings: arm: Convert PSCI binding to json-schema 2019-06-27 11:32:51 -06:00
arm-dsu-pmu.txt dt-bindings: Document devicetree binding for ARM DSU PMU 2018-01-02 16:43:12 +00:00
atmel-at91.txt dt-bindings: arm: atmel: add binding for SAM9X60 SoC 2019-03-28 11:05:52 +01:00
atmel-sysregs.txt dt-bindings: arm: atmel: add binding for SAM9X60 shutdown controller 2019-04-05 17:51:20 +02:00
axentia.txt ARM: dts: at91: add devicetree for the Axentia Nattis with Natte power 2017-12-04 20:37:45 +01:00
axis.txt ARM: add device-tree SoC bindings for Axis Artpec-6 2016-02-24 13:56:20 -08:00
axxia.yaml dt-bindings: arm: Convert Axxia board/soc bindings to json-schema 2019-06-27 11:24:32 -06:00
bitmain.yaml dt-bindings: arm: Document Bitmain BM1880 SoC 2019-02-09 16:09:43 +05:30
calxeda.yaml dt-bindings: arm: Convert Calxeda board/soc bindings to json-schema 2018-12-13 09:41:51 -06:00
cavium-thunder.txt
cavium-thunder2.txt dt-bindings: Add arm64 ARCH_THUNDER2 platform documentation 2017-03-31 11:40:12 +02:00
cci.txt of: update ePAPR references to point to Devicetree Specification 2017-06-22 11:22:06 -05:00
coresight-cpu-debug.txt dt-bindings: coresight: Change CPU phandle to required property 2019-07-04 12:23:26 +02:00
coresight.txt dt-bindings: coresight: Change CPU phandle to required property 2019-07-04 12:23:26 +02:00
cpu-capacity.txt dt-bindings: arm: Clean up CPU binding examples 2019-05-22 09:01:02 -05:00
cpus.yaml dt-bindings: arm: Limit cpus schema to only check Arm 'cpu' nodes 2019-06-28 14:29:56 -06:00
digicolor.yaml dt-bindings: arm: Convert Conexant Digicolor board/soc bindings to json-schema 2019-06-27 11:24:39 -06:00
emtrion.txt dt-bindings: arm: Document emtrion emCON-MX6 bindings 2018-12-10 10:02:24 +08:00
fsl.yaml dt-bindings: arm: fsl: Add support for ZII i.MX7 RPU2 board 2019-04-22 09:00:45 +08:00
fw-cfg.txt devicetree: update documentation for fw_cfg ARM bindings 2016-02-09 17:37:39 -08:00
gemini.txt dt-bindings: Augment Gemini for clocks, resets 2017-05-24 10:50:11 +02:00
idle-states.txt dt-bindings: arm: Convert PSCI binding to json-schema 2019-06-27 11:32:51 -06:00
intel-ixp4xx.yaml ARM: ixp4xx: Add DT bindings 2019-04-23 16:02:14 +02:00
juno,scpi.txt Documentation: bindings: decouple juno specific details from generic binding 2016-11-17 16:30:56 +00:00
l2c2x0.yaml dt-bindings: arm: l2x0: Convert L2 cache to json-schema 2019-02-13 09:58:13 -06:00
mediatek.txt dt-bindings: arm: mediatek: add support for MT7622 BPI-R64 and MT7629 RFB 2019-02-07 17:51:51 +01:00
moxart.yaml dt-bindings: arm: Convert MOXA ART board/soc bindings to json-schema 2019-06-27 11:24:33 -06:00
oxnas.txt ARM: dts: Add support for OX820 and Pogoplug V3 2016-11-04 11:23:09 +01:00
picoxcell.txt
pmu.yaml dt-bindings: arm: Convert PMU binding to json-schema 2019-01-14 14:40:59 +00:00
primecell.yaml dt-bindings: arm: Convert primecell binding to json-schema 2018-12-13 09:41:50 -06:00
psci.yaml dt-bindings: arm: Convert PSCI binding to json-schema 2019-06-27 11:32:51 -06:00
qcom.yaml dt-bindings: arm: qcom: Add missing schema for IPQ4019 boards 2019-06-27 11:22:58 -06:00
rda.yaml dt-bindings: arm: Convert RDA Micro board/soc bindings to json-schema 2019-07-09 12:56:17 -06:00
realtek.txt dt-bindings: arm: realtek: Document MeLE V9 2017-10-26 16:22:19 +09:00
renesas,prr.txt dt-bindings: arm: renesas: Move 'renesas,prr' binding to its own doc 2018-12-06 11:33:22 -08:00
renesas.yaml dt-bindings: arm: renesas: Fix SoC mismatch for Stout 2019-01-30 10:58:00 +01:00
rockchip.yaml Core new soc features are hdmi-cec for rk3328, scheduler capacity-values 2019-04-28 12:15:49 -07:00
rtsm-dcscb.txt
scu.txt dt-bindings: arm: scu: Correct example SCU unit addresses 2018-09-20 14:55:55 -07:00
secure.txt Documentation: dt: Add binding for /secure-chosen/stdout-path 2018-10-12 15:44:12 -05:00
sirf.yaml dt-bindings: arm: Convert CSR SiRF board/soc bindings to json-schema 2018-12-13 11:09:46 -06:00
sp810.txt doc: bindings: fix bad reference to ARM CPU bindings 2019-01-11 17:12:50 -06:00
spe-pmu.txt dt-bindings: Document devicetree binding for ARM SPE 2017-10-18 12:53:33 +01:00
spear-misc.txt Documentation: dt: arm: fix spelling mistakes 2016-04-25 08:38:54 -05:00
spear.yaml dt-bindings: arm: Convert SPEAr board/soc bindings to json-schema 2018-12-13 11:09:46 -06:00
sprd.txt dt-bindings: arm: Add bindings for SP9860G 2017-04-08 18:42:46 +02:00
ste-nomadik.txt
ste-u300.txt
sti.yaml dt-bindings: arm: Convert ST STi board/soc bindings to json-schema 2018-12-13 11:09:47 -06:00
sunxi.yaml dt-bindings: sunxi: Add compatible for OrangePi 3 board 2019-04-09 10:10:32 +02:00
swir.txt dt-bindings: arm: Add Sierra Wireless modules bindings 2016-11-18 23:30:27 -06:00
syna.txt dt-bindings: arm: syna: add support for the AS370 SoC 2018-09-27 14:48:27 +08:00
tegra.yaml dt-bindings: tegra: Add Shield TV device tree binding documentation 2019-01-25 13:08:10 +01:00
topology.txt doc: bindings: fix bad reference to ARM CPU bindings 2019-01-11 17:12:50 -06:00
versatile-sysreg.txt
vexpress-scc.txt
vexpress-sysreg.txt dt-bindings: Remove leading zeros from bindings notation 2017-11-09 17:05:05 -06:00
vexpress.txt
vt8500.yaml dt-bindings: arm: Convert VIA board/soc bindings to json-schema 2018-12-13 11:09:47 -06:00
xen.txt docs: arm: convert docs to ReST and rename to *.rst 2019-07-15 09:20:24 -03:00
xilinx.yaml dt-bindings: arm: Add missing Xilinx boards 2018-12-13 11:09:47 -06:00
zte,sysctrl.txt dt-bindings: arm: zte: Move sysctrl bindings to their own doc 2018-10-11 14:52:01 -05:00
zte.yaml dt-bindings: arm: Convert ZTE board/soc bindings to json-schema 2018-12-13 11:09:47 -06:00