1. 21 10月, 2008 1 次提交
  2. 10 10月, 2008 2 次提交
  3. 09 10月, 2008 1 次提交
  4. 07 10月, 2008 2 次提交
  5. 02 10月, 2008 1 次提交
  6. 27 9月, 2008 1 次提交
  7. 26 9月, 2008 3 次提交
  8. 22 9月, 2008 1 次提交
  9. 19 9月, 2008 2 次提交
  10. 09 9月, 2008 1 次提交
  11. 27 8月, 2008 2 次提交
  12. 23 8月, 2008 1 次提交
  13. 22 8月, 2008 1 次提交
  14. 09 8月, 2008 3 次提交
  15. 01 8月, 2008 1 次提交
    • P
      Fix rename of at91_nand -> atmel_nand · f6ed6f78
      Pieter du Preez 提交于
      Structs called at91_nand_data where renamed to atmel_nand_data
      and configs called *MTD_NAND_AT91* where renamed to
      *MTD_NAND_ATMEL*. This was unfortunately not done consistently,
      causing NAND chips not being initialised on several ARM boards.
      
      I am aware that the author of the original change did not rename
      MTD_NAND_AT91_BUSWIDTH to MTD_NAND_ATMEL_BUSWIDTH, for example.
      All *MTD_NAND_AT91* where renamed to *MTD_NAND_ATMEL* in order
      to keep naming consistency.
      
      This patch was only tested on a MACH_SAM9_L9260, as this is the
      only ARM board I have to my disposal.
      
      Before this patch:
      
      $ git-ls-files |xargs grep atmel_nand |wc -l
      105
      $ git-ls-files |xargs grep at91_nand |wc -l
      4
      $ git-ls-files |xargs grep MTD_NAND_ATMEL |wc -l
      8
      $ git-ls-files |xargs grep MTD_NAND_AT91 |wc -l
      47
      
      After this patch:
      
      $ git-ls-files |xargs grep atmel_nand |wc -l
      109
      $ git-ls-files |xargs grep at91_nand |wc -l
      0
      $ git-ls-files |xargs grep MTD_NAND_ATMEL |wc -l
      55
      $ git-ls-files |xargs grep MTD_NAND_AT91 |wc -l
      0
      Signed-off-by: NPieter du Preez <pdupreez@gmail.com>
      Signed-off-by: NDavid Woodhouse <David.Woodhouse@intel.com>
      f6ed6f78
  16. 27 7月, 2008 1 次提交
  17. 10 7月, 2008 2 次提交
  18. 08 7月, 2008 2 次提交
  19. 05 7月, 2008 5 次提交
    • J
      i.MX27: Adding PCM038 platform support · 7e5e9f54
      Juergen Beisert 提交于
      This patch adds support for the phyCORE-i.MX27 cpu module (aka pcm038).
      It is as generic as possible in order to support any kind of baseboard.
      
      Note: This CPU module implementation can't work without a baseboard
      support. Baseboard support can be added by the PCM-970 (included in
      this patch stack) or any custom variant.
      Signed-off-by: NJuergen Beisert <j.beisert@pengutronix.de>
      7e5e9f54
    • J
      i.MX27: Add ADS platform support · 80eedae6
      Juergen Beisert 提交于
      This patch adds basic support for the Freescale MX27ADS reference board.
      Currently only a serial console can be used.
      Signed-off-by: NJuergen Beisert <j.beisert@pengutronix.de>
      80eedae6
    • D
      MX3: Add basic support for LogicPD i.MX31 LiteKit · 9a4cd7a5
      Daniel Mack 提交于
      This patch adds basic support for i.MX31 LiteKit by LogicPD.
      With printascii() in kernel/printk.c, it boots right into the
      rootfs-panic.
      
      Note: This is a modified version of Daniel's patch to fit into this patch
      stack.
      
      > On 09.06.2008, at 17:26, Russell King - ARM Linux wrote:
      >
      > > I would much prefer it if board specific includes were included by the
      > > code which needs them rather than in asm/arch/hardware.h.  With the
      > > device model, drivers shouldn't need to include any board specific
      > > includes - only the board specific C file should need it.
      >
      > The new version of this patch (#5102) has been uploaded to the patch
      > tracker this morning.
      Signed-off-by: NDaniel Mack <daniel@caiaq.de>
      
      -- 
       arch/arm/configs/mx31litekit_defconfig    | 1100 ++++++++++++++++++++++++++++++
       arch/arm/mach-mx3/Kconfig                 |    7 
       arch/arm/mach-mx3/Makefile                |    1 
       arch/arm/mach-mx3/mx31lite.c              |   96 ++
       include/asm-arm/arch-mxc/board-mx31lite.h |   38 +
       include/asm-arm/arch-mxc/debug-macro.S    |    3 
       6 files changed, 1245 insertions(+)
      9a4cd7a5
    • S
      MX31: add basic pcm037 board support · ce8ffef0
      Sascha Hauer 提交于
      This patch adds basic board support for phytecs pmc037 board.
      Signed-off-by: NSascha Hauer <s.hauer@pengutronix.de>
      ce8ffef0
    • J
      i.MX3: Add a basic default config for the imx31ads (reference only) · 1b53218b
      Juergen Beisert 提交于
      Currently there is a mx31ads BSP file in the kernel, but no default
      config file.
      
      This patch adds a basic default config for the imx31ads but it is for test
      purposes only to ensure the i.MX2 patch stack doesn't break the i.MX3.
      
      Note: For reference only. This configuration is untested as I have
      no access to an mx31ads.
      Signed-off-by: NJuergen Beisert <j.beisert@pengutronix.de>
      1b53218b
  20. 03 7月, 2008 7 次提交