1. 05 3月, 2012 12 次提交
  2. 07 2月, 2012 1 次提交
    • A
      m68k: Add shared bit to Coldfire kernel page entries · 57e00098
      Alexander Stein 提交于
      We had problems accessing our NOR flash trough mtd. The system always got
      stuck at attaching UBI using ubiattach if booted from NFS or after mounting
      squashfs as rootfs directly from NOR flash.
      After some testing of the new changes introduced from v3.2-rc1 to v3.2-rc7
      we had to apply the following patch to get mtd working again.
      
      [gerg: The problem was ultimately caused by allocated kernel pages not having
      the shared (SG) bit set. Without the SG bit set the MMU will look for page
      matches incorporating the ASID as well. Things like module regions allocated
      using vmalloc would fault when other processes run. ]
      Signed-off-by: NAlexander Stein <alexander.stein@systec-electronic.com>
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      57e00098
  3. 22 1月, 2012 1 次提交
  4. 04 1月, 2012 2 次提交
  5. 30 12月, 2011 21 次提交
  6. 24 12月, 2011 3 次提交
    • G
      m68knommu: remove unused anchor.h include file · 45f9e2cd
      Greg Ungerer 提交于
      The code that used the anchor.h include file has long been removed from
      the kernel. Remove it too.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      45f9e2cd
    • G
      m68k: handle presence of 64bit mul/div instructions cleanly · 84f3fb7a
      Greg Ungerer 提交于
      The traditional 68000 processors and the newer reduced instruction set
      ColdFire processors do not support the 32*32->64 multiply or the 64/32->32
      divide instructions. This is not a difference based on the presence of
      a hardware MMU or not.
      
      Create a new config symbol to mark that a CPU type doesn't support the
      longer multiply/divide instructions. Use this then as a basis for using
      the fast 64bit based divide (in div64.h) and for linking in the extra
      libgcc functions that may be required (mulsi3, divsi3, etc).
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      Acked-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      84f3fb7a
    • G
      m68k: simpler m68k and ColdFire CPU's can use generic csum code · 7f73bafc
      Greg Ungerer 提交于
      We have two implementations of the IP checksuming code for the m68k arch.
      One uses the more advanced instructions available in 68020 and above
      processors, the other uses the simpler instructions available on the
      original 68000 processors and the modern ColdFire processors.
      
      This simpler code is pretty much the same as the generic lib implementation
      of the IP csum functions. So lets just switch over to using that. That
      means we can completely remove the checksum_no.c file, and only have the
      local fast code used for the more complex 68k CPU family members.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      7f73bafc