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

ARM: dts: keystone-clocks: add input fixed clocks

Add set of fixed, external input clocks definitions for TIMI0, TIMI1,
TSREFCLK clocks. Such clocks can be used as reference clocks for some HW
modules (as cpts, for example) by configuring corresponding clock muxes.
For these clocks real frequencies have to be defined in board files.

Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>

authored by

Grygorii Strashko and committed by
Santosh Shilimkar
c5aecb49 54ecb8f7

+27
+27
arch/arm/boot/dts/keystone-clocks.dtsi
··· 408 408 reg-names = "control", "domain"; 409 409 domain-id = <0>; 410 410 }; 411 + 412 + /* 413 + * Below are set of fixed, input clocks definitions, 414 + * for which real frequencies have to be defined in board files. 415 + * Those clocks can be used as reference clocks for some HW modules 416 + * (as cpts, for example) by configuring corresponding clock muxes. 417 + */ 418 + timi0: timi0 { 419 + #clock-cells = <0>; 420 + compatible = "fixed-clock"; 421 + clock-frequency = <0>; 422 + clock-output-names = "timi0"; 423 + }; 424 + 425 + timi1: timi1 { 426 + #clock-cells = <0>; 427 + compatible = "fixed-clock"; 428 + clock-frequency = <0>; 429 + clock-output-names = "timi1"; 430 + }; 431 + 432 + tsrefclk: tsrefclk { 433 + #clock-cells = <0>; 434 + compatible = "fixed-clock"; 435 + clock-frequency = <0>; 436 + clock-output-names = "tsrefclk"; 437 + }; 411 438 };