]> git.sur5r.net Git - u-boot/log
u-boot
16 years ago[new uImage] Respect autostart setting in linux bootm
Kumar Gala [Thu, 28 Feb 2008 03:51:51 +0000 (21:51 -0600)]
[new uImage] Respect autostart setting in linux bootm

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] Provide ability to restrict region used for boot images
Kumar Gala [Thu, 28 Feb 2008 03:51:50 +0000 (21:51 -0600)]
[new uImage] Provide ability to restrict region used for boot images

Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
to restrict what memory range is used for bootm.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] Use lmb for bootm allocations
Kumar Gala [Thu, 28 Feb 2008 03:51:49 +0000 (21:51 -0600)]
[new uImage] Use lmb for bootm allocations

Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
functions over to using lmb for allocation of the ramdisk, command line
and kernel bd info.

Convert PPC specific fdt_relocate() to use lmb for allocation of the device
tree.

Provided a weak function that board code can call to do additional
lmb reserves if needed.

Also introduce the concept of bootmap_base to specify the offset in
physical memory that the bootmap is located at.  This is used for
allocations of the cmdline, kernel bd, and device tree as they should
be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16 years ago[new uImage] Add autostart flag to bootm_headers structure
Kumar Gala [Thu, 28 Feb 2008 03:51:48 +0000 (21:51 -0600)]
[new uImage] Add autostart flag to bootm_headers structure

The autostart env variable was dropped as part of the initial new uImage
cleanup.  Add it back here so the arch specific code can decide if it
wants to really boot or not.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
Kumar Gala [Thu, 28 Feb 2008 03:51:47 +0000 (21:51 -0600)]
[new uImage] Introduce lmb from linux kernel for memory mgmt of boot images

Introduce the LMB lib used on PPC in the kernel as a clean way to manage
the memory spaces used by various boot images and structures.  This code
will allow us to simplify the code in bootm and its support functions.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16 years ago[new uImage] ppc: Allow boards to specify effective amount of memory
Kumar Gala [Wed, 20 Feb 2008 04:03:47 +0000 (22:03 -0600)]
[new uImage] ppc: Allow boards to specify effective amount of memory

For historical reasons we limited the stack to 256M because some boards
could only map that much via BATS.  However newer boards are capable of
mapping more memory (for example 85xx is capable of doing up to 2G).

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] rework error handling so common functions don't reset
Kumar Gala [Thu, 28 Feb 2008 03:51:46 +0000 (21:51 -0600)]
[new uImage] rework error handling so common functions don't reset

Changed image_get_ramdisk() to just return NULL on error and have
get_ramdisk() propogate that error to the caller.  It's left to the
caller to call do_reset() if it wants to.

Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
to a common location.  In the future we will change get_fdt() and
fdt_relocate() to return success/failure and not call do_reset() at all.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] ppc: Re-order ramdisk/fdt handling sequence
Kumar Gala [Thu, 28 Feb 2008 03:51:45 +0000 (21:51 -0600)]
[new uImage] ppc: Re-order ramdisk/fdt handling sequence

Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
however it does mean we have to go in and fixup the initrd info since
we don't know where it will be.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16 years ago[new uImage] ppc: Determine if we are booting an OF style
Kumar Gala [Thu, 28 Feb 2008 03:51:44 +0000 (21:51 -0600)]
[new uImage] ppc: Determine if we are booting an OF style

If we are bootin OF style than we can skip setting up some things
that are used for the old boot method.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] Don't pass kdb to ramdisk_high since we may not have one
Kumar Gala [Thu, 28 Feb 2008 03:51:43 +0000 (21:51 -0600)]
[new uImage] Don't pass kdb to ramdisk_high since we may not have one

