soc/qualcomm/x1p42100: Rename SOC_QUALCOMM_BASE to include SoC name

The generic config name SOC_QUALCOMM_BASE is too broad and could
potentially conflict with other Qualcomm SoC families or common
code.

Rename it to SOC_QUALCOMM_X1P42100_BASE in both Kconfig and
Makefile.mk to ensure the configuration is explicitly scoped to
the X1P42100 series.

Change-Id: Idb74ad5ecd6180e3b472a5d007157fcc76f3e89d
Signed-off-by: Subrata Banik <subratabanik@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/91891
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Subrata Banik 2026-03-26 20:32:41 +00:00
commit cb05d160d4
2 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
## SPDX-License-Identifier: GPL-2.0-only
config SOC_QUALCOMM_BASE
config SOC_QUALCOMM_X1P42100_BASE
bool
default n
select ARCH_BOOTBLOCK_ARMV8_64
@ -33,7 +33,7 @@ config SOC_QUALCOMM_BASE
config SOC_QUALCOMM_X1P42100
bool
select SOC_QUALCOMM_BASE
select SOC_QUALCOMM_X1P42100_BASE
default n
help
Choose this option if the mainboard is built using Qualcomm X1P42100 system-on-a-chip SoC.
@ -42,12 +42,12 @@ config SOC_QUALCOMM_HAMOA
bool
select ARM64_USE_SECURE_OS
select ARM64_USE_SECURE_OS_PAYLOAD
select SOC_QUALCOMM_BASE
select SOC_QUALCOMM_X1P42100_BASE
default n
help
Choose this option if the mainboard is built using Qualcomm Hamoa system-on-a-chip SoC.
if SOC_QUALCOMM_BASE
if SOC_QUALCOMM_X1P42100_BASE
config QC_BLOBS_UPSTREAM
bool "QC blobs are available in upstream repository"

View file

@ -1,5 +1,5 @@
## SPDX-License-Identifier: GPL-2.0-only
ifeq ($(CONFIG_SOC_QUALCOMM_BASE),y)
ifeq ($(CONFIG_SOC_QUALCOMM_X1P42100_BASE),y)
decompressor-y += decompressor.c
decompressor-y += mmu.c
@ -392,4 +392,4 @@ endif # ifeq ($(CONFIG_QC_RAMDUMP_ENABLE),y)
endif # ifeq ($(CONFIG_USE_QC_BLOBS),y)
endif # ifeq ($(CONFIG_QC_BLOBS_UPSTREAM),y)
endif # ifeq ($(CONFIG_SOC_QUALCOMM_BASE),y)
endif # ifeq ($(CONFIG_SOC_QUALCOMM_X1P42100_BASE),y)