1. 25 1月, 2008 1 次提交
    • H
      [AVR32] Provide more CPU information in /proc/cpuinfo and dmesg · 281ef58c
      Haavard Skinnemoen 提交于
      Add the following fields to /proc/cpuinfo:
        * chip type and revision (from the JTAG chip id)
        * cpu MHz (from clk_get_rate())
        * features (from the CONFIG0 register)
      
      Also rename "cpu family" to "cpu arch" and "cpu type" to "cpu core" to
      remove some ambiguity.
      
      Show chip type and revision at bootup, and clarify that the other
      kinds of IDs that we're already printing are for the cpu core and
      architecture. Rename "AP7000" to "AP7" since that's the name of the
      core.
      Signed-off-by: NHaavard Skinnemoen <hskinnemoen@atmel.com>
      281ef58c
  2. 07 12月, 2007 1 次提交
    • H
      [AVR32] Follow the rules when dealing with the OCD system · 2507bc13
      Haavard Skinnemoen 提交于
      The current debug trap handling code does a number of things that are
      illegal according to the AVR32 Architecture manual. Most importantly,
      it may try to schedule from Debug Mode, thus clearing the D bit, which
      can lead to "undefined behaviour".
      
      It seems like this works in most cases, but several people have
      observed somewhat unstable behaviour when debugging programs,
      including soft lockups. So there's definitely something which is not
      right with the existing code.
      
      The new code will never schedule from Debug mode, it will always exit
      Debug mode with a "retd" instruction, and if something not running in
      Debug mode needs to do something debug-related (like doing a single
      step), it will enter debug mode through a "breakpoint" instruction.
      The monitor code will then return directly to user space, bypassing
      its own saved registers if necessary (since we don't actually care
      about the trapped context, only the one that came before.)
      
      This adds three instructions to the common exception handling code,
      including one branch. It does not touch super-hot paths like the TLB
      miss handler.
      Signed-off-by: NHaavard Skinnemoen <hskinnemoen@atmel.com>
      2507bc13
  3. 27 4月, 2007 2 次提交
    • H
      [AVR32] Clean up exception handling code · 623b0355
      Haavard Skinnemoen 提交于
        * Use generic BUG() handling
        * Remove some useless debug statements
        * Use a common function _exception() to send signals or oops when
          an exception can't be handled. This makes sure init doesn't
          enter an infinite exception loop as well. Borrowed from powerpc.
        * Add some basic exception tracing support to the page fault code.
        * Rework dump_stack(), show_regs() and friends and move everything
          into process.c
        * Print information about configuration options and chip type when
          oopsing
      Signed-off-by: NHaavard Skinnemoen <hskinnemoen@atmel.com>
      623b0355
    • H
      [AVR32] Clean up cpu identification and add features bitmap · 3b328c98
      Haavard Skinnemoen 提交于
      Clean up the cpu identification code, using definitions from
      <asm/sysreg.h> instead of hardcoded constants. Also, add a features
      bitmap to struct avr32_cpuinfo to allow other code to make decisions
      based upon what the running cpu is actually capable of.
      Signed-off-by: NHaavard Skinnemoen <hskinnemoen@atmel.com>
      3b328c98
  4. 26 9月, 2006 1 次提交