1. 05 11月, 2013 1 次提交
  2. 24 7月, 2013 1 次提交
  3. 21 6月, 2012 1 次提交
  4. 20 4月, 2012 1 次提交
    • M
      CMD: Drop CONFIG_CMD_DFL, it's not used · d5f6a15a
      Marek Vasut 提交于
      $ git grep CMD_DFL
      board/atc/ti113x.c:#define CMD_DFLT (PCI_COMMAND_IO|PCI_COMMAND_MEMORY| \
      board/atc/ti113x.c:     pci_writew (s, PCI_COMMAND, CMD_DFLT);
      board/cpc45/pd67290.c:#define CMD_DFLT (PCI_COMMAND_IO|PCI_COMMAND_MEMORY| \
      board/cpc45/pd67290.c:  pci_writew (s, PCI_COMMAND, CMD_DFLT);
      drivers/pcmcia/i82365.c:#define CMD_DFLT (PCI_COMMAND_IO|PCI_COMMAND_MEMORY| \
      drivers/pcmcia/i82365.c:        pci_writew (s, PCI_COMMAND, CMD_DFLT);
      include/configs/MBX.h:#define CONFIG_CMD_DFL
      include/configs/MigoR.h:#define CONFIG_CMD_DFL
      include/configs/digsy_mtc.h:#define CONFIG_CMD_DFL
      include/configs/ms7722se.h:#define CONFIG_CMD_DFL
      include/configs/ms7750se.h:#define CONFIG_CMD_DFL
      include/configs/r2dplus.h:#define CONFIG_CMD_DFL
      include/configs/sh7757lcr.h:#define CONFIG_CMD_DFL
      include/configs/sh7785lcr.h:#define CONFIG_CMD_DFL
      Signed-off-by: NMarek Vasut <marex@denx.de>
      Cc: Pfister_Werner@intercontrol.de
      Cc: iwamatsu@nigauri.org
      Cc: nobuhiro.iwamatsu.yj@renesas.com
      Cc: vapier@gentoo.org
      Cc: wd@denx.de
      Cc: yoshihiro.shimoda.uh@renesas.com
      Acked-by: NAnatolij Gustschin <agust@denx.de>
      Acked-by: NNobuhiro Iwamatsu <iwamatsu@nigauri.org>
      d5f6a15a
  5. 12 12月, 2011 1 次提交
    • A
      mpc5200: digsy_mtc: Fix extension board detection · 02ab0970
      Anatolij Gustschin 提交于
      Switch to extension board detection using pci_find_device()
      instead of detecting by i2c access to EEPROM device on
      extension board.
      
      This is a cleaner detection method since EEPROM addresses
      can be different on different board revisions. This also
      avoids "i2c_read: failed to address chip" error messages
      in the boot log on boards without extension board which
      may confuse users.
      Signed-off-by: NAnatolij Gustschin <agust@denx.de>
      02ab0970
  6. 16 10月, 2011 1 次提交
  7. 05 8月, 2011 1 次提交
  8. 28 7月, 2011 2 次提交
  9. 28 4月, 2011 1 次提交
  10. 26 4月, 2011 1 次提交
  11. 22 3月, 2011 1 次提交
    • H
      mpc52xx, digsy_mtc_rev5: Fix Linux crash, if no Flash in bank 2 · 927d2cea
      Heiko Schocher 提交于
      If no Flash is connected to cs1, Linux crashes, because
      reg entries are not correct adapted.
      
      Following fix is needed:
      - swap base addresses in CONFIG_SYS_FLASH_BANKS_LIST, as
        flash bank 1 is on chipselect 0 and flash bank 2 on
        chipselect 1
      - call fdt_fixup_nor_flash_size() from ft_board_setup()
      Signed-off-by: NHeiko Schocher <hs@denx.de>
      cc: Wolfgang Denk <hs@denx.de>
      cc: Werner Pfister <Pfister_Werner@intercontrol.de>
      cc: Detlev Zundel <dzu@denx.de>
      927d2cea
  12. 19 1月, 2011 1 次提交
    • H
      mpc5200, digsy_mtc: add support for rev5 board version · 466f0137
      Heiko Schocher 提交于
      difference to previous board version:
      - M29W128GH flash from Numonyx
      - SDRAM ISSI IS45S16800 (Option A2 105°C)
      - rev5 uses RTC RV-3029-C2
      - update cs0 and cs1 baseaddr and length
        depending on the detected flash size.
      - added Werner Pfister <Pfister_Werner@intercontrol.de>
        as maintainer for the digsy board variants
      - As the M29W128GH needs a special flash_cmd_reset()
        document that in the new file doc/README.cfi.
      - move "#endif /* CONFIG_CMD_IDE */" to the right place
      - remove LOWBOOT config option for digsy_mtc and digsy_mtc_rev5
        boards
      - change doc/README.cfi as Stefan Roese suggested
      Signed-off-by: NHeiko Schocher <hs@denx.de>
      Signed-off-by: NStefan Roese <sr@denx.de>
      Acked-by: NDetlev Zundel <dzu@denx.de>
      cc: Wolfgang Denk <hs@denx.de>
      cc: Stefan Roese <sr@denx.de>
      cc: Werner Pfister <Pfister_Werner@intercontrol.de>
      cc: Detlev Zundel <dzu@denx.de>
      466f0137
  13. 27 10月, 2010 2 次提交
    • W
      Replace CONFIG_SYS_GBL_DATA_SIZE by auto-generated value · 25ddd1fb
      Wolfgang Denk 提交于
      CONFIG_SYS_GBL_DATA_SIZE has always been just a bad workarond for not
      being able to use "sizeof(struct global_data)" in assembler files.
      Recent experience has shown that manual synchronization is not
      reliable enough.  This patch renames CONFIG_SYS_GBL_DATA_SIZE into
      GENERATED_GBL_DATA_SIZE which gets automatically generated by the
      asm-offsets tool.  In the result, all definitions of this value can be
      deleted from the board config files.  We have to make sure that all
      files that reference such data include the new <asm-offsets.h> file.
      
      No other changes have been done yet, but it is obvious that similar
      changes / simplifications can be done for other, related macro
      definitions as well.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Acked-by: NKumar Gala <galak@kernel.crashing.org>
      25ddd1fb
    • W
      Rename CONFIG_SYS_INIT_RAM_END into CONFIG_SYS_INIT_RAM_SIZE · 553f0982
      Wolfgang Denk 提交于
      CONFIG_SYS_INIT_RAM_END was a misnomer as it suggests this might be
      some end address; to make the meaning more clear we rename it into
      CONFIG_SYS_INIT_RAM_SIZE
      
      No other code changes are performed in this patch, only minor editing
      of white space (due to the changed length) and the comments was done,
      where noticed.
      
      Note that the code for the PATI and cmi_mpc5xx board configurations
      looks seriously broken.  Last known maintainers on Cc:
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Cc: Denis Peter <d.peter@mpl.ch>
      Cc: Martin Winistoerfer <martinwinistoerfer@gmx.ch>
      Acked-by: NKumar Gala <galak@kernel.crashing.org>
      553f0982
  14. 19 10月, 2010 3 次提交
    • P
      powerpc: Cleanup BOOTFLAG_* references · d98b0523
      Peter Tyser 提交于
      Now that warm booting is not supported, there isn't a need for the
      BOOTFLAG_COLD and BOOTFLAG_WARM defines, so remove them.
      
      Note that this change makes the board info bd_bootflags field useless.
      It will always be set to 0, but we leave it around so that we don't
      break the board info structure that some OSes are expecting to be passed
      from U-Boot.
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      d98b0523
    • W
      Makefile: move all Power Architecture boards into boards.cfg · 2ae18241
      Wolfgang Denk 提交于
      Clean up Makefile, and drop a lot of the config.mk files on the way.
      
      We now also automatically pick all boards that are listed in
      boards.cfg (and with all configurations), so we can drop the redundant
      entries from MAKEALL to avoid building these twice.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      2ae18241
    • W
      Rename TEXT_BASE into CONFIG_SYS_TEXT_BASE · 14d0a02a
      Wolfgang Denk 提交于
      The change is currently needed to be able to remove the board
      configuration scripting from the top level Makefile and replace it by
      a simple, table driven script.
      
      Moving this configuration setting into the "CONFIG_*" name space is
      also desirable because it is needed if we ever should move forward to
      a Kconfig driven configuration system.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      14d0a02a
  15. 03 10月, 2009 1 次提交
  16. 24 9月, 2009 1 次提交
  17. 10 8月, 2009 1 次提交
  18. 20 7月, 2009 1 次提交
  19. 15 6月, 2009 2 次提交
  20. 05 4月, 2009 1 次提交
  21. 21 3月, 2009 1 次提交