aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/intel/leafhill/variants/baseboard/include/baseboard/variants.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/intel/leafhill/variants/baseboard/include/baseboard/variants.h')
-rw-r--r--src/mainboard/intel/leafhill/variants/baseboard/include/baseboard/variants.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/mainboard/intel/leafhill/variants/baseboard/include/baseboard/variants.h b/src/mainboard/intel/leafhill/variants/baseboard/include/baseboard/variants.h
deleted file mode 100644
index 65a32b3f38..0000000000
--- a/src/mainboard/intel/leafhill/variants/baseboard/include/baseboard/variants.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * Copyright 2016 Google Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
-#ifndef BASEBOARD_VARIANTS_H
-#define BASEBOARD_VARIANTS_H
-
-#include <soc/gpio.h>
-#include <soc/meminit.h>
-#include <stdint.h>
-#include <vendorcode/google/chromeos/chromeos.h>
-
-/* Return the board id for the current variant board. */
-uint8_t variant_board_id(void);
-
-/* The next set of functions return the gpio table and fill in the number of
- * entries for each table. */
-const struct pad_config *variant_gpio_table(size_t *num);
-const struct pad_config *variant_early_gpio_table(size_t *num);
-const struct pad_config *variant_sleep_gpio_table(size_t *num);
-
-/* Baseboard default swizzle. Can be reused if swizzle is same. */
-extern const struct lpddr4_swizzle_cfg baseboard_lpddr4_swizzle;
-/* Return LPDDR4 configuration structure. */
-const struct lpddr4_cfg *variant_lpddr4_config(void);
-/* Return memory SKU for the board. */
-size_t variant_memory_sku(void);
-
-/* Return ChromeOS gpio table and fill in number of entries. */
-const struct cros_gpio *variant_cros_gpios(size_t *num);
-
-/* Seed the NHLT tables with the board specific information. */
-struct nhlt;
-void variant_nhlt_oem_overrides(const char **oem_id,
- const char **oem_table_id, uint32_t *oem_revision);
-void variant_nhlt_init(struct nhlt *nhlt);
-
-#endif /* BASEBOARD_VARIANTS_H */