We don't actually need the kdb param as we are just using it to get
bd->bi_memsize which we can get from gd->bd->bi_memsize.  Also, if we
boot via OF we might not actually fill out a kdb.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
Marian Balakowicz [Wed, 27 Feb 2008 10:02:26 +0000 (11:02 +0100)]
[new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled

Dual format image code must properly handle all three FDT passing methods:
- raw FDT blob passed
- FDT blob embedded in the legacy uImage
- FDT blob embedded in the new uImage

This patch enables proper raw FDT handling when no FIT imaeg support
is compiled in. This is a bit tricky as we must dected FIT format even
when FIT uImage handling is not enabled as both FIT uImages and raw FDT
blobs use tha same low level format (libfdt).

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] POWERPC: Add image_get_fdt() routine
Marian Balakowicz [Wed, 27 Feb 2008 10:02:26 +0000 (11:02 +0100)]
[new uImage] POWERPC: Add image_get_fdt() routine

FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
(3) or embedded in the new uImage. For the (2) case embedding image must be
verified before we get FDT from it. This patch factors out legacy image
specific verification routine to the separate helper routine.

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
16 years ago[new uImage] Add image_get_kernel() routine
Marian Balakowicz [Wed, 27 Feb 2008 10:02:07 +0000 (11:02 +0100)]
[new uImage] Add image_get_kernel() routine

Legacy image specific verification is factored out to a separate helper
routine to keep get_kernel() generic and simple.

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
16 years ago[new uImage] Move image verify flag to bootm_headers structure
Marian Balakowicz [Wed, 27 Feb 2008 10:01:04 +0000 (11:01 +0100)]
[new uImage] Move image verify flag to bootm_headers structure

Do not pass image verification flag directly to related routines.
Simplify argument passing and move it to the bootm_header structure which
contains curently processed image specific data and is already being passed
on the argument list.

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
16 years ago[Makefile] Sort COBJS in lib_<arch> Makefiles
Marian Balakowicz [Wed, 27 Feb 2008 10:00:47 +0000 (11:00 +0100)]
[Makefile] Sort COBJS in lib_<arch> Makefiles

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] Optimize gen_get_image() flow control
Marian Balakowicz [Wed, 27 Feb 2008 10:00:47 +0000 (11:00 +0100)]
[new uImage] Optimize gen_get_image() flow control

When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
to do, update its control flow to better reflect that simple case.

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
16 years ago[new uImage] POWERPC: Split get_fdt() into get and relocate routines
Marian Balakowicz [Mon, 4 Feb 2008 07:28:17 +0000 (08:28 +0100)]
[new uImage] POWERPC: Split get_fdt() into get and relocate routines

PPC specific FDT blob handling code is divided into two separate routines:

get_fdt() - find and verify a FDT blob (either raw or image embedded)
fdt_relocate() - move FDT blob to within BOOTMAP if needed

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
16 years ago[new uImage] Add dual format uImage support framework
Marian Balakowicz [Mon, 4 Feb 2008 07:28:09 +0000 (08:28 +0100)]
[new uImage] Add dual format uImage support framework

This patch adds framework for dual format images. Format detection is added
and the bootm controll flow is updated to include cases for new FIT format
uImages.

When the legacy (image_header based) format is detected appropriate
legacy specific handling is invoked. For the new (FIT based) format uImages
dual boot framework has a minial support, that will only print out a
corresponding debug messages. Implementation of the FIT specific handling will
be added in following patches.

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
Marian Balakowicz [Thu, 21 Feb 2008 16:27:49 +0000 (17:27 +0100)]
[new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] Rename and move print_image_hdr() routine
Marian Balakowicz [Thu, 21 Feb 2008 16:27:41 +0000 (17:27 +0100)]
[new uImage] Rename and move print_image_hdr() routine

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
Marian Balakowicz [Thu, 21 Feb 2008 16:20:20 +0000 (17:20 +0100)]
[new uImage] Add fit_parse_conf() and fit_parse_subimage() routines

Introducing routines for parsing new uImage format bootm arguments:
[<addr>]#<conf> - configuration specification
[<addr>]:<subimg> - subimage specification

New format images can contain multiple subimages of the same type. For example
a single new format image file can contain three kernels, two ramdisks and a
couple of FDT blobs. Subimage and configuration specifications are extensions
to bootm (and other image-related commands) arguments' syntax that allow to
specify which particular subimage should be operated on.

