]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/i386/i386_init.c
xnu-1504.15.3.tar.gz
[apple/xnu.git] / osfmk / i386 / i386_init.c
index 07560b1e9c7a7efa1dcc73334bb0586c18728562..445c6afedf4dda5d4829a1ebe2e0a9fcc4f92375 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2003-2009 Apple Inc. All rights reserved.
  *
  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
  * 
@@ -56,7 +56,6 @@
 
 #include <platforms.h>
 #include <mach_kdb.h>
-#include <himem.h>
 
 #include <mach/i386/vm_param.h>
 
 #include <kern/misc_protos.h>
 #include <kern/startup.h>
 #include <kern/clock.h>
+#include <kern/pms.h>
 #include <kern/xpr.h>
 #include <kern/cpu_data.h>
 #include <kern/processor.h>
+#include <console/serial_protos.h>
 #include <vm/vm_page.h>
 #include <vm/pmap.h>
 #include <vm/vm_kern.h>
 #include <i386/fpu.h>
 #include <i386/pmap.h>
 #include <i386/ipl.h>
-#include <i386/pio.h>
 #include <i386/misc_protos.h>
+#include <i386/cpu_threads.h>
 #include <i386/cpuid.h>
+#include <i386/lapic.h>
 #include <i386/mp.h>
+#include <i386/mp_desc.h>
+#include <i386/mtrr.h>
 #include <i386/machine_routines.h>
+#if CONFIG_MCA
+#include <i386/machine_check.h>
+#endif
 #include <i386/postcode.h>
+#include <i386/Diagnostics.h>
+#include <i386/pmCPU.h>
+#include <i386/tsc.h>
+#include <i386/locks.h> /* LcksOpts */
+#ifdef __i386__
+#include <i386/cpu_capabilities.h>
+#if    MACH_KDB
+#include <machine/db_machdep.h>
+#endif
+#endif
+
+#if DEBUG
+#define DBG(x...)       kprintf(x)
+#else
+#define DBG(x...)
+#endif
 #if    MACH_KDB
 #include <ddb/db_aout.h>
 #endif /* MACH_KDB */
-#include <ddb/tr.h>
-#ifdef __MACHO__
-#include <mach/thread_status.h>
 
-static KernelBootArgs_t *kernelBootArgs;
+int                    debug_task;
+
+static boot_args       *kernelBootArgs;
+
+extern int             disableConsoleOutput;
+extern const char      version[];
+extern const char      version_variant[];
+extern int             nx_enabled;
+
+extern int             noVMX;  /* if set, rosetta should not emulate altivec */
+
+#ifdef __x86_64__
+extern void            *low_eintstack;
 #endif
 
-vm_offset_t    boot_args_start = 0;    /* pointer to kernel arguments, set in start.s */
+extern void serial_init(void);
+
+void                   *KPTphys;
+pd_entry_t             *IdlePTD;
+#ifdef __i386__
+pd_entry_t             *IdlePDPT64;
+#endif
 
-#ifdef __MACHO__
-#include       <mach-o/loader.h>
-vm_offset_t     edata, etext, end;
 
-/* operations only against currently loaded 32 bit mach kernel */
-extern struct segment_command *getsegbyname(const char *);
-extern struct section *firstsect(struct segment_command *);
-extern struct section *nextsect(struct segment_command *, struct section *);
+char *physfree;
 
 /*
- * Called first for a mach-o kernel before paging is set up.
- * Returns the first available physical address in memory.
+ * Note: ALLOCPAGES() can only be used safely within Idle_PTs_init()
+ * due to the mutation of physfree.
  */
+static void *
+ALLOCPAGES(int npages)
+{
+       uintptr_t tmp = (uintptr_t)physfree;
+       bzero(physfree, npages * PAGE_SIZE);
+       physfree += npages * PAGE_SIZE;
+#ifdef __x86_64__
+       tmp += VM_MIN_KERNEL_ADDRESS & ~LOW_4GB_MASK;
+#endif
+       return (void *)tmp;
+}
 
-void
-i386_preinit(void)
+static void
+fillkpt(pt_entry_t *base, int prot, uintptr_t src, int index, int count)
 {
-       struct segment_command  *sgp;
-       struct section          *sp;
-       struct KernelBootArgs *pp;
        int i;
+       for (i=0; i<count; i++) {
+               base[index] = src | prot | INTEL_PTE_VALID;
+               src += PAGE_SIZE;
+               index++;
+       }
+}
+
+extern vm_offset_t first_avail;
 
