mirror of
git://nv-tegra.nvidia.com/device/hardware/nvidia/t23x-public-dts.git
synced 2025-12-22 09:12:02 +03:00
The power supply info is missing for the SD card interface:
1. SD card for Concord is implemented at the board level, not in
the module itself. Accordingly the updates are in the board
files (p3737) rather than the module (p3701).
2. SD card for Orin Nano is implemented at the module level.
Accordingly the updates are in the modules files (p3767)
rather than the board files (p3768).
Bug 4307643
Change-Id: Id2bc9071387b3a16141db68076d29f0158f82cce
Signed-off-by: Brad Griffis <bgriffis@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/device/hardware/nvidia/t23x-public-dts/+/3013069
(cherry picked from commit 71752edda2)
Reviewed-on: https://git-master.nvidia.com/r/c/device/hardware/nvidia/t23x-public-dts/+/3016036
Reviewed-by: Amulya Yarlagadda <ayarlagadda@nvidia.com>
Tested-by: Amulya Yarlagadda <ayarlagadda@nvidia.com>
84 lines
1.9 KiB
Devicetree
84 lines
1.9 KiB
Devicetree
// SPDX-License-Identifier: GPL-2.0-only
|
|
// SPDX-FileCopyrightText: Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
|
|
#include <dt-bindings/gpio/tegra234-gpio.h>
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
#include <dt-bindings/interrupt/tegra234-irq.h>
|
|
|
|
/ {
|
|
bus@0 {
|
|
mmc@3400000 {
|
|
no-sdio;
|
|
no-mmc;
|
|
nvidia,cd-wakeup-capable;
|
|
nvidia,boot-detect-delay = <1000>;
|
|
cd-gpios = <&gpio TEGRA234_MAIN_GPIO(G, 7) GPIO_ACTIVE_LOW>;
|
|
vmmc-supply = <&vdd_3v3_sd>;
|
|
};
|
|
|
|
gpu@17000000 {
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
chosen {
|
|
nvidia,tegra-joint_xpu_rail;
|
|
};
|
|
|
|
opp-table-cluster0 {
|
|
opp-1510400000 { /* Max CPU freq for Orin Nano */
|
|
opp-hz = /bits/ 64 <1510400000>;
|
|
opp-peak-kBps = <3200000>;
|
|
};
|
|
|
|
opp-1984000000 { /* Max CPU freq for ONX */
|
|
opp-hz = /bits/ 64 <1984000000>;
|
|
opp-peak-kBps = <3200000>;
|
|
};
|
|
};
|
|
|
|
opp-table-cluster1 {
|
|
opp-1510400000 { /* Max CPU freq for Orin Nano */
|
|
opp-hz = /bits/ 64 <1510400000>;
|
|
opp-peak-kBps = <3200000>;
|
|
};
|
|
|
|
opp-1984000000 { /* Max CPU freq for ONX */
|
|
opp-hz = /bits/ 64 <1984000000>;
|
|
opp-peak-kBps = <3200000>;
|
|
};
|
|
};
|
|
|
|
opp-table-cluster2 {
|
|
opp-1510400000 { /* Max CPU freq for Orin Nano */
|
|
opp-hz = /bits/ 64 <1510400000>;
|
|
opp-peak-kBps = <3200000>;
|
|
};
|
|
|
|
opp-1984000000 { /* Max CPU freq for ONX */
|
|
opp-hz = /bits/ 64 <1984000000>;
|
|
opp-peak-kBps = <3200000>;
|
|
};
|
|
};
|
|
|
|
reserved-memory {
|
|
linux,cma { /* Needed for nvgpu comptags */
|
|
compatible = "shared-dma-pool";
|
|
reusable;
|
|
size = <0x0 0x10000000>; /* 256MB */
|
|
alignment = <0x0 0x10000>;
|
|
linux,cma-default;
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
vdd_3v3_sd: regulator-vdd-3v3-sd {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "VDD_3V3_SD";
|
|
regulator-min-microvolt = <3300000>;
|
|
regulator-max-microvolt = <3300000>;
|
|
gpio = <&gpio TEGRA234_MAIN_GPIO(A, 0) GPIO_ACTIVE_HIGH>;
|
|
enable-active-high;
|
|
};
|
|
};
|