1. 05 12月, 2016 1 次提交
  2. 29 9月, 2014 1 次提交
  3. 29 4月, 2013 1 次提交
  4. 17 7月, 2012 1 次提交
  5. 16 7月, 2012 4 次提交
    • G
      m68knommu: platform support for 8390 based ethernet used on some boards · 8b1e5a06
      Greg Ungerer 提交于
      Quite a few of Freescale's older ColdFire development boards used an NS8390
      based ethernet interface. Add a platform definition for the resources used
      by these devices so we can use it on these boards.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      8b1e5a06
    • S
      m68knommu: Add support for the Coldfire m5441x. · bea8bcb1
      Steven King 提交于
      Add support for the Coldfire 5441x (54410/54415/54416/54417/54418).  Currently
      we only support noMMU mode.  It requires the PIT patch posted previously as it
      uses the PIT instead of the dma timer as a clock source so we can get all that
      GENERIC_CLOCKEVENTS goodness.  It also adds some simple clk definitions and
      very simple minded power management.  The gpio code is tweeked and some
      additional devices are added to devices.c.  The Makefile uses -mv4e as
      apparently, the only difference a v4m (m5441x) and a v4e is the later has a
      FPU, which I don't think should matter to us in the kernel.
      Signed-off-by: NSteven King <sfking@fdwdc.com>
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      bea8bcb1
    • S
      m68knommu: Add support for the Coldfire 5251/5253 · 04e037aa
      Steven King 提交于
      Basic support for the Coldfire 5251/5253.
      Signed-off-by: NSteven king <sfking@fdwdc.com>
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      04e037aa
    • S
      m68knommu: refactor Coldfire GPIO not to require GPIOLIB, eliminate mcf_gpio_chips. · eac57949
      Steven King 提交于
      If we're not connecting external GPIO extenders via i2c or spi or whatever, we
      probably don't need GPIOLIB.  If we provide an alternate implementation of
      the GPIOLIB functions to use when only on-chip GPIO is needed, we can change
      ARCH_REQUIRE_GPIOLIB to ARCH_WANTS_OPTIONAL_GPIOLIB so that GPIOLIB becomes
      optional.
      
      The downside is that in the GPIOLIB=n case, we lose all error checking done by
      gpiolib, ie multiply allocating the gpio, free'ing gpio etc., so that the
      only checking that can be done is if we reference a gpio on an external part.
      Targets that need the extra error checking can still select GPIOLIB=y.
      
      For the case where GPIOLIB=y, we can simplify the table of gpio chips to use a
      single chip, eliminating the tables of chips in the 5xxx.c files.  The
      original motivation for the definition of multiple chips was to match the way
      many of the Coldfire variants defined their gpio as a spare array in memory.
      However, all this really gains us is some error checking when we request a
      gpio, gpiolib can check that it doesn't fall in one of the holes.  If thats
      important, I think we can still come up with a better way of accomplishing
      that.
      
      Also in this patch is some general cleanup and reorganizing of the gpio header
      files (I'm sure I must have had a reason why I sometimes used a prefix of
      mcf_gpio and other times mcfgpio but for the life of me I can't think of it
      now).
      Signed-off-by: NSteven King <sfking@fdwdc.com>
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      eac57949
  6. 20 5月, 2012 11 次提交
  7. 05 3月, 2012 3 次提交
  8. 25 3月, 2011 1 次提交
    • G
      m68k: merge m68k and m68knommu arch directories · 66d857b0
      Greg Ungerer 提交于
      There is a lot of common code that could be shared between the m68k
      and m68knommu arch branches. It makes sense to merge the two branches
      into a single directory structure so that we can more easily share
      that common code.
      
      This is a brute force merge, based on a script from Stephen King
      <sfking@fdwdc.com>, which was originally written by Arnd Bergmann
      <arnd@arndb.de>.
      
      > The script was inspired by the script Sam Ravnborg used to merge the
      > includes from m68knommu. For those files common to both arches but
      > differing in content, the m68k version of the file is renamed to
      > <file>_mm.<ext> and the m68knommu version of the file is moved into the
      > corresponding m68k directory and renamed <file>_no.<ext> and a small
      > wrapper file <file>.<ext> is used to select between the two version. Files
      > that are common to both but don't differ are removed from the m68knommu
      > tree and files and directories that are unique to the m68knommu tree are
      > moved to the m68k tree. Finally, the arch/m68knommu tree is removed.
      >
      > To select between the the versions of the files, the wrapper uses
      >
      > #ifdef CONFIG_MMU
      > #include <file>_mm.<ext>
      > #else
      > #include <file>_no.<ext>
      > #endif
      
      On top of this file merge I have done a simplistic merge of m68k and
      m68knommu Kconfig, which primarily attempts to keep existing options and
      menus in place. Other than a handful of options being moved it produces
      identical .config outputs on m68k and m68knommu targets I tested it on.
      
      With this in place there is now quite a bit of scope for merge cleanups
      in future patches.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      66d857b0
  9. 05 1月, 2011 2 次提交
    • G
      m68knommu: make cache push code ColdFire generic · d475e3e4
      Greg Ungerer 提交于
      Currently the code to push cache lines is only available to version 4
      cores. Version 3 cores may also need to use this if we support copy-
      back caches on them. Move this code to make it more generic, and
      useful for all version ColdFire cores.
      
      With this in place we can now have a single cache_flush_all() code
      path that does all the right things on all version cores.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      d475e3e4
    • G
      m68knommu: make Coldfire 548x support more generic · 5b2e6555
      Greg Ungerer 提交于
      The ColdFire 547x family of processors is very similar to the ColdFire
      548x series. Almost all of the support for them is the same. Make the
      code supporting the 548x more gneric, so it will be capable of
      supporting both families.
      
      For the most part this is a renaming excerise to make the support
      code more obviously apply to both families.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      5b2e6555
  10. 21 10月, 2010 2 次提交
  11. 16 9月, 2009 5 次提交
  12. 10 9月, 2009 1 次提交
  13. 24 3月, 2009 1 次提交
  14. 23 7月, 2008 1 次提交
  15. 15 2月, 2008 1 次提交
  16. 01 2月, 2008 1 次提交
  17. 16 10月, 2007 1 次提交
  18. 20 7月, 2007 1 次提交
  19. 26 6月, 2006 1 次提交