28 Oct, 2010

1 commit


27 Oct, 2010

1 commit

  • 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
     

15 Jun, 2009

1 commit


04 Apr, 2009

1 commit

  • According to the doc/feature-removal-schedule.txt, the "autoscr"
    command will be replaced by the "source" command in approximately 6
    months from now.

    This patch prepares this change and starts a 6 month transition
    period as follows:

    - The new "source" command has been added, which implements exactly
    the same functionlaity as the old "autoscr" command before
    - The old "autoscr" command name is kept as an alias for compatibility
    - Command sequences, script files atc. have been adapted to use the
    new "source" command
    - Related environment variables ("autoscript", "autoscript_uname")
    have *not* been adapted yet; these will be renamed resp. removed in
    a separate patch when the support for the "autoscr" command get's
    finally dropped.

    Signed-off-by: Wolfgang Denk

    Wolfgang Denk
     

31 Mar, 2009

1 commit


29 Mar, 2009

1 commit


19 Oct, 2008

1 commit


11 Sep, 2008

2 commits


05 Jun, 2008

1 commit

  • The U-boot DM9000x driver contains a compile time bus-width definition for
    the databus connected to the network controller.

    This compile check makes the code unclear, inflexible and is unneccessary.
    It can be asked to the network controller what its bus-width is by reading bits
    6 and 7 of the interrupt status register.

    The linux kernel already uses a runtime mechanism to determine this bus-width,
    so the implementation below looks somewhat like that implementation.

    This change has been tested with DM9000A, DM9000E, DM9000EP.

    Signed-off-by: Remy Bohmer
    Signed-off-by: Ben Warren

    Remy Bohmer
     

10 Jul, 2007

1 commit


05 Jul, 2007

1 commit


04 Apr, 2005

1 commit


02 Aug, 2004

1 commit

  • * Patch by Sascha Hauer, 28 Jun:
    - add generic support for Motorola i.MX architecture
    - add support for mx1ads, mx1fs2 and scb9328 boards

    * Patches by Marc Leeman, 23 Jul 2004:
    - Add define for the PCI/Memory Buffer Configuration Register
    - corrected comments in cpu/mpc824x/cpu_init.c

    * Add support for multiple serial interfaces
    (for example to allow modem dial-in / dial-out)

    wdenk