mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-25 02:32:08 +03:00
This is the output of the automated scripts created to parse the dtb and dts files congruently Jira ESDP-27666 Change-Id: Ic82a3f813bcbe6e78ba5f9b68875293c5d4bc6d7 Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3274878 Tested-by: Mark Mendez <mmendez@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com>
96 lines
2.6 KiB
YAML
96 lines
2.6 KiB
YAML
# Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
# under the terms and conditions of the GNU General Public License,
|
|
# version 2, as published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
# more details.
|
|
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/aconnect@9000000/nvidia,tegra264-aconnect.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: FIXME -- add title
|
|
|
|
maintainers:
|
|
- FIXME -- add maintainers
|
|
|
|
description: |
|
|
the compatability = nvidia,tegra264-aconnect is mentioned in the following drivers
|
|
- <TOP>/kernel/nvidia-oot/drivers/misc/driver.c
|
|
|
|
The following nodes use this compatibility
|
|
- /bus@0/aconnect@9000000
|
|
|
|
select:
|
|
properties:
|
|
compatible:
|
|
minItems: 2
|
|
maxItems: 2
|
|
items:
|
|
enum:
|
|
- nvidia,tegra264-aconnect
|
|
- nvidia,tegra210-aconnect
|
|
|
|
required:
|
|
- compatible
|
|
|
|
properties:
|
|
|
|
clocks:
|
|
$ref: "/schemas/types.yaml#/definitions/uint32-matrix"
|
|
description: |
|
|
Clocks are given by a tuple of 2 values:
|
|
- Phandle to the device
|
|
- Clock ID
|
|
items:
|
|
minItems: 2
|
|
maxItems: 2
|
|
items:
|
|
- $ref: "/schemas/types.yaml#/definitions/uint32"
|
|
- $ref: "/schemas/types.yaml#/definitions/uint32"
|
|
minimum: 0x9c
|
|
maximum: 0xa4
|
|
|
|
clock-names:
|
|
$ref: "/schemas/types.yaml#/definitions/string-array"
|
|
items:
|
|
enum:
|
|
- ape
|
|
- apb2ape
|
|
|
|
|
|
'#address-cells':
|
|
$ref: "/schemas/types.yaml#/definitions/uint32"
|
|
minimum: 0x2
|
|
maximum: 0x2
|
|
|
|
'#size-cells':
|
|
$ref: "/schemas/types.yaml#/definitions/uint32"
|
|
minimum: 0x2
|
|
maximum: 0x2
|
|
|
|
required:
|
|
- compatible
|
|
- clocks
|
|
- clock-names
|
|
|
|
examples:
|
|
- |
|
|
aconnect@9000000 {
|
|
compatible = "nvidia,tegra264-aconnect",
|
|
"nvidia,tegra210-aconnect";
|
|
clocks = <&bpmp TEGRA264_CLK_APE>,
|
|
<&bpmp TEGRA264_CLK_ADSP>;
|
|
clock-names = "ape, apb2ape";
|
|
power-domains = <&bpmp TEGRA264_POWER_DOMAIN_AUD>;
|
|
status = "disabled";
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
ranges = <0x0 0x9000000 0x0 0x9000000 0x0 0x2000000>;
|
|
};
|