How to configure clock through Device Tree?

5.5k Views Asked by At

I was trying to configure the clock for a new device included to the Kernel. I have an older version of the Kernel, in which the device already included.

So I tried to make similar changes to the Kernel for the clock. But in the older version of the Kernel there was a C file for configuring the clock for almost all Devices, but I couldn't find any similar file in the newer Kernel.

After my investigation I found that, in newer versions of the Kernel the parameters for configuring the clocks are passed to the Kernel through the Device Tree. So I tried to change the DT to include the clock for new device , but I couldn't succeed completely. So my questions are:

1)How the Kernel get parameters and register addresses for configuring the clock for a particular device

2)Can we access this information(like register adders ) in Kernel or Driver?

3)Is there any other way , that we can use the registers directly in the driver or Kernel to set the clock (like frequency )

1

There are 1 best solutions below

2
On BEST ANSWER

In device tree file you can specify the clock frequency of a device. For example consider a device tree where serial port (UART) clock-frequency is set as "clock-frequency = <3686400>;". As far as next part of your question is concerned that how the Kernel get parameters, it is as easy for a driver to use api "of_get_property" to get any data out of device tree. As an example see legacy_serial.c file, also take a look at "Documentation/devicetree/bindings/serial" for above example.