1. 24 10月, 2006 1 次提交
  2. 23 10月, 2006 3 次提交
  3. 18 10月, 2006 1 次提交
  4. 10 10月, 2006 2 次提交
  5. 06 10月, 2006 2 次提交
  6. 04 10月, 2006 4 次提交
  7. 28 9月, 2006 1 次提交
    • P
      [POWERPC] Create a "wrapper" script and use it in arch/powerpc/boot · 2bf11819
      Paul Mackerras 提交于
      This puts the knowledge of how to create various sorts of zImage
      wrappers into a script called "wrapper" that could be used outside of
      the kernel tree.  This changes arch/powerpc/boot so it first builds
      the files that the wrapper script needs, then runs it to create
      whatever flavours of zImage are required.
      
      This version does uImages as well.  The zImage names are changed
      slightly; zImage.pseries is the one with the PT_NOTE program header
      entry added, and zImage.pmac is the one without.  If the
      zImage.pseries gets made, it will also get hardlinked to zImage;
      otherwise, if zImage.pmac is made, it gets hardlinked to zImage.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      2bf11819
  8. 22 9月, 2006 2 次提交
    • V
      POWERPC: Bring the fs_no calculation to the relevant SoC enumeration · 611a15af
      Vitaly Bordug 提交于
      The fs_no mean used to be fs_enet driver driven, hence it was an
      enumeration across all the possible fs_enet "users" in the SoC. Now, with
      QE on the pipeline, and to make DTS descriptions more clear, fs_no features
      relevant SoC part number, with additional field to describe the SoC type.
      
      Another reason for that is now not only fs_enet is going to utilize those
      stuff. There might be UART, HLDC, and even USB, so to prevent confusion and
      be ready for upcoming OF_device transfer, fs_enet and cpm_uart drivers were
      updated in that concern, as well as the relevant DTS.
      Signed-off-by: NVitaly Bordug <vbordug@ru.mvista.com>
      611a15af
    • V
      POWERPC: Add support for the mpc8560 eval board · 902f392d
      Vitaly Bordug 提交于
      This makes the 8560 evaluation board fully supported under arch/powerpc,
      as the first board with CPM2 SoC peripherals. The brand new devicetree
      nodes are introduced (intending to be a subset of the QuiccEngine-equipped
      models, with dts sources placed into the kernel according to the new convention.
      
      Assuming all the preceding stuff applied (PAL+fs_enet related+ CPM_UART
      update), the both TSEC eth ,FCC Eths, and both SCC UARTs are
      working. The relevant drivers are still capable to drive users in ppc,
      which was verified with 8272ADS (SCC uart+FCC eth).
      
      This is also verified on mpc8540 and actually make it work (PCI stuff
      working as well)
      Signed-off-by: NVitaly Bordug <vbordug@ru.mvista.com>
      902f392d
  9. 20 9月, 2006 1 次提交
  10. 14 9月, 2006 1 次提交
  11. 30 8月, 2006 2 次提交
  12. 23 8月, 2006 2 次提交
  13. 18 8月, 2006 2 次提交
  14. 08 8月, 2006 1 次提交
  15. 07 7月, 2006 1 次提交
  16. 23 6月, 2006 1 次提交
    • R
      [PATCH] zlib_inflate: Upgrade library code to a recent version · 4f3865fb
      Richard Purdie 提交于
      Upgrade the zlib_inflate implementation in the kernel from a patched
      version 1.1.3/4 to a patched 1.2.3.
      
      The code in the kernel is about seven years old and I noticed that the
      external zlib library's inflate performance was significantly faster (~50%)
      than the code in the kernel on ARM (and faster again on x86_32).
      
      For comparison the newer deflate code is 20% slower on ARM and 50% slower
      on x86_32 but gives an approx 1% compression ratio improvement.  I don't
      consider this to be an improvement for kernel use so have no plans to
      change the zlib_deflate code.
      
      Various changes have been made to the zlib code in the kernel, the most
      significant being the extra functions/flush option used by ppp_deflate.
      This update reimplements the features PPP needs to ensure it continues to
      work.
      
      This code has been tested on ARM under both JFFS2 (with zlib compression
      enabled) and ppp_deflate and on x86_32.  JFFS2 sees an approx.  10% real
      world file read speed improvement.
      
      This patch also removes ZLIB_VERSION as it no longer has a correct value.
      We don't need version checks anyway as the kernel's module handling will
      take care of that for us.  This removal is also more in keeping with the
      zlib author's wishes (http://www.zlib.net/zlib_faq.html#faq24) and I've
      added something to the zlib.h header to note its a modified version.
      Signed-off-by: NRichard Purdie <rpurdie@rpsys.net>
      Acked-by: NJoern Engel <joern@wh.fh-wedel.de>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      4f3865fb
  17. 15 6月, 2006 1 次提交
  18. 16 3月, 2006 1 次提交
  19. 10 2月, 2006 1 次提交
  20. 07 2月, 2006 1 次提交
  21. 15 1月, 2006 1 次提交
  22. 14 1月, 2006 2 次提交
    • P
      powerpc: Avoid unaligned loads and stores in boot memcpy code · b4e7de0f
      Paul Mackerras 提交于
      The 601 processor will generate an alignment exception for accesses
      which cross a page boundary.  In the boot wrapper code, OF is still
      handling all exceptions, and it doesn't have an alignment exception
      handler that emulates the instruction and continues.
      
      This changes the memcpy and memmove routines in the boot wrapper to
      avoid doing unaligned accesses.  If the source and destination are
      misaligned with respect to each other, we just copy one byte at a
      time.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      b4e7de0f
    • P
      powerpc: Make COFF zImages for old 32-bit powermacs · 66a45dd3
      Paul Mackerras 提交于
      This adds code to build zImage.coff and/or zImage.initrd.coff when
      CONFIG_PPC32 and CONFIG_PPC_PMAC are defined.  It also restructures
      the OF client code and adds some workarounds for OF quirks on the
      older machines.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      66a45dd3
  23. 11 1月, 2006 2 次提交
  24. 09 1月, 2006 2 次提交
  25. 18 11月, 2005 1 次提交
  26. 16 11月, 2005 1 次提交