Subimage specification is used to denote a particular subimage. Configurations
are a bit more complex -- they are used to define a particualr booting setup,
for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
etc.

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] Add gen_get_image() routine
Marian Balakowicz [Thu, 21 Feb 2008 16:20:19 +0000 (17:20 +0100)]
[new uImage] Add gen_get_image() routine

This routine assures that image (whether legacy or FIT) is not
in a special dataflash storage.

If image address is a dataflash address image is moved to system RAM.

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
16 years ago[new uImage] Pull in libfdt if CONFIG_FIT is enabled
Marian Balakowicz [Thu, 21 Feb 2008 16:20:18 +0000 (17:20 +0100)]
[new uImage] Pull in libfdt if CONFIG_FIT is enabled

New uImage format (Flattened Image Tree) requires libfdt
functionality, print out error message if CONFIG_OF_LIBFDT
is not defined.

New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
This commit turns it on by default.

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
16 years agoMerge branch 'master' of /home/git/u-boot
Marian Balakowicz [Thu, 21 Feb 2008 16:18:01 +0000 (17:18 +0100)]
Merge branch 'master' of /home/git/u-boot

16 years agoFix CPU POST test failure
Yuri Tikhonov [Thu, 21 Feb 2008 10:06:07 +0000 (11:06 +0100)]
Fix CPU POST test failure

The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
This patch just saves the CR value before running the test code, so allowing
it to do anything it wants with CR.

Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
Acked-by: Yuri Tikhonov <yur@emcraft.com>
--

16 years agos3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
Jean-Christophe PLAGNIOL-VILLARD [Sun, 17 Feb 2008 13:15:31 +0000 (14:15 +0100)]
s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16 years agopxa: fix assignment from incompatible pointer type
Jean-Christophe PLAGNIOL-VILLARD [Sun, 17 Feb 2008 13:15:32 +0000 (14:15 +0100)]
pxa: fix assignment from incompatible pointer type

fix mmc_bread function prototype

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16 years agoat91cap9adk: fix implicit declaration of function 'eth_init'
Jean-Christophe PLAGNIOL-VILLARD [Sun, 17 Feb 2008 13:15:30 +0000 (14:15 +0100)]
at91cap9adk: fix implicit declaration of function 'eth_init'

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16 years agoRemove files added by mistake, update CHANGELOG.
Wolfgang Denk [Sun, 17 Feb 2008 14:43:44 +0000 (15:43 +0100)]
Remove files added by mistake, update CHANGELOG.

Signed-off-by: Wolfgang Denk <wd@denx.de>
16 years agoPPC440EPx: Optionally enable second I2C bus
Mike Nuss [Wed, 6 Feb 2008 16:10:11 +0000 (11:10 -0500)]
PPC440EPx: Optionally enable second I2C bus

The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.

Signed-off-by: Mike Nuss <mike@terascala.com>
Cc: Stefan Roese <sr@denx.de>
16 years agoppc4xx: HCU4/5. Cleanup configs
Niklaus Giger [Tue, 5 Feb 2008 09:26:44 +0000 (10:26 +0100)]
ppc4xx: HCU4/5. Cleanup configs

- hcu4.h: Removed define of CONFIG_PPC405GPr
- Corrected phy addresses
- Fix boot variables
- Respect line length of 80 chars

Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
16 years agoppc4xx: HCU4/5. Cleanups
Niklaus Giger [Tue, 5 Feb 2008 10:31:28 +0000 (11:31 +0100)]
ppc4xx: HCU4/5. Cleanups

- Fix some coding style violations.
- Use in/out_u16/32 where appropriate.
- Use register names from ppc405.h.
- Fix trace useage for Lauterbach.
- Remove obsolete generation HCU2.
- Renamed fixed_hcu4_sdram to init_ppc405_sdram.

Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
16 years agoppc4xx: PPC405GPr fix missing register definitions
Niklaus Giger [Tue, 5 Feb 2008 09:26:41 +0000 (10:26 +0100)]
ppc4xx: PPC405GPr fix missing register definitions

Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
16 years agoppc4xx: Beautify configuration files for Sequoia and Korat boards
Larry Johnson [Sat, 19 Jan 2008 02:49:05 +0000 (21:49 -0500)]
ppc4xx: Beautify configuration files for Sequoia and Korat boards

