Drop a number of duplicated failover.c files (they have the same content
as the global src/arch/i386/lib/failover.c file). Also, drop a number of dummy failover.c files which are not even used at all. This is abuild-tested by me. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3649 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
f4b54b4135
commit
3be4bc88fa
|
@ -1,32 +0,0 @@
|
||||||
/*
|
|
||||||
* This file is part of the coreboot project.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2007 Advanced Micro Devices, Inc.
|
|
||||||
*
|
|
||||||
* 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; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* 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
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define ASSEMBLY 1
|
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
return bist;
|
|
||||||
}
|
|
|
@ -1,32 +0,0 @@
|
||||||
/*
|
|
||||||
* This file is part of the coreboot project.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2007 Advanced Micro Devices, Inc.
|
|
||||||
*
|
|
||||||
* 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; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* 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
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define ASSEMBLY 1
|
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
return bist;
|
|
||||||
}
|
|
|
@ -51,13 +51,13 @@ if HAVE_PIRQ_TABLE object irq_tables.o end
|
||||||
## Romcc output
|
## Romcc output
|
||||||
##
|
##
|
||||||
makerule ./failover.E
|
makerule ./failover.E
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./failover.inc
|
makerule ./failover.inc
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./auto.E
|
makerule ./auto.E
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
#define ASSEMBLY 1
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "arch/romcc_io.h"
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
/* This is the primary cpu how should I boot? */
|
|
||||||
if (do_normal_boot()) {
|
|
||||||
goto normal_image;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
goto fallback_image;
|
|
||||||
}
|
|
||||||
normal_image:
|
|
||||||
asm volatile ("jmp __normal_image"
|
|
||||||
: /* outputs */
|
|
||||||
: "a" (bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
cpu_reset:
|
|
||||||
asm volatile ("jmp __cpu_reset"
|
|
||||||
: /* outputs */
|
|
||||||
: "a"(bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
fallback_image:
|
|
||||||
return bist;
|
|
||||||
}
|
|
|
@ -1,32 +0,0 @@
|
||||||
#define ASSEMBLY 1
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "arch/romcc_io.h"
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
/* This is the primary cpu how should I boot? */
|
|
||||||
if (do_normal_boot()) {
|
|
||||||
goto normal_image;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
goto fallback_image;
|
|
||||||
}
|
|
||||||
normal_image:
|
|
||||||
asm volatile ("jmp __normal_image"
|
|
||||||
: /* outputs */
|
|
||||||
: "a" (bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
cpu_reset:
|
|
||||||
asm volatile ("jmp __cpu_reset"
|
|
||||||
: /* outputs */
|
|
||||||
: "a"(bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
fallback_image:
|
|
||||||
return bist;
|
|
||||||
}
|
|
|
@ -52,13 +52,13 @@ end
|
||||||
## Romcc output
|
## Romcc output
|
||||||
##
|
##
|
||||||
# makerule ./failover.E
|
# makerule ./failover.E
|
||||||
# depends "$(MAINBOARD)/failover.c ../romcc"
|
# depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
# action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
# action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
# end
|
# end
|
||||||
#
|
#
|
||||||
# makerule ./failover.inc
|
# makerule ./failover.inc
|
||||||
# depends "$(MAINBOARD)/failover.c ../romcc"
|
# depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
# action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
# action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
# end
|
# end
|
||||||
|
|
||||||
makerule ./auto.E
|
makerule ./auto.E
|
||||||
|
|
|
@ -51,13 +51,13 @@ if HAVE_PIRQ_TABLE object irq_tables.o end
|
||||||
## Romcc output
|
## Romcc output
|
||||||
##
|
##
|
||||||
makerule ./failover.E
|
makerule ./failover.E
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./failover.inc
|
makerule ./failover.inc
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./auto.E
|
makerule ./auto.E
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
#define ASSEMBLY 1
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "arch/romcc_io.h"
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
/* This is the primary cpu how should I boot? */
|
|
||||||
if (do_normal_boot()) {
|
|
||||||
goto normal_image;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
goto fallback_image;
|
|
||||||
}
|
|
||||||
normal_image:
|
|
||||||
asm volatile ("jmp __normal_image"
|
|
||||||
: /* outputs */
|
|
||||||
: "a" (bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
cpu_reset:
|
|
||||||
asm volatile ("jmp __cpu_reset"
|
|
||||||
: /* outputs */
|
|
||||||
: "a"(bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
fallback_image:
|
|
||||||
return bist;
|
|
||||||
}
|
|
|
@ -50,13 +50,13 @@ if HAVE_PIRQ_TABLE object irq_tables.o end
|
||||||
## Romcc output
|
## Romcc output
|
||||||
##
|
##
|
||||||
makerule ./failover.E
|
makerule ./failover.E
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./failover.inc
|
makerule ./failover.inc
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./auto.E
|
makerule ./auto.E
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
#define ASSEMBLY 1
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "arch/romcc_io.h"
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
/* This is the primary cpu how should I boot? */
|
|
||||||
if (do_normal_boot()) {
|
|
||||||
goto normal_image;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
goto fallback_image;
|
|
||||||
}
|
|
||||||
normal_image:
|
|
||||||
asm volatile ("jmp __normal_image"
|
|
||||||
: /* outputs */
|
|
||||||
: "a" (bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
cpu_reset:
|
|
||||||
asm volatile ("jmp __cpu_reset"
|
|
||||||
: /* outputs */
|
|
||||||
: "a"(bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
fallback_image:
|
|
||||||
return bist;
|
|
||||||
}
|
|
|
@ -52,13 +52,13 @@ object reset.o
|
||||||
## Romcc output
|
## Romcc output
|
||||||
##
|
##
|
||||||
makerule ./failover.E
|
makerule ./failover.E
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./failover.inc
|
makerule ./failover.inc
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./auto.E
|
makerule ./auto.E
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
#define ASSEMBLY 1
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "arch/romcc_io.h"
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
/* This is the primary cpu how should I boot? */
|
|
||||||
if (do_normal_boot()) {
|
|
||||||
goto normal_image;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
goto fallback_image;
|
|
||||||
}
|
|
||||||
normal_image:
|
|
||||||
asm volatile ("jmp __normal_image"
|
|
||||||
: /* outputs */
|
|
||||||
: "a" (bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
cpu_reset:
|
|
||||||
asm volatile ("jmp __cpu_reset"
|
|
||||||
: /* outputs */
|
|
||||||
: "a"(bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
fallback_image:
|
|
||||||
return bist;
|
|
||||||
}
|
|
|
@ -1,32 +0,0 @@
|
||||||
#define ASSEMBLY 1
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "arch/romcc_io.h"
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
/* This is the primary cpu how should I boot? */
|
|
||||||
if (do_normal_boot()) {
|
|
||||||
goto normal_image;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
goto fallback_image;
|
|
||||||
}
|
|
||||||
normal_image:
|
|
||||||
asm volatile ("jmp __normal_image"
|
|
||||||
: /* outputs */
|
|
||||||
: "a" (bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
cpu_reset:
|
|
||||||
asm volatile ("jmp __cpu_reset"
|
|
||||||
: /* outputs */
|
|
||||||
: "a"(bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
fallback_image:
|
|
||||||
return bist;
|
|
||||||
}
|
|
|
@ -51,13 +51,13 @@ if HAVE_PIRQ_TABLE object irq_tables.o end
|
||||||
## Romcc output
|
## Romcc output
|
||||||
##
|
##
|
||||||
makerule ./failover.E
|
makerule ./failover.E
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./failover.inc
|
makerule ./failover.inc
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./auto.E
|
makerule ./auto.E
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
#define ASSEMBLY 1
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "arch/romcc_io.h"
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
/* This is the primary cpu how should I boot? */
|
|
||||||
if (do_normal_boot()) {
|
|
||||||
goto normal_image;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
goto fallback_image;
|
|
||||||
}
|
|
||||||
normal_image:
|
|
||||||
asm volatile ("jmp __normal_image"
|
|
||||||
: /* outputs */
|
|
||||||
: "a" (bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
cpu_reset:
|
|
||||||
asm volatile ("jmp __cpu_reset"
|
|
||||||
: /* outputs */
|
|
||||||
: "a"(bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
fallback_image:
|
|
||||||
return bist;
|
|
||||||
}
|
|
|
@ -47,13 +47,13 @@ if HAVE_PIRQ_TABLE object irq_tables.o end
|
||||||
## Romcc output
|
## Romcc output
|
||||||
##
|
##
|
||||||
makerule ./failover.E
|
makerule ./failover.E
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./failover.inc
|
makerule ./failover.inc
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./auto.E
|
makerule ./auto.E
|
||||||
|
|
|
@ -1,53 +0,0 @@
|
||||||
/*
|
|
||||||
* This file is part of the coreboot project.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2007 Nikolay Petukhov <nikolay.petukhov@gmail.com>
|
|
||||||
*
|
|
||||||
* 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; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* 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
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define ASSEMBLY 1
|
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "arch/romcc_io.h"
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
/* This is the primary cpu how should I boot? */
|
|
||||||
if (do_normal_boot()) {
|
|
||||||
goto normal_image;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
goto fallback_image;
|
|
||||||
}
|
|
||||||
normal_image:
|
|
||||||
asm volatile ("jmp __normal_image"
|
|
||||||
: /* outputs */
|
|
||||||
: "a" (bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
cpu_reset:
|
|
||||||
asm volatile ("jmp __cpu_reset"
|
|
||||||
: /* outputs */
|
|
||||||
: "a"(bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
fallback_image:
|
|
||||||
return bist;
|
|
||||||
}
|
|
|
@ -51,13 +51,13 @@ if HAVE_PIRQ_TABLE object irq_tables.o end
|
||||||
## Romcc output
|
## Romcc output
|
||||||
##
|
##
|
||||||
makerule ./failover.E
|
makerule ./failover.E
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./failover.inc
|
makerule ./failover.inc
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./auto.E
|
makerule ./auto.E
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
#define ASSEMBLY 1
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "arch/romcc_io.h"
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
/* This is the primary cpu how should I boot? */
|
|
||||||
if (do_normal_boot()) {
|
|
||||||
goto normal_image;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
goto fallback_image;
|
|
||||||
}
|
|
||||||
normal_image:
|
|
||||||
asm volatile ("jmp __normal_image"
|
|
||||||
: /* outputs */
|
|
||||||
: "a" (bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
cpu_reset:
|
|
||||||
asm volatile ("jmp __cpu_reset"
|
|
||||||
: /* outputs */
|
|
||||||
: "a"(bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
fallback_image:
|
|
||||||
return bist;
|
|
||||||
}
|
|
|
@ -1,32 +0,0 @@
|
||||||
#define ASSEMBLY 1
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "arch/romcc_io.h"
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
/* This is the primary cpu how should I boot? */
|
|
||||||
if (do_normal_boot()) {
|
|
||||||
goto normal_image;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
goto fallback_image;
|
|
||||||
}
|
|
||||||
normal_image:
|
|
||||||
asm volatile ("jmp __normal_image"
|
|
||||||
: /* outputs */
|
|
||||||
: "a" (bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
cpu_reset:
|
|
||||||
asm volatile ("jmp __cpu_reset"
|
|
||||||
: /* outputs */
|
|
||||||
: "a"(bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
fallback_image:
|
|
||||||
return bist;
|
|
||||||
}
|
|
|
@ -52,13 +52,13 @@ object reset.o
|
||||||
## Romcc output
|
## Romcc output
|
||||||
##
|
##
|
||||||
makerule ./failover.E
|
makerule ./failover.E
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./failover.inc
|
makerule ./failover.inc
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./auto.E
|
makerule ./auto.E
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
#define ASSEMBLY 1
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "arch/romcc_io.h"
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
/* This is the primary cpu how should I boot? */
|
|
||||||
if (do_normal_boot()) {
|
|
||||||
goto normal_image;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
goto fallback_image;
|
|
||||||
}
|
|
||||||
normal_image:
|
|
||||||
asm volatile ("jmp __normal_image"
|
|
||||||
: /* outputs */
|
|
||||||
: "a" (bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
cpu_reset:
|
|
||||||
asm volatile ("jmp __cpu_reset"
|
|
||||||
: /* outputs */
|
|
||||||
: "a"(bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
fallback_image:
|
|
||||||
return bist;
|
|
||||||
}
|
|
|
@ -50,13 +50,13 @@ if HAVE_PIRQ_TABLE object irq_tables.o end
|
||||||
## Romcc output
|
## Romcc output
|
||||||
##
|
##
|
||||||
makerule ./failover.E
|
makerule ./failover.E
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./failover.inc
|
makerule ./failover.inc
|
||||||
depends "$(MAINBOARD)/failover.c ../romcc"
|
depends "$(MAINBOARD)/../../../arch/i386/lib/failover.c ../romcc"
|
||||||
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
|
action "../romcc -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/../../../arch/i386/lib/failover.c -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule ./auto.E
|
makerule ./auto.E
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
#define ASSEMBLY 1
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <device/pci_def.h>
|
|
||||||
#include <device/pci_ids.h>
|
|
||||||
#include <arch/io.h>
|
|
||||||
#include "arch/romcc_io.h"
|
|
||||||
#include "pc80/mc146818rtc_early.c"
|
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
|
||||||
{
|
|
||||||
/* This is the primary cpu how should I boot? */
|
|
||||||
if (do_normal_boot()) {
|
|
||||||
goto normal_image;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
goto fallback_image;
|
|
||||||
}
|
|
||||||
normal_image:
|
|
||||||
asm volatile ("jmp __normal_image"
|
|
||||||
: /* outputs */
|
|
||||||
: "a" (bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
cpu_reset:
|
|
||||||
asm volatile ("jmp __cpu_reset"
|
|
||||||
: /* outputs */
|
|
||||||
: "a"(bist) /* inputs */
|
|
||||||
: /* clobbers */
|
|
||||||
);
|
|
||||||
fallback_image:
|
|
||||||
return bist;
|
|
||||||
}
|
|
Loading…
Reference in New Issue