Jetson Nano Adaptation and Bring-Up

This topic is for software developers whose target is NVIDIA® Jetson Nano™. It describes how to port NVIDIA® Jetson™ Linux (L4T) and the U-Boot bootloader from a developer kit to other hardware platforms.

Board Configuration and Developer Kits

A Jetson Nano processor is contained in a system on module (a SOM) supported by a developer kit. The developer kit comprises a SOM and a reference carrier board. The SOM and the reference carrier board each has an EEPROM on which you can store the carrier board’s board ID. You can use the developer kit to develop applications which can then be incorporated into production systems.
When you incorporate a Jetson Nano SOM into a custom carrier board developed for your application, you must change the kernel device tree, bootloader configuration, ODM data, and flashing configuration to support the new carrier board. The custom carrier board does not need an EEPROM for the board ID.
For all of the procedures in this topic, the L4T release includes example code for the developer kit that can be used as a model for code to support other platforms.

Jetson Nano

The Jetson Nano Developer Kit (P3450) comprises a Jetson Nano SOM (P3448-0000) and a P3449-0000 carrier board. This SOM has a micro SD card slot instead of built-in RAM. You can install a micro SD card on the SOM and flash it from a host system through a network connection, or you can flash a card directly on a host system and then install it in the SOM’s SD card slot. The P3448-0000 SOM is sold only as a component of the Jetson Nano Developer Kit, and is intended only for development use.
The P3448-00002 SOM is sold separately for production use. It has 16 GB of eMMC storage instead of a micro SD card slot, but is otherwise similar to the P3448-0000. It has a five-year operating lifetime, and is qualified for deployment in commercial environments. It can also be used for development with the P3449 carrier board in the Jetson Nano Developer Kit.1
Jetson Nano is identified here as “original Jetson Nano” when necessary to distinguish it from other variants.

Jetson Nano 2GB

The Jetson Nano 2GB Developer Kit (P3541) consists of a P3448-0003 SOM attached to a P3542-0000 carrier board. The P3448-0003 SOM is similar to original Jetson Nano SOM (P3448-0000 or P3448-0002), but it has 2 GB of built-in QSPI storage and no SD card slot.
The Jetson Nano 2GB SOM is sold separately for production use, as well as in the Jetson Nano 2GB Developer Kit.

Board Naming

To support a Jetson Nano module with your carrier board, you must assign the module/carrier board combination a lower case alphanumeric name. The name may contain hyphens (-) and underscores (_), but not spaces. Following are some examples of valid board names:
p3450 (appropriate for original Jetson Nano)
p3541 (appropriate for Jetson Nano 2GB)
devboard
The name you choose will appear in file names and path names in U-Boot and Linux kernel source code and in user-visible device tree file names, and will be exposed to the user via the U-Boot command prompt and various Linux kernel /proc files.
You must also choose a similarly constructed vendor name. The same character set rules apply; for example, a vendor name for NVIDIA could be nvidia.
Note:
Do not simply re-use and modify the existing Jetson Nano Developer Kit code without choosing and using your own board name. If you do not use your own board name it will not be obvious to Jetson Nano users whether modified source code supports your carrier board or original Jetson Nano Developer Kit carrier board.

Placeholders in the Porting Instructions

The sections below refer to filenames and pathnames that contain several common placeholders. Substitute an appropriate value for each placeholder when you enter the commands.
Placeholders that are used in only one or a few sections are defined in those sections.
<function> is a functional module name, such as power-tree, pinmux, sdmmc-drv, keys, comm (Wi‑Fi/Bluetooth®), camera, etc.
<carrier> is the P-number of the reference carrier board you are using:
For original Jetson Nano, P3449 or P3452
For Jetson Nano 2GB, p3542.
<version> is the reference carrier board’s version number, such as a00. .dts filenames for some NVIDIA reference carrier boards include a version number. Files for customer platforms need not include one.
<code> is the codename of the Jetson Nano variant you are using:
For original Jetson Nano, porg
For Jetson Nano 2GB, batuu
<board> is a name you have chosen to represent the combination of your carrier board and Jetson Nano module. For example, p3450 could represent the carrier board from an original Jetson Nano Developer Kit with Jetson Nano module. Note that NVIDIA <board> names use lower case letters only.
<vendor> is your organization’s name, or the name of your board’s vendor.
<root> is the device that holds the platform’s root file system. At present the only supported value is sdcard.

Root Filesystem Configuration

Jetson Linux can use any standard or customized Linux root filesystem (rootfs) that is appropriate for the targeted embedded application.
However, certain settings must be configured in the rootfs’s boot-up framework to set the default configuration after boot, or some of the core functionalities will not run as expected. The configuration file’s pathname is /boot/extlinux/extlinux.conf.
Kernel command line parameters are passed from /boot/extlinux/extlinux.conf.
For example:
The system must be configured to execute the nv.sh, nvfb-early.sh, and nvfb.sh scripts in etc/systemd at boot-up because they perform some basic default board initialization in the kernel. It is advisable to add to the etc folder but never delete anything from it.
The Xorg and X libraries must be correctly configured for the target device.
In the target device’s nvpmodel, the number of cores, clock, and frequency must be configured.
These rootfs configurations and customizations are provided in this driver package in the directory and its subdirectories:
Linux_for_Tegra/nv_tegra/
You must incorporate the relevant customization for your target rootfs from this location.
Note:
For the sample root filesystem provided by NVIDIA, this customization is applied using the script Linux_for_Tegra/apply_binaries.sh.

