From 786bd02b01d80e335d4445698d721213a1884ff5 Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Wed, 26 Nov 2014 12:48:43 +0100 Subject: some cleanup --- kernel/inactive/smp.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 kernel/inactive/smp.h (limited to 'kernel/inactive/smp.h') diff --git a/kernel/inactive/smp.h b/kernel/inactive/smp.h new file mode 100644 index 0000000..8737ffc --- /dev/null +++ b/kernel/inactive/smp.h @@ -0,0 +1,20 @@ +#ifndef SMP_H +#define SMP_H + +#define SMP_MAX_PROC 32 + +typedef struct +{ + + uint8_t boot; //which processor in array is bsp + // (boot strap processor) + + uint8_t processors; // total number of usable processors + + uint32_t local_apic_address;// same for every processor + + uint32_t local_apic_id[SMP_MAX_PROC]; // unique for every processor + +}smp_processors; + +#endif -- cgit v1.2.3