An error occurred fetching the project authors.
  1. 23 Oct, 2012 1 commit
  2. 05 May, 2012 1 commit
  3. 26 Nov, 2010 1 commit
  4. 01 Nov, 2010 1 commit
    • Paul Mundt's avatar
      sh: machvec IO death. · 37b7a978
      Paul Mundt authored
      This takes a bit of a sledgehammer to the machvec I/O routines. The
      iomem case requires no special casing and so can just be dropped
      outright. This only leaves the ioport casing for PCI and SuperIO
      mangling. With the SuperIO case going through the standard ioport
      mapping, it's possible to replace everything with generic routines.
      
      With this done the standard I/O routines are tidied up and NO_IOPORT
      now gets default-enabled for the vast majority of boards.
      Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
      37b7a978
  5. 23 Sep, 2010 2 commits
  6. 14 Jun, 2010 1 commit
  7. 02 Jun, 2010 1 commit
    • Paul Mundt's avatar
      sh: support for platforms without PIO. · 86e4dd5a
      Paul Mundt authored
      This extends some of the existing special casing for HAS_IOPORT
      platforms and gets it to the point where platforms can begin to
      conditionally select it.
      
      The major changes here are that the PIO routines themselves go away
      completely, including all of the machvec port mapping wrappers. With this
      in place it's possible for any non-machvec abusing platform to disable
      PIO completely. At present this is left as an opt-in until the abusers
      are the odd ones out instead of the majority.
      Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
      86e4dd5a
  8. 09 Mar, 2010 1 commit
  9. 20 Jan, 2010 1 commit
    • Paul Mundt's avatar
      sh: machine_ops based reboot support. · fbb82b03
      Paul Mundt authored
      This provides a machine_ops-based reboot interface loosely cloned from
      x86, and converts the native sh32 and sh64 cases over to it.
      
      Necessary both for tying in SMP support and also enabling platforms like
      SDK7786 to add support for their microcontroller-based power managers.
      Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
      fbb82b03
  10. 12 Jan, 2010 2 commits
    • Paul Mundt's avatar
      sh: Always provide thread_info allocators. · cbf6b1ba
      Paul Mundt authored
      Presently the thread_info allocators are special cased, depending on
      THREAD_SHIFT < PAGE_SHIFT. This provides a sensible definition for them
      regardless of configuration, in preparation for extended CPU state.
      Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
      cbf6b1ba
    • Paul Mundt's avatar
      sh: Consolidate the sh_bios earlyprintk code. · 776258df
      Paul Mundt authored
      Now that the sh-sci earlyprintk is taken care of by the sh-sci driver
      directly, there's no longer any reason for having a split-out
      early_printk framework. sh_bios is the only other thing that uses it, so
      we just migrate the leftovers in to there. As it's possible to have
      multiple early_param()'s for the same string, there's not much point in
      having this split out anymore anyways, particularly since the sh_bios
      dependencies are still special-cased within sh-sci itself.
      Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
      776258df
  11. 15 Dec, 2009 1 commit
    • Magnus Damm's avatar
      sh: Remove old early serial console code V2 · e76fe574
      Magnus Damm authored
      Now when the sh-sci driver can do early serial output,
      get rid of the old duplicated code. This patch is V2 and
      removes support for "earlyprintk=serial" together with
      the following kconfig options:
      CONFIG_EARLY_SCIF_CONSOLE
      CONFIG_EARLY_SCIF_CONSOLE_PORT
      CONFIG_EARLY_PRINTK
      
      With this patch applied "earlyprintk=" support is always
      built-in the SuperH kernel. For this to work the serial
      driver must have early platform support and in the case
      of sh-sci the serial console needs to be enabled:
      CONFIG_SERIAL_SH_SCI_CONSOLE=y
      
      So after enabling the SuperH SCI console kconfig option
      you also need to point out port using the kernel command
      line: "earlyprintk=sh-sci.N[,baudrate][,keep]"
      
      Remember that clocks may be disabled by the boot loader
      so you may have to do some board specific static clock
      setup before earlyprintk will work on your platform.
      Signed-off-by: default avatarMagnus Damm <damm@opensource.se>
      Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
      e76fe574
  12. 08 Dec, 2009 1 commit
    • Paul Mundt's avatar
      sh: hw-breakpoints: Add preliminary support for SH-4A UBC. · 09a07294
      Paul Mundt authored
      This adds preliminary support for the SH-4A UBC to the hw-breakpoints API.
      Presently only a single channel is implemented, and the ptrace interface
      still needs to be converted. This is the first step to cleaning up the
      long-standing UBC mess, making the UBC more generally accessible, and
      finally making it SMP safe.
      
      An additional abstraction will be layered on top of this as with the perf
      events code to permit the various CPU families to wire up support for
      their own specific UBCs, as many variations exist.
      Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
      09a07294
  13. 30 Nov, 2009 1 commit
  14. 05 Nov, 2009 1 commit
  15. 28 Oct, 2009 1 commit
    • Paul Mundt's avatar
      sh: perf events: Add preliminary support for SH-4A counters. · ac44e669
      Paul Mundt authored
      This adds in preliminary support for the SH-4A performance counters.
      Presently only the first 2 counters are supported, as these are the ones
      of the most interest to the perf tool and end users. Counter chaining is
      not presently handled, so these are simply implemented as 32-bit
      counters.
      
      This also establishes a perf event support framework for other hardware
      counters, which the existing SH-4 oprofile code will migrate over to as
      the SH-4A support evolves.
      Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
      ac44e669
  16. 20 Oct, 2009 1 commit
  17. 17 Oct, 2009 1 commit
  18. 13 Oct, 2009 2 commits
    • Paul Mundt's avatar
      sh: Don't profile return_address(). · c8afde7f
      Paul Mundt authored
      This adds return_address.c to the -pg exclusion list, as this is the
      building block for CALLER_ADDRx we do not want to profile this.
      Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
      c8afde7f
    • Paul Mundt's avatar
      sh: Generalize CALLER_ADDRx support. · ac4fac8c
      Paul Mundt authored
      This splits out the unwinder implementation and adds a new
      return_address() abstraction modelled after the ARM code. The DWARF
      unwinder is tied in to this, returning NULL otherwise in the case of
      being unable to support arbitrary depths.
      
      This enables us to get correct behaviour with the unwinder enabled,
      as well as disabling the arbitrary depth support when frame pointers are
      enabled, as arbitrary depths with __builtin_return_address() are not
      supported regardless.
      
      With this abstraction it's also possible to layer on a simplified
      implementation with frame pointers in the event that the unwinder isn't
      enabled, although this is left as a future exercise.
      Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
      ac4fac8c
  19. 01 Sep, 2009 1 commit
    • Paul Mundt's avatar
      sh: nmi_debug support. · 1e1030dc
      Paul Mundt authored
      This implements support for NMI debugging that was shamelessly copied
      from the avr32 port. A bit of special magic is needed in the interrupt
      exception path given that the NMI exception handler is stubbed in to the
      regular exception handling table despite being reported in INTEVT. So we
      mangle the lookup and kick off an EXPEVT-style exception dispatch from
      the INTEVT path for exceptions that do_IRQ() has no chance of handling.
      As a result, we also drop the evt2irq() conversion from the do_IRQ() path
      and just do it in assembly.
      Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
      1e1030dc
  20. 15 Aug, 2009 1 commit
  21. 28 Jan, 2008 1 commit
  22. 07 Nov, 2007 1 commit
  23. 08 Jun, 2007 2 commits
  24. 07 May, 2007 1 commit
  25. 13 Feb, 2007 1 commit
    • Paul Mundt's avatar
      sh: Use a jump call table for debug trap handlers. · f413d0d9
      Paul Mundt authored
      This rips out most of the needlessly complicated sh_bios and kgdb
      trap handling, and forces it all through a common fast dispatch path.
      As more debug traps are inserted, it's important to keep them in sync
      for all of the parts, not just SH-3/4.
      
      As the SH-2 parts are unable to do traps in the >= 0x40 range, we
      restrict the debug traps to the 0x30-0x3f range on all parts, and
      also bump the kgdb breakpoint trap down in to this range (from 0xff
      to 0x3c) so it's possible to use for nommu.
      
      Optionally, this table can be padded out to catch spurious traps for
      SH-3/4, but we don't do that yet..
      Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
      f413d0d9
  26. 09 Feb, 2007 1 commit
  27. 06 Dec, 2006 2 commits
  28. 27 Sep, 2006 3 commits
  29. 01 Feb, 2006 1 commit
  30. 17 Jan, 2006 1 commit
  31. 16 Apr, 2005 1 commit
    • Linus Torvalds's avatar
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds authored
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4