Changeset 3702 for trunk/coreboot-v2
- Timestamp:
- 10/29/08 05:48:44 (2 months ago)
- Location:
- trunk/coreboot-v2/src/cpu
- Files:
-
- 17 added
- 3 modified
-
intel/model_6ex (added)
-
intel/model_6ex/Config.lb (added)
-
intel/model_6ex/cache_as_ram.inc (added)
-
intel/model_6ex/cache_as_ram_disable.c (added)
-
intel/model_6ex/cache_as_ram_post.c (added)
-
intel/model_6ex/microcode_m206e839.h (added)
-
intel/model_6ex/model_6ex_init.c (added)
-
intel/model_6fx (added)
-
intel/model_6fx/Config.lb (added)
-
intel/model_6fx/cache_as_ram.inc (added)
-
intel/model_6fx/cache_as_ram_disable.c (added)
-
intel/model_6fx/cache_as_ram_post.c (added)
-
intel/model_6fx/model_6fx_init.c (added)
-
intel/socket_mFCPGA478/Config.lb (modified) (1 diff)
-
intel/socket_mPGA478 (added)
-
intel/socket_mPGA478/Config.lb (added)
-
intel/socket_mPGA478/chip.h (added)
-
intel/socket_mPGA478/socket_mPGA478.c (added)
-
x86/car/copy_and_run.c (modified) (1 diff)
-
x86/lapic/lapic_cpu_init.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/coreboot-v2/src/cpu/intel/socket_mFCPGA478/Config.lb
r2888 r3702 3 3 dir /cpu/intel/model_69x 4 4 dir /cpu/intel/model_6dx 5 dir /cpu/intel/model_6ex 6 dir /cpu/intel/model_6fx -
trunk/coreboot-v2/src/cpu/x86/car/copy_and_run.c
r3466 r3702 73 73 "cli\n\t" 74 74 "leal _iseg, %edi\n\t" 75 "jmp %edi\n\t"75 "jmp *%edi\n\t" 76 76 ); 77 77 -
trunk/coreboot-v2/src/cpu/x86/lapic/lapic_cpu_init.c
r3465 r3702 438 438 #endif 439 439 440 #if HAVE_SMI_HANDLER 441 void smm_init(void); 442 #endif 443 440 444 void initialize_cpus(struct bus *cpu_bus) 441 445 { … … 458 462 cpu_path.u.cpu.id = 0; 459 463 #endif 460 464 461 465 /* Find the device structure for the boot cpu */ 462 466 info->cpu = alloc_find_dev(cpu_bus, &cpu_path); … … 465 469 copy_secondary_start_to_1m_below(); // why here? In case some day we can start core1 in amd_sibling_init 466 470 #endif 467 471 472 #if HAVE_SMI_HANDLER 473 smm_init(); 474 #endif 475 468 476 cpus_ready_for_init(); 469 477 … … 478 486 cpu_initialize(); 479 487 480 481 488 #if CONFIG_SMP == 1 482 489 #if SERIAL_CPU_INIT == 1 … … 487 494 wait_other_cpus_stop(cpu_bus); 488 495 #endif 489 490 } 491 496 } 497
