Files
system76-coreboot/src/mainboard/google/auron/variant.h
Angel Pons 3ece16410f mb/google/auron: Drop variant_romstage_entry
Replace it with `mainboard_post_raminit`.

Change-Id: I94636c775cee6c14317ecff36972e2d267d28c91
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49774
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
2021-01-23 13:35:47 +00:00

20 lines
411 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef VARIANT_H
#define VARIANT_H
#include <device/device.h>
#include <soc/romstage.h>
#include <stdint.h>
int variant_smbios_data(struct device *dev, int *handle,
unsigned long *current);
void lan_init(void);
void mainboard_fill_spd_data(struct pei_data *pei_data);
void fill_spd_for_index(uint8_t spd[], unsigned int index);
#define SPD_LEN 256
#endif