Pinmux Changes

If your board schematic differs from that for your developer kit carrier board, you must change the pinmux configuration applied by the software.
To define your board’s pinmux configuration, you must download the appropriate Jetson Nano pinmux table from the Jetson Download Center and customize it for the configuration of your board using the following procedures. Be sure to get the right version of the table for your SOM.
To customize the pinmux spreadsheet
1. Create a copy of the file with a name based on your board name, e.g. <board>_pinmux.xlsm. Note the directory in which you stored the copy; you will need it in the procedure Updating the Bootloader Pinmux.
2. Ensure that the new file is writable.
3. On a Windows PC, open the new file in Microsoft Excel.
4. If Microsoft Excel displays any warnings such as “PROTECTED VIEW” or “SECURITY WARNING,” click Enable Editing or Enable Content, so that you can save your changes to the new file.
5. Rename the Jetson Nano Configuration tab based on the name of your board:
1. Right click the Jetson Nano Configuration tab at the bottom of the window.
2. Click the Rename menu option.
3. Type your board name into the tab, then press ENTER.
6. Modify the spreadsheet columns grouped under the heading “Filled in by Customers” as required from the pinmux configuration for your board, based on the schematic.
7. Once the spreadsheet reflects the configuration you want, click the Generate DT File button to run a macro that exports the configuration data to a pair of .dtsi files in the directory where the spreadsheet is stored. The macro prompts you to enter a prefix for the files’ names; use the default value:
For original Jetson Nano, jetson_nano_module
For Jetson Nano 2GB, jetson_nano_2gb_module

Updating the Bootloader Pinmux

The CBoot bootloader uses device tree files generated from the pinmux spreadsheet to configure the pinmux.
The pinmux settings in device tree files are only applied by CBoot, and not reapplied by the Linux kernel.
To use the updated device tree files, you must rebuild the device tree image for Jetson Nano.
To update the device tree image
1. Download the Linux kernel sources. For instructions see the section Obtaining the Kernel Sources with Git or Manually Downloading and Expanding Kernel Sources in the topic Kernel Customization.
2. Set up the build environment by installing the toolchain and setting the environment variable CROSS_COMPILE as described in the section Jetson Linux Driver Package Toolchain in the topic Kernel Customization.
3. Determine the SKU and version of the Jetson Nano device by executing this command on the device:
$ cat /proc/device-tree/nvidia,dtsfilename
Where <code> is porg for original Jetson Nano, or batuu for Jetson Nano 2GB.
The command displays the file name of the device tree source file, which has one of the forms:
tegra210-p3448-<sku>-<carrier>-<ver>.dts
tegra210-p3448-<sku>-<carrier>.dts
Where:
<sku> is the SKU of the Jetson Nano device: for original Jetson Nano, 0000 or 0002; for Jetson Nano 2GB, 0003.
<ver> is the version of the Jetson Nano device. For original Jetson Nano, it is a02 or b00. For Jetson Nano 2GB it is absent, and the preceding hyphen is also absent. This device has no version.
4. Locate the directory that contains the pinmux spreadsheet that you modified in To customize the pinmux spreadsheet. Remember that this pathname is on the Windows host, which must be accessible to Linux through the network.
5. Copy the generated .dtsi files from the directory that contains the spreadsheet to the following locations:
For original Jetson Nano:
<prefix>-pinmux.dtsi to <src>/hardware/‌nvidia/platform/‌t210/porg/‌kernel-dts/porg-platforms/‌tegra210-porg-pinmux-p3448-0001-<ver>.dtsi
For Jetson Nano 2GB:
<prefix>-gpio.dtsi to <src>/hardware/‌nvidia/platform/‌t210/batuu/‌kernel-dts/batuu-platforms/tegra210-batuu-pinmux-p3448-0003.dtsi
Where:
<prefix> is the filename prefix that you entered in step 7 of To customize the pinmux spreadsheet.
<src> is the pathname of the kernel sources that you downloaded in step 1.
<ver> is the module’s version number, which you identified in step 3.
6. Rebuild the device tree image:
$ cd <src_path>/kernel/kernel-4.9/
$ make ARCH=arm64 tegra_defconfig
$ make ARCH=arm64 dtbs
7. Copy the updated device tree image to the L4T release tree:
$ arch/arm64/boot/dts/tegra210-p3448-<sku>-<carrier>-0000.dtb <path-to-L4T-release>/kernel/dtb/
Where <sku> is the module’s SKU.
8. To reflash the target device for the new pinmux configuration to be applied, follow the instructions in the section Basic Flashing Procedures of the topic Flashing and Booting the Target Device.

Accessing GPIOs via “gpio” Device Labels

You can access GPIOs (routed to the 40-pin GPIO expansion header) via device labels that begin with gpio. The file /sys/kernel/debug/gpio lists these labels.
For example, to access gpio-19, enter this command:
$ gpiofind SPI0_CS0
This command displays output like:
gpiochip0 19

Exporting Pinmux for the Jetson Linux Kernel

The Linux kernel uses device tree files to define the pinmux configuration. You can generate these files directly from the Excel spreadsheet.
To generate device tree files for your pinmux configuration
1. In the spreadsheet, click Generate DT.
2. Answer “yes” to the prompt that asks whether you wish to generate the DT files.
3. Provide the name of your board when prompted.
The device tree files are saved in the same location as the Excel spreadsheet. After the file is generated, make sure that the file name matches the one you use in your kernel code. Correct the file name if there is a mismatch. Later, you will copy the device tree files into the Linux kernel source tree.

