summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-02-15Add Radeon Mobility 9200 pci device id to the radeon driverAnatolij Gustschin1-0/+3
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>
2008-02-15Extend ATI Radeon driver to support more video modesAnatolij Gustschin2-15/+308
Adds ATI Radeon 9200 support for 1280x1024, 1024x768, 800x600, 640x480 at 24, 16 and 8 bpp. Signed-off-by: Anatolij Gustschin <agust@denx.de>
2008-02-15xsengine: fix typo and few coding styleJean-Christophe PLAGNIOL-VILLARD1-9/+9
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2008-02-15Fix wrong memory limit calculation in memory-testGuennadi Liakhovetski1-15/+8
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>
2008-02-15Merge ../custodiansWolfgang Denk24-610/+315
2008-02-15Merge branch 'master' of git://www.denx.de/git/u-boot-mpc86xxWolfgang Denk24-610/+315
Conflicts: common/cmd_reginfo.c Signed-off-by: Wolfgang Denk <wd@denx.de>
2008-02-15Merge ../custodiansWolfgang Denk9-22/+22
2008-02-15Merge branch 'master' of git://www.denx.de/git/u-boot-ppc4xxWolfgang Denk9-22/+22
2008-02-15Merge ../custodiansWolfgang Denk0-0/+0
2008-02-15Merge branch 'master' of git://www.denx.de/git/u-boot-shWolfgang Denk0-0/+0
2008-02-15Merge ../custodiansWolfgang Denk9-20/+45
2008-02-15Merge branch 'master' of git://www.denx.de/git/u-boot-avr32Wolfgang Denk9-20/+45
2008-02-15Merge ../custodiansWolfgang Denk0-0/+0
2008-02-15Merge branch 'master' of git://www.denx.de/git/u-boot-mpc85xxWolfgang Denk0-0/+0
2008-02-15Coding STyle cleanup.Wolfgang Denk1-34/+34
Signed-off-by: Wolfgang Denk <wd@denx.de>
2008-02-15Merge branch 'master' of git://www.denx.de/git/u-boot-blackfinWolfgang Denk230-13133/+61692
Conflicts: Makefile doc/README.standalone Signed-off-by: Wolfgang Denk <wd@denx.de>
2008-02-15sh: Fix register address of SH7722Nobuhiro Iwamatsu1-6/+6
The address of SH7722 is wrong by old document. This patch fixes this problem. Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2008-02-15only update version header as neededMike Frysinger1-1/+2
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>
2008-02-15Do not specify a CROSS_COMPILE default when executing sizeMike Frysinger1-1/+1
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2008-02-15Fix return value of mtest when CFG_ALT_MEMTEST setGuennadi Liakhovetski1-2/+2
Fix a missing return statement from a non-void function. Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
2008-02-1585xx, 86xx: Determine I2C clock frequencies and store in global_dataTimur Tabi3-2/+9
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>
2008-02-15TQM834x: clean up configurationWolfgang Denk1-22/+5
Get board name consistent with Linux and elsewhere; get rid of local network definitions etc. Signed-off-by: Wolfgang Denk <wd@denx.de>
2008-02-15TFTP: fix search of ':' in BootFileJean-Christophe PLAGNIOL-VILLARD1-1/+1
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2008-02-15Coding style cleanup; update CHANGELOG.Wolfgang Denk2-5/+501
Signed-off-by: Wolfgang Denk <wd@denx.de>
2008-02-15PPC: Use r2 instead of r29 as global data pointerWolfgang Denk19-23/+24
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>
2008-02-15ARM: make the machid configurable via the environmentUwe Kleine-König1-1/+9
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>
2008-02-15Use #ifdef CONFIG_FSLDMAFECVlad Lungu1-0/+6
MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably) fails Signed-off-by: Vlad Lungu <vlad@comsys.ro>
2008-02-15common/miiphyutil.c: Cleanup MII_DEBUG and debug()Shinya Kuribayashi1-22/+9
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>
2008-02-15OneNAND Initial Program Loader (IPL) supportKyungmin Park11-2/+698
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>
2008-02-15Fix CONFIG_MMC usage in fat codeAndy Fleming1-1/+1
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>
2008-02-15ppc: Refactor cache routines, so there is only one common set.Rafal Jaworowski7-203/+73
Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
2008-02-14Merge commit 'wd/master'Jon Loeliger24-56/+52
2008-02-1486xx: Fix compilation warning in sys_eprom.cJon Loeliger1-1/+1
sys_eeprom.c:82:9: warning: unknown escape sequence '\/' Signed-off-by: Jon Loeliger <jdl@freescale.com>
2008-02-14Merge branch 'denx'Andy Fleming24-56/+52
2008-02-14Merge branch 'for-1.3.2'Stefan Roese9-22/+22
2008-02-14ppc4xx: HCU4/5. Fix make O=../xxNiklaus Giger3-14/+10
Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
2008-02-14ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD codeLarry Johnson1-3/+3
Signed-off-by: Larry Johnson <lrj@acm.org>
2008-02-14Merge branch 'denx'Andy Fleming72-267/+531
2008-02-14NFS Timeout with large files.Hiroshi Ito1-1/+6
Retry to send NFS packet before reaching timeout. Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
2008-02-14Add dependencies to avoid race conditions with parallel make.Johannes Stezenbach1-3/+3
Signed-off-by: Johannes Stezenbach <js@sig21.net>
2008-02-14Mark board_init_[fr] as noreturnMike Frysinger1-2/+2
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2008-02-14Only use TEXT_BASE if defined by the boardMike Frysinger1-2/+8
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2008-02-14Fix remaining CONFIG_COMMANDSJean-Christophe PLAGNIOL-VILLARD14-36/+26
update comments Fix coding style Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2008-02-14Add *~ to .gitignoreNiklaus Giger1-0/+1
One should never add a backup file ending in with ~ to the git repository. Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
2008-02-14Remove duplicate defines for ARRAY_SIZEKumar Gala4-8/+2
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-02-14Fix incorrect address test in AT91F_DataflashSelect().Stelian Pop1-1/+1
Signed-off-by: Stelian Pop <stelian@popies.net>
2008-02-14Fix building of fdt_support.c if DEBUG setKumar Gala1-3/+3
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-02-14Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbolsJon Loeliger1-0/+5
These replace direct structure references for IMMR sections. Signed-off-by: Jon Loeliger <jdl@freescale.com>
2008-02-14Merge commit 'wd/master'Jon Loeliger86-632/+1036
2008-02-12Merge branch 'master' of /home/wd/git/u-boot/custodiansWolfgang Denk3-5/+7