mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-29 19:45:58 +00:00
Add duplicate per-CPU data structures (x86_cpuboot, tss, stacks, etc.) for up to 4 total CPUs, add code in locore and z_arch_start_cpu(). The test board, qemu_x86_long, now defaults to 2 CPUs. Signed-off-by: Charles E. Youse <charles.youse@intel.com>
9 lines
161 B
C
9 lines
161 B
C
/*
|
|
* Copyright (c) 2019 Intel Corporation
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <kernel.h>
|
|
|
|
u8_t x86_cpu_loapics[] = { 0x00, 0x02, 0x04, 0x06 };
|