Porting U-Boot

Perform the following actions in the U-Boot source code to add support for your board.
1. Copy this file to include/configs/<board>.h:
For original Jetson Nano, include/configs/p3450-0000.h
For Jetson Nano 2GB, include/configs/p3541-0000.h
2. Edit the set of enabled devices and features in <board>.h as appropriate for your board. For example, define the manifest constant CONFIG_TEGRA_BOARD_STRING:
For original Jetson Nano, "NVIDIA P3450-0000"
For Jetson Nano 2GB, "NVIDIA P3541-0000"
3. Copy this file to arch/arm/dts/tegra210-<board>.dts:
For original Jetson Nano, arch/arm/dts/tegra210-p3450-porg.dts
For Jetson Nano 2GB, arch/arm/dts/tegra210-p3541-0000.dts
4. Edit the set of enabled devices and their parameters (e.g. GPIO and IRQ IDs) in tegra210-<board>.dts as appropriate for your board.
You may have to add, remove, or edit nodes and properties.
Note:
U-Boot and the Linux kernel do not always use exactly the same device tree schema (bindings) to represent the same data. Follow examples from U-Boot rather than from the Linux kernel.
5. Add tegra210-<board>.dtb to arch/arm/dts/Makefile.
6. Copy this file to configs/<board>_defconfig:
For original Jetson Nano, configs/p3450-0000_defconfig
For Jetson Nano 2GB, configs/p3541-0000_defconfig
7. Edit <board>_defconfig to refer to your board name.
8. Edit arch/arm/mach-tegra/tegra210/Kconfig to add target config and Kconfig.
9. Copy this directory and its contents to board/<vendor>/<board>/:
For original Jetson Nano, board/nvidia/p3450-porg/
For Jetson Nano 2GB, board/nvidia/p3541-0000/
10. Edit all of the files in board/<vendor>/<board>/ to refer to your board name rather than to p3450-porg or p3541-0000.
11. Edit board/<vendor>/<board>/MAINTAINERS to provide the correct maintainer contact information for your board.
12. Edit board/<vendor>/<board>/<board>.c to provide the correct PMIC programming for your board, if required.

Porting the Linux Kernel

There are two ways to adapt the device tree (the kernel configuration) to your needs:
Create one or more device tree overlay files which U Boot adds to the kernel DTB to support new hardware. NVIDIA recommends this technique for most types of hardware support, such as sensors and add-in boards.
Modify the kernel device tree (a kernel configuration file). This technique yields a complete, modified kernel that includes support for the new hardware. NVIDIA recommends this technique for supporting fixed hardware on a custom-designed carrier board.
Linux Kernel source is available for download from the Jetson Download Center. To modify the kernel device tree, edit the kernel DTB sources provided with the BSP. Add, remove, and revise the kernel DTB’s hardware nodes as necessary, and change properties that differ. Then recompile the DTB, replace the development kit’s DTB with the recompiled one, and reflash.

Creating Device Tree Overlay Files

U Boot can load device tree overlay files (DTBOs) directly from extlinux.conf. This feature lets you add support for add-in hardware like cameras, CAN controllers, SPI, etc. without having to decompile, modify, recompile, and reflash the kernel DTB.
See the topic U‑Boot Customization for instructions.

Modifying the Kernel Device Tree

Linux kernel source is contained in these subdirectories in the kernel directory:
kernel-4.9 contains all source that is upstreamed.
nvidia contains NVIDIA specific software which is yet to be upstreamed.
nvgpu contains the NVIDIA GPU driver.
You can add your own driver as is described in the Linux documentation. If you are modifying the device tree for your hardware, be sure to observe these points:
The SoC-related device tree is located at:
<top>/hardware/nvidia/soc/t210/
You generally do not need to change anything here.
The board-related device tree is located at:
hardware/nvidia/platform/t210/<code>
If you replace the reference carrier board with a custom board, or you enable or disable any feature from the carrier board’s device tree, review the .dts file at that location.
To update the kernel image and kernel DTB
1. Rebuild the kernel and DTB.
Building the kernel will build the device tree files also.
2. Copy the kernel image to the host directory Linux_for_Tegra/kernel/.
3. Copy the kernel DTB to the host directory Linux_for_Tegra/kernel/dtb/.
4. Do a complete flash of the device:
$ sudo ./flash.sh <config> mmcblk0p1
Where <config> is the basename of the flash configuration file:
For an original Jetson Nano (P3448-0000) device: jetson-nano-devkit
For a Jetson Nano (P3448-0002) device: jetson-nano-emmc
For a Jetson Nano 2GB (P3448-0003) device: jetson-nano-2gb-devkit
To update the kernel DTB alone
1. Rebuild the kernel.
2. Enter this command to convert the DTB to a DTS:
$ dtc -I dtb -O dts tegra210-p3448-<sku>-<carrier>-0000-<version>.dtb > ~/tegra210-p3448-<sku>-<carrier>-0000-<version>.dts
For Jetson Nano 2GB, which has no version, omit <version> and the preceding hyphen.
3. Modify the device tree as necessary.
4. Enter this command to convert the DTS back to a DTB:
$ dtc -I dts -O dtb ~/tegra210-p3448-<sku>-<carrier>-0000-<version>-a00.dts > tegra210-p3448-<sku>-<carrier>-0000-<version>.dtb
If you are replacing the reference carrier board with a custom carrier board, look out for instances of <carrier> in the DTB. Make sure you understand them and replace them according on your needs.
5. Copy the generated DTB to the following directory for flashing:
Linux_for_Tegra/kernel/dtb/
To provide plugin manager support, the kernel DTB is not included in the file system along with the kernel image in the boot directory. Instead, the kernel DTB is selected from the DTB partition and modified by CBoot. CBoot passes it on to U‑Boot, which in turn passes it to the kernel without changing any of the data.
6. Flash the DTB:
$ sudo ./flash.sh -k DTB <config> mmcblk0p1
Steps to update the kernel image alone
1. Enter this command to build the kernel:
$ make ARCH=arm64 tegra_defconfig
2. Copy the kernel image to the target’s /boot directory over Ethernet.
For the detailed information about .dts files, refer to the documentation at Documentation/devicetree/bindings in the NVIDIA Linux kernel source package.

