60ec3656eb
Done with sed and God Lines. Only done for C-like code for now. Change-Id: I1ea2eebfdd43610e42b4cf04409ec76c2e8b0042 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40082 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
38 lines
851 B
C
38 lines
851 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
#include <baseboard/gpio.h>
|
|
#include <baseboard/variants.h>
|
|
#include <device/device.h>
|
|
#include <soc/gpio.h>
|
|
#include <vendorcode/google/chromeos/chromeos.h>
|
|
#include <smbios.h>
|
|
#include <string.h>
|
|
|
|
const char *smbios_system_sku(void)
|
|
{
|
|
static char sku_str[7] = ""; /* sku{0..255} */
|
|
uint32_t sku_id = 255;
|
|
|
|
snprintf(sku_str, sizeof(sku_str), "sku%u", sku_id);
|
|
return sku_str;
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
static void mainboard_enable(struct device *dev)
|
|
{
|
|
dev->ops->acpi_inject_dsdt = chromeos_dsdt_generator;
|
|
}
|
|
|
|
struct chip_operations mainboard_ops = {
|
|
.init = mainboard_init,
|
|
.enable_dev = mainboard_enable,
|
|
};
|