mirror of
https://review.coreboot.org/flashrom.git
synced 2025-11-13 19:20:41 +01:00
Change-Id: I990bae6be548d117d12a69b3d5cda1c93abb238d Signed-off-by: Anastasia Klimchuk <aklm@flashrom.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/89938 Reviewed-by: Antonio Vázquez Blanco <antoniovazquezblanco@gmail.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
34 lines
792 B
C
34 lines
792 B
C
/*
|
|
* This file is part of the flashrom project.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* SPDX-FileCopyrightText: 2009 Carl-Daniel Hailfinger
|
|
*/
|
|
|
|
#include "programmer.h"
|
|
|
|
int superio_count = 0;
|
|
#define SUPERIO_MAX_COUNT 3
|
|
|
|
struct superio superios[SUPERIO_MAX_COUNT];
|
|
|
|
int register_superio(struct superio s)
|
|
{
|
|
if (superio_count == SUPERIO_MAX_COUNT)
|
|
return 1;
|
|
superios[superio_count++] = s;
|
|
return 0;
|
|
}
|
|
|
|
void probe_superio(void)
|
|
{
|
|
probe_superio_winbond();
|
|
/* ITE probe causes SMSC LPC47N217 to power off the serial UART.
|
|
* Always probe for SMSC first, and if a SMSC Super I/O is detected
|
|
* at a given I/O port, do _not_ probe that port with the ITE probe.
|
|
* This means SMSC probing must be done before ITE probing.
|
|
*/
|
|
//probe_superio_smsc();
|
|
probe_superio_ite();
|
|
}
|