Porting USB

Jetson Nano can support up to three SuperSpeed USB ports. In some implementations not all of these ports can be used because of UPHY lane sharing among PCIE and XUSB.
The Jetson Nano reference carrier boards are designed and verified for one USB 3.0 port. If you plan to create a custom carrier board, consult Product Design Guide for Jetson Nano Devices to verify that your board’s UPHY lane mapping is functionally compatible with that of the appropriate reference carrier board.

USB Structure

A SuperSpeed USB port has nine pins:
VBUS
GND
D+/D−
SSTX+/SSTX− (SuperSpeed data transmit)
SSRX+/SSRX− (SuperSpeed data receive)
GND_DRAIN for drain wire termination and managing EMI, RFI, and signal integrity
The D+/D− signal pins connect to UTMI pads. The SSTX/SSRX signal pins connect to UPHY and are handled by a single UPHY lane. As UPHY lanes are shared between PCIE and XUSB, UPHY lanes must be assigned according to the custom carrier board’s requirements.

UPHY Lane Assignment

Universal Physical Layer (UPHY) is a physical I/O interface layer that can serve multiple types of interfaces, e.g. USB and PCIe. A single UPHY lane can support multiple types of interfaces.
The Jetson Nano reference carrier boards are designed and verified for one USB 3.0 port. The verified use cases and their UPHY lane assignments are shown in the following tables.
Available outputs for a reference carrier board
Output Type
Number of Outputs
USB 3.0
1
PCIe
1 x4
 