-       sgp = getsegbyname("__DATA");
-       if (sgp) {
-               sp = firstsect(sgp);
-               if (sp) {
-                       do {
-                               if ((sp->flags & S_ZEROFILL))
-                                       bzero((char *) sp->addr, sp->size);
-                       } while ((sp = nextsect(sgp, sp)));
+#ifdef __x86_64__
+int break_kprintf = 0;
+
+uint64_t
+x86_64_pre_sleep(void)
+{
+       IdlePML4[0] = IdlePML4[KERNEL_PML4_INDEX];
+       uint64_t oldcr3 = get_cr3();
+       set_cr3((uint32_t) (uintptr_t)ID_MAP_VTOP(IdlePML4));
+       return oldcr3;
+}
+
+void
+x86_64_post_sleep(uint64_t new_cr3)
+{
+       IdlePML4[0] = 0;
+       set_cr3((uint32_t) new_cr3);
+}
+
+#endif
+
+#ifdef __i386__
+#define ID_MAP_VTOP(x) x
+#endif
+
+
+
+#ifdef __x86_64__
+// Set up the physical mapping - NPHYSMAP GB of memory mapped at a high address
+// NPHYSMAP is determined by the maximum supported RAM size plus 4GB to account
+// the PCI hole (which is less 4GB but not more).
+#define NPHYSMAP MAX(K64_MAXMEM/GB + 4, 4)
+// Compile-time guard:
+extern int maxphymapsupported[NPHYSMAP <= PTE_PER_PAGE ? 1 : -1];
+static void
+physmap_init(void)
+{
+       pt_entry_t *physmapL3 = ALLOCPAGES(1);
+       struct {
+               pt_entry_t entries[PTE_PER_PAGE];
+       } * physmapL2 = ALLOCPAGES(NPHYSMAP);
+
+       uintptr_t i;
+       for(i=0;i<NPHYSMAP;i++) {
+               physmapL3[i] = ((uintptr_t)ID_MAP_VTOP(&physmapL2[i]))
+                               | INTEL_PTE_VALID
+                               | INTEL_PTE_WRITE;
+               uintptr_t j;
+               for(j=0;j<PTE_PER_PAGE;j++) {
+                       physmapL2[i].entries[j] = (((i*PTE_PER_PAGE+j)<<PDSHIFT)
+                                                       | INTEL_PTE_PS
+                                                       | INTEL_PTE_VALID
+                                                       | INTEL_PTE_WRITE);
                }
        }
 
-       kernelBootArgs = (KernelBootArgs_t *)
-               ml_static_ptovirt(boot_args_start);
-       pp = (struct KernelBootArgs *) kernelBootArgs;
-       pp->configEnd = (char *)
-               ml_static_ptovirt((vm_offset_t) pp->configEnd);
-       for (i = 0; i < pp->numBootDrivers; i++) {
-               pp->driverConfig[i].address = (unsigned)
-                       ml_static_ptovirt(pp->driverConfig[i].address);
-       }
-       return;
+       IdlePML4[KERNEL_PHYSMAP_INDEX] = ((uintptr_t)ID_MAP_VTOP(physmapL3))
+                                               | INTEL_PTE_VALID
+                                               | INTEL_PTE_WRITE;
+       DBG("physical map idlepml4[%d]: 0x%llx\n",
+               KERNEL_PHYSMAP_INDEX, IdlePML4[KERNEL_PHYSMAP_INDEX]);
 }
 #endif
 
-extern const char version[];
-extern const char version_variant[];
+static void
+Idle_PTs_init(void)
+{
+       /* Allocate the "idle" kernel page tables: */
+       KPTphys  = ALLOCPAGES(NKPT);            /* level 1 */
+       IdlePTD  = ALLOCPAGES(NPGPTD);          /* level 2 */
+
+#ifdef __x86_64__
+       physmap_init();
+#else
+       IdlePDPT64 = ALLOCPAGES(1);
+
+       // Recursive mapping of PTEs
+       fillkpt(IdlePTD, INTEL_PTE_WRITE, (uintptr_t)IdlePTD, PTDPTDI, NPGPTD);
+       // commpage
+       fillkpt(IdlePTD, INTEL_PTE_WRITE|INTEL_PTE_USER, (uintptr_t)ALLOCPAGES(1), _COMM_PAGE32_BASE_ADDRESS >> PDESHIFT,1);
+#endif
+       // Fill the lowest level with everything up to physfree
+       fillkpt(KPTphys,
+                       INTEL_PTE_WRITE, 0, 0, (int)(((uintptr_t)physfree) >> PAGE_SHIFT));
+
+       // Rewrite the 2nd-lowest level  to point to pages of KPTphys.
+       // This was previously filled statically by idle_pt.c, and thus
+       // must be done after the KPTphys fill since IdlePTD is in use
+       fillkpt(IdlePTD,
+                       INTEL_PTE_WRITE, (uintptr_t)ID_MAP_VTOP(KPTphys), 0, NKPT);
+
+       // IdlePDPT entries
+#ifdef __i386__
+       fillkpt(IdlePDPT, 0, (uintptr_t)IdlePTD, 0, NPGPTD);
+#else
+       fillkpt(IdlePDPT, INTEL_PTE_WRITE, (uintptr_t)ID_MAP_VTOP(IdlePTD), 0, NPGPTD);
+#endif
+
+       // Flush the TLB now we're done rewriting the page tables..
+       set_cr3(get_cr3());
+}
+
+/*
+ * vstart() is called in the natural mode (64bit for K64, 32 for K32)
+ * on a set of bootstrap pagetables which use large, 2MB pages to map 
+ * all of physical memory in both. See idle_pt.c for details.
+ *
+ * In K64 this identity mapping is mirrored the top and bottom 512GB 
+ * slots of PML4.
+ *
+ * The bootstrap processor called with argument boot_args_start pointing to
+ * the boot-args block. The kernel's (4K page) page tables are allocated and
+ * initialized before switching to these.
+ *
+ * Non-bootstrap processors are called with argument boot_args_start NULL.
+ * These processors switch immediately to the existing kernel page tables.
+ */
+void
+vstart(vm_offset_t boot_args_start)
+{
+       boolean_t       is_boot_cpu = !(boot_args_start == 0);
+       int             cpu;
+       uint32_t lphysfree;
+
+       postcode(VSTART_ENTRY);
+
+       if (is_boot_cpu) {
+               /*
+                * Get startup parameters.
+                */
+               kernelBootArgs = (boot_args *)boot_args_start;
+               lphysfree = kernelBootArgs->kaddr + kernelBootArgs->ksize;
+               physfree = (void *)(uintptr_t)((lphysfree + PAGE_SIZE - 1) &~ (PAGE_SIZE - 1));
+#if DEBUG
+               serial_init();
+#endif
+               DBG("revision      0x%x\n", kernelBootArgs->Revision);
+               DBG("version       0x%x\n", kernelBootArgs->Version);
+               DBG("command line  %s\n", kernelBootArgs->CommandLine);
+               DBG("memory map    0x%x\n", kernelBootArgs->MemoryMap);
+               DBG("memory map sz 0x%x\n", kernelBootArgs->MemoryMapSize);
+               DBG("kaddr         0x%x\n", kernelBootArgs->kaddr);
+               DBG("ksize         0x%x\n", kernelBootArgs->ksize);
+               DBG("physfree      %p\n", physfree);
+               DBG("bootargs: %p, &ksize: %p &kaddr: %p\n",
+                       kernelBootArgs, 
+                       &kernelBootArgs->ksize,
+                       &kernelBootArgs->kaddr);
+
+               postcode(PSTART_PAGE_TABLES);
+
+               Idle_PTs_init();
+
+               first_avail = (vm_offset_t)ID_MAP_VTOP(physfree);
+
+               cpu = 0;
+       } else {
+               /* Find our logical cpu number */
+               cpu = lapic_to_cpu[(LAPIC_READ(ID)>>LAPIC_ID_SHIFT) & LAPIC_ID_MASK];
+       }
+
+       if(is_boot_cpu) cpu_data_alloc(TRUE);
+#ifdef __x86_64__
+       if(is_boot_cpu)
+               cpu_desc_init64(cpu_datap(cpu));
+       cpu_desc_load64(cpu_datap(cpu));
+#else
+       if(is_boot_cpu)
+               cpu_desc_init(cpu_datap(cpu));
+       cpu_desc_load(cpu_datap(cpu));
+#endif
+       cpu_mode_init(current_cpu_datap());
+
+       /* enable NX/XD */
+       if (cpuid_extfeatures() & CPUID_EXTFEATURE_XD)
+        wrmsr64(MSR_IA32_EFER, rdmsr64(MSR_IA32_EFER) | MSR_IA32_EFER_NXE);
+       DBG("vstart() NX/XD enabled\n");
+
+
+#ifdef __x86_64__
+       /* Done with identity mapping */
+       IdlePML4[0] = 0;
+#endif
+
+       postcode(VSTART_EXIT);
+#ifdef __i386__
+       if (is_boot_cpu)
+               i386_init(boot_args_start);
+       else
+               i386_init_slave();
+       /*NOTREACHED*/
+#else
+       /* We need to switch to a new per-cpu stack, but we must do this atomically with
+        * the call to ensure the compiler doesn't assume anything about the stack before
+        * e.g. tail-call optimisations
+        */
+       if (is_boot_cpu)
+       {
+               asm volatile(
+                               "mov %1, %%rdi;"
+                               "mov %0, %%rsp;"
+                               "call _i386_init;"      : : "r" 
+                               (cpu_datap(cpu)->cpu_int_stack_top), "r" (boot_args_start));
+       }
+       else
+       {
+               asm volatile(
+                               "mov %0, %%rsp;"
+                               "call _i386_init_slave;"        : : "r" 
+                               (cpu_datap(cpu)->cpu_int_stack_top));
+       }
+       /*NOTREACHED*/
+#endif
+}
 
 /*
  *     Cpu initialization.  Running virtual, but without MACH VM
- *     set up.  First C routine called, unless i386_preinit() was called first.
+ *     set up.
  */
 void
-i386_init(void)
+i386_init(vm_offset_t boot_args_start)
 {
        unsigned int    maxmem;
-       unsigned int    cpus;
+       uint64_t        maxmemtouse;
+       unsigned int    cpus = 0;
+       boolean_t       fidn;
+#ifdef __i386__
+       boolean_t       legacy_mode;
+#endif
+       boolean_t       IA32e = TRUE;
 
        postcode(I386_INIT_ENTRY);
 
+#if CONFIG_MCA
+       /* Initialize machine-check handling */
+       mca_cpu_init();
+#endif
+
+       /*
+        * Setup boot args given the physical start address.
+        */
+       kernelBootArgs = (boot_args *)
+               ml_static_ptovirt(boot_args_start);
+       DBG("i386_init(0x%lx) kernelBootArgs=%p\n",
+               (unsigned long)boot_args_start, kernelBootArgs);
+
        master_cpu = 0;
-       cpu_data_alloc(TRUE);
        cpu_init();
+
        postcode(CPU_INIT_D);
 
-       /*
-        * Setup some processor related structures to satisfy funnels.
-        * Must be done before using unparallelized device drivers.
-        */
-       processor_bootstrap();
 
        PE_init_platform(FALSE, kernelBootArgs);
        postcode(PE_INIT_PLATFORM_D);
 
-       /*
-        * Set up initial thread so current_thread() works early on
-        */
-       thread_bootstrap();
-       postcode(THREAD_BOOTSTRAP_D);
 
        printf_init();                  /* Init this in case we need debugger */
        panic_init();                   /* Init this in case we need debugger */
 
+
        /* setup debugging output if one has been chosen */
        PE_init_kprintf(FALSE);
 
+       if (!PE_parse_boot_argn("diag", &dgWork.dgFlags, sizeof (dgWork.dgFlags)))
+               dgWork.dgFlags = 0;
+
+       serialmode = 0;
+       if(PE_parse_boot_argn("serial", &serialmode, sizeof (serialmode))) {
+               /* We want a serial keyboard and/or console */
+               kprintf("Serial mode specified: %08X\n", serialmode);
+       }
+       if(serialmode & 1) {
+               (void)switch_to_serial_console();
+               disableConsoleOutput = FALSE;   /* Allow printfs to happen */
+       }
+
        /* setup console output */
        PE_init_printf(FALSE);
 
        kprintf("version_variant = %s\n", version_variant);
        kprintf("version         = %s\n", version);
+       
+       if (!PE_parse_boot_argn("maxmem", &maxmem, sizeof (maxmem)))
+               maxmemtouse = 0;
+       else
+               maxmemtouse = ((uint64_t)maxmem) * MB;
+
+       if (PE_parse_boot_argn("cpus", &cpus, sizeof (cpus))) {
+               if ((0 < cpus) && (cpus < max_ncpus))
+                        max_ncpus = cpus;
+       }
+
+
+       /*
+        * debug support for > 4G systems
+        */
+       if (!PE_parse_boot_argn("himemory_mode", &vm_himemory_mode, sizeof (vm_himemory_mode)))
+               vm_himemory_mode = 0;
+
+       if (!PE_parse_boot_argn("immediate_NMI", &fidn, sizeof (fidn)))
+               force_immediate_debugger_NMI = FALSE;
+       else
+               force_immediate_debugger_NMI = fidn;
+#ifdef __i386__
+       /*
+        * At this point we check whether we are a 64-bit processor
+        * and that we're not restricted to legacy mode, 32-bit operation.
+        */
+       if (cpuid_extfeatures() & CPUID_EXTFEATURE_EM64T) {
+               kprintf("EM64T supported");
+               if (PE_parse_boot_argn("-legacy", &legacy_mode, sizeof (legacy_mode))) {
+                       kprintf(" but legacy mode forced\n");
+                       IA32e = FALSE;
+               } else {
+                       kprintf(" and will be enabled\n");
+               }
+       } else
+               IA32e = FALSE;
+#endif
+
+       if (!(cpuid_extfeatures() & CPUID_EXTFEATURE_XD))
+               nx_enabled = 0;
+
+       /* Obtain "lcks" options:this currently controls lock statistics */
+       if (!PE_parse_boot_argn("lcks", &LcksOpts, sizeof (LcksOpts)))
+               LcksOpts = 0;
 
        /*   
         * VM initialization, after this we're using page tables...
         * The maximum number of cpus must be set beforehand.
         */
-       if (!PE_parse_boot_arg("maxmem", &maxmem))
-               maxmem=0;
-       else
-               maxmem = maxmem * (1024 * 1024);
+       i386_vm_init(maxmemtouse, IA32e, kernelBootArgs);
 
-       if (PE_parse_boot_arg("cpus", &cpus)) {
-               if ((0 < cpus) && (cpus < max_ncpus))
-                        max_ncpus = cpus;
-       }
+       if ( ! PE_parse_boot_argn("novmx", &noVMX, sizeof (noVMX)))
+               noVMX = 0;      /* OK to support Altivec in rosetta? */
 
-       i386_vm_init(maxmem, kernelBootArgs);
+       tsc_init();
+       power_management_init();
 
        PE_init_platform(TRUE, kernelBootArgs);
 
        /* create the console for verbose or pretty mode */
        PE_create_console();
 
+       processor_bootstrap();
+       thread_bootstrap();
+
        machine_startup();
+}
+
+static void
+do_init_slave(boolean_t fast_restart)
+{
+       void    *init_param     = FULL_SLAVE_INIT;
+
+       postcode(I386_INIT_SLAVE);
+
+       if (!fast_restart) {
+               /* Ensure that caching and write-through are enabled */
+               set_cr0(get_cr0() & ~(CR0_NW|CR0_CD));
+  
+               DBG("i386_init_slave() CPU%d: phys (%d) active.\n",
+                   get_cpu_number(), get_cpu_phys_number());
+  
+               assert(!ml_get_interrupts_enabled());
+  
+               cpu_mode_init(current_cpu_datap());
+  
+#if CONFIG_MCA
+               mca_cpu_init();
+#endif
+  
+               lapic_configure();
+               LAPIC_DUMP();
+               LAPIC_CPU_MAP_DUMP();
+  
+               init_fpu();
+  
+               mtrr_update_cpu();
+       } else
+           init_param = FAST_SLAVE_INIT;
+
+#if CONFIG_VMX
+       /* resume VT operation */
+       vmx_resume();
+#endif
+
+       if (!fast_restart)
+           pat_init();
 
+       cpu_thread_init();      /* not strictly necessary */
+
+#ifdef __x86_64__
+       /* Re-zero the identity-map for the idle PT's. This MUST be done before 
+        * cpu_running is set so that other slaves can set up their own
+        * identity-map */
+       if (!fast_restart)
+           IdlePML4[0] = 0;
+#endif
+
+       cpu_init();     /* Sets cpu_running which starter cpu waits for */ 
+
+       slave_main(init_param);
+  
+       panic("do_init_slave() returned from slave_main()");
+}
+
+/*
+ * i386_init_slave() is called from pstart.
+ * We're in the cpu's interrupt stack with interrupts disabled.
+ * At this point we are in legacy mode. We need to switch on IA32e
+ * if the mode is set to 64-bits.
+ */
+void
+i386_init_slave(void)
+{
+       do_init_slave(FALSE);
 }
+
+/*
+ * i386_init_slave_fast() is called from pmCPUHalt.
+ * We're running on the idle thread and need to fix up
+ * some accounting and get it so that the scheduler sees this
+ * CPU again.
+ */
+void
+i386_init_slave_fast(void)
+{
+       do_init_slave(TRUE);
+}
+
+