Signed-off-by: Larry Johnson <lrj@acm.org>
16 years agoMerge branch 'master' of git://www.denx.de/git/u-boot-arm
Wolfgang Denk [Fri, 15 Feb 2008 23:42:44 +0000 (00:42 +0100)]
Merge branch 'master' of git://www.denx.de/git/u-boot-arm

16 years agoWipe out assembler warnings while compiling x86 biosemu
Anatolij Gustschin [Fri, 15 Feb 2008 19:09:01 +0000 (20:09 +0100)]
Wipe out assembler warnings while compiling x86 biosemu

This patch tries to get rid of some assembler warnings about
changed .got2 section type while compiling x86 bios emulator
code.

Signed-off-by: Anatolij Gustschin <agust@denx.de>
16 years agoMerge branch '080208_dupint' of git://linux-arm.org/u-boot-armdev
Peter Pearse [Fri, 15 Feb 2008 13:00:54 +0000 (13:00 +0000)]
Merge branch '080208_dupint' of git://linux-arm.org/u-boot-armdev

16 years agoMerge branch '080202_at91rm9200dk' of git://linux-arm.org/u-boot-armdev
Peter Pearse [Fri, 15 Feb 2008 13:00:22 +0000 (13:00 +0000)]
Merge branch '080202_at91rm9200dk' of git://linux-arm.org/u-boot-armdev

16 years agoMerge branch '080131_artila' of git://linux-arm.org/u-boot-armdev
Peter Pearse [Fri, 15 Feb 2008 12:59:56 +0000 (12:59 +0000)]
Merge branch '080131_artila' of git://linux-arm.org/u-boot-armdev

16 years agoMerge branch '080116_at91cap9' of git://linux-arm.org/u-boot-armdev
Peter Pearse [Fri, 15 Feb 2008 12:59:15 +0000 (12:59 +0000)]
Merge branch '080116_at91cap9' of git://linux-arm.org/u-boot-armdev

16 years agoMerge branch '070524_netstar' of git://linux-arm.org/u-boot-armdev
Peter Pearse [Fri, 15 Feb 2008 12:58:10 +0000 (12:58 +0000)]
Merge branch '070524_netstar' of git://linux-arm.org/u-boot-armdev

16 years agoMerge branch 'master' of git+ssh://10.10.0.7/home/wd/git/u-boot/master
Wolfgang Denk [Thu, 14 Feb 2008 23:59:03 +0000 (00:59 +0100)]
Merge branch 'master' of git+ssh://10.10.0.7/home/wd/git/u-boot/master

16 years agoPrepare v1.3.2-rc1 release candidate v1.3.2-rc1
Wolfgang Denk [Thu, 14 Feb 2008 23:57:09 +0000 (00:57 +0100)]
Prepare v1.3.2-rc1 release candidate

16 years agoFix compile warning on lib_ppc/board.c
Anatolij Gustschin [Thu, 14 Feb 2008 23:13:20 +0000 (00:13 +0100)]
Fix compile warning on lib_ppc/board.c

Signed-off-by: Anatolij Gustschin <agust@denx.de>
16 years agoAdd Radeon Mobility 9200 pci device id to the radeon driver
Anatolij Gustschin [Thu, 14 Feb 2008 17:22:04 +0000 (18:22 +0100)]
Add Radeon Mobility 9200 pci device id to the radeon driver

This patch extends PCI device id table of the
radeon driver so that the driver will also support
Radeon Mobility 9200 (M9+) based boards.

