ccmp15: remove MCA entries as it will never be populated

Signed-off-by: Hector Bujanda <hector.bujanda@digi.com>
This commit is contained in:
Hector Bujanda 2024-01-05 14:28:15 +01:00
parent 214acb335d
commit 40802dff3d
2 changed files with 0 additions and 7 deletions

View File

@ -53,7 +53,6 @@ STM32MP_KERNEL_DEVICETREE:ccmp15-dvk += " \
_ov_som_bt_ccmp15.dtbo \ _ov_som_bt_ccmp15.dtbo \
_ov_som_bt_test_ccmp15.dtbo \ _ov_som_bt_test_ccmp15.dtbo \
_ov_som_m4_ccmp15.dtbo \ _ov_som_m4_ccmp15.dtbo \
_ov_som_mca_ccmp15.dtbo \
_ov_som_wifi_ccmp15.dtbo \ _ov_som_wifi_ccmp15.dtbo \
" "
# Set DTB load address to U-Boot fdt_addr_r # Set DTB load address to U-Boot fdt_addr_r

View File

@ -53,8 +53,6 @@ setenv ORIG_overlays ${overlays}
# Determine overlays to apply depending on the hardware capabilities # Determine overlays to apply depending on the hardware capabilities
# described by the HWID, SOM version, and carrier board version. # described by the HWID, SOM version, and carrier board version.
# #
setexpr module_has_mca ${hwid_2} \& 10000
setexpr module_has_mca ${module_has_mca} / 10000
setexpr module_has_wifi ${hwid_2} \& 20000 setexpr module_has_wifi ${hwid_2} \& 20000
setexpr module_has_wifi ${module_has_wifi} / 20000 setexpr module_has_wifi ${module_has_wifi} / 20000
setexpr module_has_bt ${hwid_2} \& 40000 setexpr module_has_bt ${hwid_2} \& 40000
@ -68,10 +66,6 @@ if test "${module_has_wifi}" = "1" && test -z "${disable_wifi}"; then
setenv overlays _ov_som_wifi_ccmp15.dtbo,${overlays} setenv overlays _ov_som_wifi_ccmp15.dtbo,${overlays}
fi fi
if test "${module_has_mca}" = "1" && test -z "${disable_mca}"; then
setenv overlays _ov_som_mca_ccmp15.dtbo,${overlays}
fi
# Apply DVKv1 overlay if the board_version is 1 # Apply DVKv1 overlay if the board_version is 1
if test -z "${board_version}" || test "${board_version}" -eq "1"; then if test -z "${board_version}" || test "${board_version}" -eq "1"; then
setenv overlays _ov_board_v1_ccmp15-dvk.dtbo,${overlays} setenv overlays _ov_board_v1_ccmp15-dvk.dtbo,${overlays}