Drop Kconfig variable BOARD_HAS_HARD_RESET
hard_reset was indeed consolidated and moved into the southbridge code a while ago, but the config variable was still kept alife, with some duplicate code. Change-Id: I60d4a87de916667f6e89353dfbe1a7b9eca380f7 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1837 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
parent
55db955bcd
commit
fa2fc339c5
|
@ -278,7 +278,6 @@ config ACPI_SSDTX_NUM
|
|||
|
||||
config HAVE_HARD_RESET
|
||||
bool
|
||||
default y if BOARD_HAS_HARD_RESET
|
||||
default n
|
||||
help
|
||||
This variable specifies whether a given board has a hard_reset
|
||||
|
|
|
@ -4,16 +4,6 @@
|
|||
|
||||
menu "Deprecated"
|
||||
|
||||
# It might be possible to consolidate hard_reset() to southbridges,
|
||||
# given that it (usually) uses its registers.
|
||||
# The long term goal would be to eliminate hard_reset() from boards.
|
||||
config BOARD_HAS_HARD_RESET
|
||||
bool
|
||||
default n
|
||||
help
|
||||
This variable specifies whether a given board has a reset.c
|
||||
file containing a hard_reset() function.
|
||||
|
||||
# Will be removed (alongside with the PS/2 init code) once payloads
|
||||
# reliably support PS/2 init themselves.
|
||||
config DRIVERS_PS2_KEYBOARD
|
||||
|
|
|
@ -10,7 +10,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
|
|||
select SUPERIO_SMSC_SMSCSUPERIO
|
||||
select HAVE_OPTION_TABLE
|
||||
select HAVE_HARD_RESET
|
||||
select BOARD_HAS_HARD_RESET
|
||||
select HAVE_PIRQ_TABLE
|
||||
select HAVE_MP_TABLE
|
||||
select MMCONF_SUPPORT
|
||||
|
|
|
@ -1,36 +0,0 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2007-2008 coresystems GmbH
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
|
||||
* MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <arch/io.h>
|
||||
#include <reset.h>
|
||||
#if defined (__PRE_RAM__)
|
||||
#include <arch/romcc_io.h>
|
||||
#endif
|
||||
|
||||
void soft_reset(void)
|
||||
{
|
||||
outb(0x04, 0xcf9);
|
||||
}
|
||||
|
||||
void hard_reset(void)
|
||||
{
|
||||
outb(0x06, 0xcf9);
|
||||
}
|
|
@ -33,7 +33,7 @@
|
|||
#include <cpu/intel/speedstep.h>
|
||||
#include "southbridge/intel/i3100/early_smbus.c"
|
||||
#include "southbridge/intel/i3100/early_lpc.c"
|
||||
#include "reset.c"
|
||||
#include "southbridge/intel/i3100/reset.c"
|
||||
#include "superio/intel/i3100/early_serial.c"
|
||||
#include "superio/smsc/smscsuperio/early_serial.c"
|
||||
#include "northbridge/intel/i3100/i3100.h"
|
||||
|
|
|
@ -9,7 +9,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
|
|||
select SOUTHBRIDGE_INTEL_I82801EX
|
||||
select SUPERIO_NSC_PC87427
|
||||
select ROMCC
|
||||
select BOARD_HAS_HARD_RESET
|
||||
select HAVE_OPTION_TABLE
|
||||
select HAVE_PIRQ_TABLE
|
||||
select HAVE_MP_TABLE
|
||||
|
|
|
@ -1,3 +1,13 @@
|
|||
void full_reset(void)
|
||||
{
|
||||
/* Enable power on after power fail... */
|
||||
unsigned byte;
|
||||
byte = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
|
||||
byte &= 0xfe;
|
||||
pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, byte);
|
||||
|
||||
outb(0x0e, 0xcf9);
|
||||
}
|
||||
|
||||
static void power_down_reset_check(void)
|
||||
{
|
||||
|
|
|
@ -1,31 +0,0 @@
|
|||
#include <arch/io.h>
|
||||
#include <arch/romcc_io.h>
|
||||
#include <reset.h>
|
||||
|
||||
void soft_reset(void)
|
||||
{
|
||||
outb(0x04, 0xcf9);
|
||||
}
|
||||
|
||||
void hard_reset(void)
|
||||
{
|
||||
outb(0x02, 0xcf9);
|
||||
outb(0x06, 0xcf9);
|
||||
}
|
||||
|
||||
#ifndef __ROMCC__
|
||||
/* Used only board-internally by power_reset_check.c and jarell_fixups.c */
|
||||
void full_reset(void);
|
||||
#endif
|
||||
|
||||
void full_reset(void)
|
||||
{
|
||||
/* Enable power on after power fail... */
|
||||
unsigned byte;
|
||||
byte = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
|
||||
byte &= 0xfe;
|
||||
pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, byte);
|
||||
|
||||
outb(0x0e, 0xcf9);
|
||||
}
|
||||
|
|
@ -12,7 +12,7 @@
|
|||
#include "cpu/x86/lapic/boot_cpu.c"
|
||||
#include "cpu/x86/mtrr/earlymtrr.c"
|
||||
#include "watchdog.c"
|
||||
#include "reset.c"
|
||||
#include "southbridge/intel/i82801ex/reset.c"
|
||||
#include "power_reset_check.c"
|
||||
#include "jarrell_fixups.c"
|
||||
#include "superio/nsc/pc87427/early_init.c"
|
||||
|
|
|
@ -9,7 +9,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
|
|||
select SOUTHBRIDGE_INTEL_I82801CX
|
||||
select SUPERIO_SMSC_LPC47B272
|
||||
select ROMCC
|
||||
select BOARD_HAS_HARD_RESET
|
||||
select HAVE_PIRQ_TABLE
|
||||
select HAVE_MP_TABLE
|
||||
select UDELAY_TSC
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
#include <reset.h>
|
||||
|
||||
#include "southbridge/intel/i82801cx/i82801cx.h"
|
||||
|
||||
void hard_reset(void)
|
||||
{
|
||||
i82801cx_hard_reset();
|
||||
}
|
|
@ -9,7 +9,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
|
|||
select SUPERIO_WINBOND_W83627HF
|
||||
select ROMCC
|
||||
select HAVE_HARD_RESET
|
||||
select BOARD_HAS_HARD_RESET
|
||||
select HAVE_OPTION_TABLE
|
||||
select HAVE_PIRQ_TABLE
|
||||
select HAVE_MP_TABLE
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
#include <arch/io.h>
|
||||
#include <reset.h>
|
||||
|
||||
void soft_reset(void)
|
||||
{
|
||||
outb(0x04, 0xcf9);
|
||||
}
|
||||
void hard_reset(void)
|
||||
{
|
||||
outb(0x02, 0xcf9);
|
||||
outb(0x06, 0xcf9);
|
||||
}
|
|
@ -15,7 +15,7 @@
|
|||
#include "cpu/x86/mtrr/earlymtrr.c"
|
||||
#include "debug.c"
|
||||
#include "watchdog.c"
|
||||
#include "reset.c"
|
||||
#include "southbridge/intel/esb6300/reset.c"
|
||||
#include "superio/winbond/w83627hf/early_serial.c"
|
||||
#include "northbridge/intel/e7525/memory_initialized.c"
|
||||
#include "cpu/x86/bist.h"
|
||||
|
|
|
@ -10,7 +10,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
|
|||
select SUPERIO_WINBOND_W83627HF
|
||||
select ROMCC
|
||||
select HAVE_HARD_RESET
|
||||
select BOARD_HAS_HARD_RESET
|
||||
select HAVE_OPTION_TABLE
|
||||
select HAVE_PIRQ_TABLE
|
||||
select HAVE_MP_TABLE
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
#include <arch/io.h>
|
||||
#include <reset.h>
|
||||
|
||||
void soft_reset(void)
|
||||
{
|
||||
outb(0x04, 0xcf9);
|
||||
}
|
||||
|
||||
void hard_reset(void)
|
||||
{
|
||||
outb(0x02, 0xcf9);
|
||||
outb(0x06, 0xcf9);
|
||||
}
|
|
@ -15,7 +15,7 @@
|
|||
#include "cpu/x86/mtrr/earlymtrr.c"
|
||||
#include "debug.c"
|
||||
#include "watchdog.c"
|
||||
#include "reset.c"
|
||||
#include "southbridge/intel/esb6300/reset.c"
|
||||
#include "superio/winbond/w83627hf/early_serial.c"
|
||||
#include "northbridge/intel/e7520/memory_initialized.c"
|
||||
#include "cpu/x86/bist.h"
|
||||
|
|
|
@ -9,7 +9,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
|
|||
select SOUTHBRIDGE_INTEL_PXHD
|
||||
select SUPERIO_NSC_PC87427
|
||||
select ROMCC
|
||||
select BOARD_HAS_HARD_RESET
|
||||
select HAVE_OPTION_TABLE
|
||||
select HAVE_PIRQ_TABLE
|
||||
select HAVE_MP_TABLE
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
#include <arch/io.h>
|
||||
#include <reset.h>
|
||||
|
||||
void soft_reset(void)
|
||||
{
|
||||
outb(0x04, 0xcf9);
|
||||
}
|
||||
|
||||
void hard_reset(void)
|
||||
{
|
||||
outb(0x02, 0xcf9);
|
||||
outb(0x06, 0xcf9);
|
||||
}
|
|
@ -13,7 +13,7 @@
|
|||
#include "cpu/x86/mtrr/earlymtrr.c"
|
||||
#include "debug.c"
|
||||
#include "watchdog.c"
|
||||
#include "reset.c"
|
||||
#include "southbridge/intel/i82801ex/reset.c"
|
||||
#include "superio/nsc/pc87427/early_init.c"
|
||||
#include "northbridge/intel/e7520/memory_initialized.c"
|
||||
#include "cpu/x86/bist.h"
|
||||
|
|
|
@ -9,7 +9,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
|
|||
select SOUTHBRIDGE_INTEL_PXHD
|
||||
select SUPERIO_WINBOND_W83627HF
|
||||
select ROMCC
|
||||
select BOARD_HAS_HARD_RESET
|
||||
select HAVE_OPTION_TABLE
|
||||
select HAVE_PIRQ_TABLE
|
||||
select HAVE_MP_TABLE
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
#include <arch/io.h>
|
||||
#include <reset.h>
|
||||
|
||||
void soft_reset(void)
|
||||
{
|
||||
outb(0x04, 0xcf9);
|
||||
}
|
||||
|
||||
void hard_reset(void)
|
||||
{
|
||||
outb(0x02, 0xcf9);
|
||||
outb(0x06, 0xcf9);
|
||||
}
|
|
@ -13,7 +13,7 @@
|
|||
#include "cpu/x86/mtrr/earlymtrr.c"
|
||||
#include "debug.c"
|
||||
#include "watchdog.c"
|
||||
#include "reset.c"
|
||||
#include "southbridge/intel/i82801ex/reset.c"
|
||||
#include "superio/winbond/w83627hf/early_serial.c"
|
||||
#include "northbridge/intel/e7520/memory_initialized.c"
|
||||
#include "cpu/x86/bist.h"
|
||||
|
|
|
@ -9,7 +9,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
|
|||
select SOUTHBRIDGE_INTEL_PXHD
|
||||
select SUPERIO_WINBOND_W83627HF
|
||||
select ROMCC
|
||||
select BOARD_HAS_HARD_RESET
|
||||
select HAVE_OPTION_TABLE
|
||||
select HAVE_PIRQ_TABLE
|
||||
select HAVE_MP_TABLE
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
#include <arch/io.h>
|
||||
#include <reset.h>
|
||||
|
||||
void soft_reset(void)
|
||||
{
|
||||
outb(0x04, 0xcf9);
|
||||
}
|
||||
|
||||
void hard_reset(void)
|
||||
{
|
||||
outb(0x02, 0xcf9);
|
||||
outb(0x06, 0xcf9);
|
||||
}
|
|
@ -13,7 +13,7 @@
|
|||
#include "cpu/x86/mtrr/earlymtrr.c"
|
||||
#include "debug.c"
|
||||
#include "watchdog.c"
|
||||
#include "reset.c"
|
||||
#include "southbridge/intel/i82801ex/reset.c"
|
||||
#include "superio/winbond/w83627hf/early_serial.c"
|
||||
#include "northbridge/intel/e7520/memory_initialized.c"
|
||||
#include "cpu/x86/bist.h"
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
#if !defined(__PRE_RAM__)
|
||||
#include <device/device.h>
|
||||
void i82801cx_enable(device_t dev);
|
||||
void i82801cx_hard_reset(void);
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include <arch/io.h>
|
||||
#include "i82801cx.h"
|
||||
#include <reset.h>
|
||||
|
||||
void i82801cx_hard_reset(void)
|
||||
void hard_reset(void)
|
||||
{
|
||||
/* Try rebooting through port 0xcf9 */
|
||||
// Hard reset without power cycle
|
||||
|
|
Loading…
Reference in New Issue