Signed-off-by: Anatolij Gustschin <agust@denx.de>
16 years agoExtend ATI Radeon driver to support more video modes
Anatolij Gustschin [Thu, 14 Feb 2008 17:19:50 +0000 (18:19 +0100)]
Extend ATI Radeon driver to support more video modes

Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
800x600, 640x480 at 24, 16 and 8 bpp.

Signed-off-by: Anatolij Gustschin <agust@denx.de>
16 years agoxsengine: fix typo and few coding style
Jean-Christophe PLAGNIOL-VILLARD [Sun, 10 Feb 2008 16:05:20 +0000 (17:05 +0100)]
xsengine: fix typo and few coding style

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16 years agoFix wrong memory limit calculation in memory-test
Guennadi Liakhovetski [Fri, 8 Feb 2008 20:25:58 +0000 (21:25 +0100)]
Fix wrong memory limit calculation in memory-test

If the length of the memory address range passed to the "mtest" command is
not of the form 2^x - 1, not all address lines are tested. This bug is
inherited from the original software at
http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
this.

Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
16 years agoMerge branch 'master' of git://www.denx.de/git/u-boot-arm
Wolfgang Denk [Thu, 14 Feb 2008 23:45:39 +0000 (00:45 +0100)]
Merge branch 'master' of git://www.denx.de/git/u-boot-arm

16 years agoMerge ../custodians
Wolfgang Denk [Thu, 14 Feb 2008 23:27:11 +0000 (00:27 +0100)]
Merge ../custodians

16 years agoMerge branch 'master' of git://www.denx.de/git/u-boot-mpc86xx
Wolfgang Denk [Thu, 14 Feb 2008 23:26:52 +0000 (00:26 +0100)]
Merge branch 'master' of git://www.denx.de/git/u-boot-mpc86xx

Conflicts:

common/cmd_reginfo.c

Signed-off-by: Wolfgang Denk <wd@denx.de>
16 years agoMerge ../custodians
Wolfgang Denk [Thu, 14 Feb 2008 23:22:49 +0000 (00:22 +0100)]
Merge ../custodians

16 years agoMerge branch 'master' of git://www.denx.de/git/u-boot-ppc4xx
Wolfgang Denk [Thu, 14 Feb 2008 23:22:37 +0000 (00:22 +0100)]
Merge branch 'master' of git://www.denx.de/git/u-boot-ppc4xx

16 years agoMerge ../custodians
Wolfgang Denk [Thu, 14 Feb 2008 23:16:32 +0000 (00:16 +0100)]
Merge ../custodians

16 years agoMerge branch 'master' of git://www.denx.de/git/u-boot-sh
Wolfgang Denk [Thu, 14 Feb 2008 23:16:26 +0000 (00:16 +0100)]
Merge branch 'master' of git://www.denx.de/git/u-boot-sh

16 years agoMerge ../custodians
Wolfgang Denk [Thu, 14 Feb 2008 23:14:36 +0000 (00:14 +0100)]
Merge ../custodians

16 years agoMerge branch 'master' of git://www.denx.de/git/u-boot-avr32
Wolfgang Denk [Thu, 14 Feb 2008 23:14:26 +0000 (00:14 +0100)]
Merge branch 'master' of git://www.denx.de/git/u-boot-avr32

16 years agoMerge ../custodians
Wolfgang Denk [Thu, 14 Feb 2008 23:13:09 +0000 (00:13 +0100)]
Merge ../custodians

16 years agoMerge branch 'master' of git://www.denx.de/git/u-boot-mpc85xx
Wolfgang Denk [Thu, 14 Feb 2008 23:12:52 +0000 (00:12 +0100)]
Merge branch 'master' of git://www.denx.de/git/u-boot-mpc85xx

16 years agoCoding STyle cleanup.
Wolfgang Denk [Thu, 14 Feb 2008 23:11:39 +0000 (00:11 +0100)]
Coding STyle cleanup.

Signed-off-by: Wolfgang Denk <wd@denx.de>
16 years agoMerge branch 'master' of git://www.denx.de/git/u-boot-blackfin
Wolfgang Denk [Thu, 14 Feb 2008 23:06:18 +0000 (00:06 +0100)]
Merge branch 'master' of git://www.denx.de/git/u-boot-blackfin

