1. 18 Nov, 2003 2 commits
  2. 21 Oct, 2003 1 commit
  3. 14 Oct, 2003 2 commits
    • Nicolas Pitre's avatar
      [ARM PATCH] 1678/1: correct and better do_div() implementation for ARM · 3eb64c82
      Nicolas Pitre authored
      Patch from Nicolas Pitre
      
      Here's a rewrite of the ARM do_div() implementation.  It is much
      faster and smarter than the current code, and it also takes
      advantage of ARMv5+ instructions when target processor allows it.
      
      The current code also deserves to be killed ASAP since it overflows
      and fails to compute correct values in many cases.  For example:
      
      	u64 n = 2200000001;
      	u32 x = 2200000000;
      	u32 r = do_div(n, x);
      
      This currently returns n = 41 and r = 46829569 which is obviously bad.
      
      Another failing example is n=15000000000000000000 and x=3000000000.
      3eb64c82
    • Marc Singer's avatar
      [ARM] Add ARMv4T cache support for decompressor · 24d4f462
      Marc Singer authored
      Patch from Marc Singer
      
      Add generic ARMv4T ID entry, remove ARM920 specific ID cache type
      entry.
      24d4f462
  4. 13 Oct, 2003 15 commits
  5. 12 Oct, 2003 6 commits
  6. 13 Oct, 2003 1 commit
  7. 12 Oct, 2003 3 commits
  8. 11 Oct, 2003 10 commits