Drop unused (or commented / #if 0) reset.c files.
This is abuild-tested by me. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3654 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
598ba43742
commit
28401bd9ea
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 1);
|
|
||||||
}
|
|
|
@ -1,43 +0,0 @@
|
||||||
#if 0
|
|
||||||
//#include "arch/romcc_io.h"
|
|
||||||
#include <arch/io.h>
|
|
||||||
|
|
||||||
typedef unsigned device_t;
|
|
||||||
|
|
||||||
#define PCI_DEV(BUS, DEV, FN) ( \
|
|
||||||
(((BUS) & 0xFF) << 16) | \
|
|
||||||
(((DEV) & 0x1f) << 11) | \
|
|
||||||
(((FN) & 0x7) << 8))
|
|
||||||
|
|
||||||
static void pci_write_config8(device_t dev, unsigned where, unsigned char value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outb(value, 0xCFC + (addr & 3));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void pci_write_config32(device_t dev, unsigned where, unsigned value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outl(value, 0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
static unsigned pci_read_config32(device_t dev, unsigned where)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
return inl(0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
#include "../../../northbridge/amd/amdk8/reset_test.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
set_bios_reset();
|
|
||||||
pci_write_config8(PCI_DEV(1, 0x04, 0), 0x47, 1);
|
|
||||||
}
|
|
||||||
#endif
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 0);
|
|
||||||
}
|
|
|
@ -1,43 +0,0 @@
|
||||||
#if 0
|
|
||||||
//#include "arch/romcc_io.h"
|
|
||||||
#include <arch/io.h>
|
|
||||||
|
|
||||||
typedef unsigned device_t;
|
|
||||||
|
|
||||||
#define PCI_DEV(BUS, DEV, FN) ( \
|
|
||||||
(((BUS) & 0xFF) << 16) | \
|
|
||||||
(((DEV) & 0x1f) << 11) | \
|
|
||||||
(((FN) & 0x7) << 8))
|
|
||||||
|
|
||||||
static void pci_write_config8(device_t dev, unsigned where, unsigned char value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outb(value, 0xCFC + (addr & 3));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void pci_write_config32(device_t dev, unsigned where, unsigned value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outl(value, 0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
static unsigned pci_read_config32(device_t dev, unsigned where)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
return inl(0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
#include "../../../northbridge/amd/amdk8/reset_test.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
set_bios_reset();
|
|
||||||
pci_write_config8(PCI_DEV(1, 0x04, 0), 0x47, 1);
|
|
||||||
}
|
|
||||||
#endif
|
|
|
@ -1,43 +0,0 @@
|
||||||
#if 0
|
|
||||||
//#include "arch/romcc_io.h"
|
|
||||||
#include <arch/io.h>
|
|
||||||
|
|
||||||
typedef unsigned device_t;
|
|
||||||
|
|
||||||
#define PCI_DEV(BUS, DEV, FN) ( \
|
|
||||||
(((BUS) & 0xFF) << 16) | \
|
|
||||||
(((DEV) & 0x1f) << 11) | \
|
|
||||||
(((FN) & 0x7) << 8))
|
|
||||||
|
|
||||||
static void pci_write_config8(device_t dev, unsigned where, unsigned char value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outb(value, 0xCFC + (addr & 3));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void pci_write_config32(device_t dev, unsigned where, unsigned value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outl(value, 0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
static unsigned pci_read_config32(device_t dev, unsigned where)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
return inl(0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
#include "../../../northbridge/amd/amdk8/reset_test.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
set_bios_reset();
|
|
||||||
// pci_write_config8(PCI_DEV(1, 0x04, 0), 0x47, 1);
|
|
||||||
}
|
|
||||||
#endif
|
|
|
@ -46,7 +46,7 @@ arch i386 end
|
||||||
|
|
||||||
driver mainboard.o
|
driver mainboard.o
|
||||||
if HAVE_PIRQ_TABLE object irq_tables.o end
|
if HAVE_PIRQ_TABLE object irq_tables.o end
|
||||||
object reset.o
|
# object reset.o
|
||||||
|
|
||||||
##
|
##
|
||||||
## Romcc output
|
## Romcc output
|
||||||
|
|
|
@ -72,7 +72,7 @@ default HAVE_MP_TABLE=0
|
||||||
##
|
##
|
||||||
## Build code to reset the motherboard from coreboot
|
## Build code to reset the motherboard from coreboot
|
||||||
##
|
##
|
||||||
default HAVE_HARD_RESET=1
|
default HAVE_HARD_RESET=0
|
||||||
|
|
||||||
##
|
##
|
||||||
## Build code to export a programmable irq routing table
|
## Build code to export a programmable irq routing table
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
#if 0
|
|
||||||
//#include "arch/romcc_io.h"
|
|
||||||
#include <arch/io.h>
|
|
||||||
|
|
||||||
typedef unsigned device_t;
|
|
||||||
|
|
||||||
#define PCI_DEV(BUS, DEV, FN) ( \
|
|
||||||
(((BUS) & 0xFF) << 16) | \
|
|
||||||
(((DEV) & 0x1f) << 11) | \
|
|
||||||
(((FN) & 0x7) << 8))
|
|
||||||
|
|
||||||
static void pci_write_config8(device_t dev, unsigned where, unsigned char value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outb(value, 0xCFC + (addr & 3));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void pci_write_config32(device_t dev, unsigned where, unsigned value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outl(value, 0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
static unsigned pci_read_config32(device_t dev, unsigned where)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
return inl(0xCFC);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
//set_bios_reset();
|
|
||||||
// pci_write_config8(PCI_DEV(1, 0x04, 0), 0x47, 1);
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
#if 0
|
|
||||||
//#include "arch/romcc_io.h"
|
|
||||||
#include <arch/io.h>
|
|
||||||
|
|
||||||
typedef unsigned device_t;
|
|
||||||
|
|
||||||
#define PCI_DEV(BUS, DEV, FN) ( \
|
|
||||||
(((BUS) & 0xFF) << 16) | \
|
|
||||||
(((DEV) & 0x1f) << 11) | \
|
|
||||||
(((FN) & 0x7) << 8))
|
|
||||||
|
|
||||||
static void pci_write_config8(device_t dev, unsigned where, unsigned char value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outb(value, 0xCFC + (addr & 3));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void pci_write_config32(device_t dev, unsigned where, unsigned value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outl(value, 0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
static unsigned pci_read_config32(device_t dev, unsigned where)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
return inl(0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
#include "../../../northbridge/amd/amdk8/reset_test.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
set_bios_reset();
|
|
||||||
pci_write_config8(PCI_DEV(1, 0x04, 0), 0x47, 1);
|
|
||||||
}
|
|
||||||
#endif
|
|
|
@ -1,43 +0,0 @@
|
||||||
#if 0
|
|
||||||
//#include "arch/romcc_io.h"
|
|
||||||
#include <arch/io.h>
|
|
||||||
|
|
||||||
typedef unsigned device_t;
|
|
||||||
|
|
||||||
#define PCI_DEV(BUS, DEV, FN) ( \
|
|
||||||
(((BUS) & 0xFF) << 16) | \
|
|
||||||
(((DEV) & 0x1f) << 11) | \
|
|
||||||
(((FN) & 0x7) << 8))
|
|
||||||
|
|
||||||
static void pci_write_config8(device_t dev, unsigned where, unsigned char value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outb(value, 0xCFC + (addr & 3));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void pci_write_config32(device_t dev, unsigned where, unsigned value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outl(value, 0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
static unsigned pci_read_config32(device_t dev, unsigned where)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
return inl(0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
#include "../../../northbridge/amd/amdk8/reset_test.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
set_bios_reset();
|
|
||||||
pci_write_config8(PCI_DEV(1, 0x04, 0), 0x47, 1);
|
|
||||||
}
|
|
||||||
#endif
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 1);
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 1);
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 0);
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 0);
|
|
||||||
}
|
|
|
@ -1,43 +0,0 @@
|
||||||
#if 0
|
|
||||||
//#include "arch/romcc_io.h"
|
|
||||||
#include <arch/io.h>
|
|
||||||
|
|
||||||
typedef unsigned device_t;
|
|
||||||
|
|
||||||
#define PCI_DEV(BUS, DEV, FN) ( \
|
|
||||||
(((BUS) & 0xFF) << 16) | \
|
|
||||||
(((DEV) & 0x1f) << 11) | \
|
|
||||||
(((FN) & 0x7) << 8))
|
|
||||||
|
|
||||||
static void pci_write_config8(device_t dev, unsigned where, unsigned char value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outb(value, 0xCFC + (addr & 3));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void pci_write_config32(device_t dev, unsigned where, unsigned value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outl(value, 0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
static unsigned pci_read_config32(device_t dev, unsigned where)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
return inl(0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
#include "../../../northbridge/amd/amdk8/reset_test.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
set_bios_reset();
|
|
||||||
pci_write_config8(PCI_DEV(1, 0x04, 0), 0x47, 1);
|
|
||||||
}
|
|
||||||
#endif
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 2);
|
|
||||||
}
|
|
|
@ -1,43 +0,0 @@
|
||||||
#if 0
|
|
||||||
//#include "arch/romcc_io.h"
|
|
||||||
#include <arch/io.h>
|
|
||||||
|
|
||||||
typedef unsigned device_t;
|
|
||||||
|
|
||||||
#define PCI_DEV(BUS, DEV, FN) ( \
|
|
||||||
(((BUS) & 0xFF) << 16) | \
|
|
||||||
(((DEV) & 0x1f) << 11) | \
|
|
||||||
(((FN) & 0x7) << 8))
|
|
||||||
|
|
||||||
static void pci_write_config8(device_t dev, unsigned where, unsigned char value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outb(value, 0xCFC + (addr & 3));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void pci_write_config32(device_t dev, unsigned where, unsigned value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outl(value, 0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
static unsigned pci_read_config32(device_t dev, unsigned where)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
return inl(0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
#include "../../../northbridge/amd/amdk8/reset_test.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
set_bios_reset();
|
|
||||||
pci_write_config8(PCI_DEV(1, 0x04, 0), 0x47, 1);
|
|
||||||
}
|
|
||||||
#endif
|
|
|
@ -1,43 +0,0 @@
|
||||||
#if 0
|
|
||||||
//#include "arch/romcc_io.h"
|
|
||||||
#include <arch/io.h>
|
|
||||||
|
|
||||||
typedef unsigned device_t;
|
|
||||||
|
|
||||||
#define PCI_DEV(BUS, DEV, FN) ( \
|
|
||||||
(((BUS) & 0xFF) << 16) | \
|
|
||||||
(((DEV) & 0x1f) << 11) | \
|
|
||||||
(((FN) & 0x7) << 8))
|
|
||||||
|
|
||||||
static void pci_write_config8(device_t dev, unsigned where, unsigned char value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outb(value, 0xCFC + (addr & 3));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void pci_write_config32(device_t dev, unsigned where, unsigned value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outl(value, 0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
static unsigned pci_read_config32(device_t dev, unsigned where)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
return inl(0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
#include "../../../northbridge/amd/amdk8/reset_test.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
set_bios_reset();
|
|
||||||
pci_write_config8(PCI_DEV(1, 0x04, 0), 0x47, 1);
|
|
||||||
}
|
|
||||||
#endif
|
|
|
@ -46,7 +46,7 @@ arch i386 end
|
||||||
|
|
||||||
driver mainboard.o
|
driver mainboard.o
|
||||||
if HAVE_PIRQ_TABLE object irq_tables.o end
|
if HAVE_PIRQ_TABLE object irq_tables.o end
|
||||||
object reset.o
|
# object reset.o
|
||||||
|
|
||||||
##
|
##
|
||||||
## Romcc output
|
## Romcc output
|
||||||
|
|
|
@ -88,7 +88,7 @@ default HAVE_MP_TABLE=0
|
||||||
##
|
##
|
||||||
## Build code to reset the motherboard from coreboot
|
## Build code to reset the motherboard from coreboot
|
||||||
##
|
##
|
||||||
default HAVE_HARD_RESET=1
|
default HAVE_HARD_RESET=0
|
||||||
|
|
||||||
##
|
##
|
||||||
## Build code to export a programmable irq routing table
|
## Build code to export a programmable irq routing table
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
#if 0
|
|
||||||
//#include "arch/romcc_io.h"
|
|
||||||
#include <arch/io.h>
|
|
||||||
|
|
||||||
typedef unsigned device_t;
|
|
||||||
|
|
||||||
#define PCI_DEV(BUS, DEV, FN) ( \
|
|
||||||
(((BUS) & 0xFF) << 16) | \
|
|
||||||
(((DEV) & 0x1f) << 11) | \
|
|
||||||
(((FN) & 0x7) << 8))
|
|
||||||
|
|
||||||
static void pci_write_config8(device_t dev, unsigned where, unsigned char value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outb(value, 0xCFC + (addr & 3));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void pci_write_config32(device_t dev, unsigned where, unsigned value)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
outl(value, 0xCFC);
|
|
||||||
}
|
|
||||||
|
|
||||||
static unsigned pci_read_config32(device_t dev, unsigned where)
|
|
||||||
{
|
|
||||||
unsigned addr;
|
|
||||||
addr = dev | where;
|
|
||||||
outl(0x80000000 | (addr & ~3), 0xCF8);
|
|
||||||
return inl(0xCFC);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
//set_bios_reset();
|
|
||||||
//pci_write_config8(PCI_DEV(1, 0x04, 0), 0x47, 1);
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 0);
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 0);
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 0);
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 2);
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 0);
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 2);
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 2);
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "../../../southbridge/amd/amd8111/amd8111_reset.c"
|
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
amd8111_hard_reset(0, 1);
|
|
||||||
}
|
|
Loading…
Reference in New Issue