Path: blob/main/sys/contrib/device-tree/Bindings/bus/nvidia,tegra210-aconnect.txt
48376 views
NVIDIA Tegra ACONNECT Bus12The Tegra ACONNECT bus is an AXI switch which is used to connnect various3components inside the Audio Processing Engine (APE). All CPU accesses to4the APE subsystem go through the ACONNECT via an APB to AXI wrapper.56Required properties:7- compatible: Must be "nvidia,tegra210-aconnect".8- clocks: Must contain the entries for the APE clock (TEGRA210_CLK_APE),9and APE interface clock (TEGRA210_CLK_APB2APE).10- clock-names: Must contain the names "ape" and "apb2ape" for the corresponding11'clocks' entries.12- power-domains: Must contain a phandle that points to the audio powergate13(namely 'aud') for Tegra210.14- #address-cells: The number of cells used to represent physical base addresses15in the aconnect address space. Should be 1.16- #size-cells: The number of cells used to represent the size of an address17range in the aconnect address space. Should be 1.18- ranges: Mapping of the aconnect address space to the CPU address space.1920All devices accessed via the ACONNNECT are described by child-nodes.2122Example:2324aconnect@702c0000 {25compatible = "nvidia,tegra210-aconnect";26clocks = <&tegra_car TEGRA210_CLK_APE>,27<&tegra_car TEGRA210_CLK_APB2APE>;28clock-names = "ape", "apb2ape";29power-domains = <&pd_audio>;3031#address-cells = <1>;32#size-cells = <1>;33ranges = <0x702c0000 0x0 0x702c0000 0x00040000>;343536child1 {37...38};3940child2 {41...42};43};444546