23 Jul, 2013

1 commit


08 Jun, 2013

1 commit

  • The pci_indirect.c file is always compiled when
    CONFIG_PCI is defined although the indirect PCI
    bridge support is not needed by every board.

    Introduce a new CONFIG_PCI_INDIRECT_BRIDGE
    config option and only compile indirect PCI
    bridge support if this options is enabled.

    Also add the new option into the configuration
    files of the boards which needs that.

    Compile tested for powerpc, x86, arm and nds32.
    MAKEALL results:

    powerpc:
    --------------------- SUMMARY ----------------------------
    Boards compiled: 641
    Boards with warnings but no errors: 2 ( ELPPC MPC8323ERDB )
    ----------------------------------------------------------
    Note: the warnings for ELPPC and MPC8323ERDB are present even
    without the actual patch.

    x86:
    --------------------- SUMMARY ----------------------------
    Boards compiled: 1
    ----------------------------------------------------------

    arm:
    --------------------- SUMMARY ----------------------------
    Boards compiled: 311
    ----------------------------------------------------------

    nds32:
    --------------------- SUMMARY ----------------------------
    Boards compiled: 3
    ----------------------------------------------------------

    Cc: Tom Rini
    Cc: Daniel Schwierzeck
    Signed-off-by: Gabor Juhos

    Gabor Juhos
     

21 Jun, 2012

1 commit


06 Oct, 2011

1 commit


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
     

23 Sep, 2010

2 commits

  • This patch removes the PPC4xx UART driver. Instead the common NS16550
    driver is used, since all PPC4xx SoC's use this peripheral device.

    The file 4xx_uart.c now only implements the UART clock calculation
    function which also sets the SoC internal UART divisors.

    All PPC4xx board config headers are changed to use this common NS16550
    driver now.

    Tested on these boards:
    acadia, canyonlands, katmai, kilauea, sequoia, zeus

    Signed-off-by: Stefan Roese

    Stefan Roese
     
  • This cleanup is done by creating header files for all SoC versions and
    moving the SoC specific defines into these special headers. This way the
    common header ppc405.h and ppc440.h can be cleaned up finally.

    As a part from this cleanup, the GPIO definitions for PPC405EP are
    corrected. The high and low parts of the registers (for example
    CONFIG_SYS_GPIO0_OSRL vs. CONFIG_SYS_GPIO0_OSRH) have been defined in
    the wrong order. This patch now fixes this issue by switching these
    xxxH and xxxL values. This brings the GPIO 405EP port in sync with all
    other PPC4xx ports.

    Signed-off-by: Stefan Roese

    Stefan Roese
     

06 Apr, 2010

1 commit


09 Dec, 2009

1 commit


18 Jul, 2009

1 commit


21 Mar, 2009

1 commit


26 Jan, 2009

1 commit


24 Jan, 2009

1 commit

  • This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and
    changes the default from 8 to 1 for the legacy and the new MTD
    NAND layer. This allows to remove all NAND_MAX_CHIPS definitions
    in the board config files because none of the boards use multi
    chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440
    define

    #define NAND_MAX_CHIPS CONFIG_SYS_MAX_NAND_DEVICE

    but that's bogus and did not work anyhow.

    Signed-off-by: Wolfgang Grandegger
    Signed-off-by: Scott Wood

    Wolfgang Grandegger
     

10 Nov, 2008

1 commit


19 Oct, 2008

1 commit


14 Oct, 2008

1 commit


11 Sep, 2008

2 commits


11 Jul, 2008

1 commit

  • This 2nd patch now removes all UIC mask bit definition. They should be
    generated from the vectors by using the UIC_MASK() macro from now on.
    This way only the vectors need to get defined for new PPC's.

    Also only the really used interrupt vectors are now defined. This makes
    definitions for new PPC versions easier and less error prone.

    Another part of this patch is that the 4xx emac driver got a little
    cleanup, since now the usage of the interrupts is clearer.

    Signed-off-by: Stefan Roese

    Stefan Roese
     

21 May, 2008

1 commit

  • This commit gets rid of a huge amount of silly white-space issues.
    Especially, all sequences of SPACEs followed by TAB characters get
    removed (unless they appear in print statements).

    Also remove all embedded "vim:" and "vi:" statements which hide
    indentation problems.

    Signed-off-by: Wolfgang Denk

    Wolfgang Denk
     

01 Nov, 2007

1 commit


16 Sep, 2007

1 commit

  • This config option sets the default for the progress information
    output behavior that can also be configured through the 'quiet'
    environment variable.

    The legacy NAND code does not print the current progress info
    on the console. So this option is for backward compatibility for
    units that are in the field and where setting the quiet variable
    is not an option. With CFG_NAND_QUIET set to '1' the console
    progress info is turned off. This can still be overwritten
    through the environment variable.

    Signed-off-by: Matthias Fuchs

    Matthias Fuchs
     

16 Aug, 2007

1 commit


10 Jul, 2007

1 commit


09 Jul, 2007

2 commits


06 Mar, 2006

2 commits


07 Feb, 2006

1 commit


08 Oct, 2005

1 commit


30 Sep, 2005

1 commit


23 Sep, 2005

1 commit


22 Sep, 2005

1 commit


17 Dec, 2004

1 commit