Conflicts:

Makefile
doc/README.standalone

Signed-off-by: Wolfgang Denk <wd@denx.de>
16 years agosh: Fix register address of SH7722
Nobuhiro Iwamatsu [Tue, 5 Feb 2008 04:30:43 +0000 (13:30 +0900)]
sh: Fix register address of SH7722

The address of SH7722 is wrong by old document.
This patch fixes this problem.

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16 years agoonly update version header as needed
Mike Frysinger [Mon, 4 Feb 2008 22:44:23 +0000 (17:44 -0500)]
only update version header as needed

Constantly rebuilding the version header will force useless relinking, so we
simply need to compare the new header with the existing one before updating
it.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16 years agoDo not specify a CROSS_COMPILE default when executing size
Mike Frysinger [Mon, 28 Jan 2008 10:56:19 +0000 (05:56 -0500)]
Do not specify a CROSS_COMPILE default when executing size

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16 years agoFix return value of mtest when CFG_ALT_MEMTEST set
Guennadi Liakhovetski [Wed, 13 Feb 2008 10:19:19 +0000 (11:19 +0100)]
Fix return value of mtest when CFG_ALT_MEMTEST set

Fix a missing return statement from a non-void function.

Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
16 years ago85xx, 86xx: Determine I2C clock frequencies and store in global_data
Timur Tabi [Wed, 9 Jan 2008 20:35:26 +0000 (14:35 -0600)]
85xx, 86xx: Determine I2C clock frequencies and store in global_data

Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.

Update the get_clocks() function in 85xx and 86xx to determine the I2C
clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.

Signed-off-by: Timur Tabi <timur@freescale.com>
16 years agoTQM834x: clean up configuration
Wolfgang Denk [Thu, 14 Feb 2008 22:18:01 +0000 (23:18 +0100)]
TQM834x: clean up configuration

Get board name consistent with Linux and elsewhere;
get rid of local network definitions etc.

Signed-off-by: Wolfgang Denk <wd@denx.de>
16 years agoTFTP: fix search of ':' in BootFile
Jean-Christophe PLAGNIOL-VILLARD [Thu, 14 Feb 2008 07:02:12 +0000 (08:02 +0100)]
TFTP: fix search of ':' in BootFile

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16 years agoCoding style cleanup; update CHANGELOG.
Wolfgang Denk [Thu, 14 Feb 2008 21:46:55 +0000 (22:46 +0100)]
Coding style cleanup; update CHANGELOG.

Signed-off-by: Wolfgang Denk <wd@denx.de>
16 years agoPPC: Use r2 instead of r29 as global data pointer
Wolfgang Denk [Thu, 14 Feb 2008 21:43:22 +0000 (22:43 +0100)]
PPC: Use r2 instead of r29 as global data pointer

R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
will refuse to use load/store multiple insns; instead, it issues a
list of simple load/store instructions upon function entry and exit,
resulting in bigger code size, which in turn makes the build for a
few boards fail.

Use r2 instead.

Signed-off-by: Wolfgang Denk <wd@denx.de>
16 years agoARM: make the machid configurable via the environment
Uwe Kleine-König [Wed, 30 Jan 2008 08:08:49 +0000 (09:08 +0100)]
ARM: make the machid configurable via the environment

If the variable "machid" exists, let do_bootm_linux use that instead
of bd->bi_arch_number.

Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
16 years agoUse #ifdef CONFIG_FSLDMAFEC
Vlad Lungu [Wed, 23 Jan 2008 14:34:46 +0000 (16:34 +0200)]
Use #ifdef CONFIG_FSLDMAFEC

MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
fails

Signed-off-by: Vlad Lungu <vlad@comsys.ro>
16 years agocommon/miiphyutil.c: Cleanup MII_DEBUG and debug()
Shinya Kuribayashi [Sat, 19 Jan 2008 01:25:59 +0000 (10:25 +0900)]
common/miiphyutil.c: Cleanup MII_DEBUG and debug()

