25 Jan, 2014

1 commit


05 Nov, 2013

2 commits


24 Jul, 2013

1 commit


21 Jun, 2012

1 commit


20 Apr, 2012

1 commit

  • $ 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: Marek Vasut
    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: Anatolij Gustschin
    Acked-by: Nobuhiro Iwamatsu

    Marek Vasut
     

12 Dec, 2011

1 commit

  • 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: Anatolij Gustschin

    Anatolij Gustschin
     

16 Oct, 2011

1 commit


05 Aug, 2011

1 commit


28 Jul, 2011

2 commits


28 Apr, 2011

1 commit


26 Apr, 2011

1 commit


22 Mar, 2011

1 commit

  • 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: Heiko Schocher
    cc: Wolfgang Denk
    cc: Werner Pfister
    cc: Detlev Zundel

    Heiko Schocher
     

19 Jan, 2011

1 commit

  • 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
    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: Heiko Schocher
    Signed-off-by: Stefan Roese
    Acked-by: Detlev Zundel
    cc: Wolfgang Denk
    cc: Stefan Roese
    cc: Werner Pfister
    cc: Detlev Zundel

    Heiko Schocher
     

27 Oct, 2010

2 commits

  • 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 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: Wolfgang Denk
    Acked-by: Kumar Gala

    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: Wolfgang Denk
    Cc: Denis Peter
    Cc: Martin Winistoerfer
    Acked-by: Kumar Gala

    Wolfgang Denk
     

19 Oct, 2010

3 commits

  • 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: Peter Tyser

    Peter Tyser
     
  • 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: Wolfgang Denk

    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: Wolfgang Denk

    Wolfgang Denk
     

24 Sep, 2009

1 commit


10 Aug, 2009

1 commit


20 Jul, 2009

1 commit


15 Jun, 2009

2 commits


05 Apr, 2009

1 commit


21 Mar, 2009

1 commit