drivers/intel/mipi_camera: Add SSDB platform subtype enum

Introduce `platform_subtype` constants for the SSDB `platform_sub`
field, matching the legacy FFD/CHT1/CHT2 values plus an unknown
default.

Change-Id: Ib705252b089d161a7addc372d05e5062307bfb21
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/90186
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
This commit is contained in:
Matt DeVillier 2025-11-09 18:37:09 -06:00
commit f8d12a0bdb

View file

@ -37,6 +37,12 @@ enum platform_type {
PLAT_NVL,
};
enum platform_subtype {
PLAT_SUB_UNKNOWN,
PLAT_SUB_FFD,
PLAT_SUB_CHT1,
PLAT_SUB_CHT2,
};
enum flash_support {
FLASH_DEFAULT = 0, /* default is driver defined */