Current MII_DEBUG is confusing in two ways. One is useless define-then-
undef at the top of the file. The other is there is only one debug() in
this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
While there are many useful printf()/puts() debug codes, but they are for
DEBUG, not for MII_DEBUG.

This patch tries to put them all together into MII_DEBUG and debug().

Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16 years agoOneNAND Initial Program Loader (IPL) support
Kyungmin Park [Thu, 17 Jan 2008 07:43:25 +0000 (16:43 +0900)]
OneNAND Initial Program Loader (IPL) support

This patch enables the OneNAND boot within U-Boot.
Before this work, we used another OneNAND IPL called X-Loader based
on open source. With this work, we can build the oneboot.bin image
without other program.

The build sequence is simple.
First, it compiles the u-boot.bin
Second, it compiles OneNAND IPL
Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
The mechanism is similar with NAND boot except it boots from itself.

Another thing is that you can only use the OneNAND IPL only to work
other bootloader such as RedBoot and so on.

Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
16 years agoFix CONFIG_MMC usage in fat code
Andy Fleming [Wed, 16 Jan 2008 19:06:59 +0000 (13:06 -0600)]
Fix CONFIG_MMC usage in fat code

A #if statement in fat.c depended on CONFIG_MMC, instead of
defined(CONFIG_MMC).  This meant CONFIG_MMC needed to be defined
as "1" rather than just defined.  Now it's better.

Signed-off-by: Andy Fleming <afleming@freescale.com>
16 years agoppc: Refactor cache routines, so there is only one common set.
Rafal Jaworowski [Tue, 15 Jan 2008 11:52:31 +0000 (12:52 +0100)]
ppc: Refactor cache routines, so there is only one common set.

Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
16 years agoMerge commit 'wd/master'
Jon Loeliger [Thu, 14 Feb 2008 20:07:21 +0000 (14:07 -0600)]
Merge commit 'wd/master'

16 years ago86xx: Fix compilation warning in sys_eprom.c
Jon Loeliger [Wed, 23 Jan 2008 21:55:02 +0000 (15:55 -0600)]
86xx: Fix compilation warning in sys_eprom.c

sys_eeprom.c:82:9: warning: unknown escape sequence '\/'

Signed-off-by: Jon Loeliger <jdl@freescale.com>
16 years agoMerge branch 'denx'
Andy Fleming [Thu, 14 Feb 2008 16:11:14 +0000 (10:11 -0600)]
Merge branch 'denx'

16 years agoMerge branch 'for-1.3.2'
Stefan Roese [Thu, 14 Feb 2008 10:46:07 +0000 (11:46 +0100)]
Merge branch 'for-1.3.2'

16 years agoMove AT91RM9200DK board support under board/atmel
Haavard Skinnemoen [Fri, 22 Feb 2008 11:40:50 +0000 (11:40 +0000)]
Move AT91RM9200DK board support under board/atmel

We already have a vendor subdir for Atmel, so we should use it.

Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
16 years agoARM: cleanup duplicated exception handlingcode
Andreas Engel [Mon, 14 Jan 2008 09:06:52 +0000 (09:06 +0000)]
ARM: cleanup duplicated exception handlingcode

Move duplicated exception handling code into lib_arm.

Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
16 years agoSupport for Artila M-501 starter kit
Timo Tuunainen [Fri, 1 Feb 2008 10:09:03 +0000 (10:09 +0000)]
Support for Artila M-501 starter kit

Kimmo Leppala / Sysart and
Timo Tuunainen / Sysart

16 years agoAT91CAP9 support
Stelian Pop [Mon, 11 Feb 2008 10:50:19 +0000 (10:50 +0000)]
AT91CAP9 support

---------------------------------

read_dataflash() takes a signed char pointer as a parameter. Silence a
few warnings dues to incorrect parameter types in env_dataflash.c.

Signed-off-by: Stelian Pop <stelian@popies.net>
16 years agoAT91CAP9 support : move board files to Atmel vendor directory.
Stelian Pop [Thu, 7 Feb 2008 09:42:57 +0000 (09:42 +0000)]
AT91CAP9 support : move board files to Atmel vendor directory.

AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.

Signed-off-by: Stelian Pop <stelian@popies.net>
16 years agoAT91CAP9 support : MACB changes
Stelian Pop [Thu, 3 Jan 2008 21:15:56 +0000 (21:15 +0000)]
AT91CAP9 support : MACB changes

Signed-off-by: Stelian Pop <stelian <at> popies.net>
Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
16 years agoAT91CAP9 support : board/ files
Stelian Pop [Thu, 7 Feb 2008 16:37:54 +0000 (16:37 +0000)]
AT91CAP9 support : board/ files

Signed-off-by: Stelian Pop <stelian@popies.net>
16 years agoAT91CAP9 support : cpu/ files
Stelian Pop [Wed, 30 Jan 2008 21:15:54 +0000 (21:15 +0000)]
AT91CAP9 support : cpu/ files

Signed-off-by: Stelian Pop <stelian <at> popies.net>
16 years agoAT91CAP9 support : include/ files
Stelian Pop [Thu, 31 Jan 2008 21:15:53 +0000 (21:15 +0000)]
AT91CAP9 support : include/ files

Signed-off-by: Stelian Pop <stelian@popies.net>
16 years agoAT91CAP9 support : build integration
Stelian Pop [Sun, 20 Jan 2008 19:49:21 +0000 (19:49 +0000)]
AT91CAP9 support : build integration

Signed-off-by: Stelian Pop <stelian@popies.net>
16 years agoImprove DataFlash CS definition.
Stelian Pop [Sun, 20 Jan 2008 21:07:00 +0000 (21:07 +0000)]
Improve DataFlash CS definition.

Use a structure instead of the error prone unnamed array to
define the possible dataflash banks.

Signed-off-by: Stelian Pop <stelian@popies.net>
16 years agoFix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
Stelian Pop [Sat, 19 Jan 2008 21:09:35 +0000 (21:09 +0000)]
Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on

Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.

cpu/arm926ejs/start.o: In function `cpu_init_crit':
.../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'

Signed-off-by: Stelian Pop <stelian@popies.net>
16 years agoFix timer overflow in DaVinci
Peter Pearse [Fri, 1 Feb 2008 16:50:24 +0000 (16:50 +0000)]
Fix timer overflow in DaVinci
Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
16 years agoUpdate board NetStar
Peter Pearse [Fri, 1 Feb 2008 16:49:08 +0000 (16:49 +0000)]
Update board NetStar
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
16 years agoppc4xx: HCU4/5. Fix make O=../xx
Niklaus Giger [Tue, 5 Feb 2008 09:26:42 +0000 (10:26 +0100)]
ppc4xx: HCU4/5. Fix make O=../xx

Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
16 years agoppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
Larry Johnson [Tue, 22 Jan 2008 13:51:59 +0000 (08:51 -0500)]
ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code

Signed-off-by: Larry Johnson <lrj@acm.org>
16 years agoMerge branch 'denx'
Andy Fleming [Thu, 14 Feb 2008 00:36:27 +0000 (18:36 -0600)]
Merge branch 'denx'

16 years agoNFS Timeout with large files.
Hiroshi Ito [Thu, 31 Jan 2008 09:35:04 +0000 (18:35 +0900)]
NFS Timeout with large files.

Retry to send NFS packet before reaching timeout.

Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
16 years agoAdd dependencies to avoid race conditions with parallel make.
Johannes Stezenbach [Mon, 28 Jan 2008 23:11:25 +0000 (00:11 +0100)]
Add dependencies to avoid race conditions with parallel make.

Signed-off-by: Johannes Stezenbach <js@sig21.net>
16 years agoMark board_init_[fr] as noreturn
Mike Frysinger [Mon, 28 Jan 2008 10:46:01 +0000 (05:46 -0500)]
Mark board_init_[fr] as noreturn

Signed-off-by: Mike Frysinger <vapier@gentoo.org>