1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef VARIANT_H 4 #define VARIANT_H 5 6 #include <device/device.h> 7 #include <soc/romstage.h> 8 #include <stdint.h> 9 10 int variant_smbios_data(struct device *dev, int *handle, 11 unsigned long *current); 12 void lan_init(void); 13 14 unsigned int variant_get_spd_index(void); 15 bool variant_is_dual_channel(const unsigned int spd_index); 16 17 #endif 18