mb/siemens/mc_apl1: Deduplicate wait_for_legacy_dev()
There's one copy of this function for all variants except mc_apl4. Move one copy into common mainboard.c and exit early if running on mc_apl4. Change-Id: I4e35b58adc074831ccec433b8e014db0695b955e Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47402 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
afb60e7112
commit
45eeae4f8f
|
@ -1,5 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||||
|
|
||||||
|
#include <bootstate.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <device/mmio.h>
|
#include <device/mmio.h>
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
|
@ -13,6 +14,7 @@
|
||||||
#include <soc/pci_devs.h>
|
#include <soc/pci_devs.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <timer.h>
|
#include <timer.h>
|
||||||
|
#include <timestamp.h>
|
||||||
#include <baseboard/variants.h>
|
#include <baseboard/variants.h>
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
|
|
||||||
|
@ -222,3 +224,33 @@ struct chip_operations mainboard_ops = {
|
||||||
.init = mainboard_init,
|
.init = mainboard_init,
|
||||||
.final = mainboard_final,
|
.final = mainboard_final,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void wait_for_legacy_dev(void *unused)
|
||||||
|
{
|
||||||
|
uint32_t legacy_delay, us_since_boot;
|
||||||
|
struct stopwatch sw;
|
||||||
|
|
||||||
|
if (CONFIG(BOARD_SIEMENS_MC_APL4))
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* Open main hwinfo block. */
|
||||||
|
if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS)
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* Get legacy delay parameter from hwinfo. */
|
||||||
|
if (hwilib_get_field(LegacyDelay, (uint8_t *) &legacy_delay,
|
||||||
|
sizeof(legacy_delay)) != sizeof(legacy_delay))
|
||||||
|
return;
|
||||||
|
|
||||||
|
us_since_boot = get_us_since_boot();
|
||||||
|
/* No need to wait if the time since boot is already long enough.*/
|
||||||
|
if (us_since_boot > legacy_delay)
|
||||||
|
return;
|
||||||
|
stopwatch_init_msecs_expire(&sw, (legacy_delay - us_since_boot) / 1000);
|
||||||
|
printk(BIOS_NOTICE, "Wait remaining %d of %d us for legacy devices...",
|
||||||
|
legacy_delay - us_since_boot, legacy_delay);
|
||||||
|
stopwatch_wait_until_expired(&sw);
|
||||||
|
printk(BIOS_NOTICE, "done!\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOT_STATE_INIT_ENTRY(BS_DEV_ENUMERATE, BS_ON_ENTRY, wait_for_legacy_dev, NULL);
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
#include <intelblocks/lpc_lib.h>
|
#include <intelblocks/lpc_lib.h>
|
||||||
#include <intelblocks/pcr.h>
|
#include <intelblocks/pcr.h>
|
||||||
#include <soc/pcr_ids.h>
|
#include <soc/pcr_ids.h>
|
||||||
#include <timer.h>
|
|
||||||
#include <timestamp.h>
|
|
||||||
#include <baseboard/variants.h>
|
#include <baseboard/variants.h>
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
|
|
||||||
|
@ -51,36 +49,10 @@ void variant_mainboard_final(void)
|
||||||
pcr_rmw32(PID_MODPHY, TX_DWORD3, (0x00 << 16), (0x4a << 16));
|
pcr_rmw32(PID_MODPHY, TX_DWORD3, (0x00 << 16), (0x4a << 16));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void wait_for_legacy_dev(void *unused)
|
|
||||||
{
|
|
||||||
uint32_t legacy_delay, us_since_boot;
|
|
||||||
struct stopwatch sw;
|
|
||||||
|
|
||||||
/* Open main hwinfo block. */
|
|
||||||
if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* Get legacy delay parameter from hwinfo. */
|
|
||||||
if (hwilib_get_field(LegacyDelay, (uint8_t *) &legacy_delay,
|
|
||||||
sizeof(legacy_delay)) != sizeof(legacy_delay))
|
|
||||||
return;
|
|
||||||
|
|
||||||
us_since_boot = get_us_since_boot();
|
|
||||||
/* No need to wait if the time since boot is already long enough.*/
|
|
||||||
if (us_since_boot > legacy_delay)
|
|
||||||
return;
|
|
||||||
stopwatch_init_msecs_expire(&sw, (legacy_delay - us_since_boot) / 1000);
|
|
||||||
printk(BIOS_NOTICE, "Wait remaining %d of %d us for legacy devices...",
|
|
||||||
legacy_delay - us_since_boot, legacy_delay);
|
|
||||||
stopwatch_wait_until_expired(&sw);
|
|
||||||
printk(BIOS_NOTICE, "done!\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
static void finalize_boot(void *unused)
|
static void finalize_boot(void *unused)
|
||||||
{
|
{
|
||||||
/* Set coreboot ready LED. */
|
/* Set coreboot ready LED. */
|
||||||
gpio_output(CNV_RGI_DT, 1);
|
gpio_output(CNV_RGI_DT, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOT_STATE_INIT_ENTRY(BS_DEV_ENUMERATE, BS_ON_ENTRY, wait_for_legacy_dev, NULL);
|
|
||||||
BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT, BS_ON_ENTRY, finalize_boot, NULL);
|
BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT, BS_ON_ENTRY, finalize_boot, NULL);
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <hwilib.h>
|
#include <hwilib.h>
|
||||||
#include <intelblocks/lpc_lib.h>
|
#include <intelblocks/lpc_lib.h>
|
||||||
#include <timer.h>
|
|
||||||
#include <timestamp.h>
|
|
||||||
#include <baseboard/variants.h>
|
#include <baseboard/variants.h>
|
||||||
#include <soc/pci_devs.h>
|
#include <soc/pci_devs.h>
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
|
@ -23,30 +21,3 @@ void variant_mainboard_final(void)
|
||||||
pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
|
pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void wait_for_legacy_dev(void *unused)
|
|
||||||
{
|
|
||||||
uint32_t legacy_delay, us_since_boot;
|
|
||||||
struct stopwatch sw;
|
|
||||||
|
|
||||||
/* Open main hwinfo block. */
|
|
||||||
if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* Get legacy delay parameter from hwinfo. */
|
|
||||||
if (hwilib_get_field(LegacyDelay, (uint8_t *) &legacy_delay,
|
|
||||||
sizeof(legacy_delay)) != sizeof(legacy_delay))
|
|
||||||
return;
|
|
||||||
|
|
||||||
us_since_boot = get_us_since_boot();
|
|
||||||
/* No need to wait if the time since boot is already long enough.*/
|
|
||||||
if (us_since_boot > legacy_delay)
|
|
||||||
return;
|
|
||||||
stopwatch_init_msecs_expire(&sw, (legacy_delay - us_since_boot) / 1000);
|
|
||||||
printk(BIOS_NOTICE, "Wait remaining %d of %d us for legacy devices...",
|
|
||||||
legacy_delay - us_since_boot, legacy_delay);
|
|
||||||
stopwatch_wait_until_expired(&sw);
|
|
||||||
printk(BIOS_NOTICE, "done!\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOT_STATE_INIT_ENTRY(BS_DEV_ENUMERATE, BS_ON_ENTRY, wait_for_legacy_dev, NULL);
|
|
||||||
|
|
|
@ -12,8 +12,6 @@
|
||||||
#include <intelblocks/lpc_lib.h>
|
#include <intelblocks/lpc_lib.h>
|
||||||
#include <intelblocks/pcr.h>
|
#include <intelblocks/pcr.h>
|
||||||
#include <soc/pcr_ids.h>
|
#include <soc/pcr_ids.h>
|
||||||
#include <timer.h>
|
|
||||||
#include <timestamp.h>
|
|
||||||
#include <baseboard/variants.h>
|
#include <baseboard/variants.h>
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
|
|
||||||
|
@ -70,36 +68,10 @@ void variant_mainboard_final(void)
|
||||||
outb(FULL_RST, RST_CNT);
|
outb(FULL_RST, RST_CNT);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void wait_for_legacy_dev(void *unused)
|
|
||||||
{
|
|
||||||
uint32_t legacy_delay, us_since_boot;
|
|
||||||
struct stopwatch sw;
|
|
||||||
|
|
||||||
/* Open main hwinfo block. */
|
|
||||||
if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* Get legacy delay parameter from hwinfo. */
|
|
||||||
if (hwilib_get_field(LegacyDelay, (uint8_t *) &legacy_delay,
|
|
||||||
sizeof(legacy_delay)) != sizeof(legacy_delay))
|
|
||||||
return;
|
|
||||||
|
|
||||||
us_since_boot = get_us_since_boot();
|
|
||||||
/* No need to wait if the time since boot is already long enough.*/
|
|
||||||
if (us_since_boot > legacy_delay)
|
|
||||||
return;
|
|
||||||
stopwatch_init_msecs_expire(&sw, (legacy_delay - us_since_boot) / 1000);
|
|
||||||
printk(BIOS_NOTICE, "Wait remaining %d of %d us for legacy devices...",
|
|
||||||
legacy_delay - us_since_boot, legacy_delay);
|
|
||||||
stopwatch_wait_until_expired(&sw);
|
|
||||||
printk(BIOS_NOTICE, "done!\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
static void finalize_boot(void *unused)
|
static void finalize_boot(void *unused)
|
||||||
{
|
{
|
||||||
/* Set coreboot ready LED. */
|
/* Set coreboot ready LED. */
|
||||||
gpio_output(CNV_RGI_DT, 1);
|
gpio_output(CNV_RGI_DT, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOT_STATE_INIT_ENTRY(BS_DEV_ENUMERATE, BS_ON_ENTRY, wait_for_legacy_dev, NULL);
|
|
||||||
BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT, BS_ON_ENTRY, finalize_boot, NULL);
|
BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT, BS_ON_ENTRY, finalize_boot, NULL);
|
||||||
|
|
|
@ -10,8 +10,6 @@
|
||||||
#include <intelblocks/lpc_lib.h>
|
#include <intelblocks/lpc_lib.h>
|
||||||
#include <intelblocks/pcr.h>
|
#include <intelblocks/pcr.h>
|
||||||
#include <soc/pcr_ids.h>
|
#include <soc/pcr_ids.h>
|
||||||
#include <timer.h>
|
|
||||||
#include <timestamp.h>
|
|
||||||
#include <baseboard/variants.h>
|
#include <baseboard/variants.h>
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
|
|
||||||
|
@ -69,36 +67,10 @@ void variant_mainboard_final(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void wait_for_legacy_dev(void *unused)
|
|
||||||
{
|
|
||||||
uint32_t legacy_delay, us_since_boot;
|
|
||||||
struct stopwatch sw;
|
|
||||||
|
|
||||||
/* Open main hwinfo block. */
|
|
||||||
if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* Get legacy delay parameter from hwinfo. */
|
|
||||||
if (hwilib_get_field(LegacyDelay, (uint8_t *) &legacy_delay,
|
|
||||||
sizeof(legacy_delay)) != sizeof(legacy_delay))
|
|
||||||
return;
|
|
||||||
|
|
||||||
us_since_boot = get_us_since_boot();
|
|
||||||
/* No need to wait if the time since boot is already long enough.*/
|
|
||||||
if (us_since_boot > legacy_delay)
|
|
||||||
return;
|
|
||||||
stopwatch_init_msecs_expire(&sw, (legacy_delay - us_since_boot) / 1000);
|
|
||||||
printk(BIOS_NOTICE, "Wait remaining %d of %d us for legacy devices...",
|
|
||||||
legacy_delay - us_since_boot, legacy_delay);
|
|
||||||
stopwatch_wait_until_expired(&sw);
|
|
||||||
printk(BIOS_NOTICE, "done!\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
static void finalize_boot(void *unused)
|
static void finalize_boot(void *unused)
|
||||||
{
|
{
|
||||||
/* Set coreboot ready LED. */
|
/* Set coreboot ready LED. */
|
||||||
gpio_output(CNV_RGI_DT, 1);
|
gpio_output(CNV_RGI_DT, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOT_STATE_INIT_ENTRY(BS_DEV_ENUMERATE, BS_ON_ENTRY, wait_for_legacy_dev, NULL);
|
|
||||||
BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT, BS_ON_ENTRY, finalize_boot, NULL);
|
BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT, BS_ON_ENTRY, finalize_boot, NULL);
|
||||||
|
|
|
@ -12,8 +12,6 @@
|
||||||
#include <intelblocks/lpc_lib.h>
|
#include <intelblocks/lpc_lib.h>
|
||||||
#include <intelblocks/pcr.h>
|
#include <intelblocks/pcr.h>
|
||||||
#include <soc/pcr_ids.h>
|
#include <soc/pcr_ids.h>
|
||||||
#include <timer.h>
|
|
||||||
#include <timestamp.h>
|
|
||||||
#include <baseboard/variants.h>
|
#include <baseboard/variants.h>
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
|
|
||||||
|
@ -70,36 +68,10 @@ void variant_mainboard_final(void)
|
||||||
outb(FULL_RST, RST_CNT);
|
outb(FULL_RST, RST_CNT);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void wait_for_legacy_dev(void *unused)
|
|
||||||
{
|
|
||||||
uint32_t legacy_delay, us_since_boot;
|
|
||||||
struct stopwatch sw;
|
|
||||||
|
|
||||||
/* Open main hwinfo block. */
|
|
||||||
if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* Get legacy delay parameter from hwinfo. */
|
|
||||||
if (hwilib_get_field(LegacyDelay, (uint8_t *) &legacy_delay,
|
|
||||||
sizeof(legacy_delay)) != sizeof(legacy_delay))
|
|
||||||
return;
|
|
||||||
|
|
||||||
us_since_boot = get_us_since_boot();
|
|
||||||
/* No need to wait if the time since boot is already long enough.*/
|
|
||||||
if (us_since_boot > legacy_delay)
|
|
||||||
return;
|
|
||||||
stopwatch_init_msecs_expire(&sw, (legacy_delay - us_since_boot) / 1000);
|
|
||||||
printk(BIOS_NOTICE, "Wait remaining %d of %d us for legacy devices...",
|
|
||||||
legacy_delay - us_since_boot, legacy_delay);
|
|
||||||
stopwatch_wait_until_expired(&sw);
|
|
||||||
printk(BIOS_NOTICE, "done!\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
static void finalize_boot(void *unused)
|
static void finalize_boot(void *unused)
|
||||||
{
|
{
|
||||||
/* Set coreboot ready LED. */
|
/* Set coreboot ready LED. */
|
||||||
gpio_output(CNV_RGI_DT, 1);
|
gpio_output(CNV_RGI_DT, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOT_STATE_INIT_ENTRY(BS_DEV_ENUMERATE, BS_ON_ENTRY, wait_for_legacy_dev, NULL);
|
|
||||||
BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT, BS_ON_ENTRY, finalize_boot, NULL);
|
BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_BOOT, BS_ON_ENTRY, finalize_boot, NULL);
|
||||||
|
|
Loading…
Reference in New Issue