Skip to content

Instantly share code, notes, and snippets.

@carzacc
Last active October 3, 2023 12:48
Show Gist options
  • Save carzacc/0fb09a00daef98e974a253e8624c1753 to your computer and use it in GitHub Desktop.
Save carzacc/0fb09a00daef98e974a253e8624c1753 to your computer and use it in GitHub Desktop.
Kernel hacking project notes

Possible Errors and How to Solve Them

This section acts as a Table of Contents of sorts for this document. It lists some of the errors you might encounter (those I encountered at least) and how to fix them.

  • failure to compile Jailhouse with errors like ERROR: modpost: "ioremap_page_range" [driver/jailhouse.ko] undefined!: you are not running a Jailhouse-enabling kernel and haven't specified a different kernel source to bind to: refer to this section and this section.
  • failure to compile the kernel: check whether you used the correct options in the .config file. In this gist you can find a working config and refer to this section.
  • failure to boot the board with a custom kernel: check whether the kernel you are running contains the NVIDIA Jetson patches (refer to this section)
  • failure to use I/O devices (e.g. networking) with a custom kernel: install the built-in kernel modules (this section)
  • failure to find /lib/modules/<kernel_version> when installing the Jailhouse kernel module: install the built-in kernel modules (refer to this section).
  • failure to load the Jailhouse kernel module: check that the running kernel is the same that was used to compile the Jailhouse kernel module.

If, instead, the system crashes when attempting to enable the Jailhouse cell, the issue is either that you haven't reserved memory for the hypervisor or the root cell configuration is wrong. Refer to this section or any additional information you can find regarding the creation of a root cell configuration for Jailhouse (since I haven't managed to do that).

Jailhouse and Task Introduction

Jailhouse is a partitioning hypervisor: it only partitions the resources of the host system among a number of cells. After defining them (by assigning them some of the resources), you can run a guest operating system on each.

Before doing that, though, it's necessary to configure a root cell, to tell Jailhouse what resources it should use. Most of the configuration is needed to specify the addresses and sizes of memory areas available for different purposes.

Jailhouse runs as a kernel module, and it has CLI tools to interact with it. The upstream Siemens Jailhouse repository can be found on GitHub at https://github.com/siemens/jailhouse, and the Minerva fork, adding cache coloring and memory regulation and additional cell configuraitons can be found at https://gitlab.com/minervasys/public/jailhouse.

On x86 systems, Jailhouse is capable of automatically generating the root cell configuration for the system it is running on. On ARM, though, this is not the case, and the root cell configuration needs to be written by hand, which.

The cell configurations are in the configs directory in the root of the Jailhouse source code, so you can find existing cell configurations for currently supported ARM64 hardware here.

Quick Overview of How to Work With the Jetson

In addition to connecting power (by connecting the USB type-C power adapter to port number 4 in the image above) and network (potentially optional, as the board should be configured to connect to WiFi), you don't necessarily need to connect a display, but you need to connect the board to your laptop using a microUSB cable connected to the port labeled with number 9 in the image above.

The board will power up automatically when connected to power (LED labeled 0 will light up), but you can use the power button (labeled 1) to power it up and down, and button 3 to reset it. Button 2 is used during the flashing process, along with the Type-C port on the other side of the Jetson DevKit. If you need to do that, refer to the Developer Guide and the last section of this document.

To interact with the board through the serial interface provided by the micro-USB connection, you can use minicom on your laptop:

minicom -D /dev/ttyACM0

While the board boots up, it may present to you a choice of kernels to boot, for example:

0: Default kernel
1: Jailhouse kernel

and you can use the corresponding key on your keyboard to choose which kernel to boot. For example, you could press 1 to boot the Jailhouse kernel in this example (I'll explain more about the need for a Jailhouse-specific later in this guide).

After that, the board will boot normally and prompt you for a username and password.

It will also display the board's IP address in the process. You can use that to log in using SSH instead of using the serial connection over USB to get a terminal.

You will also need the IP address if you want to copy files to and from the board using SCP or SFTP.

You can find more information on what each port is for in Nvidia's guide.

Running Jailhouse on The AGX Orin

Before being able to run a cell, you need to install and enable the Jailhouse kernel module.

The Kernel

On recent kernel version, in order to be able to compile and enable the Jailhouse module, you need to apply to the base kernel some patches developed by Jan Kiszka in Siemens' Jailhouse-enabling kernel (in the jailhouse-enabling/<version> branches of https://github.com/siemens/linux/).

I have already done all of this and installed a working and Jailhouse-enabling kernel on the board, but in case you work with a different board, the board has been flashed again by the time you get to it, you decide to flash it, or you want to work with a different kernel version, you can follow the steps outlined here to compile and install a Jailhouse-enabling kernel for the Jetson.

The Jailhouse-enabling kernel as it is (we tried versions 5.10 and 5.15) doesn't boot when deployed on the board, probably because, in order for a kernel to run on a Jetson board, it also needs Nvidia's kernel patches.

I have successfully flashed Jetson Linux version 35.3.1 onto the board.

The Nvidia-provided Jetson Linux kernel version 5.10.104 (the default version for Jetson Linux 35.3.1) with the applied patches from jailhouse-enabling/5.10 compiles when using the .config generated by make tegra_defconfig and taking out CONFIG_MODVERSIONS. CONFIG_TRIM_UNUSED_KSYMS must not be set, but it isn't by default either.

You can find the result of applying the Kiszka patches to the Jetson kernel in this repository.

The working .config is one of the files in this Gist.

On the running board, you can find the gzip-compressed config of the running kernel in /proc/config.gz.

Compiling the Kernel for the Jetson

To compile the kernel, there are two options:

  • compile it on the board, which takes a few minutes;
  • cross-compile on another machine and copy the boot image on the board, which can be much faster if you have a high-performance CPU.

The first option doesn't require much futher explanation: you just need to run make -j13 (if you want to use make with 13 parallel threads, the number of CPU cores plus 1).

Cross-Compiling the Linux Kernel for Jetson

If you have a high-performance CPU and want to use it to compile the kernel and speed up the process, you need a toolchain that compiles to ARM64 binaries.

If, as is probably the case, you have an x86 CPU, this means you need to cross-compile the kernel using a specific compiler toolchain.

Nvidia provides download links for a Bootlin GCC toolchain that does that among the links in a Jetson Linux release page. You can get the GCC 9.3 version for Jetson Linux 35.3.1 by clicking here and extracting the downloaded.

After extracting the tarball, all you need to use it for cross-compiling a Linux kernel is to set two environment variables ARCH to arm64 and CROSS_COMPILE to the path to the prefix of the toolchain, including its path. For example, if you extracted the toolchain tarball to /path/to/aarch64--glibc--stable-final (so the path to the GCC compiler would be /path/to/aarch64--glibc--stable-final/bin/aarch64-linux-gcc), you need to set CROSS_COMPILE to /path/to/aarch64--glibc--stable-final/bin/aarch64-linux-. For example, you could export them with:

export ARCH=arm64
export CROSS_COMPILE=/path/to/aarch64--glibc--stable-final/bin/aarch64-linux-

After doing this, you can use make as if you were compiling for your local machine to compile the kernel. What will change is what you do to install it.

Installing and Running the Kernel

After compiling the kernel, the boot image can be found in arch/arm64/boot/Image. This file needs to be copied to the board.

The boot manager can be configured by editing /boot/extlinux/extlinux.conf, and editing or adding a boot loader entry for the newly compiled kernel, by setting the LINUX configuration item to the path to the compiled image you copied to the board.

The Kernel Modules

In addition to the Jailhouse kernel module (which we'll look at next), there are a bunch of in-tree kernel modules, especially device drivers for things like the network connection, which are necessary for the proper functioning of the board, and they also need to be copied to the board.

On the machine you are using for compiling, you can set the INSTALL_MOD_PATH to a local path on your machine, so that, when you run make modules_install, they will use that directory as a prefix, so that you can then copy that to the board, and copy the lib directory inside it to the root of the board's directory tree, so that there is a /lib/modules/<kernel_version> directory on the board for the newly installed kernel.

Compiling and Loading the Jailhouse Kernel Module

The Jailhouse codebase is much, much smaller than the kernel's. This means that compiling it takes a lot less time.

If you use the same board I used and it hasn't been touched until that point, you will find the compiled Jailhouse kernel module you can load in the utente user's home directory, and everything else that is needed for it to run will be in its place.

In any case, to compile the Jailhouse kernel module, you need to use the KDIR variable to specify the path to the source code of the Jailhouse-enabling kernel.

Root Cell Configuration

On this step and beyond, I can't provide much guidance beyond just outlining what I've done and provide some potentially useful pointers to how to try to advance the work forward.

Creating the root cell configuration

As a template we used the amd-seattle cell configuration.

  • The .cpus section can be set to 0xFF (it's a bitmask, with a bit set to 1 for every CPU)
  • We can get information about Memory-Mappted I/O regions with /proc/iomem.
  • We can get information about the GIC* interrupt controllers from the device-tree specification, which we decompiled from the compiled Device-Tree Blob specified in the /boot/extlinux/extlinux.conf using dtc (device-tree compiler). Documentation about this

Reserving Memory for the Hypervisor

A necessary preliminary step to run Jailhouse is to reserve memory for the hypervisor so that the host kernel will not attempt to use that memory region.

Looking at the output of /proc/iomem, I took the memory region starting at address 0x80000000 and size 0x04000000 and added it to reserved-memory in the decompiled device-tree blob (line 74 of attached orinjh.dts).

As can be seen in the attached proc_iomem_reserved (the content of /proc/iomem when running the kernel with the patched device-tree), on line 187 we have our reserved memory region, which we can plug into the Jailhouse configuration.

Extra: L4T Drivers Usage

This section may or may not be useful to you, but is here for completeness, in case you need to flash the board yourself or simply to get the "bare" Jetson kernel source code.

Finding the Kernel Sources

In the Jetson Linux release page, download the L4T (Linux 4 (for) Tegra) driver package and run source_sync.sh and answer the prompts. In the end, you will get the kernel in sources/kernel/kernel-<version>.

Flashing Tips for Unsupported Distributions

Please refer to the Nvidia developer guide for the entire set of steps for flashing. Here I will only provide specific tips to solve issues I found while trying to flash the board.

The issue I ran into is that Nvidia SDK Manager only supports flashing on Ubuntu 18.04 and 20.04. If you run other operating systems (for example I run Fedora), you can use the Ubuntu 20.04 Docker image you can download at that link. The issue, though, is that not all dependencies needed to flash are installed in the Docker image. Additionally, by default Docker containers don't have all of the permissions needed to flash the board.

To solve the issue with dependencies, I installed all dependencies using tools/l4t_flash_prerequisites.sh in the L4T drivers package available on the Jetson Linux page, (along with any other missing dependencies that cause other errors, if there are any) and then, to avoid having to do it all over again every time I need to try to flash the board, used docker commit and docker tag to create a local Docker image, called sdkmanager-tweaked, that has all of the dependencies needed to flash the board.

Remember that, in order to be able to access the L4T drivers package the directory you extracted it in needs to be part of a Docker volume. In the example below I created a volume corresponding to $HOME/Downloads on my host machine, which was where I had the L4T drivers package.

Once you've done that, the command to run a container that can be used to flash the board is:

docker run -it --rm --name=sdkmanager --rm=true --net=host --ipc host --privileged=true --cap-add SYS_ADMIN  -v $HOME/Downloads:/Downloads --volume="/dev/bus/usb:/dev/bus/usb" --entrypoint bash sdkmanager-tweaked:latest

You can then follow the process described in the Nvidia developer guide linked above.

  • Hardware: Nvidia AGX Orin Developer Kit (32 GB RAM, 64 GB storage, 12x ARM Cortex-A78, Tegra234 codename)

Running JailHouse on AGX Orin

To run JailHouse, we have to run a kernel that contains the patches developed by Kiszka in Siemens' JailHouse-enabling kernel (in the jailhouse-enabling/<version> branches of https://github.com/siemens/linux/).

The JailHouse-enabling kernel (we tried versions 5.10 and 5.15) doesn't boot when deployed on the board.

Jetson Linux version 35.3.1 has been successfully flashed onto the board.

The Nvidia-provided Jetson Linux kernel version 5.10.104 with the applied patches from jailhouse-enabling/5.10 compiles when using the .config generated by make tegra_defconfig and taking out CONFIG_MODVERSIONS. CONFIG_TRIM_UNUSED_KSYMS must not be set, but it isn't by default either.

The working .config is in the other file in this Gist.

Other useful pointers

The gzip-compressed config of the running kernel can be found in /proc/config.gz.

The boot manager can be configured by editing /boot/extlinux/extlinux.conf.

After compiling the kernel, the boot image can be found in arch/arm64/boot/Image. It is the only file that needs to be copied to the board when cross-compiling.

Finding the Nvidia kernel sources

In the Jetson Linux release page, download the L4T (Linux 4 (for) Tegra) driver package and run source_sync.sh and answer the prompts. In the end, you will get the kernel in sources/kernel/kernel-<version>.

The GCC 9.3 cross-compiler for aarch64 recommended by Nvidia can be found on the release page as well.

To cross-compile, just set CROSS_COMPILE to /<path>/aarch64--glibc--stable-final/bin/aarch64-linux- and ARCH to arm64.

Flashing firmware on the Jetson

The command to run a container that can be used to flash the board is:

docker run -it --rm --name=sdkmanager --rm=true --net=host --ipc host --privileged=true --cap-add SYS_ADMIN  -v $HOME/Downloads:/Downloads --volume="/dev/bus/usb:/dev/bus/usb" --entrypoint bash sdkmanager-tweaked:latest

where sdkmanager is a version of NVIDIA's SDKManager Docker image with all of the packages that are needed to run the SDK manager. We will not use the SDK manager directly though, as that fails (at least on my machine), but the L4T BPS driver package available on the Jetson Linux page.

Creating the root cell configuration

As a template we used the amd-seattle cell configuration.

  • The .cpus section can be set to 0xFF (it's a bitmask, with a bit set to 1 for every CPU)
  • We can get information about Memory-Mappted I/O regions with /proc/iomem.
  • We can get information about the GIC* interrupt controllers from the device-tree specification, which we decompiled from the compiled Device-Tree Blob specified in the /boot/extlinux/extlinux.conf using dtc (device-tree compiler). Documentation about this

Reserving Memory for the Hypervisor

A necessary preliminary step to run JailHouse is to reserve memory for the hypervisor so that the host kernel will not attempt to use that memory region.

Looking at the output of /proc/iomem, I took the memory region starting at address 0x80000000 and size 0x04000000 and added it to reserved-memory in the decompiled device-tree blob (line 74 of attached orinjh.dts).

As can be seen in the attached proc_iomem_reserved (the content of /proc/iomem when running the kernel with the patched device-tree), on line 187 we have our reserved memory region, which we can plug into the jailhouse configuration.

[ 145.907416] Bad mode in Synchronous Abort handler detected on CPU0, code 0x5a000000 -- HVC (AArch64)
[ 145.907418] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G OE 5.10.104+ #3
[ 145.907419] Hardware name: Unknown Jetson AGX Orin/Jetson AGX Orin, BIOS 3.1-32827747 03/19/2023
[ 145.907419] pstate: 20400089 (nzCv daIf +PAN -UAO -TCO BTYPE=--)
[ 145.907420] pc : 0xffff800034004868
[ 145.907421] lr : 0xffff80003400484c
[ 145.907421] sp : ffff800010003e80
[ 145.907422] x29: ffff800010003e80 x28: ffffde5e90532680
[ 145.907426] x27: 0000000000000000 x26: ffff800010004000
[ 145.907428] x25: ffff800010000000 x24: 0000000000000001
[ 145.907429] x23: 0000000000000000 x22: 0000000000000000
[ 145.907431] x21: 0000000000000000 x20: ffffde5e89e6e000
[ 145.907433] x19: ffff800034000000 x18: 0000000000000001
[ 145.907434] x17: ffffde5e89e6780c x16: 0000000000000000
[ 145.907436] x15: 0000ffffc0100000 x14: 0000000003100000
[ 145.907437] x13: 0000ffffc0200000 x12: 0000000080000000
[ 145.907438] x11: ffff0000bfe00000 x10: ffffde5e905b7a80
[ 145.907440] x9 : ffffde5e905b7a78 x8 : ffff7f07c04024a8
[ 145.907441] x7 : 0000000000000000 x6 : 0000000000000000
[ 145.907442] x5 : ffffde5e9064cff8 x4 : 000000000000003f
[ 145.907443] x3 : 0000000000000040 x2 : 0000000000000002
[ 145.907444] x1 : 0000000080005000 x0 : 0000000000000000
[ 145.907447] Bad mode in Synchronous Abort handler detected on CPU1, code 0x5a000000 -- HVC (AArch64)
[ 145.907448] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G OE 5.10.104+ #3
[ 145.907448] Hardware name: Unknown Jetson AGX Orin/Jetson AGX Orin, BIOS 3.1-32827747 03/19/2023
[ 145.907449] pstate: 20400089 (nzCv daIf +PAN -UAO -TCO BTYPE=--)
[ 145.907450] pc : 0xffff800034004868
[ 145.907450] lr : 0xffff80003400484c
[ 145.907451] sp : ffff80001000be80
[ 145.907451] x29: ffff80001000be80 x28: ffff7f07c0160e80
[ 145.907452] x27: 0000000000000000 x26: ffff80001000c000
[ 145.907453] x25: ffff800010008000 x24: 0000000000000001
[ 145.907455] x23: 0000000000000000 x22: 0000000000000000
[ 145.907456] x21: 0000000000000000 x20: ffffde5e89e6e000
[ 145.907457] x19: ffff800034000000 x18: 0000000000000001
[ 145.907458] x17: ffffde5e89e6780c x16: 0000000000000001
[ 145.907460] x15: 0000ffffc0100000 x14: 0000000003100000
[ 145.907461] x13: 0000ffffc0200000 x12: 0000000080000000
[ 145.907462] x11: ffff0000bfe00000 x10: ffffde5e905b7a80
[ 145.907463] x9 : ffffde5e905b7a78 x8 : ffff7f07c04024a8
[ 145.907464] x7 : 0000000000000000 x6 : 0000000000000000
[ 145.907466] x5 : ffffde5e9064cff8 x4 : 000000000000003f
[ 145.907467] x3 : 0000000000000040 x2 : 0000000000000002
[ 145.907468] x1 : 0000000080005000 x0 : 0000000000000000
[ 145.907470] Bad mode in Synchronous Abort handler detected on CPU2, code 0x5a000000 -- HVC (AArch64)
[ 145.907471] CPU: 2 PID: 0 Comm: swapper/2 Tainted: G OE 5.10.104+ #3
[ 145.907472] Hardware name: Unknown Jetson AGX Orin/Jetson AGX Orin, BIOS 3.1-32827747 03/19/2023
[ 145.907472] pstate: 20400089 (nzCv daIf +PAN -UAO -TCO BTYPE=--)
[ 145.907473] pc : 0xffff800034004868
[ 145.907473] lr : 0xffff80003400484c
[ 145.907474] sp : ffff800010013e80
[ 145.907474] x29: ffff800010013e80 x28: ffff7f07c02b4880
[ 145.907475] x27: 0000000000000000 x26: ffff800010014000
[ 145.907476] x25: ffff800010010000 x24: 0000000000000001
[ 145.907478] x23: 0000000000000000 x22: 0000000000000000
[ 145.907479] x21: 0000000000000000 x20: ffffde5e89e6e000
[ 145.907480] x19: ffff800034000000 x18: 0000000000000001
[ 145.907481] x17: ffffde5e89e6780c x16: 0000000000000002
[ 145.907482] x15: 0000ffffc0100000 x14: 0000000003100000
[ 145.907483] x13: 0000ffffc0200000 x12: 0000000080000000
[ 145.907484] x11: ffff0000bfe00000 x10: ffffde5e905b7a80
[ 145.907486] x9 : ffffde5e905b7a78 x8 : ffff7f07c04024a8
[ 145.907487] x7 : 0000000000000000 x6 : 0000000000000000
[ 145.907488] x5 : ffffde5e9064cff8 x4 : 000000000000003f
[ 145.907489] x3 : 0000000000000040 x2 : 0000000000000002
[ 145.907490] x1 : 0000000080005000 x0 : 0000000000000000
[ 145.907493] Bad mode in Synchronous Abort handler detected on CPU3, code 0x5a000000 -- HVC (AArch64)
[ 145.907493] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G OE 5.10.104+ #3
[ 145.907494] Hardware name: Unknown Jetson AGX Orin/Jetson AGX Orin, BIOS 3.1-32827747 03/19/2023
[ 145.907495] pstate: 20400089 (nzCv daIf +PAN -UAO -TCO BTYPE=--)
[ 145.907495] pc : 0xffff800034004868
[ 145.907496] lr : 0xffff80003400484c
[ 145.907496] sp : ffff80001001be80
[ 145.907497] x29: ffff80001001be80 x28: ffff7f07c02b0e80
[ 145.907498] x27: 0000000000000000 x26: ffff80001001c000
[ 145.907499] x25: ffff800010018000 x24: 0000000000000001
[ 145.907500] x23: 0000000000000000 x22: 0000000000000000
[ 145.907501] x21: 0000000000000000 x20: ffffde5e89e6e000
[ 145.907503] x19: ffff800034000000 x18: 0000000000000001
[ 145.907504] x17: ffffde5e89e6780c x16: 0000000000000003
[ 145.907505] x15: 0000ffffc0100000 x14: 0000000003100000
[ 145.907506] x13: 0000ffffc0200000 x12: 0000000080000000
[ 145.907507] x11: ffff0000bfe00000 x10: ffffde5e905b7a80
[ 145.907508] x9 : ffffde5e905b7a78 x8 : ffff7f07c04024a8
[ 145.907510] x7 : 0000000000000000 x6 : 0000000000000000
[ 145.907511] x5 : ffffde5e9064cff8 x4 : 000000000000003f
[ 145.907512] x3 : 0000000000000040 x2 : 0000000000000002
[ 145.907513] x1 : 0000000080005000 x0 : 0000000000000000
[ 145.907516] Bad mode in Synchronous Abort handler detected on CPU4, code 0x5a000000 -- HVC (AArch64)
[ 145.907517] CPU: 4 PID: 2522 Comm: jailhouse Tainted: G OE 5.10.104+ #3
[ 145.907517] Hardware name: Unknown Jetson AGX Orin/Jetson AGX Orin, BIOS 3.1-32827747 03/19/2023
[ 145.907518] pstate: 20400089 (nzCv daIf +PAN -UAO -TCO BTYPE=--)
[ 145.907518] pc : 0xffff800034004868
[ 145.907519] lr : 0xffff80003400484c
[ 145.907519] sp : ffff800020dabab0
[ 145.907520] x29: ffff800020dabab0 x28: ffffde5e89e6e000
[ 145.907521] x27: ffffde5e89e6e8c0 x26: ffffde5e89e6ec68
[ 145.907522] x25: ffff800034000000 x24: ffffde5e89e6e010
[ 145.907523] x23: 0000000000000000 x22: 0000000000000678
[ 145.907525] x21: 0000000000000000 x20: ffffde5e89e6e000
[ 145.907526] x19: ffff800034000000 x18: 0000000000000001
[ 145.907527] x17: ffffde5e89e6780c x16: 0000000000000004
[ 145.907528] x15: 0000ffffc0100000 x14: 0000000003100000
[ 145.907529] x13: 0000ffffc0200000 x12: 0000000080000000
[ 145.907531] x11: ffff0000bfe00000 x10: ffff7f7f7f7f7f7f
[ 145.907532] x9 : fefdff6262626c72 x8 : 0000000000000004
[ 145.907533] x7 : 0000000000000000 x6 : 0000000000000003
[ 145.907534] x5 : 0000000000000000 x4 : 000000000000003f
[ 145.907535] x3 : 0000000000000040 x2 : 0000000000000002
[ 145.907536] x1 : 0000000080005000 x0 : 0000000000000000
[ 145.907538] Kernel panic - not syncing: bad mode
[ 145.907538] CPU: 4 PID: 2522 Comm: jailhouse Tainted: G OE 5.10.104+ #3
[ 145.907539] Hardware name: Unknown Jetson AGX Orin/Jetson AGX Orin, BIOS 3.1-32827747 03/19/2023
[ 145.907540] Call trace:
[ 145.907540] dump_backtrace+0x0/0x1d0
[ 145.907541] show_stack+0x30/0x40
[ 145.907541] dump_stack+0xd8/0x138
[ 145.907542] panic+0x17c/0x384
[ 145.907542] bad_mode+0x88/0x90
[ 145.907543] el1_inv+0x38/0x60
[ 145.907543] el1_sync_handler+0x50/0xb0
[ 145.907544] el1_sync+0x8c/0x140
[ 145.907544] 0xffff800034004868
[ 145.907545] on_each_cpu+0x5c/0xc0
[ 145.907545] jailhouse_cmd_enable+0x538/0x7c0 [jailhouse]
[ 145.907546] jailhouse_ioctl+0x114/0x240 [jailhouse]
[ 145.907547] __arm64_sys_ioctl+0xac/0xf0
[ 145.907547] el0_svc_common.constprop.0+0x80/0x1d0
[ 145.907548] do_el0_svc+0x38/0xb0
[ 145.907549] el0_svc+0x1c/0x30
[ 145.907549] el0_sync_handler+0xa8/0xb0
[ 145.907550] el0_sync+0x16c/0x180
[ 145.907551] Bad mode in Synchronous Abort handler detected on CPU5, code 0x5a000000 -- HVC (AArch64)
[ 145.907552] CPU: 5 PID: 0 Comm: swapper/5 Tainted: G OE 5.10.104+ #3
[ 145.907552] Hardware name: Unknown Jetson AGX Orin/Jetson AGX Orin, BIOS 3.1-32827747 03/19/2023
[ 145.907553] pstate: 20400089 (nzCv daIf +PAN -UAO -TCO BTYPE=--)
[ 145.907554] pc : 0xffff800034004868
[ 145.907554] lr : 0xffff80003400484c
[ 145.907555] sp : ffff80001002be80
[ 145.907555] x29: ffff80001002be80 x28: ffff7f07c02b2b80
[ 145.907556] x27: 0000000000000001 x26: ffff80001002c000
[ 145.907558] x25: ffff800010028000 x24: 0000000000000001
[ 145.907559] x23: 0000000000000000 x22: 0000000000000000
[ 145.907561] x21: 0000000000000000 x20: ffffde5e89e6e000
[ 145.907562] x19: ffff800034000000 x18: 0000000000000001
[ 145.907563] x17: ffffde5e89e6780c x16: 0000000000000005
[ 145.907565] x15: 0000ffffc0100000 x14: 0000000003100000
[ 145.907566] x13: 0000ffffc0200000 x12: 0000000080000000
[ 145.907567] x11: ffff0000bfe00000 x10: ffffde5e905b7a80
[ 145.907568] x9 : ffffde5e905b7a78 x8 : ffff7f07c04024a8
[ 145.907569] x7 : 0000000000000000 x6 : 0000000000000000
[ 145.907570] x5 : ffffde5e9064cff8 x4 : 000000000000003f
[ 145.907572] x3 : 0000000000000040 x2 : 0000000000000002
[ 145.907573] x1 : 0000000080005000 x0 : 0000000000000000
[ 145.907575] Bad mode in Synchronous Abort handler detected on CPU6, code 0x5a000000 -- HVC (AArch64)
[ 145.907576] CPU: 6 PID: 0 Comm: swapper/6 Tainted: G OE 5.10.104+ #3
[ 145.907577] Hardware name: Unknown Jetson AGX Orin/Jetson AGX Orin, BIOS 3.1-32827747 03/19/2023
[ 145.907577] pstate: 20400089 (nzCv daIf +PAN -UAO -TCO BTYPE=--)
[ 145.907578] pc : 0xffff800034004868
[ 145.907579] lr : 0xffff80003400484c
[ 145.907580] sp : ffff800010033e80
[ 145.907580] x29: ffff800010033e80 x28: ffff7f07c02b5700
[ 145.907581] x27: 0000000000000000 x26: ffff800010034000
[ 145.907583] x25: ffff800010030000 x24: 0000000000000001
[ 145.907584] x23: 0000000000000000 x22: 0000000000000000
[ 145.907586] x21: 0000000000000000 x20: ffffde5e89e6e000
[ 145.907587] x19: ffff800034000000 x18: 0000000000000001
[ 145.907588] x17: ffffde5e89e6780c x16: 0000000000000006
[ 145.907590] x15: 0000ffffc0100000 x14: 0000000003100000
[ 145.907591] x13: 0000ffffc0200000 x12: 0000000080000000
[ 145.907592] x11: ffff0000bfe00000 x10: ffffde5e905b7a80
[ 145.907594] x9 : ffffde5e905b7a78 x8 : ffff7f07c04024a8
[ 145.907595] x7 : 0000000000000000 x6 : 0000000000000000
[ 145.907596] x5 : ffffde5e9064cff8 x4 : 000000000000003f
[ 145.907597] x3 : 0000000000000040 x2 : 0000000000000002
[ 145.907599] x1 : 0000000080005000 x0 : 0000000000000000
[ 145.907601] Bad mode in Synchronous Abort handler detected on CPU7, code 0x5a000000 -- HVC (AArch64)
[ 145.907602] CPU: 7 PID: 0 Comm: swapper/7 Tainted: G OE 5.10.104+ #3
[ 145.907603] Hardware name: Unknown Jetson AGX Orin/Jetson AGX Orin, BIOS 3.1-32827747 03/19/2023
[ 145.907603] pstate: 20400089 (nzCv daIf +PAN -UAO -TCO BTYPE=--)
[ 145.907604] pc : 0xffff800034004868
[ 145.907604] lr : 0xffff80003400484c
[ 145.907605] sp : ffff80001003be80
[ 145.907605] x29: ffff80001003be80 x28: ffff7f07c02b6580
[ 145.907606] x27: 0000000000000000 x26: ffff80001003c000
[ 145.907608] x25: ffff800010038000 x24: 0000000000000001
[ 145.907609] x23: 0000000000000000 x22: 0000000000000000
[ 145.907610] x21: 0000000000000000 x20: ffffde5e89e6e000
[ 145.907611] x19: ffff800034000000 x18: 0000000000000001
[ 145.907612] x17: ffffde5e89e6780c x16: 0000000000000007
[ 145.907613] x15: 0000ffffc0100000 x14: 0000000003100000
[ 145.907615] x13: 0000ffffc0200000 x12: 0000000080000000
[ 145.907616] x11: ffff0000bfe00000 x10: ffffde5e905b7a80
[ 145.907617] x9 : ffffde5e905b7a78 x8 : ffff7f07c04024a8
[ 145.907618] x7 : 0000000000000000 x6 : 0000000000000000
[ 145.907619] x5 : ffffde5e9064cff8 x4 : 000000000000003f
[ 145.907621] x3 : 0000000000000040 x2 : 0000000000000002
[ 145.907622] x1 : 0000000080005000 x0 : 0000000000000000
[ 145.907637] Kernel Offset: 0x5e5e7e830000 from 0xffff800010000000
[ 145.907637] PHYS_OFFSET: 0xffff80f940000000
[ 145.907638] CPU features: 0x0040006,4a80aa38
[ 145.907638] Memory Limit: none
/dts-v1/;
/ {
compatible = "nvidia,p3737-0000+p3701-0000\0nvidia,tegra234\0nvidia,tegra23x";
interrupt-parent = <0x01>;
#address-cells = <0x02>;
#size-cells = <0x02>;
model = "Jetson AGX Orin";
nvidia,fastboot-usb-vid = <0x955>;
nvidia,fastboot-usb-pid = <0xee1e>;
nvidia,dtsfilename = "/dvs/git/dirty/git-master_linux/kernel/kernel-5.10/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t23x/concord/kernel-dts/tegra234-p3701-0000-p3737-0000.dts";
nvidia,dtbbuildtime = "Mar 19 2023\008:08:40";
interrupt-controller@f400000 {
compatible = "arm,gic-v3";
#interrupt-cells = <0x03>;
#redistributor-regions = <0x01>;
interrupt-controller;
reg = <0x00 0xf400000 0x00 0x10000 0x00 0xf440000 0x00 0x200000>;
interrupt-parent = <0x01>;
interrupts = <0x01 0x09 0xf04>;
ranges;
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 0x00 0xc0000000>;
};
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 = <0x300>;
};
reserved-memory {
#address-cells = <0x02>;
#size-cells = <0x02>;
ranges;
jailhouse_mem: jailhouse_mem@800000000 {
no-map;
reg = <0x0 0x80000000 0x0 0x04000000>;
};
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 = <0x301>;
};
ramoops_carveout {
compatible = "ramoops";
size = <0x00 0x200000>;
record-size = <0x10000>;
console-size = <0x80000>;
alignment = <0x00 0x10000>;
alloc-ranges = <0x00 0x00 0x01 0x00>;
no-map;
status = "okay";
phandle = <0x302>;
};
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";
status = "disabled";
phandle = <0x0d>;
};
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 = <0x303>;
};
};
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-hwpm {
#address-cells = <0x02>;
#size-cells = <0x02>;
compatible = "nvidia,tegra-t23x-mc-hwpm";
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>;
channels = <0x10>;
ranges;
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 = <0x23>;
};
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 = <0x2a7>;
};
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 = <0x21>;
};
smmu_test {
compatible = "nvidia,smmu_test";
iommus = <0x02 0x18>;
phandle = <0x304>;
};
dma_test {
compatible = "nvidia,dma_test";
phandle = <0x305>;
};
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-fabric@1300000 {
compatible = "nvidia,tegra234-cbb-fabric";
reg = <0x00 0x13a00000 0x00 0x400000>;
interrupts = <0x00 0xe7 0x04>;
status = "okay";
};
aon-fabric@C600000 {
compatible = "nvidia,tegra234-aon-fabric";
reg = <0x00 0xc600000 0x00 0x40000>;
interrupts = <0x00 0xac 0x04>;
status = "okay";
};
bpmp-fabric@D600000 {
compatible = "nvidia,tegra234-bpmp-fabric";
reg = <0x00 0xd600000 0x00 0x40000>;
interrupts = <0x00 0xae 0x04>;
status = "okay";
};
dce-fabric@BE00000 {
compatible = "nvidia,tegra234-dce-fabric";
reg = <0x00 0xde00000 0x00 0x40000>;
interrupts = <0x00 0x17d 0x04>;
status = "okay";
};
rce-fabric@BE00000 {
compatible = "nvidia,tegra234-rce-fabric";
reg = <0x00 0xbe00000 0x00 0x40000>;
interrupts = <0x00 0xaf 0x04>;
status = "okay";
};
sce-fabric@B600000 {
compatible = "nvidia,tegra234-sce-fabric";
reg = <0x00 0xb600000 0x00 0x40000>;
interrupts = <0x00 0xad 0x04>;
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 = <0x2e4>;
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 = <0x1f>;
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 = <0x20>;
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 = <0x22>;
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 = <0x2b>;
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 = <0x2c>;
eqos {
nvidia,pins = "eqos_rd0_pe6\0eqos_rd1_pe7\0eqos_rd2_pf0\0eqos_rd3_pf1\0eqos_rx_ctl_pf2";
nvidia,enable-input = <0x01>;
};
};
sdmmc1_sdexp_disable {
phandle = <0x38>;
sdmmc1_dat0 {
nvidia,pins = "sdmmc1_dat0_pj2";
nvidia,enable-input = <0x01>;
};
sdmmc1_dat1 {
nvidia,pins = "sdmmc1_dat1_pj3";
nvidia,enable-input = <0x01>;
};
sdmmc1_dat2 {
nvidia,pins = "sdmmc1_dat2_pj4";
nvidia,function = "sdmmc1";
nvidia,enable-input = <0x01>;
};
sdmmc1_dat3 {
nvidia,pins = "sdmmc1_dat3_pj5";
nvidia,function = "sdmmc1";
nvidia,enable-input = <0x01>;
};
};
sdmmc1_sdexp_enable {
phandle = <0x37>;
sdmmc1_dat0 {
nvidia,pins = "sdmmc1_dat0_pj2";
nvidia,enable-input = <0x00>;
};
sdmmc1_dat1 {
nvidia,pins = "sdmmc1_dat1_pj3";
nvidia,enable-input = <0x00>;
};
sdmmc1_dat2 {
nvidia,pins = "sdmmc1_dat2_pj4";
nvidia,function = "rsvd1";
nvidia,enable-input = <0x00>;
};
sdmmc1_dat3 {
nvidia,pins = "sdmmc1_dat3_pj5";
nvidia,function = "rsvd1";
nvidia,enable-input = <0x00>;
};
};
};
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 = <0x306>;
};
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 = <0x307>;
};
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 = <0x308>;
};
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 = <0x25>;
};
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 = <0x26>;
};
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 = <0x27>;
};
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 = <0x28>;
};
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 = <0x29>;
};
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 = <0x15>;
};
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 = <0x16>;
};
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 = <0x17>;
};
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 = <0x18>;
};
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 = <0x19>;
};
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 = <0x1a>;
};
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 = <0x1b>;
};
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 = <0x1c>;
};
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 = <0x309>;
};
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 = <0x30a>;
};
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 = <0x30b>;
};
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 = <0x30c>;
};
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 = <0x30d>;
};
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 = <0x30e>;
};
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 = <0x30f>;
};
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 = <0x310>;
};
};
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 0xc28cb00 0xc28cb00 0xc28cb00 0xc28cb00 0x27ac4000 0xc28cb00 0xc28cb00 0x27ac4000 0x5f5e1000 0xc28cb00 0x27ac4000 0x5f5e1000 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 = <0x14 0x7c 0x00>;
phys = <0x15 0x16 0x17 0x18 0x19 0x1a 0x1b 0x1c>;
phy-names = "p2u-0\0p2u-1\0p2u-2\0p2u-3\0p2u-4\0p2u-5\0p2u-6\0p2u-7";
vpcie3v3-supply = <0x1d>;
vpcie12v-supply = <0x1e>;
phandle = <0x311>;
};
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 = <0x1f>;
interrupts = <0x00 0x160 0x04>;
interrupt-names = "intr";
nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x27ac4000 0xc28cb00 0xc28cb00 0x27ac4000 0x5f5e1000 0xc28cb00 0x27ac4000 0x5f5e1000 0x7f22ff40 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 = <0x312>;
};
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 = <0x20>;
interrupts = <0x00 0x162 0x04>;
interrupt-names = "intr";
nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0xc28cb00 0xc28cb00 0xc28cb00 0xc28cb00 0x27ac4000 0xc28cb00 0xc28cb00 0x27ac4000 0x5f5e1000 0xc28cb00 0x27ac4000 0x5f5e1000 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 = <0x21 0x08>;
iommu-map = <0x00 0x21 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 = <0x313>;
};
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 = <0x22>;
interrupts = <0x00 0x168 0x04>;
interrupt-names = "intr";
nvidia,dvfs-tbl = <0xc28cb00 0xc28cb00 0xc28cb00 0x27ac4000 0xc28cb00 0xc28cb00 0x27ac4000 0x5f5e1000 0xc28cb00 0x27ac4000 0x5f5e1000 0x7f22ff40 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 = <0x21 0x0b>;
iommu-map = <0x00 0x21 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 = <0x314>;
};
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 = <0x23 0xd8 0x23 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 0x27ac4000 0xc28cb00 0xc28cb00 0x27ac4000 0x5f5e1000 0xc28cb00 0x27ac4000 0x5f5e1000 0x7f22ff40 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 = <0x24>;
phandle = <0x315>;
};
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 = <0x23 0xda 0x23 0xdb>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 0x05>;
iommu-map = <0x00 0x21 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 0x27ac4000 0x27ac4000 0x5f5e1000 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 = <0x24>;
phys = <0x25>;
phy-names = "p2u-0";
phandle = <0x316>;
};
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 = <0x23 0xdc 0x23 0xdd>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 0x06>;
iommu-map = <0x00 0x21 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 0x27ac4000 0x27ac4000 0x5f5e1000 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 = <0x24>;
phandle = <0x317>;
};
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 = <0x23 0xde 0x23 0xdf>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 0x07>;
iommu-map = <0x00 0x21 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 0x27ac4000 0x27ac4000 0x5f5e1000 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 = <0x24>;
phandle = <0x318>;
};
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 = <0x23 0xe0 0x23 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 0x27ac4000 0xc28cb00 0xc28cb00 0x27ac4000 0x5f5e1000 0xc28cb00 0x27ac4000 0x5f5e1000 0x7f22ff40 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 = <0x24>;
phys = <0x26 0x27 0x28 0x29>;
phy-names = "p2u-0\0p2u-1\0p2u-2\0p2u-3";
phandle = <0x319>;
};
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 = <0x23 0xe2 0x23 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 0xc28cb00 0xc28cb00 0xc28cb00 0xc28cb00 0x27ac4000 0xc28cb00 0xc28cb00 0x27ac4000 0x5f5e1000 0xc28cb00 0x27ac4000 0x5f5e1000 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 = <0x15 0x16 0x17 0x18 0x19 0x1a 0x1b 0x1c>;
phy-names = "p2u-0\0p2u-1\0p2u-2\0p2u-3\0p2u-4\0p2u-5\0p2u-6\0p2u-7";
vpcie3v3-supply = <0x1d>;
vpcie12v-supply = <0x1e>;
phandle = <0x31a>;
};
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 = <0x23 0x28 0x23 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 0x27ac4000 0xc28cb00 0xc28cb00 0x27ac4000 0x5f5e1000 0xc28cb00 0x27ac4000 0x5f5e1000 0x7f22ff40 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 = <0x31b>;
};
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 = <0x23 0x2a 0x23 0x30>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 0x08>;
iommu-map = <0x00 0x21 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 0xc28cb00 0xc28cb00 0xc28cb00 0xc28cb00 0x27ac4000 0xc28cb00 0xc28cb00 0x27ac4000 0x5f5e1000 0xc28cb00 0x27ac4000 0x5f5e1000 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 = <0x31c>;
};
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 = <0x02>;
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 = <0x23 0x32 0x23 0x3b>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 0x09>;
iommu-map = <0x00 0x21 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 0x27ac4000 0x5f5e1000 0xc28cb00 0x27ac4000 0x5f5e1000 0x7f22ff40 0x00 0x00 0x00 0x00 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 = <0x31d>;
};
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 = <0x02>;
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 = <0x23 0x3c 0x23 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 0x27ac4000 0x5f5e1000 0xc28cb00 0x27ac4000 0x5f5e1000 0x7f22ff40 0x00 0x00 0x00 0x00 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 = <0x31e>;
};
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 = <0x23 0x3f 0x23 0x40>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 0x0b>;
iommu-map = <0x00 0x21 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 0x27ac4000 0xc28cb00 0xc28cb00 0x27ac4000 0x5f5e1000 0xc28cb00 0x27ac4000 0x5f5e1000 0x7f22ff40 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 = <0x31f>;
};
vm-irq-config {
nvidia,num-vm-irqs = <0x04>;
phandle = <0x2a>;
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\0macsec-base\0hypervisor";
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\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";
interconnects = <0x23 0x8e 0x23 0x8f>;
interconnect-names = "dma-mem\0write";
iommus = <0x21 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 = <0x2a>;
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 = <0x2b>;
pinctrl-1 = <0x2c>;
dma-coherent;
nvidia,dma_rx_ring_sz = <0x400>;
nvidia,dma_tx_ring_sz = <0x400>;
vddio_sys_enet_bias-supply = <0x2d>;
vddio_enet-supply = <0x2d>;
phy_vdd_1v8-supply = <0x13>;
phy_ovdd_rgmii-supply = <0x13>;
phy_pllvdd-supply = <0x2d>;
};
mgbe-vm-irq-config {
nvidia,num-vm-irqs = <0x05>;
phandle = <0x2e>;
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\0xpcs\0macsec-base\0hypervisor";
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\0pcs\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\0mgbe\0ptp-ref\0mgbe_macsec\0rx-input";
interconnects = <0x23 0x58 0x23 0x5c>;
interconnect-names = "dma-mem\0write";
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 = <0x2e>;
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>;
dma-coherent;
nvidia,dma_rx_ring_sz = <0x1000>;
nvidia,dma_tx_ring_sz = <0x1000>;
nvidia,mac-addr-idx = <0x00>;
nvidia,max-platform-mtu = <0x3fff>;
nvidia,pause_frames = <0x01>;
phy-handle = <0x2f>;
phy-mode = "10gbase-r";
nvidia,phy-iface-mode = <0x00>;
nvidia,phy-reset-gpio = <0x14 0x91 0x00>;
mdio {
compatible = "nvidia,eqos-mdio";
#address-cells = <0x01>;
#size-cells = <0x00>;
ethernet_phy@0 {
compatible = "ethernet-phy-ieee802.3-c45";
reg = <0x00>;
nvidia,phy-rst-pdelay-msec = <0x96>;
nvidia,phy-rst-duration-usec = <0x35f48>;
interrupt-parent = <0x14>;
interrupts = <0x93 0x08>;
phandle = <0x2f>;
};
};
};
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\0xpcs\0macsec-base\0hypervisor";
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\0pcs\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\0mgbe\0ptp-ref\0mgbe_macsec\0rx-input";
interconnects = <0x23 0x59 0x23 0x5f>;
interconnect-names = "dma-mem\0write";
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 = <0x2e>;
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>;
dma-coherent;
nvidia,dma_rx_ring_sz = <0x1000>;
nvidia,dma_tx_ring_sz = <0x1000>;
};
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\0xpcs\0macsec-base\0hypervisor";
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\0pcs\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\0mgbe\0ptp-ref\0mgbe_macsec\0rx-input";
interconnects = <0x23 0x5a 0x23 0x61>;
interconnect-names = "dma-mem\0write";
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 = <0x2e>;
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>;
dma-coherent;
nvidia,dma_rx_ring_sz = <0x1000>;
nvidia,dma_tx_ring_sz = <0x1000>;
};
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\0xpcs\0macsec-base\0hypervisor";
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\0pcs\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\0mgbe\0ptp-ref\0mgbe_macsec\0rx-input";
interconnects = <0x23 0x5b 0x23 0x65>;
interconnect-names = "dma-mem\0write";
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 = <0x2e>;
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>;
dma-coherent;
nvidia,dma_rx_ring_sz = <0x1000>;
nvidia,dma_tx_ring_sz = <0x1000>;
};
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 = "okay";
phandle = <0x320>;
};
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 = <0x321>;
};
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 = <0x322>;
};
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 = <0x323>;
};
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 = <0x324>;
};
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 = <0x325>;
};
serial@31d0000 {
compatible = "arm,sbsa-uart";
reg = <0x00 0x31d0000 0x00 0x10000>;
interrupts = <0x00 0x11d 0x04>;
current-speed = <0x1c200>;
status = "okay";
phandle = <0x326>;
};
serial@c270000 {
compatible = "arm,sbsa-uart";
reg = <0x00 0xc270000 0x00 0x10000>;
interrupts = <0x00 0x11e 0x04>;
current-speed = <0x1c200>;
status = "disabled";
phandle = <0x327>;
};
combined-uart {
compatible = "nvidia,tegra194-tcu";
reg = <0x00 0x3c10000 0x00 0x04 0x00 0xc168000 0x00 0x04 0x00 0x3c00000 0x00 0x1000>;
interrupts = <0x00 0x78 0x04>;
mboxes = <0x30 0x01 0x00 0x31 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 = <0x32>;
status = "okay";
nvidia,invert-interrupt;
phandle = <0x2e1>;
sdmmc1-3v3 {
pins = "sdmmc1-hv";
power-source = <0x01>;
phandle = <0x35>;
};
sdmmc1-1v8 {
pins = "sdmmc1-hv";
power-source = <0x00>;
phandle = <0x36>;
};
sdmmc3-3v3 {
pins = "sdmmc3-hv";
power-source = <0x01>;
phandle = <0x328>;
};
sdmmc3-1v8 {
pins = "sdmmc3-hv";
power-source = <0x00>;
phandle = <0x329>;
};
sdmmc1_e_33V_enable {
phandle = <0x32a>;
sdmmc1 {
pins = "sdmmc1-hv";
nvidia,power-source-voltage = <0x01>;
};
};
sdmmc1_e_33V_disable {
phandle = <0x32b>;
sdmmc1 {
pins = "sdmmc1-hv";
nvidia,power-source-voltage = <0x00>;
};
};
sdmmc3_e_33V_enable {
phandle = <0x32c>;
sdmmc3 {
pins = "sdmmc3-hv";
nvidia,power-source-voltage = <0x01>;
};
};
sdmmc3_e_33V_disable {
phandle = <0x32d>;
sdmmc3 {
pins = "sdmmc3-hv";
nvidia,power-source-voltage = <0x00>;
};
};
dpd-enable {
phandle = <0x32e>;
ufs {
pins = "ufs";
low-power-enable;
};
};
dpd-disable {
phandle = <0x32f>;
ufs {
pins = "ufs";
low-power-disable;
};
};
iopad-defaults {
phandle = <0x32>;
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 = <0x23 0x63 0x23 0x67>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 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 = <0x33>;
vqmmc-supply = <0x34>;
uhs-mask = <0x00>;
no-sdio;
no-sd;
supports-cqe;
phandle = <0x330>;
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 = <0x23 0x60 0x23 0x64>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 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\0sdmmc-sdexp-enable\0sdmmc-sdexp-disable";
pinctrl-0 = <0x35>;
pinctrl-1 = <0x36>;
pinctrl-2 = <0x37>;
pinctrl-3 = <0x38>;
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 = "okay";
vqmmc-supply = <0x24>;
disable-wp;
no-sdio;
nvidia,cd-wakeup-capable;
no-mmc;
nvidia,boot-detect-delay = <0x3e8>;
cd-gpios = <0x14 0x37 0x00>;
vmmc-supply = <0x39>;
phandle = <0x331>;
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 = <0x23 0x90 0x23 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,enable-rx-calib;
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 = <0x332>;
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 = <0x333>;
prod-settings {
#prod-cells = <0x04>;
prod {
prod = <0x00 0x194 0x80000000 0x00>;
board {
prod = <0x00 0x04 0x3f 0x30>;
};
};
};
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 = <0x334>;
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 = <0x335>;
prod-settings {
#prod-cells = <0x04>;
prod {
prod = <0x00 0x194 0x80000000 0x00>;
board {
prod = <0x00 0x04 0x3f 0x20>;
};
};
};
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 = <0x21 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 = <0x336>;
prod-settings {
#prod-cells = <0x04>;
prod {
prod = <0x04 0xff 0x10>;
board {
prod = <0x00 0x04 0x7cff 0x10 0x00 0x1ec 0x1f1f000 0xa0a000>;
};
};
};
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 = <0x21 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 = <0x337>;
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 = <0x338>;
};
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 = <0x339>;
};
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 = <0x2ff>;
};
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 = <0x33a>;
};
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 = <0x33b>;
};
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 = <0x33c>;
};
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 = <0x33d>;
};
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 = <0x33e>;
};
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";
nvidia,epl-reporter-id = <0x8050>;
phandle = <0x2f0>;
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>;
board {
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>;
board {
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 = <0x3a 0x17 0x00>;
sda-gpio = <0x3a 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";
nvidia,epl-reporter-id = <0x8051>;
phandle = <0x2f1>;
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>;
board {
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 = <0x33f>;
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 = <0x340>;
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 = <0x14>;
interrupts = <0x94 0x08>;
interrupt-names = "wakeup";
wakeup-source;
phandle = <0x341>;
connector@0 {
compatible = "usb-c-connector";
label = "USB-C";
data-role = "host";
phandle = <0x342>;
};
connector@1 {
compatible = "usb-c-connector";
label = "USB-C";
data-role = "dual";
phandle = <0x343>;
port {
endpoint {
remote-endpoint = <0x3b>;
phandle = <0x2e5>;
};
};
};
};
ncp81599@74 {
compatible = "nvidia,ncp81599";
reg = <0x74>;
regulator-name = "ncp81599";
ncp81599-supply = <0x3c>;
status = "disabled";
phandle = <0x344>;
};
};
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";
nvidia,epl-reporter-id = <0x8052>;
phandle = <0x2f2>;
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>;
board {
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>;
board {
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>;
skip_mux_detect = "yes";
vcc-supply = <0x3d>;
vcc-pullup-supply = <0x2d>;
force_bus_start = <0x1e>;
vif-supply = <0x3d>;
status = "disabled";
phandle = <0x345>;
i2c@0 {
reg = <0x00>;
i2c-mux,deselect-on-exit;
#address-cells = <0x01>;
#size-cells = <0x00>;
dual_hawk_a@18 {
compatible = "onsemi,ar0234";
reg = <0x18>;
physical_w = "15.0";
physical_h = "12.5";
sensor_model = "ar0234";
sync_sensor = "HAWK1";
sync_sensor_index = <0x01>;
post_crop_frame_drop = [30 00];
use_sensor_mode_id = "true";
def-addr = <0x18>;
clocks = <0x04 0x24 0x04 0x24>;
clock-names = "extperiph1\0pllp_grtba";
mclk = "extperiph1";
channel = [61 00];
has-eeprom;
reset-gpios = <0x14 0x3b 0x00>;
pwdn-gpios = <0x14 0xa0 0x00>;
pwr-gpios = <0x14 0xa7 0x00>;
status = "disabled";
phandle = <0x346>;
mode0 {
mclk_khz = "24000";
num_lanes = [32 00];
tegra_sinterface = "serial_b";
phy_mode = "DPHY";
vc_id = [30 00];
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 = "grbg";
active_w = "1920";
active_h = "1200";
readout_orientation = [30 00];
line_length = "2448";
inherent_gain = [31 00];
mclk_multiplier = "3.01";
pix_clk_hz = "134400000";
serdes_pix_clk_hz = "280000000";
gain_factor = "100";
min_gain_val = "100";
max_gain_val = "1600";
step_gain_val = [31 00];
default_gain = "100";
min_hdr_ratio = [31 00];
max_hdr_ratio = [31 00];
framerate_factor = "1000000";
min_framerate = "30000000";
max_framerate = "30000000";
step_framerate = "30000000";
default_framerate = "30000000";
exposure_factor = "1000000";
min_exp_time = "28";
max_exp_time = "22000";
step_exp_time = [31 00];
default_exp_time = "22000";
embedded_metadata_height = [30 00];
};
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
vc-id = <0x00>;
port-index = <0x01>;
bus-width = <0x02>;
remote-endpoint = <0x3e>;
phandle = <0x347>;
};
};
};
};
dual_hawk_b@10 {
compatible = "onsemi,ar0234";
reg = <0x10>;
physical_w = "15.0";
physical_h = "12.5";
sensor_model = "ar0234";
sync_sensor = "HAWK1";
sync_sensor_index = <0x02>;
post_crop_frame_drop = [30 00];
use_sensor_mode_id = "true";
def-addr = <0x10>;
clocks = <0x04 0x24 0x04 0x24>;
clock-names = "extperiph1\0pllp_grtba";
mclk = "extperiph1";
channel = [6e 00];
has-eeprom;
reset-gpios = <0x14 0x3b 0x00>;
pwdn-gpios = <0x14 0xa0 0x00>;
pwr-gpios = <0x14 0xa7 0x00>;
status = "disabled";
phandle = <0x348>;
mode0 {
mclk_khz = "24000";
num_lanes = [32 00];
tegra_sinterface = "serial_b";
vc_id = [31 00];
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 = "grbg";
active_w = "1920";
active_h = "1200";
readout_orientation = [30 00];
line_length = "2448";
inherent_gain = [31 00];
mclk_multiplier = "3.01";
pix_clk_hz = "134400000";
serdes_pix_clk_hz = "280000000";
gain_factor = "100";
min_gain_val = "100";
max_gain_val = "1600";
step_gain_val = [31 00];
default_gain = "100";
min_hdr_ratio = [31 00];
max_hdr_ratio = [31 00];
framerate_factor = "1000000";
min_framerate = "30000000";
max_framerate = "30000000";
step_framerate = "30000000";
default_framerate = "30000000";
exposure_factor = "1000000";
min_exp_time = "28";
max_exp_time = "22000";
step_exp_time = [31 00];
default_exp_time = "22000";
embedded_metadata_height = [30 00];
};
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
vc-id = <0x01>;
port-index = <0x01>;
bus-width = <0x02>;
remote-endpoint = <0x3f>;
phandle = <0x349>;
};
};
};
};
single_max96712_a@62 {
compatible = "nvidia,max96712";
reg = <0x62>;
channel = [61 00];
status = "disabled";
phandle = <0x34a>;
};
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 = <0x40>;
vif-supply = <0x3d>;
vdig-supply = <0x41>;
status = "disable";
phandle = <0x34b>;
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 = <0x3e>;
phandle = <0x34c>;
};
};
};
};
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 = <0x34d>;
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 = <0x3e>;
phandle = <0x34e>;
};
};
};
};
pca9570_a@24 {
compatible = "nxp,pca9570";
reg = <0x24>;
channel = [61 00];
drive_ic = "DRV8838";
status = "disabled";
phandle = <0x34f>;
};
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 = <0x42>;
nvidia,gmsl-dser-device = <0x43>;
status = "disabled";
phandle = <0x350>;
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 = <0x3e>;
phandle = <0x351>;
};
};
};
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 = <0x44>;
nvidia,gmsl-dser-device = <0x43>;
status = "disabled";
phandle = <0x352>;
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 = <0x3f>;
phandle = <0x353>;
};
};
};
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 = <0x43>;
};
max9295_prim@62 {
compatible = "maxim,max9295";
reg = <0x62>;
is-prim-ser;
status = "disabled";
phandle = <0x354>;
};
max9295_a@40 {
compatible = "maxim,max9295";
reg = <0x40>;
nvidia,gmsl-dser-device = <0x43>;
status = "disabled";
phandle = <0x42>;
};
max9295_b@60 {
compatible = "maxim,max9295";
reg = <0x60>;
nvidia,gmsl-dser-device = <0x43>;
status = "disabled";
phandle = <0x44>;
};
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 = <0x40>;
vif-supply = <0x3d>;
status = "disabled";
phandle = <0x355>;
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 = <0x3e>;
phandle = <0x2a8>;
};
};
};
};
};
i2c@1 {
reg = <0x01>;
i2c-mux,deselect-on-exit;
#address-cells = <0x01>;
#size-cells = <0x00>;
dual_hawk_c@18 {
compatible = "onsemi,ar0234";
reg = <0x18>;
physical_w = "15.0";
physical_h = "12.5";
sensor_model = "ar0234";
sync_sensor = "HAWK2";
sync_sensor_index = <0x01>;
post_crop_frame_drop = [30 00];
use_sensor_mode_id = "true";
def-addr = <0x18>;
clocks = <0x04 0x24 0x04 0x24>;
clock-names = "extperiph1\0pllp_grtba";
mclk = "extperiph1";
channel = [6e 00];
has-eeprom;
reset-gpios = <0x14 0x3b 0x00>;
pwdn-gpios = <0x14 0xa0 0x00>;
pwr-gpios = <0x14 0xa7 0x00>;
status = "disabled";
phandle = <0x356>;
mode0 {
mclk_khz = "24000";
num_lanes = [32 00];
tegra_sinterface = "serial_b";
vc_id = [32 00];
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 = "grbg";
active_w = "1920";
active_h = "1200";
readout_orientation = [30 00];
line_length = "2448";
inherent_gain = [31 00];
mclk_multiplier = "3.01";
pix_clk_hz = "134400000";
serdes_pix_clk_hz = "280000000";
gain_factor = "100";
min_gain_val = "100";
max_gain_val = "1600";
step_gain_val = [31 00];
default_gain = "100";
min_hdr_ratio = [31 00];
max_hdr_ratio = [31 00];
framerate_factor = "1000000";
min_framerate = "30000000";
max_framerate = "30000000";
step_framerate = "30000000";
default_framerate = "30000000";
exposure_factor = "1000000";
min_exp_time = "28";
max_exp_time = "22000";
step_exp_time = [31 00];
default_exp_time = "22000";
embedded_metadata_height = [30 00];
};
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
vc-id = <0x02>;
port-index = <0x01>;
bus-width = <0x02>;
remote-endpoint = <0x45>;
phandle = <0x357>;
};
};
};
};
dual_hawk_d@10 {
compatible = "onsemi,ar0234";
reg = <0x10>;
physical_w = "15.0";
physical_h = "12.5";
sensor_model = "ar0234";
sync_sensor = "HAWK2";
sync_sensor_index = <0x02>;
post_crop_frame_drop = [30 00];
use_sensor_mode_id = "true";
ef-addr = <0x10>;
clocks = <0x04 0x24 0x04 0x24>;
clock-names = "extperiph1\0pllp_grtba";
mclk = "extperiph1";
channel = [6e 00];
has-eeprom;
reset-gpios = <0x14 0x3b 0x00>;
pwdn-gpios = <0x14 0xa0 0x00>;
pwr-gpios = <0x14 0xa7 0x00>;
status = "disabled";
phandle = <0x358>;
mode0 {
mclk_khz = "24000";
num_lanes = [32 00];
tegra_sinterface = "serial_b";
vc_id = [33 00];
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 = "grbg";
active_w = "1920";
active_h = "1200";
readout_orientation = [30 00];
line_length = "2448";
inherent_gain = [31 00];
mclk_multiplier = "3.01";
pix_clk_hz = "134400000";
serdes_pix_clk_hz = "280000000";
gain_factor = "100";
min_gain_val = "100";
max_gain_val = "1600";
step_gain_val = [31 00];
default_gain = "100";
min_hdr_ratio = [31 00];
max_hdr_ratio = [31 00];
framerate_factor = "1000000";
min_framerate = "30000000";
max_framerate = "30000000";
step_framerate = "30000000";
default_framerate = "30000000";
exposure_factor = "1000000";
min_exp_time = "28";
max_exp_time = "22000";
step_exp_time = [31 00];
default_exp_time = "22000";
embedded_metadata_height = [30 00];
};
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
vc-id = <0x03>;
port-index = <0x01>;
bus-width = <0x02>;
remote-endpoint = <0x46>;
phandle = <0x359>;
};
};
};
};
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 = <0x40>;
vif-supply = <0x3d>;
status = "disabled";
phandle = <0x35a>;
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 = <0x3f>;
phandle = <0x2aa>;
};
};
};
};
};
};
ar0234_e@30 {
compatible = "nvidia,ar0234_hawk_owl";
reg = <0x30>;
physical_w = "15.0";
physical_h = "12.5";
sensor_model = "ar0234";
sync_sensor = "OWL1";
sync_sensor_index = <0x01>;
post_crop_frame_drop = [30 00];
use_sensor_mode_id = "true";
def-addr = <0x18>;
clocks = <0x04 0x24 0x04 0x24>;
clock-names = "extperiph1\0pllp_grtba";
mclk = "extperiph1";
channel = [62 00];
has-eeprom;
eeprom-addr = <0x30>;
reset-gpios = <0x14 0xa1 0x00>;
pwdn-gpios = <0x14 0xa0 0x00>;
pwr-gpios = <0x14 0xa7 0x00>;
status = "disabled";
phandle = <0x35b>;
mode0 {
mclk_khz = "24000";
num_lanes = [32 00];
tegra_sinterface = "serial_e";
vc_id = [30 00];
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 = "grbg";
active_w = "1920";
active_h = "1200";
readout_orientation = [30 00];
line_length = "2448";
inherent_gain = [31 00];
mclk_multiplier = "3.01";
pix_clk_hz = "134400000";
serdes_pix_clk_hz = "299000000";
gain_factor = "100";
min_gain_val = "100";
max_gain_val = "1600";
step_gain_val = [31 00];
default_gain = "100";
min_hdr_ratio = [31 00];
max_hdr_ratio = [31 00];
framerate_factor = "1000000";
min_framerate = "30000000";
max_framerate = "30000000";
step_framerate = "30000000";
default_framerate = "30000000";
exposure_factor = "1000000";
min_exp_time = "28";
max_exp_time = "22000";
step_exp_time = [31 00];
default_exp_time = "22000";
embedded_metadata_height = [30 00];
};
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
vc-id = <0x00>;
port-index = <0x04>;
bus-width = <0x02>;
remote-endpoint = <0x47>;
phandle = <0x35c>;
};
};
};
};
ar0234_f@32 {
compatible = "nvidia,ar0234_hawk_owl";
reg = <0x32>;
physical_w = "15.0";
physical_h = "12.5";
sensor_model = "ar0234";
sync_sensor = "OWL2";
sync_sensor_index = <0x01>;
post_crop_frame_drop = [30 00];
use_sensor_mode_id = "true";
def-addr = <0x18>;
clocks = <0x04 0x24 0x04 0x24>;
clock-names = "extperiph1\0pllp_grtba";
mclk = "extperiph1";
channel = [62 00];
has-eeprom;
eeprom-addr = <0x31>;
reset-gpios = <0x14 0xa1 0x00>;
pwdn-gpios = <0x14 0xa0 0x00>;
pwr-gpios = <0x14 0xa7 0x00>;
status = "disabled";
phandle = <0x35d>;
mode0 {
mclk_khz = "24000";
num_lanes = [32 00];
tegra_sinterface = "serial_e";
vc_id = [31 00];
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 = "grbg";
active_w = "1920";
active_h = "1200";
readout_orientation = [30 00];
line_length = "2448";
inherent_gain = [31 00];
mclk_multiplier = "3.01";
pix_clk_hz = "134400000";
serdes_pix_clk_hz = "299000000";
gain_factor = "100";
min_gain_val = "100";
max_gain_val = "1600";
step_gain_val = [31 00];
default_gain = "100";
min_hdr_ratio = [31 00];
max_hdr_ratio = [31 00];
framerate_factor = "1000000";
min_framerate = "30000000";
max_framerate = "30000000";
step_framerate = "30000000";
default_framerate = "30000000";
exposure_factor = "1000000";
min_exp_time = "28";
max_exp_time = "22000";
step_exp_time = [31 00];
default_exp_time = "22000";
embedded_metadata_height = [30 00];
};
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
vc-id = <0x01>;
port-index = <0x04>;
bus-width = <0x02>;
remote-endpoint = <0x48>;
phandle = <0x35e>;
};
};
};
};
ar0234_g@34 {
compatible = "nvidia,ar0234_hawk_owl";
reg = <0x34>;
physical_w = "15.0";
physical_h = "12.5";
sensor_model = "ar0234";
sync_sensor = "OWL3";
sync_sensor_index = <0x01>;
post_crop_frame_drop = [30 00];
use_sensor_mode_id = "true";
def-addr = <0x18>;
clocks = <0x04 0x24 0x04 0x24>;
clock-names = "extperiph1\0pllp_grtba";
mclk = "extperiph1";
channel = [62 00];
has-eeprom;
eeprom-addr = <0x32>;
reset-gpios = <0x14 0xa1 0x00>;
pwdn-gpios = <0x14 0xa0 0x00>;
pwr-gpios = <0x14 0xa7 0x00>;
status = "disabled";
phandle = <0x35f>;
mode0 {
mclk_khz = "24000";
num_lanes = [32 00];
tegra_sinterface = "serial_e";
vc_id = [32 00];
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 = "grbg";
active_w = "1920";
active_h = "1200";
readout_orientation = [30 00];
line_length = "2448";
inherent_gain = [31 00];
mclk_multiplier = "3.01";
pix_clk_hz = "134400000";
serdes_pix_clk_hz = "299000000";
gain_factor = "100";
min_gain_val = "100";
max_gain_val = "1600";
step_gain_val = [31 00];
default_gain = "100";
min_hdr_ratio = [31 00];
max_hdr_ratio = [31 00];
framerate_factor = "1000000";
min_framerate = "30000000";
max_framerate = "30000000";
step_framerate = "30000000";
default_framerate = "30000000";
exposure_factor = "1000000";
min_exp_time = "28";
max_exp_time = "22000";
step_exp_time = [31 00];
default_exp_time = "22000";
embedded_metadata_height = [30 00];
};
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
vc-id = <0x02>;
port-index = <0x04>;
bus-width = <0x02>;
remote-endpoint = <0x49>;
phandle = <0x2b4>;
};
};
};
};
ar0234_h@36 {
compatible = "nvidia,ar0234_hawk_owl";
reg = <0x36>;
physical_w = "15.0";
physical_h = "12.5";
sensor_model = "ar0234";
sync_sensor = "OWL4";
sync_sensor_index = <0x01>;
post_crop_frame_drop = [30 00];
use_sensor_mode_id = "true";
def-addr = <0x18>;
clocks = <0x04 0x24 0x04 0x24>;
clock-names = "extperiph1\0pllp_grtba";
mclk = "extperiph1";
channel = [62 00];
has-eeprom;
eeprom-addr = <0x33>;
reset-gpios = <0x14 0xa1 0x00>;
pwdn-gpios = <0x14 0xa0 0x00>;
pwr-gpios = <0x14 0xa7 0x00>;
status = "disabled";
phandle = <0x360>;
mode0 {
mclk_khz = "24000";
num_lanes = [32 00];
tegra_sinterface = "serial_e";
vc_id = [33 00];
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 = "grbg";
active_w = "1920";
active_h = "1200";
readout_orientation = [30 00];
line_length = "2448";
inherent_gain = [31 00];
mclk_multiplier = "3.01";
pix_clk_hz = "134400000";
serdes_pix_clk_hz = "299000000";
gain_factor = "100";
min_gain_val = "100";
max_gain_val = "1600";
step_gain_val = [31 00];
default_gain = "100";
min_hdr_ratio = [31 00];
max_hdr_ratio = [31 00];
framerate_factor = "1000000";
min_framerate = "30000000";
max_framerate = "30000000";
step_framerate = "30000000";
default_framerate = "30000000";
exposure_factor = "1000000";
min_exp_time = "28";
max_exp_time = "22000";
step_exp_time = [31 00];
default_exp_time = "22000";
embedded_metadata_height = [30 00];
};
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
vc-id = <0x03>;
port-index = <0x04>;
bus-width = <0x02>;
remote-endpoint = <0x4a>;
phandle = <0x2b6>;
};
};
};
};
max96712_b@62 {
compatible = "nvidia,max96712";
reg = <0x62>;
channel = [62 00];
status = "disabled";
phandle = <0x361>;
};
tca9548@77 {
compatible = "nxp,pca9548";
reg = <0x77>;
#address-cells = <0x01>;
#size-cells = <0x00>;
vcc-supply = <0x3d>;
skip_mux_detect;
force_bus_start = <0x1e>;
status = "disabled";
phandle = <0x362>;
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 = <0x40>;
vif-supply = <0x3d>;
status = "disabled";
phandle = <0x363>;
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 = <0x3e>;
phandle = <0x364>;
};
};
};
};
};
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 = <0x40>;
vif-supply = <0x3d>;
status = "disabled";
phandle = <0x365>;
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 = <0x3f>;
phandle = <0x366>;
};
};
};
};
};
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 = <0x4b 0x00 0x00>;
reset-gpios = <0x4b 0x01 0x00>;
vana-supply = <0x40>;
vif-supply = <0x3d>;
status = "disabled";
phandle = <0x367>;
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 = <0x45>;
phandle = <0x2ac>;
};
};
};
};
};
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 = <0x4b 0x02 0x00>;
reset-gpios = <0x4b 0x03 0x00>;
vana-supply = <0x40>;
vif-supply = <0x3d>;
status = "disabled";
phandle = <0x368>;
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 = <0x46>;
phandle = <0x2ae>;
};
};
};
};
};
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 = <0x4b 0x04 0x00>;
reset-gpios = <0x4b 0x05 0x00>;
vana-supply = <0x40>;
vif-supply = <0x3d>;
status = "disabled";
phandle = <0x369>;
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 = <0x47>;
phandle = <0x2b0>;
};
};
};
};
};
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 = <0x4b 0x06 0x00>;
reset-gpios = <0x4b 0x07 0x00>;
vana-supply = <0x40>;
vif-supply = <0x3d>;
status = "disabled";
phandle = <0x36a>;
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 = <0x48>;
phandle = <0x2b2>;
};
};
};
};
};
};
tca6408@21 {
compatible = "ti,tca6408";
gpio-controller;
#gpio-cells = <0x02>;
reg = <0x21>;
vcc-supply = <0x3d>;
status = "disabled";
phandle = <0x4b>;
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 = <0x36b>;
};
e2832@2b {
status = "disabled";
phandle = <0x36c>;
};
};
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";
nvidia,epl-reporter-id = <0x8053>;
phandle = <0x36d>;
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>;
board {
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";
nvidia,epl-reporter-id = <0x8054>;
nvidia,reinit-ctrl-before-xfer;
phandle = <0x36e>;
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";
nvidia,epl-reporter-id = <0x8056>;
phandle = <0x36f>;
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>;
board {
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 = <0x3a 0x19 0x00>;
sda-gpio = <0x3a 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";
nvidia,epl-reporter-id = <0x8057>;
phandle = <0x370>;
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>;
board {
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 = <0x2d>;
status = "disabled";
vcc-supply = <0x4c>;
phandle = <0x2f3>;
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 = <0x2d>;
avdd-supply = <0x4d>;
tas2552,pdm_edge_select = <0x00>;
#sound-dai-cells = <0x01>;
iovdd-supply = <0x4c>;
phandle = <0x2fb>;
};
tas2552.9-0041@41 {
compatible = "ti,tas2552";
reg = <0x41>;
vbat-supply = <0x2d>;
avdd-supply = <0x4d>;
tas2552,pdm_edge_select = <0x01>;
#sound-dai-cells = <0x01>;
iovdd-supply = <0x4c>;
phandle = <0x2fc>;
};
};
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>;
sound-name-prefix = "H40-RT";
interrupt-parent = <0x14>;
interrupts = <0x80 0x00>;
phandle = <0x2fe>;
port {
endpoint {
remote-endpoint = <0x4e>;
mclk-fs = <0x100>;
link-name = "rt565x-codec-sysclk-bclk1";
phandle = <0x371>;
};
};
};
};
};
gpio@20 {
compatible = "ti,tca6416";
reg = <0x20>;
gpio-controller;
#gpio-cells = <0x02>;
vcc-supply = <0x2d>;
status = "disabled";
phandle = <0x2ef>;
};
icm20628@68 {
compatible = "invensense,mpu6xxx";
reg = <0x68>;
interrupt-parent = <0x3a>;
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 = <0x2f4>;
};
ak8963@0d {
compatible = "ak,ak89xx";
reg = <0x0d>;
magnetic_field_matrix = [01 00 00 00 01 00 00 00 01];
status = "disabled";
phandle = <0x2f5>;
};
bmp280@77 {
compatible = "bmp,bmpX80";
reg = <0x77>;
status = "disabled";
phandle = <0x2f6>;
};
cm32180@48 {
compatible = "capella,cm32180";
reg = <0x48>;
gpio_irq = <0x3a 0x01 0x01>;
light_uncalibrated_lo = <0x01>;
light_calibrated_lo = <0x96>;
light_uncalibrated_hi = <0x17318>;
light_calibrated_hi = <0x1ab3f0>;
status = "disabled";
phandle = <0x2f7>;
};
iqs263@44 {
status = "disabled";
phandle = <0x372>;
};
rt5659.1-001a@1a {
compatible = "realtek,rt5658";
reg = <0x1a>;
status = "disabled";
realtek,jd-src = <0x01>;
realtek,dmic1-data-pin = <0x02>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "H40-RT";
interrupt-parent = <0x14>;
interrupts = <0x80 0x00>;
phandle = <0x2f9>;
port {
endpoint {
remote-endpoint = <0x4e>;
mclk-fs = <0x100>;
link-name = "rt565x-codec-sysclk-bclk1";
phandle = <0x373>;
};
};
};
};
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";
nvidia,epl-reporter-id = <0x8058>;
phandle = <0x374>;
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>;
board {
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>;
};
};
rt5640.8-001c@1c {
compatible = "realtek,rt5640";
reg = <0x1c>;
clocks = <0x04 0x07>;
clock-names = "mclk";
realtek,dmic1-data-pin = <0x00>;
realtek,dmic2-data-pin = <0x00>;
realtek,jack-detect-source = <0x07>;
interrupt-parent = <0x14>;
interrupts = <0xa5 0x00>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "CVB-RT";
status = "okay";
phandle = <0x5e>;
};
ar0234_a@30 {
compatible = "nvidia,ar0234_hawk_owl";
reg = <0x30>;
physical_w = "15.0";
physical_h = "12.5";
sensor_model = "ar0234";
sync_sensor = "HAWK1";
sync_sensor_index = <0x01>;
post_crop_frame_drop = [30 00];
use_sensor_mode_id = "true";
def-addr = <0x10>;
clocks = <0x04 0x24 0x04 0x24>;
clock-names = "extperiph1\0pllp_grtba";
mclk = "extperiph1";
channel = [61 00];
has-eeprom;
eeprom-addr = <0x30>;
reset-gpios = <0x14 0x3b 0x00>;
pwdn-gpios = <0x14 0x3e 0x00>;
pwr-gpios = <0x14 0xa7 0x00>;
status = "disabled";
phandle = <0x375>;
mode0 {
mclk_khz = "24000";
num_lanes = [32 00];
tegra_sinterface = "serial_a";
phy_mode = "DPHY";
vc_id = [30 00];
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 = "grbg";
active_w = "1920";
active_h = "1200";
readout_orientation = [30 00];
line_length = "2448";
inherent_gain = [31 00];
mclk_multiplier = "3.01";
pix_clk_hz = "134400000";
serdes_pix_clk_hz = "299000000";
gain_factor = "100";
min_gain_val = "100";
max_gain_val = "1600";
step_gain_val = [31 00];
default_gain = "100";
min_hdr_ratio = [31 00];
max_hdr_ratio = [31 00];
framerate_factor = "1000000";
min_framerate = "30000000";
max_framerate = "30000000";
step_framerate = "30000000";
default_framerate = "30000000";
exposure_factor = "1000000";
min_exp_time = "28";
max_exp_time = "22000";
step_exp_time = [31 00];
default_exp_time = "22000";
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 = <0x3e>;
phandle = <0x376>;
};
};
};
};
ar0234_b@31 {
compatible = "nvidia,ar0234_hawk_owl";
reg = <0x31>;
physical_w = "15.0";
physical_h = "12.5";
sensor_model = "ar0234";
sync_sensor = "HAWK1";
sync_sensor_index = <0x02>;
post_crop_frame_drop = [30 00];
use_sensor_mode_id = "true";
def-addr = <0x18>;
clocks = <0x04 0x24 0x04 0x24>;
clock-names = "extperiph1\0pllp_grtba";
mclk = "extperiph1";
channel = [63 00];
has-eeprom;
eeprom-addr = <0x32>;
reset-gpios = <0x14 0x3b 0x00>;
pwdn-gpios = <0x14 0x3e 0x00>;
pwr-gpios = <0x14 0xa7 0x00>;
status = "disabled";
phandle = <0x377>;
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 = "10";
csi_pixel_bit_depth = "10";
mode_type = "bayer";
pixel_phase = "grbg";
active_w = "1920";
active_h = "1200";
readout_orientation = [30 00];
line_length = "2448";
inherent_gain = [31 00];
mclk_multiplier = "3.01";
pix_clk_hz = "134400000";
serdes_pix_clk_hz = "299000000";
gain_factor = "100";
min_gain_val = "100";
max_gain_val = "1600";
step_gain_val = [31 00];
default_gain = "100";
min_hdr_ratio = [31 00];
max_hdr_ratio = [31 00];
framerate_factor = "1000000";
min_framerate = "30000000";
max_framerate = "30000000";
step_framerate = "30000000";
default_framerate = "30000000";
exposure_factor = "1000000";
min_exp_time = "28";
max_exp_time = "22000";
step_exp_time = [31 00];
default_exp_time = "22000";
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 = <0x3f>;
phandle = <0x378>;
};
};
};
};
ar0234_c@32 {
compatible = "nvidia,ar0234_hawk_owl";
reg = <0x32>;
physical_w = "15.0";
physical_h = "12.5";
sensor_model = "ar0234";
sync_sensor = "HAWK2";
sync_sensor_index = <0x01>;
post_crop_frame_drop = [30 00];
use_sensor_mode_id = "true";
def-addr = <0x10>;
clocks = <0x04 0x24 0x04 0x24>;
clock-names = "extperiph1\0pllp_grtba";
mclk = "extperiph1";
channel = [61 00];
has-eeprom;
eeprom-addr = <0x34>;
reset-gpios = <0x14 0x3b 0x00>;
pwdn-gpios = <0x14 0x3e 0x00>;
pwr-gpios = <0x14 0xa7 0x00>;
status = "disabled";
phandle = <0x379>;
mode0 {
mclk_khz = "24000";
num_lanes = [32 00];
tegra_sinterface = "serial_b";
vc_id = [30 00];
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 = "grbg";
active_w = "1920";
active_h = "1200";
readout_orientation = [30 00];
line_length = "2448";
inherent_gain = [31 00];
mclk_multiplier = "3.01";
pix_clk_hz = "134400000";
serdes_pix_clk_hz = "299000000";
gain_factor = "100";
min_gain_val = "100";
max_gain_val = "1600";
step_gain_val = [31 00];
default_gain = "100";
min_hdr_ratio = [31 00];
max_hdr_ratio = [31 00];
framerate_factor = "1000000";
min_framerate = "30000000";
max_framerate = "30000000";
step_framerate = "30000000";
default_framerate = "30000000";
exposure_factor = "1000000";
min_exp_time = "28";
max_exp_time = "22000";
step_exp_time = [31 00];
default_exp_time = "22000";
embedded_metadata_height = [30 00];
};
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
vc-id = <0x00>;
port-index = <0x01>;
bus-width = <0x02>;
remote-endpoint = <0x45>;
phandle = <0x37a>;
};
};
};
};
ar0234_d@33 {
compatible = "nvidia,ar0234_hawk_owl";
reg = <0x33>;
physical_w = "15.0";
physical_h = "12.5";
sensor_model = "ar0234";
sync_sensor = "HAWK2";
sync_sensor_index = <0x02>;
post_crop_frame_drop = [30 00];
use_sensor_mode_id = "true";
def-addr = <0x18>;
clocks = <0x04 0x24 0x04 0x24>;
clock-names = "extperiph1\0pllp_grtba";
mclk = "extperiph1";
channel = [63 00];
has-eeprom;
eeprom-addr = <0x36>;
reset-gpios = <0x14 0x3b 0x00>;
pwdn-gpios = <0x14 0x3e 0x00>;
pwr-gpios = <0x14 0xa7 0x00>;
status = "disabled";
phandle = <0x37b>;
mode0 {
mclk_khz = "24000";
num_lanes = [32 00];
tegra_sinterface = "serial_b";
vc_id = [31 00];
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 = "grbg";
active_w = "1920";
active_h = "1200";
readout_orientation = [30 00];
line_length = "2448";
inherent_gain = [31 00];
mclk_multiplier = "3.01";
pix_clk_hz = "134400000";
serdes_pix_clk_hz = "299000000";
gain_factor = "100";
min_gain_val = "100";
max_gain_val = "1600";
step_gain_val = [31 00];
default_gain = "100";
min_hdr_ratio = [31 00];
max_hdr_ratio = [31 00];
framerate_factor = "1000000";
min_framerate = "30000000";
max_framerate = "30000000";
step_framerate = "30000000";
default_framerate = "30000000";
exposure_factor = "1000000";
min_exp_time = "28";
max_exp_time = "22000";
step_exp_time = [31 00];
default_exp_time = "22000";
embedded_metadata_height = [30 00];
};
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
vc-id = <0x01>;
port-index = <0x01>;
bus-width = <0x02>;
remote-endpoint = <0x46>;
phandle = <0x37c>;
};
};
};
};
max96712_a@62 {
compatible = "nvidia,max96712";
reg = <0x62>;
channel = [61 00];
status = "disabled";
phandle = <0x37d>;
};
};
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 = <0x37e>;
prod-settings {
#prod-cells = <0x04>;
prod_c_can_2m_1m {
board {
prod = <0x00 0x48 0x7f00 0x00>;
};
};
prod_c_can_5m {
board {
prod = <0x00 0x48 0x7f00 0x600>;
};
};
prod_c_can_8m {
board {
prod = <0x00 0x48 0x7f00 0x400>;
};
};
};
};
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 = <0x37f>;
prod-settings {
#prod-cells = <0x04>;
prod_c_can_2m_1m {
board {
prod = <0x01 0xf048 0x7f00 0x00>;
};
};
prod_c_can_5m {
board {
prod = <0x01 0xf048 0x7f00 0x600>;
};
};
prod_c_can_8m {
board {
prod = <0x01 0xf048 0x7f00 0x400>;
};
};
};
};
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>;
nvidia-audio-card,widgets = "Headphone\0CVB-RT Headphone Jack\0Microphone\0CVB-RT Mic Jack\0Speaker\0CVB-RT Int Spk\0Microphone\0CVB-RT Int Mic";
nvidia-audio-card,routing = "CVB-RT Headphone Jack\0CVB-RT HPOL\0CVB-RT Headphone Jack\0CVB-RT HPOR\0CVB-RT IN1P\0CVB-RT Mic Jack\0CVB-RT IN2P\0CVB-RT Mic Jack\0CVB-RT Int Spk\0CVB-RT SPOLP\0CVB-RT Int Spk\0CVB-RT SPORP\0CVB-RT DMIC1\0CVB-RT Int Mic\0CVB-RT DMIC2\0CVB-RT Int Mic";
nvidia-audio-card,mclk-fs = <0x100>;
phandle = <0x2fd>;
nvidia-audio-card,dai-link@0 {
status = "okay";
phandle = <0x380>;
cpu {
sound-dai = <0x4f 0x00>;
};
codec {
sound-dai = <0x50 0x00>;
};
};
nvidia-audio-card,dai-link@1 {
status = "okay";
phandle = <0x381>;
cpu {
sound-dai = <0x4f 0x01>;
};
codec {
sound-dai = <0x50 0x01>;
};
};
nvidia-audio-card,dai-link@2 {
status = "okay";
phandle = <0x382>;
cpu {
sound-dai = <0x4f 0x02>;
};
codec {
sound-dai = <0x50 0x02>;
};
};
nvidia-audio-card,dai-link@3 {
status = "okay";
phandle = <0x383>;
cpu {
sound-dai = <0x4f 0x03>;
};
codec {
sound-dai = <0x50 0x03>;
};
};
nvidia-audio-card,dai-link@4 {
status = "okay";
phandle = <0x384>;
cpu {
sound-dai = <0x4f 0x04>;
};
codec {
sound-dai = <0x50 0x04>;
};
};
nvidia-audio-card,dai-link@5 {
status = "okay";
phandle = <0x385>;
cpu {
sound-dai = <0x4f 0x05>;
};
codec {
sound-dai = <0x50 0x05>;
};
};
nvidia-audio-card,dai-link@6 {
status = "okay";
phandle = <0x386>;
cpu {
sound-dai = <0x4f 0x06>;
};
codec {
sound-dai = <0x50 0x06>;
};
};
nvidia-audio-card,dai-link@7 {
status = "okay";
phandle = <0x387>;
cpu {
sound-dai = <0x4f 0x07>;
};
codec {
sound-dai = <0x50 0x07>;
};
};
nvidia-audio-card,dai-link@8 {
status = "okay";
phandle = <0x388>;
cpu {
sound-dai = <0x4f 0x08>;
};
codec {
sound-dai = <0x50 0x08>;
};
};
nvidia-audio-card,dai-link@9 {
status = "okay";
phandle = <0x389>;
cpu {
sound-dai = <0x4f 0x09>;
};
codec {
sound-dai = <0x50 0x09>;
};
};
nvidia-audio-card,dai-link@10 {
status = "okay";
phandle = <0x38a>;
cpu {
sound-dai = <0x4f 0x0a>;
};
codec {
sound-dai = <0x50 0x0a>;
};
};
nvidia-audio-card,dai-link@11 {
status = "okay";
phandle = <0x38b>;
cpu {
sound-dai = <0x4f 0x0b>;
};
codec {
sound-dai = <0x50 0x0b>;
};
};
nvidia-audio-card,dai-link@12 {
status = "okay";
phandle = <0x38c>;
cpu {
sound-dai = <0x4f 0x0c>;
};
codec {
sound-dai = <0x50 0x0c>;
};
};
nvidia-audio-card,dai-link@13 {
status = "okay";
phandle = <0x38d>;
cpu {
sound-dai = <0x4f 0x0d>;
};
codec {
sound-dai = <0x50 0x0d>;
};
};
nvidia-audio-card,dai-link@14 {
status = "okay";
phandle = <0x38e>;
cpu {
sound-dai = <0x4f 0x0e>;
};
codec {
sound-dai = <0x50 0x0e>;
};
};
nvidia-audio-card,dai-link@15 {
status = "okay";
phandle = <0x38f>;
cpu {
sound-dai = <0x4f 0x0f>;
};
codec {
sound-dai = <0x50 0x0f>;
};
};
nvidia-audio-card,dai-link@16 {
status = "okay";
phandle = <0x390>;
cpu {
sound-dai = <0x4f 0x10>;
};
codec {
sound-dai = <0x50 0x10>;
};
};
nvidia-audio-card,dai-link@17 {
status = "okay";
phandle = <0x391>;
cpu {
sound-dai = <0x4f 0x11>;
};
codec {
sound-dai = <0x50 0x11>;
};
};
nvidia-audio-card,dai-link@18 {
status = "okay";
phandle = <0x392>;
cpu {
sound-dai = <0x4f 0x12>;
};
codec {
sound-dai = <0x50 0x12>;
};
};
nvidia-audio-card,dai-link@19 {
status = "okay";
phandle = <0x393>;
cpu {
sound-dai = <0x4f 0x13>;
};
codec {
sound-dai = <0x50 0x13>;
};
};
nvidia-audio-card,dai-link@20 {
status = "okay";
phandle = <0x394>;
cpu {
sound-dai = <0x51 0x24>;
};
codec {
sound-dai = <0x51 0x00>;
};
};
nvidia-audio-card,dai-link@21 {
status = "okay";
phandle = <0x395>;
cpu {
sound-dai = <0x51 0x25>;
};
codec {
sound-dai = <0x51 0x01>;
};
};
nvidia-audio-card,dai-link@22 {
status = "okay";
link-type = <0x01>;
phandle = <0x396>;
cpu {
sound-dai = <0x51 0x33>;
};
codec {
sound-dai = <0x51 0x02>;
};
};
nvidia-audio-card,dai-link@23 {
status = "okay";
link-type = <0x01>;
phandle = <0x397>;
cpu {
sound-dai = <0x51 0x34>;
};
codec {
sound-dai = <0x51 0x03>;
};
};
nvidia-audio-card,dai-link@24 {
status = "okay";
link-type = <0x02>;
phandle = <0x398>;
cpu {
sound-dai = <0x51 0x10>;
};
codec {
sound-dai = <0x4f 0x14>;
};
};
nvidia-audio-card,dai-link@25 {
status = "okay";
link-type = <0x02>;
phandle = <0x399>;
cpu {
sound-dai = <0x51 0x11>;
};
codec {
sound-dai = <0x4f 0x15>;
};
};
nvidia-audio-card,dai-link@26 {
status = "okay";
link-type = <0x02>;
phandle = <0x39a>;
cpu {
sound-dai = <0x51 0x12>;
};
codec {
sound-dai = <0x4f 0x16>;
};
};
nvidia-audio-card,dai-link@27 {
status = "okay";
link-type = <0x02>;
phandle = <0x39b>;
cpu {
sound-dai = <0x51 0x13>;
};
codec {
sound-dai = <0x4f 0x17>;
};
};
nvidia-audio-card,dai-link@28 {
status = "okay";
link-type = <0x02>;
phandle = <0x39c>;
cpu {
sound-dai = <0x51 0x14>;
};
codec {
sound-dai = <0x4f 0x18>;
};
};
nvidia-audio-card,dai-link@29 {
status = "okay";
link-type = <0x02>;
phandle = <0x39d>;
cpu {
sound-dai = <0x51 0x15>;
};
codec {
sound-dai = <0x4f 0x19>;
};
};
nvidia-audio-card,dai-link@30 {
status = "okay";
link-type = <0x02>;
phandle = <0x39e>;
cpu {
sound-dai = <0x51 0x16>;
};
codec {
sound-dai = <0x4f 0x1a>;
};
};
nvidia-audio-card,dai-link@31 {
status = "okay";
link-type = <0x02>;
phandle = <0x39f>;
cpu {
sound-dai = <0x51 0x17>;
};
codec {
sound-dai = <0x4f 0x1b>;
};
};
nvidia-audio-card,dai-link@32 {
status = "okay";
link-type = <0x02>;
phandle = <0x3a0>;
cpu {
sound-dai = <0x51 0x18>;
};
codec {
sound-dai = <0x4f 0x1c>;
};
};
nvidia-audio-card,dai-link@33 {
status = "okay";
link-type = <0x02>;
phandle = <0x3a1>;
cpu {
sound-dai = <0x51 0x19>;
};
codec {
sound-dai = <0x4f 0x1d>;
};
};
nvidia-audio-card,dai-link@34 {
status = "okay";
link-type = <0x02>;
phandle = <0x3a2>;
cpu {
sound-dai = <0x51 0x1a>;
};
codec {
sound-dai = <0x4f 0x1e>;
};
};
nvidia-audio-card,dai-link@35 {
status = "okay";
link-type = <0x02>;
phandle = <0x3a3>;
cpu {
sound-dai = <0x51 0x1b>;
};
codec {
sound-dai = <0x4f 0x1f>;
};
};
nvidia-audio-card,dai-link@36 {
status = "okay";
link-type = <0x02>;
phandle = <0x3a4>;
cpu {
sound-dai = <0x51 0x1c>;
};
codec {
sound-dai = <0x4f 0x20>;
};
};
nvidia-audio-card,dai-link@37 {
status = "okay";
link-type = <0x02>;
phandle = <0x3a5>;
cpu {
sound-dai = <0x51 0x1d>;
};
codec {
sound-dai = <0x4f 0x21>;
};
};
nvidia-audio-card,dai-link@38 {
status = "okay";
link-type = <0x02>;
phandle = <0x3a6>;
cpu {
sound-dai = <0x51 0x1e>;
};
codec {
sound-dai = <0x4f 0x22>;
};
};
nvidia-audio-card,dai-link@39 {
status = "okay";
link-type = <0x02>;
phandle = <0x3a7>;
cpu {
sound-dai = <0x51 0x1f>;
};
codec {
sound-dai = <0x4f 0x23>;
};
};
nvidia-audio-card,dai-link@40 {
status = "okay";
link-type = <0x02>;
phandle = <0x3a8>;
cpu {
sound-dai = <0x51 0x20>;
};
codec {
sound-dai = <0x4f 0x24>;
};
};
nvidia-audio-card,dai-link@41 {
status = "okay";
link-type = <0x02>;
phandle = <0x3a9>;
cpu {
sound-dai = <0x51 0x21>;
};
codec {
sound-dai = <0x4f 0x25>;
};
};
nvidia-audio-card,dai-link@42 {
status = "okay";
link-type = <0x02>;
phandle = <0x3aa>;
cpu {
sound-dai = <0x51 0x22>;
};
codec {
sound-dai = <0x4f 0x26>;
};
};
nvidia-audio-card,dai-link@43 {
status = "okay";
link-type = <0x02>;
phandle = <0x3ab>;
cpu {
sound-dai = <0x51 0x23>;
};
codec {
sound-dai = <0x4f 0x27>;
};
};
nvidia-audio-card,dai-link@44 {
status = "okay";
link-type = <0x02>;
phandle = <0x3ac>;
cpu {
sound-dai = <0x4f 0x28>;
};
codec {
sound-dai = <0x50 0x00>;
};
};
nvidia-audio-card,dai-link@45 {
status = "okay";
link-type = <0x02>;
phandle = <0x3ad>;
cpu {
sound-dai = <0x4f 0x29>;
};
codec {
sound-dai = <0x50 0x01>;
};
};
nvidia-audio-card,dai-link@46 {
status = "okay";
link-type = <0x02>;
phandle = <0x3ae>;
cpu {
sound-dai = <0x4f 0x2a>;
};
codec {
sound-dai = <0x50 0x02>;
};
};
nvidia-audio-card,dai-link@47 {
status = "okay";
link-type = <0x02>;
phandle = <0x3af>;
cpu {
sound-dai = <0x4f 0x2b>;
};
codec {
sound-dai = <0x50 0x03>;
};
};
nvidia-audio-card,dai-link@48 {
status = "okay";
link-type = <0x02>;
phandle = <0x3b0>;
cpu {
sound-dai = <0x4f 0x2c>;
};
codec {
sound-dai = <0x50 0x04>;
};
};
nvidia-audio-card,dai-link@49 {
status = "okay";
link-type = <0x02>;
phandle = <0x3b1>;
cpu {
sound-dai = <0x4f 0x2d>;
};
codec {
sound-dai = <0x50 0x05>;
};
};
nvidia-audio-card,dai-link@50 {
status = "okay";
link-type = <0x02>;
phandle = <0x3b2>;
cpu {
sound-dai = <0x4f 0x2e>;
};
codec {
sound-dai = <0x50 0x06>;
};
};
nvidia-audio-card,dai-link@51 {
status = "okay";
link-type = <0x02>;
phandle = <0x3b3>;
cpu {
sound-dai = <0x4f 0x2f>;
};
codec {
sound-dai = <0x50 0x07>;
};
};
nvidia-audio-card,dai-link@52 {
status = "okay";
link-type = <0x02>;
phandle = <0x3b4>;
cpu {
sound-dai = <0x4f 0x30>;
};
codec {
sound-dai = <0x50 0x08>;
};
};
nvidia-audio-card,dai-link@53 {
status = "okay";
link-type = <0x02>;
phandle = <0x3b5>;
cpu {
sound-dai = <0x4f 0x31>;
};
codec {
sound-dai = <0x50 0x09>;
};
};
nvidia-audio-card,dai-link@54 {
status = "okay";
link-type = <0x02>;
phandle = <0x3b6>;
cpu {
sound-dai = <0x4f 0x32>;
};
codec {
sound-dai = <0x50 0x0a>;
};
};
nvidia-audio-card,dai-link@55 {
status = "okay";
link-type = <0x02>;
phandle = <0x3b7>;
cpu {
sound-dai = <0x4f 0x33>;
};
codec {
sound-dai = <0x50 0x0b>;
};
};
nvidia-audio-card,dai-link@56 {
status = "okay";
link-type = <0x02>;
phandle = <0x3b8>;
cpu {
sound-dai = <0x4f 0x34>;
};
codec {
sound-dai = <0x50 0x0c>;
};
};
nvidia-audio-card,dai-link@57 {
status = "okay";
link-type = <0x02>;
phandle = <0x3b9>;
cpu {
sound-dai = <0x4f 0x35>;
};
codec {
sound-dai = <0x50 0x0d>;
};
};
nvidia-audio-card,dai-link@58 {
status = "okay";
link-type = <0x02>;
phandle = <0x3ba>;
cpu {
sound-dai = <0x4f 0x36>;
};
codec {
sound-dai = <0x50 0x0e>;
};
};
nvidia-audio-card,dai-link@59 {
status = "okay";
link-type = <0x02>;
phandle = <0x3bb>;
cpu {
sound-dai = <0x4f 0x37>;
};
codec {
sound-dai = <0x50 0x0f>;
};
};
nvidia-audio-card,dai-link@60 {
status = "okay";
link-type = <0x02>;
phandle = <0x3bc>;
cpu {
sound-dai = <0x4f 0x38>;
};
codec {
sound-dai = <0x50 0x10>;
};
};
nvidia-audio-card,dai-link@61 {
status = "okay";
link-type = <0x02>;
phandle = <0x3bd>;
cpu {
sound-dai = <0x4f 0x39>;
};
codec {
sound-dai = <0x50 0x11>;
};
};
nvidia-audio-card,dai-link@62 {
status = "okay";
link-type = <0x02>;
phandle = <0x3be>;
cpu {
sound-dai = <0x4f 0x3a>;
};
codec {
sound-dai = <0x50 0x12>;
};
};
nvidia-audio-card,dai-link@63 {
status = "okay";
link-type = <0x02>;
phandle = <0x3bf>;
cpu {
sound-dai = <0x4f 0x3b>;
};
codec {
sound-dai = <0x50 0x13>;
};
};
nvidia-audio-card,dai-link@64 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3c0>;
cpu {
sound-dai = <0x50 0x14>;
};
codec {
sound-dai = <0x52 0x00>;
prefix = "I2S1";
};
};
nvidia-audio-card,dai-link@65 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3c1>;
cpu {
sound-dai = <0x50 0x15>;
};
codec {
sound-dai = <0x53 0x00>;
prefix = "I2S2";
};
};
nvidia-audio-card,dai-link@66 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3c2>;
cpu {
sound-dai = <0x50 0x16>;
};
codec {
sound-dai = <0x54 0x00>;
prefix = "I2S3";
};
};
nvidia-audio-card,dai-link@67 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3c3>;
cpu {
sound-dai = <0x50 0x17>;
};
codec {
sound-dai = <0x55 0x00>;
prefix = "I2S4";
};
};
nvidia-audio-card,dai-link@68 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3c4>;
cpu {
sound-dai = <0x50 0x18>;
};
codec {
sound-dai = <0x56 0x00>;
prefix = "I2S5";
};
};
nvidia-audio-card,dai-link@69 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3c5>;
cpu {
sound-dai = <0x50 0x19>;
};
codec {
sound-dai = <0x57 0x00>;
prefix = "I2S6";
};
};
nvidia-audio-card,dai-link@70 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3c6>;
cpu {
sound-dai = <0x50 0x1a>;
};
codec {
sound-dai = <0x58 0x00>;
prefix = "DMIC1";
};
};
nvidia-audio-card,dai-link@71 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3c7>;
cpu {
sound-dai = <0x50 0x1b>;
};
codec {
sound-dai = <0x59 0x00>;
prefix = "DMIC2";
};
};
nvidia-audio-card,dai-link@72 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3c8>;
cpu {
sound-dai = <0x50 0x1c>;
};
codec {
sound-dai = <0x5a 0x00>;
prefix = "DMIC3";
};
};
nvidia-audio-card,dai-link@73 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3c9>;
cpu {
sound-dai = <0x50 0x1d>;
};
codec {
sound-dai = <0x5b 0x00>;
prefix = "DMIC4";
};
};
nvidia-audio-card,dai-link@74 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3ca>;
cpu {
sound-dai = <0x50 0x1e>;
};
codec {
sound-dai = <0x5c 0x00>;
prefix = "DSPK1";
};
};
nvidia-audio-card,dai-link@75 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3cb>;
cpu {
sound-dai = <0x50 0x1f>;
};
codec {
sound-dai = <0x5d 0x00>;
prefix = "DSPK2";
};
};
nvidia-audio-card,dai-link@76 {
status = "okay";
format = "i2s";
link-type = <0x02>;
link-name = "rt5640-playback";
phandle = <0x3cc>;
cpu {
sound-dai = <0x52 0x01>;
phandle = <0x3cd>;
};
codec {
sound-dai = <0x5e 0x00>;
};
};
nvidia-audio-card,dai-link@77 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x2f8>;
cpu {
sound-dai = <0x53 0x01>;
phandle = <0x3ce>;
};
codec {
sound-dai = <0x53 0x02>;
};
};
nvidia-audio-card,dai-link@78 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3cf>;
cpu {
sound-dai = <0x54 0x01>;
phandle = <0x3d0>;
};
codec {
sound-dai = <0x54 0x02>;
};
};
nvidia-audio-card,dai-link@79 {
status = "okay";
format = "dsp_a";
link-type = <0x02>;
bitclock-inversion;
phandle = <0x3d1>;
cpu {
sound-dai = <0x55 0x01>;
phandle = <0x3d2>;
};
codec {
sound-dai = <0x55 0x02>;
};
};
nvidia-audio-card,dai-link@80 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3d3>;
cpu {
sound-dai = <0x56 0x01>;
phandle = <0x3d4>;
};
codec {
sound-dai = <0x56 0x02>;
};
};
nvidia-audio-card,dai-link@81 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3d5>;
cpu {
sound-dai = <0x57 0x01>;
phandle = <0x3d6>;
};
codec {
sound-dai = <0x57 0x02>;
};
};
nvidia-audio-card,dai-link@82 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3d7>;
cpu {
sound-dai = <0x58 0x01>;
};
codec {
sound-dai = <0x58 0x02>;
};
};
nvidia-audio-card,dai-link@83 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3d8>;
cpu {
sound-dai = <0x59 0x01>;
};
codec {
sound-dai = <0x59 0x02>;
};
};
nvidia-audio-card,dai-link@84 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3d9>;
cpu {
sound-dai = <0x5a 0x01>;
};
codec {
sound-dai = <0x5a 0x02>;
};
};
nvidia-audio-card,dai-link@85 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3da>;
cpu {
sound-dai = <0x5b 0x01>;
};
codec {
sound-dai = <0x5b 0x02>;
};
};
nvidia-audio-card,dai-link@86 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x3db>;
cpu {
sound-dai = <0x5c 0x01>;
};
codec {
sound-dai = <0x5c 0x02>;
};
};
nvidia-audio-card,dai-link@87 {
status = "okay";
format = "i2s";
link-type = <0x02>;
phandle = <0x2fa>;
cpu {
sound-dai = <0x5d 0x01>;
};
codec {
sound-dai = <0x5d 0x02>;
};
};
nvidia-audio-card,dai-link@88 {
status = "okay";
link-type = <0x02>;
phandle = <0x3dc>;
cpu {
sound-dai = <0x50 0x2c>;
};
codec {
sound-dai = <0x5f 0x00>;
prefix = "AMX1";
};
};
nvidia-audio-card,dai-link@89 {
status = "okay";
link-type = <0x02>;
phandle = <0x3dd>;
cpu {
sound-dai = <0x50 0x2d>;
};
codec {
sound-dai = <0x5f 0x01>;
prefix = "AMX1";
};
};
nvidia-audio-card,dai-link@90 {
status = "okay";
link-type = <0x02>;
phandle = <0x3de>;
cpu {
sound-dai = <0x50 0x2e>;
};
codec {
sound-dai = <0x5f 0x02>;
prefix = "AMX1";
};
};
nvidia-audio-card,dai-link@91 {
status = "okay";
link-type = <0x02>;
phandle = <0x3df>;
cpu {
sound-dai = <0x50 0x2f>;
};
codec {
sound-dai = <0x5f 0x03>;
prefix = "AMX1";
};
};
nvidia-audio-card,dai-link@92 {
status = "okay";
link-type = <0x02>;
phandle = <0x3e0>;
cpu {
sound-dai = <0x5f 0x04>;
};
codec {
sound-dai = <0x50 0x30>;
};
};
nvidia-audio-card,dai-link@93 {
status = "okay";
link-type = <0x02>;
phandle = <0x3e1>;
cpu {
sound-dai = <0x50 0x31>;
};
codec {
sound-dai = <0x60 0x00>;
prefix = "AMX2";
};
};
nvidia-audio-card,dai-link@94 {
status = "okay";
link-type = <0x02>;
phandle = <0x3e2>;
cpu {
sound-dai = <0x50 0x32>;
};
codec {
sound-dai = <0x60 0x01>;
prefix = "AMX2";
};
};
nvidia-audio-card,dai-link@95 {
status = "okay";
link-type = <0x02>;
phandle = <0x3e3>;
cpu {
sound-dai = <0x50 0x33>;
};
codec {
sound-dai = <0x60 0x02>;
prefix = "AMX2";
};
};
nvidia-audio-card,dai-link@96 {
status = "okay";
link-type = <0x02>;
phandle = <0x3e4>;
cpu {
sound-dai = <0x50 0x34>;
};
codec {
sound-dai = <0x60 0x03>;
prefix = "AMX2";
};
};
nvidia-audio-card,dai-link@97 {
status = "okay";
link-type = <0x02>;
phandle = <0x3e5>;
cpu {
sound-dai = <0x60 0x04>;
};
codec {
sound-dai = <0x50 0x35>;
};
};
nvidia-audio-card,dai-link@98 {
status = "okay";
link-type = <0x02>;
phandle = <0x3e6>;
cpu {
sound-dai = <0x50 0x36>;
};
codec {
sound-dai = <0x61 0x00>;
prefix = "AMX3";
};
};
nvidia-audio-card,dai-link@99 {
status = "okay";
link-type = <0x02>;
phandle = <0x3e7>;
cpu {
sound-dai = <0x50 0x37>;
};
codec {
sound-dai = <0x61 0x01>;
prefix = "AMX3";
};
};
nvidia-audio-card,dai-link@100 {
status = "okay";
link-type = <0x02>;
phandle = <0x3e8>;
cpu {
sound-dai = <0x50 0x38>;
};
codec {
sound-dai = <0x61 0x02>;
prefix = "AMX3";
};
};
nvidia-audio-card,dai-link@101 {
status = "okay";
link-type = <0x02>;
phandle = <0x3e9>;
cpu {
sound-dai = <0x50 0x39>;
};
codec {
sound-dai = <0x61 0x03>;
prefix = "AMX3";
};
};
nvidia-audio-card,dai-link@102 {
status = "okay";
link-type = <0x02>;
phandle = <0x3ea>;
cpu {
sound-dai = <0x61 0x04>;
};
codec {
sound-dai = <0x50 0x3a>;
};
};
nvidia-audio-card,dai-link@103 {
status = "okay";
link-type = <0x02>;
phandle = <0x3eb>;
cpu {
sound-dai = <0x50 0x3b>;
};
codec {
sound-dai = <0x62 0x00>;
prefix = "AMX4";
};
};
nvidia-audio-card,dai-link@104 {
status = "okay";
link-type = <0x02>;
phandle = <0x3ec>;
cpu {
sound-dai = <0x50 0x3c>;
};
codec {
sound-dai = <0x62 0x01>;
prefix = "AMX4";
};
};
nvidia-audio-card,dai-link@105 {
status = "okay";
link-type = <0x02>;
phandle = <0x3ed>;
cpu {
sound-dai = <0x50 0x3d>;
};
codec {
sound-dai = <0x62 0x02>;
prefix = "AMX4";
};
};
nvidia-audio-card,dai-link@106 {
status = "okay";
link-type = <0x02>;
phandle = <0x3ee>;
cpu {
sound-dai = <0x50 0x3e>;
};
codec {
sound-dai = <0x62 0x03>;
prefix = "AMX4";
};
};
nvidia-audio-card,dai-link@107 {
status = "okay";
link-type = <0x02>;
phandle = <0x3ef>;
cpu {
sound-dai = <0x62 0x04>;
};
codec {
sound-dai = <0x50 0x3f>;
};
};
nvidia-audio-card,dai-link@108 {
status = "okay";
link-type = <0x02>;
phandle = <0x3f0>;
cpu {
sound-dai = <0x50 0x40>;
};
codec {
sound-dai = <0x63 0x04>;
prefix = "ADX1";
};
};
nvidia-audio-card,dai-link@109 {
status = "okay";
link-type = <0x02>;
phandle = <0x3f1>;
cpu {
sound-dai = <0x63 0x00>;
};
codec {
sound-dai = <0x50 0x41>;
};
};
nvidia-audio-card,dai-link@110 {
status = "okay";
link-type = <0x02>;
phandle = <0x3f2>;
cpu {
sound-dai = <0x63 0x01>;
};
codec {
sound-dai = <0x50 0x42>;
};
};
nvidia-audio-card,dai-link@111 {
status = "okay";
link-type = <0x02>;
phandle = <0x3f3>;
cpu {
sound-dai = <0x63 0x02>;
};
codec {
sound-dai = <0x50 0x43>;
};
};
nvidia-audio-card,dai-link@112 {
status = "okay";
link-type = <0x02>;
phandle = <0x3f4>;
cpu {
sound-dai = <0x63 0x03>;
};
codec {
sound-dai = <0x50 0x44>;
};
};
nvidia-audio-card,dai-link@113 {
status = "okay";
link-type = <0x02>;
phandle = <0x3f5>;
cpu {
sound-dai = <0x50 0x45>;
};
codec {
sound-dai = <0x64 0x04>;
prefix = "ADX2";
};
};
nvidia-audio-card,dai-link@114 {
status = "okay";
link-type = <0x02>;
phandle = <0x3f6>;
cpu {
sound-dai = <0x64 0x00>;
};
codec {
sound-dai = <0x50 0x46>;
};
};
nvidia-audio-card,dai-link@115 {
status = "okay";
link-type = <0x02>;
phandle = <0x3f7>;
cpu {
sound-dai = <0x64 0x01>;
};
codec {
sound-dai = <0x50 0x47>;
};
};
nvidia-audio-card,dai-link@116 {
status = "okay";
link-type = <0x02>;
phandle = <0x3f8>;
cpu {
sound-dai = <0x64 0x02>;
};
codec {
sound-dai = <0x50 0x48>;
};
};
nvidia-audio-card,dai-link@117 {
status = "okay";
link-type = <0x02>;
phandle = <0x3f9>;
cpu {
sound-dai = <0x64 0x03>;
};
codec {
sound-dai = <0x50 0x49>;
};
};
nvidia-audio-card,dai-link@118 {
status = "okay";
link-type = <0x02>;
phandle = <0x3fa>;
cpu {
sound-dai = <0x50 0x4a>;
};
codec {
sound-dai = <0x65 0x04>;
prefix = "ADX3";
};
};
nvidia-audio-card,dai-link@119 {
status = "okay";
link-type = <0x02>;
phandle = <0x3fb>;
cpu {
sound-dai = <0x65 0x00>;
};
codec {
sound-dai = <0x50 0x4b>;
};
};
nvidia-audio-card,dai-link@120 {
status = "okay";
link-type = <0x02>;
phandle = <0x3fc>;
cpu {
sound-dai = <0x65 0x01>;
};
codec {
sound-dai = <0x50 0x4c>;
};
};
nvidia-audio-card,dai-link@121 {
status = "okay";
link-type = <0x02>;
phandle = <0x3fd>;
cpu {
sound-dai = <0x65 0x02>;
};
codec {
sound-dai = <0x50 0x4d>;
};
};
nvidia-audio-card,dai-link@122 {
status = "okay";
link-type = <0x02>;
phandle = <0x3fe>;
cpu {
sound-dai = <0x65 0x03>;
};
codec {
sound-dai = <0x50 0x4e>;
};
};
nvidia-audio-card,dai-link@123 {
status = "okay";
link-type = <0x02>;
phandle = <0x3ff>;
cpu {
sound-dai = <0x50 0x4f>;
};
codec {
sound-dai = <0x66 0x04>;
prefix = "ADX4";
};
};
nvidia-audio-card,dai-link@124 {
status = "okay";
link-type = <0x02>;
phandle = <0x400>;
cpu {
sound-dai = <0x66 0x00>;
};
codec {
sound-dai = <0x50 0x50>;
};
};
nvidia-audio-card,dai-link@125 {
status = "okay";
link-type = <0x02>;
phandle = <0x401>;
cpu {
sound-dai = <0x66 0x01>;
};
codec {
sound-dai = <0x50 0x51>;
};
};
nvidia-audio-card,dai-link@126 {
status = "okay";
link-type = <0x02>;
phandle = <0x402>;
cpu {
sound-dai = <0x66 0x02>;
};
codec {
sound-dai = <0x50 0x52>;
};
};
nvidia-audio-card,dai-link@127 {
status = "okay";
link-type = <0x02>;
phandle = <0x403>;
cpu {
sound-dai = <0x66 0x03>;
};
codec {
sound-dai = <0x50 0x53>;
};
};
nvidia-audio-card,dai-link@128 {
status = "okay";
link-type = <0x02>;
phandle = <0x404>;
cpu {
sound-dai = <0x50 0x54>;
};
codec {
sound-dai = <0x67 0x00>;
};
};
nvidia-audio-card,dai-link@129 {
status = "okay";
link-type = <0x02>;
phandle = <0x405>;
cpu {
sound-dai = <0x50 0x55>;
};
codec {
sound-dai = <0x67 0x01>;
};
};
nvidia-audio-card,dai-link@130 {
status = "okay";
link-type = <0x02>;
phandle = <0x406>;
cpu {
sound-dai = <0x50 0x56>;
};
codec {
sound-dai = <0x67 0x02>;
};
};
nvidia-audio-card,dai-link@131 {
status = "okay";
link-type = <0x02>;
phandle = <0x407>;
cpu {
sound-dai = <0x50 0x57>;
};
codec {
sound-dai = <0x67 0x03>;
};
};
nvidia-audio-card,dai-link@132 {
status = "okay";
link-type = <0x02>;
phandle = <0x408>;
cpu {
sound-dai = <0x50 0x58>;
};
codec {
sound-dai = <0x67 0x04>;
};
};
nvidia-audio-card,dai-link@133 {
status = "okay";
link-type = <0x02>;
phandle = <0x409>;
cpu {
sound-dai = <0x50 0x59>;
};
codec {
sound-dai = <0x67 0x05>;
};
};
nvidia-audio-card,dai-link@134 {
status = "okay";
link-type = <0x02>;
phandle = <0x40a>;
cpu {
sound-dai = <0x50 0x5a>;
};
codec {
sound-dai = <0x67 0x06>;
};
};
nvidia-audio-card,dai-link@135 {
status = "okay";
link-type = <0x02>;
phandle = <0x40b>;
cpu {
sound-dai = <0x50 0x5b>;
};
codec {
sound-dai = <0x67 0x07>;
};
};
nvidia-audio-card,dai-link@136 {
status = "okay";
link-type = <0x02>;
phandle = <0x40c>;
cpu {
sound-dai = <0x50 0x5c>;
};
codec {
sound-dai = <0x67 0x08>;
};
};
nvidia-audio-card,dai-link@137 {
status = "okay";
link-type = <0x02>;
phandle = <0x40d>;
cpu {
sound-dai = <0x50 0x5d>;
};
codec {
sound-dai = <0x67 0x09>;
};
};
nvidia-audio-card,dai-link@138 {
status = "okay";
link-type = <0x02>;
phandle = <0x40e>;
cpu {
sound-dai = <0x67 0x0a>;
};
codec {
sound-dai = <0x50 0x5e>;
};
};
nvidia-audio-card,dai-link@139 {
status = "okay";
link-type = <0x02>;
phandle = <0x40f>;
cpu {
sound-dai = <0x67 0x0b>;
};
codec {
sound-dai = <0x50 0x5f>;
};
};
nvidia-audio-card,dai-link@140 {
status = "okay";
link-type = <0x02>;
phandle = <0x410>;
cpu {
sound-dai = <0x67 0x0c>;
};
codec {
sound-dai = <0x50 0x60>;
};
};
nvidia-audio-card,dai-link@141 {
status = "okay";
link-type = <0x02>;
phandle = <0x411>;
cpu {
sound-dai = <0x67 0x0d>;
};
codec {
sound-dai = <0x50 0x61>;
};
};
nvidia-audio-card,dai-link@142 {
status = "okay";
link-type = <0x02>;
phandle = <0x412>;
cpu {
sound-dai = <0x67 0x0e>;
};
codec {
sound-dai = <0x50 0x62>;
};
};
nvidia-audio-card,dai-link@143 {
status = "okay";
link-type = <0x02>;
phandle = <0x413>;
cpu {
sound-dai = <0x50 0x20>;
};
codec {
sound-dai = <0x68 0x00>;
prefix = "SFC1";
};
};
nvidia-audio-card,dai-link@144 {
status = "okay";
link-type = <0x02>;
phandle = <0x414>;
cpu {
sound-dai = <0x50 0x22>;
};
codec {
sound-dai = <0x69 0x00>;
prefix = "SFC2";
};
};
nvidia-audio-card,dai-link@145 {
status = "okay";
link-type = <0x02>;
phandle = <0x415>;
cpu {
sound-dai = <0x50 0x24>;
};
codec {
sound-dai = <0x6a 0x00>;
prefix = "SFC3";
};
};
nvidia-audio-card,dai-link@146 {
status = "okay";
link-type = <0x02>;
phandle = <0x416>;
cpu {
sound-dai = <0x50 0x26>;
};
codec {
sound-dai = <0x6b 0x00>;
prefix = "SFC4";
};
};
nvidia-audio-card,dai-link@147 {
status = "okay";
link-type = <0x02>;
phandle = <0x417>;
cpu {
sound-dai = <0x68 0x01>;
};
codec {
sound-dai = <0x50 0x20>;
};
};
nvidia-audio-card,dai-link@148 {
status = "okay";
link-type = <0x02>;
phandle = <0x418>;
cpu {
sound-dai = <0x69 0x01>;
};
codec {
sound-dai = <0x50 0x22>;
};
};
nvidia-audio-card,dai-link@149 {
status = "okay";
link-type = <0x02>;
phandle = <0x419>;
cpu {
sound-dai = <0x6a 0x01>;
};
codec {
sound-dai = <0x50 0x24>;
};
};
nvidia-audio-card,dai-link@150 {
status = "okay";
link-type = <0x02>;
phandle = <0x41a>;
cpu {
sound-dai = <0x6b 0x01>;
};
codec {
sound-dai = <0x50 0x26>;
};
};
nvidia-audio-card,dai-link@151 {
status = "okay";
link-type = <0x02>;
phandle = <0x41b>;
cpu {
sound-dai = <0x50 0x72>;
};
codec {
sound-dai = <0x6c 0x00>;
prefix = "AFC1";
};
};
nvidia-audio-card,dai-link@152 {
status = "okay";
link-type = <0x02>;
phandle = <0x41c>;
cpu {
sound-dai = <0x50 0x73>;
};
codec {
sound-dai = <0x6d 0x00>;
prefix = "AFC2";
};
};
nvidia-audio-card,dai-link@153 {
status = "okay";
link-type = <0x02>;
phandle = <0x41d>;
cpu {
sound-dai = <0x50 0x74>;
};
codec {
sound-dai = <0x6e 0x00>;
prefix = "AFC3";
};
};
nvidia-audio-card,dai-link@154 {
status = "okay";
link-type = <0x02>;
phandle = <0x41e>;
cpu {
sound-dai = <0x50 0x75>;
};
codec {
sound-dai = <0x6f 0x00>;
prefix = "AFC4";
};
};
nvidia-audio-card,dai-link@155 {
status = "okay";
link-type = <0x02>;
phandle = <0x41f>;
cpu {
sound-dai = <0x50 0x76>;
};
codec {
sound-dai = <0x70 0x00>;
prefix = "AFC5";
};
};
nvidia-audio-card,dai-link@156 {
status = "okay";
link-type = <0x02>;
phandle = <0x420>;
cpu {
sound-dai = <0x50 0x77>;
};
codec {
sound-dai = <0x71 0x00>;
prefix = "AFC6";
};
};
nvidia-audio-card,dai-link@157 {
status = "okay";
link-type = <0x02>;
phandle = <0x421>;
cpu {
sound-dai = <0x6c 0x01>;
};
codec {
sound-dai = <0x50 0x72>;
};
};
nvidia-audio-card,dai-link@158 {
status = "okay";
link-type = <0x02>;
phandle = <0x422>;
cpu {
sound-dai = <0x6d 0x01>;
};
codec {
sound-dai = <0x50 0x73>;
};
};
nvidia-audio-card,dai-link@159 {
status = "okay";
link-type = <0x02>;
phandle = <0x423>;
cpu {
sound-dai = <0x6e 0x01>;
};
codec {
sound-dai = <0x50 0x74>;
};
};
nvidia-audio-card,dai-link@160 {
status = "okay";
link-type = <0x02>;
phandle = <0x424>;
cpu {
sound-dai = <0x6f 0x01>;
};
codec {
sound-dai = <0x50 0x75>;
};
};
nvidia-audio-card,dai-link@161 {
status = "okay";
link-type = <0x02>;
phandle = <0x425>;
cpu {
sound-dai = <0x70 0x01>;
};
codec {
sound-dai = <0x50 0x76>;
};
};
nvidia-audio-card,dai-link@162 {
status = "okay";
link-type = <0x02>;
phandle = <0x426>;
cpu {
sound-dai = <0x71 0x01>;
};
codec {
sound-dai = <0x50 0x77>;
};
};
nvidia-audio-card,dai-link@163 {
status = "okay";
link-type = <0x02>;
phandle = <0x427>;
cpu {
sound-dai = <0x50 0x28>;
};
codec {
sound-dai = <0x72 0x00>;
prefix = "MVC1";
};
};
nvidia-audio-card,dai-link@164 {
status = "okay";
link-type = <0x02>;
phandle = <0x428>;
cpu {
sound-dai = <0x50 0x2a>;
};
codec {
sound-dai = <0x73 0x00>;
prefix = "MVC2";
};
};
nvidia-audio-card,dai-link@165 {
status = "okay";
link-type = <0x02>;
phandle = <0x429>;
cpu {
sound-dai = <0x72 0x01>;
};
codec {
sound-dai = <0x50 0x28>;
};
};
nvidia-audio-card,dai-link@166 {
status = "okay";
link-type = <0x02>;
phandle = <0x42a>;
cpu {
sound-dai = <0x73 0x01>;
};
codec {
sound-dai = <0x50 0x2a>;
};
};
nvidia-audio-card,dai-link@167 {
status = "okay";
link-type = <0x02>;
phandle = <0x42b>;
cpu {
sound-dai = <0x50 0x70>;
};
codec {
sound-dai = <0x74 0x00>;
prefix = "OPE1";
};
};
nvidia-audio-card,dai-link@168 {
status = "okay";
link-type = <0x02>;
phandle = <0x42c>;
cpu {
sound-dai = <0x74 0x01>;
};
codec {
sound-dai = <0x50 0x70>;
};
};
nvidia-audio-card,dai-link@169 {
status = "okay";
link-type = <0x02>;
phandle = <0x42d>;
cpu {
sound-dai = <0x50 0x63>;
};
codec {
sound-dai = <0x75 0x00>;
prefix = "ASRC1";
};
};
nvidia-audio-card,dai-link@170 {
status = "okay";
link-type = <0x02>;
phandle = <0x42e>;
cpu {
sound-dai = <0x50 0x65>;
};
codec {
sound-dai = <0x75 0x01>;
prefix = "ASRC1";
};
};
nvidia-audio-card,dai-link@171 {
status = "okay";
link-type = <0x02>;
phandle = <0x42f>;
cpu {
sound-dai = <0x50 0x67>;
};
codec {
sound-dai = <0x75 0x02>;
prefix = "ASRC1";
};
};
nvidia-audio-card,dai-link@172 {
status = "okay";
link-type = <0x02>;
phandle = <0x430>;
cpu {
sound-dai = <0x50 0x69>;
};
codec {
sound-dai = <0x75 0x03>;
prefix = "ASRC1";
};
};
nvidia-audio-card,dai-link@173 {
status = "okay";
link-type = <0x02>;
phandle = <0x431>;
cpu {
sound-dai = <0x50 0x6b>;
};
codec {
sound-dai = <0x75 0x04>;
prefix = "ASRC1";
};
};
nvidia-audio-card,dai-link@174 {
status = "okay";
link-type = <0x02>;
phandle = <0x432>;
cpu {
sound-dai = <0x50 0x6d>;
};
codec {
sound-dai = <0x75 0x05>;
prefix = "ASRC1";
};
};
nvidia-audio-card,dai-link@175 {
status = "okay";
link-type = <0x02>;
phandle = <0x433>;
cpu {
sound-dai = <0x50 0x6f>;
};
codec {
sound-dai = <0x75 0x06>;
prefix = "ASRC1";
};
};
nvidia-audio-card,dai-link@176 {
status = "okay";
link-type = <0x02>;
phandle = <0x434>;
cpu {
sound-dai = <0x75 0x07>;
};
codec {
sound-dai = <0x50 0x64>;
};
};
nvidia-audio-card,dai-link@177 {
status = "okay";
link-type = <0x02>;
phandle = <0x435>;
cpu {
sound-dai = <0x75 0x08>;
};
codec {
sound-dai = <0x50 0x66>;
};
};
nvidia-audio-card,dai-link@178 {
status = "okay";
link-type = <0x02>;
phandle = <0x436>;
cpu {
sound-dai = <0x75 0x09>;
};
codec {
sound-dai = <0x50 0x68>;
};
};
nvidia-audio-card,dai-link@179 {
status = "okay";
link-type = <0x02>;
phandle = <0x437>;
cpu {
sound-dai = <0x75 0x0a>;
};
codec {
sound-dai = <0x50 0x6a>;
};
};
nvidia-audio-card,dai-link@180 {
status = "okay";
link-type = <0x02>;
phandle = <0x438>;
cpu {
sound-dai = <0x75 0x0b>;
};
codec {
sound-dai = <0x50 0x6c>;
};
};
nvidia-audio-card,dai-link@181 {
status = "okay";
link-type = <0x02>;
phandle = <0x439>;
cpu {
sound-dai = <0x75 0x0c>;
};
codec {
sound-dai = <0x50 0x6e>;
};
};
nvidia-audio-card,dai-link@182 {
status = "okay";
link-type = <0x02>;
phandle = <0x43a>;
cpu {
sound-dai = <0x76 0x00>;
};
codec {
sound-dai = <0x50 0x7d>;
};
};
};
sound_graph {
iommus = <0x02 0x02>;
iommu-resv-regions = <0x00 0x00 0x00 0x40000000 0x00 0x60000000 0xffffffff 0xffffffff>;
status = "disabled";
compatible = "nvidia,tegra186-audio-graph-card";
dais = <0x77 0x78 0x79 0x7a 0x7b 0x7c 0x7d 0x7e 0x7f 0x80 0x81 0x82 0x83 0x84 0x85 0x86 0x87 0x88 0x89 0x8a 0x8b 0x8c 0x8d 0x8e 0x8f 0x90 0x91 0x92 0x93 0x94 0x95 0x96 0x97 0x98 0x99 0x9a 0x9b 0x9c 0x9d 0x9e 0x9f 0xa0 0xa1 0xa2 0xa3 0xa4 0xa5 0xa6 0xa7 0xa8 0xa9 0xaa 0xab 0xac 0xad 0xae 0xaf 0xb0 0xb1 0xb2 0xb3 0xb4 0xb5 0xb6 0xb7 0xb8 0xb9 0xba 0xbb 0xbc 0xbd 0xbe 0xbf 0xc0 0xc1 0xc2 0xc3 0xc4 0xc5 0xc6 0xc7 0xc8 0xc9 0xca 0xcb 0xcc 0xcd 0xce 0xcf 0xd0 0xd1 0xd2 0xd3 0xd4 0xd5 0xd6 0xd7 0xd8 0xd9 0xda 0xdb 0xdc 0xdd 0xde 0xdf 0xe0 0xe1 0xe2 0xe3 0xe4 0xe5 0xe6 0xe7 0xe8 0xe9 0xea 0xeb 0xec 0xed 0xee 0xef 0xf0 0xf1 0xf2 0xf3 0xf4 0xf5 0xf6 0xf7 0xf8 0xf9 0xfa 0xfb 0xfc 0xfd 0xfe 0xff 0x100 0x101 0x102 0x103 0x104 0x105 0x106 0x107 0x108 0x109 0x10a 0x10b 0x10c 0x10d 0x10e 0x10f 0x110 0x111 0x112 0x113 0x114 0x115 0x116 0x117 0x118 0x119 0x11a 0x11b 0x11c 0x11d 0x11e 0x11f 0x120 0x121 0x122 0x123 0x124 0x125 0x126 0x127 0x128 0x129 0x12a 0x12b 0x12c 0x12d>;
label = "NVIDIA Jetson Concord APE";
clocks = <0x04 0x5d 0x04 0x68>;
clock-names = "pll_a\0plla_out0";
assigned-clocks = <0x04 0x07>;
assigned-clock-parents = <0x04 0x68>;
phandle = <0x43b>;
};
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 = <0x12e>;
};
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 = <0x43c>;
};
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 = <0x43d>;
};
adsp@2993000 {
compatible = "nvidia,tegra18x-adsp";
interrupt-parent = <0x12e>;
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 = <0x12e>;
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 = <0x12f>;
};
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 = <0x50>;
admaif@290f000 {
compatible = "nvidia,tegra186-admaif";
reg = <0x00 0x290f000 0x00 0x1000>;
dmas = <0x12f 0x01 0x12f 0x01 0x12f 0x02 0x12f 0x02 0x12f 0x03 0x12f 0x03 0x12f 0x04 0x12f 0x04 0x12f 0x05 0x12f 0x05 0x12f 0x06 0x12f 0x06 0x12f 0x07 0x12f 0x07 0x12f 0x08 0x12f 0x08 0x12f 0x09 0x12f 0x09 0x12f 0x0a 0x12f 0x0a 0x12f 0x0b 0x12f 0x0b 0x12f 0x0c 0x12f 0x0c 0x12f 0x0d 0x12f 0x0d 0x12f 0x0e 0x12f 0x0e 0x12f 0x0f 0x12f 0x0f 0x12f 0x10 0x12f 0x10 0x12f 0x11 0x12f 0x11 0x12f 0x12 0x12f 0x12 0x12f 0x13 0x12f 0x13 0x12f 0x14 0x12f 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 = <0x4f>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
phandle = <0x77>;
endpoint {
remote-endpoint = <0x130>;
phandle = <0x1cd>;
};
};
port@1 {
reg = <0x01>;
phandle = <0x78>;
endpoint {
remote-endpoint = <0x131>;
phandle = <0x1ce>;
};
};
port@2 {
reg = <0x02>;
phandle = <0x79>;
endpoint {
remote-endpoint = <0x132>;
phandle = <0x1cf>;
};
};
port@3 {
reg = <0x03>;
phandle = <0x7a>;
endpoint {
remote-endpoint = <0x133>;
phandle = <0x1d0>;
};
};
port@4 {
reg = <0x04>;
phandle = <0x7b>;
endpoint {
remote-endpoint = <0x134>;
phandle = <0x1d1>;
};
};
port@5 {
reg = <0x05>;
phandle = <0x7c>;
endpoint {
remote-endpoint = <0x135>;
phandle = <0x1d2>;
};
};
port@6 {
reg = <0x06>;
phandle = <0x7d>;
endpoint {
remote-endpoint = <0x136>;
phandle = <0x1d3>;
};
};
port@7 {
reg = <0x07>;
phandle = <0x7e>;
endpoint {
remote-endpoint = <0x137>;
phandle = <0x1d4>;
};
};
port@8 {
reg = <0x08>;
phandle = <0x7f>;
endpoint {
remote-endpoint = <0x138>;
phandle = <0x1d5>;
};
};
port@9 {
reg = <0x09>;
phandle = <0x80>;
endpoint {
remote-endpoint = <0x139>;
phandle = <0x1d6>;
};
};
port@10 {
reg = <0x0a>;
phandle = <0x81>;
endpoint {
remote-endpoint = <0x13a>;
phandle = <0x1d7>;
};
};
port@11 {
reg = <0x0b>;
phandle = <0x82>;
endpoint {
remote-endpoint = <0x13b>;
phandle = <0x1d8>;
};
};
port@12 {
reg = <0x0c>;
phandle = <0x83>;
endpoint {
remote-endpoint = <0x13c>;
phandle = <0x1d9>;
};
};
port@13 {
reg = <0x0d>;
phandle = <0x84>;
endpoint {
remote-endpoint = <0x13d>;
phandle = <0x1da>;
};
};
port@14 {
reg = <0x0e>;
phandle = <0x85>;
endpoint {
remote-endpoint = <0x13e>;
phandle = <0x1db>;
};
};
port@15 {
reg = <0x0f>;
phandle = <0x86>;
endpoint {
remote-endpoint = <0x13f>;
phandle = <0x1dc>;
};
};
port@16 {
reg = <0x10>;
phandle = <0x87>;
endpoint {
remote-endpoint = <0x140>;
phandle = <0x1dd>;
};
};
port@17 {
reg = <0x11>;
phandle = <0x88>;
endpoint {
remote-endpoint = <0x141>;
phandle = <0x1de>;
};
};
port@18 {
reg = <0x12>;
phandle = <0x89>;
endpoint {
remote-endpoint = <0x142>;
phandle = <0x1df>;
};
};
port@19 {
reg = <0x13>;
phandle = <0x8a>;
endpoint {
remote-endpoint = <0x143>;
phandle = <0x1e0>;
};
};
port@20 {
reg = <0x14>;
endpoint {
remote-endpoint = <0x144>;
phandle = <0x247>;
};
};
port@21 {
reg = <0x15>;
endpoint {
remote-endpoint = <0x145>;
phandle = <0x248>;
};
};
port@22 {
reg = <0x16>;
endpoint {
remote-endpoint = <0x146>;
phandle = <0x249>;
};
};
port@23 {
reg = <0x17>;
endpoint {
remote-endpoint = <0x147>;
phandle = <0x24a>;
};
};
port@24 {
reg = <0x18>;
endpoint {
remote-endpoint = <0x148>;
phandle = <0x24b>;
};
};
port@25 {
reg = <0x19>;
endpoint {
remote-endpoint = <0x149>;
phandle = <0x24c>;
};
};
port@26 {
reg = <0x1a>;
endpoint {
remote-endpoint = <0x14a>;
phandle = <0x24d>;
};
};
port@27 {
reg = <0x1b>;
endpoint {
remote-endpoint = <0x14b>;
phandle = <0x24e>;
};
};
port@28 {
reg = <0x1c>;
endpoint {
remote-endpoint = <0x14c>;
phandle = <0x24f>;
};
};
port@29 {
reg = <0x1d>;
endpoint {
remote-endpoint = <0x14d>;
phandle = <0x250>;
};
};
port@30 {
reg = <0x1e>;
endpoint {
remote-endpoint = <0x14e>;
phandle = <0x251>;
};
};
port@31 {
reg = <0x1f>;
endpoint {
remote-endpoint = <0x14f>;
phandle = <0x252>;
};
};
port@32 {
reg = <0x20>;
endpoint {
remote-endpoint = <0x150>;
phandle = <0x253>;
};
};
port@33 {
reg = <0x21>;
endpoint {
remote-endpoint = <0x151>;
phandle = <0x254>;
};
};
port@34 {
reg = <0x22>;
endpoint {
remote-endpoint = <0x152>;
phandle = <0x255>;
};
};
port@35 {
reg = <0x23>;
endpoint {
remote-endpoint = <0x153>;
phandle = <0x256>;
};
};
port@36 {
reg = <0x24>;
endpoint {
remote-endpoint = <0x154>;
phandle = <0x257>;
};
};
port@37 {
reg = <0x25>;
endpoint {
remote-endpoint = <0x155>;
phandle = <0x258>;
};
};
port@38 {
reg = <0x26>;
endpoint {
remote-endpoint = <0x156>;
phandle = <0x259>;
};
};
port@39 {
reg = <0x27>;
endpoint {
remote-endpoint = <0x157>;
phandle = <0x25a>;
};
};
port@40 {
reg = <0x28>;
phandle = <0x11a>;
endpoint {
remote-endpoint = <0x130>;
phandle = <0x43e>;
};
};
port@41 {
reg = <0x29>;
phandle = <0x11b>;
endpoint {
remote-endpoint = <0x131>;
phandle = <0x43f>;
};
};
port@42 {
reg = <0x2a>;
phandle = <0x11c>;
endpoint {
remote-endpoint = <0x132>;
phandle = <0x440>;
};
};
port@43 {
reg = <0x2b>;
phandle = <0x11d>;
endpoint {
remote-endpoint = <0x133>;
phandle = <0x441>;
};
};
port@44 {
reg = <0x2c>;
phandle = <0x11e>;
endpoint {
remote-endpoint = <0x134>;
phandle = <0x442>;
};
};
port@45 {
reg = <0x2d>;
phandle = <0x11f>;
endpoint {
remote-endpoint = <0x135>;
phandle = <0x443>;
};
};
port@46 {
reg = <0x2e>;
phandle = <0x120>;
endpoint {
remote-endpoint = <0x136>;
phandle = <0x444>;
};
};
port@47 {
reg = <0x2f>;
phandle = <0x121>;
endpoint {
remote-endpoint = <0x137>;
phandle = <0x445>;
};
};
port@48 {
reg = <0x30>;
phandle = <0x122>;
endpoint {
remote-endpoint = <0x138>;
phandle = <0x446>;
};
};
port@49 {
reg = <0x31>;
phandle = <0x123>;
endpoint {
remote-endpoint = <0x139>;
phandle = <0x447>;
};
};
port@50 {
reg = <0x32>;
phandle = <0x124>;
endpoint {
remote-endpoint = <0x13a>;
phandle = <0x448>;
};
};
port@51 {
reg = <0x33>;
phandle = <0x125>;
endpoint {
remote-endpoint = <0x13b>;
phandle = <0x449>;
};
};
port@52 {
reg = <0x34>;
phandle = <0x126>;
endpoint {
remote-endpoint = <0x13c>;
phandle = <0x44a>;
};
};
port@53 {
reg = <0x35>;
phandle = <0x127>;
endpoint {
remote-endpoint = <0x13d>;
phandle = <0x44b>;
};
};
port@54 {
reg = <0x36>;
phandle = <0x128>;
endpoint {
remote-endpoint = <0x13e>;
phandle = <0x44c>;
};
};
port@55 {
reg = <0x37>;
phandle = <0x129>;
endpoint {
remote-endpoint = <0x13f>;
phandle = <0x44d>;
};
};
port@56 {
reg = <0x38>;
phandle = <0x12a>;
endpoint {
remote-endpoint = <0x140>;
phandle = <0x44e>;
};
};
port@57 {
reg = <0x39>;
phandle = <0x12b>;
endpoint {
remote-endpoint = <0x141>;
phandle = <0x44f>;
};
};
port@58 {
reg = <0x3a>;
phandle = <0x12c>;
endpoint {
remote-endpoint = <0x142>;
phandle = <0x450>;
};
};
port@59 {
reg = <0x3b>;
phandle = <0x12d>;
endpoint {
remote-endpoint = <0x143>;
phandle = <0x451>;
};
};
};
};
sfc@2902000 {
compatible = "nvidia,tegra210-sfc";
reg = <0x00 0x2902000 0x00 0x200>;
nvidia,ahub-sfc-id = <0x00>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "SFC1";
status = "okay";
phandle = <0x68>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x158>;
phandle = <0x1ed>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xda>;
endpoint {
remote-endpoint = <0x158>;
};
};
};
};
sfc@2902200 {
compatible = "nvidia,tegra210-sfc";
reg = <0x00 0x2902200 0x00 0x200>;
nvidia,ahub-sfc-id = <0x01>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "SFC2";
status = "okay";
phandle = <0x69>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x159>;
phandle = <0x1ee>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xdb>;
endpoint {
remote-endpoint = <0x159>;
};
};
};
};
sfc@2902400 {
compatible = "nvidia,tegra210-sfc";
reg = <0x00 0x2902400 0x00 0x200>;
nvidia,ahub-sfc-id = <0x02>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "SFC3";
status = "okay";
phandle = <0x6a>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x15a>;
phandle = <0x1ef>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xdc>;
endpoint {
remote-endpoint = <0x15a>;
};
};
};
};
sfc@2902600 {
compatible = "nvidia,tegra210-sfc";
reg = <0x00 0x2902600 0x00 0x200>;
nvidia,ahub-sfc-id = <0x03>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "SFC4";
status = "okay";
phandle = <0x6b>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x15b>;
phandle = <0x1f0>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xdd>;
endpoint {
remote-endpoint = <0x15b>;
};
};
};
};
spkprot@2908c00 {
compatible = "nvidia,tegra210-spkprot";
reg = <0x00 0x2908c00 0x00 0x400>;
nvidia,ahub-spkprot-id = <0x00>;
#sound-dai-cells = <0x01>;
status = "okay";
phandle = <0x452>;
};
amixer@290bb00 {
compatible = "nvidia,tegra210-amixer";
reg = <0x00 0x290bb00 0x00 0x800>;
nvidia,ahub-amixer-id = <0x00>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "MIXER1";
status = "okay";
phandle = <0x67>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x15c>;
phandle = <0x1f1>;
};
};
port@1 {
reg = <0x01>;
endpoint {
remote-endpoint = <0x15d>;
phandle = <0x1f2>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x15e>;
phandle = <0x1f3>;
};
};
port@3 {
reg = <0x03>;
endpoint {
remote-endpoint = <0x15f>;
phandle = <0x1f4>;
};
};
port@4 {
reg = <0x04>;
endpoint {
remote-endpoint = <0x160>;
phandle = <0x1f5>;
};
};
port@5 {
reg = <0x05>;
endpoint {
remote-endpoint = <0x161>;
phandle = <0x1f6>;
};
};
port@6 {
reg = <0x06>;
endpoint {
remote-endpoint = <0x162>;
phandle = <0x1f7>;
};
};
port@7 {
reg = <0x07>;
endpoint {
remote-endpoint = <0x163>;
phandle = <0x1f8>;
};
};
port@8 {
reg = <0x08>;
endpoint {
remote-endpoint = <0x164>;
phandle = <0x1f9>;
};
};
port@9 {
reg = <0x09>;
endpoint {
remote-endpoint = <0x165>;
phandle = <0x1fa>;
};
};
port@10 {
reg = <0x0a>;
phandle = <0xec>;
endpoint {
remote-endpoint = <0x166>;
phandle = <0x1fb>;
};
};
port@11 {
reg = <0x0b>;
phandle = <0xed>;
endpoint {
remote-endpoint = <0x167>;
phandle = <0x1fc>;
};
};
port@12 {
reg = <0x0c>;
phandle = <0xee>;
endpoint {
remote-endpoint = <0x168>;
phandle = <0x1fd>;
};
};
port@13 {
reg = <0x0d>;
phandle = <0xef>;
endpoint {
remote-endpoint = <0x169>;
phandle = <0x1fe>;
};
};
port@14 {
reg = <0x0e>;
phandle = <0xf0>;
endpoint {
remote-endpoint = <0x16a>;
phandle = <0x1ff>;
};
};
};
};
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>;
sound-name-prefix = "I2S1";
status = "okay";
phandle = <0x52>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x16b>;
phandle = <0x1e1>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xce>;
endpoint {
dai-format = "i2s";
remote-endpoint = <0x16c>;
phandle = <0x16d>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x16d>;
phandle = <0x16c>;
};
};
};
};
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>;
sound-name-prefix = "I2S2";
status = "okay";
phandle = <0x53>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x16e>;
phandle = <0x1e2>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xcf>;
endpoint {
dai-format = "i2s";
remote-endpoint = <0x16f>;
phandle = <0x4e>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x4e>;
phandle = <0x16f>;
};
};
};
};
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>;
sound-name-prefix = "I2S3";
status = "okay";
phandle = <0x54>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x170>;
phandle = <0x1e3>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xd0>;
endpoint {
dai-format = "i2s";
remote-endpoint = <0x171>;
phandle = <0x172>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x172>;
phandle = <0x171>;
};
};
};
};
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>;
sound-name-prefix = "I2S4";
status = "okay";
bclk-ratio = <0x04>;
phandle = <0x55>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x173>;
phandle = <0x1e4>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xd1>;
endpoint {
dai-format = "dsp_a";
remote-endpoint = <0x174>;
bitclock-inversion;
phandle = <0x175>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x175>;
phandle = <0x174>;
};
};
};
};
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>;
sound-name-prefix = "I2S5";
status = "okay";
phandle = <0x56>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x176>;
phandle = <0x1e5>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xd2>;
endpoint {
dai-format = "i2s";
remote-endpoint = <0x177>;
phandle = <0x178>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x178>;
phandle = <0x177>;
};
};
};
};
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>;
sound-name-prefix = "I2S6";
status = "okay";
phandle = <0x57>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x179>;
phandle = <0x1e6>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xd3>;
endpoint {
dai-format = "i2s";
remote-endpoint = <0x17a>;
phandle = <0x17b>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x17b>;
phandle = <0x17a>;
};
};
};
};
amx@2903000 {
compatible = "nvidia,tegra194-amx";
reg = <0x00 0x2903000 0x00 0x100>;
nvidia,ahub-amx-id = <0x00>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "AMX1";
status = "okay";
phandle = <0x5f>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x17c>;
phandle = <0x209>;
};
};
port@1 {
reg = <0x01>;
endpoint {
remote-endpoint = <0x17d>;
phandle = <0x20a>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x17e>;
phandle = <0x20b>;
};
};
port@3 {
reg = <0x03>;
endpoint {
remote-endpoint = <0x17f>;
phandle = <0x20c>;
};
};
port@4 {
reg = <0x04>;
phandle = <0xf2>;
endpoint {
remote-endpoint = <0x180>;
phandle = <0x20d>;
};
};
};
};
amx@2903100 {
compatible = "nvidia,tegra194-amx";
reg = <0x00 0x2903100 0x00 0x100>;
nvidia,ahub-amx-id = <0x01>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "AMX2";
status = "okay";
phandle = <0x60>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x181>;
phandle = <0x20e>;
};
};
port@1 {
reg = <0x01>;
endpoint {
remote-endpoint = <0x182>;
phandle = <0x20f>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x183>;
phandle = <0x210>;
};
};
port@3 {
reg = <0x03>;
endpoint {
remote-endpoint = <0x184>;
phandle = <0x211>;
};
};
port@4 {
reg = <0x04>;
phandle = <0xf3>;
endpoint {
remote-endpoint = <0x185>;
phandle = <0x212>;
};
};
};
};
amx@2903200 {
compatible = "nvidia,tegra194-amx";
reg = <0x00 0x2903200 0x00 0x100>;
nvidia,ahub-amx-id = <0x02>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "AMX3";
status = "okay";
phandle = <0x61>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x186>;
phandle = <0x213>;
};
};
port@1 {
reg = <0x01>;
endpoint {
remote-endpoint = <0x187>;
phandle = <0x214>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x188>;
phandle = <0x215>;
};
};
port@3 {
reg = <0x03>;
endpoint {
remote-endpoint = <0x189>;
phandle = <0x216>;
};
};
port@4 {
reg = <0x04>;
phandle = <0xf4>;
endpoint {
remote-endpoint = <0x18a>;
phandle = <0x217>;
};
};
};
};
amx@2903300 {
compatible = "nvidia,tegra194-amx";
reg = <0x00 0x2903300 0x00 0x100>;
nvidia,ahub-amx-id = <0x03>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "AMX4";
status = "okay";
phandle = <0x62>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x18b>;
phandle = <0x218>;
};
};
port@1 {
reg = <0x01>;
endpoint {
remote-endpoint = <0x18c>;
phandle = <0x219>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x18d>;
phandle = <0x21a>;
};
};
port@3 {
reg = <0x03>;
endpoint {
remote-endpoint = <0x18e>;
phandle = <0x21b>;
};
};
port@4 {
reg = <0x04>;
phandle = <0xf5>;
endpoint {
remote-endpoint = <0x18f>;
phandle = <0x21c>;
};
};
};
};
adx@2903800 {
compatible = "nvidia,tegra210-adx";
reg = <0x00 0x2903800 0x00 0x100>;
nvidia,ahub-adx-id = <0x00>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "ADX1";
status = "okay";
phandle = <0x63>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
phandle = <0xf6>;
endpoint {
remote-endpoint = <0x190>;
phandle = <0x21e>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xf7>;
endpoint {
remote-endpoint = <0x191>;
phandle = <0x21f>;
};
};
port@2 {
reg = <0x02>;
phandle = <0xf8>;
endpoint {
remote-endpoint = <0x192>;
phandle = <0x220>;
};
};
port@3 {
reg = <0x03>;
phandle = <0xf9>;
endpoint {
remote-endpoint = <0x193>;
phandle = <0x221>;
};
};
port@4 {
reg = <0x04>;
endpoint {
remote-endpoint = <0x194>;
phandle = <0x21d>;
};
};
};
};
adx@2903900 {
compatible = "nvidia,tegra210-adx";
reg = <0x00 0x2903900 0x00 0x100>;
nvidia,ahub-adx-id = <0x01>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "ADX2";
status = "okay";
phandle = <0x64>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
phandle = <0xfa>;
endpoint {
remote-endpoint = <0x195>;
phandle = <0x223>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xfb>;
endpoint {
remote-endpoint = <0x196>;
phandle = <0x224>;
};
};
port@2 {
reg = <0x02>;
phandle = <0xfc>;
endpoint {
remote-endpoint = <0x197>;
phandle = <0x225>;
};
};
port@3 {
reg = <0x03>;
phandle = <0xfd>;
endpoint {
remote-endpoint = <0x198>;
phandle = <0x226>;
};
};
port@4 {
reg = <0x04>;
endpoint {
remote-endpoint = <0x199>;
phandle = <0x222>;
};
};
};
};
adx@2903a00 {
compatible = "nvidia,tegra210-adx";
reg = <0x00 0x2903a00 0x00 0x100>;
nvidia,ahub-adx-id = <0x02>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "ADX3";
status = "okay";
phandle = <0x65>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
phandle = <0xfe>;
endpoint {
remote-endpoint = <0x19a>;
phandle = <0x228>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xff>;
endpoint {
remote-endpoint = <0x19b>;
phandle = <0x229>;
};
};
port@2 {
reg = <0x02>;
phandle = <0x100>;
endpoint {
remote-endpoint = <0x19c>;
phandle = <0x22a>;
};
};
port@3 {
reg = <0x03>;
phandle = <0x101>;
endpoint {
remote-endpoint = <0x19d>;
phandle = <0x22b>;
};
};
port@4 {
reg = <0x04>;
endpoint {
remote-endpoint = <0x19e>;
phandle = <0x227>;
};
};
};
};
adx@2903b00 {
compatible = "nvidia,tegra210-adx";
reg = <0x00 0x2903b00 0x00 0x100>;
nvidia,ahub-adx-id = <0x03>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "ADX4";
status = "okay";
phandle = <0x66>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
phandle = <0x102>;
endpoint {
remote-endpoint = <0x19f>;
phandle = <0x22d>;
};
};
port@1 {
reg = <0x01>;
phandle = <0x103>;
endpoint {
remote-endpoint = <0x1a0>;
phandle = <0x22e>;
};
};
port@2 {
reg = <0x02>;
phandle = <0x104>;
endpoint {
remote-endpoint = <0x1a1>;
phandle = <0x22f>;
};
};
port@3 {
reg = <0x03>;
phandle = <0x105>;
endpoint {
remote-endpoint = <0x1a2>;
phandle = <0x230>;
};
};
port@4 {
reg = <0x04>;
endpoint {
remote-endpoint = <0x1a3>;
phandle = <0x22c>;
};
};
};
};
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>;
sound-name-prefix = "DMIC1";
status = "okay";
phandle = <0x58>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1a4>;
phandle = <0x1e7>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xd4>;
endpoint {
dai-format = "i2s";
remote-endpoint = <0x1a5>;
phandle = <0x1a6>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x1a6>;
phandle = <0x1a5>;
};
};
};
};
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>;
sound-name-prefix = "DMIC2";
status = "okay";
phandle = <0x59>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1a7>;
phandle = <0x1e8>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xd5>;
endpoint {
dai-format = "i2s";
remote-endpoint = <0x1a8>;
phandle = <0x1a9>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x1a9>;
phandle = <0x1a8>;
};
};
};
};
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>;
sound-name-prefix = "DMIC3";
status = "okay";
phandle = <0x5a>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1aa>;
phandle = <0x1e9>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xd6>;
endpoint {
remote-endpoint = <0x1ab>;
phandle = <0x1ac>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x1ac>;
phandle = <0x1ab>;
};
};
};
};
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>;
sound-name-prefix = "DMIC4";
status = "okay";
phandle = <0x5b>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1ad>;
phandle = <0x1ea>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xd7>;
endpoint {
remote-endpoint = <0x1ae>;
phandle = <0x1af>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x1af>;
phandle = <0x1ae>;
};
};
};
};
afc@2907000 {
compatible = "nvidia,tegra186-afc";
reg = <0x00 0x2907000 0x00 0x100>;
nvidia,ahub-afc-id = <0x00>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "AFC1";
status = "okay";
phandle = <0x6c>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1b0>;
phandle = <0x200>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xe0>;
endpoint {
remote-endpoint = <0x1b0>;
phandle = <0x453>;
};
};
};
};
afc@2907100 {
compatible = "nvidia,tegra186-afc";
reg = <0x00 0x2907100 0x00 0x100>;
nvidia,ahub-afc-id = <0x01>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "AFC2";
status = "okay";
phandle = <0x6d>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1b1>;
phandle = <0x201>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xe1>;
ndpoint {
remote-endpoint = <0x1b1>;
phandle = <0x454>;
};
};
};
};
afc@2907200 {
compatible = "nvidia,tegra186-afc";
reg = <0x00 0x2907200 0x00 0x100>;
nvidia,ahub-afc-id = <0x02>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "AFC3";
status = "okay";
phandle = <0x6e>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1b2>;
phandle = <0x202>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xe2>;
endpoint {
remote-endpoint = <0x1b2>;
phandle = <0x455>;
};
};
};
};
afc@2907300 {
compatible = "nvidia,tegra186-afc";
reg = <0x00 0x2907300 0x00 0x100>;
nvidia,ahub-afc-id = <0x03>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "AFC4";
status = "okay";
phandle = <0x6f>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1b3>;
phandle = <0x203>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xe3>;
endpoint {
remote-endpoint = <0x1b3>;
phandle = <0x456>;
};
};
};
};
afc@2907400 {
compatible = "nvidia,tegra186-afc";
reg = <0x00 0x2907400 0x00 0x100>;
nvidia,ahub-afc-id = <0x04>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "AFC5";
status = "okay";
phandle = <0x70>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1b4>;
phandle = <0x204>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xe4>;
endpoint {
remote-endpoint = <0x1b4>;
phandle = <0x457>;
};
};
};
};
afc@2907500 {
compatible = "nvidia,tegra186-afc";
reg = <0x00 0x2907500 0x00 0x100>;
nvidia,ahub-afc-id = <0x05>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "AFC6";
status = "okay";
phandle = <0x71>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1b5>;
phandle = <0x205>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xe5>;
endpoint {
remote-endpoint = <0x1b5>;
phandle = <0x458>;
};
};
};
};
mvc@290a000 {
compatible = "nvidia,tegra210-mvc";
reg = <0x00 0x290a000 0x00 0x200>;
nvidia,ahub-mvc-id = <0x00>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "MVC1";
status = "okay";
phandle = <0x72>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1b6>;
phandle = <0x207>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xde>;
endpoint {
remote-endpoint = <0x1b6>;
phandle = <0x459>;
};
};
};
};
mvc@290a200 {
compatible = "nvidia,tegra210-mvc";
reg = <0x00 0x290a200 0x00 0x200>;
nvidia,ahub-mvc-id = <0x01>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "MVC2";
status = "okay";
phandle = <0x73>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1b7>;
phandle = <0x208>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xdf>;
endpoint {
remote-endpoint = <0x1b7>;
phandle = <0x45a>;
};
};
};
};
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 = <0x45b>;
};
asrc@2910000 {
compatible = "nvidia,tegra194-asrc";
reg = <0x00 0x2910000 0x00 0x2000>;
nvidia,ahub-asrc-id = <0x00>;
#sound-dai-cells = <0x01>;
sound-name-prefix = "ASRC";
status = "okay";
phandle = <0x75>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1b8>;
phandle = <0x231>;
};
};
port@1 {
reg = <0x01>;
endpoint {
remote-endpoint = <0x1b9>;
phandle = <0x232>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x1ba>;
phandle = <0x233>;
};
};
port@3 {
reg = <0x03>;
endpoint {
remote-endpoint = <0x1bb>;
phandle = <0x234>;
};
};
port@4 {
reg = <0x04>;
endpoint {
remote-endpoint = <0x1bc>;
phandle = <0x235>;
};
};
port@5 {
reg = <0x05>;
endpoint {
remote-endpoint = <0x1bd>;
phandle = <0x236>;
};
};
port@6 {
reg = <0x06>;
endpoint {
remote-endpoint = <0x1be>;
phandle = <0x237>;
};
};
port@7 {
reg = <0x07>;
phandle = <0xe6>;
endpoint {
remote-endpoint = <0x1bf>;
phandle = <0x238>;
};
};
port@8 {
reg = <0x08>;
phandle = <0xe7>;
endpoint {
remote-endpoint = <0x1c0>;
phandle = <0x239>;
};
};
port@9 {
reg = <0x09>;
phandle = <0xe8>;
endpoint {
remote-endpoint = <0x1c1>;
phandle = <0x23a>;
};
};
port@10 {
reg = <0x0a>;
phandle = <0xe9>;
endpoint {
remote-endpoint = <0x1c2>;
phandle = <0x23b>;
};
};
port@11 {
reg = <0x0b>;
phandle = <0xea>;
endpoint {
remote-endpoint = <0x1c3>;
phandle = <0x23c>;
};
};
port@12 {
reg = <0x0c>;
phandle = <0xeb>;
endpoint {
remote-endpoint = <0x1c4>;
phandle = <0x23d>;
};
};
};
};
arad@290e400 {
compatible = "nvidia,tegra186-arad";
reg = <0x00 0x290e400 0x00 0x400>;
nvidia,ahub-arad-id = <0x00>;
#sound-dai-cells = <0x01>;
status = "okay";
phandle = <0x76>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
phandle = <0x45c>;
endpoint {
remote-endpoint = <0x1c5>;
phandle = <0x23e>;
};
};
};
};
ahc@290b900 {
compatible = "nvidia,tegra186-ahc";
reg = <0x00 0x290b900 0x00 0x200>;
interrupt-parent = <0x12e>;
interrupts = <0x00 0x38 0x04 0x00>;
#sound-dai-cells = <0x01>;
status = "okay";
phandle = <0x45d>;
};
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>;
sound-name-prefix = "OPE1";
status = "okay";
phandle = <0x74>;
peq@2908100 {
status = "okay";
};
mbdrc@2908200 {
status = "okay";
};
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1c6>;
phandle = <0x206>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xf1>;
endpoint {
remote-endpoint = <0x1c6>;
phandle = <0x45e>;
};
};
};
};
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>;
sound-name-prefix = "DSPK1";
status = "okay";
phandle = <0x5c>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1c7>;
phandle = <0x1eb>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xd8>;
endpoint {
remote-endpoint = <0x1c8>;
phandle = <0x1c9>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x1c9>;
phandle = <0x1c8>;
};
};
};
};
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>;
sound-name-prefix = "DSPK2";
status = "okay";
phandle = <0x5d>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1ca>;
phandle = <0x1ec>;
};
};
port@1 {
reg = <0x01>;
phandle = <0xd9>;
endpoint {
remote-endpoint = <0x1cb>;
phandle = <0x1cc>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x1cc>;
phandle = <0x1cb>;
};
};
};
};
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
remote-endpoint = <0x1cd>;
phandle = <0x130>;
};
};
port@1 {
reg = <0x01>;
endpoint {
remote-endpoint = <0x1ce>;
phandle = <0x131>;
};
};
port@2 {
reg = <0x02>;
endpoint {
remote-endpoint = <0x1cf>;
phandle = <0x132>;
};
};
port@3 {
reg = <0x03>;
endpoint {
remote-endpoint = <0x1d0>;
phandle = <0x133>;
};
};
port@4 {
reg = <0x04>;
endpoint {
remote-endpoint = <0x1d1>;
phandle = <0x134>;
};
};
port@5 {
reg = <0x05>;
endpoint {
remote-endpoint = <0x1d2>;
phandle = <0x135>;
};
};
port@6 {
reg = <0x06>;
endpoint {
remote-endpoint = <0x1d3>;
phandle = <0x136>;
};
};
port@7 {
reg = <0x07>;
endpoint {
remote-endpoint = <0x1d4>;
phandle = <0x137>;
};
};
port@8 {
reg = <0x08>;
endpoint {
remote-endpoint = <0x1d5>;
phandle = <0x138>;
};
};
port@9 {
reg = <0x09>;
endpoint {
remote-endpoint = <0x1d6>;
phandle = <0x139>;
};
};
port@10 {
reg = <0x0a>;
endpoint {
remote-endpoint = <0x1d7>;
phandle = <0x13a>;
};
};
port@11 {
reg = <0x0b>;
endpoint {
remote-endpoint = <0x1d8>;
phandle = <0x13b>;
};
};
port@12 {
reg = <0x0c>;
endpoint {
remote-endpoint = <0x1d9>;
phandle = <0x13c>;
};
};
port@13 {
reg = <0x0d>;
endpoint {
remote-endpoint = <0x1da>;
phandle = <0x13d>;
};
};
port@14 {
reg = <0x0e>;
endpoint {
remote-endpoint = <0x1db>;
phandle = <0x13e>;
};
};
port@15 {
reg = <0x0f>;
endpoint {
remote-endpoint = <0x1dc>;
phandle = <0x13f>;
};
};
port@16 {
reg = <0x10>;
endpoint {
remote-endpoint = <0x1dd>;
phandle = <0x140>;
};
};
port@17 {
reg = <0x11>;
endpoint {
remote-endpoint = <0x1de>;
phandle = <0x141>;
};
};
port@18 {
reg = <0x12>;
endpoint {
remote-endpoint = <0x1df>;
phandle = <0x142>;
};
};
port@19 {
reg = <0x13>;
endpoint {
remote-endpoint = <0x1e0>;
phandle = <0x143>;
};
};
port@20 {
reg = <0x14>;
phandle = <0x8f>;
endpoint {
remote-endpoint = <0x1e1>;
phandle = <0x16b>;
};
};
port@21 {
reg = <0x15>;
phandle = <0x90>;
endpoint {
remote-endpoint = <0x1e2>;
phandle = <0x16e>;
};
};
port@22 {
reg = <0x16>;
phandle = <0x91>;
endpoint {
remote-endpoint = <0x1e3>;
phandle = <0x170>;
};
};
port@23 {
reg = <0x17>;
phandle = <0x92>;
endpoint {
remote-endpoint = <0x1e4>;
phandle = <0x173>;
};
};
port@24 {
reg = <0x18>;
phandle = <0x93>;
endpoint {
remote-endpoint = <0x1e5>;
phandle = <0x176>;
};
};
port@25 {
reg = <0x19>;
phandle = <0x94>;
endpoint {
remote-endpoint = <0x1e6>;
phandle = <0x179>;
};
};
port@26 {
reg = <0x1a>;
phandle = <0x95>;
endpoint {
remote-endpoint = <0x1e7>;
phandle = <0x1a4>;
};
};
port@27 {
reg = <0x1b>;
phandle = <0x96>;
endpoint {
remote-endpoint = <0x1e8>;
phandle = <0x1a7>;
};
};
port@28 {
reg = <0x1c>;
phandle = <0x97>;
endpoint {
remote-endpoint = <0x1e9>;
phandle = <0x1aa>;
};
};
port@29 {
reg = <0x1d>;
phandle = <0x98>;
endpoint {
remote-endpoint = <0x1ea>;
phandle = <0x1ad>;
};
};
port@30 {
reg = <0x1e>;
phandle = <0x99>;
endpoint {
remote-endpoint = <0x1eb>;
phandle = <0x1c7>;
};
};
port@31 {
reg = <0x1f>;
phandle = <0x9a>;
endpoint {
remote-endpoint = <0x1ec>;
phandle = <0x1ca>;
};
};
port@32 {
reg = <0x20>;
phandle = <0x9b>;
endpoint {
remote-endpoint = <0x1ed>;
phandle = <0x158>;
};
};
port@34 {
reg = <0x22>;
phandle = <0x9c>;
endpoint {
remote-endpoint = <0x1ee>;
phandle = <0x159>;
};
};
port@36 {
reg = <0x24>;
phandle = <0x9d>;
endpoint {
remote-endpoint = <0x1ef>;
phandle = <0x15a>;
};
};
port@38 {
reg = <0x26>;
phandle = <0x9e>;
endpoint {
remote-endpoint = <0x1f0>;
phandle = <0x15b>;
};
};
port@84 {
reg = <0x54>;
phandle = <0xaf>;
endpoint {
remote-endpoint = <0x1f1>;
phandle = <0x15c>;
};
};
port@85 {
reg = <0x55>;
phandle = <0xb0>;
endpoint {
remote-endpoint = <0x1f2>;
phandle = <0x15d>;
};
};
port@86 {
reg = <0x56>;
phandle = <0xb1>;
endpoint {
remote-endpoint = <0x1f3>;
phandle = <0x15e>;
};
};
port@87 {
reg = <0x57>;
phandle = <0xb2>;
endpoint {
remote-endpoint = <0x1f4>;
phandle = <0x15f>;
};
};
port@88 {
reg = <0x58>;
phandle = <0xb3>;
endpoint {
remote-endpoint = <0x1f5>;
phandle = <0x160>;
};
};
port@89 {
reg = <0x59>;
phandle = <0xb4>;
endpoint {
remote-endpoint = <0x1f6>;
phandle = <0x161>;
};
};
port@90 {
reg = <0x5a>;
phandle = <0xb5>;
endpoint {
remote-endpoint = <0x1f7>;
phandle = <0x162>;
};
};
port@91 {
reg = <0x5b>;
phandle = <0xb6>;
endpoint {
remote-endpoint = <0x1f8>;
phandle = <0x163>;
};
};
port@92 {
reg = <0x5c>;
phandle = <0xb7>;
endpoint {
remote-endpoint = <0x1f9>;
phandle = <0x164>;
};
};
port@93 {
reg = <0x5d>;
phandle = <0xb8>;
endpoint {
remote-endpoint = <0x1fa>;
phandle = <0x165>;
};
};
port@94 {
reg = <0x5e>;
phandle = <0x45f>;
endpoint {
remote-endpoint = <0x1fb>;
phandle = <0x166>;
};
};
port@95 {
reg = <0x5f>;
phandle = <0x460>;
endpoint {
remote-endpoint = <0x1fc>;
phandle = <0x167>;
};
};
port@96 {
reg = <0x60>;
phandle = <0x461>;
endpoint {
remote-endpoint = <0x1fd>;
phandle = <0x168>;
};
};
port@97 {
reg = <0x61>;
phandle = <0x462>;
endpoint {
remote-endpoint = <0x1fe>;
phandle = <0x169>;
};
};
port@98 {
reg = <0x62>;
phandle = <0x463>;
endpoint {
remote-endpoint = <0x1ff>;
phandle = <0x16a>;
};
};
port@114 {
reg = <0x72>;
phandle = <0xa1>;
endpoint {
remote-endpoint = <0x200>;
phandle = <0x1b0>;
};
};
port@115 {
reg = <0x72>;
phandle = <0xa2>;
endpoint {
remote-endpoint = <0x201>;
phandle = <0x1b1>;
};
};
port@116 {
reg = <0x72>;
phandle = <0xa3>;
endpoint {
remote-endpoint = <0x202>;
phandle = <0x1b2>;
};
};
port@117 {
reg = <0x72>;
phandle = <0xa4>;
endpoint {
remote-endpoint = <0x203>;
phandle = <0x1b3>;
};
};
port@118 {
reg = <0x72>;
phandle = <0xa5>;
endpoint {
remote-endpoint = <0x204>;
phandle = <0x1b4>;
};
};
port@119 {
reg = <0x72>;
phandle = <0xa6>;
endpoint {
remote-endpoint = <0x205>;
phandle = <0x1b5>;
};
};
port@112 {
reg = <0x70>;
phandle = <0xb9>;
endpoint {
remote-endpoint = <0x206>;
phandle = <0x1c6>;
};
};
port@40 {
reg = <0x28>;
phandle = <0x9f>;
endpoint {
remote-endpoint = <0x207>;
phandle = <0x1b6>;
};
};
port@42 {
reg = <0x2a>;
phandle = <0xa0>;
endpoint {
remote-endpoint = <0x208>;
phandle = <0x1b7>;
};
};
port@44 {
reg = <0x2c>;
phandle = <0xba>;
endpoint {
remote-endpoint = <0x209>;
phandle = <0x17c>;
};
};
port@45 {
reg = <0x2d>;
phandle = <0xbb>;
endpoint {
remote-endpoint = <0x20a>;
phandle = <0x17d>;
};
};
port@46 {
reg = <0x2e>;
phandle = <0xbc>;
endpoint {
remote-endpoint = <0x20b>;
phandle = <0x17e>;
};
};
port@47 {
reg = <0x2f>;
phandle = <0xbd>;
endpoint {
remote-endpoint = <0x20c>;
phandle = <0x17f>;
};
};
port@48 {
reg = <0x30>;
phandle = <0x464>;
endpoint {
remote-endpoint = <0x20d>;
phandle = <0x180>;
};
};
port@49 {
reg = <0x31>;
phandle = <0xbe>;
endpoint {
remote-endpoint = <0x20e>;
phandle = <0x181>;
};
};
port@50 {
reg = <0x32>;
phandle = <0xbf>;
endpoint {
remote-endpoint = <0x20f>;
phandle = <0x182>;
};
};
port@51 {
reg = <0x33>;
phandle = <0xc0>;
endpoint {
remote-endpoint = <0x210>;
phandle = <0x183>;
};
};
port@52 {
reg = <0x34>;
phandle = <0xc1>;
endpoint {
remote-endpoint = <0x211>;
phandle = <0x184>;
};
};
port@53 {
reg = <0x35>;
phandle = <0x465>;
endpoint {
remote-endpoint = <0x212>;
phandle = <0x185>;
};
};
port@54 {
reg = <0x36>;
phandle = <0xc2>;
endpoint {
remote-endpoint = <0x213>;
phandle = <0x186>;
};
};
port@55 {
reg = <0x37>;
phandle = <0xc3>;
endpoint {
remote-endpoint = <0x214>;
phandle = <0x187>;
};
};
port@56 {
reg = <0x38>;
phandle = <0xc4>;
endpoint {
remote-endpoint = <0x215>;
phandle = <0x188>;
};
};
port@57 {
reg = <0x39>;
phandle = <0xc5>;
endpoint {
remote-endpoint = <0x216>;
phandle = <0x189>;
};
};
port@58 {
reg = <0x3a>;
phandle = <0x466>;
endpoint {
remote-endpoint = <0x217>;
phandle = <0x18a>;
};
};
port@59 {
reg = <0x3b>;
phandle = <0xc6>;
endpoint {
remote-endpoint = <0x218>;
phandle = <0x18b>;
};
};
port@60 {
reg = <0x3c>;
phandle = <0xc7>;
endpoint {
remote-endpoint = <0x219>;
phandle = <0x18c>;
};
};
port@61 {
reg = <0x3d>;
phandle = <0xc8>;
endpoint {
remote-endpoint = <0x21a>;
phandle = <0x18d>;
};
};
port@62 {
reg = <0x3e>;
phandle = <0xc9>;
endpoint {
remote-endpoint = <0x21b>;
phandle = <0x18e>;
};
};
port@63 {
reg = <0x3f>;
phandle = <0x467>;
endpoint {
remote-endpoint = <0x21c>;
phandle = <0x18f>;
};
};
port@64 {
reg = <0x40>;
phandle = <0xca>;
endpoint {
remote-endpoint = <0x21d>;
phandle = <0x194>;
};
};
port@65 {
reg = <0x41>;
phandle = <0x468>;
endpoint {
remote-endpoint = <0x21e>;
phandle = <0x190>;
};
};
port@66 {
reg = <0x42>;
phandle = <0x469>;
endpoint {
remote-endpoint = <0x21f>;
phandle = <0x191>;
};
};
port@67 {
reg = <0x43>;
phandle = <0x46a>;
endpoint {
remote-endpoint = <0x220>;
phandle = <0x192>;
};
};
port@68 {
reg = <0x44>;
phandle = <0x46b>;
endpoint {
remote-endpoint = <0x221>;
phandle = <0x193>;
};
};
port@69 {
reg = <0x45>;
phandle = <0xcb>;
endpoint {
remote-endpoint = <0x222>;
phandle = <0x199>;
};
};
port@70 {
reg = <0x46>;
phandle = <0x46c>;
endpoint {
remote-endpoint = <0x223>;
phandle = <0x195>;
};
};
port@71 {
reg = <0x47>;
phandle = <0x46d>;
endpoint {
remote-endpoint = <0x224>;
phandle = <0x196>;
};
};
port@72 {
reg = <0x48>;
phandle = <0x46e>;
endpoint {
remote-endpoint = <0x225>;
phandle = <0x197>;
};
};
port@73 {
reg = <0x49>;
phandle = <0x46f>;
endpoint {
remote-endpoint = <0x226>;
phandle = <0x198>;
};
};
port@74 {
reg = <0x4a>;
phandle = <0xcc>;
endpoint {
remote-endpoint = <0x227>;
phandle = <0x19e>;
};
};
port@75 {
reg = <0x4b>;
phandle = <0x470>;
endpoint {
remote-endpoint = <0x228>;
phandle = <0x19a>;
};
};
port@76 {
reg = <0x4c>;
phandle = <0x471>;
endpoint {
remote-endpoint = <0x229>;
phandle = <0x19b>;
};
};
port@77 {
reg = <0x4d>;
phandle = <0x472>;
endpoint {
remote-endpoint = <0x22a>;
phandle = <0x19c>;
};
};
port@78 {
reg = <0x4e>;
phandle = <0x473>;
endpoint {
remote-endpoint = <0x22b>;
phandle = <0x19d>;
};
};
port@79 {
reg = <0x4f>;
phandle = <0xcd>;
endpoint {
remote-endpoint = <0x22c>;
phandle = <0x1a3>;
};
};
port@80 {
reg = <0x50>;
phandle = <0x474>;
endpoint {
remote-endpoint = <0x22d>;
phandle = <0x19f>;
};
};
port@81 {
reg = <0x51>;
phandle = <0x475>;
endpoint {
remote-endpoint = <0x22e>;
phandle = <0x1a0>;
};
};
port@82 {
reg = <0x52>;
phandle = <0x476>;
endpoint {
remote-endpoint = <0x22f>;
phandle = <0x1a1>;
};
};
port@83 {
reg = <0x53>;
phandle = <0x477>;
endpoint {
remote-endpoint = <0x230>;
phandle = <0x1a2>;
};
};
port@99 {
reg = <0x63>;
phandle = <0xa7>;
endpoint {
remote-endpoint = <0x231>;
phandle = <0x1b8>;
};
};
port@101 {
reg = <0x65>;
phandle = <0xa8>;
endpoint {
remote-endpoint = <0x232>;
phandle = <0x1b9>;
};
};
port@103 {
reg = <0x67>;
phandle = <0xa9>;
endpoint {
remote-endpoint = <0x233>;
phandle = <0x1ba>;
};
};
port@105 {
reg = <0x69>;
phandle = <0xaa>;
endpoint {
remote-endpoint = <0x234>;
phandle = <0x1bb>;
};
};
port@107 {
reg = <0x6b>;
phandle = <0xab>;
endpoint {
remote-endpoint = <0x235>;
phandle = <0x1bc>;
};
};
port@109 {
reg = <0x6d>;
phandle = <0xac>;
endpoint {
remote-endpoint = <0x236>;
phandle = <0x1bd>;
};
};
port@111 {
reg = <0x6f>;
phandle = <0xad>;
endpoint {
remote-endpoint = <0x237>;
phandle = <0x1be>;
};
};
port@100 {
reg = <0x64>;
phandle = <0x478>;
endpoint {
remote-endpoint = <0x238>;
phandle = <0x1bf>;
};
};
port@102 {
reg = <0x66>;
phandle = <0x479>;
endpoint {
remote-endpoint = <0x239>;
phandle = <0x1c0>;
};
};
port@104 {
reg = <0x68>;
phandle = <0x47a>;
endpoint {
remote-endpoint = <0x23a>;
phandle = <0x1c1>;
};
};
port@106 {
reg = <0x6a>;
phandle = <0x47b>;
endpoint {
remote-endpoint = <0x23b>;
phandle = <0x1c2>;
};
};
port@108 {
reg = <0x6c>;
phandle = <0x47c>;
endpoint {
remote-endpoint = <0x23c>;
phandle = <0x1c3>;
};
};
port@110 {
reg = <0x6e>;
phandle = <0x47d>;
endpoint {
remote-endpoint = <0x23d>;
phandle = <0x1c4>;
};
};
port@125 {
reg = <0x7d>;
phandle = <0xae>;
endpoint {
remote-endpoint = <0x23e>;
phandle = <0x1c5>;
};
};
};
};
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 = <0x12e>;
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 = <0x51>;
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";
};
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
phandle = <0x47e>;
endpoint {
remote-endpoint = <0x23f>;
phandle = <0x243>;
};
};
port@1 {
reg = <0x01>;
phandle = <0x47f>;
endpoint {
remote-endpoint = <0x240>;
phandle = <0x244>;
};
};
port@2 {
reg = <0x02>;
phandle = <0x480>;
endpoint {
remote-endpoint = <0x241>;
phandle = <0x245>;
};
};
port@3 {
reg = <0x03>;
phandle = <0x481>;
endpoint {
remote-endpoint = <0x242>;
phandle = <0x246>;
};
};
port@36 {
reg = <0x24>;
phandle = <0x8b>;
endpoint {
remote-endpoint = <0x243>;
phandle = <0x23f>;
};
};
port@37 {
reg = <0x25>;
phandle = <0x8c>;
endpoint {
remote-endpoint = <0x244>;
phandle = <0x240>;
};
};
port@51 {
reg = <0x33>;
phandle = <0x8d>;
endpoint {
remote-endpoint = <0x245>;
phandle = <0x241>;
};
};
port@52 {
reg = <0x34>;
phandle = <0x8e>;
endpoint {
remote-endpoint = <0x246>;
phandle = <0x242>;
};
};
port@16 {
reg = <0x10>;
phandle = <0x106>;
endpoint {
remote-endpoint = <0x247>;
phandle = <0x144>;
};
};
port@17 {
reg = <0x11>;
phandle = <0x107>;
endpoint {
remote-endpoint = <0x248>;
phandle = <0x145>;
};
};
port@18 {
reg = <0x12>;
phandle = <0x108>;
endpoint {
remote-endpoint = <0x249>;
phandle = <0x146>;
};
};
port@19 {
reg = <0x13>;
phandle = <0x109>;
endpoint {
remote-endpoint = <0x24a>;
phandle = <0x147>;
};
};
port@20 {
reg = <0x14>;
phandle = <0x10a>;
endpoint {
remote-endpoint = <0x24b>;
phandle = <0x148>;
};
};
port@21 {
reg = <0x15>;
phandle = <0x10b>;
endpoint {
remote-endpoint = <0x24c>;
phandle = <0x149>;
};
};
port@22 {
reg = <0x16>;
phandle = <0x10c>;
endpoint {
remote-endpoint = <0x24d>;
phandle = <0x14a>;
};
};
port@23 {
reg = <0x17>;
phandle = <0x10d>;
endpoint {
remote-endpoint = <0x24e>;
phandle = <0x14b>;
};
};
port@24 {
reg = <0x18>;
phandle = <0x10e>;
endpoint {
remote-endpoint = <0x24f>;
phandle = <0x14c>;
};
};
port@25 {
reg = <0x19>;
phandle = <0x10f>;
endpoint {
remote-endpoint = <0x250>;
phandle = <0x14d>;
};
};
port@26 {
reg = <0x1a>;
phandle = <0x110>;
endpoint {
remote-endpoint = <0x251>;
phandle = <0x14e>;
};
};
port@27 {
reg = <0x1b>;
phandle = <0x111>;
endpoint {
remote-endpoint = <0x252>;
phandle = <0x14f>;
};
};
port@28 {
reg = <0x1c>;
phandle = <0x112>;
endpoint {
remote-endpoint = <0x253>;
phandle = <0x150>;
};
};
port@29 {
reg = <0x1d>;
phandle = <0x113>;
endpoint {
remote-endpoint = <0x254>;
phandle = <0x151>;
};
};
port@30 {
reg = <0x1e>;
phandle = <0x114>;
endpoint {
remote-endpoint = <0x255>;
phandle = <0x152>;
};
};
port@31 {
reg = <0x1f>;
phandle = <0x115>;
endpoint {
remote-endpoint = <0x256>;
phandle = <0x153>;
};
};
port@32 {
reg = <0x20>;
phandle = <0x116>;
endpoint {
remote-endpoint = <0x257>;
phandle = <0x154>;
};
};
port@33 {
reg = <0x21>;
phandle = <0x117>;
endpoint {
remote-endpoint = <0x258>;
phandle = <0x155>;
};
};
port@34 {
reg = <0x22>;
phandle = <0x118>;
endpoint {
remote-endpoint = <0x259>;
phandle = <0x156>;
};
};
port@35 {
reg = <0x23>;
phandle = <0x119>;
endpoint {
remote-endpoint = <0x25a>;
phandle = <0x157>;
};
};
};
};
};
acsl_audio {
compatible = "nvidia,tegra23x-acsl-audio";
iommus = <0x02 0x02>;
iommu-resv-regions = <0x00 0x00 0x00 0x40000000 0x00 0x60000000 0xffffffff 0xffffffff>;
status = "okay";
phandle = <0x482>;
};
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 = <0x23 0x15 0x23 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";
enabled-i2s-mask = <0x01 0x00>;
i2s7 {
clocks = <0x04 0x1a4 0x04 0x68 0x04 0x1a2 0x04 0x1a3 0x04 0x1a2>;
resets = <0x04 0x4e>;
frame-slave;
bitclock-inversion;
frame-noninversion;
tx-mask = <0xff>;
rx-mask = <0xff>;
clk-trim = <0x00>;
format = "dsp_b";
fsync-width = <0x00>;
};
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 = <0x25b>;
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 = <0x25b 0x02 0x90000000 0x10000>;
phandle = <0x483>;
hsp {
compatible = "nvidia,tegra186-hsp-mailbox";
nvidia,hsp-shared-mailbox = <0x25c 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 = <0x25d 0x04 0x70100000 0x100000>;
nvidia,ivc-channels = <0x25e 0x02 0x90000000 0x10000>;
nvidia,autosuspend-delay-ms = <0x1388>;
status = "okay";
phandle = <0x260>;
hsp-vm1 {
compatible = "nvidia,tegra-camrtc-hsp-vm";
mboxes = <0x25f 0x01 0x80000000 0x25f 0x01 0x01 0x25f 0x02 0x00>;
mbox-names = "vm-tx\0vm-rx\0vm-ss";
};
hsp-vm2 {
compatible = "nvidia,tegra-camrtc-hsp-vm";
mboxes = <0x25f 0x01 0x80000002 0x25f 0x01 0x03 0x25f 0x02 0x01>;
mbox-names = "vm-tx\0vm-rx\0vm-ss";
status = "disabled";
};
hsp-vm3 {
compatible = "nvidia,tegra-camrtc-hsp-vm";
mboxes = <0x25f 0x01 0x80000004 0x25f 0x01 0x05 0x25f 0x02 0x02>;
mbox-names = "vm-tx\0vm-rx\0vm-ss";
status = "disabled";
};
hsp-vm4 {
compatible = "nvidia,tegra-camrtc-hsp-vm";
mboxes = <0x25f 0x01 0x06 0x25f 0x01 0x80000007 0x25f 0x02 0x03>;
mbox-names = "vm-tx\0vm-rx\0vm-ss";
status = "disabled";
};
hsp {
compatible = "nvidia,tegra186-hsp-mailbox";
nvidia,hsp-shared-mailbox = <0x25f 0x01 0x25f 0x06>;
nvidia,hsp-shared-mailbox-names = "ivc-pair\0cmd-pair";
};
};
camera-ivc-channels {
phandle = <0x25e>;
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 = <0x260 0x261 0x262 0x263>;
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 = <0x25d>;
};
tegra-capture-vi {
compatible = "nvidia,tegra-camrtc-capture-vi";
nvidia,vi-devices = <0x261 0x263>;
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 = <0x484>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
status = "disabled";
phandle = <0x485>;
endpoint {
vc-id = <0x00>;
port-index = <0x00>;
bus-width = <0x04>;
remote-endpoint = <0x264>;
status = "disabled";
phandle = <0x2a9>;
};
};
port@1 {
reg = <0x01>;
status = "disabled";
phandle = <0x486>;
endpoint {
vc-id = <0x00>;
port-index = <0x02>;
bus-width = <0x04>;
remote-endpoint = <0x265>;
status = "disabled";
phandle = <0x2ab>;
};
};
port@2 {
reg = <0x02>;
status = "disabled";
phandle = <0x487>;
endpoint {
vc-id = <0x00>;
port-index = <0x02>;
bus-width = <0x02>;
remote-endpoint = <0x266>;
status = "disabled";
phandle = <0x2ad>;
};
};
port@3 {
reg = <0x03>;
status = "disabled";
phandle = <0x488>;
endpoint {
vc-id = <0x00>;
port-index = <0x03>;
bus-width = <0x02>;
remote-endpoint = <0x267>;
status = "disabled";
phandle = <0x2af>;
};
};
port@4 {
reg = <0x04>;
status = "disabled";
phandle = <0x489>;
endpoint {
vc-id = <0x00>;
port-index = <0x04>;
bus-width = <0x02>;
remote-endpoint = <0x268>;
status = "disabled";
phandle = <0x2b1>;
};
};
port@5 {
reg = <0x05>;
status = "disabled";
phandle = <0x48a>;
endpoint {
vc-id = <0x00>;
port-index = <0x05>;
bus-width = <0x02>;
remote-endpoint = <0x269>;
status = "disabled";
phandle = <0x2b3>;
};
};
port@6 {
reg = <0x06>;
status = "disabled";
phandle = <0x48b>;
endpoint {
vc-id = <0x00>;
port-index = <0x04>;
bus-width = <0x02>;
remote-endpoint = <0x26a>;
status = "disabled";
phandle = <0x2b5>;
};
};
port@7 {
reg = <0x07>;
status = "disabled";
phandle = <0x48c>;
endpoint {
vc-id = <0x00>;
port-index = <0x04>;
bus-width = <0x02>;
remote-endpoint = <0x26b>;
status = "disabled";
phandle = <0x2b7>;
};
};
};
};
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 = <0x80>;
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 = <0x26c 0x00>;
phandle = <0x26c>;
hsp {
compatible = "nvidia,tegra-aon-hsp";
mboxes = <0x26d 0x01 0x80000005 0x26d 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>;
};
ivc_aon_echo@100 {
reg = <0x100 0x10100>;
reg-names = "rx\0tx";
nvidia,frame-count = <0x10>;
nvidia,frame-size = <0x40>;
};
};
prod-settings {
#prod-cells = <0x04>;
prod {
board {
prod = <0x00 0x260004 0x3f 0x20>;
};
};
};
};
aon_echo {
compatible = "nvidia,tegra186-aon-ivc-echo";
mboxes = <0x26c 0x01>;
status = "disabled";
};
cpus {
#address-cells = <0x02>;
#size-cells = <0x00>;
cpu-map {
cluster0 {
core0 {
cpu = <0x26e>;
};
core1 {
cpu = <0x26f>;
};
core2 {
cpu = <0x270>;
};
core3 {
cpu = <0x271>;
};
};
cluster1 {
core0 {
cpu = <0x272>;
};
core1 {
cpu = <0x273>;
};
core2 {
cpu = <0x274>;
};
core3 {
cpu = <0x275>;
};
};
cluster2 {
core0 {
cpu = <0x276>;
};
core1 {
cpu = <0x277>;
};
core2 {
cpu = <0x278>;
};
core3 {
cpu = <0x279>;
};
};
};
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 = <0x27a>;
cpu-idle-states = <0x27b>;
#cooling-cells = <0x02>;
phandle = <0x26e>;
};
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 = <0x27c>;
cpu-idle-states = <0x27b>;
phandle = <0x26f>;
};
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 = <0x27d>;
cpu-idle-states = <0x27b>;
phandle = <0x270>;
};
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 = <0x27e>;
cpu-idle-states = <0x27b>;
phandle = <0x271>;
};
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 = <0x27f>;
cpu-idle-states = <0x27b>;
#cooling-cells = <0x02>;
phandle = <0x272>;
};
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 = <0x280>;
cpu-idle-states = <0x27b>;
phandle = <0x273>;
};
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 = <0x281>;
cpu-idle-states = <0x27b>;
phandle = <0x274>;
};
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 = <0x282>;
cpu-idle-states = <0x27b>;
phandle = <0x275>;
};
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 = <0x283>;
cpu-idle-states = <0x27b>;
#cooling-cells = <0x02>;
phandle = <0x276>;
};
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 = <0x284>;
cpu-idle-states = <0x27b>;
phandle = <0x277>;
};
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 = <0x285>;
cpu-idle-states = <0x27b>;
phandle = <0x278>;
};
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 = <0x286>;
cpu-idle-states = <0x27b>;
phandle = <0x279>;
};
cpu_core_power_states {
phandle = <0x48d>;
c1 {
compatible = "arm,idle-state";
state-name = "Clock gated";
wakeup-latency-us = <0x01>;
min-residency-us = <0x01>;
status = "okay";
phandle = <0x48e>;
};
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 = <0x27b>;
};
};
};
l2-cache00 {
cache-size = <0x40000>;
cache-line-size = <0x40>;
cache-sets = <0x200>;
cache-unified;
next-level-cache = <0x287>;
phandle = <0x27a>;
};
l2-cache01 {
cache-size = <0x40000>;
cache-line-size = <0x40>;
cache-sets = <0x200>;
cache-unified;
next-level-cache = <0x287>;
phandle = <0x27c>;
};
l2-cache02 {
cache-size = <0x40000>;
cache-line-size = <0x40>;
cache-sets = <0x200>;
cache-unified;
next-level-cache = <0x287>;
phandle = <0x27d>;
};
l2-cache03 {
cache-size = <0x40000>;
cache-line-size = <0x40>;
cache-sets = <0x200>;
cache-unified;
next-level-cache = <0x287>;
phandle = <0x27e>;
};
l2-cache10 {
cache-size = <0x40000>;
cache-line-size = <0x40>;
cache-sets = <0x200>;
cache-unified;
next-level-cache = <0x288>;
phandle = <0x27f>;
};
l2-cache11 {
cache-size = <0x40000>;
cache-line-size = <0x40>;
cache-sets = <0x200>;
cache-unified;
next-level-cache = <0x288>;
phandle = <0x280>;
};
l2-cache12 {
cache-size = <0x40000>;
cache-line-size = <0x40>;
cache-sets = <0x200>;
cache-unified;
next-level-cache = <0x288>;
phandle = <0x281>;
};
l2-cache13 {
cache-size = <0x40000>;
cache-line-size = <0x40>;
cache-sets = <0x200>;
cache-unified;
next-level-cache = <0x288>;
phandle = <0x282>;
};
l2-cache20 {
cache-size = <0x40000>;
cache-line-size = <0x40>;
cache-sets = <0x200>;
cache-unified;
next-level-cache = <0x289>;
phandle = <0x283>;
};
l2-cache21 {
cache-size = <0x40000>;
cache-line-size = <0x40>;
cache-sets = <0x200>;
cache-unified;
next-level-cache = <0x289>;
phandle = <0x284>;
};
l2-cache22 {
cache-size = <0x40000>;
cache-line-size = <0x40>;
cache-sets = <0x200>;
cache-unified;
next-level-cache = <0x289>;
phandle = <0x285>;
};
l2-cache23 {
cache-size = <0x40000>;
cache-line-size = <0x40>;
cache-sets = <0x200>;
cache-unified;
next-level-cache = <0x289>;
phandle = <0x286>;
};
l3-cache0 {
cache-size = <0x200000>;
cache-line-size = <0x40>;
cache-sets = <0x800>;
phandle = <0x287>;
};
l3-cache1 {
cache-size = <0x200000>;
cache-line-size = <0x40>;
cache-sets = <0x800>;
phandle = <0x288>;
};
l3-cache2 {
cache-size = <0x200000>;
cache-line-size = <0x40>;
cache-sets = <0x800>;
phandle = <0x289>;
};
arm-pmu {
compatible = "arm,armv8-pmuv3";
interrupts = <0x01 0x07 0x04>;
status = "okay";
};
dsu-pmu-0 {
compatible = "arm,dsu-pmu";
interrupts = <0x00 0x223 0x04>;
cpus = <0x26e 0x26f 0x270 0x271>;
status = "okay";
};
dsu-pmu-1 {
compatible = "arm,dsu-pmu";
interrupts = <0x00 0x224 0x04>;
cpus = <0x272 0x273 0x274 0x275>;
status = "okay";
};
dsu-pmu-2 {
compatible = "arm,dsu-pmu";
interrupts = <0x00 0x225 0x04>;
cpus = <0x276 0x277 0x278 0x279>;
status = "okay";
};
scf-pmu {
compatible = "nvidia,scf-pmu";
interrupts = <0x00 0x227 0x04>;
interrupt-affinity = <0x26e>;
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 = <0x28a 0x00>;
status = "okay";
trips {
cpu-sw-shutdown {
temperature = <0x19834>;
type = "critical";
hysteresis = <0x00>;
phandle = <0x48f>;
};
cpu-sw-throttle {
temperature = <0x182b8>;
type = "passive";
hysteresis = <0x00>;
phandle = <0x28b>;
};
cpu-hot-surface {
temperature = <0x11170>;
type = "active";
hysteresis = <0x1f40>;
phandle = <0x28e>;
};
};
cooling-maps {
map0 {
trip = <0x28b>;
cooling-device = <0x26e 0xffffffff 0xffffffff 0x272 0xffffffff 0xffffffff 0x276 0xffffffff 0xffffffff 0x28c 0xffffffff 0xffffffff>;
};
user-alert-map0 {
trip = <0x28b>;
cooling-device = <0x28d 0x01 0x01>;
};
hot-surface-alert-map0 {
trip = <0x28e>;
cooling-device = <0x28f 0x01 0x01>;
};
};
thermal-zone-params {
governor-name = "step_wise";
};
};
GPU-therm {
polling-delay = <0x00>;
polling-delay-passive = <0x3e8>;
thermal-sensors = <0x28a 0x01>;
status = "okay";
trips {
gpu-sw-shutdown {
temperature = <0x19834>;
type = "critical";
hysteresis = <0x00>;
phandle = <0x490>;
};
gpu-sw-throttle {
temperature = <0x182b8>;
type = "passive";
hysteresis = <0x00>;
phandle = <0x290>;
};
gpu-hot-surface {
temperature = <0x11170>;
type = "active";
hysteresis = <0x1f40>;
phandle = <0x292>;
};
};
cooling-maps {
map0 {
trip = <0x290>;
cooling-device = <0x26e 0xffffffff 0xffffffff 0x272 0xffffffff 0xffffffff 0x276 0xffffffff 0xffffffff 0x28c 0xffffffff 0xffffffff>;
};
user-alert-map0 {
trip = <0x290>;
cooling-device = <0x291 0x01 0x01>;
};
hot-surface-alert-map0 {
trip = <0x292>;
cooling-device = <0x28f 0x01 0x01>;
};
};
thermal-zone-params {
governor-name = "step_wise";
};
};
CV0-therm {
polling-delay = <0x00>;
polling-delay-passive = <0x3e8>;
thermal-sensors = <0x28a 0x02>;
status = "okay";
trips {
cv0-sw-shutdown {
temperature = <0x19834>;
type = "critical";
hysteresis = <0x00>;
phandle = <0x491>;
};
cv0-sw-throttle {
temperature = <0x182b8>;
type = "passive";
hysteresis = <0x00>;
phandle = <0x293>;
};
cv0-hot-surface {
temperature = <0x11170>;
type = "active";
hysteresis = <0x1f40>;
phandle = <0x295>;
};
};
cooling-maps {
map0 {
trip = <0x293>;
cooling-device = <0x26e 0xffffffff 0xffffffff 0x272 0xffffffff 0xffffffff 0x276 0xffffffff 0xffffffff 0x28c 0xffffffff 0xffffffff>;
};
user-alert-map0 {
trip = <0x293>;
cooling-device = <0x294 0x01 0x01>;
};
hot-surface-alert-map0 {
trip = <0x295>;
cooling-device = <0x28f 0x01 0x01>;
};
};
thermal-zone-params {
governor-name = "step_wise";
};
};
CV1-therm {
polling-delay = <0x00>;
polling-delay-passive = <0x3e8>;
thermal-sensors = <0x28a 0x03>;
status = "okay";
trips {
cv1-sw-shutdown {
temperature = <0x19834>;
type = "critical";
hysteresis = <0x00>;
phandle = <0x492>;
};
cv1-sw-throttle {
temperature = <0x182b8>;
type = "passive";
hysteresis = <0x00>;
phandle = <0x296>;
};
cv1-hot-surface {
temperature = <0x11170>;
type = "active";
hysteresis = <0x1f40>;
phandle = <0x298>;
};
};
cooling-maps {
map0 {
trip = <0x296>;
cooling-device = <0x26e 0xffffffff 0xffffffff 0x272 0xffffffff 0xffffffff 0x276 0xffffffff 0xffffffff 0x28c 0xffffffff 0xffffffff>;
};
user-alert-map0 {
trip = <0x296>;
cooling-device = <0x297 0x01 0x01>;
};
hot-surface-alert-map0 {
trip = <0x298>;
cooling-device = <0x28f 0x01 0x01>;
};
};
thermal-zone-params {
governor-name = "step_wise";
};
};
CV2-therm {
polling-delay = <0x00>;
polling-delay-passive = <0x3e8>;
thermal-sensors = <0x28a 0x04>;
status = "okay";
trips {
cv2-sw-shutdown {
temperature = <0x19834>;
type = "critical";
hysteresis = <0x00>;
phandle = <0x493>;
};
cv2-sw-throttle {
temperature = <0x182b8>;
type = "passive";
hysteresis = <0x00>;
phandle = <0x299>;
};
cv2-hot-surface {
temperature = <0x11170>;
type = "active";
hysteresis = <0x1f40>;
phandle = <0x29b>;
};
};
cooling-maps {
map0 {
trip = <0x299>;
cooling-device = <0x26e 0xffffffff 0xffffffff 0x272 0xffffffff 0xffffffff 0x276 0xffffffff 0xffffffff 0x28c 0xffffffff 0xffffffff>;
};
user-alert-map0 {
trip = <0x299>;
cooling-device = <0x29a 0x01 0x01>;
};
hot-surface-alert-map0 {
trip = <0x29b>;
cooling-device = <0x28f 0x01 0x01>;
};
};
thermal-zone-params {
governor-name = "step_wise";
};
};
SOC0-therm {
polling-delay = <0x00>;
polling-delay-passive = <0x3e8>;
thermal-sensors = <0x28a 0x05>;
status = "okay";
trips {
soc0-sw-shutdown {
temperature = <0x19834>;
type = "critical";
hysteresis = <0x00>;
phandle = <0x494>;
};
soc0-sw-throttle {
temperature = <0x182b8>;
type = "passive";
hysteresis = <0x00>;
phandle = <0x29c>;
};
soc0-hot-surface {
temperature = <0x11170>;
type = "active";
hysteresis = <0x1f40>;
phandle = <0x29e>;
};
};
cooling-maps {
map0 {
trip = <0x29c>;
cooling-device = <0x26e 0xffffffff 0xffffffff 0x272 0xffffffff 0xffffffff 0x276 0xffffffff 0xffffffff 0x28c 0xffffffff 0xffffffff>;
};
user-alert-map0 {
trip = <0x29c>;
cooling-device = <0x29d 0x01 0x01>;
};
hot-surface-alert-map0 {
trip = <0x29e>;
cooling-device = <0x28f 0x01 0x01>;
};
};
thermal-zone-params {
governor-name = "step_wise";
};
};
SOC1-therm {
polling-delay = <0x00>;
polling-delay-passive = <0x3e8>;
thermal-sensors = <0x28a 0x06>;
status = "okay";
trips {
soc1-sw-shutdown {
temperature = <0x19834>;
type = "critical";
hysteresis = <0x00>;
phandle = <0x495>;
};
soc1-sw-throttle {
temperature = <0x182b8>;
type = "passive";
hysteresis = <0x00>;
phandle = <0x29f>;
};
soc1-hot-surface {
temperature = <0x11170>;
type = "active";
hysteresis = <0x1f40>;
phandle = <0x2a1>;
};
};
cooling-maps {
map0 {
trip = <0x29f>;
cooling-device = <0x26e 0xffffffff 0xffffffff 0x272 0xffffffff 0xffffffff 0x276 0xffffffff 0xffffffff 0x28c 0xffffffff 0xffffffff>;
};
user-alert-map0 {
trip = <0x29f>;
cooling-device = <0x2a0 0x01 0x01>;
};
hot-surface-alert-map0 {
trip = <0x2a1>;
cooling-device = <0x28f 0x01 0x01>;
};
};
thermal-zone-params {
governor-name = "step_wise";
};
};
SOC2-therm {
polling-delay = <0x00>;
polling-delay-passive = <0x3e8>;
thermal-sensors = <0x28a 0x07>;
status = "okay";
trips {
soc2-sw-shutdown {
temperature = <0x19834>;
type = "critical";
hysteresis = <0x00>;
phandle = <0x496>;
};
soc2-sw-throttle {
temperature = <0x182b8>;
type = "passive";
hysteresis = <0x00>;
phandle = <0x2a2>;
};
soc2-hot-surface {
temperature = <0x11170>;
type = "active";
hysteresis = <0x1f40>;
phandle = <0x2a4>;
};
};
cooling-maps {
map0 {
trip = <0x2a2>;
cooling-device = <0x26e 0xffffffff 0xffffffff 0x272 0xffffffff 0xffffffff 0x276 0xffffffff 0xffffffff 0x28c 0xffffffff 0xffffffff>;
};
user-alert-map0 {
trip = <0x2a2>;
cooling-device = <0x2a3 0x01 0x01>;
};
hot-surface-alert-map0 {
trip = <0x2a4>;
cooling-device = <0x28f 0x01 0x01>;
};
};
thermal-zone-params {
governor-name = "step_wise";
};
};
tj-therm {
polling-delay = <0x00>;
polling-delay-passive = <0x3e8>;
thermal-sensors = <0x28a 0x08>;
status = "okay";
phandle = <0x497>;
};
Tboard_tegra {
status = "okay";
polling-delay = <0x00>;
polling-delay-passive = <0x3e8>;
thermal-sensors = <0x2a5 0x00>;
thermal-zone-params {
governor-name = "pid_thermal_gov";
};
};
Tdiode_tegra {
status = "okay";
polling-delay = <0x00>;
polling-delay-passive = <0x3e8>;
thermal-sensors = <0x2a5 0x01>;
phandle = <0x498>;
thermal-zone-params {
governor-name = "pid_thermal_gov";
};
};
};
soctherm-oc-event {
compatible = "nvidia,tegra234-oc-event";
nvidia,bpmp = <0x04>;
status = "okay";
};
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 = <0x2a6 0x00>;
nvidia,sidconfig = <0x00>;
phandle = <0x2a6>;
};
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 = <0x23 0x16>;
interconnect-names = "dma-mem";
iommus = <0x21 0x27 0x21 0x3d 0x21 0x3e 0x21 0x3f 0x21 0x40 0x21 0x41 0x21 0x42 0x21 0x43 0x21 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 = <0x499>;
};
niso0_ctx1 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x02 0x36>;
dma-coherent;
status = "okay";
phandle = <0x49a>;
};
niso0_ctx2 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x02 0x37>;
dma-coherent;
status = "okay";
phandle = <0x49b>;
};
niso0_ctx3 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x02 0x38>;
dma-coherent;
status = "okay";
phandle = <0x49c>;
};
niso0_ctx4 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x02 0x39>;
dma-coherent;
status = "okay";
phandle = <0x49d>;
};
niso0_ctx5 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x02 0x3a>;
dma-coherent;
status = "okay";
phandle = <0x49e>;
};
niso0_ctx6 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x02 0x3b>;
dma-coherent;
status = "okay";
phandle = <0x49f>;
};
niso0_ctx7 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x02 0x3c>;
dma-coherent;
status = "okay";
phandle = <0x4a0>;
};
niso1_ctx0 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x21 0x35>;
dma-coherent;
status = "okay";
phandle = <0x4a1>;
};
niso1_ctx1 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x21 0x36>;
dma-coherent;
status = "okay";
phandle = <0x4a2>;
};
niso1_ctx2 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x21 0x37>;
dma-coherent;
status = "okay";
phandle = <0x4a3>;
};
niso1_ctx3 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x21 0x38>;
dma-coherent;
status = "okay";
phandle = <0x4a4>;
};
niso1_ctx4 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x21 0x39>;
dma-coherent;
status = "okay";
phandle = <0x4a5>;
};
niso1_ctx5 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x21 0x3a>;
dma-coherent;
status = "okay";
phandle = <0x4a6>;
};
niso1_ctx6 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x21 0x3b>;
dma-coherent;
status = "okay";
phandle = <0x4a7>;
};
niso1_ctx7 {
compatible = "nvidia,tegra186-iommu-context";
iommus = <0x21 0x3c>;
dma-coherent;
status = "okay";
phandle = <0x4a8>;
};
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 = <0x23 0x6c 0x23 0x6d>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 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 = <0x21 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 = <0x21 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 = <0x21 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 = <0x2a7 0x02>;
non-coherent;
status = "okay";
phandle = <0x261>;
};
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 = <0x2a7 0x04>;
non-coherent;
status = "okay";
phandle = <0x263>;
};
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 = <0x21 0x28>;
dma-coherent;
status = "okay";
phandle = <0x262>;
};
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 = <0x4a9>;
channel@0 {
reg = <0x00>;
status = "disabled";
phandle = <0x4aa>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
status = "disabled";
phandle = <0x4ab>;
endpoint@0 {
port-index = <0x00>;
bus-width = <0x04>;
remote-endpoint = <0x2a8>;
status = "disabled";
phandle = <0x3e>;
};
};
port@1 {
reg = <0x01>;
status = "disabled";
phandle = <0x4ac>;
endpoint@1 {
remote-endpoint = <0x2a9>;
status = "disabled";
phandle = <0x264>;
};
};
};
};
channel@1 {
reg = <0x01>;
status = "disabled";
phandle = <0x4ad>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
status = "disabled";
phandle = <0x4ae>;
endpoint@2 {
port-index = <0x02>;
bus-width = <0x04>;
remote-endpoint = <0x2aa>;
status = "disabled";
phandle = <0x3f>;
};
};
port@1 {
reg = <0x01>;
status = "disabled";
phandle = <0x4af>;
endpoint@3 {
remote-endpoint = <0x2ab>;
status = "disabled";
phandle = <0x265>;
};
};
};
};
channel@2 {
reg = <0x02>;
status = "disabled";
phandle = <0x4b0>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
status = "disabled";
phandle = <0x4b1>;
endpoint@4 {
port-index = <0x02>;
bus-width = <0x02>;
remote-endpoint = <0x2ac>;
status = "disabled";
phandle = <0x45>;
};
};
port@1 {
reg = <0x01>;
status = "disabled";
phandle = <0x4b2>;
endpoint@5 {
remote-endpoint = <0x2ad>;
status = "disabled";
phandle = <0x266>;
};
};
};
};
channel@3 {
reg = <0x03>;
status = "disabled";
phandle = <0x4b3>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
status = "disabled";
phandle = <0x4b4>;
endpoint@6 {
port-index = <0x03>;
bus-width = <0x02>;
remote-endpoint = <0x2ae>;
status = "disabled";
phandle = <0x46>;
};
};
port@1 {
reg = <0x01>;
status = "disabled";
phandle = <0x4b5>;
endpoint@7 {
remote-endpoint = <0x2af>;
status = "disabled";
phandle = <0x267>;
};
};
};
};
channel@4 {
reg = <0x04>;
status = "disabled";
phandle = <0x4b6>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
status = "disabled";
phandle = <0x4b7>;
endpoint@8 {
port-index = <0x04>;
bus-width = <0x02>;
remote-endpoint = <0x2b0>;
status = "disabled";
phandle = <0x47>;
};
};
port@1 {
reg = <0x01>;
status = "disabled";
phandle = <0x4b8>;
endpoint@9 {
remote-endpoint = <0x2b1>;
status = "disabled";
phandle = <0x268>;
};
};
};
};
channel@5 {
reg = <0x05>;
status = "disabled";
phandle = <0x4b9>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
status = "disabled";
phandle = <0x4ba>;
endpoint@10 {
port-index = <0x06>;
bus-width = <0x02>;
remote-endpoint = <0x2b2>;
status = "disabled";
phandle = <0x48>;
};
};
port@1 {
reg = <0x01>;
status = "disabled";
phandle = <0x4bb>;
endpoint@11 {
remote-endpoint = <0x2b3>;
status = "disabled";
phandle = <0x269>;
};
};
};
};
channel@6 {
reg = <0x06>;
status = "disabled";
phandle = <0x4bc>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
status = "disabled";
phandle = <0x4bd>;
endpoint@12 {
port-index = <0x04>;
bus-width = <0x02>;
remote-endpoint = <0x2b4>;
status = "disabled";
phandle = <0x49>;
};
};
port@1 {
reg = <0x01>;
status = "disabled";
phandle = <0x4be>;
endpoint@13 {
remote-endpoint = <0x2b5>;
status = "disabled";
phandle = <0x26a>;
};
};
};
};
channel@7 {
reg = <0x07>;
status = "disabled";
phandle = <0x4bf>;
ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
status = "disabled";
phandle = <0x4c0>;
endpoint@14 {
port-index = <0x04>;
bus-width = <0x02>;
remote-endpoint = <0x2b6>;
status = "disabled";
phandle = <0x4a>;
};
};
port@1 {
reg = <0x01>;
status = "disabled";
phandle = <0x4c1>;
endpoint@15 {
remote-endpoint = <0x2b7>;
status = "disabled";
phandle = <0x26b>;
};
};
};
};
};
pva0 {
compatible = "nvidia,tegra234-pva\0simple-bus";
power-domains = <0x04 0x1e>;
reg = <0x00 0x16000000 0x00 0x800000 0x00 0x24700000 0x00 0x80000>;
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 = <0x21 0x2c>;
dma-coherent;
status = "okay";
phandle = <0x07>;
pva0_niso1_ctx0 {
compatible = "nvidia,pva-tegra186-iommu-context";
iommus = <0x21 0x12>;
dma-coherent;
status = "okay";
phandle = <0x4c2>;
};
pva0_niso1_ctx1 {
compatible = "nvidia,pva-tegra186-iommu-context";
iommus = <0x21 0x13>;
dma-coherent;
status = "okay";
phandle = <0x4c3>;
};
pva0_niso1_ctx2 {
compatible = "nvidia,pva-tegra186-iommu-context";
iommus = <0x21 0x14>;
dma-coherent;
status = "okay";
phandle = <0x4c4>;
};
pva0_niso1_ctx3 {
compatible = "nvidia,pva-tegra186-iommu-context";
iommus = <0x21 0x15>;
dma-coherent;
status = "okay";
phandle = <0x4c5>;
};
pva0_niso1_ctx4 {
compatible = "nvidia,pva-tegra186-iommu-context";
iommus = <0x21 0x16>;
dma-coherent;
status = "okay";
phandle = <0x4c6>;
};
pva0_niso1_ctx5 {
compatible = "nvidia,pva-tegra186-iommu-context";
iommus = <0x21 0x17>;
dma-coherent;
status = "okay";
phandle = <0x4c7>;
};
pva0_niso1_ctx6 {
compatible = "nvidia,pva-tegra186-iommu-context";
iommus = <0x21 0x18>;
dma-coherent;
status = "okay";
phandle = <0x4c8>;
};
pva0_niso1_ctx7 {
compatible = "nvidia,pva-tegra186-iommu-context";
iommus = <0x21 0x19>;
dma-coherent;
status = "okay";
phandle = <0x4c9>;
};
};
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 = <0x21 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>;
clocks = <0x04 0x7c>;
clock-names = "se";
iommus = <0x21 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>;
clocks = <0x04 0x7c>;
clock-names = "se";
iommus = <0x21 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>;
clocks = <0x04 0x7c>;
clock-names = "se";
iommus = <0x21 0x2f>;
dma-coherent;
status = "okay";
};
};
mods_smmu {
compatible = "nvidia,mods_smmu";
iommus = <0x02 0x18>;
non-coherent;
dev-names = "mods_smmu";
status = "disabled";
phandle = <0x4ca>;
};
mods_pcie0 {
compatible = "nvidia,mods_smmu";
iommus = <0x02 0x12>;
dma-coherent;
dev-names = "mods_pcie0";
status = "disabled";
nvidia,bpmp = <0x04 0x00>;
phandle = <0x4cb>;
};
mods_pcie1 {
compatible = "nvidia,mods_smmu";
iommus = <0x21 0x05>;
dma-coherent;
dev-names = "mods_pcie1";
status = "disabled";
nvidia,bpmp = <0x04 0x01>;
phandle = <0x4cc>;
};
mods_pcie2 {
compatible = "nvidia,mods_smmu";
iommus = <0x21 0x06>;
dma-coherent;
dev-names = "mods_pcie2";
status = "disabled";
nvidia,bpmp = <0x04 0x02>;
phandle = <0x4cd>;
};
mods_pcie3 {
compatible = "nvidia,mods_smmu";
iommus = <0x21 0x07>;
dma-coherent;
dev-names = "mods_pcie3";
status = "disabled";
nvidia,bpmp = <0x04 0x03>;
phandle = <0x4ce>;
};
mods_pcie4 {
compatible = "nvidia,mods_smmu";
iommus = <0x02 0x13>;
dma-coherent;
dev-names = "mods_pcie4";
status = "disabled";
nvidia,bpmp = <0x04 0x04>;
phandle = <0x4cf>;
};
mods_pcie5 {
compatible = "nvidia,mods_smmu";
iommus = <0x02 0x14>;
dma-coherent;
dev-names = "mods_pcie5";
status = "disabled";
nvidia,bpmp = <0x04 0x05>;
phandle = <0x4d0>;
};
mods_pcie6 {
compatible = "nvidia,mods_smmu";
iommus = <0x02 0x15>;
dma-coherent;
dev-names = "mods_pcie6";
status = "disabled";
nvidia,bpmp = <0x04 0x06>;
phandle = <0x4d1>;
};
mods_pcie7 {
compatible = "nvidia,mods_smmu";
iommus = <0x21 0x08>;
dma-coherent;
dev-names = "mods_pcie7";
status = "disabled";
nvidia,bpmp = <0x04 0x07>;
phandle = <0x4d2>;
};
mods_pcie8 {
compatible = "nvidia,mods_smmu";
iommus = <0x21 0x09>;
dma-coherent;
dev-names = "mods_pcie8";
status = "disabled";
nvidia,bpmp = <0x04 0x08>;
phandle = <0x4d3>;
};
mods_pcie9 {
compatible = "nvidia,mods_smmu";
iommus = <0x02 0x1f>;
dma-coherent;
dev-names = "mods_pcie9";
status = "disabled";
nvidia,bpmp = <0x04 0x09>;
phandle = <0x4d4>;
};
mods_pcie10 {
compatible = "nvidia,mods_smmu";
iommus = <0x21 0x0b>;
dma-coherent;
dev-names = "mods_pcie10";
status = "disabled";
nvidia,bpmp = <0x04 0x0a>;
phandle = <0x4d5>;
};
mods_isp {
compatible = "nvidia,mods_smmu";
iommus = <0x21 0x28>;
dma-coherent;
dev-names = "mods_isp";
status = "disabled";
phandle = <0x4d6>;
};
mods_test {
compatible = "nvidia,mods_test";
status = "disabled";
phandle = <0x4d7>;
};
mods_dma {
compatible = "nvidia,mods_smmu";
iommus = <0x02 0x04>;
dma-coherent;
dev-names = "mods_dma";
status = "disabled";
phandle = <0x4d8>;
};
mods_qspi0_dma {
compatible = "nvidia,mods_smmu";
iommus = <0x21 0x0c>;
dma-coherent;
dev-names = "mods_qspi0_dma";
status = "disabled";
phandle = <0x4d9>;
};
mods_qspi1_dma {
compatible = "nvidia,mods_smmu";
iommus = <0x21 0x0d>;
dma-coherent;
dev-names = "mods_qspi1_dma";
status = "disabled";
phandle = <0x4da>;
};
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 = <0x4db>;
};
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 = <0x4dc>;
};
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 = <0x2b8>;
phandle = <0x2d9>;
};
};
};
};
cpu0_etm@27040000 {
compatible = "arm,coresight-etm4x\0arm,primecell";
reg = <0x00 0x27040000 0x00 0x1000>;
cpu = <0x26e>;
clocks = <0x04 0xd5 0x04 0xa8>;
clock-names = "apb_pclk\0atclk";
status = "disabled";
out-ports {
port {
endpoint {
remote-endpoint = <0x2b9>;
phandle = <0x2c6>;
};
};
};
};
cpu1_etm@27140000 {
compatible = "arm,coresight-etm4x\0arm,primecell";
reg = <0x00 0x27140000 0x00 0x1000>;
cpu = <0x26f>;
clocks = <0x04 0xd5 0x04 0xa8>;
clock-names = "apb_pclk\0atclk";
status = "disabled";
out-ports {
port {
endpoint {
remote-endpoint = <0x2ba>;
phandle = <0x2c7>;
};
};
};
};
cpu2_etm@27240000 {
compatible = "arm,coresight-etm4x\0arm,primecell";
reg = <0x00 0x27240000 0x00 0x1000>;
cpu = <0x270>;
clocks = <0x04 0xd5 0x04 0xa8>;
clock-names = "apb_pclk\0atclk";
status = "disabled";
out-ports {
port {
endpoint {
remote-endpoint = <0x2bb>;
phandle = <0x2c8>;
};
};
};
};
cpu3_etm@27340000 {
compatible = "arm,coresight-etm4x\0arm,primecell";
reg = <0x00 0x27340000 0x00 0x1000>;
cpu = <0x271>;
clocks = <0x04 0xd5 0x04 0xa8>;
clock-names = "apb_pclk\0atclk";
status = "disabled";
out-ports {
port {
endpoint {
remote-endpoint = <0x2bc>;
phandle = <0x2c9>;
};
};
};
};
cpu4_etm@27440000 {
compatible = "arm,coresight-etm4x\0arm,primecell";
reg = <0x00 0x27440000 0x00 0x1000>;
cpu = <0x272>;
clocks = <0x04 0xd5 0x04 0xa8>;
clock-names = "apb_pclk\0atclk";
status = "disabled";
out-ports {
port {
endpoint {
remote-endpoint = <0x2bd>;
phandle = <0x2cb>;
};
};
};
};
cpu5_etm@27540000 {
compatible = "arm,coresight-etm4x\0arm,primecell";
reg = <0x00 0x27540000 0x00 0x1000>;
cpu = <0x273>;
clocks = <0x04 0xd5 0x04 0xa8>;
clock-names = "apb_pclk\0atclk";
status = "disabled";
out-ports {
port {
endpoint {
remote-endpoint = <0x2be>;
phandle = <0x2cc>;
};
};
};
};
cpu6_etm@27640000 {
compatible = "arm,coresight-etm4x\0arm,primecell";
reg = <0x00 0x27640000 0x00 0x1000>;
cpu = <0x274>;
clocks = <0x04 0xd5 0x04 0xa8>;
clock-names = "apb_pclk\0atclk";
status = "disabled";
out-ports {
port {
endpoint {
remote-endpoint = <0x2bf>;
phandle = <0x2cd>;
};
};
};
};
cpu7_etm@27740000 {
compatible = "arm,coresight-etm4x\0arm,primecell";
reg = <0x00 0x27740000 0x00 0x1000>;
cpu = <0x275>;
clocks = <0x04 0xd5 0x04 0xa8>;
clock-names = "apb_pclk\0atclk";
status = "disabled";
out-ports {
port {
endpoint {
remote-endpoint = <0x2c0>;
phandle = <0x2ce>;
};
};
};
};
cpu8_etm@27840000 {
compatible = "arm,coresight-etm4x\0arm,primecell";
reg = <0x00 0x27840000 0x00 0x1000>;
cpu = <0x276>;
clocks = <0x04 0xd5 0x04 0xa8>;
clock-names = "apb_pclk\0atclk";
status = "disabled";
out-ports {
port {
endpoint {
remote-endpoint = <0x2c1>;
phandle = <0x2d0>;
};
};
};
};
cpu9_etm@27940000 {
compatible = "arm,coresight-etm4x\0arm,primecell";
reg = <0x00 0x27940000 0x00 0x1000>;
cpu = <0x277>;
clocks = <0x04 0xd5 0x04 0xa8>;
clock-names = "apb_pclk\0atclk";
status = "disabled";
out-ports {
port {
endpoint {
remote-endpoint = <0x2c2>;
phandle = <0x2d1>;
};
};
};
};
cpu10_etm@27A40000 {
compatible = "arm,coresight-etm4x\0arm,primecell";
reg = <0x00 0x27a40000 0x00 0x1000>;
cpu = <0x278>;
clocks = <0x04 0xd5 0x04 0xa8>;
clock-names = "apb_pclk\0atclk";
status = "disabled";
out-ports {
port {
endpoint {
remote-endpoint = <0x2c3>;
phandle = <0x2d2>;
};
};
};
};
cpu11_etm@27B40000 {
compatible = "arm,coresight-etm4x\0arm,primecell";
reg = <0x00 0x27b40000 0x00 0x1000>;
cpu = <0x279>;
clocks = <0x04 0xd5 0x04 0xa8>;
clock-names = "apb_pclk\0atclk";
status = "disabled";
out-ports {
port {
endpoint {
remote-endpoint = <0x2c4>;
phandle = <0x2d3>;
};
};
};
};
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 = <0x2c5>;
phandle = <0x2d5>;
};
};
};
in-ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
slave-mode;
remote-endpoint = <0x2c6>;
phandle = <0x2b9>;
};
};
port@1 {
reg = <0x01>;
endpoint {
slave-mode;
remote-endpoint = <0x2c7>;
phandle = <0x2ba>;
};
};
port@2 {
reg = <0x02>;
endpoint {
slave-mode;
remote-endpoint = <0x2c8>;
phandle = <0x2bb>;
};
};
port@3 {
reg = <0x03>;
endpoint {
slave-mode;
remote-endpoint = <0x2c9>;
phandle = <0x2bc>;
};
};
};
};
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 = <0x2ca>;
phandle = <0x2d6>;
};
};
};
in-ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
slave-mode;
remote-endpoint = <0x2cb>;
phandle = <0x2bd>;
};
};
port@1 {
reg = <0x01>;
endpoint {
slave-mode;
remote-endpoint = <0x2cc>;
phandle = <0x2be>;
};
};
port@2 {
reg = <0x02>;
endpoint {
slave-mode;
remote-endpoint = <0x2cd>;
phandle = <0x2bf>;
};
};
port@3 {
reg = <0x03>;
endpoint {
slave-mode;
remote-endpoint = <0x2ce>;
phandle = <0x2c0>;
};
};
};
};
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 = <0x2cf>;
phandle = <0x2d7>;
};
};
};
in-ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
slave-mode;
remote-endpoint = <0x2d0>;
phandle = <0x2c1>;
};
};
port@1 {
reg = <0x01>;
endpoint {
slave-mode;
remote-endpoint = <0x2d1>;
phandle = <0x2c2>;
};
};
port@2 {
reg = <0x02>;
endpoint {
slave-mode;
remote-endpoint = <0x2d2>;
phandle = <0x2c3>;
};
};
port@3 {
reg = <0x03>;
endpoint {
slave-mode;
remote-endpoint = <0x2d3>;
phandle = <0x2c4>;
};
};
};
};
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 = <0x2d4>;
phandle = <0x2da>;
};
};
};
in-ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@0 {
reg = <0x00>;
endpoint {
slave-mode;
remote-endpoint = <0x2d5>;
phandle = <0x2c5>;
};
};
port@1 {
reg = <0x01>;
endpoint {
slave-mode;
remote-endpoint = <0x2d6>;
phandle = <0x2ca>;
};
};
port@2 {
reg = <0x02>;
endpoint {
slave-mode;
remote-endpoint = <0x2d7>;
phandle = <0x2cf>;
};
};
};
};
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 = <0x2d8>;
phandle = <0x2dd>;
};
};
};
in-ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port@1 {
reg = <0x01>;
endpoint {
slave-mode;
remote-endpoint = <0x2d9>;
phandle = <0x2b8>;
};
};
port@2 {
reg = <0x02>;
endpoint {
slave-mode;
remote-endpoint = <0x2da>;
phandle = <0x2d4>;
};
};
};
};
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 = <0x2db>;
phandle = <0x2de>;
};
};
};
out-ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port {
reg = <0x00>;
endpoint {
remote-endpoint = <0x2dc>;
phandle = <0x2df>;
};
};
};
};
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 = <0x2dd>;
phandle = <0x2d8>;
};
};
};
out-ports {
#address-cells = <0x01>;
#size-cells = <0x00>;
port {
reg = <0x00>;
endpoint {
remote-endpoint = <0x2de>;
phandle = <0x2db>;
};
};
};
};
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 = <0x2df>;
phandle = <0x2dc>;
};
};
};
};
fsicom_client {
compatible = "nvidia,tegra234-fsicom-client";
mboxes = <0x2e0 0x101 0x80000003 0x2e0 0x101 0x02>;
mbox-names = "fsi-tx\0fsi-rx";
iommus = <0x21 0x11>;
iommu-resv-regions = <0x00 0x00 0x00 0xf0000000 0x00 0xf1000000 0xffffffff 0xffffffff>;
dma-coherent;
status = "disabled";
};
safetyservices_epl_client {
compatible = "nvidia,tegra234-epl-client";
mboxes = <0x2e0 0x101 0x80000001>;
mbox-names = "epl-tx";
client-misc-sw-generic-err0 = "fsicom_client";
client-misc-sw-generic-err1 = "gk20b";
client-misc-sw-generic-err3 = "gk20d";
client-misc-sw-generic-err4 = "gk20e";
status = "disabled";
};
FsiComClientChConfigEpd {
compatible = "nvidia,tegra-fsicom-EPD";
status = "disabled";
channelid_list = <0x00>;
};
FsiComAppChConfCcplexApp {
compatible = "nvidia,tegra-fsicom-CcplexApp";
status = "disabled";
channelid_list = <0x01>;
};
FsiComAppChConfApp1 {
compatible = "nvidia,tegra-fsicom-sampleApp1";
status = "disabled";
channelid_list = <0x02>;
};
FsiComQnxAppChConfAppGR {
compatible = "nvidia,tegra-fsicom-sampleAppGR";
status = "disabled";
channelid_list = <0x04>;
};
FsiComAppChConfApp2 {
compatible = "nvidia,tegra-fsicom-sampleApp2";
status = "disabled";
channelid_list = <0x03>;
};
FsiComIvc {
compatible = "nvidia,tegra-fsicom-channels";
status = "disabled";
nChannel = <0x05>;
channel_0 {
frame-count = <0x04>;
frame-size = <0x400>;
NvSciCh = "nvfsicom_EPD";
};
channel_1 {
frame-count = <0x04>;
frame-size = <0x40>;
NvSciCh = "nvfsicom_CcplexApp";
};
channel_2 {
frame-count = <0x04>;
frame-size = <0x40>;
NvSciCh = "nvfsicom_app1";
};
channel_3 {
frame-count = <0x02>;
frame-size = <0x200>;
NvSciCh = "nvfsicom_app2";
};
channel_4 {
frame-count = <0x04>;
frame-size = <0x40>;
NvSciCh = "nvfsicom_appGR";
};
};
SS_ErrorReportingConfig {
compatible = "nvidia,tegra-SafetyServiceConfig";
status = "disabled";
SEC_Threshold_count = <0x00>;
SEC_Threshold;
List_of_Reporter_ID_to_disable_error_count = <0x00>;
List_of_Reporter_ID_to_disable_error;
List_of_ErrCode_to_disable_SOC_Err_Pin_count = <0x00>;
List_of_ErrCode_to_disable_SOC_Err_Pin;
HSM_Timer_enable = <0x00>;
HSM_Timer;
};
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";
};
android {
compatible = "android,firmware";
first_stage_delay = [31 00];
system_root_blkdev = "/dev/mmcblk0p1";
fstab {
compatible = "android,fstab";
vendor {
compatible = "android,vendor";
dev = "/dev/block/platform/3460000.sdhci/by-name/vendor";
type = "ext4";
mnt_flags = "ro,noatime";
fsmgr_flags = "wait";
};
};
};
};
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 = <0x4dd>;
};
rtc@c2a0000 {
compatible = "nvidia,tegra18-rtc";
reg = <0x00 0xc2a0000 0x00 0x10000>;
interrupt-parent = <0x2e1>;
interrupts = <0x49 0x04>;
status = "okay";
phandle = <0x4de>;
};
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 = <0x31>;
};
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 = <0x30>;
};
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 = <0x26d>;
};
tegra-hsp@1600000 {
compatible = "nvidia,tegra234-hsp\0nvidia,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 = <0x2e0>;
};
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 = <0x25c>;
};
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 = <0x25f>;
};
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>;
no-memory-wc;
shmem@70000 {
compatible = "nvidia,tegra194-bpmp-shmem";
reg = <0x70000 0x1000>;
label = "cpu-bpmp-tx";
pool;
phandle = <0x2e2>;
};
shmem@71000 {
compatible = "nvidia,tegra194-bpmp-shmem";
reg = <0x71000 0x1000>;
label = "cpu-bpmp-rx";
pool;
phandle = <0x2e3>;
};
};
bpmp {
compatible = "nvidia,tegra234-bpmp\0nvidia,tegra186-bpmp";
mboxes = <0x30 0x00 0x13>;
shmem = <0x2e2 0x2e3>;
#clock-cells = <0x01>;
#reset-cells = <0x01>;
#power-domain-cells = <0x01>;
interconnects = <0x23 0x93 0x23 0x94 0x23 0x95 0x23 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 = <0x4df>;
vrs@3c {
compatible = "nvidia,vrs-pseq";
reg = <0x3c>;
interrupt-parent = <0x2e1>;
interrupts = <0x18 0x08>;
interrupt-controller;
#interrupt-cells = <0x02>;
status = "okay";
rtc {
status = "okay";
phandle = <0x4e0>;
};
};
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 = <0x3d>;
phandle = <0x2a5>;
loc {
shutdown-limit = <0x6b>;
};
ext {
shutdown-limit = <0x6b>;
};
};
vrs11_1@20 {
compatible = "nvidia,vrs11";
reg = <0x20>;
rail-name-loopA = "GPU";
rail-name-loopB = "CPU";
status = "okay";
};
vrs11_2@22 {
compatible = "nvidia,vrs11";
reg = <0x22>;
rail-name-loopA = "SOC";
rail-name-loopB = "CV";
status = "okay";
};
};
bpmpthermal {
compatible = "nvidia,tegra186-bpmp-thermal";
#thermal-sensor-cells = <0x01>;
status = "okay";
phandle = <0x28a>;
};
};
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>;
gpio-ranges = <0x2e4 0x00 0x00 0x8a 0x2e4 0x8a 0x92 0x1a>;
status = "okay";
gpio-line-names = <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x4750494f 0x33350000 0x00 0x493253 0x325f5343 0x4c4b0049 0x3253325f 0x444f5554 0x493253 0x325f4449 0x4e004932 0x53325f46 0x53000000 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x4750494f 0x32370000 0x00 0x00 0x475049 0x4f313700 0x00 0x00 0x4d434c 0x4b303500 0x50574d 0x30310000 0x00 0x00 0x00 0x00 0x00 0x00 0x535049 0x315f434c 0x4b005350 0x49315f4d 0x49534f00 0x53504931 0x5f4d4f53 0x49005350 0x49315f43 0x53305f4e 0x535049 0x315f4353 0x315f4e00 0x00>;
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>;
gpio-ranges = <0x2e4 0x00 0x8a 0x08 0x2e4 0x08 0xac 0x18>;
status = "okay";
gpio-line-names = "CAN0_DOUT\0CAN0_DIN\0CAN1_DOUT\0CAN1_DIN\0\0\0\0\0GPIO09\0GPIO08\0\0\0\0\0\0\0\0\0\0";
phandle = <0x3a>;
};
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 = <0x4e1>;
};
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 = <0x3a>;
status = "okay";
phandle = <0x4e2>;
};
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 = <0x4e3>;
};
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 = <0x4e4>;
};
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 = <0x4e5>;
};
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 = <0x4e6>;
};
gpio-keys {
compatible = "gpio-keys";
gpio-keys,name = "gpio-keys";
status = "okay";
sw_wake {
label = "sw-wake";
linux,code = <0x8f>;
wakeup-source;
interrupt-parent = <0x2e1>;
interrupts = <0x53 0x01>;
};
forcerecovery {
label = "force-recovery";
gpios = <0x14 0x30 0x01>;
linux,code = <0x101>;
};
power_key {
label = "power-key";
gpios = <0x3a 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 = <0x24>;
avdd-usb-supply = <0x33>;
phandle = <0x2e6>;
pads {
usb2 {
clocks = <0x04 0xa5>;
clock-names = "trk";
lanes {
usb2-0 {
status = "okay";
#phy-cells = <0x00>;
nvidia,function = "xusb";
phandle = <0x2e7>;
};
usb2-1 {
status = "okay";
#phy-cells = <0x00>;
nvidia,function = "xusb";
phandle = <0x2ea>;
};
usb2-2 {
status = "okay";
#phy-cells = <0x00>;
nvidia,function = "xusb";
phandle = <0x2eb>;
};
usb2-3 {
status = "okay";
#phy-cells = <0x00>;
nvidia,function = "xusb";
phandle = <0x2ec>;
};
};
};
usb3 {
lanes {
usb3-0 {
status = "okay";
#phy-cells = <0x00>;
nvidia,function = "xusb";
phandle = <0x2ed>;
};
usb3-1 {
status = "okay";
#phy-cells = <0x00>;
nvidia,function = "xusb";
phandle = <0x2e9>;
};
usb3-2 {
status = "okay";
#phy-cells = <0x00>;
nvidia,function = "xusb";
phandle = <0x2ee>;
};
usb3-3 {
status = "disabled";
#phy-cells = <0x00>;
};
};
};
};
ports {
usb2-0 {
status = "okay";
vbus-supply = <0x2d>;
mode = "otg";
usb-role-switch;
port {
endpoint {
remote-endpoint = <0x2e5>;
phandle = <0x3b>;
};
};
};
usb2-1 {
status = "okay";
vbus-supply = <0x2d>;
mode = "host";
};
usb2-2 {
status = "okay";
vbus-supply = <0x2d>;
mode = "host";
};
usb2-3 {
status = "okay";
vbus-supply = <0x2d>;
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>;
board {
prod = <0x00 0x88 0x1fe0000 0xcc0000 0x00 0x94 0x0e 0x04 0x00 0xc8 0x1fe0000 0xcc0000 0x00 0xd4 0x0e 0x04 0x00 0x108 0x1fe0000 0xcc0000 0x00 0x114 0x0e 0x00 0x00 0x148 0x1fe0000 0xcc0000>;
};
};
};
};
usb_cd {
compatible = "nvidia,tegra234-usb-cd";
nvidia,xusb-padctl = <0x2e6>;
phys = <0x2e7>;
phy-names = "otg-phy";
status = "okay";
phandle = <0x2e8>;
};
xudc@3550000 {
compatible = "nvidia,tegra234-xudc";
reg = <0x00 0x3550000 0x00 0x8000 0x00 0x3558000 0x00 0x8000>;
reg-names = "base\0fpci";
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 = <0x2e6>;
iommus = <0x21 0x0f>;
dma-coherent;
status = "okay";
charger-detector = <0x2e8>;
avdd-usb-supply = <0x33>;
phys = <0x2e7 0x2e9>;
phy-names = "usb2-0\0usb3-1";
nvidia,boost_cpu_freq = <0x4b0>;
phandle = <0x4e7>;
};
xhci@3610000 {
compatible = "nvidia,tegra234-xhci\0nvidia,tegra234-xusb";
reg = <0x00 0x3610000 0x00 0x40000 0x00 0x3600000 0x00 0x10000 0x00 0x3650000 0x00 0x10000>;
reg-names = "base\0fpci\0bar2";
interrupts-extended = <0x01 0x00 0xa3 0x04 0x01 0x00 0xa4 0x04 0x01 0x00 0xa7 0x04 0x2e1 0x4c 0x04 0x2e1 0x4d 0x04 0x2e1 0x4e 0x04 0x2e1 0x4f 0x04 0x2e1 0x50 0x04 0x2e1 0x51 0x04 0x2e1 0x52 0x04>;
interrupt-names = "xhci\0mbox\0padctl\0wake0\0wake1\0wake2\0wake3\0wake4\0wake5\0wake6";
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 = <0x2e6>;
interconnects = <0x23 0x4a 0x23 0x4b>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 0x0e>;
dma-coherent;
status = "okay";
phys = <0x2e7 0x2ea 0x2eb 0x2ec 0x2ed 0x2e9 0x2ee>;
phy-names = "usb2-0\0usb2-1\0usb2-2\0usb2-3\0usb3-0\0usb3-1\0usb3-2";
phandle = <0x4e8>;
};
xhci@3670000 {
compatible = "nvidia,tegra234-xhci-vf1";
reg = <0x00 0x3670000 0x00 0x40000>;
interrupts = <0x00 0x15 0x04>;
nvidia,xusb-padctl = <0x2e6>;
interconnects = <0x23 0x4a 0x23 0x4b>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 0x1a>;
dma-coherent;
status = "disabled";
phandle = <0x4e9>;
};
xhci@36c0000 {
compatible = "nvidia,tegra234-xhci-vf2";
reg = <0x00 0x36c0000 0x00 0x40000>;
interrupts = <0x00 0x16 0x04>;
nvidia,xusb-padctl = <0x2e6>;
interconnects = <0x23 0x4a 0x23 0x4b>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 0x1b>;
dma-coherent;
status = "disabled";
phandle = <0x4ea>;
};
xhci@3710000 {
compatible = "nvidia,tegra234-xhci-vf3";
reg = <0x00 0x3710000 0x00 0x40000>;
interrupts = <0x00 0x17 0x04>;
nvidia,xusb-padctl = <0x2e6>;
interconnects = <0x23 0x4a 0x23 0x4b>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 0x1c>;
dma-coherent;
status = "disabled";
phandle = <0x4eb>;
};
xhci@3760000 {
compatible = "nvidia,tegra234-xhci-vf4";
reg = <0x00 0x3760000 0x00 0x40000>;
interrupts = <0x00 0x18 0x04>;
nvidia,xusb-padctl = <0x2e6>;
interconnects = <0x23 0x4a 0x23 0x4b>;
interconnect-names = "dma-mem\0dma-mem";
iommus = <0x21 0x1d>;
dma-coherent;
status = "disabled";
phandle = <0x4ec>;
};
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 = <0x28c>;
};
psci {
compatible = "arm,psci-1.0";
method = "smc";
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 = <0x4ed>;
};
carmel_ras {
compatible = "nvidia,carmel-ras";
status = "disabled";
};
cpufreq {
compatible = "nvidia,t234-cpufreq";
nvidia,bpmp = <0x04>;
reg = <0x00 0xe000000 0x00 0x5ffff>;
status = "disabled";
cpu_emc_map = <0x1d1a00 0x186a00 0x1cb600 0xc3500 0x180600 0xa25a8 0x135600 0x639c0>;
};
ccplex@e000000 {
compatible = "nvidia,tegra234-ccplex-cluster";
reg = <0x00 0xe000000 0x00 0x5ffff>;
nvidia,bpmp = <0x04>;
status = "okay";
cpu_emc_map = <0x1d1a00 0x186a00 0x1cb600 0xc3500 0x180600 0xa25a8 0x135600 0x639c0 0x1c200 0x31ce0>;
};
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 = <0x4ee>;
};
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 0x04 0x84>;
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\0sor0_div_clk";
resets = <0x04 0x10 0x04 0x08 0x04 0x03 0x04 0x25>;
reset-names = "nvdisplay_reset\0dpaux0_reset\0dsi_core_reset\0mipi_cal_reset";
status = "okay";
nvidia,disp-sw-soc-chip-id = <0x2350>;
interconnects = <0x23 0x92 0x23 0xa1>;
interconnect-names = "dma-mem\0read-1";
iommus = <0x2a7 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 = <0x4ef>;
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";
};
tegra_cec {
compatible = "nvidia,tegra234-cec";
reg = <0x00 0xc3e0000 0x00 0x1000>;
interrupts = <0x00 0x117 0x04>;
resets = <0x04 0x43>;
reset-names = "cec";
status = "disabled";
phandle = <0x4f0>;
};
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 = <0x2d>;
};
regulator@1 {
compatible = "regulator-fixed";
reg = <0x01>;
regulator-name = "ddr-vdd2-sw7";
regulator-min-microvolt = <0x100590>;
regulator-max-microvolt = <0x100590>;
regulator-always-on;
phandle = <0x4f1>;
};
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 = <0x34>;
};
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 = <0x4f2>;
};
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 = <0x24>;
};
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 = <0x4f3>;
};
regulator@7 {
compatible = "regulator-fixed";
reg = <0x07>;
regulator-name = "vdd-rtc-sw4";
regulator-min-microvolt = <0xb71b0>;
regulator-max-microvolt = <0xb71b0>;
regulator-always-on;
phandle = <0x4f4>;
};
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 = <0x4f5>;
};
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 = <0x33>;
};
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 = <0x4f6>;
};
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 = <0x4f7>;
};
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 = <0x4f8>;
};
regulator@100 {
compatible = "regulator-fixed";
reg = <0x64>;
regulator-name = "vdd-12v-sys";
regulator-min-microvolt = <0xb71b00>;
regulator-max-microvolt = <0xb71b00>;
phandle = <0x4f9>;
};
regulator@101 {
compatible = "regulator-fixed";
reg = <0x65>;
regulator-name = "vdd-5v-sys";
regulator-min-microvolt = <0x4c4b40>;
regulator-max-microvolt = <0x4c4b40>;
phandle = <0x3c>;
};
regulator@102 {
compatible = "regulator-fixed";
reg = <0x66>;
regulator-name = "vdd-3v3-sys";
regulator-min-microvolt = <0x325aa0>;
regulator-max-microvolt = <0x325aa0>;
phandle = <0x4c>;
};
regulator@103 {
compatible = "regulator-fixed";
reg = <0x67>;
regulator-name = "vdd-1v8-sys";
regulator-min-microvolt = <0x1b7740>;
regulator-max-microvolt = <0x1b7740>;
phandle = <0x3d>;
};
regulator@104 {
compatible = "regulator-fixed";
reg = <0x68>;
regulator-name = "vdd-3v3-ftdi";
regulator-min-microvolt = <0x325aa0>;
regulator-max-microvolt = <0x325aa0>;
phandle = <0x4fa>;
};
regulator@105 {
compatible = "regulator-fixed";
reg = <0x69>;
regulator-name = "vdd-3v3-pcie";
regulator-min-microvolt = <0x325aa0>;
regulator-max-microvolt = <0x325aa0>;
vin-supply = <0x4c>;
gpio = <0x14 0x3c 0x00>;
enable-active-high;
regulator-boot-on;
phandle = <0x1d>;
};
regulator@106 {
compatible = "regulator-fixed";
reg = <0x6a>;
regulator-name = "avdd-cam-2v8";
regulator-min-microvolt = <0x2ab980>;
regulator-max-microvolt = <0x2ab980>;
vin-supply = <0x4c>;
gpio = <0x14 0x79 0x00>;
enable-active-high;
phandle = <0x40>;
};
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 = <0x3c>;
phandle = <0x4fb>;
};
regulator@108 {
compatible = "regulator-fixed";
reg = <0x6c>;
regulator-name = "vbusA-cvb";
regulator-min-microvolt = <0x4c4b40>;
regulator-max-microvolt = <0x4c4b40>;
regulator-always-on;
vin-supply = <0x3c>;
phandle = <0x4fc>;
};
regulator@109 {
compatible = "regulator-fixed";
reg = <0x6d>;
regulator-name = "vbusB-cvb";
regulator-min-microvolt = <0x4c4b40>;
regulator-max-microvolt = <0x4c4b40>;
regulator-always-on;
vin-supply = <0x3c>;
phandle = <0x4fd>;
};
regulator@110 {
compatible = "regulator-fixed";
reg = <0x6e>;
regulator-name = "vdd-dp";
regulator-min-microvolt = <0x186a0>;
regulator-max-microvolt = <0x186a0>;
vin-supply = <0x4c>;
gpio = <0x14 0x03 0x00>;
regulator-always-on;
enable-active-high;
phandle = <0x4fe>;
};
regulator@111 {
compatible = "regulator-fixed";
reg = <0x6f>;
regulator-name = "vdd-3v3-sd";
regulator-min-microvolt = <0x325aa0>;
regulator-max-microvolt = <0x325aa0>;
vin-supply = <0x4c>;
gpio = <0x14 0x00 0x00>;
enable-active-high;
phandle = <0x39>;
};
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 = <0x3c>;
phandle = <0x4ff>;
};
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 = <0x3c>;
phandle = <0x500>;
};
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 = <0x1e>;
};
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 = <0x41>;
};
regulator@116 {
compatible = "regulator-fixed";
reg = <0x74>;
regulator-name = "dsi-vdd-1v8-bl-en";
regulator-min-microvolt = <0x1b7740>;
regulator-max-microvolt = <0x1b7740>;
vin-supply = <0x3d>;
gpio = <0x3a 0x12 0x00>;
enable-active-high;
phandle = <0x501>;
};
regulator@200 {
compatible = "regulator-fixed-sync\0regulator-fixed";
reg = <0xc8>;
regulator-name = "vdd-1v8-aud2";
regulator-min-microvolt = <0x1b7740>;
regulator-max-microvolt = <0x1b7740>;
gpio = <0x2ef 0x0b 0x01>;
enable-active-high;
status = "disabled";
phandle = <0x4d>;
};
};
chosen {
bootargs = "console=ttyTCU0,115200";
board-has-eeprom;
};
ccplex {
compatible = "nvidia,t234-ccplex";
cpu_emc_map = <0x1d1a00 0x186a00 0x1cb600 0xc3500 0x180600 0xa25a8 0x135600 0x639c0 0x1c200 0x31ce0>;
};
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 = <0x2f0>;
eeprom@0 {
slave-address = <0x50>;
label = "cvm";
};
eeprom@1 {
slave-address = <0x56>;
label = "cvb";
};
};
bus@1 {
i2c-bus = <0x2f1>;
eeprom@1 {
slave-address = <0x50>;
label = "super-module";
};
};
bus@2 {
i2c-bus = <0x2f2>;
eeprom@0 {
slave-address = <0x54>;
label = "sensor0";
};
eeprom@1 {
slave-address = <0x57>;
label = "sensor1";
};
eeprom@2 {
slave-address = <0x52>;
label = "sensor2";
};
};
};
ldpc-enc {
status = "disabled";
};
plugin-manager {
fragment-e2614-common@0 {
ids = "2614-0000-*";
overrides@0 {
target = <0x2f3>;
_overlay_ {
status = "okay";
};
};
overrides@1 {
target = <0x2ef>;
_overlay_ {
status = "okay";
};
};
overrides@2 {
target = <0x2f4>;
_overlay_ {
status = "okay";
};
};
overrides@3 {
target = <0x2f5>;
_overlay_ {
status = "okay";
};
};
overrides@4 {
target = <0x2f5>;
_overlay_ {
status = "okay";
};
};
overrides@5 {
target = <0x2f6>;
_overlay_ {
status = "disabled";
};
};
overrides@6 {
target = <0x2f7>;
_overlay_ {
status = "okay";
};
};
overrides@8 {
target = <0x4d>;
_overlay_ {
status = "okay";
};
};
overrides@11 {
target = <0x2f8>;
_overlay_ {
link-name = "rt565x-codec-sysclk-bclk1";
codec {
sound-dai = <0x2f9 0x00>;
prefix = "H40-RT";
};
};
};
overrides@14 {
target = <0x2f4>;
_overlay_ {
status = "okay";
};
};
overrides@15 {
target = <0x2f5>;
_overlay_ {
status = "okay";
};
};
overrides@16 {
target = <0x2f6>;
_overlay_ {
status = "disabled";
};
};
overrides@17 {
target = <0x2f7>;
_overlay_ {
status = "okay";
};
};
overrides@18 {
target = <0x2fa>;
_overlay_ {
link-name = "dspk-playback-dual-tas2552";
codec {
sound-dai = <0x2fb 0x00>;
prefix = "H40-TAS-R";
};
codec@1 {
sound-dai = <0x2fc 0x00>;
prefix = "H40-TAS-L";
};
};
};
overrides@10 {
target = <0x2fd>;
_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 = <0x2f9>;
_overlay_ {
status = "okay";
};
};
overrides@1 {
target = <0x2f8>;
_overlay_ {
link-name = "rt565x-codec-sysclk-bclk1";
codec {
sound-dai = <0x2f9 0x00>;
prefix = "H40-RT";
};
};
};
};
fragment-e2614-b00@2 {
ids = "2614-0000-100";
overrides@0 {
target = <0x2fe>;
_overlay_ {
status = "okay";
};
};
overrides@1 {
target = <0x2f8>;
_overlay_ {
link-name = "rt565x-codec-sysclk-bclk1";
codec {
sound-dai = <0x2fe 0x00>;
prefix = "H40-RT";
};
};
};
};
};
pwm-fan {
compatible = "pwm-fan";
status = "okay";
#pwm-cells = <0x01>;
pwms = <0x2ff 0x00 0xb116>;
cooling-levels = <0x80 0x87 0xb2 0xc8 0xff 0xff 0xff 0xff 0xff 0xff>;
};
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 = <0x502>;
};
spdif-dit.1@1 {
compatible = "linux,spdif-dit";
reg = <0x01>;
status = "okay";
phandle = <0x503>;
};
spdif-dit.2@2 {
compatible = "linux,spdif-dit";
reg = <0x02>;
status = "okay";
phandle = <0x504>;
};
spdif-dit.3@3 {
compatible = "linux,spdif-dit";
reg = <0x03>;
status = "okay";
phandle = <0x505>;
};
spdif-dit.4@4 {
compatible = "linux,spdif-dit";
reg = <0x04>;
status = "okay";
phandle = <0x506>;
};
spdif-dit.5@5 {
compatible = "linux,spdif-dit";
reg = <0x05>;
status = "okay";
phandle = <0x507>;
};
spdif-dit.6@6 {
compatible = "linux,spdif-dit";
reg = <0x06>;
status = "okay";
phandle = <0x508>;
};
spdif-dit.7@7 {
compatible = "linux,spdif-dit";
reg = <0x07>;
status = "okay";
phandle = <0x509>;
};
spdif-dit.8@8 {
compatible = "linux,spdif-dit";
reg = <0x08>;
status = "okay";
phandle = <0x50a>;
};
spdif-dit.9@9 {
compatible = "linux,spdif-dit";
reg = <0x09>;
status = "okay";
phandle = <0x50b>;
};
spdif-dit.10@a {
compatible = "linux,spdif-dit";
reg = <0x0a>;
status = "okay";
phandle = <0x50c>;
};
spdif-dit.11@b {
compatible = "linux,spdif-dit";
reg = <0x0b>;
status = "okay";
phandle = <0x50d>;
};
spdif-dit.12@c {
compatible = "linux,spdif-dit";
reg = <0x0c>;
status = "okay";
phandle = <0x50e>;
};
spdif-dit.13@d {
compatible = "linux,spdif-dit";
reg = <0x0d>;
status = "okay";
phandle = <0x50f>;
};
};
gps_wake {
compatible = "gps-wake";
gps-enable-gpio = <0x2ef 0x08 0x00>;
gps-wakeup-gpio = <0x14 0x00 0x00>;
status = "disabled";
phandle = <0x510>;
};
soft_watchdog {
compatible = "softdog-platform";
status = "okay";
phandle = <0x511>;
};
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 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 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\0la\0hwpm\0pva0_all\0pwm1\0pwm2\0pwm3\0pwm4\0pwm5\0pwm6\0pwm7\0pwm8\0qspi0\0qspi1\0sce_all\0rce_all\0sdmmc1\0sdmmc4\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>;
isp_peak_byte_per_pixel = <0x05>;
isp_bw_margin_pct = <0x19>;
max_pixel_rate = <0xb71b0>;
tpg_max_iso = <0x3bc400>;
phandle = <0x512>;
modules {
module0 {
badge = "imx274_bottom_A6V26";
position = "bottom";
orientation = [31 00];
status = "disabled";
phandle = <0x513>;
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 = <0x514>;
};
drivernode1 {
pcl_id = "v4l2_lens";
proc-device-tree = "/proc/device-tree/lens_imx274@A6V26/";
status = "disabled";
phandle = <0x515>;
};
};
module1 {
badge = "imx274_top_A6V26";
position = "top";
orientation = [31 00];
status = "disabled";
phandle = <0x516>;
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 = <0x517>;
};
drivernode1 {
pcl_id = "v4l2_lens";
proc-device-tree = "/proc/device-tree/lens_imx274@A6V26/";
status = "disabled";
phandle = <0x518>;
};
};
module2 {
badge = "e3333_centerright_P5V27C";
position = "centerright";
orientation = [31 00];
status = "disabled";
phandle = <0x519>;
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 = <0x51a>;
};
drivernode1 {
pcl_id = "v4l2_lens";
proc-device-tree = "/proc/device-tree/e3333_lens_ov5693@P5V27C/";
status = "disabled";
phandle = <0x51b>;
};
};
module3 {
badge = "e3333_topleft_P5V27C";
position = "topleft";
orientation = [31 00];
status = "disabled";
phandle = <0x51c>;
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 = <0x51d>;
};
drivernode1 {
pcl_id = "v4l2_lens";
proc-device-tree = "/proc/device-tree/e3333_lens_ov5693@P5V27C/";
status = "disabled";
phandle = <0x51e>;
};
};
module4 {
badge = "e3333_bottomright_P5V27C";
position = "bottomright";
orientation = [31 00];
status = "disabled";
phandle = <0x51f>;
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 = <0x520>;
};
drivernode1 {
pcl_id = "v4l2_lens";
proc-device-tree = "/proc/device-tree/e3333_lens_ov5693@P5V27C/";
status = "disabled";
phandle = <0x521>;
};
};
module5 {
badge = "e3333_topright_P5V27C";
position = "topright";
orientation = [31 00];
status = "disabled";
phandle = <0x522>;
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 = <0x523>;
};
drivernode1 {
pcl_id = "v4l2_lens";
proc-device-tree = "/proc/device-tree/e3333_lens_ov5693@P5V27C/";
status = "disabled";
phandle = <0x524>;
};
};
module6 {
badge = "hawk_bottomcenter";
position = "bottomcenter";
orientation = [31 00];
status = "disabled";
phandle = <0x525>;
drivernode0 {
pcl_id = "v4l2_sensor";
devname = "ar0234 8-0032";
proc-device-tree = "/proc/device-tree/i2c@31e0000/ar0234_c@32";
status = "disabled";
phandle = <0x526>;
};
drivernode1 {
status = "disabled";
pcl_id = "v4l2_lens";
phandle = <0x527>;
};
};
module7 {
badge = "hawk_topcenter";
position = "topcenter";
orientation = [31 00];
status = "disabled";
phandle = <0x528>;
drivernode0 {
pcl_id = "v4l2_sensor";
devname = "ar0234 8-0033";
proc-device-tree = "/proc/device-tree/i2c@31e0000/ar0234_d@33";
status = "disabled";
phandle = <0x529>;
};
drivernode1 {
status = "disabled";
pcl_id = "v4l2_lens";
phandle = <0x52a>;
};
};
};
};
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 = <0x28d>;
};
gpu-throttle-alert {
compatible = "userspace-therm-alert";
cdev-type = "gpu-throttle-alert";
status = "okay";
#cooling-cells = <0x02>;
phandle = <0x291>;
};
cv0-throttle-alert {
compatible = "userspace-therm-alert";
cdev-type = "cv0-throttle-alert";
status = "okay";
#cooling-cells = <0x02>;
phandle = <0x294>;
};
cv1-throttle-alert {
compatible = "userspace-therm-alert";
cdev-type = "cv1-throttle-alert";
status = "okay";
#cooling-cells = <0x02>;
phandle = <0x297>;
};
cv2-throttle-alert {
compatible = "userspace-therm-alert";
cdev-type = "cv2-throttle-alert";
status = "okay";
#cooling-cells = <0x02>;
phandle = <0x29a>;
};
soc0-throttle-alert {
compatible = "userspace-therm-alert";
cdev-type = "soc0-throttle-alert";
status = "okay";
#cooling-cells = <0x02>;
phandle = <0x29d>;
};
soc1-throttle-alert {
compatible = "userspace-therm-alert";
cdev-type = "soc1-throttle-alert";
status = "okay";
#cooling-cells = <0x02>;
phandle = <0x2a0>;
};
soc2-throttle-alert {
compatible = "userspace-therm-alert";
cdev-type = "soc2-throttle-alert";
status = "okay";
#cooling-cells = <0x02>;
phandle = <0x2a3>;
};
hot-surface-alert {
compatible = "userspace-therm-alert";
cdev-type = "hot-surface-alert";
status = "okay";
#cooling-cells = <0x02>;
phandle = <0x28f>;
};
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>;
reg-names = "perfmon_vi0\0perfmon_vi1\0perfmon_isp0\0perfmon_vica0\0perfmon_ofaa0\0perfmon_pvav0\0perfmon_pvav1\0perfmon_pvac0\0perfmon_nvdlab0\0perfmon_nvdlab1\0perfmon_nvdisplay0\0perfmon_sys0\0perfmon_mgbe0\0perfmon_mgbe1\0perfmon_mgbe2\0perfmon_mgbe3\0perfmon_scf\0perfmon_nvdeca0\0perfmon_nvenca0\0perfmon_mssnvlhsh0\0perfmon_pcie0\0perfmon_pcie1\0perfmon_pcie2\0perfmon_pcie3\0perfmon_pcie4\0perfmon_pcie5\0perfmon_pcie6\0perfmon_pcie7\0perfmon_pcie8\0perfmon_pcie9\0perfmon_pcie10\0perfmon_msschannel_parta0\0perfmon_msschannel_parta1\0perfmon_msschannel_parta2\0perfmon_msschannel_parta3\0perfmon_msschannel_partb0\0perfmon_msschannel_partb1\0perfmon_msschannel_partb2\0perfmon_msschannel_partb3\0perfmon_msschannel_partc0\0perfmon_msschannel_partc1\0perfmon_msschannel_partc2\0perfmon_msschannel_partc3\0perfmon_msschannel_partd0\0perfmon_msschannel_partd1\0perfmon_msschannel_partd2\0perfmon_msschannel_partd3\0perfmon_msshub0\0perfmon_msshub1\0perfmon_mssmcfclient0\0perfmon_mssmcfmem0\0perfmon_mssmcfmem1\0pma\0rtr";
clocks = <0x04 0xd7 0x04 0x147>;
clock-names = "la\0parent";
resets = <0x04 0x40 0x04 0x41>;
reset-names = "la\0hwpm";
iommus = <0x21 0x04>;
support-soc-tools;
status = "okay";
};
ufshci@02500000 {
prod-settings {
#prod-cells = <0x04>;
prod {
board {
prod = <0x2470000 0x2220 0xffffffff 0x1aadb5 0x2480000 0x2220 0xffffffff 0x1aadb5>;
};
};
};
};
nvsciipc-kernel {
compatible = "nvidia,nvsciipc";
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";
sdmmc1_sdexp_disable = "/pinmux@2430000/sdmmc1_sdexp_disable";
sdmmc1_sdexp_enable = "/pinmux@2430000/sdmmc1_sdexp_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";
ncp_12v_pcie_supply = "/i2c@c240000/ncp81599@74";
cam_i2c = "/i2c@3180000";
tca9546_70 = "/i2c@3180000/tca9546@70";
dual_hawk0 = "/i2c@3180000/tca9546@70/i2c@0/dual_hawk_a@18";
dual_hawk_out0 = "/i2c@3180000/tca9546@70/i2c@0/dual_hawk_a@18/ports/port@0/endpoint";
dual_hawk1 = "/i2c@3180000/tca9546@70/i2c@0/dual_hawk_b@10";
dual_hawk_out1 = "/i2c@3180000/tca9546@70/i2c@0/dual_hawk_b@10/ports/port@0/endpoint";
max96712_dser = "/i2c@3180000/tca9546@70/i2c@0/single_max96712_a@62";
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";
dual_hawk2 = "/i2c@3180000/tca9546@70/i2c@1/dual_hawk_c@18";
dual_hawk_out2 = "/i2c@3180000/tca9546@70/i2c@1/dual_hawk_c@18/ports/port@0/endpoint";
dual_hawk3 = "/i2c@3180000/tca9546@70/i2c@1/dual_hawk_d@10";
dual_hawk_out3 = "/i2c@3180000/tca9546@70/i2c@1/dual_hawk_d@10/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";
owl_cam0 = "/i2c@3180000/ar0234_e@30";
ar0234_ar0234_out4 = "/i2c@3180000/ar0234_e@30/ports/port@0/endpoint";
owl_cam1 = "/i2c@3180000/ar0234_f@32";
ar0234_ar0234_out5 = "/i2c@3180000/ar0234_f@32/ports/port@0/endpoint";
owl_cam2 = "/i2c@3180000/ar0234_g@34";
ar0234_ar0234_out6 = "/i2c@3180000/ar0234_g@34/ports/port@0/endpoint";
owl_cam3 = "/i2c@3180000/ar0234_h@36";
ar0234_ar0234_out7 = "/i2c@3180000/ar0234_h@36/ports/port@0/endpoint";
owl_dser = "/i2c@3180000/max96712_b@62";
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";
hdr40_i2c1 = "/i2c@c250000";
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_rt5658_i2c3_ep = "/i2c@c250000/i2cmux@70/i2c@3/rt5659.12-001a@1a/port/endpoint";
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";
e2614_rt5658_ep = "/i2c@c250000/rt5659.1-001a@1a/port/endpoint";
dp_aux_ch3_i2c = "/i2c@31e0000";
rt5640 = "/i2c@31e0000/rt5640.8-001c@1c";
hawk_cam0 = "/i2c@31e0000/ar0234_a@30";
ar0234_ar0234_out0 = "/i2c@31e0000/ar0234_a@30/ports/port@0/endpoint";
hawk_cam1 = "/i2c@31e0000/ar0234_b@31";
ar0234_ar0234_out1 = "/i2c@31e0000/ar0234_b@31/ports/port@0/endpoint";
hawk_cam2 = "/i2c@31e0000/ar0234_c@32";
ar0234_ar0234_out2 = "/i2c@31e0000/ar0234_c@32/ports/port@0/endpoint";
hawk_cam3 = "/i2c@31e0000/ar0234_d@33";
ar0234_ar0234_out3 = "/i2c@31e0000/ar0234_d@33/ports/port@0/endpoint";
hawk_dser = "/i2c@31e0000/max96712_a@62";
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_sound_graph = "/sound_graph";
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";
admaif1_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@0";
admaif1_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@0/endpoint";
admaif2_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@1";
admaif2_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@1/endpoint";
admaif3_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@2";
admaif3_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@2/endpoint";
admaif4_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@3";
admaif4_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@3/endpoint";
admaif5_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@4";
admaif5_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@4/endpoint";
admaif6_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@5";
admaif6_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@5/endpoint";
admaif7_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@6";
admaif7_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@6/endpoint";
admaif8_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@7";
admaif8_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@7/endpoint";
admaif9_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@8";
admaif9_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@8/endpoint";
admaif10_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@9";
admaif10_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@9/endpoint";
admaif11_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@10";
admaif11_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@10/endpoint";
admaif12_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@11";
admaif12_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@11/endpoint";
admaif13_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@12";
admaif13_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@12/endpoint";
admaif14_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@13";
admaif14_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@13/endpoint";
admaif15_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@14";
admaif15_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@14/endpoint";
admaif16_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@15";
admaif16_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@15/endpoint";
admaif17_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@16";
admaif17_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@16/endpoint";
admaif18_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@17";
admaif18_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@17/endpoint";
admaif19_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@18";
admaif19_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@18/endpoint";
admaif20_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@19";
admaif20_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@19/endpoint";
admaif1_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@20/endpoint";
admaif2_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@21/endpoint";
admaif3_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@22/endpoint";
admaif4_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@23/endpoint";
admaif5_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@24/endpoint";
admaif6_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@25/endpoint";
admaif7_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@26/endpoint";
admaif8_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@27/endpoint";
admaif9_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@28/endpoint";
admaif10_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@29/endpoint";
admaif11_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@30/endpoint";
admaif12_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@31/endpoint";
admaif13_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@32/endpoint";
admaif14_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@33/endpoint";
admaif15_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@34/endpoint";
admaif16_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@35/endpoint";
admaif17_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@36/endpoint";
admaif18_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@37/endpoint";
admaif19_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@38/endpoint";
admaif20_fifo_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@39/endpoint";
admaif1_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@40";
admaif1_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@40/endpoint";
admaif2_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@41";
admaif2_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@41/endpoint";
admaif3_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@42";
admaif3_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@42/endpoint";
admaif4_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@43";
admaif4_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@43/endpoint";
admaif5_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@44";
admaif5_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@44/endpoint";
admaif6_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@45";
admaif6_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@45/endpoint";
admaif7_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@46";
admaif7_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@46/endpoint";
admaif8_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@47";
admaif8_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@47/endpoint";
admaif9_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@48";
admaif9_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@48/endpoint";
admaif10_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@49";
admaif10_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@49/endpoint";
admaif11_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@50";
admaif11_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@50/endpoint";
admaif12_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@51";
admaif12_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@51/endpoint";
admaif13_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@52";
admaif13_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@52/endpoint";
admaif14_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@53";
admaif14_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@53/endpoint";
admaif15_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@54";
admaif15_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@54/endpoint";
admaif16_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@55";
admaif16_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@55/endpoint";
admaif17_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@56";
admaif17_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@56/endpoint";
admaif18_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@57";
admaif18_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@57/endpoint";
admaif19_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@58";
admaif19_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@58/endpoint";
admaif20_codec_port = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@59";
admaif20_codec_ep = "/aconnect@2a41000/ahub/admaif@290f000/ports/port@59/endpoint";
tegra_sfc1 = "/aconnect@2a41000/ahub/sfc@2902000";
sfc1_in_cif_ep = "/aconnect@2a41000/ahub/sfc@2902000/ports/port@0/endpoint";
sfc1_out_port = "/aconnect@2a41000/ahub/sfc@2902000/ports/port@1";
tegra_sfc2 = "/aconnect@2a41000/ahub/sfc@2902200";
sfc2_in_cif_ep = "/aconnect@2a41000/ahub/sfc@2902200/ports/port@0/endpoint";
sfc2_out_port = "/aconnect@2a41000/ahub/sfc@2902200/ports/port@1";
tegra_sfc3 = "/aconnect@2a41000/ahub/sfc@2902400";
sfc3_in_cif_ep = "/aconnect@2a41000/ahub/sfc@2902400/ports/port@0/endpoint";
sfc3_out_port = "/aconnect@2a41000/ahub/sfc@2902400/ports/port@1";
tegra_sfc4 = "/aconnect@2a41000/ahub/sfc@2902600";
sfc4_in_cif_ep = "/aconnect@2a41000/ahub/sfc@2902600/ports/port@0/endpoint";
sfc4_out_port = "/aconnect@2a41000/ahub/sfc@2902600/ports/port@1";
tegra_spkprot = "/aconnect@2a41000/ahub/spkprot@2908c00";
tegra_amixer = "/aconnect@2a41000/ahub/amixer@290bb00";
mixer_in1_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@0/endpoint";
mixer_in2_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@1/endpoint";
mixer_in3_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@2/endpoint";
mixer_in4_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@3/endpoint";
mixer_in5_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@4/endpoint";
mixer_in6_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@5/endpoint";
mixer_in7_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@6/endpoint";
mixer_in8_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@7/endpoint";
mixer_in9_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@8/endpoint";
mixer_in10_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@9/endpoint";
mixer_out1_port = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@10";
mixer_out1_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@10/endpoint";
mixer_out2_port = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@11";
mixer_out2_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@11/endpoint";
mixer_out3_port = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@12";
mixer_out3_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@12/endpoint";
mixer_out4_port = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@13";
mixer_out4_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@13/endpoint";
mixer_out5_port = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@14";
mixer_out5_cif_ep = "/aconnect@2a41000/ahub/amixer@290bb00/ports/port@14/endpoint";
tegra_i2s1 = "/aconnect@2a41000/ahub/i2s@2901000";
i2s1_cif_ep = "/aconnect@2a41000/ahub/i2s@2901000/ports/port@0/endpoint";
i2s1_port = "/aconnect@2a41000/ahub/i2s@2901000/ports/port@1";
i2s1_dap_ep = "/aconnect@2a41000/ahub/i2s@2901000/ports/port@1/endpoint";
i2s1_dummy_ep = "/aconnect@2a41000/ahub/i2s@2901000/ports/port@2/endpoint";
tegra_i2s2 = "/aconnect@2a41000/ahub/i2s@2901100";
i2s2_cif_ep = "/aconnect@2a41000/ahub/i2s@2901100/ports/port@0/endpoint";
i2s2_port = "/aconnect@2a41000/ahub/i2s@2901100/ports/port@1";
hdr40_snd_i2s_dap_ep = "/aconnect@2a41000/ahub/i2s@2901100/ports/port@1/endpoint";
i2s2_dap_ep = "/aconnect@2a41000/ahub/i2s@2901100/ports/port@1/endpoint";
i2s2_dummy_ep = "/aconnect@2a41000/ahub/i2s@2901100/ports/port@2/endpoint";
tegra_i2s3 = "/aconnect@2a41000/ahub/i2s@2901200";
i2s3_cif_ep = "/aconnect@2a41000/ahub/i2s@2901200/ports/port@0/endpoint";
i2s3_port = "/aconnect@2a41000/ahub/i2s@2901200/ports/port@1";
i2s3_dap_ep = "/aconnect@2a41000/ahub/i2s@2901200/ports/port@1/endpoint";
i2s3_dummy_ep = "/aconnect@2a41000/ahub/i2s@2901200/ports/port@2/endpoint";
tegra_i2s4 = "/aconnect@2a41000/ahub/i2s@2901300";
i2s4_cif_ep = "/aconnect@2a41000/ahub/i2s@2901300/ports/port@0/endpoint";
i2s4_port = "/aconnect@2a41000/ahub/i2s@2901300/ports/port@1";
i2s4_dap_ep = "/aconnect@2a41000/ahub/i2s@2901300/ports/port@1/endpoint";
i2s4_dummy_ep = "/aconnect@2a41000/ahub/i2s@2901300/ports/port@2/endpoint";
tegra_i2s5 = "/aconnect@2a41000/ahub/i2s@2901400";
i2s5_cif_ep = "/aconnect@2a41000/ahub/i2s@2901400/ports/port@0/endpoint";
i2s5_port = "/aconnect@2a41000/ahub/i2s@2901400/ports/port@1";
i2s5_dap_ep = "/aconnect@2a41000/ahub/i2s@2901400/ports/port@1/endpoint";
i2s5_dummy_ep = "/aconnect@2a41000/ahub/i2s@2901400/ports/port@2/endpoint";
tegra_i2s6 = "/aconnect@2a41000/ahub/i2s@2901500";
i2s6_cif_ep = "/aconnect@2a41000/ahub/i2s@2901500/ports/port@0/endpoint";
i2s6_port = "/aconnect@2a41000/ahub/i2s@2901500/ports/port@1";
i2s6_dap_ep = "/aconnect@2a41000/ahub/i2s@2901500/ports/port@1/endpoint";
i2s6_dummy_ep = "/aconnect@2a41000/ahub/i2s@2901500/ports/port@2/endpoint";
tegra_amx1 = "/aconnect@2a41000/ahub/amx@2903000";
amx1_in1_cif_ep = "/aconnect@2a41000/ahub/amx@2903000/ports/port@0/endpoint";
amx1_in2_cif_ep = "/aconnect@2a41000/ahub/amx@2903000/ports/port@1/endpoint";
amx1_in3_cif_ep = "/aconnect@2a41000/ahub/amx@2903000/ports/port@2/endpoint";
amx1_in4_cif_ep = "/aconnect@2a41000/ahub/amx@2903000/ports/port@3/endpoint";
amx1_out_port = "/aconnect@2a41000/ahub/amx@2903000/ports/port@4";
amx1_out_cif_ep = "/aconnect@2a41000/ahub/amx@2903000/ports/port@4/endpoint";
tegra_amx2 = "/aconnect@2a41000/ahub/amx@2903100";
amx2_in1_cif_ep = "/aconnect@2a41000/ahub/amx@2903100/ports/port@0/endpoint";
amx2_in2_cif_ep = "/aconnect@2a41000/ahub/amx@2903100/ports/port@1/endpoint";
amx2_in3_cif_ep = "/aconnect@2a41000/ahub/amx@2903100/ports/port@2/endpoint";
amx2_in4_cif_ep = "/aconnect@2a41000/ahub/amx@2903100/ports/port@3/endpoint";
amx2_out_port = "/aconnect@2a41000/ahub/amx@2903100/ports/port@4";
amx2_out_cif_ep = "/aconnect@2a41000/ahub/amx@2903100/ports/port@4/endpoint";
tegra_amx3 = "/aconnect@2a41000/ahub/amx@2903200";
amx3_in1_cif_ep = "/aconnect@2a41000/ahub/amx@2903200/ports/port@0/endpoint";
amx3_in2_cif_ep = "/aconnect@2a41000/ahub/amx@2903200/ports/port@1/endpoint";
amx3_in3_cif_ep = "/aconnect@2a41000/ahub/amx@2903200/ports/port@2/endpoint";
amx3_in4_cif_ep = "/aconnect@2a41000/ahub/amx@2903200/ports/port@3/endpoint";
amx3_out_port = "/aconnect@2a41000/ahub/amx@2903200/ports/port@4";
amx3_out_cif_ep = "/aconnect@2a41000/ahub/amx@2903200/ports/port@4/endpoint";
tegra_amx4 = "/aconnect@2a41000/ahub/amx@2903300";
amx4_in1_cif_ep = "/aconnect@2a41000/ahub/amx@2903300/ports/port@0/endpoint";
amx4_in2_cif_ep = "/aconnect@2a41000/ahub/amx@2903300/ports/port@1/endpoint";
amx4_in3_cif_ep = "/aconnect@2a41000/ahub/amx@2903300/ports/port@2/endpoint";
amx4_in4_cif_ep = "/aconnect@2a41000/ahub/amx@2903300/ports/port@3/endpoint";
amx4_out_port = "/aconnect@2a41000/ahub/amx@2903300/ports/port@4";
amx4_out_cif_ep = "/aconnect@2a41000/ahub/amx@2903300/ports/port@4/endpoint";
tegra_adx1 = "/aconnect@2a41000/ahub/adx@2903800";
adx1_out1_port = "/aconnect@2a41000/ahub/adx@2903800/ports/port@0";
adx1_out1_cif_ep = "/aconnect@2a41000/ahub/adx@2903800/ports/port@0/endpoint";
adx1_out2_port = "/aconnect@2a41000/ahub/adx@2903800/ports/port@1";
adx1_out2_cif_ep = "/aconnect@2a41000/ahub/adx@2903800/ports/port@1/endpoint";
adx1_out3_port = "/aconnect@2a41000/ahub/adx@2903800/ports/port@2";
adx1_out3_cif_ep = "/aconnect@2a41000/ahub/adx@2903800/ports/port@2/endpoint";
adx1_out4_port = "/aconnect@2a41000/ahub/adx@2903800/ports/port@3";
adx1_out4_cif_ep = "/aconnect@2a41000/ahub/adx@2903800/ports/port@3/endpoint";
adx1_in_cif_ep = "/aconnect@2a41000/ahub/adx@2903800/ports/port@4/endpoint";
tegra_adx2 = "/aconnect@2a41000/ahub/adx@2903900";
adx2_out1_port = "/aconnect@2a41000/ahub/adx@2903900/ports/port@0";
adx2_out1_cif_ep = "/aconnect@2a41000/ahub/adx@2903900/ports/port@0/endpoint";
adx2_out2_port = "/aconnect@2a41000/ahub/adx@2903900/ports/port@1";
adx2_out2_cif_ep = "/aconnect@2a41000/ahub/adx@2903900/ports/port@1/endpoint";
adx2_out3_port = "/aconnect@2a41000/ahub/adx@2903900/ports/port@2";
adx2_out3_cif_ep = "/aconnect@2a41000/ahub/adx@2903900/ports/port@2/endpoint";
adx2_out4_port = "/aconnect@2a41000/ahub/adx@2903900/ports/port@3";
adx2_out4_cif_ep = "/aconnect@2a41000/ahub/adx@2903900/ports/port@3/endpoint";
adx2_in_cif_ep = "/aconnect@2a41000/ahub/adx@2903900/ports/port@4/endpoint";
tegra_adx3 = "/aconnect@2a41000/ahub/adx@2903a00";
adx3_out1_port = "/aconnect@2a41000/ahub/adx@2903a00/ports/port@0";
adx3_out1_cif_ep = "/aconnect@2a41000/ahub/adx@2903a00/ports/port@0/endpoint";
adx3_out2_port = "/aconnect@2a41000/ahub/adx@2903a00/ports/port@1";
adx3_out2_cif_ep = "/aconnect@2a41000/ahub/adx@2903a00/ports/port@1/endpoint";
adx3_out3_port = "/aconnect@2a41000/ahub/adx@2903a00/ports/port@2";
adx3_out3_cif_ep = "/aconnect@2a41000/ahub/adx@2903a00/ports/port@2/endpoint";
adx3_out4_port = "/aconnect@2a41000/ahub/adx@2903a00/ports/port@3";
adx3_out4_cif_ep = "/aconnect@2a41000/ahub/adx@2903a00/ports/port@3/endpoint";
adx3_in_cif_ep = "/aconnect@2a41000/ahub/adx@2903a00/ports/port@4/endpoint";
tegra_adx4 = "/aconnect@2a41000/ahub/adx@2903b00";
adx4_out1_port = "/aconnect@2a41000/ahub/adx@2903b00/ports/port@0";
adx4_out1_cif_ep = "/aconnect@2a41000/ahub/adx@2903b00/ports/port@0/endpoint";
adx4_out2_port = "/aconnect@2a41000/ahub/adx@2903b00/ports/port@1";
adx4_out2_cif_ep = "/aconnect@2a41000/ahub/adx@2903b00/ports/port@1/endpoint";
adx4_out3_port = "/aconnect@2a41000/ahub/adx@2903b00/ports/port@2";
adx4_out3_cif_ep = "/aconnect@2a41000/ahub/adx@2903b00/ports/port@2/endpoint";
adx4_out4_port = "/aconnect@2a41000/ahub/adx@2903b00/ports/port@3";
adx4_out4_cif_ep = "/aconnect@2a41000/ahub/adx@2903b00/ports/port@3/endpoint";
adx4_in_cif_ep = "/aconnect@2a41000/ahub/adx@2903b00/ports/port@4/endpoint";
tegra_dmic1 = "/aconnect@2a41000/ahub/dmic@2904000";
dmic1_cif_ep = "/aconnect@2a41000/ahub/dmic@2904000/ports/port@0/endpoint";
dmic1_port = "/aconnect@2a41000/ahub/dmic@2904000/ports/port@1";
dmic1_dap_ep = "/aconnect@2a41000/ahub/dmic@2904000/ports/port@1/endpoint";
dmic1_dummy_ep = "/aconnect@2a41000/ahub/dmic@2904000/ports/port@2/endpoint";
tegra_dmic2 = "/aconnect@2a41000/ahub/dmic@2904100";
dmic2_cif_ep = "/aconnect@2a41000/ahub/dmic@2904100/ports/port@0/endpoint";
dmic2_port = "/aconnect@2a41000/ahub/dmic@2904100/ports/port@1";
dmic2_dap_ep = "/aconnect@2a41000/ahub/dmic@2904100/ports/port@1/endpoint";
dmic2_dummy_ep = "/aconnect@2a41000/ahub/dmic@2904100/ports/port@2/endpoint";
tegra_dmic3 = "/aconnect@2a41000/ahub/dmic@2904200";
dmic3_cif_ep = "/aconnect@2a41000/ahub/dmic@2904200/ports/port@0/endpoint";
dmic3_port = "/aconnect@2a41000/ahub/dmic@2904200/ports/port@1";
dmic3_dap_ep = "/aconnect@2a41000/ahub/dmic@2904200/ports/port@1/endpoint";
dmic3_dummy_ep = "/aconnect@2a41000/ahub/dmic@2904200/ports/port@2/endpoint";
tegra_dmic4 = "/aconnect@2a41000/ahub/dmic@2904300";
dmic4_cif_ep = "/aconnect@2a41000/ahub/dmic@2904300/ports/port@0/endpoint";
dmic4_port = "/aconnect@2a41000/ahub/dmic@2904300/ports/port@1";
dmic4_dap_ep = "/aconnect@2a41000/ahub/dmic@2904300/ports/port@1/endpoint";
dmic4_dummy_ep = "/aconnect@2a41000/ahub/dmic@2904300/ports/port@2/endpoint";
tegra_afc1 = "/aconnect@2a41000/ahub/afc@2907000";
afc1_in_cif_ep = "/aconnect@2a41000/ahub/afc@2907000/ports/port@0/endpoint";
afc1_out_port = "/aconnect@2a41000/ahub/afc@2907000/ports/port@1";
afc1_out_cif_ep = "/aconnect@2a41000/ahub/afc@2907000/ports/port@1/endpoint";
tegra_afc2 = "/aconnect@2a41000/ahub/afc@2907100";
afc2_in_cif_ep = "/aconnect@2a41000/ahub/afc@2907100/ports/port@0/endpoint";
afc2_out_port = "/aconnect@2a41000/ahub/afc@2907100/ports/port@1";
afc2_out_cif_ep = "/aconnect@2a41000/ahub/afc@2907100/ports/port@1/ndpoint";
tegra_afc3 = "/aconnect@2a41000/ahub/afc@2907200";
afc3_in_cif_ep = "/aconnect@2a41000/ahub/afc@2907200/ports/port@0/endpoint";
afc3_out_port = "/aconnect@2a41000/ahub/afc@2907200/ports/port@1";
afc3_out_cif_ep = "/aconnect@2a41000/ahub/afc@2907200/ports/port@1/endpoint";
tegra_afc4 = "/aconnect@2a41000/ahub/afc@2907300";
afc4_in_cif_ep = "/aconnect@2a41000/ahub/afc@2907300/ports/port@0/endpoint";
afc4_out_port = "/aconnect@2a41000/ahub/afc@2907300/ports/port@1";
afc4_out_cif_ep = "/aconnect@2a41000/ahub/afc@2907300/ports/port@1/endpoint";
tegra_afc5 = "/aconnect@2a41000/ahub/afc@2907400";
afc5_in_cif_ep = "/aconnect@2a41000/ahub/afc@2907400/ports/port@0/endpoint";
afc5_out_port = "/aconnect@2a41000/ahub/afc@2907400/ports/port@1";
afc5_out_cif_ep = "/aconnect@2a41000/ahub/afc@2907400/ports/port@1/endpoint";
tegra_afc6 = "/aconnect@2a41000/ahub/afc@2907500";
afc6_in_cif_ep = "/aconnect@2a41000/ahub/afc@2907500/ports/port@0/endpoint";
afc6_out_port = "/aconnect@2a41000/ahub/afc@2907500/ports/port@1";
afc6_out_cif_ep = "/aconnect@2a41000/ahub/afc@2907500/ports/port@1/endpoint";
tegra_mvc1 = "/aconnect@2a41000/ahub/mvc@290a000";
mvc1_in_cif_ep = "/aconnect@2a41000/ahub/mvc@290a000/ports/port@0/endpoint";
mvc1_out_port = "/aconnect@2a41000/ahub/mvc@290a000/ports/port@1";
mvc1_out_cif_ep = "/aconnect@2a41000/ahub/mvc@290a000/ports/port@1/endpoint";
tegra_mvc2 = "/aconnect@2a41000/ahub/mvc@290a200";
mvc2_in_cif_ep = "/aconnect@2a41000/ahub/mvc@290a200/ports/port@0/endpoint";
mvc2_out_port = "/aconnect@2a41000/ahub/mvc@290a200/ports/port@1";
mvc2_out_cif_ep = "/aconnect@2a41000/ahub/mvc@290a200/ports/port@1/endpoint";
tegra_iqc1 = "/aconnect@2a41000/ahub/iqc@290e000";
tegra_asrc = "/aconnect@2a41000/ahub/asrc@2910000";
asrc_in1_cif_ep = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@0/endpoint";
asrc_in2_cif_ep = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@1/endpoint";
asrc_in3_cif_ep = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@2/endpoint";
asrc_in4_cif_ep = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@3/endpoint";
asrc_in5_cif_ep = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@4/endpoint";
asrc_in6_cif_ep = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@5/endpoint";
asrc_in7_cif_ep = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@6/endpoint";
asrc_out1_port = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@7";
asrc_out1_cif_ep = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@7/endpoint";
asrc_out2_port = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@8";
asrc_out2_cif_ep = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@8/endpoint";
asrc_out3_port = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@9";
asrc_out3_cif_ep = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@9/endpoint";
asrc_out4_port = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@10";
asrc_out4_cif_ep = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@10/endpoint";
asrc_out5_port = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@11";
asrc_out5_cif_ep = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@11/endpoint";
asrc_out6_port = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@12";
asrc_out6_cif_ep = "/aconnect@2a41000/ahub/asrc@2910000/ports/port@12/endpoint";
tegra_arad = "/aconnect@2a41000/ahub/arad@290e400";
arad_out_port = "/aconnect@2a41000/ahub/arad@290e400/ports/port@0";
arad_in_cif_ep = "/aconnect@2a41000/ahub/arad@290e400/ports/port@0/endpoint";
tegra_ahc = "/aconnect@2a41000/ahub/ahc@290b900";
tegra_ope1 = "/aconnect@2a41000/ahub/ope@2908000";
ope1_in_cif_ep = "/aconnect@2a41000/ahub/ope@2908000/ports/port@0/endpoint";
ope1_out_port = "/aconnect@2a41000/ahub/ope@2908000/ports/port@1";
ope1_out_cif_ep = "/aconnect@2a41000/ahub/ope@2908000/ports/port@1/endpoint";
tegra_dspk1 = "/aconnect@2a41000/ahub/dspk@2905000";
dspk1_cif_ep = "/aconnect@2a41000/ahub/dspk@2905000/ports/port@0/endpoint";
dspk1_port = "/aconnect@2a41000/ahub/dspk@2905000/ports/port@1";
dspk1_dap_ep = "/aconnect@2a41000/ahub/dspk@2905000/ports/port@1/endpoint";
dspk1_dummy_ep = "/aconnect@2a41000/ahub/dspk@2905000/ports/port@2/endpoint";
tegra_dspk2 = "/aconnect@2a41000/ahub/dspk@2905100";
dspk2_cif_ep = "/aconnect@2a41000/ahub/dspk@2905100/ports/port@0/endpoint";
dspk2_port = "/aconnect@2a41000/ahub/dspk@2905100/ports/port@1";
dspk2_dap_ep = "/aconnect@2a41000/ahub/dspk@2905100/ports/port@1/endpoint";
dspk2_dummy_ep = "/aconnect@2a41000/ahub/dspk@2905100/ports/port@2/endpoint";
xbar_admaif1_ep = "/aconnect@2a41000/ahub/ports/port@0/endpoint";
xbar_admaif2_ep = "/aconnect@2a41000/ahub/ports/port@1/endpoint";
xbar_admaif3_ep = "/aconnect@2a41000/ahub/ports/port@2/endpoint";
xbar_admaif4_ep = "/aconnect@2a41000/ahub/ports/port@3/endpoint";
xbar_admaif5_ep = "/aconnect@2a41000/ahub/ports/port@4/endpoint";
xbar_admaif6_ep = "/aconnect@2a41000/ahub/ports/port@5/endpoint";
xbar_admaif7_ep = "/aconnect@2a41000/ahub/ports/port@6/endpoint";
xbar_admaif8_ep = "/aconnect@2a41000/ahub/ports/port@7/endpoint";
xbar_admaif9_ep = "/aconnect@2a41000/ahub/ports/port@8/endpoint";
xbar_admaif10_ep = "/aconnect@2a41000/ahub/ports/port@9/endpoint";
xbar_admaif11_ep = "/aconnect@2a41000/ahub/ports/port@10/endpoint";
xbar_admaif12_ep = "/aconnect@2a41000/ahub/ports/port@11/endpoint";
xbar_admaif13_ep = "/aconnect@2a41000/ahub/ports/port@12/endpoint";
xbar_admaif14_ep = "/aconnect@2a41000/ahub/ports/port@13/endpoint";
xbar_admaif15_ep = "/aconnect@2a41000/ahub/ports/port@14/endpoint";
xbar_admaif16_ep = "/aconnect@2a41000/ahub/ports/port@15/endpoint";
xbar_admaif17_ep = "/aconnect@2a41000/ahub/ports/port@16/endpoint";
xbar_admaif18_ep = "/aconnect@2a41000/ahub/ports/port@17/endpoint";
xbar_admaif19_ep = "/aconnect@2a41000/ahub/ports/port@18/endpoint";
xbar_admaif20_ep = "/aconnect@2a41000/ahub/ports/port@19/endpoint";
xbar_i2s1_port = "/aconnect@2a41000/ahub/ports/port@20";
xbar_i2s1_ep = "/aconnect@2a41000/ahub/ports/port@20/endpoint";
xbar_i2s2_port = "/aconnect@2a41000/ahub/ports/port@21";
xbar_i2s2_ep = "/aconnect@2a41000/ahub/ports/port@21/endpoint";
xbar_i2s3_port = "/aconnect@2a41000/ahub/ports/port@22";
xbar_i2s3_ep = "/aconnect@2a41000/ahub/ports/port@22/endpoint";
xbar_i2s4_port = "/aconnect@2a41000/ahub/ports/port@23";
xbar_i2s4_ep = "/aconnect@2a41000/ahub/ports/port@23/endpoint";
xbar_i2s5_port = "/aconnect@2a41000/ahub/ports/port@24";
xbar_i2s5_ep = "/aconnect@2a41000/ahub/ports/port@24/endpoint";
xbar_i2s6_port = "/aconnect@2a41000/ahub/ports/port@25";
xbar_i2s6_ep = "/aconnect@2a41000/ahub/ports/port@25/endpoint";
xbar_dmic1_port = "/aconnect@2a41000/ahub/ports/port@26";
xbar_dmic1_ep = "/aconnect@2a41000/ahub/ports/port@26/endpoint";
xbar_dmic2_port = "/aconnect@2a41000/ahub/ports/port@27";
xbar_dmic2_ep = "/aconnect@2a41000/ahub/ports/port@27/endpoint";
xbar_dmic3_port = "/aconnect@2a41000/ahub/ports/port@28";
xbar_dmic3_ep = "/aconnect@2a41000/ahub/ports/port@28/endpoint";
xbar_dmic4_port = "/aconnect@2a41000/ahub/ports/port@29";
xbar_dmic4_ep = "/aconnect@2a41000/ahub/ports/port@29/endpoint";
xbar_dspk1_port = "/aconnect@2a41000/ahub/ports/port@30";
xbar_dspk1_ep = "/aconnect@2a41000/ahub/ports/port@30/endpoint";
xbar_dspk2_port = "/aconnect@2a41000/ahub/ports/port@31";
xbar_dspk2_ep = "/aconnect@2a41000/ahub/ports/port@31/endpoint";
xbar_sfc1_in_port = "/aconnect@2a41000/ahub/ports/port@32";
xbar_sfc1_in_ep = "/aconnect@2a41000/ahub/ports/port@32/endpoint";
xbar_sfc2_in_port = "/aconnect@2a41000/ahub/ports/port@34";
xbar_sfc2_in_ep = "/aconnect@2a41000/ahub/ports/port@34/endpoint";
xbar_sfc3_in_port = "/aconnect@2a41000/ahub/ports/port@36";
xbar_sfc3_in_ep = "/aconnect@2a41000/ahub/ports/port@36/endpoint";
xbar_sfc4_in_port = "/aconnect@2a41000/ahub/ports/port@38";
xbar_sfc4_in_ep = "/aconnect@2a41000/ahub/ports/port@38/endpoint";
xbar_mixer_in1_port = "/aconnect@2a41000/ahub/ports/port@84";
xbar_mixer_in1_ep = "/aconnect@2a41000/ahub/ports/port@84/endpoint";
xbar_mixer_in2_port = "/aconnect@2a41000/ahub/ports/port@85";
xbar_mixer_in2_ep = "/aconnect@2a41000/ahub/ports/port@85/endpoint";
xbar_mixer_in3_port = "/aconnect@2a41000/ahub/ports/port@86";
xbar_mixer_in3_ep = "/aconnect@2a41000/ahub/ports/port@86/endpoint";
xbar_mixer_in4_port = "/aconnect@2a41000/ahub/ports/port@87";
xbar_mixer_in4_ep = "/aconnect@2a41000/ahub/ports/port@87/endpoint";
xbar_mixer_in5_port = "/aconnect@2a41000/ahub/ports/port@88";
xbar_mixer_in5_ep = "/aconnect@2a41000/ahub/ports/port@88/endpoint";
xbar_mixer_in6_port = "/aconnect@2a41000/ahub/ports/port@89";
xbar_mixer_in6_ep = "/aconnect@2a41000/ahub/ports/port@89/endpoint";
xbar_mixer_in7_port = "/aconnect@2a41000/ahub/ports/port@90";
xbar_mixer_in7_ep = "/aconnect@2a41000/ahub/ports/port@90/endpoint";
xbar_mixer_in8_port = "/aconnect@2a41000/ahub/ports/port@91";
xbar_mixer_in8_ep = "/aconnect@2a41000/ahub/ports/port@91/endpoint";
xbar_mixer_in9_port = "/aconnect@2a41000/ahub/ports/port@92";
xbar_mixer_in9_ep = "/aconnect@2a41000/ahub/ports/port@92/endpoint";
xbar_mixer_in10_port = "/aconnect@2a41000/ahub/ports/port@93";
xbar_mixer_in10_ep = "/aconnect@2a41000/ahub/ports/port@93/endpoint";
xbar_mixer_out1_port = "/aconnect@2a41000/ahub/ports/port@94";
xbar_mixer_out1_ep = "/aconnect@2a41000/ahub/ports/port@94/endpoint";
xbar_mixer_out2_port = "/aconnect@2a41000/ahub/ports/port@95";
xbar_mixer_out2_ep = "/aconnect@2a41000/ahub/ports/port@95/endpoint";
xbar_mixer_out3_port = "/aconnect@2a41000/ahub/ports/port@96";
xbar_mixer_out3_ep = "/aconnect@2a41000/ahub/ports/port@96/endpoint";
xbar_mixer_out4_port = "/aconnect@2a41000/ahub/ports/port@97";
xbar_mixer_out4_ep = "/aconnect@2a41000/ahub/ports/port@97/endpoint";
xbar_mixer_out5_port = "/aconnect@2a41000/ahub/ports/port@98";
xbar_mixer_out5_ep = "/aconnect@2a41000/ahub/ports/port@98/endpoint";
xbar_afc1_in_port = "/aconnect@2a41000/ahub/ports/port@114";
xbar_afc1_in_ep = "/aconnect@2a41000/ahub/ports/port@114/endpoint";
xbar_afc2_in_port = "/aconnect@2a41000/ahub/ports/port@115";
xbar_afc2_in_ep = "/aconnect@2a41000/ahub/ports/port@115/endpoint";
xbar_afc3_in_port = "/aconnect@2a41000/ahub/ports/port@116";
xbar_afc3_in_ep = "/aconnect@2a41000/ahub/ports/port@116/endpoint";
xbar_afc4_in_port = "/aconnect@2a41000/ahub/ports/port@117";
xbar_afc4_in_ep = "/aconnect@2a41000/ahub/ports/port@117/endpoint";
xbar_afc5_in_port = "/aconnect@2a41000/ahub/ports/port@118";
xbar_afc5_in_ep = "/aconnect@2a41000/ahub/ports/port@118/endpoint";
xbar_afc6_in_port = "/aconnect@2a41000/ahub/ports/port@119";
xbar_afc6_in_ep = "/aconnect@2a41000/ahub/ports/port@119/endpoint";
xbar_ope1_in_port = "/aconnect@2a41000/ahub/ports/port@112";
xbar_ope1_in_ep = "/aconnect@2a41000/ahub/ports/port@112/endpoint";
xbar_mvc1_in_port = "/aconnect@2a41000/ahub/ports/port@40";
xbar_mvc1_in_ep = "/aconnect@2a41000/ahub/ports/port@40/endpoint";
xbar_mvc2_in_port = "/aconnect@2a41000/ahub/ports/port@42";
xbar_mvc2_in_ep = "/aconnect@2a41000/ahub/ports/port@42/endpoint";
xbar_amx1_in1_port = "/aconnect@2a41000/ahub/ports/port@44";
xbar_amx1_in1_ep = "/aconnect@2a41000/ahub/ports/port@44/endpoint";
xbar_amx1_in2_port = "/aconnect@2a41000/ahub/ports/port@45";
xbar_amx1_in2_ep = "/aconnect@2a41000/ahub/ports/port@45/endpoint";
xbar_amx1_in3_port = "/aconnect@2a41000/ahub/ports/port@46";
xbar_amx1_in3_ep = "/aconnect@2a41000/ahub/ports/port@46/endpoint";
xbar_amx1_in4_port = "/aconnect@2a41000/ahub/ports/port@47";
xbar_amx1_in4_ep = "/aconnect@2a41000/ahub/ports/port@47/endpoint";
xbar_amx1_out_port = "/aconnect@2a41000/ahub/ports/port@48";
xbar_amx1_out_ep = "/aconnect@2a41000/ahub/ports/port@48/endpoint";
xbar_amx2_in1_port = "/aconnect@2a41000/ahub/ports/port@49";
xbar_amx2_in1_ep = "/aconnect@2a41000/ahub/ports/port@49/endpoint";
xbar_amx2_in2_port = "/aconnect@2a41000/ahub/ports/port@50";
xbar_amx2_in2_ep = "/aconnect@2a41000/ahub/ports/port@50/endpoint";
xbar_amx2_in3_port = "/aconnect@2a41000/ahub/ports/port@51";
xbar_amx2_in3_ep = "/aconnect@2a41000/ahub/ports/port@51/endpoint";
xbar_amx2_in4_port = "/aconnect@2a41000/ahub/ports/port@52";
xbar_amx2_in4_ep = "/aconnect@2a41000/ahub/ports/port@52/endpoint";
xbar_amx2_out_port = "/aconnect@2a41000/ahub/ports/port@53";
xbar_amx2_out_ep = "/aconnect@2a41000/ahub/ports/port@53/endpoint";
xbar_amx3_in1_port = "/aconnect@2a41000/ahub/ports/port@54";
xbar_amx3_in1_ep = "/aconnect@2a41000/ahub/ports/port@54/endpoint";
xbar_amx3_in2_port = "/aconnect@2a41000/ahub/ports/port@55";
xbar_amx3_in2_ep = "/aconnect@2a41000/ahub/ports/port@55/endpoint";
xbar_amx3_in3_port = "/aconnect@2a41000/ahub/ports/port@56";
xbar_amx3_in3_ep = "/aconnect@2a41000/ahub/ports/port@56/endpoint";
xbar_amx3_in4_port = "/aconnect@2a41000/ahub/ports/port@57";
xbar_amx3_in4_ep = "/aconnect@2a41000/ahub/ports/port@57/endpoint";
xbar_amx3_out_port = "/aconnect@2a41000/ahub/ports/port@58";
xbar_amx3_out_ep = "/aconnect@2a41000/ahub/ports/port@58/endpoint";
xbar_amx4_in1_port = "/aconnect@2a41000/ahub/ports/port@59";
xbar_amx4_in1_ep = "/aconnect@2a41000/ahub/ports/port@59/endpoint";
xbar_amx4_in2_port = "/aconnect@2a41000/ahub/ports/port@60";
xbar_amx4_in2_ep = "/aconnect@2a41000/ahub/ports/port@60/endpoint";
xbar_amx4_in3_port = "/aconnect@2a41000/ahub/ports/port@61";
xbar_amx4_in3_ep = "/aconnect@2a41000/ahub/ports/port@61/endpoint";
xbar_amx4_in4_port = "/aconnect@2a41000/ahub/ports/port@62";
xbar_amx4_in4_ep = "/aconnect@2a41000/ahub/ports/port@62/endpoint";
xbar_amx4_out_port = "/aconnect@2a41000/ahub/ports/port@63";
xbar_amx4_out_ep = "/aconnect@2a41000/ahub/ports/port@63/endpoint";
xbar_adx1_in_port = "/aconnect@2a41000/ahub/ports/port@64";
xbar_adx1_in_ep = "/aconnect@2a41000/ahub/ports/port@64/endpoint";
xbar_adx1_out1_port = "/aconnect@2a41000/ahub/ports/port@65";
xbar_adx1_out1_ep = "/aconnect@2a41000/ahub/ports/port@65/endpoint";
xbar_adx1_out2_port = "/aconnect@2a41000/ahub/ports/port@66";
xbar_adx1_out2_ep = "/aconnect@2a41000/ahub/ports/port@66/endpoint";
xbar_adx1_out3_port = "/aconnect@2a41000/ahub/ports/port@67";
xbar_adx1_out3_ep = "/aconnect@2a41000/ahub/ports/port@67/endpoint";
xbar_adx1_out4_port = "/aconnect@2a41000/ahub/ports/port@68";
xbar_adx1_out4_ep = "/aconnect@2a41000/ahub/ports/port@68/endpoint";
xbar_adx2_in_port = "/aconnect@2a41000/ahub/ports/port@69";
xbar_adx2_in_ep = "/aconnect@2a41000/ahub/ports/port@69/endpoint";
xbar_adx2_out1_port = "/aconnect@2a41000/ahub/ports/port@70";
xbar_adx2_out1_ep = "/aconnect@2a41000/ahub/ports/port@70/endpoint";
xbar_adx2_out2_port = "/aconnect@2a41000/ahub/ports/port@71";
xbar_adx2_out2_ep = "/aconnect@2a41000/ahub/ports/port@71/endpoint";
xbar_adx2_out3_port = "/aconnect@2a41000/ahub/ports/port@72";
xbar_adx2_out3_ep = "/aconnect@2a41000/ahub/ports/port@72/endpoint";
xbar_adx2_out4_port = "/aconnect@2a41000/ahub/ports/port@73";
xbar_adx2_out4_ep = "/aconnect@2a41000/ahub/ports/port@73/endpoint";
xbar_adx3_in_port = "/aconnect@2a41000/ahub/ports/port@74";
xbar_adx3_in_ep = "/aconnect@2a41000/ahub/ports/port@74/endpoint";
xbar_adx3_out1_port = "/aconnect@2a41000/ahub/ports/port@75";
xbar_adx3_out1_ep = "/aconnect@2a41000/ahub/ports/port@75/endpoint";
xbar_adx3_out2_port = "/aconnect@2a41000/ahub/ports/port@76";
xbar_adx3_out2_ep = "/aconnect@2a41000/ahub/ports/port@76/endpoint";
xbar_adx3_out3_port = "/aconnect@2a41000/ahub/ports/port@77";
xbar_adx3_out3_ep = "/aconnect@2a41000/ahub/ports/port@77/endpoint";
xbar_adx3_out4_port = "/aconnect@2a41000/ahub/ports/port@78";
xbar_adx3_out4_ep = "/aconnect@2a41000/ahub/ports/port@78/endpoint";
xbar_adx4_in_port = "/aconnect@2a41000/ahub/ports/port@79";
xbar_adx4_in_ep = "/aconnect@2a41000/ahub/ports/port@79/endpoint";
xbar_adx4_out1_port = "/aconnect@2a41000/ahub/ports/port@80";
xbar_adx4_out1_ep = "/aconnect@2a41000/ahub/ports/port@80/endpoint";
xbar_adx4_out2_port = "/aconnect@2a41000/ahub/ports/port@81";
xbar_adx4_out2_ep = "/aconnect@2a41000/ahub/ports/port@81/endpoint";
xbar_adx4_out3_port = "/aconnect@2a41000/ahub/ports/port@82";
xbar_adx4_out3_ep = "/aconnect@2a41000/ahub/ports/port@82/endpoint";
xbar_adx4_out4_port = "/aconnect@2a41000/ahub/ports/port@83";
xbar_adx4_out4_ep = "/aconnect@2a41000/ahub/ports/port@83/endpoint";
xbar_asrc_in1_port = "/aconnect@2a41000/ahub/ports/port@99";
xbar_asrc_in1_ep = "/aconnect@2a41000/ahub/ports/port@99/endpoint";
xbar_asrc_in2_port = "/aconnect@2a41000/ahub/ports/port@101";
xbar_asrc_in2_ep = "/aconnect@2a41000/ahub/ports/port@101/endpoint";
xbar_asrc_in3_port = "/aconnect@2a41000/ahub/ports/port@103";
xbar_asrc_in3_ep = "/aconnect@2a41000/ahub/ports/port@103/endpoint";
xbar_asrc_in4_port = "/aconnect@2a41000/ahub/ports/port@105";
xbar_asrc_in4_ep = "/aconnect@2a41000/ahub/ports/port@105/endpoint";
xbar_asrc_in5_port = "/aconnect@2a41000/ahub/ports/port@107";
xbar_asrc_in5_ep = "/aconnect@2a41000/ahub/ports/port@107/endpoint";
xbar_asrc_in6_port = "/aconnect@2a41000/ahub/ports/port@109";
xbar_asrc_in6_ep = "/aconnect@2a41000/ahub/ports/port@109/endpoint";
xbar_asrc_in7_port = "/aconnect@2a41000/ahub/ports/port@111";
xbar_asrc_in7_ep = "/aconnect@2a41000/ahub/ports/port@111/endpoint";
xbar_asrc_out1_port = "/aconnect@2a41000/ahub/ports/port@100";
xbar_asrc_out1_ep = "/aconnect@2a41000/ahub/ports/port@100/endpoint";
xbar_asrc_out2_port = "/aconnect@2a41000/ahub/ports/port@102";
xbar_asrc_out2_ep = "/aconnect@2a41000/ahub/ports/port@102/endpoint";
xbar_asrc_out3_port = "/aconnect@2a41000/ahub/ports/port@104";
xbar_asrc_out3_ep = "/aconnect@2a41000/ahub/ports/port@104/endpoint";
xbar_asrc_out4_port = "/aconnect@2a41000/ahub/ports/port@106";
xbar_asrc_out4_ep = "/aconnect@2a41000/ahub/ports/port@106/endpoint";
xbar_asrc_out5_port = "/aconnect@2a41000/ahub/ports/port@108";
xbar_asrc_out5_ep = "/aconnect@2a41000/ahub/ports/port@108/endpoint";
xbar_asrc_out6_port = "/aconnect@2a41000/ahub/ports/port@110";
xbar_asrc_out6_ep = "/aconnect@2a41000/ahub/ports/port@110/endpoint";
xbar_arad_port = "/aconnect@2a41000/ahub/ports/port@125";
xbar_arad_ep = "/aconnect@2a41000/ahub/ports/port@125/endpoint";
tegra_adsp_audio = "/aconnect@2a41000/adsp_audio";
adsp_fe1_port = "/aconnect@2a41000/adsp_audio/ports/port@0";
adsp_fe1_ep = "/aconnect@2a41000/adsp_audio/ports/port@0/endpoint";
adsp_fe2_port = "/aconnect@2a41000/adsp_audio/ports/port@1";
adsp_fe2_ep = "/aconnect@2a41000/adsp_audio/ports/port@1/endpoint";
adsp_fe3_port = "/aconnect@2a41000/adsp_audio/ports/port@2";
adsp_fe3_ep = "/aconnect@2a41000/adsp_audio/ports/port@2/endpoint";
adsp_fe4_port = "/aconnect@2a41000/adsp_audio/ports/port@3";
adsp_fe4_ep = "/aconnect@2a41000/adsp_audio/ports/port@3/endpoint";
adsp_pcm1_port = "/aconnect@2a41000/adsp_audio/ports/port@36";
adsp_pcm1_ep = "/aconnect@2a41000/adsp_audio/ports/port@36/endpoint";
adsp_pcm2_port = "/aconnect@2a41000/adsp_audio/ports/port@37";
adsp_pcm2_ep = "/aconnect@2a41000/adsp_audio/ports/port@37/endpoint";
adsp_compr1_port = "/aconnect@2a41000/adsp_audio/ports/port@51";
adsp_compr1_ep = "/aconnect@2a41000/adsp_audio/ports/port@51/endpoint";
adsp_compr2_port = "/aconnect@2a41000/adsp_audio/ports/port@52";
adsp_compr2_ep = "/aconnect@2a41000/adsp_audio/ports/port@52/endpoint";
adsp_admaif1_port = "/aconnect@2a41000/adsp_audio/ports/port@16";
adsp_admaif1_ep = "/aconnect@2a41000/adsp_audio/ports/port@16/endpoint";
adsp_admaif2_port = "/aconnect@2a41000/adsp_audio/ports/port@17";
adsp_admaif2_ep = "/aconnect@2a41000/adsp_audio/ports/port@17/endpoint";
adsp_admaif3_port = "/aconnect@2a41000/adsp_audio/ports/port@18";
adsp_admaif3_ep = "/aconnect@2a41000/adsp_audio/ports/port@18/endpoint";
adsp_admaif4_port = "/aconnect@2a41000/adsp_audio/ports/port@19";
adsp_admaif4_ep = "/aconnect@2a41000/adsp_audio/ports/port@19/endpoint";
adsp_admaif5_port = "/aconnect@2a41000/adsp_audio/ports/port@20";
adsp_admaif5_ep = "/aconnect@2a41000/adsp_audio/ports/port@20/endpoint";
adsp_admaif6_port = "/aconnect@2a41000/adsp_audio/ports/port@21";
adsp_admaif6_ep = "/aconnect@2a41000/adsp_audio/ports/port@21/endpoint";
adsp_admaif7_port = "/aconnect@2a41000/adsp_audio/ports/port@22";
adsp_admaif7_ep = "/aconnect@2a41000/adsp_audio/ports/port@22/endpoint";
adsp_admaif8_port = "/aconnect@2a41000/adsp_audio/ports/port@23";
adsp_admaif8_ep = "/aconnect@2a41000/adsp_audio/ports/port@23/endpoint";
adsp_admaif9_port = "/aconnect@2a41000/adsp_audio/ports/port@24";
adsp_admaif9_ep = "/aconnect@2a41000/adsp_audio/ports/port@24/endpoint";
adsp_admaif10_port = "/aconnect@2a41000/adsp_audio/ports/port@25";
adsp_admaif10_ep = "/aconnect@2a41000/adsp_audio/ports/port@25/endpoint";
adsp_admaif11_port = "/aconnect@2a41000/adsp_audio/ports/port@26";
adsp_admaif11_ep = "/aconnect@2a41000/adsp_audio/ports/port@26/endpoint";
adsp_admaif12_port = "/aconnect@2a41000/adsp_audio/ports/port@27";
adsp_admaif12_ep = "/aconnect@2a41000/adsp_audio/ports/port@27/endpoint";
adsp_admaif13_port = "/aconnect@2a41000/adsp_audio/ports/port@28";
adsp_admaif13_ep = "/aconnect@2a41000/adsp_audio/ports/port@28/endpoint";
adsp_admaif14_port = "/aconnect@2a41000/adsp_audio/ports/port@29";
adsp_admaif14_ep = "/aconnect@2a41000/adsp_audio/ports/port@29/endpoint";
adsp_admaif15_port = "/aconnect@2a41000/adsp_audio/ports/port@30";
adsp_admaif15_ep = "/aconnect@2a41000/adsp_audio/ports/port@30/endpoint";
adsp_admaif16_port = "/aconnect@2a41000/adsp_audio/ports/port@31";
adsp_admaif16_ep = "/aconnect@2a41000/adsp_audio/ports/port@31/endpoint";
adsp_admaif17_port = "/aconnect@2a41000/adsp_audio/ports/port@32";
adsp_admaif17_ep = "/aconnect@2a41000/adsp_audio/ports/port@32/endpoint";
adsp_admaif18_port = "/aconnect@2a41000/adsp_audio/ports/port@33";
adsp_admaif18_ep = "/aconnect@2a41000/adsp_audio/ports/port@33/endpoint";
adsp_admaif19_port = "/aconnect@2a41000/adsp_audio/ports/port@34";
adsp_admaif19_ep = "/aconnect@2a41000/adsp_audio/ports/port@34/endpoint";
adsp_admaif20_port = "/aconnect@2a41000/adsp_audio/ports/port@35";
adsp_admaif20_ep = "/aconnect@2a41000/adsp_audio/ports/port@35/endpoint";
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";
ar0234_vi_in0 = "/tegra-capture-vi/ports/port@0/endpoint";
dual_hawk_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";
ar0234_vi_in1 = "/tegra-capture-vi/ports/port@1/endpoint";
dual_hawk_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";
ar0234_vi_in2 = "/tegra-capture-vi/ports/port@2/endpoint";
dual_hawk_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";
ar0234_vi_in3 = "/tegra-capture-vi/ports/port@3/endpoint";
dual_hawk_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";
ar0234_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";
ar0234_vi_in5 = "/tegra-capture-vi/ports/port@5/endpoint";
vi_port6 = "/tegra-capture-vi/ports/port@6";
vi_in6 = "/tegra-capture-vi/ports/port@6/endpoint";
ar0234_vi_in6 = "/tegra-capture-vi/ports/port@6/endpoint";
vi_port7 = "/tegra-capture-vi/ports/port@7";
vi_in7 = "/tegra-capture-vi/ports/port@7/endpoint";
ar0234_vi_in7 = "/tegra-capture-vi/ports/port@7/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";
ar0234_csi_in0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@0/endpoint@0";
dual_hawk_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";
ar0234_csi_out0 = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@1/endpoint@1";
dual_hawk_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";
ar0234_csi_in1 = "/host1x@13e00000/nvcsi@15a00000/channel@1/ports/port@0/endpoint@2";
dual_hawk_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";
ar0234_csi_out1 = "/host1x@13e00000/nvcsi@15a00000/channel@1/ports/port@1/endpoint@3";
dual_hawk_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";
ar0234_csi_in2 = "/host1x@13e00000/nvcsi@15a00000/channel@2/ports/port@0/endpoint@4";
dual_hawk_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";
ar0234_csi_out2 = "/host1x@13e00000/nvcsi@15a00000/channel@2/ports/port@1/endpoint@5";
dual_hawk_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";
ar0234_csi_in3 = "/host1x@13e00000/nvcsi@15a00000/channel@3/ports/port@0/endpoint@6";
dual_hawk_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";
ar0234_csi_out3 = "/host1x@13e00000/nvcsi@15a00000/channel@3/ports/port@1/endpoint@7";
dual_hawk_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";
ar0234_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";
ar0234_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";
ar0234_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";
ar0234_csi_out5 = "/host1x@13e00000/nvcsi@15a00000/channel@5/ports/port@1/endpoint@11";
csi_chan6 = "/host1x@13e00000/nvcsi@15a00000/channel@6";
csi_chan6_port0 = "/host1x@13e00000/nvcsi@15a00000/channel@6/ports/port@0";
csi_in6 = "/host1x@13e00000/nvcsi@15a00000/channel@6/ports/port@0/endpoint@12";
ar0234_csi_in6 = "/host1x@13e00000/nvcsi@15a00000/channel@6/ports/port@0/endpoint@12";
csi_chan6_port1 = "/host1x@13e00000/nvcsi@15a00000/channel@6/ports/port@1";
csi_out6 = "/host1x@13e00000/nvcsi@15a00000/channel@6/ports/port@1/endpoint@13";
ar0234_csi_out6 = "/host1x@13e00000/nvcsi@15a00000/channel@6/ports/port@1/endpoint@13";
csi_chan7 = "/host1x@13e00000/nvcsi@15a00000/channel@7";
csi_chan7_port0 = "/host1x@13e00000/nvcsi@15a00000/channel@7/ports/port@0";
csi_in7 = "/host1x@13e00000/nvcsi@15a00000/channel@7/ports/port@0/endpoint@14";
ar0234_csi_in7 = "/host1x@13e00000/nvcsi@15a00000/channel@7/ports/port@0/endpoint@14";
csi_chan7_port1 = "/host1x@13e00000/nvcsi@15a00000/channel@7/ports/port@1";
csi_out7 = "/host1x@13e00000/nvcsi@15a00000/channel@7/ports/port@1/endpoint@15";
ar0234_csi_out7 = "/host1x@13e00000/nvcsi@15a00000/channel@7/ports/port@1/endpoint@15";
pva0 = "/host1x@13e00000/pva0";
pva0_ctx0n1 = "/host1x@13e00000/pva0/pva0_niso1_ctx0";
pva0_ctx1n1 = "/host1x@13e00000/pva0/pva0_niso1_ctx1";
pva0_ctx2n1 = "/host1x@13e00000/pva0/pva0_niso1_ctx2";
pva0_ctx3n1 = "/host1x@13e00000/pva0/pva0_niso1_ctx3";
pva0_ctx4n1 = "/host1x@13e00000/pva0/pva0_niso1_ctx4";
pva0_ctx5n1 = "/host1x@13e00000/pva0/pva0_niso1_ctx5";
pva0_ctx6n1 = "/host1x@13e00000/pva0/pva0_niso1_ctx6";
pva0_ctx7n1 = "/host1x@13e00000/pva0/pva0_niso1_ctx7";
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_tachometer0 = "/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";
tegra_cec = "/tegra_cec";
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";
hdr40_vdd_3v3 = "/fixed-regulators/regulator@102";
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";
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";
cam_module6 = "/tegra-camera-platform/modules/module6";
cam_module6_drivernode0 = "/tegra-camera-platform/modules/module6/drivernode0";
cam_module6_drivernode1 = "/tegra-camera-platform/modules/module6/drivernode1";
cam_module7 = "/tegra-camera-platform/modules/module7";
cam_module7_drivernode0 = "/tegra-camera-platform/modules/module7/drivernode0";
cam_module7_drivernode1 = "/tegra-camera-platform/modules/module7/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";
};
};
02080000-0208ffff : 2190000.watchdog watchdog@2190000
02100000-0210fffe : 2190000.watchdog watchdog@2190000
02190000-0219fffe : 2190000.watchdog watchdog@2190000
02200000-0220ffff : 2200000.gpio security
02210000-0221ffff : 2200000.gpio gpio
02430000-024490ff : 2430000.pinmux pinmux@2430000
02600000-0280ffff : 2600000.gpcdma gpcdma@2600000
02900800-02900fff : 2900800.ahub ahub
02901000-029010ff : 2901000.i2s i2s@2901000
02901100-029011ff : 2901100.i2s i2s@2901100
02901200-029012ff : 2901200.i2s i2s@2901200
02901300-029013ff : 2901300.i2s i2s@2901300
02901400-029014ff : 2901400.i2s i2s@2901400
02901500-029015ff : 2901500.i2s i2s@2901500
02902000-029021ff : 2902000.sfc sfc@2902000
02902200-029023ff : 2902200.sfc sfc@2902200
02902400-029025ff : 2902400.sfc sfc@2902400
02902600-029027ff : 2902600.sfc sfc@2902600
02903000-029030ff : 2903000.amx amx@2903000
02903100-029031ff : 2903100.amx amx@2903100
02903200-029032ff : 2903200.amx amx@2903200
02903300-029033ff : 2903300.amx amx@2903300
02903800-029038ff : 2903800.adx adx@2903800
02903900-029039ff : 2903900.adx adx@2903900
02903a00-02903aff : 2903a00.adx adx@2903a00
02903b00-02903bff : 2903b00.adx adx@2903b00
02904000-029040ff : 2904000.dmic dmic@2904000
02904100-029041ff : 2904100.dmic dmic@2904100
02904200-029042ff : 2904200.dmic dmic@2904200
02904300-029043ff : 2904300.dmic dmic@2904300
02905000-029050ff : 2905000.dspk dspk@2905000
02905100-029051ff : 2905100.dspk dspk@2905100
02907000-029070ff : 2907000.afc afc@2907000
02907100-029071ff : 2907100.afc afc@2907100
02907200-029072ff : 2907200.afc afc@2907200
02907300-029073ff : 2907300.afc afc@2907300
02907400-029074ff : 2907400.afc afc@2907400
02907500-029075ff : 2907500.afc afc@2907500
02908000-029080ff : 2908000.ope ope@2908000
02908100-029081ff : 2908000.ope ope@2908000
02908200-029083ff : 2908000.ope ope@2908000
0290a000-0290a1ff : 290a000.mvc mvc@290a000
0290a200-0290a3ff : 290a200.mvc mvc@290a200
0290bb00-0290c2ff : 290bb00.amixer amixer@290bb00
0290e000-0290e1ff : 290e000.iqc iqc@290e000
0290e400-0290e7ff : 290e400.arad arad@290e400
0290f000-0290ffff : 290f000.admaif admaif@290f000
02910000-02911fff : 2910000.asrc asrc@2910000
02930000-0297ffff : 2930000.adma adma@2930000
02990000-02991fff : 2993000.adsp adsp@2993000
02993000-02993fff : 2993000.adsp adsp@2993000
029b0000-02a3ffff : 2993000.adsp adsp@2993000
02c00000-02c0ffff : 2c00000.mc_sid mc_sid@2c00000
03100000-0310ffff : 3100000.serial serial@3100000
03110000-0311ffff : 3110000.serial serial@3110000
03130000-0313ffff : 3130000.serial serial@3130000
03160000-031600ff : 3160000.i2c i2c@3160000
03180000-031800ff : 3180000.i2c i2c@3180000
03190000-031900ff : 3190000.i2c i2c@3190000
031b0000-031b00ff : 31b0000.i2c i2c@31b0000
031c0000-031c00ff : 31c0000.i2c i2c@31c0000
031d0000-031dffff : 31d0000.serial serial@31d0000
031e0000-031e00ff : 31e0000.i2c i2c@31e0000
03210000-0321ffff : 3210000.spi spi@3210000
03230000-0323ffff : 3230000.spi spi@3230000
03280000-0328ffff : 3280000.pwm pwm@3280000
032a0000-032affff : 32a0000.pwm pwm@32a0000
032c0000-032cffff : 32c0000.pwm pwm@32c0000
032f0000-032fffff : 32f0000.pwm pwm@32f0000
03400000-0341ffff : 3400000.sdhci sdhci@3400000
03460000-0347ffff : 3460000.sdhci sdhci@3460000
03510000-0351ffff : 3510000.hda hda@3510000
03520000-0353ffff : 3520000.xusb_padctl padctl
03540000-0354ffff : 3520000.xusb_padctl ao
03550000-03557fff : 3550000.xudc base
03558000-0355ffff : 3550000.xudc fpci
03600000-0360ffff : 3610000.xhci fpci
03610000-0364ffff : 3610000.xhci base
03650000-0365ffff : 3610000.xhci bar2
03810000-03828fff : 3810000.efuse efuse@3810000
039c0000-039c000f : 39c0000.tachometer tachometer@39c0000
03ac0000-03acffff : 3ae0000.nvrng sap
03ae0000-03aeffff : 3ae0000.nvrng rng1
03c00000-03c9ffff : 3c00000.tegra-hsp tegra-hsp@3c00000
03d00000-03d9ffff : 3d00000.tegra-hsp tegra-hsp@3d00000
03e00000-03e0ffff : 3e00000.p2u ctl
03e10000-03e1ffff : 3e10000.p2u ctl
03e20000-03e2ffff : 3e20000.p2u ctl
03e30000-03e3ffff : 3e30000.p2u ctl
03e40000-03e4ffff : 3e40000.p2u ctl
03e50000-03e5ffff : 3e50000.p2u ctl
03e60000-03e6ffff : 3e60000.p2u ctl
03e70000-03e7ffff : 3e70000.p2u ctl
03e90000-03e9ffff : 3e90000.p2u ctl
03ea0000-03eaffff : 3ea0000.p2u ctl
03eb0000-03ebffff : 3eb0000.p2u ctl
03ec0000-03ecffff : 3ec0000.p2u ctl
03ed0000-03edffff : 3ed0000.p2u ctl
03ee0000-03eeffff : 3ee0000.p2u ctl
03ef0000-03efffff : 3ef0000.p2u ctl
03f00000-03f0ffff : 3f00000.p2u ctl
03f20000-03f2ffff : 3f20000.p2u ctl
03f30000-03f3ffff : 3f30000.p2u ctl
03f40000-03f4ffff : 3f40000.p2u ctl
03f50000-03f5ffff : 3f50000.p2u ctl
03f60000-03f6ffff : 3f60000.p2u ctl
03f70000-03f7ffff : 3f70000.p2u ctl
03f80000-03f8ffff : 3f80000.p2u ctl
03f90000-03f9ffff : 3f90000.p2u ctl
06800000-0680ffff : 6810000.ethernet hypervisor
06810000-0681ffff : 6810000.ethernet mac
068a0000-068affff : 6810000.ethernet xpcs
068d0000-068dffff : 6810000.ethernet macsec-base
07000000-07ffffff : 8000000.iommu iommu@8000000
08000000-08ffffff : 8000000.iommu iommu@8000000
0b600000-0b63ffff : b600000.sce-fabric sce-fabric@B600000
0b950000-0b9dffff : b950000.tegra-hsp tegra-hsp@b950000
0b9f0000-0ba2ffff : bc00000.rtcpu rce-pm
0be00000-0be3ffff : be00000.rce-fabric rce-fabric@BE00000
0c150000-0c1dffff : c150000.tegra-hsp tegra-hsp@c150000
0c1e0000-0c1effff : c1e0000.gte gte@c1e0000
0c240000-0c2400ff : c240000.i2c i2c@c240000
0c250000-0c2500ff : c250000.i2c i2c@c250000
0c2a0000-0c2affff : c2a0000.rtc rtc@c2a0000
0c2f0000-0c2f0fff : c2f0000.gpio security
0c2f1000-0c2f1fff : c2f0000.gpio gpio
0c300000-0c303fff : 2430000.pinmux pinmux@2430000
0c360000-0c36ffff : c360000.pmc pmc
0c370000-0c37ffff : c360000.pmc wake
0c390000-0c39ffff : c360000.pmc scratch
0c3a0000-0c3affff : c360000.pmc misc
0c600000-0c63ffff : c600000.aon-fabric aon-fabric@C600000
0d230000-0d230fff : d230000.actmon actmon@d230000
0d600000-0d63ffff : d600000.bpmp-fabric bpmp-fabric@D600000
0de00000-0de3ffff : de00000.dce-fabric dce-fabric@BE00000
0e000000-0e05fffe : e000000.ccplex ccplex@e000000
0e100000-0e10ffff : e100000.tegra_mce tegra_mce@e100000
0e110000-0e11ffff : e100000.tegra_mce tegra_mce@e100000
0e120000-0e12ffff : e100000.tegra_mce tegra_mce@e100000
0e130000-0e13ffff : e100000.tegra_mce tegra_mce@e100000
0e140000-0e14ffff : e100000.tegra_mce tegra_mce@e100000
0e150000-0e15ffff : e100000.tegra_mce tegra_mce@e100000
0e160000-0e16ffff : e100000.tegra_mce tegra_mce@e100000
0e170000-0e17ffff : e100000.tegra_mce tegra_mce@e100000
0e180000-0e18ffff : e100000.tegra_mce tegra_mce@e100000
0e190000-0e19ffff : e100000.tegra_mce tegra_mce@e100000
0e1a0000-0e1affff : e100000.tegra_mce tegra_mce@e100000
0e1b0000-0e1bffff : e100000.tegra_mce tegra_mce@e100000
0e80201c-0e802023 : e860000.psc extcfg
0e860000-0ea5ffff : e860000.psc mbox-regs
10000000-10ffffff : 10000000.iommu iommu@10000000
11000000-11ffffff : 12000000.iommu iommu@12000000
12000000-12ffffff : 12000000.iommu iommu@12000000
13a00000-13dfffff : 13a00000.cbb-fabric cbb-fabric@1300000
13e00000-13e0ffff : 13e40000.host1x common
13e10000-13e1ffff : 13e40000.host1x hypervisor
13e40000-13e4ffff : 13e40000.host1x guest
13ef0000-13f2ffff : 13e40000.host1x actmon
14100000-1411ffff : 14100000.pcie appl
14160000-1417ffff : 14160000.pcie appl
141a0000-141bffff : 141a0000.pcie appl
14800000-1480ffff : 14800000.isp isp@14800000
15340000-1537ffff : 15340000.vic vic@15340000
15380000-153bffff : 15380000.nvjpg nvjpg@15380000
15480000-154bffff : 15480000.nvdec nvdec@15480000
154c0000-154fffff : 154c0000.nvenc nvenc@154c0000
15500000-1553ffff : 15500000.tsec tsec@15500000
15540000-1557ffff : 15540000.nvjpg1 nvjpg1@15540000
15810000-1581ffff : 15810000.se se@15810000
15820000-1582ffff : 15820000.se se@15820000
15840000-1584ffff : 15840000.se se@15840000
15880000-158bffff : 15880000.nvdla0 nvdla0@15880000
158c0000-158fffff : 158c0000.nvdla1 nvdla1@158c0000
15a50000-15a5ffff : 15a50000.ofa ofa@15a50000
16000000-167fffff : 16000000.pva0 pva0
17000000-17ffffff : 17000000.ga10b ga10b
18000000-18ffffff : 17000000.ga10b ga10b
24700000-2477ffff : 16000000.pva0 pva0
30040000-3007ffff : 14100000.pcie atu_dma
30080000-300bffff : 14100000.pcie dbi
36040000-3607ffff : 14160000.pcie atu_dma
36080000-360bffff : 14160000.pcie dbi
3a040000-3a07ffff : 141a0000.pcie atu_dma
3a080000-3a0bffff : 141a0000.pcie dbi
40000000-40071fff : 40000000.sysram sysram@40000000
60000000-63ffffff : 13e40000.host1x sem-syncpt-shim
80000000-fffdffff : System RAM
effe0000-fffdffff : reserved
fffe0000-ffffffff : reserved
100000000-803ffffff : System RAM
4ac890000-4ae19ffff : Kernel code
4ae1a0000-4ae57ffff : reserved
4ae580000-4ae9fffff : Kernel data
7e3000000-801ffffff : reserved
802c20000-802c86fff : reserved
802e20000-803708fff : reserved
804000000-8061bffff : reserved
8061c0000-80651ffff : System RAM
806520000-8066b3fff : reserved
8066b4000-806baffff : System RAM
806807000-806807fff : reserved
806bb0000-806bcffff : reserved
806bd0000-8074bffff : System RAM
8074c0000-80750ffff : reserved
807510000-80756ffff : System RAM
807570000-80758ffff : reserved
807590000-8075affff : System RAM
8075a4000-8075a5fff : reserved
8075ad000-8075adfff : reserved
8075ae000-8075aefff : reserved
8075b0000-8075cffff : reserved
8075d0000-80768ffff : System RAM
807690000-80781ffff : reserved
807820000-80784ffff : System RAM
807850000-80789ffff : reserved
8078a0000-80790ffff : System RAM
807910000-807aeffff : reserved
807af0000-807b7ffff : System RAM
807b80000-807cbffff : reserved
807cc0000-807cfffff : System RAM
807d00000-807d4ffff : reserved
807d50000-807d7ffff : System RAM
807d80000-807d8ffff : reserved
807d90000-80837ffff : System RAM
808380000-80841ffff : reserved
808420000-80851ffff : System RAM
808520000-8085bffff : reserved
8085c0000-80866ffff : System RAM
808670000-80870ffff : reserved
808710000-80901ffff : System RAM
809020000-8091fffff : reserved
809200000-82a9affff : System RAM
81a800000-82a7fffff : reserved
82a9b0000-82a9fffff : reserved
82aa00000-82e7fffff : System RAM
82b700000-82e7fffff : reserved
82e800000-82e80ffff : ramoops:dmesg(0/23)
82e810000-82e81ffff : ramoops:dmesg(1/23)
82e820000-82e82ffff : ramoops:dmesg(2/23)
82e830000-82e83ffff : ramoops:dmesg(3/23)
82e840000-82e84ffff : ramoops:dmesg(4/23)
82e850000-82e85ffff : ramoops:dmesg(5/23)
82e860000-82e86ffff : ramoops:dmesg(6/23)
82e870000-82e87ffff : ramoops:dmesg(7/23)
82e880000-82e88ffff : ramoops:dmesg(8/23)
82e890000-82e89ffff : ramoops:dmesg(9/23)
82e8a0000-82e8affff : ramoops:dmesg(10/23)
82e8b0000-82e8bffff : ramoops:dmesg(11/23)
82e8c0000-82e8cffff : ramoops:dmesg(12/23)
82e8d0000-82e8dffff : ramoops:dmesg(13/23)
82e8e0000-82e8effff : ramoops:dmesg(14/23)
82e8f0000-82e8fffff : ramoops:dmesg(15/23)
82e900000-82e90ffff : ramoops:dmesg(16/23)
82e910000-82e91ffff : ramoops:dmesg(17/23)
82e920000-82e92ffff : ramoops:dmesg(18/23)
82e930000-82e93ffff : ramoops:dmesg(19/23)
82e940000-82e94ffff : ramoops:dmesg(20/23)
82e950000-82e95ffff : ramoops:dmesg(21/23)
82e960000-82e96ffff : ramoops:dmesg(22/23)
82e970000-82e97ffff : ramoops:dmesg(23/23)
82e980000-82e9fffff : ramoops:console
82ea00000-82edfffff : System RAM
82ea0b000-82ea8afff : reserved
82ea8b000-82ea8bfff : reserved
82ea8c000-82ec0bfff : reserved
82ec0e000-82ec0efff : reserved
82ec0f000-82ec10fff : reserved
82ec11000-82ec11fff : reserved
82ec12000-82ec16fff : reserved
82ec17000-82edfffff : reserved
836000000-837ffffff : reserved
2080000000-20a7ffffff : pcie@14100000
20a8000000-20afffffff : pcie@14100000
20a8000000-20a80fffff : PCI Bus 0001:01
20a8000000-20a800ffff : 0001:01:00.0
20a8000000-20a800ffff : rtl88x2ce
02080000-0208ffff : 2190000.watchdog watchdog@2190000
02100000-0210fffe : 2190000.watchdog watchdog@2190000
02190000-0219fffe : 2190000.watchdog watchdog@2190000
02200000-0220ffff : 2200000.gpio security
02210000-0221ffff : 2200000.gpio gpio
02430000-024490ff : 2430000.pinmux pinmux@2430000
02600000-0280ffff : 2600000.gpcdma gpcdma@2600000
02900800-02900fff : 2900800.ahub ahub
02901000-029010ff : 2901000.i2s i2s@2901000
02901100-029011ff : 2901100.i2s i2s@2901100
02901200-029012ff : 2901200.i2s i2s@2901200
02901300-029013ff : 2901300.i2s i2s@2901300
02901400-029014ff : 2901400.i2s i2s@2901400
02901500-029015ff : 2901500.i2s i2s@2901500
02902000-029021ff : 2902000.sfc sfc@2902000
02902200-029023ff : 2902200.sfc sfc@2902200
02902400-029025ff : 2902400.sfc sfc@2902400
02902600-029027ff : 2902600.sfc sfc@2902600
02903000-029030ff : 2903000.amx amx@2903000
02903100-029031ff : 2903100.amx amx@2903100
02903200-029032ff : 2903200.amx amx@2903200
02903300-029033ff : 2903300.amx amx@2903300
02903800-029038ff : 2903800.adx adx@2903800
02903900-029039ff : 2903900.adx adx@2903900
02903a00-02903aff : 2903a00.adx adx@2903a00
02903b00-02903bff : 2903b00.adx adx@2903b00
02904000-029040ff : 2904000.dmic dmic@2904000
02904100-029041ff : 2904100.dmic dmic@2904100
02904200-029042ff : 2904200.dmic dmic@2904200
02904300-029043ff : 2904300.dmic dmic@2904300
02905000-029050ff : 2905000.dspk dspk@2905000
02905100-029051ff : 2905100.dspk dspk@2905100
02907000-029070ff : 2907000.afc afc@2907000
02907100-029071ff : 2907100.afc afc@2907100
02907200-029072ff : 2907200.afc afc@2907200
02907300-029073ff : 2907300.afc afc@2907300
02907400-029074ff : 2907400.afc afc@2907400
02907500-029075ff : 2907500.afc afc@2907500
02908000-029080ff : 2908000.ope ope@2908000
02908100-029081ff : 2908000.ope ope@2908000
02908200-029083ff : 2908000.ope ope@2908000
0290a000-0290a1ff : 290a000.mvc mvc@290a000
0290a200-0290a3ff : 290a200.mvc mvc@290a200
0290bb00-0290c2ff : 290bb00.amixer amixer@290bb00
0290e000-0290e1ff : 290e000.iqc iqc@290e000
0290e400-0290e7ff : 290e400.arad arad@290e400
0290f000-0290ffff : 290f000.admaif admaif@290f000
02910000-02911fff : 2910000.asrc asrc@2910000
02930000-0297ffff : 2930000.adma adma@2930000
02990000-02991fff : 2993000.adsp adsp@2993000
02993000-02993fff : 2993000.adsp adsp@2993000
029b0000-02a3ffff : 2993000.adsp adsp@2993000
02c00000-02c0ffff : 2c00000.mc_sid mc_sid@2c00000
03100000-0310ffff : 3100000.serial serial@3100000
03110000-0311ffff : 3110000.serial serial@3110000
03130000-0313ffff : 3130000.serial serial@3130000
03160000-031600ff : 3160000.i2c i2c@3160000
03180000-031800ff : 3180000.i2c i2c@3180000
03190000-031900ff : 3190000.i2c i2c@3190000
031b0000-031b00ff : 31b0000.i2c i2c@31b0000
031c0000-031c00ff : 31c0000.i2c i2c@31c0000
031d0000-031dffff : 31d0000.serial serial@31d0000
031e0000-031e00ff : 31e0000.i2c i2c@31e0000
03210000-0321ffff : 3210000.spi spi@3210000
03230000-0323ffff : 3230000.spi spi@3230000
03280000-0328ffff : 3280000.pwm pwm@3280000
032a0000-032affff : 32a0000.pwm pwm@32a0000
032c0000-032cffff : 32c0000.pwm pwm@32c0000
032f0000-032fffff : 32f0000.pwm pwm@32f0000
03400000-0341ffff : 3400000.sdhci sdhci@3400000
03460000-0347ffff : 3460000.sdhci sdhci@3460000
03510000-0351ffff : 3510000.hda hda@3510000
03520000-0353ffff : 3520000.xusb_padctl padctl
03540000-0354ffff : 3520000.xusb_padctl ao
03550000-03557fff : 3550000.xudc base
03558000-0355ffff : 3550000.xudc fpci
03600000-0360ffff : 3610000.xhci fpci
03610000-0364ffff : 3610000.xhci base
03650000-0365ffff : 3610000.xhci bar2
03810000-03828fff : 3810000.efuse efuse@3810000
039c0000-039c000f : 39c0000.tachometer tachometer@39c0000
03ac0000-03acffff : 3ae0000.nvrng sap
03ae0000-03aeffff : 3ae0000.nvrng rng1
03c00000-03c9ffff : 3c00000.tegra-hsp tegra-hsp@3c00000
03d00000-03d9ffff : 3d00000.tegra-hsp tegra-hsp@3d00000
03e00000-03e0ffff : 3e00000.p2u ctl
03e10000-03e1ffff : 3e10000.p2u ctl
03e20000-03e2ffff : 3e20000.p2u ctl
03e30000-03e3ffff : 3e30000.p2u ctl
03e40000-03e4ffff : 3e40000.p2u ctl
03e50000-03e5ffff : 3e50000.p2u ctl
03e60000-03e6ffff : 3e60000.p2u ctl
03e70000-03e7ffff : 3e70000.p2u ctl
03e90000-03e9ffff : 3e90000.p2u ctl
03ea0000-03eaffff : 3ea0000.p2u ctl
03eb0000-03ebffff : 3eb0000.p2u ctl
03ec0000-03ecffff : 3ec0000.p2u ctl
03ed0000-03edffff : 3ed0000.p2u ctl
03ee0000-03eeffff : 3ee0000.p2u ctl
03ef0000-03efffff : 3ef0000.p2u ctl
03f00000-03f0ffff : 3f00000.p2u ctl
03f20000-03f2ffff : 3f20000.p2u ctl
03f30000-03f3ffff : 3f30000.p2u ctl
03f40000-03f4ffff : 3f40000.p2u ctl
03f50000-03f5ffff : 3f50000.p2u ctl
03f60000-03f6ffff : 3f60000.p2u ctl
03f70000-03f7ffff : 3f70000.p2u ctl
03f80000-03f8ffff : 3f80000.p2u ctl
03f90000-03f9ffff : 3f90000.p2u ctl
06800000-0680ffff : 6810000.ethernet hypervisor
06810000-0681ffff : 6810000.ethernet mac
068a0000-068affff : 6810000.ethernet xpcs
068d0000-068dffff : 6810000.ethernet macsec-base
07000000-07ffffff : 8000000.iommu iommu@8000000
08000000-08ffffff : 8000000.iommu iommu@8000000
0b600000-0b63ffff : b600000.sce-fabric sce-fabric@B600000
0b950000-0b9dffff : b950000.tegra-hsp tegra-hsp@b950000
0b9f0000-0ba2ffff : bc00000.rtcpu rce-pm
0be00000-0be3ffff : be00000.rce-fabric rce-fabric@BE00000
0c150000-0c1dffff : c150000.tegra-hsp tegra-hsp@c150000
0c1e0000-0c1effff : c1e0000.gte gte@c1e0000
0c240000-0c2400ff : c240000.i2c i2c@c240000
0c250000-0c2500ff : c250000.i2c i2c@c250000
0c2a0000-0c2affff : c2a0000.rtc rtc@c2a0000
0c2f0000-0c2f0fff : c2f0000.gpio security
0c2f1000-0c2f1fff : c2f0000.gpio gpio
0c300000-0c303fff : 2430000.pinmux pinmux@2430000
0c360000-0c36ffff : c360000.pmc pmc
0c370000-0c37ffff : c360000.pmc wake
0c390000-0c39ffff : c360000.pmc scratch
0c3a0000-0c3affff : c360000.pmc misc
0c600000-0c63ffff : c600000.aon-fabric aon-fabric@C600000
0d230000-0d230fff : d230000.actmon actmon@d230000
0d600000-0d63ffff : d600000.bpmp-fabric bpmp-fabric@D600000
0de00000-0de3ffff : de00000.dce-fabric dce-fabric@BE00000
0e000000-0e05fffe : e000000.ccplex ccplex@e000000
0e100000-0e10ffff : e100000.tegra_mce tegra_mce@e100000
0e110000-0e11ffff : e100000.tegra_mce tegra_mce@e100000
0e120000-0e12ffff : e100000.tegra_mce tegra_mce@e100000
0e130000-0e13ffff : e100000.tegra_mce tegra_mce@e100000
0e140000-0e14ffff : e100000.tegra_mce tegra_mce@e100000
0e150000-0e15ffff : e100000.tegra_mce tegra_mce@e100000
0e160000-0e16ffff : e100000.tegra_mce tegra_mce@e100000
0e170000-0e17ffff : e100000.tegra_mce tegra_mce@e100000
0e180000-0e18ffff : e100000.tegra_mce tegra_mce@e100000
0e190000-0e19ffff : e100000.tegra_mce tegra_mce@e100000
0e1a0000-0e1affff : e100000.tegra_mce tegra_mce@e100000
0e1b0000-0e1bffff : e100000.tegra_mce tegra_mce@e100000
0e80201c-0e802023 : e860000.psc extcfg
0e860000-0ea5ffff : e860000.psc mbox-regs
10000000-10ffffff : 10000000.iommu iommu@10000000
11000000-11ffffff : 12000000.iommu iommu@12000000
12000000-12ffffff : 12000000.iommu iommu@12000000
13a00000-13dfffff : 13a00000.cbb-fabric cbb-fabric@1300000
13e00000-13e0ffff : 13e40000.host1x common
13e10000-13e1ffff : 13e40000.host1x hypervisor
13e40000-13e4ffff : 13e40000.host1x guest
13ef0000-13f2ffff : 13e40000.host1x actmon
14100000-1411ffff : 14100000.pcie appl
14160000-1417ffff : 14160000.pcie appl
141a0000-141bffff : 141a0000.pcie appl
14800000-1480ffff : 14800000.isp isp@14800000
15340000-1537ffff : 15340000.vic vic@15340000
15380000-153bffff : 15380000.nvjpg nvjpg@15380000
15480000-154bffff : 15480000.nvdec nvdec@15480000
154c0000-154fffff : 154c0000.nvenc nvenc@154c0000
15500000-1553ffff : 15500000.tsec tsec@15500000
15540000-1557ffff : 15540000.nvjpg1 nvjpg1@15540000
15810000-1581ffff : 15810000.se se@15810000
15820000-1582ffff : 15820000.se se@15820000
15840000-1584ffff : 15840000.se se@15840000
15880000-158bffff : 15880000.nvdla0 nvdla0@15880000
158c0000-158fffff : 158c0000.nvdla1 nvdla1@158c0000
15a50000-15a5ffff : 15a50000.ofa ofa@15a50000
16000000-167fffff : 16000000.pva0 pva0
17000000-17ffffff : 17000000.ga10b ga10b
18000000-18ffffff : 17000000.ga10b ga10b
24700000-2477ffff : 16000000.pva0 pva0
30040000-3007ffff : 14100000.pcie atu_dma
30080000-300bffff : 14100000.pcie dbi
36040000-3607ffff : 14160000.pcie atu_dma
36080000-360bffff : 14160000.pcie dbi
3a040000-3a07ffff : 141a0000.pcie atu_dma
3a080000-3a0bffff : 141a0000.pcie dbi
40000000-40071fff : 40000000.sysram sysram@40000000
60000000-63ffffff : 13e40000.host1x sem-syncpt-shim
80000000-83ffffff : reserved
84000000-fffdffff : System RAM
effe0000-fffdffff : reserved
fffe0000-ffffffff : reserved
100000000-803ffffff : System RAM
378f10000-37a81ffff : Kernel code
37a820000-37abfffff : reserved
37ac00000-37b07ffff : Kernel data
7e3000000-801ffffff : reserved
802c20000-802c86fff : reserved
802e20000-803708fff : reserved
804000000-8061bffff : reserved
8061c0000-80651ffff : System RAM
806520000-8066b3fff : reserved
8066b4000-806baffff : System RAM
806807000-806807fff : reserved
806bb0000-806bcffff : reserved
806bd0000-8074bffff : System RAM
8074c0000-80750ffff : reserved
807510000-80756ffff : System RAM
807570000-80758ffff : reserved
807590000-8075affff : System RAM
8075a3000-8075a4fff : reserved
8075ad000-8075adfff : reserved
8075ae000-8075aefff : reserved
8075b0000-8075cffff : reserved
8075d0000-80768ffff : System RAM
807690000-80781ffff : reserved
807820000-80784ffff : System RAM
807850000-80789ffff : reserved
8078a0000-80790ffff : System RAM
807910000-807aeffff : reserved
807af0000-807b7ffff : System RAM
807b80000-807cbffff : reserved
807cc0000-807cfffff : System RAM
807d00000-807d4ffff : reserved
807d50000-807d7ffff : System RAM
807d80000-807d8ffff : reserved
807d90000-80837ffff : System RAM
808380000-80841ffff : reserved
808420000-80851ffff : System RAM
808520000-8085bffff : reserved
8085c0000-80866ffff : System RAM
808670000-80870ffff : reserved
808710000-80901ffff : System RAM
809020000-8091fffff : reserved
809200000-82a9affff : System RAM
81a800000-82a7fffff : reserved
82a9b0000-82a9fffff : reserved
82aa00000-82e7fffff : System RAM
82b700000-82e7fffff : reserved
82e800000-82e80ffff : ramoops:dmesg(0/23)
82e810000-82e81ffff : ramoops:dmesg(1/23)
82e820000-82e82ffff : ramoops:dmesg(2/23)
82e830000-82e83ffff : ramoops:dmesg(3/23)
82e840000-82e84ffff : ramoops:dmesg(4/23)
82e850000-82e85ffff : ramoops:dmesg(5/23)
82e860000-82e86ffff : ramoops:dmesg(6/23)
82e870000-82e87ffff : ramoops:dmesg(7/23)
82e880000-82e88ffff : ramoops:dmesg(8/23)
82e890000-82e89ffff : ramoops:dmesg(9/23)
82e8a0000-82e8affff : ramoops:dmesg(10/23)
82e8b0000-82e8bffff : ramoops:dmesg(11/23)
82e8c0000-82e8cffff : ramoops:dmesg(12/23)
82e8d0000-82e8dffff : ramoops:dmesg(13/23)
82e8e0000-82e8effff : ramoops:dmesg(14/23)
82e8f0000-82e8fffff : ramoops:dmesg(15/23)
82e900000-82e90ffff : ramoops:dmesg(16/23)
82e910000-82e91ffff : ramoops:dmesg(17/23)
82e920000-82e92ffff : ramoops:dmesg(18/23)
82e930000-82e93ffff : ramoops:dmesg(19/23)
82e940000-82e94ffff : ramoops:dmesg(20/23)
82e950000-82e95ffff : ramoops:dmesg(21/23)
82e960000-82e96ffff : ramoops:dmesg(22/23)
82e970000-82e97ffff : ramoops:dmesg(23/23)
82e980000-82e9fffff : ramoops:console
82ea00000-82edfffff : System RAM
82ea0c000-82ea8bfff : reserved
82ea8c000-82ea8cfff : reserved
82ea8d000-82ec0cfff : reserved
82ec0f000-82ec0ffff : reserved
82ec10000-82ec11fff : reserved
82ec12000-82ec12fff : reserved
82ec13000-82ec17fff : reserved
82ec18000-82edfffff : reserved
836000000-837ffffff : reserved
2080000000-20a7ffffff : pcie@14100000
20a8000000-20afffffff : pcie@14100000
20a8000000-20a80fffff : PCI Bus 0001:01
20a8000000-20a800ffff : 0001:01:00.0
20a8000000-20a800ffff : rtl88x2ce
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm64 5.10.31 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="aarch64-linux-gcc.br_real (Buildroot 2020.08) 9.3.0"
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=90300
CONFIG_LD_VERSION=233010000
CONFIG_CLANG_VERSION=0
CONFIG_LLD_VERSION=0
CONFIG_CC_CAN_LINK=y
CONFIG_CC_CAN_LINK_STATIC=y
CONFIG_CC_HAS_ASM_GOTO=y
CONFIG_CC_HAS_ASM_INLINE=y
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_TABLE_SORT=y
CONFIG_THREAD_INFO_IN_TASK=y
#
# General setup
#
CONFIG_INIT_ENV_ARG_LIMIT=32
# CONFIG_COMPILE_TEST is not set
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_BUILD_SALT=""
CONFIG_DEFAULT_INIT=""
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
CONFIG_WATCH_QUEUE=y
CONFIG_CROSS_MEMORY_ATTACH=y
# CONFIG_USELIB is not set
CONFIG_AUDIT=y
CONFIG_HAVE_ARCH_AUDITSYSCALL=y
CONFIG_AUDITSYSCALL=y
#
# IRQ subsystem
#
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_IRQ_SHOW_LEVEL=y
CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
CONFIG_GENERIC_IRQ_MIGRATION=y
CONFIG_HARDIRQS_SW_RESEND=y
CONFIG_IRQ_DOMAIN=y
CONFIG_IRQ_DOMAIN_HIERARCHY=y
CONFIG_GENERIC_IRQ_IPI=y
CONFIG_GENERIC_MSI_IRQ=y
CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
CONFIG_IRQ_MSI_IOMMU=y
CONFIG_HANDLE_DOMAIN_IRQ=y
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
# end of IRQ subsystem
CONFIG_GENERIC_IRQ_MULTI_HANDLER=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_ARCH_HAS_TICK_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
CONFIG_NO_HZ_IDLE=y
# CONFIG_NO_HZ_FULL is not set
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
# end of Timers subsystem
# CONFIG_PREEMPT_NONE is not set
# CONFIG_PREEMPT_VOLUNTARY is not set
CONFIG_PREEMPT=y
CONFIG_PREEMPT_COUNT=y
CONFIG_PREEMPTION=y
#
# CPU/Task time and stats accounting
#
CONFIG_TICK_CPU_ACCOUNTING=y
# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
CONFIG_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_SCHED_AVG_IRQ=y
CONFIG_SCHED_THERMAL_PRESSURE=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
# CONFIG_PSI is not set
# end of CPU/Task time and stats accounting
CONFIG_CPU_ISOLATION=y
#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
CONFIG_PREEMPT_RCU=y
# CONFIG_RCU_EXPERT is not set
CONFIG_SRCU=y
CONFIG_TREE_SRCU=y
CONFIG_TASKS_RCU_GENERIC=y
CONFIG_TASKS_RCU=y
CONFIG_TASKS_RUDE_RCU=y
CONFIG_TASKS_TRACE_RCU=y
CONFIG_RCU_STALL_COMMON=y
CONFIG_RCU_NEED_SEGCBLIST=y
# end of RCU Subsystem
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
# CONFIG_IKHEADERS is not set
CONFIG_LOG_BUF_SHIFT=17
CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
CONFIG_GENERIC_SCHED_CLOCK=y
#
# Scheduler features
#
# CONFIG_UCLAMP_TASK is not set
# end of Scheduler features
CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_CC_HAS_INT128=y
CONFIG_ARCH_SUPPORTS_INT128=y
CONFIG_CGROUPS=y
CONFIG_PAGE_COUNTER=y
CONFIG_MEMCG=y
CONFIG_MEMCG_SWAP=y
CONFIG_MEMCG_KMEM=y
CONFIG_BLK_CGROUP=y
CONFIG_CGROUP_WRITEBACK=y
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
CONFIG_CFS_BANDWIDTH=y
CONFIG_RT_GROUP_SCHED=y
CONFIG_CGROUP_PIDS=y
# CONFIG_CGROUP_RDMA is not set
CONFIG_CGROUP_FREEZER=y
CONFIG_CGROUP_HUGETLB=y
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_DEVICE=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_CGROUP_PERF=y
# CONFIG_CGROUP_BPF is not set
# CONFIG_CGROUP_DEBUG is not set
CONFIG_SOCK_CGROUP_DATA=y
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_TIME_NS=y
CONFIG_IPC_NS=y
CONFIG_USER_NS=y
CONFIG_PID_NS=y
CONFIG_NET_NS=y
# CONFIG_CHECKPOINT_RESTORE is not set
# CONFIG_SCHED_AUTOGROUP is not set
# CONFIG_SYSFS_DEPRECATED is not set
CONFIG_RELAY=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_XZ=y
CONFIG_RD_LZO=y
CONFIG_RD_LZ4=y
CONFIG_RD_ZSTD=y
# CONFIG_BOOT_CONFIG is not set
CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_LD_ORPHAN_WARN=y
CONFIG_SYSCTL=y
CONFIG_HAVE_UID16=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_BPF=y
CONFIG_EXPERT=y
CONFIG_UID16=y
CONFIG_MULTIUSER=y
# CONFIG_SGETMASK_SYSCALL is not set
CONFIG_SYSFS_SYSCALL=y
CONFIG_FHANDLE=y
CONFIG_POSIX_TIMERS=y
CONFIG_PRINTK=y
CONFIG_PRINTK_NMI=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_FUTEX_PI=y
CONFIG_HAVE_FUTEX_CMPXCHG=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_IO_URING=y
CONFIG_ADVISE_SYSCALLS=y
CONFIG_MEMBARRIER=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
CONFIG_KALLSYMS_BASE_RELATIVE=y
CONFIG_BPF_SYSCALL=y
CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y
# CONFIG_BPF_JIT_ALWAYS_ON is not set
CONFIG_BPF_JIT_DEFAULT_ON=y
# CONFIG_BPF_PRELOAD is not set
# CONFIG_USERFAULTFD is not set
CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
CONFIG_KCMP=y
CONFIG_RSEQ=y
# CONFIG_DEBUG_RSEQ is not set
CONFIG_EMBEDDED=y
CONFIG_HAVE_PERF_EVENTS=y
# CONFIG_PC104 is not set
#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
# end of Kernel Performance Events And Counters
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_SLUB_DEBUG=y
# CONFIG_SLUB_MEMCG_SYSFS_ON is not set
# CONFIG_COMPAT_BRK is not set
# CONFIG_SLAB is not set
CONFIG_SLUB=y
# CONFIG_SLOB is not set
CONFIG_SLAB_MERGE_DEFAULT=y
CONFIG_SLAB_FREELIST_RANDOM=y
CONFIG_SLAB_FREELIST_HARDENED=y
CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
CONFIG_SLUB_CPU_PARTIAL=y
CONFIG_SYSTEM_DATA_VERIFICATION=y
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
# end of General setup
CONFIG_ARM64=y
CONFIG_64BIT=y
CONFIG_MMU=y
CONFIG_ARM64_PAGE_SHIFT=12
CONFIG_ARM64_CONT_PTE_SHIFT=4
CONFIG_ARM64_CONT_PMD_SHIFT=4
CONFIG_ARCH_MMAP_RND_BITS_MIN=18
CONFIG_ARCH_MMAP_RND_BITS_MAX=33
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_GENERIC_CSUM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ZONE_DMA=y
CONFIG_ZONE_DMA32=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
CONFIG_SMP=y
CONFIG_KERNEL_MODE_NEON=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_PGTABLE_LEVELS=4
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_ARCH_PROC_KCORE_TEXT=y
#
# Platform selection
#
# CONFIG_ARCH_ACTIONS is not set
# CONFIG_ARCH_AGILEX is not set
# CONFIG_ARCH_SUNXI is not set
# CONFIG_ARCH_ALPINE is not set
# CONFIG_ARCH_BCM2835 is not set
# CONFIG_ARCH_BCM_IPROC is not set
# CONFIG_ARCH_BERLIN is not set
# CONFIG_ARCH_BITMAIN is not set
# CONFIG_ARCH_BRCMSTB is not set
# CONFIG_ARCH_EXYNOS is not set
# CONFIG_ARCH_SPARX5 is not set
# CONFIG_ARCH_K3 is not set
# CONFIG_ARCH_LAYERSCAPE is not set
# CONFIG_ARCH_LG1K is not set
# CONFIG_ARCH_HISI is not set
# CONFIG_ARCH_KEEMBAY is not set
# CONFIG_ARCH_MEDIATEK is not set
# CONFIG_ARCH_MESON is not set
# CONFIG_ARCH_MVEBU is not set
# CONFIG_ARCH_MXC is not set
# CONFIG_ARCH_QCOM is not set
# CONFIG_ARCH_REALTEK is not set
# CONFIG_ARCH_RENESAS is not set
# CONFIG_ARCH_ROCKCHIP is not set
# CONFIG_ARCH_S32 is not set
# CONFIG_ARCH_SEATTLE is not set
# CONFIG_ARCH_STRATIX10 is not set
# CONFIG_ARCH_SYNQUACER is not set
CONFIG_ARCH_TEGRA=y
# CONFIG_ARCH_SPRD is not set
# CONFIG_ARCH_THUNDER is not set
# CONFIG_ARCH_THUNDER2 is not set
# CONFIG_ARCH_UNIPHIER is not set
# CONFIG_ARCH_VEXPRESS is not set
# CONFIG_ARCH_VISCONTI is not set
# CONFIG_ARCH_XGENE is not set
# CONFIG_ARCH_ZX is not set
# CONFIG_ARCH_ZYNQMP is not set
# end of Platform selection
#
# Kernel Features
#
#
# ARM errata workarounds via the alternatives framework
#
CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y
CONFIG_ARM64_ERRATUM_826319=y
CONFIG_ARM64_ERRATUM_827319=y
CONFIG_ARM64_ERRATUM_824069=y
CONFIG_ARM64_ERRATUM_819472=y
CONFIG_ARM64_ERRATUM_832075=y
CONFIG_ARM64_ERRATUM_834220=y
CONFIG_ARM64_ERRATUM_845719=y
CONFIG_ARM64_ERRATUM_843419=y
CONFIG_ARM64_ERRATUM_1024718=y
CONFIG_ARM64_ERRATUM_1418040=y
CONFIG_ARM64_WORKAROUND_SPECULATIVE_AT=y
CONFIG_ARM64_ERRATUM_1165522=y
CONFIG_ARM64_ERRATUM_1319367=y
CONFIG_ARM64_ERRATUM_1530923=y
CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y
CONFIG_ARM64_ERRATUM_1286807=y
CONFIG_ARM64_ERRATUM_1463225=y
CONFIG_ARM64_ERRATUM_1542419=y
CONFIG_ARM64_ERRATUM_1508412=y
CONFIG_CAVIUM_ERRATUM_22375=y
CONFIG_CAVIUM_ERRATUM_23154=y
CONFIG_CAVIUM_ERRATUM_27456=y
CONFIG_CAVIUM_ERRATUM_30115=y
CONFIG_CAVIUM_TX2_ERRATUM_219=y
CONFIG_FUJITSU_ERRATUM_010001=y
CONFIG_HISILICON_ERRATUM_161600802=y
CONFIG_QCOM_FALKOR_ERRATUM_1003=y
CONFIG_QCOM_FALKOR_ERRATUM_1009=y
CONFIG_QCOM_QDF2400_ERRATUM_0065=y
CONFIG_QCOM_FALKOR_ERRATUM_E1041=y
CONFIG_SOCIONEXT_SYNQUACER_PREITS=y
# end of ARM errata workarounds via the alternatives framework
CONFIG_ARM64_4K_PAGES=y
# CONFIG_ARM64_16K_PAGES is not set
# CONFIG_ARM64_64K_PAGES is not set
# CONFIG_ARM64_VA_BITS_39 is not set
CONFIG_ARM64_VA_BITS_48=y
CONFIG_ARM64_VA_BITS=48
CONFIG_ARM64_PA_BITS_48=y
CONFIG_ARM64_PA_BITS=48
# CONFIG_CPU_BIG_ENDIAN is not set
CONFIG_CPU_LITTLE_ENDIAN=y
CONFIG_SCHED_MC=y
CONFIG_SCHED_SMT=y
CONFIG_NR_CPUS=256
CONFIG_HOTPLUG_CPU=y
# CONFIG_NUMA is not set
CONFIG_HOLES_IN_ZONE=y
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
CONFIG_SCHED_HRTICK=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ARCH_FLATMEM_ENABLE=y
CONFIG_HAVE_ARCH_PFN_VALID=y
CONFIG_HW_PERF_EVENTS=y
CONFIG_SYS_SUPPORTS_HUGETLBFS=y
CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
CONFIG_PARAVIRT=y
# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
CONFIG_KEXEC=y
CONFIG_KEXEC_FILE=y
# CONFIG_KEXEC_SIG is not set
CONFIG_CRASH_DUMP=y
# CONFIG_XEN is not set
CONFIG_FORCE_MAX_ZONEORDER=11
CONFIG_UNMAP_KERNEL_AT_EL0=y
# CONFIG_RODATA_FULL_DEFAULT_ENABLED is not set
CONFIG_ARM64_SW_TTBR0_PAN=y
CONFIG_ARM64_TAGGED_ADDR_ABI=y
CONFIG_COMPAT=y
CONFIG_KUSER_HELPERS=y
CONFIG_ARMV8_DEPRECATED=y
CONFIG_SWP_EMULATION=y
CONFIG_CP15_BARRIER_EMULATION=y
CONFIG_SETEND_EMULATION=y
#
# ARMv8.1 architectural features
#
# CONFIG_ARM64_HW_AFDBM is not set
CONFIG_ARM64_PAN=y
CONFIG_ARM64_LSE_ATOMICS=y
CONFIG_ARM64_USE_LSE_ATOMICS=y
CONFIG_ARM64_VHE=y
# end of ARMv8.1 architectural features
#
# ARMv8.2 architectural features
#
CONFIG_ARM64_UAO=y
# CONFIG_ARM64_PMEM is not set
CONFIG_ARM64_RAS_EXTN=y
CONFIG_ARM64_CNP=y
# end of ARMv8.2 architectural features
#
# ARMv8.3 architectural features
#
CONFIG_CC_HAS_BRANCH_PROT_PAC_RET=y
CONFIG_CC_HAS_SIGN_RETURN_ADDRESS=y
CONFIG_AS_HAS_PAC=y
# end of ARMv8.3 architectural features
#
# ARMv8.4 architectural features
#
CONFIG_ARM64_AMU_EXTN=y
CONFIG_AS_HAS_ARMV8_4=y
CONFIG_ARM64_TLB_RANGE=y
# end of ARMv8.4 architectural features
#
# ARMv8.5 architectural features
#
CONFIG_ARM64_BTI=y
CONFIG_CC_HAS_BRANCH_PROT_PAC_RET_BTI=y
CONFIG_ARM64_E0PD=y
CONFIG_ARCH_RANDOM=y
CONFIG_ARM64_AS_HAS_MTE=y
CONFIG_ARM64_MTE=y
# end of ARMv8.5 architectural features
CONFIG_ARM64_SVE=y
CONFIG_ARM64_MODULE_PLTS=y
# CONFIG_ARM64_PSEUDO_NMI is not set
CONFIG_RELOCATABLE=y
CONFIG_RANDOMIZE_BASE=y
CONFIG_RANDOMIZE_MODULE_REGION_FULL=y
CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y
CONFIG_STACKPROTECTOR_PER_TASK=y
# end of Kernel Features
#
# Boot options
#
# CONFIG_ARM64_ACPI_PARKING_PROTOCOL is not set
CONFIG_CMDLINE=""
CONFIG_EFI_STUB=y
CONFIG_EFI=y
CONFIG_DMI=y
# end of Boot options
CONFIG_SYSVIPC_COMPAT=y
CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
CONFIG_ARCH_ENABLE_THP_MIGRATION=y
#
# Power management options
#
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
# CONFIG_SUSPEND_SKIP_SYNC is not set
# CONFIG_HIBERNATION is not set
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
CONFIG_PM_AUTOSLEEP=y
CONFIG_PM_WAKELOCKS=y
CONFIG_PM_WAKELOCKS_LIMIT=100
CONFIG_PM_WAKELOCKS_GC=y
CONFIG_PM=y
# CONFIG_PM_DEBUG is not set
CONFIG_PM_CLK=y
CONFIG_PM_GENERIC_DOMAINS=y
CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y
CONFIG_PM_GENERIC_DOMAINS_SLEEP=y
CONFIG_PM_GENERIC_DOMAINS_OF=y
CONFIG_CPU_PM=y
CONFIG_ENERGY_MODEL=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
# end of Power management options
#
# CPU Power Management
#
#
# CPU Idle
#
CONFIG_CPU_IDLE=y
CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y
# CONFIG_CPU_IDLE_GOV_LADDER is not set
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_CPU_IDLE_GOV_TEO is not set
CONFIG_DT_IDLE_STATES=y
#
# ARM CPU Idle Drivers
#
CONFIG_ARM_CPUIDLE=y
CONFIG_ARM_PSCI_CPUIDLE=y
CONFIG_ARM_PSCI_CPUIDLE_DOMAIN=y
# end of ARM CPU Idle Drivers
# end of CPU Idle
#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_GOV_ATTR_SET=y
CONFIG_CPU_FREQ_GOV_COMMON=y
CONFIG_CPU_FREQ_STAT=y
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
#
# CPU frequency scaling drivers
#
CONFIG_CPUFREQ_DT=y
CONFIG_CPUFREQ_DT_PLATDEV=y
CONFIG_ACPI_CPPC_CPUFREQ=m
CONFIG_ARM_TEGRA20_CPUFREQ=y
CONFIG_ARM_TEGRA124_CPUFREQ=y
CONFIG_ARM_TEGRA186_CPUFREQ=y
CONFIG_ARM_TEGRA194_CPUFREQ=y
# end of CPU Frequency scaling
# end of CPU Power Management
#
# Firmware Drivers
#
# CONFIG_ARM_SCMI_PROTOCOL is not set
CONFIG_ARM_SCPI_PROTOCOL=m
CONFIG_ARM_SCPI_POWER_DOMAIN=m
# CONFIG_ARM_SDE_INTERFACE is not set
# CONFIG_FIRMWARE_MEMMAP is not set
CONFIG_DMIID=y
CONFIG_DMI_SYSFS=y
# CONFIG_ISCSI_IBFT is not set
# CONFIG_FW_CFG_SYSFS is not set
# CONFIG_GOOGLE_FIRMWARE is not set
#
# EFI (Extensible Firmware Interface) Support
#
CONFIG_EFI_ESRT=y
# CONFIG_EFI_VARS_PSTORE is not set
CONFIG_EFI_PARAMS_FROM_FDT=y
CONFIG_EFI_RUNTIME_WRAPPERS=y
CONFIG_EFI_GENERIC_STUB=y
CONFIG_EFI_ARMSTUB_DTB_LOADER=y
CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y
# CONFIG_EFI_BOOTLOADER_CONTROL is not set
CONFIG_EFI_CAPSULE_LOADER=y
CONFIG_EFI_TEST=m
# CONFIG_RESET_ATTACK_MITIGATION is not set
# CONFIG_EFI_DISABLE_PCI_DMA is not set
# end of EFI (Extensible Firmware Interface) Support
CONFIG_UEFI_CPER=y
CONFIG_UEFI_CPER_ARM=y
CONFIG_EFI_EARLYCON=y
CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y
CONFIG_ARM_PSCI_FW=y
# CONFIG_ARM_PSCI_CHECKER is not set
CONFIG_HAVE_ARM_SMCCC=y
CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y
CONFIG_ARM_SMCCC_SOC_ID=y
#
# Tegra firmware driver
#
CONFIG_TEGRA_IVC=y
CONFIG_TEGRA_BPMP=y
# end of Tegra firmware driver
# end of Firmware Drivers
CONFIG_ARCH_SUPPORTS_ACPI=y
CONFIG_ACPI=y
CONFIG_ACPI_GENERIC_GSI=y
CONFIG_ACPI_CCA_REQUIRED=y
# CONFIG_ACPI_DEBUGGER is not set
CONFIG_ACPI_SPCR_TABLE=y
# CONFIG_ACPI_EC_DEBUGFS is not set
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_FAN=y
# CONFIG_ACPI_TAD is not set
# CONFIG_ACPI_DOCK is not set
CONFIG_ACPI_PROCESSOR_IDLE=y
CONFIG_ACPI_MCFG=y
CONFIG_ACPI_CPPC_LIB=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_HOTPLUG_CPU=y
CONFIG_ACPI_THERMAL=y
CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y
CONFIG_ACPI_TABLE_UPGRADE=y
# CONFIG_ACPI_DEBUG is not set
# CONFIG_ACPI_PCI_SLOT is not set
CONFIG_ACPI_CONTAINER=y
CONFIG_ACPI_HED=y
# CONFIG_ACPI_CUSTOM_METHOD is not set
# CONFIG_ACPI_BGRT is not set
CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y
CONFIG_HAVE_ACPI_APEI=y
CONFIG_ACPI_APEI=y
CONFIG_ACPI_APEI_GHES=y
# CONFIG_ACPI_APEI_PCIEAER is not set
CONFIG_ACPI_APEI_SEA=y
CONFIG_ACPI_APEI_MEMORY_FAILURE=y
CONFIG_ACPI_APEI_EINJ=y
# CONFIG_ACPI_APEI_ERST_DEBUG is not set
# CONFIG_ACPI_CONFIGFS is not set
CONFIG_ACPI_IORT=y
CONFIG_ACPI_GTDT=y
CONFIG_ACPI_PPTT=y
# CONFIG_PMIC_OPREGION is not set
CONFIG_IRQ_BYPASS_MANAGER=y
CONFIG_VIRTUALIZATION=y
CONFIG_KVM=y
CONFIG_HAVE_KVM_IRQCHIP=y
CONFIG_HAVE_KVM_IRQFD=y
CONFIG_HAVE_KVM_IRQ_ROUTING=y
CONFIG_HAVE_KVM_EVENTFD=y
CONFIG_KVM_MMIO=y
CONFIG_HAVE_KVM_MSI=y
CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y
CONFIG_KVM_VFIO=y
CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL=y
CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y
CONFIG_HAVE_KVM_IRQ_BYPASS=y
CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE=y
CONFIG_KVM_ARM_PMU=y
CONFIG_ARM64_CRYPTO=y
CONFIG_CRYPTO_SHA256_ARM64=m
CONFIG_CRYPTO_SHA512_ARM64=m
CONFIG_CRYPTO_SHA1_ARM64_CE=m
CONFIG_CRYPTO_SHA2_ARM64_CE=m
CONFIG_CRYPTO_SHA512_ARM64_CE=m
CONFIG_CRYPTO_SHA3_ARM64=m
CONFIG_CRYPTO_SM3_ARM64_CE=m
# CONFIG_CRYPTO_SM4_ARM64_CE is not set
CONFIG_CRYPTO_GHASH_ARM64_CE=m
# CONFIG_CRYPTO_CRCT10DIF_ARM64_CE is not set
CONFIG_CRYPTO_AES_ARM64=m
CONFIG_CRYPTO_AES_ARM64_CE=m
CONFIG_CRYPTO_AES_ARM64_CE_CCM=m
CONFIG_CRYPTO_AES_ARM64_CE_BLK=m
CONFIG_CRYPTO_AES_ARM64_NEON_BLK=m
# CONFIG_CRYPTO_CHACHA20_NEON is not set
# CONFIG_CRYPTO_POLY1305_NEON is not set
# CONFIG_CRYPTO_NHPOLY1305_NEON is not set
# CONFIG_CRYPTO_AES_ARM64_BS is not set
#
# General architecture-dependent options
#
CONFIG_CRASH_CORE=y
CONFIG_KEXEC_CORE=y
CONFIG_SET_FS=y
# CONFIG_KPROBES is not set
CONFIG_JUMP_LABEL=y
# CONFIG_STATIC_KEYS_SELFTEST is not set
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y
CONFIG_HAVE_NMI=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_CONTIGUOUS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_GENERIC_IDLE_POLL_SETUP=y
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
CONFIG_ARCH_HAS_KEEPINITRD=y
CONFIG_ARCH_HAS_SET_MEMORY=y
CONFIG_ARCH_HAS_SET_DIRECT_MAP=y
CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
CONFIG_HAVE_ASM_MODVERSIONS=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_RSEQ=y
CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y
CONFIG_MMU_GATHER_TABLE_FREE=y
CONFIG_MMU_GATHER_RCU_TABLE_FREE=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
CONFIG_HAVE_ARCH_SECCOMP=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_SECCOMP=y
CONFIG_SECCOMP_FILTER=y
CONFIG_HAVE_ARCH_STACKLEAK=y
CONFIG_HAVE_STACKPROTECTOR=y
CONFIG_STACKPROTECTOR=y
CONFIG_STACKPROTECTOR_STRONG=y
CONFIG_HAVE_CONTEXT_TRACKING=y
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_MOVE_PMD=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_HAVE_ARCH_HUGE_VMAP=y
CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
CONFIG_ARCH_MMAP_RND_BITS=18
CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
CONFIG_ARCH_MMAP_RND_COMPAT_BITS=11
CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y
CONFIG_CLONE_BACKWARDS=y
CONFIG_OLD_SIGSUSPEND3=y
CONFIG_COMPAT_OLD_SIGACTION=y
CONFIG_COMPAT_32BIT_TIME=y
CONFIG_HAVE_ARCH_VMAP_STACK=y
CONFIG_VMAP_STACK=y
CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
CONFIG_STRICT_KERNEL_RWX=y
CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
CONFIG_STRICT_MODULE_RWX=y
CONFIG_HAVE_ARCH_COMPILER_H=y
CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y
CONFIG_ARCH_USE_MEMREMAP_PROT=y
# CONFIG_LOCK_EVENT_COUNTS is not set
CONFIG_ARCH_HAS_RELR=y
CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y
#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
# end of GCOV-based kernel profiling
CONFIG_HAVE_GCC_PLUGINS=y
# end of General architecture-dependent options
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULE_SIG_FORMAT=y
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_MODULE_SIG=y
# CONFIG_MODULE_SIG_FORCE is not set
CONFIG_MODULE_SIG_ALL=y
# CONFIG_MODULE_SIG_SHA1 is not set
# CONFIG_MODULE_SIG_SHA224 is not set
# CONFIG_MODULE_SIG_SHA256 is not set
# CONFIG_MODULE_SIG_SHA384 is not set
CONFIG_MODULE_SIG_SHA512=y
CONFIG_MODULE_SIG_HASH="sha512"
# CONFIG_MODULE_COMPRESS is not set
# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
# CONFIG_UNUSED_SYMBOLS is not set
# CONFIG_TRIM_UNUSED_KSYMS is not set
CONFIG_MODULES_TREE_LOOKUP=y
CONFIG_BLOCK=y
CONFIG_BLK_SCSI_REQUEST=y
CONFIG_BLK_CGROUP_RWSTAT=y
CONFIG_BLK_DEV_BSG=y
CONFIG_BLK_DEV_BSGLIB=y
CONFIG_BLK_DEV_INTEGRITY=y
CONFIG_BLK_DEV_INTEGRITY_T10=y
# CONFIG_BLK_DEV_ZONED is not set
CONFIG_BLK_DEV_THROTTLING=y
# CONFIG_BLK_DEV_THROTTLING_LOW is not set
# CONFIG_BLK_CMDLINE_PARSER is not set
# CONFIG_BLK_WBT is not set
# CONFIG_BLK_CGROUP_IOLATENCY is not set
# CONFIG_BLK_CGROUP_IOCOST is not set
CONFIG_BLK_DEBUG_FS=y
# CONFIG_BLK_SED_OPAL is not set
# CONFIG_BLK_INLINE_ENCRYPTION is not set
#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_AIX_PARTITION is not set
# CONFIG_OSF_PARTITION is not set
# CONFIG_AMIGA_PARTITION is not set
# CONFIG_ATARI_PARTITION is not set
# CONFIG_MAC_PARTITION is not set
CONFIG_MSDOS_PARTITION=y
# CONFIG_BSD_DISKLABEL is not set
# CONFIG_MINIX_SUBPARTITION is not set
# CONFIG_SOLARIS_X86_PARTITION is not set
# CONFIG_UNIXWARE_DISKLABEL is not set
# CONFIG_LDM_PARTITION is not set
# CONFIG_SGI_PARTITION is not set
# CONFIG_ULTRIX_PARTITION is not set
# CONFIG_SUN_PARTITION is not set
# CONFIG_KARMA_PARTITION is not set
CONFIG_EFI_PARTITION=y
# CONFIG_SYSV68_PARTITION is not set
# CONFIG_CMDLINE_PARTITION is not set
# end of Partition Types
CONFIG_BLOCK_COMPAT=y
CONFIG_BLK_MQ_PCI=y
CONFIG_BLK_MQ_VIRTIO=y
CONFIG_BLK_MQ_RDMA=y
CONFIG_BLK_PM=y
#
# IO Schedulers
#
CONFIG_MQ_IOSCHED_DEADLINE=y
CONFIG_MQ_IOSCHED_KYBER=y
# CONFIG_IOSCHED_BFQ is not set
# end of IO Schedulers
CONFIG_PREEMPT_NOTIFIERS=y
CONFIG_ASN1=y
CONFIG_UNINLINE_SPIN_UNLOCK=y
CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
CONFIG_MUTEX_SPIN_ON_OWNER=y
CONFIG_RWSEM_SPIN_ON_OWNER=y
CONFIG_LOCK_SPIN_ON_OWNER=y
CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
CONFIG_QUEUED_SPINLOCKS=y
CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
CONFIG_QUEUED_RWLOCKS=y
CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y
CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y
CONFIG_FREEZER=y
#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
CONFIG_COMPAT_BINFMT_ELF=y
CONFIG_ARCH_BINFMT_ELF_STATE=y
CONFIG_ARCH_HAVE_ELF_PROT=y
CONFIG_ARCH_USE_GNU_PROPERTY=y
CONFIG_ELFCORE=y
# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
CONFIG_BINFMT_SCRIPT=y
CONFIG_BINFMT_MISC=m
CONFIG_COREDUMP=y
# end of Executable file formats
#
# Memory Management options
#
CONFIG_SELECT_MEMORY_MODEL=y
# CONFIG_FLATMEM_MANUAL is not set
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_HAVE_FAST_GUP=y
CONFIG_ARCH_KEEP_MEMBLOCK=y
CONFIG_MEMORY_ISOLATION=y
# CONFIG_MEMORY_HOTPLUG is not set
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_MEMORY_BALLOON=y
CONFIG_BALLOON_COMPACTION=y
CONFIG_COMPACTION=y
CONFIG_PAGE_REPORTING=y
CONFIG_MIGRATION=y
CONFIG_CONTIG_ALLOC=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_BOUNCE=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=32768
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
CONFIG_MEMORY_FAILURE=y
# CONFIG_HWPOISON_INJECT is not set
CONFIG_TRANSPARENT_HUGEPAGE=y
CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
# CONFIG_CLEANCACHE is not set
# CONFIG_FRONTSWAP is not set
CONFIG_CMA=y
# CONFIG_CMA_DEBUG is not set
# CONFIG_CMA_DEBUGFS is not set
CONFIG_CMA_AREAS=7
# CONFIG_ZPOOL is not set
# CONFIG_ZBUD is not set
CONFIG_ZSMALLOC=y
# CONFIG_ZSMALLOC_STAT is not set
CONFIG_GENERIC_EARLY_IOREMAP=y
# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
# CONFIG_IDLE_PAGE_TRACKING is not set
CONFIG_ARCH_HAS_PTE_DEVMAP=y
CONFIG_HMM_MIRROR=y
CONFIG_FRAME_VECTOR=y
CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
# CONFIG_PERCPU_STATS is not set
# CONFIG_GUP_BENCHMARK is not set
# CONFIG_READ_ONLY_THP_FOR_FS is not set
CONFIG_ARCH_HAS_PTE_SPECIAL=y
# end of Memory Management options
CONFIG_NET=y
CONFIG_COMPAT_NETLINK_MESSAGES=y
CONFIG_NET_INGRESS=y
CONFIG_NET_EGRESS=y
CONFIG_SKB_EXTENSIONS=y
#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_DIAG is not set
CONFIG_UNIX=y
CONFIG_UNIX_SCM=y
# CONFIG_UNIX_DIAG is not set
# CONFIG_TLS is not set
CONFIG_XFRM=y
CONFIG_XFRM_ALGO=y
CONFIG_XFRM_USER=y
# CONFIG_XFRM_INTERFACE is not set
# CONFIG_XFRM_SUB_POLICY is not set
# CONFIG_XFRM_MIGRATE is not set
# CONFIG_XFRM_STATISTICS is not set
CONFIG_XFRM_AH=m
CONFIG_XFRM_ESP=m
CONFIG_XFRM_IPCOMP=m
CONFIG_NET_KEY=y
# CONFIG_NET_KEY_MIGRATE is not set
# CONFIG_SMC is not set
# CONFIG_XDP_SOCKETS is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
# CONFIG_IP_FIB_TRIE_STATS is not set
CONFIG_IP_MULTIPLE_TABLES=y
# CONFIG_IP_ROUTE_MULTIPATH is not set
# CONFIG_IP_ROUTE_VERBOSE is not set
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
CONFIG_IP_PNP_BOOTP=y
# CONFIG_IP_PNP_RARP is not set
# CONFIG_NET_IPIP is not set
CONFIG_NET_IPGRE_DEMUX=m
CONFIG_NET_IP_TUNNEL=y
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
CONFIG_SYN_COOKIES=y
# CONFIG_NET_IPVTI is not set
CONFIG_NET_UDP_TUNNEL=y
# CONFIG_NET_FOU is not set
# CONFIG_NET_FOU_IP_TUNNELS is not set
# CONFIG_INET_AH is not set
CONFIG_INET_ESP=m
# CONFIG_INET_ESP_OFFLOAD is not set
# CONFIG_INET_ESPINTCP is not set
# CONFIG_INET_IPCOMP is not set
CONFIG_INET_TUNNEL=m
CONFIG_INET_DIAG=m
CONFIG_INET_TCP_DIAG=m
# CONFIG_INET_UDP_DIAG is not set
# CONFIG_INET_RAW_DIAG is not set
# CONFIG_INET_DIAG_DESTROY is not set
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_CUBIC=y
CONFIG_DEFAULT_TCP_CONG="cubic"
# CONFIG_TCP_MD5SIG is not set
CONFIG_IPV6=y
CONFIG_IPV6_ROUTER_PREF=y
CONFIG_IPV6_ROUTE_INFO=y
CONFIG_IPV6_OPTIMISTIC_DAD=y
CONFIG_INET6_AH=m
CONFIG_INET6_ESP=m
# CONFIG_INET6_ESP_OFFLOAD is not set
# CONFIG_INET6_ESPINTCP is not set
CONFIG_INET6_IPCOMP=m
CONFIG_IPV6_MIP6=m
# CONFIG_IPV6_ILA is not set
CONFIG_INET6_XFRM_TUNNEL=m
CONFIG_INET6_TUNNEL=m
# CONFIG_IPV6_VTI is not set
CONFIG_IPV6_SIT=m
# CONFIG_IPV6_SIT_6RD is not set
CONFIG_IPV6_NDISC_NODETYPE=y
CONFIG_IPV6_TUNNEL=m
# CONFIG_IPV6_GRE is not set
CONFIG_IPV6_MULTIPLE_TABLES=y
# CONFIG_IPV6_SUBTREES is not set
# CONFIG_IPV6_MROUTE is not set
# CONFIG_IPV6_SEG6_LWTUNNEL is not set
# CONFIG_IPV6_SEG6_HMAC is not set
# CONFIG_IPV6_RPL_LWTUNNEL is not set
# CONFIG_NETLABEL is not set
# CONFIG_MPTCP is not set
CONFIG_NETWORK_SECMARK=y
CONFIG_NET_PTP_CLASSIFY=y
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
CONFIG_NETFILTER=y
CONFIG_NETFILTER_ADVANCED=y
CONFIG_BRIDGE_NETFILTER=m
#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_INGRESS=y
CONFIG_NETFILTER_NETLINK=m
CONFIG_NETFILTER_FAMILY_BRIDGE=y
CONFIG_NETFILTER_FAMILY_ARP=y
CONFIG_NETFILTER_NETLINK_ACCT=m
CONFIG_NETFILTER_NETLINK_QUEUE=m
CONFIG_NETFILTER_NETLINK_LOG=m
# CONFIG_NETFILTER_NETLINK_OSF is not set
CONFIG_NF_CONNTRACK=m
CONFIG_NF_LOG_COMMON=m
# CONFIG_NF_LOG_NETDEV is not set
CONFIG_NETFILTER_CONNCOUNT=m
CONFIG_NF_CONNTRACK_MARK=y
# CONFIG_NF_CONNTRACK_SECMARK is not set
# CONFIG_NF_CONNTRACK_ZONES is not set
CONFIG_NF_CONNTRACK_PROCFS=y
CONFIG_NF_CONNTRACK_EVENTS=y
# CONFIG_NF_CONNTRACK_TIMEOUT is not set
# CONFIG_NF_CONNTRACK_TIMESTAMP is not set
# CONFIG_NF_CONNTRACK_LABELS is not set
CONFIG_NF_CT_PROTO_DCCP=y
CONFIG_NF_CT_PROTO_GRE=y
CONFIG_NF_CT_PROTO_SCTP=y
CONFIG_NF_CT_PROTO_UDPLITE=y
CONFIG_NF_CONNTRACK_AMANDA=m
CONFIG_NF_CONNTRACK_FTP=m
CONFIG_NF_CONNTRACK_H323=m
CONFIG_NF_CONNTRACK_IRC=m
CONFIG_NF_CONNTRACK_BROADCAST=m
CONFIG_NF_CONNTRACK_NETBIOS_NS=m
# CONFIG_NF_CONNTRACK_SNMP is not set
CONFIG_NF_CONNTRACK_PPTP=m
CONFIG_NF_CONNTRACK_SANE=m
CONFIG_NF_CONNTRACK_SIP=m
CONFIG_NF_CONNTRACK_TFTP=m
CONFIG_NF_CT_NETLINK=m
# CONFIG_NETFILTER_NETLINK_GLUE_CT is not set
CONFIG_NF_NAT=m
CONFIG_NF_NAT_AMANDA=m
CONFIG_NF_NAT_FTP=m
CONFIG_NF_NAT_IRC=m
CONFIG_NF_NAT_SIP=m
CONFIG_NF_NAT_TFTP=m
CONFIG_NF_NAT_REDIRECT=y
CONFIG_NF_NAT_MASQUERADE=y
# CONFIG_NF_TABLES is not set
CONFIG_NETFILTER_XTABLES=m
#
# Xtables combined modules
#
CONFIG_NETFILTER_XT_MARK=m
CONFIG_NETFILTER_XT_CONNMARK=m
#
# Xtables targets
#
# CONFIG_NETFILTER_XT_TARGET_AUDIT is not set
CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
# CONFIG_NETFILTER_XT_TARGET_CT is not set
# CONFIG_NETFILTER_XT_TARGET_DSCP is not set
# CONFIG_NETFILTER_XT_TARGET_HL is not set
# CONFIG_NETFILTER_XT_TARGET_HMARK is not set
CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
# CONFIG_NETFILTER_XT_TARGET_LED is not set
CONFIG_NETFILTER_XT_TARGET_LOG=m
CONFIG_NETFILTER_XT_TARGET_MARK=m
CONFIG_NETFILTER_XT_NAT=m
CONFIG_NETFILTER_XT_TARGET_NETMAP=m
# CONFIG_NETFILTER_XT_TARGET_NFLOG is not set
# CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set
# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set
# CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
CONFIG_NETFILTER_XT_TARGET_MASQUERADE=m
CONFIG_NETFILTER_XT_TARGET_TEE=m
CONFIG_NETFILTER_XT_TARGET_TPROXY=m
CONFIG_NETFILTER_XT_TARGET_TRACE=m
# CONFIG_NETFILTER_XT_TARGET_SECMARK is not set
CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
# CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set
#
# Xtables matches
#
CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
# CONFIG_NETFILTER_XT_MATCH_BPF is not set
# CONFIG_NETFILTER_XT_MATCH_CGROUP is not set
# CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set
CONFIG_NETFILTER_XT_MATCH_COMMENT=m
CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
# CONFIG_NETFILTER_XT_MATCH_CONNLABEL is not set
CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
# CONFIG_NETFILTER_XT_MATCH_CPU is not set
# CONFIG_NETFILTER_XT_MATCH_DCCP is not set
# CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set
# CONFIG_NETFILTER_XT_MATCH_DSCP is not set
CONFIG_NETFILTER_XT_MATCH_ECN=m
# CONFIG_NETFILTER_XT_MATCH_ESP is not set
CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
CONFIG_NETFILTER_XT_MATCH_HELPER=m
CONFIG_NETFILTER_XT_MATCH_HL=m
# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
CONFIG_NETFILTER_XT_MATCH_IPVS=m
# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
CONFIG_NETFILTER_XT_MATCH_LENGTH=m
CONFIG_NETFILTER_XT_MATCH_LIMIT=m
CONFIG_NETFILTER_XT_MATCH_MAC=m
CONFIG_NETFILTER_XT_MATCH_MARK=m
CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
# CONFIG_NETFILTER_XT_MATCH_OSF is not set
CONFIG_NETFILTER_XT_MATCH_OWNER=m
# CONFIG_NETFILTER_XT_MATCH_POLICY is not set
# CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set
CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
CONFIG_NETFILTER_XT_MATCH_QUOTA=m
# CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
# CONFIG_NETFILTER_XT_MATCH_REALM is not set
CONFIG_NETFILTER_XT_MATCH_RECENT=m
# CONFIG_NETFILTER_XT_MATCH_SCTP is not set
CONFIG_NETFILTER_XT_MATCH_SOCKET=m
CONFIG_NETFILTER_XT_MATCH_STATE=m
CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
CONFIG_NETFILTER_XT_MATCH_STRING=m
# CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set
CONFIG_NETFILTER_XT_MATCH_TIME=m
CONFIG_NETFILTER_XT_MATCH_U32=m
# end of Core Netfilter Configuration
# CONFIG_IP_SET is not set
CONFIG_IP_VS=m
# CONFIG_IP_VS_IPV6 is not set
# CONFIG_IP_VS_DEBUG is not set
CONFIG_IP_VS_TAB_BITS=12
#
# IPVS transport protocol load balancing support
#
CONFIG_IP_VS_PROTO_TCP=y
CONFIG_IP_VS_PROTO_UDP=y
# CONFIG_IP_VS_PROTO_ESP is not set
# CONFIG_IP_VS_PROTO_AH is not set
# CONFIG_IP_VS_PROTO_SCTP is not set
#
# IPVS scheduler
#
CONFIG_IP_VS_RR=m
# CONFIG_IP_VS_WRR is not set
# CONFIG_IP_VS_LC is not set
# CONFIG_IP_VS_WLC is not set
# CONFIG_IP_VS_FO is not set
# CONFIG_IP_VS_OVF is not set
# CONFIG_IP_VS_LBLC is not set
# CONFIG_IP_VS_LBLCR is not set
# CONFIG_IP_VS_DH is not set
# CONFIG_IP_VS_SH is not set
# CONFIG_IP_VS_MH is not set
# CONFIG_IP_VS_SED is not set
# CONFIG_IP_VS_NQ is not set
#
# IPVS SH scheduler
#
CONFIG_IP_VS_SH_TAB_BITS=8
#
# IPVS MH scheduler
#
CONFIG_IP_VS_MH_TAB_INDEX=12
#
# IPVS application helper
#
# CONFIG_IP_VS_FTP is not set
CONFIG_IP_VS_NFCT=y
# CONFIG_IP_VS_PE_SIP is not set
#
# IP: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV4=m
CONFIG_NF_SOCKET_IPV4=m
CONFIG_NF_TPROXY_IPV4=m
CONFIG_NF_DUP_IPV4=m
# CONFIG_NF_LOG_ARP is not set
CONFIG_NF_LOG_IPV4=m
CONFIG_NF_REJECT_IPV4=m
CONFIG_NF_NAT_PPTP=m
CONFIG_NF_NAT_H323=m
CONFIG_IP_NF_IPTABLES=m
CONFIG_IP_NF_MATCH_AH=m
CONFIG_IP_NF_MATCH_ECN=m
CONFIG_IP_NF_MATCH_RPFILTER=m
CONFIG_IP_NF_MATCH_TTL=m
CONFIG_IP_NF_FILTER=m
CONFIG_IP_NF_TARGET_REJECT=m
# CONFIG_IP_NF_TARGET_SYNPROXY is not set
CONFIG_IP_NF_NAT=m
CONFIG_IP_NF_TARGET_MASQUERADE=m
CONFIG_IP_NF_TARGET_NETMAP=m
CONFIG_IP_NF_TARGET_REDIRECT=m
CONFIG_IP_NF_MANGLE=m
# CONFIG_IP_NF_TARGET_CLUSTERIP is not set
# CONFIG_IP_NF_TARGET_ECN is not set
# CONFIG_IP_NF_TARGET_TTL is not set
CONFIG_IP_NF_RAW=m
CONFIG_IP_NF_SECURITY=m
CONFIG_IP_NF_ARPTABLES=m
CONFIG_IP_NF_ARPFILTER=m
CONFIG_IP_NF_ARP_MANGLE=m
# end of IP: Netfilter Configuration
#
# IPv6: Netfilter Configuration
#
CONFIG_NF_SOCKET_IPV6=m
CONFIG_NF_TPROXY_IPV6=m
CONFIG_NF_DUP_IPV6=m
CONFIG_NF_REJECT_IPV6=m
CONFIG_NF_LOG_IPV6=m
CONFIG_IP6_NF_IPTABLES=m
# CONFIG_IP6_NF_MATCH_AH is not set
# CONFIG_IP6_NF_MATCH_EUI64 is not set
# CONFIG_IP6_NF_MATCH_FRAG is not set
# CONFIG_IP6_NF_MATCH_OPTS is not set
# CONFIG_IP6_NF_MATCH_HL is not set
# CONFIG_IP6_NF_MATCH_IPV6HEADER is not set
# CONFIG_IP6_NF_MATCH_MH is not set
# CONFIG_IP6_NF_MATCH_RPFILTER is not set
# CONFIG_IP6_NF_MATCH_RT is not set
# CONFIG_IP6_NF_MATCH_SRH is not set
# CONFIG_IP6_NF_TARGET_HL is not set
CONFIG_IP6_NF_FILTER=m
CONFIG_IP6_NF_TARGET_REJECT=m
# CONFIG_IP6_NF_TARGET_SYNPROXY is not set
CONFIG_IP6_NF_MANGLE=m
CONFIG_IP6_NF_RAW=m
# CONFIG_IP6_NF_SECURITY is not set
CONFIG_IP6_NF_NAT=m
CONFIG_IP6_NF_TARGET_MASQUERADE=m
# CONFIG_IP6_NF_TARGET_NPT is not set
# end of IPv6: Netfilter Configuration
CONFIG_NF_DEFRAG_IPV6=m
# CONFIG_NF_CONNTRACK_BRIDGE is not set
# CONFIG_BRIDGE_NF_EBTABLES is not set
# CONFIG_BPFILTER is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_RDS is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_L2TP is not set
CONFIG_STP=y
CONFIG_GARP=m
CONFIG_MRP=m
CONFIG_BRIDGE=y
CONFIG_BRIDGE_IGMP_SNOOPING=y
CONFIG_BRIDGE_VLAN_FILTERING=y
# CONFIG_BRIDGE_MRP is not set
CONFIG_HAVE_NET_DSA=y
CONFIG_NET_DSA=m
# CONFIG_NET_DSA_TAG_AR9331 is not set
# CONFIG_NET_DSA_TAG_BRCM is not set
# CONFIG_NET_DSA_TAG_BRCM_PREPEND is not set
# CONFIG_NET_DSA_TAG_GSWIP is not set
# CONFIG_NET_DSA_TAG_DSA is not set
# CONFIG_NET_DSA_TAG_EDSA is not set
# CONFIG_NET_DSA_TAG_MTK is not set
# CONFIG_NET_DSA_TAG_KSZ is not set
# CONFIG_NET_DSA_TAG_RTL4_A is not set
CONFIG_NET_DSA_TAG_OCELOT=m
# CONFIG_NET_DSA_TAG_QCA is not set
# CONFIG_NET_DSA_TAG_LAN9303 is not set
# CONFIG_NET_DSA_TAG_SJA1105 is not set
# CONFIG_NET_DSA_TAG_TRAILER is not set
CONFIG_VLAN_8021Q=m
CONFIG_VLAN_8021Q_GVRP=y
CONFIG_VLAN_8021Q_MVRP=y
# CONFIG_DECNET is not set
CONFIG_LLC=y
# CONFIG_LLC2 is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_PHONET is not set
# CONFIG_6LOWPAN is not set
# CONFIG_IEEE802154 is not set
CONFIG_NET_SCHED=y
#
# Queueing/Scheduling
#
# CONFIG_NET_SCH_CBQ is not set
CONFIG_NET_SCH_HTB=y
# CONFIG_NET_SCH_HFSC is not set
# CONFIG_NET_SCH_PRIO is not set
# CONFIG_NET_SCH_MULTIQ is not set
# CONFIG_NET_SCH_RED is not set
# CONFIG_NET_SCH_SFB is not set
# CONFIG_NET_SCH_SFQ is not set
# CONFIG_NET_SCH_TEQL is not set
# CONFIG_NET_SCH_TBF is not set
CONFIG_NET_SCH_CBS=y
CONFIG_NET_SCH_ETF=m
CONFIG_NET_SCH_TAPRIO=m
# CONFIG_NET_SCH_GRED is not set
# CONFIG_NET_SCH_DSMARK is not set
# CONFIG_NET_SCH_NETEM is not set
# CONFIG_NET_SCH_DRR is not set
CONFIG_NET_SCH_MQPRIO=m
# CONFIG_NET_SCH_SKBPRIO is not set
# CONFIG_NET_SCH_CHOKE is not set
# CONFIG_NET_SCH_QFQ is not set
# CONFIG_NET_SCH_CODEL is not set
# CONFIG_NET_SCH_FQ_CODEL is not set
# CONFIG_NET_SCH_CAKE is not set
# CONFIG_NET_SCH_FQ is not set
# CONFIG_NET_SCH_HHF is not set
# CONFIG_NET_SCH_PIE is not set
CONFIG_NET_SCH_INGRESS=m
# CONFIG_NET_SCH_PLUG is not set
# CONFIG_NET_SCH_ETS is not set
# CONFIG_NET_SCH_DEFAULT is not set
#
# Classification
#
CONFIG_NET_CLS=y
CONFIG_NET_CLS_BASIC=m
# CONFIG_NET_CLS_TCINDEX is not set
# CONFIG_NET_CLS_ROUTE4 is not set
# CONFIG_NET_CLS_FW is not set
CONFIG_NET_CLS_U32=y
# CONFIG_CLS_U32_PERF is not set
# CONFIG_CLS_U32_MARK is not set
# CONFIG_NET_CLS_RSVP is not set
# CONFIG_NET_CLS_RSVP6 is not set
# CONFIG_NET_CLS_FLOW is not set
CONFIG_NET_CLS_CGROUP=y
# CONFIG_NET_CLS_BPF is not set
CONFIG_NET_CLS_FLOWER=m
# CONFIG_NET_CLS_MATCHALL is not set
CONFIG_NET_EMATCH=y
CONFIG_NET_EMATCH_STACK=32
# CONFIG_NET_EMATCH_CMP is not set
# CONFIG_NET_EMATCH_NBYTE is not set
CONFIG_NET_EMATCH_U32=y
# CONFIG_NET_EMATCH_META is not set
# CONFIG_NET_EMATCH_TEXT is not set
# CONFIG_NET_EMATCH_CANID is not set
# CONFIG_NET_EMATCH_IPT is not set
CONFIG_NET_CLS_ACT=y
CONFIG_NET_ACT_POLICE=m
CONFIG_NET_ACT_GACT=m
# CONFIG_GACT_PROB is not set
CONFIG_NET_ACT_MIRRED=m
# CONFIG_NET_ACT_SAMPLE is not set
# CONFIG_NET_ACT_IPT is not set
# CONFIG_NET_ACT_NAT is not set
# CONFIG_NET_ACT_PEDIT is not set
# CONFIG_NET_ACT_SIMP is not set
# CONFIG_NET_ACT_SKBEDIT is not set
# CONFIG_NET_ACT_CSUM is not set
# CONFIG_NET_ACT_MPLS is not set
# CONFIG_NET_ACT_VLAN is not set
# CONFIG_NET_ACT_BPF is not set
# CONFIG_NET_ACT_CONNMARK is not set
# CONFIG_NET_ACT_CTINFO is not set
# CONFIG_NET_ACT_SKBMOD is not set
# CONFIG_NET_ACT_IFE is not set
# CONFIG_NET_ACT_TUNNEL_KEY is not set
CONFIG_NET_ACT_GATE=m
# CONFIG_NET_TC_SKB_EXT is not set
CONFIG_NET_SCH_FIFO=y
# CONFIG_DCB is not set
CONFIG_DNS_RESOLVER=y
# CONFIG_BATMAN_ADV is not set
# CONFIG_OPENVSWITCH is not set
# CONFIG_VSOCKETS is not set
# CONFIG_NETLINK_DIAG is not set
# CONFIG_MPLS is not set
# CONFIG_NET_NSH is not set
# CONFIG_HSR is not set
CONFIG_NET_SWITCHDEV=y
CONFIG_NET_L3_MASTER_DEV=y
# CONFIG_QRTR is not set
# CONFIG_NET_NCSI is not set
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_XPS=y
CONFIG_CGROUP_NET_PRIO=y
CONFIG_CGROUP_NET_CLASSID=y
CONFIG_NET_RX_BUSY_POLL=y
CONFIG_BQL=y
CONFIG_BPF_JIT=y
CONFIG_NET_FLOW_LIMIT=y
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NET_DROP_MONITOR is not set
# end of Network testing
# end of Networking options
# CONFIG_HAMRADIO is not set
CONFIG_CAN=m
CONFIG_CAN_RAW=m
CONFIG_CAN_BCM=m
CONFIG_CAN_GW=m
# CONFIG_CAN_J1939 is not set
# CONFIG_CAN_ISOTP is not set
#
# CAN Device Drivers
#
CONFIG_CAN_VCAN=m
# CONFIG_CAN_VXCAN is not set
CONFIG_CAN_SLCAN=m
CONFIG_CAN_DEV=m
CONFIG_CAN_CALC_BITTIMING=y
# CONFIG_CAN_FLEXCAN is not set
# CONFIG_CAN_GRCAN is not set
# CONFIG_CAN_KVASER_PCIEFD is not set
# CONFIG_CAN_XILINXCAN is not set
CONFIG_CAN_C_CAN=m
# CONFIG_CAN_C_CAN_PLATFORM is not set
# CONFIG_CAN_C_CAN_PCI is not set
CONFIG_CAN_CC770=m
CONFIG_CAN_CC770_ISA=m
CONFIG_CAN_CC770_PLATFORM=m
# CONFIG_CAN_IFI_CANFD is not set
CONFIG_CAN_M_CAN=m
# CONFIG_CAN_M_CAN_PLATFORM is not set
# CONFIG_CAN_M_CAN_TCAN4X5X is not set
# CONFIG_CAN_PEAK_PCIEFD is not set
CONFIG_CAN_SJA1000=m
CONFIG_CAN_EMS_PCI=m
# CONFIG_CAN_F81601 is not set
CONFIG_CAN_KVASER_PCI=m
# CONFIG_CAN_PEAK_PCI is not set
CONFIG_CAN_PLX_PCI=m
CONFIG_CAN_SJA1000_ISA=m
CONFIG_CAN_SJA1000_PLATFORM=m
CONFIG_CAN_SOFTING=m
#
# CAN SPI interfaces
#
# CONFIG_CAN_HI311X is not set
CONFIG_CAN_MCP251X=m
# CONFIG_CAN_MCP251XFD is not set
# end of CAN SPI interfaces
#
# CAN USB interfaces
#
CONFIG_CAN_8DEV_USB=m
CONFIG_CAN_EMS_USB=m
CONFIG_CAN_ESD_USB2=m
CONFIG_CAN_GS_USB=m
CONFIG_CAN_KVASER_USB=m
# CONFIG_CAN_MCBA_USB is not set
CONFIG_CAN_PEAK_USB=m
# CONFIG_CAN_UCAN is not set
# end of CAN USB interfaces
# CONFIG_CAN_DEBUG_DEVICES is not set
# end of CAN Device Drivers
CONFIG_BT=y
CONFIG_BT_BREDR=y
CONFIG_BT_RFCOMM=y
# CONFIG_BT_RFCOMM_TTY is not set
CONFIG_BT_BNEP=m
# CONFIG_BT_BNEP_MC_FILTER is not set
# CONFIG_BT_BNEP_PROTO_FILTER is not set
CONFIG_BT_HIDP=y
# CONFIG_BT_HS is not set
# CONFIG_BT_LE is not set
CONFIG_BT_LEDS=y
# CONFIG_BT_MSFTEXT is not set
# CONFIG_BT_DEBUGFS is not set
# CONFIG_BT_SELFTEST is not set
# CONFIG_BT_FEATURE_DEBUG is not set
#
# Bluetooth device drivers
#
CONFIG_BT_INTEL=m
CONFIG_BT_BCM=m
CONFIG_BT_RTL=m
CONFIG_BT_QCA=m
CONFIG_BT_HCIBTUSB=m
# CONFIG_BT_HCIBTUSB_AUTOSUSPEND is not set
CONFIG_BT_HCIBTUSB_BCM=y
# CONFIG_BT_HCIBTUSB_MTK is not set
CONFIG_BT_HCIBTUSB_RTL=y
# CONFIG_BT_HCIBTSDIO is not set
CONFIG_BT_HCIUART=m
CONFIG_BT_HCIUART_SERDEV=y
CONFIG_BT_HCIUART_H4=y
# CONFIG_BT_HCIUART_NOKIA is not set
CONFIG_BT_HCIUART_BCSP=y
CONFIG_BT_HCIUART_ATH3K=y
CONFIG_BT_HCIUART_LL=y
# CONFIG_BT_HCIUART_3WIRE is not set
CONFIG_BT_HCIUART_INTEL=y
CONFIG_BT_HCIUART_BCM=y
# CONFIG_BT_HCIUART_RTL is not set
CONFIG_BT_HCIUART_QCA=y
# CONFIG_BT_HCIUART_AG6XX is not set
# CONFIG_BT_HCIUART_MRVL is not set
CONFIG_BT_HCIBCM203X=m
CONFIG_BT_HCIBPA10X=m
CONFIG_BT_HCIBFUSB=m
CONFIG_BT_HCIVHCI=m
CONFIG_BT_MRVL=m
CONFIG_BT_MRVL_SDIO=m
CONFIG_BT_ATH3K=m
# CONFIG_BT_MTKSDIO is not set
# CONFIG_BT_MTKUART is not set
# end of Bluetooth device drivers
CONFIG_AF_RXRPC=m
# CONFIG_AF_RXRPC_IPV6 is not set
# CONFIG_AF_RXRPC_INJECT_LOSS is not set
# CONFIG_AF_RXRPC_DEBUG is not set
# CONFIG_RXKAD is not set
CONFIG_AF_KCM=m
CONFIG_STREAM_PARSER=y
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
CONFIG_WIRELESS_EXT=y
CONFIG_WEXT_CORE=y
CONFIG_WEXT_PROC=y
CONFIG_WEXT_SPY=y
CONFIG_WEXT_PRIV=y
CONFIG_CFG80211=m
# CONFIG_NL80211_TESTMODE is not set
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
CONFIG_CFG80211_CERTIFICATION_ONUS=y
# CONFIG_CFG80211_REQUIRE_SIGNED_REGDB is not set
# CONFIG_CFG80211_REG_CELLULAR_HINTS is not set
# CONFIG_CFG80211_REG_RELAX_NO_IR is not set
CONFIG_CFG80211_DEFAULT_PS=y
# CONFIG_CFG80211_DEBUGFS is not set
CONFIG_CFG80211_CRDA_SUPPORT=y
CONFIG_CFG80211_WEXT=y
CONFIG_CFG80211_WEXT_EXPORT=y
CONFIG_LIB80211=m
CONFIG_LIB80211_CRYPT_WEP=m
CONFIG_LIB80211_CRYPT_CCMP=m
CONFIG_LIB80211_CRYPT_TKIP=m
# CONFIG_LIB80211_DEBUG is not set
CONFIG_MAC80211=m
CONFIG_MAC80211_HAS_RC=y
CONFIG_MAC80211_RC_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
# CONFIG_MAC80211_MESH is not set
CONFIG_MAC80211_LEDS=y
CONFIG_MAC80211_DEBUGFS=y
# CONFIG_MAC80211_MESSAGE_TRACING is not set
# CONFIG_MAC80211_DEBUG_MENU is not set
CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
# CONFIG_WIMAX is not set
CONFIG_RFKILL=y
CONFIG_RFKILL_LEDS=y
# CONFIG_RFKILL_INPUT is not set
# CONFIG_RFKILL_GPIO is not set
CONFIG_NET_9P=y
# CONFIG_NET_9P_VIRTIO is not set
# CONFIG_NET_9P_RDMA is not set
# CONFIG_NET_9P_DEBUG is not set
# CONFIG_CAIF is not set
# CONFIG_CEPH_LIB is not set
CONFIG_NFC=m
# CONFIG_NFC_DIGITAL is not set
CONFIG_NFC_NCI=m
# CONFIG_NFC_NCI_SPI is not set
# CONFIG_NFC_NCI_UART is not set
# CONFIG_NFC_HCI is not set
#
# Near Field Communication (NFC) devices
#
# CONFIG_NFC_FDP is not set
# CONFIG_NFC_PN533_USB is not set
# CONFIG_NFC_PN533_I2C is not set
# CONFIG_NFC_PN532_UART is not set
# CONFIG_NFC_MRVL_USB is not set
# CONFIG_NFC_ST_NCI_I2C is not set
# CONFIG_NFC_ST_NCI_SPI is not set
# CONFIG_NFC_NXP_NCI is not set
CONFIG_NFC_S3FWRN5=m
CONFIG_NFC_S3FWRN5_I2C=m
# end of Near Field Communication (NFC) devices
# CONFIG_PSAMPLE is not set
# CONFIG_NET_IFE is not set
# CONFIG_LWTUNNEL is not set
CONFIG_DST_CACHE=y
CONFIG_GRO_CELLS=y
CONFIG_NET_DEVLINK=y
CONFIG_PAGE_POOL=y
CONFIG_FAILOVER=y
CONFIG_ETHTOOL_NETLINK=y
CONFIG_HAVE_EBPF_JIT=y
#
# Device Drivers
#
CONFIG_ARM_AMBA=y
CONFIG_TEGRA_AHB=y
CONFIG_HAVE_PCI=y
CONFIG_PCI=y
CONFIG_PCI_DOMAINS=y
CONFIG_PCI_DOMAINS_GENERIC=y
CONFIG_PCI_SYSCALL=y
CONFIG_PCIEPORTBUS=y
CONFIG_PCIEAER=y
# CONFIG_PCIEAER_INJECT is not set
CONFIG_PCIE_ECRC=y
CONFIG_PCIEASPM=y
# CONFIG_PCIEASPM_DEFAULT is not set
# CONFIG_PCIEASPM_POWERSAVE is not set
CONFIG_PCIEASPM_POWER_SUPERSAVE=y
# CONFIG_PCIEASPM_PERFORMANCE is not set
CONFIG_PCIE_PME=y
# CONFIG_PCIE_DPC is not set
# CONFIG_PCIE_PTM is not set
CONFIG_PCI_MSI=y
CONFIG_PCI_MSI_IRQ_DOMAIN=y
CONFIG_PCI_MSI_ARCH_FALLBACKS=y
CONFIG_PCI_QUIRKS=y
# CONFIG_PCI_DEBUG is not set
# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
CONFIG_PCI_STUB=m
# CONFIG_PCI_PF_STUB is not set
CONFIG_PCI_ATS=y
CONFIG_PCI_ECAM=y
CONFIG_PCI_IOV=y
# CONFIG_PCI_PRI is not set
# CONFIG_PCI_PASID is not set
CONFIG_PCI_LABEL=y
# CONFIG_PCIE_BUS_TUNE_OFF is not set
# CONFIG_PCIE_BUS_DEFAULT is not set
CONFIG_PCIE_BUS_SAFE=y
# CONFIG_PCIE_BUS_PERFORMANCE is not set
# CONFIG_PCIE_BUS_PEER2PEER is not set
# CONFIG_HOTPLUG_PCI is not set
#
# PCI controller drivers
#
# CONFIG_PCI_FTPCI100 is not set
CONFIG_PCI_TEGRA=y
# CONFIG_PCI_HOST_GENERIC is not set
# CONFIG_PCIE_XILINX is not set
# CONFIG_PCI_XGENE is not set
# CONFIG_PCIE_ALTERA is not set
# CONFIG_PCI_HOST_THUNDER_PEM is not set
# CONFIG_PCI_HOST_THUNDER_ECAM is not set
# CONFIG_PCIE_HISI_ERR is not set
#
# DesignWare PCI Core Support
#
CONFIG_PCIE_DW=y
CONFIG_PCIE_DW_HOST=y
CONFIG_PCIE_DW_EP=y
# CONFIG_PCIE_DW_PLAT_HOST is not set
# CONFIG_PCIE_DW_PLAT_EP is not set
# CONFIG_PCI_HISI is not set
# CONFIG_PCIE_KIRIN is not set
# CONFIG_PCI_MESON is not set
CONFIG_PCIE_TEGRA194=y
CONFIG_PCIE_TEGRA194_HOST=y
CONFIG_PCIE_TEGRA194_EP=y
# CONFIG_PCIE_AL is not set
# end of DesignWare PCI Core Support
#
# Mobiveil PCIe Core Support
#
CONFIG_PCIE_MOBIVEIL=y
CONFIG_PCIE_MOBIVEIL_HOST=y
CONFIG_PCIE_LAYERSCAPE_GEN4=y
# end of Mobiveil PCIe Core Support
#
# Cadence PCIe controllers support
#
# CONFIG_PCIE_CADENCE_PLAT_HOST is not set
# CONFIG_PCIE_CADENCE_PLAT_EP is not set
# CONFIG_PCI_J721E_HOST is not set
# CONFIG_PCI_J721E_EP is not set
# end of Cadence PCIe controllers support
# end of PCI controller drivers
#
# PCI Endpoint
#
CONFIG_PCI_ENDPOINT=y
CONFIG_PCI_ENDPOINT_CONFIGFS=y
CONFIG_PCI_EPF_TEST=y
# end of PCI Endpoint
#
# PCI switch controller drivers
#
CONFIG_PCI_SW_SWITCHTEC=m
# end of PCI switch controller drivers
# CONFIG_PCCARD is not set
# CONFIG_RAPIDIO is not set
#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER=y
CONFIG_UEVENT_HELPER_PATH=""
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
#
# Firmware loader
#
CONFIG_FW_LOADER=y
CONFIG_FW_LOADER_PAGED_BUF=y
CONFIG_EXTRA_FIRMWARE=""
CONFIG_FW_LOADER_USER_HELPER=y
CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y
# CONFIG_FW_LOADER_COMPRESS is not set
CONFIG_FW_CACHE=y
# end of Firmware loader
CONFIG_WANT_DEV_COREDUMP=y
CONFIG_ALLOW_DEV_COREDUMP=y
CONFIG_DEV_COREDUMP=y
# CONFIG_DEBUG_DRIVER is not set
# CONFIG_DEBUG_DEVRES is not set
# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
CONFIG_GENERIC_CPU_AUTOPROBE=y
CONFIG_GENERIC_CPU_VULNERABILITIES=y
CONFIG_SOC_BUS=y
CONFIG_REGMAP=y
CONFIG_REGMAP_I2C=y
CONFIG_REGMAP_SPI=y
CONFIG_REGMAP_SPMI=m
CONFIG_REGMAP_MMIO=y
CONFIG_REGMAP_IRQ=y
CONFIG_DMA_SHARED_BUFFER=y
# CONFIG_DMA_FENCE_TRACE is not set
CONFIG_GENERIC_ARCH_TOPOLOGY=y
# end of Generic Driver Options
#
# Bus devices
#
CONFIG_BRCMSTB_GISB_ARB=y
# CONFIG_MOXTET is not set
CONFIG_SIMPLE_PM_BUS=y
CONFIG_TEGRA_ACONNECT=y
# CONFIG_TEGRA_GMI is not set
CONFIG_VEXPRESS_CONFIG=y
# CONFIG_MHI_BUS is not set
# end of Bus devices
# CONFIG_CONNECTOR is not set
# CONFIG_GNSS is not set
CONFIG_MTD=m
# CONFIG_MTD_TESTS is not set
#
# Partition parsers
#
# CONFIG_MTD_AR7_PARTS is not set
CONFIG_MTD_CMDLINE_PARTS=m
CONFIG_MTD_OF_PARTS=m
# CONFIG_MTD_AFS_PARTS is not set
# CONFIG_MTD_REDBOOT_PARTS is not set
# end of Partition parsers
#
# User Modules And Translation Layers
#
CONFIG_MTD_BLKDEVS=m
CONFIG_MTD_BLOCK=m
# CONFIG_MTD_BLOCK_RO is not set
# CONFIG_FTL is not set
# CONFIG_NFTL is not set
# CONFIG_INFTL is not set
# CONFIG_RFD_FTL is not set
# CONFIG_SSFDC is not set
# CONFIG_SM_FTL is not set
# CONFIG_MTD_OOPS is not set
# CONFIG_MTD_SWAP is not set
# CONFIG_MTD_PARTITIONED_MASTER is not set
#
# RAM/ROM/Flash chip drivers
#
# CONFIG_MTD_CFI is not set
# CONFIG_MTD_JEDECPROBE is not set
CONFIG_MTD_MAP_BANK_WIDTH_1=y
CONFIG_MTD_MAP_BANK_WIDTH_2=y
CONFIG_MTD_MAP_BANK_WIDTH_4=y
CONFIG_MTD_CFI_I1=y
CONFIG_MTD_CFI_I2=y
# CONFIG_MTD_RAM is not set
# CONFIG_MTD_ROM is not set
# CONFIG_MTD_ABSENT is not set
# end of RAM/ROM/Flash chip drivers
#
# Mapping drivers for chip access
#
# CONFIG_MTD_COMPLEX_MAPPINGS is not set
# CONFIG_MTD_INTEL_VR_NOR is not set
# CONFIG_MTD_PLATRAM is not set
# end of Mapping drivers for chip access
#
# Self-contained MTD device drivers
#
# CONFIG_MTD_PMC551 is not set
# CONFIG_MTD_DATAFLASH is not set
# CONFIG_MTD_MCHP23K256 is not set
# CONFIG_MTD_SST25L is not set
# CONFIG_MTD_SLRAM is not set
# CONFIG_MTD_PHRAM is not set
# CONFIG_MTD_MTDRAM is not set
# CONFIG_MTD_BLOCK2MTD is not set
#
# Disk-On-Chip Device Drivers
#
# CONFIG_MTD_DOCG3 is not set
# end of Self-contained MTD device drivers
#
# NAND
#
CONFIG_MTD_NAND_CORE=m
# CONFIG_MTD_ONENAND is not set
CONFIG_MTD_NAND_ECC_SW_HAMMING=m
# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set
CONFIG_MTD_RAW_NAND=m
# CONFIG_MTD_NAND_ECC_SW_BCH is not set
#
# Raw/parallel NAND flash controllers
#
# CONFIG_MTD_NAND_DENALI_PCI is not set
# CONFIG_MTD_NAND_DENALI_DT is not set
# CONFIG_MTD_NAND_CAFE is not set
# CONFIG_MTD_NAND_BRCMNAND is not set
# CONFIG_MTD_NAND_MXIC is not set
# CONFIG_MTD_NAND_TEGRA is not set
# CONFIG_MTD_NAND_GPIO is not set
# CONFIG_MTD_NAND_PLATFORM is not set
# CONFIG_MTD_NAND_CADENCE is not set
# CONFIG_MTD_NAND_ARASAN is not set
#
# Misc
#
# CONFIG_MTD_NAND_NANDSIM is not set
# CONFIG_MTD_NAND_RICOH is not set
# CONFIG_MTD_NAND_DISKONCHIP is not set
# CONFIG_MTD_SPI_NAND is not set
#
# ECC engine support
#
CONFIG_MTD_NAND_ECC=y
# end of ECC engine support
# end of NAND
#
# LPDDR & LPDDR2 PCM memory drivers
#
# CONFIG_MTD_LPDDR is not set
# end of LPDDR & LPDDR2 PCM memory drivers
CONFIG_MTD_SPI_NOR=m
CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y
CONFIG_MTD_UBI=m
CONFIG_MTD_UBI_WL_THRESHOLD=4096
CONFIG_MTD_UBI_BEB_LIMIT=20
# CONFIG_MTD_UBI_FASTMAP is not set
# CONFIG_MTD_UBI_GLUEBI is not set
# CONFIG_MTD_UBI_BLOCK is not set
# CONFIG_MTD_HYPERBUS is not set
CONFIG_DTC=y
CONFIG_OF=y
# CONFIG_OF_UNITTEST is not set
CONFIG_OF_FLATTREE=y
CONFIG_OF_EARLY_FLATTREE=y
CONFIG_OF_KOBJ=y
CONFIG_OF_DYNAMIC=y
CONFIG_OF_ADDRESS=y
CONFIG_OF_IRQ=y
CONFIG_OF_NET=y
CONFIG_OF_RESERVED_MEM=y
CONFIG_OF_RESOLVE=y
CONFIG_OF_OVERLAY=y
# CONFIG_PARPORT is not set
CONFIG_PNP=y
# CONFIG_PNP_DEBUG_MESSAGES is not set
#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_NULL_BLK is not set
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
CONFIG_ZRAM=m
# CONFIG_ZRAM_WRITEBACK is not set
# CONFIG_ZRAM_MEMORY_TRACKING is not set
# CONFIG_BLK_DEV_UMEM is not set
CONFIG_BLK_DEV_LOOP=m
CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_DRBD is not set
CONFIG_BLK_DEV_NBD=m
# CONFIG_BLK_DEV_SKD is not set
# CONFIG_BLK_DEV_SX8 is not set
CONFIG_BLK_DEV_RAM=m
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=8192
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_VIRTIO_BLK=y
# CONFIG_BLK_DEV_RBD is not set
# CONFIG_BLK_DEV_RSXX is not set
#
# NVME Support
#
CONFIG_NVME_CORE=y
CONFIG_BLK_DEV_NVME=y
# CONFIG_NVME_MULTIPATH is not set
# CONFIG_NVME_HWMON is not set
CONFIG_NVME_FABRICS=m
CONFIG_NVME_RDMA=m
CONFIG_NVME_FC=m
# CONFIG_NVME_TCP is not set
# CONFIG_NVME_TARGET is not set
# end of NVME Support
#
# Misc devices
#
# CONFIG_AD525X_DPOT is not set
# CONFIG_DUMMY_IRQ is not set
# CONFIG_PHANTOM is not set
CONFIG_TIFM_CORE=m
CONFIG_TIFM_7XX1=m
# CONFIG_ICS932S401 is not set
# CONFIG_ENCLOSURE_SERVICES is not set
# CONFIG_HP_ILO is not set
# CONFIG_APDS9802ALS is not set
# CONFIG_ISL29003 is not set
# CONFIG_ISL29020 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_SENSORS_BH1770 is not set
# CONFIG_SENSORS_APDS990X is not set
# CONFIG_HMC6352 is not set
# CONFIG_DS1682 is not set
# CONFIG_LATTICE_ECP3_CONFIG is not set
CONFIG_SRAM=y
CONFIG_PCI_ENDPOINT_TEST=m
# CONFIG_XILINX_SDFEC is not set
# CONFIG_PVPANIC is not set
# CONFIG_HISI_HIKEY_USB is not set
# CONFIG_C2PORT is not set
#
# EEPROM support
#
CONFIG_EEPROM_AT24=m
CONFIG_EEPROM_AT25=m
# CONFIG_EEPROM_LEGACY is not set
# CONFIG_EEPROM_MAX6875 is not set
CONFIG_EEPROM_93CX6=m
# CONFIG_EEPROM_93XX46 is not set
# CONFIG_EEPROM_IDT_89HPESX is not set
# CONFIG_EEPROM_EE1004 is not set
# end of EEPROM support
CONFIG_CB710_CORE=m
# CONFIG_CB710_DEBUG is not set
CONFIG_CB710_DEBUG_ASSUMPTIONS=y
#
# Texas Instruments shared transport line discipline
#
# CONFIG_TI_ST is not set
# end of Texas Instruments shared transport line discipline
# CONFIG_SENSORS_LIS3_I2C is not set
# CONFIG_ALTERA_STAPL is not set
# CONFIG_GENWQE is not set
# CONFIG_ECHO is not set
# CONFIG_MISC_ALCOR_PCI is not set
# CONFIG_MISC_RTSX_PCI is not set
# CONFIG_MISC_RTSX_USB is not set
# CONFIG_HABANA_AI is not set
# CONFIG_UACCE is not set
# end of Misc devices
#
# SCSI device support
#
CONFIG_SCSI_MOD=y
CONFIG_RAID_ATTRS=m
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
CONFIG_SCSI_PROC_FS=y
#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_BLK_DEV_SR is not set
# CONFIG_CHR_DEV_SG is not set
# CONFIG_CHR_DEV_SCH is not set
# CONFIG_SCSI_CONSTANTS is not set
# CONFIG_SCSI_LOGGING is not set
# CONFIG_SCSI_SCAN_ASYNC is not set
#
# SCSI Transports
#
# CONFIG_SCSI_SPI_ATTRS is not set
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
CONFIG_SCSI_SAS_ATTRS=m
CONFIG_SCSI_SAS_LIBSAS=m
CONFIG_SCSI_SAS_ATA=y
CONFIG_SCSI_SAS_HOST_SMP=y
CONFIG_SCSI_SRP_ATTRS=m
# end of SCSI Transports
CONFIG_SCSI_LOWLEVEL=y
# CONFIG_ISCSI_TCP is not set
# CONFIG_ISCSI_BOOT_SYSFS is not set
# CONFIG_SCSI_CXGB3_ISCSI is not set
# CONFIG_SCSI_CXGB4_ISCSI is not set
# CONFIG_SCSI_BNX2_ISCSI is not set
# CONFIG_BE2ISCSI is not set
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_HPSA is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_3W_SAS is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_AIC94XX is not set
CONFIG_SCSI_HISI_SAS=m
CONFIG_SCSI_HISI_SAS_PCI=m
# CONFIG_SCSI_MVSAS is not set
# CONFIG_SCSI_MVUMI is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_ARCMSR is not set
# CONFIG_SCSI_ESAS2R is not set
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_MEGARAID_SAS is not set
CONFIG_SCSI_MPT3SAS=m
CONFIG_SCSI_MPT2SAS_MAX_SGE=128
CONFIG_SCSI_MPT3SAS_MAX_SGE=128
# CONFIG_SCSI_MPT2SAS is not set
# CONFIG_SCSI_SMARTPQI is not set
CONFIG_SCSI_UFSHCD=y
# CONFIG_SCSI_UFSHCD_PCI is not set
CONFIG_SCSI_UFSHCD_PLATFORM=y
# CONFIG_SCSI_UFS_CDNS_PLATFORM is not set
# CONFIG_SCSI_UFS_DWC_TC_PLATFORM is not set
# CONFIG_SCSI_UFS_BSG is not set
# CONFIG_SCSI_HPTIOP is not set
# CONFIG_SCSI_MYRB is not set
# CONFIG_SCSI_MYRS is not set
# CONFIG_SCSI_SNIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_FDOMAIN_PCI is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_STEX is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLA_ISCSI is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_WD719X is not set
# CONFIG_SCSI_DEBUG is not set
# CONFIG_SCSI_PMCRAID is not set
# CONFIG_SCSI_PM8001 is not set
# CONFIG_SCSI_VIRTIO is not set
# CONFIG_SCSI_DH is not set
# end of SCSI device support
CONFIG_HAVE_PATA_PLATFORM=y
CONFIG_ATA=m
CONFIG_SATA_HOST=y
CONFIG_ATA_VERBOSE_ERROR=y
CONFIG_ATA_FORCE=y
# CONFIG_ATA_ACPI is not set
CONFIG_SATA_PMP=y
#
# Controllers with non-SFF native interface
#
CONFIG_SATA_AHCI=m
CONFIG_SATA_MOBILE_LPM_POLICY=0
CONFIG_SATA_AHCI_PLATFORM=m
# CONFIG_AHCI_CEVA is not set
# CONFIG_AHCI_TEGRA is not set
# CONFIG_AHCI_QORIQ is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_SATA_ACARD_AHCI is not set
# CONFIG_SATA_SIL24 is not set
CONFIG_ATA_SFF=y
#
# SFF controllers with custom DMA interface
#
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_SX4 is not set
CONFIG_ATA_BMDMA=y
#
# SATA SFF controllers with BMDMA
#
# CONFIG_ATA_PIIX is not set
# CONFIG_SATA_DWC is not set
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_SVW is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set
#
# PATA SFF controllers with BMDMA
#
# CONFIG_PATA_ALI is not set
# CONFIG_PATA_AMD is not set
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_ATP867X is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87415 is not set
# CONFIG_PATA_OLDPIIX is not set
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RDC is not set
# CONFIG_PATA_SCH is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_SIL680 is not set
# CONFIG_PATA_SIS is not set
# CONFIG_PATA_TOSHIBA is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_WINBOND is not set
#
# PIO-only SFF controllers
#
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_PLATFORM is not set
# CONFIG_PATA_RZ1000 is not set
#
# Generic fallback / legacy drivers
#
# CONFIG_ATA_GENERIC is not set
# CONFIG_PATA_LEGACY is not set
CONFIG_MD=y
# CONFIG_BLK_DEV_MD is not set
# CONFIG_BCACHE is not set
CONFIG_BLK_DEV_DM_BUILTIN=y
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_DEBUG is not set
CONFIG_DM_BUFIO=y
# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
# CONFIG_DM_UNSTRIPED is not set
CONFIG_DM_CRYPT=y
# CONFIG_DM_SNAPSHOT is not set
# CONFIG_DM_THIN_PROVISIONING is not set
# CONFIG_DM_CACHE is not set
# CONFIG_DM_WRITECACHE is not set
# CONFIG_DM_EBS is not set
# CONFIG_DM_ERA is not set
# CONFIG_DM_CLONE is not set
# CONFIG_DM_MIRROR is not set
# CONFIG_DM_RAID is not set
# CONFIG_DM_ZERO is not set
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
# CONFIG_DM_DUST is not set
# CONFIG_DM_INIT is not set
CONFIG_DM_UEVENT=y
# CONFIG_DM_FLAKEY is not set
CONFIG_DM_VERITY=y
CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG=y
# CONFIG_DM_VERITY_FEC is not set
# CONFIG_DM_SWITCH is not set
# CONFIG_DM_LOG_WRITES is not set
# CONFIG_DM_INTEGRITY is not set
# CONFIG_TARGET_CORE is not set
# CONFIG_FUSION is not set
#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_FIREWIRE_NOSY is not set
# end of IEEE 1394 (FireWire) support
CONFIG_NETDEVICES=y
CONFIG_MII=y
CONFIG_NET_CORE=y
# CONFIG_BONDING is not set
CONFIG_DUMMY=y
# CONFIG_WIREGUARD is not set
# CONFIG_EQUALIZER is not set
# CONFIG_NET_FC is not set
# CONFIG_IFB is not set
# CONFIG_NET_TEAM is not set
CONFIG_MACVLAN=m
CONFIG_MACVTAP=m
CONFIG_IPVLAN_L3S=y
CONFIG_IPVLAN=m
# CONFIG_IPVTAP is not set
CONFIG_VXLAN=y
# CONFIG_GENEVE is not set
# CONFIG_BAREUDP is not set
# CONFIG_GTP is not set
# CONFIG_MACSEC is not set
# CONFIG_NETCONSOLE is not set
# CONFIG_NTB_NETDEV is not set
CONFIG_TUN=y
CONFIG_TAP=m
# CONFIG_TUN_VNET_CROSS_LE is not set
CONFIG_VETH=m
CONFIG_VIRTIO_NET=y
# CONFIG_NLMON is not set
# CONFIG_NET_VRF is not set
# CONFIG_ARCNET is not set
#
# Distributed Switch Architecture drivers
#
# CONFIG_B53 is not set
# CONFIG_NET_DSA_BCM_SF2 is not set
# CONFIG_NET_DSA_LOOP is not set
# CONFIG_NET_DSA_LANTIQ_GSWIP is not set
# CONFIG_NET_DSA_MT7530 is not set
# CONFIG_NET_DSA_MV88E6060 is not set
# CONFIG_NET_DSA_MICROCHIP_KSZ9477 is not set
# CONFIG_NET_DSA_MICROCHIP_KSZ8795 is not set
# CONFIG_NET_DSA_MV88E6XXX is not set
# CONFIG_NET_DSA_MSCC_SEVILLE is not set
# CONFIG_NET_DSA_AR9331 is not set
# CONFIG_NET_DSA_SJA1105 is not set
# CONFIG_NET_DSA_QCA8K is not set
# CONFIG_NET_DSA_REALTEK_SMI is not set
# CONFIG_NET_DSA_SMSC_LAN9303_I2C is not set
# CONFIG_NET_DSA_SMSC_LAN9303_MDIO is not set
# CONFIG_NET_DSA_VITESSE_VSC73XX_SPI is not set
# CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM is not set
# end of Distributed Switch Architecture drivers
CONFIG_ETHERNET=y
CONFIG_MDIO=m
CONFIG_NET_VENDOR_3COM=y
# CONFIG_VORTEX is not set
CONFIG_TYPHOON=m
CONFIG_NET_VENDOR_ADAPTEC=y
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_NET_VENDOR_AGERE=y
CONFIG_ET131X=m
CONFIG_NET_VENDOR_ALACRITECH=y
CONFIG_SLICOSS=m
CONFIG_NET_VENDOR_ALTEON=y
CONFIG_ACENIC=m
# CONFIG_ACENIC_OMIT_TIGON_I is not set
CONFIG_ALTERA_TSE=m
CONFIG_NET_VENDOR_AMAZON=y
# CONFIG_ENA_ETHERNET is not set
CONFIG_NET_VENDOR_AMD=y
# CONFIG_AMD8111_ETH is not set
# CONFIG_PCNET32 is not set
# CONFIG_AMD_XGBE is not set
CONFIG_NET_VENDOR_AQUANTIA=y
CONFIG_AQTION=m
CONFIG_NET_VENDOR_ARC=y
CONFIG_NET_VENDOR_ATHEROS=y
CONFIG_ATL2=m
CONFIG_ATL1=m
CONFIG_ATL1E=m
CONFIG_ATL1C=m
CONFIG_ALX=m
# CONFIG_NET_VENDOR_AURORA is not set
CONFIG_NET_VENDOR_BROADCOM=y
CONFIG_B44=m
CONFIG_B44_PCI_AUTOSELECT=y
CONFIG_B44_PCICORE_AUTOSELECT=y
CONFIG_B44_PCI=y
# CONFIG_BCMGENET is not set
CONFIG_BNX2=m
CONFIG_CNIC=m
CONFIG_TIGON3=y
CONFIG_TIGON3_HWMON=y
CONFIG_BNX2X=m
CONFIG_BNX2X_SRIOV=y
# CONFIG_SYSTEMPORT is not set
CONFIG_BNXT=m
CONFIG_BNXT_SRIOV=y
CONFIG_BNXT_FLOWER_OFFLOAD=y
CONFIG_BNXT_HWMON=y
CONFIG_NET_VENDOR_BROCADE=y
CONFIG_BNA=m
CONFIG_NET_VENDOR_CADENCE=y
CONFIG_MACB=y
CONFIG_MACB_USE_HWSTAMP=y
# CONFIG_MACB_PCI is not set
CONFIG_NET_VENDOR_CAVIUM=y
CONFIG_THUNDER_NIC_PF=m
CONFIG_THUNDER_NIC_VF=m
CONFIG_THUNDER_NIC_BGX=m
CONFIG_THUNDER_NIC_RGX=m
# CONFIG_CAVIUM_PTP is not set
CONFIG_LIQUIDIO=m
CONFIG_LIQUIDIO_VF=m
CONFIG_NET_VENDOR_CHELSIO=y
CONFIG_CHELSIO_T1=m
CONFIG_CHELSIO_T1_1G=y
CONFIG_CHELSIO_T3=m
CONFIG_CHELSIO_T4=m
CONFIG_CHELSIO_T4VF=m
CONFIG_CHELSIO_INLINE_CRYPTO=y
CONFIG_NET_VENDOR_CISCO=y
CONFIG_ENIC=m
CONFIG_NET_VENDOR_CORTINA=y
# CONFIG_GEMINI_ETHERNET is not set
# CONFIG_DNET is not set
CONFIG_NET_VENDOR_DEC=y
# CONFIG_NET_TULIP is not set
CONFIG_NET_VENDOR_DLINK=y
CONFIG_DL2K=m
# CONFIG_SUNDANCE is not set
CONFIG_NET_VENDOR_EMULEX=y
CONFIG_BE2NET=m
CONFIG_BE2NET_HWMON=y
CONFIG_BE2NET_BE2=y
CONFIG_BE2NET_BE3=y
CONFIG_BE2NET_LANCER=y
CONFIG_BE2NET_SKYHAWK=y
CONFIG_NET_VENDOR_EZCHIP=y
# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set
CONFIG_NET_VENDOR_GOOGLE=y
# CONFIG_GVE is not set
CONFIG_NET_VENDOR_HISILICON=y
# CONFIG_HIX5HD2_GMAC is not set
# CONFIG_HISI_FEMAC is not set
# CONFIG_HIP04_ETH is not set
CONFIG_HNS_MDIO=y
CONFIG_HNS=y
CONFIG_HNS_DSAF=y
CONFIG_HNS_ENET=y
CONFIG_HNS3=y
# CONFIG_HNS3_HCLGE is not set
CONFIG_HNS3_ENET=y
CONFIG_NET_VENDOR_HUAWEI=y
CONFIG_HINIC=m
CONFIG_NET_VENDOR_I825XX=y
CONFIG_NET_VENDOR_INTEL=y
CONFIG_E100=m
CONFIG_E1000=m
CONFIG_E1000E=y
CONFIG_IGB=y
CONFIG_IGB_HWMON=y
CONFIG_IGBVF=m
CONFIG_IXGB=m
CONFIG_IXGBE=m
# CONFIG_IXGBE_HWMON is not set
CONFIG_IXGBEVF=m
CONFIG_I40E=m
CONFIG_IAVF=m
CONFIG_I40EVF=m
CONFIG_ICE=m
CONFIG_FM10K=m
CONFIG_IGC=m
CONFIG_JME=m
CONFIG_NET_VENDOR_MARVELL=y
# CONFIG_MVMDIO is not set
CONFIG_SKGE=m
# CONFIG_SKGE_DEBUG is not set
# CONFIG_SKGE_GENESIS is not set
CONFIG_SKY2=m
CONFIG_SKY2_DEBUG=y
# CONFIG_OCTEONTX2_AF is not set
# CONFIG_OCTEONTX2_PF is not set
# CONFIG_PRESTERA is not set
CONFIG_NET_VENDOR_MELLANOX=y
CONFIG_MLX4_EN=m
CONFIG_MLX4_CORE=m
CONFIG_MLX4_DEBUG=y
CONFIG_MLX4_CORE_GEN2=y
CONFIG_MLX5_CORE=m
# CONFIG_MLX5_FPGA is not set
CONFIG_MLX5_CORE_EN=y
CONFIG_MLX5_EN_ARFS=y
CONFIG_MLX5_EN_RXNFC=y
CONFIG_MLX5_MPFS=y
CONFIG_MLX5_ESWITCH=y
CONFIG_MLX5_CLS_ACT=y
CONFIG_MLX5_CORE_IPOIB=y
CONFIG_MLX5_SW_STEERING=y
CONFIG_MLXSW_CORE=y
CONFIG_MLXSW_CORE_HWMON=y
CONFIG_MLXSW_CORE_THERMAL=y
CONFIG_MLXSW_PCI=m
CONFIG_MLXSW_I2C=m
CONFIG_MLXSW_SWITCHIB=m
CONFIG_MLXSW_SWITCHX2=m
CONFIG_MLXSW_SPECTRUM=m
CONFIG_MLXSW_MINIMAL=m
CONFIG_MLXFW=y
CONFIG_NET_VENDOR_MICREL=y
# CONFIG_KS8842 is not set
# CONFIG_KS8851 is not set
# CONFIG_KS8851_MLL is not set
# CONFIG_KSZ884X_PCI is not set
CONFIG_NET_VENDOR_MICROCHIP=y
# CONFIG_ENC28J60 is not set
# CONFIG_ENCX24J600 is not set
CONFIG_LAN743X=m
CONFIG_NET_VENDOR_MICROSEMI=y
# CONFIG_MSCC_OCELOT_SWITCH is not set
CONFIG_NET_VENDOR_MYRI=y
# CONFIG_MYRI10GE is not set
# CONFIG_FEALNX is not set
CONFIG_NET_VENDOR_NATSEMI=y
CONFIG_NATSEMI=m
CONFIG_NS83820=m
CONFIG_NET_VENDOR_NETERION=y
CONFIG_S2IO=m
CONFIG_VXGE=m
# CONFIG_VXGE_DEBUG_TRACE_ALL is not set
CONFIG_NET_VENDOR_NETRONOME=y
CONFIG_NFP=m
CONFIG_NFP_APP_FLOWER=y
CONFIG_NFP_APP_ABM_NIC=y
CONFIG_NFP_DEBUG=y
CONFIG_NET_VENDOR_NI=y
CONFIG_NI_XGE_MANAGEMENT_ENET=m
CONFIG_NET_VENDOR_8390=y
CONFIG_NE2K_PCI=m
CONFIG_NET_VENDOR_NVIDIA=y
CONFIG_FORCEDETH=y
CONFIG_NET_VENDOR_OKI=y
# CONFIG_ETHOC is not set
CONFIG_NET_VENDOR_PACKET_ENGINES=y
CONFIG_HAMACHI=m
CONFIG_YELLOWFIN=m
CONFIG_NET_VENDOR_PENSANDO=y
CONFIG_IONIC=m
CONFIG_NET_VENDOR_QLOGIC=y
CONFIG_QLA3XXX=m
CONFIG_QLCNIC=m
CONFIG_QLCNIC_SRIOV=y
CONFIG_QLCNIC_HWMON=y
CONFIG_NETXEN_NIC=m
# CONFIG_QED is not set
CONFIG_NET_VENDOR_QUALCOMM=y
CONFIG_QCA7000=m
CONFIG_QCA7000_SPI=m
# CONFIG_QCA7000_UART is not set
CONFIG_QCOM_EMAC=m
# CONFIG_RMNET is not set
CONFIG_NET_VENDOR_RDC=y
# CONFIG_R6040 is not set
CONFIG_NET_VENDOR_REALTEK=y
CONFIG_8139CP=m
CONFIG_8139TOO=m
CONFIG_8139TOO_PIO=y
# CONFIG_8139TOO_TUNE_TWISTER is not set
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_OLD_RX_RESET is not set
CONFIG_R8169=m
CONFIG_NET_VENDOR_RENESAS=y
CONFIG_NET_VENDOR_ROCKER=y
# CONFIG_ROCKER is not set
CONFIG_NET_VENDOR_SAMSUNG=y
CONFIG_SXGBE_ETH=m
CONFIG_NET_VENDOR_SEEQ=y
CONFIG_NET_VENDOR_SOLARFLARE=y
CONFIG_SFC=m
CONFIG_SFC_MTD=y
CONFIG_SFC_MCDI_MON=y
CONFIG_SFC_SRIOV=y
CONFIG_SFC_MCDI_LOGGING=y
# CONFIG_SFC_FALCON is not set
CONFIG_NET_VENDOR_SILAN=y
# CONFIG_SC92031 is not set
CONFIG_NET_VENDOR_SIS=y
# CONFIG_SIS900 is not set
# CONFIG_SIS190 is not set
CONFIG_NET_VENDOR_SMSC=y
CONFIG_SMC91X=y
# CONFIG_EPIC100 is not set
CONFIG_SMSC911X=y
# CONFIG_SMSC9420 is not set
# CONFIG_NET_VENDOR_SOCIONEXT is not set
CONFIG_NET_VENDOR_STMICRO=y
CONFIG_STMMAC_ETH=m
# CONFIG_STMMAC_SELFTESTS is not set
CONFIG_STMMAC_PLATFORM=m
# CONFIG_DWMAC_DWC_QOS_ETH is not set
CONFIG_DWMAC_GENERIC=m
# CONFIG_DWMAC_INTEL_PLAT is not set
# CONFIG_STMMAC_PCI is not set
CONFIG_NET_VENDOR_SUN=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NIU is not set
CONFIG_NET_VENDOR_SYNOPSYS=y
# CONFIG_DWC_XLGMAC is not set
CONFIG_NET_VENDOR_TEHUTI=y
# CONFIG_TEHUTI is not set
CONFIG_NET_VENDOR_TI=y
# CONFIG_TI_CPSW_PHY_SEL is not set
# CONFIG_TLAN is not set
CONFIG_NET_VENDOR_VIA=y
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_NET_VENDOR_WIZNET=y
# CONFIG_WIZNET_W5100 is not set
# CONFIG_WIZNET_W5300 is not set
# CONFIG_NET_VENDOR_XILINX is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
CONFIG_PHYLINK=y
CONFIG_PHYLIB=y
CONFIG_SWPHY=y
# CONFIG_LED_TRIGGER_PHY is not set
CONFIG_FIXED_PHY=y
# CONFIG_SFP is not set
#
# MII PHY device drivers
#
# CONFIG_AMD_PHY is not set
# CONFIG_ADIN_PHY is not set
CONFIG_AQUANTIA_PHY=y
# CONFIG_AX88796B_PHY is not set
CONFIG_BROADCOM_PHY=y
# CONFIG_BCM54140_PHY is not set
# CONFIG_BCM7XXX_PHY is not set
# CONFIG_BCM84881_PHY is not set
# CONFIG_BCM87XX_PHY is not set
CONFIG_BCM_NET_PHYLIB=y
# CONFIG_CICADA_PHY is not set
# CONFIG_CORTINA_PHY is not set
# CONFIG_DAVICOM_PHY is not set
# CONFIG_ICPLUS_PHY is not set
# CONFIG_LXT_PHY is not set
# CONFIG_INTEL_XWAY_PHY is not set
# CONFIG_LSI_ET1011C_PHY is not set
CONFIG_MARVELL_PHY=y
CONFIG_MARVELL_10G_PHY=m
CONFIG_MICREL_PHY=m
CONFIG_MICROCHIP_PHY=m
# CONFIG_MICROCHIP_T1_PHY is not set
# CONFIG_MICROSEMI_PHY is not set
# CONFIG_NATIONAL_PHY is not set
# CONFIG_NXP_TJA11XX_PHY is not set
# CONFIG_AT803X_PHY is not set
# CONFIG_QSEMI_PHY is not set
CONFIG_REALTEK_PHY=m
# CONFIG_RENESAS_PHY is not set
# CONFIG_ROCKCHIP_PHY is not set
CONFIG_SMSC_PHY=m
# CONFIG_STE10XP is not set
# CONFIG_TERANETICS_PHY is not set
# CONFIG_DP83822_PHY is not set
# CONFIG_DP83TC811_PHY is not set
# CONFIG_DP83848_PHY is not set
# CONFIG_DP83867_PHY is not set
# CONFIG_DP83869_PHY is not set
# CONFIG_VITESSE_PHY is not set
# CONFIG_XILINX_GMII2RGMII is not set
# CONFIG_MICREL_KS8995MA is not set
CONFIG_MDIO_DEVICE=y
CONFIG_MDIO_BUS=y
CONFIG_OF_MDIO=y
CONFIG_MDIO_DEVRES=y
CONFIG_MDIO_BITBANG=y
# CONFIG_MDIO_BCM_UNIMAC is not set
CONFIG_MDIO_CAVIUM=m
# CONFIG_MDIO_GPIO is not set
# CONFIG_MDIO_HISI_FEMAC is not set
# CONFIG_MDIO_MVUSB is not set
# CONFIG_MDIO_MSCC_MIIM is not set
# CONFIG_MDIO_OCTEON is not set
# CONFIG_MDIO_IPQ4019 is not set
# CONFIG_MDIO_IPQ8064 is not set
CONFIG_MDIO_THUNDER=m
#
# MDIO Multiplexers
#
# CONFIG_MDIO_BUS_MUX_GPIO is not set
# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set
# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
#
# PCS device drivers
#
CONFIG_PCS_XPCS=m
# end of PCS device drivers
CONFIG_PPP=y
CONFIG_PPP_BSDCOMP=y
CONFIG_PPP_DEFLATE=y
CONFIG_PPP_FILTER=y
CONFIG_PPP_MPPE=y
# CONFIG_PPP_MULTILINK is not set
# CONFIG_PPPOE is not set
# CONFIG_PPTP is not set
CONFIG_PPP_ASYNC=y
CONFIG_PPP_SYNC_TTY=y
# CONFIG_SLIP is not set
CONFIG_SLHC=y
CONFIG_USB_NET_DRIVERS=y
CONFIG_USB_CATC=m
CONFIG_USB_KAWETH=m
CONFIG_USB_PEGASUS=m
CONFIG_USB_RTL8150=m
CONFIG_USB_RTL8152=y
CONFIG_USB_LAN78XX=m
CONFIG_USB_USBNET=y
CONFIG_USB_NET_AX8817X=y
CONFIG_USB_NET_AX88179_178A=y
CONFIG_USB_NET_CDCETHER=y
CONFIG_USB_NET_CDC_EEM=m
CONFIG_USB_NET_CDC_NCM=y
# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set
CONFIG_USB_NET_CDC_MBIM=m
CONFIG_USB_NET_DM9601=m
CONFIG_USB_NET_SR9700=m
CONFIG_USB_NET_SR9800=m
CONFIG_USB_NET_SMSC75XX=m
CONFIG_USB_NET_SMSC95XX=m
CONFIG_USB_NET_GL620A=m
CONFIG_USB_NET_NET1080=y
CONFIG_USB_NET_PLUSB=m
CONFIG_USB_NET_MCS7830=m
CONFIG_USB_NET_RNDIS_HOST=m
CONFIG_USB_NET_CDC_SUBSET_ENABLE=y
CONFIG_USB_NET_CDC_SUBSET=y
CONFIG_USB_ALI_M5632=y
CONFIG_USB_AN2720=y
CONFIG_USB_BELKIN=y
CONFIG_USB_ARMLINUX=y
# CONFIG_USB_EPSON2888 is not set
CONFIG_USB_KC2190=y
CONFIG_USB_NET_ZAURUS=y
CONFIG_USB_NET_CX82310_ETH=m
# CONFIG_USB_NET_KALMIA is not set
# CONFIG_USB_NET_QMI_WWAN is not set
# CONFIG_USB_HSO is not set
# CONFIG_USB_NET_INT51X1 is not set
# CONFIG_USB_IPHETH is not set
# CONFIG_USB_SIERRA_NET is not set
# CONFIG_USB_VL600 is not set
# CONFIG_USB_NET_CH9200 is not set
CONFIG_USB_NET_AQC111=y
CONFIG_WLAN=y
# CONFIG_WIRELESS_WDS is not set
CONFIG_WLAN_VENDOR_ADMTEK=y
# CONFIG_ADM8211 is not set
CONFIG_ATH_COMMON=m
CONFIG_WLAN_VENDOR_ATH=y
# CONFIG_ATH_DEBUG is not set
# CONFIG_ATH_REG_DYNAMIC_USER_REG_HINTS is not set
# CONFIG_ATH5K is not set
# CONFIG_ATH5K_PCI is not set
CONFIG_ATH9K_HW=m
CONFIG_ATH9K_COMMON=m
CONFIG_ATH9K_COMMON_DEBUG=y
CONFIG_ATH9K_BTCOEX_SUPPORT=y
CONFIG_ATH9K=m
CONFIG_ATH9K_PCI=y
# CONFIG_ATH9K_AHB is not set
CONFIG_ATH9K_DEBUGFS=y
CONFIG_ATH9K_STATION_STATISTICS=y
# CONFIG_ATH9K_TX99 is not set
# CONFIG_ATH9K_DFS_CERTIFIED is not set
# CONFIG_ATH9K_DYNACK is not set
CONFIG_ATH9K_WOW=y
CONFIG_ATH9K_RFKILL=y
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
CONFIG_ATH9K_PCOEM=y
# CONFIG_ATH9K_PCI_NO_EEPROM is not set
CONFIG_ATH9K_HTC=m
CONFIG_ATH9K_HTC_DEBUGFS=y
# CONFIG_ATH9K_HWRNG is not set
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
CONFIG_CARL9170=m
CONFIG_CARL9170_LEDS=y
CONFIG_CARL9170_DEBUGFS=y
CONFIG_CARL9170_WPC=y
# CONFIG_CARL9170_HWRNG is not set
CONFIG_ATH6KL=m
CONFIG_ATH6KL_SDIO=m
CONFIG_ATH6KL_USB=m
# CONFIG_ATH6KL_DEBUG is not set
# CONFIG_ATH6KL_TRACING is not set
# CONFIG_ATH6KL_REGDOMAIN is not set
CONFIG_AR5523=m
CONFIG_WIL6210=m
CONFIG_WIL6210_ISR_COR=y
# CONFIG_WIL6210_TRACING is not set
CONFIG_WIL6210_DEBUGFS=y
CONFIG_ATH10K=m
CONFIG_ATH10K_CE=y
CONFIG_ATH10K_PCI=m
CONFIG_ATH10K_AHB=y
CONFIG_ATH10K_SDIO=m
CONFIG_ATH10K_USB=m
# CONFIG_ATH10K_DEBUG is not set
CONFIG_ATH10K_DEBUGFS=y
# CONFIG_ATH10K_SPECTRAL is not set
# CONFIG_ATH10K_TRACING is not set
# CONFIG_ATH10K_DFS_CERTIFIED is not set
CONFIG_WCN36XX=m
CONFIG_WCN36XX_DEBUGFS=y
# CONFIG_ATH11K is not set
CONFIG_WLAN_VENDOR_ATMEL=y
CONFIG_ATMEL=m
# CONFIG_PCI_ATMEL is not set
CONFIG_AT76C50X_USB=m
CONFIG_WLAN_VENDOR_BROADCOM=y
CONFIG_B43=m
CONFIG_B43_BCMA=y
CONFIG_B43_SSB=y
CONFIG_B43_BUSES_BCMA_AND_SSB=y
# CONFIG_B43_BUSES_BCMA is not set
# CONFIG_B43_BUSES_SSB is not set
CONFIG_B43_PCI_AUTOSELECT=y
CONFIG_B43_PCICORE_AUTOSELECT=y
CONFIG_B43_SDIO=y
CONFIG_B43_BCMA_PIO=y
CONFIG_B43_PIO=y
CONFIG_B43_PHY_G=y
CONFIG_B43_PHY_N=y
CONFIG_B43_PHY_LP=y
CONFIG_B43_PHY_HT=y
CONFIG_B43_LEDS=y
CONFIG_B43_HWRNG=y
# CONFIG_B43_DEBUG is not set
CONFIG_B43LEGACY=m
CONFIG_B43LEGACY_PCI_AUTOSELECT=y
CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y
CONFIG_B43LEGACY_LEDS=y
CONFIG_B43LEGACY_HWRNG=y
CONFIG_B43LEGACY_DEBUG=y
CONFIG_B43LEGACY_DMA=y
CONFIG_B43LEGACY_PIO=y
CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y
# CONFIG_B43LEGACY_DMA_MODE is not set
# CONFIG_B43LEGACY_PIO_MODE is not set
CONFIG_BRCMUTIL=m
# CONFIG_BRCMSMAC is not set
CONFIG_BRCMFMAC=m
CONFIG_BRCMFMAC_PROTO_MSGBUF=y
# CONFIG_BRCMFMAC_SDIO is not set
# CONFIG_BRCMFMAC_USB is not set
CONFIG_BRCMFMAC_PCIE=y
# CONFIG_BRCM_TRACING is not set
# CONFIG_BRCMDBG is not set
CONFIG_WLAN_VENDOR_CISCO=y
CONFIG_WLAN_VENDOR_INTEL=y
CONFIG_IPW2100=m
# CONFIG_IPW2100_MONITOR is not set
# CONFIG_IPW2100_DEBUG is not set
CONFIG_IPW2200=m
# CONFIG_IPW2200_MONITOR is not set
# CONFIG_IPW2200_QOS is not set
# CONFIG_IPW2200_DEBUG is not set
CONFIG_LIBIPW=m
# CONFIG_LIBIPW_DEBUG is not set
CONFIG_IWLEGACY=m
# CONFIG_IWL4965 is not set
CONFIG_IWL3945=m
#
# iwl3945 / iwl4965 Debugging Options
#
# CONFIG_IWLEGACY_DEBUG is not set
# CONFIG_IWLEGACY_DEBUGFS is not set
# end of iwl3945 / iwl4965 Debugging Options
CONFIG_IWLWIFI=m
CONFIG_IWLWIFI_LEDS=y
CONFIG_IWLDVM=m
CONFIG_IWLMVM=m
CONFIG_IWLWIFI_OPMODE_MODULAR=y
CONFIG_IWLWIFI_BCAST_FILTERING=y
#
# Debugging Options
#
CONFIG_IWLWIFI_DEBUG=y
CONFIG_IWLWIFI_DEBUGFS=y
CONFIG_IWLWIFI_DEVICE_TRACING=y
# end of Debugging Options
CONFIG_WLAN_VENDOR_INTERSIL=y
# CONFIG_HOSTAP is not set
CONFIG_HERMES=m
CONFIG_HERMES_PRISM=y
CONFIG_HERMES_CACHE_FW_ON_INIT=y
CONFIG_PLX_HERMES=m
CONFIG_TMD_HERMES=m
CONFIG_NORTEL_HERMES=m
# CONFIG_PCI_HERMES is not set
CONFIG_ORINOCO_USB=m
CONFIG_P54_COMMON=m
CONFIG_P54_USB=m
CONFIG_P54_PCI=m
CONFIG_P54_SPI=m
# CONFIG_P54_SPI_DEFAULT_EEPROM is not set
CONFIG_P54_LEDS=y
# CONFIG_PRISM54 is not set
CONFIG_WLAN_VENDOR_MARVELL=y
CONFIG_LIBERTAS=m
# CONFIG_LIBERTAS_USB is not set
# CONFIG_LIBERTAS_SDIO is not set
# CONFIG_LIBERTAS_SPI is not set
# CONFIG_LIBERTAS_DEBUG is not set
# CONFIG_LIBERTAS_MESH is not set
CONFIG_LIBERTAS_THINFIRM=m
# CONFIG_LIBERTAS_THINFIRM_DEBUG is not set
# CONFIG_LIBERTAS_THINFIRM_USB is not set
CONFIG_MWIFIEX=m
CONFIG_MWIFIEX_SDIO=m
CONFIG_MWIFIEX_PCIE=m
CONFIG_MWIFIEX_USB=m
CONFIG_MWL8K=m
CONFIG_WLAN_VENDOR_MEDIATEK=y
CONFIG_MT7601U=m
CONFIG_MT76_CORE=m
CONFIG_MT76_LEDS=y
CONFIG_MT76_USB=m
CONFIG_MT76x02_LIB=m
CONFIG_MT76x02_USB=m
CONFIG_MT76x0_COMMON=m
CONFIG_MT76x0U=m
CONFIG_MT76x0E=m
CONFIG_MT76x2_COMMON=m
CONFIG_MT76x2E=m
CONFIG_MT76x2U=m
CONFIG_MT7603E=m
CONFIG_MT7615_COMMON=m
CONFIG_MT7615E=m
CONFIG_MT7663_USB_SDIO_COMMON=m
CONFIG_MT7663U=m
# CONFIG_MT7663S is not set
CONFIG_MT7915E=m
# CONFIG_WLAN_VENDOR_MICROCHIP is not set
CONFIG_WLAN_VENDOR_RALINK=y
CONFIG_RT2X00=m
# CONFIG_RT2400PCI is not set
# CONFIG_RT2500PCI is not set
# CONFIG_RT61PCI is not set
CONFIG_RT2800PCI=m
CONFIG_RT2800PCI_RT33XX=y
CONFIG_RT2800PCI_RT35XX=y
CONFIG_RT2800PCI_RT53XX=y
CONFIG_RT2800PCI_RT3290=y
CONFIG_RT2500USB=m
CONFIG_RT73USB=m
CONFIG_RT2800USB=m
CONFIG_RT2800USB_RT33XX=y
CONFIG_RT2800USB_RT35XX=y
CONFIG_RT2800USB_RT3573=y
CONFIG_RT2800USB_RT53XX=y
CONFIG_RT2800USB_RT55XX=y
CONFIG_RT2800USB_UNKNOWN=y
CONFIG_RT2800_LIB=m
CONFIG_RT2800_LIB_MMIO=m
CONFIG_RT2X00_LIB_MMIO=m
CONFIG_RT2X00_LIB_PCI=m
CONFIG_RT2X00_LIB_USB=m
CONFIG_RT2X00_LIB=m
CONFIG_RT2X00_LIB_FIRMWARE=y
CONFIG_RT2X00_LIB_CRYPTO=y
CONFIG_RT2X00_LIB_LEDS=y
CONFIG_RT2X00_LIB_DEBUGFS=y
# CONFIG_RT2X00_DEBUG is not set
CONFIG_WLAN_VENDOR_REALTEK=y
# CONFIG_RTL8180 is not set
CONFIG_RTL8187=m
CONFIG_RTL8187_LEDS=y
CONFIG_RTL_CARDS=m
CONFIG_RTL8192CE=m
CONFIG_RTL8192SE=m
CONFIG_RTL8192DE=m
CONFIG_RTL8723AE=m
CONFIG_RTL8723BE=m
CONFIG_RTL8188EE=m
CONFIG_RTL8192EE=m
CONFIG_RTL8821AE=m
CONFIG_RTL8192CU=m
CONFIG_RTLWIFI=m
CONFIG_RTLWIFI_PCI=m
CONFIG_RTLWIFI_USB=m
CONFIG_RTLWIFI_DEBUG=y
CONFIG_RTL8192C_COMMON=m
CONFIG_RTL8723_COMMON=m
CONFIG_RTLBTCOEXIST=m
CONFIG_RTL8XXXU=m
CONFIG_RTL8XXXU_UNTESTED=y
# CONFIG_RTW88 is not set
CONFIG_WLAN_VENDOR_RSI=y
CONFIG_RSI_91X=m
CONFIG_RSI_DEBUGFS=y
CONFIG_RSI_SDIO=m
CONFIG_RSI_USB=m
# CONFIG_RSI_COEX is not set
CONFIG_WLAN_VENDOR_ST=y
CONFIG_CW1200=m
CONFIG_CW1200_WLAN_SDIO=m
# CONFIG_CW1200_WLAN_SPI is not set
CONFIG_WLAN_VENDOR_TI=y
CONFIG_WL1251=m
# CONFIG_WL1251_SPI is not set
CONFIG_WL1251_SDIO=m
CONFIG_WL12XX=m
CONFIG_WL18XX=m
CONFIG_WLCORE=m
# CONFIG_WLCORE_SPI is not set
CONFIG_WLCORE_SDIO=m
CONFIG_WILINK_PLATFORM_DATA=y
CONFIG_WLAN_VENDOR_ZYDAS=y
CONFIG_USB_ZD1201=m
CONFIG_ZD1211RW=m
# CONFIG_ZD1211RW_DEBUG is not set
CONFIG_WLAN_VENDOR_QUANTENNA=y
# CONFIG_QTNFMAC_PCIE is not set
# CONFIG_MAC80211_HWSIM is not set
# CONFIG_USB_NET_RNDIS_WLAN is not set
# CONFIG_VIRT_WIFI is not set
#
# Enable WiMAX (Networking options) to see the WiMAX drivers
#
# CONFIG_WAN is not set
# CONFIG_VMXNET3 is not set
# CONFIG_FUJITSU_ES is not set
# CONFIG_NETDEVSIM is not set
CONFIG_NET_FAILOVER=y
# CONFIG_IVSHMEM_NET is not set
# CONFIG_ISDN is not set
# CONFIG_NVM is not set
#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_LEDS=m
CONFIG_INPUT_FF_MEMLESS=y
CONFIG_INPUT_POLLDEV=m
# CONFIG_INPUT_SPARSEKMAP is not set
CONFIG_INPUT_MATRIXKMAP=m
#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=y
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set
#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADC is not set
CONFIG_KEYBOARD_ADP5588=m
CONFIG_KEYBOARD_ADP5589=m
CONFIG_KEYBOARD_ATKBD=m
# CONFIG_KEYBOARD_QT1050 is not set
CONFIG_KEYBOARD_QT1070=m
CONFIG_KEYBOARD_QT2160=m
# CONFIG_KEYBOARD_DLINK_DIR685 is not set
CONFIG_KEYBOARD_LKKBD=m
CONFIG_KEYBOARD_GPIO=y
CONFIG_KEYBOARD_GPIO_POLLED=m
CONFIG_KEYBOARD_TCA6416=m
CONFIG_KEYBOARD_TCA8418=m
CONFIG_KEYBOARD_MATRIX=m
CONFIG_KEYBOARD_LM8323=m
CONFIG_KEYBOARD_LM8333=m
CONFIG_KEYBOARD_MAX7359=m
CONFIG_KEYBOARD_MCS=m
CONFIG_KEYBOARD_MPR121=m
CONFIG_KEYBOARD_NEWTON=m
CONFIG_KEYBOARD_TEGRA=m
CONFIG_KEYBOARD_OPENCORES=m
CONFIG_KEYBOARD_SAMSUNG=m
CONFIG_KEYBOARD_STOWAWAY=m
# CONFIG_KEYBOARD_SUNKBD is not set
CONFIG_KEYBOARD_OMAP4=m
# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
CONFIG_KEYBOARD_XTKBD=m
CONFIG_KEYBOARD_CAP11XX=m
CONFIG_KEYBOARD_BCM=m
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=m
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_BYD=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y
CONFIG_MOUSE_PS2_CYPRESS=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
# CONFIG_MOUSE_PS2_ELANTECH is not set
# CONFIG_MOUSE_PS2_SENTELIC is not set
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
CONFIG_MOUSE_PS2_FOCALTECH=y
CONFIG_MOUSE_PS2_SMBUS=y
CONFIG_MOUSE_SERIAL=m
CONFIG_MOUSE_APPLETOUCH=m
CONFIG_MOUSE_BCM5974=m
CONFIG_MOUSE_CYAPA=m
# CONFIG_MOUSE_ELAN_I2C is not set
CONFIG_MOUSE_VSXXXAA=m
CONFIG_MOUSE_GPIO=m
CONFIG_MOUSE_SYNAPTICS_I2C=m
CONFIG_MOUSE_SYNAPTICS_USB=m
CONFIG_INPUT_JOYSTICK=y
# CONFIG_JOYSTICK_ANALOG is not set
# CONFIG_JOYSTICK_A3D is not set
# CONFIG_JOYSTICK_ADC is not set
# CONFIG_JOYSTICK_ADI is not set
# CONFIG_JOYSTICK_COBRA is not set
# CONFIG_JOYSTICK_GF2K is not set
# CONFIG_JOYSTICK_GRIP is not set
# CONFIG_JOYSTICK_GRIP_MP is not set
# CONFIG_JOYSTICK_GUILLEMOT is not set
# CONFIG_JOYSTICK_INTERACT is not set
# CONFIG_JOYSTICK_SIDEWINDER is not set
# CONFIG_JOYSTICK_TMDC is not set
# CONFIG_JOYSTICK_IFORCE is not set
# CONFIG_JOYSTICK_WARRIOR is not set
# CONFIG_JOYSTICK_MAGELLAN is not set
# CONFIG_JOYSTICK_SPACEORB is not set
# CONFIG_JOYSTICK_SPACEBALL is not set
# CONFIG_JOYSTICK_STINGER is not set
# CONFIG_JOYSTICK_TWIDJOY is not set
# CONFIG_JOYSTICK_ZHENHUA is not set
# CONFIG_JOYSTICK_AS5011 is not set
# CONFIG_JOYSTICK_JOYDUMP is not set
CONFIG_JOYSTICK_XPAD=y
# CONFIG_JOYSTICK_XPAD_FF is not set
# CONFIG_JOYSTICK_XPAD_LEDS is not set
# CONFIG_JOYSTICK_PSXPAD_SPI is not set
# CONFIG_JOYSTICK_PXRC is not set
# CONFIG_JOYSTICK_FSIA6B is not set
CONFIG_INPUT_TABLET=y
# CONFIG_TABLET_USB_ACECAD is not set
# CONFIG_TABLET_USB_AIPTEK is not set
# CONFIG_TABLET_USB_GTCO is not set
# CONFIG_TABLET_USB_HANWANG is not set
# CONFIG_TABLET_USB_KBTAB is not set
# CONFIG_TABLET_USB_PEGASUS is not set
# CONFIG_TABLET_SERIAL_WACOM4 is not set
CONFIG_INPUT_TOUCHSCREEN=y
CONFIG_TOUCHSCREEN_PROPERTIES=y
# CONFIG_TOUCHSCREEN_ADS7846 is not set
# CONFIG_TOUCHSCREEN_AD7877 is not set
# CONFIG_TOUCHSCREEN_AD7879 is not set
# CONFIG_TOUCHSCREEN_ADC is not set
# CONFIG_TOUCHSCREEN_AR1021_I2C is not set
CONFIG_TOUCHSCREEN_ATMEL_MXT=m
# CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 is not set
# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
# CONFIG_TOUCHSCREEN_BU21013 is not set
# CONFIG_TOUCHSCREEN_BU21029 is not set
# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set
# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set
# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set
# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
# CONFIG_TOUCHSCREEN_DYNAPRO is not set
# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
# CONFIG_TOUCHSCREEN_EETI is not set
# CONFIG_TOUCHSCREEN_EGALAX is not set
# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
# CONFIG_TOUCHSCREEN_EXC3000 is not set
# CONFIG_TOUCHSCREEN_FUJITSU is not set
# CONFIG_TOUCHSCREEN_GOODIX is not set
# CONFIG_TOUCHSCREEN_HIDEEP is not set
# CONFIG_TOUCHSCREEN_ILI210X is not set
# CONFIG_TOUCHSCREEN_S6SY761 is not set
# CONFIG_TOUCHSCREEN_GUNZE is not set
# CONFIG_TOUCHSCREEN_EKTF2127 is not set
# CONFIG_TOUCHSCREEN_ELAN is not set
# CONFIG_TOUCHSCREEN_ELO is not set
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
# CONFIG_TOUCHSCREEN_WACOM_I2C is not set
# CONFIG_TOUCHSCREEN_MAX11801 is not set
# CONFIG_TOUCHSCREEN_MCS5000 is not set
# CONFIG_TOUCHSCREEN_MMS114 is not set
# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
# CONFIG_TOUCHSCREEN_MTOUCH is not set
# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set
# CONFIG_TOUCHSCREEN_INEXIO is not set
# CONFIG_TOUCHSCREEN_MK712 is not set
# CONFIG_TOUCHSCREEN_PENMOUNT is not set
# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
# CONFIG_TOUCHSCREEN_PIXCIR is not set
# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
# CONFIG_TOUCHSCREEN_TSC2004 is not set
# CONFIG_TOUCHSCREEN_TSC2005 is not set
# CONFIG_TOUCHSCREEN_TSC2007 is not set
# CONFIG_TOUCHSCREEN_RM_TS is not set
# CONFIG_TOUCHSCREEN_SILEAD is not set
# CONFIG_TOUCHSCREEN_SIS_I2C is not set
# CONFIG_TOUCHSCREEN_ST1232 is not set
# CONFIG_TOUCHSCREEN_STMFTS is not set
# CONFIG_TOUCHSCREEN_SUR40 is not set
# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
# CONFIG_TOUCHSCREEN_SX8654 is not set
# CONFIG_TOUCHSCREEN_TPS6507X is not set
# CONFIG_TOUCHSCREEN_ZET6223 is not set
# CONFIG_TOUCHSCREEN_ZFORCE is not set
# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
# CONFIG_TOUCHSCREEN_IQS5XX is not set
# CONFIG_TOUCHSCREEN_ZINITIX is not set
CONFIG_INPUT_MISC=y
# CONFIG_INPUT_AD714X is not set
# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
# CONFIG_INPUT_BMA150 is not set
# CONFIG_INPUT_E3X0_BUTTON is not set
# CONFIG_INPUT_MMA8450 is not set
# CONFIG_INPUT_GPIO_BEEPER is not set
# CONFIG_INPUT_GPIO_DECODER is not set
# CONFIG_INPUT_GPIO_VIBRA is not set
# CONFIG_INPUT_ATI_REMOTE2 is not set
# CONFIG_INPUT_KEYSPAN_REMOTE is not set
# CONFIG_INPUT_KXTJ9 is not set
# CONFIG_INPUT_POWERMATE is not set
# CONFIG_INPUT_YEALINK is not set
# CONFIG_INPUT_CM109 is not set
# CONFIG_INPUT_REGULATOR_HAPTIC is not set
CONFIG_INPUT_UINPUT=y
# CONFIG_INPUT_PCF8574 is not set
# CONFIG_INPUT_PWM_BEEPER is not set
# CONFIG_INPUT_PWM_VIBRA is not set
# CONFIG_INPUT_RK805_PWRKEY is not set
# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
# CONFIG_INPUT_ADXL34X is not set
# CONFIG_INPUT_IMS_PCU is not set
# CONFIG_INPUT_IQS269A is not set
# CONFIG_INPUT_CMA3000 is not set
# CONFIG_INPUT_SOC_BUTTON_ARRAY is not set
# CONFIG_INPUT_DRV260X_HAPTICS is not set
# CONFIG_INPUT_DRV2665_HAPTICS is not set
# CONFIG_INPUT_DRV2667_HAPTICS is not set
CONFIG_RMI4_CORE=m
# CONFIG_RMI4_I2C is not set
# CONFIG_RMI4_SPI is not set
# CONFIG_RMI4_SMB is not set
CONFIG_RMI4_F03=y
CONFIG_RMI4_F03_SERIO=m
CONFIG_RMI4_2D_SENSOR=y
CONFIG_RMI4_F11=y
CONFIG_RMI4_F12=y
CONFIG_RMI4_F30=y
# CONFIG_RMI4_F34 is not set
# CONFIG_RMI4_F3A is not set
# CONFIG_RMI4_F54 is not set
# CONFIG_RMI4_F55 is not set
#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_SERPORT=m
CONFIG_SERIO_AMBAKMI=m
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=m
# CONFIG_SERIO_RAW is not set
# CONFIG_SERIO_ALTERA_PS2 is not set
# CONFIG_SERIO_PS2MULT is not set
# CONFIG_SERIO_ARC_PS2 is not set
# CONFIG_SERIO_APBPS2 is not set
# CONFIG_SERIO_GPIO_PS2 is not set
# CONFIG_USERIO is not set
# CONFIG_GAMEPORT is not set
# end of Hardware I/O ports
# end of Input device support
#
# Character devices
#
CONFIG_TTY=y
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_VT_CONSOLE_SLEEP=y
CONFIG_HW_CONSOLE=y
CONFIG_VT_HW_CONSOLE_BINDING=y
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=16
CONFIG_LDISC_AUTOLOAD=y
#
# Serial drivers
#
CONFIG_SERIAL_EARLYCON=y
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
CONFIG_SERIAL_8250_PNP=y
CONFIG_SERIAL_8250_16550A_VARIANTS=y
# CONFIG_SERIAL_8250_FINTEK is not set
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_DMA=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_EXAR=y
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
# CONFIG_SERIAL_8250_MANY_PORTS is not set
# CONFIG_SERIAL_8250_ASPEED_VUART is not set
CONFIG_SERIAL_8250_SHARE_IRQ=y
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
# CONFIG_SERIAL_8250_RSA is not set
CONFIG_SERIAL_8250_DWLIB=y
CONFIG_SERIAL_8250_FSL=y
CONFIG_SERIAL_8250_DW=m
# CONFIG_SERIAL_8250_RT288X is not set
CONFIG_SERIAL_8250_TEGRA=y
CONFIG_SERIAL_OF_PLATFORM=y
#
# Non-8250 serial port support
#
# CONFIG_SERIAL_AMBA_PL010 is not set
CONFIG_SERIAL_AMBA_PL011=y
CONFIG_SERIAL_AMBA_PL011_CONSOLE=y
# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set
CONFIG_SERIAL_TEGRA=y
CONFIG_SERIAL_TEGRA_TCU=y
CONFIG_SERIAL_TEGRA_TCU_CONSOLE=y
# CONFIG_SERIAL_MAX3100 is not set
# CONFIG_SERIAL_MAX310X is not set
# CONFIG_SERIAL_UARTLITE is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
# CONFIG_SERIAL_SIFIVE is not set
# CONFIG_SERIAL_SCCNXP is not set
# CONFIG_SERIAL_SC16IS7XX is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
# CONFIG_SERIAL_IFX6X60 is not set
CONFIG_SERIAL_XILINX_PS_UART=y
# CONFIG_SERIAL_XILINX_PS_UART_CONSOLE is not set
# CONFIG_SERIAL_ARC is not set
# CONFIG_SERIAL_RP2 is not set
CONFIG_SERIAL_FSL_LPUART=y
# CONFIG_SERIAL_FSL_LPUART_CONSOLE is not set
# CONFIG_SERIAL_FSL_LINFLEXUART is not set
# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
# CONFIG_SERIAL_SPRD is not set
# end of Serial drivers
CONFIG_SERIAL_MCTRL_GPIO=y
# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_N_GSM is not set
# CONFIG_NOZOMI is not set
# CONFIG_NULL_TTY is not set
# CONFIG_TRACE_SINK is not set
CONFIG_HVC_DRIVER=y
# CONFIG_HVC_DCC is not set
CONFIG_SERIAL_DEV_BUS=y
CONFIG_SERIAL_DEV_CTRL_TTYPORT=y
# CONFIG_TTY_PRINTK is not set
CONFIG_VIRTIO_CONSOLE=y
# CONFIG_IPMI_HANDLER is not set
# CONFIG_IPMB_DEVICE_INTERFACE is not set
CONFIG_HW_RANDOM=m
# CONFIG_HW_RANDOM_TIMERIOMEM is not set
# CONFIG_HW_RANDOM_BA431 is not set
# CONFIG_HW_RANDOM_VIRTIO is not set
CONFIG_HW_RANDOM_HISI_V2=m
CONFIG_HW_RANDOM_CAVIUM=m
CONFIG_HW_RANDOM_OPTEE=m
# CONFIG_HW_RANDOM_CCTRNG is not set
# CONFIG_HW_RANDOM_XIPHERA is not set
# CONFIG_APPLICOM is not set
CONFIG_DEVMEM=y
# CONFIG_RAW_DRIVER is not set
CONFIG_DEVPORT=y
# CONFIG_TCG_TPM is not set
# CONFIG_XILLYBUS is not set
# end of Character devices
# CONFIG_RANDOM_TRUST_CPU is not set
# CONFIG_RANDOM_TRUST_BOOTLOADER is not set
#
# I2C support
#
CONFIG_I2C=y
CONFIG_ACPI_I2C_OPREGION=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
CONFIG_I2C_CHARDEV=y
CONFIG_I2C_MUX=y
#
# Multiplexer I2C Chip support
#
# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set
CONFIG_I2C_MUX_GPIO=y
# CONFIG_I2C_MUX_GPMUX is not set
# CONFIG_I2C_MUX_LTC4306 is not set
# CONFIG_I2C_MUX_PCA9541 is not set
CONFIG_I2C_MUX_PCA954x=y
# CONFIG_I2C_MUX_PINCTRL is not set
# CONFIG_I2C_MUX_REG is not set
# CONFIG_I2C_DEMUX_PINCTRL is not set
# CONFIG_I2C_MUX_MLXCPLD is not set
# end of Multiplexer I2C Chip support
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_SMBUS=m
CONFIG_I2C_ALGOBIT=y
CONFIG_I2C_ALGOPCA=m
#
# I2C Hardware Bus support
#
#
# PC SMBus host controller drivers
#
CONFIG_I2C_ALI1535=m
CONFIG_I2C_ALI1563=m
CONFIG_I2C_ALI15X3=m
CONFIG_I2C_AMD756=m
CONFIG_I2C_AMD8111=m
# CONFIG_I2C_AMD_MP2 is not set
CONFIG_I2C_I801=m
CONFIG_I2C_ISCH=m
CONFIG_I2C_PIIX4=m
CONFIG_I2C_NFORCE2=m
# CONFIG_I2C_NVIDIA_GPU is not set
# CONFIG_I2C_SIS5595 is not set
CONFIG_I2C_SIS630=m
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
CONFIG_I2C_VIAPRO=m
#
# ACPI drivers
#
# CONFIG_I2C_SCMI is not set
#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
CONFIG_I2C_CADENCE=m
CONFIG_I2C_CBUS_GPIO=m
CONFIG_I2C_DESIGNWARE_CORE=m
# CONFIG_I2C_DESIGNWARE_SLAVE is not set
CONFIG_I2C_DESIGNWARE_PLATFORM=m
CONFIG_I2C_DESIGNWARE_PCI=m
CONFIG_I2C_EMEV2=m
CONFIG_I2C_GPIO=m
# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set
CONFIG_I2C_NOMADIK=m
CONFIG_I2C_OCORES=m
CONFIG_I2C_PCA_PLATFORM=m
CONFIG_I2C_RK3X=m
CONFIG_I2C_SIMTEC=m
CONFIG_I2C_TEGRA=y
CONFIG_I2C_TEGRA_BPMP=y
# CONFIG_I2C_THUNDERX is not set
# CONFIG_I2C_XILINX is not set
#
# External I2C/SMBus adapter drivers
#
CONFIG_I2C_DIOLAN_U2C=m
# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_TINY_USB is not set
#
# Other I2C/SMBus bus drivers
#
# end of I2C Hardware Bus support
CONFIG_I2C_STUB=m
CONFIG_I2C_SLAVE=y
CONFIG_I2C_SLAVE_EEPROM=m
# CONFIG_I2C_SLAVE_TESTUNIT is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# end of I2C support
# CONFIG_I3C is not set
CONFIG_SPI=y
# CONFIG_SPI_DEBUG is not set
CONFIG_SPI_MASTER=y
CONFIG_SPI_MEM=y
#
# SPI Master Controller Drivers
#
# CONFIG_SPI_ALTERA is not set
# CONFIG_SPI_AXI_SPI_ENGINE is not set
# CONFIG_SPI_BITBANG is not set
CONFIG_SPI_CADENCE=m
CONFIG_SPI_CADENCE_QUADSPI=y
# CONFIG_SPI_DESIGNWARE is not set
# CONFIG_SPI_HISI_SFC_V3XX is not set
CONFIG_SPI_NXP_FLEXSPI=y
# CONFIG_SPI_GPIO is not set
# CONFIG_SPI_FSL_SPI is not set
# CONFIG_SPI_OC_TINY is not set
# CONFIG_SPI_PL022 is not set
CONFIG_SPI_PXA2XX=m
CONFIG_SPI_PXA2XX_PCI=m
# CONFIG_SPI_ROCKCHIP is not set
CONFIG_SPI_SC18IS602=m
# CONFIG_SPI_SIFIVE is not set
# CONFIG_SPI_MXIC is not set
CONFIG_SPI_TEGRA114=m
# CONFIG_SPI_TEGRA20_SFLASH is not set
# CONFIG_SPI_TEGRA20_SLINK is not set
# CONFIG_SPI_THUNDERX is not set
CONFIG_SPI_XCOMM=m
# CONFIG_SPI_XILINX is not set
CONFIG_SPI_ZYNQMP_GQSPI=m
# CONFIG_SPI_AMD is not set
#
# SPI Multiplexer support
#
# CONFIG_SPI_MUX is not set
#
# SPI Protocol Masters
#
CONFIG_SPI_SPIDEV=m
# CONFIG_SPI_LOOPBACK_TEST is not set
CONFIG_SPI_TLE62X0=m
# CONFIG_SPI_SLAVE is not set
CONFIG_SPI_DYNAMIC=y
CONFIG_SPMI=m
# CONFIG_HSI is not set
CONFIG_PPS=y
CONFIG_PPS_DEBUG=y
#
# PPS clients support
#
# CONFIG_PPS_CLIENT_KTIMER is not set
# CONFIG_PPS_CLIENT_LDISC is not set
CONFIG_PPS_CLIENT_GPIO=y
#
# PPS generators support
#
#
# PTP clock support
#
CONFIG_PTP_1588_CLOCK=y
#
# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
#
# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set
# CONFIG_PTP_1588_CLOCK_IDTCM is not set
# end of PTP clock support
CONFIG_PINCTRL=y
CONFIG_GENERIC_PINCTRL_GROUPS=y
CONFIG_PINMUX=y
CONFIG_GENERIC_PINMUX_FUNCTIONS=y
CONFIG_PINCONF=y
CONFIG_GENERIC_PINCONF=y
# CONFIG_DEBUG_PINCTRL is not set
# CONFIG_PINCTRL_AMD is not set
# CONFIG_PINCTRL_MCP23S08 is not set
CONFIG_PINCTRL_SINGLE=y
# CONFIG_PINCTRL_SX150X is not set
# CONFIG_PINCTRL_STMFX is not set
CONFIG_PINCTRL_MAX77620=y
# CONFIG_PINCTRL_RK805 is not set
# CONFIG_PINCTRL_OCELOT is not set
#
# Renesas pinctrl drivers
#
# end of Renesas pinctrl drivers
CONFIG_PINCTRL_TEGRA=y
CONFIG_PINCTRL_TEGRA210=y
CONFIG_PINCTRL_TEGRA194=y
CONFIG_PINCTRL_TEGRA_XUSB=y
CONFIG_GPIOLIB=y
CONFIG_GPIOLIB_FASTPATH_LIMIT=512
CONFIG_OF_GPIO=y
CONFIG_GPIO_ACPI=y
CONFIG_GPIOLIB_IRQCHIP=y
# CONFIG_DEBUG_GPIO is not set
CONFIG_GPIO_SYSFS=y
CONFIG_GPIO_CDEV=y
CONFIG_GPIO_CDEV_V1=y
CONFIG_GPIO_GENERIC=y
#
# Memory mapped GPIO drivers
#
# CONFIG_GPIO_74XX_MMIO is not set
# CONFIG_GPIO_ALTERA is not set
# CONFIG_GPIO_AMDPT is not set
# CONFIG_GPIO_CADENCE is not set
# CONFIG_GPIO_DWAPB is not set
# CONFIG_GPIO_EXAR is not set
# CONFIG_GPIO_FTGPIO010 is not set
CONFIG_GPIO_GENERIC_PLATFORM=y
# CONFIG_GPIO_GRGPIO is not set
# CONFIG_GPIO_HLWD is not set
# CONFIG_GPIO_LOGICVC is not set
CONFIG_GPIO_MB86S7X=y
# CONFIG_GPIO_PL061 is not set
# CONFIG_GPIO_SAMA5D2_PIOBU is not set
# CONFIG_GPIO_SIFIVE is not set
# CONFIG_GPIO_SYSCON is not set
CONFIG_GPIO_TEGRA=y
CONFIG_GPIO_TEGRA186=y
# CONFIG_GPIO_XGENE is not set
# CONFIG_GPIO_XILINX is not set
# CONFIG_GPIO_AMD_FCH is not set
# end of Memory mapped GPIO drivers
#
# I2C GPIO expanders
#
# CONFIG_GPIO_ADP5588 is not set
# CONFIG_GPIO_ADNP is not set
# CONFIG_GPIO_GW_PLD is not set
# CONFIG_GPIO_MAX7300 is not set
# CONFIG_GPIO_MAX732X is not set
CONFIG_GPIO_PCA953X=y
CONFIG_GPIO_PCA953X_IRQ=y
# CONFIG_GPIO_PCA9570 is not set
# CONFIG_GPIO_PCF857X is not set
# CONFIG_GPIO_TPIC2810 is not set
# end of I2C GPIO expanders
#
# MFD GPIO expanders
#
CONFIG_GPIO_BD9571MWV=m
CONFIG_GPIO_MAX77620=y
# end of MFD GPIO expanders
#
# PCI GPIO expanders
#
# CONFIG_GPIO_BT8XX is not set
# CONFIG_GPIO_PCI_IDIO_16 is not set
# CONFIG_GPIO_PCIE_IDIO_24 is not set
# CONFIG_GPIO_RDC321X is not set
# end of PCI GPIO expanders
#
# SPI GPIO expanders
#
# CONFIG_GPIO_74X164 is not set
# CONFIG_GPIO_MAX3191X is not set
# CONFIG_GPIO_MAX7301 is not set
# CONFIG_GPIO_MC33880 is not set
# CONFIG_GPIO_PISOSR is not set
# CONFIG_GPIO_XRA1403 is not set
# end of SPI GPIO expanders
#
# USB GPIO expanders
#
# end of USB GPIO expanders
# CONFIG_GPIO_AGGREGATOR is not set
# CONFIG_GPIO_MOCKUP is not set
# CONFIG_W1 is not set
CONFIG_POWER_RESET=y
# CONFIG_POWER_RESET_BRCMSTB is not set
# CONFIG_POWER_RESET_GPIO is not set
# CONFIG_POWER_RESET_GPIO_RESTART is not set
# CONFIG_POWER_RESET_LTC2952 is not set
# CONFIG_POWER_RESET_RESTART is not set
# CONFIG_POWER_RESET_VEXPRESS is not set
# CONFIG_POWER_RESET_XGENE is not set
# CONFIG_POWER_RESET_SYSCON is not set
# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
# CONFIG_SYSCON_REBOOT_MODE is not set
# CONFIG_NVMEM_REBOOT_MODE is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
CONFIG_POWER_SUPPLY_HWMON=y
# CONFIG_PDA_POWER is not set
# CONFIG_GENERIC_ADC_BATTERY is not set
# CONFIG_TEST_POWER is not set
# CONFIG_CHARGER_ADP5061 is not set
# CONFIG_BATTERY_CW2015 is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
# CONFIG_BATTERY_DS2782 is not set
CONFIG_BATTERY_SBS=m
# CONFIG_CHARGER_SBS is not set
# CONFIG_MANAGER_SBS is not set
CONFIG_BATTERY_BQ27XXX=y
CONFIG_BATTERY_BQ27XXX_I2C=y
# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set
# CONFIG_BATTERY_MAX17040 is not set
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_CHARGER_ISP1704 is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_GPIO is not set
# CONFIG_CHARGER_MANAGER is not set
# CONFIG_CHARGER_LT3651 is not set
# CONFIG_CHARGER_DETECTOR_MAX14656 is not set
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_CHARGER_BQ24190 is not set
# CONFIG_CHARGER_BQ24257 is not set
# CONFIG_CHARGER_BQ24735 is not set
# CONFIG_CHARGER_BQ2515X is not set
# CONFIG_CHARGER_BQ25890 is not set
# CONFIG_CHARGER_BQ25980 is not set
# CONFIG_CHARGER_SMB347 is not set
# CONFIG_BATTERY_GAUGE_LTC2941 is not set
# CONFIG_CHARGER_RT9455 is not set
# CONFIG_CHARGER_UCS1002 is not set
# CONFIG_CHARGER_BD99954 is not set
CONFIG_HWMON=y
# CONFIG_HWMON_DEBUG_CHIP is not set
#
# Native drivers
#
# CONFIG_SENSORS_AD7314 is not set
# CONFIG_SENSORS_AD7414 is not set
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM1177 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7310 is not set
# CONFIG_SENSORS_ADT7410 is not set
# CONFIG_SENSORS_ADT7411 is not set
# CONFIG_SENSORS_ADT7462 is not set
# CONFIG_SENSORS_ADT7470 is not set
# CONFIG_SENSORS_ADT7475 is not set
# CONFIG_SENSORS_AS370 is not set
# CONFIG_SENSORS_ASC7621 is not set
# CONFIG_SENSORS_AXI_FAN_CONTROL is not set
# CONFIG_SENSORS_ARM_SCPI is not set
# CONFIG_SENSORS_ASPEED is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_CORSAIR_CPRO is not set
# CONFIG_SENSORS_DRIVETEMP is not set
# CONFIG_SENSORS_DS620 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_I5K_AMB is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
# CONFIG_SENSORS_F75375S is not set
# CONFIG_SENSORS_FTSTEUTATES is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_G760A is not set
# CONFIG_SENSORS_G762 is not set
# CONFIG_SENSORS_GPIO_FAN is not set
# CONFIG_SENSORS_HIH6130 is not set
# CONFIG_SENSORS_IIO_HWMON is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_JC42 is not set
# CONFIG_SENSORS_POWR1220 is not set
# CONFIG_SENSORS_LINEAGE is not set
# CONFIG_SENSORS_LTC2945 is not set
# CONFIG_SENSORS_LTC2947_I2C is not set
# CONFIG_SENSORS_LTC2947_SPI is not set
# CONFIG_SENSORS_LTC2990 is not set
# CONFIG_SENSORS_LTC4151 is not set
# CONFIG_SENSORS_LTC4215 is not set
# CONFIG_SENSORS_LTC4222 is not set
# CONFIG_SENSORS_LTC4245 is not set
# CONFIG_SENSORS_LTC4260 is not set
# CONFIG_SENSORS_LTC4261 is not set
# CONFIG_SENSORS_MAX1111 is not set
# CONFIG_SENSORS_MAX16065 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_MAX1668 is not set
# CONFIG_SENSORS_MAX197 is not set
# CONFIG_SENSORS_MAX31722 is not set
# CONFIG_SENSORS_MAX31730 is not set
# CONFIG_SENSORS_MAX6621 is not set
# CONFIG_SENSORS_MAX6639 is not set
# CONFIG_SENSORS_MAX6642 is not set
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_MAX6697 is not set
# CONFIG_SENSORS_MAX31790 is not set
# CONFIG_SENSORS_MCP3021 is not set
# CONFIG_SENSORS_TC654 is not set
# CONFIG_SENSORS_MR75203 is not set
# CONFIG_SENSORS_ADCXX is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM70 is not set
# CONFIG_SENSORS_LM73 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_LM95234 is not set
# CONFIG_SENSORS_LM95241 is not set
# CONFIG_SENSORS_LM95245 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_PC87427 is not set
# CONFIG_SENSORS_NTC_THERMISTOR is not set
# CONFIG_SENSORS_NCT6683 is not set
# CONFIG_SENSORS_NCT6775 is not set
# CONFIG_SENSORS_NCT7802 is not set
# CONFIG_SENSORS_NCT7904 is not set
# CONFIG_SENSORS_NPCM7XX is not set
# CONFIG_SENSORS_OCC_P8_I2C is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_PMBUS is not set
CONFIG_SENSORS_PWM_FAN=m
# CONFIG_SENSORS_SHT15 is not set
# CONFIG_SENSORS_SHT21 is not set
# CONFIG_SENSORS_SHT3x is not set
# CONFIG_SENSORS_SHTC1 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_EMC1403 is not set
# CONFIG_SENSORS_EMC2103 is not set
# CONFIG_SENSORS_EMC6W201 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47M192 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_SCH5627 is not set
# CONFIG_SENSORS_SCH5636 is not set
# CONFIG_SENSORS_STTS751 is not set
# CONFIG_SENSORS_SMM665 is not set
# CONFIG_SENSORS_ADC128D818 is not set
# CONFIG_SENSORS_ADS7828 is not set
# CONFIG_SENSORS_ADS7871 is not set
# CONFIG_SENSORS_AMC6821 is not set
# CONFIG_SENSORS_INA209 is not set
CONFIG_SENSORS_INA2XX=m
CONFIG_SENSORS_INA3221=m
# CONFIG_SENSORS_TC74 is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_TMP102 is not set
# CONFIG_SENSORS_TMP103 is not set
# CONFIG_SENSORS_TMP108 is not set
# CONFIG_SENSORS_TMP401 is not set
# CONFIG_SENSORS_TMP421 is not set
# CONFIG_SENSORS_TMP513 is not set
# CONFIG_SENSORS_VEXPRESS is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83773G is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83791D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83795 is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83L786NG is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_XGENE is not set
#
# ACPI drivers
#
# CONFIG_SENSORS_ACPI_POWER is not set
CONFIG_THERMAL=y
# CONFIG_THERMAL_NETLINK is not set
# CONFIG_THERMAL_STATISTICS is not set
CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
CONFIG_THERMAL_HWMON=y
CONFIG_THERMAL_OF=y
CONFIG_THERMAL_WRITABLE_TRIPS=y
CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
# CONFIG_THERMAL_GOV_FAIR_SHARE is not set
CONFIG_THERMAL_GOV_STEP_WISE=y
# CONFIG_THERMAL_GOV_BANG_BANG is not set
# CONFIG_THERMAL_GOV_USER_SPACE is not set
CONFIG_THERMAL_GOV_POWER_ALLOCATOR=y
CONFIG_CPU_THERMAL=y
CONFIG_CPU_FREQ_THERMAL=y
CONFIG_DEVFREQ_THERMAL=y
CONFIG_THERMAL_EMULATION=y
# CONFIG_THERMAL_MMIO is not set
CONFIG_MAX77620_THERMAL=m
#
# NVIDIA Tegra thermal drivers
#
CONFIG_TEGRA_SOCTHERM=y
CONFIG_TEGRA_BPMP_THERMAL=m
# end of NVIDIA Tegra thermal drivers
# CONFIG_GENERIC_ADC_THERMAL is not set
CONFIG_WATCHDOG=y
CONFIG_WATCHDOG_CORE=y
CONFIG_WATCHDOG_NOWAYOUT=y
CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
CONFIG_WATCHDOG_OPEN_TIMEOUT=0
# CONFIG_WATCHDOG_SYSFS is not set
#
# Watchdog Pretimeout Governors
#
# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
#
# Watchdog Device Drivers
#
# CONFIG_SOFT_WATCHDOG is not set
# CONFIG_GPIO_WATCHDOG is not set
# CONFIG_WDAT_WDT is not set
# CONFIG_XILINX_WATCHDOG is not set
# CONFIG_ZIIRAVE_WATCHDOG is not set
# CONFIG_ARM_SP805_WATCHDOG is not set
# CONFIG_ARM_SBSA_WATCHDOG is not set
# CONFIG_CADENCE_WATCHDOG is not set
# CONFIG_DW_WATCHDOG is not set
# CONFIG_MAX63XX_WATCHDOG is not set
CONFIG_MAX77620_WATCHDOG=y
# CONFIG_TEGRA_WATCHDOG is not set
CONFIG_ARM_SMC_WATCHDOG=y
# CONFIG_ALIM7101_WDT is not set
# CONFIG_I6300ESB_WDT is not set
# CONFIG_MEN_A21_WDT is not set
#
# PCI-based Watchdog Cards
#
# CONFIG_PCIPCWATCHDOG is not set
# CONFIG_WDTPCI is not set
#
# USB-based Watchdog Cards
#
# CONFIG_USBPCWATCHDOG is not set
CONFIG_SSB_POSSIBLE=y
CONFIG_SSB=m
CONFIG_SSB_SPROM=y
CONFIG_SSB_BLOCKIO=y
CONFIG_SSB_PCIHOST_POSSIBLE=y
CONFIG_SSB_PCIHOST=y
CONFIG_SSB_B43_PCI_BRIDGE=y
CONFIG_SSB_SDIOHOST_POSSIBLE=y
CONFIG_SSB_SDIOHOST=y
CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
CONFIG_SSB_DRIVER_PCICORE=y
# CONFIG_SSB_DRIVER_GPIO is not set
CONFIG_BCMA_POSSIBLE=y
CONFIG_BCMA=m
CONFIG_BCMA_BLOCKIO=y
CONFIG_BCMA_HOST_PCI_POSSIBLE=y
CONFIG_BCMA_HOST_PCI=y
# CONFIG_BCMA_HOST_SOC is not set
CONFIG_BCMA_DRIVER_PCI=y
# CONFIG_BCMA_DRIVER_GMAC_CMN is not set
# CONFIG_BCMA_DRIVER_GPIO is not set
# CONFIG_BCMA_DEBUG is not set
#
# Multifunction device drivers
#
CONFIG_MFD_CORE=y
# CONFIG_MFD_ACT8945A is not set
# CONFIG_MFD_AS3711 is not set
# CONFIG_MFD_AS3722 is not set
# CONFIG_PMIC_ADP5520 is not set
# CONFIG_MFD_AAT2870_CORE is not set
# CONFIG_MFD_ATMEL_FLEXCOM is not set
# CONFIG_MFD_ATMEL_HLCDC is not set
# CONFIG_MFD_BCM590XX is not set
CONFIG_MFD_BD9571MWV=y
# CONFIG_MFD_AXP20X_I2C is not set
# CONFIG_MFD_MADERA is not set
# CONFIG_PMIC_DA903X is not set
# CONFIG_MFD_DA9052_SPI is not set
# CONFIG_MFD_DA9052_I2C is not set
# CONFIG_MFD_DA9055 is not set
# CONFIG_MFD_DA9062 is not set
# CONFIG_MFD_DA9063 is not set
# CONFIG_MFD_DA9150 is not set
# CONFIG_MFD_DLN2 is not set
# CONFIG_MFD_GATEWORKS_GSC is not set
# CONFIG_MFD_MC13XXX_SPI is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_MFD_MP2629 is not set
CONFIG_MFD_HI6421_PMIC=y
# CONFIG_HTC_PASIC3 is not set
# CONFIG_HTC_I2CPLD is not set
# CONFIG_LPC_ICH is not set
CONFIG_LPC_SCH=m
# CONFIG_MFD_IQS62X is not set
# CONFIG_MFD_JANZ_CMODIO is not set
# CONFIG_MFD_KEMPLD is not set
# CONFIG_MFD_88PM800 is not set
# CONFIG_MFD_88PM805 is not set
# CONFIG_MFD_88PM860X is not set
# CONFIG_MFD_MAX14577 is not set
CONFIG_MFD_MAX77620=y
# CONFIG_MFD_MAX77650 is not set
# CONFIG_MFD_MAX77686 is not set
# CONFIG_MFD_MAX77693 is not set
# CONFIG_MFD_MAX77843 is not set
# CONFIG_MFD_MAX8907 is not set
# CONFIG_MFD_MAX8925 is not set
# CONFIG_MFD_MAX8997 is not set
# CONFIG_MFD_MAX8998 is not set
# CONFIG_MFD_MT6360 is not set
# CONFIG_MFD_MT6397 is not set
# CONFIG_MFD_MENF21BMC is not set
# CONFIG_EZX_PCAP is not set
# CONFIG_MFD_CPCAP is not set
# CONFIG_MFD_VIPERBOARD is not set
# CONFIG_MFD_RETU is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_RDC321X is not set
# CONFIG_MFD_RT5033 is not set
# CONFIG_MFD_RC5T583 is not set
CONFIG_MFD_RK808=y
# CONFIG_MFD_RN5T618 is not set
CONFIG_MFD_SEC_CORE=y
# CONFIG_MFD_SI476X_CORE is not set
# CONFIG_MFD_SM501 is not set
# CONFIG_MFD_SKY81452 is not set
# CONFIG_ABX500_CORE is not set
# CONFIG_MFD_STMPE is not set
CONFIG_MFD_SYSCON=y
# CONFIG_MFD_TI_AM335X_TSCADC is not set
# CONFIG_MFD_LP3943 is not set
# CONFIG_MFD_LP8788 is not set
# CONFIG_MFD_TI_LMU is not set
# CONFIG_MFD_PALMAS is not set
# CONFIG_TPS6105X is not set
# CONFIG_TPS65010 is not set
# CONFIG_TPS6507X is not set
# CONFIG_MFD_TPS65086 is not set
# CONFIG_MFD_TPS65090 is not set
# CONFIG_MFD_TPS65217 is not set
# CONFIG_MFD_TI_LP873X is not set
# CONFIG_MFD_TI_LP87565 is not set
# CONFIG_MFD_TPS65218 is not set
# CONFIG_MFD_TPS6586X is not set
# CONFIG_MFD_TPS65910 is not set
# CONFIG_MFD_TPS65912_I2C is not set
# CONFIG_MFD_TPS65912_SPI is not set
# CONFIG_MFD_TPS80031 is not set
# CONFIG_TWL4030_CORE is not set
# CONFIG_TWL6040_CORE is not set
# CONFIG_MFD_WL1273_CORE is not set
# CONFIG_MFD_LM3533 is not set
# CONFIG_MFD_TC3589X is not set
# CONFIG_MFD_TQMX86 is not set
# CONFIG_MFD_VX855 is not set
# CONFIG_MFD_LOCHNAGAR is not set
# CONFIG_MFD_ARIZONA_I2C is not set
# CONFIG_MFD_ARIZONA_SPI is not set
# CONFIG_MFD_WM8400 is not set
# CONFIG_MFD_WM831X_I2C is not set
# CONFIG_MFD_WM831X_SPI is not set
# CONFIG_MFD_WM8350_I2C is not set
# CONFIG_MFD_WM8994 is not set
CONFIG_MFD_ROHM_BD718XX=y
# CONFIG_MFD_ROHM_BD70528 is not set
# CONFIG_MFD_ROHM_BD71828 is not set
# CONFIG_MFD_STPMIC1 is not set
# CONFIG_MFD_STMFX is not set
CONFIG_MFD_VEXPRESS_SYSREG=y
# CONFIG_RAVE_SP_CORE is not set
# CONFIG_MFD_INTEL_M10_BMC is not set
# end of Multifunction device drivers
CONFIG_REGULATOR=y
# CONFIG_REGULATOR_DEBUG is not set
CONFIG_REGULATOR_FIXED_VOLTAGE=y
# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set
# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set
# CONFIG_REGULATOR_88PG86X is not set
# CONFIG_REGULATOR_ACT8865 is not set
# CONFIG_REGULATOR_AD5398 is not set
# CONFIG_REGULATOR_BD718XX is not set
# CONFIG_REGULATOR_BD9571MWV is not set
# CONFIG_REGULATOR_DA9210 is not set
# CONFIG_REGULATOR_DA9211 is not set
# CONFIG_REGULATOR_FAN53555 is not set
# CONFIG_REGULATOR_FAN53880 is not set
CONFIG_REGULATOR_GPIO=y
# CONFIG_REGULATOR_HI6421 is not set
# CONFIG_REGULATOR_HI6421V530 is not set
# CONFIG_REGULATOR_ISL9305 is not set
# CONFIG_REGULATOR_ISL6271A is not set
# CONFIG_REGULATOR_LP3971 is not set
# CONFIG_REGULATOR_LP3972 is not set
# CONFIG_REGULATOR_LP872X is not set
# CONFIG_REGULATOR_LP8755 is not set
# CONFIG_REGULATOR_LTC3589 is not set
# CONFIG_REGULATOR_LTC3676 is not set
# CONFIG_REGULATOR_MAX1586 is not set
CONFIG_REGULATOR_MAX77620=y
# CONFIG_REGULATOR_MAX8649 is not set
# CONFIG_REGULATOR_MAX8660 is not set
# CONFIG_REGULATOR_MAX8952 is not set
# CONFIG_REGULATOR_MAX8973 is not set
# CONFIG_REGULATOR_MAX77826 is not set
# CONFIG_REGULATOR_MCP16502 is not set
# CONFIG_REGULATOR_MP5416 is not set
# CONFIG_REGULATOR_MP8859 is not set
# CONFIG_REGULATOR_MP886X is not set
# CONFIG_REGULATOR_MPQ7920 is not set
# CONFIG_REGULATOR_MT6311 is not set
# CONFIG_REGULATOR_PCA9450 is not set
# CONFIG_REGULATOR_PFUZE100 is not set
# CONFIG_REGULATOR_PV88060 is not set
# CONFIG_REGULATOR_PV88080 is not set
# CONFIG_REGULATOR_PV88090 is not set
CONFIG_REGULATOR_PWM=y
# CONFIG_REGULATOR_QCOM_SPMI is not set
# CONFIG_REGULATOR_QCOM_USB_VBUS is not set
# CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set
# CONFIG_REGULATOR_RK808 is not set
# CONFIG_REGULATOR_RT4801 is not set
# CONFIG_REGULATOR_RTMV20 is not set
# CONFIG_REGULATOR_S2MPA01 is not set
# CONFIG_REGULATOR_S2MPS11 is not set
# CONFIG_REGULATOR_S5M8767 is not set
# CONFIG_REGULATOR_SLG51000 is not set
# CONFIG_REGULATOR_SY8106A is not set
# CONFIG_REGULATOR_SY8824X is not set
# CONFIG_REGULATOR_SY8827N is not set
# CONFIG_REGULATOR_TPS51632 is not set
# CONFIG_REGULATOR_TPS62360 is not set
# CONFIG_REGULATOR_TPS65023 is not set
# CONFIG_REGULATOR_TPS6507X is not set
CONFIG_REGULATOR_TPS65132=y
# CONFIG_REGULATOR_TPS6524X is not set
# CONFIG_REGULATOR_VCTRL is not set
# CONFIG_REGULATOR_VEXPRESS is not set
# CONFIG_REGULATOR_QCOM_LABIBB is not set
CONFIG_RC_CORE=y
CONFIG_RC_MAP=y
# CONFIG_LIRC is not set
# CONFIG_RC_DECODERS is not set
# CONFIG_RC_DEVICES is not set
# CONFIG_MEDIA_CEC_SUPPORT is not set
CONFIG_MEDIA_SUPPORT=y
CONFIG_MEDIA_SUPPORT_FILTER=y
# CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set
#
# Media device types
#
CONFIG_MEDIA_CAMERA_SUPPORT=y
# CONFIG_MEDIA_ANALOG_TV_SUPPORT is not set
CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
# CONFIG_MEDIA_RADIO_SUPPORT is not set
# CONFIG_MEDIA_SDR_SUPPORT is not set
CONFIG_MEDIA_PLATFORM_SUPPORT=y
CONFIG_MEDIA_TEST_SUPPORT=y
# end of Media device types
CONFIG_VIDEO_DEV=y
CONFIG_MEDIA_CONTROLLER=y
CONFIG_DVB_CORE=y
#
# Video4Linux options
#
CONFIG_VIDEO_V4L2=y
CONFIG_VIDEO_V4L2_I2C=y
CONFIG_VIDEO_V4L2_SUBDEV_API=y
# CONFIG_VIDEO_ADV_DEBUG is not set
# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
CONFIG_VIDEOBUF_GEN=m
CONFIG_VIDEOBUF_VMALLOC=m
# end of Video4Linux options
#
# Media controller options
#
# CONFIG_MEDIA_CONTROLLER_DVB is not set
# end of Media controller options
#
# Digital TV options
#
# CONFIG_DVB_MMAP is not set
CONFIG_DVB_NET=y
CONFIG_DVB_MAX_ADAPTERS=16
# CONFIG_DVB_DYNAMIC_MINORS is not set
# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
# CONFIG_DVB_ULE_DEBUG is not set
# end of Digital TV options
#
# Media drivers
#
#
# Drivers filtered as selected at 'Filter media drivers'
#
CONFIG_MEDIA_USB_SUPPORT=y
#
# Webcam devices
#
CONFIG_USB_VIDEO_CLASS=m
CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
CONFIG_USB_GSPCA=m
CONFIG_USB_M5602=m
CONFIG_USB_STV06XX=m
CONFIG_USB_GL860=m
CONFIG_USB_GSPCA_BENQ=m
CONFIG_USB_GSPCA_CONEX=m
CONFIG_USB_GSPCA_CPIA1=m
CONFIG_USB_GSPCA_DTCS033=m
CONFIG_USB_GSPCA_ETOMS=m
CONFIG_USB_GSPCA_FINEPIX=m
CONFIG_USB_GSPCA_JEILINJ=m
CONFIG_USB_GSPCA_JL2005BCD=m
CONFIG_USB_GSPCA_KINECT=m
CONFIG_USB_GSPCA_KONICA=m
CONFIG_USB_GSPCA_MARS=m
CONFIG_USB_GSPCA_MR97310A=m
CONFIG_USB_GSPCA_NW80X=m
CONFIG_USB_GSPCA_OV519=m
CONFIG_USB_GSPCA_OV534=m
CONFIG_USB_GSPCA_OV534_9=m
CONFIG_USB_GSPCA_PAC207=m
CONFIG_USB_GSPCA_PAC7302=m
CONFIG_USB_GSPCA_PAC7311=m
CONFIG_USB_GSPCA_SE401=m
CONFIG_USB_GSPCA_SN9C2028=m
CONFIG_USB_GSPCA_SN9C20X=m
CONFIG_USB_GSPCA_SONIXB=m
CONFIG_USB_GSPCA_SONIXJ=m
CONFIG_USB_GSPCA_SPCA500=m
CONFIG_USB_GSPCA_SPCA501=m
CONFIG_USB_GSPCA_SPCA505=m
CONFIG_USB_GSPCA_SPCA506=m
CONFIG_USB_GSPCA_SPCA508=m
CONFIG_USB_GSPCA_SPCA561=m
CONFIG_USB_GSPCA_SPCA1528=m
CONFIG_USB_GSPCA_SQ905=m
CONFIG_USB_GSPCA_SQ905C=m
CONFIG_USB_GSPCA_SQ930X=m
CONFIG_USB_GSPCA_STK014=m
CONFIG_USB_GSPCA_STK1135=m
CONFIG_USB_GSPCA_STV0680=m
CONFIG_USB_GSPCA_SUNPLUS=m
CONFIG_USB_GSPCA_T613=m
CONFIG_USB_GSPCA_TOPRO=m
CONFIG_USB_GSPCA_TOUPTEK=m
CONFIG_USB_GSPCA_TV8532=m
CONFIG_USB_GSPCA_VC032X=m
CONFIG_USB_GSPCA_VICAM=m
CONFIG_USB_GSPCA_XIRLINK_CIT=m
CONFIG_USB_GSPCA_ZC3XX=m
CONFIG_USB_PWC=m
# CONFIG_USB_PWC_DEBUG is not set
CONFIG_USB_PWC_INPUT_EVDEV=y
CONFIG_VIDEO_CPIA2=m
CONFIG_USB_ZR364XX=m
CONFIG_USB_STKWEBCAM=m
CONFIG_USB_S2255=m
CONFIG_VIDEO_USBTV=m
#
# Analog/digital TV USB devices
#
# CONFIG_VIDEO_AU0828 is not set
# CONFIG_VIDEO_CX231XX is not set
# CONFIG_VIDEO_TM6000 is not set
#
# Digital TV USB devices
#
# CONFIG_DVB_USB is not set
# CONFIG_DVB_USB_V2 is not set
# CONFIG_DVB_TTUSB_BUDGET is not set
# CONFIG_DVB_TTUSB_DEC is not set
# CONFIG_SMS_USB_DRV is not set
# CONFIG_DVB_B2C2_FLEXCOP_USB is not set
# CONFIG_DVB_AS102 is not set
#
# Webcam, TV (analog/digital) USB devices
#
# CONFIG_VIDEO_EM28XX is not set
# CONFIG_MEDIA_PCI_SUPPORT is not set
CONFIG_VIDEOBUF2_CORE=m
CONFIG_VIDEOBUF2_V4L2=m
CONFIG_VIDEOBUF2_MEMOPS=m
CONFIG_VIDEOBUF2_VMALLOC=m
CONFIG_V4L_PLATFORM_DRIVERS=y
# CONFIG_VIDEO_CAFE_CCIC is not set
# CONFIG_VIDEO_CADENCE is not set
# CONFIG_VIDEO_ASPEED is not set
# CONFIG_VIDEO_MUX is not set
# CONFIG_VIDEO_XILINX is not set
# CONFIG_V4L_MEM2MEM_DRIVERS is not set
# CONFIG_DVB_PLATFORM_DRIVERS is not set
#
# MMC/SDIO DVB adapters
#
# CONFIG_SMS_SDIO_DRV is not set
CONFIG_V4L_TEST_DRIVERS=y
# CONFIG_VIDEO_VIMC is not set
# CONFIG_VIDEO_VIVID is not set
# CONFIG_VIDEO_VIM2M is not set
# CONFIG_VIDEO_VICODEC is not set
# CONFIG_DVB_TEST_DRIVERS is not set
# end of Media drivers
#
# Media ancillary drivers
#
CONFIG_MEDIA_ATTACH=y
CONFIG_VIDEO_IR_I2C=y
#
# Audio decoders, processors and mixers
#
# CONFIG_VIDEO_TVAUDIO is not set
# CONFIG_VIDEO_TDA7432 is not set
# CONFIG_VIDEO_TDA9840 is not set
# CONFIG_VIDEO_TDA1997X is not set
# CONFIG_VIDEO_TEA6415C is not set
# CONFIG_VIDEO_TEA6420 is not set
# CONFIG_VIDEO_MSP3400 is not set
# CONFIG_VIDEO_CS3308 is not set
# CONFIG_VIDEO_CS5345 is not set
# CONFIG_VIDEO_CS53L32A is not set
# CONFIG_VIDEO_TLV320AIC23B is not set
# CONFIG_VIDEO_UDA1342 is not set
# CONFIG_VIDEO_WM8775 is not set
# CONFIG_VIDEO_WM8739 is not set
# CONFIG_VIDEO_VP27SMPX is not set
# CONFIG_VIDEO_SONY_BTF_MPX is not set
# end of Audio decoders, processors and mixers
#
# RDS decoders
#
# CONFIG_VIDEO_SAA6588 is not set
# end of RDS decoders
#
# Video decoders
#
# CONFIG_VIDEO_ADV7180 is not set
# CONFIG_VIDEO_ADV7183 is not set
# CONFIG_VIDEO_ADV748X is not set
# CONFIG_VIDEO_ADV7604 is not set
# CONFIG_VIDEO_ADV7842 is not set
# CONFIG_VIDEO_BT819 is not set
# CONFIG_VIDEO_BT856 is not set
# CONFIG_VIDEO_BT866 is not set
# CONFIG_VIDEO_KS0127 is not set
# CONFIG_VIDEO_ML86V7667 is not set
# CONFIG_VIDEO_SAA7110 is not set
# CONFIG_VIDEO_SAA711X is not set
# CONFIG_VIDEO_TC358743 is not set
# CONFIG_VIDEO_TVP514X is not set
# CONFIG_VIDEO_TVP5150 is not set
# CONFIG_VIDEO_TVP7002 is not set
# CONFIG_VIDEO_TW2804 is not set
# CONFIG_VIDEO_TW9903 is not set
# CONFIG_VIDEO_TW9906 is not set
# CONFIG_VIDEO_TW9910 is not set
# CONFIG_VIDEO_VPX3220 is not set
# CONFIG_VIDEO_MAX9286 is not set
#
# Video and audio decoders
#
# CONFIG_VIDEO_SAA717X is not set
# CONFIG_VIDEO_CX25840 is not set
# end of Video decoders
#
# Video encoders
#
# CONFIG_VIDEO_SAA7127 is not set
# CONFIG_VIDEO_SAA7185 is not set
# CONFIG_VIDEO_ADV7170 is not set
# CONFIG_VIDEO_ADV7175 is not set
# CONFIG_VIDEO_ADV7343 is not set
# CONFIG_VIDEO_ADV7393 is not set
# CONFIG_VIDEO_ADV7511 is not set
# CONFIG_VIDEO_AD9389B is not set
# CONFIG_VIDEO_AK881X is not set
# CONFIG_VIDEO_THS8200 is not set
# end of Video encoders
#
# Video improvement chips
#
# CONFIG_VIDEO_UPD64031A is not set
# CONFIG_VIDEO_UPD64083 is not set
# end of Video improvement chips
#
# Audio/Video compression chips
#
# CONFIG_VIDEO_SAA6752HS is not set
# end of Audio/Video compression chips
#
# SDR tuner chips
#
# end of SDR tuner chips
#
# Miscellaneous helper chips
#
# CONFIG_VIDEO_THS7303 is not set
# CONFIG_VIDEO_M52790 is not set
# CONFIG_VIDEO_I2C is not set
# CONFIG_VIDEO_ST_MIPID02 is not set
# end of Miscellaneous helper chips
#
# Camera sensor devices
#
# CONFIG_VIDEO_HI556 is not set
# CONFIG_VIDEO_IMX214 is not set
# CONFIG_VIDEO_IMX219 is not set
# CONFIG_VIDEO_IMX258 is not set
# CONFIG_VIDEO_IMX274 is not set
# CONFIG_VIDEO_IMX290 is not set
# CONFIG_VIDEO_IMX319 is not set
# CONFIG_VIDEO_IMX355 is not set
# CONFIG_VIDEO_OV2640 is not set
# CONFIG_VIDEO_OV2659 is not set
# CONFIG_VIDEO_OV2680 is not set
# CONFIG_VIDEO_OV2685 is not set
# CONFIG_VIDEO_OV2740 is not set
# CONFIG_VIDEO_OV5640 is not set
# CONFIG_VIDEO_OV5645 is not set
# CONFIG_VIDEO_OV5647 is not set
# CONFIG_VIDEO_OV6650 is not set
# CONFIG_VIDEO_OV5670 is not set
# CONFIG_VIDEO_OV5675 is not set
# CONFIG_VIDEO_OV5695 is not set
# CONFIG_VIDEO_OV7251 is not set
# CONFIG_VIDEO_OV772X is not set
# CONFIG_VIDEO_OV7640 is not set
# CONFIG_VIDEO_OV7670 is not set
# CONFIG_VIDEO_OV7740 is not set
# CONFIG_VIDEO_OV8856 is not set
# CONFIG_VIDEO_OV9640 is not set
# CONFIG_VIDEO_OV9650 is not set
# CONFIG_VIDEO_OV13858 is not set
# CONFIG_VIDEO_VS6624 is not set
# CONFIG_VIDEO_MT9M001 is not set
# CONFIG_VIDEO_MT9M032 is not set
# CONFIG_VIDEO_MT9M111 is not set
# CONFIG_VIDEO_MT9P031 is not set
# CONFIG_VIDEO_MT9T001 is not set
# CONFIG_VIDEO_MT9T112 is not set
# CONFIG_VIDEO_MT9V011 is not set
# CONFIG_VIDEO_MT9V032 is not set
# CONFIG_VIDEO_MT9V111 is not set
# CONFIG_VIDEO_SR030PC30 is not set
# CONFIG_VIDEO_NOON010PC30 is not set
# CONFIG_VIDEO_M5MOLS is not set
# CONFIG_VIDEO_RDACM20 is not set
# CONFIG_VIDEO_RJ54N1 is not set
# CONFIG_VIDEO_S5K6AA is not set
# CONFIG_VIDEO_S5K6A3 is not set
# CONFIG_VIDEO_S5K4ECGX is not set
# CONFIG_VIDEO_S5K5BAF is not set
# CONFIG_VIDEO_SMIAPP is not set
# CONFIG_VIDEO_ET8EK8 is not set
# CONFIG_VIDEO_S5C73M3 is not set
# end of Camera sensor devices
#
# Lens drivers
#
# CONFIG_VIDEO_AD5820 is not set
# CONFIG_VIDEO_AK7375 is not set
# CONFIG_VIDEO_DW9714 is not set
# CONFIG_VIDEO_DW9768 is not set
# CONFIG_VIDEO_DW9807_VCM is not set
# end of Lens drivers
#
# Flash devices
#
# CONFIG_VIDEO_ADP1653 is not set
# CONFIG_VIDEO_LM3560 is not set
# CONFIG_VIDEO_LM3646 is not set
# end of Flash devices
#
# SPI helper chips
#
# CONFIG_VIDEO_GS1662 is not set
# end of SPI helper chips
#
# Media SPI Adapters
#
# CONFIG_CXD2880_SPI_DRV is not set
# end of Media SPI Adapters
CONFIG_MEDIA_TUNER=y
#
# Customize TV tuners
#
CONFIG_MEDIA_TUNER_SIMPLE=y
# CONFIG_MEDIA_TUNER_TDA18250 is not set
CONFIG_MEDIA_TUNER_TDA8290=y
CONFIG_MEDIA_TUNER_TDA827X=y
CONFIG_MEDIA_TUNER_TDA18271=y
CONFIG_MEDIA_TUNER_TDA9887=y
CONFIG_MEDIA_TUNER_TEA5761=m
CONFIG_MEDIA_TUNER_TEA5767=m
CONFIG_MEDIA_TUNER_MSI001=m
CONFIG_MEDIA_TUNER_MT20XX=y
CONFIG_MEDIA_TUNER_MT2060=m
CONFIG_MEDIA_TUNER_MT2063=m
CONFIG_MEDIA_TUNER_MT2266=m
CONFIG_MEDIA_TUNER_MT2131=m
CONFIG_MEDIA_TUNER_QT1010=m
CONFIG_MEDIA_TUNER_XC2028=y
CONFIG_MEDIA_TUNER_XC5000=y
CONFIG_MEDIA_TUNER_XC4000=y
CONFIG_MEDIA_TUNER_MXL5005S=m
CONFIG_MEDIA_TUNER_MXL5007T=m
CONFIG_MEDIA_TUNER_MC44S803=y
CONFIG_MEDIA_TUNER_MAX2165=m
CONFIG_MEDIA_TUNER_TDA18218=m
CONFIG_MEDIA_TUNER_FC0011=m
CONFIG_MEDIA_TUNER_FC0012=m
CONFIG_MEDIA_TUNER_FC0013=m
CONFIG_MEDIA_TUNER_TDA18212=m
CONFIG_MEDIA_TUNER_E4000=m
# CONFIG_MEDIA_TUNER_FC2580 is not set
# CONFIG_MEDIA_TUNER_M88RS6000T is not set
# CONFIG_MEDIA_TUNER_TUA9001 is not set
# CONFIG_MEDIA_TUNER_SI2157 is not set
# CONFIG_MEDIA_TUNER_IT913X is not set
# CONFIG_MEDIA_TUNER_R820T is not set
# CONFIG_MEDIA_TUNER_MXL301RF is not set
# CONFIG_MEDIA_TUNER_QM1D1C0042 is not set
# CONFIG_MEDIA_TUNER_QM1D1B0004 is not set
# end of Customize TV tuners
#
# Customise DVB Frontends
#
#
# Multistandard (satellite) frontends
#
CONFIG_DVB_STB0899=m
CONFIG_DVB_STB6100=m
CONFIG_DVB_STV090x=m
CONFIG_DVB_STV0910=m
CONFIG_DVB_STV6110x=m
CONFIG_DVB_STV6111=m
CONFIG_DVB_MXL5XX=m
CONFIG_DVB_M88DS3103=m
#
# Multistandard (cable + terrestrial) frontends
#
CONFIG_DVB_DRXK=m
CONFIG_DVB_TDA18271C2DD=m
CONFIG_DVB_SI2165=m
CONFIG_DVB_MN88472=m
CONFIG_DVB_MN88473=m
#
# DVB-S (satellite) frontends
#
CONFIG_DVB_CX24110=m
CONFIG_DVB_CX24123=m
CONFIG_DVB_MT312=m
CONFIG_DVB_ZL10036=m
CONFIG_DVB_ZL10039=m
CONFIG_DVB_S5H1420=m
CONFIG_DVB_STV0288=m
CONFIG_DVB_STB6000=m
CONFIG_DVB_STV0299=m
CONFIG_DVB_STV6110=m
CONFIG_DVB_STV0900=m
CONFIG_DVB_TDA8083=m
CONFIG_DVB_TDA10086=m
CONFIG_DVB_TDA8261=m
CONFIG_DVB_VES1X93=m
CONFIG_DVB_TUNER_ITD1000=m
CONFIG_DVB_TUNER_CX24113=m
CONFIG_DVB_TDA826X=m
CONFIG_DVB_TUA6100=m
CONFIG_DVB_CX24116=m
CONFIG_DVB_CX24117=m
CONFIG_DVB_CX24120=m
CONFIG_DVB_SI21XX=m
CONFIG_DVB_TS2020=m
CONFIG_DVB_DS3000=m
CONFIG_DVB_MB86A16=m
CONFIG_DVB_TDA10071=m
#
# DVB-T (terrestrial) frontends
#
CONFIG_DVB_SP8870=m
CONFIG_DVB_SP887X=m
CONFIG_DVB_CX22700=m
CONFIG_DVB_CX22702=m
CONFIG_DVB_S5H1432=m
CONFIG_DVB_DRXD=m
CONFIG_DVB_L64781=m
CONFIG_DVB_TDA1004X=m
CONFIG_DVB_NXT6000=m
CONFIG_DVB_MT352=m
CONFIG_DVB_ZL10353=m
CONFIG_DVB_DIB3000MB=m
CONFIG_DVB_DIB3000MC=m
CONFIG_DVB_DIB7000M=m
CONFIG_DVB_DIB7000P=m
CONFIG_DVB_DIB9000=m
CONFIG_DVB_TDA10048=m
CONFIG_DVB_AF9013=m
CONFIG_DVB_EC100=m
CONFIG_DVB_STV0367=m
CONFIG_DVB_CXD2820R=m
CONFIG_DVB_CXD2841ER=m
CONFIG_DVB_RTL2830=m
CONFIG_DVB_RTL2832=m
CONFIG_DVB_SI2168=m
CONFIG_DVB_ZD1301_DEMOD=m
# CONFIG_DVB_CXD2880 is not set
#
# DVB-C (cable) frontends
#
CONFIG_DVB_VES1820=m
CONFIG_DVB_TDA10021=m
CONFIG_DVB_TDA10023=m
CONFIG_DVB_STV0297=m
#
# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
#
CONFIG_DVB_NXT200X=m
CONFIG_DVB_OR51211=m
CONFIG_DVB_OR51132=m
CONFIG_DVB_BCM3510=m
CONFIG_DVB_LGDT330X=m
CONFIG_DVB_LGDT3305=m
CONFIG_DVB_LGDT3306A=m
CONFIG_DVB_LG2160=m
CONFIG_DVB_S5H1409=m
CONFIG_DVB_AU8522=m
CONFIG_DVB_AU8522_DTV=m
CONFIG_DVB_AU8522_V4L=m
CONFIG_DVB_S5H1411=m
#
# ISDB-T (terrestrial) frontends
#
CONFIG_DVB_S921=m
CONFIG_DVB_DIB8000=m
CONFIG_DVB_MB86A20S=m
#
# ISDB-S (satellite) & ISDB-T (terrestrial) frontends
#
CONFIG_DVB_TC90522=m
# CONFIG_DVB_MN88443X is not set
#
# Digital terrestrial only tuners/PLL
#
CONFIG_DVB_PLL=m
CONFIG_DVB_TUNER_DIB0070=m
CONFIG_DVB_TUNER_DIB0090=m
#
# SEC control devices for DVB-S
#
CONFIG_DVB_DRX39XYJ=m
CONFIG_DVB_LNBH25=m
# CONFIG_DVB_LNBH29 is not set
CONFIG_DVB_LNBP21=m
CONFIG_DVB_LNBP22=m
CONFIG_DVB_ISL6405=m
CONFIG_DVB_ISL6421=m
CONFIG_DVB_ISL6423=m
CONFIG_DVB_A8293=m
CONFIG_DVB_LGS8GL5=m
CONFIG_DVB_LGS8GXX=m
CONFIG_DVB_ATBM8830=m
CONFIG_DVB_TDA665x=m
CONFIG_DVB_IX2505V=m
CONFIG_DVB_M88RS2000=m
CONFIG_DVB_AF9033=m
CONFIG_DVB_HORUS3A=m
CONFIG_DVB_ASCOT2E=m
CONFIG_DVB_HELENE=m
#
# Common Interface (EN50221) controller drivers
#
# CONFIG_DVB_CXD2099 is not set
CONFIG_DVB_SP2=m
# end of Customise DVB Frontends
#
# Tools to develop new frontends
#
# CONFIG_DVB_DUMMY_FE is not set
# end of Media ancillary drivers
#
# Graphics support
#
# CONFIG_VGA_ARB is not set
# CONFIG_TEGRA_HOST1X is not set
CONFIG_DRM=y
CONFIG_DRM_MIPI_DSI=y
# CONFIG_DRM_DP_AUX_CHARDEV is not set
# CONFIG_DRM_DEBUG_MM is not set
# CONFIG_DRM_DEBUG_SELFTEST is not set
CONFIG_DRM_KMS_HELPER=y
CONFIG_DRM_KMS_FB_HELPER=y
# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set
CONFIG_DRM_FBDEV_EMULATION=y
CONFIG_DRM_FBDEV_OVERALLOC=100
# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set
# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
# CONFIG_DRM_DP_CEC is not set
CONFIG_DRM_TTM=m
CONFIG_DRM_TTM_DMA_PAGE_POOL=y
CONFIG_DRM_VRAM_HELPER=m
CONFIG_DRM_TTM_HELPER=m
CONFIG_DRM_GEM_CMA_HELPER=y
CONFIG_DRM_KMS_CMA_HELPER=y
#
# I2C encoder or helper chips
#
# CONFIG_DRM_I2C_CH7006 is not set
# CONFIG_DRM_I2C_SIL164 is not set
CONFIG_DRM_I2C_NXP_TDA998X=m
# CONFIG_DRM_I2C_NXP_TDA9950 is not set
# end of I2C encoder or helper chips
#
# ARM devices
#
# CONFIG_DRM_HDLCD is not set
# CONFIG_DRM_MALI_DISPLAY is not set
# CONFIG_DRM_KOMEDA is not set
# end of ARM devices
# CONFIG_DRM_RADEON is not set
# CONFIG_DRM_AMDGPU is not set
# CONFIG_DRM_NOUVEAU is not set
# CONFIG_DRM_VGEM is not set
# CONFIG_DRM_VKMS is not set
# CONFIG_DRM_UDL is not set
# CONFIG_DRM_AST is not set
# CONFIG_DRM_MGAG200 is not set
CONFIG_DRM_RCAR_DW_HDMI=m
CONFIG_DRM_RCAR_LVDS=m
# CONFIG_DRM_QXL is not set
# CONFIG_DRM_BOCHS is not set
# CONFIG_DRM_VIRTIO_GPU is not set
# CONFIG_DRM_TEGRA is not set
CONFIG_DRM_PANEL=y
#
# Display Panels
#
# CONFIG_DRM_PANEL_ARM_VERSATILE is not set
# CONFIG_DRM_PANEL_ASUS_Z00T_TM5P5_NT35596 is not set
# CONFIG_DRM_PANEL_BOE_HIMAX8279D is not set
# CONFIG_DRM_PANEL_BOE_TV101WUM_NL6 is not set
CONFIG_DRM_PANEL_LVDS=m
CONFIG_DRM_PANEL_SIMPLE=m
# CONFIG_DRM_PANEL_ELIDA_KD35T133 is not set
# CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02 is not set
# CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D is not set
# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set
# CONFIG_DRM_PANEL_ILITEK_ILI9881C is not set
# CONFIG_DRM_PANEL_INNOLUX_P079ZCA is not set
# CONFIG_DRM_PANEL_JDI_LT070ME05000 is not set
# CONFIG_DRM_PANEL_KINGDISPLAY_KD097D04 is not set
# CONFIG_DRM_PANEL_LEADTEK_LTK050H3146W is not set
# CONFIG_DRM_PANEL_LEADTEK_LTK500HD1829 is not set
# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set
# CONFIG_DRM_PANEL_LG_LB035Q02 is not set
# CONFIG_DRM_PANEL_LG_LG4573 is not set
# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set
# CONFIG_DRM_PANEL_NOVATEK_NT35510 is not set
# CONFIG_DRM_PANEL_NOVATEK_NT39016 is not set
# CONFIG_DRM_PANEL_MANTIX_MLAF057WE51 is not set
# CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO is not set
# CONFIG_DRM_PANEL_ORISETECH_OTM8009A is not set
# CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS is not set
# CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00 is not set
# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
# CONFIG_DRM_PANEL_RAYDIUM_RM67191 is not set
# CONFIG_DRM_PANEL_RAYDIUM_RM68200 is not set
# CONFIG_DRM_PANEL_RONBO_RB070D30 is not set
# CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 is not set
# CONFIG_DRM_PANEL_SAMSUNG_S6E3HA2 is not set
# CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03 is not set
# CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 is not set
# CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set
# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
# CONFIG_DRM_PANEL_SHARP_LQ101R1SX01 is not set
# CONFIG_DRM_PANEL_SHARP_LS037V7DW01 is not set
# CONFIG_DRM_PANEL_SHARP_LS043T1LE01 is not set
# CONFIG_DRM_PANEL_SITRONIX_ST7701 is not set
# CONFIG_DRM_PANEL_SITRONIX_ST7703 is not set
# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
# CONFIG_DRM_PANEL_SONY_ACX424AKP is not set
# CONFIG_DRM_PANEL_SONY_ACX565AKM is not set
# CONFIG_DRM_PANEL_TPO_TD028TTEC1 is not set
# CONFIG_DRM_PANEL_TPO_TD043MTEA1 is not set
# CONFIG_DRM_PANEL_TPO_TPG110 is not set
# CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA is not set
# CONFIG_DRM_PANEL_VISIONOX_RM69299 is not set
# CONFIG_DRM_PANEL_XINPENG_XPP055C272 is not set
# end of Display Panels
CONFIG_DRM_BRIDGE=y
CONFIG_DRM_PANEL_BRIDGE=y
#
# Display Interface Bridges
#
# CONFIG_DRM_CDNS_DSI is not set
# CONFIG_DRM_CHRONTEL_CH7033 is not set
# CONFIG_DRM_DISPLAY_CONNECTOR is not set
# CONFIG_DRM_LONTIUM_LT9611 is not set
# CONFIG_DRM_LVDS_CODEC is not set
# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
# CONFIG_DRM_NWL_MIPI_DSI is not set
# CONFIG_DRM_NXP_PTN3460 is not set
# CONFIG_DRM_PARADE_PS8622 is not set
# CONFIG_DRM_PARADE_PS8640 is not set
# CONFIG_DRM_SIL_SII8620 is not set
CONFIG_DRM_SII902X=m
# CONFIG_DRM_SII9234 is not set
# CONFIG_DRM_SIMPLE_BRIDGE is not set
# CONFIG_DRM_THINE_THC63LVD1024 is not set
# CONFIG_DRM_TOSHIBA_TC358762 is not set
# CONFIG_DRM_TOSHIBA_TC358764 is not set
# CONFIG_DRM_TOSHIBA_TC358767 is not set
# CONFIG_DRM_TOSHIBA_TC358768 is not set
# CONFIG_DRM_TOSHIBA_TC358775 is not set
# CONFIG_DRM_TI_TFP410 is not set
# CONFIG_DRM_TI_SN65DSI86 is not set
# CONFIG_DRM_TI_TPD12S015 is not set
# CONFIG_DRM_ANALOGIX_ANX6345 is not set
# CONFIG_DRM_ANALOGIX_ANX78XX is not set
# CONFIG_DRM_I2C_ADV7511 is not set
# CONFIG_DRM_CDNS_MHDP8546 is not set
CONFIG_DRM_DW_HDMI=m
# CONFIG_DRM_DW_HDMI_AHB_AUDIO is not set
# CONFIG_DRM_DW_HDMI_I2S_AUDIO is not set
# CONFIG_DRM_DW_HDMI_CEC is not set
# end of Display Interface Bridges
# CONFIG_DRM_ETNAVIV is not set
# CONFIG_DRM_ARCPGU is not set
CONFIG_DRM_HISI_HIBMC=m
CONFIG_DRM_HISI_KIRIN=m
# CONFIG_DRM_MXSFB is not set
# CONFIG_DRM_CIRRUS_QEMU is not set
# CONFIG_DRM_GM12U320 is not set
# CONFIG_TINYDRM_HX8357D is not set
# CONFIG_TINYDRM_ILI9225 is not set
# CONFIG_TINYDRM_ILI9341 is not set
# CONFIG_TINYDRM_ILI9486 is not set
# CONFIG_TINYDRM_MI0283QT is not set
# CONFIG_TINYDRM_REPAPER is not set
# CONFIG_TINYDRM_ST7586 is not set
# CONFIG_TINYDRM_ST7735R is not set
# CONFIG_DRM_PL111 is not set
# CONFIG_DRM_LIMA is not set
# CONFIG_DRM_PANFROST is not set
# CONFIG_DRM_TIDSS is not set
# CONFIG_DRM_LEGACY is not set
CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y
#
# Frame buffer Devices
#
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
CONFIG_FB=y
# CONFIG_FIRMWARE_EDID is not set
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_SYS_FILLRECT=y
CONFIG_FB_SYS_COPYAREA=y
CONFIG_FB_SYS_IMAGEBLIT=y
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=y
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_MODE_HELPERS=y
# CONFIG_FB_TILEBLITTING is not set
#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_ARMCLCD is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_EFI is not set
# CONFIG_FB_OPENCORES is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_SMSCUFX is not set
# CONFIG_FB_UDL is not set
# CONFIG_FB_IBM_GXT4500 is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
# CONFIG_FB_SIMPLE is not set
# CONFIG_FB_SSD1307 is not set
# CONFIG_FB_SM712 is not set
# end of Frame buffer Devices
#
# Backlight & LCD device support
#
CONFIG_LCD_CLASS_DEVICE=m
# CONFIG_LCD_L4F00242T03 is not set
# CONFIG_LCD_LMS283GF05 is not set
# CONFIG_LCD_LTV350QV is not set
# CONFIG_LCD_ILI922X is not set
# CONFIG_LCD_ILI9320 is not set
# CONFIG_LCD_TDO24M is not set
# CONFIG_LCD_VGG2432A4 is not set
# CONFIG_LCD_PLATFORM is not set
# CONFIG_LCD_AMS369FG06 is not set
# CONFIG_LCD_LMS501KF03 is not set
# CONFIG_LCD_HX8357 is not set
# CONFIG_LCD_OTM3225A is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
# CONFIG_BACKLIGHT_KTD253 is not set
CONFIG_BACKLIGHT_PWM=y
# CONFIG_BACKLIGHT_QCOM_WLED is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
# CONFIG_BACKLIGHT_ADP8870 is not set
# CONFIG_BACKLIGHT_LM3630A is not set
# CONFIG_BACKLIGHT_LM3639 is not set
CONFIG_BACKLIGHT_LP855X=y
# CONFIG_BACKLIGHT_GPIO is not set
# CONFIG_BACKLIGHT_LV5207LP is not set
# CONFIG_BACKLIGHT_BD6107 is not set
# CONFIG_BACKLIGHT_ARCXCNN is not set
# CONFIG_BACKLIGHT_LED is not set
# end of Backlight & LCD device support
CONFIG_VIDEOMODE_HELPERS=y
CONFIG_HDMI=y
#
# Console display driver support
#
CONFIG_DUMMY_CONSOLE=y
CONFIG_DUMMY_CONSOLE_COLUMNS=80
CONFIG_DUMMY_CONSOLE_ROWS=25
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set
# end of Console display driver support
CONFIG_LOGO=y
# CONFIG_LOGO_LINUX_MONO is not set
# CONFIG_LOGO_LINUX_VGA16 is not set
# CONFIG_LOGO_LINUX_CLUT224 is not set
# end of Graphics support
CONFIG_SOUND=y
CONFIG_SND=y
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_PCM_ELD=y
CONFIG_SND_PCM_IEC958=y
CONFIG_SND_DMAENGINE_PCM=y
CONFIG_SND_HWDEP=y
CONFIG_SND_RAWMIDI=y
CONFIG_SND_JACK=y
CONFIG_SND_JACK_INPUT_DEV=y
# CONFIG_SND_OSSEMUL is not set
CONFIG_SND_PCM_TIMER=y
# CONFIG_SND_HRTIMER is not set
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_MAX_CARDS=32
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_PROC_FS=y
CONFIG_SND_VERBOSE_PROCFS=y
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set
CONFIG_SND_VMASTER=y
# CONFIG_SND_SEQUENCER is not set
CONFIG_SND_DRIVERS=y
# CONFIG_SND_DUMMY is not set
CONFIG_SND_ALOOP=m
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set
CONFIG_SND_PCI=y
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AW2 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_OXYGEN is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CTXFI is not set
# CONFIG_SND_DARLA20 is not set
# CONFIG_SND_GINA20 is not set
# CONFIG_SND_LAYLA20 is not set
# CONFIG_SND_DARLA24 is not set
# CONFIG_SND_GINA24 is not set
# CONFIG_SND_LAYLA24 is not set
# CONFIG_SND_MONA is not set
# CONFIG_SND_MIA is not set
# CONFIG_SND_ECHO3G is not set
# CONFIG_SND_INDIGO is not set
# CONFIG_SND_INDIGOIO is not set
# CONFIG_SND_INDIGODJ is not set
# CONFIG_SND_INDIGOIOX is not set
# CONFIG_SND_INDIGODJX is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 is not set
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_LOLA is not set
# CONFIG_SND_LX6464ES is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SE6X is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VIRTUOSO is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set
#
# HD-Audio
#
CONFIG_SND_HDA=m
# CONFIG_SND_HDA_INTEL is not set
CONFIG_SND_HDA_TEGRA=m
# CONFIG_SND_HDA_HWDEP is not set
# CONFIG_SND_HDA_RECONFIG is not set
# CONFIG_SND_HDA_INPUT_BEEP is not set
# CONFIG_SND_HDA_PATCH_LOADER is not set
# CONFIG_SND_HDA_CODEC_REALTEK is not set
# CONFIG_SND_HDA_CODEC_ANALOG is not set
# CONFIG_SND_HDA_CODEC_SIGMATEL is not set
# CONFIG_SND_HDA_CODEC_VIA is not set
CONFIG_SND_HDA_CODEC_HDMI=m
# CONFIG_SND_HDA_CODEC_CIRRUS is not set
# CONFIG_SND_HDA_CODEC_CONEXANT is not set
# CONFIG_SND_HDA_CODEC_CA0110 is not set
# CONFIG_SND_HDA_CODEC_CA0132 is not set
# CONFIG_SND_HDA_CODEC_CMEDIA is not set
# CONFIG_SND_HDA_CODEC_SI3054 is not set
# CONFIG_SND_HDA_GENERIC is not set
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=1
# end of HD-Audio
CONFIG_SND_HDA_CORE=m
CONFIG_SND_HDA_ALIGNED_MMIO=y
CONFIG_SND_HDA_PREALLOC_SIZE=64
CONFIG_SND_SPI=y
CONFIG_SND_USB=y
CONFIG_SND_USB_AUDIO=y
CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y
# CONFIG_SND_USB_UA101 is not set
# CONFIG_SND_USB_CAIAQ is not set
# CONFIG_SND_USB_6FIRE is not set
# CONFIG_SND_USB_HIFACE is not set
# CONFIG_SND_BCD2000 is not set
# CONFIG_SND_USB_POD is not set
# CONFIG_SND_USB_PODHD is not set
# CONFIG_SND_USB_TONEPORT is not set
# CONFIG_SND_USB_VARIAX is not set
CONFIG_SND_SOC=y
CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y
# CONFIG_SND_SOC_AMD_ACP is not set
# CONFIG_SND_ATMEL_SOC is not set
# CONFIG_SND_BCM63XX_I2S_WHISTLER is not set
# CONFIG_SND_DESIGNWARE_I2S is not set
#
# SoC Audio for Freescale CPUs
#
#
# Common SoC Audio options for Freescale CPUs:
#
# CONFIG_SND_SOC_FSL_ASRC is not set
# CONFIG_SND_SOC_FSL_SAI is not set
# CONFIG_SND_SOC_FSL_AUDMIX is not set
# CONFIG_SND_SOC_FSL_SSI is not set
# CONFIG_SND_SOC_FSL_SPDIF is not set
# CONFIG_SND_SOC_FSL_ESAI is not set
# CONFIG_SND_SOC_FSL_MICFIL is not set
# CONFIG_SND_SOC_IMX_AUDMUX is not set
# end of SoC Audio for Freescale CPUs
# CONFIG_SND_I2S_HI6210_I2S is not set
# CONFIG_SND_SOC_IMG is not set
# CONFIG_SND_SOC_MTK_BTCVSD is not set
# CONFIG_SND_SOC_SOF_TOPLEVEL is not set
#
# STMicroelectronics STM32 SOC audio support
#
# end of STMicroelectronics STM32 SOC audio support
CONFIG_SND_SOC_TEGRA=m
# CONFIG_SND_SOC_TEGRA20_AC97 is not set
# CONFIG_SND_SOC_TEGRA20_DAS is not set
# CONFIG_SND_SOC_TEGRA20_I2S is not set
CONFIG_SND_SOC_TEGRA20_SPDIF=m
# CONFIG_SND_SOC_TEGRA30_AHUB is not set
# CONFIG_SND_SOC_TEGRA30_I2S is not set
CONFIG_SND_SOC_TEGRA210_AHUB=m
CONFIG_SND_SOC_TEGRA210_DMIC=m
CONFIG_SND_SOC_TEGRA210_I2S=m
CONFIG_SND_SOC_TEGRA186_DSPK=m
CONFIG_SND_SOC_TEGRA210_ADMAIF=m
# CONFIG_SND_SOC_TEGRA_RT5640 is not set
# CONFIG_SND_SOC_TEGRA_WM8753 is not set
# CONFIG_SND_SOC_TEGRA_WM8903 is not set
# CONFIG_SND_SOC_TEGRA_WM9712 is not set
# CONFIG_SND_SOC_TEGRA_TRIMSLICE is not set
# CONFIG_SND_SOC_TEGRA_ALC5632 is not set
# CONFIG_SND_SOC_TEGRA_MAX98090 is not set
# CONFIG_SND_SOC_TEGRA_RT5677 is not set
# CONFIG_SND_SOC_TEGRA_SGTL5000 is not set
# CONFIG_SND_SOC_XILINX_I2S is not set
# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set
# CONFIG_SND_SOC_XILINX_SPDIF is not set
# CONFIG_SND_SOC_XTFPGA_I2S is not set
# CONFIG_ZX_TDM is not set
CONFIG_SND_SOC_I2C_AND_SPI=y
#
# CODEC drivers
#
# CONFIG_SND_SOC_AC97_CODEC is not set
# CONFIG_SND_SOC_ADAU1701 is not set
# CONFIG_SND_SOC_ADAU1761_I2C is not set
# CONFIG_SND_SOC_ADAU1761_SPI is not set
# CONFIG_SND_SOC_ADAU7002 is not set
# CONFIG_SND_SOC_ADAU7118_HW is not set
# CONFIG_SND_SOC_ADAU7118_I2C is not set
# CONFIG_SND_SOC_AK4104 is not set
# CONFIG_SND_SOC_AK4118 is not set
# CONFIG_SND_SOC_AK4458 is not set
# CONFIG_SND_SOC_AK4554 is not set
CONFIG_SND_SOC_AK4613=m
# CONFIG_SND_SOC_AK4642 is not set
# CONFIG_SND_SOC_AK5386 is not set
# CONFIG_SND_SOC_AK5558 is not set
# CONFIG_SND_SOC_ALC5623 is not set
# CONFIG_SND_SOC_BD28623 is not set
# CONFIG_SND_SOC_BT_SCO is not set
# CONFIG_SND_SOC_CS35L32 is not set
# CONFIG_SND_SOC_CS35L33 is not set
# CONFIG_SND_SOC_CS35L34 is not set
# CONFIG_SND_SOC_CS35L35 is not set
# CONFIG_SND_SOC_CS35L36 is not set
# CONFIG_SND_SOC_CS42L42 is not set
# CONFIG_SND_SOC_CS42L51_I2C is not set
# CONFIG_SND_SOC_CS42L52 is not set
# CONFIG_SND_SOC_CS42L56 is not set
# CONFIG_SND_SOC_CS42L73 is not set
# CONFIG_SND_SOC_CS4234 is not set
# CONFIG_SND_SOC_CS4265 is not set
# CONFIG_SND_SOC_CS4270 is not set
# CONFIG_SND_SOC_CS4271_I2C is not set
# CONFIG_SND_SOC_CS4271_SPI is not set
# CONFIG_SND_SOC_CS42XX8_I2C is not set
# CONFIG_SND_SOC_CS43130 is not set
# CONFIG_SND_SOC_CS4341 is not set
# CONFIG_SND_SOC_CS4349 is not set
# CONFIG_SND_SOC_CS53L30 is not set
# CONFIG_SND_SOC_CX2072X is not set
# CONFIG_SND_SOC_DA7213 is not set
# CONFIG_SND_SOC_DMIC is not set
CONFIG_SND_SOC_HDMI_CODEC=m
CONFIG_SND_SOC_ES7134=m
# CONFIG_SND_SOC_ES7241 is not set
# CONFIG_SND_SOC_ES8316 is not set
# CONFIG_SND_SOC_ES8328_I2C is not set
# CONFIG_SND_SOC_ES8328_SPI is not set
# CONFIG_SND_SOC_GTM601 is not set
# CONFIG_SND_SOC_INNO_RK3036 is not set
# CONFIG_SND_SOC_MAX98088 is not set
# CONFIG_SND_SOC_MAX98357A is not set
# CONFIG_SND_SOC_MAX98504 is not set
# CONFIG_SND_SOC_MAX9867 is not set
CONFIG_SND_SOC_MAX98927=m
# CONFIG_SND_SOC_MAX98373_I2C is not set
# CONFIG_SND_SOC_MAX98373_SDW is not set
# CONFIG_SND_SOC_MAX98390 is not set
# CONFIG_SND_SOC_MAX9860 is not set
# CONFIG_SND_SOC_MSM8916_WCD_ANALOG is not set
# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
# CONFIG_SND_SOC_PCM1681 is not set
# CONFIG_SND_SOC_PCM1789_I2C is not set
# CONFIG_SND_SOC_PCM179X_I2C is not set
# CONFIG_SND_SOC_PCM179X_SPI is not set
# CONFIG_SND_SOC_PCM186X_I2C is not set
# CONFIG_SND_SOC_PCM186X_SPI is not set
# CONFIG_SND_SOC_PCM3060_I2C is not set
# CONFIG_SND_SOC_PCM3060_SPI is not set
CONFIG_SND_SOC_PCM3168A=m
CONFIG_SND_SOC_PCM3168A_I2C=m
# CONFIG_SND_SOC_PCM3168A_SPI is not set
# CONFIG_SND_SOC_PCM512x_I2C is not set
# CONFIG_SND_SOC_PCM512x_SPI is not set
# CONFIG_SND_SOC_RK3328 is not set
# CONFIG_SND_SOC_RT1308_SDW is not set
# CONFIG_SND_SOC_RT5616 is not set
# CONFIG_SND_SOC_RT5631 is not set
# CONFIG_SND_SOC_RT5682_SDW is not set
# CONFIG_SND_SOC_RT700_SDW is not set
# CONFIG_SND_SOC_RT711_SDW is not set
# CONFIG_SND_SOC_RT715_SDW is not set
CONFIG_SND_SOC_SGTL5000=m
# CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set
# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set
CONFIG_SND_SOC_SPDIF=m
# CONFIG_SND_SOC_SSM2305 is not set
# CONFIG_SND_SOC_SSM2602_SPI is not set
# CONFIG_SND_SOC_SSM2602_I2C is not set
# CONFIG_SND_SOC_SSM4567 is not set
# CONFIG_SND_SOC_STA32X is not set
# CONFIG_SND_SOC_STA350 is not set
# CONFIG_SND_SOC_STI_SAS is not set
CONFIG_SND_SOC_TAS2552=m
# CONFIG_SND_SOC_TAS2562 is not set
# CONFIG_SND_SOC_TAS2764 is not set
# CONFIG_SND_SOC_TAS2770 is not set
# CONFIG_SND_SOC_TAS5086 is not set
CONFIG_SND_SOC_TAS571X=m
# CONFIG_SND_SOC_TAS5720 is not set
# CONFIG_SND_SOC_TAS6424 is not set
# CONFIG_SND_SOC_TDA7419 is not set
# CONFIG_SND_SOC_TFA9879 is not set
# CONFIG_SND_SOC_TLV320AIC23_I2C is not set
# CONFIG_SND_SOC_TLV320AIC23_SPI is not set
# CONFIG_SND_SOC_TLV320AIC31XX is not set
# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
# CONFIG_SND_SOC_TLV320AIC3X is not set
# CONFIG_SND_SOC_TLV320ADCX140 is not set
# CONFIG_SND_SOC_TS3A227E is not set
# CONFIG_SND_SOC_TSCS42XX is not set
# CONFIG_SND_SOC_TSCS454 is not set
# CONFIG_SND_SOC_UDA1334 is not set
# CONFIG_SND_SOC_WM8510 is not set
# CONFIG_SND_SOC_WM8523 is not set
# CONFIG_SND_SOC_WM8524 is not set
# CONFIG_SND_SOC_WM8580 is not set
# CONFIG_SND_SOC_WM8711 is not set
# CONFIG_SND_SOC_WM8728 is not set
# CONFIG_SND_SOC_WM8731 is not set
# CONFIG_SND_SOC_WM8737 is not set
# CONFIG_SND_SOC_WM8741 is not set
# CONFIG_SND_SOC_WM8750 is not set
# CONFIG_SND_SOC_WM8753 is not set
# CONFIG_SND_SOC_WM8770 is not set
# CONFIG_SND_SOC_WM8776 is not set
# CONFIG_SND_SOC_WM8782 is not set
# CONFIG_SND_SOC_WM8804_I2C is not set
# CONFIG_SND_SOC_WM8804_SPI is not set
# CONFIG_SND_SOC_WM8903 is not set
# CONFIG_SND_SOC_WM8904 is not set
# CONFIG_SND_SOC_WM8960 is not set
# CONFIG_SND_SOC_WM8962 is not set
# CONFIG_SND_SOC_WM8974 is not set
# CONFIG_SND_SOC_WM8978 is not set
# CONFIG_SND_SOC_WM8985 is not set
# CONFIG_SND_SOC_WSA881X is not set
# CONFIG_SND_SOC_ZL38060 is not set
# CONFIG_SND_SOC_ZX_AUD96P22 is not set
# CONFIG_SND_SOC_MAX9759 is not set
# CONFIG_SND_SOC_MT6351 is not set
# CONFIG_SND_SOC_MT6358 is not set
# CONFIG_SND_SOC_MT6660 is not set
# CONFIG_SND_SOC_NAU8540 is not set
# CONFIG_SND_SOC_NAU8810 is not set
# CONFIG_SND_SOC_NAU8822 is not set
# CONFIG_SND_SOC_NAU8824 is not set
# CONFIG_SND_SOC_TPA6130A2 is not set
# end of CODEC drivers
CONFIG_SND_SIMPLE_CARD_UTILS=m
CONFIG_SND_SIMPLE_CARD=m
CONFIG_SND_AUDIO_GRAPH_CARD=m
#
# HID support
#
CONFIG_HID=y
# CONFIG_HID_BATTERY_STRENGTH is not set
CONFIG_HIDRAW=y
CONFIG_UHID=y
CONFIG_HID_GENERIC=y
#
# Special HID drivers
#
CONFIG_HID_A4TECH=m
# CONFIG_HID_ACCUTOUCH is not set
CONFIG_HID_ACRUX=y
CONFIG_HID_ACRUX_FF=y
CONFIG_HID_APPLE=y
CONFIG_HID_APPLEIR=m
CONFIG_HID_ASUS=m
CONFIG_HID_AUREAL=m
CONFIG_HID_BELKIN=m
CONFIG_HID_BETOP_FF=m
# CONFIG_HID_BIGBEN_FF is not set
CONFIG_HID_CHERRY=m
CONFIG_HID_CHICONY=m
CONFIG_HID_CORSAIR=m
# CONFIG_HID_COUGAR is not set
# CONFIG_HID_MACALLY is not set
CONFIG_HID_PRODIKEYS=m
CONFIG_HID_CMEDIA=m
# CONFIG_HID_CP2112 is not set
# CONFIG_HID_CREATIVE_SB0540 is not set
CONFIG_HID_CYPRESS=m
CONFIG_HID_DRAGONRISE=y
CONFIG_DRAGONRISE_FF=y
CONFIG_HID_EMS_FF=m
# CONFIG_HID_ELAN is not set
CONFIG_HID_ELECOM=m
CONFIG_HID_ELO=m
CONFIG_HID_EZKEY=m
CONFIG_HID_GEMBIRD=m
CONFIG_HID_GFRM=m
# CONFIG_HID_GLORIOUS is not set
CONFIG_HID_HOLTEK=y
# CONFIG_HOLTEK_FF is not set
# CONFIG_HID_VIVALDI is not set
CONFIG_HID_GT683R=m
CONFIG_HID_KEYTOUCH=y
CONFIG_HID_KYE=y
CONFIG_HID_UCLOGIC=y
CONFIG_HID_WALTOP=y
# CONFIG_HID_VIEWSONIC is not set
CONFIG_HID_GYRATION=y
CONFIG_HID_ICADE=m
CONFIG_HID_ITE=m
# CONFIG_HID_JABRA is not set
CONFIG_HID_TWINHAN=y
CONFIG_HID_KENSINGTON=m
CONFIG_HID_LCPOWER=y
CONFIG_HID_LED=m
CONFIG_HID_LENOVO=m
CONFIG_HID_LOGITECH=m
CONFIG_HID_LOGITECH_DJ=m
CONFIG_HID_LOGITECH_HIDPP=m
# CONFIG_LOGITECH_FF is not set
# CONFIG_LOGIRUMBLEPAD2_FF is not set
# CONFIG_LOGIG940_FF is not set
# CONFIG_LOGIWHEELS_FF is not set
CONFIG_HID_MAGICMOUSE=y
# CONFIG_HID_MALTRON is not set
# CONFIG_HID_MAYFLASH is not set
# CONFIG_HID_REDRAGON is not set
CONFIG_HID_MICROSOFT=m
CONFIG_HID_MONTEREY=m
CONFIG_HID_MULTITOUCH=y
CONFIG_HID_NTI=m
CONFIG_HID_NTRIG=y
CONFIG_HID_ORTEK=y
CONFIG_HID_PANTHERLORD=y
CONFIG_PANTHERLORD_FF=y
CONFIG_HID_PENMOUNT=m
CONFIG_HID_PETALYNX=m
CONFIG_HID_PICOLCD=m
CONFIG_HID_PICOLCD_FB=y
CONFIG_HID_PICOLCD_BACKLIGHT=y
# CONFIG_HID_PICOLCD_LCD is not set
# CONFIG_HID_PICOLCD_LEDS is not set
# CONFIG_HID_PICOLCD_CIR is not set
CONFIG_HID_PLANTRONICS=m
CONFIG_HID_PRIMAX=m
CONFIG_HID_RETRODE=m
CONFIG_HID_ROCCAT=m
CONFIG_HID_SAITEK=m
CONFIG_HID_SAMSUNG=m
CONFIG_HID_SONY=m
# CONFIG_SONY_FF is not set
CONFIG_HID_SPEEDLINK=m
# CONFIG_HID_STEAM is not set
CONFIG_HID_STEELSERIES=m
CONFIG_HID_SUNPLUS=m
CONFIG_HID_RMI=m
CONFIG_HID_GREENASIA=m
CONFIG_GREENASIA_FF=y
CONFIG_HID_SMARTJOYPLUS=m
CONFIG_SMARTJOYPLUS_FF=y
CONFIG_HID_TIVO=m
CONFIG_HID_TOPSEED=m
CONFIG_HID_THINGM=m
CONFIG_HID_THRUSTMASTER=m
# CONFIG_THRUSTMASTER_FF is not set
CONFIG_HID_UDRAW_PS3=m
# CONFIG_HID_U2FZERO is not set
CONFIG_HID_WACOM=m
CONFIG_HID_WIIMOTE=m
CONFIG_HID_XINMO=m
CONFIG_HID_ZEROPLUS=m
# CONFIG_ZEROPLUS_FF is not set
CONFIG_HID_ZYDACRON=m
CONFIG_HID_SENSOR_HUB=m
CONFIG_HID_SENSOR_CUSTOM_SENSOR=m
CONFIG_HID_ALPS=m
# CONFIG_HID_MCP2221 is not set
# end of Special HID drivers
#
# USB HID support
#
CONFIG_USB_HID=y
# CONFIG_HID_PID is not set
CONFIG_USB_HIDDEV=y
# end of USB HID support
#
# I2C HID support
#
# CONFIG_I2C_HID is not set
# end of I2C HID support
# end of HID support
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_SUPPORT=y
CONFIG_USB_COMMON=y
# CONFIG_USB_LED_TRIG is not set
CONFIG_USB_ULPI_BUS=m
CONFIG_USB_CONN_GPIO=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB=y
CONFIG_USB_PCI=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
#
# Miscellaneous USB options
#
CONFIG_USB_DEFAULT_PERSIST=y
# CONFIG_USB_FEW_INIT_RETRIES is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
CONFIG_USB_OTG=y
# CONFIG_USB_OTG_PRODUCTLIST is not set
# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set
# CONFIG_USB_OTG_FSM is not set
# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set
CONFIG_USB_AUTOSUSPEND_DELAY=2
CONFIG_USB_MON=m
#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
CONFIG_USB_XHCI_HCD=y
# CONFIG_USB_XHCI_DBGCAP is not set
CONFIG_USB_XHCI_PCI=y
# CONFIG_USB_XHCI_PCI_RENESAS is not set
# CONFIG_USB_XHCI_PLATFORM is not set
CONFIG_USB_XHCI_TEGRA=y
# CONFIG_USB_EHCI_HCD is not set
# CONFIG_USB_OXU210HP_HCD is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_FOTG210_HCD is not set
# CONFIG_USB_MAX3421_HCD is not set
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_OHCI_HCD_PCI=y
CONFIG_USB_OHCI_HCD_PLATFORM=y
# CONFIG_USB_UHCI_HCD is not set
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
# CONFIG_USB_HCD_BCMA is not set
# CONFIG_USB_HCD_SSB is not set
# CONFIG_USB_HCD_TEST_MODE is not set
#
# USB Device Class drivers
#
CONFIG_USB_ACM=m
CONFIG_USB_PRINTER=m
CONFIG_USB_WDM=m
# CONFIG_USB_TMC is not set
#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#
#
# also be needed; see USB_STORAGE Help for more info
#
CONFIG_USB_STORAGE=y
# CONFIG_USB_STORAGE_DEBUG is not set
CONFIG_USB_STORAGE_REALTEK=m
CONFIG_REALTEK_AUTOPM=y
CONFIG_USB_STORAGE_DATAFAB=m
CONFIG_USB_STORAGE_FREECOM=m
CONFIG_USB_STORAGE_ISD200=m
CONFIG_USB_STORAGE_USBAT=m
CONFIG_USB_STORAGE_SDDR09=m
CONFIG_USB_STORAGE_SDDR55=m
CONFIG_USB_STORAGE_JUMPSHOT=m
CONFIG_USB_STORAGE_ALAUDA=m
CONFIG_USB_STORAGE_ONETOUCH=m
CONFIG_USB_STORAGE_KARMA=m
CONFIG_USB_STORAGE_CYPRESS_ATACB=m
CONFIG_USB_STORAGE_ENE_UB6250=m
CONFIG_USB_UAS=y
#
# USB Imaging devices
#
CONFIG_USB_MDC800=m
# CONFIG_USB_MICROTEK is not set
# CONFIG_USBIP_CORE is not set
# CONFIG_USB_CDNS3 is not set
# CONFIG_USB_MUSB_HDRC is not set
# CONFIG_USB_DWC3 is not set
# CONFIG_USB_DWC2 is not set
CONFIG_USB_CHIPIDEA=m
# CONFIG_USB_CHIPIDEA_UDC is not set
CONFIG_USB_CHIPIDEA_MSM=m
CONFIG_USB_CHIPIDEA_IMX=m
CONFIG_USB_CHIPIDEA_GENERIC=m
# CONFIG_USB_ISP1760 is not set
#
# USB port drivers
#
CONFIG_USB_SERIAL=m
# CONFIG_USB_SERIAL_GENERIC is not set
# CONFIG_USB_SERIAL_SIMPLE is not set
# CONFIG_USB_SERIAL_AIRCABLE is not set
# CONFIG_USB_SERIAL_ARK3116 is not set
# CONFIG_USB_SERIAL_BELKIN is not set
CONFIG_USB_SERIAL_CH341=m
# CONFIG_USB_SERIAL_WHITEHEAT is not set
# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
CONFIG_USB_SERIAL_CP210X=m
# CONFIG_USB_SERIAL_CYPRESS_M8 is not set
# CONFIG_USB_SERIAL_EMPEG is not set
CONFIG_USB_SERIAL_FTDI_SIO=m
# CONFIG_USB_SERIAL_VISOR is not set
# CONFIG_USB_SERIAL_IPAQ is not set
# CONFIG_USB_SERIAL_IR is not set
# CONFIG_USB_SERIAL_EDGEPORT is not set
# CONFIG_USB_SERIAL_EDGEPORT_TI is not set
# CONFIG_USB_SERIAL_F81232 is not set
# CONFIG_USB_SERIAL_F8153X is not set
CONFIG_USB_SERIAL_GARMIN=m
# CONFIG_USB_SERIAL_IPW is not set
# CONFIG_USB_SERIAL_IUU is not set
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
CONFIG_USB_SERIAL_KEYSPAN=m
# CONFIG_USB_SERIAL_KLSI is not set
# CONFIG_USB_SERIAL_KOBIL_SCT is not set
# CONFIG_USB_SERIAL_MCT_U232 is not set
# CONFIG_USB_SERIAL_METRO is not set
# CONFIG_USB_SERIAL_MOS7720 is not set
# CONFIG_USB_SERIAL_MOS7840 is not set
# CONFIG_USB_SERIAL_MXUPORT is not set
# CONFIG_USB_SERIAL_NAVMAN is not set
CONFIG_USB_SERIAL_PL2303=m
# CONFIG_USB_SERIAL_OTI6858 is not set
# CONFIG_USB_SERIAL_QCAUX is not set
# CONFIG_USB_SERIAL_QUALCOMM is not set
# CONFIG_USB_SERIAL_SPCP8X5 is not set
# CONFIG_USB_SERIAL_SAFE is not set
# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set
# CONFIG_USB_SERIAL_SYMBOL is not set
# CONFIG_USB_SERIAL_TI is not set
# CONFIG_USB_SERIAL_CYBERJACK is not set
# CONFIG_USB_SERIAL_XIRCOM is not set
CONFIG_USB_SERIAL_WWAN=m
CONFIG_USB_SERIAL_OPTION=m
# CONFIG_USB_SERIAL_OMNINET is not set
# CONFIG_USB_SERIAL_OPTICON is not set
CONFIG_USB_SERIAL_XSENS_MT=m
# CONFIG_USB_SERIAL_WISHBONE is not set
# CONFIG_USB_SERIAL_SSU100 is not set
# CONFIG_USB_SERIAL_QT2 is not set
# CONFIG_USB_SERIAL_UPD78F0730 is not set
# CONFIG_USB_SERIAL_DEBUG is not set
#
# USB Miscellaneous drivers
#
CONFIG_USB_EMI62=m
CONFIG_USB_EMI26=m
# CONFIG_USB_ADUTUX is not set
CONFIG_USB_SEVSEG=m
# CONFIG_USB_LEGOTOWER is not set
CONFIG_USB_LCD=m
CONFIG_USB_CYPRESS_CY7C63=m
CONFIG_USB_CYTHERM=m
CONFIG_USB_IDMOUSE=m
# CONFIG_USB_FTDI_ELAN is not set
CONFIG_USB_APPLEDISPLAY=m
# CONFIG_APPLE_MFI_FASTCHARGE is not set
CONFIG_USB_LD=m
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
CONFIG_USB_TEST=m
CONFIG_USB_EHSET_TEST_FIXTURE=m
# CONFIG_USB_ISIGHTFW is not set
CONFIG_USB_YUREX=m
CONFIG_USB_EZUSB_FX2=m
# CONFIG_USB_HUB_USB251XB is not set
# CONFIG_USB_HSIC_USB3503 is not set
CONFIG_USB_HSIC_USB4604=m
# CONFIG_USB_LINK_LAYER_TEST is not set
# CONFIG_USB_CHAOSKEY is not set
#
# USB Physical Layer drivers
#
CONFIG_USB_PHY=y
# CONFIG_NOP_USB_XCEIV is not set
# CONFIG_USB_GPIO_VBUS is not set
# CONFIG_USB_ISP1301 is not set
CONFIG_USB_TEGRA_PHY=m
CONFIG_USB_ULPI=y
CONFIG_USB_ULPI_VIEWPORT=y
# end of USB Physical Layer drivers
CONFIG_USB_GADGET=y
# CONFIG_USB_GADGET_DEBUG is not set
# CONFIG_USB_GADGET_DEBUG_FILES is not set
# CONFIG_USB_GADGET_DEBUG_FS is not set
CONFIG_USB_GADGET_VBUS_DRAW=2
CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2
# CONFIG_U_SERIAL_CONSOLE is not set
#
# USB Peripheral Controller
#
# CONFIG_USB_FOTG210_UDC is not set
# CONFIG_USB_GR_UDC is not set
# CONFIG_USB_R8A66597 is not set
# CONFIG_USB_PXA27X is not set
# CONFIG_USB_MV_UDC is not set
# CONFIG_USB_MV_U3D is not set
# CONFIG_USB_SNP_UDC_PLAT is not set
# CONFIG_USB_M66592 is not set
# CONFIG_USB_BDC_UDC is not set
# CONFIG_USB_AMD5536UDC is not set
# CONFIG_USB_NET2272 is not set
# CONFIG_USB_NET2280 is not set
# CONFIG_USB_GOKU is not set
# CONFIG_USB_EG20T is not set
# CONFIG_USB_GADGET_XILINX is not set
# CONFIG_USB_MAX3420_UDC is not set
CONFIG_USB_TEGRA_XUDC=y
# CONFIG_USB_DUMMY_HCD is not set
# end of USB Peripheral Controller
CONFIG_USB_LIBCOMPOSITE=y
CONFIG_USB_F_ACM=y
CONFIG_USB_F_SS_LB=y
CONFIG_USB_U_SERIAL=y
CONFIG_USB_U_ETHER=y
CONFIG_USB_F_NCM=y
CONFIG_USB_F_ECM=y
CONFIG_USB_F_RNDIS=y
CONFIG_USB_F_MASS_STORAGE=y
CONFIG_USB_F_FS=y
CONFIG_USB_CONFIGFS=y
# CONFIG_USB_CONFIGFS_SERIAL is not set
CONFIG_USB_CONFIGFS_ACM=y
# CONFIG_USB_CONFIGFS_OBEX is not set
CONFIG_USB_CONFIGFS_NCM=y
CONFIG_USB_CONFIGFS_ECM=y
# CONFIG_USB_CONFIGFS_ECM_SUBSET is not set
CONFIG_USB_CONFIGFS_RNDIS=y
# CONFIG_USB_CONFIGFS_EEM is not set
CONFIG_USB_CONFIGFS_MASS_STORAGE=y
CONFIG_USB_CONFIGFS_F_LB_SS=y
CONFIG_USB_CONFIGFS_F_FS=y
# CONFIG_USB_CONFIGFS_F_UAC1 is not set
# CONFIG_USB_CONFIGFS_F_UAC1_LEGACY is not set
# CONFIG_USB_CONFIGFS_F_UAC2 is not set
# CONFIG_USB_CONFIGFS_F_MIDI is not set
# CONFIG_USB_CONFIGFS_F_HID is not set
# CONFIG_USB_CONFIGFS_F_UVC is not set
# CONFIG_USB_CONFIGFS_F_PRINTER is not set
#
# USB Gadget precomposed configurations
#
# CONFIG_USB_ZERO is not set
# CONFIG_USB_AUDIO is not set
# CONFIG_USB_ETH is not set
# CONFIG_USB_G_NCM is not set
# CONFIG_USB_GADGETFS is not set
# CONFIG_USB_FUNCTIONFS is not set
# CONFIG_USB_MASS_STORAGE is not set
# CONFIG_USB_G_SERIAL is not set
# CONFIG_USB_MIDI_GADGET is not set
# CONFIG_USB_G_PRINTER is not set
# CONFIG_USB_CDC_COMPOSITE is not set
# CONFIG_USB_G_ACM_MS is not set
# CONFIG_USB_G_MULTI is not set
# CONFIG_USB_G_HID is not set
# CONFIG_USB_G_DBGP is not set
# CONFIG_USB_G_WEBCAM is not set
# CONFIG_USB_RAW_GADGET is not set
# end of USB Gadget precomposed configurations
CONFIG_TYPEC=m
# CONFIG_TYPEC_TCPM is not set
CONFIG_TYPEC_UCSI=m
CONFIG_UCSI_CCG=m
# CONFIG_UCSI_ACPI is not set
# CONFIG_TYPEC_HD3SS3220 is not set
# CONFIG_TYPEC_TPS6598X is not set
CONFIG_TYPEC_STUSB160X=m
#
# USB Type-C Multiplexer/DeMultiplexer Switch support
#
# CONFIG_TYPEC_MUX_PI3USB30532 is not set
# end of USB Type-C Multiplexer/DeMultiplexer Switch support
#
# USB Type-C Alternate Mode drivers
#
# CONFIG_TYPEC_DP_ALTMODE is not set
# end of USB Type-C Alternate Mode drivers
CONFIG_USB_ROLE_SWITCH=y
CONFIG_MMC=y
CONFIG_PWRSEQ_EMMC=y
# CONFIG_PWRSEQ_SD8787 is not set
CONFIG_PWRSEQ_SIMPLE=y
CONFIG_MMC_BLOCK=y
CONFIG_MMC_BLOCK_MINORS=32
# CONFIG_SDIO_UART is not set
CONFIG_MMC_TEST=m
#
# MMC/SD/SDIO Host Controller Drivers
#
# CONFIG_MMC_DEBUG is not set
CONFIG_MMC_ARMMMCI=y
# CONFIG_MMC_STM32_SDMMC is not set
CONFIG_MMC_SDHCI=y
CONFIG_MMC_SDHCI_IO_ACCESSORS=y
# CONFIG_MMC_SDHCI_PCI is not set
# CONFIG_MMC_SDHCI_ACPI is not set
CONFIG_MMC_SDHCI_PLTFM=y
# CONFIG_MMC_SDHCI_OF_ARASAN is not set
# CONFIG_MMC_SDHCI_OF_ASPEED is not set
# CONFIG_MMC_SDHCI_OF_AT91 is not set
# CONFIG_MMC_SDHCI_OF_DWCMSHC is not set
# CONFIG_MMC_SDHCI_CADENCE is not set
CONFIG_MMC_SDHCI_TEGRA=y
# CONFIG_MMC_SDHCI_F_SDH30 is not set
# CONFIG_MMC_SDHCI_MILBEAUT is not set
# CONFIG_MMC_TIFM_SD is not set
CONFIG_MMC_SPI=m
# CONFIG_MMC_CB710 is not set
# CONFIG_MMC_VIA_SDMMC is not set
CONFIG_MMC_DW=y
CONFIG_MMC_DW_PLTFM=y
# CONFIG_MMC_DW_BLUEFIELD is not set
# CONFIG_MMC_DW_EXYNOS is not set
# CONFIG_MMC_DW_HI3798CV200 is not set
# CONFIG_MMC_DW_K3 is not set
# CONFIG_MMC_DW_PCI is not set
# CONFIG_MMC_VUB300 is not set
# CONFIG_MMC_USHC is not set
# CONFIG_MMC_USDHI6ROL0 is not set
CONFIG_MMC_CQHCI=y
# CONFIG_MMC_HSQ is not set
# CONFIG_MMC_TOSHIBA_PCI is not set
# CONFIG_MMC_MTK is not set
CONFIG_MMC_SDHCI_XENON=y
# CONFIG_MMC_SDHCI_OMAP is not set
# CONFIG_MMC_SDHCI_AM654 is not set
# CONFIG_MEMSTICK is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
# CONFIG_LEDS_CLASS_FLASH is not set
# CONFIG_LEDS_CLASS_MULTICOLOR is not set
# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set
#
# LED drivers
#
# CONFIG_LEDS_AN30259A is not set
# CONFIG_LEDS_AW2013 is not set
# CONFIG_LEDS_BCM6328 is not set
# CONFIG_LEDS_BCM6358 is not set
# CONFIG_LEDS_CR0014114 is not set
# CONFIG_LEDS_EL15203000 is not set
# CONFIG_LEDS_LM3530 is not set
# CONFIG_LEDS_LM3532 is not set
# CONFIG_LEDS_LM3642 is not set
# CONFIG_LEDS_LM3692X is not set
# CONFIG_LEDS_PCA9532 is not set
CONFIG_LEDS_GPIO=m
# CONFIG_LEDS_LP3944 is not set
# CONFIG_LEDS_LP3952 is not set
# CONFIG_LEDS_LP50XX is not set
# CONFIG_LEDS_LP55XX_COMMON is not set
# CONFIG_LEDS_LP8860 is not set
# CONFIG_LEDS_PCA955X is not set
# CONFIG_LEDS_PCA963X is not set
# CONFIG_LEDS_DAC124S085 is not set
CONFIG_LEDS_PWM=m
# CONFIG_LEDS_REGULATOR is not set
CONFIG_LEDS_BD2802=m
# CONFIG_LEDS_LT3593 is not set
# CONFIG_LEDS_TCA6507 is not set
# CONFIG_LEDS_TLC591XX is not set
# CONFIG_LEDS_LM355x is not set
CONFIG_LEDS_IS31FL319X=m
# CONFIG_LEDS_IS31FL32XX is not set
#
# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
#
# CONFIG_LEDS_BLINKM is not set
# CONFIG_LEDS_SYSCON is not set
# CONFIG_LEDS_MLXREG is not set
# CONFIG_LEDS_USER is not set
# CONFIG_LEDS_SPI_BYTE is not set
# CONFIG_LEDS_TI_LMU_COMMON is not set
#
# LED Triggers
#
CONFIG_LEDS_TRIGGERS=y
# CONFIG_LEDS_TRIGGER_TIMER is not set
# CONFIG_LEDS_TRIGGER_ONESHOT is not set
# CONFIG_LEDS_TRIGGER_DISK is not set
# CONFIG_LEDS_TRIGGER_MTD is not set
# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
# CONFIG_LEDS_TRIGGER_CPU is not set
# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
# CONFIG_LEDS_TRIGGER_GPIO is not set
# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
#
# iptables trigger is under Netfilter config (LED target)
#
# CONFIG_LEDS_TRIGGER_TRANSIENT is not set
# CONFIG_LEDS_TRIGGER_CAMERA is not set
# CONFIG_LEDS_TRIGGER_PANIC is not set
# CONFIG_LEDS_TRIGGER_NETDEV is not set
# CONFIG_LEDS_TRIGGER_PATTERN is not set
# CONFIG_LEDS_TRIGGER_AUDIO is not set
# CONFIG_ACCESSIBILITY is not set
CONFIG_INFINIBAND=m
CONFIG_INFINIBAND_USER_MAD=m
CONFIG_INFINIBAND_USER_ACCESS=m
CONFIG_INFINIBAND_USER_MEM=y
CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
CONFIG_INFINIBAND_ADDR_TRANS=y
CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y
CONFIG_INFINIBAND_VIRT_DMA=y
CONFIG_INFINIBAND_MTHCA=m
CONFIG_INFINIBAND_MTHCA_DEBUG=y
# CONFIG_INFINIBAND_CXGB4 is not set
# CONFIG_INFINIBAND_EFA is not set
# CONFIG_INFINIBAND_I40IW is not set
CONFIG_MLX4_INFINIBAND=m
CONFIG_MLX5_INFINIBAND=m
# CONFIG_INFINIBAND_OCRDMA is not set
# CONFIG_INFINIBAND_HNS is not set
# CONFIG_RDMA_RXE is not set
# CONFIG_RDMA_SIW is not set
CONFIG_INFINIBAND_IPOIB=m
CONFIG_INFINIBAND_IPOIB_CM=y
CONFIG_INFINIBAND_IPOIB_DEBUG=y
# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
CONFIG_INFINIBAND_SRP=m
# CONFIG_INFINIBAND_ISER is not set
# CONFIG_INFINIBAND_RTRS_CLIENT is not set
# CONFIG_INFINIBAND_RTRS_SERVER is not set
CONFIG_EDAC_SUPPORT=y
# CONFIG_EDAC is not set
CONFIG_RTC_LIB=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc1"
CONFIG_RTC_SYSTOHC=y
CONFIG_RTC_SYSTOHC_DEVICE="rtc1"
# CONFIG_RTC_DEBUG is not set
# CONFIG_RTC_NVMEM is not set
#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
CONFIG_RTC_INTF_DEV=y
# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
# CONFIG_RTC_DRV_TEST is not set
#
# I2C RTC drivers
#
# CONFIG_RTC_DRV_ABB5ZES3 is not set
# CONFIG_RTC_DRV_ABEOZ9 is not set
# CONFIG_RTC_DRV_ABX80X is not set
# CONFIG_RTC_DRV_DS1307 is not set
# CONFIG_RTC_DRV_DS1374 is not set
# CONFIG_RTC_DRV_DS1672 is not set
# CONFIG_RTC_DRV_HYM8563 is not set
# CONFIG_RTC_DRV_MAX6900 is not set
CONFIG_RTC_DRV_MAX77686=y
# CONFIG_RTC_DRV_RK808 is not set
# CONFIG_RTC_DRV_RS5C372 is not set
# CONFIG_RTC_DRV_ISL1208 is not set
# CONFIG_RTC_DRV_ISL12022 is not set
# CONFIG_RTC_DRV_ISL12026 is not set
# CONFIG_RTC_DRV_X1205 is not set
# CONFIG_RTC_DRV_PCF8523 is not set
# CONFIG_RTC_DRV_PCF85063 is not set
# CONFIG_RTC_DRV_PCF85363 is not set
# CONFIG_RTC_DRV_PCF8563 is not set
# CONFIG_RTC_DRV_PCF8583 is not set
# CONFIG_RTC_DRV_M41T80 is not set
# CONFIG_RTC_DRV_BQ32K is not set
# CONFIG_RTC_DRV_S35390A is not set
# CONFIG_RTC_DRV_FM3130 is not set
# CONFIG_RTC_DRV_RX8010 is not set
# CONFIG_RTC_DRV_RX8581 is not set
CONFIG_RTC_DRV_RX8025=m
# CONFIG_RTC_DRV_EM3027 is not set
# CONFIG_RTC_DRV_RV3028 is not set
# CONFIG_RTC_DRV_RV3032 is not set
# CONFIG_RTC_DRV_RV8803 is not set
# CONFIG_RTC_DRV_S5M is not set
# CONFIG_RTC_DRV_SD3078 is not set
#
# SPI RTC drivers
#
# CONFIG_RTC_DRV_M41T93 is not set
# CONFIG_RTC_DRV_M41T94 is not set
# CONFIG_RTC_DRV_DS1302 is not set
# CONFIG_RTC_DRV_DS1305 is not set
# CONFIG_RTC_DRV_DS1343 is not set
# CONFIG_RTC_DRV_DS1347 is not set
# CONFIG_RTC_DRV_DS1390 is not set
# CONFIG_RTC_DRV_MAX6916 is not set
# CONFIG_RTC_DRV_R9701 is not set
# CONFIG_RTC_DRV_RX4581 is not set
# CONFIG_RTC_DRV_RX6110 is not set
# CONFIG_RTC_DRV_RS5C348 is not set
# CONFIG_RTC_DRV_MAX6902 is not set
# CONFIG_RTC_DRV_PCF2123 is not set
# CONFIG_RTC_DRV_MCP795 is not set
CONFIG_RTC_I2C_AND_SPI=y
#
# SPI and I2C RTC drivers
#
# CONFIG_RTC_DRV_DS3232 is not set
# CONFIG_RTC_DRV_PCF2127 is not set
# CONFIG_RTC_DRV_RV3029C2 is not set
#
# Platform RTC drivers
#
# CONFIG_RTC_DRV_DS1286 is not set
# CONFIG_RTC_DRV_DS1511 is not set
# CONFIG_RTC_DRV_DS1553 is not set
# CONFIG_RTC_DRV_DS1685_FAMILY is not set
# CONFIG_RTC_DRV_DS1742 is not set
# CONFIG_RTC_DRV_DS2404 is not set
# CONFIG_RTC_DRV_EFI is not set
# CONFIG_RTC_DRV_STK17TA8 is not set
# CONFIG_RTC_DRV_M48T86 is not set
# CONFIG_RTC_DRV_M48T35 is not set
# CONFIG_RTC_DRV_M48T59 is not set
# CONFIG_RTC_DRV_MSM6242 is not set
# CONFIG_RTC_DRV_BQ4802 is not set
# CONFIG_RTC_DRV_RP5C01 is not set
# CONFIG_RTC_DRV_V3020 is not set
# CONFIG_RTC_DRV_ZYNQMP is not set
#
# on-CPU RTC drivers
#
# CONFIG_RTC_DRV_PL030 is not set
# CONFIG_RTC_DRV_PL031 is not set
# CONFIG_RTC_DRV_CADENCE is not set
# CONFIG_RTC_DRV_FTRTC010 is not set
CONFIG_RTC_DRV_TEGRA=y
# CONFIG_RTC_DRV_R7301 is not set
#
# HID Sensor RTC drivers
#
# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
CONFIG_DMADEVICES=y
# CONFIG_DMADEVICES_DEBUG is not set
#
# DMA Devices
#
CONFIG_DMA_ENGINE=y
CONFIG_DMA_VIRTUAL_CHANNELS=m
CONFIG_DMA_ACPI=y
CONFIG_DMA_OF=y
# CONFIG_ALTERA_MSGDMA is not set
# CONFIG_AMBA_PL08X is not set
# CONFIG_BCM_SBA_RAID is not set
# CONFIG_DW_AXI_DMAC is not set
# CONFIG_FSL_EDMA is not set
# CONFIG_FSL_QDMA is not set
# CONFIG_HISI_DMA is not set
# CONFIG_INTEL_IDMA64 is not set
# CONFIG_MV_XOR_V2 is not set
# CONFIG_PL330_DMA is not set
# CONFIG_PLX_DMA is not set
CONFIG_TEGRA20_APB_DMA=y
CONFIG_TEGRA210_ADMA=m
# CONFIG_XILINX_DMA is not set
# CONFIG_XILINX_ZYNQMP_DMA is not set
# CONFIG_XILINX_ZYNQMP_DPDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
# CONFIG_QCOM_HIDMA is not set
# CONFIG_DW_DMAC is not set
# CONFIG_DW_DMAC_PCI is not set
# CONFIG_DW_EDMA is not set
# CONFIG_DW_EDMA_PCIE is not set
# CONFIG_SF_PDMA is not set
#
# DMA Clients
#
# CONFIG_ASYNC_TX_DMA is not set
CONFIG_DMATEST=y
CONFIG_DMA_ENGINE_RAID=y
#
# DMABUF options
#
CONFIG_SYNC_FILE=y
# CONFIG_SW_SYNC is not set
# CONFIG_UDMABUF is not set
# CONFIG_DMABUF_MOVE_NOTIFY is not set
# CONFIG_DMABUF_SELFTESTS is not set
CONFIG_DMABUF_HEAPS=y
CONFIG_DMABUF_HEAPS_SYSTEM=y
CONFIG_DMABUF_HEAPS_CMA=y
# end of DMABUF options
# CONFIG_AUXDISPLAY is not set
CONFIG_UIO=m
# CONFIG_UIO_CIF is not set
# CONFIG_UIO_PDRV_GENIRQ is not set
# CONFIG_UIO_DMEM_GENIRQ is not set
# CONFIG_UIO_AEC is not set
# CONFIG_UIO_SERCOS3 is not set
# CONFIG_UIO_PCI_GENERIC is not set
# CONFIG_UIO_NETX is not set
# CONFIG_UIO_PRUSS is not set
# CONFIG_UIO_MF624 is not set
# CONFIG_UIO_IVSHMEM is not set
CONFIG_VFIO_IOMMU_TYPE1=m
CONFIG_VFIO_VIRQFD=m
CONFIG_VFIO=m
# CONFIG_VFIO_NOIOMMU is not set
CONFIG_VFIO_PCI=m
CONFIG_VFIO_PCI_MMAP=y
CONFIG_VFIO_PCI_INTX=y
# CONFIG_VFIO_PLATFORM is not set
# CONFIG_VFIO_MDEV is not set
CONFIG_VIRT_DRIVERS=y
CONFIG_JAILHOUSE_DBGCON=y
CONFIG_VIRTIO=y
CONFIG_VIRTIO_MENU=y
CONFIG_VIRTIO_PCI=m
CONFIG_VIRTIO_PCI_LEGACY=y
CONFIG_VIRTIO_BALLOON=m
# CONFIG_VIRTIO_INPUT is not set
CONFIG_VIRTIO_MMIO=m
# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
# CONFIG_VDPA is not set
CONFIG_VHOST_MENU=y
# CONFIG_VHOST_NET is not set
# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
#
# Microsoft Hyper-V guest support
#
# end of Microsoft Hyper-V guest support
# CONFIG_GREYBUS is not set
CONFIG_STAGING=y
CONFIG_PRISM2_USB=m
# CONFIG_COMEDI is not set
CONFIG_RTL8192U=m
CONFIG_RTLLIB=m
CONFIG_RTLLIB_CRYPTO_CCMP=m
CONFIG_RTLLIB_CRYPTO_TKIP=m
CONFIG_RTLLIB_CRYPTO_WEP=m
CONFIG_RTL8192E=m
# CONFIG_RTL8723BS is not set
CONFIG_R8712U=m
CONFIG_R8188EU=m
CONFIG_88EU_AP_MODE=y
# CONFIG_RTS5208 is not set
# CONFIG_VT6655 is not set
# CONFIG_VT6656 is not set
#
# IIO staging drivers
#
#
# Accelerometers
#
# CONFIG_ADIS16203 is not set
# CONFIG_ADIS16240 is not set
# end of Accelerometers
#
# Analog to digital converters
#
# CONFIG_AD7816 is not set
# CONFIG_AD7280 is not set
# end of Analog to digital converters
#
# Analog digital bi-direction converters
#
# CONFIG_ADT7316 is not set
# end of Analog digital bi-direction converters
#
# Capacitance to digital converters
#
# CONFIG_AD7150 is not set
# CONFIG_AD7746 is not set
# end of Capacitance to digital converters
#
# Direct Digital Synthesis
#
# CONFIG_AD9832 is not set
# CONFIG_AD9834 is not set
# end of Direct Digital Synthesis
#
# Network Analyzer, Impedance Converters
#
# CONFIG_AD5933 is not set
# end of Network Analyzer, Impedance Converters
#
# Active energy metering IC
#
# CONFIG_ADE7854 is not set
# end of Active energy metering IC
#
# Resolver to digital converters
#
# CONFIG_AD2S1210 is not set
# end of Resolver to digital converters
# end of IIO staging drivers
# CONFIG_FB_SM750 is not set
# CONFIG_MFD_NVEC is not set
# CONFIG_STAGING_MEDIA is not set
#
# Android
#
# end of Android
# CONFIG_STAGING_BOARD is not set
# CONFIG_LTE_GDM724X is not set
# CONFIG_GS_FPGABOOT is not set
# CONFIG_UNISYSSPAR is not set
# CONFIG_FB_TFT is not set
# CONFIG_KS7010 is not set
# CONFIG_PI433 is not set
#
# Gasket devices
#
# CONFIG_STAGING_GASKET_FRAMEWORK is not set
# end of Gasket devices
# CONFIG_XIL_AXIS_FIFO is not set
# CONFIG_FIELDBUS_DEV is not set
# CONFIG_KPC2000 is not set
CONFIG_QLGE=m
# CONFIG_WFX is not set
# CONFIG_SPMI_HISI3670 is not set
# CONFIG_MFD_HI6421_SPMI is not set
# CONFIG_GOLDFISH is not set
# CONFIG_CHROME_PLATFORMS is not set
# CONFIG_MELLANOX_PLATFORM is not set
CONFIG_HAVE_CLK=y
CONFIG_CLKDEV_LOOKUP=y
CONFIG_HAVE_CLK_PREPARE=y
CONFIG_COMMON_CLK=y
# CONFIG_COMMON_CLK_MAX77686 is not set
# CONFIG_COMMON_CLK_MAX9485 is not set
# CONFIG_COMMON_CLK_RK808 is not set
# CONFIG_COMMON_CLK_SCPI is not set
# CONFIG_COMMON_CLK_SI5341 is not set
# CONFIG_COMMON_CLK_SI5351 is not set
# CONFIG_COMMON_CLK_SI514 is not set
# CONFIG_COMMON_CLK_SI544 is not set
# CONFIG_COMMON_CLK_SI570 is not set
# CONFIG_COMMON_CLK_CDCE706 is not set
# CONFIG_COMMON_CLK_CDCE925 is not set
# CONFIG_COMMON_CLK_CS2000_CP is not set
# CONFIG_COMMON_CLK_S2MPS11 is not set
# CONFIG_CLK_QORIQ is not set
# CONFIG_COMMON_CLK_XGENE is not set
# CONFIG_COMMON_CLK_PWM is not set
# CONFIG_COMMON_CLK_VC5 is not set
# CONFIG_COMMON_CLK_BD718XX is not set
# CONFIG_COMMON_CLK_FIXED_MMIO is not set
CONFIG_CLK_TEGRA_BPMP=y
CONFIG_TEGRA_CLK_DFLL=y
# CONFIG_HWSPINLOCK is not set
#
# Clock Source drivers
#
CONFIG_TIMER_OF=y
CONFIG_TIMER_ACPI=y
CONFIG_TIMER_PROBE=y
CONFIG_CLKSRC_MMIO=y
CONFIG_TEGRA_TIMER=y
CONFIG_ARM_ARCH_TIMER=y
CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y
CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y
CONFIG_FSL_ERRATUM_A008585=y
CONFIG_HISILICON_ERRATUM_161010101=y
CONFIG_ARM64_ERRATUM_858921=y
# CONFIG_MICROCHIP_PIT64B is not set
# end of Clock Source drivers
CONFIG_MAILBOX=y
CONFIG_ARM_MHU=m
# CONFIG_PLATFORM_MHU is not set
# CONFIG_PL320_MBOX is not set
CONFIG_PCC=y
# CONFIG_ALTERA_MBOX is not set
# CONFIG_MAILBOX_TEST is not set
CONFIG_TEGRA_HSP_MBOX=y
CONFIG_IOMMU_IOVA=y
CONFIG_IOMMU_API=y
CONFIG_IOMMU_SUPPORT=y
#
# Generic IOMMU Pagetable Support
#
CONFIG_IOMMU_IO_PGTABLE=y
CONFIG_IOMMU_IO_PGTABLE_LPAE=y
# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set
# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
# end of Generic IOMMU Pagetable Support
# CONFIG_IOMMU_DEBUGFS is not set
# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set
CONFIG_OF_IOMMU=y
CONFIG_IOMMU_DMA=y
CONFIG_TEGRA_IOMMU_SMMU=y
CONFIG_ARM_SMMU=y
# CONFIG_ARM_SMMU_LEGACY_DT_BINDINGS is not set
CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT=y
CONFIG_ARM_SMMU_V3=y
# CONFIG_ARM_SMMU_V3_SVA is not set
# CONFIG_VIRTIO_IOMMU is not set
#
# Remoteproc drivers
#
# CONFIG_REMOTEPROC is not set
# end of Remoteproc drivers
#
# Rpmsg drivers
#
# CONFIG_RPMSG_QCOM_GLINK_RPM is not set
# CONFIG_RPMSG_VIRTIO is not set
# end of Rpmsg drivers
CONFIG_SOUNDWIRE=m
#
# SoundWire Devices
#
# CONFIG_SOUNDWIRE_INTEL is not set
# CONFIG_SOUNDWIRE_QCOM is not set
#
# SOC (System On Chip) specific Drivers
#
#
# Amlogic SoC drivers
#
# end of Amlogic SoC drivers
#
# Aspeed SoC drivers
#
# end of Aspeed SoC drivers
#
# Broadcom SoC drivers
#
# CONFIG_SOC_BRCMSTB is not set
# end of Broadcom SoC drivers
#
# NXP/Freescale QorIQ SoC drivers
#
# CONFIG_QUICC_ENGINE is not set
# CONFIG_FSL_RCPM is not set
# end of NXP/Freescale QorIQ SoC drivers
#
# i.MX SoC drivers
#
# end of i.MX SoC drivers
#
# Qualcomm SoC drivers
#
# end of Qualcomm SoC drivers
# CONFIG_ARCH_TEGRA_132_SOC is not set
CONFIG_ARCH_TEGRA_210_SOC=y
CONFIG_ARCH_TEGRA_186_SOC=y
CONFIG_ARCH_TEGRA_194_SOC=y
CONFIG_ARCH_TEGRA_234_SOC=y
CONFIG_SOC_TEGRA_FUSE=y
CONFIG_SOC_TEGRA_FLOWCTRL=y
CONFIG_SOC_TEGRA_PMC=y
CONFIG_SOC_TEGRA_POWERGATE_BPMP=y
# CONFIG_SOC_TI is not set
#
# Xilinx SoC drivers
#
# CONFIG_XILINX_VCU is not set
# end of Xilinx SoC drivers
# end of SOC (System On Chip) specific Drivers
CONFIG_PM_DEVFREQ=y
#
# DEVFREQ Governors
#
CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y
CONFIG_DEVFREQ_GOV_PERFORMANCE=y
# CONFIG_DEVFREQ_GOV_POWERSAVE is not set
CONFIG_DEVFREQ_GOV_USERSPACE=y
# CONFIG_DEVFREQ_GOV_PASSIVE is not set
#
# DEVFREQ Drivers
#
# CONFIG_ARM_TEGRA_DEVFREQ is not set
# CONFIG_PM_DEVFREQ_EVENT is not set
CONFIG_EXTCON=y
#
# Extcon Device Drivers
#
# CONFIG_EXTCON_ADC_JACK is not set
# CONFIG_EXTCON_FSA9480 is not set
CONFIG_EXTCON_GPIO=y
# CONFIG_EXTCON_MAX3355 is not set
# CONFIG_EXTCON_PTN5150 is not set
# CONFIG_EXTCON_RT8973A is not set
# CONFIG_EXTCON_SM5502 is not set
CONFIG_EXTCON_USB_GPIO=y
CONFIG_MEMORY=y
# CONFIG_ARM_PL172_MPMC is not set
CONFIG_TEGRA_MC=y
# CONFIG_TEGRA210_EMC is not set
CONFIG_IIO=y
CONFIG_IIO_BUFFER=y
# CONFIG_IIO_BUFFER_CB is not set
CONFIG_IIO_BUFFER_DMA=y
CONFIG_IIO_BUFFER_DMAENGINE=y
CONFIG_IIO_BUFFER_HW_CONSUMER=y
CONFIG_IIO_KFIFO_BUF=m
CONFIG_IIO_TRIGGERED_BUFFER=m
# CONFIG_IIO_CONFIGFS is not set
CONFIG_IIO_TRIGGER=y
CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
# CONFIG_IIO_SW_DEVICE is not set
# CONFIG_IIO_SW_TRIGGER is not set
# CONFIG_IIO_TRIGGERED_EVENT is not set
#
# Accelerometers
#
# CONFIG_ADIS16201 is not set
# CONFIG_ADIS16209 is not set
# CONFIG_ADXL345_I2C is not set
# CONFIG_ADXL345_SPI is not set
# CONFIG_ADXL372_SPI is not set
# CONFIG_ADXL372_I2C is not set
# CONFIG_BMA180 is not set
# CONFIG_BMA220 is not set
# CONFIG_BMA400 is not set
# CONFIG_BMC150_ACCEL is not set
# CONFIG_DA280 is not set
# CONFIG_DA311 is not set
# CONFIG_DMARD06 is not set
# CONFIG_DMARD09 is not set
# CONFIG_DMARD10 is not set
CONFIG_HID_SENSOR_ACCEL_3D=m
# CONFIG_IIO_ST_ACCEL_3AXIS is not set
# CONFIG_KXSD9 is not set
# CONFIG_KXCJK1013 is not set
# CONFIG_MC3230 is not set
# CONFIG_MMA7455_I2C is not set
# CONFIG_MMA7455_SPI is not set
# CONFIG_MMA7660 is not set
# CONFIG_MMA8452 is not set
# CONFIG_MMA9551 is not set
# CONFIG_MMA9553 is not set
# CONFIG_MXC4005 is not set
# CONFIG_MXC6255 is not set
# CONFIG_SCA3000 is not set
# CONFIG_STK8312 is not set
# CONFIG_STK8BA50 is not set
# end of Accelerometers
#
# Analog to digital converters
#
# CONFIG_AD7091R5 is not set
# CONFIG_AD7124 is not set
# CONFIG_AD7192 is not set
# CONFIG_AD7266 is not set
# CONFIG_AD7291 is not set
# CONFIG_AD7292 is not set
# CONFIG_AD7298 is not set
# CONFIG_AD7476 is not set
# CONFIG_AD7606_IFACE_PARALLEL is not set
# CONFIG_AD7606_IFACE_SPI is not set
# CONFIG_AD7766 is not set
# CONFIG_AD7768_1 is not set
# CONFIG_AD7780 is not set
# CONFIG_AD7791 is not set
# CONFIG_AD7793 is not set
# CONFIG_AD7887 is not set
# CONFIG_AD7923 is not set
# CONFIG_AD7949 is not set
# CONFIG_AD799X is not set
CONFIG_AD9467=y
CONFIG_ADI_AXI_ADC=y
# CONFIG_CC10001_ADC is not set
# CONFIG_ENVELOPE_DETECTOR is not set
# CONFIG_HI8435 is not set
# CONFIG_HX711 is not set
# CONFIG_INA2XX_ADC is not set
# CONFIG_LTC2471 is not set
# CONFIG_LTC2485 is not set
# CONFIG_LTC2496 is not set
# CONFIG_LTC2497 is not set
# CONFIG_MAX1027 is not set
# CONFIG_MAX11100 is not set
# CONFIG_MAX1118 is not set
# CONFIG_MAX1241 is not set
# CONFIG_MAX1363 is not set
# CONFIG_MAX9611 is not set
# CONFIG_MCP320X is not set
# CONFIG_MCP3422 is not set
# CONFIG_MCP3911 is not set
# CONFIG_NAU7802 is not set
CONFIG_QCOM_VADC_COMMON=m
# CONFIG_QCOM_SPMI_IADC is not set
# CONFIG_QCOM_SPMI_VADC is not set
CONFIG_QCOM_SPMI_ADC5=m
# CONFIG_SD_ADC_MODULATOR is not set
# CONFIG_TI_ADC081C is not set
# CONFIG_TI_ADC0832 is not set
# CONFIG_TI_ADC084S021 is not set
# CONFIG_TI_ADC12138 is not set
# CONFIG_TI_ADC108S102 is not set
# CONFIG_TI_ADC128S052 is not set
# CONFIG_TI_ADC161S626 is not set
# CONFIG_TI_ADS1015 is not set
# CONFIG_TI_ADS7950 is not set
# CONFIG_TI_ADS8344 is not set
# CONFIG_TI_ADS8688 is not set
# CONFIG_TI_ADS124S08 is not set
# CONFIG_TI_TLC4541 is not set
# CONFIG_VF610_ADC is not set
# CONFIG_XILINX_XADC is not set
# end of Analog to digital converters
#
# Analog Front Ends
#
# CONFIG_IIO_RESCALE is not set
# end of Analog Front Ends
#
# Amplifiers
#
# CONFIG_AD8366 is not set
# CONFIG_HMC425 is not set
# end of Amplifiers
#
# Chemical Sensors
#
# CONFIG_ATLAS_PH_SENSOR is not set
# CONFIG_ATLAS_EZO_SENSOR is not set
# CONFIG_BME680 is not set
# CONFIG_CCS811 is not set
# CONFIG_IAQCORE is not set
# CONFIG_PMS7003 is not set
# CONFIG_SCD30_CORE is not set
# CONFIG_SENSIRION_SGP30 is not set
# CONFIG_SPS30 is not set
# CONFIG_VZ89X is not set
# end of Chemical Sensors
#
# Hid Sensor IIO Common
#
CONFIG_HID_SENSOR_IIO_COMMON=m
CONFIG_HID_SENSOR_IIO_TRIGGER=m
# end of Hid Sensor IIO Common
#
# SSP Sensor Common
#
# CONFIG_IIO_SSP_SENSORHUB is not set
# end of SSP Sensor Common
#
# Digital to analog converters
#
# CONFIG_AD5064 is not set
# CONFIG_AD5360 is not set
# CONFIG_AD5380 is not set
# CONFIG_AD5421 is not set
# CONFIG_AD5446 is not set
# CONFIG_AD5449 is not set
# CONFIG_AD5592R is not set
# CONFIG_AD5593R is not set
# CONFIG_AD5504 is not set
# CONFIG_AD5624R_SPI is not set
# CONFIG_AD5686_SPI is not set
# CONFIG_AD5696_I2C is not set
# CONFIG_AD5755 is not set
# CONFIG_AD5758 is not set
# CONFIG_AD5761 is not set
# CONFIG_AD5764 is not set
# CONFIG_AD5770R is not set
# CONFIG_AD5791 is not set
# CONFIG_AD7303 is not set
# CONFIG_AD8801 is not set
# CONFIG_DPOT_DAC is not set
CONFIG_DS4424=m
# CONFIG_LTC1660 is not set
# CONFIG_LTC2632 is not set
# CONFIG_M62332 is not set
# CONFIG_MAX517 is not set
# CONFIG_MAX5821 is not set
# CONFIG_MCP4725 is not set
# CONFIG_MCP4922 is not set
# CONFIG_TI_DAC082S085 is not set
# CONFIG_TI_DAC5571 is not set
# CONFIG_TI_DAC7311 is not set
# CONFIG_TI_DAC7612 is not set
# CONFIG_VF610_DAC is not set
# end of Digital to analog converters
#
# IIO dummy driver
#
# end of IIO dummy driver
#
# Frequency Synthesizers DDS/PLL
#
#
# Clock Generator/Distribution
#
# CONFIG_AD9523 is not set
# end of Clock Generator/Distribution
#
# Phase-Locked Loop (PLL) frequency synthesizers
#
# CONFIG_ADF4350 is not set
# CONFIG_ADF4371 is not set
# end of Phase-Locked Loop (PLL) frequency synthesizers
# end of Frequency Synthesizers DDS/PLL
#
# Digital gyroscope sensors
#
# CONFIG_ADIS16080 is not set
# CONFIG_ADIS16130 is not set
# CONFIG_ADIS16136 is not set
# CONFIG_ADIS16260 is not set
# CONFIG_ADXRS290 is not set
# CONFIG_ADXRS450 is not set
# CONFIG_BMG160 is not set
# CONFIG_FXAS21002C is not set
CONFIG_HID_SENSOR_GYRO_3D=m
# CONFIG_MPU3050_I2C is not set
# CONFIG_IIO_ST_GYRO_3AXIS is not set
# CONFIG_ITG3200 is not set
# end of Digital gyroscope sensors
#
# Health Sensors
#
#
# Heart Rate Monitors
#
# CONFIG_AFE4403 is not set
# CONFIG_AFE4404 is not set
# CONFIG_MAX30100 is not set
# CONFIG_MAX30102 is not set
# end of Heart Rate Monitors
# end of Health Sensors
#
# Humidity sensors
#
# CONFIG_AM2315 is not set
# CONFIG_DHT11 is not set
# CONFIG_HDC100X is not set
# CONFIG_HDC2010 is not set
# CONFIG_HID_SENSOR_HUMIDITY is not set
# CONFIG_HTS221 is not set
# CONFIG_HTU21 is not set
# CONFIG_SI7005 is not set
# CONFIG_SI7020 is not set
# end of Humidity sensors
#
# Inertial measurement units
#
# CONFIG_ADIS16400 is not set
# CONFIG_ADIS16460 is not set
# CONFIG_ADIS16475 is not set
# CONFIG_ADIS16480 is not set
# CONFIG_BMI160_I2C is not set
# CONFIG_BMI160_SPI is not set
# CONFIG_FXOS8700_I2C is not set
# CONFIG_FXOS8700_SPI is not set
# CONFIG_KMX61 is not set
# CONFIG_INV_ICM42600_I2C is not set
# CONFIG_INV_ICM42600_SPI is not set
# CONFIG_INV_MPU6050_I2C is not set
# CONFIG_INV_MPU6050_SPI is not set
# CONFIG_IIO_ST_LSM6DSX is not set
# end of Inertial measurement units
#
# Light sensors
#
# CONFIG_ACPI_ALS is not set
# CONFIG_ADJD_S311 is not set
# CONFIG_ADUX1020 is not set
# CONFIG_AL3010 is not set
# CONFIG_AL3320A is not set
# CONFIG_APDS9300 is not set
# CONFIG_APDS9960 is not set
# CONFIG_AS73211 is not set
# CONFIG_BH1750 is not set
# CONFIG_BH1780 is not set
# CONFIG_CM32181 is not set
# CONFIG_CM3232 is not set
# CONFIG_CM3323 is not set
# CONFIG_CM3605 is not set
# CONFIG_CM36651 is not set
# CONFIG_GP2AP002 is not set
# CONFIG_GP2AP020A00F is not set
# CONFIG_SENSORS_ISL29018 is not set
# CONFIG_SENSORS_ISL29028 is not set
# CONFIG_ISL29125 is not set
# CONFIG_HID_SENSOR_ALS is not set
# CONFIG_HID_SENSOR_PROX is not set
# CONFIG_JSA1212 is not set
# CONFIG_RPR0521 is not set
# CONFIG_LTR501 is not set
# CONFIG_LV0104CS is not set
# CONFIG_MAX44000 is not set
# CONFIG_MAX44009 is not set
# CONFIG_NOA1305 is not set
# CONFIG_OPT3001 is not set
# CONFIG_PA12203001 is not set
# CONFIG_SI1133 is not set
# CONFIG_SI1145 is not set
# CONFIG_STK3310 is not set
# CONFIG_ST_UVIS25 is not set
# CONFIG_TCS3414 is not set
# CONFIG_TCS3472 is not set
# CONFIG_SENSORS_TSL2563 is not set
# CONFIG_TSL2583 is not set
# CONFIG_TSL2772 is not set
# CONFIG_TSL4531 is not set
# CONFIG_US5182D is not set
# CONFIG_VCNL4000 is not set
# CONFIG_VCNL4035 is not set
# CONFIG_VEML6030 is not set
# CONFIG_VEML6070 is not set
# CONFIG_VL6180 is not set
# CONFIG_ZOPT2201 is not set
# end of Light sensors
#
# Magnetometer sensors
#
# CONFIG_AK8974 is not set
# CONFIG_AK8975 is not set
# CONFIG_AK09911 is not set
# CONFIG_BMC150_MAGN_I2C is not set
# CONFIG_BMC150_MAGN_SPI is not set
# CONFIG_MAG3110 is not set
# CONFIG_HID_SENSOR_MAGNETOMETER_3D is not set
# CONFIG_MMC35240 is not set
# CONFIG_IIO_ST_MAGN_3AXIS is not set
# CONFIG_SENSORS_HMC5843_I2C is not set
# CONFIG_SENSORS_HMC5843_SPI is not set
# CONFIG_SENSORS_RM3100_I2C is not set
# CONFIG_SENSORS_RM3100_SPI is not set
# end of Magnetometer sensors
#
# Multiplexers
#
# CONFIG_IIO_MUX is not set
# end of Multiplexers
#
# Inclinometer sensors
#
# CONFIG_HID_SENSOR_INCLINOMETER_3D is not set
# CONFIG_HID_SENSOR_DEVICE_ROTATION is not set
# end of Inclinometer sensors
#
# Triggers - standalone
#
# CONFIG_IIO_INTERRUPT_TRIGGER is not set
# CONFIG_IIO_SYSFS_TRIGGER is not set
# end of Triggers - standalone
#
# Linear and angular position sensors
#
# end of Linear and angular position sensors
#
# Digital potentiometers
#
# CONFIG_AD5272 is not set
# CONFIG_DS1803 is not set
# CONFIG_MAX5432 is not set
# CONFIG_MAX5481 is not set
# CONFIG_MAX5487 is not set
# CONFIG_MCP4018 is not set
# CONFIG_MCP4131 is not set
# CONFIG_MCP4531 is not set
# CONFIG_MCP41010 is not set
# CONFIG_TPL0102 is not set
# end of Digital potentiometers
#
# Digital potentiostats
#
# CONFIG_LMP91000 is not set
# end of Digital potentiostats
#
# Pressure sensors
#
# CONFIG_ABP060MG is not set
# CONFIG_BMP280 is not set
# CONFIG_DLHL60D is not set
# CONFIG_DPS310 is not set
# CONFIG_HID_SENSOR_PRESS is not set
# CONFIG_HP03 is not set
# CONFIG_ICP10100 is not set
# CONFIG_MPL115_I2C is not set
# CONFIG_MPL115_SPI is not set
# CONFIG_MPL3115 is not set
# CONFIG_MS5611 is not set
# CONFIG_MS5637 is not set
# CONFIG_IIO_ST_PRESS is not set
# CONFIG_T5403 is not set
# CONFIG_HP206C is not set
# CONFIG_ZPA2326 is not set
# end of Pressure sensors
#
# Lightning sensors
#
# CONFIG_AS3935 is not set
# end of Lightning sensors
#
# Proximity and distance sensors
#
# CONFIG_ISL29501 is not set
# CONFIG_LIDAR_LITE_V2 is not set
# CONFIG_MB1232 is not set
# CONFIG_PING is not set
# CONFIG_RFD77402 is not set
# CONFIG_SRF04 is not set
# CONFIG_SX9310 is not set
# CONFIG_SX9500 is not set
# CONFIG_SRF08 is not set
# CONFIG_VCNL3020 is not set
# CONFIG_VL53L0X_I2C is not set
# end of Proximity and distance sensors
#
# Resolver to digital converters
#
# CONFIG_AD2S90 is not set
# CONFIG_AD2S1200 is not set
# end of Resolver to digital converters
#
# Temperature sensors
#
# CONFIG_LTC2983 is not set
# CONFIG_MAXIM_THERMOCOUPLE is not set
# CONFIG_HID_SENSOR_TEMP is not set
# CONFIG_MLX90614 is not set
# CONFIG_MLX90632 is not set
# CONFIG_TMP006 is not set
# CONFIG_TMP007 is not set
# CONFIG_TSYS01 is not set
# CONFIG_TSYS02D is not set
# CONFIG_MAX31856 is not set
# end of Temperature sensors
CONFIG_NTB=m
# CONFIG_NTB_MSI is not set
# CONFIG_NTB_IDT is not set
CONFIG_NTB_SWITCHTEC=m
CONFIG_NTB_PINGPONG=m
CONFIG_NTB_TOOL=m
CONFIG_NTB_PERF=m
CONFIG_NTB_TRANSPORT=m
# CONFIG_VME_BUS is not set
CONFIG_PWM=y
CONFIG_PWM_SYSFS=y
# CONFIG_PWM_DEBUG is not set
# CONFIG_PWM_FSL_FTM is not set
# CONFIG_PWM_PCA9685 is not set
CONFIG_PWM_TEGRA=y
#
# IRQ chip support
#
CONFIG_IRQCHIP=y
CONFIG_ARM_GIC=y
CONFIG_ARM_GIC_PM=y
CONFIG_ARM_GIC_MAX_NR=1
CONFIG_ARM_GIC_V2M=y
CONFIG_ARM_GIC_V3=y
CONFIG_ARM_GIC_V3_ITS=y
CONFIG_ARM_GIC_V3_ITS_PCI=y
# CONFIG_AL_FIC is not set
CONFIG_PARTITION_PERCPU=y
# end of IRQ chip support
# CONFIG_IPACK_BUS is not set
CONFIG_ARCH_HAS_RESET_CONTROLLER=y
CONFIG_RESET_CONTROLLER=y
# CONFIG_RESET_BRCMSTB_RESCAL is not set
# CONFIG_RESET_INTEL_GW is not set
# CONFIG_RESET_TI_SYSCON is not set
CONFIG_RESET_TEGRA_BPMP=y
#
# PHY Subsystem
#
CONFIG_GENERIC_PHY=y
# CONFIG_PHY_XGENE is not set
# CONFIG_BCM_KONA_USB2_PHY is not set
# CONFIG_PHY_CADENCE_TORRENT is not set
# CONFIG_PHY_CADENCE_DPHY is not set
# CONFIG_PHY_CADENCE_SIERRA is not set
# CONFIG_PHY_CADENCE_SALVO is not set
CONFIG_PHY_FSL_IMX8MQ_USB=y
# CONFIG_PHY_MIXEL_MIPI_DPHY is not set
# CONFIG_PHY_PXA_28NM_HSIC is not set
# CONFIG_PHY_PXA_28NM_USB2 is not set
# CONFIG_PHY_CPCAP_USB is not set
# CONFIG_PHY_MAPPHONE_MDM6600 is not set
# CONFIG_PHY_OCELOT_SERDES is not set
# CONFIG_PHY_QCOM_USB_HS is not set
# CONFIG_PHY_QCOM_USB_HSIC is not set
CONFIG_PHY_TEGRA_XUSB=y
CONFIG_PHY_TEGRA194_P2U=y
# CONFIG_PHY_TUSB1210 is not set
# end of PHY Subsystem
# CONFIG_POWERCAP is not set
# CONFIG_MCB is not set
#
# Performance monitor support
#
# CONFIG_ARM_CCI_PMU is not set
# CONFIG_ARM_CCN is not set
# CONFIG_ARM_CMN is not set
CONFIG_ARM_PMU=y
CONFIG_ARM_PMU_ACPI=y
CONFIG_ARM_SMMU_V3_PMU=m
CONFIG_ARM_DSU_PMU=y
CONFIG_ARM_SPE_PMU=y
# CONFIG_HISI_PMU is not set
# end of Performance monitor support
CONFIG_RAS=y
# CONFIG_USB4 is not set
#
# Android
#
# CONFIG_ANDROID is not set
# end of Android
# CONFIG_LIBNVDIMM is not set
CONFIG_DAX=y
# CONFIG_DEV_DAX is not set
CONFIG_NVMEM=y
CONFIG_NVMEM_SYSFS=y
# CONFIG_NVMEM_SPMI_SDAM is not set
#
# HW tracing support
#
# CONFIG_STM is not set
# CONFIG_INTEL_TH is not set
# end of HW tracing support
CONFIG_FPGA=y
# CONFIG_ALTERA_PR_IP_CORE is not set
# CONFIG_FPGA_MGR_ALTERA_PS_SPI is not set
# CONFIG_FPGA_MGR_ALTERA_CVP is not set
# CONFIG_FPGA_MGR_XILINX_SPI is not set
# CONFIG_FPGA_MGR_ICE40_SPI is not set
# CONFIG_FPGA_MGR_MACHXO2_SPI is not set
CONFIG_FPGA_BRIDGE=m
# CONFIG_ALTERA_FREEZE_BRIDGE is not set
# CONFIG_XILINX_PR_DECOUPLER is not set
CONFIG_FPGA_REGION=m
CONFIG_OF_FPGA_REGION=m
# CONFIG_FPGA_DFL is not set
# CONFIG_FSI is not set
CONFIG_TEE=y
#
# TEE drivers
#
CONFIG_OPTEE=y
CONFIG_OPTEE_SHM_NUM_PRIV_PAGES=1
# end of TEE drivers
CONFIG_PM_OPP=y
# CONFIG_SIOX is not set
# CONFIG_SLIMBUS is not set
CONFIG_INTERCONNECT=y
# CONFIG_COUNTER is not set
# CONFIG_MOST is not set
# end of Device Drivers
#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
# CONFIG_VALIDATE_FS_PARSER is not set
CONFIG_FS_IOMAP=y
# CONFIG_EXT2_FS is not set
CONFIG_EXT3_FS=y
# CONFIG_EXT3_FS_POSIX_ACL is not set
# CONFIG_EXT3_FS_SECURITY is not set
CONFIG_EXT4_FS=y
CONFIG_EXT4_USE_FOR_EXT2=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD2=y
# CONFIG_JBD2_DEBUG is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
# CONFIG_XFS_FS is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
CONFIG_BTRFS_FS=m
CONFIG_BTRFS_FS_POSIX_ACL=y
# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
# CONFIG_BTRFS_DEBUG is not set
# CONFIG_BTRFS_ASSERT is not set
# CONFIG_BTRFS_FS_REF_VERIFY is not set
# CONFIG_NILFS2_FS is not set
# CONFIG_F2FS_FS is not set
# CONFIG_FS_DAX is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
# CONFIG_EXPORTFS_BLOCK_OPS is not set
CONFIG_FILE_LOCKING=y
CONFIG_MANDATORY_FILE_LOCKING=y
# CONFIG_FS_ENCRYPTION is not set
# CONFIG_FS_VERITY is not set
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_FANOTIFY=y
CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
CONFIG_QUOTA=y
CONFIG_QUOTA_NETLINK_INTERFACE=y
CONFIG_PRINT_QUOTA_WARNING=y
# CONFIG_QUOTA_DEBUG is not set
CONFIG_QUOTA_TREE=m
# CONFIG_QFMT_V1 is not set
CONFIG_QFMT_V2=m
CONFIG_QUOTACTL=y
CONFIG_AUTOFS4_FS=y
CONFIG_AUTOFS_FS=y
CONFIG_FUSE_FS=m
CONFIG_CUSE=m
# CONFIG_VIRTIO_FS is not set
CONFIG_OVERLAY_FS=m
# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
# CONFIG_OVERLAY_FS_INDEX is not set
# CONFIG_OVERLAY_FS_XINO_AUTO is not set
# CONFIG_OVERLAY_FS_METACOPY is not set
#
# Caches
#
# CONFIG_FSCACHE is not set
# end of Caches
#
# CD-ROM/DVD Filesystems
#
# CONFIG_ISO9660_FS is not set
# CONFIG_UDF_FS is not set
# end of CD-ROM/DVD Filesystems
#
# DOS/FAT/EXFAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
# CONFIG_FAT_DEFAULT_UTF8 is not set
CONFIG_EXFAT_FS=y
CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8"
CONFIG_NTFS_FS=y
# CONFIG_NTFS_DEBUG is not set
CONFIG_NTFS_RW=y
# end of DOS/FAT/EXFAT/NT Filesystems
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
# CONFIG_PROC_KCORE is not set
CONFIG_PROC_VMCORE=y
# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
# CONFIG_PROC_CHILDREN is not set
CONFIG_KERNFS=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_TMPFS_XATTR=y
# CONFIG_TMPFS_INODE64 is not set
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
CONFIG_MEMFD_CREATE=y
CONFIG_ARCH_HAS_GIGANTIC_PAGE=y
CONFIG_CONFIGFS_FS=y
CONFIG_EFIVAR_FS=y
# end of Pseudo filesystems
CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ORANGEFS_FS is not set
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_ECRYPT_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_JFFS2_FS is not set
# CONFIG_UBIFS_FS is not set
# CONFIG_CRAMFS is not set
CONFIG_SQUASHFS=y
CONFIG_SQUASHFS_FILE_CACHE=y
# CONFIG_SQUASHFS_FILE_DIRECT is not set
CONFIG_SQUASHFS_DECOMP_SINGLE=y
# CONFIG_SQUASHFS_DECOMP_MULTI is not set
# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set
CONFIG_SQUASHFS_XATTR=y
CONFIG_SQUASHFS_ZLIB=y
CONFIG_SQUASHFS_LZ4=y
CONFIG_SQUASHFS_LZO=y
CONFIG_SQUASHFS_XZ=y
# CONFIG_SQUASHFS_ZSTD is not set
# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
# CONFIG_SQUASHFS_EMBEDDED is not set
CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX6FS_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_PSTORE=y
CONFIG_PSTORE_DEFLATE_COMPRESS=y
# CONFIG_PSTORE_LZO_COMPRESS is not set
# CONFIG_PSTORE_LZ4_COMPRESS is not set
# CONFIG_PSTORE_LZ4HC_COMPRESS is not set
# CONFIG_PSTORE_842_COMPRESS is not set
# CONFIG_PSTORE_ZSTD_COMPRESS is not set
CONFIG_PSTORE_COMPRESS=y
CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
CONFIG_PSTORE_COMPRESS_DEFAULT="deflate"
CONFIG_PSTORE_CONSOLE=y
# CONFIG_PSTORE_PMSG is not set
# CONFIG_PSTORE_FTRACE is not set
CONFIG_PSTORE_RAM=m
# CONFIG_PSTORE_BLK is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
# CONFIG_EROFS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=y
CONFIG_NFS_V2=y
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFS_V4=y
# CONFIG_NFS_SWAP is not set
CONFIG_NFS_V4_1=y
CONFIG_NFS_V4_2=y
CONFIG_PNFS_FILE_LAYOUT=y
CONFIG_PNFS_BLOCK=y
CONFIG_PNFS_FLEXFILE_LAYOUT=y
CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
# CONFIG_NFS_V4_1_MIGRATION is not set
CONFIG_NFS_V4_SECURITY_LABEL=y
CONFIG_ROOT_NFS=y
# CONFIG_NFS_USE_LEGACY_DNS is not set
CONFIG_NFS_USE_KERNEL_DNS=y
# CONFIG_NFS_DISABLE_UDP_SUPPORT is not set
# CONFIG_NFS_V4_2_READ_PLUS is not set
CONFIG_NFSD=m
CONFIG_NFSD_V2_ACL=y
CONFIG_NFSD_V3=y
CONFIG_NFSD_V3_ACL=y
# CONFIG_NFSD_V4 is not set
CONFIG_GRACE_PERIOD=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_NFS_ACL_SUPPORT=y
CONFIG_NFS_COMMON=y
CONFIG_SUNRPC=y
CONFIG_SUNRPC_GSS=y
CONFIG_SUNRPC_BACKCHANNEL=y
# CONFIG_SUNRPC_DEBUG is not set
CONFIG_SUNRPC_XPRT_RDMA=m
# CONFIG_CEPH_FS is not set
CONFIG_CIFS=m
# CONFIG_CIFS_STATS2 is not set
CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
# CONFIG_CIFS_WEAK_PW_HASH is not set
# CONFIG_CIFS_UPCALL is not set
# CONFIG_CIFS_XATTR is not set
CONFIG_CIFS_DEBUG=y
# CONFIG_CIFS_DEBUG2 is not set
# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
# CONFIG_CIFS_DFS_UPCALL is not set
# CONFIG_CIFS_SMB_DIRECT is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
CONFIG_9P_FS=m
# CONFIG_9P_FS_POSIX_ACL is not set
# CONFIG_9P_FS_SECURITY is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
# CONFIG_NLS_ASCII is not set
CONFIG_NLS_ISO8859_1=y
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_MAC_ROMAN is not set
# CONFIG_NLS_MAC_CELTIC is not set
# CONFIG_NLS_MAC_CENTEURO is not set
# CONFIG_NLS_MAC_CROATIAN is not set
# CONFIG_NLS_MAC_CYRILLIC is not set
# CONFIG_NLS_MAC_GAELIC is not set
# CONFIG_NLS_MAC_GREEK is not set
# CONFIG_NLS_MAC_ICELAND is not set
# CONFIG_NLS_MAC_INUIT is not set
# CONFIG_NLS_MAC_ROMANIAN is not set
# CONFIG_NLS_MAC_TURKISH is not set
CONFIG_NLS_UTF8=m
# CONFIG_DLM is not set
# CONFIG_UNICODE is not set
CONFIG_IO_WQ=y
# end of File systems
#
# Security options
#
CONFIG_KEYS=y
# CONFIG_KEYS_REQUEST_CACHE is not set
# CONFIG_PERSISTENT_KEYRINGS is not set
# CONFIG_ENCRYPTED_KEYS is not set
# CONFIG_KEY_DH_OPERATIONS is not set
# CONFIG_KEY_NOTIFICATIONS is not set
CONFIG_SECURITY_DMESG_RESTRICT=y
CONFIG_SECURITY=y
# CONFIG_SECURITYFS is not set
CONFIG_SECURITY_NETWORK=y
# CONFIG_SECURITY_INFINIBAND is not set
# CONFIG_SECURITY_NETWORK_XFRM is not set
# CONFIG_SECURITY_PATH is not set
CONFIG_LSM_MMAP_MIN_ADDR=32768
CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_HARDENED_USERCOPY_FALLBACK=y
# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
CONFIG_FORTIFY_SOURCE=y
# CONFIG_STATIC_USERMODEHELPER is not set
CONFIG_SECURITY_SELINUX=y
# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set
# CONFIG_SECURITY_SELINUX_DISABLE is not set
CONFIG_SECURITY_SELINUX_DEVELOP=y
CONFIG_SECURITY_SELINUX_AVC_STATS=y
CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=0
CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9
CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256
# CONFIG_SECURITY_SMACK is not set
# CONFIG_SECURITY_TOMOYO is not set
# CONFIG_SECURITY_APPARMOR is not set
# CONFIG_SECURITY_LOADPIN is not set
CONFIG_SECURITY_YAMA=y
# CONFIG_SECURITY_SAFESETID is not set
# CONFIG_SECURITY_LOCKDOWN_LSM is not set
CONFIG_INTEGRITY=y
# CONFIG_INTEGRITY_SIGNATURE is not set
CONFIG_INTEGRITY_AUDIT=y
# CONFIG_IMA is not set
# CONFIG_EVM is not set
CONFIG_DEFAULT_SECURITY_SELINUX=y
# CONFIG_DEFAULT_SECURITY_DAC is not set
CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity,selinux,bpf"
#
# Kernel hardening options
#
#
# Memory initialization
#
CONFIG_INIT_STACK_NONE=y
# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
# end of Memory initialization
# end of Kernel hardening options
# end of Security options
CONFIG_XOR_BLOCKS=m
CONFIG_CRYPTO=y
#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_SKCIPHER=y
CONFIG_CRYPTO_SKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_RNG_DEFAULT=y
CONFIG_CRYPTO_AKCIPHER2=y
CONFIG_CRYPTO_AKCIPHER=y
CONFIG_CRYPTO_KPP2=y
CONFIG_CRYPTO_KPP=y
CONFIG_CRYPTO_ACOMP2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
# CONFIG_CRYPTO_USER is not set
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
CONFIG_CRYPTO_GF128MUL=y
CONFIG_CRYPTO_NULL=y
CONFIG_CRYPTO_NULL2=y
# CONFIG_CRYPTO_PCRYPT is not set
CONFIG_CRYPTO_CRYPTD=m
CONFIG_CRYPTO_AUTHENC=y
CONFIG_CRYPTO_TEST=m
CONFIG_CRYPTO_SIMD=m
CONFIG_CRYPTO_ENGINE=m
#
# Public-key cryptography
#
CONFIG_CRYPTO_RSA=y
CONFIG_CRYPTO_DH=y
CONFIG_CRYPTO_ECC=y
CONFIG_CRYPTO_ECDH=y
# CONFIG_CRYPTO_ECRDSA is not set
# CONFIG_CRYPTO_SM2 is not set
# CONFIG_CRYPTO_CURVE25519 is not set
#
# Authenticated Encryption with Associated Data
#
CONFIG_CRYPTO_CCM=m
CONFIG_CRYPTO_GCM=m
# CONFIG_CRYPTO_CHACHA20POLY1305 is not set
# CONFIG_CRYPTO_AEGIS128 is not set
CONFIG_CRYPTO_SEQIV=y
CONFIG_CRYPTO_ECHAINIV=y
#
# Block modes
#
CONFIG_CRYPTO_CBC=y
# CONFIG_CRYPTO_CFB is not set
CONFIG_CRYPTO_CTR=y
# CONFIG_CRYPTO_CTS is not set
CONFIG_CRYPTO_ECB=y
# CONFIG_CRYPTO_LRW is not set
# CONFIG_CRYPTO_OFB is not set
# CONFIG_CRYPTO_PCBC is not set
CONFIG_CRYPTO_XTS=m
# CONFIG_CRYPTO_KEYWRAP is not set
# CONFIG_CRYPTO_ADIANTUM is not set
CONFIG_CRYPTO_ESSIV=y
#
# Hash modes
#
CONFIG_CRYPTO_CMAC=y
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_XCBC is not set
# CONFIG_CRYPTO_VMAC is not set
#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
# CONFIG_CRYPTO_CRC32 is not set
CONFIG_CRYPTO_XXHASH=m
CONFIG_CRYPTO_BLAKE2B=m
# CONFIG_CRYPTO_BLAKE2S is not set
CONFIG_CRYPTO_CRCT10DIF=y
CONFIG_CRYPTO_GHASH=y
# CONFIG_CRYPTO_POLY1305 is not set
CONFIG_CRYPTO_MD4=m
CONFIG_CRYPTO_MD5=m
CONFIG_CRYPTO_MICHAEL_MIC=m
# CONFIG_CRYPTO_RMD128 is not set
# CONFIG_CRYPTO_RMD160 is not set
# CONFIG_CRYPTO_RMD256 is not set
# CONFIG_CRYPTO_RMD320 is not set
CONFIG_CRYPTO_SHA1=y
CONFIG_CRYPTO_SHA256=y
CONFIG_CRYPTO_SHA512=y
CONFIG_CRYPTO_SHA3=m
CONFIG_CRYPTO_SM3=m
# CONFIG_CRYPTO_STREEBOG is not set
# CONFIG_CRYPTO_TGR192 is not set
# CONFIG_CRYPTO_WP512 is not set
#
# Ciphers
#
CONFIG_CRYPTO_AES=y
# CONFIG_CRYPTO_AES_TI is not set
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_ARC4=y
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_CAMELLIA is not set
# CONFIG_CRYPTO_CAST5 is not set
# CONFIG_CRYPTO_CAST6 is not set
CONFIG_CRYPTO_DES=m
# CONFIG_CRYPTO_FCRYPT is not set
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_SALSA20 is not set
# CONFIG_CRYPTO_CHACHA20 is not set
# CONFIG_CRYPTO_SEED is not set
# CONFIG_CRYPTO_SERPENT is not set
CONFIG_CRYPTO_SM4=m
# CONFIG_CRYPTO_TEA is not set
CONFIG_CRYPTO_TWOFISH=m
CONFIG_CRYPTO_TWOFISH_COMMON=m
#
# Compression
#
CONFIG_CRYPTO_DEFLATE=y
CONFIG_CRYPTO_LZO=m
# CONFIG_CRYPTO_842 is not set
# CONFIG_CRYPTO_LZ4 is not set
# CONFIG_CRYPTO_LZ4HC is not set
# CONFIG_CRYPTO_ZSTD is not set
#
# Random Number Generation
#
CONFIG_CRYPTO_ANSI_CPRNG=m
CONFIG_CRYPTO_DRBG_MENU=y
CONFIG_CRYPTO_DRBG_HMAC=y
# CONFIG_CRYPTO_DRBG_HASH is not set
# CONFIG_CRYPTO_DRBG_CTR is not set
CONFIG_CRYPTO_DRBG=y
CONFIG_CRYPTO_JITTERENTROPY=y
CONFIG_CRYPTO_USER_API=y
# CONFIG_CRYPTO_USER_API_HASH is not set
CONFIG_CRYPTO_USER_API_SKCIPHER=y
CONFIG_CRYPTO_USER_API_RNG=m
# CONFIG_CRYPTO_USER_API_RNG_CAVP is not set
# CONFIG_CRYPTO_USER_API_AEAD is not set
CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y
CONFIG_CRYPTO_HASH_INFO=y
#
# Crypto library routines
#
CONFIG_CRYPTO_LIB_AES=y
CONFIG_CRYPTO_LIB_ARC4=y
# CONFIG_CRYPTO_LIB_BLAKE2S is not set
# CONFIG_CRYPTO_LIB_CHACHA is not set
# CONFIG_CRYPTO_LIB_CURVE25519 is not set
CONFIG_CRYPTO_LIB_DES=m
CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9
# CONFIG_CRYPTO_LIB_POLY1305 is not set
# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set
CONFIG_CRYPTO_LIB_SHA256=y
CONFIG_CRYPTO_HW=y
# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set
# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set
# CONFIG_CRYPTO_DEV_CCP is not set
# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set
# CONFIG_CRYPTO_DEV_CAVIUM_ZIP is not set
# CONFIG_CRYPTO_DEV_CHELSIO is not set
CONFIG_CRYPTO_DEV_VIRTIO=m
# CONFIG_CRYPTO_DEV_SAFEXCEL is not set
CONFIG_CRYPTO_DEV_CCREE=m
# CONFIG_CRYPTO_DEV_HISI_SEC is not set
# CONFIG_CRYPTO_DEV_HISI_SEC2 is not set
# CONFIG_CRYPTO_DEV_HISI_ZIP is not set
# CONFIG_CRYPTO_DEV_HISI_HPRE is not set
# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set
CONFIG_ASYMMETRIC_KEY_TYPE=y
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
CONFIG_X509_CERTIFICATE_PARSER=y
# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set
CONFIG_PKCS7_MESSAGE_PARSER=y
# CONFIG_PKCS7_TEST_KEY is not set
# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set
#
# Certificates for signature checking
#
CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
CONFIG_SYSTEM_TRUSTED_KEYRING=y
CONFIG_SYSTEM_TRUSTED_KEYS=""
# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
# end of Certificates for signature checking
CONFIG_BINARY_PRINTF=y
#
# Library routines
#
CONFIG_RAID6_PQ=m
# CONFIG_RAID6_PQ_BENCHMARK is not set
CONFIG_LINEAR_RANGES=y
CONFIG_PACKING=y
CONFIG_BITREVERSE=y
CONFIG_HAVE_ARCH_BITREVERSE=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_NET_UTILS=y
CONFIG_CORDIC=m
# CONFIG_PRIME_NUMBERS is not set
CONFIG_RATIONAL=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
CONFIG_ARCH_HAS_FAST_MULTIPLIER=y
CONFIG_ARCH_USE_SYM_ANNOTATIONS=y
# CONFIG_INDIRECT_PIO is not set
CONFIG_CRC_CCITT=y
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC_ITU_T=m
CONFIG_CRC32=y
# CONFIG_CRC32_SELFTEST is not set
CONFIG_CRC32_SLICEBY8=y
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
# CONFIG_CRC32_BIT is not set
# CONFIG_CRC64 is not set
# CONFIG_CRC4 is not set
CONFIG_CRC7=m
CONFIG_LIBCRC32C=m
# CONFIG_CRC8 is not set
CONFIG_XXHASH=y
CONFIG_AUDIT_GENERIC=y
CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y
CONFIG_AUDIT_COMPAT_GENERIC=y
# CONFIG_RANDOM32_SELFTEST is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=m
CONFIG_LZO_DECOMPRESS=y
CONFIG_LZ4_DECOMPRESS=y
CONFIG_ZSTD_COMPRESS=m
CONFIG_ZSTD_DECOMPRESS=y
CONFIG_XZ_DEC=y
CONFIG_XZ_DEC_X86=y
CONFIG_XZ_DEC_POWERPC=y
CONFIG_XZ_DEC_IA64=y
CONFIG_XZ_DEC_ARM=y
CONFIG_XZ_DEC_ARMTHUMB=y
CONFIG_XZ_DEC_SPARC=y
CONFIG_XZ_DEC_BCJ=y
# CONFIG_XZ_DEC_TEST is not set
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_XZ=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_DECOMPRESS_LZ4=y
CONFIG_DECOMPRESS_ZSTD=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_REED_SOLOMON=m
CONFIG_REED_SOLOMON_ENC8=y
CONFIG_REED_SOLOMON_DEC8=y
CONFIG_TEXTSEARCH=y
CONFIG_TEXTSEARCH_KMP=m
CONFIG_TEXTSEARCH_BM=m
CONFIG_TEXTSEARCH_FSM=m
CONFIG_INTERVAL_TREE=y
CONFIG_XARRAY_MULTI=y
CONFIG_ASSOCIATIVE_ARRAY=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT_MAP=y
CONFIG_HAS_DMA=y
CONFIG_DMA_OPS=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_DMA_DECLARE_COHERENT=y
CONFIG_ARCH_HAS_SETUP_DMA_OPS=y
CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y
CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y
CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y
CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y
CONFIG_SWIOTLB=y
CONFIG_DMA_NONCOHERENT_MMAP=y
CONFIG_DMA_COHERENT_POOL=y
CONFIG_DMA_REMAP=y
CONFIG_DMA_DIRECT_REMAP=y
CONFIG_DMA_CMA=y
# CONFIG_DMA_PERNUMA_CMA is not set
#
# Default contiguous memory area size:
#
CONFIG_CMA_SIZE_MBYTES=64
CONFIG_CMA_SIZE_SEL_MBYTES=y
# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
# CONFIG_CMA_SIZE_SEL_MIN is not set
# CONFIG_CMA_SIZE_SEL_MAX is not set
CONFIG_CMA_ALIGNMENT=9
# CONFIG_DMA_API_DEBUG is not set
CONFIG_SGL_ALLOC=y
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y
# CONFIG_GLOB_SELFTEST is not set
CONFIG_NLATTR=y
CONFIG_CLZ_TAB=y
CONFIG_IRQ_POLL=y
CONFIG_MPILIB=y
CONFIG_DIMLIB=y
CONFIG_LIBFDT=y
CONFIG_OID_REGISTRY=y
CONFIG_UCS2_STRING=y
CONFIG_HAVE_GENERIC_VDSO=y
CONFIG_GENERIC_GETTIMEOFDAY=y
CONFIG_GENERIC_VDSO_TIME_NS=y
CONFIG_FONT_SUPPORT=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
CONFIG_SG_POOL=y
CONFIG_ARCH_STACKWALK=y
CONFIG_SBITMAP=y
CONFIG_PARMAN=m
CONFIG_OBJAGG=m
# CONFIG_STRING_SELFTEST is not set
# end of Library routines
CONFIG_PLDMFW=y
#
# Kernel hacking
#
#
# printk and dmesg options
#
CONFIG_PRINTK_TIME=y
# CONFIG_PRINTK_CALLER is not set
CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
CONFIG_CONSOLE_LOGLEVEL_QUIET=4
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
# CONFIG_BOOT_PRINTK_DELAY is not set
# CONFIG_DYNAMIC_DEBUG is not set
CONFIG_DYNAMIC_DEBUG_CORE=y
# CONFIG_SYMBOLIC_ERRNAME is not set
CONFIG_DEBUG_BUGVERBOSE=y
# end of printk and dmesg options
#
# Compile-time checks and compiler options
#
CONFIG_DEBUG_INFO=y
# CONFIG_DEBUG_INFO_REDUCED is not set
# CONFIG_DEBUG_INFO_COMPRESSED is not set
# CONFIG_DEBUG_INFO_SPLIT is not set
# CONFIG_DEBUG_INFO_DWARF4 is not set
# CONFIG_DEBUG_INFO_BTF is not set
# CONFIG_GDB_SCRIPTS is not set
CONFIG_ENABLE_MUST_CHECK=y
CONFIG_FRAME_WARN=4096
# CONFIG_STRIP_ASM_SYMS is not set
# CONFIG_READABLE_ASM is not set
# CONFIG_HEADERS_INSTALL is not set
# CONFIG_DEBUG_SECTION_MISMATCH is not set
# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set
# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
# end of Compile-time checks and compiler options
#
# Generic Kernel Debugging Instruments
#
CONFIG_MAGIC_SYSRQ=y
CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
CONFIG_MAGIC_SYSRQ_SERIAL=y
CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE=""
CONFIG_DEBUG_FS=y
CONFIG_DEBUG_FS_ALLOW_ALL=y
# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set
# CONFIG_DEBUG_FS_ALLOW_NONE is not set
CONFIG_HAVE_ARCH_KGDB=y
# CONFIG_KGDB is not set
CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
# CONFIG_UBSAN is not set
# end of Generic Kernel Debugging Instruments
CONFIG_DEBUG_KERNEL=y
# CONFIG_DEBUG_MISC is not set
#
# Memory Debugging
#
# CONFIG_PAGE_EXTENSION is not set
# CONFIG_DEBUG_PAGEALLOC is not set
# CONFIG_PAGE_OWNER is not set
# CONFIG_PAGE_POISONING is not set
# CONFIG_DEBUG_PAGE_REF is not set
# CONFIG_DEBUG_RODATA_TEST is not set
CONFIG_ARCH_HAS_DEBUG_WX=y
# CONFIG_DEBUG_WX is not set
CONFIG_GENERIC_PTDUMP=y
# CONFIG_PTDUMP_DEBUGFS is not set
# CONFIG_DEBUG_OBJECTS is not set
# CONFIG_SLUB_DEBUG_ON is not set
# CONFIG_SLUB_STATS is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
# CONFIG_DEBUG_KMEMLEAK is not set
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_SCHED_STACK_END_CHECK is not set
CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y
# CONFIG_DEBUG_VM is not set
# CONFIG_DEBUG_VM_PGTABLE is not set
CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
# CONFIG_DEBUG_VIRTUAL is not set
# CONFIG_DEBUG_MEMORY_INIT is not set
# CONFIG_DEBUG_PER_CPU_MAPS is not set
CONFIG_HAVE_ARCH_KASAN=y
CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y
CONFIG_CC_HAS_KASAN_GENERIC=y
CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y
# CONFIG_KASAN is not set
# end of Memory Debugging
# CONFIG_DEBUG_SHIRQ is not set
#
# Debug Oops, Lockups and Hangs
#
CONFIG_PANIC_ON_OOPS=y
CONFIG_PANIC_ON_OOPS_VALUE=1
CONFIG_PANIC_TIMEOUT=0
CONFIG_LOCKUP_DETECTOR=y
CONFIG_SOFTLOCKUP_DETECTOR=y
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=y
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=1
CONFIG_DETECT_HUNG_TASK=y
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
CONFIG_WQ_WATCHDOG=y
# CONFIG_TEST_LOCKUP is not set
# end of Debug Oops, Lockups and Hangs
#
# Scheduler Debugging
#
CONFIG_SCHED_DEBUG=y
CONFIG_SCHED_INFO=y
CONFIG_SCHEDSTATS=y
# end of Scheduler Debugging
# CONFIG_DEBUG_TIMEKEEPING is not set
# CONFIG_DEBUG_PREEMPT is not set
#
# Lock Debugging (spinlocks, mutexes, etc...)
#
CONFIG_LOCK_DEBUGGING_SUPPORT=y
# CONFIG_PROVE_LOCKING is not set
# CONFIG_LOCK_STAT is not set
# CONFIG_DEBUG_RT_MUTEXES is not set
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_MUTEXES is not set
# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
# CONFIG_DEBUG_RWSEMS is not set
# CONFIG_DEBUG_LOCK_ALLOC is not set
# CONFIG_DEBUG_ATOMIC_SLEEP is not set
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
# CONFIG_LOCK_TORTURE_TEST is not set
# CONFIG_WW_MUTEX_SELFTEST is not set
# CONFIG_SCF_TORTURE_TEST is not set
# CONFIG_CSD_LOCK_WAIT_DEBUG is not set
# end of Lock Debugging (spinlocks, mutexes, etc...)
CONFIG_STACKTRACE=y
# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_HAVE_DEBUG_BUGVERBOSE=y
#
# Debug kernel data structures
#
# CONFIG_DEBUG_LIST is not set
# CONFIG_DEBUG_PLIST is not set
# CONFIG_DEBUG_SG is not set
# CONFIG_DEBUG_NOTIFIERS is not set
# CONFIG_BUG_ON_DATA_CORRUPTION is not set
# end of Debug kernel data structures
# CONFIG_DEBUG_CREDENTIALS is not set
#
# RCU Debugging
#
# CONFIG_RCU_SCALE_TEST is not set
# CONFIG_RCU_TORTURE_TEST is not set
# CONFIG_RCU_REF_SCALE_TEST is not set
CONFIG_RCU_CPU_STALL_TIMEOUT=21
CONFIG_RCU_TRACE=y
# CONFIG_RCU_EQS_DEBUG is not set
# end of RCU Debugging
# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
# CONFIG_LATENCYTOP is not set
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_TRACE_CLOCK=y
CONFIG_RING_BUFFER=y
CONFIG_EVENT_TRACING=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
# CONFIG_BOOTTIME_TRACING is not set
CONFIG_FUNCTION_TRACER=y
CONFIG_FUNCTION_GRAPH_TRACER=y
# CONFIG_DYNAMIC_FTRACE is not set
# CONFIG_FUNCTION_PROFILER is not set
CONFIG_STACK_TRACER=y
# CONFIG_IRQSOFF_TRACER is not set
# CONFIG_PREEMPT_TRACER is not set
# CONFIG_SCHED_TRACER is not set
# CONFIG_HWLAT_TRACER is not set
# CONFIG_FTRACE_SYSCALLS is not set
# CONFIG_TRACER_SNAPSHOT is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_BLK_DEV_IO_TRACE is not set
# CONFIG_UPROBE_EVENTS is not set
# CONFIG_SYNTH_EVENTS is not set
# CONFIG_HIST_TRIGGERS is not set
# CONFIG_TRACE_EVENT_INJECT is not set
# CONFIG_TRACEPOINT_BENCHMARK is not set
# CONFIG_RING_BUFFER_BENCHMARK is not set
# CONFIG_TRACE_EVAL_MAP_FILE is not set
# CONFIG_FTRACE_STARTUP_TEST is not set
# CONFIG_RING_BUFFER_STARTUP_TEST is not set
# CONFIG_PREEMPTIRQ_DELAY_TEST is not set
# CONFIG_SAMPLES is not set
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
CONFIG_STRICT_DEVMEM=y
# CONFIG_IO_STRICT_DEVMEM is not set
#
# arm64 Debugging
#
CONFIG_PID_IN_CONTEXTIDR=y
# CONFIG_DEBUG_EFI is not set
# CONFIG_ARM64_RELOC_TEST is not set
# CONFIG_CORESIGHT is not set
# end of arm64 Debugging
#
# Kernel Testing and Coverage
#
# CONFIG_KUNIT is not set
# CONFIG_NOTIFIER_ERROR_INJECTION is not set
# CONFIG_FAULT_INJECTION is not set
CONFIG_ARCH_HAS_KCOV=y
CONFIG_CC_HAS_SANCOV_TRACE_PC=y
# CONFIG_KCOV is not set
# CONFIG_RUNTIME_TESTING_MENU is not set
# CONFIG_MEMTEST is not set
# end of Kernel Testing and Coverage
# end of Kernel hacking
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment