X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/4452a7af2eac33dbad800bcc91f2399d62c18f53..22ba694c5857e62b5a553b1505dcf2e509177f28:/osfmk/i386/acpi.c diff --git a/osfmk/i386/acpi.c b/osfmk/i386/acpi.c index a70821010..bccc305cf 100644 --- a/osfmk/i386/acpi.c +++ b/osfmk/i386/acpi.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. + * Copyright (c) 2000-2012 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * @@ -26,171 +26,444 @@ * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ -#include -#include #include +#include +#include +#include +#include +#include +#if CONFIG_MTRR #include +#endif +#if CONFIG_VMX +#include +#endif +#include #include #include +#include #include #include +#include +#if CONFIG_MCA #include +#endif +#include + +#include #include +#include +#include +#include +#include +#include +#if HIBERNATION #include +#endif #include +#include +#if CONFIG_SLEEP extern void acpi_sleep_cpu(acpi_sleep_callback, void * refcon); -extern char acpi_wake_start[]; -extern char acpi_wake_end[]; - -extern int serial_init(void); -extern unsigned int disableSerialOuput; - -extern void set_kbd_leds(int leds); +extern void acpi_wake_prot(void); +#endif +extern kern_return_t IOCPURunPlatformQuiesceActions(void); +extern kern_return_t IOCPURunPlatformActiveActions(void); extern void fpinit(void); vm_offset_t acpi_install_wake_handler(void) { - /* copy wake code to ACPI_WAKE_ADDR in low memory */ - bcopy_phys(kvtophys((vm_offset_t)acpi_wake_start), - (addr64_t) ACPI_WAKE_ADDR, - acpi_wake_end - acpi_wake_start); - - /* flush cache */ - wbinvd(); - - /* return physical address of the wakeup code */ - return ACPI_WAKE_ADDR; +#if CONFIG_SLEEP + install_real_mode_bootstrap(acpi_wake_prot); + return REAL_MODE_BOOTSTRAP_OFFSET; +#else + return 0; +#endif } -typedef struct acpi_hibernate_callback_data { - acpi_sleep_callback func; - void *refcon; -} acpi_hibernate_callback_data; +#if HIBERNATION +struct acpi_hibernate_callback_data { + acpi_sleep_callback func; + void *refcon; +}; +typedef struct acpi_hibernate_callback_data acpi_hibernate_callback_data_t; + +unsigned int save_kdebug_enable = 0; +static uint64_t acpi_sleep_abstime; +static uint64_t acpi_idle_abstime; +static uint64_t acpi_wake_abstime; +boolean_t deep_idle_rebase = TRUE; +#if CONFIG_SLEEP static void acpi_hibernate(void *refcon) { - boolean_t dohalt; - - acpi_hibernate_callback_data *data = (acpi_hibernate_callback_data *)refcon; + uint32_t mode; - if (current_cpu_datap()->cpu_hibernate) { + acpi_hibernate_callback_data_t *data = + (acpi_hibernate_callback_data_t *)refcon; - dohalt = hibernate_write_image(); - if (dohalt) - { - // off - HIBLOG("power off\n"); - if (PE_halt_restart) - (*PE_halt_restart)(kPEHaltCPU); - } - else + if (current_cpu_datap()->cpu_hibernate) { - // sleep - HIBLOG("sleep\n"); + mode = hibernate_write_image(); + + if( mode == kIOHibernatePostWriteHalt ) + { + // off + HIBLOG("power off\n"); + if (PE_halt_restart) (*PE_halt_restart)(kPEHaltCPU); + } + else if( mode == kIOHibernatePostWriteRestart ) + { + // restart + HIBLOG("restart\n"); + if (PE_halt_restart) (*PE_halt_restart)(kPERestartCPU); + } + else + { + // sleep + HIBLOG("sleep\n"); + + // should we come back via regular wake, set the state in memory. + cpu_datap(0)->cpu_hibernate = 0; + } - // should we come back via regular wake, set the state in memory. - cpu_datap(0)->cpu_hibernate = 0; } - } + kdebug_enable = 0; - (data->func)(data->refcon); + IOCPURunPlatformQuiesceActions(); - /* should never get here! */ + acpi_sleep_abstime = mach_absolute_time(); + + (data->func)(data->refcon); + + /* should never get here! */ } +#endif /* CONFIG_SLEEP */ +#endif /* HIBERNATION */ + +extern void slave_pstart(void); +extern void hibernate_rebuild_vm_structs(void); + +extern unsigned int wake_nkdbufs; void acpi_sleep_kernel(acpi_sleep_callback func, void *refcon) { - acpi_hibernate_callback_data data; - boolean_t did_hibernate; +#if HIBERNATION + acpi_hibernate_callback_data_t data; +#endif + boolean_t did_hibernate; + unsigned int cpu; + kern_return_t rc; + unsigned int my_cpu; + uint64_t start; + uint64_t elapsed = 0; + uint64_t elapsed_trace_start = 0; + + kprintf("acpi_sleep_kernel hib=%d, cpu=%d\n", + current_cpu_datap()->cpu_hibernate, cpu_number()); + + /* Get all CPUs to be in the "off" state */ + my_cpu = cpu_number(); + for (cpu = 0; cpu < real_ncpus; cpu += 1) { + if (cpu == my_cpu) + continue; + rc = pmCPUExitHaltToOff(cpu); + if (rc != KERN_SUCCESS) + panic("Error %d trying to transition CPU %d to OFF", + rc, cpu); + } - kprintf("acpi_sleep_kernel hib=%d\n", current_cpu_datap()->cpu_hibernate); + /* shutdown local APIC before passing control to firmware */ + lapic_shutdown(); - /* shutdown local APIC before passing control to BIOS */ - lapic_shutdown(); +#if HIBERNATION + data.func = func; + data.refcon = refcon; +#endif - data.func = func; - data.refcon = refcon; + /* Save power management timer state */ + pmTimerSave(); - /* Save HPET state */ - hpet_save(); +#if CONFIG_VMX + /* + * Turn off VT, otherwise switching to legacy mode will fail + */ + vmx_suspend(); +#endif - /* - * If we're in 64-bit mode, drop back into legacy mode during sleep. - */ - if (cpu_mode_is64bit()) { - cpu_IA32e_disable(current_cpu_datap()); - kprintf("acpi_sleep_kernel legacy mode re-entered\n"); - } + /* + * Enable FPU/SIMD unit for potential hibernate acceleration + */ + clear_ts(); - /* - * Save master CPU state and sleep platform. - * Will not return until platform is woken up, - * or if sleep failed. - */ - acpi_sleep_cpu(acpi_hibernate, &data); + KERNEL_DEBUG_CONSTANT(IOKDBG_CODE(DBG_HIBERNATE, 0) | DBG_FUNC_START, 0, 0, 0, 0, 0); - /* reset UART if kprintf is enabled */ - if (FALSE == disableSerialOuput) - serial_init(); + save_kdebug_enable = kdebug_enable; + kdebug_enable = 0; - kprintf("ret from acpi_sleep_cpu hib=%d\n", current_cpu_datap()->cpu_hibernate); + acpi_sleep_abstime = mach_absolute_time(); - if (current_cpu_datap()->cpu_hibernate) { - int i; - for (i=0; icpu_pmap->mapwindow[i].prv_CMAP = 0; +#if CONFIG_SLEEP + /* + * Save master CPU state and sleep platform. + * Will not return until platform is woken up, + * or if sleep failed. + */ + uint64_t old_cr3 = x86_64_pre_sleep(); +#if HIBERNATION + acpi_sleep_cpu(acpi_hibernate, &data); +#else + acpi_sleep_cpu(func, refcon); +#endif + + start = mach_absolute_time(); + + x86_64_post_sleep(old_cr3); + +#endif /* CONFIG_SLEEP */ + + /* Reset UART if kprintf is enabled. + * However kprintf should not be used before rtc_sleep_wakeup() + * for compatibility with firewire kprintf. + */ + + if (FALSE == disable_serial_output) + pal_serial_init(); + +#if HIBERNATION + if (current_cpu_datap()->cpu_hibernate) { + did_hibernate = TRUE; + + } else +#endif + { + did_hibernate = FALSE; } - current_cpu_datap()->cpu_hibernate = 0; - did_hibernate = TRUE; - - } else { - did_hibernate = FALSE; - } - - /* Re-enable 64-bit mode if necessary. */ - if (cpu_mode_is64bit()) { - cpu_IA32e_enable(current_cpu_datap()); - cpu_desc_load64(current_cpu_datap()); - kprintf("acpi_sleep_kernel 64-bit mode re-enabled\n"); - fast_syscall_init64(); - } else { - fast_syscall_init(); - } - - /* Re-enable machine check handling */ - mca_cpu_init(); - - /* restore MTRR settings */ - mtrr_update_cpu(); - - /* set up PAT following boot processor power up */ - pat_init(); - - if (did_hibernate) { - hibernate_machine_init(); - } - - /* re-enable and re-init local apic */ - if (lapic_probe()) - lapic_init(); - - /* Restore HPET state */ - hpet_restore(); - - /* let the realtime clock reset */ - rtc_sleep_wakeup(); - - fpinit(); - clear_fpu(); - - if (did_hibernate) { - enable_preemption(); - } + + /* Re-enable mode (including 64-bit if applicable) */ + cpu_mode_init(current_cpu_datap()); + +#if CONFIG_MCA + /* Re-enable machine check handling */ + mca_cpu_init(); +#endif + +#if CONFIG_MTRR + /* restore MTRR settings */ + mtrr_update_cpu(); +#endif + + /* update CPU microcode */ + ucode_update_wake(); + +#if CONFIG_VMX + /* + * Restore VT mode + */ + vmx_resume(); +#endif + +#if CONFIG_MTRR + /* set up PAT following boot processor power up */ + pat_init(); +#endif + + /* + * Go through all of the CPUs and mark them as requiring + * a full restart. + */ + pmMarkAllCPUsOff(); + + + /* re-enable and re-init local apic (prior to starting timers) */ + if (lapic_probe()) + lapic_configure(); + + hibernate_rebuild_vm_structs(); + + elapsed += mach_absolute_time() - start; + acpi_wake_abstime = mach_absolute_time(); + + /* let the realtime clock reset */ + rtc_sleep_wakeup(acpi_sleep_abstime); + + kdebug_enable = save_kdebug_enable; + + if (kdebug_enable == 0) { + if (wake_nkdbufs) { + start = mach_absolute_time(); + start_kern_tracing(wake_nkdbufs, TRUE); + elapsed_trace_start += mach_absolute_time() - start; + } + } + start = mach_absolute_time(); + + /* Reconfigure FP/SIMD unit */ + init_fpu(); + clear_ts(); + + IOCPURunPlatformActiveActions(); + + if (did_hibernate) { + elapsed += mach_absolute_time() - start; + + KERNEL_DEBUG_CONSTANT(IOKDBG_CODE(DBG_HIBERNATE, 2) | DBG_FUNC_START, elapsed, elapsed_trace_start, 0, 0, 0); + hibernate_machine_init(); + KERNEL_DEBUG_CONSTANT(IOKDBG_CODE(DBG_HIBERNATE, 2) | DBG_FUNC_END, 0, 0, 0, 0, 0); + + current_cpu_datap()->cpu_hibernate = 0; + + KERNEL_DEBUG_CONSTANT(IOKDBG_CODE(DBG_HIBERNATE, 0) | DBG_FUNC_END, 0, 0, 0, 0, 0); + } else + KERNEL_DEBUG_CONSTANT(IOKDBG_CODE(DBG_HIBERNATE, 0) | DBG_FUNC_END, 0, 0, 0, 0, 0); + + /* Restore power management register state */ + pmCPUMarkRunning(current_cpu_datap()); + + /* Restore power management timer state */ + pmTimerRestore(); + + /* Restart timer interrupts */ + rtc_timer_start(); + +#if HIBERNATION + + kprintf("ret from acpi_sleep_cpu hib=%d\n", did_hibernate); +#endif + +#if CONFIG_SLEEP + /* Becase we don't save the bootstrap page, and we share it + * between sleep and mp slave init, we need to recreate it + * after coming back from sleep or hibernate */ + install_real_mode_bootstrap(slave_pstart); +#endif +} + +/* + * acpi_idle_kernel is called by the ACPI Platform kext to request the kernel + * to idle the boot processor in the deepest C-state for S0 sleep. All slave + * processors are expected already to have been offlined in the deepest C-state. + * + * The contract with ACPI is that although the kernel is called with interrupts + * disabled, interrupts may need to be re-enabled to dismiss any pending timer + * interrupt. However, the callback function will be called once this has + * occurred and interrupts are guaranteed to be disabled at that time, + * and to remain disabled during C-state entry, exit (wake) and return + * from acpi_idle_kernel. + */ +void +acpi_idle_kernel(acpi_sleep_callback func, void *refcon) +{ + boolean_t istate = ml_get_interrupts_enabled(); + + kprintf("acpi_idle_kernel, cpu=%d, interrupts %s\n", + cpu_number(), istate ? "enabled" : "disabled"); + + assert(cpu_number() == master_cpu); + + /* + * Effectively set the boot cpu offline. + * This will stop further deadlines being set. + */ + cpu_datap(master_cpu)->cpu_running = FALSE; + + /* Cancel any pending deadline */ + setPop(0); + while (lapic_is_interrupting(LAPIC_TIMER_VECTOR)) { + (void) ml_set_interrupts_enabled(TRUE); + setPop(0); + ml_set_interrupts_enabled(FALSE); + } + + /* + * Call back to caller to indicate that interrupts will remain + * disabled while we deep idle, wake and return. + */ + func(refcon); + + acpi_idle_abstime = mach_absolute_time(); + + KERNEL_DEBUG_CONSTANT( + MACHDBG_CODE(DBG_MACH_SCHED, MACH_DEEP_IDLE) | DBG_FUNC_START, + acpi_idle_abstime, deep_idle_rebase, 0, 0, 0); + + /* + * Disable tracing during S0-sleep + * unless overridden by sysctl -w tsc.deep_idle_rebase=0 + */ + if (deep_idle_rebase) { + save_kdebug_enable = kdebug_enable; + kdebug_enable = 0; + } + + /* + * Call into power-management to enter the lowest C-state. + * Note when called on the boot processor this routine will + * return directly when awoken. + */ + pmCPUHalt(PM_HALT_SLEEP); + + /* + * Get wakeup time relative to the TSC which has progressed. + * Then rebase nanotime to reflect time not progressing over sleep + * - unless overriden so that tracing can occur during deep_idle. + */ + acpi_wake_abstime = mach_absolute_time(); + if (deep_idle_rebase) { + rtc_sleep_wakeup(acpi_idle_abstime); + kdebug_enable = save_kdebug_enable; + } + + cpu_datap(master_cpu)->cpu_running = TRUE; + + KERNEL_DEBUG_CONSTANT( + MACHDBG_CODE(DBG_MACH_SCHED, MACH_DEEP_IDLE) | DBG_FUNC_END, + acpi_wake_abstime, acpi_wake_abstime - acpi_idle_abstime, 0, 0, 0); + + /* Like S3 sleep, turn on tracing if trace_wake boot-arg is present */ + if (kdebug_enable == 0) { + if (wake_nkdbufs) + start_kern_tracing(wake_nkdbufs, TRUE); + } + + IOCPURunPlatformActiveActions(); + + /* Restart timer interrupts */ + rtc_timer_start(); } + +extern char real_mode_bootstrap_end[]; +extern char real_mode_bootstrap_base[]; + +void +install_real_mode_bootstrap(void *prot_entry) +{ + /* + * Copy the boot entry code to the real-mode vector area REAL_MODE_BOOTSTRAP_OFFSET. + * This is in page 1 which has been reserved for this purpose by + * machine_startup() from the boot processor. + * The slave boot code is responsible for switching to protected + * mode and then jumping to the common startup, _start(). + */ + bcopy_phys(kvtophys((vm_offset_t) real_mode_bootstrap_base), + (addr64_t) REAL_MODE_BOOTSTRAP_OFFSET, + real_mode_bootstrap_end-real_mode_bootstrap_base); + + /* + * Set the location at the base of the stack to point to the + * common startup entry. + */ + ml_phys_write_word( + PROT_MODE_START+REAL_MODE_BOOTSTRAP_OFFSET, + (unsigned int)kvtophys((vm_offset_t)prot_entry)); + + /* Flush caches */ + __asm__("wbinvd"); +} +