How to Build TechNexion Camera Drivers for NVIDIA JetPack6.x
  • 15 Oct 2024
  • 1 Minute to read
  • Dark
    Light
  • PDF

How to Build TechNexion Camera Drivers for NVIDIA JetPack6.x

  • Dark
    Light
  • PDF

Article summary

Introduction

This article will introduce how to build the camera drivers for the NVIDIA Jetson platforms and how to port the driver for your JetPack version. TechNexion platforms are using JetPack 6.1. If you want to modify drivers for different vesion of JetPack, you can follow the guide to rebuild the camera drivers.

This guide is only for JetPack 6.x currently

If you want to port to driver to other JetPack version such as JP 5.x, you can follow the guides.

Preparasion

First, you need to setup the environments on your host PC.

  1. Download toolchain for JetPack 6.x.
wget -O aarch64--glibc--stable-2022.08-1.tar.bz2 https://developer.nvidia.com/downloads/embedded/l4t/r36_release_v3.0/toolchain/aarch64--glibc--stable-2022.08-1.tar.bz2
mkdir /opt/aarch64--glibc--stable-2022.08-1 && tar xf aarch64--glibc--stable-2022.08-1.tar.bz2 -C /opt/aarch64--glibc--stable-2022.08-1/
  1. Download JetPack BSP for your interested version.

For JetPack 6.1:

wget https://developer.nvidia.com/downloads/embedded/l4t/r36_release_v4.0/release/Jetson_Linux_R36.4.0_aarch64.tbz2
tar xf Jetson_Linux_R36.4.0_aarch64.tbz2

Build Camera Drivers with Jetson BSP

There is an example for building TechNexion TEVS camera driver for JetPack 6.1 on Jetson Orin Nano DevKit.

We can download BSP sources by source_sync.sh:
For JetPack 6.1:

cd Linux_for_Tegra/source/
./source_sync.sh -k -t jetson_36.4

After download the kernel source codes by source_sync.sh, you will see that:

source/
├── dtc-src
├── generic_rt_build.sh
├── hardware
├── hwpm
├── kernel
├── kernel_src_build_env.sh
├── Makefile
├── nvbuild.sh
├── nvdisplay
├── nvethernetrm
├── nvgpu
├── nvidia-oot
├── nv_src_build.sh
└── source_sync.sh

Then we need to clone TechNexion camera driver, follow the steps:

pushd nvidia-oot
git submodule add -b tn_l4t-r36.4.ga_kernel-5.15 https://github.com/TechNexion-Vision/TEV-Jetson_Camera_driver.git drivers/media/i2c/technexion
echo 'obj-m += technexion/' >> drivers/media/i2c/Makefile
popd

Then we need to modify device tree:

pushd hardware/nvidia/t23x/nv-public/
git remote add technexion https://github.com/TechNexion-Vision/TEV-JetsonOrin-Nano_device-tree.git
git fetch technexion
git checkout tn_l4t-r36.4.ga_kernel-5.15
popd

Finally, we can run nv_build.sh to build the BSP.

export CROSS_COMPILE=/opt/aarch64--glibc--stable-2022.08-1/aarch64--glibc--stable-2022.08-1/bin/aarch64-linux-
./nvbuild.sh -o build

After building, you can find the tevs driver module:

./build/nvidia-oot/drivers/media/i2c/technexion/tevs/tevs.ko

Was this article helpful?