1. 14 6月, 2016 1 次提交
  2. 13 1月, 2016 1 次提交
  3. 18 4月, 2014 1 次提交
  4. 12 1月, 2014 1 次提交
  5. 04 9月, 2013 1 次提交
    • C
      tile: remove support for TILE64 · d7c96611
      Chris Metcalf 提交于
      This chip is no longer being actively developed for (it was superceded
      by the TILEPro64 in 2008), and in any case the existing compiler and
      toolchain in the community do not support it.  It's unlikely that the
      kernel works with TILE64 at this point as the configuration has not been
      tested in years.  The support is also awkward as it requires maintaining
      a significant number of ifdefs.  So, just remove it altogether.
      Signed-off-by: NChris Metcalf <cmetcalf@tilera.com>
      d7c96611
  6. 29 3月, 2012 1 次提交
  7. 02 3月, 2011 1 次提交
  8. 16 10月, 2010 2 次提交
    • C
      arch/tile: parameterize system PLs to support KVM port · a78c942d
      Chris Metcalf 提交于
      While not a port to KVM (yet), this change modifies the kernel
      to be able to build either at PL1 or at PL2 with a suitable
      config switch.  Pushing up this change avoids handling branch
      merge issues going forward with the KVM work.
      Signed-off-by: NChris Metcalf <cmetcalf@tilera.com>
      a78c942d
    • C
      arch/tile: add Tilera's <arch/sim.h> header as an open-source header · bf65e440
      Chris Metcalf 提交于
      This change adds one of the Tilera standard <arch> headers to the set
      of headers shipped with Linux.  The <arch/sim.h> header provides
      methods for programmatically interacting with the Tilera simulator.
      
      The current <arch/sim.h> provides inline assembly for the _sim_syscall
      function, so the declaration and definition previously provided
      manually in Linux are no longer needed.  We now use the standard
      sim_validate_lines_evicted() method from <arch/sim.h> rather than
      rolling our own direct call to sim_syscall().
      Signed-off-by: NChris Metcalf <cmetcalf@tilera.com>
      bf65e440
  9. 15 10月, 2010 1 次提交
  10. 07 7月, 2010 2 次提交
    • C
      arch/tile: catch up on various minor cleanups. · ef06f55a
      Chris Metcalf 提交于
      None of these changes fix any actual bugs, but are just various cleanups
      that fell out along the way.  In particular, some unused #defines and
      includes are removed, PREFETCH_STRIDE is added (the default is right for
      our shipping chips, but wrong for our next generation), our tile-specific
      prefetching code is removed so the (identical) generic prefetching code
      can be used instead, a comment is fixed to be proper GPL and not just a
      "paste GPL here" token, a "//" comment is converted to "/* */", etc.
      Signed-off-by: NChris Metcalf <cmetcalf@tilera.com>
      Acked-by: NArnd Bergmann <arnd@arndb.de>
      ef06f55a
    • C
      arch/tile: Miscellaneous cleanup changes. · 0707ad30
      Chris Metcalf 提交于
      This commit is primarily changes caused by reviewing "sparse"
      and "checkpatch" output on our sources, so is somewhat noisy, since
      things like "printk() -> pr_err()" (or whatever) throughout the
      codebase tend to get tedious to read.  Rather than trying to tease
      apart precisely which things changed due to which type of code
      review, this commit includes various cleanups in the code:
      
      - sparse: Add declarations in headers for globals.
      - sparse: Fix __user annotations.
      - sparse: Using gfp_t consistently instead of int.
      - sparse: removing functions not actually used.
      - checkpatch: Clean up printk() warnings by using pr_info(), etc.;
        also avoid partial-line printks except in bootup code.
        - checkpatch: Use exposed structs rather than typedefs.
        - checkpatch: Change some C99 comments to C89 comments.
      
      In addition, a couple of minor other changes are rolled in
      to this commit:
      
      - Add support for a "raise" instruction to cause SIGFPE, etc., to be raised.
      - Remove some compat code that is unnecessary when we fully eliminate
        some of the deprecated syscalls from the generic syscall ABI.
      - Update the tile_defconfig to reflect current config contents.
      Signed-off-by: NChris Metcalf <cmetcalf@tilera.com>
      Acked-by: NArnd Bergmann <arnd@arndb.de>
      0707ad30
  11. 05 6月, 2010 1 次提交