Bind Options
A bind process creates a hypervisor image that combines DTB/IFS/KERNEL of server VMs, Hypervisor kernel, and PCT.
Syntax for bind_partitions
:
# for standard package/linux nsr production package
$ cd drive-foundation/
# for safety
$ cd drive-foundation-safety/
$ ./make/bind_partitions [-b <board_name>] <pct> [-p <pct_variant>] [-u <use_case>] [-r <storage_config>] [options]
Example of Standard Linux PCT with ECO (QSPI+UFS) use case on NVIDIA DRIVE AGX Orin? Devkit:
bind_partitions -b p3710-10-a01 linux
-u eco
option.Example of Standard QNX PCT with NDAS use case on NVIDIA DRIVE AGX Orin? DevKit:
bind_partitions -b p3710-10-a01 qnx -u ndas
The following tables list the supported bind options.
Supported Bind Options
Use cases | bind command | -b <board_name> | <pct> -p <pct_variant> | -u <use_case> (default) | -r <storage_config> (default) | Comment |
---|---|---|---|---|---|---|
ECO | bind_partitions |
|
|
|
|
|
|
|
|
|
The -r no_ufs option disables UFS
storage, which is used as the secondary boot device on P3710 default
ECO use case. Since UFS will be disabled by this option, EMMC need
to be the secondary boot device. To make EMMC as the secondary boot
device of P3710 for the above case,specify the -u
eco option with the -r no_ufs option. |
||
|
|
|
|
p3898 supports chip sku TA977SA and EMMC as the secondary storage device. | ||
NDAS | bind_partitions |
|
|
|
|
With the BASE storage configuration option (-r
base ),UFS device is disabled. |
|
|
|
dual-qnx supports only NDAS storage configuration. | |||
REC | bind_partitions |
|
|
Not applicable | Not applicable |
Bind Options for Power Profile
Platforms | Standard, Linux Production, or Safety | Power Profile (default) |
---|---|---|
p3898 | Standard |
|
p3710-1?-?0? | ECO use case: Standard or Linux production |
|
NDAS use case: QNX Standard/safety |
|
|
Safety |
|
|
p3710-10-a01-ct03 | Standard, Linux production, or safety |
|
p3710-10-a01-ct04 | Safety |
|
p3710-10-a01-ct04 | Standard or Linux production |
|
p3710-10-s05-ct05 | Standard or Linux production |
|
p4024 | Standard |
|
Bind Options for SOC ID for C2C in GOS-DT
Platforms | SOC ID for C2C in GOS-DT | Comments |
---|---|---|
p3663 / p3710 / p4024 | -s <SOC_ID:1~4294967295>
|
Specify SOC ID in GOS-DT and rebuild GOS device tree. |
When the <SOC_ID>
argument is specified with the
-s
option, SOC_IDENTIFICATION_VALUE
is defined
and the <SOC_ID>
value will be set for soc_id in GOS-DT
property.
#ifdef SOC_IDENTIFICATION_VALUE
soc_id = <SOC_IDENTIFICATION_VALUE>;
#else
soc_id = <1>;
#endif
DM-VERITY and Root Filesystem Permission for DRIVE AV Linux PCTs
To enable dm-verity, root filesytem partition permission should be read-only.
Therefore, enabling dm-verity and read-write root filesystem cannot co-exist and
will cause the bind_partition
command to fail. The following table
shows the default values and possible combination of the
OS_ARGS_ENABLE_DM_VERITY
value and the
OS_ARGS_ROOT_MOUNT_PER
value.
Platform and use cases | Extra option of OS_ARGS_ENABLE_DM_VERITY | Extra option of OS_ARGS_ROOT_MOUNT_PER | OS_ARGS_ENABLE_DM_VERITY value | OS_ARGS_ROOT_MOUNT_PER value |
---|---|---|---|---|
P3663/P3710/P3898 AV+L ECO | Default (or
OS_ARGS_ENABLE_DM_VERITY=0 ) |
Default (or OS_ARGS_ROOT_MOUNT_PER=rw ) |
0 | rw |
OS_ARGS_ROOT_MOUNT_PER=ro
|
0 | ro | ||
OS_ARGS_ENABLE_DM_VERITY=1
|
Default (or OS_ARGS_ROOT_MOUNT_PER=rw ) |
Bind error due to DM-verity enabled and root filesystem have rw permission. | ||
OS_ARGS_ROOT_MOUNT_PER=ro
|
1 | ro | ||
P3710 AV+L NDAS (-u ndas )
P4024 AV+L-REC (-b p4024-* ) |
Default (or
OS_ARGS_ENABLE_DM_VERITY=0 ) |
Default (or OS_ARGS_ROOT_MOUNT_PER=ro ) |
0 | ro |
OS_ARGS_ROOT_MOUNT_PER=rw
|
0 | rw | ||
OS_ARGS_ENABLE_DM_VERITY=1
|
Default (or OS_ARGS_ROOT_MOUNT_PER=ro ) |
1 | ro | |
OS_ARGS_ROOT_MOUNT_PER=rw
|
Bind error due to DM-verity enabled and root filesystem have rw permission. |
For instance, to enable dm-verity, you can specify
OS_ARGS_ENABLE_DM_VERITY=1 OS_ARGS_ROOT_MOUNT_PER=ro
with the
bind_partitions
command regardless of the default values.
bind_partitions -b p3663-a01 linux OS_ARGS_ENABLE_DM_VERITY=1 OS_ARGS_ROOT_MOUNT_PER=ro
Use NVMe Storage Instead of UFS
-u eco_ufs_boot
option. If you want to
replace the UFS storage with NVME, the default ECO profile will not boot. To do so,
you must bind the ECO profile with QSPI and eMMC (with eMMC as the secondary boot
device) by using the -r no_ufs
option for PCT, as shown in the
following
example:bind_partitions -b p3710-10-a01 -u eco -r no_ufs ENABLE_NVME=y
The preceding options cause BCT, BPMP-DTB, GOS-DTB, and PCT to disable UFS device and enable NVMe (for example, PCIe configuration, storage partition layout, and disabling smmu of UFS partitions).