nodeid
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1850 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
3a23863a3a
commit
7ee97999ad
|
@ -209,18 +209,20 @@ static void main(unsigned long bist)
|
||||||
};
|
};
|
||||||
|
|
||||||
int needs_reset;
|
int needs_reset;
|
||||||
|
unsigned nodeid;
|
||||||
|
|
||||||
if (bist == 0) {
|
if (bist == 0) {
|
||||||
/* Skip this if there was a built in self test failure */
|
/* Skip this if there was a built in self test failure */
|
||||||
amd_early_mtrr_init();
|
amd_early_mtrr_init();
|
||||||
enable_lapic();
|
enable_lapic();
|
||||||
init_timer();
|
init_timer();
|
||||||
|
nodeid = lapicid() & 0xf;
|
||||||
/* Has this cpu already booted? */
|
/* Has this cpu already booted? */
|
||||||
if (cpu_init_detected()) {
|
if (cpu_init_detected(nodeid)) {
|
||||||
asm volatile ("jmp __cpu_reset");
|
asm volatile ("jmp __cpu_reset");
|
||||||
}
|
}
|
||||||
|
|
||||||
distinguish_cpu_resets();
|
distinguish_cpu_resets(nodeid);
|
||||||
|
|
||||||
if (!boot_cpu()) {
|
if (!boot_cpu()) {
|
||||||
stop_this_cpu();
|
stop_this_cpu();
|
||||||
|
|
|
@ -13,11 +13,15 @@
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
static unsigned long main(unsigned long bist)
|
||||||
{
|
{
|
||||||
|
unsigned nodeid;
|
||||||
|
|
||||||
/* Make cerain my local apic is useable */
|
/* Make cerain my local apic is useable */
|
||||||
enable_lapic();
|
enable_lapic();
|
||||||
|
|
||||||
|
nodeid = lapicid() & 0xf;
|
||||||
|
|
||||||
/* Is this a cpu only reset? */
|
/* Is this a cpu only reset? */
|
||||||
if (cpu_init_detected()) {
|
if (cpu_init_detected(nodeid)) {
|
||||||
if (last_boot_normal()) {
|
if (last_boot_normal()) {
|
||||||
goto normal_image;
|
goto normal_image;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -161,17 +161,19 @@ static void main(unsigned long bist)
|
||||||
};
|
};
|
||||||
|
|
||||||
int needs_reset;
|
int needs_reset;
|
||||||
|
unsigned nodeid;
|
||||||
if (bist == 0) {
|
if (bist == 0) {
|
||||||
/* Skip this if there was a built in self test failure */
|
/* Skip this if there was a built in self test failure */
|
||||||
amd_early_mtrr_init();
|
amd_early_mtrr_init();
|
||||||
enable_lapic();
|
enable_lapic();
|
||||||
init_timer();
|
init_timer();
|
||||||
|
nodeid = lapicid() & 0xf;
|
||||||
/* Has this cpu already booted? */
|
/* Has this cpu already booted? */
|
||||||
if (cpu_init_detected()) {
|
if (cpu_init_detected(nodeid)) {
|
||||||
asm volatile ("jmp __cpu_reset");
|
asm volatile ("jmp __cpu_reset");
|
||||||
}
|
}
|
||||||
|
|
||||||
distinguish_cpu_resets();
|
distinguish_cpu_resets(nodeid);
|
||||||
if (!boot_cpu()) {
|
if (!boot_cpu()) {
|
||||||
stop_this_cpu();
|
stop_this_cpu();
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,11 +13,15 @@
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
static unsigned long main(unsigned long bist)
|
||||||
{
|
{
|
||||||
|
unsigned nodeid;
|
||||||
|
|
||||||
/* Make cerain my local apic is useable */
|
/* Make cerain my local apic is useable */
|
||||||
enable_lapic();
|
enable_lapic();
|
||||||
|
|
||||||
|
nodeid = lapicid() & 0xf;
|
||||||
|
|
||||||
/* Is this a cpu only reset? */
|
/* Is this a cpu only reset? */
|
||||||
if (cpu_init_detected()) {
|
if (cpu_init_detected(nodeid)) {
|
||||||
if (last_boot_normal()) {
|
if (last_boot_normal()) {
|
||||||
goto normal_image;
|
goto normal_image;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -108,6 +108,7 @@ static void main(unsigned long bist)
|
||||||
};
|
};
|
||||||
|
|
||||||
int needs_reset;
|
int needs_reset;
|
||||||
|
unsigned nodeid;
|
||||||
|
|
||||||
if (bist == 0) {
|
if (bist == 0) {
|
||||||
/* Skip this if there was a built in self test failure */
|
/* Skip this if there was a built in self test failure */
|
||||||
|
@ -116,11 +117,13 @@ static void main(unsigned long bist)
|
||||||
enable_lapic();
|
enable_lapic();
|
||||||
init_timer();
|
init_timer();
|
||||||
|
|
||||||
if (cpu_init_detected()) {
|
nodeid = lapicid() & 0xf;
|
||||||
|
|
||||||
|
if (cpu_init_detected(nodeid)) {
|
||||||
asm volatile ("jmp __cpu_reset");
|
asm volatile ("jmp __cpu_reset");
|
||||||
}
|
}
|
||||||
|
|
||||||
distinguish_cpu_resets();
|
distinguish_cpu_resets(nodeid);
|
||||||
|
|
||||||
if (!boot_cpu()) {
|
if (!boot_cpu()) {
|
||||||
/* This LinuxBIOS image is built for UP only */
|
/* This LinuxBIOS image is built for UP only */
|
||||||
|
|
|
@ -13,11 +13,15 @@
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
static unsigned long main(unsigned long bist)
|
||||||
{
|
{
|
||||||
|
unsigned nodeid;
|
||||||
|
|
||||||
/* Make cerain my local apic is useable */
|
/* Make cerain my local apic is useable */
|
||||||
enable_lapic();
|
enable_lapic();
|
||||||
|
|
||||||
|
nodeid = lapicid() & 0xf;
|
||||||
|
|
||||||
/* Is this a cpu only reset? */
|
/* Is this a cpu only reset? */
|
||||||
if (cpu_init_detected()) {
|
if (cpu_init_detected(nodeid)) {
|
||||||
if (last_boot_normal()) {
|
if (last_boot_normal()) {
|
||||||
goto normal_image;
|
goto normal_image;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -160,16 +160,18 @@ static void main(unsigned long bist)
|
||||||
};
|
};
|
||||||
|
|
||||||
int needs_reset;
|
int needs_reset;
|
||||||
|
unsigned nodeid;
|
||||||
if (bist == 0) {
|
if (bist == 0) {
|
||||||
/* Skip this if there was a built in self test failure */
|
/* Skip this if there was a built in self test failure */
|
||||||
amd_early_mtrr_init();
|
amd_early_mtrr_init();
|
||||||
enable_lapic();
|
enable_lapic();
|
||||||
init_timer();
|
init_timer();
|
||||||
|
nodeid = lapicid() & 0xf;
|
||||||
/* Has this cpu already booted? */
|
/* Has this cpu already booted? */
|
||||||
if (cpu_init_detected()) {
|
if (cpu_init_detected(nodeid)) {
|
||||||
asm volatile ("jmp __cpu_reset");
|
asm volatile ("jmp __cpu_reset");
|
||||||
}
|
}
|
||||||
distinguish_cpu_resets();
|
distinguish_cpu_resets(nodeid);
|
||||||
if (!boot_cpu()) {
|
if (!boot_cpu()) {
|
||||||
stop_this_cpu();
|
stop_this_cpu();
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,11 +13,15 @@
|
||||||
|
|
||||||
static unsigned long main(unsigned long bist)
|
static unsigned long main(unsigned long bist)
|
||||||
{
|
{
|
||||||
|
unsigned nodeid;
|
||||||
|
|
||||||
/* Make cerain my local apic is useable */
|
/* Make cerain my local apic is useable */
|
||||||
enable_lapic();
|
enable_lapic();
|
||||||
|
|
||||||
|
nodeid = lapicid() & 0xf;
|
||||||
|
|
||||||
/* Is this a cpu only reset? */
|
/* Is this a cpu only reset? */
|
||||||
if (cpu_init_detected()) {
|
if (cpu_init_detected(nodeid)) {
|
||||||
if (last_boot_normal()) {
|
if (last_boot_normal()) {
|
||||||
goto normal_image;
|
goto normal_image;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue