Hello,
I've just started using the SDK 9.0 and I'm running into multiple issues trying to add and build additional image sensor module drivers for the OV5647 and AR0521 using the make commands. It looks like the online documentation hasn't changed from the 8.6 SDK version and I've been successfully adding and building image sensors overlays and drivers using the 8.6 SDK version . I've been following the instructions here:
So far I've diverted from them in the following ways to try and get modules and additional overlays to build:
Add build tool chain to the $PATH:
export PATH=~/ti/AM62A/SDK-9_0/external-toolchain-dir/arm-gnu-toolchain-11.3.rel1-x86_64-aarch64-none-linux-gnu/bin:$PATH
Add overlay dtbs to the base Linux build directory Rules.make file:
.... KERNEL_DEVICETREE?= ti/k3-am62a7-sk.dtb ti/k3-am62a7-sk-csi2-imx219.dtbo ti/k3-am62a7-sk-fusion.dtbo ti/k3-am62a7-sk-ethernet-dc01.dtbo ti/k3-am62a7-sk-csi2-ov5647.dtbo ti/k3-am62a7-sk-csi2-ar0521.dtbo ....
Created dtso overlays and updated the Makefile in the ".../arch/arm64/boot/dts/ti/" Linux build directory to mimic the imx219 image sensor:
k3-am62a7-sk-csi2-ar0521-dtbs := k3-am62a7-sk.dtb k3-am62a7-sk-csi2-ar0521.dtbo k3-am62a7-sk-csi2-ov5647-dtbs := k3-am62a7-sk.dtb k3-am62a7-sk-csi2-ov5647.dtbo dtb-$(CONFIG_ARCH_K3) += k3-am62a7-sk-csi2-ar0521.dtb dtb-$(CONFIG_ARCH_K3) += k3-am62a7-sk-csi2-ov5647.dtb
I'm able to build the device tree overlays successfully using the command "make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- dtbs"
The "make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- Image" command doesn't produce any errors but it is only showing a few build messages unlike the plethora it did with 8.6 version so I'm suspicious that it is working.
The "make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- modules" command produced prompted a lot of questions on inital run that I tried to answer as best as I could and then errored out in a way that I'm not sure how to fix:
cad1@cad1-Ubuntu22:~/ti/AM62A/SDK-9_0/board-support/linux-6.1.33+gitAUTOINC+8f7f371be2-g8f7f371be2$ make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- modules arch/arm64/Makefile:36: Detected assembler with broken .inst; disassembly will be unreliable SYNC include/config/auto.conf.cmd * * Restart config... * * * ARMv8.3 architectural features * Enable support for pointer authentication (ARM64_PTR_AUTH) [Y/n/?] y Use pointer authentication for kernel (ARM64_PTR_AUTH_KERNEL) [Y/n/?] (NEW) Y * * ARMv8.4 architectural features * Enable support for the Activity Monitors Unit CPU extension (ARM64_AMU_EXTN) [Y/n/?] y Enable support for tlbi range feature (ARM64_TLB_RANGE) [Y/n/?] (NEW) * * ARMv8.5 architectural features * Branch Target Identification support (ARM64_BTI) [Y/n/?] y Enable support for E0PD (ARM64_E0PD) [Y/n/?] y Memory Tagging Extension support (ARM64_MTE) [Y/n/?] (NEW) * * GCC plugins * GCC plugins (GCC_PLUGINS) [Y/n/?] (NEW) Y Generate some entropy during boot and runtime (GCC_PLUGIN_LATENT_ENTROPY) [N/y/?] (NEW) N * * Memory initialization * Initialize kernel stack variables at function entry > 1. no automatic stack variable initialization (weakest) (INIT_STACK_NONE) 2. zero-init structs marked for userspace (weak) (GCC_PLUGIN_STRUCTLEAK_USER) (NEW) 3. zero-init structs passed by reference (strong) (GCC_PLUGIN_STRUCTLEAK_BYREF) (NEW) 4. zero-init everything passed by reference (very strong) (GCC_PLUGIN_STRUCTLEAK_BYREF_ALL) (NEW) choice[1-4?]: 3 Report forcefully initialized variables (GCC_PLUGIN_STRUCTLEAK_VERBOSE) [N/y/?] (NEW) N Poison kernel stack before returning from syscalls (GCC_PLUGIN_STACKLEAK) [N/y/?] (NEW) N Enable heap memory zeroing on allocation by default (INIT_ON_ALLOC_DEFAULT_ON) [N/y/?] n Enable heap memory zeroing on free by default (INIT_ON_FREE_DEFAULT_ON) [N/y/?] n Enable register zeroing on function exit (ZERO_CALL_USED_REGS) [N/y/?] n * * Kernel hardening options * Randomize layout of sensitive kernel structures > 1. Disable structure layout randomization (RANDSTRUCT_NONE) 2. Fully randomize structure layout (RANDSTRUCT_FULL) (NEW) 3. Limit randomization of structure layout to cache-lines (RANDSTRUCT_PERFORMANCE) (NEW) choice[1-3?]: 1 *** Error during sync of the configuration. make[2]: *** [scripts/kconfig/Makefile:77: syncconfig] Error 1 make[1]: *** [Makefile:704: syncconfig] Error 2 make: *** [Makefile:805: include/config/auto.conf.cmd] Error 2 make: *** Deleting file 'include/config/auto.conf.cmd' make: *** [include/config/auto.conf.cmd] Deleting file 'include/generated/rustc_cfg' make: *** [include/config/auto.conf.cmd] Deleting file 'include/generated/autoconf.h' cad1@cad1-Ubuntu22:~/ti/AM62A/SDK-9_0/board-support/linux-6.1.33+gitAUTOINC+8f7f371be2-g8f7f371be2$ make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- modules arch/arm64/Makefile:36: Detected assembler with broken .inst; disassembly will be unreliable SYNC include/config/auto.conf.cmd *** Error during sync of the configuration. make[2]: *** [scripts/kconfig/Makefile:77: syncconfig] Error 1 make[1]: *** [Makefile:704: syncconfig] Error 2 Makefile:782: include/config/auto.conf.cmd: No such file or directory make: *** [Makefile:805: include/config/auto.conf.cmd] Error 2 make: *** Deleting file 'include/config/auto.conf.cmd'
I'm wondering if this is reproducible or I'm missing some kind of configuration still some where?
Thank you for your support,
Steve T