2024-06-23 19:12:31 -07:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
|
|
|
%YAML 1.2
|
|
|
|
---
|
|
|
|
$id: http://devicetree.org/schemas/clock/thead,th1520-clk-ap.yaml#
|
|
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
|
|
|
|
title: T-HEAD TH1520 AP sub-system clock controller
|
|
|
|
|
|
|
|
description: |
|
|
|
|
The T-HEAD TH1520 AP sub-system clock controller configures the
|
2025-04-03 11:44:23 +02:00
|
|
|
CPU, DPU, GMAC and TEE PLLs. Additionally the VO subsystem configures
|
|
|
|
the clock gates for the HDMI, MIPI and the GPU.
|
2024-06-23 19:12:31 -07:00
|
|
|
|
|
|
|
SoC reference manual
|
|
|
|
https://openbeagle.org/beaglev-ahead/beaglev-ahead/-/blob/main/docs/TH1520%20System%20User%20Manual.pdf
|
|
|
|
|
|
|
|
maintainers:
|
|
|
|
- Jisheng Zhang <jszhang@kernel.org>
|
|
|
|
- Wei Fu <wefu@redhat.com>
|
|
|
|
- Drew Fustini <dfustini@tenstorrent.com>
|
|
|
|
|
|
|
|
properties:
|
|
|
|
compatible:
|
2025-04-03 11:44:23 +02:00
|
|
|
enum:
|
|
|
|
- thead,th1520-clk-ap
|
|
|
|
- thead,th1520-clk-vo
|
2024-06-23 19:12:31 -07:00
|
|
|
|
|
|
|
reg:
|
|
|
|
maxItems: 1
|
|
|
|
|
|
|
|
clocks:
|
|
|
|
items:
|
2025-04-03 11:44:23 +02:00
|
|
|
- description: |
|
|
|
|
One input clock:
|
|
|
|
- For "thead,th1520-clk-ap": the clock input must be the 24 MHz
|
|
|
|
main oscillator.
|
|
|
|
- For "thead,th1520-clk-vo": the clock input must be the VIDEO_PLL,
|
|
|
|
which is configured by the AP clock controller. According to the
|
|
|
|
TH1520 manual, VIDEO_PLL is a Silicon Creations Sigma-Delta PLL
|
|
|
|
(integer PLL) typically running at 792 MHz (FOUTPOSTDIV), with
|
|
|
|
a maximum FOUTVCO of 2376 MHz.
|
2024-06-23 19:12:31 -07:00
|
|
|
|
|
|
|
"#clock-cells":
|
|
|
|
const: 1
|
|
|
|
description:
|
|
|
|
See <dt-bindings/clock/thead,th1520-clk-ap.h> for valid indices.
|
|
|
|
|
|
|
|
required:
|
|
|
|
- compatible
|
|
|
|
- reg
|
|
|
|
- clocks
|
|
|
|
- "#clock-cells"
|
|
|
|
|
|
|
|
additionalProperties: false
|
|
|
|
|
|
|
|
examples:
|
|
|
|
- |
|
|
|
|
#include <dt-bindings/clock/thead,th1520-clk-ap.h>
|
|
|
|
clock-controller@ef010000 {
|
|
|
|
compatible = "thead,th1520-clk-ap";
|
|
|
|
reg = <0xef010000 0x1000>;
|
|
|
|
clocks = <&osc>;
|
|
|
|
#clock-cells = <1>;
|
|
|
|
};
|