12 Oct, 2011
3 commits
-
Some intip boards don't seem to run stable with CL4, datasheets suggest that
CL5 is the safe value.Signed-off-by: Dirk Eibach
Signed-off-by: Stefan Roese -
Fan PWM lookuptable was modified to start at 46 degrees
celsius instead of 40 degrees celsius.Signed-off-by: Dirk Eibach
Signed-off-by: Stefan Roese -
Use CONFIG_AUTOBOOT_KEYED on intip so that booting can only be
stopped with well defined keypresses.Signed-off-by: Dirk Eibach
Signed-off-by: Stefan Roese
10 Oct, 2011
16 commits
-
Fix:
usb_ohci.c: In function 'dl_transfer_length':
usb_ohci.c:768:8: warning: variable 'tdINFO' set but not used [-Wunused-but-set-variable]Signed-off-by: Wolfgang Denk
Cc: Remy Bohmer -
Fix:
usb.c: In function 'usb_parse_config':
usb.c:331:17: warning: variable 'ch' set but not used [-Wunused-but-set-variable]
usb.c: In function 'usb_hub_port_connect_change':
usb.c:1123:29: warning: variable 'portchange' set but not used [-Wunused-but-set-variable]
usb.c: In function 'usb_hub_configure':
usb.c:1183:25: warning: variable 'hubsts' set but not used [-Wunused-but-set-variable]Signed-off-by: Wolfgang Denk
Cc: Remy Bohmer
Acked-by: Remy Bohmer -
Fix:
ohci-hcd.c: In function 'dl_transfer_length':
ohci-hcd.c:968:8: warning: variable 'tdINFO' set but not used [-Wunused-but-set-variable]Signed-off-by: Wolfgang Denk
Cc: Remy Bohmer
Acked-by: Remy Bohmer -
Fix:
cmd_usb.c: In function 'usb_show_tree_graph':
cmd_usb.c:284:29: warning: variable 'port' set but not used [-Wunused-but-set-variable]Signed-off-by: Wolfgang Denk
Cc: Remy Bohmer
Acked-by: Remy Bohmer -
Fix:
smc91111.c: In function 'smc_phy_configure':
smc91111.c:1194:6: warning: variable 'failed' set but not used [-Wunused-but-set-variable]
smc91111.c:1190:7: warning: variable 'phyaddr' set but not used [-Wunused-but-set-variable]Signed-off-by: Wolfgang Denk
-
Fix:
jffs2_1pass.c: In function 'jffs2_1pass_read_inode':
jffs2_1pass.c:699:7: warning: variable 'ret' set but not used [-Wunused-but-set-variable]
jffs2_1pass.c: In function 'jffs2_1pass_build_lists':
jffs2_1pass.c:1578:14: warning: variable 'empty_start' set but not used [-Wunused-but-set-variable]Signed-off-by: Wolfgang Denk
-
Fix:
cfi_mtd.c: In function 'cfi_mtd_init':
cfi_mtd.c:226:19: warning: variable 'mtd_list' set but not used [-Wunused-but-set-variable]
cfi_mtd.c: In function 'cfi_mtd_init':
cfi_mtd.c:225:6: warning: unused variable 'devices_found'
cfi_mtd.c: In function 'cfi_mtd_init':
cfi_mtd.c:226:19: warning: variable 'mtd_list' set but not used [-Wunused-but-set-variable]
[-Wunused-variable]Signed-off-by: Wolfgang Denk
Cc: Stefan Roese
Acked-by: Stefan Roese -
Fix:
board.c:445:8: warning: variable 'bd' set but not used [-Wunused-but-set-variable]Signed-off-by: Wolfgang Denk
Cc: Albert ARIBAUD -
Esp. while printing the environment the output is usually longer than 512
bytes. Instead of cutting the message, send multiple 512 bytes packets.Signed-off-by: Michael Walle
Acked-by: Mike Frysinger -
The 'time' command runs and reports execution time of commands.
Sample usage:
--------------------
u-boot# time crc 0x1000 1000
CRC32 for 00001000 ... 00001fff ==> ae94dc4btime: 0.004 seconds, 4 ticks
--------------------Signed-off-by: Che-Liang Chiou
Acked-by: Mike Frysinger -
Reported-by: Michael Jones
Signed-off-by: Wolfgang Denk -
Some previous changes added code right in the middle of the
description of CONFIG_SHOW_BOOT_PROGRESS. Move this text down.
Fix formatting while we are at it.Signed-off-by: Wolfgang Denk
-
Also rearrange IH_TYPE table slightly.
Signed-off-by: Wolfgang Denk
-
Add support for SERIAL MULTI for uartlite.
Signed-off-by: Michal Simek
-
While adding asm/cache.h to common.h for PPC targets, I got an
error about multiple definitions of some DBSR_ macros. While
scanning these defines, I noticed that some where defined not
correctly for all PPC variants. So I removed all unused defines,
and corrected the ones really used by bedbug (book-e vs. ppc40x).Signed-off-by: Stefan Roese
Cc: Wolfgang Denk -
This is needed for the patch "cache: add default setting for
CONFIG_SYS_CACHELINE_SIZE" from Anton Staaf. As cache.h defines
CONFIG_SYS_CACHELINE_SIZE for PPC targets.This will remove the following warnings/errors:
include/common.h:819:2: warning: #warning CONFIG_SYS_CACHELINE_SIZE not defined, using __BIGGEST_ALIGNMENT__
cache.c:33: error: '__BIGGEST_ALIGNMENT__' undeclared (first use in this function)Signed-off-by: Stefan Roese
Cc: Anton Staaf
Cc: Wolfgang Denk
07 Oct, 2011
5 commits
-
Previous output:
Marvell>> mmc partPartition Map for MMC device 1 -- Partition Type: EFI
Part Start LBA End LBA
gpt1 0x8C00 0xCBFF
gpt2 0xCC00 0x57BFF
gpt3 0x57C00 0xA2BFF
gpt4 0xA2C00 0xECBFDEWith the patch, the output becomes:
Marvell>> mmc partPartition Map for MMC device 1 -- Partition Type: EFI
Part Name Start LBA End LBA
1 ramdisk 0x00008C00 0x0000CBFF
2 system 0x0000CC00 0x00057BFF
3 userdata 0x00057C00 0x000A2BFF
4 remaining 0x000A2C00 0x00ECBFDESigned-off-by: Lei Wen
-
mkimage's ublimage support can't depend of build-time board configs;
instead, this should be set in ublimage.cfg. Since currently no configs
in u-boot override the NAND block size, hardcode it as such in
ublimage.h to fix a build failure with "make tools":
gcc [...] -o ublimage.o ublimage.c -c
In file included from ublimage.c:37:0:
ublimage.h:31:20: fatal error: config.h: No such file or directoryCc: Heiko Schocher
Cc: patches@linaro.org
Signed-off-by: Loïc Minier
Acked-by: Heiko Schocher -
Generate timestamp_autogenerated.h as safely as version_autogenerated.h.
Cc: patches@linaro.org
Signed-off-by: Loïc Minier
Acked-by: Mike Frysinger -
Tools such as mkimage include version information but are
config-agnostic; build timestamp_autogenerated.h even when config.mk
isn't generated to fix "make tools" build failure:
gcc [...] -o mkimage.o mkimage.c -c
In file included from include/version.h:27:0, from mkimage.c:26:
include/timestamp.h:27:37: fatal error: timestamp_autogenerated.h: No
such file or directoryCc: patches@linaro.org
Signed-off-by: Loïc Minier
Acked-by: Mike Frysinger -
The generated file asm-offsets.s may be found at various depths in the
arch subdirectories, so simply ignore it throughout the tree.Signed-off-by: Laurence Withers
Acked-by: Mike Frysinger
06 Oct, 2011
16 commits
-
Introduce CONFIG_SPL_START_S_PATH to configure path to start.S file. It's not
always fitting to use CPU's start.S .Signed-off-by: Marek Vasut
-
cmd_sf.c: In function 'do_spi_flash':
cmd_sf.c:164:9: warning: 'skipped' may be used uninitialized in this functionSigned-off-by: Kumar Gala
Acked-by: Mike Frysinger
Acked-by: Simon Glass -
Now that none of the core checks CONFIG_NET_MULTI, there's not much point
in boards defining it. So scrub all references to it.Signed-off-by: Mike Frysinger
-
This is long over due. All but two net drivers have been converted, but
those have now been dropped.The only thing left to do is actually delete all references to NET_MULTI
and code that is compiled when that is not defined. So here we scrub the
core code.Signed-off-by: Mike Frysinger
-
This driver was never converted to NET_MULTI, and no board uses it.
So punt it and be done.Signed-off-by: Mike Frysinger
-
These drivers have never been converted to NET_MULTI, and they are only
used by one board (BMW). So drop the drivers until someone feels like
rewriting them for NET_MULTI support.Rather than punting the BMW board completely, just disable net support
in its board config. Seems to build fine without it.Signed-off-by: Mike Frysinger
-
Now that we've got boards.cfg and most people have converted over,
start warning people who have yet to so we can phase board configs
completely out of the Makefile.Signed-off-by: Mike Frysinger
-
This pushes the ugly duplicated arch ifdef lists we maintain in various
image related files out to the arch headers themselves.Acked-by: Nobuhiro Iwamatsu
Tested-by: Thomas Chou
Signed-off-by: Mike Frysinger -
The m68k tree is the only one where `./MAKEALL ` does not work.
So rename the existing coldfire list in the MAKEALL script to m68k, and
add an alias from coldfire to m68k. This makes scripting around MAKEALL
easier.Signed-off-by: Mike Frysinger
-
Some images have not a header of fix lenght. The patch will be
used for the generation of AIS images, because this header has
a variable lenght. The patch adds also the parameter "-s" (skip)
to not copy automatically the passed image file.Signed-off-by: Stefano Babic
-
Each image handler must return a not-zero velue if the
header is not recognized to allow the main program to
iterate to the next handler.Signed-off-by: Stefano Babic
CC: Heiko Schocher
Acked-by: Heiko Schocher -
The current km_arm boards have a Power-On test jumper. When this
jumper is set, this triggers some Power-On tests on the board.This patch enables the support of this jumper for starting the
memory_regions test when the jumper is set.Signed-off-by: Valentin Longchamp
Signed-off-by: Holger Brunck
Cc: Prafulla Wadaskar -
This allows to test a larger part of the RAM in the memory tests.
Signed-off-by: Valentin Longchamp
Signed-off-by: Holger Brunck
Cc: Heiko Schocher
Cc: Prafulla Wadaskar -
This test is similar to the actual POST memory test but quicker and
far less complete. It checks the address and data lines and then only
tests some regularly placed sub regions of the RAM.
This can be useful when we want to test the RAM but we do not have enough
time to run the full memory test.The POST memory test code was rearranged in order to avoid code duplication
between the two tests but the memory test functionnality remains the same.Signed-off-by: Valentin Longchamp
Signed-off-by: Holger Brunck
Ackey-by: Mike Frysinger -
This is needed for a further patch adding a new memory test.
Signed-off-by: Valentin Longchamp
Acked-by: Mike Frysinger -
Some boards have the environment variables defined in a slow EEPROM. post_run
accesses these environment variables to define which tests have to be run (in
post_get_flags). This is very slow before the code relocation on some boards
with a slow I2C EEPROM for environement variables.This patch adds a config option to skip the fetching of the test flags in the
environment variables. The test flags assigned to the tests then only are the
ones statically defined for the test in post/tests.c.Signed-off-by: Valentin Longchamp
Signed-off-by: Holger Brunck