Difference between revisions of "I2c bus number and video node"
Line 44: | Line 44: | ||
=== Nvidia Jetson === | === Nvidia Jetson === | ||
The following description is only for official Nvidia development boards, third party board need to be confirmed with the manufacturer. | The following description is only for official Nvidia development boards, third party board need to be confirmed with the manufacturer. | ||
− | + | ==== AGX-Xavier, TX2 Devkit==== | |
− | + | [[ADP-N1-V2.0 Adapter Board Data Sheet|ADP-N1-V2.0]] has 6 MIPI CSI-2 interfaces, corresponding to the i2c bus numbers 30-35. | |
− | + | {| class="wikitable" | |
− | + | !cam index | |
− | + | ! i2c number | |
− | + | |- | |
− | + | |0 | |
− | + | |30 | |
− | + | |- | |
+ | |1 | ||
+ | |31 | ||
+ | |- | ||
+ | |2 | ||
+ | |32 | ||
+ | |- | ||
+ | |3 | ||
+ | |33 | ||
+ | |- | ||
+ | |4 | ||
+ | |34 | ||
+ | |- | ||
+ | |5 | ||
+ | |35 | ||
+ | |} | ||
+ | ====Xavier NX , TX2 NX==== | ||
+ | {| class="wikitable" | ||
+ | !cam index | ||
+ | !i2c number | ||
+ | |- | ||
+ | |0 | ||
+ | |10 | ||
+ | |- | ||
+ | |1 | ||
+ | |9 | ||
+ | |} | ||
+ | ====Nano A02, Nano 2GB==== | ||
+ | {| class="wikitable" | ||
+ | !cam index | ||
+ | ! i2c number | ||
+ | |- | ||
+ | |0 | ||
+ | |7 | ||
+ | |- | ||
+ | |1 | ||
+ | |8 | ||
+ | |} | ||
+ | ====Nano A02, Nano 2GB==== | ||
+ | i2c bus number is 6. | ||
+ | ===NXP i.MX platform=== | ||
== Description of video nodes == | == Description of video nodes == |
Revision as of 13:17, 27 February 2022
1 I2c bus number on different boards
For camera modules with MIPI CSI-2 interface, the i2c bus is commonly provided as the communication channel for parameter configuration. Users use the i2c protocol to access the camera registers. A series of shell scripts are provided to facilitate this operation, such as VEYE-MIPI-X I2C.sh,CS-MIPI-X I2C.sh,VEYE-MIPI-IMX335 i2c script.
Generally, there is a matching i2c bus for each MIPI CSI-2 interface on each motherboard. For all our scripts, we can use the -b [bus numer]
option to indicate which i2c bus is targeted for this operation. Below, we have summarized the i2c bus serial numbers for commonly used motherboards.
1.1 Raspberry pi
1.1.1 General
For a Raspberry Pi with only one mipi csi-2 interface, the i2c bus is 10. If your piOS is very old, then maybe it is 0.
Special, for the Computer module series. Make the following description.
1.1.2 CM3
CM3 use I2C-1 to control 2 cameras,It is time-sharing multiplexing.
./camera_i2c_config [cameranum]
cameranum | description |
---|---|
0 | CAM0 |
1 | CAM1 |
1.1.3 CM4
The CM4 module uses two I2C to communicate with two cameras respectively.
./camera_i2c_config
i2c bus num | description |
---|---|
0 | CAM0 |
10 | CAM1 |
1.2 Nvidia Jetson
The following description is only for official Nvidia development boards, third party board need to be confirmed with the manufacturer.
1.2.1 AGX-Xavier, TX2 Devkit
ADP-N1-V2.0 has 6 MIPI CSI-2 interfaces, corresponding to the i2c bus numbers 30-35.
cam index | i2c number |
---|---|
0 | 30 |
1 | 31 |
2 | 32 |
3 | 33 |
4 | 34 |
5 | 35 |
1.2.2 Xavier NX , TX2 NX
cam index | i2c number |
---|---|
0 | 10 |
1 | 9 |
1.2.3 Nano A02, Nano 2GB
cam index | i2c number |
---|---|
0 | 7 |
1 | 8 |
1.2.4 Nano A02, Nano 2GB
i2c bus number is 6.