- Nov 21, 2007
-
-
Kumar Gala authored
Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260 into common/fdt_support.c and renamed: do_fixup() -> do_fixup_by_path() do_fixup_u32() -> do_fixup_by_path_u32() Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>
-
Kumar Gala authored
Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>
-
Kumar Gala authored
Removed: fdt_node_is_compatible fdt_find_node_by_type fdt_find_compatible_node To ease merge of newer libfdt as we aren't using them anywhere at this time. Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same reason. Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>
-
Grant Likely authored
Modify common/Makefile to conditionally compile the cmd_*.c files based on the board config. Signed-off-by:
Grant Likely <grant.likely@secretlab.ca>
-
- Nov 18, 2007
-
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Stefan Roese authored
Signed-off-by:
Stefan Roese <sr@denx.de>
-
- Nov 17, 2007
-
-
Jean-Christophe PLAGNIOL-VILLARD authored
This patch has been sent on: - 29 Sep 2007 Although mips_io_port_base is currently a part of IDE command, it is quite fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move it to MIPS general part, and introduce `set_io_port_base()' from Linux. This patch is triggered by multiple definition of `mips_io_port_base' build error on gth2 (and tb0229 also needs this fix.) board/gth2/libgth2.a(gth2.o): In function `log_serial_char': /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base' common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here make: *** [u-boot] Error 1 Signed-off-by:
Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
Wolfgang Denk authored
Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if the most significant bit was set, which did not work on any architecture where "char" defaulted to be an unsigned type. Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com> Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
- Nov 16, 2007
-
-
Jean-Christophe PLAGNIOL-VILLARD authored
Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
- Nov 15, 2007
-
-
Grant Likely authored
This change is in preparation for condtitionial compile support in the build system. By spliting them all into seperate lines now, subsequent patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will be less invasive and easier to review Signed-off-by:
Grant Likely <grant.likely@secretlab.ca>
-
- Nov 06, 2007
-
-
Larry Johnson authored
This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and "miiphy_duplex()". It also adds function "miiphy_is_1000base_x ()", which returns non-zero iff the PHY registers are configured for 1000BASE-X. The "mii info" command is modified to distinguish between 1000BASE-T and -X. Signed-off-by:
Larry Johnson <lrj@acm.org> Signed-off-by:
Ben Warren <bwarren@qstreams.com>
-
Larry Johnson authored
Signed-off-by:
Larry Johnson <lrj@acm.org> Signed-off-by:
Ben Warren <bwarren@qstreams.com>
-
- Nov 03, 2007
-
-
Zhang Wei authored
The scan code of the key 'z' is 0x1d, which should be handled. The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI controller. Signed-off-by:
Zhang Wei <wei.zhang@freescale.com>
-
- Oct 19, 2007
-
-
Detlev Zundel authored
Signed-off-by:
Detlev Zundel <dzu@denx.de>
-
- Sep 25, 2007
-
-
Grant Likely authored
CFG_FPGA_XILINX is a bit value used to test against the value in CONFIG_FPGA. Testing for a value will always return TRUE. I don't think that is the intention in this code. Signed-off-by:
Grant Likely <grant.likely@secretlab.ca>
-
- Sep 23, 2007
-
-
Michal Simek authored
-
Michal Simek authored
-
- Sep 17, 2007
-
-
Kyungmin Park authored
[PATCH 3/3] OneNAND support (take #2) OneNAND support at U-Boot Signed-off-by:
Kyungmin Park <kyungmin.park@samsung.com>
-
- Sep 16, 2007
-
-
Wolfgang Denk authored
With recent toolchains, the environment sectors were no longer aligned to sector boundaries. The reason was a combination of two bugs: 1) common/environment.c assumed that CONFIG_TQM8xxL would be defined for all TQM8xxL and TQM8xxM boards. But "include/common.h", where this gets defined, is not included here (and cannot be included without causing lots of problems). Added a new #define CFG_USE_PPCENV for all boards which really want to put the environment is a ".ppcenv" section. 2) The linker scripts just include environment.o, silently assuming that the objects in that file are really in the order in which they are coded in the C file, i. e. "environment" first, then "redundand_environment", and "env_size" last. However, current toolchains (GCC-4.x) reorder the objects, causing the environment data not to start on a flash sector boundary: Instead of: we got: 40008000 T environment 40008000 T env_size 4000c000 T redundand_environment 40008004 T redundand_environment 40010000 T env_size 4000c004 T environment Note: this patch fixes just the first part, and cures the alignment problem by making sure that "env_size" gets placed correctly. However, we still have a potential issue because primary and redundant environment sectors are actually swapped, i. e. we have now: 40008000 T redundand_environment 4000c000 T environment 40010000 T env_size This shall be fixed in the next version. Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
- Sep 15, 2007
-
-
Matthias Fuchs authored
Fix usage of do_div() in nand erase|read|write process output. The last patch to nand_util.c introduced do_div() instead of libgcc's implementation. But do_div() returns the quotient in its first macro parameter and not as result. Signed-off-by:
Matthias Fuchs <matthias.fuchs@esd-electronics.com>
-
Matthias Fuchs authored
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@esd-electronics.com>
-
- Sep 14, 2007
-
-
Michal Simek authored
-
- Sep 08, 2007
-
-
Grant Likely authored
Signed-off-by:
Grant Likely <grant.likely@secretlab.ca>
-
- Sep 06, 2007
-
-
Stefano Babic authored
This patch adds support for multiple serial ports to the PXA target. FFUART, BTUART and STUART are supported. Signed-off-by:
Stefano Babic <sbabic@denx.de>
-
Bartlomiej Sieka authored
Fix incorrect blob address calculation in do_bootm_linux() that prevents booting the kernel from a multi-file image (kernel + initrd + blob). Also, make minor updates to the U-Boot's output and to the coding style. Signed-off-by:
Bartlomiej Sieka <tur@semihalf.com>
-
Grant Likely authored
Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style kernels using the board info structure (instead of passing a device tree) This change allows the old style booting to be used if the fdt argument was not passed to 'bootm'. Signed-off-by:
Grant Likely <grant.likely@secretlab.ca> Acked-by:
Kim Phillips <kim.phillips@freescale.com>
-
- Aug 29, 2007
-
-
Dirk Behme authored
omap2420h4 switched to cfi, so remove old (already disabled) flash.c and flash_probe() calls in env_flash.c. Signed-off-by:
Dirk Behme <dirk.behme@gmail.com>
-
- Aug 28, 2007
-
-
Heiko Schocher authored
define there own I/O functions. (Needed for the pcs440ep board). - The default I/O Functions are again 8 Bit accesses. - Added CONFIG_CMD_IDE for the pcs440ep Board. Signed-off-by:
Heiko Schocher <hs@denx.de>
-
- Aug 18, 2007
-
-
Stefan Roese authored
Signed-off-by:
Stefan Roese <sr@denx.de>
-
- Aug 16, 2007
-
-
TsiChung Liew authored
Signed-off-by:
TsiChungLiew <Tsi-Chung.Liew@freescale.com>
-
TsiChung Liew authored
Signed-off-by:
TsiChungLiew <Tsi-Chung.Liew@freescale.com>
-
Kim Phillips authored
Signed-off-by:
Kim Phillips <kim.phillips@freescale.com>
-
Andy Fleming authored
Forgot to cast of_flat_tree to ulong. Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Andy Fleming authored
The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed" neglected to *also* put the code inside the similar #ifdef for CONFIG_OF_FLAT_TREE. Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
- Aug 15, 2007
-
-
Jerry Van Baren authored
Commit 073e1b50 "Fix initrd/dtb interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT) when it should have gone inside of the conditional. As a result, it broke non-LIBFDT board builds. Also added a missing "not." to the comment. Signed-off-by:
Gerald Van Baren <vanbaren@cideas.com>
-
- Aug 14, 2007
-
-
Andy Fleming authored
The original code would wrongly relocate the blob to be right before the initrd if it existed. The blob *must* be within CFG_BOOTMAPSZ, if it is defined. So we make two changes: 1) flag the blob for relocation whenever its address is above BOOTMAPSZ 2) If the blob is being relocated, relocate it before kbd, not initrd Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Peter Pearse authored
Merge to two at45.c files into a common file, split to at45.c and spi.c Fix spelling error in DM9161 PHY Support. Initialize at91rm9200 board (and set LED). Add PIO control for at91rm9200dk LEDs and Mux. Change dataflash partition boundaries to be compatible with Linux 2.6. Signed-off-by:
Peter Pearse <peter.pearse@arm.com> Signed-off-by:
Ulf Samuelsson <ulf@atmel.com>
-
- Aug 10, 2007
-
-
Gerald Van Baren authored
Signed-off-by:
Gerald Van Baren <vanbaren@cideas.com>
-
Kim Phillips authored
protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the area. Signed-off-by:
Kim Phillips <kim.phillips@freescale.com>
-
Kim Phillips authored
The last fdt patch to bootm did board setup based on the address specified by a prior fdt address command invocation. The bootm code, as its call to fdt_chosen does, should use the fdt specified by the user on the bootm command. Note this restores full functionality for the 8360's existing default boot environment values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr' before booting a kernel). Signed-off-by:
Kim Phillips <kim.phillips@freescale.com>
-