1. 12 4月, 2011 1 次提交
    • K
      powerpc/book3e: Fix CPU feature handling on 64-bit e5500 · 11ed0db9
      Kumar Gala 提交于
      The CPU_FTRS_POSSIBLE and CPU_FTRS_ALWAYS defines did not encompass
      e5500 CPU features when built for 64-bit.  This causes issues with
      cpu_has_feature() as it utilizes the POSSIBLE & ALWAYS defines as part
      of its check.
      
      Create a unique CPU_FTRS_E5500 (as its different from CPU_FTRS_E500MC),
      created a new group for 64-bit Book3e based CPUs and add CPU_FTRS_E5500
      to that group.
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      11ed0db9
  2. 07 2月, 2011 1 次提交
  3. 02 2月, 2011 1 次提交
  4. 21 1月, 2011 1 次提交
  5. 29 11月, 2010 3 次提交
  6. 14 10月, 2010 1 次提交
  7. 13 10月, 2010 1 次提交
  8. 23 8月, 2010 1 次提交
  9. 26 7月, 2010 1 次提交
    • L
      powerpc/40x: Distinguish AMCC PowerPC 405EX and 405EXr correctly · ff349103
      Lee Nipper 提交于
      The recent AMCC 405EX Rev D without Security uses a PVR value
      that matches the old 405EXr Rev A/B with Security.
      The 405EX Rev D without Security would be shown
      incorrectly as an 405EXr. The pvr_mask of 0xffff0004
      is no longer sufficient to distinguish the 405EX from 405EXr.
      
      This patch replaces 2 entries in the cpu_specs table
      and adds 8 more, each using pvr_mask of 0xffff000f
      and appropriate pvr_value to distinguish the AMCC
      PowerPC 405EX and 405EXr instances.
      The cpu_name for these entries now includes the
      Rev, in similar fashion to the 440GX.
      Signed-off-by: NLee Nipper <lee.nipper@gmail.com>
      Signed-off-by: NJosh Boyer <jwboyer@linux.vnet.ibm.com>
      ff349103
  10. 21 5月, 2010 1 次提交
  11. 05 5月, 2010 3 次提交
  12. 05 3月, 2010 1 次提交
    • S
      powerpc/perf: e500 support · a1110654
      Scott Wood 提交于
      This implements perf_event support for the Freescale embedded performance
      monitor, based on the existing perf_event.c that supports server/classic
      chips.
      
      Some limitations:
      - Performance monitor interrupts are regular EE interrupts, and thus you
        can't profile places with interrupts disabled.  We may want to implement
        soft IRQ-disabling, with perfmon interrupts exempted and treated as NMIs.
      - When trying to schedule multiple event groups at once, and using
        restricted events, situations could arise where scheduling fails even
        though it would be possible.  Consider three groups, each with two events.
        One group has restricted events, the others don't.  The two non-restricted
        groups are scheduled, then one is removed, which happens to occupy the two
        counters that can't do restricted events.  The remaining non-restricted
        group will not be moved to the non-restricted-capable counters to make
        room if the restricted group tries to be scheduled.
      Signed-off-by: NScott Wood <scottwood@freescale.com>
      Acked-by: NPaul Mackerras <paulus@samba.org>
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      a1110654
  13. 13 12月, 2009 1 次提交
  14. 14 10月, 2009 1 次提交
  15. 28 8月, 2009 1 次提交
  16. 20 8月, 2009 2 次提交
  17. 21 5月, 2009 1 次提交
  18. 15 5月, 2009 1 次提交
  19. 01 5月, 2009 2 次提交
  20. 23 4月, 2009 1 次提交
  21. 07 4月, 2009 1 次提交
  22. 24 3月, 2009 1 次提交
  23. 11 3月, 2009 3 次提交
  24. 09 3月, 2009 1 次提交
  25. 15 2月, 2009 1 次提交
  26. 29 1月, 2009 1 次提交
    • K
      powerpc/fsl-booke: Cleanup init/exception setup to be runtime · 105c31df
      Kumar Gala 提交于
      We currently have a few variants of fsl-booke processors (e500v1, e500v2,
      e500mc, and e200).  They all have minor differences that we had previously
      been handling via ifdefs.
      
      To move towards having this support the following changes have been made:
      
      * PID1, PID2 only exist on e500v1 & e500v2 and should not be accessed on
        e500mc or e200.  We use MMUCFG[NPIDS] to determine which case we are
        since we only touch PID1/2 in extremely early init code.
      
      * Not all IVORs exist on all the processors so introduce cpu_setup
        functions for each variant to setup the proper IVORs that are either
        unique or exist but have some variations between the processors
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      105c31df
  27. 21 12月, 2008 2 次提交
  28. 06 12月, 2008 1 次提交
  29. 17 10月, 2008 1 次提交
  30. 20 8月, 2008 1 次提交
  31. 26 7月, 2008 1 次提交