1. 14 8月, 2010 1 次提交
  2. 13 8月, 2010 2 次提交
  3. 11 8月, 2010 1 次提交
  4. 10 8月, 2010 1 次提交
  5. 09 8月, 2010 1 次提交
  6. 06 8月, 2010 1 次提交
    • E
      x86, apic: Map the local apic when parsing the MP table. · 5989cd6a
      Eric W. Biederman 提交于
      This fixes a regression in 2.6.35 from 2.6.34, that is
      present for select models of Intel cpus when people are
      using an MP table.
      
      The commit cf7500c0
      "x86, ioapic: In mpparse use mp_register_ioapic" started
      calling mp_register_ioapic from MP_ioapic_info.  An extremely
      simple change that was obviously correct.  Unfortunately
      mp_register_ioapic did just a little more than the previous
      hand crafted code and so we gained this call path.
      
      The problem call path is:
      MP_ioapic_info()
        mp_register_ioapic()
         io_apic_unique_id()
           io_apic_get_unique_id()
             get_physical_broadcast()
               modern_apic()
                 lapic_get_version()
                   apic_read(APIC_LVR)
      
      Which turned out to be a problem because the local apic
      was not mapped, at that point, unlike the similar point
      in the ACPI parsing code.
      
      This problem is fixed by mapping the local apic when
      parsing the mptable as soon as we reasonably can.
      
      Looking at the number of places we setup the fixmap for
      the local apic, I see some serious simplification opportunities.
      For the moment except for not duplicating the setting up of the
      fixmap in init_apic_mappings, I have not acted on them.
      
      The regression from 2.6.34 is tracked in bug
      https://bugzilla.kernel.org/show_bug.cgi?id=16173
      
      Cc: <stable@kernel.org> 2.6.35
      Reported-by: NDavid Hill <hilld@binarystorm.net>
      Reported-by: NTvrtko Ursulin <tvrtko.ursulin@sophos.com>
      Tested-by: NTvrtko Ursulin <tvrtko.ursulin@sophos.com>
      Signed-off-by: NEric W. Biederman <ebiederm@xmission.com>
      LKML-Reference: <m1eiee86jg.fsf_-_@fess.ebiederm.org>
      Signed-off-by: NH. Peter Anvin <hpa@linux.intel.com>
      5989cd6a
  7. 05 8月, 2010 3 次提交
  8. 04 8月, 2010 16 次提交
  9. 03 8月, 2010 3 次提交
  10. 02 8月, 2010 3 次提交
  11. 01 8月, 2010 1 次提交
  12. 31 7月, 2010 5 次提交
    • A
      x86, olpc: Constify an olpc_ofw() arg · 54e5bc02
      Andres Salomon 提交于
      The arguments passed to OFW shouldn't be modified; update the 'args'
      argument of olpc_ofw to reflect this.  This saves us some later
      casting away of consts.
      Signed-off-by: NAndres Salomon <dilinger@queued.net>
      LKML-Reference: <20100628220029.1555ac24@debian>
      Signed-off-by: NH. Peter Anvin <hpa@linux.intel.com>
      54e5bc02
    • A
      x86, olpc: Use pr_debug() for EC commands · 25971865
      Andres Salomon 提交于
      Unconditionally printing EC debug messages was helpful when we were actually
      debugging the EC, but during normal operation it can get pretty annoying.
      Using pr_debug allows us finer-grained control.
      Signed-off-by: NAndres Salomon <dilinger@queued.net>
      LKML-Reference: <20100616231928.16b539f0@dev.queued.net>
      Signed-off-by: NH. Peter Anvin <hpa@linux.intel.com>
      25971865
    • F
      x86, cpu: Package Level Thermal Control, Power Limit Notification definitions · 9792db61
      Fenghua Yu 提交于
      Add package level thermal and power limit feature support.
      
      The two MSRs and features are new starting with Intel's Sandy Bridge processor.
      
      Please check Intel 64 and IA-32 Architectures SDMV Vol 3A 14.5.6 Power Limit
      Notification and 14.6 Package Level Thermal Management.
      
      This patch also fixes a bug which defines reverse THERM_INT_LOW_ENABLE bit and
      THERM_INT_HIGH_ENABLE bit.
      
      [ hpa: fixed up against current tip:x86/cpu ]
      Signed-off-by: NFenghua Yu <fenghua.yu@intel.com>
      LKML-Reference: <1280448826-12004-2-git-send-email-fenghua.yu@intel.com>
      Reviewed-by: NLen Brown <len.brown@intel.com>
      Signed-off-by: NH. Peter Anvin <hpa@linux.intel.com>
      9792db61
    • S
      x86, mtrr: Use stop machine context to rendezvous all the cpu's · 68f202e4
      Suresh Siddha 提交于
      Use the stop machine context rather than IPI's to rendezvous all the cpus for
      MTRR initialization that happens during cpu bringup or for MTRR modifications
      during runtime.
      
      This avoids deadlock scenario (reported by Prarit) like:
      
      cpu A holds a read_lock (tasklist_lock for example) with irqs enabled
      cpu B waits for the same lock with irqs disabled using write_lock_irq
      cpu C doing set_mtrr() (during AP bringup for example), which will try to
      rendezvous all the cpus using IPI's
      
      This will result in C and A come to the rendezvous point and waiting
      for B. B is stuck forever waiting for the lock and thus not
      reaching the rendezvous point.
      
      Using stop cpu (run in the process context of per cpu based keventd) to do
      this rendezvous, avoids this deadlock scenario.
      
      Also make sure all the cpu's are in the rendezvous handler before we proceed
      with the local_irq_save() on each cpu. This lock step disabling irqs on all
      the cpus will avoid other deadlock scenarios (for example involving
      with the blocking smp_call_function's etc).
      
         [ This problem is very old. Marking -stable only for 2.6.35 as the
           stop_one_cpu_nowait() API is present only in 2.6.35. Any older
           kernel interested in this fix need to do some more work in backporting
           this patch. ]
      Reported-by: NPrarit Bhargava <prarit@redhat.com>
      Signed-off-by: NSuresh Siddha <suresh.b.siddha@intel.com>
      LKML-Reference: <1280515602.2682.10.camel@sbsiddha-MOBL3.sc.intel.com>
      Acked-by: NPrarit Bhargava <prarit@redhat.com>
      Cc: stable@kernel.org	[2.6.35]
      Signed-off-by: NH. Peter Anvin <hpa@linux.intel.com>
      68f202e4
    • B
      PCI: MSI: Restore read_msi_msg_desc(); add get_cached_msi_msg_desc() · 30da5524
      Ben Hutchings 提交于
      commit 2ca1af9aa3285c6a5f103ed31ad09f7399fc65d7 "PCI: MSI: Remove
      unsafe and unnecessary hardware access" changed read_msi_msg_desc() to
      return the last MSI message written instead of reading it from the
      device, since it may be called while the device is in a reduced
      power state.
      
      However, the pSeries platform code really does need to read messages
      from the device, since they are initially written by firmware.
      Therefore:
      - Restore the previous behaviour of read_msi_msg_desc()
      - Add new functions get_cached_msi_msg{,_desc}() which return the
        last MSI message written
      - Use the new functions where appropriate
      Acked-by: NMichael Ellerman <michael@ellerman.id.au>
      Signed-off-by: NBen Hutchings <bhutchings@solarflare.com>
      Signed-off-by: NJesse Barnes <jbarnes@virtuousgeek.org>
      30da5524
  13. 30 7月, 2010 1 次提交
  14. 29 7月, 2010 1 次提交
    • J
      x86,kgdb: Fix hw breakpoint regression · ba773f7c
      Jason Wessel 提交于
      HW breakpoints events stopped working correctly with kgdb
      as a result of commit: 018cbffe
      (Merge commit 'v2.6.33' into perf/core).
      
      The regression occurred because the behavior changed for setting
      NOTIFY_STOP as the return value to the die notifier if the breakpoint
      was known to the HW breakpoint API.  Because kgdb is using the HW
      breakpoint API to register HW breakpoints slots, it must also now
      implement the overflow_handler call back else kgdb does not get to see
      the events from the die notifier.
      
      The kgdb_ll_trap function will be changed to be general purpose code
      which can allow an easy way to implement the hw_breakpoint API
      overflow call back.
      Signed-off-by: NJason Wessel <jason.wessel@windriver.com>
      Acked-by: NDongdong Deng <dongdong.deng@windriver.com>
      Acked-by: NFrederic Weisbecker <fweisbec@gmail.com>
      ba773f7c