THis patch removes IPU & MIPI related support from EHL CRB as they are not supported in EHL. Signed-off-by: Tan, Lean Sheng <lean.sheng.tan@intel.com> Change-Id: I3eb038009daaabd048f40c7953cb2c111cd4fe63 Reviewed-on: https://review.coreboot.org/c/coreboot/+/48122 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Werner Zeh <werner.zeh@siemens.com> Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
26 lines
498 B
C
26 lines
498 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <baseboard/variants.h>
|
|
#include <device/device.h>
|
|
#include <soc/gpio.h>
|
|
#include <smbios.h>
|
|
|
|
static void mainboard_init(void *chip_info)
|
|
{
|
|
const struct pad_config *pads;
|
|
size_t num;
|
|
|
|
pads = variant_gpio_table(&num);
|
|
gpio_configure_pads(pads, num);
|
|
}
|
|
|
|
const char *smbios_system_sku(void)
|
|
{
|
|
static const char *sku_str = "sku2147483647"; /* sku{0-1} */
|
|
return sku_str;
|
|
}
|
|
|
|
struct chip_operations mainboard_ops = {
|
|
.init = mainboard_init,
|
|
};
|