UPHY lane assignment use cases
Lane
Pin Names
Functions
0
N/A
PCIe x1
C1
1
PEX_TX1
PEX_RX1
PCIe x4
C0 (L3/L2/L1/L0)
2
PEX_TX2
PEX_RX2
3
PEX_TX3
PEX_RX3
4
PEX_TX4
PEX_RX4
5
N/A
N/A
6
PEX_TX6
PEX_RX6
USB3.0
P0
Jetson Nano and the supporting software are designed to support the configurations in these tables. See Tegra X1 (SoC) Technical Reference Manual (TRM) and consult Product Design Guide for Jetson Nano Devices for further information before you design your custom board. (Note that Tegra X1 Technical Reference Manual applies to Jetson Nano devices as well as NVIDIA® Jetson™ TX1.)
Lane assignment can be defined by the PCIe subnode under xusb_padctl in the corresponding device tree file. The device tree’s xusb_padctl node follows the conventions of the document:
kernel/kernel-4.9/Documentation/devicetree/bindings/pinctrl/pinctrl-bindings.txt
The PCIe subnode lists the functions assigned to UPHY lanes.
nvidia,function: A string containing the name of the function to mux to the pin or group. It must be one of these values:
xusb
pcie-x1
pcie-x4
Take the table of UPHY lane assignment use cases, for example. Create a PCIe subnode and property under xusb_padctl based on the device tree structure described above:
xusb_padctl@7009f000 {
...
pcie {
status = "okay"
lanes {
pcie-0 {
status = "okay"
nvidia,function = "pcie-x1";
};
pcie-1 {
status = "okay"
nvidia,function = "pcie-x4";
};
pcie-2 {
status = "okay"
nvidia,function = "pcie-x4";
};
pcie-3 {
status = "okay"
nvidia,function = "pcie-x4";
};
pcie-4 {
status = "okay"
nvidia,function = "pcie-x4";
};
pcie-5 {
status = "okay"
nvidia,function = "xusb";
};
pcie-6 {
status = "okay"
nvidia,function = "xusb";
};
};
...
};
 
Note:
UPHY lane 0 and UPHY lane 5 are not exposed, and can only be assigned to the pcie-x1 and xusb functions.

Required Device Tree Changes

This section gives step-by-step guidance for checking schematics and configuring USB ports in the device tree. All of the examples are based on the design of a Jetson Nano reference carrier board.
For a Host-Only Port
This section uses U27, a USB 3.0 Realtek SuperSpeed on-board hub, as an example of a host-only port.
Go Through the Schematics
Note:
The reference carrier board schematic file for the NVIDIA reference carrier board provided with a developer kit is included in the carrier board design files.
For the original Jetson Nano carrier board (both P3449 and P3452), see Jetson Nano Developer Kit Carrier Board Design Files, P3449_B01_Concept_schematics.pdf.
To obtain the design files for the Jetson Nano 2GB carrier board (P3542-0000), consult your NVIDIA representative.
Check the USB 3.0 Realtek SuperSpeed hub on the reference carrier board and find the pin names of the wired socket to the Jetson Nano module.
USB 2.0 signal pins D+/D- (USB_DP/USB_DM) wire out from U27 and lead to module socket pins 115 (USB1_DN) and 116 (USB1_DP).
A screenshot of a cell phoneDescription automatically generated
USB 3.0 differential signal pairs (USP_SSTX* and USP_SSRX*) wire out from U27 and lead to module socket pins 161 (SBSS_RX_N), 163 (USBSS_RX_P), 166 (USBSS_TX_N), and 168 (USBSS_TX_P).
A screenshot of a cell phoneDescription automatically generated
Through the schematic, you can conclude that for U27:
The USB 2.0 signal pair is wired to UTMI pad 1 (USB2 port 1).
The USB 3.0 signal pairs are wired to UPHY lane 6 (USB 3.0 port 0 according to UPHY lane mapping).
The xusb_padctl Node
The device tree’s xusb_padctl node follows the conventions of pinctrl-bindings.txt. It contains two groups of named pads and ports which describe USB2 and USB3 signals along with parameters and port numbers. The name of each parameter description subnode in pads and ports must be in the form <type>-<port_number>, where <type> is usb2 or usb3, and <port_number> is the associated port number.
The pads Subnode
The properties of the pads subnode are:
nvidia,function: A string containing the name of the function to mux to the pin or group. Must be xusb.
The ports Subnode
mode: A string that describes USB port capability. A port for USB2 must have this property. It must be one of these values:
host
device
otg
nvidia,usb2-companion: The USB2 port (0, 1, or 2) to which the port is mapped. A port for USB3 must have this property.
nvidia,oc-pin: The overcurrent VBUS pin the port is using. The value must be positive or zero.
Note:
Overcurrent detection and handling for U27, the Realtek SuperSpeed hub on the reference carrier board, are controlled by the hub itself. Therefore, you need not set this property.
vbus-supply: VBUS regulator for the corresponding UTMI pad. Set to &battery_reg for a dummy regulator.
Note:
As the Realtek SuperSpeed hub is always connected to the root hub port on a Jetson Nano reference carrier board, you need not control hub power, just enable it with VDD_HUB_3V3. Therefore, you must set dummy regulators for U27 on the reference carrier board.
For the detailed information about xusb_padctl, refer to the documentation at:
kernel/kernel-4.9/Documentation/devicetree/bindings/phy/nvidia,xusb-padctl.txt
As an example, consider U27, the Realtek SuperSpeed hub, which is always connected to USB2 port 1 and USB3 port 0 on the root hub. Create a pad/port node and property list for U27 based on the device tree structure described above:
xusb_padctl: xusb_padctl@7009f000 {
...
pads {
usb2 {
status = "okay";
lanes {
...
usb2-1 {
nvidia,function = "xusb";
status = "okay";
};
...
};
};
pcie {
status = "okay";
lanes { ...//UPHY lane assignment
};
};
};
ports {
usb2-1 {
mode = "host";
vbus-supply = <&battery_reg>;
status = "okay";
};
...
usb3-0 {
nvidia,usb2-companion = <1>;
status = "okay";
};
...
};
};
Under the xusb Node
The Jetson Nano xHCI controller complies with xHCI specifications, which support both USB 2.0 HighSpeed/FullSpeed/LowSpeed and USB 3.0 SuperSpeed protocols.
phys: Must contain an entry for each entry in phy-names.
phy-names: Must include an entry for each PHY used by the controller. Names must be of the form <type>-<port_number>, where <type> is "usb2" or "usb3".
nvidia,boost_cpu_freq: Set the value to which CPU frequency will be boosted. This is only the minimum frequency, DVFS can scale up CPU frequency further based on need and CPU loading. CPU boost frequency through PMQOS is enabled for the xHCI controller only when this field’s is greater than zero. The boost is applicable only for bulk and ISOC transfers; other endpoints do not need to be boosted.
nvidia,boost_cpu_trigger: Minimum buffer length of the bulk or ISOC transfers beyond which to boost frequency.
nvidia,xusb-padctl: A pointer to the xusb-padctl node.
For the detailed information about xHCI, see the documentation at:
kernel/kernel-4.9/Documentation/devicetree/bindings/usb/nvidia,tegra-xhci.txt
Consider U27, the Realtek SuperSpeed hub, as an example. Create an xHCI node and property list for U27 based on the device tree structure described above:
xusb@70090000 {
...
phys = <&{/xusb_padctl@7009f000/pads/usb2/lanes/usb2-1}>,
<&{/xusb_padctl@7009f000/pads/pcie/lanes/pcie-6}>;
phy-names = "usb2-1", "usb3-0";
nvidia,xusb-padctl = <&xusb_padctl>;
status = "okay";
...
};
For an OTG (On-The-Go) Compatible Port
USB On-The-Go, often abbreviated USB OTG or just OTG, is a specification that allows USB to act as a host or a device on the same port. A USB OTG port can switch back and forth between the roles of host and device.
Jetson Nano USB supports OTG features when connected to a device that has an OTG port. For OTG feature support
a fifth pin, called the ID pin, is added to the standard USB connector. An OTG cable has a USB Type A plug on one end and a Type B plug on the other end. The Type A plug’s ID pin is grounded, while the Type B plug’s ID pin is floating. A device with a Type A plug inserted becomes and OTG A-device (host), and a device with a Type B plug inserted becomes a B-device (device).
Note:
Because its ID pin is floating, J28 is fixed in the device role in the developer kit. It cannot function as a host, e.g. to connect a flash drive, keyboard, or mouse.
This section uses J28, a USB 2.0 Micro B connector, as an example of an OTG port.
Go Through the Schematics
Refer to the reference carrier board’s schematic file included with the design files described above.
Check the USB connectors on the reference carrier board and find the wired socket location to the Jetson module.
USB 2.0 signal pins D+/D− (DP and DN) wire out from J28 and lead to 111 (USB0_DP) and 109 (USB0_DN) on the module socket.
The USB 2.0 Micro B connector, J28, supports only HighSpeed mode, and does not have USB 3.0 signal pairs. See the Tegra X1 (SoC) Technical Reference Manual (TRM) and consult Product Design Guide for Jetson Nano Devices for further information before you design your custom board.
From the schematic, you can see that for J28:
The USB 2.0 signal pair is wired to UTMI pad 0 (USB2 port 0).
The External Connector Class (extcon)
External connectors, which may have different types of cables attached (USB, TA, HDMI, Analog A/V, and others), often have device drivers that detect state changes at the port, and separate device drivers that do something according to the state changes.
The External Connector Class, extcon, supports the use of a notifier for passing information such as state changes between device drivers.
Port switching between OTG roles is generally controlled by the host driver (xHCI) and device driver (xUDC), and can be defined by the state of the ID pin and the VBUS_DETECT pin.
Note:
Because its ID pin is floating, J28 is fixed in the device role in the Jetson Nano Developer Kit. It cannot function as a host, e.g. to connect a flash drive, keyboard, or mouse.
For example, suppose GPIO_PCC4 is the VBUS_DETECT pin and GPIO_PZ1 is the ID pin. To complete the device tree node:
1. Find the corresponding GPIO states on the VBUS_DETECT pin and ID pin.
Generally, the ID pin is designed as internal pull high (logical high). With a Type A plug connected the ID pin is pulled to ground (logical low), while with a Type B plug connected or no cable connected it remains logical high.
The operation of the VBUS_DETECT pin depends on the device’s design. Consider the following schematic, for example:
With a Type B plug connected VBUS_DETECT is logical low because VBUS is provided from an external power supply. When no cable is connected it is logical high.
Note:
VBUS_DETECT is initially logical high, then logical low because VBUS is provided by the host controller. Therefore, the state of the VBUS_DETECT pin does not matter when the OTG-compatible port is operating in the host role.
2. Create a table of GPIO states and their corresponding output cable states like the one in the following table.
GPIO states and corresponding output cable states
GPIO_PZ1 (ID)
GPIO_PCC4 (VBUS_DETECT)
EXTCON_STATE
1
1
0x0 (EXCON_NONE)
0
0
0x2 (EXTCON_USB_HOST)
0
1
0x2 (EXTCON_USB_HOST)
1
0
0x1 (EXTCON_USB)
Under the extcon Node
Port switching between OTG roles is defined by the state of the ID pin and the VBUS_DETECT pin and the settings of the external connector class.
Create an extcon device node and property list using the properties listed below and the table of GPIO states and cable states, above.
compatible: Value must be extcon-gpio-states.
extcon-gpio,name: Name of the extcon device.
gpios: List of the GPIOs.
extcon-gpio,irq-flags: IRQ flags for GPIO.
extcon-gpio,debounce: Debounce time in milliseconds.
extcon-gpio,wait-for-gpio-scan: Wait timeout in milliseconds for scanning all GPIOs’ states after a GPIO state change is detected and debounce time has passed.
extcon-gpio,out-cable-names: Output cable names.
extcon-gpio,cable-states: GPIO states and their corresponding output cable states. The value is an array of byte values. Each even-numbered byte is a GPIO state, and the following odd-numbered byte is the corresponding output cable state.
cable-connected-on-boot: Name of the output cable connected on boot, expressed as an index into extcon-gpio,out-cable-names. The first element is index 0, and so on. If not specified, the system assumes that no cable is to be connected. This property is valid if no GPIOs are provided for cable states.
wakeup-source: A Boolean; true if the device can wake up the system.
For the detailed information about extcon, refer to the documentation at:
kernel/kernel-4.9/Documentation/devicetree/bindings/extcon/extcon-gpio-states.txt
Create an extcon device node and property list based on the device tree structure described above and the table of GPIO states and cable states. This example shows a node definition which assumes GPIO_PCC4 is the VBUS_DTECT pin and GPIO_PZ1 is the ID pin.
vbus_id_extcon: usb_otg {
compatible = "extcon-gpio-states";
extcon-gpio,name = "VBUS_ID";
extcon-gpio,wait-for-gpio-scan = <0>;
extcon-gpio,cable-states = <0x3 0x0
0x0 0x2
0x1 0x2
0x2 0x1>;
gpios = <&gpio TEGRA_GPIO(CC, 4) 0
&gpio TEGRA_GPIO(Z, 1) 0>;
extcon-gpio,out-cable-names =
<EXTCON_USB EXTCON_USB_HOST EXTCON_NONE>;
#extcon-cells = <1>;
};
The USB 2.0 Micro B connector, J28, has the connector’s ID pin floating and the VBUS_DETECT pin of the connector wired out to GPIO00, which corresponds to GPIO_PCC4. Hence J28 can only function in the device role.
A screenshot of a cell phoneDescription automatically generated
This is the table of GPIO states on J28 and their corresponding output cable states:
GPIO_PCC4 (VBUS_DETECT)
EXTCON_STATE
1
0x0 (EXCON_NONE)
0
0x1 (EXTCON_USB)
This is the extcon device node and property list based on the device tree structure described above and the table of GPIO states and corresponding output cable states for GPIO_PCC4, customized for Jetson Nano, where the ID pin is floating the port is fixed in the device role:
vbus_id_gpio_extcon: usb_otg {
compatible = "extcon-gpio-states";
extcon-gpio,name = "VBUS";
extcon-gpio,wait-for-gpio-scan = <0>;
extcon-gpio,cable-states = <0x0 0x1
0x1 0x0>;
gpios = <&gpio TEGRA_GPIO(CC, 4) 0>;
extcon-gpio,out-cable-names =
<EXTCON_USB EXTCON_USB_HOST EXTCON_NONE>;
#extcon-cells = <1>;
};
 
Note:
Check the pinmux table for the GPIO that corresponds to the ID pin and VBUS_DETECT pin.
Under the xusb_padctl Node
xusb_padctl settings for an OTG-compatible port are the same as for a host-only port except that the mode must be otg.
For the example of J28, the USB 2.0 Micro B connector, create a pad/port node and property list:
xusb_padctl: xusb_padctl@7009f000 {
...
pads {
usb2 {
lanes {
usb2-0 {
nvidia,function = "xusb";
status = "okay";
};
...
};
};
pcie {
lanes {
...
};
};
};
ports {
usb2-0 {
mode = "otg";
vbus-supply = <&p3449_vdd_usb_vbus>;
status = "okay";
};
...
};
};
Under the xHCI Node
The xHCI settings for an OTG-compatible port are the same as for a host-only port except for these additional extcon settings:
extcon-cables: OTG feature support. Must contain a pointer to the extcon-cable entry for the USB ID pin. When the extcon cable state is 0, the OTG-compatible port transitions to the host role.
extcon-cable-names: Must be id.
#extcon-cells: Number of cells in the extcon specifier. Must be 1.
For the example of J28, the USB2.0 Micro B connector, create an xHCI node and property list based on the device tree structure described in Under the xusb Node for a host-only port, plus the additional settings above:
xusb@70090000 {
...
extcon-cables = <&vbus_id_gpio_extcon 1>;
extcon-cable-names = "id";
#extcon-cells = <1>;
phys = <&{/xusb_padctl@7009f000/pads/usb2/lanes/usb2-0}>;
phy-names = "usb2-0";
nvidia,xusb-padctl = <&xusb_padctl>;
status = "okay";
...
};
Under the xUDC Node
The Jetson Nano xUDC controller supports both USB 2.0 HighSpeed/FullSpeed and USB 3.0 SuperSpeed protocols.
These are the device tree node properties that apply to the xUDC node:
extcon-cables: OTG feature support. Must contains an extcon-cable entry that detects the USB VBUS pin. When the extcon cable state is 1, the OTG-compatible port transitions to the device role.
extcon-cable-names: Must be vbus.
charger-detector: USB charger detection support. Must be the phandle of the USB charger detection driver DT node.
phys: An array; must contain pointers to the nodes that define each PHY in phy-names.
phy-names: An array; must contain an entry for each PHY used by the controller. Names must be in the form <type>-<port_number>, where <type> is usb2 or usb3.
nvidia,boost_cpu_freq: The value to which CPU frequency is to be boosted. This is only the minimum frequency; DVFS can scale up CPU frequency further based on need and CPU load. CPU boost frequency through PMQOS is enabled for the xUDC controller only when this field’s value is greater than zero. The boost is applicable only to large bulk transfers on bulk endpoints; other endpoints do not need to be boosted.
nvidia,xusb-padctl: A pointer to the xusb-padctl node.
For the detailed information about xUDC, refer to the documentation at:
kernel/kernel-4.9/Documentation/devicetree/bindings/usb/nvidia,tegra-xudc.txt
For the example of J28, the USB2.0 Micro B connector, create an xUDC node and property list for J28 based on the device tree structure described above:
xudc@700d0000 {
extcon-cables = <&vbus_id_gpio_extcon 0>;
extcon-cable-names = "vbus";
#extcon-cells = <1>;
phys = <&{/xusb_padctl@7009f000/pads/usb2/lanes/usb2-0}>,
phy-names = "usb2";
nvidia,xusb-padctl = <&xusb_padctl>;
status = "okay";
};
To resolve possible UPHY lane mapping issues
If you suspect a UPHY lane mapping issue, enter this command to check the lane assignments:
./devmem 0x7009f028
(The hexadecimal number is the register address of the UPHY lane mux. It may be considered a constant.)
Bits
Reset
Description
25-24
0x01
UPHY_LANE6
Each lane’s bits identify the function that owns the lane. Recognized values are:
0: PCIE_X1
1: USB3_SS
3: PCIE_X4
23-22
0x01
UPHY_LANE5
21-20
0x03
UPHY_LANE4
19-18
0x03
UPHY_LANE3
17-16
0x03
UPHY_LANE2
15-14
0x03
UPHY_LANE1
13-0
Reserved
If a target UPHY Lane is not owned by the correct function, check the values of the PCIe subnode and properties under xusb_padctl to be sure that the target lane is assigned correctly.
Note:
Before you design your custom board, verify the lane mapping by consulting Product Design Guide for Jetson Nano Devices.

Fan speed control mapping table

The temperature to fan speed mapping table can be modified with device tree properties.
The fan’s thermal zone temperature is approximated by the average of the CPU and GPU SOC thermal sensor readings. Fan speed is controlled by the PWM signal; its pulse width range is 0-255 units.
The mapping between temperature and fan speed is defined by thermal trips and fan cooling states. The thermal trips refer to the fan thermal zone’s temperature in degrees Celsius, and the fan cooling state are the PWM signal’s corresponding pulse widths. You can define trip temperatures and the corresponding cooling states by creating a custom fan mapping table.
The fan trip temperatures are defined by the active_trip_temps property in the file:
hardware/nvidia/platform/t210/porg/kernel-dts/porg-platforms/tegra210-porg-thermal-fan-est.dtsi
This example defines a set of fan thermal zone trip points:
thermal-fan-est {
name = "thermal-fan-est";
compatible = "thermal-fan-est";
status = "okay";
num_resources = <0>;
shared_data = <&thermal_fan_est_shared_data>;
trip_length = <10>;
active_trip_temps = <0 51000 61000 71000 82000
140000 150000 160000 170000 180000>;
active_hysteresis = <0 15000 9000 9000 10000
0 0 0 0 0>;
};
The fan cooling states are defined by the active_pwm property in the file:
hardware/nvidia/platform/t210/porg/kernel-dts/porg-platforms/tegra210-porg-pwm-fan.dtsi
This example defines a corresponding set of cooling states:
pwm-fan {
compatible = "pwm-fan";
status = "okay";
pwms = <&tegra_pwm 3 45334>;
shared_data = <&pwm_fan_shared_data>;
active_pwm = <0 80 120 160 255 255 255 255 255 255>;
};

Other Considerations When Porting

This section discusses some other considerations and recommendations to keep in mind when porting.

Boot Time Reduction

GNOME shell is the default display and window manager for Ubuntu 18.04. Although it brings a new look to the user experience it comes with performance and memory overhead problems. Many GDM3 and GNOME shell issues are known, with fixes under development. However, considering the Ubuntu release timelines and the trivial nature of the fixes, these fixes may not be backported to Ubuntu 18.04.
Therefore, below are some suggestions for reduce boot time by tweaking rootfs and kernel.

Root Filesystem

These changes to the root filesystem may reduce boot time.
Enable autologin for GDM3 (saves about 14 to 19 seconds of boot time).
Set power mode to MAXN (saves about 8 to 10 seconds of boot time).
Use a lightweight display manager like LightDM. The LightDM service takes about 3 to 5 seconds to start.
To install and configure lightdm display manager, enter the commands:
sudo apt-get update
sudo apt-get install lightdm
sudo dpkg-reconfigure lightdm
NVIDIA recommends LightDM GTK+ Greeter as the default LightDM login greeter. To install this component, enter the commands:
sudo apt-get update
sudo apt-get install lightdm-gtk-greeter
Use a lightweight window manager like LXDE. LXDE takes 3 to 4 seconds to bring up the desktop after login.
To install and enable LXDE and Compton, enter the commands:
sudo apt-get update
sudo apt-get install lxde compton
Create the configuration file /etc/xdg/autostart/lxde-compton.desktop, containing these commands:
[Desktop Entry]
Type=Application
Name=Compton (X Compositor)
GenericName=X compositor
Comment=A X compositor
TryExec=compton
Exec=compton --backend glx -b
OnlyShowIn=LXDE

Kernel

Pass the “quiet” option to the kernel reduces kernel boot time by about 10 seconds.
In /boot/extlinux/extlinux.conf in the target rootfs, set the APPEND parameter to quiet (or add quiet to the parameter if it is already defined:
APPEND ${cbootargs} quiet

Customizing Settings for Flashing the Module

If you customize settings for flashing the module, you must review and modify two flash configuration files:
The common file: p3448-0000.conf.common
The device-specific file:
For an original Jetson Nano (P3448-0000): jetson-nano-sd.conf
For an original Jetson Nano (P3448-0002): jetson-nano-qspi.conf
For a Jetson Nano 2GB (P3448-0003): jetson-nano-2gb-devkit.conf
These are some changes you may want to make in the .conf files:
To change your project’s name, rename the device-specific file.
You need not specify an EEPROM board ID for your custom carrier board.
If you don’t want to use the Dynamic Freq and Voltage Scaling feature, you can disable it with the kernel configuration parameter CONFIG_TEGRA_‌210_DVFS.
To change secondary boot storage you must specify the size of the eMMC in the appropriate configuration file:
To flash QSPI only on original Jetson Nano (P3448-0000): jetson-nano-qspi.conf
To flash QSPI and SD card on original Jetson Nano (P3448-0000): jetson-nano-sd.conf
To flash eMMC on original Jetson Nano (P3448-0002): jetson-nano-emmc.conf
You also must specify eMMC size in p3448-0000.conf.common.
To flash Jetson Nano 2GB: jetson-nano-2gb-devkit.conf
Also review the parameters in the applicable .conf files to see whether any of them need to be changed.

1 Version A02 of the P3449 carrier board is not compatible with the P3448-0020 SOM.