diff --git a/CHANGES b/CHANGES index e5606ac93af..7ee81c8e26b 100644 --- a/CHANGES +++ b/CHANGES @@ -32,6 +32,7 @@ Upcoming release: BREAKING * Added support for arm_hyp on qemu-arm-virt platfrom with cortex-a15 CPU * Added support for qemu-riscv-virt * Added support for the Pine64 Star64 +* Added support for the NVIDIA Orin Jetson * Rename libsel4 config option ENABLE_SMP_SUPPORT to CONFIG_ENABLE_SMP_SUPPORT to be namespace compliant. * Rename libsel4 config option AARCH64_VSPACE_S2_START_L1 to CONFIG_AARCH64_VSPACE_S2_START_L1 to be namespace compliant. diff --git a/configs/seL4Config.cmake b/configs/seL4Config.cmake index 64321918965..5f0a801bb22 100644 --- a/configs/seL4Config.cmake +++ b/configs/seL4Config.cmake @@ -147,6 +147,7 @@ foreach( KernelArmCortexA55 KernelArmCortexA57 KernelArmCortexA72 + KernelArmCortexA78AE KernelArchArmV7a KernelArchArmV7ve KernelArchArmV8a @@ -194,6 +195,7 @@ config_set(KernelArmCortexA53 ARM_CORTEX_A53 "${KernelArmCortexA53}") config_set(KernelArmCortexA55 ARM_CORTEX_A55 "${KernelArmCortexA55}") config_set(KernelArmCortexA57 ARM_CORTEX_A57 "${KernelArmCortexA57}") config_set(KernelArmCortexA72 ARM_CORTEX_A72 "${KernelArmCortexA72}") +config_set(KernelArmCortexA78AE ARM_CORTEX_A78AE "${KernelArmCortexA78AE}") config_set(KernelArchArmV7a ARCH_ARM_V7A "${KernelArchArmV7a}") config_set(KernelArchArmV7ve ARCH_ARM_V7VE "${KernelArchArmV7ve}") config_set(KernelArchArmV8a ARCH_ARM_V8A "${KernelArchArmV8a}") @@ -227,6 +229,8 @@ elseif(KernelArmCortexA57) set(KernelArmCPU "cortex-a57" CACHE INTERNAL "") elseif(KernelArmCortexA72) set(KernelArmCPU "cortex-a72" CACHE INTERNAL "") +elseif(KernelArmCortexA78AE) + set(KernelArmCPU "cortex-a78ae" CACHE INTERNAL "") endif() if(KernelArchARM) config_set(KernelArmMach ARM_MACH "${KernelArmMach}") diff --git a/include/arch/arm/arch/machine/gic_v3.h b/include/arch/arm/arch/machine/gic_v3.h index 933444c5731..04f417ada63 100644 --- a/include/arch/arm/arch/machine/gic_v3.h +++ b/include/arch/arm/arch/machine/gic_v3.h @@ -49,6 +49,29 @@ #define DEFAULT_PMR_VALUE 0xff +/* SGI1R register. */ +#define ICC_SGI1R_TARGET_LIST_SHIFT 0 +#define ICC_SGI1R_TARGET_LIST_MASK (0xffff << ICC_SGI1R_TARGET_LIST_SHIFT) +#define ICC_SGI1R_TARGET_LIST_VAL(sgi1r) (((sgi1r) & ICC_SGI1R_TARGET_LIST_MASK) >> ICC_SGI1R_TARGET_LIST_SHIFT) +#define ICC_SGI1R_AFF1_SHIFT 16 +#define ICC_SGI1R_AFF1_MASK (0xff << ICC_SGI1R_AFF1_SHIFT) +#define ICC_SGI1R_AFF1_VAL(sgi1r) (((sgi1r) & ICC_SGI1R_AFF1_MASK) >> ICC_SGI1R_AFF1_SHIFT) +#define ICC_SGI1R_INT_ID_SHIFT 24 +#define ICC_SGI1R_INT_ID_MASK (0xfull << ICC_SGI1R_INT_ID_SHIFT) +#define ICC_SGI1R_INT_ID_VAL(sgi1r) (((sgi1r) & ICC_SGI1R_INT_ID_MASK) >> ICC_SGI1R_INT_ID_SHIFT) +#define ICC_SGI1R_AFF2_SHIFT 32 +#define ICC_SGI1R_AFF2_MASK (0xffull << ICC_SGI1R_AFF2_SHIFT) +#define ICC_SGI1R_AFF2_VAL(sgi1r) (((sgi1r) & ICC_SGI1R_AFF2_MASK) >> ICC_SGI1R_AFF2_SHIFT) +#define ICC_SGI1R_IRM_SHIFT 40 +#define ICC_SGI1R_IRM_MASK (0x1ull << ICC_SGI1R_IRM_SHIFT) +#define ICC_SGI1R_IRM_VAL(sgi1r) (((sgi1r) & ICC_SGI1R_IRM_MASK) >> ICC_SGI1R_IRM_SHIFT) +#define ICC_SGI1R_RS_SHIFT 44 +#define ICC_SGI1R_RS_MASK (0xfull << ICC_SGI1R_RS_SHIFT) +#define ICC_SGI1R_RS_VAL(sgi1r) (((sgi1r) & ICC_SGI1R_RS_MASK) >> ICC_SGI1R_RS_SHIFT) +#define ICC_SGI1R_AFF3_SHIFT 48 +#define ICC_SGI1R_AFF3_MASK (0xffull << ICC_SGI1R_AFF3_SHIFT) +#define ICC_SGI1R_AFF3_VAL(sgi1r) (((sgi1r) & ICC_SGI1R_AFF3_MASK) >> ICC_SGI1R_AFF3_SHIFT) + /* System registers for GIC CPU interface */ #ifdef CONFIG_ARCH_AARCH64 #define ICC_IAR1_EL1 "S3_0_C12_C12_0" diff --git a/include/arch/arm/arch/model/smp.h b/include/arch/arm/arch/model/smp.h index f9abe72a906..c6bfeeb1e48 100644 --- a/include/arch/arm/arch/model/smp.h +++ b/include/arch/arm/arch/model/smp.h @@ -13,7 +13,11 @@ #ifdef ENABLE_SMP_SUPPORT static inline cpu_id_t cpuIndexToID(word_t index) { +#ifdef CONFIG_ARM_GIC_V3_SUPPORT + return index; +#else return BIT(index); +#endif } static inline bool_t try_arch_atomic_exchange_rlx(void *ptr, void *new_val, void **prev) diff --git a/libsel4/arch_include/arm/sel4/arch/constants_cortex_a78ae.h b/libsel4/arch_include/arm/sel4/arch/constants_cortex_a78ae.h new file mode 100644 index 00000000000..9274b9d4b26 --- /dev/null +++ b/libsel4/arch_include/arm/sel4/arch/constants_cortex_a78ae.h @@ -0,0 +1,28 @@ +/* + * Copyright 2023, NIO + * + * SPDX-License-Identifier: BSD-2-Clause + */ + +#pragma once + +#include + +#if !defined(CONFIG_ARM_CORTEX_A78AE) +#error CONFIG_ARM_CORTEX_A78AE is not defined +#endif + +/* Cortex-A78AE TRM, Section 5.3 */ +#define seL4_NumHWBreakpoints 10 +#define seL4_NumExclusiveBreakpoints 6 +#define seL4_NumExclusiveWatchpoints 4 + +#ifdef CONFIG_HARDWARE_DEBUG_API + +#define seL4_FirstBreakpoint 0 +#define seL4_FirstWatchpoint 6 + +#define seL4_NumDualFunctionMonitors 0 +#define seL4_FirstDualFunctionMonitor (-1) + +#endif /* CONFIG_HARDWARE_DEBUG_API */ diff --git a/libsel4/sel4_plat_include/orin/sel4/plat/api/constants.h b/libsel4/sel4_plat_include/orin/sel4/plat/api/constants.h new file mode 100644 index 00000000000..bda21e709f1 --- /dev/null +++ b/libsel4/sel4_plat_include/orin/sel4/plat/api/constants.h @@ -0,0 +1,14 @@ +/* + * Copyright 2023, NIO + * SPDX-License-Identifier: BSD-2-Clause + */ + +#pragma once + +#include + +#if defined(CONFIG_ARM_CORTEX_A78AE) +#include +#else +#error "unsupported core" +#endif diff --git a/src/arch/arm/64/kernel/vspace.c b/src/arch/arm/64/kernel/vspace.c index 73de119c4b5..e9fe526a41f 100644 --- a/src/arch/arm/64/kernel/vspace.c +++ b/src/arch/arm/64/kernel/vspace.c @@ -68,12 +68,20 @@ enum mair_s2_types { S2_NORMAL = S2_NORMAL_INNER_WBC_OUTER_WBC }; -/* Leif from Linaro said the big.LITTLE clusters should be treated as - * inner shareable, and we believe so, although the Example B2-1 given in - * ARM ARM DDI 0487B.b (ID092517) says otherwise. +/* ARM DDI 0487J.a, section D8.5.2 */ +/* Linux will only run on cores within the same Inner Shareable domain. + * They make an assumption that all the PEs are under a single IS domain, + * and we do the same here. + * + * Arm also states "Arm expects operating systems to mark the + * majority of DRAM memory as Normal Write-back cacheable, Inner + * shareable" (102376_0200_01_en version 2). + * + * Note: accoding to RPYFVQ (ARM ARM DDI 0487J.a), the shareability + * attribute for Device memory does not matter as it will instead + * be treated as Outer Shareable. */ - -#define SMP_SHARE 3 +#define INNER_SHAREABLE 3 struct lookupPTSlot_ret { pte_t *ptSlot; @@ -184,13 +192,13 @@ BOOT_CODE void map_kernel_frame(paddr_t paddr, pptr_t vaddr, vm_rights_t vm_righ word_t uxn = 1; /* unprivileged execute never */ #endif /* CONFIG_ARM_HYPERVISOR_SUPPORT */ word_t attr_index; - word_t shareable; + + /* ARM ARM RPYFVQ: device memory is treated as Outer Shareable, and the PTE attribute has no effect. */ + word_t shareable = INNER_SHAREABLE; if (vm_attributes_get_armPageCacheable(attributes)) { attr_index = NORMAL; - shareable = SMP_TERNARY(SMP_SHARE, 0); } else { attr_index = DEVICE_nGnRnE; - shareable = 0; } armKSGlobalKernelPT[GET_KPT_INDEX(vaddr, KLVL_FRM_ARM_PT_LVL(3))] = pte_pte_4k_page_new(uxn, paddr, 0, /* global */ @@ -244,7 +252,7 @@ BOOT_CODE void map_kernel_window(void) paddr, 0, /* global */ 1, /* access flag */ - SMP_TERNARY(SMP_SHARE, 0), /* Inner-shareable if SMP enabled, otherwise unshared */ + INNER_SHAREABLE, 0, /* VMKernelOnly */ NORMAL ); @@ -303,7 +311,7 @@ static BOOT_CODE void map_it_frame_cap(cap_t vspace_cap, cap_t frame_cap, bool_t 1, /* not global */ #endif 1, /* access flag */ - SMP_TERNARY(SMP_SHARE, 0), /* Inner-shareable if SMP enabled, otherwise unshared */ + INNER_SHAREABLE, APFromVMRights(VMReadWrite), #ifdef CONFIG_ARM_HYPERVISOR_SUPPORT S2_NORMAL @@ -665,15 +673,12 @@ static pte_t makeUserPagePTE(paddr_t paddr, vm_rights_t vm_rights, vm_attributes word_t attridx = cacheable ? NORMAL : DEVICE_nGnRnE; #endif - /* Inner-shareable if SMP enabled, otherwise unshared (ignored for devices) */ - word_t shareable = cacheable ? SMP_TERNARY(SMP_SHARE, 0) : 0; - if (page_size == ARMSmallPage) { return pte_pte_4k_page_new(nonexecutable, paddr, nG, 1 /* access flag */, - shareable, APFromVMRights(vm_rights), attridx); + INNER_SHAREABLE, APFromVMRights(vm_rights), attridx); } else { return pte_pte_page_new(nonexecutable, paddr, nG, 1 /* access flag */, - shareable, APFromVMRights(vm_rights), attridx); + INNER_SHAREABLE, APFromVMRights(vm_rights), attridx); } } @@ -1927,7 +1932,7 @@ exception_t benchmark_arch_map_logBuffer(word_t frame_cptr) ksUserLogBuffer, 0, /* global */ 1, /* access flag */ - SMP_TERNARY(SMP_SHARE, 0), /* Inner-shareable if SMP enabled, otherwise unshared */ + INNER_SHAREABLE, 0, /* VMKernelOnly */ NORMAL_WT); diff --git a/src/arch/arm/64/machine/capdl.c b/src/arch/arm/64/machine/capdl.c index 8445adc667a..590c9e03ed5 100644 --- a/src/arch/arm/64/machine/capdl.c +++ b/src/arch/arm/64/machine/capdl.c @@ -21,7 +21,7 @@ word_t get_tcb_sp(tcb_t *tcb) static void obj_frame_print_attrs(vm_page_size_t frameSize, paddr_t frameBase); static void cap_frame_print_attrs_pt(pte_t *ptSlot); -static void cap_frame_print_attrs_impl(word_t SH, word_t AP, word_t NXN); +static void cap_frame_print_attrs_impl(word_t AttrIndx, word_t AP, word_t NXN); static void cap_frame_print_attrs_vptr(word_t vptr, cap_t vspace); static void _cap_frame_print_attrs_vptr(word_t vptr, vspace_root_t *vspaceRoot); @@ -55,12 +55,12 @@ static void arm64_cap_pud_print_slots(void *pgdSlot_or_vspace, vptr_t vptr); /* use when only have access to pte of frames */ static void cap_frame_print_attrs_pt(pte_t *ptSlot) { - cap_frame_print_attrs_impl(pte_pte_page_ptr_get_SH(ptSlot), + cap_frame_print_attrs_impl(pte_pte_page_ptr_get_AttrIndx(ptSlot), pte_pte_page_ptr_get_AP(ptSlot), pte_pte_page_ptr_get_UXN(ptSlot)); } -static void cap_frame_print_attrs_impl(word_t SH, word_t AP, word_t NXN) +static void cap_frame_print_attrs_impl(word_t AttrIndx, word_t AP, word_t NXN) { printf("("); @@ -96,8 +96,8 @@ static void cap_frame_print_attrs_impl(word_t SH, word_t AP, word_t NXN) printf("X"); } - /* Only has effect if SMP enabled */ - if (SH != SMP_TERNARY(SMP_SHARE, 0)) { + /* DEVICE_nGnRnE is the only attribute we use for uncached memory right now. */ + if (AttrIndx == DEVICE_nGnRnE) { printf(", uncached"); } diff --git a/src/arch/arm/config.cmake b/src/arch/arm/config.cmake index 03bff4def41..19f8176f087 100644 --- a/src/arch/arm/config.cmake +++ b/src/arch/arm/config.cmake @@ -32,6 +32,11 @@ elseif(KernelArmCortexA72) # (https://developer.arm.com/documentation/100095/0001/memory-management-unit/about-the-mmu) set(KernelArmPASizeBits44 ON) math(EXPR KernelPaddrUserTop "(1 << 44)") +elseif(KernelArmCortexA78AE) + # Even though CortexA78AE supports 48-bits + # 44 bits PA is used + set(KernelArmPASizeBits44 ON) + math(EXPR KernelPaddrUserTop "(1 << 44)") endif() config_set(KernelArmPASizeBits40 ARM_PA_SIZE_BITS_40 "${KernelArmPASizeBits40}") config_set(KernelArmPASizeBits44 ARM_PA_SIZE_BITS_44 "${KernelArmPASizeBits44}") @@ -86,7 +91,7 @@ config_option( "Build as Hypervisor. Utilise ARM virtualisation extensions to build the kernel as a hypervisor" DEFAULT ${KernelSel4ArchArmHyp} DEPENDS - "KernelArmCortexA15 OR KernelArmCortexA35 OR KernelArmCortexA57 OR KernelArmCortexA53 OR KernelArmCortexA55 OR KernelArmCortexA72" + "KernelArmCortexA15 OR KernelArmCortexA35 OR KernelArmCortexA57 OR KernelArmCortexA53 OR KernelArmCortexA55 OR KernelArmCortexA72 OR KernelArmCortexA78AE" ) config_option(KernelArmGicV3 ARM_GIC_V3_SUPPORT "Build support for GICv3" DEFAULT OFF) @@ -235,6 +240,7 @@ if( OR KernelArmCortexA55 OR KernelArmCortexA57 OR KernelArmCortexA72 + OR KernelArmCortexA78AE ) # According to https://developer.arm.com/documentation/100095/0001/functional-description/about-the-cortex-a72-processor-functions/components-of-the-processor # the L1 instruction on the Cortex-A72 cache has a 64-byte cache line. diff --git a/src/arch/arm/machine/gic_v3.c b/src/arch/arm/machine/gic_v3.c index 37aacef0b8b..5a7edc48c26 100644 --- a/src/arch/arm/machine/gic_v3.c +++ b/src/arch/arm/machine/gic_v3.c @@ -14,8 +14,10 @@ #define RDIST_BANK_SZ 0x00010000 /* One GICR region and one GICR_SGI region */ #define GICR_PER_CORE_SIZE (0x20000) -/* Assume 8 cores */ -#define GICR_SIZE (0x100000) +/* Assume 12 cores + * NOTE: this is hardcoded to the same value for the GICR region in hardware.yml + */ +#define GICR_SIZE (0x180000) #define GIC_DEADLINE_MS 2 #define GIC_REG_WIDTH 32 @@ -26,11 +28,6 @@ #define ICC_SGI1R_EL1 "p15, 0, %Q0, %R0, c12" #endif -#define ICC_SGI1R_INTID_SHIFT (24) -#define ICC_SGI1R_AFF1_SHIFT (16) -#define ICC_SGI1R_IRM_BIT (40) -#define ICC_SGI1R_CPUTARGETLIST_MASK 0xffff - volatile struct gic_dist_map *const gic_dist = (volatile struct gic_dist_map *)(GICD_PPTR); volatile void *const gicr_base = (volatile uint8_t *)(GICR_PPTR); @@ -343,34 +340,19 @@ BOOT_CODE void cpu_initLocalIRQController(void) } #ifdef ENABLE_SMP_SUPPORT -#define MPIDR_MT(x) (x & BIT(24)) - -void ipi_send_target(irq_t irq, word_t cpuTargetList) +/* This function is called with a single node. */ +void ipi_send_target(irq_t irq, word_t cpuID) { - uint64_t sgi1r_base = ((word_t) IRQT_TO_IRQ(irq)) << ICC_SGI1R_INTID_SHIFT; - word_t sgi1r[CONFIG_MAX_NUM_NODES]; - word_t last_aff1 = 0; - - for (word_t i = 0; i < CONFIG_MAX_NUM_NODES; i++) { - sgi1r[i] = 0; - if (cpuTargetList & BIT(i)) { - word_t mpidr = mpidr_map[i]; - word_t aff1 = MPIDR_AFF1(mpidr); - word_t aff0 = MPIDR_AFF0(mpidr); - // AFF1 is assumed to be contiguous and less than CONFIG_MAX_NUM_NODES. - // The targets are grouped by AFF1. - assert(aff1 >= 0 && aff1 < CONFIG_MAX_NUM_NODES); - sgi1r[aff1] |= sgi1r_base | (aff1 << ICC_SGI1R_AFF1_SHIFT) | (1 << aff0); - if (aff1 > last_aff1) { - last_aff1 = aff1; - } - } - } - for (word_t i = 0; i <= last_aff1; i++) { - if (sgi1r[i] != 0) { - SYSTEM_WRITE_64(ICC_SGI1R_EL1, sgi1r[i]); - } - } + assert(cpuID < CONFIG_MAX_NUM_NODES); + word_t sgi1r_base = ((word_t) IRQT_TO_IRQ(irq)) << ICC_SGI1R_INT_ID_SHIFT; + word_t mpidr = mpidr_map[cpuID]; + word_t aff0 = MPIDR_AFF0(mpidr); + word_t aff1 = MPIDR_AFF1(mpidr); + word_t aff2 = MPIDR_AFF2(mpidr); + word_t aff3 = MPIDR_AFF3(mpidr); + word_t sgi = sgi1r_base | (aff3 << ICC_SGI1R_AFF3_SHIFT) | (aff2 << ICC_SGI1R_AFF2_SHIFT); + sgi |= (aff1 << ICC_SGI1R_AFF1_SHIFT) | (1 << aff0); + SYSTEM_WRITE_64(ICC_SGI1R_EL1, sgi); isb(); } diff --git a/src/drivers/serial/config.cmake b/src/drivers/serial/config.cmake index 402aa0d6f66..3b1dfb35ce4 100644 --- a/src/drivers/serial/config.cmake +++ b/src/drivers/serial/config.cmake @@ -44,3 +44,8 @@ register_driver( PREFIX src/drivers/serial CFILES "meson-gx-uart.c" ) +register_driver( + compatibility_strings "nvidia,tegra194-tcu" + PREFIX src/drivers/serial + CFILES "tegra194-tcu.c" +) diff --git a/src/drivers/serial/tegra194-tcu.c b/src/drivers/serial/tegra194-tcu.c new file mode 100644 index 00000000000..eedeaa28828 --- /dev/null +++ b/src/drivers/serial/tegra194-tcu.c @@ -0,0 +1,44 @@ +/* + * Copyright 2023, NIO + * + * SPDX-License-Identifier: GPL-2.0-only + */ + +#include +#include +#include +#include +#include + +#define TCU_TX_REG (0) +#define TX_NUM_BYTES_FIELD_BIT (24) +#define TX_FLUSH_BIT (26) +#define TX_INTR_TRIGGER_BIT (31) +#define UART_REG(mmio, x) ((volatile uint32_t *)(mmio + (x))) + +#ifdef CONFIG_PRINTING +void uart_drv_putchar(unsigned char c) +{ + uint32_t reg_val; + + /* We are writing one byte */ + reg_val = (uint32_t)(1UL << TX_NUM_BYTES_FIELD_BIT); + reg_val |= BIT(TX_INTR_TRIGGER_BIT); + reg_val |= c; + + if (c == '\r' || c == '\n') { + reg_val |= BIT(TX_FLUSH_BIT); + } + + while (*UART_REG(UART_PPTR, TCU_TX_REG) & BIT(TX_INTR_TRIGGER_BIT)); + + *UART_REG(UART_PPTR, TCU_TX_REG) = reg_val; +} +#endif /* CONFIG_PRINTING */ + +#ifdef CONFIG_DEBUG_BUILD +unsigned char uart_drv_getchar(void) +{ + return 0; +} +#endif /* CONFIG_DEBUG_BUILD */ diff --git a/src/plat/orin/config.cmake b/src/plat/orin/config.cmake new file mode 100644 index 00000000000..2a326529060 --- /dev/null +++ b/src/plat/orin/config.cmake @@ -0,0 +1,37 @@ +# +# Copyright 2023, NIO +# +# SPDX-License-Identifier: GPL-2.0-only +# + +cmake_minimum_required(VERSION 3.7.2) + +declare_platform(orin KernelPlatformOrin PLAT_ORIN KernelSel4ArchAarch64) + +if(KernelPlatformOrin) + config_set(KernelARMPlatform ARM_PLAT orin) + declare_seL4_arch(aarch64) + set(KernelArmCortexA78AE ON) + set(KernelArchArmV8a ON) + + set(KernelArmGicV3 ON) + set(KernelArmMach "nvidia" CACHE INTERNAL "") + + list(APPEND KernelDTSList "tools/dts/orin.dts" "src/plat/orin/overlay-orin.dts") + + declare_default_headers( + TIMER_FREQUENCY 31250000 + MAX_IRQ 1019 + TIMER drivers/timer/arm_generic.h + INTERRUPT_CONTROLLER arch/machine/gic_v3.h + NUM_PPI 32 + CLK_MAGIC 1llu + CLK_SHIFT 3u + KERNEL_WCET 10u + ) +endif() + +add_sources( + DEP "KernelPlatformOrin" + CFILES src/arch/arm/machine/gic_v3.c src/arch/arm/machine/l2c_nop.c +) diff --git a/src/plat/orin/overlay-orin.dts b/src/plat/orin/overlay-orin.dts new file mode 100644 index 00000000000..7b9e6d42866 --- /dev/null +++ b/src/plat/orin/overlay-orin.dts @@ -0,0 +1,17 @@ +/* + * Copyright 2023, NIO + * SPDX-License-Identifier: GPL-2.0-only + */ + +/ { + chosen { + seL4,elfloader-devices = + &{/combined-uart}, + &{/psci}; + + seL4,kernel-devices = + &{/combined-uart}, + &{/interrupt-controller@f400000}, + &{/timer}; + }; +}; diff --git a/tools/dts/orin.dts b/tools/dts/orin.dts new file mode 100644 index 00000000000..afdd97a0d8d --- /dev/null +++ b/tools/dts/orin.dts @@ -0,0 +1,14171 @@ +/* + * Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. + * + * SPDX-License-Identifier: GPL-2.0-only + * + * 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. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/dts-v1/; + +/ { + compatible = "nvidia,p3737-0000+p3701-0000\0nvidia,tegra234\0nvidia,tegra23x"; + interrupt-parent = <0x01>; + #address-cells = <0x02>; + #size-cells = <0x02>; + model = "NVIDIA Orin Jetson-Small Developer Kit"; + nvidia,fastboot-usb-vid = <0x955>; + nvidia,fastboot-usb-pid = <0xee1e>; + nvidia,dtsfilename = "../arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t23x/concord/kernel-dts/tegra234-p3701-0000-p3737-0000.dts"; + nvidia,dtbbuildtime = "Aug 22 2022\012:25:13"; + + interrupt-controller@f400000 { + compatible = "arm,gic-v3"; + #interrupt-cells = <0x03>; + #redistributor-regions = <0x01>; + interrupt-controller; + reg = <0x00 0xf400000 0x00 0x10000 0x00 0xf440000 0x00 0x200000>; + ranges; + /*kernel-5.10/arch/arm64/boot/dts/nvidia/tegra234.dtsi*/ + /**/ + interrupts = <0x01 0x09 0xf04>; + status = "okay"; + phandle = <0x01>; + + v2m@f410000 { + compatible = "arm,gic-v2m-frame"; + msi-controller; + #msi-cells = <0x01>; + reg = <0x00 0xf410000 0x00 0x10000 0x00 0x54000000 0x00 0x4000000>; + reg-names = "gic_base\0msi_base"; + arm,msi-base-spi = <0x260>; + arm,msi-num-spis = <0x46>; + phandle = <0x11>; + }; + }; + + timer { + compatible = "arm,armv8-timer"; + interrupts = <0x01 0x0d 0xff08 0x01 0x0e 0xff08 0x01 0x0b 0xff08 0x01 0x0a 0xff08>; + status = "okay"; + }; + + memory@80000000 { + device_type = "memory"; + reg = <0x00 0x80000000 0x00000007 0x80000000>; + }; + + serial@3100000 { + compatible = "nvidia,tegra194-hsuart"; + reg = <0x00 0x3100000 0x00 0x10000>; + reg-shift = <0x02>; + interrupts = <0x00 0x70 0x04>; + clock-frequency = <0x18519600>; + iommus = <0x02 0x04>; + dma-coherent; + nvidia,memory-clients = <0x0e>; + dmas = <0x03 0x08 0x03 0x08>; + dma-names = "rx\0tx"; + clocks = <0x04 0x9b 0x04 0x66>; + clock-names = "serial\0parent"; + resets = <0x04 0x64>; + reset-names = "serial"; + status = "okay"; + phandle = <0x114>; + }; + + reserved-memory { + #address-cells = <0x02>; + #size-cells = <0x02>; + ranges; + + generic_carveout { + compatible = "nvidia,generic_carveout"; + size = <0x00 0x00>; + alignment = <0x00 0x100000>; + alloc-ranges = <0x01 0x00 0x01 0x00>; + no-map; + status = "disabled"; + phandle = <0x0c>; + }; + + grid-of-semaphores { + compatible = "nvidia,gosmem"; + size = <0x00 0x6000>; + alignment = <0x00 0x1000>; + no-map; + status = "okay"; + cvdevs = <0x05 0x06 0x07 0x08 0x09 0x0a>; + phandle = <0x0d>; + }; + + ramoops_carveout { + compatible = "nvidia,ramoops"; + size = <0x00 0x200000>; + alignment = <0x00 0x10000>; + alloc-ranges = <0x00 0x00 0x01 0x00>; + no-map; + status = "okay"; + phandle = <0x115>; + }; + + fsi-carveout { + compatible = "nvidia,fsi-carveout"; + size = <0x00 0x2000000>; + alignment = <0x00 0x1000>; + no-map; + alloc-ranges = <0x00 0x00 0x01 0x00>; + status = "okay"; + phandle = <0x0b>; + }; + + vpr-carveout { + compatible = "nvidia,vpr-carveout"; + size = <0x00 0x2a000000>; + alignment = <0x00 0x400000>; + alloc-ranges = <0x00 0x80000000 0x00 0x70000000>; + status = "disabled"; + phandle = <0x116>; + }; + + linux,cma { + compatible = "shared-dma-pool"; + reusable; + size = <0x00 0x10000000>; + alignment = <0x00 0x10000>; + linux,cma-default; + status = "okay"; + }; + + camdbg_carveout { + compatible = "nvidia,camdbg_carveout"; + size = <0x00 0x6400000>; + alignment = <0x00 0x100000>; + alloc-ranges = <0x01 0x00 0x01 0x00>; + status = "disabled"; + phandle = <0x117>; + }; + }; + + tegra-carveouts { + compatible = "nvidia,carveouts-t19x"; + memory-region = <0x0b 0x0c 0x0d>; + status = "okay"; + }; + + tegra-cache { + compatible = "nvidia,t23x-cache"; + l3-gpu-cpu-ways = <0x00>; + l3-gpu-only-ways = <0x00>; + l3-total-ways = <0x10>; + l3-size = <0x00 0x400000>; + status = "okay"; + }; + + mc { + #address-cells = <0x02>; + #size-cells = <0x02>; + compatible = "nvidia,tegra-t23x-mc"; + reg-ranges = <0x01>; + reg = <0x00 0x2c10000 0x00 0x10000 0x00 0x2c20000 0x00 0x10000 0x00 0x2c30000 0x00 0x10000 0x00 0x2c40000 0x00 0x10000 0x00 0x2c50000 0x00 0x10000 0x00 0x2b80000 0x00 0x10000 0x00 0x2b90000 0x00 0x10000 0x00 0x2ba0000 0x00 0x10000 0x00 0x2bb0000 0x00 0x10000 0x00 0x1700000 0x00 0x10000 0x00 0x1710000 0x00 0x10000 0x00 0x1720000 0x00 0x10000 0x00 0x1730000 0x00 0x10000 0x00 0x1740000 0x00 0x10000 0x00 0x1750000 0x00 0x10000 0x00 0x1760000 0x00 0x10000 0x00 0x1770000 0x00 0x10000 0x00 0x2c60000 0x00 0x10000 0x00 0x2c70000 0x00 0x10000 0x00 0x2c80000 0x00 0x10000 0x00 0x2c90000 0x00 0x10000 0x00 0x2ca0000 0x00 0x10000 0x00 0x2cb0000 0x00 0x10000 0x00 0x2cc0000 0x00 0x10000 0x00 0x2cd0000 0x00 0x10000 0x00 0x2ce0000 0x00 0x10000 0x00 0x1780000 0x00 0x10000 0x00 0x1790000 0x00 0x10000 0x00 0x17a0000 0x00 0x10000 0x00 0x17b0000 0x00 0x10000 0x00 0x17c0000 0x00 0x10000 0x00 0x17d0000 0x00 0x10000 0x00 0x17e0000 0x00 0x10000 0x00 0x17f0000 0x00 0x10000>; + interrupts = <0x00 0xdf 0x04 0x00 0xe0 0x04>; + int_mask = <0x1f3140>; + hub_int_mask = <0x05>; + ecc_int_mask = <0x1c00>; + channels = <0x10>; + status = "okay"; + #interconnect-cells = <0x01>; + dma-ranges = <0x00 0x00 0x00 0x00 0x80 0x00>; + phandle = <0x24>; + }; + + mc_sid@2c00000 { + compatible = "nvidia,tegra234-mc-sid"; + reg = <0x00 0x2c00000 0x00 0x10000>; + status = "okay"; + }; + + smmu_suspend { + compatible = "nvidia,smmu_suspend"; + reg = <0x00 0x12000000 0x00 0x1000000 0x00 0x11000000 0x00 0x1000000 0x00 0x10000000 0x00 0x1000000 0x00 0x8000000 0x00 0x1000000 0x00 0x7000000 0x00 0x1000000>; + suspend-save-reg = <0xc39014c>; + status = "okay"; + }; + + iommu@12000000 { + compatible = "arm,mmu-500\0nvidia,tegra194-smmu"; + reg = <0x00 0x12000000 0x00 0x1000000 0x00 0x11000000 0x00 0x1000000>; + #global-interrupts = <0x02>; + interrupts = <0x00 0xaa 0x04 0x00 0xe8 0x04 0x00 0xaa 0x04 0x00 0xe8 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04 0x00 0xaa 0x04>; + stream-match-mask = <0x7f80>; + #iommu-cells = <0x01>; + status = "okay"; + phandle = <0x02>; + }; + + iommu@10000000 { + compatible = "arm,mmu-500\0nvidia,smmu-500"; + reg = <0x00 0x10000000 0x00 0x1000000>; + #global-interrupts = <0x01>; + interrupts = <0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04 0x00 0xf0 0x04>; + stream-match-mask = <0x7f80>; + #iommu-cells = <0x01>; + tlb-inv-throttle; + status = "okay"; + phandle = <0xbc>; + }; + + iommu@8000000 { + compatible = "arm,mmu-500\0nvidia,tegra194-smmu"; + reg = <0x00 0x8000000 0x00 0x1000000 0x00 0x7000000 0x00 0x1000000>; + #global-interrupts = <0x02>; + interrupts = <0x00 0xee 0x04 0x00 0xf2 0x04 0x00 0xee 0x04 0x00 0xf2 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04 0x00 0xee 0x04>; + stream-match-mask = <0x7f80>; + #iommu-cells = <0x01>; + status = "okay"; + phandle = <0x22>; + }; + + smmu_test { + compatible = "nvidia,smmu_test"; + iommus = <0x02 0x18>; + phandle = <0x118>; + }; + + dma_test { + compatible = "nvidia,dma_test"; + phandle = <0x119>; + }; + + trusty { + compatible = "android,trusty-smc-v1"; + ranges; + #address-cells = <0x02>; + #size-cells = <0x02>; + status = "disabled"; + + irq { + compatible = "android,trusty-irq-v1"; + interrupt-templates = <0x0e 0x00 0x01 0x01 0x01 0x08 0x01 0x01 0x00 0x01>; + interrupt-ranges = <0x00 0x0f 0x00 0x10 0x1f 0x01 0x20 0x1ae 0x02>; + }; + + fiq { + compatible = "android,trusty-fiq-v1"; + }; + + virtio { + compatible = "android,trusty-virtio-v1"; + }; + + log { + compatible = "android,trusty-log-v1"; + }; + }; + + interrupt-controller { + compatible = "android,CustomIPI"; + #interrupt-cells = <0x01>; + interrupt-controller; + status = "okay"; + phandle = <0x0e>; + }; + + cbb-en@1300000 { + compatible = "nvidia,tegra234-CBB-EN"; + reg = <0x00 0x13a00000 0x00 0x400000>; + interrupts = <0x00 0xe7 0x04>; + err-notifier-base = <0x00 0x60000>; + status = "okay"; + }; + + aon-en@C600000 { + compatible = "nvidia,tegra234-AON-EN"; + reg = <0x00 0xc600000 0x00 0x40000>; + interrupts = <0x00 0xac 0x04>; + err-notifier-base = <0x00 0x17000>; + status = "okay"; + }; + + bpmp-en@D600000 { + compatible = "nvidia,tegra234-BPMP-EN"; + reg = <0x00 0xd600000 0x00 0x40000>; + interrupts = <0x00 0xae 0x04>; + err-notifier-base = <0x00 0x19000>; + status = "disabled"; + }; + + dce-en@BE00000 { + compatible = "nvidia,tegra234-DCE-EN"; + reg = <0x00 0xde00000 0x00 0x40000>; + interrupts = <0x00 0x17d 0x04>; + err-notifier-base = <0x00 0x19000>; + status = "okay"; + }; + + rce-en@BE00000 { + compatible = "nvidia,tegra234-RCE-EN"; + reg = <0x00 0xbe00000 0x00 0x40000>; + interrupts = <0x00 0xaf 0x04>; + err-notifier-base = <0x00 0x19000>; + status = "okay"; + }; + + sce-en@B600000 { + compatible = "nvidia,tegra234-SCE-EN"; + reg = <0x00 0xb600000 0x00 0x40000>; + interrupts = <0x00 0xad 0x04>; + err-notifier-base = <0x00 0x19000>; + status = "okay"; + }; + + aliases { + pcie_c5_ep = "/pcie_ep@141a0000"; + pcie_c6_ep = "/pcie_ep@141c0000"; + pcie_c7_ep = "/pcie_ep@141e0000"; + pcie_c10_ep = "/pcie_ep@140e0000"; + pcie_c0_rp = "/pcie@14180000"; + pcie_c1_rp = "/pcie@14100000"; + pcie_c2_rp = "/pcie@14120000"; + pcie_c3_rp = "/pcie@14140000"; + pcie_c4_rp = "/pcie@14160000"; + pcie_c5_rp = "/pcie@141a0000"; + pcie_c6_rp = "/pcie@141c0000"; + pcie_c7_rp = "/pcie@141e0000"; + pcie_c8_rp = "/pcie@140a0000"; + pcie_c9_rp = "/pcie@140c0000"; + pcie_c10_rp = "/pcie@140e0000"; + serial0 = "/serial@3100000"; + serial1 = "/serial@3110000"; + serial2 = "/serial@c280000"; + serial3 = "/serial@3130000"; + serial4 = "/serial@3140000"; + serial5 = "/serial@3150000"; + serial7 = "/serial@3170000"; + sdhci3 = "/sdhci@3460000"; + sdhci0 = "/sdhci@3400000"; + mmc0 = "/sdhci@3460000"; + spi0 = "/spi@3210000"; + spi1 = "/spi@c260000"; + spi2 = "/spi@3230000"; + spi6 = "/spi@3270000"; + spi7 = "/spi@3300000"; + i2c0 = "/i2c@3160000"; + i2c1 = "/i2c@c240000"; + i2c2 = "/i2c@3180000"; + i2c3 = "/i2c@3190000"; + i2c4 = "/bpmp/i2c"; + i2c5 = "/i2c@31b0000"; + i2c6 = "/i2c@31c0000"; + i2c7 = "/i2c@c250000"; + i2c8 = "/i2c@31e0000"; + tegra-camera-rtcpu = "/rtcpu@bc00000"; + host1x = "/host1x@13e00000"; + rtc0 = "/bpmp/i2c/vrs@3c/rtc"; + rtc1 = "/rtc@c2a0000"; + }; + + pinmux@2430000 { + compatible = "nvidia,tegra234-pinmux"; + reg = <0x00 0x2430000 0x00 0x19100 0x00 0xc300000 0x00 0x4000>; + #gpio-range-cells = <0x03>; + status = "okay"; + phandle = <0x11a>; + + pex_rst_c5_in { + phandle = <0x0f>; + + pex_rst { + nvidia,pins = "pex_l5_rst_n_paf1"; + nvidia,function = "rsvd1"; + nvidia,pull = <0x00>; + nvidia,tristate = <0x01>; + nvidia,enable-input = <0x01>; + nvidia,lpdr = <0x00>; + }; + }; + + pex_rst_c6_in { + phandle = <0x20>; + + pex_rst { + nvidia,pins = "pex_l6_rst_n_paf3"; + nvidia,function = "rsvd1"; + nvidia,pull = <0x00>; + nvidia,tristate = <0x01>; + nvidia,enable-input = <0x01>; + nvidia,io-high-voltage = <0x01>; + nvidia,lpdr = <0x00>; + }; + }; + + pex_rst_c7_in { + phandle = <0x21>; + + pex_rst { + nvidia,pins = "pex_l7_rst_n_pag1"; + nvidia,function = "rsvd1"; + nvidia,pull = <0x00>; + nvidia,tristate = <0x01>; + nvidia,enable-input = <0x01>; + nvidia,io-high-voltage = <0x01>; + nvidia,lpdr = <0x00>; + }; + }; + + pex_rst_c10_in { + phandle = <0x23>; + + pex_rst { + nvidia,pins = "pex_l10_rst_n_pag7"; + nvidia,function = "rsvd1"; + nvidia,pull = <0x00>; + nvidia,tristate = <0x01>; + nvidia,enable-input = <0x01>; + nvidia,io-high-voltage = <0x01>; + nvidia,lpdr = <0x00>; + }; + }; + + eqos_rx_disable { + phandle = <0x2c>; + + eqos { + nvidia,pins = "eqos_rd0_pe6\0eqos_rd1_pe7\0eqos_rd2_pf0\0eqos_rd3_pf1\0eqos_rx_ctl_pf2"; + nvidia,enable-input = <0x00>; + }; + }; + + eqos_rx_enable { + phandle = <0x2d>; + + eqos { + nvidia,pins = "eqos_rd0_pe6\0eqos_rd1_pe7\0eqos_rd2_pf0\0eqos_rd3_pf1\0eqos_rx_ctl_pf2"; + nvidia,enable-input = <0x01>; + }; + }; + }; + + cbb { + compatible = "simple-bus"; + #address-cells = <0x01>; + #size-cells = <0x01>; + ranges = <0x00 0x00 0x00 0x40000000>; + + p2u@03e00000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3e00000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x150 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x00>; + #phy-cells = <0x00>; + phandle = <0x11b>; + }; + + p2u@03e10000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3e10000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x151 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x01>; + #phy-cells = <0x00>; + phandle = <0x11c>; + }; + + p2u@03e20000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3e20000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x152 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x02>; + #phy-cells = <0x00>; + phandle = <0x11d>; + }; + + p2u@03e30000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3e30000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x153 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x03>; + #phy-cells = <0x00>; + phandle = <0x26>; + }; + + p2u@03e40000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3e40000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x154 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x04>; + #phy-cells = <0x00>; + phandle = <0x27>; + }; + + p2u@03e50000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3e50000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x155 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x05>; + #phy-cells = <0x00>; + phandle = <0x28>; + }; + + p2u@03e60000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3e60000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x156 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x06>; + #phy-cells = <0x00>; + phandle = <0x29>; + }; + + p2u@03e70000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3e70000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x157 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x07>; + #phy-cells = <0x00>; + phandle = <0x2a>; + }; + + p2u@03e90000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3e90000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x158 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x08>; + #phy-cells = <0x00>; + phandle = <0x16>; + }; + + p2u@03ea0000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3ea0000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x159 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x09>; + #phy-cells = <0x00>; + phandle = <0x17>; + }; + + p2u@03eb0000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3eb0000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x15a 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x0a>; + #phy-cells = <0x00>; + phandle = <0x18>; + }; + + p2u@03ec0000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3ec0000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x15b 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x0b>; + #phy-cells = <0x00>; + phandle = <0x19>; + }; + + p2u@03ed0000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3ed0000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x15c 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x0c>; + #phy-cells = <0x00>; + phandle = <0x1a>; + }; + + p2u@03ee0000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3ee0000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x15d 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x0d>; + #phy-cells = <0x00>; + phandle = <0x1b>; + }; + + p2u@03ef0000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3ef0000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x15e 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x0e>; + #phy-cells = <0x00>; + phandle = <0x1c>; + }; + + p2u@03f00000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3f00000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x15f 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x0f>; + #phy-cells = <0x00>; + phandle = <0x1d>; + }; + + p2u@03f20000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3f20000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0xcb 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x10>; + #phy-cells = <0x00>; + phandle = <0x11e>; + }; + + p2u@03f30000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3f30000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0xdc 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x11>; + #phy-cells = <0x00>; + phandle = <0x11f>; + }; + + p2u@03f40000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3f40000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0xdd 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x12>; + #phy-cells = <0x00>; + phandle = <0x120>; + }; + + p2u@03f50000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3f50000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0xde 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x13>; + #phy-cells = <0x00>; + phandle = <0x121>; + }; + + p2u@03f60000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3f60000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x6c 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x14>; + #phy-cells = <0x00>; + phandle = <0x122>; + }; + + p2u@03f70000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3f70000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x6d 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x15>; + #phy-cells = <0x00>; + phandle = <0x123>; + }; + + p2u@03f80000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3f80000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x6e 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x16>; + #phy-cells = <0x00>; + phandle = <0x124>; + }; + + p2u@03f90000 { + compatible = "nvidia,tegra234-p2u"; + reg = <0x3f90000 0x10000>; + reg-names = "ctl"; + interrupts = <0x00 0x6f 0x04>; + interrupt-names = "intr"; + nvidia,bpmp = <0x04 0x17>; + #phy-cells = <0x00>; + phandle = <0x125>; + }; + }; + + pcie_ep@141a0000 { + compatible = "nvidia,tegra234-pcie-ep\0snps,dw-pcie"; + power-domains = <0x04 0x05>; + reg = <0x00 0x141a0000 0x00 0x20000 0x00 0x3a040000 0x00 0x40000 0x00 0x3a080000 0x00 0x40000 0x27 0x40000000 0x04 0x00>; + reg-names = "appl\0atu_dma\0dbi\0addr_space"; + #address-cells = <0x03>; + #size-cells = <0x02>; + status = "disabled"; + num-lanes = <0x08>; + clocks = <0x04 0xe1 0x04 0xea>; + clock-names = "core\0core_m"; + resets = <0x04 0x82 0x04 0x81>; + reset-names = "apb\0core"; + pinctrl-names = "default"; + pinctrl-0 = <0x0f>; + interrupts = <0x00 0x35 0x04>; + interrupt-names = "intr"; + nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x18519600 0xc28cb00 0xc28cb00 0x18519600 0x27b25a80 0xc28cb00 0x18519600 0x27b25a80 0x3f89de80 0x18519600 0x27b25a80 0x3f89de80 0x7f22ff40>; + nvidia,host1x = <0x10>; + nvidia,enable-ext-refclk; + nvidia,max-speed = <0x04>; + nvidia,bar0-size = <0x100000>; + nvidia,device-id = [22 9b]; + nvidia,controller-id = <0x04 0x05>; + nvidia,aux-clk-freq = <0x13>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,aspm-l1-entrance-latency = <0x05>; + num-ib-windows = <0x02>; + num-ob-windows = <0x08>; + iommus = <0x02 0x14>; + iommu-map = <0x00 0x02 0x14 0x1000>; + msi-parent = <0x11 0x14>; + msi-map = <0x00 0x11 0x14 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + nvidia,cfg-link-cap-l1sub = <0x1c4>; + nvidia,cap-pl16g-status = <0x174>; + nvidia,cap-pl16g-cap-off = <0x188>; + nvidia,event-cntr-ctrl = <0x1d8>; + nvidia,event-cntr-data = <0x1dc>; + nvidia,dl-feature-cap = <0x30c>; + nvidia,ptm-cap-off = <0x318>; + interconnects = <0x12 0x0f 0x12 0x00>; + interconnect-names = "icc_bwmgr"; + nvidia,bpmp = <0x04 0x05>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + vddio-pex-ctl-supply = <0x13>; + reset-gpios = <0x14 0xb9 0x01>; + nvidia,refclk-select-gpios = <0x15 0x04 0x00>; + phys = <0x16 0x17 0x18 0x19 0x1a 0x1b 0x1c 0x1d>; + phy-names = "p2u-0\0p2u-1\0p2u-2\0p2u-3\0p2u-4\0p2u-5\0p2u-6\0p2u-7"; + vpcie3v3-supply = <0x1e>; + vpcie12v-supply = <0x1f>; + phandle = <0x126>; + }; + + pcie_ep@141c0000 { + compatible = "nvidia,tegra234-pcie-ep\0snps,dw-pcie"; + power-domains = <0x04 0x06>; + reg = <0x00 0x141c0000 0x00 0x20000 0x00 0x3c040000 0x00 0x40000 0x00 0x3c080000 0x00 0x40000 0x2b 0x40000000 0x03 0x00>; + reg-names = "appl\0atu_dma\0dbi\0addr_space"; + #address-cells = <0x03>; + #size-cells = <0x02>; + status = "disabled"; + num-lanes = <0x04>; + clocks = <0x04 0xa1 0x04 0xeb>; + clock-names = "core\0core_m"; + resets = <0x04 0x0c 0x04 0x0b>; + reset-names = "apb\0core"; + pinctrl-names = "default"; + pinctrl-0 = <0x20>; + interrupts = <0x00 0x160 0x04>; + interrupt-names = "intr"; + nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x18519600 0xc28cb00 0xc28cb00 0x18519600 0x2faf0800 0xc28cb00 0x18519600 0x2faf0800 0x5f5e1000 0x00 0x00 0x00 0x00>; + nvidia,enable-ext-refclk; + nvidia,max-speed = <0x04>; + nvidia,bar0-size = <0x100000>; + nvidia,device-id = [22 9d]; + nvidia,controller-id = <0x04 0x06>; + nvidia,aux-clk-freq = <0x13>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,aspm-l1-entrance-latency = <0x05>; + num-ib-windows = <0x02>; + num-ob-windows = <0x08>; + iommus = <0x02 0x15>; + iommu-map = <0x00 0x02 0x15 0x1000>; + msi-parent = <0x11 0x15>; + msi-map = <0x00 0x11 0x15 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + nvidia,cfg-link-cap-l1sub = <0x1b0>; + nvidia,cap-pl16g-status = <0x174>; + nvidia,cap-pl16g-cap-off = <0x188>; + nvidia,event-cntr-ctrl = <0x1c4>; + nvidia,event-cntr-data = <0x1c8>; + nvidia,dl-feature-cap = <0x2f8>; + nvidia,ptm-cap-off = <0x304>; + interconnects = <0x12 0x10 0x12 0x00>; + interconnect-names = "icc_bwmgr"; + nvidia,bpmp = <0x04 0x06>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + vddio-pex-ctl-supply = <0x13>; + phandle = <0x127>; + }; + + pcie_ep@141e0000 { + compatible = "nvidia,tegra234-pcie-ep\0snps,dw-pcie"; + power-domains = <0x04 0x10>; + reg = <0x00 0x141e0000 0x00 0x20000 0x00 0x3e040000 0x00 0x40000 0x00 0x3e080000 0x00 0x40000 0x2e 0x40000000 0x04 0x00>; + reg-names = "appl\0atu_dma\0dbi\0addr_space"; + #address-cells = <0x03>; + #size-cells = <0x02>; + status = "disabled"; + num-lanes = <0x08>; + clocks = <0x04 0xab 0x04 0xf4>; + clock-names = "core\0core_m"; + resets = <0x04 0x0f 0x04 0x0e>; + reset-names = "apb\0core"; + pinctrl-names = "default"; + pinctrl-0 = <0x21>; + interrupts = <0x00 0x162 0x04>; + interrupt-names = "intr"; + nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x18519600 0xc28cb00 0xc28cb00 0x18519600 0x27b25a80 0xc28cb00 0x18519600 0x27b25a80 0x3f89de80 0x18519600 0x27b25a80 0x3f89de80 0x7f22ff40>; + nvidia,enable-ext-refclk; + nvidia,max-speed = <0x04>; + nvidia,bar0-size = <0x100000>; + nvidia,device-id = [22 9b]; + nvidia,controller-id = <0x04 0x07>; + nvidia,aux-clk-freq = <0x13>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,aspm-l1-entrance-latency = <0x05>; + num-ib-windows = <0x02>; + num-ob-windows = <0x08>; + iommus = <0x22 0x08>; + iommu-map = <0x00 0x22 0x08 0x1000>; + msi-parent = <0x11 0x08>; + msi-map = <0x00 0x11 0x08 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + nvidia,cfg-link-cap-l1sub = <0x1c4>; + nvidia,cap-pl16g-status = <0x174>; + nvidia,cap-pl16g-cap-off = <0x188>; + nvidia,event-cntr-ctrl = <0x1d8>; + nvidia,event-cntr-data = <0x1dc>; + nvidia,dl-feature-cap = <0x30c>; + nvidia,ptm-cap-off = <0x318>; + interconnects = <0x12 0x11 0x12 0x00>; + interconnect-names = "icc_bwmgr"; + nvidia,bpmp = <0x04 0x07>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + vddio-pex-ctl-supply = <0x13>; + phandle = <0x128>; + }; + + pcie_ep@140e0000 { + compatible = "nvidia,tegra234-pcie-ep\0snps,dw-pcie"; + power-domains = <0x04 0x0f>; + reg = <0x00 0x140e0000 0x00 0x20000 0x00 0x2e040000 0x00 0x40000 0x00 0x2e080000 0x00 0x40000 0x38 0x40000000 0x03 0x00>; + reg-names = "appl\0atu_dma\0dbi\0addr_space"; + #address-cells = <0x03>; + #size-cells = <0x02>; + status = "disabled"; + num-lanes = <0x04>; + clocks = <0x04 0xbb 0x04 0xf7>; + clock-names = "core\0core_m"; + resets = <0x04 0x39 0x04 0x38>; + reset-names = "apb\0core"; + pinctrl-names = "default"; + pinctrl-0 = <0x23>; + interrupts = <0x00 0x168 0x04>; + interrupt-names = "intr"; + nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x18519600 0xc28cb00 0xc28cb00 0x18519600 0x2faf0800 0xc28cb00 0x18519600 0x2faf0800 0x5f5e1000 0x00 0x00 0x00 0x00>; + nvidia,enable-ext-refclk; + nvidia,max-speed = <0x04>; + nvidia,bar0-size = <0x100000>; + nvidia,device-id = [22 9d]; + nvidia,controller-id = <0x04 0x0a>; + nvidia,aux-clk-freq = <0x13>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,aspm-l1-entrance-latency = <0x05>; + num-ib-windows = <0x02>; + num-ob-windows = <0x08>; + iommus = <0x22 0x0b>; + iommu-map = <0x00 0x22 0x0b 0x1000>; + msi-parent = <0x11 0x0b>; + msi-map = <0x00 0x11 0x0b 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + nvidia,cfg-link-cap-l1sub = <0x1b0>; + nvidia,cap-pl16g-status = <0x174>; + nvidia,cap-pl16g-cap-off = <0x188>; + nvidia,event-cntr-ctrl = <0x1c4>; + nvidia,event-cntr-data = <0x1c8>; + nvidia,dl-feature-cap = <0x2f8>; + nvidia,ptm-cap-off = <0x304>; + interconnects = <0x12 0x14 0x12 0x00>; + interconnect-names = "icc_bwmgr"; + nvidia,bpmp = <0x04 0x0a>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + vddio-pex-ctl-supply = <0x13>; + phandle = <0x129>; + }; + + pcie@14180000 { + compatible = "nvidia,tegra234-pcie\0snps,dw-pcie"; + power-domains = <0x04 0x07>; + reg = <0x00 0x14180000 0x00 0x20000 0x00 0x38000000 0x00 0x40000 0x00 0x38040000 0x00 0x40000 0x00 0x38080000 0x00 0x40000 0x27 0x30000000 0x00 0x10000000>; + reg-names = "appl\0config\0atu_dma\0dbi\0ecam"; + status = "disabled"; + #address-cells = <0x03>; + #size-cells = <0x02>; + device_type = "pci"; + num-lanes = <0x04>; + num-viewport = <0x08>; + linux,pci-domain = <0x00>; + clocks = <0x04 0xdc 0x04 0xe5>; + clock-names = "core\0core_m"; + resets = <0x04 0x79 0x04 0x74>; + reset-names = "apb\0core"; + interrupts = <0x00 0x48 0x04 0x00 0x49 0x04>; + interrupt-names = "intr\0msi"; + interconnects = <0x24 0xd8 0x24 0xd9>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x02 0x12>; + iommu-map = <0x00 0x02 0x12 0x1000>; + msi-parent = <0x11 0x12>; + msi-map = <0x00 0x11 0x12 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + #interrupt-cells = <0x01>; + interrupt-map-mask = <0x00 0x00 0x00 0x00>; + interrupt-map = <0x00 0x00 0x00 0x00 0x01 0x00 0x48 0x04>; + nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x18519600 0xc28cb00 0xc28cb00 0x18519600 0x2faf0800 0xc28cb00 0x18519600 0x2faf0800 0x5f5e1000 0x00 0x00 0x00 0x00>; + nvidia,max-speed = <0x04>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,controller-id = <0x04 0x00>; + nvidia,disable-l1-cpm; + nvidia,aux-clk-freq = <0x13>; + nvidia,preset-init = <0x05>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,bpmp = <0x04 0x00>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + bus-range = <0x00 0xff>; + ranges = <0x81000000 0x00 0x38100000 0x00 0x38100000 0x00 0x100000 0x82000000 0x00 0x40000000 0x27 0x28000000 0x00 0x8000000 0xc3000000 0x24 0x40000000 0x24 0x40000000 0x02 0xe8000000>; + nvidia,cfg-link-cap-l1sub = <0x1b0>; + nvidia,cap-pl16g-status = <0x174>; + nvidia,cap-pl16g-cap-off = <0x188>; + nvidia,event-cntr-ctrl = <0x1c4>; + nvidia,event-cntr-data = <0x1c8>; + nvidia,dl-feature-cap = <0x2f8>; + nvidia,ptm-cap-off = <0x304>; + vddio-pex-ctl-supply = <0x25>; + phandle = <0x12a>; + }; + + pcie@14100000 { + compatible = "nvidia,tegra234-pcie\0snps,dw-pcie"; + power-domains = <0x04 0x09>; + reg = <0x00 0x14100000 0x00 0x20000 0x00 0x30000000 0x00 0x40000 0x00 0x30040000 0x00 0x40000 0x00 0x30080000 0x00 0x40000 0x20 0xb0000000 0x00 0x10000000>; + reg-names = "appl\0config\0atu_dma\0dbi\0ecam"; + status = "okay"; + #address-cells = <0x03>; + #size-cells = <0x02>; + device_type = "pci"; + num-lanes = <0x01>; + num-viewport = <0x08>; + linux,pci-domain = <0x01>; + clocks = <0x04 0xdd 0x04 0xe6>; + clock-names = "core\0core_m"; + resets = <0x04 0x7a 0x04 0x75>; + reset-names = "apb\0core"; + interrupts = <0x00 0x2d 0x04 0x00 0x2e 0x04>; + interrupt-names = "intr\0msi"; + interconnects = <0x24 0xda 0x24 0xdb>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x05>; + iommu-map = <0x00 0x22 0x05 0x1000>; + msi-parent = <0x11 0x05>; + msi-map = <0x00 0x11 0x05 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + #interrupt-cells = <0x01>; + interrupt-map-mask = <0x00 0x00 0x00 0x00>; + interrupt-map = <0x00 0x00 0x00 0x00 0x01 0x00 0x2d 0x04>; + nvidia,dvfs-tbl = <0xc28cb00 0x18519600 0x2faf0800 0x4f73f740 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00>; + nvidia,max-speed = <0x04>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,controller-id = <0x04 0x01>; + nvidia,host1x = <0x10>; + nvidia,disable-l1-cpm; + nvidia,aux-clk-freq = <0x13>; + nvidia,preset-init = <0x05>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,bpmp = <0x04 0x01>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + bus-range = <0x00 0xff>; + ranges = <0x81000000 0x00 0x30100000 0x00 0x30100000 0x00 0x100000 0x82000000 0x00 0x40000000 0x20 0xa8000000 0x00 0x8000000 0xc3000000 0x20 0x80000000 0x20 0x80000000 0x00 0x28000000>; + nvidia,cfg-link-cap-l1sub = <0x194>; + nvidia,cap-pl16g-status = <0x164>; + nvidia,cap-pl16g-cap-off = <0x178>; + nvidia,event-cntr-ctrl = <0x1a8>; + nvidia,event-cntr-data = <0x1ac>; + nvidia,dl-feature-cap = <0x2dc>; + nvidia,ptm-cap-off = <0x2e8>; + vddio-pex-ctl-supply = <0x25>; + phys = <0x26>; + phy-names = "p2u-0"; + phandle = <0x12b>; + }; + + pcie@14120000 { + compatible = "nvidia,tegra234-pcie\0snps,dw-pcie"; + power-domains = <0x04 0x09>; + reg = <0x00 0x14120000 0x00 0x20000 0x00 0x32000000 0x00 0x40000 0x00 0x32040000 0x00 0x40000 0x00 0x32080000 0x00 0x40000 0x20 0xf0000000 0x00 0x10000000>; + reg-names = "appl\0config\0atu_dma\0dbi\0ecam"; + status = "disabled"; + #address-cells = <0x03>; + #size-cells = <0x02>; + device_type = "pci"; + num-lanes = <0x01>; + num-viewport = <0x08>; + linux,pci-domain = <0x02>; + clocks = <0x04 0xde 0x04 0xe7>; + clock-names = "core\0core_m"; + resets = <0x04 0x7b 0x04 0x76>; + reset-names = "apb\0core"; + interrupts = <0x00 0x2f 0x04 0x00 0x30 0x04>; + interrupt-names = "intr\0msi"; + interconnects = <0x24 0xdc 0x24 0xdd>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x06>; + iommu-map = <0x00 0x22 0x06 0x1000>; + msi-parent = <0x11 0x06>; + msi-map = <0x00 0x11 0x06 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + #interrupt-cells = <0x01>; + interrupt-map-mask = <0x00 0x00 0x00 0x00>; + interrupt-map = <0x00 0x00 0x00 0x00 0x01 0x00 0x2f 0x04>; + nvidia,dvfs-tbl = <0xc28cb00 0x18519600 0x2faf0800 0x4f73f740 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00>; + nvidia,max-speed = <0x04>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,controller-id = <0x04 0x02>; + nvidia,disable-l1-cpm; + nvidia,aux-clk-freq = <0x13>; + nvidia,preset-init = <0x05>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,bpmp = <0x04 0x02>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + bus-range = <0x00 0xff>; + ranges = <0x81000000 0x00 0x32100000 0x00 0x32100000 0x00 0x100000 0x82000000 0x00 0x40000000 0x20 0xe8000000 0x00 0x8000000 0xc3000000 0x20 0xc0000000 0x20 0xc0000000 0x00 0x28000000>; + nvidia,cfg-link-cap-l1sub = <0x194>; + nvidia,cap-pl16g-status = <0x164>; + nvidia,cap-pl16g-cap-off = <0x178>; + nvidia,event-cntr-ctrl = <0x1a8>; + nvidia,event-cntr-data = <0x1ac>; + nvidia,dl-feature-cap = <0x2dc>; + nvidia,ptm-cap-off = <0x2e8>; + vddio-pex-ctl-supply = <0x25>; + phandle = <0x12c>; + }; + + pcie@14140000 { + compatible = "nvidia,tegra234-pcie\0snps,dw-pcie"; + power-domains = <0x04 0x09>; + reg = <0x00 0x14140000 0x00 0x20000 0x00 0x34000000 0x00 0x40000 0x00 0x34040000 0x00 0x40000 0x00 0x34080000 0x00 0x40000 0x21 0x30000000 0x00 0x10000000>; + reg-names = "appl\0config\0atu_dma\0dbi\0ecam"; + status = "disabled"; + #address-cells = <0x03>; + #size-cells = <0x02>; + device_type = "pci"; + num-lanes = <0x01>; + num-viewport = <0x08>; + linux,pci-domain = <0x03>; + clocks = <0x04 0xdf 0x04 0xe8>; + clock-names = "core\0core_m"; + resets = <0x04 0x7c 0x04 0x77>; + reset-names = "apb\0core"; + interrupts = <0x00 0x31 0x04 0x00 0x32 0x04>; + interrupt-names = "intr\0msi"; + interconnects = <0x24 0xde 0x24 0xdf>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x07>; + iommu-map = <0x00 0x22 0x07 0x1000>; + msi-parent = <0x11 0x07>; + msi-map = <0x00 0x11 0x07 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + #interrupt-cells = <0x01>; + interrupt-map-mask = <0x00 0x00 0x00 0x00>; + interrupt-map = <0x00 0x00 0x00 0x00 0x01 0x00 0x31 0x04>; + nvidia,dvfs-tbl = <0xc28cb00 0x18519600 0x2faf0800 0x4f73f740 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00>; + nvidia,max-speed = <0x04>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,controller-id = <0x04 0x03>; + nvidia,disable-l1-cpm; + nvidia,aux-clk-freq = <0x13>; + nvidia,preset-init = <0x05>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,bpmp = <0x04 0x03>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + bus-range = <0x00 0xff>; + ranges = <0x81000000 0x00 0x34100000 0x00 0x34100000 0x00 0x100000 0x82000000 0x00 0x40000000 0x21 0x28000000 0x00 0x8000000 0xc3000000 0x21 0x00 0x21 0x00 0x00 0x28000000>; + nvidia,cfg-link-cap-l1sub = <0x194>; + nvidia,cap-pl16g-status = <0x164>; + nvidia,cap-pl16g-cap-off = <0x178>; + nvidia,event-cntr-ctrl = <0x1a8>; + nvidia,event-cntr-data = <0x1ac>; + nvidia,dl-feature-cap = <0x2dc>; + nvidia,ptm-cap-off = <0x2e8>; + vddio-pex-ctl-supply = <0x25>; + phandle = <0x12d>; + }; + + pcie@14160000 { + compatible = "nvidia,tegra234-pcie\0snps,dw-pcie"; + power-domains = <0x04 0x08>; + reg = <0x00 0x14160000 0x00 0x20000 0x00 0x36000000 0x00 0x40000 0x00 0x36040000 0x00 0x40000 0x00 0x36080000 0x00 0x40000 0x24 0x30000000 0x00 0x10000000>; + reg-names = "appl\0config\0atu_dma\0dbi\0ecam"; + status = "okay"; + #address-cells = <0x03>; + #size-cells = <0x02>; + device_type = "pci"; + num-lanes = <0x04>; + num-viewport = <0x08>; + linux,pci-domain = <0x04>; + clocks = <0x04 0xe0 0x04 0xe9>; + clock-names = "core\0core_m"; + resets = <0x04 0x7d 0x04 0x78>; + reset-names = "apb\0core"; + interrupts = <0x00 0x33 0x04 0x00 0x34 0x04>; + interrupt-names = "intr\0msi"; + interconnects = <0x24 0xe0 0x24 0xe1>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x02 0x13>; + iommu-map = <0x00 0x02 0x13 0x1000>; + msi-parent = <0x11 0x13>; + msi-map = <0x00 0x11 0x13 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + #interrupt-cells = <0x01>; + interrupt-map-mask = <0x00 0x00 0x00 0x00>; + interrupt-map = <0x00 0x00 0x00 0x00 0x01 0x00 0x33 0x04>; + nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x18519600 0xc28cb00 0xc28cb00 0x18519600 0x2faf0800 0xc28cb00 0x18519600 0x2faf0800 0x5f5e1000 0x00 0x00 0x00 0x00>; + nvidia,max-speed = <0x04>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,controller-id = <0x04 0x04>; + nvidia,disable-l1-cpm; + nvidia,aux-clk-freq = <0x13>; + nvidia,preset-init = <0x05>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,bpmp = <0x04 0x04>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + bus-range = <0x00 0xff>; + ranges = <0x81000000 0x00 0x36100000 0x00 0x36100000 0x00 0x100000 0x82000000 0x00 0x40000000 0x24 0x28000000 0x00 0x8000000 0xc3000000 0x21 0x40000000 0x21 0x40000000 0x02 0xe8000000>; + nvidia,cfg-link-cap-l1sub = <0x1b0>; + nvidia,cap-pl16g-status = <0x174>; + nvidia,cap-pl16g-cap-off = <0x188>; + nvidia,event-cntr-ctrl = <0x1c4>; + nvidia,event-cntr-data = <0x1c8>; + nvidia,dl-feature-cap = <0x2f8>; + nvidia,ptm-cap-off = <0x304>; + vddio-pex-ctl-supply = <0x25>; + phys = <0x27 0x28 0x29 0x2a>; + phy-names = "p2u-0\0p2u-1\0p2u-2\0p2u-3"; + phandle = <0x12e>; + }; + + pcie@141a0000 { + compatible = "nvidia,tegra234-pcie\0snps,dw-pcie"; + power-domains = <0x04 0x05>; + reg = <0x00 0x141a0000 0x00 0x20000 0x00 0x3a000000 0x00 0x40000 0x00 0x3a040000 0x00 0x40000 0x00 0x3a080000 0x00 0x40000 0x2b 0x30000000 0x00 0x10000000>; + reg-names = "appl\0config\0atu_dma\0dbi\0ecam"; + status = "okay"; + #address-cells = <0x03>; + #size-cells = <0x02>; + device_type = "pci"; + num-lanes = <0x08>; + num-viewport = <0x08>; + linux,pci-domain = <0x05>; + clocks = <0x04 0xe1 0x04 0xea>; + clock-names = "core\0core_m"; + resets = <0x04 0x82 0x04 0x81>; + reset-names = "apb\0core"; + interrupts = <0x00 0x35 0x04 0x00 0x36 0x04>; + interrupt-names = "intr\0msi"; + interconnects = <0x24 0xe2 0x24 0xe3>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x02 0x14>; + iommu-map = <0x00 0x02 0x14 0x1000>; + msi-parent = <0x11 0x14>; + msi-map = <0x00 0x11 0x14 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + #interrupt-cells = <0x01>; + interrupt-map-mask = <0x00 0x00 0x00 0x00>; + interrupt-map = <0x00 0x00 0x00 0x00 0x01 0x00 0x35 0x04>; + nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x18519600 0xc28cb00 0xc28cb00 0x18519600 0x27b25a80 0xc28cb00 0x18519600 0x27b25a80 0x3f89de80 0x18519600 0x27b25a80 0x3f89de80 0x7f22ff40>; + nvidia,max-speed = <0x04>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,controller-id = <0x04 0x05>; + nvidia,tsa-config = <0x200b004>; + nvidia,disable-l1-cpm; + nvidia,aux-clk-freq = <0x13>; + nvidia,preset-init = <0x05>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,bpmp = <0x04 0x05>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + bus-range = <0x00 0xff>; + ranges = <0x81000000 0x00 0x3a100000 0x00 0x3a100000 0x00 0x100000 0x82000000 0x00 0x40000000 0x2b 0x28000000 0x00 0x8000000 0xc3000000 0x27 0x40000000 0x27 0x40000000 0x03 0xe8000000>; + nvidia,cfg-link-cap-l1sub = <0x1c4>; + nvidia,cap-pl16g-status = <0x174>; + nvidia,cap-pl16g-cap-off = <0x188>; + nvidia,event-cntr-ctrl = <0x1d8>; + nvidia,event-cntr-data = <0x1dc>; + nvidia,dl-feature-cap = <0x30c>; + nvidia,ptm-cap-off = <0x318>; + vddio-pex-ctl-supply = <0x13>; + phys = <0x16 0x17 0x18 0x19 0x1a 0x1b 0x1c 0x1d>; + phy-names = "p2u-0\0p2u-1\0p2u-2\0p2u-3\0p2u-4\0p2u-5\0p2u-6\0p2u-7"; + vpcie3v3-supply = <0x1e>; + vpcie12v-supply = <0x1f>; + phandle = <0x12f>; + }; + + pcie@141c0000 { + compatible = "nvidia,tegra234-pcie\0snps,dw-pcie"; + power-domains = <0x04 0x06>; + reg = <0x00 0x141c0000 0x00 0x20000 0x00 0x3c000000 0x00 0x40000 0x00 0x3c040000 0x00 0x40000 0x00 0x3c080000 0x00 0x40000 0x2e 0x30000000 0x00 0x10000000>; + reg-names = "appl\0config\0atu_dma\0dbi\0ecam"; + status = "disabled"; + #address-cells = <0x03>; + #size-cells = <0x02>; + device_type = "pci"; + num-lanes = <0x04>; + num-viewport = <0x08>; + linux,pci-domain = <0x06>; + clocks = <0x04 0xa1 0x04 0xeb>; + clock-names = "core\0core_m"; + resets = <0x04 0x0c 0x04 0x0b>; + reset-names = "apb\0core"; + interrupts = <0x00 0x160 0x04 0x00 0x161 0x04>; + interrupt-names = "intr\0msi"; + interconnects = <0x24 0x28 0x24 0x29>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x02 0x15>; + iommu-map = <0x00 0x02 0x15 0x1000>; + msi-parent = <0x11 0x15>; + msi-map = <0x00 0x11 0x15 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + #interrupt-cells = <0x01>; + interrupt-map-mask = <0x00 0x00 0x00 0x00>; + interrupt-map = <0x00 0x00 0x00 0x00 0x01 0x00 0x160 0x04>; + nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x18519600 0xc28cb00 0xc28cb00 0x18519600 0x2faf0800 0xc28cb00 0x18519600 0x2faf0800 0x5f5e1000 0x00 0x00 0x00 0x00>; + nvidia,max-speed = <0x04>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,controller-id = <0x04 0x06>; + nvidia,tsa-config = <0x200b004>; + nvidia,disable-l1-cpm; + nvidia,aux-clk-freq = <0x13>; + nvidia,preset-init = <0x05>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,bpmp = <0x04 0x06>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + bus-range = <0x00 0xff>; + ranges = <0x81000000 0x00 0x3c100000 0x00 0x3c100000 0x00 0x100000 0x82000000 0x00 0x40000000 0x2e 0x28000000 0x00 0x8000000 0xc3000000 0x2b 0x40000000 0x2b 0x40000000 0x02 0xe8000000>; + nvidia,cfg-link-cap-l1sub = <0x1b0>; + nvidia,cap-pl16g-status = <0x174>; + nvidia,cap-pl16g-cap-off = <0x188>; + nvidia,event-cntr-ctrl = <0x1c4>; + nvidia,event-cntr-data = <0x1c8>; + nvidia,dl-feature-cap = <0x2f8>; + nvidia,ptm-cap-off = <0x304>; + vddio-pex-ctl-supply = <0x13>; + phandle = <0x130>; + }; + + pcie@141e0000 { + compatible = "nvidia,tegra234-pcie\0snps,dw-pcie"; + power-domains = <0x04 0x10>; + reg = <0x00 0x141e0000 0x00 0x20000 0x00 0x3e000000 0x00 0x40000 0x00 0x3e040000 0x00 0x40000 0x00 0x3e080000 0x00 0x40000 0x32 0x30000000 0x00 0x10000000>; + reg-names = "appl\0config\0atu_dma\0dbi\0ecam"; + status = "disabled"; + #address-cells = <0x03>; + #size-cells = <0x02>; + device_type = "pci"; + num-lanes = <0x08>; + num-viewport = <0x08>; + linux,pci-domain = <0x07>; + clocks = <0x04 0xab 0x04 0xf4>; + clock-names = "core\0core_m"; + resets = <0x04 0x0f 0x04 0x0e>; + reset-names = "apb\0core"; + interrupts = <0x00 0x162 0x04 0x00 0x163 0x04>; + interrupt-names = "intr\0msi"; + interconnects = <0x24 0x2a 0x24 0x30>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x08>; + iommu-map = <0x00 0x22 0x08 0x1000>; + msi-parent = <0x11 0x08>; + msi-map = <0x00 0x11 0x08 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + #interrupt-cells = <0x01>; + interrupt-map-mask = <0x00 0x00 0x00 0x00>; + interrupt-map = <0x00 0x00 0x00 0x00 0x01 0x00 0x162 0x04>; + nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x18519600 0xc28cb00 0xc28cb00 0x18519600 0x27b25a80 0xc28cb00 0x18519600 0x27b25a80 0x3f89de80 0x18519600 0x27b25a80 0x3f89de80 0x7f22ff40>; + nvidia,max-speed = <0x04>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,controller-id = <0x04 0x07>; + nvidia,tsa-config = <0x200b004>; + nvidia,disable-l1-cpm; + nvidia,aux-clk-freq = <0x13>; + nvidia,preset-init = <0x05>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,bpmp = <0x04 0x07>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + bus-range = <0x00 0xff>; + ranges = <0x81000000 0x00 0x3e100000 0x00 0x3e100000 0x00 0x100000 0x82000000 0x00 0x40000000 0x32 0x28000000 0x00 0x8000000 0xc3000000 0x2e 0x40000000 0x2e 0x40000000 0x03 0xe8000000>; + nvidia,cfg-link-cap-l1sub = <0x1c4>; + nvidia,cap-pl16g-status = <0x174>; + nvidia,cap-pl16g-cap-off = <0x188>; + nvidia,event-cntr-ctrl = <0x1d8>; + nvidia,event-cntr-data = <0x1dc>; + nvidia,dl-feature-cap = <0x30c>; + nvidia,ptm-cap-off = <0x318>; + vddio-pex-ctl-supply = <0x13>; + phandle = <0x131>; + }; + + pcie@140a0000 { + compatible = "nvidia,tegra234-pcie\0snps,dw-pcie"; + power-domains = <0x04 0x0d>; + reg = <0x00 0x140a0000 0x00 0x20000 0x00 0x2a000000 0x00 0x40000 0x00 0x2a040000 0x00 0x40000 0x00 0x2a080000 0x00 0x40000 0x35 0x30000000 0x00 0x10000000>; + reg-names = "appl\0config\0atu_dma\0dbi\0ecam"; + status = "disabled"; + #address-cells = <0x03>; + #size-cells = <0x02>; + device_type = "pci"; + num-lanes = <0x04>; + num-viewport = <0x08>; + linux,pci-domain = <0x08>; + clocks = <0x04 0xac 0x04 0xf5>; + clock-names = "core\0core_m"; + resets = <0x04 0x1a 0x04 0x19>; + reset-names = "apb\0core"; + interrupts = <0x00 0x164 0x04 0x00 0x165 0x04>; + interrupt-names = "intr\0msi"; + interconnects = <0x24 0x32 0x24 0x3b>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x09>; + iommu-map = <0x00 0x22 0x09 0x1000>; + msi-parent = <0x11 0x09>; + msi-map = <0x00 0x11 0x09 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + #interrupt-cells = <0x01>; + interrupt-map-mask = <0x00 0x00 0x00 0x00>; + interrupt-map = <0x00 0x00 0x00 0x00 0x01 0x00 0x164 0x04>; + nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x18519600 0xc28cb00 0xc28cb00 0x18519600 0x2faf0800 0xc28cb00 0x18519600 0x2faf0800 0x5f5e1000 0x00 0x00 0x00 0x00>; + nvidia,max-speed = <0x04>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,controller-id = <0x04 0x08>; + nvidia,tsa-config = <0x200b004>; + nvidia,disable-l1-cpm; + nvidia,aux-clk-freq = <0x13>; + nvidia,preset-init = <0x05>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,bpmp = <0x04 0x08>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + bus-range = <0x00 0xff>; + ranges = <0x81000000 0x00 0x2a100000 0x00 0x2a100000 0x00 0x100000 0x82000000 0x00 0x40000000 0x35 0x28000000 0x00 0x8000000 0xc3000000 0x32 0x40000000 0x32 0x40000000 0x02 0xe8000000>; + nvidia,cfg-link-cap-l1sub = <0x1b0>; + nvidia,cap-pl16g-status = <0x174>; + nvidia,cap-pl16g-cap-off = <0x188>; + nvidia,event-cntr-ctrl = <0x1c4>; + nvidia,event-cntr-data = <0x1c8>; + nvidia,dl-feature-cap = <0x2f8>; + nvidia,ptm-cap-off = <0x304>; + vddio-pex-ctl-supply = <0x13>; + phandle = <0x132>; + }; + + pcie@140c0000 { + compatible = "nvidia,tegra234-pcie\0snps,dw-pcie"; + power-domains = <0x04 0x0e>; + reg = <0x00 0x140c0000 0x00 0x20000 0x00 0x2c000000 0x00 0x40000 0x00 0x2c040000 0x00 0x40000 0x00 0x2c080000 0x00 0x40000 0x38 0x30000000 0x00 0x10000000>; + reg-names = "appl\0config\0atu_dma\0dbi\0ecam"; + status = "disabled"; + #address-cells = <0x03>; + #size-cells = <0x02>; + device_type = "pci"; + num-lanes = <0x04>; + num-viewport = <0x08>; + linux,pci-domain = <0x09>; + clocks = <0x04 0xad 0x04 0xf6>; + clock-names = "core\0core_m"; + resets = <0x04 0x1c 0x04 0x1b>; + reset-names = "apb\0core"; + interrupts = <0x00 0x166 0x04 0x00 0x167 0x04>; + interrupt-names = "intr\0msi"; + interconnects = <0x24 0x3c 0x24 0x3e>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x02 0x1f>; + iommu-map = <0x00 0x02 0x1f 0x1000>; + msi-parent = <0x11 0x1f>; + msi-map = <0x00 0x11 0x1f 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + #interrupt-cells = <0x01>; + interrupt-map-mask = <0x00 0x00 0x00 0x00>; + interrupt-map = <0x00 0x00 0x00 0x00 0x01 0x00 0x166 0x04>; + nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x18519600 0xc28cb00 0xc28cb00 0x18519600 0x2faf0800 0xc28cb00 0x18519600 0x2faf0800 0x5f5e1000 0x00 0x00 0x00 0x00>; + nvidia,max-speed = <0x04>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,controller-id = <0x04 0x09>; + nvidia,tsa-config = <0x200b004>; + nvidia,disable-l1-cpm; + nvidia,aux-clk-freq = <0x13>; + nvidia,preset-init = <0x05>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,bpmp = <0x04 0x09>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + bus-range = <0x00 0xff>; + ranges = <0x81000000 0x00 0x2c100000 0x00 0x2c100000 0x00 0x100000 0x82000000 0x00 0x40000000 0x38 0x28000000 0x00 0x8000000 0xc3000000 0x35 0x40000000 0x35 0x40000000 0x02 0xe8000000>; + nvidia,cfg-link-cap-l1sub = <0x1b0>; + nvidia,cap-pl16g-status = <0x174>; + nvidia,cap-pl16g-cap-off = <0x188>; + nvidia,event-cntr-ctrl = <0x1c4>; + nvidia,event-cntr-data = <0x1c8>; + nvidia,dl-feature-cap = <0x2f8>; + nvidia,ptm-cap-off = <0x304>; + vddio-pex-ctl-supply = <0x13>; + phandle = <0x133>; + }; + + pcie@140e0000 { + compatible = "nvidia,tegra234-pcie\0snps,dw-pcie"; + power-domains = <0x04 0x0f>; + reg = <0x00 0x140e0000 0x00 0x20000 0x00 0x2e000000 0x00 0x40000 0x00 0x2e040000 0x00 0x40000 0x00 0x2e080000 0x00 0x40000 0x3b 0x30000000 0x00 0x10000000>; + reg-names = "appl\0config\0atu_dma\0dbi\0ecam"; + status = "disabled"; + #address-cells = <0x03>; + #size-cells = <0x02>; + device_type = "pci"; + num-lanes = <0x04>; + num-viewport = <0x08>; + linux,pci-domain = <0x0a>; + clocks = <0x04 0xbb 0x04 0xf7>; + clock-names = "core\0core_m"; + resets = <0x04 0x39 0x04 0x38>; + reset-names = "apb\0core"; + interrupts = <0x00 0x168 0x04 0x00 0x169 0x04>; + interrupt-names = "intr\0msi"; + interconnects = <0x24 0x3f 0x24 0x40>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x0b>; + iommu-map = <0x00 0x22 0x0b 0x1000>; + msi-parent = <0x11 0x0b>; + msi-map = <0x00 0x11 0x0b 0x1000>; + dma-coherent; + iommu-map-mask = <0x00>; + #interrupt-cells = <0x01>; + interrupt-map-mask = <0x00 0x00 0x00 0x00>; + interrupt-map = <0x00 0x00 0x00 0x00 0x01 0x00 0x168 0x04>; + nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x18519600 0xc28cb00 0xc28cb00 0x18519600 0x2faf0800 0xc28cb00 0x18519600 0x2faf0800 0x5f5e1000 0x00 0x00 0x00 0x00>; + nvidia,max-speed = <0x04>; + nvidia,disable-aspm-states = <0x0f>; + nvidia,controller-id = <0x04 0x0a>; + nvidia,tsa-config = <0x200b004>; + nvidia,disable-l1-cpm; + nvidia,aux-clk-freq = <0x13>; + nvidia,preset-init = <0x05>; + nvidia,aspm-cmrt = <0x3c>; + nvidia,aspm-pwr-on-t = <0x14>; + nvidia,aspm-l0s-entrance-latency = <0x03>; + nvidia,bpmp = <0x04 0x0a>; + nvidia,aspm-cmrt-us = <0x3c>; + nvidia,aspm-pwr-on-t-us = <0x14>; + nvidia,aspm-l0s-entrance-latency-us = <0x03>; + bus-range = <0x00 0xff>; + ranges = <0x81000000 0x00 0x2e100000 0x00 0x2e100000 0x00 0x100000 0x82000000 0x00 0x40000000 0x3b 0x28000000 0x00 0x8000000 0xc3000000 0x38 0x40000000 0x38 0x40000000 0x02 0xe8000000>; + nvidia,cfg-link-cap-l1sub = <0x1b0>; + nvidia,cap-pl16g-status = <0x174>; + nvidia,cap-pl16g-cap-off = <0x188>; + nvidia,event-cntr-ctrl = <0x1c4>; + nvidia,event-cntr-data = <0x1c8>; + nvidia,dl-feature-cap = <0x2f8>; + nvidia,ptm-cap-off = <0x304>; + vddio-pex-ctl-supply = <0x13>; + phandle = <0x134>; + }; + + vm-irq-config { + nvidia,num-vm-irqs = <0x04>; + phandle = <0x2b>; + + vm_irq1 { + nvidia,num-vm-channels = <0x02>; + nvidia,vm-channels = <0x00 0x01>; + nvidia,vm-num = <0x00>; + }; + + vm_irq2 { + nvidia,num-vm-channels = <0x02>; + nvidia,vm-channels = <0x02 0x03>; + nvidia,vm-num = <0x01>; + }; + + vm_irq3 { + nvidia,num-vm-channels = <0x02>; + nvidia,vm-channels = <0x04 0x05>; + nvidia,vm-num = <0x02>; + }; + + vm_irq4 { + nvidia,num-vm-channels = <0x02>; + nvidia,vm-channels = <0x06 0x07>; + nvidia,vm-num = <0x03>; + }; + }; + + ethernet@2310000 { + compatible = "nvidia,nveqos"; + reg = <0x00 0x2310000 0x00 0x10000 0x00 0x23d0000 0x00 0x10000 0x00 0x2300000 0x00 0x10000>; + reg-names = "mac-base\0macsec-base\0hv-base"; + interrupts = <0x00 0xc2 0x04 0x00 0xba 0x04 0x00 0xbb 0x04 0x00 0xbc 0x04 0x00 0xbd 0x04 0x00 0xbe 0x04 0x00 0xbf 0x04>; + interrupt-names = "common\0vm0\0vm1\0vm2\0vm3\0macsec-ns-irq\0macsec-s-irq"; + resets = <0x04 0x11 0x04 0x16>; + reset-names = "mac_rst\0macsec_ns_rst"; + clocks = <0x04 0x120 0x04 0x20 0x04 0x22 0x04 0x21 0x04 0x23 0x04 0x08 0x04 0x46 0x04 0x17 0x04 0x19e 0x04 0x19f 0x04 0x19d>; + clock-names = "pllrefe_vcoout\0eqos_axi\0eqos_rx\0eqos_ptp_ref\0eqos_tx\0axi_cbb\0eqos_rx_m\0eqos_rx_input\0eqos_macsec_tx\0eqos_tx_divider\0eqos_macsec_rx"; + iommus = <0x22 0x03>; + nvidia,num-dma-chans = <0x08>; + nvidia,num-mtl-queues = <0x08>; + nvidia,mtl-queues = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07>; + nvidia,dma-chans = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07>; + nvidia,tc-mapping = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07>; + nvidia,residual-queue = <0x01>; + nvidia,rx-queue-prio = <0x02 0x01 0x30 0x48 0x00 0x00 0x00 0x00>; + nvidia,tx-queue-prio = <0x00 0x07 0x02 0x03 0x00 0x00 0x00 0x00>; + nvidia,rxq_enable_ctrl = <0x02 0x02 0x02 0x02 0x02 0x02 0x02 0x02>; + nvidia,vm-irq-config = <0x2b>; + status = "disabled"; + nvidia,dcs-enable = <0x01>; + nvidia,pad_calibration = <0x01>; + nvidia,rx_riwt = <0x200>; + nvidia,rx_frames = <0x40>; + nvidia,tx_usecs = <0x100>; + nvidia,tx_frames = <0x05>; + nvidia,promisc_mode = <0x01>; + nvidia,slot_num_check = <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00>; + nvidia,slot_intvl_vals = <0x00 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d>; + nvidia,ptp_ref_clock_speed = <0xc6aea16>; + nvidia,instance_id = <0x04>; + nvidia,ptp-rx-queue = <0x03>; + pinctrl-names = "mii_rx_disable\0mii_rx_enable"; + pinctrl-0 = <0x2c>; + pinctrl-1 = <0x2d>; + vddio_sys_enet_bias-supply = <0x2e>; + vddio_enet-supply = <0x2e>; + phy_vdd_1v8-supply = <0x13>; + phy_ovdd_rgmii-supply = <0x13>; + phy_pllvdd-supply = <0x2e>; + }; + + mgbe-vm-irq-config { + nvidia,num-vm-irqs = <0x05>; + phandle = <0x2f>; + + vm_irq1 { + nvidia,num-vm-channels = <0x02>; + nvidia,vm-channels = <0x00 0x01>; + nvidia,vm-num = <0x00>; + }; + + vm_irq2 { + nvidia,num-vm-channels = <0x02>; + nvidia,vm-channels = <0x02 0x03>; + nvidia,vm-num = <0x01>; + }; + + vm_irq3 { + nvidia,num-vm-channels = <0x02>; + nvidia,vm-channels = <0x04 0x05>; + nvidia,vm-num = <0x02>; + }; + + vm_irq4 { + nvidia,num-vm-channels = <0x02>; + nvidia,vm-channels = <0x06 0x07>; + nvidia,vm-num = <0x03>; + }; + + vm_irq5 { + nvidia,num-vm-channels = <0x02>; + nvidia,vm-channels = <0x08 0x09>; + nvidia,vm-num = <0x04>; + }; + }; + + ethernet@6810000 { + compatible = "nvidia,nvmgbe"; + reg = <0x00 0x6810000 0x00 0x10000 0x00 0x68a0000 0x00 0x10000 0x00 0x68d0000 0x00 0x10000 0x00 0x6800000 0x00 0x10000>; + reg-names = "mac-base\0xpcs-base\0macsec-base\0hv-base"; + interrupts = <0x00 0x180 0x04 0x00 0x181 0x04 0x00 0x182 0x04 0x00 0x183 0x04 0x00 0x184 0x04 0x00 0x185 0x04 0x00 0x186 0x04 0x00 0x187 0x04>; + interrupt-names = "common\0vm0\0vm1\0vm2\0vm3\0vm4\0macsec-ns-irq\0macsec-s-irq"; + resets = <0x04 0x2e 0x04 0x2d 0x04 0x2f>; + reset-names = "mac_rst\0xpcs_rst\0macsec_ns_rst"; + clocks = <0x04 0x165 0x04 0x169 0x04 0x171 0x04 0x175 0x04 0x176 0x04 0x177 0x04 0x178 0x04 0x179 0x04 0x17b 0x04 0x17c 0x04 0x17d 0x04 0x17a 0x04 0xf8>; + clock-names = "rx_input_m\0rx_pcs_m\0rx_pcs_input\0rx_pcs\0tx\0tx_pcs\0mac_divider\0mac\0eee_pcs\0app\0ptp_ref\0mgbe_macsec\0rx_input"; + iommus = <0x02 0x06>; + power-domains = <0x04 0x12>; + nvidia,num-dma-chans = <0x0a>; + nvidia,dma-chans = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09>; + nvidia,num-mtl-queues = <0x0a>; + nvidia,mtl-queues = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09>; + nvidia,tc-mapping = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x00 0x01>; + nvidia,residual-queue = <0x01>; + nvidia,rxq_enable_ctrl = <0x02 0x02 0x02 0x02 0x02 0x02 0x02 0x02 0x02 0x02>; + nvidia,vm-irq-config = <0x2f>; + nvidia,tx-queue-prio = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x00 0x00>; + nvidia,rx-queue-prio = <0x01 0x02 0x04 0x08 0x10 0x20 0x40 0x80 0x00 0x00>; + status = "okay"; + nvidia,dcs-enable = <0x01>; + nvidia,rx_riwt = <0x200>; + nvidia,rx_frames = <0x40>; + nvidia,tx_usecs = <0x100>; + nvidia,tx_frames = <0x10>; + nvidia,promisc_mode = <0x01>; + nvidia,slot_num_check = <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00>; + nvidia,slot_intvl_vals = <0x00 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d>; + nvidia,ptp_ref_clock_speed = <0x12a05f20>; + nvidia,instance_id = <0x00>; + nvidia,ptp-rx-queue = <0x03>; + nvidia,mac-addr-idx = <0x00>; + nvidia,max-platform-mtu = <0x3fff>; + nvidia,pause_frames = <0x00>; + phy-handle = <0x30>; + phy-mode = "10gbase-r"; + nvidia,phy-iface-mode = <0x00>; + + mdio { + compatible = "nvidia,eqos-mdio"; + #address-cells = <0x01>; + #size-cells = <0x00>; + + ethernet_phy@0 { + compatible = "ethernet-phy-ieee802.3-c45"; + reg = <0x00>; + interrupt-parent = <0x14>; + interrupts = <0x93 0x08>; + phandle = <0x30>; + }; + }; + }; + + ethernet@6910000 { + compatible = "nvidia,nvmgbe"; + reg = <0x00 0x6910000 0x00 0x10000 0x00 0x69a0000 0x00 0x10000 0x00 0x69d0000 0x00 0x10000 0x00 0x6900000 0x00 0x10000>; + reg-names = "mac-base\0xpcs-base\0macsec-base\0hv-base"; + interrupts = <0x00 0x188 0x04 0x00 0x189 0x04 0x00 0x18a 0x04 0x00 0x18b 0x04 0x00 0x18c 0x04 0x00 0x18d 0x04 0x00 0x18e 0x04 0x00 0x18f 0x04>; + interrupt-names = "common\0vm0\0vm1\0vm2\0vm3\0vm4\0macsec-ns-irq\0macsec-s-irq"; + resets = <0x04 0x32 0x04 0x31 0x04 0x33>; + reset-names = "mac_rst\0xpcs_rst\0macsec_ns_rst"; + clocks = <0x04 0x166 0x04 0x16a 0x04 0x172 0x04 0x17e 0x04 0x17f 0x04 0x180 0x04 0x181 0x04 0x182 0x04 0x184 0x04 0x185 0x04 0x186 0x04 0x183 0x04 0xf9>; + clock-names = "rx_input_m\0rx_pcs_m\0rx_pcs_input\0rx_pcs\0tx\0tx_pcs\0mac_divider\0mac\0eee_pcs\0app\0ptp_ref\0mgbe_macsec\0rx_input"; + iommus = <0x02 0x49>; + power-domains = <0x04 0x13>; + nvidia,num-dma-chans = <0x0a>; + nvidia,dma-chans = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09>; + nvidia,num-mtl-queues = <0x0a>; + nvidia,mtl-queues = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09>; + nvidia,tc-mapping = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x00 0x01>; + nvidia,residual-queue = <0x01>; + nvidia,rxq_enable_ctrl = <0x02 0x02 0x02 0x02 0x02 0x02 0x02 0x02 0x02 0x02>; + nvidia,vm-irq-config = <0x2f>; + nvidia,tx-queue-prio = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x00 0x00>; + nvidia,rx-queue-prio = <0x01 0x02 0x04 0x08 0x10 0x20 0x40 0x80 0x00 0x00>; + status = "disabled"; + nvidia,dcs-enable = <0x01>; + nvidia,rx_riwt = <0x200>; + nvidia,rx_frames = <0x40>; + nvidia,tx_usecs = <0x100>; + nvidia,tx_frames = <0x10>; + nvidia,promisc_mode = <0x01>; + nvidia,slot_num_check = <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00>; + nvidia,slot_intvl_vals = <0x00 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d>; + nvidia,ptp_ref_clock_speed = <0x12a05f20>; + nvidia,instance_id = <0x01>; + nvidia,ptp-rx-queue = <0x03>; + }; + + ethernet@6A10000 { + compatible = "nvidia,nvmgbe"; + reg = <0x00 0x6a10000 0x00 0x10000 0x00 0x6aa0000 0x00 0x10000 0x00 0x6ad0000 0x00 0x10000 0x00 0x6a00000 0x00 0x10000>; + reg-names = "mac-base\0xpcs-base\0macsec-base\0hv-base"; + interrupts = <0x00 0x190 0x04 0x00 0x191 0x04 0x00 0x192 0x04 0x00 0x193 0x04 0x00 0x194 0x04 0x00 0x195 0x04 0x00 0x196 0x04 0x00 0x197 0x04>; + interrupt-names = "common\0vm0\0vm1\0vm2\0vm3\0vm4\0macsec-ns-irq\0macsec-s-irq"; + resets = <0x04 0x36 0x04 0x35 0x04 0x37>; + reset-names = "mac_rst\0xpcs_rst\0macsec_ns_rst"; + clocks = <0x04 0x167 0x04 0x16b 0x04 0x173 0x04 0x187 0x04 0x188 0x04 0x189 0x04 0x18a 0x04 0x18b 0x04 0x18d 0x04 0x18e 0x04 0x18f 0x04 0x18c 0x04 0xfa>; + clock-names = "rx_input_m\0rx_pcs_m\0rx_pcs_input\0rx_pcs\0tx\0tx_pcs\0mac_divider\0mac\0eee_pcs\0app\0ptp_ref\0mgbe_macsec\0rx_input"; + iommus = <0x02 0x4a>; + power-domains = <0x04 0x14>; + nvidia,num-dma-chans = <0x0a>; + nvidia,dma-chans = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09>; + nvidia,num-mtl-queues = <0x0a>; + nvidia,mtl-queues = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09>; + nvidia,tc-mapping = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x00 0x01>; + nvidia,residual-queue = <0x01>; + nvidia,rxq_enable_ctrl = <0x02 0x02 0x02 0x02 0x02 0x02 0x02 0x02 0x02 0x02>; + nvidia,vm-irq-config = <0x2f>; + nvidia,tx-queue-prio = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x00 0x00>; + nvidia,rx-queue-prio = <0x01 0x02 0x04 0x08 0x10 0x20 0x40 0x80 0x00 0x00>; + status = "disabled"; + nvidia,dcs-enable = <0x01>; + nvidia,rx_riwt = <0x200>; + nvidia,rx_frames = <0x40>; + nvidia,tx_usecs = <0x100>; + nvidia,tx_frames = <0x10>; + nvidia,promisc_mode = <0x01>; + nvidia,slot_num_check = <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00>; + nvidia,slot_intvl_vals = <0x00 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d>; + nvidia,ptp_ref_clock_speed = <0x12a05f20>; + nvidia,instance_id = <0x02>; + nvidia,ptp-rx-queue = <0x03>; + }; + + ethernet@6B10000 { + compatible = "nvidia,nvmgbe"; + reg = <0x00 0x6b10000 0x00 0x10000 0x00 0x6ba0000 0x00 0x10000 0x00 0x6bd0000 0x00 0x10000 0x00 0x6b00000 0x00 0x10000>; + reg-names = "mac-base\0xpcs-base\0macsec-base\0hv-base"; + interrupts = <0x00 0x198 0x04 0x00 0x199 0x04 0x00 0x19a 0x04 0x00 0x19b 0x04 0x00 0x19c 0x04 0x00 0x19d 0x04 0x00 0x19e 0x04 0x00 0x19f 0x04>; + interrupt-names = "common\0vm0\0vm1\0vm2\0vm3\0vm4\0macsec-ns-irq\0macsec-s-irq"; + resets = <0x04 0x58 0x04 0x57 0x04 0x59>; + reset-names = "mac_rst\0xpcs_rst\0macsec_ns_rst"; + clocks = <0x04 0x168 0x04 0x16c 0x04 0x174 0x04 0x190 0x04 0x191 0x04 0x192 0x04 0x193 0x04 0x194 0x04 0x196 0x04 0x197 0x04 0x198 0x04 0x195 0x04 0xfb>; + clock-names = "rx_input_m\0rx_pcs_m\0rx_pcs_input\0rx_pcs\0tx\0tx_pcs\0mac_divider\0mac\0eee_pcs\0app\0ptp_ref\0mgbe_macsec\0rx_input"; + iommus = <0x02 0x4b>; + power-domains = <0x04 0x11>; + nvidia,num-dma-chans = <0x0a>; + nvidia,dma-chans = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09>; + nvidia,num-mtl-queues = <0x0a>; + nvidia,mtl-queues = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09>; + nvidia,tc-mapping = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x00 0x01>; + nvidia,residual-queue = <0x01>; + nvidia,rxq_enable_ctrl = <0x02 0x02 0x02 0x02 0x02 0x02 0x02 0x02 0x02 0x02>; + nvidia,vm-irq-config = <0x2f>; + nvidia,tx-queue-prio = <0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x00 0x00>; + nvidia,rx-queue-prio = <0x01 0x02 0x04 0x08 0x10 0x20 0x40 0x80 0x00 0x00>; + status = "disabled"; + nvidia,dcs-enable = <0x01>; + nvidia,rx_riwt = <0x200>; + nvidia,rx_frames = <0x40>; + nvidia,tx_usecs = <0x100>; + nvidia,tx_frames = <0x10>; + nvidia,promisc_mode = <0x01>; + nvidia,slot_num_check = <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00>; + nvidia,slot_intvl_vals = <0x00 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d 0x7d>; + nvidia,ptp_ref_clock_speed = <0x12a05f20>; + nvidia,instance_id = <0x03>; + nvidia,ptp-rx-queue = <0x03>; + }; + + serial@3110000 { + compatible = "nvidia,tegra194-hsuart"; + iommus = <0x02 0x04>; + dma-coherent; + reg = <0x00 0x3110000 0x00 0x10000>; + reg-shift = <0x02>; + interrupts = <0x00 0x71 0x04>; + nvidia,memory-clients = <0x0e>; + dmas = <0x03 0x09 0x03 0x09>; + dma-names = "rx\0tx"; + clocks = <0x04 0x9c 0x04 0x66>; + clock-names = "serial\0parent"; + resets = <0x04 0x65>; + reset-names = "serial"; + status = "disabled"; + phandle = <0x135>; + }; + + serial@c280000 { + compatible = "nvidia,tegra194-hsuart"; + iommus = <0x02 0x04>; + dma-coherent; + reg = <0x00 0xc280000 0x00 0x10000>; + reg-shift = <0x02>; + interrupts = <0x00 0x72 0x04>; + nvidia,memory-clients = <0x0e>; + dmas = <0x03 0x03 0x03 0x03>; + dma-names = "rx\0tx"; + clocks = <0x04 0x9d 0x04 0x66>; + clock-names = "serial\0parent"; + resets = <0x04 0x66>; + reset-names = "serial"; + status = "disabled"; + phandle = <0x136>; + }; + + serial@3130000 { + compatible = "nvidia,tegra194-hsuart"; + iommus = <0x02 0x04>; + dma-coherent; + reg = <0x00 0x3130000 0x00 0x10000>; + reg-shift = <0x02>; + interrupts = <0x00 0x73 0x04>; + nvidia,memory-clients = <0x0e>; + dmas = <0x03 0x13 0x03 0x13>; + dma-names = "rx\0tx"; + clocks = <0x04 0x9e 0x04 0x66>; + clock-names = "serial\0parent"; + resets = <0x04 0x67>; + reset-names = "serial"; + status = "okay"; + phandle = <0x137>; + }; + + serial@3140000 { + compatible = "nvidia,tegra194-hsuart"; + iommus = <0x02 0x04>; + dma-coherent; + reg = <0x00 0x3140000 0x00 0x10000>; + reg-shift = <0x02>; + interrupts = <0x00 0x74 0x04>; + nvidia,memory-clients = <0x0e>; + dmas = <0x03 0x14 0x03 0x14>; + dma-names = "rx\0tx"; + clocks = <0x04 0x9f 0x04 0x66>; + clock-names = "serial\0parent"; + resets = <0x04 0x68>; + reset-names = "serial"; + status = "disabled"; + phandle = <0x138>; + }; + + serial@3150000 { + compatible = "nvidia,tegra194-hsuart"; + iommus = <0x02 0x04>; + dma-coherent; + reg = <0x00 0x3150000 0x00 0x10000>; + reg-shift = <0x02>; + interrupts = <0x00 0x75 0x04>; + nvidia,memory-clients = <0x0e>; + dmas = <0x03 0x0c 0x03 0x0c>; + dma-names = "rx\0tx"; + clocks = <0x04 0xa0 0x04 0x66>; + clock-names = "serial\0parent"; + resets = <0x04 0x69>; + reset-names = "serial"; + status = "disabled"; + phandle = <0x139>; + }; + + serial@3170000 { + compatible = "nvidia,tegra194-hsuart"; + iommus = <0x02 0x04>; + dma-coherent; + reg = <0x00 0x3170000 0x00 0x10000>; + reg-shift = <0x02>; + interrupts = <0x00 0xcf 0x04>; + nvidia,memory-clients = <0x0e>; + dmas = <0x03 0x0d 0x03 0x0d>; + dma-names = "rx\0tx"; + clocks = <0x04 0xbe 0x04 0x66>; + clock-names = "serial\0parent"; + resets = <0x04 0x6b>; + reset-names = "serial"; + status = "disabled"; + phandle = <0x13a>; + }; + + serial@31d0000 { + compatible = "arm,sbsa-uart"; + reg = <0x00 0x31d0000 0x00 0x10000>; + interrupts = <0x00 0x11d 0x04>; + current-speed = <0x1c200>; + status = "disabled"; + phandle = <0x13b>; + }; + + serial@c270000 { + compatible = "arm,sbsa-uart"; + reg = <0x00 0xc270000 0x00 0x10000>; + interrupts = <0x00 0x11e 0x04>; + current-speed = <0x1c200>; + status = "disabled"; + phandle = <0x13c>; + }; + + combined-uart { + compatible = "nvidia,tegra194-tcu"; + reg = <0x00 0xc168000 0x00 0x04 0x00 0x3c10000 0x00 0x04 0x00 0x3c00000 0x00 0x1000>; + interrupts = <0x00 0x78 0x04>; + mboxes = <0x31 0x01 0x00 0x32 0x01 0x80000001>; + mbox-names = "rx\0tx"; + console-port; + combined-uart; + status = "okay"; + }; + + pmc@c360000 { + compatible = "nvidia,tegra234-pmc"; + reg = <0x00 0xc360000 0x00 0x10000 0x00 0xc370000 0x00 0x10000 0x00 0xc390000 0x00 0x10000 0x00 0xc3a0000 0x00 0x10000>; + reg-names = "pmc\0wake\0scratch\0misc"; + #interrupt-cells = <0x02>; + interrupt-controller; + #padcontroller-cells = <0x01>; + nvidia,restrict-voltage-switch; + pinctrl-names = "default"; + pinctrl-0 = <0x33>; + status = "okay"; + nvidia,invert-interrupt; + phandle = <0xf2>; + + sdmmc1-3v3 { + pins = "sdmmc1-hv"; + power-source = <0x01>; + phandle = <0x36>; + }; + + sdmmc1-1v8 { + pins = "sdmmc1-hv"; + power-source = <0x00>; + phandle = <0x37>; + }; + + sdmmc3-3v3 { + pins = "sdmmc3-hv"; + power-source = <0x01>; + phandle = <0x13d>; + }; + + sdmmc3-1v8 { + pins = "sdmmc3-hv"; + power-source = <0x00>; + phandle = <0x13e>; + }; + + sdmmc1_e_33V_enable { + phandle = <0x13f>; + + sdmmc1 { + pins = "sdmmc1-hv"; + nvidia,power-source-voltage = <0x01>; + }; + }; + + sdmmc1_e_33V_disable { + phandle = <0x140>; + + sdmmc1 { + pins = "sdmmc1-hv"; + nvidia,power-source-voltage = <0x00>; + }; + }; + + sdmmc3_e_33V_enable { + phandle = <0x141>; + + sdmmc3 { + pins = "sdmmc3-hv"; + nvidia,power-source-voltage = <0x01>; + }; + }; + + sdmmc3_e_33V_disable { + phandle = <0x142>; + + sdmmc3 { + pins = "sdmmc3-hv"; + nvidia,power-source-voltage = <0x00>; + }; + }; + + dpd-enable { + phandle = <0x143>; + + ufs { + pins = "ufs"; + low-power-enable; + }; + }; + + dpd-disable { + phandle = <0x144>; + + ufs { + pins = "ufs"; + low-power-disable; + }; + }; + + iopad-defaults { + phandle = <0x33>; + + sdmmc-io-pads { + pins = "sdmmc1-hv\0sdmmc3-hv"; + nvidia,enable-voltage-switching; + }; + }; + }; + + sdhci@3460000 { + compatible = "nvidia,tegra234-sdhci\0nvidia,tegra194-sdhci"; + reg = <0x00 0x3460000 0x00 0x20000>; + interrupts = <0x00 0x41 0x04>; + interconnects = <0x24 0x63 0x24 0x67>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x02>; + dma-coherent; + max-clk-limit = <0xbebc200>; + ddr-clk-limit = <0x30a32c0>; + bus-width = <0x08>; + only-1-8-v; + ignore-pm-notify; + keep-power-in-suspend; + non-removable; + cap-mmc-highspeed; + cap-sd-highspeed; + mmc-ddr-1_8v; + mmc-hs200-1_8v; + mmc-hs400-1_8v; + mmc-hs400-enhanced-strobe; + nvidia,en-periodic-cflush; + nvidia,periodic-cflush-to = <0x0a>; + nvidia,pad-autocal-pull-up-offset-hs400 = <0x00>; + nvidia,pad-autocal-pull-down-offset-hs400 = <0x00>; + nvidia,pad-autocal-pull-up-offset-1v8-timeout = <0x0a>; + nvidia,pad-autocal-pull-down-offset-1v8-timeout = <0x0a>; + nvidia,pad-autocal-pull-up-offset-3v3-timeout = <0x0a>; + nvidia,pad-autocal-pull-down-offset-3v3-timeout = <0x0a>; + nvidia,default-tap = <0x12>; + nvidia,default-trim = <0x07>; + nvidia,dqs-trim = <0x28>; + assigned-clocks = <0x04 0x7b 0x04 0xed>; + assigned-clock-parents = <0x04 0xed>; + resets = <0x04 0x55>; + reset-names = "sdhci"; + pll_source = "pll_p\0pll_c4_out0_lj"; + nvidia,set-parent-clk; + nvidia,parent_clk_list = "pll_p\0pll_p\0NULL\0NULL\0NULL\0NULL\0NULL\0NULL\0pll_p\0pll_c4_out0_lj\0pll_c4_out0_lj"; + clocks = <0x04 0x7b 0x04 0x66 0x04 0xed 0x04 0xdb 0x04 0xdb>; + clock-names = "sdmmc\0pll_p\0pll_c4_out0_lj\0sdmmc_legacy_tm\0tmclk"; + status = "okay"; + vmmc-supply = <0x34>; + vqmmc-supply = <0x35>; + uhs-mask = <0x00>; + no-sdio; + no-sd; + supports-cqe; + phandle = <0x145>; + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x04 0xfff 0x200 0x00 0x28 0x20 0x20 0x00 0x100 0x1f00006a 0x12000020 0x00 0x128 0x43000000 0x00 0x00 0x1c0 0x1fc0 0x40 0x00 0x1e0 0x1f1f000 0xa0a000 0x00 0x1e4 0x20000000 0x20000000>; + }; + + prod_c_ddr50 { + prod = <0x00 0x3c 0x70000 0x40000 0x00 0x100 0x1fff0000 0x12070000>; + }; + + prod_c_ddr52 { + prod = <0x00 0x3c 0x70000 0x40000 0x00 0x100 0x1fff0000 0x12070000>; + }; + + prod_c_hs200 { + prod = <0x00 0x3c 0x70000 0x30000 0x00 0x1c0 0xe000 0x4000>; + }; + + prod_c_hs400 { + prod = <0x00 0x3c 0x70000 0x50000 0x00 0x100 0x08 0x08 0x00 0x10c 0x3f00 0x2800 0x00 0x1c0 0xe000 0x4000>; + }; + + prod_c_nopwrsave { + prod = <0x00 0x100 0x01 0x01 0x00 0x1ac 0x04 0x00>; + }; + + prod_c_pwrsave { + prod = <0x00 0x100 0x01 0x00 0x00 0x1ac 0x04 0x04>; + }; + + prod_c_sdr12 { + prod = <0x00 0x100 0x1fff0000 0x12070000>; + }; + + prod_c_sdr25 { + prod = <0x00 0x100 0x1fff0000 0x12070000>; + }; + + prod_c_sdr50 { + prod = <0x00 0x3c 0x70000 0x20000>; + }; + }; + }; + + sdhci@3400000 { + compatible = "nvidia,tegra234-sdhci\0nvidia,tegra194-sdhci"; + reg = <0x00 0x3400000 0x00 0x20000>; + interrupts = <0x00 0x3e 0x04>; + interconnects = <0x24 0x60 0x24 0x64>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x01>; + dma-coherent; + max-clk-limit = <0xc65d400>; + bus-width = <0x04>; + cap-mmc-highspeed; + cap-sd-highspeed; + sd-uhs-sdr104; + sd-uhs-sdr50; + sd-uhs-sdr25; + sd-uhs-sdr12; + mmc-ddr-1_8v; + mmc-hs200-1_8v; + nvidia,vqmmc-always-on; + pwrdet-support; + nvidia,pad-autocal-pull-up-offset-3v3-timeout = <0x07>; + nvidia,pad-autocal-pull-down-offset-3v3-timeout = <0x07>; + nvidia,pad-autocal-pull-up-offset-1v8-timeout = <0x06>; + nvidia,pad-autocal-pull-down-offset-1v8-timeout = <0x07>; + nvidia,pad-autocal-pull-up-offset-sdr104 = <0x00>; + nvidia,pad-autocal-pull-down-offset-sdr104 = <0x00>; + nvidia,default-tap = <0x0e>; + nvidia,default-trim = <0x08>; + pinctrl-names = "sdmmc-3v3\0sdmmc-1v8"; + pinctrl-0 = <0x36>; + pinctrl-1 = <0x37>; + assigned-clocks = <0x04 0x78 0x04 0xf1>; + assigned-clock-parents = <0x04 0xf1 0x04 0xf2>; + ignore-pm-notify; + resets = <0x04 0x52>; + reset-names = "sdhci"; + pll_source = "pll_p\0pll_c4_muxed"; + nvidia,set-parent-clk; + nvidia,parent_clk_list = "pll_p\0pll_p\0pll_p\0pll_p\0pll_p\0pll_c4_muxed\0pll_c4_muxed\0pll_c4_muxed\0pll_c4_muxed\0pll_c4_muxed\0NULL"; + clocks = <0x04 0x78 0x04 0x66 0x04 0xf1 0x04 0xdb 0x04 0xdb>; + clock-names = "sdmmc\0pll_p\0pll_c4_muxed\0sdmmc_legacy_tm\0tmclk"; + uhs-mask = <0x08>; + nvidia,en-periodic-calib; + status = "disabled"; + vmmc-supply = <0x38>; + disable-wp; + no-sdio; + nvidia,cd-wakeup-capable; + no-mmc; + nvidia,boot-detect-delay = <0x3e8>; + cd-gpios = <0x14 0x37 0x00>; + phandle = <0x146>; + + prod-settings { + #prod-cells = <0x04>; + + prod_c_1_8v { + prod = <0x00 0x1e0 0x1f00000 0x800000>; + }; + + prod_c_3_3v { + prod = <0x00 0x1e0 0x1f00000 0x900000>; + }; + + prod { + prod = <0x00 0x28 0x22 0x02 0x00 0x100 0x1fff006a 0xe080020 0x00 0x128 0x42000000 0x00 0x00 0x1c0 0x1fc0 0x40 0x00 0x1e0 0x1f000 0x9000 0x00 0x1e4 0x20000000 0x20000000>; + }; + + prod_c_ddr50 { + prod = <0x00 0x3c 0x70000 0x40000>; + }; + + prod_c_ddr52 { + prod = <0x00 0x3c 0x70000 0x40000>; + }; + + prod_c_hs200 { + prod = <0x00 0x3c 0x70000 0x30000 0x00 0x1c0 0xe000 0x4000>; + }; + + prod_c_nopwrsave { + prod = <0x00 0x100 0x01 0x01 0x00 0x1ac 0x04 0x00>; + }; + + prod_c_pwrsave { + prod = <0x00 0x100 0x01 0x00 0x00 0x1ac 0x04 0x04>; + }; + + prod_c_sdr104 { + prod = <0x00 0x3c 0x70000 0x30000 0x00 0x1c0 0xe000 0x4000>; + }; + + prod_c_sdr12 { + prod = <0x00 0x3c 0x70000 0x00>; + }; + + prod_c_sdr25 { + prod = <0x00 0x3c 0x70000 0x10000>; + }; + + prod_c_sdr50 { + prod = <0x00 0x3c 0x70000 0x20000 0x00 0x1c0 0xe000 0x8000>; + }; + }; + }; + + ufshci@2500000 { + compatible = "tegra,ufs_variant"; + reg = <0x00 0x2500000 0x00 0x4000 0x00 0x2510000 0x00 0x1000 0x00 0x2518000 0x00 0x1000 0x00 0x2520000 0x00 0x1000 0x00 0x2470000 0x00 0x4000 0x00 0x2480000 0x00 0x4000>; + interrupts = <0x00 0x2c 0x04>; + interconnects = <0x24 0x90 0x24 0x91>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x02 0x0c>; + dma-coherent; + clocks = <0x04 0x120 0x04 0x49 0x04 0x4e 0x04 0x50 0x04 0x4a 0x04 0x4c 0x04 0x4d 0x04 0x4b 0x04 0x4f 0x04 0xa4 0x04 0xa3 0x04 0x66 0x04 0x0e 0x04 0x97 0x04 0x79 0x04 0x15c 0x04 0x159 0x04 0x161 0x04 0x15f 0x04 0x15a 0x04 0x15b 0x04 0x160 0x04 0x15d 0x04 0x162 0x04 0x5b>; + clock-names = "pllrefe_vcoout\0mphy_core_pll_fixed\0mphy_l0_tx_symb\0mphy_tx_1mhz_ref\0mphy_l0_rx_ana\0mphy_l0_rx_symb\0mphy_l0_tx_ls_3xbit\0mphy_l0_rx_ls_bit\0mphy_l1_rx_ana\0ufshc\0ufsdev_ref\0pll_p\0clk_m\0mphy_force_ls_mode\0uphy_pll3\0mphy_l0_tx_ls_3xbit_div\0mphy_l0_tx_ls_symb_div\0mphy_l0_rx_ls_bit_div\0mphy_l0_rx_ls_symb_div\0mphy_l0_tx_2x_symb\0mphy_l0_tx_hs_symb_div\0mphy_l0_rx_hs_symb_div\0mphy_l0_tx_mux_symb_div\0mphy_l0_rx_mux_symb_div\0osc"; + resets = <0x04 0x27 0x04 0x28 0x04 0x29 0x04 0x2a 0x04 0x26 0x04 0x6c 0x04 0x6d 0x04 0x6e>; + reset-names = "mphy-l0-rx-rst\0mphy-l0-tx-rst\0mphy-l1-rx-rst\0mphy-l1-tx-rst\0mphy-clk-ctl-rst\0ufs-rst\0ufs-axi-m-rst\0ufshc-lp-rst"; + nvidia,enable-x2-config; + nvidia,mask-fast-auto-mode; + nvidia,enable-hs-mode; + nvidia,enable-38mhz-clk; + nvidia,max-hs-gear = <0x04>; + nvidia,max-pwm-gear = <0x00>; + vcc-max-microamp = <0x00>; + vccq-max-microamp = <0x00>; + vccq2-max-microamp = <0x00>; + nvidia,configure-uphy-pll3; + status = "disabled"; + nvidia,enable-ufs-provisioning; + phandle = <0x147>; + + ufs_variant { + compatible = "tegra,ufs_variant"; + }; + }; + + spi@3210000 { + compatible = "nvidia,tegra186-spi"; + reg = <0x00 0x3210000 0x00 0x10000>; + interrupts = <0x00 0x24 0x04>; + #address-cells = <0x01>; + #size-cells = <0x00>; + iommus = <0x02 0x04>; + dma-coherent; + dmas = <0x03 0x0f 0x03 0x0f>; + dma-names = "rx\0tx"; + spi-max-frequency = <0x3dfd240>; + nvidia,clk-parents = "pll_p\0clk_m"; + clocks = <0x04 0x87 0x04 0x66 0x04 0x0e>; + clock-names = "spi\0pll_p\0clk_m"; + resets = <0x04 0x5b>; + reset-names = "spi"; + status = "okay"; + phandle = <0x148>; + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x194 0x80000000 0x00>; + }; + }; + + spi@0 { + compatible = "tegra-spidev"; + reg = <0x00>; + spi-max-frequency = <0x2faf080>; + + controller-data { + nvidia,enable-hw-based-cs; + nvidia,rx-clk-tap-delay = <0x10>; + nvidia,tx-clk-tap-delay = <0x00>; + }; + }; + + spi@1 { + compatible = "tegra-spidev"; + reg = <0x01>; + spi-max-frequency = <0x2faf080>; + + controller-data { + nvidia,enable-hw-based-cs; + nvidia,rx-clk-tap-delay = <0x10>; + nvidia,tx-clk-tap-delay = <0x00>; + }; + }; + }; + + spi@c260000 { + compatible = "nvidia,tegra186-spi"; + reg = <0x00 0xc260000 0x00 0x10000>; + interrupts = <0x00 0x25 0x04>; + #address-cells = <0x01>; + #size-cells = <0x00>; + iommus = <0x02 0x04>; + dma-coherent; + dmas = <0x03 0x10 0x03 0x10>; + dma-names = "rx\0tx"; + spi-max-frequency = <0x3dfd240>; + nvidia,clk-parents = "pll_p\0osc"; + clocks = <0x04 0x88 0x04 0x5e 0x04 0x5b>; + clock-names = "spi\0pll_p\0osc"; + resets = <0x04 0x5c>; + reset-names = "spi"; + status = "disabled"; + phandle = <0x149>; + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x194 0x80000000 0x00>; + }; + }; + }; + + spi@3230000 { + compatible = "nvidia,tegra186-spi"; + reg = <0x00 0x3230000 0x00 0x10000>; + interrupts = <0x00 0x26 0x04>; + #address-cells = <0x01>; + #size-cells = <0x00>; + iommus = <0x02 0x04>; + dma-coherent; + dmas = <0x03 0x11 0x03 0x11>; + dma-names = "rx\0tx"; + spi-max-frequency = <0x3dfd240>; + nvidia,clk-parents = "pll_p\0clk_m"; + clocks = <0x04 0x89 0x04 0x66 0x04 0x0e>; + clock-names = "spi\0pll_p\0clk_m"; + resets = <0x04 0x5d>; + reset-names = "spi"; + status = "okay"; + phandle = <0x14a>; + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x194 0x80000000 0x00>; + }; + }; + + spi@0 { + compatible = "tegra-spidev"; + reg = <0x00>; + spi-max-frequency = <0x2faf080>; + + controller-data { + nvidia,enable-hw-based-cs; + nvidia,rx-clk-tap-delay = <0x10>; + nvidia,tx-clk-tap-delay = <0x00>; + }; + }; + + spi@1 { + compatible = "tegra-spidev"; + reg = <0x01>; + spi-max-frequency = <0x2faf080>; + + controller-data { + nvidia,enable-hw-based-cs; + nvidia,rx-clk-tap-delay = <0x10>; + nvidia,tx-clk-tap-delay = <0x00>; + }; + }; + }; + + spi@3270000 { + compatible = "nvidia,tegra23x-qspi"; + reg = <0x00 0x3270000 0x00 0x10000>; + interrupts = <0x00 0x23 0x04>; + #address-cells = <0x01>; + #size-cells = <0x00>; + iommus = <0x22 0x0c>; + dma-coherent; + dma-names = "rx\0tx"; + spi-max-frequency = <0x81b3200>; + nvidia,clk-parents = "pllc\0pll_p"; + clocks = <0x04 0xc0 0x04 0xc2 0x04 0x13a 0x04 0x66>; + clock-names = "qspi\0qspi_out\0pllc\0pll_p"; + resets = <0x04 0x4c>; + reset-names = "qspi"; + status = "okay"; + phandle = <0x14b>; + + prod-settings { + #prod-cells = <0x03>; + + prod { + prod = <0x04 0xff 0x10>; + }; + }; + + spiflash@0 { + #address-cells = <0x01>; + #size-cells = <0x01>; + compatible = "MX25U51279G"; + reg = <0x00>; + spi-max-frequency = <0x81b3200>; + + partition@0 { + label = "Whole_flash0"; + reg = <0x00 0x4000000>; + }; + + controller-data { + nvidia,x1-len-limit = <0x10>; + nvidia,x1-bus-speed = <0x81b3200>; + nvidia,x1-dymmy-cycle = <0x08>; + nvidia,x4-bus-speed = <0x81b3200>; + nvidia,x4-dymmy-cycle = <0x08>; + nvidia,x4-is-ddr = <0x00>; + nvidia,ctrl-bus-clk-ratio = <0x01>; + }; + }; + }; + + spi@3300000 { + compatible = "nvidia,tegra23x-qspi"; + reg = <0x00 0x3300000 0x00 0x10000>; + interrupts = <0x00 0x27 0x04>; + #address-cells = <0x01>; + #size-cells = <0x00>; + iommus = <0x22 0x0d>; + dma-coherent; + dma-names = "rx\0tx"; + spi-max-frequency = <0xc28cb00>; + nvidia,clk-parents = "pllc\0pll_p"; + clocks = <0x04 0xc1 0x04 0xc3 0x04 0x13a 0x04 0x66>; + clock-names = "qspi\0qspi_out\0pllc\0pll_p"; + resets = <0x04 0x4d>; + reset-names = "qspi"; + status = "disabled"; + phandle = <0x14c>; + + prod-settings { + #prod-cells = <0x04>; + + prod_c_nonsecure { + prod = <0x00 0xf000 0x3f 0x12>; + }; + + prod_c_nopwrsave { + prod = <0x00 0x194 0x80000000 0x80000000 0x00 0x1ec 0x02 0x00 0x00 0x1fc 0x02 0x00>; + }; + + prod_c_pwrsave { + prod = <0x00 0x194 0x80000000 0x00 0x00 0x1ec 0x02 0x02 0x00 0x1fc 0x02 0x02>; + }; + + prod_c_secure { + prod = <0x00 0xf000 0x3f 0x00>; + }; + }; + }; + + pwm@3280000 { + compatible = "nvidia,tegra194-pwm"; + reg = <0x00 0x3280000 0x00 0x10000>; + nvidia,hw-instance-id = <0x00>; + clocks = <0x04 0x69 0x04 0x66 0x04 0x0e>; + clock-names = "pwm\0parent\0slow-parent"; + #pwm-cells = <0x02>; + resets = <0x04 0x44>; + reset-names = "pwm"; + status = "okay"; + phandle = <0x14d>; + }; + + pwm@3290000 { + compatible = "nvidia,tegra194-pwm"; + reg = <0x00 0x3290000 0x00 0x10000>; + nvidia,hw-instance-id = <0x01>; + clocks = <0x04 0x6a>; + clock-names = "pwm"; + #pwm-cells = <0x02>; + resets = <0x04 0x45>; + reset-names = "pwm"; + status = "disabled"; + phandle = <0x14e>; + }; + + pwm@32a0000 { + compatible = "nvidia,tegra194-pwm"; + reg = <0x00 0x32a0000 0x00 0x10000>; + nvidia,hw-instance-id = <0x02>; + clocks = <0x04 0x6b>; + clock-names = "pwm"; + #pwm-cells = <0x02>; + resets = <0x04 0x46>; + reset-names = "pwm"; + status = "okay"; + phandle = <0x112>; + }; + + pwm@c340000 { + compatible = "nvidia,tegra194-pwm"; + reg = <0x00 0xc340000 0x00 0x10000>; + nvidia,hw-instance-id = <0x03>; + clocks = <0x04 0x6c 0x04 0x5e>; + clock-names = "pwm\0pll_aon"; + #pwm-cells = <0x02>; + resets = <0x04 0x47>; + reset-names = "pwm"; + status = "disabled"; + phandle = <0x14f>; + }; + + pwm@32c0000 { + compatible = "nvidia,tegra194-pwm"; + reg = <0x00 0x32c0000 0x00 0x10000>; + nvidia,hw-instance-id = <0x04>; + clocks = <0x04 0x6d 0x04 0x66 0x04 0x0e>; + clock-names = "pwm\0parent\0slow-parent"; + #pwm-cells = <0x02>; + resets = <0x04 0x48>; + reset-names = "pwm"; + status = "okay"; + phandle = <0x150>; + }; + + pwm@32d0000 { + compatible = "nvidia,tegra194-pwm"; + reg = <0x00 0x32d0000 0x00 0x10000>; + nvidia,hw-instance-id = <0x05>; + clocks = <0x04 0x6e>; + clock-names = "pwm"; + #pwm-cells = <0x02>; + resets = <0x04 0x49>; + reset-names = "pwm"; + status = "disabled"; + phandle = <0x151>; + }; + + pwm@32e0000 { + compatible = "nvidia,tegra194-pwm"; + reg = <0x00 0x32e0000 0x00 0x10000>; + nvidia,hw-instance-id = <0x06>; + clocks = <0x04 0x6f>; + clock-names = "pwm"; + #pwm-cells = <0x02>; + resets = <0x04 0x4a>; + reset-names = "pwm"; + status = "disabled"; + phandle = <0x152>; + }; + + pwm@32f0000 { + compatible = "nvidia,tegra194-pwm"; + reg = <0x00 0x32f0000 0x00 0x10000>; + nvidia,hw-instance-id = <0x07>; + clocks = <0x04 0x70 0x04 0x66 0x04 0x0e>; + clock-names = "pwm\0parent\0slow-parent"; + #pwm-cells = <0x02>; + resets = <0x04 0x4b>; + reset-names = "pwm"; + status = "okay"; + phandle = <0x153>; + }; + + i2c@3160000 { + #address-cells = <0x01>; + #size-cells = <0x00>; + iommus = <0x02 0x04>; + dma-coherent; + compatible = "nvidia,tegra234-i2c"; + reg = <0x00 0x3160000 0x00 0x100>; + nvidia,hw-instance-id = <0x00>; + interrupts = <0x00 0x19 0x04>; + scl-gpio = <0x14 0x43 0x00>; + sda-gpio = <0x14 0x44 0x00>; + status = "okay"; + clock-frequency = <0x61a80>; + clocks = <0x04 0x30 0x04 0x66>; + clock-names = "div-clk\0parent"; + assigned-clocks = <0x04 0x30>; + assigned-clock-parents = <0x04 0x66>; + resets = <0x04 0x18>; + reset-names = "i2c"; + dmas = <0x03 0x15 0x03 0x15>; + dma-names = "rx\0tx"; + phandle = <0x103>; + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x9c 0xffff 0x308 0x00 0xd4 0xff 0x00 0x00 0xd8 0xff 0x00 0x00 0xdc 0xffff 0x01 0x00 0xe0 0xffff 0x02>; + }; + + prod_c_fm { + prod = <0x00 0x6c 0xffff0000 0x3c0000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_fmplus { + prod = <0x00 0x6c 0xffff0000 0x160000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_hs { + prod = <0x00 0x6c 0xffffffff 0x160002 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202 0x00 0xa0 0xffffff 0x90909>; + }; + + prod_c_sm { + prod = <0x00 0x6c 0xffff0000 0x4f0000 0x00 0x94 0xffff 0x708 0x00 0x98 0xffffffff 0x8080808>; + }; + }; + }; + + i2c@c240000 { + #address-cells = <0x01>; + #size-cells = <0x00>; + iommus = <0x02 0x04>; + dma-coherent; + compatible = "nvidia,tegra234-i2c"; + reg = <0x00 0xc240000 0x00 0x100>; + nvidia,hw-instance-id = <0x01>; + interrupts = <0x00 0x1a 0x04>; + scl-gpio = <0x15 0x17 0x00>; + sda-gpio = <0x15 0x18 0x00>; + status = "okay"; + clock-frequency = <0x186a0>; + clocks = <0x04 0x31 0x04 0x66>; + clock-names = "div-clk\0parent"; + assigned-clocks = <0x04 0x31>; + assigned-clock-parents = <0x04 0x66>; + resets = <0x04 0x1d>; + reset-names = "i2c"; + dmas = <0x03 0x16 0x03 0x16>; + dma-names = "rx\0tx"; + phandle = <0x104>; + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x9c 0xffff 0x308 0x00 0xd4 0xff 0x00 0x00 0xd8 0xff 0x00 0x00 0xdc 0xffff 0x01 0x00 0xe0 0xffff 0x02>; + }; + + prod_c_fm { + prod = <0x00 0x6c 0xffff0000 0x3c0000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_fmplus { + prod = <0x00 0x6c 0xffff0000 0x160000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_hs { + prod = <0x00 0x6c 0xffffffff 0x160002 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202 0x00 0xa0 0xffffff 0x90909>; + }; + + prod_c_sm { + prod = <0x00 0x6c 0xffff0000 0x4f0000 0x00 0x94 0xffff 0x708 0x00 0x98 0xffffffff 0x8080808>; + }; + }; + + ina3221@40 { + compatible = "ti,ina3221"; + reg = <0x40>; + #address-cells = <0x01>; + #size-cells = <0x00>; + #io-channel-cells = <0x01>; + phandle = <0x154>; + + channel@0 { + reg = <0x00>; + label = "VDD_GPU_SOC"; + shunt-resistor-micro-ohms = <0x7d0>; + }; + + channel@1 { + reg = <0x01>; + label = "VDD_CPU_CV"; + shunt-resistor-micro-ohms = <0x7d0>; + }; + + channel@2 { + reg = <0x02>; + label = "VIN_SYS_5V0"; + shunt-resistor-micro-ohms = <0x7d0>; + summation-bypass; + }; + }; + + ina3221@41 { + compatible = "ti,ina3221"; + reg = <0x41>; + #address-cells = <0x01>; + #size-cells = <0x00>; + #io-channel-cells = <0x01>; + phandle = <0x155>; + + channel@0 { + reg = <0x00>; + label = "NC"; + }; + + channel@1 { + reg = <0x01>; + label = "VDDQ_VDD2_1V8AO"; + shunt-resistor-micro-ohms = <0x7d0>; + }; + + channel@2 { + reg = <0x02>; + label = "NC"; + }; + }; + + ucsi_ccg@8 { + status = "okay"; + compatible = "nvidia,ccgx-ucsi"; + ccgx,firmware-build = "gn"; + reg = <0x08>; + interrupt-parent = <0x15>; + interrupts = <0x0a 0x08>; + phandle = <0x156>; + + connector@0 { + compatible = "usb-c-connector"; + label = "USB-C"; + data-role = "host"; + phandle = <0x157>; + }; + + connector@1 { + compatible = "usb-c-connector"; + label = "USB-C"; + data-role = "dual"; + phandle = <0x158>; + + port { + + endpoint { + remote-endpoint = <0x39>; + phandle = <0xf7>; + }; + }; + }; + }; + }; + + i2c@3180000 { + #address-cells = <0x01>; + #size-cells = <0x00>; + iommus = <0x02 0x04>; + dma-coherent; + compatible = "nvidia,tegra234-i2c"; + reg = <0x00 0x3180000 0x00 0x100>; + nvidia,hw-instance-id = <0x02>; + interrupts = <0x00 0x1b 0x04>; + scl-gpio = <0x14 0x72 0x00>; + sda-gpio = <0x14 0x73 0x00>; + status = "okay"; + clock-frequency = <0x61a80>; + clocks = <0x04 0x32 0x04 0x66>; + clock-names = "div-clk\0parent"; + assigned-clocks = <0x04 0x32>; + assigned-clock-parents = <0x04 0x66>; + resets = <0x04 0x1e>; + reset-names = "i2c"; + dmas = <0x03 0x17 0x03 0x17>; + dma-names = "rx\0tx"; + phandle = <0x105>; + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x9c 0xffff 0x308 0x00 0xd4 0xff 0x00 0x00 0xd8 0xff 0x00 0x00 0xdc 0xffff 0x01 0x00 0xe0 0xffff 0x02>; + }; + + prod_c_fm { + prod = <0x00 0x6c 0xffff0000 0x3c0000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_fmplus { + prod = <0x00 0x6c 0xffff0000 0x160000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_hs { + prod = <0x00 0x6c 0xffffffff 0x160002 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202 0x00 0xa0 0xffffff 0x90909>; + }; + + prod_c_sm { + prod = <0x00 0x6c 0xffff0000 0x4f0000 0x00 0x94 0xffff 0x708 0x00 0x98 0xffffffff 0x8080808>; + }; + }; + + tca9546@70 { + compatible = "nxp,pca9546"; + reg = <0x70>; + #address-cells = <0x01>; + #size-cells = <0x00>; + vcc-supply = <0x3a>; + vcc-pullup-supply = <0x2e>; + skip_mux_detect = "yes"; + force_bus_start = <0x1e>; + vif-supply = <0x3a>; + status = "disabled"; + phandle = <0x159>; + + i2c@0 { + reg = <0x00>; + i2c-mux,deselect-on-exit; + #address-cells = <0x01>; + #size-cells = <0x00>; + + imx318_a@10 { + compatible = "sony,imx318"; + reg = <0x10>; + physical_w = "6.811"; + physical_h = "5.254"; + sensor_model = "imx318"; + avdd-reg = "vana"; + iovdd-reg = "vif"; + dvdd-reg = "vdig"; + has-eeprom; + clocks = <0x04 0x24 0x04 0x66>; + clock-names = "extperiph1\0pllp_grtba"; + mclk = "extperiph1"; + clock-frequency = <0x16e3600>; + reset-gpios = <0x14 0x3b 0x00>; + vana-supply = <0x3b>; + vif-supply = <0x3a>; + vdig-supply = <0x3c>; + status = "disable"; + phandle = <0x15a>; + + mode0 { + mclk_khz = "24000"; + num_lanes = [33 00]; + phy_mode = "CPHY"; + tegra_sinterface = "serial_a"; + discontinuous_clk = "no"; + dpcm_enable = "false"; + cil_settletime = "30"; + active_w = "5488"; + active_h = "4112"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "5488"; + inherent_gain = [31 00]; + mclk_multiplier = "31.25"; + pix_clk_hz = "750000000"; + gain_factor = "16"; + framerate_factor = "1000000"; + exposure_factor = "1000000"; + min_gain_val = "16"; + max_gain_val = "256"; + step_gain_val = [31 00]; + default_gain = "16"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + min_framerate = "1500000"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + min_exp_time = "34"; + max_exp_time = "550385"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [30 00]; + }; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + port-index = <0x00>; + bus-width = <0x03>; + remote-endpoint = <0x3d>; + phandle = <0x15b>; + }; + }; + }; + }; + + imx185_a@1a { + compatible = "sony,imx185"; + reg = <0x1a>; + devnode = "video0"; + physical_w = "15.0"; + physical_h = "12.5"; + sensor_model = "imx185"; + post_crop_frame_drop = [30 00]; + use_decibel_gain = "true"; + delayed_gain = "true"; + use_sensor_mode_id = "true"; + limit_analog_gain = "true"; + clocks = <0x04 0x24 0x04 0x24>; + clock-names = "extperiph1\0pllp_grtba"; + mclk = "extperiph1"; + reset-gpios = <0x14 0x3b 0x00>; + status = "disabled"; + phandle = <0x15c>; + + mode0 { + mclk_khz = "37125"; + num_lanes = [34 00]; + tegra_sinterface = "serial_a"; + phy_mode = "DPHY"; + discontinuous_clk = "no"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + dynamic_pixel_bit_depth = "12"; + csi_pixel_bit_depth = "12"; + mode_type = "bayer"; + pixel_phase = "rggb"; + active_w = "1920"; + active_h = "1080"; + readout_orientation = [30 00]; + line_length = "2200"; + inherent_gain = [31 00]; + mclk_multiplier = [32 00]; + pix_clk_hz = "74250000"; + gain_factor = "10"; + min_gain_val = [30 00]; + max_gain_val = "480"; + step_gain_val = [33 00]; + default_gain = [30 00]; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1500000"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "30"; + max_exp_time = "660000"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [31 00]; + }; + + mode1 { + mclk_khz = "37125"; + num_lanes = [34 00]; + tegra_sinterface = "serial_a"; + phy_mode = "DPHY"; + discontinuous_clk = "no"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + dynamic_pixel_bit_depth = "10"; + csi_pixel_bit_depth = "10"; + mode_type = "bayer"; + pixel_phase = "rggb"; + active_w = "1920"; + active_h = "1080"; + readout_orientation = [30 00]; + line_length = "2640"; + inherent_gain = [31 00]; + mclk_multiplier = "2.4"; + pix_clk_hz = "89100000"; + gain_factor = "10"; + min_gain_val = [30 00]; + max_gain_val = "480"; + step_gain_val = [33 00]; + default_gain = [30 00]; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1500000"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "30"; + max_exp_time = "660000"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [31 00]; + }; + + mode2 { + mclk_khz = "37125"; + num_lanes = [34 00]; + tegra_sinterface = "serial_a"; + phy_mode = "DPHY"; + discontinuous_clk = "no"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + dynamic_pixel_bit_depth = "12"; + csi_pixel_bit_depth = "12"; + mode_type = "bayer"; + pixel_phase = "rggb"; + active_w = "1920"; + active_h = "1080"; + readout_orientation = [30 00]; + line_length = "2200"; + inherent_gain = [31 00]; + mclk_multiplier = [34 00]; + pix_clk_hz = "148500000"; + gain_factor = "10"; + min_gain_val = [30 00]; + max_gain_val = "480"; + step_gain_val = [33 00]; + default_gain = [30 00]; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1500000"; + max_framerate = "60000000"; + step_framerate = [31 00]; + default_framerate = "60000000"; + exposure_factor = "1000000"; + min_exp_time = "30"; + max_exp_time = "660000"; + step_exp_time = [31 00]; + default_exp_time = "16667"; + embedded_metadata_height = [31 00]; + }; + + mode3 { + mclk_khz = "37125"; + num_lanes = [34 00]; + tegra_sinterface = "serial_a"; + phy_mode = "DPHY"; + discontinuous_clk = "no"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + dynamic_pixel_bit_depth = "10"; + csi_pixel_bit_depth = "10"; + mode_type = "bayer"; + pixel_phase = "rggb"; + active_w = "1920"; + active_h = "1080"; + readout_orientation = [30 00]; + line_length = "2640"; + inherent_gain = [31 00]; + mclk_multiplier = "4.8"; + pix_clk_hz = "178200000"; + gain_factor = "10"; + min_gain_val = [30 00]; + max_gain_val = "480"; + step_gain_val = [33 00]; + default_gain = [30 00]; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1500000"; + max_framerate = "60000000"; + step_framerate = [31 00]; + default_framerate = "60000000"; + exposure_factor = "1000000"; + min_exp_time = "30"; + max_exp_time = "660000"; + step_exp_time = [31 00]; + default_exp_time = "16667"; + embedded_metadata_height = [31 00]; + }; + + mode4 { + mclk_khz = "37125"; + num_lanes = [34 00]; + tegra_sinterface = "serial_a"; + phy_mode = "DPHY"; + discontinuous_clk = "no"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + dynamic_pixel_bit_depth = "16"; + csi_pixel_bit_depth = "12"; + mode_type = "bayer_wdr_pwl"; + pixel_phase = "rggb"; + active_w = "1920"; + active_h = "1080"; + readout_orientation = [30 00]; + line_length = "2200"; + inherent_gain = [31 00]; + mclk_multiplier = [32 00]; + pix_clk_hz = "74250000"; + gain_factor = "10"; + min_gain_val = [30 00]; + max_gain_val = "120"; + step_gain_val = [33 00]; + default_gain = [30 00]; + min_hdr_ratio = "16"; + max_hdr_ratio = "16"; + framerate_factor = "1000000"; + min_framerate = "1500000"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "2433"; + max_exp_time = "660000"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [31 00]; + num_control_point = [34 00]; + control_point_x_0 = [30 00]; + control_point_x_1 = "2048"; + control_point_x_2 = "16384"; + control_point_x_3 = "65536"; + control_point_y_0 = [30 00]; + control_point_y_1 = "2048"; + control_point_y_2 = "2944"; + control_point_y_3 = "3712"; + }; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + port-index = <0x00>; + bus-width = <0x04>; + remote-endpoint = <0x3d>; + phandle = <0x15d>; + }; + }; + }; + }; + + pca9570_a@24 { + compatible = "nxp,pca9570"; + reg = <0x24>; + channel = [61 00]; + drive_ic = "DRV8838"; + status = "disabled"; + phandle = <0x15e>; + }; + + imx390_a@1b { + compatible = "sony,imx390"; + reg = <0x1b>; + physical_w = "15.0"; + physical_h = "12.5"; + sensor_model = "imx390"; + post_crop_frame_drop = [30 00]; + use_decibel_gain = "true"; + use_sensor_mode_id = "true"; + def-addr = <0x1a>; + clocks = <0x04 0x24 0x04 0x24>; + clock-names = "extperiph1\0pllp_grtba"; + mclk = "extperiph1"; + nvidia,gmsl-ser-device = <0x3e>; + nvidia,gmsl-dser-device = <0x3f>; + status = "disabled"; + phandle = <0x15f>; + + mode0 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_a"; + vc_id = [30 00]; + discontinuous_clk = "no"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + dynamic_pixel_bit_depth = "12"; + csi_pixel_bit_depth = "12"; + mode_type = "bayer"; + pixel_phase = "rggb"; + active_w = "1920"; + active_h = "1080"; + readout_orientation = [30 00]; + line_length = "2200"; + inherent_gain = [31 00]; + pix_clk_hz = "74250000"; + serdes_pix_clk_hz = "200000000"; + gain_factor = "10"; + min_gain_val = [30 00]; + max_gain_val = "300"; + step_gain_val = [33 00]; + default_gain = [30 00]; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "30000000"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "59"; + max_exp_time = "33333"; + step_exp_time = [31 00]; + default_exp_time = "33333"; + embedded_metadata_height = [30 00]; + }; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + vc-id = <0x00>; + port-index = <0x00>; + bus-width = <0x02>; + remote-endpoint = <0x3d>; + phandle = <0x160>; + }; + }; + }; + + gmsl-link { + src-csi-port = [62 00]; + dst-csi-port = [61 00]; + serdes-csi-link = [61 00]; + csi-mode = "1x4"; + st-vc = <0x00>; + vc-id = <0x00>; + num-lanes = <0x02>; + streams = "ued-u1\0raw12"; + }; + }; + + imx390_b@1c { + compatible = "sony,imx390"; + reg = <0x1c>; + physical_w = "15.0"; + physical_h = "12.5"; + sensor_model = "imx390"; + post_crop_frame_drop = [30 00]; + use_decibel_gain = "true"; + use_sensor_mode_id = "true"; + def-addr = <0x1a>; + clocks = <0x04 0x24 0x04 0x24>; + clock-names = "extperiph1\0pllp_grtba"; + mclk = "extperiph1"; + nvidia,gmsl-ser-device = <0x40>; + nvidia,gmsl-dser-device = <0x3f>; + status = "disabled"; + phandle = <0x161>; + + mode0 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_a"; + vc_id = [31 00]; + discontinuous_clk = "no"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + dynamic_pixel_bit_depth = "12"; + csi_pixel_bit_depth = "12"; + mode_type = "bayer"; + pixel_phase = "rggb"; + active_w = "1920"; + active_h = "1080"; + readout_orientation = [30 00]; + line_length = "2200"; + inherent_gain = [31 00]; + pix_clk_hz = "74250000"; + serdes_pix_clk_hz = "200000000"; + gain_factor = "10"; + min_gain_val = [30 00]; + max_gain_val = "300"; + step_gain_val = [33 00]; + default_gain = [30 00]; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "30000000"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "59"; + max_exp_time = "33333"; + step_exp_time = [31 00]; + default_exp_time = "33333"; + embedded_metadata_height = [30 00]; + }; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + vc-id = <0x01>; + port-index = <0x00>; + bus-width = <0x02>; + remote-endpoint = <0x41>; + phandle = <0x162>; + }; + }; + }; + + gmsl-link { + src-csi-port = [62 00]; + dst-csi-port = [61 00]; + serdes-csi-link = [62 00]; + csi-mode = "1x4"; + st-vc = <0x00>; + vc-id = <0x01>; + num-lanes = <0x02>; + streams = "ued-u1\0raw12"; + }; + }; + + max9296@48 { + compatible = "maxim,max9296"; + reg = <0x48>; + csi-mode = "2x4"; + max-src = <0x02>; + reset-gpios = <0x14 0x3b 0x00>; + status = "disabled"; + phandle = <0x3f>; + }; + + max9295_prim@62 { + compatible = "maxim,max9295"; + reg = <0x62>; + is-prim-ser; + status = "disabled"; + phandle = <0x163>; + }; + + max9295_a@40 { + compatible = "maxim,max9295"; + reg = <0x40>; + nvidia,gmsl-dser-device = <0x3f>; + status = "disabled"; + phandle = <0x3e>; + }; + + max9295_b@60 { + compatible = "maxim,max9295"; + reg = <0x60>; + nvidia,gmsl-dser-device = <0x3f>; + status = "disabled"; + phandle = <0x40>; + }; + + imx274_a@1a { + compatible = "sony,imx274"; + reg = <0x1a>; + devnode = "video0"; + physical_w = "3.674"; + physical_h = "2.738"; + sensor_model = "imx274"; + avdd-reg = "vana"; + iovdd-reg = "vif"; + delayed_gain = "true"; + has-eeprom; + fuse_id_start_addr = <0x5b>; + clocks = <0x04 0x24 0x04 0x24>; + clock-names = "extperiph1\0pllp_grtba"; + mclk = "extperiph1"; + reset-gpios = <0x14 0x3b 0x00>; + vana-supply = <0x3b>; + vif-supply = <0x3a>; + status = "disabled"; + phandle = <0x164>; + + mode0 { + mclk_khz = "24000"; + num_lanes = [34 00]; + tegra_sinterface = "serial_a"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "3840"; + active_h = "2160"; + mode_type = "bayer"; + pixel_phase = "rggb"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "4208"; + inherent_gain = [31 00]; + mclk_multiplier = "24"; + pix_clk_hz = "576000000"; + gain_factor = "1000000"; + min_gain_val = "1000000"; + max_gain_val = "44400000"; + step_gain_val = [31 00]; + default_gain = "1000000"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1500000"; + max_framerate = "60000000"; + step_framerate = [31 00]; + default_framerate = "60000000"; + exposure_factor = "1000000"; + min_exp_time = "44"; + max_exp_time = "478696"; + step_exp_time = [31 00]; + default_exp_time = "16667"; + embedded_metadata_height = [31 00]; + }; + + mode1 { + mclk_khz = "24000"; + num_lanes = [34 00]; + tegra_sinterface = "serial_a"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + dynamic_pixel_bit_depth = "10"; + csi_pixel_bit_depth = "10"; + mode_type = "bayer"; + pixel_phase = "rggb"; + active_w = "1920"; + active_h = "1080"; + readout_orientation = [30 00]; + line_length = "4160"; + inherent_gain = [31 00]; + mclk_multiplier = "24"; + pix_clk_hz = "576000000"; + gain_factor = "1000000"; + min_gain_val = "1000000"; + max_gain_val = "177000000"; + step_gain_val = [31 00]; + default_gain = "1000000"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1500000"; + max_framerate = "60000000"; + step_framerate = [31 00]; + default_framerate = "60000000"; + exposure_factor = "1000000"; + min_exp_time = "58"; + max_exp_time = "184611"; + step_exp_time = [31 00]; + default_exp_time = "16667"; + embedded_metadata_height = [31 00]; + }; + + mode2 { + mclk_khz = "24000"; + num_lanes = [34 00]; + tegra_sinterface = "serial_a"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + dynamic_pixel_bit_depth = "10"; + csi_pixel_bit_depth = "10"; + mode_type = "bayer_wdr_dol"; + pixel_phase = "rggb"; + active_w = "3856"; + active_h = "4448"; + readout_orientation = [30 00]; + line_length = "4208"; + inherent_gain = [31 00]; + mclk_multiplier = "24"; + pix_clk_hz = "576000000"; + gain_factor = "1000000"; + min_gain_val = "1000000"; + max_gain_val = "30000000"; + step_gain_val = [31 00]; + default_gain = "1000000"; + min_hdr_ratio = "32"; + max_hdr_ratio = "32"; + framerate_factor = "1000000"; + min_framerate = "1500000"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "864"; + max_exp_time = "20480"; + step_exp_time = [31 00]; + default_exp_time = "20480"; + embedded_metadata_height = [31 00]; + num_of_exposure = [32 00]; + num_of_ignored_lines = "14"; + num_of_lines_offset_0 = "50"; + num_of_ignored_pixels = [34 00]; + num_of_left_margin_pixels = "12"; + num_of_right_margin_pixels = [30 00]; + }; + + mode3 { + mclk_khz = "24000"; + num_lanes = [34 00]; + tegra_sinterface = "serial_a"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + dynamic_pixel_bit_depth = "10"; + csi_pixel_bit_depth = "10"; + mode_type = "bayer_wdr_dol"; + pixel_phase = "rggb"; + active_w = "1936"; + active_h = "2264"; + readout_orientation = [30 00]; + line_length = "4160"; + inherent_gain = [31 00]; + mclk_multiplier = "24"; + pix_clk_hz = "576000000"; + gain_factor = "1000000"; + min_gain_val = "1000000"; + max_gain_val = "177000000"; + step_gain_val = [31 00]; + default_gain = "1000000"; + min_hdr_ratio = "32"; + max_hdr_ratio = "32"; + framerate_factor = "1000000"; + min_framerate = "1500000"; + max_framerate = "60000000"; + step_framerate = [31 00]; + default_framerate = "60000000"; + exposure_factor = "1000000"; + min_exp_time = "859"; + max_exp_time = "15649"; + step_exp_time = [31 00]; + default_exp_time = "15649"; + embedded_metadata_height = [31 00]; + num_of_exposure = [32 00]; + num_of_ignored_lines = "14"; + num_of_lines_offset_0 = "38"; + num_of_ignored_pixels = [34 00]; + num_of_left_margin_pixels = [36 00]; + num_of_right_margin_pixels = [36 00]; + }; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + port-index = <0x00>; + bus-width = <0x04>; + remote-endpoint = <0x3d>; + phandle = <0xbd>; + }; + }; + }; + }; + }; + + i2c@1 { + reg = <0x01>; + i2c-mux,deselect-on-exit; + #address-cells = <0x01>; + #size-cells = <0x00>; + + imx274_c@1a { + compatible = "sony,imx274"; + reg = <0x1a>; + devnode = "video1"; + physical_w = "3.674"; + physical_h = "2.738"; + sensor_model = "imx274"; + avdd-reg = "vana"; + iovdd-reg = "vif"; + delayed_gain = "true"; + has-eeprom; + fuse_id_start_addr = <0x63>; + clocks = <0x04 0x24 0x04 0x24>; + clock-names = "extperiph1\0pllp_grtba"; + mclk = "extperiph1"; + reset-gpios = <0x14 0x3e 0x00>; + vana-supply = <0x3b>; + vif-supply = <0x3a>; + status = "disabled"; + phandle = <0x165>; + + mode0 { + mclk_khz = "24000"; + num_lanes = [34 00]; + tegra_sinterface = "serial_c"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "3840"; + active_h = "2160"; + mode_type = "bayer"; + pixel_phase = "rggb"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "4208"; + inherent_gain = [31 00]; + mclk_multiplier = "24"; + pix_clk_hz = "576000000"; + gain_factor = "1000000"; + min_gain_val = "1000000"; + max_gain_val = "44400000"; + step_gain_val = [31 00]; + default_gain = "1000000"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1500000"; + max_framerate = "60000000"; + step_framerate = [31 00]; + default_framerate = "60000000"; + exposure_factor = "1000000"; + min_exp_time = "44"; + max_exp_time = "478696"; + step_exp_time = [31 00]; + default_exp_time = "16667"; + embedded_metadata_height = [31 00]; + }; + + mode1 { + mclk_khz = "24000"; + num_lanes = [34 00]; + tegra_sinterface = "serial_c"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + dynamic_pixel_bit_depth = "10"; + csi_pixel_bit_depth = "10"; + mode_type = "bayer"; + pixel_phase = "rggb"; + active_w = "1920"; + active_h = "1080"; + readout_orientation = [30 00]; + line_length = "4160"; + inherent_gain = [31 00]; + mclk_multiplier = "24"; + pix_clk_hz = "576000000"; + gain_factor = "1000000"; + min_gain_val = "1000000"; + max_gain_val = "177000000"; + step_gain_val = [31 00]; + default_gain = "1000000"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1500000"; + max_framerate = "60000000"; + step_framerate = [31 00]; + default_framerate = "60000000"; + exposure_factor = "1000000"; + min_exp_time = "58"; + max_exp_time = "184611"; + step_exp_time = [31 00]; + default_exp_time = "16667"; + embedded_metadata_height = [31 00]; + }; + + mode2 { + mclk_khz = "24000"; + num_lanes = [34 00]; + tegra_sinterface = "serial_c"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + dynamic_pixel_bit_depth = "10"; + csi_pixel_bit_depth = "10"; + mode_type = "bayer_wdr_dol"; + pixel_phase = "rggb"; + active_w = "3856"; + active_h = "4448"; + readout_orientation = [30 00]; + line_length = "4208"; + inherent_gain = [31 00]; + mclk_multiplier = "24"; + pix_clk_hz = "576000000"; + gain_factor = "1000000"; + min_gain_val = "1000000"; + max_gain_val = "30000000"; + step_gain_val = [31 00]; + default_gain = "1000000"; + min_hdr_ratio = "32"; + max_hdr_ratio = "32"; + framerate_factor = "1000000"; + min_framerate = "1500000"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "864"; + max_exp_time = "20480"; + step_exp_time = [31 00]; + default_exp_time = "20480"; + embedded_metadata_height = [31 00]; + num_of_exposure = [32 00]; + num_of_ignored_lines = "14"; + num_of_lines_offset_0 = "50"; + num_of_ignored_pixels = [34 00]; + num_of_left_margin_pixels = "12"; + num_of_right_margin_pixels = [30 00]; + }; + + mode3 { + mclk_khz = "24000"; + num_lanes = [34 00]; + tegra_sinterface = "serial_c"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + dynamic_pixel_bit_depth = "10"; + csi_pixel_bit_depth = "10"; + mode_type = "bayer_wdr_dol"; + pixel_phase = "rggb"; + active_w = "1936"; + active_h = "2264"; + readout_orientation = [30 00]; + line_length = "4160"; + inherent_gain = [31 00]; + mclk_multiplier = "24"; + pix_clk_hz = "576000000"; + gain_factor = "1000000"; + min_gain_val = "1000000"; + max_gain_val = "177000000"; + step_gain_val = [31 00]; + default_gain = "1000000"; + min_hdr_ratio = "32"; + max_hdr_ratio = "32"; + framerate_factor = "1000000"; + min_framerate = "1500000"; + max_framerate = "60000000"; + step_framerate = [31 00]; + default_framerate = "60000000"; + exposure_factor = "1000000"; + min_exp_time = "859"; + max_exp_time = "15649"; + step_exp_time = [31 00]; + default_exp_time = "15649"; + embedded_metadata_height = [31 00]; + num_of_exposure = [32 00]; + num_of_ignored_lines = "14"; + num_of_lines_offset_0 = "38"; + num_of_ignored_pixels = [34 00]; + num_of_left_margin_pixels = [36 00]; + num_of_right_margin_pixels = [36 00]; + }; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + port-index = <0x02>; + bus-width = <0x04>; + remote-endpoint = <0x41>; + phandle = <0xbf>; + }; + }; + }; + }; + }; + }; + + tca9548@77 { + compatible = "nxp,pca9548"; + reg = <0x77>; + #address-cells = <0x01>; + #size-cells = <0x00>; + vcc-supply = <0x3a>; + skip_mux_detect; + force_bus_start = <0x1e>; + status = "disabled"; + phandle = <0x166>; + + i2c@0 { + reg = <0x00>; + i2c-mux,deselect-on-exit; + #address-cells = <0x01>; + #size-cells = <0x00>; + + ov5693_a@36 { + compatible = "ovti,ov5693"; + reg = <0x36>; + devnode = "video0"; + physical_w = "3.674"; + physical_h = "2.738"; + avdd-reg = "vana"; + iovdd-reg = "vif"; + has-eeprom = [31 00]; + clocks = <0x04 0x24 0x04 0x66>; + clock-names = "extperiph1\0pllp_grtba"; + mclk = "extperiph1"; + clock-frequency = <0x16e3600>; + reset-gpios = <0x14 0x3b 0x00>; + pwdn-gpios = <0x14 0x3e 0x00>; + vana-supply = <0x3b>; + vif-supply = <0x3a>; + status = "disabled"; + phandle = <0x167>; + + mode0 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_a"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "2592"; + active_h = "1944"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "2688"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1816577"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "34"; + max_exp_time = "550385"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [30 00]; + }; + + mode1 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_a"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "2592"; + active_h = "1458"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "2688"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1816577"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "34"; + max_exp_time = "550385"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [30 00]; + }; + + mode2 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_a"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "1280"; + active_h = "720"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "1752"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "2787078"; + max_framerate = "120000000"; + step_framerate = [31 00]; + default_framerate = "120000000"; + exposure_factor = "1000000"; + min_exp_time = "22"; + max_exp_time = "358733"; + step_exp_time = [31 00]; + default_exp_time = "8334"; + embedded_metadata_height = [30 00]; + }; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + port-index = <0x00>; + bus-width = <0x02>; + remote-endpoint = <0x3d>; + phandle = <0x168>; + }; + }; + }; + }; + }; + + i2c@1 { + reg = <0x01>; + i2c-mux,deselect-on-exit; + #address-cells = <0x01>; + #size-cells = <0x00>; + + ov5693_b@36 { + compatible = "ovti,ov5693"; + reg = <0x36>; + devnode = "video1"; + physical_w = "3.674"; + physical_h = "2.738"; + avdd-reg = "vana"; + iovdd-reg = "vif"; + has-eeprom = [31 00]; + clocks = <0x04 0x24 0x04 0x66>; + clock-names = "extperiph1\0pllp_grtba"; + mclk = "extperiph1"; + clock-frequency = <0x16e3600>; + reset-gpios = <0x14 0xa1 0x00>; + pwdn-gpios = <0x14 0xa0 0x00>; + vana-supply = <0x3b>; + vif-supply = <0x3a>; + status = "disabled"; + phandle = <0x169>; + + mode0 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_b"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "2592"; + active_h = "1944"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "2688"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1816577"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "34"; + max_exp_time = "550385"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [30 00]; + }; + + mode1 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_b"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "2592"; + active_h = "1458"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "2688"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1816577"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "34"; + max_exp_time = "550385"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [30 00]; + }; + + mode2 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_b"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "1280"; + active_h = "720"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "1752"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "2787078"; + max_framerate = "120000000"; + step_framerate = [31 00]; + default_framerate = "120000000"; + exposure_factor = "1000000"; + min_exp_time = "22"; + max_exp_time = "358733"; + step_exp_time = [31 00]; + default_exp_time = "8334"; + embedded_metadata_height = [30 00]; + }; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + port-index = <0x01>; + bus-width = <0x02>; + remote-endpoint = <0x41>; + phandle = <0x16a>; + }; + }; + }; + }; + }; + + i2c@2 { + reg = <0x02>; + i2c-mux,deselect-on-exit; + #address-cells = <0x01>; + #size-cells = <0x00>; + + ov5693_c@36 { + compatible = "ovti,ov5693"; + reg = <0x36>; + devnode = "video2"; + physical_w = "3.674"; + physical_h = "2.738"; + avdd-reg = "vana"; + iovdd-reg = "vif"; + has-eeprom = [31 00]; + clocks = <0x04 0x24 0x04 0x66>; + clock-names = "extperiph1\0pllp_grtba"; + mclk = "extperiph1"; + clock-frequency = <0x16e3600>; + pwdn-gpios = <0x42 0x00 0x00>; + reset-gpios = <0x42 0x01 0x00>; + vana-supply = <0x3b>; + vif-supply = <0x3a>; + status = "disabled"; + phandle = <0x16b>; + + mode0 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_c"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "2592"; + active_h = "1944"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "2688"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1816577"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "34"; + max_exp_time = "550385"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [30 00]; + }; + + mode1 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_c"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "2592"; + active_h = "1458"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "2688"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1816577"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "34"; + max_exp_time = "550385"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [30 00]; + }; + + mode2 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_c"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "1280"; + active_h = "720"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "1752"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "2787078"; + max_framerate = "120000000"; + step_framerate = [31 00]; + default_framerate = "120000000"; + exposure_factor = "1000000"; + min_exp_time = "22"; + max_exp_time = "358733"; + step_exp_time = [31 00]; + default_exp_time = "8334"; + embedded_metadata_height = [30 00]; + }; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + port-index = <0x02>; + bus-width = <0x02>; + remote-endpoint = <0x43>; + phandle = <0xc1>; + }; + }; + }; + }; + }; + + i2c@3 { + reg = <0x03>; + i2c-mux,deselect-on-exit; + #address-cells = <0x01>; + #size-cells = <0x00>; + + ov5693_d@36 { + compatible = "ovti,ov5693"; + reg = <0x36>; + devnode = "video3"; + physical_w = "3.674"; + physical_h = "2.738"; + avdd-reg = "vana"; + iovdd-reg = "vif"; + has-eeprom = [31 00]; + clocks = <0x04 0x25 0x04 0x66>; + clock-names = "extperiph2\0pllp_grtba"; + mclk = "extperiph2"; + clock-frequency = <0x16e3600>; + pwdn-gpios = <0x42 0x02 0x00>; + reset-gpios = <0x42 0x03 0x00>; + vana-supply = <0x3b>; + vif-supply = <0x3a>; + status = "disabled"; + phandle = <0x16c>; + + mode0 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_d"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "2592"; + active_h = "1944"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "2688"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1816577"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "34"; + max_exp_time = "550385"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [30 00]; + }; + + mode1 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_d"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "2592"; + active_h = "1458"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "2688"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1816577"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "34"; + max_exp_time = "550385"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [30 00]; + }; + + mode2 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_d"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "1280"; + active_h = "720"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "1752"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "2787078"; + max_framerate = "120000000"; + step_framerate = [31 00]; + default_framerate = "120000000"; + exposure_factor = "1000000"; + min_exp_time = "22"; + max_exp_time = "358733"; + step_exp_time = [31 00]; + default_exp_time = "8334"; + embedded_metadata_height = [30 00]; + }; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + port-index = <0x03>; + bus-width = <0x02>; + remote-endpoint = <0x44>; + phandle = <0xc3>; + }; + }; + }; + }; + }; + + i2c@4 { + reg = <0x04>; + i2c-mux,deselect-on-exit; + #address-cells = <0x01>; + #size-cells = <0x00>; + + ov5693_e@36 { + compatible = "ovti,ov5693"; + reg = <0x36>; + devnode = "video4"; + physical_w = "3.674"; + physical_h = "2.738"; + avdd-reg = "vana"; + iovdd-reg = "vif"; + has-eeprom = [31 00]; + clocks = <0x04 0x25 0x04 0x66>; + clock-names = "extperiph2\0pllp_grtba"; + mclk = "extperiph2"; + clock-frequency = <0x16e3600>; + pwdn-gpios = <0x42 0x04 0x00>; + reset-gpios = <0x42 0x05 0x00>; + vana-supply = <0x3b>; + vif-supply = <0x3a>; + status = "disabled"; + phandle = <0x16d>; + + mode0 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_e"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "2592"; + active_h = "1944"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "2688"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1816577"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "34"; + max_exp_time = "550385"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [30 00]; + }; + + mode1 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_e"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "2592"; + active_h = "1458"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "2688"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1816577"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "34"; + max_exp_time = "550385"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [30 00]; + }; + + mode2 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_e"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "1280"; + active_h = "720"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "1752"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "2787078"; + max_framerate = "120000000"; + step_framerate = [31 00]; + default_framerate = "120000000"; + exposure_factor = "1000000"; + min_exp_time = "22"; + max_exp_time = "358733"; + step_exp_time = [31 00]; + default_exp_time = "8334"; + embedded_metadata_height = [30 00]; + }; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + port-index = <0x04>; + bus-width = <0x02>; + remote-endpoint = <0x45>; + phandle = <0xc5>; + }; + }; + }; + }; + }; + + i2c@5 { + reg = <0x05>; + i2c-mux,deselect-on-exit; + #address-cells = <0x01>; + #size-cells = <0x00>; + + ov5693_g@36 { + compatible = "ovti,ov5693"; + reg = <0x36>; + devnode = "video5"; + physical_w = "3.674"; + physical_h = "2.738"; + avdd-reg = "vana"; + iovdd-reg = "vif"; + has-eeprom = [31 00]; + clocks = <0x04 0x25 0x04 0x66>; + clock-names = "extperiph2\0pllp_grtba"; + mclk = "extperiph2"; + clock-frequency = <0x16e3600>; + pwdn-gpios = <0x42 0x06 0x00>; + reset-gpios = <0x42 0x07 0x00>; + vana-supply = <0x3b>; + vif-supply = <0x3a>; + status = "disabled"; + phandle = <0x16e>; + + mode0 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_g"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "2592"; + active_h = "1944"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "2688"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1816577"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "34"; + max_exp_time = "550385"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [30 00]; + }; + + mode1 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_g"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "2592"; + active_h = "1458"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "2688"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "1816577"; + max_framerate = "30000000"; + step_framerate = [31 00]; + default_framerate = "30000000"; + exposure_factor = "1000000"; + min_exp_time = "34"; + max_exp_time = "550385"; + step_exp_time = [31 00]; + default_exp_time = "33334"; + embedded_metadata_height = [30 00]; + }; + + mode2 { + mclk_khz = "24000"; + num_lanes = [32 00]; + tegra_sinterface = "serial_g"; + phy_mode = "DPHY"; + discontinuous_clk = "yes"; + dpcm_enable = "false"; + cil_settletime = [30 00]; + active_w = "1280"; + active_h = "720"; + mode_type = "bayer"; + pixel_phase = "bggr"; + csi_pixel_bit_depth = "10"; + readout_orientation = [30 00]; + line_length = "1752"; + inherent_gain = [31 00]; + mclk_multiplier = "6.67"; + pix_clk_hz = "160000000"; + gain_factor = "10"; + min_gain_val = "10"; + max_gain_val = "160"; + step_gain_val = [31 00]; + default_gain = "10"; + min_hdr_ratio = [31 00]; + max_hdr_ratio = [31 00]; + framerate_factor = "1000000"; + min_framerate = "2787078"; + max_framerate = "120000000"; + step_framerate = [31 00]; + default_framerate = "120000000"; + exposure_factor = "1000000"; + min_exp_time = "22"; + max_exp_time = "358733"; + step_exp_time = [31 00]; + default_exp_time = "8334"; + embedded_metadata_height = [30 00]; + }; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + port-index = <0x05>; + bus-width = <0x02>; + remote-endpoint = <0x46>; + phandle = <0xc7>; + }; + }; + }; + }; + }; + }; + + tca6408@21 { + compatible = "ti,tca6408"; + gpio-controller; + #gpio-cells = <0x02>; + reg = <0x21>; + vcc-supply = <0x3a>; + status = "disabled"; + phandle = <0x42>; + + tca6408_21_outlow { + gpio-hog; + gpios = <0x00 0x00 0x01 0x00 0x02 0x00 0x03 0x00 0x04 0x00 0x05 0x00 0x06 0x00 0x07 0x00>; + output-low; + label = "tca6408_21_outlow_0\0tca6408_21_outlow_1\0tca6408_21_outlow_2\0tca6408_21_outlow_3\0tca6408_21_outlow_4\0tca6408_21_outlow_5\0tca6408_21_outlow_6\0tca6408_21_outlow_7"; + }; + + tca6408_21_outhigh { + status = "disabled"; + }; + + tca6408_21_input { + status = "disabled"; + }; + }; + + ov5693_c@36 { + status = "disabled"; + phandle = <0x16f>; + }; + + e2832@2b { + status = "disabled"; + phandle = <0x170>; + }; + }; + + i2c@3190000 { + #address-cells = <0x01>; + #size-cells = <0x00>; + iommus = <0x02 0x04>; + dma-coherent; + compatible = "nvidia,tegra234-i2c"; + reg = <0x00 0x3190000 0x00 0x100>; + nvidia,hw-instance-id = <0x03>; + interrupts = <0x00 0x1c 0x04>; + status = "okay"; + clock-frequency = <0x186a0>; + clocks = <0x04 0x33 0x04 0x66>; + clock-names = "div-clk\0parent"; + assigned-clocks = <0x04 0x33>; + assigned-clock-parents = <0x04 0x66>; + resets = <0x04 0x1f>; + reset-names = "i2c"; + dmas = <0x03 0x1a 0x03 0x1a>; + dma-names = "rx\0tx"; + phandle = <0x171>; + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x9c 0xffff 0x308 0x00 0xd4 0xff 0x00 0x00 0xd8 0xff 0x00 0x00 0xdc 0xffff 0x01 0x00 0xe0 0xffff 0x02>; + }; + + prod_c_fm { + prod = <0x00 0x6c 0xffff0000 0x3c0000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_fmplus { + prod = <0x00 0x6c 0xffff0000 0x160000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_hs { + prod = <0x00 0x6c 0xffffffff 0x160002 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202 0x00 0xa0 0xffffff 0x90909>; + }; + + prod_c_sm { + prod = <0x00 0x6c 0xffff0000 0x4f0000 0x00 0x94 0xffff 0x708 0x00 0x98 0xffffffff 0x8080808>; + }; + }; + }; + + i2c@31b0000 { + #address-cells = <0x01>; + #size-cells = <0x00>; + iommus = <0x02 0x04>; + dma-coherent; + compatible = "nvidia,tegra234-i2c"; + reg = <0x00 0x31b0000 0x00 0x100>; + nvidia,hw-instance-id = <0x05>; + interrupts = <0x00 0x1e 0x04>; + status = "okay"; + clock-frequency = <0x186a0>; + clocks = <0x04 0x34 0x04 0x66>; + clock-names = "div-clk\0parent"; + assigned-clocks = <0x04 0x34>; + assigned-clock-parents = <0x04 0x66>; + resets = <0x04 0x20>; + reset-names = "i2c"; + dmas = <0x03 0x1e 0x03 0x1e>; + dma-names = "rx\0tx"; + phandle = <0x172>; + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x9c 0xffff 0x308 0x00 0xd4 0xff 0x00 0x00 0xd8 0xff 0x00 0x00 0xdc 0xffff 0x01 0x00 0xe0 0xffff 0x02>; + }; + + prod_c_fm { + prod = <0x00 0x6c 0xffff0000 0x3c0000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_fmplus { + prod = <0x00 0x6c 0xffff0000 0x160000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_hs { + prod = <0x00 0x6c 0xffffffff 0x160002 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202 0x00 0xa0 0xffffff 0x90909>; + }; + + prod_c_sm { + prod = <0x00 0x6c 0xffff0000 0x4f0000 0x00 0x94 0xffff 0x708 0x00 0x98 0xffffffff 0x8080808>; + }; + }; + }; + + i2c@31c0000 { + #address-cells = <0x01>; + #size-cells = <0x00>; + iommus = <0x02 0x04>; + dma-coherent; + compatible = "nvidia,tegra234-i2c"; + reg = <0x00 0x31c0000 0x00 0x100>; + nvidia,hw-instance-id = <0x06>; + interrupts = <0x00 0x1f 0x04>; + status = "okay"; + clock-frequency = <0x186a0>; + clocks = <0x04 0x35 0x04 0x66>; + clock-names = "div-clk\0parent"; + assigned-clocks = <0x04 0x35>; + assigned-clock-parents = <0x04 0x66>; + resets = <0x04 0x21>; + reset-names = "i2c"; + dmas = <0x03 0x1b 0x03 0x1b>; + dma-names = "rx\0tx"; + phandle = <0x173>; + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x9c 0xffff 0x308 0x00 0xd4 0xff 0x00 0x00 0xd8 0xff 0x00 0x00 0xdc 0xffff 0x01 0x00 0xe0 0xffff 0x02>; + }; + + prod_c_fm { + prod = <0x00 0x6c 0xffff0000 0x3c0000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_fmplus { + prod = <0x00 0x6c 0xffff0000 0x160000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_hs { + prod = <0x00 0x6c 0xffffffff 0x160002 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202 0x00 0xa0 0xffffff 0x90909>; + }; + + prod_c_sm { + prod = <0x00 0x6c 0xffff0000 0x4f0000 0x00 0x94 0xffff 0x708 0x00 0x98 0xffffffff 0x8080808>; + }; + }; + }; + + i2c@c250000 { + #address-cells = <0x01>; + #size-cells = <0x00>; + iommus = <0x02 0x04>; + dma-coherent; + compatible = "nvidia,tegra234-i2c"; + reg = <0x00 0xc250000 0x00 0x100>; + nvidia,hw-instance-id = <0x07>; + interrupts = <0x00 0x20 0x04>; + scl-gpio = <0x15 0x19 0x00>; + sda-gpio = <0x15 0x1a 0x00>; + status = "okay"; + clock-frequency = <0x61a80>; + clocks = <0x04 0x36 0x04 0x66>; + clock-names = "div-clk\0parent"; + assigned-clocks = <0x04 0x36>; + assigned-clock-parents = <0x04 0x66>; + resets = <0x04 0x22>; + reset-names = "i2c"; + dmas = <0x03 0x00 0x03 0x00>; + dma-names = "rx\0tx"; + phandle = <0x174>; + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x9c 0xffff 0x308 0x00 0xd4 0xff 0x00 0x00 0xd8 0xff 0x00 0x00 0xdc 0xffff 0x01 0x00 0xe0 0xffff 0x02>; + }; + + prod_c_fm { + prod = <0x00 0x6c 0xffff0000 0x3c0000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_fmplus { + prod = <0x00 0x6c 0xffff0000 0x160000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_hs { + prod = <0x00 0x6c 0xffffffff 0x160002 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202 0x00 0xa0 0xffffff 0x90909>; + }; + + prod_c_sm { + prod = <0x00 0x6c 0xffff0000 0x4f0000 0x00 0x94 0xffff 0x708 0x00 0x98 0xffffffff 0x8080808>; + }; + }; + + i2cmux@70 { + compatible = "nxp,pca9546"; + reg = <0x70>; + #address-cells = <0x01>; + #size-cells = <0x00>; + vcc-pullup-supply = <0x2e>; + status = "disabled"; + vcc-supply = <0x47>; + phandle = <0x106>; + + i2c@0 { + reg = <0x00>; + i2c-mux,deselect-on-exit; + #address-cells = <0x01>; + #size-cells = <0x00>; + + tas2552.9-0040@40 { + compatible = "ti,tas2552"; + reg = <0x40>; + vbat-supply = <0x2e>; + avdd-supply = <0x48>; + tas2552,pdm_edge_select = <0x00>; + #sound-dai-cells = <0x01>; + iovdd-supply = <0x47>; + phandle = <0x10e>; + }; + + tas2552.9-0041@41 { + compatible = "ti,tas2552"; + reg = <0x41>; + vbat-supply = <0x2e>; + avdd-supply = <0x48>; + tas2552,pdm_edge_select = <0x01>; + #sound-dai-cells = <0x01>; + iovdd-supply = <0x47>; + phandle = <0x10f>; + }; + }; + + i2c@1 { + reg = <0x01>; + i2c-mux,deselect-on-exit; + #address-cells = <0x01>; + #size-cells = <0x00>; + + ina3221@40 { + compatible = "ti,ina3221"; + reg = <0x40>; + #address-cells = <0x01>; + #size-cells = <0x00>; + + channel@0 { + reg = <0x00>; + label = "VDD_5V"; + shunt-resistor-micro-ohms = <0x2710>; + }; + + channel@1 { + reg = <0x01>; + label = "VDD_3V3"; + shunt-resistor-micro-ohms = <0x2710>; + }; + + channel@2 { + reg = <0x02>; + label = "VDD_1V8"; + shunt-resistor-micro-ohms = <0x3e8>; + }; + }; + + ina3221@41 { + compatible = "ti,ina3221"; + reg = <0x41>; + #address-cells = <0x01>; + #size-cells = <0x00>; + + channel@0 { + reg = <0x00>; + label = "VDD_5V_AUD"; + shunt-resistor-micro-ohms = <0x3e8>; + }; + + channel@1 { + reg = <0x01>; + label = "VDD_3V3_AUD"; + shunt-resistor-micro-ohms = <0x2710>; + }; + + channel@2 { + reg = <0x02>; + label = "VDD_1V8_AUD"; + shunt-resistor-micro-ohms = <0x2710>; + }; + }; + + ina3221@42 { + compatible = "ti,ina3221"; + reg = <0x42>; + #address-cells = <0x01>; + #size-cells = <0x00>; + + channel@0 { + reg = <0x00>; + label = "VDD_3V3_GPS"; + shunt-resistor-micro-ohms = <0x2710>; + }; + + channel@1 { + reg = <0x01>; + label = "VDD_3V3_NFC"; + shunt-resistor-micro-ohms = <0x2710>; + }; + + channel@2 { + reg = <0x02>; + label = "VDD_3V3_GYRO"; + shunt-resistor-micro-ohms = <0x2710>; + }; + }; + }; + + i2c@2 { + reg = <0x02>; + i2c-mux,deselect-on-exit; + #address-cells = <0x01>; + #size-cells = <0x00>; + }; + + i2c@3 { + reg = <0x03>; + i2c-mux,deselect-on-exit; + #address-cells = <0x01>; + #size-cells = <0x00>; + + rt5659.12-001a@1a { + compatible = "realtek,rt5658"; + reg = <0x1a>; + status = "disabled"; + realtek,jd-src = <0x01>; + realtek,dmic1-data-pin = <0x02>; + #sound-dai-cells = <0x01>; + interrupt-parent = <0x14>; + interrupts = <0x80 0x00>; + phandle = <0x111>; + }; + }; + }; + + gpio@20 { + compatible = "ti,tca6416"; + reg = <0x20>; + gpio-controller; + #gpio-cells = <0x02>; + vcc-supply = <0x2e>; + status = "disabled"; + phandle = <0x102>; + }; + + icm20628@68 { + compatible = "invensense,mpu6xxx"; + reg = <0x68>; + interrupt-parent = <0x15>; + interrupts = <0x02 0x01>; + accelerometer_matrix = [01 00 00 00 01 00 00 00 01]; + gyroscope_matrix = [01 00 00 00 01 00 00 00 01]; + geomagnetic_rotation_vector_disable = <0x01>; + gyroscope_uncalibrated_disable = <0x01>; + quaternion_disable = <0x01>; + status = "disabled"; + phandle = <0x107>; + }; + + ak8963@0d { + compatible = "ak,ak89xx"; + reg = <0x0d>; + magnetic_field_matrix = [01 00 00 00 01 00 00 00 01]; + status = "disabled"; + phandle = <0x108>; + }; + + bmp280@77 { + compatible = "bmp,bmpX80"; + reg = <0x77>; + status = "disabled"; + phandle = <0x109>; + }; + + cm32180@48 { + compatible = "capella,cm32180"; + reg = <0x48>; + gpio_irq = <0x15 0x01 0x01>; + light_uncalibrated_lo = <0x01>; + light_calibrated_lo = <0x96>; + light_uncalibrated_hi = <0x17318>; + light_calibrated_hi = <0x1ab3f0>; + status = "disabled"; + phandle = <0x10a>; + }; + + iqs263@44 { + status = "disabled"; + phandle = <0x175>; + }; + + rt5659.1-001a@1a { + compatible = "realtek,rt5658"; + reg = <0x1a>; + status = "disabled"; + realtek,jd-src = <0x01>; + realtek,dmic1-data-pin = <0x02>; + #sound-dai-cells = <0x01>; + interrupt-parent = <0x14>; + interrupts = <0x80 0x00>; + phandle = <0x10c>; + }; + }; + + i2c@31e0000 { + #address-cells = <0x01>; + #size-cells = <0x00>; + iommus = <0x02 0x04>; + dma-coherent; + compatible = "nvidia,tegra234-i2c"; + reg = <0x00 0x31e0000 0x00 0x100>; + nvidia,hw-instance-id = <0x08>; + interrupts = <0x00 0x21 0x04>; + status = "okay"; + clock-frequency = <0x186a0>; + clocks = <0x04 0x37 0x04 0x66>; + clock-names = "div-clk\0parent"; + assigned-clocks = <0x04 0x37>; + assigned-clock-parents = <0x04 0x66>; + resets = <0x04 0x23>; + reset-names = "i2c"; + dmas = <0x03 0x1f 0x03 0x1f>; + dma-names = "rx\0tx"; + phandle = <0x176>; + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x9c 0xffff 0x308 0x00 0xd4 0xff 0x00 0x00 0xd8 0xff 0x00 0x00 0xdc 0xffff 0x01 0x00 0xe0 0xffff 0x02>; + }; + + prod_c_fm { + prod = <0x00 0x6c 0xffff0000 0x3c0000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_fmplus { + prod = <0x00 0x6c 0xffff0000 0x160000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>; + }; + + prod_c_hs { + prod = <0x00 0x6c 0xffffffff 0x160002 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202 0x00 0xa0 0xffffff 0x90909>; + }; + + prod_c_sm { + prod = <0x00 0x6c 0xffff0000 0x4f0000 0x00 0x94 0xffff 0x708 0x00 0x98 0xffffffff 0x8080808>; + }; + }; + }; + + gpcdma@2600000 { + compatible = "nvidia,tegra234-gpcdma"; + reg = <0x00 0x2600000 0x00 0x210000>; + resets = <0x04 0x12>; + reset-names = "gpcdma"; + interrupts = <0x00 0x4b 0x04 0x00 0x4c 0x04 0x00 0x4d 0x04 0x00 0x4e 0x04 0x00 0x4f 0x04 0x00 0x50 0x04 0x00 0x51 0x04 0x00 0x52 0x04 0x00 0x53 0x04 0x00 0x54 0x04 0x00 0x55 0x04 0x00 0x56 0x04 0x00 0x57 0x04 0x00 0x58 0x04 0x00 0x59 0x04 0x00 0x5a 0x04 0x00 0x5b 0x04 0x00 0x5c 0x04 0x00 0x5d 0x04 0x00 0x5e 0x04 0x00 0x5f 0x04 0x00 0x60 0x04 0x00 0x61 0x04 0x00 0x62 0x04 0x00 0x63 0x04 0x00 0x64 0x04 0x00 0x65 0x04 0x00 0x66 0x04 0x00 0x67 0x04 0x00 0x68 0x04 0x00 0x69 0x04 0x00 0x6a 0x04 0x00 0x6b 0x04>; + #dma-cells = <0x01>; + iommus = <0x02 0x04>; + nvidia,stream-id = <0x04>; + dma-coherent; + nvidia,start-dma-channel-index = <0x01>; + dma-channels = <0x1f>; + status = "okay"; + phandle = <0x03>; + }; + + mttcan@c310000 { + compatible = "nvidia,tegra194-mttcan"; + reg = <0x00 0xc310000 0x00 0x144 0x00 0xc311000 0x00 0x32 0x00 0xc312000 0x00 0x1000>; + reg-names = "can-regs\0glue-regs\0msg-ram"; + interrupts = <0x00 0x28 0x04>; + pll_source = "pllaon"; + clocks = <0x04 0x11c 0x04 0x0a 0x04 0x09 0x04 0x5e>; + clock-names = "can_core\0can_host\0can\0pllaon"; + resets = <0x04 0x04>; + reset-names = "can"; + mram-params = <0x00 0x10 0x10 0x20 0x00 0x00 0x10 0x10 0x10>; + tx-config = <0x00 0x10 0x00 0x40>; + rx-config = <0x40 0x40 0x40>; + bitrates = <0x1f4 0x7d0>; + bittimes = <0x7d 0x00 0x0f 0x13 0x03 0x00 0x03 0xfa 0x00 0x00 0xae 0x17 0x00 0x01 0xfa 0x00 0x07 0x13 0x03 0x00 0x02 0x1f4 0x00 0x03 0x13 0x03 0x00 0x03 0x3e8 0x00 0x01 0x10 0x06 0x00 0x03 0x7d0 0x00 0x00 0x10 0x06 0x00 0x02>; + status = "okay"; + phandle = <0x177>; + }; + + mttcan@c320000 { + compatible = "nvidia,tegra194-mttcan"; + reg = <0x00 0xc320000 0x00 0x144 0x00 0xc321000 0x00 0x32 0x00 0xc322000 0x00 0x1000>; + reg-names = "can-regs\0glue-regs\0msg-ram"; + interrupts = <0x00 0x2a 0x04>; + pll_source = "pllaon"; + clocks = <0x04 0x11d 0x04 0x0c 0x04 0x0b 0x04 0x5e>; + clock-names = "can_core\0can_host\0can\0pllaon"; + resets = <0x04 0x05>; + reset-names = "can"; + mram-params = <0x00 0x10 0x10 0x20 0x00 0x00 0x10 0x10 0x10>; + tx-config = <0x00 0x10 0x00 0x40>; + rx-config = <0x40 0x40 0x40>; + bitrates = <0x1f4 0x7d0>; + bittimes = <0x7d 0x00 0x0f 0x13 0x03 0x00 0x03 0xfa 0x00 0x00 0xae 0x17 0x00 0x01 0xfa 0x00 0x07 0x13 0x03 0x00 0x02 0x1f4 0x00 0x03 0x13 0x03 0x00 0x03 0x3e8 0x00 0x01 0x10 0x06 0x00 0x03 0x7d0 0x00 0x00 0x10 0x06 0x00 0x02>; + status = "okay"; + phandle = <0x178>; + }; + + sound { + iommus = <0x02 0x02>; + iommu-resv-regions = <0x00 0x00 0x00 0x40000000 0x00 0x60000000 0xffffffff 0xffffffff>; + status = "okay"; + compatible = "nvidia,tegra186-ape"; + nvidia-audio-card,name = "NVIDIA Jetson AGX Orin APE"; + clocks = <0x04 0x5d 0x04 0x68 0x04 0x07>; + clock-names = "pll_a\0pll_a_out0\0extern1"; + assigned-clocks = <0x04 0x07>; + assigned-clock-parents = <0x04 0x68>; + phandle = <0x110>; + + nvidia-audio-card,dai-link@0 { + status = "okay"; + phandle = <0x179>; + + cpu { + sound-dai = <0x49 0x00>; + }; + + codec { + sound-dai = <0x4a 0x00>; + }; + }; + + nvidia-audio-card,dai-link@1 { + status = "okay"; + phandle = <0x17a>; + + cpu { + sound-dai = <0x49 0x01>; + }; + + codec { + sound-dai = <0x4a 0x01>; + }; + }; + + nvidia-audio-card,dai-link@2 { + status = "okay"; + phandle = <0x17b>; + + cpu { + sound-dai = <0x49 0x02>; + }; + + codec { + sound-dai = <0x4a 0x02>; + }; + }; + + nvidia-audio-card,dai-link@3 { + status = "okay"; + phandle = <0x17c>; + + cpu { + sound-dai = <0x49 0x03>; + }; + + codec { + sound-dai = <0x4a 0x03>; + }; + }; + + nvidia-audio-card,dai-link@4 { + status = "okay"; + phandle = <0x17d>; + + cpu { + sound-dai = <0x49 0x04>; + }; + + codec { + sound-dai = <0x4a 0x04>; + }; + }; + + nvidia-audio-card,dai-link@5 { + status = "okay"; + phandle = <0x17e>; + + cpu { + sound-dai = <0x49 0x05>; + }; + + codec { + sound-dai = <0x4a 0x05>; + }; + }; + + nvidia-audio-card,dai-link@6 { + status = "okay"; + phandle = <0x17f>; + + cpu { + sound-dai = <0x49 0x06>; + }; + + codec { + sound-dai = <0x4a 0x06>; + }; + }; + + nvidia-audio-card,dai-link@7 { + status = "okay"; + phandle = <0x180>; + + cpu { + sound-dai = <0x49 0x07>; + }; + + codec { + sound-dai = <0x4a 0x07>; + }; + }; + + nvidia-audio-card,dai-link@8 { + status = "okay"; + phandle = <0x181>; + + cpu { + sound-dai = <0x49 0x08>; + }; + + codec { + sound-dai = <0x4a 0x08>; + }; + }; + + nvidia-audio-card,dai-link@9 { + status = "okay"; + phandle = <0x182>; + + cpu { + sound-dai = <0x49 0x09>; + }; + + codec { + sound-dai = <0x4a 0x09>; + }; + }; + + nvidia-audio-card,dai-link@10 { + status = "okay"; + phandle = <0x183>; + + cpu { + sound-dai = <0x49 0x0a>; + }; + + codec { + sound-dai = <0x4a 0x42>; + }; + }; + + nvidia-audio-card,dai-link@11 { + status = "okay"; + phandle = <0x184>; + + cpu { + sound-dai = <0x49 0x0b>; + }; + + codec { + sound-dai = <0x4a 0x43>; + }; + }; + + nvidia-audio-card,dai-link@12 { + status = "okay"; + phandle = <0x185>; + + cpu { + sound-dai = <0x49 0x0c>; + }; + + codec { + sound-dai = <0x4a 0x44>; + }; + }; + + nvidia-audio-card,dai-link@13 { + status = "okay"; + phandle = <0x186>; + + cpu { + sound-dai = <0x49 0x0d>; + }; + + codec { + sound-dai = <0x4a 0x45>; + }; + }; + + nvidia-audio-card,dai-link@14 { + status = "okay"; + phandle = <0x187>; + + cpu { + sound-dai = <0x49 0x0e>; + }; + + codec { + sound-dai = <0x4a 0x46>; + }; + }; + + nvidia-audio-card,dai-link@15 { + status = "okay"; + phandle = <0x188>; + + cpu { + sound-dai = <0x49 0x0f>; + }; + + codec { + sound-dai = <0x4a 0x47>; + }; + }; + + nvidia-audio-card,dai-link@16 { + status = "okay"; + phandle = <0x189>; + + cpu { + sound-dai = <0x49 0x10>; + }; + + codec { + sound-dai = <0x4a 0x48>; + }; + }; + + nvidia-audio-card,dai-link@17 { + status = "okay"; + phandle = <0x18a>; + + cpu { + sound-dai = <0x49 0x11>; + }; + + codec { + sound-dai = <0x4a 0x49>; + }; + }; + + nvidia-audio-card,dai-link@18 { + status = "okay"; + phandle = <0x18b>; + + cpu { + sound-dai = <0x49 0x12>; + }; + + codec { + sound-dai = <0x4a 0x4a>; + }; + }; + + nvidia-audio-card,dai-link@19 { + status = "okay"; + phandle = <0x18c>; + + cpu { + sound-dai = <0x49 0x13>; + }; + + codec { + sound-dai = <0x4a 0x4b>; + }; + }; + + nvidia-audio-card,dai-link@20 { + status = "okay"; + phandle = <0x18d>; + + cpu { + sound-dai = <0x4b 0x24>; + }; + + codec { + sound-dai = <0x4b 0x00>; + }; + }; + + nvidia-audio-card,dai-link@21 { + status = "okay"; + phandle = <0x18e>; + + cpu { + sound-dai = <0x4b 0x25>; + }; + + codec { + sound-dai = <0x4b 0x01>; + }; + }; + + nvidia-audio-card,dai-link@22 { + status = "okay"; + link-type = <0x01>; + phandle = <0x18f>; + + cpu { + sound-dai = <0x4b 0x33>; + }; + + codec { + sound-dai = <0x4b 0x02>; + }; + }; + + nvidia-audio-card,dai-link@23 { + status = "okay"; + link-type = <0x01>; + phandle = <0x190>; + + cpu { + sound-dai = <0x4b 0x34>; + }; + + codec { + sound-dai = <0x4b 0x03>; + }; + }; + + nvidia-audio-card,dai-link@24 { + status = "okay"; + link-type = <0x02>; + phandle = <0x191>; + + cpu { + sound-dai = <0x4b 0x10>; + }; + + codec { + sound-dai = <0x49 0x14>; + }; + }; + + nvidia-audio-card,dai-link@25 { + status = "okay"; + link-type = <0x02>; + phandle = <0x192>; + + cpu { + sound-dai = <0x4b 0x11>; + }; + + codec { + sound-dai = <0x49 0x15>; + }; + }; + + nvidia-audio-card,dai-link@26 { + status = "okay"; + link-type = <0x02>; + phandle = <0x193>; + + cpu { + sound-dai = <0x4b 0x12>; + }; + + codec { + sound-dai = <0x49 0x16>; + }; + }; + + nvidia-audio-card,dai-link@27 { + status = "okay"; + link-type = <0x02>; + phandle = <0x194>; + + cpu { + sound-dai = <0x4b 0x13>; + }; + + codec { + sound-dai = <0x49 0x17>; + }; + }; + + nvidia-audio-card,dai-link@28 { + status = "okay"; + link-type = <0x02>; + phandle = <0x195>; + + cpu { + sound-dai = <0x4b 0x14>; + }; + + codec { + sound-dai = <0x49 0x18>; + }; + }; + + nvidia-audio-card,dai-link@29 { + status = "okay"; + link-type = <0x02>; + phandle = <0x196>; + + cpu { + sound-dai = <0x4b 0x15>; + }; + + codec { + sound-dai = <0x49 0x19>; + }; + }; + + nvidia-audio-card,dai-link@30 { + status = "okay"; + link-type = <0x02>; + phandle = <0x197>; + + cpu { + sound-dai = <0x4b 0x16>; + }; + + codec { + sound-dai = <0x49 0x1a>; + }; + }; + + nvidia-audio-card,dai-link@31 { + status = "okay"; + link-type = <0x02>; + phandle = <0x198>; + + cpu { + sound-dai = <0x4b 0x17>; + }; + + codec { + sound-dai = <0x49 0x1b>; + }; + }; + + nvidia-audio-card,dai-link@32 { + status = "okay"; + link-type = <0x02>; + phandle = <0x199>; + + cpu { + sound-dai = <0x4b 0x18>; + }; + + codec { + sound-dai = <0x49 0x1c>; + }; + }; + + nvidia-audio-card,dai-link@33 { + status = "okay"; + link-type = <0x02>; + phandle = <0x19a>; + + cpu { + sound-dai = <0x4b 0x19>; + }; + + codec { + sound-dai = <0x49 0x1d>; + }; + }; + + nvidia-audio-card,dai-link@34 { + status = "okay"; + link-type = <0x02>; + phandle = <0x19b>; + + cpu { + sound-dai = <0x4b 0x1a>; + }; + + codec { + sound-dai = <0x49 0x1e>; + }; + }; + + nvidia-audio-card,dai-link@35 { + status = "okay"; + link-type = <0x02>; + phandle = <0x19c>; + + cpu { + sound-dai = <0x4b 0x1b>; + }; + + codec { + sound-dai = <0x49 0x1f>; + }; + }; + + nvidia-audio-card,dai-link@36 { + status = "okay"; + link-type = <0x02>; + phandle = <0x19d>; + + cpu { + sound-dai = <0x4b 0x1c>; + }; + + codec { + sound-dai = <0x49 0x20>; + }; + }; + + nvidia-audio-card,dai-link@37 { + status = "okay"; + link-type = <0x02>; + phandle = <0x19e>; + + cpu { + sound-dai = <0x4b 0x1d>; + }; + + codec { + sound-dai = <0x49 0x21>; + }; + }; + + nvidia-audio-card,dai-link@38 { + status = "okay"; + link-type = <0x02>; + phandle = <0x19f>; + + cpu { + sound-dai = <0x4b 0x1e>; + }; + + codec { + sound-dai = <0x49 0x22>; + }; + }; + + nvidia-audio-card,dai-link@39 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1a0>; + + cpu { + sound-dai = <0x4b 0x1f>; + }; + + codec { + sound-dai = <0x49 0x23>; + }; + }; + + nvidia-audio-card,dai-link@40 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1a1>; + + cpu { + sound-dai = <0x4b 0x20>; + }; + + codec { + sound-dai = <0x49 0x24>; + }; + }; + + nvidia-audio-card,dai-link@41 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1a2>; + + cpu { + sound-dai = <0x4b 0x21>; + }; + + codec { + sound-dai = <0x49 0x25>; + }; + }; + + nvidia-audio-card,dai-link@42 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1a3>; + + cpu { + sound-dai = <0x4b 0x22>; + }; + + codec { + sound-dai = <0x49 0x26>; + }; + }; + + nvidia-audio-card,dai-link@43 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1a4>; + + cpu { + sound-dai = <0x4b 0x23>; + }; + + codec { + sound-dai = <0x49 0x27>; + }; + }; + + nvidia-audio-card,dai-link@44 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1a5>; + + cpu { + sound-dai = <0x49 0x28>; + }; + + codec { + sound-dai = <0x4a 0x00>; + }; + }; + + nvidia-audio-card,dai-link@45 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1a6>; + + cpu { + sound-dai = <0x49 0x29>; + }; + + codec { + sound-dai = <0x4a 0x01>; + }; + }; + + nvidia-audio-card,dai-link@46 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1a7>; + + cpu { + sound-dai = <0x49 0x2a>; + }; + + codec { + sound-dai = <0x4a 0x02>; + }; + }; + + nvidia-audio-card,dai-link@47 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1a8>; + + cpu { + sound-dai = <0x49 0x2b>; + }; + + codec { + sound-dai = <0x4a 0x03>; + }; + }; + + nvidia-audio-card,dai-link@48 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1a9>; + + cpu { + sound-dai = <0x49 0x2c>; + }; + + codec { + sound-dai = <0x4a 0x04>; + }; + }; + + nvidia-audio-card,dai-link@49 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1aa>; + + cpu { + sound-dai = <0x49 0x2d>; + }; + + codec { + sound-dai = <0x4a 0x05>; + }; + }; + + nvidia-audio-card,dai-link@50 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1ab>; + + cpu { + sound-dai = <0x49 0x2e>; + }; + + codec { + sound-dai = <0x4a 0x06>; + }; + }; + + nvidia-audio-card,dai-link@51 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1ac>; + + cpu { + sound-dai = <0x49 0x2f>; + }; + + codec { + sound-dai = <0x4a 0x07>; + }; + }; + + nvidia-audio-card,dai-link@52 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1ad>; + + cpu { + sound-dai = <0x49 0x30>; + }; + + codec { + sound-dai = <0x4a 0x08>; + }; + }; + + nvidia-audio-card,dai-link@53 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1ae>; + + cpu { + sound-dai = <0x49 0x31>; + }; + + codec { + sound-dai = <0x4a 0x09>; + }; + }; + + nvidia-audio-card,dai-link@54 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1af>; + + cpu { + sound-dai = <0x49 0x32>; + }; + + codec { + sound-dai = <0x4a 0x42>; + }; + }; + + nvidia-audio-card,dai-link@55 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1b0>; + + cpu { + sound-dai = <0x49 0x33>; + }; + + codec { + sound-dai = <0x4a 0x43>; + }; + }; + + nvidia-audio-card,dai-link@56 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1b1>; + + cpu { + sound-dai = <0x49 0x34>; + }; + + codec { + sound-dai = <0x4a 0x44>; + }; + }; + + nvidia-audio-card,dai-link@57 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1b2>; + + cpu { + sound-dai = <0x49 0x35>; + }; + + codec { + sound-dai = <0x4a 0x45>; + }; + }; + + nvidia-audio-card,dai-link@58 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1b3>; + + cpu { + sound-dai = <0x49 0x36>; + }; + + codec { + sound-dai = <0x4a 0x46>; + }; + }; + + nvidia-audio-card,dai-link@59 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1b4>; + + cpu { + sound-dai = <0x49 0x37>; + }; + + codec { + sound-dai = <0x4a 0x47>; + }; + }; + + nvidia-audio-card,dai-link@60 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1b5>; + + cpu { + sound-dai = <0x49 0x38>; + }; + + codec { + sound-dai = <0x4a 0x48>; + }; + }; + + nvidia-audio-card,dai-link@61 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1b6>; + + cpu { + sound-dai = <0x49 0x39>; + }; + + codec { + sound-dai = <0x4a 0x49>; + }; + }; + + nvidia-audio-card,dai-link@62 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1b7>; + + cpu { + sound-dai = <0x49 0x3a>; + }; + + codec { + sound-dai = <0x4a 0x4a>; + }; + }; + + nvidia-audio-card,dai-link@63 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1b8>; + + cpu { + sound-dai = <0x49 0x3b>; + }; + + codec { + sound-dai = <0x4a 0x4b>; + }; + }; + + nvidia-audio-card,dai-link@64 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1b9>; + + cpu { + sound-dai = <0x4a 0x0a>; + }; + + codec { + sound-dai = <0x4c 0x00>; + prefix = "I2S1"; + }; + }; + + nvidia-audio-card,dai-link@65 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1ba>; + + cpu { + sound-dai = <0x4a 0x0b>; + }; + + codec { + sound-dai = <0x4d 0x00>; + prefix = "I2S2"; + }; + }; + + nvidia-audio-card,dai-link@66 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1bb>; + + cpu { + sound-dai = <0x4a 0x0c>; + }; + + codec { + sound-dai = <0x4e 0x00>; + prefix = "I2S3"; + }; + }; + + nvidia-audio-card,dai-link@67 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1bc>; + + cpu { + sound-dai = <0x4a 0x0d>; + }; + + codec { + sound-dai = <0x4f 0x00>; + prefix = "I2S4"; + }; + }; + + nvidia-audio-card,dai-link@68 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1bd>; + + cpu { + sound-dai = <0x4a 0x0e>; + }; + + codec { + sound-dai = <0x50 0x00>; + prefix = "I2S5"; + }; + }; + + nvidia-audio-card,dai-link@69 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1be>; + + cpu { + sound-dai = <0x4a 0x4c>; + }; + + codec { + sound-dai = <0x51 0x00>; + prefix = "I2S6"; + }; + }; + + nvidia-audio-card,dai-link@70 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1bf>; + + cpu { + sound-dai = <0x4a 0x2b>; + }; + + codec { + sound-dai = <0x52 0x00>; + prefix = "DMIC1"; + }; + }; + + nvidia-audio-card,dai-link@71 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1c0>; + + cpu { + sound-dai = <0x4a 0x2c>; + }; + + codec { + sound-dai = <0x53 0x00>; + prefix = "DMIC2"; + }; + }; + + nvidia-audio-card,dai-link@72 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1c1>; + + cpu { + sound-dai = <0x4a 0x2d>; + }; + + codec { + sound-dai = <0x54 0x00>; + prefix = "DMIC3"; + }; + }; + + nvidia-audio-card,dai-link@73 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1c2>; + + cpu { + sound-dai = <0x4a 0x61>; + }; + + codec { + sound-dai = <0x55 0x00>; + prefix = "DMIC4"; + }; + }; + + nvidia-audio-card,dai-link@74 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1c3>; + + cpu { + sound-dai = <0x4a 0x6a>; + }; + + codec { + sound-dai = <0x56 0x00>; + prefix = "DSPK1"; + }; + }; + + nvidia-audio-card,dai-link@75 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1c4>; + + cpu { + sound-dai = <0x4a 0x6b>; + }; + + codec { + sound-dai = <0x57 0x00>; + prefix = "DSPK2"; + }; + }; + + nvidia-audio-card,dai-link@76 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1c5>; + + cpu { + sound-dai = <0x4c 0x01>; + phandle = <0x1c6>; + }; + + codec { + sound-dai = <0x4c 0x02>; + }; + }; + + nvidia-audio-card,dai-link@77 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x10b>; + + cpu { + sound-dai = <0x4d 0x01>; + phandle = <0x1c7>; + }; + + codec { + sound-dai = <0x4d 0x02>; + }; + }; + + nvidia-audio-card,dai-link@78 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1c8>; + + cpu { + sound-dai = <0x4e 0x01>; + phandle = <0x1c9>; + }; + + codec { + sound-dai = <0x4e 0x02>; + }; + }; + + nvidia-audio-card,dai-link@79 { + status = "okay"; + format = "dsp_a"; + link-type = <0x02>; + bitclock-inversion; + phandle = <0x1ca>; + + cpu { + sound-dai = <0x4f 0x01>; + phandle = <0x1cb>; + }; + + codec { + sound-dai = <0x4f 0x02>; + }; + }; + + nvidia-audio-card,dai-link@80 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1cc>; + + cpu { + sound-dai = <0x50 0x01>; + phandle = <0x1cd>; + }; + + codec { + sound-dai = <0x50 0x02>; + }; + }; + + nvidia-audio-card,dai-link@81 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1ce>; + + cpu { + sound-dai = <0x51 0x01>; + phandle = <0x1cf>; + }; + + codec { + sound-dai = <0x51 0x02>; + }; + }; + + nvidia-audio-card,dai-link@82 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1d0>; + + cpu { + sound-dai = <0x52 0x01>; + }; + + codec { + sound-dai = <0x52 0x02>; + }; + }; + + nvidia-audio-card,dai-link@83 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1d1>; + + cpu { + sound-dai = <0x53 0x01>; + }; + + codec { + sound-dai = <0x53 0x02>; + }; + }; + + nvidia-audio-card,dai-link@84 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1d2>; + + cpu { + sound-dai = <0x54 0x01>; + }; + + codec { + sound-dai = <0x54 0x02>; + }; + }; + + nvidia-audio-card,dai-link@85 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1d3>; + + cpu { + sound-dai = <0x55 0x01>; + }; + + codec { + sound-dai = <0x55 0x02>; + }; + }; + + nvidia-audio-card,dai-link@86 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x1d4>; + + cpu { + sound-dai = <0x56 0x01>; + }; + + codec { + sound-dai = <0x56 0x04>; + }; + + codec@1 { + }; + }; + + nvidia-audio-card,dai-link@87 { + status = "okay"; + format = "i2s"; + link-type = <0x02>; + phandle = <0x10d>; + + cpu { + sound-dai = <0x57 0x01>; + }; + + codec { + sound-dai = <0x57 0x04>; + }; + + codec@1 { + }; + }; + + nvidia-audio-card,dai-link@88 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1d5>; + + cpu { + sound-dai = <0x4a 0x2f>; + }; + + codec { + sound-dai = <0x58 0x00>; + prefix = "AMX1"; + }; + }; + + nvidia-audio-card,dai-link@89 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1d6>; + + cpu { + sound-dai = <0x4a 0x30>; + }; + + codec { + sound-dai = <0x58 0x01>; + prefix = "AMX1"; + }; + }; + + nvidia-audio-card,dai-link@90 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1d7>; + + cpu { + sound-dai = <0x4a 0x31>; + }; + + codec { + sound-dai = <0x58 0x02>; + prefix = "AMX1"; + }; + }; + + nvidia-audio-card,dai-link@91 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1d8>; + + cpu { + sound-dai = <0x4a 0x32>; + }; + + codec { + sound-dai = <0x58 0x03>; + prefix = "AMX1"; + }; + }; + + nvidia-audio-card,dai-link@92 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1d9>; + + cpu { + sound-dai = <0x58 0x04>; + }; + + codec { + sound-dai = <0x4a 0x2e>; + }; + }; + + nvidia-audio-card,dai-link@93 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1da>; + + cpu { + sound-dai = <0x4a 0x34>; + }; + + codec { + sound-dai = <0x59 0x00>; + prefix = "AMX2"; + }; + }; + + nvidia-audio-card,dai-link@94 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1db>; + + cpu { + sound-dai = <0x4a 0x35>; + }; + + codec { + sound-dai = <0x59 0x01>; + prefix = "AMX2"; + }; + }; + + nvidia-audio-card,dai-link@95 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1dc>; + + cpu { + sound-dai = <0x4a 0x36>; + }; + + codec { + sound-dai = <0x59 0x02>; + prefix = "AMX2"; + }; + }; + + nvidia-audio-card,dai-link@96 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1dd>; + + cpu { + sound-dai = <0x4a 0x37>; + }; + + codec { + sound-dai = <0x59 0x03>; + prefix = "AMX2"; + }; + }; + + nvidia-audio-card,dai-link@97 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1de>; + + cpu { + sound-dai = <0x59 0x04>; + }; + + codec { + sound-dai = <0x4a 0x33>; + }; + }; + + nvidia-audio-card,dai-link@98 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1df>; + + cpu { + sound-dai = <0x4a 0x4e>; + }; + + codec { + sound-dai = <0x5a 0x00>; + prefix = "AMX3"; + }; + }; + + nvidia-audio-card,dai-link@99 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1e0>; + + cpu { + sound-dai = <0x4a 0x4f>; + }; + + codec { + sound-dai = <0x5a 0x01>; + prefix = "AMX3"; + }; + }; + + nvidia-audio-card,dai-link@100 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1e1>; + + cpu { + sound-dai = <0x4a 0x50>; + }; + + codec { + sound-dai = <0x5a 0x02>; + prefix = "AMX3"; + }; + }; + + nvidia-audio-card,dai-link@101 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1e2>; + + cpu { + sound-dai = <0x4a 0x51>; + }; + + codec { + sound-dai = <0x5a 0x03>; + prefix = "AMX3"; + }; + }; + + nvidia-audio-card,dai-link@102 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1e3>; + + cpu { + sound-dai = <0x5a 0x04>; + }; + + codec { + sound-dai = <0x4a 0x4d>; + }; + }; + + nvidia-audio-card,dai-link@103 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1e4>; + + cpu { + sound-dai = <0x4a 0x53>; + }; + + codec { + sound-dai = <0x5b 0x00>; + prefix = "AMX4"; + }; + }; + + nvidia-audio-card,dai-link@104 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1e5>; + + cpu { + sound-dai = <0x4a 0x54>; + }; + + codec { + sound-dai = <0x5b 0x01>; + prefix = "AMX4"; + }; + }; + + nvidia-audio-card,dai-link@105 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1e6>; + + cpu { + sound-dai = <0x4a 0x55>; + }; + + codec { + sound-dai = <0x5b 0x02>; + prefix = "AMX4"; + }; + }; + + nvidia-audio-card,dai-link@106 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1e7>; + + cpu { + sound-dai = <0x4a 0x56>; + }; + + codec { + sound-dai = <0x5b 0x03>; + prefix = "AMX4"; + }; + }; + + nvidia-audio-card,dai-link@107 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1e8>; + + cpu { + sound-dai = <0x5b 0x04>; + }; + + codec { + sound-dai = <0x4a 0x52>; + }; + }; + + nvidia-audio-card,dai-link@108 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1e9>; + + cpu { + sound-dai = <0x4a 0x3c>; + }; + + codec { + sound-dai = <0x5c 0x04>; + prefix = "ADX1"; + }; + }; + + nvidia-audio-card,dai-link@109 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1ea>; + + cpu { + sound-dai = <0x5c 0x00>; + }; + + codec { + sound-dai = <0x4a 0x38>; + }; + }; + + nvidia-audio-card,dai-link@110 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1eb>; + + cpu { + sound-dai = <0x5c 0x01>; + }; + + codec { + sound-dai = <0x4a 0x39>; + }; + }; + + nvidia-audio-card,dai-link@111 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1ec>; + + cpu { + sound-dai = <0x5c 0x02>; + }; + + codec { + sound-dai = <0x4a 0x3a>; + }; + }; + + nvidia-audio-card,dai-link@112 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1ed>; + + cpu { + sound-dai = <0x5c 0x03>; + }; + + codec { + sound-dai = <0x4a 0x3b>; + }; + }; + + nvidia-audio-card,dai-link@113 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1ee>; + + cpu { + sound-dai = <0x4a 0x41>; + }; + + codec { + sound-dai = <0x5d 0x04>; + prefix = "ADX2"; + }; + }; + + nvidia-audio-card,dai-link@114 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1ef>; + + cpu { + sound-dai = <0x5d 0x00>; + }; + + codec { + sound-dai = <0x4a 0x3d>; + }; + }; + + nvidia-audio-card,dai-link@115 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1f0>; + + cpu { + sound-dai = <0x5d 0x01>; + }; + + codec { + sound-dai = <0x4a 0x3e>; + }; + }; + + nvidia-audio-card,dai-link@116 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1f1>; + + cpu { + sound-dai = <0x5d 0x02>; + }; + + codec { + sound-dai = <0x4a 0x3f>; + }; + }; + + nvidia-audio-card,dai-link@117 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1f2>; + + cpu { + sound-dai = <0x5d 0x03>; + }; + + codec { + sound-dai = <0x4a 0x40>; + }; + }; + + nvidia-audio-card,dai-link@118 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1f3>; + + cpu { + sound-dai = <0x4a 0x5b>; + }; + + codec { + sound-dai = <0x5e 0x04>; + prefix = "ADX3"; + }; + }; + + nvidia-audio-card,dai-link@119 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1f4>; + + cpu { + sound-dai = <0x5e 0x00>; + }; + + codec { + sound-dai = <0x4a 0x57>; + }; + }; + + nvidia-audio-card,dai-link@120 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1f5>; + + cpu { + sound-dai = <0x5e 0x01>; + }; + + codec { + sound-dai = <0x4a 0x58>; + }; + }; + + nvidia-audio-card,dai-link@121 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1f6>; + + cpu { + sound-dai = <0x5e 0x02>; + }; + + codec { + sound-dai = <0x4a 0x59>; + }; + }; + + nvidia-audio-card,dai-link@122 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1f7>; + + cpu { + sound-dai = <0x5e 0x03>; + }; + + codec { + sound-dai = <0x4a 0x5a>; + }; + }; + + nvidia-audio-card,dai-link@123 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1f8>; + + cpu { + sound-dai = <0x4a 0x60>; + }; + + codec { + sound-dai = <0x5f 0x04>; + prefix = "ADX4"; + }; + }; + + nvidia-audio-card,dai-link@124 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1f9>; + + cpu { + sound-dai = <0x5f 0x00>; + }; + + codec { + sound-dai = <0x4a 0x5c>; + }; + }; + + nvidia-audio-card,dai-link@125 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1fa>; + + cpu { + sound-dai = <0x5f 0x01>; + }; + + codec { + sound-dai = <0x4a 0x5d>; + }; + }; + + nvidia-audio-card,dai-link@126 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1fb>; + + cpu { + sound-dai = <0x5f 0x02>; + }; + + codec { + sound-dai = <0x4a 0x5e>; + }; + }; + + nvidia-audio-card,dai-link@127 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1fc>; + + cpu { + sound-dai = <0x5f 0x03>; + }; + + codec { + sound-dai = <0x4a 0x5f>; + }; + }; + + nvidia-audio-card,dai-link@128 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1fd>; + + cpu { + sound-dai = <0x4a 0x13>; + }; + + codec { + sound-dai = <0x60 0x00>; + }; + }; + + nvidia-audio-card,dai-link@129 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1fe>; + + cpu { + sound-dai = <0x4a 0x14>; + }; + + codec { + sound-dai = <0x60 0x01>; + }; + }; + + nvidia-audio-card,dai-link@130 { + status = "okay"; + link-type = <0x02>; + phandle = <0x1ff>; + + cpu { + sound-dai = <0x4a 0x15>; + }; + + codec { + sound-dai = <0x60 0x02>; + }; + }; + + nvidia-audio-card,dai-link@131 { + status = "okay"; + link-type = <0x02>; + phandle = <0x200>; + + cpu { + sound-dai = <0x4a 0x16>; + }; + + codec { + sound-dai = <0x60 0x03>; + }; + }; + + nvidia-audio-card,dai-link@132 { + status = "okay"; + link-type = <0x02>; + phandle = <0x201>; + + cpu { + sound-dai = <0x4a 0x17>; + }; + + codec { + sound-dai = <0x60 0x04>; + }; + }; + + nvidia-audio-card,dai-link@133 { + status = "okay"; + link-type = <0x02>; + phandle = <0x202>; + + cpu { + sound-dai = <0x4a 0x18>; + }; + + codec { + sound-dai = <0x60 0x05>; + }; + }; + + nvidia-audio-card,dai-link@134 { + status = "okay"; + link-type = <0x02>; + phandle = <0x203>; + + cpu { + sound-dai = <0x4a 0x19>; + }; + + codec { + sound-dai = <0x60 0x06>; + }; + }; + + nvidia-audio-card,dai-link@135 { + status = "okay"; + link-type = <0x02>; + phandle = <0x204>; + + cpu { + sound-dai = <0x4a 0x1a>; + }; + + codec { + sound-dai = <0x60 0x07>; + }; + }; + + nvidia-audio-card,dai-link@136 { + status = "okay"; + link-type = <0x02>; + phandle = <0x205>; + + cpu { + sound-dai = <0x4a 0x1b>; + }; + + codec { + sound-dai = <0x60 0x08>; + }; + }; + + nvidia-audio-card,dai-link@137 { + status = "okay"; + link-type = <0x02>; + phandle = <0x206>; + + cpu { + sound-dai = <0x4a 0x1c>; + }; + + codec { + sound-dai = <0x60 0x09>; + }; + }; + + nvidia-audio-card,dai-link@138 { + status = "okay"; + link-type = <0x02>; + phandle = <0x207>; + + cpu { + sound-dai = <0x60 0x0a>; + }; + + codec { + sound-dai = <0x4a 0x13>; + }; + }; + + nvidia-audio-card,dai-link@139 { + status = "okay"; + link-type = <0x02>; + phandle = <0x208>; + + cpu { + sound-dai = <0x60 0x0b>; + }; + + codec { + sound-dai = <0x4a 0x14>; + }; + }; + + nvidia-audio-card,dai-link@140 { + status = "okay"; + link-type = <0x02>; + phandle = <0x209>; + + cpu { + sound-dai = <0x60 0x0c>; + }; + + codec { + sound-dai = <0x4a 0x15>; + }; + }; + + nvidia-audio-card,dai-link@141 { + status = "okay"; + link-type = <0x02>; + phandle = <0x20a>; + + cpu { + sound-dai = <0x60 0x0d>; + }; + + codec { + sound-dai = <0x4a 0x16>; + }; + }; + + nvidia-audio-card,dai-link@142 { + status = "okay"; + link-type = <0x02>; + phandle = <0x20b>; + + cpu { + sound-dai = <0x60 0x0e>; + }; + + codec { + sound-dai = <0x4a 0x17>; + }; + }; + + nvidia-audio-card,dai-link@143 { + status = "okay"; + link-type = <0x02>; + phandle = <0x20c>; + + cpu { + sound-dai = <0x4a 0x0f>; + }; + + codec { + sound-dai = <0x61 0x00>; + prefix = "SFC1"; + }; + }; + + nvidia-audio-card,dai-link@144 { + status = "okay"; + link-type = <0x02>; + phandle = <0x20d>; + + cpu { + sound-dai = <0x4a 0x10>; + }; + + codec { + sound-dai = <0x62 0x00>; + prefix = "SFC2"; + }; + }; + + nvidia-audio-card,dai-link@145 { + status = "okay"; + link-type = <0x02>; + phandle = <0x20e>; + + cpu { + sound-dai = <0x4a 0x11>; + }; + + codec { + sound-dai = <0x63 0x00>; + prefix = "SFC3"; + }; + }; + + nvidia-audio-card,dai-link@146 { + status = "okay"; + link-type = <0x02>; + phandle = <0x20f>; + + cpu { + sound-dai = <0x4a 0x12>; + }; + + codec { + sound-dai = <0x64 0x00>; + prefix = "SFC4"; + }; + }; + + nvidia-audio-card,dai-link@147 { + status = "okay"; + link-type = <0x02>; + phandle = <0x210>; + + cpu { + sound-dai = <0x61 0x01>; + }; + + codec { + sound-dai = <0x4a 0x0f>; + }; + }; + + nvidia-audio-card,dai-link@148 { + status = "okay"; + link-type = <0x02>; + phandle = <0x211>; + + cpu { + sound-dai = <0x62 0x01>; + }; + + codec { + sound-dai = <0x4a 0x10>; + }; + }; + + nvidia-audio-card,dai-link@149 { + status = "okay"; + link-type = <0x02>; + phandle = <0x212>; + + cpu { + sound-dai = <0x63 0x01>; + }; + + codec { + sound-dai = <0x4a 0x11>; + }; + }; + + nvidia-audio-card,dai-link@150 { + status = "okay"; + link-type = <0x02>; + phandle = <0x213>; + + cpu { + sound-dai = <0x64 0x01>; + }; + + codec { + sound-dai = <0x4a 0x12>; + }; + }; + + nvidia-audio-card,dai-link@151 { + status = "okay"; + link-type = <0x02>; + phandle = <0x214>; + + cpu { + sound-dai = <0x4a 0x1d>; + }; + + codec { + sound-dai = <0x65 0x00>; + prefix = "AFC1"; + }; + }; + + nvidia-audio-card,dai-link@152 { + status = "okay"; + link-type = <0x02>; + phandle = <0x215>; + + cpu { + sound-dai = <0x4a 0x1e>; + }; + + codec { + sound-dai = <0x66 0x00>; + prefix = "AFC2"; + }; + }; + + nvidia-audio-card,dai-link@153 { + status = "okay"; + link-type = <0x02>; + phandle = <0x216>; + + cpu { + sound-dai = <0x4a 0x1f>; + }; + + codec { + sound-dai = <0x67 0x00>; + prefix = "AFC3"; + }; + }; + + nvidia-audio-card,dai-link@154 { + status = "okay"; + link-type = <0x02>; + phandle = <0x217>; + + cpu { + sound-dai = <0x4a 0x20>; + }; + + codec { + sound-dai = <0x68 0x00>; + prefix = "AFC4"; + }; + }; + + nvidia-audio-card,dai-link@155 { + status = "okay"; + link-type = <0x02>; + phandle = <0x218>; + + cpu { + sound-dai = <0x4a 0x21>; + }; + + codec { + sound-dai = <0x69 0x00>; + prefix = "AFC5"; + }; + }; + + nvidia-audio-card,dai-link@156 { + status = "okay"; + link-type = <0x02>; + phandle = <0x219>; + + cpu { + sound-dai = <0x4a 0x22>; + }; + + codec { + sound-dai = <0x6a 0x00>; + prefix = "AFC6"; + }; + }; + + nvidia-audio-card,dai-link@157 { + status = "okay"; + link-type = <0x02>; + phandle = <0x21a>; + + cpu { + sound-dai = <0x65 0x01>; + }; + + codec { + sound-dai = <0x4a 0x1d>; + }; + }; + + nvidia-audio-card,dai-link@158 { + status = "okay"; + link-type = <0x02>; + phandle = <0x21b>; + + cpu { + sound-dai = <0x66 0x01>; + }; + + codec { + sound-dai = <0x4a 0x1e>; + }; + }; + + nvidia-audio-card,dai-link@159 { + status = "okay"; + link-type = <0x02>; + phandle = <0x21c>; + + cpu { + sound-dai = <0x67 0x01>; + }; + + codec { + sound-dai = <0x4a 0x1f>; + }; + }; + + nvidia-audio-card,dai-link@160 { + status = "okay"; + link-type = <0x02>; + phandle = <0x21d>; + + cpu { + sound-dai = <0x68 0x01>; + }; + + codec { + sound-dai = <0x4a 0x20>; + }; + }; + + nvidia-audio-card,dai-link@161 { + status = "okay"; + link-type = <0x02>; + phandle = <0x21e>; + + cpu { + sound-dai = <0x69 0x01>; + }; + + codec { + sound-dai = <0x4a 0x21>; + }; + }; + + nvidia-audio-card,dai-link@162 { + status = "okay"; + link-type = <0x02>; + phandle = <0x21f>; + + cpu { + sound-dai = <0x6a 0x01>; + }; + + codec { + sound-dai = <0x4a 0x22>; + }; + }; + + nvidia-audio-card,dai-link@163 { + status = "okay"; + link-type = <0x02>; + phandle = <0x220>; + + cpu { + sound-dai = <0x4a 0x25>; + }; + + codec { + sound-dai = <0x6b 0x00>; + prefix = "MVC1"; + }; + }; + + nvidia-audio-card,dai-link@164 { + status = "okay"; + link-type = <0x02>; + phandle = <0x221>; + + cpu { + sound-dai = <0x4a 0x26>; + }; + + codec { + sound-dai = <0x6c 0x00>; + prefix = "MVC2"; + }; + }; + + nvidia-audio-card,dai-link@165 { + status = "okay"; + link-type = <0x02>; + phandle = <0x222>; + + cpu { + sound-dai = <0x6b 0x01>; + }; + + codec { + sound-dai = <0x4a 0x25>; + }; + }; + + nvidia-audio-card,dai-link@166 { + status = "okay"; + link-type = <0x02>; + phandle = <0x223>; + + cpu { + sound-dai = <0x6c 0x01>; + }; + + codec { + sound-dai = <0x4a 0x26>; + }; + }; + + nvidia-audio-card,dai-link@167 { + status = "okay"; + link-type = <0x02>; + phandle = <0x224>; + + cpu { + sound-dai = <0x4a 0x23>; + }; + + codec { + sound-dai = <0x6d 0x00>; + prefix = "OPE1"; + }; + }; + + nvidia-audio-card,dai-link@168 { + status = "okay"; + link-type = <0x02>; + phandle = <0x225>; + + cpu { + sound-dai = <0x6d 0x01>; + }; + + codec { + sound-dai = <0x4a 0x23>; + }; + }; + + nvidia-audio-card,dai-link@169 { + status = "okay"; + link-type = <0x02>; + phandle = <0x226>; + + cpu { + sound-dai = <0x4a 0x62>; + }; + + codec { + sound-dai = <0x6e 0x00>; + prefix = "ASRC1"; + }; + }; + + nvidia-audio-card,dai-link@170 { + status = "okay"; + link-type = <0x02>; + phandle = <0x227>; + + cpu { + sound-dai = <0x4a 0x63>; + }; + + codec { + sound-dai = <0x6e 0x01>; + prefix = "ASRC1"; + }; + }; + + nvidia-audio-card,dai-link@171 { + status = "okay"; + link-type = <0x02>; + phandle = <0x228>; + + cpu { + sound-dai = <0x4a 0x64>; + }; + + codec { + sound-dai = <0x6e 0x02>; + prefix = "ASRC1"; + }; + }; + + nvidia-audio-card,dai-link@172 { + status = "okay"; + link-type = <0x02>; + phandle = <0x229>; + + cpu { + sound-dai = <0x4a 0x65>; + }; + + codec { + sound-dai = <0x6e 0x03>; + prefix = "ASRC1"; + }; + }; + + nvidia-audio-card,dai-link@173 { + status = "okay"; + link-type = <0x02>; + phandle = <0x22a>; + + cpu { + sound-dai = <0x4a 0x66>; + }; + + codec { + sound-dai = <0x6e 0x04>; + prefix = "ASRC1"; + }; + }; + + nvidia-audio-card,dai-link@174 { + status = "okay"; + link-type = <0x02>; + phandle = <0x22b>; + + cpu { + sound-dai = <0x4a 0x67>; + }; + + codec { + sound-dai = <0x6e 0x05>; + prefix = "ASRC1"; + }; + }; + + nvidia-audio-card,dai-link@175 { + status = "okay"; + link-type = <0x02>; + phandle = <0x22c>; + + cpu { + sound-dai = <0x4a 0x68>; + }; + + codec { + sound-dai = <0x6e 0x06>; + prefix = "ASRC1"; + }; + }; + + nvidia-audio-card,dai-link@176 { + status = "okay"; + link-type = <0x02>; + phandle = <0x22d>; + + cpu { + sound-dai = <0x6e 0x07>; + }; + + codec { + sound-dai = <0x4a 0x62>; + }; + }; + + nvidia-audio-card,dai-link@177 { + status = "okay"; + link-type = <0x02>; + phandle = <0x22e>; + + cpu { + sound-dai = <0x6e 0x08>; + }; + + codec { + sound-dai = <0x4a 0x63>; + }; + }; + + nvidia-audio-card,dai-link@178 { + status = "okay"; + link-type = <0x02>; + phandle = <0x22f>; + + cpu { + sound-dai = <0x6e 0x09>; + }; + + codec { + sound-dai = <0x4a 0x64>; + }; + }; + + nvidia-audio-card,dai-link@179 { + status = "okay"; + link-type = <0x02>; + phandle = <0x230>; + + cpu { + sound-dai = <0x6e 0x0a>; + }; + + codec { + sound-dai = <0x4a 0x65>; + }; + }; + + nvidia-audio-card,dai-link@180 { + status = "okay"; + link-type = <0x02>; + phandle = <0x231>; + + cpu { + sound-dai = <0x6e 0x0b>; + }; + + codec { + sound-dai = <0x4a 0x66>; + }; + }; + + nvidia-audio-card,dai-link@181 { + status = "okay"; + link-type = <0x02>; + phandle = <0x232>; + + cpu { + sound-dai = <0x6e 0x0c>; + }; + + codec { + sound-dai = <0x4a 0x67>; + }; + }; + + nvidia-audio-card,dai-link@182 { + status = "okay"; + link-type = <0x02>; + phandle = <0x233>; + + cpu { + sound-dai = <0x6f 0x00>; + }; + + codec { + sound-dai = <0x4a 0x69>; + }; + }; + }; + + sound_ref { + iommus = <0x02 0x02>; + iommu-resv-regions = <0x00 0x00 0x00 0x40000000 0x00 0x60000000 0xffffffff 0xffffffff>; + status = "disabled"; + }; + + aconnect@2a41000 { + compatible = "nvidia,tegra210-aconnect"; + clocks = <0x04 0x06 0x04 0x05>; + power-domains = <0x04 0x02>; + clock-names = "ape\0apb2ape"; + #address-cells = <0x02>; + #size-cells = <0x02>; + ranges; + status = "okay"; + + agic-controller@2a41000 { + compatible = "nvidia,tegra186-agic"; + #interrupt-cells = <0x04>; + interrupt-controller; + reg = <0x00 0x2a41000 0x00 0x1000 0x00 0x2a42000 0x00 0x1000>; + interrupts = <0x00 0x91 0xf04>; + clocks = <0x04 0x06>; + clock-names = "clk"; + status = "okay"; + phandle = <0x70>; + }; + + agic-controller@2a51000 { + compatible = "nvidia,tegra186-agic"; + interrupt-controller; + #interrupt-cells = <0x04>; + reg = <0x00 0x2a51000 0x00 0x1000 0x00 0x2a52000 0x00 0x1000>; + interrupts = <0x00 0x92 0xf04>; + clocks = <0x04 0x06>; + clock-names = "clk"; + status = "disabled"; + phandle = <0x234>; + }; + + agic-controller@2a61000 { + compatible = "nvidia,tegra186-agic"; + interrupt-controller; + #interrupt-cells = <0x04>; + reg = <0x00 0x2a61000 0x00 0x1000 0x00 0x2a62000 0x00 0x1000>; + interrupts = <0x00 0x93 0xf04>; + clocks = <0x04 0x06>; + clock-names = "clk"; + status = "disabled"; + phandle = <0x235>; + }; + + adsp@2993000 { + compatible = "nvidia,tegra18x-adsp"; + interrupt-parent = <0x70>; + nvidia,adsp_os_secload; + reg = <0x00 0x2993000 0x00 0x1000 0x00 0x2990000 0x00 0x2000 0x00 0x00 0x00 0x01 0x00 0x290c800 0x00 0x01 0x00 0x29b0000 0x00 0x90000 0x00 0x40000000 0x00 0xc0000000 0x00 0x00 0x00 0x01>; + nvidia,adsp_mem = <0x5ef00000 0x1000000 0x5f700000 0x800000 0x3f813000 0x5000 0x5fd00000 0x200000>; + nvidia,adsp-evp-base = <0x2993700 0x40>; + interrupts = <0x00 0x29 0x04 0x00 0x00 0x20 0x04 0x00 0x00 0x53 0x04 0x00 0x00 0x3e 0x04 0x00 0x00 0x39 0x04 0x00 0x00 0x41 0x04 0x00 0x00 0x28 0x04 0x04 0x00 0x21 0x04 0x04 0x00 0x22 0x04 0x04 0x00 0x4e 0x04 0x04 0x00 0x4f 0x04 0x04 0x00 0x50 0x04 0x04 0x00 0x4b 0x04 0x04>; + clocks = <0x04 0x06 0x04 0x05 0x04 0x03 0x04 0x02 0x04 0x15>; + clock-names = "adsp.ape\0adsp.apb2ape\0adspneon\0adsp\0aclk"; + resets = <0x04 0x02>; + reset-names = "adspall"; + iommus = <0x02 0x02>; + iommu-resv-regions = <0x00 0x00 0x00 0x40000000 0x00 0x60000000 0xffffffff 0xffffffff>; + status = "okay"; + }; + + adma@2930000 { + compatible = "nvidia,tegra194-adma\0nvidia,tegra186-adma"; + interrupt-parent = <0x70>; + reg = <0x00 0x2930000 0x00 0x50000 0x00 0x29f0000 0x00 0x10>; + clocks = <0x04 0x04>; + clock-names = "d_audio"; + interrupts = <0x00 0x00 0x04 0x00 0x00 0x01 0x04 0x00 0x00 0x02 0x04 0x00 0x00 0x03 0x04 0x00 0x00 0x04 0x04 0x00 0x00 0x05 0x04 0x00 0x00 0x06 0x04 0x00 0x00 0x07 0x04 0x00 0x00 0x08 0x04 0x00 0x00 0x09 0x04 0x00 0x00 0x0a 0x04 0x00 0x00 0x0b 0x04 0x00 0x00 0x0c 0x04 0x00 0x00 0x0d 0x04 0x00 0x00 0x0e 0x04 0x00 0x00 0x0f 0x04 0x00 0x00 0x10 0x04 0x00 0x00 0x11 0x04 0x00 0x00 0x12 0x04 0x00 0x00 0x13 0x04 0x00 0x00 0x14 0x04 0x00 0x00 0x15 0x04 0x00 0x00 0x16 0x04 0x00 0x00 0x17 0x04 0x00 0x00 0x18 0x04 0x00 0x00 0x19 0x04 0x00 0x00 0x1a 0x04 0x00 0x00 0x1b 0x04 0x00 0x00 0x1c 0x04 0x00 0x00 0x1d 0x04 0x00 0x00 0x1e 0x04 0x00 0x00 0x1f 0x04 0x00>; + #dma-cells = <0x01>; + status = "okay"; + phandle = <0x71>; + }; + + ahub { + compatible = "nvidia,tegra234-ahub"; + wakeup-disable; + reg = <0x00 0x2900800 0x00 0x800>; + clocks = <0x04 0x04 0x04 0x68 0x04 0x05 0x04 0x06>; + clock-names = "ahub\0parent\0apb2ape\0xbar.ape"; + assigned-clocks = <0x04 0x5d 0x04 0x68 0x04 0x04>; + assigned-parent-clocks = <0x00 0x04 0x5d 0x04 0x66>; + assigned-clock-rates = <0x11940000 0x2ee0000 0x4dd1e00>; + status = "okay"; + #address-cells = <0x02>; + #size-cells = <0x02>; + ranges; + #sound-dai-cells = <0x01>; + phandle = <0x4a>; + + admaif@290f000 { + compatible = "nvidia,tegra186-admaif"; + reg = <0x00 0x290f000 0x00 0x1000>; + dmas = <0x71 0x01 0x71 0x01 0x71 0x02 0x71 0x02 0x71 0x03 0x71 0x03 0x71 0x04 0x71 0x04 0x71 0x05 0x71 0x05 0x71 0x06 0x71 0x06 0x71 0x07 0x71 0x07 0x71 0x08 0x71 0x08 0x71 0x09 0x71 0x09 0x71 0x0a 0x71 0x0a 0x71 0x0b 0x71 0x0b 0x71 0x0c 0x71 0x0c 0x71 0x0d 0x71 0x0d 0x71 0x0e 0x71 0x0e 0x71 0x0f 0x71 0x0f 0x71 0x10 0x71 0x10 0x71 0x11 0x71 0x11 0x71 0x12 0x71 0x12 0x71 0x13 0x71 0x13 0x71 0x14 0x71 0x14>; + dma-names = "rx1\0tx1\0rx2\0tx2\0rx3\0tx3\0rx4\0tx4\0rx5\0tx5\0rx6\0tx6\0rx7\0tx7\0rx8\0tx8\0rx9\0tx9\0rx10\0tx10\0rx11\0tx11\0rx12\0tx12\0rx13\0tx13\0rx14\0tx14\0rx15\0tx15\0rx16\0tx16\0rx17\0tx17\0rx18\0tx18\0rx19\0tx19\0rx20\0tx20"; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x49>; + }; + + sfc@2902000 { + compatible = "nvidia,tegra210-sfc"; + reg = <0x00 0x2902000 0x00 0x200>; + nvidia,ahub-sfc-id = <0x00>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x61>; + }; + + sfc@2902200 { + compatible = "nvidia,tegra210-sfc"; + reg = <0x00 0x2902200 0x00 0x200>; + nvidia,ahub-sfc-id = <0x01>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x62>; + }; + + sfc@2902400 { + compatible = "nvidia,tegra210-sfc"; + reg = <0x00 0x2902400 0x00 0x200>; + nvidia,ahub-sfc-id = <0x02>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x63>; + }; + + sfc@2902600 { + compatible = "nvidia,tegra210-sfc"; + reg = <0x00 0x2902600 0x00 0x200>; + nvidia,ahub-sfc-id = <0x03>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x64>; + }; + + spkprot@2908c00 { + compatible = "nvidia,tegra210-spkprot"; + reg = <0x00 0x2908c00 0x00 0x400>; + nvidia,ahub-spkprot-id = <0x00>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x236>; + }; + + amixer@290bb00 { + compatible = "nvidia,tegra210-amixer"; + reg = <0x00 0x290bb00 0x00 0x800>; + nvidia,ahub-amixer-id = <0x00>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x60>; + }; + + i2s@2901000 { + compatible = "nvidia,tegra210-i2s"; + reg = <0x00 0x2901000 0x00 0x100>; + nvidia,ahub-i2s-id = <0x00>; + clocks = <0x04 0x38 0x04 0x68 0x04 0x39 0x04 0x91 0x04 0x39>; + clock-names = "i2s\0i2s_clk_parent\0ext_audio_sync\0audio_sync\0clk_sync_input"; + assigned-clocks = <0x04 0x38>; + assigned-clock-parents = <0x04 0x68>; + assigned-clock-rates = <0x177000>; + fsync-width = <0x1f>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x4c>; + }; + + i2s@2901100 { + compatible = "nvidia,tegra210-i2s"; + reg = <0x00 0x2901100 0x00 0x100>; + nvidia,ahub-i2s-id = <0x01>; + clocks = <0x04 0x3a 0x04 0x68 0x04 0x3b 0x04 0x92 0x04 0x3b>; + clock-names = "i2s\0i2s_clk_parent\0ext_audio_sync\0audio_sync\0clk_sync_input"; + assigned-clocks = <0x04 0x3a>; + assigned-clock-parents = <0x04 0x68>; + assigned-clock-rates = <0x177000>; + fsync-width = <0x1f>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x4d>; + }; + + i2s@2901200 { + compatible = "nvidia,tegra210-i2s"; + reg = <0x00 0x2901200 0x00 0x100>; + nvidia,ahub-i2s-id = <0x02>; + clocks = <0x04 0x3c 0x04 0x68 0x04 0x3d 0x04 0x93 0x04 0x3d>; + clock-names = "i2s\0i2s_clk_parent\0ext_audio_sync\0audio_sync\0clk_sync_input"; + assigned-clocks = <0x04 0x3c>; + assigned-clock-parents = <0x04 0x68>; + assigned-clock-rates = <0x177000>; + fsync-width = <0x1f>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x4e>; + }; + + i2s@2901300 { + compatible = "nvidia,tegra210-i2s"; + reg = <0x00 0x2901300 0x00 0x100>; + nvidia,ahub-i2s-id = <0x03>; + clocks = <0x04 0x3e 0x04 0x68 0x04 0x3f 0x04 0x94 0x04 0x3f>; + clock-names = "i2s\0i2s_clk_parent\0ext_audio_sync\0audio_sync\0clk_sync_input"; + assigned-clocks = <0x04 0x3e>; + assigned-clock-parents = <0x04 0x68>; + assigned-clock-rates = <0x177000>; + fsync-width = <0x1f>; + #sound-dai-cells = <0x01>; + status = "okay"; + bclk-ratio = <0x04>; + phandle = <0x4f>; + }; + + i2s@2901400 { + compatible = "nvidia,tegra210-i2s"; + reg = <0x00 0x2901400 0x00 0x100>; + nvidia,ahub-i2s-id = <0x04>; + clocks = <0x04 0x40 0x04 0x68 0x04 0x41 0x04 0x95 0x04 0x41>; + clock-names = "i2s\0i2s_clk_parent\0ext_audio_sync\0audio_sync\0clk_sync_input"; + assigned-clocks = <0x04 0x40>; + assigned-clock-parents = <0x04 0x68>; + assigned-clock-rates = <0x177000>; + fsync-width = <0x1f>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x50>; + }; + + i2s@2901500 { + compatible = "nvidia,tegra210-i2s"; + reg = <0x00 0x2901500 0x00 0x100>; + nvidia,ahub-i2s-id = <0x05>; + clocks = <0x04 0x42 0x04 0x68 0x04 0x43 0x04 0x96 0x04 0x43>; + clock-names = "i2s\0i2s_clk_parent\0ext_audio_sync\0audio_sync\0clk_sync_input"; + assigned-clocks = <0x04 0x42>; + assigned-clock-parents = <0x04 0x68>; + assigned-clock-rates = <0x177000>; + fsync-width = <0x1f>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x51>; + }; + + amx@2903000 { + compatible = "nvidia,tegra194-amx"; + reg = <0x00 0x2903000 0x00 0x100>; + nvidia,ahub-amx-id = <0x00>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x58>; + }; + + amx@2903100 { + compatible = "nvidia,tegra194-amx"; + reg = <0x00 0x2903100 0x00 0x100>; + nvidia,ahub-amx-id = <0x01>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x59>; + }; + + amx@2903200 { + compatible = "nvidia,tegra194-amx"; + reg = <0x00 0x2903200 0x00 0x100>; + nvidia,ahub-amx-id = <0x02>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x5a>; + }; + + amx@2903300 { + compatible = "nvidia,tegra194-amx"; + reg = <0x00 0x2903300 0x00 0x100>; + nvidia,ahub-amx-id = <0x03>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x5b>; + }; + + adx@2903800 { + compatible = "nvidia,tegra210-adx"; + reg = <0x00 0x2903800 0x00 0x100>; + nvidia,ahub-adx-id = <0x00>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x5c>; + }; + + adx@2903900 { + compatible = "nvidia,tegra210-adx"; + reg = <0x00 0x2903900 0x00 0x100>; + nvidia,ahub-adx-id = <0x01>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x5d>; + }; + + adx@2903a00 { + compatible = "nvidia,tegra210-adx"; + reg = <0x00 0x2903a00 0x00 0x100>; + nvidia,ahub-adx-id = <0x02>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x5e>; + }; + + adx@2903b00 { + compatible = "nvidia,tegra210-adx"; + reg = <0x00 0x2903b00 0x00 0x100>; + nvidia,ahub-adx-id = <0x03>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x5f>; + }; + + dmic@2904000 { + compatible = "nvidia,tegra210-dmic"; + reg = <0x00 0x2904000 0x00 0x100>; + nvidia,ahub-dmic-id = <0x00>; + clocks = <0x04 0x0f 0x04 0x68>; + clock-names = "dmic\0parent"; + assigned-clocks = <0x04 0x0f>; + assigned-clock-parents = <0x04 0x68>; + assigned-clock-rates = <0x2ee000>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x52>; + }; + + dmic@2904100 { + compatible = "nvidia,tegra210-dmic"; + reg = <0x00 0x2904100 0x00 0x100>; + nvidia,ahub-dmic-id = <0x01>; + clocks = <0x04 0x10 0x04 0x68>; + clock-names = "dmic\0parent"; + assigned-clocks = <0x04 0x10>; + assigned-clock-parents = <0x04 0x68>; + assigned-clock-rates = <0x2ee000>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x53>; + }; + + dmic@2904200 { + compatible = "nvidia,tegra210-dmic"; + reg = <0x00 0x2904200 0x00 0x100 0x00 0xc303000 0x00 0x1f0>; + nvidia,ahub-dmic-id = <0x02>; + clocks = <0x04 0x11 0x04 0x68>; + clock-names = "dmic\0parent"; + assigned-clocks = <0x04 0x11>; + assigned-clock-parents = <0x04 0x68>; + assigned-clock-rates = <0x2ee000>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x54>; + }; + + dmic@2904300 { + compatible = "nvidia,tegra210-dmic"; + reg = <0x00 0x2904300 0x00 0x100>; + nvidia,ahub-dmic-id = <0x03>; + clocks = <0x04 0x12 0x04 0x68>; + clock-names = "dmic\0parent"; + assigned-clocks = <0x04 0x12>; + assigned-clock-parents = <0x04 0x68>; + assigned-clock-rates = <0x2ee000>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x55>; + }; + + afc@2907000 { + compatible = "nvidia,tegra186-afc"; + reg = <0x00 0x2907000 0x00 0x100>; + nvidia,ahub-afc-id = <0x00>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x65>; + }; + + afc@2907100 { + compatible = "nvidia,tegra186-afc"; + reg = <0x00 0x2907100 0x00 0x100>; + nvidia,ahub-afc-id = <0x01>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x66>; + }; + + afc@2907200 { + compatible = "nvidia,tegra186-afc"; + reg = <0x00 0x2907200 0x00 0x100>; + nvidia,ahub-afc-id = <0x02>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x67>; + }; + + afc@2907300 { + compatible = "nvidia,tegra186-afc"; + reg = <0x00 0x2907300 0x00 0x100>; + nvidia,ahub-afc-id = <0x03>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x68>; + }; + + afc@2907400 { + compatible = "nvidia,tegra186-afc"; + reg = <0x00 0x2907400 0x00 0x100>; + nvidia,ahub-afc-id = <0x04>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x69>; + }; + + afc@2907500 { + compatible = "nvidia,tegra186-afc"; + reg = <0x00 0x2907500 0x00 0x100>; + nvidia,ahub-afc-id = <0x05>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x6a>; + }; + + mvc@290a000 { + compatible = "nvidia,tegra210-mvc"; + reg = <0x00 0x290a000 0x00 0x200>; + nvidia,ahub-mvc-id = <0x00>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x6b>; + }; + + mvc@290a200 { + compatible = "nvidia,tegra210-mvc"; + reg = <0x00 0x290a200 0x00 0x200>; + nvidia,ahub-mvc-id = <0x01>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x6c>; + }; + + iqc@290e000 { + compatible = "nvidia,tegra210-iqc"; + reg = <0x00 0x290e000 0x00 0x200>; + nvidia,ahub-iqc-id = <0x00>; + clocks = <0x04 0x5b>; + clock-names = "iqc"; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x237>; + }; + + asrc@2910000 { + compatible = "nvidia,tegra194-asrc"; + reg = <0x00 0x2910000 0x00 0x2000>; + nvidia,ahub-asrc-id = <0x00>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x6e>; + }; + + arad@290e400 { + compatible = "nvidia,tegra186-arad"; + reg = <0x00 0x290e400 0x00 0x400>; + nvidia,ahub-arad-id = <0x00>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x6f>; + }; + + ahc@290b900 { + compatible = "nvidia,tegra186-ahc"; + reg = <0x00 0x290b900 0x00 0x200>; + interrupt-parent = <0x70>; + interrupts = <0x00 0x38 0x04 0x00>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x238>; + }; + + ope@2908000 { + compatible = "nvidia,tegra210-ope"; + reg = <0x00 0x2908000 0x00 0x100 0x00 0x2908100 0x00 0x100 0x00 0x2908200 0x00 0x200>; + nvidia,ahub-ope-id = <0x00>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x6d>; + + peq@2908100 { + status = "okay"; + }; + + mbdrc@2908200 { + status = "okay"; + }; + }; + + dspk@2905000 { + compatible = "nvidia,tegra186-dspk"; + reg = <0x00 0x2905000 0x00 0x100>; + nvidia,ahub-dspk-id = <0x00>; + clocks = <0x04 0x1d 0x04 0x68 0x04 0x8f>; + clock-names = "dspk\0pll_a_out0\0sync_dspk"; + assigned-clocks = <0x04 0x1d>; + assigned-clock-parents = <0x04 0x68>; + assigned-clock-rates = <0xbb8000>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x56>; + }; + + dspk@2905100 { + compatible = "nvidia,tegra186-dspk"; + reg = <0x00 0x2905100 0x00 0x100 0x00 0x2431000 0x00 0x1f0>; + nvidia,ahub-dspk-id = <0x01>; + clocks = <0x04 0x1e 0x04 0x68 0x04 0x90>; + clock-names = "dspk\0pll_a_out0\0sync_dspk"; + assigned-clocks = <0x04 0x1e>; + assigned-clock-parents = <0x04 0x68>; + assigned-clock-rates = <0xbb8000>; + #sound-dai-cells = <0x01>; + status = "okay"; + phandle = <0x57>; + }; + }; + + adsp_audio { + compatible = "nvidia,tegra186-adsp-audio"; + clocks = <0x04 0x04 0x04 0x06 0x04 0x05>; + clock-names = "ahub\0ape\0apb2ape"; + wakeup-disable; + nvidia,adma_ch_start = <0x10>; + nvidia,adma_ch_cnt = <0x10>; + iommus = <0x02 0x02>; + iommu-resv-regions = <0x00 0x00 0x00 0x40000000 0x00 0x60000000 0xffffffff 0xffffffff>; + interrupt-parent = <0x70>; + interrupts = <0x00 0x10 0x04 0x04 0x00 0x11 0x04 0x04 0x00 0x12 0x04 0x04 0x00 0x13 0x04 0x04 0x00 0x14 0x04 0x04 0x00 0x15 0x04 0x04 0x00 0x16 0x04 0x04 0x00 0x17 0x04 0x04 0x00 0x18 0x04 0x04 0x00 0x19 0x04 0x04 0x00 0x1a 0x04 0x04 0x00 0x1b 0x04 0x04 0x00 0x1c 0x04 0x04 0x00 0x1d 0x04 0x04 0x00 0x1e 0x04 0x04 0x00 0x1f 0x04 0x04>; + #sound-dai-cells = <0x01>; + status = "okay"; + compr-ops = <0x01>; + num-plugin = <0x06>; + phandle = <0x4b>; + + plugin-info-1 { + plugin-name = "mp3-dec1"; + firmware-name = "nvmp3dec.elf"; + widget-name = "MP3-DEC1"; + }; + + plugin-info-2 { + plugin-name = "spkprot"; + firmware-name = "nvspkprot.elf"; + widget-name = "SPKPROT-SW"; + }; + + plugin-info-3 { + plugin-name = "src"; + firmware-name = "nvsrc.elf"; + widget-name = "SRC"; + }; + + plugin-info-4 { + plugin-name = "aac-dec1"; + firmware-name = "nvaacdec.elf"; + widget-name = "AAC-DEC1"; + }; + + plugin-info-5 { + plugin-name = "aec"; + firmware-name = "nvoice.elf"; + widget-name = "AEC"; + }; + + plugin-info-6 { + plugin-name = "wire"; + firmware-name = "libnvwirefx.elf"; + widget-name = "WIRE"; + }; + }; + }; + + acsl_audio { + compatible = "nvidia,tegra23x-acsl-audio"; + iommus = <0x02 0x02>; + iommu-resv-regions = <0x00 0x00 0x00 0x40000000 0x00 0x60000000 0xffffffff 0xffffffff>; + status = "okay"; + phandle = <0x239>; + }; + + hda@3510000 { + compatible = "nvidia,tegra23x-hda"; + iommus = <0x02 0x03>; + reg = <0x00 0x3510000 0x00 0x10000>; + clocks = <0x04 0x1c9 0x04 0x1ca>; + clock-names = "hda\0hda2codec_2x"; + interconnects = <0x24 0x15 0x24 0x35>; + interconnect-names = "dma-mem\0dma-mem"; + power-domains = <0x04 0x03>; + interrupts = <0x00 0x3c 0x04>; + status = "okay"; + nvidia,model = "NVIDIA Jetson AGX Orin HDA"; + }; + + tegra_safety_audio { + compatible = "nvidia,tegra234-safety-audio"; + iommus = <0x02 0x04>; + reg = <0x00 0x2450000 0x00 0x124 0x00 0x2460000 0x00 0x124>; + dmas = <0x03 0x01 0x03 0x01 0x03 0x02 0x03 0x02>; + dma-names = "i2s7-rx\0i2s7-tx\0i2s8-rx\0i2s8-tx"; + dma-coherent; + status = "disabled"; + clocks = <0x04 0x68 0x04 0x1a4 0x04 0x68 0x04 0x1a2 0x04 0x1a3 0x04 0x1a2 0x04 0x1a8 0x04 0x68 0x04 0x1a6 0x04 0x1a7 0x04 0x1a6>; + clock-names = "pll_a_out0\0i2s7\0i2s7_clk_parent\0i2s7_ext_audio_sync\0i2s7_audio_sync\0i2s7_sync_input\0i2s8\0i2s8_clk_parent\0i2s8_ext_audio_sync\0i2s8_audio_sync\0i2s8_sync_input"; + resets = <0x04 0x4e 0x04 0x4f>; + reset-names = "i2s7_reset\0i2s8_reset"; + + i2s7 { + clocks = <0x04 0x1a4 0x04 0x68 0x04 0x1a2 0x04 0x1a3 0x04 0x1a2>; + resets = <0x04 0x4e>; + frame-slave; + bitclock-noninversion; + frame-inversion; + tx-mask = <0xff>; + rx-mask = <0xff>; + clk-trim = <0x00>; + format = "dsp_a"; + fsync-width = <0x1f>; + }; + + i2s8 { + clocks = <0x04 0x1a8 0x04 0x68 0x04 0x1a6 0x04 0x1a7 0x04 0x1a6>; + resets = <0x04 0x4f>; + frame-slave; + bitclock-noninversion; + frame-inversion; + tx-mask = <0xff>; + rx-mask = <0xff>; + clk-trim = <0x00>; + format = "dsp_a"; + fsync-width = <0x1f>; + }; + }; + + tegra_safety_ivc { + #address-cells = <0x01>; + #size-cells = <0x00>; + status = "disabled"; + phandle = <0x72>; + + cmdresp@0 { + compatible = "nvidia,tegra194-safety-cmd-resp"; + reg = <0x00 0x8000>; + reg-names = "rx\0tx"; + nvidia,frame-count = <0x10>; + nvidia,frame-size = <0x100>; + }; + + hb@0 { + compatible = "nvidia,tegra194-safety-hb"; + reg = <0x1400 0x9400>; + reg-names = "rx\0tx"; + nvidia,frame-count = <0x01>; + nvidia,frame-size = <0x40>; + }; + + mods@0 { + compatible = "nvidia,tegra194-sce-mods"; + reg = <0x1000 0x9000>; + reg-names = "rx\0tx"; + nvidia,frame-count = <0x10>; + nvidia,frame-size = <0x40>; + }; + }; + + sce@b000000 { + compatible = "nvidia,tegra194-safety-ivc"; + status = "disabled"; + reg = <0x00 0xb040000 0x00 0x10000 0x00 0xb050000 0x00 0x10000>; + reg-names = "ast-cpu\0ast-dma"; + iommus = <0x02 0x0b>; + nvidia,ivc-channels = <0x72 0x02 0x90000000 0x10000>; + phandle = <0x23a>; + + hsp { + compatible = "nvidia,tegra186-hsp-mailbox"; + nvidia,hsp-shared-mailbox = <0x73 0x01>; + nvidia,hsp-shared-mailbox-names = "ivc-pair"; + }; + }; + + rtcpu@bc00000 { + compatible = "nvidia,tegra194-rce"; + nvidia,cpu-name = "rce"; + reg = <0x00 0xbc00000 0x00 0x1000 0x00 0xb9f0000 0x00 0x40000 0x00 0xb840000 0x00 0x10000 0x00 0xb850000 0x00 0x10000>; + reg-names = "rce-evp\0rce-pm\0ast-cpu\0ast-dma"; + clocks = <0x04 0x71 0x04 0x72 0x04 0x1b1>; + clock-names = "rce-cpu-nic\0rce-nic\0rce-cpu"; + nvidia,clock-rates = <0x6ddd000 0x23dbb000 0x6ddd000 0x23dbb000 0x6ddd000 0x23dbb000>; + resets = <0x04 0x51>; + reset-names = "rce-all"; + interrupts = <0x00 0x13 0x04>; + interrupt-names = "wdt-remote"; + iommus = <0x02 0x0a>; + iommu-resv-regions = <0x00 0x00 0x00 0xa0000000 0x00 0xc0000000 0xffffffff 0xffffffff>; + dma-coherent; + nvidia,test-bw = <0x249f00>; + nvidia,trace = <0x74 0x04 0x70100000 0x100000>; + nvidia,ivc-channels = <0x75 0x02 0x90000000 0x10000>; + nvidia,autosuspend-delay-ms = <0x1388>; + status = "okay"; + phandle = <0x77>; + + hsp-vm1 { + compatible = "nvidia,tegra-camrtc-hsp-vm"; + mboxes = <0x76 0x01 0x80000000 0x76 0x01 0x01 0x76 0x02 0x00>; + mbox-names = "vm-tx\0vm-rx\0vm-ss"; + }; + + hsp-vm2 { + compatible = "nvidia,tegra-camrtc-hsp-vm"; + mboxes = <0x76 0x01 0x80000002 0x76 0x01 0x03 0x76 0x02 0x01>; + mbox-names = "vm-tx\0vm-rx\0vm-ss"; + status = "disabled"; + }; + + hsp-vm3 { + compatible = "nvidia,tegra-camrtc-hsp-vm"; + mboxes = <0x76 0x01 0x80000004 0x76 0x01 0x05 0x76 0x02 0x02>; + mbox-names = "vm-tx\0vm-rx\0vm-ss"; + status = "disabled"; + }; + + hsp-vm4 { + compatible = "nvidia,tegra-camrtc-hsp-vm"; + mboxes = <0x76 0x01 0x06 0x76 0x01 0x80000007 0x76 0x02 0x03>; + mbox-names = "vm-tx\0vm-rx\0vm-ss"; + status = "disabled"; + }; + + hsp { + compatible = "nvidia,tegra186-hsp-mailbox"; + nvidia,hsp-shared-mailbox = <0x76 0x01 0x76 0x06>; + nvidia,hsp-shared-mailbox-names = "ivc-pair\0cmd-pair"; + }; + }; + + camera-ivc-channels { + phandle = <0x75>; + + echo@0 { + compatible = "nvidia,tegra186-camera-ivc-protocol-echo"; + nvidia,service = "echo"; + nvidia,version = <0x00>; + nvidia,group = <0x01>; + nvidia,frame-count = <0x10>; + nvidia,frame-size = <0x40>; + }; + + dbg@1 { + compatible = "nvidia,tegra186-camera-ivc-protocol-dbg"; + nvidia,service = "debug"; + nvidia,version = <0x00>; + nvidia,group = <0x01>; + nvidia,frame-count = <0x01>; + nvidia,frame-size = <0x1c0>; + }; + + dbg@2 { + compatible = "nvidia,tegra186-camera-ivc-protocol-debug"; + nvidia,service = "debug"; + nvidia,version = <0x00>; + nvidia,group = <0x01>; + nvidia,frame-count = <0x01>; + nvidia,frame-size = <0x2000>; + nvidia,ivc-timeout = <0x32>; + nvidia,test-timeout = <0x1388>; + nvidia,mem-map = <0x77 0x78 0x79 0x7a>; + nvidia,test-bw = <0x249f00>; + }; + + ivccontrol@3 { + compatible = "nvidia,tegra186-camera-ivc-protocol-capture-control"; + nvidia,service = "capture-control"; + nvidia,version = <0x00>; + nvidia,group = <0x01>; + nvidia,frame-count = <0x40>; + nvidia,frame-size = <0x140>; + }; + + ivccapture@4 { + compatible = "nvidia,tegra186-camera-ivc-protocol-capture"; + nvidia,service = "capture"; + nvidia,version = <0x00>; + nvidia,group = <0x01>; + nvidia,frame-count = <0x200>; + nvidia,frame-size = <0x40>; + }; + + diag@5 { + compatible = "nvidia,tegra186-camera-diagnostics"; + nvidia,service = "diag"; + nvidia,version = <0x00>; + nvidia,group = <0x01>; + nvidia,frame-count = <0x01>; + nvidia,frame-size = <0x40>; + }; + }; + + tegra-rtcpu-trace { + nvidia,enable-printk; + nvidia,interval-ms = <0x32>; + nvidia,log-prefix = "[RCE]"; + phandle = <0x74>; + }; + + tegra-capture-vi { + compatible = "nvidia,tegra-camrtc-capture-vi"; + nvidia,vi-devices = <0x78 0x7a>; + nvidia,vi-mapping-size = <0x06>; + nvidia,vi-mapping = <0x00 0x00 0x01 0x00 0x02 0x01 0x03 0x01 0x04 0x00 0x05 0x01>; + nvidia,vi-mapping-names = "csi-stream-id\0vi-unit-id"; + nvidia,vi-max-channels = <0x48>; + num-channels = <0x02>; + phandle = <0x23b>; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + status = "disabled"; + phandle = <0x23c>; + + endpoint { + port-index = <0x00>; + bus-width = <0x04>; + remote-endpoint = <0x7b>; + vc-id = <0x00>; + status = "disabled"; + phandle = <0xbe>; + }; + }; + + port@1 { + reg = <0x01>; + status = "disabled"; + phandle = <0x23d>; + + endpoint { + port-index = <0x02>; + bus-width = <0x04>; + remote-endpoint = <0x7c>; + vc-id = <0x00>; + status = "disabled"; + phandle = <0xc0>; + }; + }; + + port@2 { + reg = <0x02>; + status = "disabled"; + phandle = <0x23e>; + + endpoint { + port-index = <0x02>; + bus-width = <0x02>; + remote-endpoint = <0x7d>; + vc-id = <0x00>; + status = "disabled"; + phandle = <0xc2>; + }; + }; + + port@3 { + reg = <0x03>; + status = "disabled"; + phandle = <0x23f>; + + endpoint { + port-index = <0x03>; + bus-width = <0x02>; + remote-endpoint = <0x7e>; + vc-id = <0x00>; + status = "disabled"; + phandle = <0xc4>; + }; + }; + + port@4 { + reg = <0x04>; + status = "disabled"; + phandle = <0x240>; + + endpoint { + port-index = <0x04>; + bus-width = <0x02>; + remote-endpoint = <0x7f>; + vc-id = <0x00>; + status = "disabled"; + phandle = <0xc6>; + }; + }; + + port@5 { + reg = <0x05>; + status = "disabled"; + phandle = <0x241>; + + endpoint { + port-index = <0x05>; + bus-width = <0x02>; + remote-endpoint = <0x80>; + vc-id = <0x00>; + status = "disabled"; + phandle = <0xc8>; + }; + }; + }; + }; + + actmon@d230000 { + status = "okay"; + #address-cells = <0x02>; + #size-cells = <0x02>; + compatible = "nvidia,tegra234-cactmon"; + reg = <0x00 0xd230000 0x00 0x1000>; + interrupts = <0x00 0xd2 0x04>; + clocks = <0x04 0x01>; + clock-names = "actmon"; + resets = <0x04 0x01>; + reset-names = "actmon_rst"; + nvidia,sample_period = [14]; + + mc_all { + #address-cells = <0x01>; + #size-cells = <0x00>; + nvidia,reg_offs = <0x100>; + nvidia,irq_mask = <0x02>; + nvidia,suspend_freq = <0x31ce0>; + nvidia,boost_freq_step = <0x31ce0>; + nvidia,boost_up_coef = <0xc8>; + nvidia,boost_down_coef = <0x32>; + nvidia,boost_up_threshold = <0x1e>; + nvidia,boost_down_threshold = <0x14>; + nvidia,up_wmark_window = [03]; + nvidia,down_wmark_window = [02]; + nvidia,avg_window_log2 = [06]; + nvidia,count_weight = <0x100>; + nvidia,max_dram_channels = [10]; + nvidia,type = <0x01>; + clocks = <0x04 0x1f>; + clock-names = "emc"; + status = "okay"; + }; + }; + + aon@c000000 { + compatible = "nvidia,tegra234-aon"; + status = "okay"; + iommus = <0x02 0x01>; + dma-coherent; + #mbox-cells = <0x01>; + reg = <0x00 0xc000000 0x00 0x800000>; + nvidia,ivc-carveout-base-ss = <0x00>; + nvidia,ivc-carveout-size-ss = <0x01>; + nvidia,ivc-rx-ss = <0x02>; + nvidia,ivc-tx-ss = <0x03>; + mboxes = <0x81 0x00>; + phandle = <0x81>; + + hsp { + compatible = "nvidia,tegra-aon-hsp"; + mboxes = <0x82 0x01 0x80000005 0x82 0x01 0x04>; + mbox-names = "ivc-tx\0ivc-rx"; + }; + + ivc-channels@80000000 { + #address-cells = <0x01>; + #size-cells = <0x00>; + + ivc_aon_aondbg@0 { + reg = <0x00 0x10000>; + reg-names = "rx\0tx"; + nvidia,frame-count = <0x02>; + nvidia,frame-size = <0x40>; + }; + }; + }; + + cpus { + #address-cells = <0x02>; + #size-cells = <0x00>; + + cpu-map { + + cluster0 { + + core0 { + cpu = <0x83>; + }; + + core1 { + cpu = <0x84>; + }; + + core2 { + cpu = <0x85>; + }; + + core3 { + cpu = <0x86>; + }; + }; + + cluster1 { + + core0 { + cpu = <0x87>; + }; + + core1 { + cpu = <0x88>; + }; + + core2 { + cpu = <0x89>; + }; + + core3 { + cpu = <0x8a>; + }; + }; + + cluster2 { + + core0 { + cpu = <0x8b>; + }; + + core1 { + cpu = <0x8c>; + }; + + core2 { + cpu = <0x8d>; + }; + + core3 { + cpu = <0x8e>; + }; + }; + }; + + cpu@0 { + device_type = "cpu"; + compatible = "arm,armv8"; + reg = <0x00 0x00>; + enable-method = "psci"; + i-cache-size = <0x10000>; + i-cache-line-size = <0x40>; + i-cache-sets = <0x100>; + d-cache-size = <0x10000>; + d-cache-line-size = <0x40>; + d-cache-sets = <0x100>; + next-level-cache = <0x8f>; + #cooling-cells = <0x02>; + cpu-idle-states = <0x90>; + phandle = <0x83>; + }; + + cpu@1 { + device_type = "cpu"; + compatible = "arm,armv8"; + reg = <0x00 0x100>; + enable-method = "psci"; + i-cache-size = <0x10000>; + i-cache-line-size = <0x40>; + i-cache-sets = <0x100>; + d-cache-size = <0x10000>; + d-cache-line-size = <0x40>; + d-cache-sets = <0x100>; + next-level-cache = <0x91>; + cpu-idle-states = <0x90>; + phandle = <0x84>; + }; + + cpu@2 { + device_type = "cpu"; + compatible = "arm,armv8"; + reg = <0x00 0x200>; + enable-method = "psci"; + i-cache-size = <0x10000>; + i-cache-line-size = <0x40>; + i-cache-sets = <0x100>; + d-cache-size = <0x10000>; + d-cache-line-size = <0x40>; + d-cache-sets = <0x100>; + next-level-cache = <0x92>; + cpu-idle-states = <0x90>; + phandle = <0x85>; + }; + + cpu@3 { + device_type = "cpu"; + compatible = "arm,armv8"; + reg = <0x00 0x300>; + enable-method = "psci"; + i-cache-size = <0x10000>; + i-cache-line-size = <0x40>; + i-cache-sets = <0x100>; + d-cache-size = <0x10000>; + d-cache-line-size = <0x40>; + d-cache-sets = <0x100>; + next-level-cache = <0x93>; + cpu-idle-states = <0x90>; + phandle = <0x86>; + }; + + cpu@4 { + device_type = "cpu"; + compatible = "arm,armv8"; + reg = <0x00 0x10000>; + enable-method = "psci"; + i-cache-size = <0x10000>; + i-cache-line-size = <0x40>; + i-cache-sets = <0x100>; + d-cache-size = <0x10000>; + d-cache-line-size = <0x40>; + d-cache-sets = <0x100>; + next-level-cache = <0x94>; + #cooling-cells = <0x02>; + cpu-idle-states = <0x90>; + phandle = <0x87>; + }; + + cpu@5 { + device_type = "cpu"; + compatible = "arm,armv8"; + reg = <0x00 0x10100>; + enable-method = "psci"; + i-cache-size = <0x10000>; + i-cache-line-size = <0x40>; + i-cache-sets = <0x100>; + d-cache-size = <0x10000>; + d-cache-line-size = <0x40>; + d-cache-sets = <0x100>; + next-level-cache = <0x95>; + cpu-idle-states = <0x90>; + phandle = <0x88>; + }; + + cpu@6 { + device_type = "cpu"; + compatible = "arm,armv8"; + reg = <0x00 0x10200>; + enable-method = "psci"; + i-cache-size = <0x10000>; + i-cache-line-size = <0x40>; + i-cache-sets = <0x100>; + d-cache-size = <0x10000>; + d-cache-line-size = <0x40>; + d-cache-sets = <0x100>; + next-level-cache = <0x96>; + cpu-idle-states = <0x90>; + phandle = <0x89>; + }; + + cpu@7 { + device_type = "cpu"; + compatible = "arm,armv8"; + reg = <0x00 0x10300>; + enable-method = "psci"; + i-cache-size = <0x10000>; + i-cache-line-size = <0x40>; + i-cache-sets = <0x100>; + d-cache-size = <0x10000>; + d-cache-line-size = <0x40>; + d-cache-sets = <0x100>; + next-level-cache = <0x97>; + cpu-idle-states = <0x90>; + phandle = <0x8a>; + }; + + cpu@8 { + device_type = "cpu"; + compatible = "arm,armv8"; + reg = <0x00 0x20000>; + enable-method = "psci"; + i-cache-size = <0x10000>; + i-cache-line-size = <0x40>; + i-cache-sets = <0x100>; + d-cache-size = <0x10000>; + d-cache-line-size = <0x40>; + d-cache-sets = <0x100>; + next-level-cache = <0x98>; + #cooling-cells = <0x02>; + cpu-idle-states = <0x90>; + phandle = <0x8b>; + }; + + cpu@9 { + device_type = "cpu"; + compatible = "arm,armv8"; + reg = <0x00 0x20100>; + enable-method = "psci"; + i-cache-size = <0x10000>; + i-cache-line-size = <0x40>; + i-cache-sets = <0x100>; + d-cache-size = <0x10000>; + d-cache-line-size = <0x40>; + d-cache-sets = <0x100>; + next-level-cache = <0x99>; + cpu-idle-states = <0x90>; + phandle = <0x8c>; + }; + + cpu@10 { + device_type = "cpu"; + compatible = "arm,armv8"; + reg = <0x00 0x20200>; + enable-method = "psci"; + i-cache-size = <0x10000>; + i-cache-line-size = <0x40>; + i-cache-sets = <0x100>; + d-cache-size = <0x10000>; + d-cache-line-size = <0x40>; + d-cache-sets = <0x100>; + next-level-cache = <0x9a>; + cpu-idle-states = <0x90>; + phandle = <0x8d>; + }; + + cpu@11 { + device_type = "cpu"; + compatible = "arm,armv8"; + reg = <0x00 0x20300>; + enable-method = "psci"; + i-cache-size = <0x10000>; + i-cache-line-size = <0x40>; + i-cache-sets = <0x100>; + d-cache-size = <0x10000>; + d-cache-line-size = <0x40>; + d-cache-sets = <0x100>; + next-level-cache = <0x9b>; + cpu-idle-states = <0x90>; + phandle = <0x8e>; + }; + + cpu_core_power_states { + phandle = <0x242>; + + c1 { + compatible = "arm,idle-state"; + state-name = "Clock gated"; + wakeup-latency-us = <0x01>; + min-residency-us = <0x01>; + status = "okay"; + phandle = <0x243>; + }; + + c7 { + compatible = "arm,idle-state"; + state-name = "Core powergate"; + wakeup-latency-us = <0x1388>; + min-residency-us = <0x7530>; + arm,psci-suspend-param = <0x40000007>; + status = "okay"; + phandle = <0x90>; + }; + }; + }; + + l2-cache00 { + cache-size = <0x40000>; + cache-line-size = <0x40>; + cache-sets = <0x200>; + cache-unified; + next-level-cache = <0x9c>; + phandle = <0x8f>; + }; + + l2-cache01 { + cache-size = <0x40000>; + cache-line-size = <0x40>; + cache-sets = <0x200>; + cache-unified; + next-level-cache = <0x9c>; + phandle = <0x91>; + }; + + l2-cache02 { + cache-size = <0x40000>; + cache-line-size = <0x40>; + cache-sets = <0x200>; + cache-unified; + next-level-cache = <0x9c>; + phandle = <0x92>; + }; + + l2-cache03 { + cache-size = <0x40000>; + cache-line-size = <0x40>; + cache-sets = <0x200>; + cache-unified; + next-level-cache = <0x9c>; + phandle = <0x93>; + }; + + l2-cache10 { + cache-size = <0x40000>; + cache-line-size = <0x40>; + cache-sets = <0x200>; + cache-unified; + next-level-cache = <0x9d>; + phandle = <0x94>; + }; + + l2-cache11 { + cache-size = <0x40000>; + cache-line-size = <0x40>; + cache-sets = <0x200>; + cache-unified; + next-level-cache = <0x9d>; + phandle = <0x95>; + }; + + l2-cache12 { + cache-size = <0x40000>; + cache-line-size = <0x40>; + cache-sets = <0x200>; + cache-unified; + next-level-cache = <0x9d>; + phandle = <0x96>; + }; + + l2-cache13 { + cache-size = <0x40000>; + cache-line-size = <0x40>; + cache-sets = <0x200>; + cache-unified; + next-level-cache = <0x9d>; + phandle = <0x97>; + }; + + l2-cache20 { + cache-size = <0x40000>; + cache-line-size = <0x40>; + cache-sets = <0x200>; + cache-unified; + next-level-cache = <0x9e>; + phandle = <0x98>; + }; + + l2-cache21 { + cache-size = <0x40000>; + cache-line-size = <0x40>; + cache-sets = <0x200>; + cache-unified; + next-level-cache = <0x9e>; + phandle = <0x99>; + }; + + l2-cache22 { + cache-size = <0x40000>; + cache-line-size = <0x40>; + cache-sets = <0x200>; + cache-unified; + next-level-cache = <0x9e>; + phandle = <0x9a>; + }; + + l2-cache23 { + cache-size = <0x40000>; + cache-line-size = <0x40>; + cache-sets = <0x200>; + cache-unified; + next-level-cache = <0x9e>; + phandle = <0x9b>; + }; + + l3-cache0 { + cache-size = <0x200000>; + cache-line-size = <0x40>; + cache-sets = <0x800>; + phandle = <0x9c>; + }; + + l3-cache1 { + cache-size = <0x200000>; + cache-line-size = <0x40>; + cache-sets = <0x800>; + phandle = <0x9d>; + }; + + l3-cache2 { + cache-size = <0x200000>; + cache-line-size = <0x40>; + cache-sets = <0x800>; + phandle = <0x9e>; + }; + + arm-pmu { + compatible = "arm,armv8-pmuv3"; + interrupts = <0x01 0x07 0x04>; + status = "okay"; + }; + + dsu-pmu-0 { + compatible = "arm,dsu-pmu"; + interrupts = <0x00 0x223 0x04>; + cpus = <0x83 0x84 0x85 0x86>; + status = "okay"; + }; + + dsu-pmu-1 { + compatible = "arm,dsu-pmu"; + interrupts = <0x00 0x224 0x04>; + cpus = <0x87 0x88 0x89 0x8a>; + status = "okay"; + }; + + dsu-pmu-2 { + compatible = "arm,dsu-pmu"; + interrupts = <0x00 0x225 0x04>; + cpus = <0x8b 0x8c 0x8d 0x8e>; + status = "okay"; + }; + + scf-pmu { + compatible = "nvidia,scf-pmu"; + interrupts = <0x00 0x227 0x04>; + interrupt-affinity = <0x83>; + status = "okay"; + }; + + spe-pmu { + compatible = "arm,statistical-profiling-extension-v1"; + interrupts = <0x01 0x05 0x04>; + status = "disabled"; + }; + + thermal-zones { + status = "disabled"; + + CPU-therm { + polling-delay = <0x00>; + polling-delay-passive = <0x3e8>; + thermal-sensors = <0x9f 0x00>; + status = "okay"; + + trips { + + cpu-sw-shutdown { + temperature = <0x19834>; + type = "critical"; + hysteresis = <0x00>; + phandle = <0x244>; + }; + + cpu-sw-throttle { + temperature = <0x182b8>; + type = "passive"; + hysteresis = <0x00>; + phandle = <0xa0>; + }; + + cpu-hot-surface { + temperature = <0x11170>; + type = "active"; + hysteresis = <0x1f40>; + phandle = <0xa3>; + }; + }; + + cooling-maps { + + map0 { + trip = <0xa0>; + cooling-device = <0x83 0xffffffff 0xffffffff 0x87 0xffffffff 0xffffffff 0x8b 0xffffffff 0xffffffff 0xa1 0xffffffff 0xffffffff>; + }; + + user-alert-map0 { + trip = <0xa0>; + cooling-device = <0xa2 0x01 0x01>; + }; + + hot-surface-alert-map0 { + trip = <0xa3>; + cooling-device = <0xa4 0x01 0x01>; + }; + }; + + thermal-zone-params { + governor-name = "step_wise"; + }; + }; + + GPU-therm { + polling-delay = <0x00>; + polling-delay-passive = <0x3e8>; + thermal-sensors = <0x9f 0x01>; + status = "okay"; + + trips { + + gpu-sw-shutdown { + temperature = <0x19834>; + type = "critical"; + hysteresis = <0x00>; + phandle = <0x245>; + }; + + gpu-sw-throttle { + temperature = <0x182b8>; + type = "passive"; + hysteresis = <0x00>; + phandle = <0xa5>; + }; + + gpu-hot-surface { + temperature = <0x11170>; + type = "active"; + hysteresis = <0x1f40>; + phandle = <0xa7>; + }; + }; + + cooling-maps { + + map0 { + trip = <0xa5>; + cooling-device = <0x83 0xffffffff 0xffffffff 0x87 0xffffffff 0xffffffff 0x8b 0xffffffff 0xffffffff 0xa1 0xffffffff 0xffffffff>; + }; + + user-alert-map0 { + trip = <0xa5>; + cooling-device = <0xa6 0x01 0x01>; + }; + + hot-surface-alert-map0 { + trip = <0xa7>; + cooling-device = <0xa4 0x01 0x01>; + }; + }; + + thermal-zone-params { + governor-name = "step_wise"; + }; + }; + + CV0-therm { + polling-delay = <0x00>; + polling-delay-passive = <0x3e8>; + thermal-sensors = <0x9f 0x02>; + status = "okay"; + + trips { + + cv0-sw-shutdown { + temperature = <0x19834>; + type = "critical"; + hysteresis = <0x00>; + phandle = <0x246>; + }; + + cv0-sw-throttle { + temperature = <0x182b8>; + type = "passive"; + hysteresis = <0x00>; + phandle = <0xa8>; + }; + + cv0-hot-surface { + temperature = <0x11170>; + type = "active"; + hysteresis = <0x1f40>; + phandle = <0xaa>; + }; + }; + + cooling-maps { + + map0 { + trip = <0xa8>; + cooling-device = <0x83 0xffffffff 0xffffffff 0x87 0xffffffff 0xffffffff 0x8b 0xffffffff 0xffffffff 0xa1 0xffffffff 0xffffffff>; + }; + + user-alert-map0 { + trip = <0xa8>; + cooling-device = <0xa9 0x01 0x01>; + }; + + hot-surface-alert-map0 { + trip = <0xaa>; + cooling-device = <0xa4 0x01 0x01>; + }; + }; + + thermal-zone-params { + governor-name = "step_wise"; + }; + }; + + CV1-therm { + polling-delay = <0x00>; + polling-delay-passive = <0x3e8>; + thermal-sensors = <0x9f 0x03>; + status = "okay"; + + trips { + + cv1-sw-shutdown { + temperature = <0x19834>; + type = "critical"; + hysteresis = <0x00>; + phandle = <0x247>; + }; + + cv1-sw-throttle { + temperature = <0x182b8>; + type = "passive"; + hysteresis = <0x00>; + phandle = <0xab>; + }; + + cv1-hot-surface { + temperature = <0x11170>; + type = "active"; + hysteresis = <0x1f40>; + phandle = <0xad>; + }; + }; + + cooling-maps { + + map0 { + trip = <0xab>; + cooling-device = <0x83 0xffffffff 0xffffffff 0x87 0xffffffff 0xffffffff 0x8b 0xffffffff 0xffffffff 0xa1 0xffffffff 0xffffffff>; + }; + + user-alert-map0 { + trip = <0xab>; + cooling-device = <0xac 0x01 0x01>; + }; + + hot-surface-alert-map0 { + trip = <0xad>; + cooling-device = <0xa4 0x01 0x01>; + }; + }; + + thermal-zone-params { + governor-name = "step_wise"; + }; + }; + + CV2-therm { + polling-delay = <0x00>; + polling-delay-passive = <0x3e8>; + thermal-sensors = <0x9f 0x04>; + status = "okay"; + + trips { + + cv2-sw-shutdown { + temperature = <0x19834>; + type = "critical"; + hysteresis = <0x00>; + phandle = <0x248>; + }; + + cv2-sw-throttle { + temperature = <0x182b8>; + type = "passive"; + hysteresis = <0x00>; + phandle = <0xae>; + }; + + cv2-hot-surface { + temperature = <0x11170>; + type = "active"; + hysteresis = <0x1f40>; + phandle = <0xb0>; + }; + }; + + cooling-maps { + + map0 { + trip = <0xae>; + cooling-device = <0x83 0xffffffff 0xffffffff 0x87 0xffffffff 0xffffffff 0x8b 0xffffffff 0xffffffff 0xa1 0xffffffff 0xffffffff>; + }; + + user-alert-map0 { + trip = <0xae>; + cooling-device = <0xaf 0x01 0x01>; + }; + + hot-surface-alert-map0 { + trip = <0xb0>; + cooling-device = <0xa4 0x01 0x01>; + }; + }; + + thermal-zone-params { + governor-name = "step_wise"; + }; + }; + + SOC0-therm { + polling-delay = <0x00>; + polling-delay-passive = <0x3e8>; + thermal-sensors = <0x9f 0x05>; + status = "okay"; + + trips { + + soc0-sw-shutdown { + temperature = <0x19834>; + type = "critical"; + hysteresis = <0x00>; + phandle = <0x249>; + }; + + soc0-sw-throttle { + temperature = <0x182b8>; + type = "passive"; + hysteresis = <0x00>; + phandle = <0xb1>; + }; + + soc0-hot-surface { + temperature = <0x11170>; + type = "active"; + hysteresis = <0x1f40>; + phandle = <0xb3>; + }; + }; + + cooling-maps { + + map0 { + trip = <0xb1>; + cooling-device = <0x83 0xffffffff 0xffffffff 0x87 0xffffffff 0xffffffff 0x8b 0xffffffff 0xffffffff 0xa1 0xffffffff 0xffffffff>; + }; + + user-alert-map0 { + trip = <0xb1>; + cooling-device = <0xb2 0x01 0x01>; + }; + + hot-surface-alert-map0 { + trip = <0xb3>; + cooling-device = <0xa4 0x01 0x01>; + }; + }; + + thermal-zone-params { + governor-name = "step_wise"; + }; + }; + + SOC1-therm { + polling-delay = <0x00>; + polling-delay-passive = <0x3e8>; + thermal-sensors = <0x9f 0x06>; + status = "okay"; + + trips { + + soc1-sw-shutdown { + temperature = <0x19834>; + type = "critical"; + hysteresis = <0x00>; + phandle = <0x24a>; + }; + + soc1-sw-throttle { + temperature = <0x182b8>; + type = "passive"; + hysteresis = <0x00>; + phandle = <0xb4>; + }; + + soc1-hot-surface { + temperature = <0x11170>; + type = "active"; + hysteresis = <0x1f40>; + phandle = <0xb6>; + }; + }; + + cooling-maps { + + map0 { + trip = <0xb4>; + cooling-device = <0x83 0xffffffff 0xffffffff 0x87 0xffffffff 0xffffffff 0x8b 0xffffffff 0xffffffff 0xa1 0xffffffff 0xffffffff>; + }; + + user-alert-map0 { + trip = <0xb4>; + cooling-device = <0xb5 0x01 0x01>; + }; + + hot-surface-alert-map0 { + trip = <0xb6>; + cooling-device = <0xa4 0x01 0x01>; + }; + }; + + thermal-zone-params { + governor-name = "step_wise"; + }; + }; + + SOC2-therm { + polling-delay = <0x00>; + polling-delay-passive = <0x3e8>; + thermal-sensors = <0x9f 0x07>; + status = "okay"; + + trips { + + soc2-sw-shutdown { + temperature = <0x19834>; + type = "critical"; + hysteresis = <0x00>; + phandle = <0x24b>; + }; + + soc2-sw-throttle { + temperature = <0x182b8>; + type = "passive"; + hysteresis = <0x00>; + phandle = <0xb7>; + }; + + soc2-hot-surface { + temperature = <0x11170>; + type = "active"; + hysteresis = <0x1f40>; + phandle = <0xb9>; + }; + }; + + cooling-maps { + + map0 { + trip = <0xb7>; + cooling-device = <0x83 0xffffffff 0xffffffff 0x87 0xffffffff 0xffffffff 0x8b 0xffffffff 0xffffffff 0xa1 0xffffffff 0xffffffff>; + }; + + user-alert-map0 { + trip = <0xb7>; + cooling-device = <0xb8 0x01 0x01>; + }; + + hot-surface-alert-map0 { + trip = <0xb9>; + cooling-device = <0xa4 0x01 0x01>; + }; + }; + + thermal-zone-params { + governor-name = "step_wise"; + }; + }; + + tj-therm { + polling-delay = <0x00>; + polling-delay-passive = <0x3e8>; + thermal-sensors = <0x9f 0x08>; + status = "okay"; + phandle = <0x24c>; + }; + + Tboard_tegra { + status = "disabled"; + polling-delay = <0x00>; + polling-delay-passive = <0x00>; + thermal-sensors = <0xba 0x00>; + + thermal-zone-params { + governor-name = "pid_thermal_gov"; + }; + }; + + Tdiode_tegra { + status = "okay"; + polling-delay = <0x00>; + polling-delay-passive = <0x3e8>; + thermal-sensors = <0xba 0x01>; + phandle = <0x24d>; + + thermal-zone-params { + governor-name = "pid_thermal_gov"; + }; + }; + }; + + ldpc-enc@15700000 { + compatible = "nvidia,tegra-ldpc-enc"; + nvidia,devname = "ldpc-enc"; + reg = <0x00 0x15700000 0x00 0x80000>; + status = "disabled"; + }; + + ldpc-dec@15780000 { + compatible = "nvidia,tegra-ldpc-dec"; + nvidia,devname = "ldpc-dec"; + reg = <0x00 0x15780000 0x00 0x80000>; + status = "disabled"; + }; + + psc@e800000 { + compatible = "nvidia,tegra234-psc"; + nvidia,cpu-name = "psc"; + iommus = <0x02 0x09>; + nvidia,sidtable = <0x9090909>; + dma-coherent; + #mbox-cells = <0x01>; + reg = <0x00 0xe860000 0x00 0x200000 0x00 0xe80201c 0x00 0x08>; + reg-names = "mbox-regs\0extcfg"; + interrupts = <0x00 0x16e 0x04 0x00 0x16f 0x04 0x00 0x170 0x04 0x00 0x171 0x04 0x00 0x172 0x04 0x00 0x173 0x04 0x00 0x174 0x04 0x00 0x175 0x04>; + mboxes = <0xbb 0x00>; + nvidia,sidconfig = <0x00>; + phandle = <0xbb>; + }; + + host1x@13e00000 { + compatible = "nvidia,tegra234-host1x\0simple-bus"; + reg = <0x00 0x13e40000 0x00 0x10000 0x00 0x13e10000 0x00 0x10000 0x00 0x13ef0000 0x00 0x40000 0x00 0x60000000 0x00 0x4000000 0x00 0x13e00000 0x00 0x10000>; + reg-names = "guest\0hypervisor\0actmon\0sem-syncpt-shim\0common"; + interrupts = <0x00 0x1c0 0x04 0x00 0x1c1 0x04 0x00 0x1c2 0x04 0x00 0x1c3 0x04 0x00 0x1c4 0x04 0x00 0x1c5 0x04 0x00 0x1c6 0x04 0x00 0x1c7 0x04 0x00 0x107 0x04>; + nvidia,ignore-dt-update; + wakeup_capable; + clocks = <0x04 0x2e 0x04 0x01>; + clock-names = "host1x\0actmon"; + nvidia,vmid = <0x01>; + interconnects = <0x24 0x16>; + interconnect-names = "dma-mem"; + iommus = <0x22 0x27 0x22 0x3d 0x22 0x3e 0x22 0x3f 0x22 0x40 0x22 0x41 0x22 0x42 0x22 0x43 0x22 0x44>; + dma-coherent; + #address-cells = <0x02>; + #size-cells = <0x02>; + ranges; + status = "okay"; + phandle = <0x10>; + + niso0_ctx0 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x02 0x35>; + dma-coherent; + status = "okay"; + phandle = <0x24e>; + }; + + niso0_ctx1 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x02 0x36>; + dma-coherent; + status = "okay"; + phandle = <0x24f>; + }; + + niso0_ctx2 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x02 0x37>; + dma-coherent; + status = "okay"; + phandle = <0x250>; + }; + + niso0_ctx3 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x02 0x38>; + dma-coherent; + status = "okay"; + phandle = <0x251>; + }; + + niso0_ctx4 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x02 0x39>; + dma-coherent; + status = "okay"; + phandle = <0x252>; + }; + + niso0_ctx5 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x02 0x3a>; + dma-coherent; + status = "okay"; + phandle = <0x253>; + }; + + niso0_ctx6 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x02 0x3b>; + dma-coherent; + status = "okay"; + phandle = <0x254>; + }; + + niso0_ctx7 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x02 0x3c>; + dma-coherent; + status = "okay"; + phandle = <0x255>; + }; + + niso1_ctx0 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x22 0x35>; + dma-coherent; + status = "okay"; + phandle = <0x256>; + }; + + niso1_ctx1 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x22 0x36>; + dma-coherent; + status = "okay"; + phandle = <0x257>; + }; + + niso1_ctx2 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x22 0x37>; + dma-coherent; + status = "okay"; + phandle = <0x258>; + }; + + niso1_ctx3 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x22 0x38>; + dma-coherent; + status = "okay"; + phandle = <0x259>; + }; + + niso1_ctx4 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x22 0x39>; + dma-coherent; + status = "okay"; + phandle = <0x25a>; + }; + + niso1_ctx5 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x22 0x3a>; + dma-coherent; + status = "okay"; + phandle = <0x25b>; + }; + + niso1_ctx6 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x22 0x3b>; + dma-coherent; + status = "okay"; + phandle = <0x25c>; + }; + + niso1_ctx7 { + compatible = "nvidia,tegra186-iommu-context"; + iommus = <0x22 0x3c>; + dma-coherent; + status = "okay"; + phandle = <0x25d>; + }; + + vic@15340000 { + compatible = "nvidia,tegra234-vic"; + power-domains = <0x04 0x1d>; + reg = <0x00 0x15340000 0x00 0x40000>; + interrupts = <0x00 0xce 0x04>; + resets = <0x04 0x71>; + clocks = <0x04 0xa7>; + clock-names = "vic"; + interconnects = <0x24 0x6c 0x24 0x6d>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x34>; + dma-coherent; + status = "okay"; + }; + + nvjpg@15380000 { + compatible = "nvidia,tegra234-nvjpg"; + power-domains = <0x04 0x18>; + reg = <0x00 0x15380000 0x00 0x40000>; + resets = <0x04 0x3d>; + clocks = <0x04 0x5a>; + clock-names = "nvjpg"; + iommus = <0x22 0x2a>; + dma-coherent; + status = "okay"; + }; + + nvjpg1@15540000 { + compatible = "nvidia,tegra234-nvjpg"; + power-domains = <0x04 0x24>; + reg = <0x00 0x15540000 0x00 0x40000>; + resets = <0x04 0x0a>; + clocks = <0x04 0x14>; + clock-names = "nvjpg"; + iommus = <0x02 0x25>; + dma-coherent; + status = "okay"; + }; + + tsec@15500000 { + compatible = "nvidia,tegra234-tsec"; + reg = <0x00 0x15500000 0x00 0x40000>; + interrupts = <0x00 0xe4 0x04>; + resets = <0x04 0x62>; + clocks = <0x04 0x99 0x04 0x28 0x04 0x9a>; + clock-names = "tsec\0efuse\0tsec_pka"; + iommus = <0x22 0x33>; + dma-coherent; + status = "okay"; + }; + + nvdec@15480000 { + compatible = "nvidia,tegra234-nvdec"; + power-domains = <0x04 0x17>; + reg = <0x00 0x15480000 0x00 0x40000>; + resets = <0x04 0x2c>; + clocks = <0x04 0x53 0x04 0x13e 0x04 0x28 0x04 0x9a>; + clock-names = "nvdec\0kfuse\0efuse\0tsec_pka"; + iommus = <0x22 0x29>; + dma-coherent; + status = "okay"; + }; + + nvenc@154c0000 { + compatible = "nvidia,tegra234-nvenc"; + power-domains = <0x04 0x19>; + reg = <0x00 0x154c0000 0x00 0x40000>; + resets = <0x04 0x3b>; + clocks = <0x04 0x59>; + clock-names = "nvenc"; + iommus = <0x02 0x24>; + dma-coherent; + status = "okay"; + }; + + ofa@15a50000 { + compatible = "nvidia,tegra234-ofa"; + power-domains = <0x04 0x01>; + reg = <0x00 0x15a50000 0x00 0x10000>; + resets = <0x04 0x09>; + clocks = <0x04 0x14e>; + clock-names = "ofa"; + iommus = <0x02 0x26>; + dma-coherent; + status = "okay"; + }; + + vi0@15c00000 { + compatible = "nvidia,tegra234-vi"; + clocks = <0x04 0xa6>; + clock-names = "vi"; + nvidia,vi-falcon-device = <0x08>; + iommus = <0xbc 0x02>; + non-coherent; + status = "okay"; + phandle = <0x78>; + }; + + vi0-thi@15f00000 { + compatible = "nvidia,tegra234-vi-thi"; + status = "okay"; + phandle = <0x08>; + }; + + vi1@14c00000 { + compatible = "nvidia,tegra234-vi"; + clocks = <0x04 0xa6>; + clock-names = "vi"; + nvidia,vi-falcon-device = <0x09>; + iommus = <0xbc 0x04>; + non-coherent; + status = "okay"; + phandle = <0x7a>; + }; + + vi1-thi@14f00000 { + compatible = "nvidia,tegra234-vi-thi"; + status = "okay"; + phandle = <0x09>; + }; + + isp@14800000 { + compatible = "nvidia,tegra194-isp"; + reg = <0x00 0x14800000 0x00 0x10000>; + resets = <0x04 0x24>; + reset-names = "isp"; + clocks = <0x04 0x45>; + clock-names = "isp"; + power-domains = <0x04 0x16>; + nvidia,isp-falcon-device = <0x0a>; + iommus = <0x22 0x28>; + dma-coherent; + status = "okay"; + phandle = <0x79>; + }; + + isp-thi@14b00000 { + compatible = "nvidia,tegra194-isp-thi"; + status = "okay"; + phandle = <0x0a>; + }; + + nvcsi@15a00000 { + compatible = "nvidia,tegra194-nvcsi"; + clocks = <0x04 0x51>; + clock-names = "nvcsi"; + status = "okay"; + num-channels = <0x02>; + #address-cells = <0x01>; + #size-cells = <0x00>; + num-tpg-channels = <0x24>; + phandle = <0x25e>; + + channel@0 { + reg = <0x00>; + status = "disabled"; + phandle = <0x25f>; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + status = "disabled"; + phandle = <0x260>; + + endpoint@0 { + port-index = <0x00>; + bus-width = <0x04>; + remote-endpoint = <0xbd>; + status = "disabled"; + phandle = <0x3d>; + }; + }; + + port@1 { + reg = <0x01>; + status = "disabled"; + phandle = <0x261>; + + endpoint@1 { + remote-endpoint = <0xbe>; + status = "disabled"; + phandle = <0x7b>; + }; + }; + }; + }; + + channel@1 { + reg = <0x01>; + status = "disabled"; + phandle = <0x262>; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + status = "disabled"; + phandle = <0x263>; + + endpoint@2 { + port-index = <0x02>; + bus-width = <0x04>; + remote-endpoint = <0xbf>; + status = "disabled"; + phandle = <0x41>; + }; + }; + + port@1 { + reg = <0x01>; + status = "disabled"; + phandle = <0x264>; + + endpoint@3 { + remote-endpoint = <0xc0>; + status = "disabled"; + phandle = <0x7c>; + }; + }; + }; + }; + + channel@2 { + reg = <0x02>; + status = "disabled"; + phandle = <0x265>; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + status = "disabled"; + phandle = <0x266>; + + endpoint@4 { + port-index = <0x02>; + bus-width = <0x02>; + remote-endpoint = <0xc1>; + status = "disabled"; + phandle = <0x43>; + }; + }; + + port@1 { + reg = <0x01>; + status = "disabled"; + phandle = <0x267>; + + endpoint@5 { + remote-endpoint = <0xc2>; + status = "disabled"; + phandle = <0x7d>; + }; + }; + }; + }; + + channel@3 { + reg = <0x03>; + status = "disabled"; + phandle = <0x268>; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + status = "disabled"; + phandle = <0x269>; + + endpoint@6 { + port-index = <0x03>; + bus-width = <0x02>; + remote-endpoint = <0xc3>; + status = "disabled"; + phandle = <0x44>; + }; + }; + + port@1 { + reg = <0x01>; + status = "disabled"; + phandle = <0x26a>; + + endpoint@7 { + remote-endpoint = <0xc4>; + status = "disabled"; + phandle = <0x7e>; + }; + }; + }; + }; + + channel@4 { + reg = <0x04>; + status = "disabled"; + phandle = <0x26b>; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + status = "disabled"; + phandle = <0x26c>; + + endpoint@8 { + port-index = <0x04>; + bus-width = <0x02>; + remote-endpoint = <0xc5>; + status = "disabled"; + phandle = <0x45>; + }; + }; + + port@1 { + reg = <0x01>; + status = "disabled"; + phandle = <0x26d>; + + endpoint@9 { + remote-endpoint = <0xc6>; + status = "disabled"; + phandle = <0x7f>; + }; + }; + }; + }; + + channel@5 { + reg = <0x05>; + status = "disabled"; + phandle = <0x26e>; + + ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + status = "disabled"; + phandle = <0x26f>; + + endpoint@10 { + port-index = <0x06>; + bus-width = <0x02>; + remote-endpoint = <0xc7>; + status = "disabled"; + phandle = <0x46>; + }; + }; + + port@1 { + reg = <0x01>; + status = "disabled"; + phandle = <0x270>; + + endpoint@11 { + remote-endpoint = <0xc8>; + status = "disabled"; + phandle = <0x80>; + }; + }; + }; + }; + }; + + pva0 { + compatible = "nvidia,tegra234-pva"; + power-domains = <0x04 0x1e>; + reg = <0x00 0x16000000 0x00 0x800000>; + interrupts = <0x00 0xea 0x04 0x00 0x1b0 0x04 0x00 0x1b1 0x04 0x00 0x1b2 0x04 0x00 0x1b3 0x04 0x00 0x1b4 0x04 0x00 0x1b5 0x04 0x00 0x1b6 0x04 0x00 0x1b7 0x04>; + resets = <0x04 0x42>; + clocks = <0x04 0x127 0x04 0xd4 0x04 0x129>; + clock-names = "axi\0vps0\0vps1"; + iommus = <0x22 0x2c 0x22 0x12 0x22 0x13 0x22 0x14 0x22 0x15 0x22 0x16 0x22 0x17 0x22 0x18 0x22 0x19>; + dma-coherent; + status = "okay"; + phandle = <0x07>; + }; + + nvdla0@15880000 { + compatible = "nvidia,tegra234-nvdla"; + power-domains = <0x04 0x20>; + reg = <0x00 0x15880000 0x00 0x40000>; + interrupts = <0x00 0xec 0x04>; + resets = <0x04 0x06>; + clocks = <0x04 0xaf 0x04 0xae>; + clock-names = "nvdla0\0nvdla0_flcn"; + iommus = <0x22 0x2b>; + dma-coherent; + status = "okay"; + phandle = <0x05>; + }; + + nvdla1@158c0000 { + compatible = "nvidia,tegra234-nvdla"; + power-domains = <0x04 0x21>; + reg = <0x00 0x158c0000 0x00 0x40000>; + interrupts = <0x00 0xed 0x04>; + resets = <0x04 0x07>; + clocks = <0x04 0xb1 0x04 0xb0>; + clock-names = "nvdla1\0nvdla1_flcn"; + iommus = <0x02 0x23>; + dma-coherent; + status = "okay"; + phandle = <0x06>; + }; + + se@15810000 { + compatible = "nvidia,tegra234-se1-nvhost"; + reg = <0x00 0x15810000 0x00 0x10000>; + supported-algos = "drbg"; + nvidia,io-coherent; + opcode_addr = <0x1004>; + resets = <0x04 0x56>; + clocks = <0x04 0x7c>; + clock-names = "se"; + iommus = <0x22 0x2d>; + dma-coherent; + status = "okay"; + }; + + se@15820000 { + compatible = "nvidia,tegra234-se2-nvhost"; + reg = <0x00 0x15820000 0x00 0x10000>; + supported-algos = "aes\0cmac\0xts\0aead"; + nvidia,io-coherent; + opcode_addr = <0x2004>; + resets = <0x04 0x56>; + clocks = <0x04 0x7c>; + clock-names = "se"; + iommus = <0x22 0x2e>; + dma-coherent; + status = "okay"; + }; + + se@15840000 { + compatible = "nvidia,tegra234-se4-nvhost"; + reg = <0x00 0x15840000 0x00 0x10000>; + supported-algos = "sha\0sha3\0hmac"; + nvidia,io-coherent; + opcode_addr = <0x4004>; + resets = <0x04 0x56>; + clocks = <0x04 0x7c>; + clock-names = "se"; + iommus = <0x22 0x2f>; + dma-coherent; + status = "okay"; + }; + }; + + mods_smmu { + compatible = "nvidia,mods_smmu"; + iommus = <0x02 0x18>; + non-coherent; + dev-names = "mods_smmu"; + status = "disabled"; + phandle = <0x271>; + }; + + mods_pcie0 { + compatible = "nvidia,mods_smmu"; + iommus = <0x02 0x12>; + dma-coherent; + dev-names = "mods_pcie0"; + status = "disabled"; + nvidia,bpmp = <0x04 0x00>; + phandle = <0x272>; + }; + + mods_pcie1 { + compatible = "nvidia,mods_smmu"; + iommus = <0x22 0x05>; + dma-coherent; + dev-names = "mods_pcie1"; + status = "disabled"; + nvidia,bpmp = <0x04 0x01>; + phandle = <0x273>; + }; + + mods_pcie2 { + compatible = "nvidia,mods_smmu"; + iommus = <0x22 0x06>; + dma-coherent; + dev-names = "mods_pcie2"; + status = "disabled"; + nvidia,bpmp = <0x04 0x02>; + phandle = <0x274>; + }; + + mods_pcie3 { + compatible = "nvidia,mods_smmu"; + iommus = <0x22 0x07>; + dma-coherent; + dev-names = "mods_pcie3"; + status = "disabled"; + nvidia,bpmp = <0x04 0x03>; + phandle = <0x275>; + }; + + mods_pcie4 { + compatible = "nvidia,mods_smmu"; + iommus = <0x02 0x13>; + dma-coherent; + dev-names = "mods_pcie4"; + status = "disabled"; + nvidia,bpmp = <0x04 0x04>; + phandle = <0x276>; + }; + + mods_pcie5 { + compatible = "nvidia,mods_smmu"; + iommus = <0x02 0x14>; + dma-coherent; + dev-names = "mods_pcie5"; + status = "disabled"; + nvidia,bpmp = <0x04 0x05>; + phandle = <0x277>; + }; + + mods_pcie6 { + compatible = "nvidia,mods_smmu"; + iommus = <0x02 0x15>; + dma-coherent; + dev-names = "mods_pcie6"; + status = "disabled"; + nvidia,bpmp = <0x04 0x06>; + phandle = <0x278>; + }; + + mods_pcie7 { + compatible = "nvidia,mods_smmu"; + iommus = <0x22 0x08>; + dma-coherent; + dev-names = "mods_pcie7"; + status = "disabled"; + nvidia,bpmp = <0x04 0x07>; + phandle = <0x279>; + }; + + mods_pcie8 { + compatible = "nvidia,mods_smmu"; + iommus = <0x22 0x09>; + dma-coherent; + dev-names = "mods_pcie8"; + status = "disabled"; + nvidia,bpmp = <0x04 0x08>; + phandle = <0x27a>; + }; + + mods_pcie9 { + compatible = "nvidia,mods_smmu"; + iommus = <0x02 0x1f>; + dma-coherent; + dev-names = "mods_pcie9"; + status = "disabled"; + nvidia,bpmp = <0x04 0x09>; + phandle = <0x27b>; + }; + + mods_pcie10 { + compatible = "nvidia,mods_smmu"; + iommus = <0x22 0x0b>; + dma-coherent; + dev-names = "mods_pcie10"; + status = "disabled"; + nvidia,bpmp = <0x04 0x0a>; + phandle = <0x27c>; + }; + + mods_isp { + compatible = "nvidia,mods_smmu"; + iommus = <0x22 0x28>; + dma-coherent; + dev-names = "mods_isp"; + status = "disabled"; + phandle = <0x27d>; + }; + + mods_test { + compatible = "nvidia,mods_test"; + status = "disabled"; + phandle = <0x27e>; + }; + + mods_dma { + compatible = "nvidia,mods_smmu"; + iommus = <0x02 0x04>; + dma-coherent; + dev-names = "mods_dma"; + status = "disabled"; + phandle = <0x27f>; + }; + + mods_qspi0_dma { + compatible = "nvidia,mods_smmu"; + iommus = <0x22 0x0c>; + dma-coherent; + dev-names = "mods_qspi0_dma"; + status = "disabled"; + phandle = <0x280>; + }; + + mods_qspi1_dma { + compatible = "nvidia,mods_smmu"; + iommus = <0x22 0x0d>; + dma-coherent; + dev-names = "mods_qspi1_dma"; + status = "disabled"; + phandle = <0x281>; + }; + + safetysrv_cfg { + compatible = "nvguard,safetysrv_cfg_param"; + status = "disabled"; + l1ss_heartbeat_timeint = <0x1e>; + diag_period = <0x04>; + srv_deadline = <0x02>; + l1ss_startup_timeout = <0x1770>; + driveosuser_vmid = <0x04>; + ist_vmid = <0x04>; + phandle = <0x282>; + }; + + ecthreshold_cfg { + compatible = "nvguard,ecthreshold_cfg_param"; + status = "disable"; + default_threshold = <0x00>; + num_ec = <0x9b>; + eclist = <0x01 0x2002b40 0x01 0x2002b41 0x01 0x2002b42 0x01 0x2002b43 0x01 0x2002b44 0x01 0x2002b45 0x01 0x2002b46 0x01 0x2002b47 0x01 0x2002b48 0x01 0x2002b49 0x01 0x2002b4a 0x01 0x2002b4b 0x01 0x2002b4c 0x01 0x2002b4d 0x01 0x2002b4e 0x01 0x2002b4f 0x01 0x2002b50 0x01 0x2002b51 0x01 0x2002b52 0x01 0x2002f54 0x01 0x2003355 0x01 0x2006f56 0x01 0x2004758 0x01 0x2004759 0x01 0x200475a 0x01 0x200475b 0x00 0x200e75c 0x01 0x2004f5e 0x01 0x2004f5f 0x01 0x2004f60 0x01 0x2004f61 0x01 0x2004f62 0x01 0x2004f63 0x01 0x2004f64 0x01 0x2004f65 0x01 0x2004f66 0x01 0x2004f67 0x01 0x2004f68 0x01 0x2004f69 0x01 0x2004f6a 0x01 0x2004f6b 0x01 0x2004f6c 0x01 0x2004f6d 0x01 0x200ff6e 0x01 0x200ff6f 0x01 0x200ff70 0x01 0x200ff71 0x01 0x200ff72 0x01 0x200ff73 0x01 0x200ff74 0x01 0x200ff75 0x01 0x200ff76 0x01 0x200ff77 0x01 0x200ff78 0x01 0x200ff79 0x01 0x200ff7a 0x01 0x200ff7b 0x01 0x200ff7c 0x01 0x200ff7d 0x01 0x2004f7e 0x01 0x2004f7f 0x01 0x2004f80 0x01 0x2004f81 0x01 0x2006b82 0x01 0x2006b83 0x01 0x2006b84 0x01 0x2006b85 0x01 0x2006b86 0x01 0x200cb87 0x01 0x2004f88 0x01 0x2005389 0x01 0x200538a 0x01 0x200538b 0x01 0x200538c 0x01 0x200538d 0x01 0x200538e 0x01 0x200538f 0x01 0x2005390 0x01 0x2005391 0x01 0x2005394 0x01 0x200e796 0x01 0x200e797 0x01 0x200fba0 0x01 0x200fba1 0x01 0x200fba2 0x01 0x200fba3 0x01 0x200fba4 0x01 0x200fba5 0x01 0x200fba6 0x01 0x200fba7 0x01 0x200fba8 0x01 0x200fba9 0x01 0x200fbaa 0x01 0x200fbab 0x01 0x200fbac 0x01 0x200fbad 0x01 0x200fbae 0x01 0x200fbaf 0x01 0x200fbb0 0x01 0x200fbb1 0x01 0x200fbb2 0x01 0x200fbb3 0x01 0x200fbb4 0x01 0x200fbb5 0x01 0x200fbb6 0x01 0x200fbb7 0x01 0x200fbb8 0x01 0x200fbb9 0x01 0x200fbba 0x01 0x200fbbb 0x01 0x200fbbc 0x01 0x200fbbd 0x01 0x200fbbe 0x01 0x200fbbf 0x01 0x200fbc0 0x01 0x200fbc1 0x01 0x200fbc2 0x01 0x200fbc3 0x01 0x200fbc4 0x01 0x200fbc5 0x01 0x200fbc6 0x01 0x200fbc7 0x01 0x200fbc8 0x01 0x200fbc9 0x01 0x200fbca 0x01 0x200fbcb 0x01 0x200fbcc 0x01 0x200fbcd 0x01 0x200fbce 0x01 0x200fbcf 0x01 0x200fbd0 0x01 0x200fbd1 0x01 0x200fbd2 0x01 0x200fbd3 0x01 0x200fbd4 0x01 0x200fbd5 0x01 0x200fbd6 0x01 0x200fbd7 0x01 0x20023d9 0x01 0x20023da 0x01 0x2000bdb 0x01 0x2000be1 0x01 0x200bbf0 0x01 0x2008ff2 0x01 0x20093f3 0x01 0x200f7f4 0x01 0x200ebf5 0x01 0x200abf6 0x01 0x200abf7 0x01 0x200aff8 0x01 0x200aff9 0x01 0x20063fa 0x01 0x2004bfb 0x01 0x2004bfc 0x01 0x2010bfd>; + phandle = <0x283>; + }; + + nvguard_service_smmu_diag_mmu500_parity { + status = "disabled"; + CorrectedParityErrThreshold = <0x00>; + }; + + nvguard_service_sample_1 { + compatible = "nvidia,safetysrv_servprop"; + ServiceID = <0x120100a>; + Periodic = <0x01>; + MissionBlocked = <0x00>; + UserTrigger = <0x00>; + BootPrerequisite = <0x00>; + }; + + nvguard_service_sample_2 { + compatible = "nvidia,safetysrv_servprop"; + ServiceID = <0x1201000>; + Periodic = <0x00>; + MissionBlocked = <0x00>; + UserTrigger = <0x00>; + BootPrerequisite = <0x00>; + }; + + nvguard_service_sample_3 { + compatible = "nvidia,safetysrv_servprop"; + ServiceID = <0x1201001>; + Periodic = <0x00>; + MissionBlocked = <0x00>; + UserTrigger = <0x00>; + BootPrerequisite = <0x00>; + }; + + nvguard_service_sce_diag_noc_bist { + compatible = "nvidia,safetysrv_servprop"; + ServiceID = <0x2200800>; + Periodic = <0x00>; + MissionBlocked = <0x00>; + UserTrigger = <0x00>; + BootPrerequisite = <0x00>; + }; + + nvguard_service_sce_diag_scelic_monitorerror { + compatible = "nvidia,safetysrv_servprop"; + ServiceID = <0x2200801>; + Periodic = <0x00>; + MissionBlocked = <0x00>; + UserTrigger = <0x00>; + BootPrerequisite = <0x00>; + }; + + nvguard_service_sce_diag_hsmconfig_monitor { + compatible = "nvidia,safetysrv_servprop"; + ServiceID = <0x2200802>; + Periodic = <0x00>; + MissionBlocked = <0x00>; + UserTrigger = <0x00>; + BootPrerequisite = <0x00>; + }; + + nvguard_service_spi2_diag_e2e_check { + compatible = "nvidia,safetysrv_servprop"; + ServiceID = <0x2205800>; + Periodic = <0x00>; + MissionBlocked = <0x00>; + UserTrigger = <0x00>; + BootPrerequisite = <0x00>; + }; + + nvguard_service_pinmux_padring_diag_periodic_check { + compatible = "nvidia,safetysrv_servprop"; + ServiceID = <0x220a400>; + Periodic = <0x00>; + MissionBlocked = <0x00>; + UserTrigger = <0x00>; + BootPrerequisite = <0x00>; + }; + + nvguard_service_dramecc_diag_startup_test { + compatible = "nvidia,safetysrv_servprop"; + ServiceID = <0x220e000>; + Periodic = <0x00>; + MissionBlocked = <0x01>; + UserTrigger = <0x00>; + BootPrerequisite = <0x00>; + }; + + stm@24080000 { + compatible = "arm,coresight-stm\0arm,primecell"; + reg = <0x00 0x24080000 0x00 0x1000 0x00 0x25000000 0x00 0x1000000>; + reg-names = "stm-base\0stm-stimulus-base"; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + + port { + + endpoint { + remote-endpoint = <0xc9>; + phandle = <0xea>; + }; + }; + }; + }; + + cpu0_etm@27040000 { + compatible = "arm,coresight-etm4x\0arm,primecell"; + reg = <0x00 0x27040000 0x00 0x1000>; + cpu = <0x83>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + + port { + + endpoint { + remote-endpoint = <0xca>; + phandle = <0xd7>; + }; + }; + }; + }; + + cpu1_etm@27140000 { + compatible = "arm,coresight-etm4x\0arm,primecell"; + reg = <0x00 0x27140000 0x00 0x1000>; + cpu = <0x84>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + + port { + + endpoint { + remote-endpoint = <0xcb>; + phandle = <0xd8>; + }; + }; + }; + }; + + cpu2_etm@27240000 { + compatible = "arm,coresight-etm4x\0arm,primecell"; + reg = <0x00 0x27240000 0x00 0x1000>; + cpu = <0x85>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + + port { + + endpoint { + remote-endpoint = <0xcc>; + phandle = <0xd9>; + }; + }; + }; + }; + + cpu3_etm@27340000 { + compatible = "arm,coresight-etm4x\0arm,primecell"; + reg = <0x00 0x27340000 0x00 0x1000>; + cpu = <0x86>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + + port { + + endpoint { + remote-endpoint = <0xcd>; + phandle = <0xda>; + }; + }; + }; + }; + + cpu4_etm@27440000 { + compatible = "arm,coresight-etm4x\0arm,primecell"; + reg = <0x00 0x27440000 0x00 0x1000>; + cpu = <0x87>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + + port { + + endpoint { + remote-endpoint = <0xce>; + phandle = <0xdc>; + }; + }; + }; + }; + + cpu5_etm@27540000 { + compatible = "arm,coresight-etm4x\0arm,primecell"; + reg = <0x00 0x27540000 0x00 0x1000>; + cpu = <0x88>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + + port { + + endpoint { + remote-endpoint = <0xcf>; + phandle = <0xdd>; + }; + }; + }; + }; + + cpu6_etm@27640000 { + compatible = "arm,coresight-etm4x\0arm,primecell"; + reg = <0x00 0x27640000 0x00 0x1000>; + cpu = <0x89>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + + port { + + endpoint { + remote-endpoint = <0xd0>; + phandle = <0xde>; + }; + }; + }; + }; + + cpu7_etm@27740000 { + compatible = "arm,coresight-etm4x\0arm,primecell"; + reg = <0x00 0x27740000 0x00 0x1000>; + cpu = <0x8a>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + + port { + + endpoint { + remote-endpoint = <0xd1>; + phandle = <0xdf>; + }; + }; + }; + }; + + cpu8_etm@27840000 { + compatible = "arm,coresight-etm4x\0arm,primecell"; + reg = <0x00 0x27840000 0x00 0x1000>; + cpu = <0x8b>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + + port { + + endpoint { + remote-endpoint = <0xd2>; + phandle = <0xe1>; + }; + }; + }; + }; + + cpu9_etm@27940000 { + compatible = "arm,coresight-etm4x\0arm,primecell"; + reg = <0x00 0x27940000 0x00 0x1000>; + cpu = <0x8c>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + + port { + + endpoint { + remote-endpoint = <0xd3>; + phandle = <0xe2>; + }; + }; + }; + }; + + cpu10_etm@27A40000 { + compatible = "arm,coresight-etm4x\0arm,primecell"; + reg = <0x00 0x27a40000 0x00 0x1000>; + cpu = <0x8d>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + + port { + + endpoint { + remote-endpoint = <0xd4>; + phandle = <0xe3>; + }; + }; + }; + }; + + cpu11_etm@27B40000 { + compatible = "arm,coresight-etm4x\0arm,primecell"; + reg = <0x00 0x27b40000 0x00 0x1000>; + cpu = <0x8e>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + + port { + + endpoint { + remote-endpoint = <0xd5>; + phandle = <0xe4>; + }; + }; + }; + }; + + funnel_ccplex0@26030000 { + compatible = "arm,coresight-dynamic-funnel\0arm,primecell"; + reg = <0x00 0x26030000 0x00 0x1000>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + remote-endpoint = <0xd6>; + phandle = <0xe6>; + }; + }; + }; + + in-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + slave-mode; + remote-endpoint = <0xd7>; + phandle = <0xca>; + }; + }; + + port@1 { + reg = <0x01>; + + endpoint { + slave-mode; + remote-endpoint = <0xd8>; + phandle = <0xcb>; + }; + }; + + port@2 { + reg = <0x02>; + + endpoint { + slave-mode; + remote-endpoint = <0xd9>; + phandle = <0xcc>; + }; + }; + + port@3 { + reg = <0x03>; + + endpoint { + slave-mode; + remote-endpoint = <0xda>; + phandle = <0xcd>; + }; + }; + }; + }; + + funnel_ccplex1@26040000 { + compatible = "arm,coresight-dynamic-funnel\0arm,primecell"; + reg = <0x00 0x26040000 0x00 0x1000>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + remote-endpoint = <0xdb>; + phandle = <0xe7>; + }; + }; + }; + + in-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + slave-mode; + remote-endpoint = <0xdc>; + phandle = <0xce>; + }; + }; + + port@1 { + reg = <0x01>; + + endpoint { + slave-mode; + remote-endpoint = <0xdd>; + phandle = <0xcf>; + }; + }; + + port@2 { + reg = <0x02>; + + endpoint { + slave-mode; + remote-endpoint = <0xde>; + phandle = <0xd0>; + }; + }; + + port@3 { + reg = <0x03>; + + endpoint { + slave-mode; + remote-endpoint = <0xdf>; + phandle = <0xd1>; + }; + }; + }; + }; + + funnel_ccplex2@26050000 { + compatible = "arm,coresight-dynamic-funnel\0arm,primecell"; + reg = <0x00 0x26050000 0x00 0x1000>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + remote-endpoint = <0xe0>; + phandle = <0xe8>; + }; + }; + }; + + in-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + slave-mode; + remote-endpoint = <0xe1>; + phandle = <0xd2>; + }; + }; + + port@1 { + reg = <0x01>; + + endpoint { + slave-mode; + remote-endpoint = <0xe2>; + phandle = <0xd3>; + }; + }; + + port@2 { + reg = <0x02>; + + endpoint { + slave-mode; + remote-endpoint = <0xe3>; + phandle = <0xd4>; + }; + }; + + port@3 { + reg = <0x03>; + + endpoint { + slave-mode; + remote-endpoint = <0xe4>; + phandle = <0xd5>; + }; + }; + }; + }; + + funnel_top_ccplex@26020000 { + compatible = "arm,coresight-dynamic-funnel\0arm,primecell"; + reg = <0x00 0x26020000 0x00 0x1000>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + remote-endpoint = <0xe5>; + phandle = <0xeb>; + }; + }; + }; + + in-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + slave-mode; + remote-endpoint = <0xe6>; + phandle = <0xd6>; + }; + }; + + port@1 { + reg = <0x01>; + + endpoint { + slave-mode; + remote-endpoint = <0xe7>; + phandle = <0xdb>; + }; + }; + + port@2 { + reg = <0x02>; + + endpoint { + slave-mode; + remote-endpoint = <0xe8>; + phandle = <0xe0>; + }; + }; + }; + }; + + funnel_major@24040000 { + compatible = "arm,coresight-dynamic-funnel\0arm,primecell"; + reg = <0x00 0x24040000 0x00 0x1000>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + out-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@0 { + reg = <0x00>; + + endpoint { + remote-endpoint = <0xe9>; + phandle = <0xee>; + }; + }; + }; + + in-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port@1 { + reg = <0x01>; + + endpoint { + slave-mode; + remote-endpoint = <0xea>; + phandle = <0xc9>; + }; + }; + + port@2 { + reg = <0x02>; + + endpoint { + slave-mode; + remote-endpoint = <0xeb>; + phandle = <0xe5>; + }; + }; + }; + }; + + replicator@24060000 { + compatible = "arm,coresight-dynamic-replicator\0arm,primecell"; + reg = <0x00 0x24060000 0x00 0x1000>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + in-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port { + reg = <0x00>; + + endpoint { + slave-mode; + remote-endpoint = <0xec>; + phandle = <0xef>; + }; + }; + }; + + out-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port { + reg = <0x00>; + + endpoint { + remote-endpoint = <0xed>; + phandle = <0xf0>; + }; + }; + }; + }; + + etf@24050000 { + compatible = "arm,coresight-tmc\0arm,primecell"; + reg = <0x00 0x24050000 0x00 0x1000>; + coresight-default-sink; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + in-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port { + reg = <0x00>; + + endpoint { + slave-mode; + remote-endpoint = <0xee>; + phandle = <0xe9>; + }; + }; + }; + + out-ports { + #address-cells = <0x01>; + #size-cells = <0x00>; + + port { + reg = <0x00>; + + endpoint { + remote-endpoint = <0xef>; + phandle = <0xec>; + }; + }; + }; + }; + + etr@24070000 { + compatible = "arm,coresight-tmc\0arm,primecell"; + reg = <0x00 0x24070000 0x00 0x1000>; + clocks = <0x04 0xd5 0x04 0xa8>; + clock-names = "apb_pclk\0atclk"; + status = "disabled"; + + in-ports { + + port { + + endpoint { + remote-endpoint = <0xf0>; + phandle = <0xed>; + }; + }; + }; + }; + + fsicom_client { + compatible = "nvidia,tegra234-fsicom-client"; + mboxes = <0xf1 0x01 0x80000003 0xf1 0x01 0x02>; + mbox-names = "fsi-tx\0fsi-rx"; + iommus = <0x22 0x11>; + iommu-resv-regions = <0x00 0x00 0x00 0xf0000000 0x00 0xf1000000 0xffffffff 0xffffffff>; + dma-coherent; + status = "disabled"; + }; + + FsiComAppChConfApp1 { + compatible = "nvidia,tegra-fsicom-sampleApp1"; + status = "disabled"; + channelid_list = <0x00>; + }; + + FsiComQnxAppChConfAppGR { + compatible = "nvidia,tegra-fsicom-sampleAppGR"; + status = "disabled"; + channelid_list = <0x02>; + }; + + FsiComAppChConfApp2 { + compatible = "nvidia,tegra-fsicom-sampleApp2"; + status = "disabled"; + channelid_list = <0x01>; + }; + + FsiComIvc { + compatible = "nvidia,tegra-fsicom-channels"; + status = "disabled"; + nChannel = <0x03>; + + channel_0 { + frame-count = <0x04>; + frame-size = <0x40>; + NvSciCh = "nvfsicom_app1"; + }; + + channel_1 { + frame-count = <0x02>; + frame-size = <0x200>; + NvSciCh = "nvfsicom_app2"; + }; + + channel_2 { + frame-count = <0x04>; + frame-size = <0x40>; + NvSciCh = "nvfsicom_appGR"; + }; + }; + + uss-asic { + compatible = "nvidia,uss-io-proxy"; + reg = <0x00 0x2460000 0x00 0x124>; + clocks = <0x04 0x1a8>; + clock-names = "i2s8"; + resets = <0x04 0x4f>; + reset-names = "i2s8"; + status = "disabled"; + }; + + firmware { + + optee { + compatible = "linaro,optee-tz"; + method = "smc"; + status = "disabled"; + }; + }; + + timer@3010000 { + compatible = "nvidia,tegra186-timer"; + interrupts = <0x00 0x00 0x04 0x00 0x01 0x04 0x00 0x02 0x04 0x00 0x03 0x04 0x00 0x04 0x04 0x00 0x05 0x04 0x00 0x06 0x04 0x00 0x07 0x04>; + clock-frequency = <0x124f800>; + reg = <0x00 0x3010000 0x00 0xe0000>; + tmr-count = <0x0a>; + wdt-count = <0x03>; + status = "disabled"; + }; + + tegra194-pm-irq { + compatible = "nvidia,tegra194-pm-irq"; + interrupt-controller; + #interrupt-cells = <0x03>; + interrupt-parent = <0x01>; + status = "disabled"; + phandle = <0x284>; + }; + + rtc@c2a0000 { + compatible = "nvidia,tegra18-rtc"; + reg = <0x00 0xc2a0000 0x00 0x10000>; + interrupt-parent = <0xf2>; + interrupts = <0x49 0x04>; + status = "okay"; + phandle = <0x285>; + }; + + chipid@100000 { + compatible = "nvidia,tegra186-chipid"; + reg = <0x00 0x100000 0x00 0x10000>; + status = "okay"; + }; + + miscreg@00100000 { + compatible = "nvidia,tegra194-misc\0nvidia,tegra186-miscreg"; + reg = <0x00 0x100000 0x00 0xf000 0x00 0x10f000 0x00 0x1000>; + status = "disabled"; + }; + + tegra-hsp@c150000 { + compatible = "nvidia,tegra186-hsp"; + reg = <0x00 0xc150000 0x00 0x90000>; + interrupts = <0x00 0x85 0x04 0x00 0x86 0x04 0x00 0x87 0x04 0x00 0x88 0x04>; + interrupt-names = "shared1\0shared2\0shared3\0shared4"; + #mbox-cells = <0x02>; + nvidia,mbox-ie; + status = "okay"; + phandle = <0x32>; + }; + + tegra-hsp@3c00000 { + compatible = "nvidia,tegra186-hsp"; + reg = <0x00 0x3c00000 0x00 0xa0000>; + interrupts = <0x00 0xb0 0x04 0x00 0x78 0x04 0x00 0x79 0x04 0x00 0x7a 0x04 0x00 0x7b 0x04 0x00 0x7c 0x04 0x00 0x7d 0x04 0x00 0x7e 0x04 0x00 0x7f 0x04>; + interrupt-names = "doorbell\0shared0\0shared1\0shared2\0shared3\0shared4\0shared5\0shared6\0shared7"; + #mbox-cells = <0x02>; + nvidia,mbox-ie; + status = "okay"; + phandle = <0x31>; + }; + + tegra-hsp@3d00000 { + compatible = "nvidia,tegra186-hsp"; + reg = <0x00 0x3d00000 0x00 0xa0000>; + interrupts = <0x00 0x80 0x04 0x00 0x81 0x04 0x00 0x82 0x04 0x00 0x83 0x04 0x00 0x84 0x04>; + interrupt-names = "shared0\0shared1\0shared2\0shared3\0shared4"; + #mbox-cells = <0x02>; + status = "okay"; + phandle = <0x82>; + }; + + tegra-hsp@1600000 { + compatible = "nvidia,tegra186-hsp"; + reg = <0x00 0x1600000 0x00 0x90000>; + interrupts = <0x00 0x109 0x04 0x00 0x10a 0x04 0x00 0x10b 0x04 0x00 0x10c 0x04 0x00 0x10d 0x04 0x00 0x10e 0x04 0x00 0x10f 0x04 0x00 0x110 0x04>; + interrupt-names = "shared0\0shared1\0shared2\0shared3\0shared4\0shared5\0shared6\0shared7"; + #mbox-cells = <0x02>; + nvidia,mbox-ie; + status = "disabled"; + phandle = <0xf1>; + }; + + tegra-hsp@b150000 { + compatible = "nvidia,tegra186-hsp"; + reg = <0x00 0xb150000 0x00 0x90000>; + interrupts = <0x00 0x8d 0x04 0x00 0x8e 0x04 0x00 0x8f 0x04 0x00 0x90 0x04>; + interrupt-names = "shared1\0shared2\0shared3\0shared4"; + nvidia,mbox-ie; + status = "disabled"; + phandle = <0x73>; + }; + + tegra-hsp@b950000 { + compatible = "nvidia,tegra186-hsp"; + reg = <0x00 0xb950000 0x00 0x90000>; + interrupts = <0x00 0xb6 0x04 0x00 0xb7 0x04 0x00 0xb8 0x04 0x00 0xb9 0x04>; + nvidia,mbox-ie; + #mbox-cells = <0x02>; + interrupt-names = "shared1\0shared2\0shared3\0shared4"; + status = "okay"; + phandle = <0x76>; + }; + + efuse@3810000 { + compatible = "nvidia,tegra234-efuse"; + reg = <0x00 0x3810000 0x00 0x19000>; + clocks = <0x04 0x28 0x04 0x0e>; + clock-names = "fuse\0clk_m"; + status = "okay"; + }; + + efuse-burn { + compatible = "nvidia,tegra234-efuse-burn"; + clocks = <0x04 0x0e>; + clock-names = "clk_m"; + status = "okay"; + }; + + sysram@40000000 { + compatible = "nvidia,tegra194-sysram\0mmio-sram"; + reg = <0x00 0x40000000 0x00 0x72000>; + #address-cells = <0x01>; + #size-cells = <0x01>; + ranges = <0x00 0x00 0x40000000 0x72000>; + + shmem@70000 { + compatible = "nvidia,tegra194-bpmp-shmem"; + reg = <0x70000 0x1000>; + label = "cpu-bpmp-tx"; + pool; + phandle = <0xf3>; + }; + + shmem@71000 { + compatible = "nvidia,tegra194-bpmp-shmem"; + reg = <0x71000 0x1000>; + label = "cpu-bpmp-rx"; + pool; + phandle = <0xf4>; + }; + }; + + bpmp { + reg = <0x00 0x3c90000 0x00 0x1000 0x00 0x40070000 0x00 0x1000 0x00 0x40071000 0x00 0x1000>; + compatible = "nvidia,tegra234-bpmp\0nvidia,tegra186-bpmp"; + interrupts = <0x00 0xb0 0x04>; + interrupt-names = "doorbell"; + mboxes = <0x31 0x00 0x13>; + shmem = <0xf3 0xf4>; + #clock-cells = <0x01>; + #reset-cells = <0x01>; + #power-domain-cells = <0x01>; + interconnects = <0x24 0x93 0x24 0x94 0x24 0x95 0x24 0x96>; + interconnect-names = "dma-mem\0dma-mem\0dma-mem\0dma-mem"; + status = "okay"; + phandle = <0x04>; + + i2c { + compatible = "nvidia,tegra186-bpmp-i2c"; + nvidia,bpmp-bus-id = <0x05>; + #address-cells = <0x01>; + #size-cells = <0x00>; + phandle = <0x286>; + + vrs@3c { + compatible = "nvidia,vrs-pseq"; + reg = <0x3c>; + interrupt-parent = <0x01>; + interrupts = <0x00 0xd1 0x04>; + interrupt-controller; + #interrupt-cells = <0x03>; + status = "disabled"; + + rtc { + status = "disabled"; + phandle = <0x287>; + }; + }; + + temp-sensor@4c { + status = "okay"; + #thermal-sensor-cells = <0x01>; + compatible = "ti,tmp451"; + reg = <0x4c>; + sensor-name = "tmp451-ext"; + supported-hwrev = <0x01>; + offset = <0xfffffff0>; + conv-rate = <0x06>; + extended-rage = <0x01>; + interrupt-parent = <0x14>; + interrupts = <0x31 0x08>; + temp-alert-gpio = <0x14 0x31 0x00>; + vdd-supply = <0x3a>; + phandle = <0xba>; + + loc { + shutdown-limit = <0x6b>; + }; + + ext { + shutdown-limit = <0x6b>; + }; + }; + }; + + bpmpthermal { + compatible = "nvidia,tegra186-bpmp-thermal"; + #thermal-sensor-cells = <0x01>; + status = "okay"; + phandle = <0x9f>; + }; + }; + + nvrng@3ae0000 { + compatible = "nvidia,tegra234-se-nvrng"; + reg-names = "rng1\0sap"; + reg = <0x00 0x3ae0000 0x00 0x10000 0x00 0x3ac0000 0x00 0x10000>; + interrupts = <0x00 0x11c 0x04>; + clocks = <0x04 0x7c>; + clock-names = "se"; + status = "okay"; + }; + + gpio@2200000 { + compatible = "nvidia,tegra234-gpio"; + reg-names = "security\0gpio"; + reg = <0x00 0x2200000 0x00 0x10000 0x00 0x2210000 0x00 0x10000>; + interrupts = <0x00 0x120 0x04 0x00 0x121 0x04 0x00 0x122 0x04 0x00 0x123 0x04 0x00 0x124 0x04 0x00 0x125 0x04 0x00 0x126 0x04 0x00 0x127 0x04 0x00 0x128 0x04 0x00 0x129 0x04 0x00 0x12a 0x04 0x00 0x12b 0x04 0x00 0x12c 0x04 0x00 0x12d 0x04 0x00 0x12e 0x04 0x00 0x12f 0x04 0x00 0x130 0x04 0x00 0x131 0x04 0x00 0x132 0x04 0x00 0x133 0x04 0x00 0x134 0x04 0x00 0x135 0x04 0x00 0x136 0x04 0x00 0x137 0x04 0x00 0x138 0x04 0x00 0x139 0x04 0x00 0x13a 0x04 0x00 0x13b 0x04 0x00 0x13c 0x04 0x00 0x13d 0x04 0x00 0x13e 0x04 0x00 0x13f 0x04 0x00 0x140 0x04 0x00 0x141 0x04 0x00 0x142 0x04 0x00 0x143 0x04 0x00 0x144 0x04 0x00 0x145 0x04 0x00 0x146 0x04 0x00 0x147 0x04 0x00 0x148 0x04 0x00 0x149 0x04 0x00 0x14a 0x04 0x00 0x14b 0x04 0x00 0x14c 0x04 0x00 0x14d 0x04 0x00 0x14e 0x04 0x00 0x14f 0x04>; + gpio-controller; + #gpio-cells = <0x02>; + interrupt-controller; + #interrupt-cells = <0x02>; + status = "okay"; + phandle = <0x14>; + + camera-control-output-low { + gpio-hog; + output-low; + gpios = <0x3b 0x00 0x3e 0x00 0xa1 0x00 0xa0 0x00>; + label = "cam0-rst\0cam0-pwdn\0cam1-rst\0cam1-pwdn"; + }; + }; + + gpio@c2f0000 { + compatible = "nvidia,tegra234-gpio-aon"; + reg-names = "security\0gpio"; + reg = <0x00 0xc2f0000 0x00 0x1000 0x00 0xc2f1000 0x00 0x1000>; + interrupts = <0x00 0x38 0x04 0x00 0x39 0x04 0x00 0x3a 0x04 0x00 0x3b 0x04>; + gpio-controller; + #gpio-cells = <0x02>; + interrupt-controller; + #interrupt-cells = <0x02>; + status = "okay"; + phandle = <0x15>; + }; + + gte@3aa0000 { + compatible = "nvidia,tegra194-gte-lic"; + reg = <0x00 0x3aa0000 0x00 0x10000>; + interrupts = <0x00 0x0b 0x04>; + nvidia,int-threshold = <0x01>; + nvidia,num-slices = <0x11>; + status = "disabled"; + phandle = <0x288>; + }; + + gte@c1e0000 { + compatible = "nvidia,tegra234-gte-aon"; + reg = <0x00 0xc1e0000 0x00 0x10000>; + interrupts = <0x00 0x0d 0x04>; + nvidia,int-threshold = <0x01>; + nvidia,num-slices = <0x03>; + nvidia,gpio-controller = <0x15>; + status = "disabled"; + phandle = <0x289>; + }; + + watchdog@2190000 { + compatible = "nvidia,tegra-wdt-t234"; + reg = <0x00 0x2190000 0x00 0x10000 0x00 0x2090000 0x00 0x10000 0x00 0x2080000 0x00 0x10000>; + interrupts = <0x00 0x07 0x04 0x00 0x08 0x04>; + nvidia,watchdog-index = <0x00>; + nvidia,timer-index = <0x07>; + nvidia,enable-on-init; + nvidia,extend-watchdog-suspend; + timeout-sec = <0x78>; + nvidia,disable-debug-reset; + status = "okay"; + phandle = <0x28a>; + }; + + tegra_fiq_debugger { + compatible = "nvidia,fiq-debugger"; + use-console-port; + interrupts = <0x00 0x11 0x04>; + }; + + pinctrl@3790000 { + compatible = "nvidia,tegra194-pexclk-padctl"; + reg = <0x00 0x3790000 0x00 0x1000 0x00 0x37a0000 0x00 0x1000>; + status = "disabled"; + phandle = <0x28b>; + }; + + tachometer@39c0000 { + compatible = "nvidia,pwm-tegra234-tachometer"; + reg = <0x00 0x39c0000 0x00 0x10>; + #pwm-cells = <0x02>; + clocks = <0x04 0x98>; + clock-names = "tach"; + resets = <0x04 0x5f>; + reset-names = "tach"; + interrupts = <0x00 0xc0 0x04>; + pulse-per-rev = <0x02>; + capture-window-length = <0x02>; + disable-clk-gate; + status = "okay"; + upper-threshold = <0xfffff>; + lower-threshold = <0x00>; + phandle = <0xf5>; + }; + + tachometer@39b0000 { + compatible = "nvidia,pwm-tegra234-tachometer"; + reg = <0x00 0x39b0000 0x00 0x10>; + #pwm-cells = <0x02>; + clocks = <0x04 0x16d>; + clock-names = "tach"; + resets = <0x04 0x60>; + reset-names = "tach"; + interrupts = <0x00 0xc1 0x04>; + pulse-per-rev = <0x02>; + capture-window-length = <0x02>; + disable-clk-gate; + status = "disabled"; + phandle = <0xf6>; + }; + + generic_pwm_tachometer { + compatible = "generic-pwm-tachometer"; + pwms = <0xf5 0x00 0xf4240>; + status = "okay"; + }; + + generic_pwm_tachometer1 { + compatible = "generic-pwm-tachometer"; + pwms = <0xf6 0x00 0xf4240>; + status = "disabled"; + }; + + gpio-keys { + compatible = "gpio-keys"; + gpio-keys,name = "gpio-keys"; + status = "okay"; + + sw_wake { + label = "sw-wake"; + linux,code = <0x8f>; + wakeup-source; + interrupt-parent = <0xf2>; + interrupts = <0x53 0x01>; + }; + + forcerecovery { + label = "force-recovery"; + gpios = <0x14 0x30 0x01>; + linux,code = <0x101>; + }; + + power_key { + label = "power-key"; + gpios = <0x15 0x24 0x01>; + linux,code = <0x74>; + gpio-key,wakeup; + }; + + sleep { + label = "sleep"; + gpios = <0x14 0x32 0x01>; + linux,code = <0x8e>; + }; + }; + + xusb_padctl@3520000 { + compatible = "nvidia,tegra234-xusb-padctl"; + reg = <0x00 0x3520000 0x00 0x20000 0x00 0x3540000 0x00 0x10000>; + reg-names = "padctl\0ao"; + interrupts = <0x00 0xa7 0x04>; + resets = <0x04 0x72>; + reset-names = "padctl"; + status = "okay"; + vclamp-usb-supply = <0x25>; + avdd-usb-supply = <0x47>; + phandle = <0xf8>; + + pads { + + usb2 { + clocks = <0x04 0xa5>; + clock-names = "trk"; + + lanes { + + usb2-0 { + status = "okay"; + #phy-cells = <0x00>; + nvidia,function = "xusb"; + phandle = <0xf9>; + }; + + usb2-1 { + status = "okay"; + #phy-cells = <0x00>; + nvidia,function = "xusb"; + phandle = <0xfc>; + }; + + usb2-2 { + status = "okay"; + #phy-cells = <0x00>; + nvidia,function = "xusb"; + phandle = <0xfd>; + }; + + usb2-3 { + status = "okay"; + #phy-cells = <0x00>; + nvidia,function = "xusb"; + phandle = <0xfe>; + }; + }; + }; + + usb3 { + + lanes { + + usb3-0 { + status = "okay"; + #phy-cells = <0x00>; + nvidia,function = "xusb"; + phandle = <0xff>; + }; + + usb3-1 { + status = "okay"; + #phy-cells = <0x00>; + nvidia,function = "xusb"; + phandle = <0xfb>; + }; + + usb3-2 { + status = "okay"; + #phy-cells = <0x00>; + nvidia,function = "xusb"; + phandle = <0x100>; + }; + + usb3-3 { + status = "disabled"; + #phy-cells = <0x00>; + }; + }; + }; + }; + + ports { + + usb2-0 { + status = "okay"; + vbus-supply = <0x2e>; + mode = "otg"; + usb-role-switch; + + port { + + endpoint { + remote-endpoint = <0xf7>; + phandle = <0x39>; + }; + }; + }; + + usb2-1 { + status = "okay"; + vbus-supply = <0x2e>; + mode = "host"; + }; + + usb2-2 { + status = "okay"; + vbus-supply = <0x2e>; + mode = "host"; + }; + + usb2-3 { + status = "okay"; + vbus-supply = <0x2e>; + mode = "host"; + }; + + usb3-0 { + status = "okay"; + nvidia,usb2-companion = <0x01>; + }; + + usb3-1 { + status = "okay"; + nvidia,usb2-companion = <0x00>; + }; + + usb3-2 { + status = "okay"; + nvidia,usb2-companion = <0x03>; + }; + + usb3-3 { + status = "disabled"; + }; + }; + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x284 0x38 0x38 0x00 0x288 0x3fff000 0x51e000>; + }; + }; + }; + + usb_cd { + compatible = "nvidia,tegra234-usb-cd"; + nvidia,xusb-padctl = <0xf8>; + phys = <0xf9>; + phy-names = "otg-phy"; + status = "okay"; + phandle = <0xfa>; + }; + + xudc@3550000 { + compatible = "nvidia,tegra234-xudc"; + reg = <0x00 0x3550000 0x00 0x8000 0x00 0x3558000 0x00 0x8000 0x00 0x3520000 0x00 0x20000>; + reg-names = "base\0fpci\0padctl"; + interrupts = <0x00 0xa6 0x04>; + clocks = <0x04 0x109 0x04 0x115 0x04 0x113 0x04 0x110>; + clock-names = "dev\0ss\0ss_src\0fs_src"; + power-domains = <0x04 0x0b 0x04 0x0a 0x04 0x0c>; + power-domain-names = "dev\0ss\0host"; + nvidia,xusb-padctl = <0xf8>; + iommus = <0x22 0x0f>; + dma-coherent; + status = "okay"; + charger-detector = <0xfa>; + avdd-usb-supply = <0x47>; + phys = <0xf9 0xfb>; + phy-names = "usb2-0\0usb3-1"; + nvidia,boost_cpu_freq = <0x4b0>; + phandle = <0x28c>; + }; + + xhci@3610000 { + compatible = "nvidia,tegra234-xhci\0nvidia,tegra234-xusb"; + reg = <0x00 0x3610000 0x00 0x40000 0x00 0x3600000 0x00 0x10000 0x00 0x3650000 0x00 0x10000 0x00 0x3520000 0x00 0x20000 0x00 0x3540000 0x00 0x10000>; + reg-names = "base\0fpci\0bar2\0padctl\0ao"; + interrupts = <0x00 0xa3 0x04 0x00 0xa4 0x04 0x00 0xa7 0x04>; + clocks = <0x04 0x10a 0x04 0x10b 0x04 0x10c 0x04 0x10d 0x04 0x10e 0x04 0x10f 0x04 0x110 0x04 0x111 0x04 0x113 0x04 0x115 0x04 0x67 0x04 0x0e 0x04 0x64>; + clock-names = "xusb_hs_src\0xusb_host\0xusb_core_superspeed_clk\0xusb_falcon_src\0xusb_falcon_host_clk\0xusb_falcon_superspeed_clk\0xusb_fs_src\0xusb_fs_host_clk\0xusb_ss_src\0xusb_ss\0pll_u_480m\0clk_m\0pll_e"; + power-domains = <0x04 0x0c 0x04 0x0a>; + power-domain-names = "xusb_host\0xusb_ss"; + nvidia,xusb-padctl = <0xf8>; + interconnects = <0x24 0x4a 0x24 0x4b>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x0e>; + dma-coherent; + status = "okay"; + phys = <0xf9 0xfc 0xfd 0xfe 0xff 0xfb 0x100>; + phy-names = "usb2-0\0usb2-1\0usb2-2\0usb2-3\0usb3-0\0usb3-1\0usb3-2"; + nvidia,boost_emc_freq = <0x1f4>; + phandle = <0x28d>; + }; + + xhci@3670000 { + compatible = "nvidia,tegra234-xhci-vf1"; + reg = <0x00 0x3670000 0x00 0x40000>; + interrupts = <0x00 0x15 0x04>; + nvidia,xusb-padctl = <0xf8>; + interconnects = <0x24 0x4a 0x24 0x4b>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x1a>; + dma-coherent; + status = "disabled"; + phandle = <0x28e>; + }; + + xhci@36c0000 { + compatible = "nvidia,tegra234-xhci-vf2"; + reg = <0x00 0x36c0000 0x00 0x40000>; + interrupts = <0x00 0x16 0x04>; + nvidia,xusb-padctl = <0xf8>; + interconnects = <0x24 0x4a 0x24 0x4b>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x1b>; + dma-coherent; + status = "disabled"; + phandle = <0x28f>; + }; + + xhci@3710000 { + compatible = "nvidia,tegra234-xhci-vf3"; + reg = <0x00 0x3710000 0x00 0x40000>; + interrupts = <0x00 0x17 0x04>; + nvidia,xusb-padctl = <0xf8>; + interconnects = <0x24 0x4a 0x24 0x4b>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x1c>; + dma-coherent; + status = "disabled"; + phandle = <0x290>; + }; + + xhci@3760000 { + compatible = "nvidia,tegra234-xhci-vf4"; + reg = <0x00 0x3760000 0x00 0x40000>; + interrupts = <0x00 0x18 0x04>; + nvidia,xusb-padctl = <0xf8>; + interconnects = <0x24 0x4a 0x24 0x4b>; + interconnect-names = "dma-mem\0dma-mem"; + iommus = <0x22 0x1d>; + dma-coherent; + status = "disabled"; + phandle = <0x291>; + }; + + ga10b { + compatible = "nvidia,ga10b"; + #cooling-cells = <0x02>; + reg = <0x00 0x17000000 0x00 0x1000000 0x00 0x18000000 0x00 0x1000000 0x00 0x3b41000 0x00 0x1000>; + interrupts = <0x00 0x44 0x04 0x00 0x46 0x04 0x00 0x47 0x04 0x00 0x43 0x04>; + dma-noncontig; + interrupt-names = "stall0\0stall1\0stall2\0nonstall"; + nvidia,host1x = <0x10>; + access-vpr-phys; + power-domains = <0x04 0x23>; + clocks = <0x04 0x130 0x04 0x29 0x04 0xec 0x04 0x28>; + clock-names = "sysclk\0gpc0clk\0gpc1clk\0fuse"; + resets = <0x04 0x13>; + dma-coherent; + nvidia,bpmp = <0x04>; + support-gpu-tools = <0x01>; + status = "okay"; + phandle = <0xa1>; + }; + + psci { + compatible = "arm,psci-1.0"; + method = "smc"; + cpu_off = <0x84000002>; + cpu_on = <0xc4000003>; + cpu_suspend = <0xc4000001>; + status = "okay"; + }; + + tegra_hv_xhci_debug@0 { + compatible = "nvidia,tegra-hv-xhci-debug"; + status = "disabled"; + }; + + arm64_ras { + compatible = "arm,armv8.2-ras"; + interrupts = <0x00 0x190 0x04>; + status = "disabled"; + phandle = <0x292>; + }; + + carmel_ras { + compatible = "nvidia,carmel-ras"; + status = "disabled"; + }; + + cpufreq { + compatible = "nvidia,t234-cpufreq"; + nvidia,bpmp = <0x04>; + reg = <0x00 0xe000000 0x00 0x5ffff>; + status = "okay"; + cpu_emc_map = <0x1d1a00 0x186a00 0x1cb600 0xc3500 0x180600 0xa25a8 0x135600 0x639c0>; + }; + + cbb-noc@2300000 { + compatible = "nvidia,tegra194-CBB-NOC"; + reg = <0x00 0x2300000 0x00 0x1000>; + interrupts = <0x00 0xe6 0x04 0x00 0xe7 0x04>; + status = "disabled"; + }; + + aon-noc@C600000 { + compatible = "nvidia,tegra194-AON-NOC"; + reg = <0x00 0xc600000 0x00 0x1000>; + interrupts = <0x00 0x104 0x04 0x00 0xac 0x04>; + status = "disabled"; + }; + + bpmp-noc@D600000 { + compatible = "nvidia,tegra194-BPMP-NOC"; + reg = <0x00 0xd600000 0x00 0x1000>; + interrupts = <0x00 0x106 0x04 0x00 0xae 0x04>; + status = "disabled"; + }; + + rce-noc@BE00000 { + compatible = "nvidia,tegra194-RCE-NOC"; + reg = <0x00 0xbe00000 0x00 0x1000>; + interrupts = <0x00 0x103 0x04 0x00 0xaf 0x04>; + status = "disabled"; + }; + + sce-noc@B600000 { + compatible = "nvidia,tegra194-SCE-NOC"; + reg = <0x00 0xb600000 0x00 0x1000>; + interrupts = <0x00 0x105 0x04 0x00 0xad 0x04>; + status = "disabled"; + }; + + axi2apb@2390000 { + compatible = "nvidia,tegra194-AXI2APB-bridge"; + reg = <0x00 0x2390000 0x00 0x1000 0x00 0x23a0000 0x00 0x1000 0x00 0x23b0000 0x00 0x1000 0x00 0x23c0000 0x00 0x1000 0x00 0x23d0000 0x00 0x1000 0x00 0x23e0000 0x00 0x1000>; + status = "disabled"; + }; + + mipical@3990000 { + compatible = "nvidia, tegra194-mipical"; + reg = <0x00 0x3990000 0x00 0x10000>; + clocks = <0x04 0x48 0x04 0xa2>; + clock-names = "mipi_cal\0uart_fs_mipi_cal"; + resets = <0x04 0x25>; + reset-names = "mipi_cal"; + status = "disabled"; + }; + + tegra_nvlink_controller { + compatible = "nvidia,t19x-nvlink-controller"; + reg = <0x00 0x3b80000 0x00 0x1000 0x00 0x3b84000 0x00 0x1000 0x00 0x3b86000 0x00 0x1000 0x00 0x3b90000 0x00 0x4000 0x00 0x3b94000 0x00 0x1000 0x00 0x3b96000 0x00 0x1000 0x00 0x1f00000 0x00 0x20000>; + clocks = <0x04 0x108 0x04 0x147 0x04 0x5b 0x04 0xf3 0x04 0x0e 0x04 0x5b 0x04 0x5b>; + clock-names = "nvhs_pll0_mgmt\0pllrefe_vcoout_gated\0nvlink_sys\0pllnvhs\0clk_m\0nvlink_pll_txclk\0nvlink_tx"; + resets = <0x04 0x8f 0x04 0x85 0x04 0x86 0x04 0x87 0x04 0x88 0x04 0x89 0x04 0x8a 0x04 0x8b 0x04 0x8c 0x04 0x8d 0x04 0x8e>; + reset-names = "nvhs_uphy_pm\0nvhs_uphy\0nvhs_uphy_pll0\0nvhs_uphy_l0\0nvhs_uphy_l1\0nvhs_uphy_l2\0nvhs_uphy_l3\0nvhs_uphy_l4\0nvhs_uphy_l5\0nvhs_uphy_l6\0nvhs_uphy_l7"; + interrupts = <0x00 0xb2 0x04>; + status = "disabled"; + phandle = <0x293>; + }; + + nvpmodel { + compatible = "nvidia,nvpmodel"; + clocks = <0x04 0x1f>; + clock-names = "emc"; + status = "okay"; + }; + + display@13800000 { + compatible = "nvidia,tegra234-display"; + power-domains = <0x04 0x03>; + nvidia,num-dpaux-instance = <0x01>; + reg-names = "nvdisplay\0dpaux0\0hdacodec\0mipical"; + reg = <0x00 0x13800000 0x00 0xeffff 0x00 0x155c0000 0x00 0xffff 0x00 0x242c000 0x00 0x1000 0x00 0x3990000 0x00 0x10000>; + interrupt-names = "nvdisplay\0dpaux0\0hdacodec"; + interrupts = <0x00 0x1a0 0x04 0x00 0x1a3 0x04 0x00 0x3d 0x04>; + nvidia,bpmp = <0x04>; + clocks = <0x04 0x54 0x04 0x55 0x04 0x56 0x04 0x57 0x04 0x13 0x04 0x28 0x04 0x1b3 0x04 0x1b4 0x04 0x1b5 0x04 0x1b6 0x04 0x1b7 0x04 0x1b8 0x04 0x1b9 0x04 0x1ba 0x04 0x1bb 0x04 0x1bc 0x04 0x1bd 0x04 0x1be 0x04 0x1bf 0x04 0x1c0 0x04 0x1c1 0x04 0x1c2 0x04 0x1c3 0x04 0x1c4 0x04 0x1c5 0x04 0x1c6 0x04 0x1c7 0x04 0x1c8 0x04 0x1cb 0x04 0x1cc 0x04 0x1cd 0x04 0x1ce 0x04 0x1cf 0x04 0x1d0 0x04 0x1d1 0x04 0x1d2 0x04 0x1d3 0x04 0x1d4 0x04 0x1d5 0x04 0x1d6 0x04 0x1d7 0x04 0xb2 0x04 0xb3 0x04 0xb4 0x04 0xb5 0x04 0xb6 0x04 0xb7 0x04 0xb8 0x04 0x80 0x04 0x82 0x04 0x7d 0x04 0x7f 0x04 0x7e 0x04 0x81 0x04 0x5b 0x04 0x58 0x04 0x47 0x04 0x1c9 0x04 0x1ca 0x04 0x48 0x04 0xa2>; + clock-names = "nvdisplayhub_clk\0nvdisplay_disp_clk\0nvdisplay_p0_clk\0nvdisplay_p1_clk\0dpaux0_clk\0fuse_clk\0dsipll_vco_clk\0dsipll_clkoutpn_clk\0dsipll_clkouta_clk\0sppll0_vco_clk\0sppll0_clkoutpn_clk\0sppll0_clkouta_clk\0sppll0_clkoutb_clk\0sppll0_div10_clk\0sppll0_div25_clk\0sppll0_div27_clk\0sppll1_vco_clk\0sppll1_clkoutpn_clk\0sppll1_div27_clk\0vpll0_ref_clk\0vpll0_clk\0vpll1_clk\0nvdisplay_p0_ref_clk\0rg0_clk\0rg1_clk\0disppll_clk\0disphubpll_clk\0dsi_lp_clk\0dsi_core_clk\0dsi_pixel_clk\0pre_sor0_clk\0pre_sor1_clk\0dp_link_ref_clk\0sor_linka_input_clk\0sor_linka_afifo_clk\0sor_linka_afifo_m_clk\0rg0_m_clk\0rg1_m_clk\0sor0_m_clk\0sor1_m_clk\0pllhub_clk\0sor0_clk\0sor1_clk\0sor_pad_input_clk\0pre_sf0_clk\0sf0_clk\0sf1_clk\0dsi_pad_input_clk\0pre_sor0_ref_clk\0pre_sor1_ref_clk\0sor0_ref_pll_clk\0sor1_ref_pll_clk\0sor0_ref_clk\0sor1_ref_clk\0osc_clk\0dsc_clk\0maud_clk\0aza_2xbit_clk\0aza_bit_clk\0mipi_cal_clk\0uart_fst_mipi_cal_clk"; + resets = <0x04 0x10 0x04 0x08 0x04 0x15 0x04 0x03 0x04 0x25>; + reset-names = "nvdisplay_reset\0dpaux0_reset\0hdacodec_reset\0dsi_core_reset\0mipi_cal_reset"; + status = "okay"; + interconnects = <0x24 0x92 0x24 0xa1>; + interconnect-names = "dma-mem\0read-1"; + iommus = <0xbc 0x01>; + non-coherent; + nvidia,dcb-image = [55 aa 16 00 00 37 34 30 30 e9 4c 19 77 cc 56 49 44 45 4f 20 0d 00 00 00 70 01 00 00 00 00 49 42 4d 20 56 47 41 20 43 6f 6d 70 61 74 69 62 6c 65 01 00 00 00 10 00 c7 17 31 30 2f 32 36 2f 32 31 00 00 00 00 00 00 00 00 21 18 50 00 f1 2a 00 00 50 4d 49 44 00 00 00 00 00 00 00 a0 00 b0 00 b8 00 c0 00 0e 47 41 31 30 42 20 56 47 41 20 42 49 4f 53 0d 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 56 65 72 73 69 6f 6e 20 39 34 2e 30 42 2e 30 30 2e 30 30 2e 32 30 20 0d 0a 00 43 6f 70 79 72 69 67 68 74 20 28 43 29 20 31 39 39 36 2d 32 30 32 31 20 4e 56 49 44 49 41 20 43 6f 72 70 2e 0d 0a 00 00 00 ff ff 00 00 00 00 ff ff 47 50 55 20 42 6f 61 72 64 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 43 68 69 70 20 52 65 76 20 20 20 00 00 00 00 00 00 00 00 00 ba 91 98 96 91 9a 9a 8d 96 91 98 df ad 9a 93 9a 9e 8c 9a df d2 df b1 90 8b df b9 90 8d df af 8d 90 9b 8a 9c 8b 96 90 91 df aa 8c 9a f2 f5 ff 00 00 00 00 00 00 00 00 00 00 50 43 49 52 de 10 94 22 00 00 18 00 00 00 00 03 16 00 01 00 00 80 00 00 2e 8b c0 2e 8b c0 8b c0 4e 50 44 45 01 01 14 00 16 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff b8 42 49 54 00 00 01 0c 06 12 45 32 01 04 00 38 02 42 02 25 00 44 02 43 02 2c 00 69 02 44 01 04 00 95 02 49 01 24 00 99 02 4d 02 29 00 bd 02 4e 00 00 00 00 00 50 02 e8 00 e6 02 53 02 18 00 ce 03 54 01 02 00 e6 03 55 01 05 00 ec 03 56 01 06 00 f1 03 78 01 08 00 f7 03 64 01 02 00 ff 03 70 02 04 00 01 04 75 01 11 00 05 04 69 02 6e 00 18 04 45 01 04 00 e8 03 00 00 86 04 86 04 fe 20 00 21 f0 2a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0b 94 20 00 00 00 00 00 a8 07 00 00 00 00 00 00 00 00 02 00 5c 5c 28 02 00 00 3c 02 04 00 10 00 00 00 00 f5 0e 00 00 00 00 00 00 35 44 00 00 c7 2d 00 00 00 00 00 00 00 00 00 00 00 00 00 00 72 30 00 00 e1 44 00 00 1f 45 00 00 46 45 00 00 00 00 00 00 da 04 00 00 00 00 de 04 00 00 4a 08 de 04 26 2a 4a 08 28 2a 86 04 ef 09 14 21 d4 09 d7 20 28 2a 90 00 ab 21 01 4c 08 3a 09 f0 43 00 00 fa 43 00 00 03 10 00 00 00 21 00 00 0c 21 00 00 50 4a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 d5 33 00 00 bb 36 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 af 3c 00 00 00 00 00 00 e9 3c 00 00 0e 43 00 00 00 00 00 00 00 00 00 00 df 33 00 00 2e 3d 00 00 9c 43 00 00 ad 36 00 00 00 00 00 00 00 00 00 00 be 43 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 45 0b 00 00 c1 0a 00 00 5b 0b 00 00 11 3c 00 00 17 3c 00 00 1c 3c 00 00 20 3c 00 00 2a 3c 00 00 31 3c 00 00 3f 3c 00 00 81 3c 00 00 00 00 00 00 00 00 00 00 92 3c 00 00 ec 45 00 00 92 47 00 00 07 48 00 00 8d 49 00 00 7c 4b 00 00 b8 4b 00 00 e2 49 00 00 98 3c 00 00 79 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 e8 4d 00 00 9c 3c 00 00 a5 3c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 64 00 50 b5 00 19 cf 00 28 75 0e 14 89 0e 23 00 01 23 23 01 14 ac 0e 28 18 11 00 00 00 00 d4 0e 01 00 00 f1 0d c3 0c 00 00 00 00 01 01 00 00 00 00 f4 1c 2d 4e 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 92 2d 00 00 00 00 00 00 0b 94 20 00 00 20 92 d2 01 58 03 00 00 31 30 2f 32 36 2f 32 31 00 00 00 00 00 00 00 00 00 00 00 00 21 01 10 00 00 00 80 01 00 00 00 00 00 30 30 30 30 30 30 30 30 30 30 30 30 00 00 00 00 00 00 00 00 03 42 00 00 b9 78 8f 47 ad 04 4f 3d bf 01 4c 10 55 04 be ee 54 33 00 00 00 00 00 00 c5 4c 00 00 00 00 00 00 00 00 93 4e 00 00 01 00 10 00 bf 09 30 00 02 00 94 22 00 00 00 00 01 00 44 00 6b 09 00 00 86 04 00 00 3a 09 00 00 de 04 00 00 00 00 00 00 4a 08 00 00 5c 08 00 00 45 0b 00 00 c1 0a 00 00 5b 0b 00 00 71 0b 00 00 f1 0d 00 00 c3 0c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3c 21 00 00 30 c0 61 40 00 00 00 10 00 00 00 00 08 23 61 00 80 00 00 00 80 00 00 00 88 23 61 00 80 00 00 00 80 00 00 00 08 24 61 00 80 00 00 00 80 00 00 00 88 24 61 00 80 00 00 00 80 00 00 00 08 25 61 00 80 00 00 00 80 00 00 00 88 25 61 00 80 00 00 00 80 00 00 00 08 26 61 00 80 00 00 00 80 00 00 00 00 2a 13 00 00 00 04 00 00 00 04 00 00 2a 13 00 00 00 01 00 00 00 01 00 00 6e 13 00 00 00 04 00 00 00 04 00 00 6e 13 00 00 00 01 00 00 00 01 00 4c 00 12 00 3f 00 00 00 00 00 00 00 0c 24 02 00 01 00 00 00 00 00 00 00 e4 05 02 00 7c 00 00 00 00 00 00 00 e4 05 02 00 7c 00 00 00 18 00 00 00 e4 05 02 00 7c 00 00 00 0c 00 00 00 e4 05 02 00 7c 00 00 00 04 00 00 00 e4 05 02 00 7c 00 00 00 08 00 00 00 e4 05 02 00 7c 00 00 00 14 00 00 00 20 0e 9a 00 00 00 02 00 00 00 02 00 00 0e 9a 00 00 00 02 00 00 00 02 00 00 0e 9a 00 01 00 00 00 01 00 00 00 34 c0 61 40 00 00 00 80 00 00 00 00 00 0c 82 00 ff ff ff ff 00 00 00 00 00 0c 82 00 01 00 00 00 00 00 00 00 00 0c 82 00 02 00 00 00 00 00 00 00 00 0c 82 00 04 00 00 00 00 00 00 00 00 0c 82 00 08 00 00 00 00 00 00 00 00 0c 82 00 10 00 00 00 00 00 00 00 00 0c 82 00 20 00 00 00 00 00 00 00 90 02 82 00 01 00 00 00 00 00 00 00 88 02 82 00 ff 00 00 00 00 00 00 00 c0 04 82 00 07 00 00 00 00 00 00 00 00 0a 00 00 00 00 f0 1f 00 00 00 00 88 80 08 00 00 00 0f 00 00 00 01 00 40 c0 08 00 00 00 0c 00 00 00 0c 00 40 c0 08 00 1f 00 00 00 00 00 00 00 00 0a 00 00 00 00 f0 1f 00 00 00 00 74 09 9a 00 0f 00 00 00 00 00 00 00 e8 73 13 00 01 00 00 00 01 00 00 00 0c 06 9a 00 40 00 00 00 40 00 00 00 64 00 12 00 40 00 00 00 40 00 00 00 04 14 00 00 04 00 00 00 00 00 00 00 04 14 00 00 08 00 00 00 08 00 00 00 14 38 82 00 00 00 01 00 00 00 01 00 00 0a 00 00 00 00 f0 1f 00 00 00 00 0c 14 00 00 01 00 00 00 01 00 00 00 0c 14 00 00 02 00 00 00 01 00 00 00 88 54 62 00 00 00 01 00 00 00 00 00 88 54 62 00 00 00 02 00 00 00 00 00 88 54 62 00 00 00 04 00 00 00 00 00 9c 8b 11 00 00 00 00 80 00 00 00 00 14 0c 82 00 01 00 00 00 00 00 00 00 14 0c 82 00 02 00 00 00 00 00 00 00 14 0c 82 00 04 00 00 00 00 00 00 00 14 0c 82 00 08 00 00 00 00 00 00 00 14 0c 82 00 10 00 00 00 00 00 00 00 14 0c 82 00 20 00 00 00 00 00 00 00 9c 8b 11 00 00 00 00 80 00 00 00 00 10 01 82 00 01 00 00 00 00 00 00 00 d4 06 82 00 ff 03 00 00 00 00 00 00 14 0c 82 00 3f 00 00 00 01 00 00 00 00 14 00 00 02 00 00 00 00 00 00 00 44 c1 61 60 01 00 00 00 01 00 00 00 20 87 08 00 04 00 00 00 00 00 00 00 40 00 82 00 01 00 00 00 00 00 00 00 54 9b 41 00 ff 00 00 00 00 00 00 00 68 9b 41 00 03 00 00 00 00 00 00 00 40 80 11 00 02 00 00 00 00 00 00 00 04 0c 82 00 01 00 00 00 00 00 00 00 04 14 00 00 00 04 00 00 00 00 00 00 34 04 82 00 01 00 00 00 00 00 00 00 4c 08 00 01 02 03 04 05 06 07 00 01 02 03 04 05 06 07 41 06 24 06 00 00 00 07 00 02 bf 00 01 51 00 04 bf 00 02 5e 00 01 bf 00 03 52 00 03 bf 00 84 19 00 00 4f 00 85 7b 59 98 4f 00 06 ff 00 00 4f 00 07 ff 00 00 ef 00 08 ff 00 00 ef 00 09 ff 00 00 ef 00 0a ff 00 00 ef 00 0b ff 00 00 ef 00 0c ff 00 00 ef 00 0d ff 00 00 ef 00 0e ff 00 00 ef 00 0f ff 00 00 ef 00 10 42 50 11 e4 00 11 41 42 0b e2 00 12 40 41 0a e1 00 13 70 51 12 e5 00 14 ff 00 00 ef 00 15 ff 00 00 ef 00 16 ff 00 00 ef 00 17 ff 00 00 ef 00 18 ff 00 00 ef 00 19 ff 00 00 ef 00 1a ff 00 00 ef 00 1b ff 00 00 ef 00 1c ff 00 00 ef 00 1d ff 00 00 ef 00 1e ff 00 00 ef 00 1f ff 00 00 ef 00 00 ff 00 00 0f 00 00 ff 00 00 0f 00 00 ff 00 00 0f 00 00 ff 00 00 0f 00 10 07 16 10 00 a1 0a 01 f0 10 03 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 1f 01 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 2f 02 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 3f 03 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 4f 04 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 5f 05 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 6f 06 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 7f 07 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 8f 00 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 9f 01 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 af 02 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 bf 03 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 cf 04 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 df 05 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 ef 06 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 ff 07 00 00 00 00 00 00 ff ff ff 00 ff ff 00 10 00 00 00 00 00 00 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f 10 04 20 04 00 00 80 00 b8 4c 0a ff e0 93 04 00 20 d6 13 00 e0 93 04 01 20 d6 13 00 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ff 00 00 00 00 00 00 00 20 05 11 01 00 00 35 0c 00 ff ff ff ff ff ff ff ff ff 00 00 00 00 10 05 11 01 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 30 08 10 01 14 01 15 0e 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 0d 17 34 b0 8f 11 00 00 00 00 00 00 00 00 00 34 a8 04 82 00 00 00 00 00 00 00 00 00 34 a0 04 82 00 00 00 00 00 00 00 00 00 34 d4 02 82 00 00 00 00 00 00 00 00 00 34 a4 04 82 00 00 00 00 00 00 00 00 00 34 7c 14 00 00 00 00 00 00 00 00 00 00 34 08 0e 82 00 00 00 00 00 00 00 00 00 34 0c 0e 82 00 00 00 00 00 00 00 00 00 34 a8 83 11 00 00 00 00 00 00 00 00 00 34 78 01 82 00 00 00 00 00 00 00 00 00 34 78 01 82 00 00 00 00 00 00 00 00 00 34 ac 04 82 00 00 00 00 00 00 00 00 00 34 94 10 82 00 00 00 00 00 00 00 00 00 34 88 10 82 00 00 00 00 00 00 00 00 00 34 8c 10 82 00 00 00 00 00 00 00 00 00 34 90 10 82 00 00 00 00 00 00 00 00 00 34 ac 83 11 00 00 00 00 00 00 00 00 00 34 78 01 82 00 00 00 00 00 00 00 00 00 34 d4 02 82 00 00 00 00 00 00 00 00 00 34 78 05 82 00 00 00 00 00 00 00 00 00 34 b0 04 82 00 00 00 00 00 00 00 00 00 34 78 01 82 00 00 00 00 00 00 00 00 00 34 7c 07 82 00 00 00 00 00 00 00 00 00 10 03 1b 05 80 00 07 60 05 08 40 08 09 60 0d 0a 40 10 0d f0 17 0c e0 15 0e 60 18 0f 40 1c 10 e0 23 15 80 24 16 26 29 17 60 2d 18 40 30 19 60 35 1a 60 39 1b 60 3d 1d e0 43 1e a5 44 1f 60 49 20 60 4d 21 60 51 22 fc 47 23 a0 58 24 66 59 25 2c 5a 26 f2 5a ff 7d f4 ed 1f 18 7c a3 82 dc b6 81 88 d5 6f da 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4e 56 49 44 49 41 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4e 56 49 44 49 41 20 43 6f 72 70 6f 72 61 74 69 6f 6e 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 42 49 4f 53 20 43 65 72 74 69 66 69 63 61 74 65 20 43 68 65 63 6b 20 46 61 69 6c 65 64 21 21 21 0d 0a 00 00 00 00 00 00 22 05 02 0e 0c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 50 04 13 0e 07 95 01 95 01 d0 07 a0 0f 1b 00 1b 00 0f 0f 32 ff 01 3f 08 95 01 95 01 d0 07 a0 0f 1b 00 1b 00 0f 0f 32 ff 01 3f 0b 95 01 95 01 d0 07 a0 0f 1b 00 1b 00 0f 0f 32 ff 01 3f 04 e1 00 13 01 94 11 28 23 e1 00 13 01 01 01 14 ff 01 02 0c 1b 00 1b 00 40 06 80 0c 1b 00 1b 00 01 01 28 ff 01 3f 41 1b 00 1b 00 40 06 8c 0a 1b 00 28 00 01 ff 28 ff 03 3f 42 1b 00 1b 00 40 06 8c 0a 1b 00 28 00 01 ff 28 ff 03 3f 80 1b 00 1b 00 20 03 54 06 1b 00 1b 00 01 01 14 ff 01 3f 81 1b 00 1b 00 20 03 54 06 1b 00 1b 00 01 01 14 ff 01 3f 82 1b 00 1b 00 20 03 54 06 1b 00 1b 00 01 01 14 ff 01 3f 83 1b 00 1b 00 20 03 54 06 1b 00 1b 00 01 01 14 ff 01 3f 0d 1b 00 1b 00 20 03 54 06 1b 00 1b 00 01 01 14 ff 01 3f 0e 1b 00 1b 00 e8 03 d0 07 0d 00 1b 00 01 ff 28 ff 01 1f 0f 95 01 95 01 d0 07 a0 0f 1b 00 1b 00 0f 0f 32 ff 01 3f 10 04 02 06 00 00 00 07 00 07 00 07 00 07 00 07 10 05 04 10 04 0f 0f 0f 0f 2f 2f 2f 2f 1c 1c 1c 1c 0f 46 40 00 0f 0f 0f 0f 2f 2f 2f 2f 1d 1d 1d 1d 0f 46 40 00 0f 0f 0f 0f 2f 2f 2f 2f 1e 1e 1e 1e 0f 46 40 00 0f 0f 0f 0f 2f 2f 2f 2f 1f 1f 1f 1f 0f 46 40 00 0f 0f 0f 0f 2d 2d 2d 2d 19 19 19 19 0f 46 40 00 0f 0f 0f 0f 2c 2c 2c 2c 1b 1b 1b 1b 0f 46 40 00 0f 0f 0f 0f 2b 2b 2b 2b 1d 1d 1d 1d 0f 46 40 00 0f 0f 0f 0f 2a 2a 2a 2a 1f 1f 1f 1f 0f 46 40 00 0e 0e 0e 0e 29 29 29 29 18 18 18 18 0f 46 40 00 0e 0e 0e 0e 28 28 28 28 1a 1a 1a 1a 0f 46 40 00 0e 0e 0e 0e 27 27 27 27 1c 1c 1c 1c 0f 46 40 00 0e 0e 0e 0e 26 26 26 26 1e 1e 1e 1e 0f 46 40 00 0f 0f 0f 0f 2d 2d 2d 2d 19 19 19 19 0f 46 40 00 0f 0f 0f 0f 2c 2c 2c 2c 1b 1b 1b 1b 0f 46 40 00 0f 0f 0f 0f 2b 2b 2b 2b 1d 1d 1d 1d 0f 46 40 00 0f 0f 0f 0f 2a 2a 2a 2a 1f 1f 1f 1f 0f 46 40 00 20 19 04 00 00 50 32 74 40 e8 80 e4 57 01 04 04 06 76 19 00 00 13 10 00 00 49 11 00 00 47 12 00 00 45 13 00 00 43 14 00 00 41 15 00 00 3f 16 00 00 10 08 0e 05 00 2c 04 04 d1 84 00 00 00 00 0a 05 00 06 00 00 00 00 00 38 3d 3e 3f 3a 00 00 00 00 05 05 05 05 00 00 00 00 00 00 00 00 88 58 24 00 00 00 00 00 75 40 00 00 00 00 0a 05 00 06 00 00 00 00 00 38 3d 3e 3f 3a 3f 3f 3f 3f 05 05 05 05 0a 0a 0a 0a 00 00 00 00 88 58 24 00 00 00 00 00 65 19 00 00 00 00 0a 05 00 06 00 00 00 00 00 48 3a 3a 3a 3a 3a 3a 3a 3a 00 00 00 00 00 00 00 00 00 00 00 00 f8 5a 24 00 00 00 00 00 00 00 00 00 00 00 0a 0a 00 06 00 00 00 00 00 58 3a 3a 3a 3a 3a 3a 3a 3a 00 00 00 00 00 00 00 00 00 00 00 00 f8 5a 24 00 00 00 00 00 03 00 00 01 0a 05 0f 46 40 00 00 03 00 44 06 00 00 01 0a 08 0f 46 40 00 00 03 00 44 08 00 00 01 0a 05 0f 46 40 00 00 03 00 44 0a 00 00 01 0a 05 0f 46 40 00 00 03 00 44 0c 00 00 01 0a 08 0f 46 40 00 00 03 00 44 10 08 0e 05 00 2c 04 04 d1 84 00 00 00 00 0a 05 00 06 00 00 00 00 00 38 3d 3e 3f 3a 00 00 00 00 05 05 05 05 00 00 00 00 00 00 00 00 88 58 24 00 00 00 00 00 75 40 00 00 00 00 0a 05 00 06 00 00 00 00 00 38 3d 3e 3f 3a 00 00 00 00 05 05 05 05 00 00 00 00 00 00 00 00 88 58 24 00 00 00 00 00 65 19 00 00 00 00 0a 05 00 06 00 00 00 00 00 48 3a 3a 3a 3a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 f8 5a 24 00 00 00 00 00 00 00 00 00 00 00 0a 0a 00 06 00 00 00 00 00 58 3a 3a 3a 3a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 f8 5a 24 00 00 00 00 00 0c 00 00 01 0a 05 0f 46 40 00 00 03 00 44 0d 00 00 01 0a 08 0f 46 40 00 00 03 00 44 0e 00 00 01 0a 05 0f 46 40 00 00 03 00 44 0f 01 00 01 0a 05 0f 46 40 00 00 03 00 44 10 01 00 01 0a 08 0f 46 40 00 00 03 00 44 10 08 0e 05 00 2c 04 04 d1 84 00 00 00 00 0a 05 00 06 00 00 00 00 00 38 3d 3e 3f 3a 00 00 00 00 05 05 05 05 00 00 00 00 00 00 00 00 88 58 24 00 00 00 00 00 75 40 00 00 00 00 0a 05 00 06 00 00 00 00 00 38 3d 3e 3f 3a 3f 3f 3f 3f 05 05 05 05 05 05 05 05 00 00 00 00 88 58 24 00 00 00 00 00 65 19 00 00 00 00 0a 05 00 06 00 00 00 00 00 48 3a 3a 3a 3a 3a 3a 3a 3a 00 00 00 00 00 00 00 00 00 00 00 00 f8 5a 24 00 00 00 00 00 00 00 00 00 00 00 0a 0a 00 06 00 00 00 00 00 58 3a 3a 3a 3a 3a 3a 3a 3a 00 00 00 00 00 00 00 00 00 00 00 00 f8 5a 24 00 00 00 00 00 0c 01 00 01 0a 05 0f 46 40 00 00 03 00 44 0d 01 00 01 0a 08 0f 46 40 00 00 03 00 44 0e 02 00 01 0a 05 0f 46 40 00 00 03 00 44 0f 02 00 01 0a 05 0f 46 40 00 00 03 00 44 10 02 00 01 0a 08 0f 46 40 00 00 03 00 44 10 08 0e 05 00 2c 04 04 d1 84 00 00 00 00 0a 05 00 06 00 00 00 00 00 38 3d 3e 3f 3a 00 00 00 00 05 05 05 05 00 00 00 00 00 00 00 00 88 58 24 00 00 00 00 00 75 40 00 00 00 00 0a 05 00 06 00 00 00 00 00 38 3d 3e 3f 3a 00 00 00 00 05 05 05 05 00 00 00 00 00 00 00 00 88 58 24 00 00 00 00 00 65 19 00 00 00 00 0a 05 00 06 00 00 00 00 00 48 3a 3a 3a 3a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 f8 5a 24 00 00 00 00 00 00 00 00 00 00 00 0a 0a 00 06 00 00 00 00 00 58 3a 3a 3a 3a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 f8 5a 24 00 00 00 00 00 0c 00 00 01 0a 05 0f 46 40 00 00 03 00 44 0d 00 00 01 0a 08 0f 46 40 00 00 03 00 44 0e 00 00 01 0a 05 0f 46 40 00 00 03 00 44 0f 01 00 01 0a 05 0f 46 40 00 00 03 00 44 10 01 00 01 0a 08 0f 46 40 00 00 03 00 44 10 08 0e 05 00 2c 04 04 d1 84 00 00 00 00 0a 05 00 06 00 00 00 00 00 38 3d 3e 3f 3a 00 00 00 00 05 05 05 05 00 00 00 00 00 00 00 00 88 58 24 00 00 00 00 00 75 40 00 00 00 00 0a 05 00 06 00 00 00 00 00 38 3d 3e 3f 3a 3f 3f 3f 3f 05 05 05 05 08 08 08 08 00 00 00 00 88 58 24 00 00 00 00 00 65 19 00 00 00 00 0a 05 00 06 00 00 00 00 00 48 3a 3a 3a 3a 3a 3a 3a 3a 00 00 00 00 00 00 00 00 00 00 00 00 f8 5a 24 00 00 00 00 00 00 00 00 00 00 00 0a 0a 00 06 00 00 00 00 00 58 3a 3a 3a 3a 3a 3a 3a 3a 00 00 00 00 00 00 00 00 00 00 00 00 f8 5a 24 00 00 00 00 00 0c 01 00 01 0a 05 0f 46 40 00 00 03 00 44 0d 01 00 01 0a 08 0f 46 40 00 00 03 00 44 0e 02 00 01 0a 05 0f 46 40 00 00 03 00 44 0f 02 00 01 0a 05 0f 46 40 00 00 03 00 44 10 02 00 01 0a 08 0f 46 40 00 00 03 00 44 10 08 0e 05 00 2c 04 04 d1 84 00 00 00 00 0a 05 00 06 00 00 00 00 00 38 3d 3e 3f 3a 00 00 00 00 05 05 05 05 00 00 00 00 00 00 00 00 88 58 24 00 00 00 00 00 75 40 00 00 00 00 0a 05 00 06 00 00 00 00 00 38 3d 3e 3f 3a 00 00 00 00 05 05 05 05 00 00 00 00 00 00 00 00 88 58 24 00 00 00 00 00 65 19 00 00 00 00 0a 05 00 06 00 00 00 00 00 48 3a 3a 3a 3a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 f8 5a 24 00 00 00 00 00 00 00 00 00 00 00 0a 0a 00 06 00 00 00 00 00 58 3a 3a 3a 3a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 f8 5a 24 00 00 00 00 00 0c 00 00 01 0a 05 0f 46 40 00 00 03 00 44 0d 00 00 01 0a 08 0f 46 40 00 00 03 00 44 0e 00 00 01 0a 05 0f 46 40 00 00 03 00 44 0f 01 00 01 0a 05 0f 46 40 00 00 03 00 44 10 01 00 01 0a 08 0f 46 40 00 00 03 00 44 7a 14 c0 61 40 01 00 c2 0d 74 05 00 6e 14 c0 61 40 ff ff bf ff 00 00 00 00 6e e4 c5 61 40 fe ff ff ff 00 00 00 00 71 5b f5 19 71 5b 6f 17 5b 74 17 71 56 00 ff 72 71 6e 0c c1 61 40 fe ff ff ff 00 00 00 00 6e 40 65 61 80 fe ff ff ff 00 00 00 00 71 6e 00 23 61 40 ff ff 80 fc 00 00 23 00 71 6e 00 23 61 40 ff ff 80 fc 00 00 27 00 71 6e 00 23 61 40 ff ff 80 fc 00 00 2b 00 71 6e 00 23 61 40 ff ff 80 fc 00 00 2f 00 71 41 23 10 08 6a 18 cb bd dc 4e 5c 08 00 00 00 00 00 00 ac 18 31 19 c1 00 00 00 00 00 00 00 00 00 00 00 00 06 03 80 01 10 00 60 04 02 03 80 01 10 00 02 04 2e 23 02 01 10 00 02 00 2f 32 03 02 10 00 02 00 fe 40 04 00 00 00 00 00 0f 00 00 00 00 00 00 00 0f 00 00 00 00 00 00 00 0f 00 00 00 00 00 00 00 0f 00 00 00 00 00 00 00 0f 00 00 00 00 00 00 00 0f 00 00 00 00 00 00 00 0f 00 00 00 00 00 00 00 0f 00 00 00 00 00 00 00 0f 00 00 00 00 00 00 00 0f 00 00 00 00 00 00 00 0f 00 00 00 00 00 00 00 41 06 0f 04 02 0f 06 00 00 10 ff 03 00 80 ff 03 00 80 ff 03 00 10 ff 03 00 10 ff 03 00 10 ff 03 00 10 ff 03 00 10 ff 03 00 10 ff 03 00 10 ff 03 00 00 ff 03 00 00 ff 03 00 00 ff 03 00 00 ff 03 00 00 40 05 20 04 01 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 40 05 10 04 00 46 10 00 00 ff 01 00 00 ff 02 00 00 ff 03 00 00 ff 04 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 ff 00 00 00 10 05 40 01 00 00 00 0b 03 00 00 0a 02 00 00 08 02 00 20 04 02 00 80 00 00 00 80 00 00 00 80 00 00 00 80 00 00 00 20 00 00 00 20 00 03 00 00 0c 03 00 00 0a 03 00 80 0b 03 00 80 0b 03 00 80 0b 03 00 80 0b 03 71 71 6e 14 c0 61 40 ff ff 3f fa 00 00 c0 01 74 05 00 6e 14 c0 61 40 f7 ff ff ff 08 00 00 00 6e b8 c1 61 40 ff ff 3f 81 00 03 00 08 6e 00 23 61 40 ff ff 83 fc 00 00 00 00 71 58 40 c0 61 40 10 00 00 0a 1d 00 00 0a 04 00 00 08 04 00 20 04 04 00 80 00 00 00 80 00 00 00 80 00 00 00 80 00 00 00 20 00 00 00 20 00 1d 00 00 0c 1d 00 00 0a 1d 00 80 0a 1d 00 80 0a 1d 00 80 0a 1d 00 80 0a 1d 71 6e 00 23 61 40 ff ff fc fc 00 00 02 03 71 7a 14 c0 61 40 14 00 c2 0d 74 05 00 6e 14 c0 61 40 ff ff bf ff 00 00 00 00 74 14 00 71 6e 14 c0 61 40 ff ff ff f2 00 00 00 00 74 0a 00 6e 00 23 61 40 ff ff fc ff 00 00 01 00 6e 0c c1 61 60 ff bf ff ff 00 40 00 00 6e 14 c0 61 40 ff ff 7f ff 00 00 00 00 6e 30 c1 61 60 f0 ff ff ff 0f 00 00 00 6e 34 c0 61 40 ff ff ee 7f 00 00 00 80 56 17 ff 6e 0c c1 61 60 fc ff ff ff 01 00 00 00 6e 30 c1 61 60 0f ff ff ff f0 00 00 00 74 0a 00 6e 30 c1 61 60 0f ff ff ff 00 00 00 00 6e 10 c1 61 40 e0 e0 e0 e0 00 00 00 00 6e 2c c1 61 40 e0 e0 e0 e0 00 00 00 00 3a 05 15 6e 40 c1 61 60 fd ff ff ff 02 00 00 00 98 0a 01 00 00 01 fe 01 71 98 02 01 00 00 01 d0 00 6e 10 c1 61 40 e0 e0 e0 e0 10 10 10 10 6e 2c c1 61 40 e0 e0 e0 e0 10 10 10 10 71 5f 0c c1 61 60 00 01 40 ff 40 00 00 00 00 40 65 61 80 fe bf 00 bf 3a 00 03 5b 59 1b 72 71 3a 07 01 38 6e 40 c1 61 60 fe ff ff ff 01 00 00 00 72 5b ad 1c 52 e8 df 00 71 71 6e 0c c1 61 60 fe ff 00 ff 00 00 00 00 6e 30 c1 61 40 f0 ff ff ff 00 00 00 00 6e b0 c1 61 40 f0 ff ff ff 00 00 00 00 6e 34 c0 61 40 ff ff ee 7f 00 00 11 80 56 17 ff 6e 14 c0 61 40 ff ff 7f ff 00 00 80 00 6e 00 23 61 40 ff ff fc ff 00 00 02 00 74 05 00 6e 14 c0 61 40 ff ff ff f2 00 00 00 0d 74 05 00 6e 14 c0 61 40 ff ff bf ff 00 00 40 00 74 05 00 6e 14 c0 61 40 f7 ff ff ff 08 00 00 00 6e 0c c0 61 40 ff f0 f0 f0 00 03 05 05 6e b8 c1 61 40 ff ff ff 81 00 03 00 08 6e 00 23 61 40 ff ff 83 fc 00 00 00 00 6e 40 c1 61 60 fe ff ff ff 00 00 00 00 71 6e 0c c1 61 60 fd ff ff ff 02 00 00 00 6e 30 c1 61 60 ff ff bf ff 00 00 40 00 71 10 05 40 01 01 00 00 00 00 0a 10 00 00 00 a0 40 00 00 80 40 00 00 80 40 00 00 80 40 00 00 80 40 00 00 80 40 00 00 20 00 00 32 10 80 00 0a 90 80 00 00 80 80 00 00 80 80 00 00 80 80 00 00 80 80 00 00 80 80 00 71 71 6e 40 65 61 80 fe ff ff ff 00 00 00 00 71 71 98 07 01 00 00 01 ef 10 71 98 07 01 00 00 01 ef 00 71 58 40 c0 61 40 10 00 00 00 00 32 10 00 00 00 a0 40 00 00 80 40 00 00 80 40 00 00 80 40 00 00 80 40 00 00 80 40 00 00 20 00 00 32 10 80 00 96 90 80 00 00 80 80 00 00 80 80 00 00 80 80 00 00 80 80 00 00 80 80 00 71 42 15 02 07 13 04 03 0a 04 28 23 28 23 01 04 04 06 45 1c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 14 00 02 19 0a 03 1e 14 04 2b 28 06 1e 00 03 25 0f 04 2f 21 06 28 00 04 32 14 06 3c 00 06 14 00 02 19 0a 03 1e 14 04 2b 28 06 1e 00 03 25 0f 04 2f 21 06 28 00 04 32 14 06 3c 00 06 14 00 02 19 0a 03 1e 14 04 2b 28 06 1e 00 03 25 0f 04 2f 21 06 28 00 04 32 14 06 3c 00 06 0f 00 02 16 09 03 1d 0e 04 27 12 06 17 00 03 21 09 04 27 0e 06 1f 00 04 27 09 06 27 00 06 a7 1d 00 00 2f 1e 00 00 b7 1e 00 00 3f 1f 00 00 c7 1f 00 00 4f 20 00 00 10 08 00 00 00 10 08 00 1e 00 00 00 00 01 05 05 00 40 00 00 00 00 00 30 14 00 00 00 00 01 05 05 00 40 00 00 00 00 00 30 10 00 00 00 00 01 05 05 00 40 00 00 00 00 00 30 0c 00 00 00 00 01 05 05 00 40 00 00 00 00 00 30 0a 00 00 00 00 01 05 05 00 40 00 00 00 00 00 30 09 00 00 00 00 01 05 05 00 40 00 00 00 00 00 30 08 00 00 00 00 01 05 05 00 40 00 00 00 00 00 30 06 00 00 00 00 01 05 05 00 40 00 00 00 00 00 30 10 08 00 00 00 10 08 00 1e 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 14 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 10 00 00 00 00 03 00 01 00 50 00 00 00 00 00 00 0c 00 00 00 00 03 00 01 00 50 00 00 00 00 00 00 0a 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 09 00 00 00 00 03 00 01 00 40 00 00 00 00 00 00 08 00 00 00 00 03 00 01 00 40 00 00 00 00 00 00 06 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 10 08 00 00 00 10 08 00 1e 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 14 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 10 00 00 00 00 03 00 01 00 50 00 00 00 00 00 00 0c 00 00 00 00 03 00 01 00 50 00 00 00 00 00 00 0a 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 09 00 00 00 00 03 00 01 00 40 00 00 00 00 00 00 08 00 00 00 00 03 00 01 00 40 00 00 00 00 00 00 06 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 10 08 00 00 00 10 08 00 1e 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 14 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 10 00 00 00 00 03 00 01 00 50 00 00 00 00 00 00 0c 00 00 00 00 03 00 01 00 50 00 00 00 00 00 00 0a 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 09 00 00 00 00 03 00 01 00 40 00 00 00 00 00 00 08 00 00 00 00 03 00 01 00 40 00 00 00 00 00 00 06 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 10 08 00 00 00 10 08 00 1e 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 14 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 10 00 00 00 00 03 00 01 00 50 00 00 00 00 00 00 0c 00 00 00 00 03 00 01 00 50 00 00 00 00 00 00 0a 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 09 00 00 00 00 03 00 01 00 40 00 00 00 00 00 00 08 00 00 00 00 03 00 01 00 40 00 00 00 00 00 00 06 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 10 08 00 00 00 10 08 00 1e 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 14 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 10 00 00 00 00 03 00 01 00 50 00 00 00 00 00 00 0c 00 00 00 00 03 00 01 00 50 00 00 00 00 00 00 0a 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00 09 00 00 00 00 03 00 01 00 40 00 00 00 00 00 00 08 00 00 00 00 03 00 01 00 40 00 00 00 00 00 00 06 00 00 00 00 00 05 05 00 00 00 00 00 00 00 00]; + phandle = <0x294>; + + nvdisplay-niso { + compatible = "nvidia,tegra234-display-niso"; + iommus = <0x02 0x07>; + dma-coherent; + }; + + dsi { + compatible = "nvidia,tegra234-dsi"; + nvidia,active-panel = "NULL"; + status = "disabled"; + }; + }; + + icc { + #interconnect-cells = <0x01>; + clocks = <0x04 0x1f>; + clock-names = "emc"; + compatible = "nvidia,tegra23x-icc"; + nvidia,bpmp = <0x04>; + status = "okay"; + phandle = <0x12>; + }; + + tegra_mce@e100000 { + compatible = "nvidia,t23x-mce"; + reg = <0x00 0xe100000 0x00 0x10000 0x00 0xe110000 0x00 0x10000 0x00 0xe120000 0x00 0x10000 0x00 0xe130000 0x00 0x10000 0x00 0xe140000 0x00 0x10000 0x00 0xe150000 0x00 0x10000 0x00 0xe160000 0x00 0x10000 0x00 0xe170000 0x00 0x10000 0x00 0xe180000 0x00 0x10000 0x00 0xe190000 0x00 0x10000 0x00 0xe1a0000 0x00 0x10000 0x00 0xe1b0000 0x00 0x10000>; + status = "okay"; + }; + + dce@d800000 { + compatible = "nvidia,tegra234-dce"; + reg = <0x00 0xd800000 0x00 0x800000>; + interrupts = <0x00 0x178 0x04 0x00 0x179 0x04>; + interrupt-names = "wdt-remote\0dce-sm0"; + iommus = <0x02 0x08>; + status = "okay"; + }; + + spi@3240000 { + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x194 0x80000000 0x00>; + }; + }; + }; + + spi@3250000 { + + prod-settings { + #prod-cells = <0x04>; + + prod { + prod = <0x00 0x194 0x80000000 0x00>; + }; + }; + }; + + fixed-regulators { + compatible = "simple-bus"; + device_type = "fixed-regulators"; + #address-cells = <0x01>; + #size-cells = <0x00>; + + regulator@0 { + compatible = "regulator-fixed"; + reg = <0x00>; + regulator-name = "vdd-ac-bat"; + regulator-min-microvolt = <0x4c4b40>; + regulator-max-microvolt = <0x4c4b40>; + regulator-always-on; + phandle = <0x2e>; + }; + + regulator@1 { + compatible = "regulator-fixed"; + reg = <0x01>; + regulator-name = "ddr-vdd2-sw7"; + regulator-min-microvolt = <0x100590>; + regulator-max-microvolt = <0x100590>; + regulator-always-on; + phandle = <0x295>; + }; + + regulator@2 { + compatible = "regulator-fixed"; + reg = <0x02>; + regulator-name = "vdd-1v8-hs-sw1"; + regulator-min-microvolt = <0x1b7740>; + regulator-max-microvolt = <0x1b7740>; + regulator-always-on; + phandle = <0x35>; + }; + + regulator@3 { + compatible = "regulator-fixed"; + reg = <0x03>; + regulator-name = "vdd-1v8-ls-sw5"; + regulator-min-microvolt = <0x1b7740>; + regulator-max-microvolt = <0x1b7740>; + regulator-always-on; + phandle = <0x13>; + }; + + regulator@4 { + compatible = "regulator-fixed"; + reg = <0x04>; + regulator-name = "vdd-0v95-sw0"; + regulator-min-microvolt = <0xe7ef0>; + regulator-max-microvolt = <0xe7ef0>; + regulator-always-on; + phandle = <0x296>; + }; + + regulator@5 { + compatible = "regulator-fixed"; + reg = <0x05>; + regulator-name = "vdd-AO-1v8-sw2"; + regulator-min-microvolt = <0x1b7740>; + regulator-max-microvolt = <0x1b7740>; + regulator-always-on; + phandle = <0x25>; + }; + + regulator@6 { + compatible = "regulator-fixed"; + reg = <0x06>; + regulator-name = "ap-ddr-vdd2-sw3"; + regulator-min-microvolt = <0x100590>; + regulator-max-microvolt = <0x100590>; + regulator-always-on; + phandle = <0x297>; + }; + + regulator@7 { + compatible = "regulator-fixed"; + reg = <0x07>; + regulator-name = "vdd-rtc-sw4"; + regulator-min-microvolt = <0xb71b0>; + regulator-max-microvolt = <0xb71b0>; + regulator-always-on; + phandle = <0x298>; + }; + + regulator@8 { + compatible = "regulator-fixed"; + reg = <0x08>; + regulator-name = "vdd-AO-1v2-sw6"; + regulator-min-microvolt = <0x124f80>; + regulator-max-microvolt = <0x124f80>; + regulator-always-on; + phandle = <0x299>; + }; + + regulator@9 { + compatible = "regulator-fixed"; + reg = <0x09>; + regulator-name = "vdd-AO-3v3-sw10"; + regulator-min-microvolt = <0x325aa0>; + regulator-max-microvolt = <0x325aa0>; + regulator-always-on; + phandle = <0x34>; + }; + + regulator@10 { + compatible = "regulator-fixed"; + reg = <0x0a>; + regulator-name = "vdd-FSI-core-sw9"; + regulator-min-microvolt = <0xdbba0>; + regulator-max-microvolt = <0xdbba0>; + regulator-always-on; + phandle = <0x29a>; + }; + + regulator@11 { + compatible = "regulator-fixed"; + reg = <0x0b>; + regulator-name = "vdd-FSI-1v8-ldo0"; + regulator-min-microvolt = <0x1b7740>; + regulator-max-microvolt = <0x1b7740>; + regulator-always-on; + phandle = <0x29b>; + }; + + regulator@12 { + compatible = "regulator-fixed"; + reg = <0x0c>; + regulator-name = "vdd-FSI-3v3-ldo1"; + regulator-min-microvolt = <0x325aa0>; + regulator-max-microvolt = <0x325aa0>; + regulator-always-on; + phandle = <0x29c>; + }; + + regulator@100 { + compatible = "regulator-fixed"; + reg = <0x64>; + regulator-name = "vdd-12v-sys"; + regulator-min-microvolt = <0xb71b00>; + regulator-max-microvolt = <0xb71b00>; + phandle = <0x29d>; + }; + + regulator@101 { + compatible = "regulator-fixed"; + reg = <0x65>; + regulator-name = "vdd-5v-sys"; + regulator-min-microvolt = <0x4c4b40>; + regulator-max-microvolt = <0x4c4b40>; + phandle = <0x101>; + }; + + regulator@102 { + compatible = "regulator-fixed"; + reg = <0x66>; + regulator-name = "vdd-3v3-sys"; + regulator-min-microvolt = <0x325aa0>; + regulator-max-microvolt = <0x325aa0>; + phandle = <0x47>; + }; + + regulator@103 { + compatible = "regulator-fixed"; + reg = <0x67>; + regulator-name = "vdd-1v8-sys"; + regulator-min-microvolt = <0x1b7740>; + regulator-max-microvolt = <0x1b7740>; + phandle = <0x3a>; + }; + + regulator@104 { + compatible = "regulator-fixed"; + reg = <0x68>; + regulator-name = "vdd-3v3-ftdi"; + regulator-min-microvolt = <0x325aa0>; + regulator-max-microvolt = <0x325aa0>; + phandle = <0x29e>; + }; + + regulator@105 { + compatible = "regulator-fixed"; + reg = <0x69>; + regulator-name = "vdd-3v3-pcie"; + regulator-min-microvolt = <0x325aa0>; + regulator-max-microvolt = <0x325aa0>; + vin-supply = <0x47>; + gpio = <0x14 0x9a 0x00>; + enable-active-high; + regulator-boot-on; + phandle = <0x1e>; + }; + + regulator@106 { + compatible = "regulator-fixed"; + reg = <0x6a>; + regulator-name = "avdd-cam-2v8"; + regulator-min-microvolt = <0x2ab980>; + regulator-max-microvolt = <0x2ab980>; + vin-supply = <0x47>; + gpio = <0x14 0x79 0x00>; + enable-active-high; + phandle = <0x3b>; + }; + + regulator@107 { + compatible = "regulator-fixed"; + reg = <0x6b>; + regulator-name = "vdd-av1v1-hub"; + regulator-min-microvolt = <0x10c8e0>; + regulator-max-microvolt = <0x10c8e0>; + regulator-always-on; + vin-supply = <0x101>; + phandle = <0x29f>; + }; + + regulator@108 { + compatible = "regulator-fixed"; + reg = <0x6c>; + regulator-name = "vbusA-cvb"; + regulator-min-microvolt = <0x4c4b40>; + regulator-max-microvolt = <0x4c4b40>; + regulator-always-on; + vin-supply = <0x101>; + phandle = <0x2a0>; + }; + + regulator@109 { + compatible = "regulator-fixed"; + reg = <0x6d>; + regulator-name = "vbusB-cvb"; + regulator-min-microvolt = <0x4c4b40>; + regulator-max-microvolt = <0x4c4b40>; + regulator-always-on; + vin-supply = <0x101>; + phandle = <0x2a1>; + }; + + regulator@110 { + compatible = "regulator-fixed"; + reg = <0x6e>; + regulator-name = "vdd-dp"; + regulator-min-microvolt = <0x186a0>; + regulator-max-microvolt = <0x186a0>; + vin-supply = <0x47>; + gpio = <0x14 0x03 0x00>; + regulator-always-on; + enable-active-high; + phandle = <0x2a2>; + }; + + regulator@111 { + compatible = "regulator-fixed"; + reg = <0x6f>; + regulator-name = "vdd-3v3-sd"; + regulator-min-microvolt = <0x325aa0>; + regulator-max-microvolt = <0x325aa0>; + vin-supply = <0x47>; + gpio = <0x14 0x00 0x00>; + regulator-always-on; + enable-active-high; + phandle = <0x38>; + }; + + regulator@112 { + compatible = "regulator-fixed"; + reg = <0x70>; + regulator-name = "vdd-usbc1-vbus"; + regulator-min-microvolt = <0x493e0>; + regulator-max-microvolt = <0x493e0>; + regulator-always-on; + vin-supply = <0x101>; + phandle = <0x2a3>; + }; + + regulator@113 { + compatible = "regulator-fixed"; + reg = <0x71>; + regulator-name = "vdd-usbc2-vbus"; + regulator-min-microvolt = <0x493e0>; + regulator-max-microvolt = <0x493e0>; + regulator-always-on; + vin-supply = <0x101>; + phandle = <0x2a4>; + }; + + regulator@114 { + compatible = "regulator-fixed"; + reg = <0x72>; + regulator-name = "vdd-12v-pcie"; + regulator-min-microvolt = <0xb71b00>; + regulator-max-microvolt = <0xb71b00>; + gpio = <0x14 0x01 0x01>; + regulator-boot-on; + enable-active-low; + phandle = <0x1f>; + }; + + regulator@115 { + compatible = "regulator-fixed"; + reg = <0x73>; + regulator-name = "vdd_sys_en"; + regulator-min-microvolt = <0x124f80>; + regulator-max-microvolt = <0x124f80>; + gpio = <0x14 0xa7 0x00>; + regulator-always-on; + enable-active-high; + phandle = <0x3c>; + }; + + regulator@116 { + compatible = "regulator-fixed"; + reg = <0x74>; + regulator-name = "dsi-vdd-1v8-bl-en"; + regulator-min-microvolt = <0x1b7740>; + regulator-max-microvolt = <0x1b7740>; + vin-supply = <0x3a>; + gpio = <0x15 0x12 0x00>; + enable-active-high; + phandle = <0x2a5>; + }; + + regulator@200 { + compatible = "regulator-fixed-sync\0regulator-fixed"; + reg = <0xc8>; + regulator-name = "vdd-1v8-aud2"; + regulator-min-microvolt = <0x1b7740>; + regulator-max-microvolt = <0x1b7740>; + gpio = <0x102 0x0b 0x01>; + enable-active-high; + status = "disabled"; + phandle = <0x48>; + }; + }; + + chosen { + bootargs = "console=ttyTCU0,115200"; + board-has-eeprom; + }; + + ccplex { + compatible = "nvidia,t234-ccplex"; + cpu_emc_map = <0x1d1a00 0x186a00 0x1cb600 0xc3500 0x180600 0xa25a8 0x135600 0x639c0>; + }; + + pmc@c370000 { + nvidia,invert-interrupt; + }; + + power-domain { + status = "okay"; + }; + + cpuidle { + compatible = "nvidia,tegra23x-cpuidle-debugfs"; + status = "okay"; + }; + + eeprom-manager { + data-size = <0x100>; + + bus@0 { + i2c-bus = <0x103>; + + eeprom@0 { + slave-address = <0x50>; + label = "cvm"; + }; + + eeprom@1 { + slave-address = <0x56>; + label = "cvb"; + }; + }; + + bus@1 { + i2c-bus = <0x104>; + + eeprom@1 { + slave-address = <0x50>; + label = "super-module"; + }; + }; + + bus@2 { + i2c-bus = <0x105>; + + eeprom@0 { + slave-address = <0x54>; + label = "sensor0"; + }; + + eeprom@1 { + slave-address = <0x57>; + label = "sensor1"; + }; + + eeprom@2 { + slave-address = <0x52>; + label = "sensor2"; + }; + }; + }; + + soctherm-oc-event { + status = "disabled"; + }; + + ldpc-enc { + status = "disabled"; + }; + + plugin-manager { + + fragment-e2614-common@0 { + ids = "2614-0000-*"; + + overrides@0 { + target = <0x106>; + + _overlay_ { + status = "okay"; + }; + }; + + overrides@1 { + target = <0x102>; + + _overlay_ { + status = "okay"; + }; + }; + + overrides@2 { + target = <0x107>; + + _overlay_ { + status = "okay"; + }; + }; + + overrides@3 { + target = <0x108>; + + _overlay_ { + status = "okay"; + }; + }; + + overrides@4 { + target = <0x108>; + + _overlay_ { + status = "okay"; + }; + }; + + overrides@5 { + target = <0x109>; + + _overlay_ { + status = "disabled"; + }; + }; + + overrides@6 { + target = <0x10a>; + + _overlay_ { + status = "okay"; + }; + }; + + overrides@8 { + target = <0x48>; + + _overlay_ { + status = "okay"; + }; + }; + + overrides@11 { + target = <0x10b>; + + _overlay_ { + link-name = "rt565x-codec-sysclk-bclk1"; + + codec { + sound-dai = <0x10c 0x00>; + prefix = "H40-RT"; + }; + }; + }; + + overrides@14 { + target = <0x107>; + + _overlay_ { + status = "okay"; + }; + }; + + overrides@15 { + target = <0x108>; + + _overlay_ { + status = "okay"; + }; + }; + + overrides@16 { + target = <0x109>; + + _overlay_ { + status = "disabled"; + }; + }; + + overrides@17 { + target = <0x10a>; + + _overlay_ { + status = "okay"; + }; + }; + + overrides@18 { + target = <0x10d>; + + _overlay_ { + link-name = "dspk-playback-r\0dspk-playback-l"; + + codec { + sound-dai = <0x10e 0x00>; + prefix = "H40-TAS-R"; + }; + + codec@1 { + sound-dai = <0x10f 0x00>; + prefix = "H40-TAS-L"; + }; + }; + }; + + overrides@10 { + target = <0x110>; + + _overlay_ { + nvidia-audio-card,widgets = "Headphone\0CVB-RT Headphone Jack\0Microphone\0CVB-RT Mic Jack\0Speaker\0CVB-RT Int Spk\0Microphone\0CVB-RT Int Mic\0Headphone\0H40-RT Headphone\0Microphone\0H40-RT Mic\0Headphone\0H40-TAS-R Headphone\0Headphone\0H40-TAS-L Headphone"; + nvidia-audio-card,routing = "CVB-RT Headphone Jack\0CVB-RT HPO L Playback\0CVB-RT Headphone Jack\0CVB-RT HPO R Playback\0CVB-RT IN1P\0CVB-RT Mic Jack\0CVB-RT IN2P\0CVB-RT Mic Jack\0CVB-RT Int Spk\0CVB-RT SPO Playback\0CVB-RT DMIC L1\0CVB-RT Int Mic\0CVB-RT DMIC L2\0CVB-RT Int Mic\0CVB-RT DMIC R1\0CVB-RT Int Mic\0CVB-RT DMIC R2\0CVB-RT Int Mic\0H40-RT Headphone\0H40-RT HPO L Playback\0H40-RT Headphone\0H40-RT HPO R Playback\0H40-RT IN1P\0H40-RT Mic\0H40-TAS-R Headphone\0H40-TAS-R OUT\0H40-TAS-L Headphone\0H40-TAS-L OUT"; + }; + }; + }; + + fragment-e2614-a00@1 { + ids = "2614-0000-000"; + + overrides@0 { + target = <0x10c>; + + _overlay_ { + status = "okay"; + }; + }; + + overrides@1 { + target = <0x10b>; + + _overlay_ { + link-name = "rt565x-codec-sysclk-bclk1"; + + codec { + sound-dai = <0x10c 0x00>; + prefix = "H40-RT"; + }; + }; + }; + }; + + fragment-e2614-b00@2 { + ids = "2614-0000-100"; + + overrides@0 { + target = <0x111>; + + _overlay_ { + status = "okay"; + }; + }; + + overrides@1 { + target = <0x10b>; + + _overlay_ { + link-name = "rt565x-codec-sysclk-bclk1"; + + codec { + sound-dai = <0x111 0x00>; + prefix = "H40-RT"; + }; + }; + }; + }; + }; + + pfsd { + num_resources = <0x00>; + secret = <0x2f>; + active_steps = <0x0a>; + active_rpm = <0x00 0x3e8 0x7d0 0xbb8 0xfa0 0x1388 0x1770 0x1b58 0x2710 0x2af8>; + rpm_diff_tolerance = <0x02>; + active_rru = <0x28 0x02 0x01 0x01 0x01 0x01 0x01 0x01 0x01 0x01>; + active_rrd = <0x28 0x02 0x01 0x01 0x01 0x01 0x01 0x01 0x01 0x01>; + state_cap_lookup = <0x02 0x02 0x02 0x02 0x03 0x03 0x03 0x04 0x04 0x04>; + pwm_period = <0xb116>; + pwm_id = <0x03>; + pwm_polarity = <0x01>; + suspend_state = <0x01>; + step_time = <0x64>; + state_cap = <0x07>; + active_pwm_max = <0x100>; + tach_period = <0x3e8>; + pwm_gpio = <0x14 0x7a 0x01>; + phandle = <0x113>; + }; + + pwm-fan { + compatible = "pwm-fan"; + status = "okay"; + #pwm-cells = <0x01>; + pwms = <0x112 0x00 0xb116>; + shared_data = <0x113>; + + profiles { + default = "quiet"; + + quiet { + state_cap = <0x04>; + cooling-levels = <0xff 0xb2 0x87 0x5f 0x00 0x00 0x00 0x00 0x00 0x00>; + }; + + cool { + state_cap = <0x04>; + cooling-levels = <0xff 0xb2 0x87 0x5f 0x00 0x00 0x00 0x00 0x00 0x00>; + }; + }; + }; + + spdif_dit { + compatible = "simple-bus"; + device_type = "spdif-dit"; + #address-cells = <0x01>; + #size-cells = <0x00>; + status = "okay"; + + spdif-dit.0@0 { + compatible = "linux,spdif-dit"; + reg = <0x00>; + status = "okay"; + phandle = <0x2a6>; + }; + + spdif-dit.1@1 { + compatible = "linux,spdif-dit"; + reg = <0x01>; + status = "okay"; + phandle = <0x2a7>; + }; + + spdif-dit.2@2 { + compatible = "linux,spdif-dit"; + reg = <0x02>; + status = "okay"; + phandle = <0x2a8>; + }; + + spdif-dit.3@3 { + compatible = "linux,spdif-dit"; + reg = <0x03>; + status = "okay"; + phandle = <0x2a9>; + }; + + spdif-dit.4@4 { + compatible = "linux,spdif-dit"; + reg = <0x04>; + status = "okay"; + phandle = <0x2aa>; + }; + + spdif-dit.5@5 { + compatible = "linux,spdif-dit"; + reg = <0x05>; + status = "okay"; + phandle = <0x2ab>; + }; + + spdif-dit.6@6 { + compatible = "linux,spdif-dit"; + reg = <0x06>; + status = "okay"; + phandle = <0x2ac>; + }; + + spdif-dit.7@7 { + compatible = "linux,spdif-dit"; + reg = <0x07>; + status = "okay"; + phandle = <0x2ad>; + }; + + spdif-dit.8@8 { + compatible = "linux,spdif-dit"; + reg = <0x08>; + status = "okay"; + phandle = <0x2ae>; + }; + + spdif-dit.9@9 { + compatible = "linux,spdif-dit"; + reg = <0x09>; + status = "okay"; + phandle = <0x2af>; + }; + + spdif-dit.10@a { + compatible = "linux,spdif-dit"; + reg = <0x0a>; + status = "okay"; + phandle = <0x2b0>; + }; + + spdif-dit.11@b { + compatible = "linux,spdif-dit"; + reg = <0x0b>; + status = "okay"; + phandle = <0x2b1>; + }; + + spdif-dit.12@c { + compatible = "linux,spdif-dit"; + reg = <0x0c>; + status = "okay"; + phandle = <0x2b2>; + }; + + spdif-dit.13@d { + compatible = "linux,spdif-dit"; + reg = <0x0d>; + status = "okay"; + phandle = <0x2b3>; + }; + }; + + gps_wake { + compatible = "gps-wake"; + gps-enable-gpio = <0x102 0x08 0x00>; + gps-wakeup-gpio = <0x14 0x00 0x00>; + status = "disabled"; + phandle = <0x2b4>; + }; + + soft_watchdog { + compatible = "softdog-platform"; + status = "okay"; + phandle = <0x2b5>; + }; + + sdhci@3440000 { + vmmc-supply = <0x38>; + }; + + mods-simple-bus { + compatible = "simple-bus"; + device_type = "mods-simple-bus"; + #address-cells = <0x01>; + #size-cells = <0x00>; + + mods-clocks { + compatible = "nvidia,mods-clocks"; + status = "disabled"; + clocks = <0x04 0x01 0x04 0x02 0x04 0x03 0x04 0x04 0x04 0x05 0x04 0x06 0x04 0x07 0x04 0x08 0x04 0x09 0x04 0x0a 0x04 0x0b 0x04 0x0c 0x04 0x0e 0x04 0x0f 0x04 0x10 0x04 0x11 0x04 0x12 0x04 0x13 0x04 0x14 0x04 0x15 0x04 0x16 0x04 0x17 0x04 0x19 0x04 0x1a 0x04 0x1b 0x04 0x1c 0x04 0x1d 0x04 0x1e 0x04 0x1f 0x04 0x20 0x04 0x21 0x04 0x22 0x04 0x23 0x04 0x24 0x04 0x25 0x04 0x26 0x04 0x27 0x04 0x28 0x04 0x29 0x04 0x2a 0x04 0x2e 0x04 0x2f 0x04 0x30 0x04 0x31 0x04 0x32 0x04 0x33 0x04 0x34 0x04 0x35 0x04 0x36 0x04 0x37 0x04 0x38 0x04 0x39 0x04 0x3a 0x04 0x3b 0x04 0x3c 0x04 0x3d 0x04 0x3e 0x04 0x3f 0x04 0x40 0x04 0x41 0x04 0x42 0x04 0x43 0x04 0x45 0x04 0x46 0x04 0x47 0x04 0x48 0x04 0x49 0x04 0x4a 0x04 0x4b 0x04 0x4c 0x04 0x4d 0x04 0x4e 0x04 0x4f 0x04 0x50 0x04 0x51 0x04 0x52 0x04 0x53 0x04 0x54 0x04 0x55 0x04 0x56 0x04 0x57 0x04 0x58 0x04 0x59 0x04 0x5a 0x04 0x5b 0x04 0x5c 0x04 0x5d 0x04 0x5e 0x04 0x64 0x04 0x65 0x04 0x66 0x04 0x67 0x04 0x68 0x04 0x69 0x04 0x6a 0x04 0x6b 0x04 0x6c 0x04 0x6d 0x04 0x6e 0x04 0x6f 0x04 0x70 0x04 0x71 0x04 0x72 0x04 0x75 0x04 0x76 0x04 0x77 0x04 0x78 0x04 0x79 0x04 0x7b 0x04 0x7c 0x04 0x7d 0x04 0x7e 0x04 0x7f 0x04 0x80 0x04 0x81 0x04 0x82 0x04 0x83 0x04 0x86 0x04 0x87 0x04 0x88 0x04 0x89 0x04 0x8a 0x04 0x8b 0x04 0x8c 0x04 0x8d 0x04 0x8e 0x04 0x8f 0x04 0x90 0x04 0x91 0x04 0x92 0x04 0x93 0x04 0x94 0x04 0x95 0x04 0x96 0x04 0x97 0x04 0x98 0x04 0x99 0x04 0x9a 0x04 0x9b 0x04 0x9c 0x04 0x9d 0x04 0x9e 0x04 0x9f 0x04 0xa0 0x04 0xa1 0x04 0xa2 0x04 0xa3 0x04 0xa4 0x04 0xa5 0x04 0xa6 0x04 0xa7 0x04 0xa8 0x04 0xa9 0x04 0xaa 0x04 0xab 0x04 0xac 0x04 0xad 0x04 0xae 0x04 0xaf 0x04 0xb0 0x04 0xb1 0x04 0xb2 0x04 0xb3 0x04 0xb4 0x04 0xb5 0x04 0xb6 0x04 0xb7 0x04 0xb8 0x04 0xbb 0x04 0xbc 0x04 0xbd 0x04 0xbe 0x04 0xbf 0x04 0xc0 0x04 0xc1 0x04 0xc2 0x04 0xc3 0x04 0xc4 0x04 0xc5 0x04 0xc6 0x04 0xc7 0x04 0xc8 0x04 0xc9 0x04 0xcb 0x04 0xcc 0x04 0xcd 0x04 0xce 0x04 0xcf 0x04 0xd1 0x04 0xd2 0x04 0xd3 0x04 0xd4 0x04 0xd5 0x04 0xd6 0x04 0xd7 0x04 0xd8 0x04 0xd9 0x04 0xdb 0x04 0xdc 0x04 0xdd 0x04 0xde 0x04 0xdf 0x04 0xe0 0x04 0xe1 0x04 0xe5 0x04 0xe6 0x04 0xe7 0x04 0xe8 0x04 0xe9 0x04 0xea 0x04 0xeb 0x04 0xec 0x04 0xed 0x04 0xef 0x04 0xf0 0x04 0xf1 0x04 0xf2 0x04 0xf3 0x04 0xf4 0x04 0xf5 0x04 0xf6 0x04 0xf7 0x04 0xf8 0x04 0xf9 0x04 0xfa 0x04 0xfb 0x04 0xfe 0x04 0xff 0x04 0x100 0x04 0x101 0x04 0x102 0x04 0x107 0x04 0x108 0x04 0x109 0x04 0x10a 0x04 0x10b 0x04 0x10c 0x04 0x10d 0x04 0x10e 0x04 0x10f 0x04 0x110 0x04 0x111 0x04 0x112 0x04 0x113 0x04 0x114 0x04 0x115 0x04 0x118 0x04 0x119 0x04 0x11a 0x04 0x11c 0x04 0x11d 0x04 0x11e 0x04 0x11f 0x04 0x120 0x04 0x121 0x04 0x123 0x04 0x124 0x04 0x126 0x04 0x127 0x04 0x129 0x04 0x12b 0x04 0x12c 0x04 0x12d 0x04 0x12e 0x04 0x12f 0x04 0x130 0x04 0x131 0x04 0x132 0x04 0x133 0x04 0x134 0x04 0x135 0x04 0x136 0x04 0x137 0x04 0x138 0x04 0x139 0x04 0x13a 0x04 0x13b 0x04 0x13d 0x04 0x13e 0x04 0x13f 0x04 0x140 0x04 0x141 0x04 0x142 0x04 0x143 0x04 0x144 0x04 0x146 0x04 0x147 0x04 0x148 0x04 0x149 0x04 0x14a 0x04 0x14b 0x04 0x14d 0x04 0x14e 0x04 0x14f 0x04 0x150 0x04 0x151 0x04 0x152 0x04 0x153 0x04 0x154 0x04 0x155 0x04 0x156 0x04 0x157 0x04 0x158 0x04 0x159 0x04 0x15a 0x04 0x15b 0x04 0x15c 0x04 0x15d 0x04 0x15e 0x04 0x15f 0x04 0x160 0x04 0x161 0x04 0x162 0x04 0x163 0x04 0x165 0x04 0x166 0x04 0x167 0x04 0x168 0x04 0x169 0x04 0x16a 0x04 0x16b 0x04 0x16c 0x04 0x16d 0x04 0x16e 0x04 0x16f 0x04 0x170 0x04 0x171 0x04 0x172 0x04 0x173 0x04 0x174 0x04 0x175 0x04 0x176 0x04 0x177 0x04 0x178 0x04 0x179 0x04 0x17a 0x04 0x17b 0x04 0x17c 0x04 0x17d 0x04 0x17e 0x04 0x17f 0x04 0x180 0x04 0x181 0x04 0x182 0x04 0x183 0x04 0x184 0x04 0x185 0x04 0x186 0x04 0x187 0x04 0x188 0x04 0x189 0x04 0x18a 0x04 0x18b 0x04 0x18c 0x04 0x18d 0x04 0x18e 0x04 0x18f 0x04 0x190 0x04 0x191 0x04 0x192 0x04 0x193 0x04 0x194 0x04 0x195 0x04 0x196 0x04 0x197 0x04 0x198 0x04 0x199 0x04 0x19a 0x04 0x19b 0x04 0x19c 0x04 0x19d 0x04 0x19e 0x04 0x19f 0x04 0x1a0 0x04 0x1a1 0x04 0x1a2 0x04 0x1a3 0x04 0x1a4 0x04 0x1a5 0x04 0x1a6 0x04 0x1a7 0x04 0x1a8 0x04 0x1a9 0x04 0x1aa 0x04 0x1ab 0x04 0x1ac 0x04 0x1ad 0x04 0x1ae 0x04 0x1af 0x04 0x1b0 0x04 0x1b1 0x04 0x1b2 0x04 0x1b3 0x04 0x1b4 0x04 0x1b5 0x04 0x1b6 0x04 0x1b7 0x04 0x1b8 0x04 0x1b9 0x04 0x1ba 0x04 0x1bb 0x04 0x1bc 0x04 0x1bd 0x04 0x1be 0x04 0x1bf 0x04 0x1c0 0x04 0x1c1 0x04 0x1c2 0x04 0x1c3 0x04 0x1c4 0x04 0x1c5 0x04 0x1c6 0x04 0x1c7 0x04 0x1c8 0x04 0x1c9 0x04 0x1ca 0x04 0x1cb 0x04 0x1cc 0x04 0x1cd 0x04 0x1ce 0x04 0x1cf 0x04 0x1d0 0x04 0x1d1 0x04 0x1d2 0x04 0x1d3 0x04 0x1d4 0x04 0x1d5 0x04 0x1d6 0x04 0x1d7 0x04 0x1d8 0x04 0x1d9 0x04 0x1da 0x04 0x1db 0x04 0x1dc>; + clock-names = "actmon\0adsp\0adspneon\0ahub\0apb2ape\0ape\0aud_mclk\0axi_cbb\0can1\0can1_host\0can2\0can2_host\0clk_m\0dmic1\0dmic2\0dmic3\0dmic4\0dpaux\0nvjpg1\0aclk\0mss_encrypt\0eqos_rx_input\0aon_apb\0aon_nic\0aon_cpu_nic\0plla1\0dspk1\0dspk2\0emc\0eqos_axi\0eqos_ptp_ref\0eqos_rx\0eqos_tx\0extperiph1\0extperiph2\0extperiph3\0extperiph4\0fuse\0gpc0clk\0gpu_pwr\0host1x\0xusb_hs_hsicp\0i2c1\0i2c2\0i2c3\0i2c4\0i2c6\0i2c7\0i2c8\0i2c9\0i2s1\0i2s1_sync_input\0i2s2\0i2s2_sync_input\0i2s3\0i2s3_sync_input\0i2s4\0i2s4_sync_input\0i2s5\0i2s5_sync_input\0i2s6\0i2s6_sync_input\0isp\0eqos_rx_m\0maud\0mipi_cal\0mphy_core_pll_fixed\0mphy_l0_rx_ana\0mphy_l0_rx_ls_bit\0mphy_l0_rx_symb\0mphy_l0_tx_ls_3xbit\0mphy_l0_tx_symb\0mphy_l1_rx_ana\0mphy_tx_1mhz_ref\0nvcsi\0nvcsilp\0nvdec\0hub\0disp\0nvdisplay_p0\0nvdisplay_p1\0dsc\0nvenc\0nvjpg\0osc\0aon_touch\0plla\0pllaon\0plle\0pllp\0pllp_out0\0utmip_pll\0plla_out0\0pwm1\0pwm2\0pwm3\0pwm4\0pwm5\0pwm6\0pwm7\0pwm8\0rce_cpu_nic\0rce_nic\0aon_i2c_slow\0sce_cpu_nic\0sce_nic\0sdmmc1\0uphy_pll3\0sdmmc4\0se\0sor0_pll_ref\0sor0_ref\0sor1_pll_ref\0pre_sor0_ref\0sor1_ref\0pre_sor1_ref\0sor_safe\0dmic5\0spi1\0spi2\0spi3\0i2c_slow\0sync_dmic1\0sync_dmic2\0sync_dmic3\0sync_dmic4\0sync_dspk1\0sync_dspk2\0sync_i2s1\0sync_i2s2\0sync_i2s3\0sync_i2s4\0sync_i2s5\0sync_i2s6\0mphy_force_ls_mode\0tach0\0tsec\0tsec_pka\0uarta\0uartb\0uartc\0uartd\0uarte\0uartf\0pex1_c6_core\0uart_fst_mipi_cal\0ufsdev_ref\0ufshc\0usb2_trk\0vi\0vic\0csite\0ist\0jtag_intfc_pre_cg\0pex2_c7_core\0pex2_c8_core\0pex2_c9_core\0dla0_falcon\0dla0_core\0dla1_falcon\0dla1_core\0sor0\0sor1\0sor_pad_input\0pre_sf0\0sf0\0sf1\0dsi_pad_input\0pex2_c10_core\0uarti\0uartj\0uarth\0fuse_serial\0qspi0_2x_pm\0qspi1_2x_pm\0qspi0_pm\0qspi1_pm\0vi_const\0nafll_bpmp\0nafll_sce\0nafll_nvdec\0nafll_nvjpg\0nafll_tsec\0nafll_vi\0nafll_se\0nafll_nvenc\0nafll_isp\0nafll_vic\0nafll_axicbb\0nafll_nvjpg1\0nafll_pva0_core\0nafll_pva0_vps\0dbgapb\0nafll_rce\0la\0pllp_out_jtag\0sdmmc4_axicif\0sdmmc_legacy_tm\0pex0_c0_core\0pex0_c1_core\0pex0_c2_core\0pex0_c3_core\0pex0_c4_core\0pex1_c5_core\0pex0_c0_core_m\0pex0_c1_core_m\0pex0_c2_core_m\0pex0_c3_core_m\0pex0_c4_core_m\0pex1_c5_core_m\0pex1_c6_core_m\0gpc1clk\0pllc4\0pllc4_out1\0pllc4_out2\0pllc4_muxed\0pllc4_vco_div2\0pllnvhs\0pex2_c7_core_m\0pex2_c8_core_m\0pex2_c9_core_m\0pex2_c10_core_m\0mgbe0_rx_input\0mgbe1_rx_input\0mgbe2_rx_input\0mgbe3_rx_input\0pex_sata_usb_rx_byp\0pex_usb_pad_pll0_mgmt\0pex_usb_pad_pll1_mgmt\0pex_usb_pad_pll2_mgmt\0pex_usb_pad_pll3_mgmt\0nvhs_rx_byp_ref\0nvhs_pll0_mgmt\0xusb_core_dev\0xusb_core_mux\0xusb_core_host\0xusb_core_ss\0xusb_falcon\0xusb_falcon_host\0xusb_falcon_ss\0xusb_fs\0xusb_fs_host\0xusb_fs_dev\0xusb_ss\0xusb_ss_dev\0xusb_ss_superspeed\0nafll_cluster0\0nafll_cluster1\0nafll_cluster2\0can1_core\0can2_core\0plla1_out1\0pllnvhs_hps\0pllrefe_vcoout\0clk_32k\0utmipll_clkout48\0utmipll_clkout480\0pllnvcsi\0pva0_cpu_axi\0pva0_vps\0nafll_dla0_core\0nafll_dla0_falcon\0nafll_dla1_core\0nafll_dla1_falcon\0aon_uart_fst_mipi_cal\0gpusys\0i2c5\0fr_se\0bpmp_cpu_nic\0bpmp_cpu\0tsc\0emcsa_mpll\0emcsb_mpll\0emcsc_mpll\0emcsd_mpll\0pllc\0pllc2\0tsc_ref\0fuse_burn\0pllgbe\0pllgbe_hps\0emcsa_emc\0emcsb_emc\0emcsc_emc\0emcsd_emc\0plle_hps\0pllrefe_vcoout_gated\0pllp_div17\0soc_therm\0tsense\0fr_seu1\0nafll_ofa\0ofa\0nafll_seu1\0seu1\0spi4\0spi5\0dce_cpu_nic\0dce_nic\0nafll_dce\0mphy_l0_rx_ana_m\0mphy_l1_rx_ana_m\0mphy_l0_tx_pre_symb\0mphy_l0_tx_ls_symb_div\0mphy_l0_tx_2x_symb\0mphy_l0_tx_hs_symb_div\0mphy_l0_tx_ls_3xbit_div\0mphy_l0_tx_mux_symb_div\0mphy_l0_tx_symb_m\0mphy_l0_rx_ls_symb_div\0mphy_l0_rx_hs_symb_div\0mphy_l0_rx_ls_bit_div\0mphy_l0_rx_mux_symb_div\0mphy_l0_rx_symb_m\0mgbe0_rx_input_m\0mgbe1_rx_input_m\0mgbe2_rx_input_m\0mgbe3_rx_input_m\0mgbe0_rx_pcs_m\0mgbe1_rx_pcs_m\0mgbe2_rx_pcs_m\0mgbe3_rx_pcs_m\0tach1\0mgbes_app\0uphy_gbe_pll2_tx_ref\0uphy_gbe_pll2_xdig\0mgbe0_rx_pcs_input\0mgbe1_rx_pcs_input\0mgbe2_rx_pcs_input\0mgbe3_rx_pcs_input\0mgbe0_rx_pcs\0mgbe0_tx\0mgbe0_tx_pcs\0mgbe0_mac_divider\0mgbe0_mac\0mgbe0_macsec\0mgbe0_eee_pcs\0mgbe0_app\0mgbe0_ptp_ref\0mgbe1_rx_pcs\0mgbe1_tx\0mgbe1_tx_pcs\0mgbe1_mac_divider\0mgbe1_mac\0mgbe1_macsec\0mgbe1_eee_pcs\0mgbe1_app\0mgbe1_ptp_ref\0mgbe2_rx_pcs\0mgbe2_tx\0mgbe2_tx_pcs\0mgbe2_mac_divider\0mgbe2_mac\0mgbe2_macsec\0mgbe2_eee_pcs\0mgbe2_app\0mgbe2_ptp_ref\0mgbe3_rx_pcs\0mgbe3_tx\0mgbe3_tx_pcs\0mgbe3_mac_divider\0mgbe3_mac\0mgbe3_macsec\0mgbe3_eee_pcs\0mgbe3_app\0mgbe3_ptp_ref\0gbe_rx_byp_ref\0gbe_pll0_mgmt\0gbe_pll1_mgmt\0gbe_pll2_mgmt\0eqos_macsec_rx\0eqos_macsec_tx\0eqos_tx_divider\0nvhs_pll1_mgmt\0emchub\0i2s7_sync_input\0sync_i2s7\0i2s7\0i2s7_pad_m\0i2s8_sync_input\0sync_i2s8\0i2s8\0i2s8_pad_m\0nafll_gpc0\0nafll_gpc1\0nafll_gpusys\0nafll_dsu0\0nafll_dsu1\0nafll_dsu2\0sce_cpu\0rce_cpu\0dce_cpu\0dsipll_vco\0dsipll_clkoutpn\0dsipll_clkouta\0sppll0_vco\0sppll0_clkoutpn\0sppll0_clkouta\0sppll0_clkoutb\0sppll0_div10\0sppll0_div25\0sppll0_div27pn\0sppll1_vco\0sppll1_clkoutpn\0sppll1_div27pn\0vpll0_ref\0vpll0\0vpll1\0nvdisplay_p0_ref\0rg0\0rg1\0disppll\0disphubpll\0dsi_lp\0aza_2xbit\0aza_bit\0dsi_core\0dsi_pixel\0pre_sor0\0pre_sor1\0dp_link_ref\0sor_linka_input\0sor_linka_afifo\0sor_linka_afifo_m\0rg0_m\0rg1_m\0sor0_m\0sor1_m\0pllhub\0mchub\0emcsa_mc\0emcsb_mc\0emcsc_mc\0emcsd_mc"; + resets = <0x04 0x01 0x04 0x02 0x04 0x04 0x04 0x05 0x04 0x06 0x04 0x07 0x04 0x08 0x04 0x09 0x04 0x0a 0x04 0x0b 0x04 0x0c 0x04 0x0d 0x04 0x0e 0x04 0x0f 0x04 0x10 0x04 0x11 0x04 0x12 0x04 0x13 0x04 0x14 0x04 0x15 0x04 0x16 0x04 0x17 0x04 0x18 0x04 0x19 0x04 0x1a 0x04 0x1b 0x04 0x1c 0x04 0x1d 0x04 0x1e 0x04 0x1f 0x04 0x20 0x04 0x21 0x04 0x22 0x04 0x23 0x04 0x24 0x04 0x25 0x04 0x26 0x04 0x27 0x04 0x28 0x04 0x29 0x04 0x2a 0x04 0x2b 0x04 0x2c 0x04 0x2d 0x04 0x2e 0x04 0x2f 0x04 0x30 0x04 0x31 0x04 0x32 0x04 0x33 0x04 0x34 0x04 0x35 0x04 0x36 0x04 0x37 0x04 0x38 0x04 0x39 0x04 0x3a 0x04 0x3b 0x04 0x3c 0x04 0x3d 0x04 0x3e 0x04 0x3f 0x04 0x40 0x04 0x41 0x04 0x42 0x04 0x44 0x04 0x45 0x04 0x46 0x04 0x47 0x04 0x48 0x04 0x49 0x04 0x4a 0x04 0x4b 0x04 0x4c 0x04 0x4d 0x04 0x50 0x04 0x51 0x04 0x52 0x04 0x55 0x04 0x56 0x04 0x57 0x04 0x58 0x04 0x59 0x04 0x5a 0x04 0x5b 0x04 0x5c 0x04 0x5d 0x04 0x5e 0x04 0x5f 0x04 0x60 0x04 0x62 0x04 0x64 0x04 0x65 0x04 0x66 0x04 0x67 0x04 0x68 0x04 0x69 0x04 0x6b 0x04 0x6c 0x04 0x6d 0x04 0x6e 0x04 0x70 0x04 0x71 0x04 0x72 0x04 0x74 0x04 0x75 0x04 0x76 0x04 0x77 0x04 0x78 0x04 0x79 0x04 0x7a 0x04 0x7b 0x04 0x7c 0x04 0x7d 0x04 0x7e 0x04 0x81 0x04 0x82 0x04 0x83 0x04 0x84 0x04 0x85 0x04 0x86 0x04 0x87 0x04 0x88 0x04 0x89 0x04 0x8a 0x04 0x8b 0x04 0x8c 0x04 0x8d 0x04 0x8e 0x04 0x8f 0x04 0x90 0x04 0x91 0x04 0x92 0x04 0x93 0x04 0x94 0x04 0x95 0x04 0x96 0x04 0x97 0x04 0x98 0x04 0x99 0x04 0x9a 0x04 0x9f 0x04 0xa0 0x04 0xa1 0x04 0xa2 0x04 0xa3 0x04 0xa4 0x04 0xa5 0x04 0xa6 0x04 0xa7 0x04 0xa8 0x04 0xa9 0x04 0xaa 0x04 0xab 0x04 0xac 0x04 0xad>; + reset-names = "actmon\0adsp_all\0can1\0can2\0dla0\0dla1\0dpaux\0ofa\0nvjpg1\0pex1_core_6\0pex1_core_6_apb\0pex1_common_apb\0pex2_core_7\0pex2_core_7_apb\0nvdisplay\0eqos\0gpcdma\0gpu\0hda\0hdacodec\0eqos_macsec\0eqos_macsec_secure\0i2c1\0pex2_core_8\0pex2_core_8_apb\0pex2_core_9\0pex2_core_9_apb\0i2c2\0i2c3\0i2c4\0i2c6\0i2c7\0i2c8\0i2c9\0isp\0mipi_cal\0mphy_clk_ctl\0mphy_l0_rx\0mphy_l0_tx\0mphy_l1_rx\0mphy_l1_tx\0nvcsi\0nvdec\0mgbe0_pcs\0mgbe0_mac\0mgbe0_macsec\0mgbe0_macsec_secure\0mgbe1_pcs\0mgbe1_mac\0mgbe1_macsec\0mgbe1_macsec_secure\0mgbe2_pcs\0mgbe2_mac\0mgbe2_macsec\0pex2_core_10\0pex2_core_10_apb\0pex2_common_apb\0nvenc\0mgbe2_macsec_secure\0nvjpg\0pcie\0pciexclk\0la\0hwpm\0pva0_all\0pwm1\0pwm2\0pwm3\0pwm4\0pwm5\0pwm6\0pwm7\0pwm8\0qspi0\0qspi1\0sce_all\0rce_all\0sdmmc1\0sdmmc4\0se\0mgbe3_pcs\0mgbe3_mac\0mgbe3_macsec\0mgbe3_macsec_secure\0spi1\0spi2\0spi3\0spi4\0tach0\0tach1\0tsec\0uarta\0uartb\0uartc\0uartd\0uarte\0uartf\0uarth\0ufshc\0ufshc_axi_m\0ufshc_lp_seq\0vi\0vic\0xusb_padctl\0pex0_core_0\0pex0_core_1\0pex0_core_2\0pex0_core_3\0pex0_core_4\0pex0_core_0_apb\0pex0_core_1_apb\0pex0_core_2_apb\0pex0_core_3_apb\0pex0_core_4_apb\0pex0_common_apb\0pex1_core_5\0pex1_core_5_apb\0gbe_uphy\0gbe_uphy_pm\0nvhs_uphy\0nvhs_uphy_pll0\0nvhs_uphy_l0\0nvhs_uphy_l1\0nvhs_uphy_l2\0nvhs_uphy_l3\0nvhs_uphy_l4\0nvhs_uphy_l5\0nvhs_uphy_l6\0nvhs_uphy_l7\0nvhs_uphy_pm\0dmic5\0ape\0pex_usb_uphy\0pex_usb_uphy_l0\0pex_usb_uphy_l1\0pex_usb_uphy_l2\0pex_usb_uphy_l3\0pex_usb_uphy_l4\0pex_usb_uphy_l5\0pex_usb_uphy_l6\0pex_usb_uphy_l7\0pex_usb_uphy_pll0\0pex_usb_uphy_pll1\0pex_usb_uphy_pll2\0pex_usb_uphy_pll3\0gbe_uphy_l0\0gbe_uphy_l1\0gbe_uphy_l2\0gbe_uphy_l3\0gbe_uphy_l4\0gbe_uphy_l5\0gbe_uphy_l6\0gbe_uphy_l7\0gbe_uphy_pll0\0gbe_uphy_pll1\0gbe_uphy_pll2"; + }; + }; + + tegra-camera-platform { + compatible = "nvidia, tegra-camera-platform"; + num_csi_lanes = <0x08>; + max_lane_speed = <0x16e360>; + min_bits_per_pixel = <0x0a>; + vi_peak_byte_per_pixel = <0x02>; + vi_bw_margin_pct = <0x19>; + max_pixel_rate = <0xb71b0>; + isp_peak_byte_per_pixel = <0x05>; + isp_bw_margin_pct = <0x19>; + tpg_max_iso = <0x3bc400>; + phandle = <0x2b6>; + + modules { + + module0 { + badge = "imx274_bottom_A6V26"; + position = "bottom"; + orientation = [31 00]; + status = "disabled"; + phandle = <0x2b7>; + + drivernode0 { + pcl_id = "v4l2_sensor"; + devname = "imx274 30-001a"; + proc-device-tree = "/proc/device-tree/i2c@3180000/tca9546@70/i2c@0/imx274_a@1a"; + status = "disabled"; + phandle = <0x2b8>; + }; + + drivernode1 { + pcl_id = "v4l2_lens"; + proc-device-tree = "/proc/device-tree/lens_imx274@A6V26/"; + status = "disabled"; + phandle = <0x2b9>; + }; + }; + + module1 { + badge = "imx274_top_A6V26"; + position = "top"; + orientation = [31 00]; + status = "disabled"; + phandle = <0x2ba>; + + drivernode0 { + pcl_id = "v4l2_sensor"; + devname = "imx274 31-001a"; + proc-device-tree = "/proc/device-tree/i2c@3180000/tca9546@70/i2c@1/imx274_c@1a"; + status = "disabled"; + phandle = <0x2bb>; + }; + + drivernode1 { + pcl_id = "v4l2_lens"; + proc-device-tree = "/proc/device-tree/lens_imx274@A6V26/"; + status = "disabled"; + phandle = <0x2bc>; + }; + }; + + module2 { + badge = "e3333_centerright_P5V27C"; + position = "centerright"; + orientation = [31 00]; + status = "disabled"; + phandle = <0x2bd>; + + drivernode0 { + pcl_id = "v4l2_sensor"; + devname = "ov5693 32-0036"; + proc-device-tree = "/proc/device-tree/i2c@3180000/tca9548@77/i2c@2/ov5693_c@36"; + status = "disabled"; + phandle = <0x2be>; + }; + + drivernode1 { + pcl_id = "v4l2_lens"; + proc-device-tree = "/proc/device-tree/e3333_lens_ov5693@P5V27C/"; + status = "disabled"; + phandle = <0x2bf>; + }; + }; + + module3 { + badge = "e3333_topleft_P5V27C"; + position = "topleft"; + orientation = [31 00]; + status = "disabled"; + phandle = <0x2c0>; + + drivernode0 { + pcl_id = "v4l2_sensor"; + devname = "ov5693 33-0036"; + proc-device-tree = "/proc/device-tree/i2c@3180000/tca9548@77/i2c@3/ov5693_d@36"; + status = "disabled"; + phandle = <0x2c1>; + }; + + drivernode1 { + pcl_id = "v4l2_lens"; + proc-device-tree = "/proc/device-tree/e3333_lens_ov5693@P5V27C/"; + status = "disabled"; + phandle = <0x2c2>; + }; + }; + + module4 { + badge = "e3333_bottomright_P5V27C"; + position = "bottomright"; + orientation = [31 00]; + status = "disabled"; + phandle = <0x2c3>; + + drivernode0 { + pcl_id = "v4l2_sensor"; + devname = "ov5693 34-0036"; + proc-device-tree = "/proc/device-tree/i2c@3180000/tca9548@77/i2c@4/ov5693_e@36"; + status = "disabled"; + phandle = <0x2c4>; + }; + + drivernode1 { + pcl_id = "v4l2_lens"; + proc-device-tree = "/proc/device-tree/e3333_lens_ov5693@P5V27C/"; + status = "disabled"; + phandle = <0x2c5>; + }; + }; + + module5 { + badge = "e3333_topright_P5V27C"; + position = "topright"; + orientation = [31 00]; + status = "disabled"; + phandle = <0x2c6>; + + drivernode0 { + pcl_id = "v4l2_sensor"; + devname = "ov5693 35-0036"; + proc-device-tree = "/proc/device-tree/i2c@3180000/tca9548@77/i2c@5/ov5693_g@36"; + status = "disabled"; + phandle = <0x2c7>; + }; + + drivernode1 { + pcl_id = "v4l2_lens"; + proc-device-tree = "/proc/device-tree/e3333_lens_ov5693@P5V27C/"; + status = "disabled"; + phandle = <0x2c8>; + }; + }; + }; + }; + + e3333_lens_ov5693@P5V27C { + min_focus_distance = "0.0"; + hyper_focal = "0.0"; + focal_length = "2.67"; + f_number = "2.0"; + aperture = "2.0"; + }; + + lens_imx274@A6V26 { + min_focus_distance = "0.0"; + hyper_focal = "0.0"; + focal_length = "5.00"; + f_number = "2.0"; + aperture = "2.2"; + }; + + cpu-throttle-alert { + compatible = "userspace-therm-alert"; + cdev-type = "cpu-throttle-alert"; + status = "okay"; + #cooling-cells = <0x02>; + phandle = <0xa2>; + }; + + gpu-throttle-alert { + compatible = "userspace-therm-alert"; + cdev-type = "gpu-throttle-alert"; + status = "okay"; + #cooling-cells = <0x02>; + phandle = <0xa6>; + }; + + cv0-throttle-alert { + compatible = "userspace-therm-alert"; + cdev-type = "cv0-throttle-alert"; + status = "okay"; + #cooling-cells = <0x02>; + phandle = <0xa9>; + }; + + cv1-throttle-alert { + compatible = "userspace-therm-alert"; + cdev-type = "cv1-throttle-alert"; + status = "okay"; + #cooling-cells = <0x02>; + phandle = <0xac>; + }; + + cv2-throttle-alert { + compatible = "userspace-therm-alert"; + cdev-type = "cv2-throttle-alert"; + status = "okay"; + #cooling-cells = <0x02>; + phandle = <0xaf>; + }; + + soc0-throttle-alert { + compatible = "userspace-therm-alert"; + cdev-type = "soc0-throttle-alert"; + status = "okay"; + #cooling-cells = <0x02>; + phandle = <0xb2>; + }; + + soc1-throttle-alert { + compatible = "userspace-therm-alert"; + cdev-type = "soc1-throttle-alert"; + status = "okay"; + #cooling-cells = <0x02>; + phandle = <0xb5>; + }; + + soc2-throttle-alert { + compatible = "userspace-therm-alert"; + cdev-type = "soc2-throttle-alert"; + status = "okay"; + #cooling-cells = <0x02>; + phandle = <0xb8>; + }; + + hot-surface-alert { + compatible = "userspace-therm-alert"; + cdev-type = "hot-surface-alert"; + status = "okay"; + #cooling-cells = <0x02>; + phandle = <0xa4>; + }; + + tegra_soc_hwpm { + compatible = "nvidia,t234-soc-hwpm"; + dma-coherent; + reg = <0x00 0xf100000 0x00 0x1000 0x00 0xf101000 0x00 0x1000 0x00 0xf102000 0x00 0x1000 0x00 0xf103000 0x00 0x1000 0x00 0xf104000 0x00 0x1000 0x00 0xf105000 0x00 0x1000 0x00 0xf106000 0x00 0x1000 0x00 0xf107000 0x00 0x1000 0x00 0xf108000 0x00 0x1000 0x00 0xf109000 0x00 0x1000 0x00 0xf10a000 0x00 0x1000 0x00 0xf10b000 0x00 0x1000 0x00 0xf10c000 0x00 0x1000 0x00 0xf10d000 0x00 0x1000 0x00 0xf10e000 0x00 0x1000 0x00 0xf10f000 0x00 0x1000 0x00 0xf110000 0x00 0x1000 0x00 0xf111000 0x00 0x1000 0x00 0xf112000 0x00 0x1000 0x00 0xf113000 0x00 0x1000 0x00 0xf114000 0x00 0x1000 0x00 0xf115000 0x00 0x1000 0x00 0xf116000 0x00 0x1000 0x00 0xf117000 0x00 0x1000 0x00 0xf118000 0x00 0x1000 0x00 0xf119000 0x00 0x1000 0x00 0xf11a000 0x00 0x1000 0x00 0xf11b000 0x00 0x1000 0x00 0xf11c000 0x00 0x1000 0x00 0xf11d000 0x00 0x1000 0x00 0xf11e000 0x00 0x1000 0x00 0xf11f000 0x00 0x1000 0x00 0xf120000 0x00 0x1000 0x00 0xf121000 0x00 0x1000 0x00 0xf122000 0x00 0x1000 0x00 0xf123000 0x00 0x1000 0x00 0xf124000 0x00 0x1000 0x00 0xf125000 0x00 0x1000 0x00 0xf126000 0x00 0x1000 0x00 0xf127000 0x00 0x1000 0x00 0xf128000 0x00 0x1000 0x00 0xf129000 0x00 0x1000 0x00 0xf12a000 0x00 0x1000 0x00 0xf12b000 0x00 0x1000 0x00 0xf12c000 0x00 0x1000 0x00 0xf12d000 0x00 0x1000 0x00 0xf12e000 0x00 0x1000 0x00 0xf12f000 0x00 0x1000 0x00 0xf130000 0x00 0x1000 0x00 0xf131000 0x00 0x1000 0x00 0xf132000 0x00 0x1000 0x00 0xf133000 0x00 0x1000 0x00 0xf14a000 0x00 0x2000 0x00 0xf14d000 0x00 0x1000>; + clocks = <0x04 0xd7 0x04 0x147>; + clock-names = "la\0parent"; + resets = <0x04 0x40 0x04 0x41>; + reset-names = "la\0hwpm"; + iommus = <0x22 0x04>; + status = "okay"; + }; + + __symbols__ { + intc = "/interrupt-controller@f400000"; + gic_v2m = "/interrupt-controller@f400000/v2m@f410000"; + uarta = "/serial@3100000"; + generic_reserved = "/reserved-memory/generic_carveout"; + gos_reserved = "/reserved-memory/grid-of-semaphores"; + ramoops_reserved = "/reserved-memory/ramoops_carveout"; + fsi_reserved = "/reserved-memory/fsi-carveout"; + vpr = "/reserved-memory/vpr-carveout"; + camdbg_reserved = "/reserved-memory/camdbg_carveout"; + mc = "/mc"; + smmu_niso0 = "/iommu@12000000"; + smmu_iso = "/iommu@10000000"; + smmu_niso1 = "/iommu@8000000"; + smmu_test = "/smmu_test"; + dma_test = "/dma_test"; + IPI = "/interrupt-controller"; + pinmux = "/pinmux@2430000"; + tegra_pinctrl = "/pinmux@2430000"; + pex_rst_c5_in_state = "/pinmux@2430000/pex_rst_c5_in"; + pex_rst_c6_in_state = "/pinmux@2430000/pex_rst_c6_in"; + pex_rst_c7_in_state = "/pinmux@2430000/pex_rst_c7_in"; + pex_rst_c10_in_state = "/pinmux@2430000/pex_rst_c10_in"; + eqos_mii_rx_input_state_disable = "/pinmux@2430000/eqos_rx_disable"; + eqos_mii_rx_input_state_enable = "/pinmux@2430000/eqos_rx_enable"; + p2u_hsio_0 = "/cbb/p2u@03e00000"; + p2u_hsio_1 = "/cbb/p2u@03e10000"; + p2u_hsio_2 = "/cbb/p2u@03e20000"; + p2u_hsio_3 = "/cbb/p2u@03e30000"; + p2u_hsio_4 = "/cbb/p2u@03e40000"; + p2u_hsio_5 = "/cbb/p2u@03e50000"; + p2u_hsio_6 = "/cbb/p2u@03e60000"; + p2u_hsio_7 = "/cbb/p2u@03e70000"; + p2u_nvhs_0 = "/cbb/p2u@03e90000"; + p2u_nvhs_1 = "/cbb/p2u@03ea0000"; + p2u_nvhs_2 = "/cbb/p2u@03eb0000"; + p2u_nvhs_3 = "/cbb/p2u@03ec0000"; + p2u_nvhs_4 = "/cbb/p2u@03ed0000"; + p2u_nvhs_5 = "/cbb/p2u@03ee0000"; + p2u_nvhs_6 = "/cbb/p2u@03ef0000"; + p2u_nvhs_7 = "/cbb/p2u@03f00000"; + p2u_gbe_0 = "/cbb/p2u@03f20000"; + p2u_gbe_1 = "/cbb/p2u@03f30000"; + p2u_gbe_2 = "/cbb/p2u@03f40000"; + p2u_gbe_3 = "/cbb/p2u@03f50000"; + p2u_gbe_4 = "/cbb/p2u@03f60000"; + p2u_gbe_5 = "/cbb/p2u@03f70000"; + p2u_gbe_6 = "/cbb/p2u@03f80000"; + p2u_gbe_7 = "/cbb/p2u@03f90000"; + pcie_c5_ep = "/pcie_ep@141a0000"; + pcie_c6_ep = "/pcie_ep@141c0000"; + pcie_c7_ep = "/pcie_ep@141e0000"; + pcie_c10_ep = "/pcie_ep@140e0000"; + pcie_c0_rp = "/pcie@14180000"; + pcie_c1_rp = "/pcie@14100000"; + pcie_c2_rp = "/pcie@14120000"; + pcie_c3_rp = "/pcie@14140000"; + pcie_c4_rp = "/pcie@14160000"; + pcie_c5_rp = "/pcie@141a0000"; + pcie_c6_rp = "/pcie@141c0000"; + pcie_c7_rp = "/pcie@141e0000"; + pcie_c8_rp = "/pcie@140a0000"; + pcie_c9_rp = "/pcie@140c0000"; + pcie_c10_rp = "/pcie@140e0000"; + eqos_vm_irq_config = "/vm-irq-config"; + mgbe_vm_irq_config = "/mgbe-vm-irq-config"; + mgbe0_aqr113c_phy = "/ethernet@6810000/mdio/ethernet_phy@0"; + uartb = "/serial@3110000"; + uartc = "/serial@c280000"; + uartd = "/serial@3130000"; + uarte = "/serial@3140000"; + uartf = "/serial@3150000"; + uarth = "/serial@3170000"; + uarti = "/serial@31d0000"; + uartj = "/serial@c270000"; + tegra_pmc = "/pmc@c360000"; + sdmmc1_3v3 = "/pmc@c360000/sdmmc1-3v3"; + sdmmc1_1v8 = "/pmc@c360000/sdmmc1-1v8"; + sdmmc3_3v3 = "/pmc@c360000/sdmmc3-3v3"; + sdmmc3_1v8 = "/pmc@c360000/sdmmc3-1v8"; + sdmmc1_e_33V_enable = "/pmc@c360000/sdmmc1_e_33V_enable"; + sdmmc1_e_33V_disable = "/pmc@c360000/sdmmc1_e_33V_disable"; + sdmmc3_e_33V_enable = "/pmc@c360000/sdmmc3_e_33V_enable"; + sdmmc3_e_33V_disable = "/pmc@c360000/sdmmc3_e_33V_disable"; + ufs_dpd_enable = "/pmc@c360000/dpd-enable"; + ufs_dpd_disable = "/pmc@c360000/dpd-disable"; + iopad_defaults = "/pmc@c360000/iopad-defaults"; + sdmmc4 = "/sdhci@3460000"; + sdmmc1 = "/sdhci@3400000"; + tegra_ufs = "/ufshci@2500000"; + spi0 = "/spi@3210000"; + spi1 = "/spi@c260000"; + spi2 = "/spi@3230000"; + qspi0 = "/spi@3270000"; + qspi1 = "/spi@3300000"; + tegra_pwm1 = "/pwm@3280000"; + tegra_pwm2 = "/pwm@3290000"; + tegra_pwm3 = "/pwm@32a0000"; + tegra_pwm4 = "/pwm@c340000"; + tegra_pwm5 = "/pwm@32c0000"; + tegra_pwm6 = "/pwm@32d0000"; + tegra_pwm7 = "/pwm@32e0000"; + tegra_pwm8 = "/pwm@32f0000"; + gen1_i2c = "/i2c@3160000"; + gen2_i2c = "/i2c@c240000"; + ina32211_1_40 = "/i2c@c240000/ina3221@40"; + ina3221_1_41 = "/i2c@c240000/ina3221@41"; + ucsi_ccg = "/i2c@c240000/ucsi_ccg@8"; + ccg_typec_con0 = "/i2c@c240000/ucsi_ccg@8/connector@0"; + ccg_typec_con1 = "/i2c@c240000/ucsi_ccg@8/connector@1"; + ucsi_ccg_p1 = "/i2c@c240000/ucsi_ccg@8/connector@1/port/endpoint"; + cam_i2c = "/i2c@3180000"; + tca9546_70 = "/i2c@3180000/tca9546@70"; + e3331_cam0 = "/i2c@3180000/tca9546@70/i2c@0/imx318_a@10"; + e3331_imx318_out0 = "/i2c@3180000/tca9546@70/i2c@0/imx318_a@10/ports/port@0/endpoint"; + imx185_cam0 = "/i2c@3180000/tca9546@70/i2c@0/imx185_a@1a"; + liimx185_imx185_out0 = "/i2c@3180000/tca9546@70/i2c@0/imx185_a@1a/ports/port@0/endpoint"; + pca9570_a_24 = "/i2c@3180000/tca9546@70/i2c@0/pca9570_a@24"; + imx390_cam0 = "/i2c@3180000/tca9546@70/i2c@0/imx390_a@1b"; + imx390_imx390_out0 = "/i2c@3180000/tca9546@70/i2c@0/imx390_a@1b/ports/port@0/endpoint"; + imx390_cam1 = "/i2c@3180000/tca9546@70/i2c@0/imx390_b@1c"; + imx390_imx390_out1 = "/i2c@3180000/tca9546@70/i2c@0/imx390_b@1c/ports/port@0/endpoint"; + max9296_dser = "/i2c@3180000/tca9546@70/i2c@0/max9296@48"; + dser = "/i2c@3180000/tca9546@70/i2c@0/max9296@48"; + max9295_prim = "/i2c@3180000/tca9546@70/i2c@0/max9295_prim@62"; + ser_prim = "/i2c@3180000/tca9546@70/i2c@0/max9295_prim@62"; + max9295_ser0 = "/i2c@3180000/tca9546@70/i2c@0/max9295_a@40"; + ser_a = "/i2c@3180000/tca9546@70/i2c@0/max9295_a@40"; + max9295_ser1 = "/i2c@3180000/tca9546@70/i2c@0/max9295_b@60"; + ser_b = "/i2c@3180000/tca9546@70/i2c@0/max9295_b@60"; + imx274_cam0 = "/i2c@3180000/tca9546@70/i2c@0/imx274_a@1a"; + liimx274_imx274_out0 = "/i2c@3180000/tca9546@70/i2c@0/imx274_a@1a/ports/port@0/endpoint"; + imx274_cam1 = "/i2c@3180000/tca9546@70/i2c@1/imx274_c@1a"; + liimx274_imx274_out1 = "/i2c@3180000/tca9546@70/i2c@1/imx274_c@1a/ports/port@0/endpoint"; + tca9548_77 = "/i2c@3180000/tca9548@77"; + e3333_cam0 = "/i2c@3180000/tca9548@77/i2c@0/ov5693_a@36"; + e3333_ov5693_out0 = "/i2c@3180000/tca9548@77/i2c@0/ov5693_a@36/ports/port@0/endpoint"; + e3333_cam1 = "/i2c@3180000/tca9548@77/i2c@1/ov5693_b@36"; + e3333_ov5693_out1 = "/i2c@3180000/tca9548@77/i2c@1/ov5693_b@36/ports/port@0/endpoint"; + e3333_cam2 = "/i2c@3180000/tca9548@77/i2c@2/ov5693_c@36"; + e3333_ov5693_out2 = "/i2c@3180000/tca9548@77/i2c@2/ov5693_c@36/ports/port@0/endpoint"; + e3333_cam3 = "/i2c@3180000/tca9548@77/i2c@3/ov5693_d@36"; + e3333_ov5693_out3 = "/i2c@3180000/tca9548@77/i2c@3/ov5693_d@36/ports/port@0/endpoint"; + e3333_cam4 = "/i2c@3180000/tca9548@77/i2c@4/ov5693_e@36"; + e3333_ov5693_out4 = "/i2c@3180000/tca9548@77/i2c@4/ov5693_e@36/ports/port@0/endpoint"; + e3333_cam5 = "/i2c@3180000/tca9548@77/i2c@5/ov5693_g@36"; + e3333_ov5693_out5 = "/i2c@3180000/tca9548@77/i2c@5/ov5693_g@36/ports/port@0/endpoint"; + tca6408_21 = "/i2c@3180000/tca6408@21"; + e3326_cam0 = "/i2c@3180000/ov5693_c@36"; + e2832_cam0 = "/i2c@3180000/e2832@2b"; + dp_aux_ch1_i2c = "/i2c@3190000"; + dp_aux_ch0_i2c = "/i2c@31b0000"; + dp_aux_ch2_i2c = "/i2c@31c0000"; + gen8_i2c = "/i2c@c250000"; + e2614_i2c_mux = "/i2c@c250000/i2cmux@70"; + e2614_tas2552_r = "/i2c@c250000/i2cmux@70/i2c@0/tas2552.9-0040@40"; + e2614_tas2552_l = "/i2c@c250000/i2cmux@70/i2c@0/tas2552.9-0041@41"; + e2614_rt5658_i2c3 = "/i2c@c250000/i2cmux@70/i2c@3/rt5659.12-001a@1a"; + e2614_gpio_i2c_1_20 = "/i2c@c250000/gpio@20"; + e2614_icm20628 = "/i2c@c250000/icm20628@68"; + e2614_ak8963 = "/i2c@c250000/ak8963@0d"; + e2614_bmp280 = "/i2c@c250000/bmp280@77"; + e2614_cm32180 = "/i2c@c250000/cm32180@48"; + e2614_iqs263 = "/i2c@c250000/iqs263@44"; + e2614_rt5658 = "/i2c@c250000/rt5659.1-001a@1a"; + dp_aux_ch3_i2c = "/i2c@31e0000"; + gpcdma = "/gpcdma@2600000"; + mttcan0 = "/mttcan@c310000"; + mttcan1 = "/mttcan@c320000"; + tegra_sound = "/sound"; + admaif1_pcm_link = "/sound/nvidia-audio-card,dai-link@0"; + admaif2_pcm_link = "/sound/nvidia-audio-card,dai-link@1"; + admaif3_pcm_link = "/sound/nvidia-audio-card,dai-link@2"; + admaif4_pcm_link = "/sound/nvidia-audio-card,dai-link@3"; + admaif5_pcm_link = "/sound/nvidia-audio-card,dai-link@4"; + admaif6_pcm_link = "/sound/nvidia-audio-card,dai-link@5"; + admaif7_pcm_link = "/sound/nvidia-audio-card,dai-link@6"; + admaif8_pcm_link = "/sound/nvidia-audio-card,dai-link@7"; + admaif9_pcm_link = "/sound/nvidia-audio-card,dai-link@8"; + admaif10_pcm_link = "/sound/nvidia-audio-card,dai-link@9"; + admaif11_pcm_link = "/sound/nvidia-audio-card,dai-link@10"; + admaif12_pcm_link = "/sound/nvidia-audio-card,dai-link@11"; + admaif13_pcm_link = "/sound/nvidia-audio-card,dai-link@12"; + admaif14_pcm_link = "/sound/nvidia-audio-card,dai-link@13"; + admaif15_pcm_link = "/sound/nvidia-audio-card,dai-link@14"; + admaif16_pcm_link = "/sound/nvidia-audio-card,dai-link@15"; + admaif17_pcm_link = "/sound/nvidia-audio-card,dai-link@16"; + admaif18_pcm_link = "/sound/nvidia-audio-card,dai-link@17"; + admaif19_pcm_link = "/sound/nvidia-audio-card,dai-link@18"; + admaif20_pcm_link = "/sound/nvidia-audio-card,dai-link@19"; + adsp_pcm_fe1 = "/sound/nvidia-audio-card,dai-link@20"; + adsp_pcm_fe2 = "/sound/nvidia-audio-card,dai-link@21"; + adsp_compr_fe3 = "/sound/nvidia-audio-card,dai-link@22"; + adsp_compr_fe4 = "/sound/nvidia-audio-card,dai-link@23"; + adsp_to_admaif1 = "/sound/nvidia-audio-card,dai-link@24"; + adsp_to_admaif2 = "/sound/nvidia-audio-card,dai-link@25"; + adsp_to_admaif3 = "/sound/nvidia-audio-card,dai-link@26"; + adsp_to_admaif4 = "/sound/nvidia-audio-card,dai-link@27"; + adsp_to_admaif5 = "/sound/nvidia-audio-card,dai-link@28"; + adsp_to_admaif6 = "/sound/nvidia-audio-card,dai-link@29"; + adsp_to_admaif7 = "/sound/nvidia-audio-card,dai-link@30"; + adsp_to_admaif8 = "/sound/nvidia-audio-card,dai-link@31"; + adsp_to_admaif9 = "/sound/nvidia-audio-card,dai-link@32"; + adsp_to_admaif10 = "/sound/nvidia-audio-card,dai-link@33"; + adsp_to_admaif11 = "/sound/nvidia-audio-card,dai-link@34"; + adsp_to_admaif12 = "/sound/nvidia-audio-card,dai-link@35"; + adsp_to_admaif13 = "/sound/nvidia-audio-card,dai-link@36"; + adsp_to_admaif14 = "/sound/nvidia-audio-card,dai-link@37"; + adsp_to_admaif15 = "/sound/nvidia-audio-card,dai-link@38"; + adsp_to_admaif16 = "/sound/nvidia-audio-card,dai-link@39"; + adsp_to_admaif17 = "/sound/nvidia-audio-card,dai-link@40"; + adsp_to_admaif18 = "/sound/nvidia-audio-card,dai-link@41"; + adsp_to_admaif19 = "/sound/nvidia-audio-card,dai-link@42"; + adsp_to_admaif20 = "/sound/nvidia-audio-card,dai-link@43"; + admaif1_codec_link = "/sound/nvidia-audio-card,dai-link@44"; + admaif2_codec_link = "/sound/nvidia-audio-card,dai-link@45"; + admaif3_codec_link = "/sound/nvidia-audio-card,dai-link@46"; + admaif4_codec_link = "/sound/nvidia-audio-card,dai-link@47"; + admaif5_codec_link = "/sound/nvidia-audio-card,dai-link@48"; + admaif6_codec_link = "/sound/nvidia-audio-card,dai-link@49"; + admaif7_codec_link = "/sound/nvidia-audio-card,dai-link@50"; + admaif8_codec_link = "/sound/nvidia-audio-card,dai-link@51"; + admaif9_codec_link = "/sound/nvidia-audio-card,dai-link@52"; + admaif10_codec_link = "/sound/nvidia-audio-card,dai-link@53"; + admaif11_codec_link = "/sound/nvidia-audio-card,dai-link@54"; + admaif12_codec_link = "/sound/nvidia-audio-card,dai-link@55"; + admaif13_codec_link = "/sound/nvidia-audio-card,dai-link@56"; + admaif14_codec_link = "/sound/nvidia-audio-card,dai-link@57"; + admaif15_codec_link = "/sound/nvidia-audio-card,dai-link@58"; + admaif16_codec_link = "/sound/nvidia-audio-card,dai-link@59"; + admaif17_codec_link = "/sound/nvidia-audio-card,dai-link@60"; + admaif18_codec_link = "/sound/nvidia-audio-card,dai-link@61"; + admaif19_codec_link = "/sound/nvidia-audio-card,dai-link@62"; + admaif20_codec_link = "/sound/nvidia-audio-card,dai-link@63"; + xbar_to_i2s1 = "/sound/nvidia-audio-card,dai-link@64"; + xbar_to_i2s2 = "/sound/nvidia-audio-card,dai-link@65"; + xbar_to_i2s3 = "/sound/nvidia-audio-card,dai-link@66"; + xbar_to_i2s4 = "/sound/nvidia-audio-card,dai-link@67"; + xbar_to_i2s5 = "/sound/nvidia-audio-card,dai-link@68"; + xbar_to_i2s6 = "/sound/nvidia-audio-card,dai-link@69"; + xbar_to_dmic1 = "/sound/nvidia-audio-card,dai-link@70"; + xbar_to_dmic2 = "/sound/nvidia-audio-card,dai-link@71"; + xbar_to_dmic3 = "/sound/nvidia-audio-card,dai-link@72"; + xbar_to_dmic4 = "/sound/nvidia-audio-card,dai-link@73"; + xbar_to_dspk1 = "/sound/nvidia-audio-card,dai-link@74"; + xbar_to_dspk2 = "/sound/nvidia-audio-card,dai-link@75"; + i2s1_to_codec = "/sound/nvidia-audio-card,dai-link@76"; + i2s1_cpu = "/sound/nvidia-audio-card,dai-link@76/cpu"; + hdr40_snd_link_i2s = "/sound/nvidia-audio-card,dai-link@77"; + i2s2_to_codec = "/sound/nvidia-audio-card,dai-link@77"; + i2s2_cpu = "/sound/nvidia-audio-card,dai-link@77/cpu"; + i2s3_to_codec = "/sound/nvidia-audio-card,dai-link@78"; + i2s3_cpu = "/sound/nvidia-audio-card,dai-link@78/cpu"; + i2s4_to_codec = "/sound/nvidia-audio-card,dai-link@79"; + i2s4_cpu = "/sound/nvidia-audio-card,dai-link@79/cpu"; + i2s5_to_codec = "/sound/nvidia-audio-card,dai-link@80"; + i2s5_cpu = "/sound/nvidia-audio-card,dai-link@80/cpu"; + i2s6_to_codec = "/sound/nvidia-audio-card,dai-link@81"; + i2s6_cpu = "/sound/nvidia-audio-card,dai-link@81/cpu"; + dmic1_to_codec = "/sound/nvidia-audio-card,dai-link@82"; + dmic2_to_codec = "/sound/nvidia-audio-card,dai-link@83"; + dmic3_to_codec = "/sound/nvidia-audio-card,dai-link@84"; + dmic4_to_codec = "/sound/nvidia-audio-card,dai-link@85"; + dspk1_to_codec = "/sound/nvidia-audio-card,dai-link@86"; + dspk2_to_codec = "/sound/nvidia-audio-card,dai-link@87"; + xbar_to_amx1_in1 = "/sound/nvidia-audio-card,dai-link@88"; + xbar_to_amx1_in2 = "/sound/nvidia-audio-card,dai-link@89"; + xbar_to_amx1_in3 = "/sound/nvidia-audio-card,dai-link@90"; + xbar_to_amx1_in4 = "/sound/nvidia-audio-card,dai-link@91"; + amx1_out_to_xbar = "/sound/nvidia-audio-card,dai-link@92"; + xbar_to_amx2_in1 = "/sound/nvidia-audio-card,dai-link@93"; + xbar_to_amx2_in2 = "/sound/nvidia-audio-card,dai-link@94"; + xbar_to_amx2_in3 = "/sound/nvidia-audio-card,dai-link@95"; + xbar_to_amx2_in4 = "/sound/nvidia-audio-card,dai-link@96"; + amx2_out_to_xbar = "/sound/nvidia-audio-card,dai-link@97"; + xbar_to_amx3_in1 = "/sound/nvidia-audio-card,dai-link@98"; + xbar_to_amx3_in2 = "/sound/nvidia-audio-card,dai-link@99"; + xbar_to_amx3_in3 = "/sound/nvidia-audio-card,dai-link@100"; + xbar_to_amx3_in4 = "/sound/nvidia-audio-card,dai-link@101"; + amx3_out_to_xbar = "/sound/nvidia-audio-card,dai-link@102"; + xbar_to_amx4_in1 = "/sound/nvidia-audio-card,dai-link@103"; + xbar_to_amx4_in2 = "/sound/nvidia-audio-card,dai-link@104"; + xbar_to_amx4_in3 = "/sound/nvidia-audio-card,dai-link@105"; + xbar_to_amx4_in4 = "/sound/nvidia-audio-card,dai-link@106"; + amx4_out_to_xbar = "/sound/nvidia-audio-card,dai-link@107"; + xbar_to_adx1_in = "/sound/nvidia-audio-card,dai-link@108"; + adx1_out1_to_xbar = "/sound/nvidia-audio-card,dai-link@109"; + adx1_out2_to_xbar = "/sound/nvidia-audio-card,dai-link@110"; + adx1_out3_to_xbar = "/sound/nvidia-audio-card,dai-link@111"; + adx1_out4_to_xbar = "/sound/nvidia-audio-card,dai-link@112"; + xbar_to_adx2_in = "/sound/nvidia-audio-card,dai-link@113"; + adx2_out1_to_xbar = "/sound/nvidia-audio-card,dai-link@114"; + adx2_out2_to_xbar = "/sound/nvidia-audio-card,dai-link@115"; + adx2_out3_to_xbar = "/sound/nvidia-audio-card,dai-link@116"; + adx2_out4_to_xbar = "/sound/nvidia-audio-card,dai-link@117"; + xbar_to_adx3_in = "/sound/nvidia-audio-card,dai-link@118"; + adx3_out1_to_xbar = "/sound/nvidia-audio-card,dai-link@119"; + adx3_out2_to_xbar = "/sound/nvidia-audio-card,dai-link@120"; + adx3_out3_to_xbar = "/sound/nvidia-audio-card,dai-link@121"; + adx3_out4_to_xbar = "/sound/nvidia-audio-card,dai-link@122"; + xbar_to_adx4_in = "/sound/nvidia-audio-card,dai-link@123"; + adx4_out1_to_xbar = "/sound/nvidia-audio-card,dai-link@124"; + adx4_out2_to_xbar = "/sound/nvidia-audio-card,dai-link@125"; + adx4_out3_to_xbar = "/sound/nvidia-audio-card,dai-link@126"; + adx4_out4_to_xbar = "/sound/nvidia-audio-card,dai-link@127"; + xbar_to_mixer_in1 = "/sound/nvidia-audio-card,dai-link@128"; + xbar_to_mixer_in2 = "/sound/nvidia-audio-card,dai-link@129"; + xbar_to_mixer_in3 = "/sound/nvidia-audio-card,dai-link@130"; + xbar_to_mixer_in4 = "/sound/nvidia-audio-card,dai-link@131"; + xbar_to_mixer_in5 = "/sound/nvidia-audio-card,dai-link@132"; + xbar_to_mixer_in6 = "/sound/nvidia-audio-card,dai-link@133"; + xbar_to_mixer_in7 = "/sound/nvidia-audio-card,dai-link@134"; + xbar_to_mixer_in8 = "/sound/nvidia-audio-card,dai-link@135"; + xbar_to_mixer_in9 = "/sound/nvidia-audio-card,dai-link@136"; + xbar_to_mixer_in10 = "/sound/nvidia-audio-card,dai-link@137"; + mixer_out1_to_xbar = "/sound/nvidia-audio-card,dai-link@138"; + mixer_out2_to_xbar = "/sound/nvidia-audio-card,dai-link@139"; + mixer_out3_to_xbar = "/sound/nvidia-audio-card,dai-link@140"; + mixer_out4_to_xbar = "/sound/nvidia-audio-card,dai-link@141"; + mixer_out5_to_xbar = "/sound/nvidia-audio-card,dai-link@142"; + xbar_to_sfc1 = "/sound/nvidia-audio-card,dai-link@143"; + xbar_to_sfc2 = "/sound/nvidia-audio-card,dai-link@144"; + xbar_to_sfc3 = "/sound/nvidia-audio-card,dai-link@145"; + xbar_to_sfc4 = "/sound/nvidia-audio-card,dai-link@146"; + sfc1_to_xbar = "/sound/nvidia-audio-card,dai-link@147"; + sfc2_to_xbar = "/sound/nvidia-audio-card,dai-link@148"; + sfc3_to_xbar = "/sound/nvidia-audio-card,dai-link@149"; + sfc4_to_xbar = "/sound/nvidia-audio-card,dai-link@150"; + xbar_to_afc1 = "/sound/nvidia-audio-card,dai-link@151"; + xbar_to_afc2 = "/sound/nvidia-audio-card,dai-link@152"; + xbar_to_afc3 = "/sound/nvidia-audio-card,dai-link@153"; + xbar_to_afc4 = "/sound/nvidia-audio-card,dai-link@154"; + xbar_to_afc5 = "/sound/nvidia-audio-card,dai-link@155"; + xbar_to_afc6 = "/sound/nvidia-audio-card,dai-link@156"; + afc1_to_xbar = "/sound/nvidia-audio-card,dai-link@157"; + afc2_to_xbar = "/sound/nvidia-audio-card,dai-link@158"; + afc3_to_xbar = "/sound/nvidia-audio-card,dai-link@159"; + afc4_to_xbar = "/sound/nvidia-audio-card,dai-link@160"; + afc5_to_xbar = "/sound/nvidia-audio-card,dai-link@161"; + afc6_to_xbar = "/sound/nvidia-audio-card,dai-link@162"; + xbar_to_mvc1 = "/sound/nvidia-audio-card,dai-link@163"; + xbar_to_mvc2 = "/sound/nvidia-audio-card,dai-link@164"; + mvc1_to_xbar = "/sound/nvidia-audio-card,dai-link@165"; + mvc2_to_xbar = "/sound/nvidia-audio-card,dai-link@166"; + xbar_to_ope1 = "/sound/nvidia-audio-card,dai-link@167"; + ope1_to_xbar = "/sound/nvidia-audio-card,dai-link@168"; + xbar_to_asrc_in1 = "/sound/nvidia-audio-card,dai-link@169"; + xbar_to_asrc_in2 = "/sound/nvidia-audio-card,dai-link@170"; + xbar_to_asrc_in3 = "/sound/nvidia-audio-card,dai-link@171"; + xbar_to_asrc_in4 = "/sound/nvidia-audio-card,dai-link@172"; + xbar_to_asrc_in5 = "/sound/nvidia-audio-card,dai-link@173"; + xbar_to_asrc_in6 = "/sound/nvidia-audio-card,dai-link@174"; + xbar_to_asrc_in7 = "/sound/nvidia-audio-card,dai-link@175"; + asrc_out1_to_xbar = "/sound/nvidia-audio-card,dai-link@176"; + asrc_out2_to_xbar = "/sound/nvidia-audio-card,dai-link@177"; + asrc_out3_to_xbar = "/sound/nvidia-audio-card,dai-link@178"; + asrc_out4_to_xbar = "/sound/nvidia-audio-card,dai-link@179"; + asrc_out5_to_xbar = "/sound/nvidia-audio-card,dai-link@180"; + asrc_out6_to_xbar = "/sound/nvidia-audio-card,dai-link@181"; + arad_to_xbar = "/sound/nvidia-audio-card,dai-link@182"; + tegra_agic = "/aconnect@2a41000/agic-controller@2a41000"; + tegra_agic_1 = "/aconnect@2a41000/agic-controller@2a51000"; + tegra_agic_2 = "/aconnect@2a41000/agic-controller@2a61000"; + adma = "/aconnect@2a41000/adma@2930000"; + tegra_axbar = "/aconnect@2a41000/ahub"; + tegra_admaif = "/aconnect@2a41000/ahub/admaif@290f000"; + tegra_sfc1 = "/aconnect@2a41000/ahub/sfc@2902000"; + tegra_sfc2 = "/aconnect@2a41000/ahub/sfc@2902200"; + tegra_sfc3 = "/aconnect@2a41000/ahub/sfc@2902400"; + tegra_sfc4 = "/aconnect@2a41000/ahub/sfc@2902600"; + tegra_spkprot = "/aconnect@2a41000/ahub/spkprot@2908c00"; + tegra_amixer = "/aconnect@2a41000/ahub/amixer@290bb00"; + tegra_i2s1 = "/aconnect@2a41000/ahub/i2s@2901000"; + tegra_i2s2 = "/aconnect@2a41000/ahub/i2s@2901100"; + tegra_i2s3 = "/aconnect@2a41000/ahub/i2s@2901200"; + tegra_i2s4 = "/aconnect@2a41000/ahub/i2s@2901300"; + tegra_i2s5 = "/aconnect@2a41000/ahub/i2s@2901400"; + tegra_i2s6 = "/aconnect@2a41000/ahub/i2s@2901500"; + tegra_amx1 = "/aconnect@2a41000/ahub/amx@2903000"; + tegra_amx2 = "/aconnect@2a41000/ahub/amx@2903100"; + tegra_amx3 = "/aconnect@2a41000/ahub/amx@2903200"; + tegra_amx4 = "/aconnect@2a41000/ahub/amx@2903300"; + tegra_adx1 = "/aconnect@2a41000/ahub/adx@2903800"; + tegra_adx2 = "/aconnect@2a41000/ahub/adx@2903900"; + tegra_adx3 = "/aconnect@2a41000/ahub/adx@2903a00"; + tegra_adx4 = "/aconnect@2a41000/ahub/adx@2903b00"; + tegra_dmic1 = "/aconnect@2a41000/ahub/dmic@2904000"; + tegra_dmic2 = "/aconnect@2a41000/ahub/dmic@2904100"; + tegra_dmic3 = "/aconnect@2a41000/ahub/dmic@2904200"; + tegra_dmic4 = "/aconnect@2a41000/ahub/dmic@2904300"; + tegra_afc1 = "/aconnect@2a41000/ahub/afc@2907000"; + tegra_afc2 = "/aconnect@2a41000/ahub/afc@2907100"; + tegra_afc3 = "/aconnect@2a41000/ahub/afc@2907200"; + tegra_afc4 = "/aconnect@2a41000/ahub/afc@2907300"; + tegra_afc5 = "/aconnect@2a41000/ahub/afc@2907400"; + tegra_afc6 = "/aconnect@2a41000/ahub/afc@2907500"; + tegra_mvc1 = "/aconnect@2a41000/ahub/mvc@290a000"; + tegra_mvc2 = "/aconnect@2a41000/ahub/mvc@290a200"; + tegra_iqc1 = "/aconnect@2a41000/ahub/iqc@290e000"; + tegra_asrc = "/aconnect@2a41000/ahub/asrc@2910000"; + tegra_arad = "/aconnect@2a41000/ahub/arad@290e400"; + tegra_ahc = "/aconnect@2a41000/ahub/ahc@290b900"; + tegra_ope1 = "/aconnect@2a41000/ahub/ope@2908000"; + tegra_dspk1 = "/aconnect@2a41000/ahub/dspk@2905000"; + tegra_dspk2 = "/aconnect@2a41000/ahub/dspk@2905100"; + tegra_adsp_audio = "/aconnect@2a41000/adsp_audio"; + tegra_acsl_audio = "/acsl_audio"; + tegra_safety_ivc = "/tegra_safety_ivc"; + tegra_safety = "/sce@b000000"; + tegra_rce = "/rtcpu@bc00000"; + capture_vi_base = "/tegra-capture-vi"; + vi_port0 = "/tegra-capture-vi/ports/port@0"; + vi_in0 = "/tegra-capture-vi/ports/port@0/endpoint"; + liimx274_vi_in0 = "/tegra-capture-vi/ports/port@0/endpoint"; + imx390_vi_in0 = "/tegra-capture-vi/ports/port@0/endpoint"; + liimx185_vi_in0 = "/tegra-capture-vi/ports/port@0/endpoint"; + e3333_vi_in0 = "/tegra-capture-vi/ports/port@0/endpoint"; + e3331_vi_in0 = "/tegra-capture-vi/ports/port@0/endpoint"; + vi_port1 = "/tegra-capture-vi/ports/port@1"; + vi_in1 = "/tegra-capture-vi/ports/port@1/endpoint"; + liimx274_vi_in1 = "/tegra-capture-vi/ports/port@1/endpoint"; + imx390_vi_in1 = "/tegra-capture-vi/ports/port@1/endpoint"; + e3333_vi_in1 = "/tegra-capture-vi/ports/port@1/endpoint"; + vi_port2 = "/tegra-capture-vi/ports/port@2"; + vi_in2 = "/tegra-capture-vi/ports/port@2/endpoint"; + e3333_vi_in2 = "/tegra-capture-vi/ports/port@2/endpoint"; + vi_port3 = "/tegra-capture-vi/ports/port@3"; + vi_in3 = "/tegra-capture-vi/ports/port@3/endpoint"; + e3333_vi_in3 = "/tegra-capture-vi/ports/port@3/endpoint"; + vi_port4 = "/tegra-capture-vi/ports/port@4"; + vi_in4 = "/tegra-capture-vi/ports/port@4/endpoint"; + e3333_vi_in4 = "/tegra-capture-vi/ports/port@4/endpoint"; + vi_port5 = "/tegra-capture-vi/ports/port@5"; + vi_in5 = "/tegra-capture-vi/ports/port@5/endpoint"; + e3333_vi_in5 = "/tegra-capture-vi/ports/port@5/endpoint"; + aon = "/aon@c000000"; + cl0_0 = "/cpus/cpu@0"; + cl0_1 = "/cpus/cpu@1"; + cl0_2 = "/cpus/cpu@2"; + cl0_3 = "/cpus/cpu@3"; + cl1_0 = "/cpus/cpu@4"; + cl1_1 = "/cpus/cpu@5"; + cl1_2 = "/cpus/cpu@6"; + cl1_3 = "/cpus/cpu@7"; + cl2_0 = "/cpus/cpu@8"; + cl2_1 = "/cpus/cpu@9"; + cl2_2 = "/cpus/cpu@10"; + cl2_3 = "/cpus/cpu@11"; + CPU_CORE_POWER_STATES = "/cpus/cpu_core_power_states"; + C1 = "/cpus/cpu_core_power_states/c1"; + C7 = "/cpus/cpu_core_power_states/c7"; + l2c_00 = "/l2-cache00"; + l2c_01 = "/l2-cache01"; + l2c_02 = "/l2-cache02"; + l2c_03 = "/l2-cache03"; + l2c_10 = "/l2-cache10"; + l2c_11 = "/l2-cache11"; + l2c_12 = "/l2-cache12"; + l2c_13 = "/l2-cache13"; + l2c_20 = "/l2-cache20"; + l2c_21 = "/l2-cache21"; + l2c_22 = "/l2-cache22"; + l2c_23 = "/l2-cache23"; + l3c_dsu0 = "/l3-cache0"; + l3c_dsu1 = "/l3-cache1"; + l3c_dsu2 = "/l3-cache2"; + cpu_sw_shutdown = "/thermal-zones/CPU-therm/trips/cpu-sw-shutdown"; + cpu_sw_throttle = "/thermal-zones/CPU-therm/trips/cpu-sw-throttle"; + cpu_hot_surface = "/thermal-zones/CPU-therm/trips/cpu-hot-surface"; + gpu_sw_shutdown = "/thermal-zones/GPU-therm/trips/gpu-sw-shutdown"; + gpu_sw_throttle = "/thermal-zones/GPU-therm/trips/gpu-sw-throttle"; + gpu_hot_surface = "/thermal-zones/GPU-therm/trips/gpu-hot-surface"; + cv0_sw_shutdown = "/thermal-zones/CV0-therm/trips/cv0-sw-shutdown"; + cv0_sw_throttle = "/thermal-zones/CV0-therm/trips/cv0-sw-throttle"; + cv0_hot_surface = "/thermal-zones/CV0-therm/trips/cv0-hot-surface"; + cv1_sw_shutdown = "/thermal-zones/CV1-therm/trips/cv1-sw-shutdown"; + cv1_sw_throttle = "/thermal-zones/CV1-therm/trips/cv1-sw-throttle"; + cv1_hot_surface = "/thermal-zones/CV1-therm/trips/cv1-hot-surface"; + cv2_sw_shutdown = "/thermal-zones/CV2-therm/trips/cv2-sw-shutdown"; + cv2_sw_throttle = "/thermal-zones/CV2-therm/trips/cv2-sw-throttle"; + cv2_hot_surface = "/thermal-zones/CV2-therm/trips/cv2-hot-surface"; + soc0_sw_shutdown = "/thermal-zones/SOC0-therm/trips/soc0-sw-shutdown"; + soc0_sw_throttle = "/thermal-zones/SOC0-therm/trips/soc0-sw-throttle"; + soc0_hot_surface = "/thermal-zones/SOC0-therm/trips/soc0-hot-surface"; + soc1_sw_shutdown = "/thermal-zones/SOC1-therm/trips/soc1-sw-shutdown"; + soc1_sw_throttle = "/thermal-zones/SOC1-therm/trips/soc1-sw-throttle"; + soc1_hot_surface = "/thermal-zones/SOC1-therm/trips/soc1-hot-surface"; + soc2_sw_shutdown = "/thermal-zones/SOC2-therm/trips/soc2-sw-shutdown"; + soc2_sw_throttle = "/thermal-zones/SOC2-therm/trips/soc2-sw-throttle"; + soc2_hot_surface = "/thermal-zones/SOC2-therm/trips/soc2-hot-surface"; + tj_therm = "/thermal-zones/tj-therm"; + Tdiode_zone = "/thermal-zones/Tdiode_tegra"; + psc_mbox = "/psc@e800000"; + host1x = "/host1x@13e00000"; + host1x_ctx0 = "/host1x@13e00000/niso0_ctx0"; + host1x_ctx1 = "/host1x@13e00000/niso0_ctx1"; + host1x_ctx2 = "/host1x@13e00000/niso0_ctx2"; + host1x_ctx3 = "/host1x@13e00000/niso0_ctx3"; + host1x_ctx4 = "/host1x@13e00000/niso0_ctx4"; + host1x_ctx5 = "/host1x@13e00000/niso0_ctx5"; + host1x_ctx6 = "/host1x@13e00000/niso0_ctx6"; + host1x_ctx7 = "/host1x@13e00000/niso0_ctx7"; + host1x_ctx0n1 = "/host1x@13e00000/niso1_ctx0"; + host1x_ctx1n1 = "/host1x@13e00000/niso1_ctx1"; + host1x_ctx2n1 = "/host1x@13e00000/niso1_ctx2"; + host1x_ctx3n1 = "/host1x@13e00000/niso1_ctx3"; + host1x_ctx4n1 = "/host1x@13e00000/niso1_ctx4"; + host1x_ctx5n1 = "/host1x@13e00000/niso1_ctx5"; + host1x_ctx6n1 = "/host1x@13e00000/niso1_ctx6"; + host1x_ctx7n1 = "/host1x@13e00000/niso1_ctx7"; + vi0 = "/host1x@13e00000/vi0@15c00000"; + vi0_thi = "/host1x@13e00000/vi0-thi@15f00000"; + vi1 = "/host1x@13e00000/vi1@14c00000"; + vi1_thi = "/host1x@13e00000/vi1-thi@14f00000"; + isp = "/host1x@13e00000/isp@14800000"; + isp_thi = "/host1x@13e00000/isp-thi@14b00000"; + csi_base = "/host1x@13e00000/nvcsi@15a00000"; + nvcsi = "/host1x@13e00000/nvcsi@15a00000"; + csi_chan0 = "/host1x@13e00000/nvcsi@15a00000/channel@0"; + csi_chan0_port0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@0"; + csi_in0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@0/endpoint@0"; + liimx274_csi_in0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@0/endpoint@0"; + imx390_csi_in0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@0/endpoint@0"; + liimx185_csi_in0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@0/endpoint@0"; + e3333_csi_in0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@0/endpoint@0"; + e3331_csi_in0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@0/endpoint@0"; + csi_chan0_port1 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@1"; + csi_out0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@1/endpoint@1"; + liimx274_csi_out0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@1/endpoint@1"; + imx390_csi_out0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@1/endpoint@1"; + liimx185_csi_out0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@1/endpoint@1"; + e3333_csi_out0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@1/endpoint@1"; + e3331_csi_out0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@1/endpoint@1"; + csi_chan1 = "/host1x@13e00000/nvcsi@15a00000/channel@1"; + csi_chan1_port0 = "/host1x@13e00000/nvcsi@15a00000/channel@1/ports/port@0"; + csi_in1 = "/host1x@13e00000/nvcsi@15a00000/channel@1/ports/port@0/endpoint@2"; + liimx274_csi_in1 = "/host1x@13e00000/nvcsi@15a00000/channel@1/ports/port@0/endpoint@2"; + imx390_csi_in1 = "/host1x@13e00000/nvcsi@15a00000/channel@1/ports/port@0/endpoint@2"; + e3333_csi_in1 = "/host1x@13e00000/nvcsi@15a00000/channel@1/ports/port@0/endpoint@2"; + csi_chan1_port1 = "/host1x@13e00000/nvcsi@15a00000/channel@1/ports/port@1"; + csi_out1 = "/host1x@13e00000/nvcsi@15a00000/channel@1/ports/port@1/endpoint@3"; + liimx274_csi_out1 = "/host1x@13e00000/nvcsi@15a00000/channel@1/ports/port@1/endpoint@3"; + imx390_csi_out1 = "/host1x@13e00000/nvcsi@15a00000/channel@1/ports/port@1/endpoint@3"; + e3333_csi_out1 = "/host1x@13e00000/nvcsi@15a00000/channel@1/ports/port@1/endpoint@3"; + csi_chan2 = "/host1x@13e00000/nvcsi@15a00000/channel@2"; + csi_chan2_port0 = "/host1x@13e00000/nvcsi@15a00000/channel@2/ports/port@0"; + csi_in2 = "/host1x@13e00000/nvcsi@15a00000/channel@2/ports/port@0/endpoint@4"; + e3333_csi_in2 = "/host1x@13e00000/nvcsi@15a00000/channel@2/ports/port@0/endpoint@4"; + csi_chan2_port1 = "/host1x@13e00000/nvcsi@15a00000/channel@2/ports/port@1"; + csi_out2 = "/host1x@13e00000/nvcsi@15a00000/channel@2/ports/port@1/endpoint@5"; + e3333_csi_out2 = "/host1x@13e00000/nvcsi@15a00000/channel@2/ports/port@1/endpoint@5"; + csi_chan3 = "/host1x@13e00000/nvcsi@15a00000/channel@3"; + csi_chan3_port0 = "/host1x@13e00000/nvcsi@15a00000/channel@3/ports/port@0"; + csi_in3 = "/host1x@13e00000/nvcsi@15a00000/channel@3/ports/port@0/endpoint@6"; + e3333_csi_in3 = "/host1x@13e00000/nvcsi@15a00000/channel@3/ports/port@0/endpoint@6"; + csi_chan3_port1 = "/host1x@13e00000/nvcsi@15a00000/channel@3/ports/port@1"; + csi_out3 = "/host1x@13e00000/nvcsi@15a00000/channel@3/ports/port@1/endpoint@7"; + e3333_csi_out3 = "/host1x@13e00000/nvcsi@15a00000/channel@3/ports/port@1/endpoint@7"; + csi_chan4 = "/host1x@13e00000/nvcsi@15a00000/channel@4"; + csi_chan4_port0 = "/host1x@13e00000/nvcsi@15a00000/channel@4/ports/port@0"; + csi_in4 = "/host1x@13e00000/nvcsi@15a00000/channel@4/ports/port@0/endpoint@8"; + e3333_csi_in4 = "/host1x@13e00000/nvcsi@15a00000/channel@4/ports/port@0/endpoint@8"; + csi_chan4_port1 = "/host1x@13e00000/nvcsi@15a00000/channel@4/ports/port@1"; + csi_out4 = "/host1x@13e00000/nvcsi@15a00000/channel@4/ports/port@1/endpoint@9"; + e3333_csi_out4 = "/host1x@13e00000/nvcsi@15a00000/channel@4/ports/port@1/endpoint@9"; + csi_chan5 = "/host1x@13e00000/nvcsi@15a00000/channel@5"; + csi_chan5_port0 = "/host1x@13e00000/nvcsi@15a00000/channel@5/ports/port@0"; + csi_in5 = "/host1x@13e00000/nvcsi@15a00000/channel@5/ports/port@0/endpoint@10"; + e3333_csi_in5 = "/host1x@13e00000/nvcsi@15a00000/channel@5/ports/port@0/endpoint@10"; + csi_chan5_port1 = "/host1x@13e00000/nvcsi@15a00000/channel@5/ports/port@1"; + csi_out5 = "/host1x@13e00000/nvcsi@15a00000/channel@5/ports/port@1/endpoint@11"; + e3333_csi_out5 = "/host1x@13e00000/nvcsi@15a00000/channel@5/ports/port@1/endpoint@11"; + pva0 = "/host1x@13e00000/pva0"; + nvdla0 = "/host1x@13e00000/nvdla0@15880000"; + nvdla1 = "/host1x@13e00000/nvdla1@158c0000"; + mods_smmu = "/mods_smmu"; + mods_pcie0 = "/mods_pcie0"; + mods_pcie1 = "/mods_pcie1"; + mods_pcie2 = "/mods_pcie2"; + mods_pcie3 = "/mods_pcie3"; + mods_pcie4 = "/mods_pcie4"; + mods_pcie5 = "/mods_pcie5"; + mods_pcie6 = "/mods_pcie6"; + mods_pcie7 = "/mods_pcie7"; + mods_pcie8 = "/mods_pcie8"; + mods_pcie9 = "/mods_pcie9"; + mods_pcie10 = "/mods_pcie10"; + mods_isp = "/mods_isp"; + mods_test = "/mods_test"; + mods_dma = "/mods_dma"; + mods_qspi0_dma = "/mods_qspi0_dma"; + mods_qspi1_dma = "/mods_qspi1_dma"; + safetysrv_cfg = "/safetysrv_cfg"; + ecthreshold_cfg = "/ecthreshold_cfg"; + stm_out_port0 = "/stm@24080000/out-ports/port/endpoint"; + cpu0_etm_out_port0 = "/cpu0_etm@27040000/out-ports/port/endpoint"; + cpu1_etm_out_port0 = "/cpu1_etm@27140000/out-ports/port/endpoint"; + cpu2_etm_out_port0 = "/cpu2_etm@27240000/out-ports/port/endpoint"; + cpu3_etm_out_port0 = "/cpu3_etm@27340000/out-ports/port/endpoint"; + cpu4_etm_out_port0 = "/cpu4_etm@27440000/out-ports/port/endpoint"; + cpu5_etm_out_port0 = "/cpu5_etm@27540000/out-ports/port/endpoint"; + cpu6_etm_out_port0 = "/cpu6_etm@27640000/out-ports/port/endpoint"; + cpu7_etm_out_port0 = "/cpu7_etm@27740000/out-ports/port/endpoint"; + cpu8_etm_out_port0 = "/cpu8_etm@27840000/out-ports/port/endpoint"; + cpu9_etm_out_port0 = "/cpu9_etm@27940000/out-ports/port/endpoint"; + cpu10_etm_out_port0 = "/cpu10_etm@27A40000/out-ports/port/endpoint"; + cpu11_etm_out_port0 = "/cpu11_etm@27B40000/out-ports/port/endpoint"; + funnel_ccplex0_out_port0 = "/funnel_ccplex0@26030000/out-ports/port@0/endpoint"; + funnel_ccplex0_in_port0 = "/funnel_ccplex0@26030000/in-ports/port@0/endpoint"; + funnel_ccplex0_in_port1 = "/funnel_ccplex0@26030000/in-ports/port@1/endpoint"; + funnel_ccplex0_in_port2 = "/funnel_ccplex0@26030000/in-ports/port@2/endpoint"; + funnel_ccplex0_in_port3 = "/funnel_ccplex0@26030000/in-ports/port@3/endpoint"; + funnel_ccplex1_out_port0 = "/funnel_ccplex1@26040000/out-ports/port@0/endpoint"; + funnel_ccplex1_in_port0 = "/funnel_ccplex1@26040000/in-ports/port@0/endpoint"; + funnel_ccplex1_in_port1 = "/funnel_ccplex1@26040000/in-ports/port@1/endpoint"; + funnel_ccplex1_in_port2 = "/funnel_ccplex1@26040000/in-ports/port@2/endpoint"; + funnel_ccplex1_in_port3 = "/funnel_ccplex1@26040000/in-ports/port@3/endpoint"; + funnel_ccplex2_out_port0 = "/funnel_ccplex2@26050000/out-ports/port@0/endpoint"; + funnel_ccplex2_in_port0 = "/funnel_ccplex2@26050000/in-ports/port@0/endpoint"; + funnel_ccplex2_in_port1 = "/funnel_ccplex2@26050000/in-ports/port@1/endpoint"; + funnel_ccplex2_in_port2 = "/funnel_ccplex2@26050000/in-ports/port@2/endpoint"; + funnel_ccplex2_in_port3 = "/funnel_ccplex2@26050000/in-ports/port@3/endpoint"; + funnel_top_ccplex_out_port0 = "/funnel_top_ccplex@26020000/out-ports/port@0/endpoint"; + funnel_top_ccplex_in_port0 = "/funnel_top_ccplex@26020000/in-ports/port@0/endpoint"; + funnel_top_ccplex_in_port1 = "/funnel_top_ccplex@26020000/in-ports/port@1/endpoint"; + funnel_top_ccplex_in_port2 = "/funnel_top_ccplex@26020000/in-ports/port@2/endpoint"; + funnel_major_out_port0 = "/funnel_major@24040000/out-ports/port@0/endpoint"; + funnel_major_in_port1 = "/funnel_major@24040000/in-ports/port@1/endpoint"; + funnel_major_in_port2 = "/funnel_major@24040000/in-ports/port@2/endpoint"; + replicator_in_port0 = "/replicator@24060000/in-ports/port/endpoint"; + replicator_out_port0 = "/replicator@24060000/out-ports/port/endpoint"; + etf_in_port = "/etf@24050000/in-ports/port/endpoint"; + etf_out_port = "/etf@24050000/out-ports/port/endpoint"; + etr_in_port = "/etr@24070000/in-ports/port/endpoint"; + tegra_pm_irq = "/tegra194-pm-irq"; + tegra_rtc = "/rtc@c2a0000"; + aon_hsp = "/tegra-hsp@c150000"; + hsp_top = "/tegra-hsp@3c00000"; + hsp_top1 = "/tegra-hsp@3d00000"; + hsp_top2 = "/tegra-hsp@1600000"; + sce_hsp = "/tegra-hsp@b150000"; + hsp_rce = "/tegra-hsp@b950000"; + cpu_bpmp_tx = "/sysram@40000000/shmem@70000"; + cpu_bpmp_rx = "/sysram@40000000/shmem@71000"; + bpmp = "/bpmp"; + pwr_i2c = "/bpmp/i2c"; + vrs_rtc = "/bpmp/i2c/vrs@3c/rtc"; + tegra_tmp451 = "/bpmp/i2c/temp-sensor@4c"; + tegra_main_gpio = "/gpio@2200000"; + tegra_aon_gpio = "/gpio@c2f0000"; + tegra_gte_lic = "/gte@3aa0000"; + tegra_gte_aon = "/gte@c1e0000"; + tegra_wdt = "/watchdog@2190000"; + tegra_pcie_pexclk_pinctrl = "/pinctrl@3790000"; + tegra_tachometer = "/tachometer@39c0000"; + tegra_tachometer1 = "/tachometer@39b0000"; + xusb_padctl = "/xusb_padctl@3520000"; + usb_role_switch0 = "/xusb_padctl@3520000/ports/usb2-0/port/endpoint"; + tegra_usb_cd = "/usb_cd"; + tegra_xudc = "/xudc@3550000"; + tegra_xhci = "/xhci@3610000"; + tegra_xhci_vf1 = "/xhci@3670000"; + tegra_xhci_vf2 = "/xhci@36c0000"; + tegra_xhci_vf3 = "/xhci@3710000"; + tegra_xhci_vf4 = "/xhci@3760000"; + tegra_ga10b = "/ga10b"; + arm64_ras = "/arm64_ras"; + tnvlink_controller = "/tegra_nvlink_controller"; + nvdisplay = "/display@13800000"; + tegra_icc = "/icc"; + battery_reg = "/fixed-regulators/regulator@0"; + hdr40_vdd_5v0 = "/fixed-regulators/regulator@0"; + p3701_ddr_vddq = "/fixed-regulators/regulator@0"; + p3701_ddr_vdd2 = "/fixed-regulators/regulator@1"; + p3701_vdd_1v8_hs = "/fixed-regulators/regulator@2"; + p3701_vdd_1v8_ls = "/fixed-regulators/regulator@3"; + p3701_vdd_0v95 = "/fixed-regulators/regulator@4"; + p3701_vdd_AO_1v8 = "/fixed-regulators/regulator@5"; + p3701_ap_ddr_vdd2 = "/fixed-regulators/regulator@6"; + p3701_vdd_rtc = "/fixed-regulators/regulator@7"; + p3701_vdd_AO_1v2 = "/fixed-regulators/regulator@8"; + p3701_vdd_AO_3v3 = "/fixed-regulators/regulator@9"; + p3701_vdd_FSI_core = "/fixed-regulators/regulator@10"; + p3701_vdd_FSI_1v8 = "/fixed-regulators/regulator@11"; + p3701_vdd_FSI_3v3 = "/fixed-regulators/regulator@12"; + p3737_vdd_12v_sys = "/fixed-regulators/regulator@100"; + p3737_vdd_5v_sys = "/fixed-regulators/regulator@101"; + vdd_5v_sys = "/fixed-regulators/regulator@101"; + p3737_vdd_3v3_sys = "/fixed-regulators/regulator@102"; + vdd_3v3_sys = "/fixed-regulators/regulator@102"; + p3737_vdd_1v8_sys = "/fixed-regulators/regulator@103"; + p3737_vdd_3v3_ftdi = "/fixed-regulators/regulator@104"; + p3737_vdd_3v3_pcie = "/fixed-regulators/regulator@105"; + p3737_avdd_cam_2v8 = "/fixed-regulators/regulator@106"; + p3737_vdd_av1v1_hub = "/fixed-regulators/regulator@107"; + p3737_vbusA_cvb = "/fixed-regulators/regulator@108"; + p3737_vbusB_cvb = "/fixed-regulators/regulator@109"; + p3737_vdd_dp = "/fixed-regulators/regulator@110"; + p3737_vdd_3v3_sd = "/fixed-regulators/regulator@111"; + p3737_vdd_usbc1_vbus = "/fixed-regulators/regulator@112"; + p3737_vdd_usbc2_vbus = "/fixed-regulators/regulator@113"; + p3737_vdd_12v_pcie = "/fixed-regulators/regulator@114"; + p3737_vdd_sys_en = "/fixed-regulators/regulator@115"; + dsi_vdd_1v8_bl_en = "/fixed-regulators/regulator@116"; + vdd_1v8_aud2 = "/fixed-regulators/regulator@200"; + pwm_fan_shared_data = "/pfsd"; + spdif_dit0 = "/spdif_dit/spdif-dit.0@0"; + spdif_dit1 = "/spdif_dit/spdif-dit.1@1"; + spdif_dit2 = "/spdif_dit/spdif-dit.2@2"; + spdif_dit3 = "/spdif_dit/spdif-dit.3@3"; + spdif_dit4 = "/spdif_dit/spdif-dit.4@4"; + spdif_dit5 = "/spdif_dit/spdif-dit.5@5"; + spdif_dit6 = "/spdif_dit/spdif-dit.6@6"; + spdif_dit7 = "/spdif_dit/spdif-dit.7@7"; + spdif_dit8 = "/spdif_dit/spdif-dit.8@8"; + spdif_dit9 = "/spdif_dit/spdif-dit.9@9"; + spdif_dit10 = "/spdif_dit/spdif-dit.10@a"; + spdif_dit11 = "/spdif_dit/spdif-dit.11@b"; + spdif_dit12 = "/spdif_dit/spdif-dit.12@c"; + spdif_dit13 = "/spdif_dit/spdif-dit.13@d"; + e2614_gps_wake = "/gps_wake"; + soft_wdt = "/soft_watchdog"; + tcp = "/tegra-camera-platform"; + cam_module0 = "/tegra-camera-platform/modules/module0"; + cam_module0_drivernode0 = "/tegra-camera-platform/modules/module0/drivernode0"; + cam_module0_drivernode1 = "/tegra-camera-platform/modules/module0/drivernode1"; + cam_module1 = "/tegra-camera-platform/modules/module1"; + cam_module1_drivernode0 = "/tegra-camera-platform/modules/module1/drivernode0"; + cam_module1_drivernode1 = "/tegra-camera-platform/modules/module1/drivernode1"; + cam_module2 = "/tegra-camera-platform/modules/module2"; + cam_module2_drivernode0 = "/tegra-camera-platform/modules/module2/drivernode0"; + cam_module2_drivernode1 = "/tegra-camera-platform/modules/module2/drivernode1"; + cam_module3 = "/tegra-camera-platform/modules/module3"; + cam_module3_drivernode0 = "/tegra-camera-platform/modules/module3/drivernode0"; + cam_module3_drivernode1 = "/tegra-camera-platform/modules/module3/drivernode1"; + cam_module4 = "/tegra-camera-platform/modules/module4"; + cam_module4_drivernode0 = "/tegra-camera-platform/modules/module4/drivernode0"; + cam_module4_drivernode1 = "/tegra-camera-platform/modules/module4/drivernode1"; + cam_module5 = "/tegra-camera-platform/modules/module5"; + cam_module5_drivernode0 = "/tegra-camera-platform/modules/module5/drivernode0"; + cam_module5_drivernode1 = "/tegra-camera-platform/modules/module5/drivernode1"; + cpu_alert = "/cpu-throttle-alert"; + gpu_alert = "/gpu-throttle-alert"; + cv0_alert = "/cv0-throttle-alert"; + cv1_alert = "/cv1-throttle-alert"; + cv2_alert = "/cv2-throttle-alert"; + soc0_alert = "/soc0-throttle-alert"; + soc1_alert = "/soc1-throttle-alert"; + soc2_alert = "/soc2-throttle-alert"; + hot_surface_alert = "/hot-surface-alert"; + }; +}; diff --git a/tools/hardware.yml b/tools/hardware.yml index cf55f22f9a3..e6d5acd74d1 100644 --- a/tools/hardware.yml +++ b/tools/hardware.yml @@ -46,8 +46,10 @@ devices: # GICRedistributor - index: 1 kernel: GICR_PPTR - # Assume 8 cores max - kernel_size: 0x100000 + # Assume 12 cores max + # Changing this requires changing the GICR_SIZE constant + # in gic_v3.c as well. + kernel_size: 0x180000 interrupts: INTERRUPT_VGIC_MAINTENANCE: 0 # Broadcom second level IRQ controller (interrupt-controller/brcm,bcm2835-armctrl-ic.txt), @@ -193,6 +195,7 @@ devices: - ti,omap3-uart - xlnx,xuartps - ns16550a + - nvidia,tegra194-tcu regions: - index: 0 kernel: UART_PPTR