mb/google/zork: Remove unsused code
Remove unused code that appears to be left over from grunt. Signed-off-by: Mathew King <mathewk@chromium.org> Change-Id: Id5bdb1c957342d55c5e6378c503b8d90da050601 Reviewed-on: https://review.coreboot.org/c/coreboot/+/48505 Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
c8340d471b
commit
d0d0705f20
|
@ -150,8 +150,6 @@ static void mainboard_devtree_update(void)
|
||||||
|
|
||||||
static void mainboard_init(void *chip_info)
|
static void mainboard_init(void *chip_info)
|
||||||
{
|
{
|
||||||
const struct sci_source *gpes;
|
|
||||||
size_t num;
|
|
||||||
int boardid;
|
int boardid;
|
||||||
|
|
||||||
mainboard_ec_init();
|
mainboard_ec_init();
|
||||||
|
@ -162,17 +160,6 @@ static void mainboard_init(void *chip_info)
|
||||||
|
|
||||||
/* Update DUT configuration */
|
/* Update DUT configuration */
|
||||||
mainboard_devtree_update();
|
mainboard_devtree_update();
|
||||||
|
|
||||||
/*
|
|
||||||
* Some platforms use SCI not generated by a GPIO pin (event above 23).
|
|
||||||
* For these boards, gpe_configure_sci() is still needed, but all GPIO
|
|
||||||
* generated events (23-0) must be removed from gpe_table[].
|
|
||||||
* For boards that only have GPIO generated events, table gpe_table[]
|
|
||||||
* must be removed, and get_gpe_table() should return NULL.
|
|
||||||
*/
|
|
||||||
gpes = variant_gpe_table(&num);
|
|
||||||
if (gpes != NULL)
|
|
||||||
gpe_configure_sci(gpes, num);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void mainboard_get_dxio_ddi_descriptors(const fsp_dxio_descriptor **dxio_descs,
|
void mainboard_get_dxio_ddi_descriptors(const fsp_dxio_descriptor **dxio_descs,
|
||||||
|
|
|
@ -169,18 +169,6 @@ struct soc_amd_gpio *variant_base_gpio_table(size_t *size)
|
||||||
return gpio_set_stage_ram;
|
return gpio_set_stage_ram;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* This function is still needed for boards that sets gevents above 23
|
|
||||||
* that will generate SCI or SMI. Normally this function
|
|
||||||
* points to a table of gevents and what needs to be set. The code that
|
|
||||||
* calls it was modified so that when this function returns NULL then the
|
|
||||||
* caller does nothing.
|
|
||||||
*/
|
|
||||||
const __weak struct sci_source *variant_gpe_table(size_t *num)
|
|
||||||
{
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void wifi_power_reset_configure_active_low_power(void)
|
static void wifi_power_reset_configure_active_low_power(void)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -181,18 +181,6 @@ struct soc_amd_gpio *variant_base_gpio_table(size_t *size)
|
||||||
return gpio_set_stage_ram;
|
return gpio_set_stage_ram;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* This function is still needed for boards that sets gevents above 23
|
|
||||||
* that will generate SCI or SMI. Normally this function
|
|
||||||
* points to a table of gevents and what needs to be set. The code that
|
|
||||||
* calls it was modified so that when this function returns NULL then the
|
|
||||||
* caller does nothing.
|
|
||||||
*/
|
|
||||||
const __weak struct sci_source *variant_gpe_table(size_t *num)
|
|
||||||
{
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void wifi_power_reset_configure_active_low_power(void)
|
static void wifi_power_reset_configure_active_low_power(void)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
#include <soc/platform_descriptors.h>
|
#include <soc/platform_descriptors.h>
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
const struct sci_source *variant_gpe_table(size_t *num);
|
|
||||||
const struct soc_amd_gpio *variant_early_gpio_table(size_t *size);
|
const struct soc_amd_gpio *variant_early_gpio_table(size_t *size);
|
||||||
/*
|
/*
|
||||||
* This function provides base GPIO configuration table. It is typically provided by
|
* This function provides base GPIO configuration table. It is typically provided by
|
||||||
|
|
Loading…
Reference in New Issue