Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: timer: Remove binding for energymicro,efm32-timer.txt

The driver has been removed by commit 523d83ef0979
("clocksource/drivers/efm32: Drop unused timer code") that's why binding
doc shouldn't be also valid anymore.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Link: https://lore.kernel.org/r/571fc4b2e6d41c61b7f4445601a79bb50aace2e7.1628245879.git.michal.simek@xilinx.com
Signed-off-by: Rob Herring <robh@kernel.org>

authored by

Michal Simek and committed by
Rob Herring
3e7e69f2 51ca8fcb

-23
-23
Documentation/devicetree/bindings/timer/energymicro,efm32-timer.txt
··· 1 - * EFM32 timer hardware 2 - 3 - The efm32 Giant Gecko SoCs come with four 16 bit timers. Two counters can be 4 - connected to form a 32 bit counter. Each timer has three Compare/Capture 5 - channels and can be used as PWM or Quadrature Decoder. Available clock sources 6 - are the cpu's HFPERCLK (with a 10-bit prescaler) or an external pin. 7 - 8 - Required properties: 9 - - compatible : Should be "energymicro,efm32-timer" 10 - - reg : Address and length of the register set 11 - - clocks : Should contain a reference to the HFPERCLK 12 - 13 - Optional properties: 14 - - interrupts : Reference to the timer interrupt 15 - 16 - Example: 17 - 18 - timer@40010c00 { 19 - compatible = "energymicro,efm32-timer"; 20 - reg = <0x40010c00 0x400>; 21 - interrupts = <14>; 22 - clocks = <&cmu clk_HFPERCLKTIMER3>; 23 - };