Sam Sparks [Fri, 14 Sep 2007 17:14:42 +0000 (11:14 -0600)]
Update MPC8349ITX*_config to place config.tmp in right place.
MPC834ITX*_config does not store config.tmp at the correct locatation,
causing MPC8349ITXGP to have the wrong TEXT_BASE.
Signed-off-by: Sam Sparks <SSparks@twacs.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Wolfgang Denk [Sat, 15 Sep 2007 18:48:41 +0000 (20:48 +0200)]
Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
Signed-off-by: Wolfgang Denk <wd@denx.de>
Dirk Behme [Sat, 15 Sep 2007 09:55:42 +0000 (11:55 +0200)]
Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
function local.
Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
[1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
Bartlomiej Sieka [Thu, 13 Sep 2007 16:21:48 +0000 (18:21 +0200)]
cm5200: Fix a typo introduced by
afaac86fe2948ac84cd9a12bbed883b3c683e7d9
Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Wolfgang Denk [Tue, 11 Sep 2007 22:48:57 +0000 (00:48 +0200)]
Fix memory corruption problem on STX GP3 SSA Board.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Grzegorz Bernacki [Tue, 11 Sep 2007 13:42:11 +0000 (15:42 +0200)]
[GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
scan on second pci bus.
Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
Grzegorz Bernacki [Tue, 11 Sep 2007 10:57:52 +0000 (12:57 +0200)]
[ppc4xx] Individual handling of sdram.c for bamboo_nand build
Bamboo has a file sdram.c which needs special treatment when building in
separate directory. It has to be linked to build directory otherwise it is
not seen.
Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
Wolfgang Denk [Mon, 10 Sep 2007 21:21:16 +0000 (23:21 +0200)]
Merge ... /home/raj/git/u-boot#ads5121_fec_optimize
Sean MCGOOGAN [Mon, 10 Sep 2007 15:55:59 +0000 (16:55 +0100)]
Allocate CPU Architecture Code for STMicroelectronics' ST200.
Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
---------------------------------------------------
Wolfgang Denk [Mon, 10 Sep 2007 18:42:31 +0000 (20:42 +0200)]
Update version to match current state.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Grzegorz Bernacki [Mon, 10 Sep 2007 15:39:08 +0000 (17:39 +0200)]
[MPC512x] Streamline frame handling in the FEC driver
- convert frame size settings to be derived from a single base
- set frame size to the recommended default value
Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
Kyungmin Park [Mon, 10 Sep 2007 02:34:00 +0000 (11:34 +0900)]
Remove compiler warning: target CPU does not support interworking
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Wolfgang Denk [Sun, 9 Sep 2007 19:21:33 +0000 (21:21 +0200)]
Fix compile error in spc1920 config.
Signed-off-by: Markus Klotzbücher <mk@denx.de>
Signed-off-by: Wolfgang Denk <wd@denx.de>
Grant Likely [Fri, 7 Sep 2007 15:25:07 +0000 (09:25 -0600)]
Bugfix: make bootm+libfdt compile on boards with no flash
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Wolfgang Denk [Sat, 8 Sep 2007 18:52:57 +0000 (20:52 +0200)]
Merge with /home/raj/git/u-boot#440SPe_PCIe_fixes
Wolfgang Denk [Sat, 8 Sep 2007 18:45:59 +0000 (20:45 +0200)]
Merge with /home/raj/git/u-boot#ads5121_fixes
Grzegorz Bernacki [Fri, 7 Sep 2007 16:35:37 +0000 (18:35 +0200)]
[PPC440SPe] PCIe environment settings for Katmai and Yucca
- 'pciconfighost' is set by default in order to be able to scan bridges
behind the primary host/PCIe
- 'pciscandelay' env variable is recognized to allow for user-controlled
delay before the PCIe bus enumeration; some peripheral devices require a
significant delay before they can be scanned (e.g. LSI8408E); without the
delay they are not detected
Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
Grzegorz Bernacki [Fri, 7 Sep 2007 16:20:23 +0000 (18:20 +0200)]
[PPC440SPe] Improve PCIe configuration space access
- correct configuration space mapping
- correct bus numbering
- better access to config space
Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
first device on the first bus. We now allow to configure up to 16 buses;
also, scanning for devices behind the PCIe-PCIe bridge is supported, so
peripheral devices farther in hierarchy can be identified.
Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
Grzegorz Bernacki [Fri, 7 Sep 2007 15:46:18 +0000 (17:46 +0200)]
[PPC440SPe] Convert machine check exceptions handling
Convert using fixup mechanism to suppressing MCK for the duration of config
read/write transaction: while fixups work fine with the case of a precise
exception, we identified a major drawback with this approach when there's
an imprecise case. In this scenario there is the following race condition:
the fixup is (by design) set to catch the instruction following the one
actually causing the exception; if an interrupt (e.g. decrementer) happens
between those two instructions, the ISR code is executed before the fixup
handler the machine check is no longer protected by the fixup handler as it
appears as within the ISR code. In consequence the fixup approach is being
phased out and replaced with explicit suppressing of MCK during a PCIe
config read/write cycle.
Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
Wolfgang Denk [Fri, 7 Sep 2007 15:43:36 +0000 (17:43 +0200)]
Fix typo in MAKEALL script.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Grzegorz Bernacki [Fri, 7 Sep 2007 15:09:21 +0000 (17:09 +0200)]
[MPC512x] Proper handling of larger frames in the FEC driver
When frame larger than local RX buffer is received, it is split and handled
by two buffer descriptors. Prior to this patch the FEC driver discarded
contents of a buffer descriptor without the 'LAST' bit set, so the first
part of the frame was lost in case of larger frames. This fix allows to
safely combine the two pieces into the whole frame.
Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
Rafal Jaworowski [Fri, 7 Sep 2007 15:05:36 +0000 (17:05 +0200)]
[MPC512x] Correct fixup relocation
Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
Wolfgang Denk [Thu, 6 Sep 2007 23:21:25 +0000 (01:21 +0200)]
Update CHANGELOG, minor coding style cleanup.
stefano babic [Thu, 30 Aug 2007 21:01:49 +0000 (23:01 +0200)]
PXA270: Added support for TrizepsIV board.
This patch add support for the Trizeps IV module (520Mhz).
Signed-off-by: Stefano Babic <sbabic@denx.de>
stefano babic [Thu, 30 Aug 2007 20:57:04 +0000 (22:57 +0200)]
PXA270: Add support for multiple serial ports.
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>
stefano babic [Thu, 30 Aug 2007 20:48:47 +0000 (22:48 +0200)]
PXA270: fix compile issue (invalid lvalue)
Code is broken for PXA270 due to "invalid lvalue in assignment".
This patch fix it in pxa-regs.h
Signed-off-by: Stefano Babic <sbabic@denx.de>
Jason Jin [Thu, 30 Aug 2007 10:19:05 +0000 (18:19 +0800)]
Add BUILD_DIR support for bios emulator.
Signed-off-by: Jason Jin <Jason.jin@freescale.com>
Shinya Kuribayashi [Fri, 31 Aug 2007 05:41:51 +0000 (14:41 +0900)]
[MIPS] Remove inline asm string functions
Stop using inline string functions on MIPS as other ARCHs do so,
since the optimized inline asm versions are not small.
This change is triggered by a following MIPS build error:
common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
common/exports.c:32: undefined reference to `strcmp'
make: *** [u-boot] Error 1
Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
Shinya Kuribayashi [Fri, 31 Aug 2007 05:41:45 +0000 (14:41 +0900)]
[MIPS] Update asm string header
This patches contains several bugfixes and cleanups in the latest upstream:
- Don't include linux/config.h
- Remove buggy inline version of memscan.
- Merge with Linux 2.6.11-rc3.
- Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
- Goodbye mips64. 31704 lines of code bite the dust.
- Replace extern inline with static inline.
- Fix return value of strncpy.
- Remove a bunch more "$1" clobbers.
Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
Wolfgang Denk [Thu, 6 Sep 2007 22:15:04 +0000 (00:15 +0200)]
Merge ... /home/wd/git/u-boot/custodian/u-boot-mpc85xx
Bartlomiej Sieka [Tue, 4 Sep 2007 15:31:22 +0000 (17:31 +0200)]
Fix do_bootm_linux() so that multi-file images with FDT blob boot.
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>
Wolfgang Denk [Thu, 6 Sep 2007 22:13:11 +0000 (00:13 +0200)]
Merge ... /home/wd/git/u-boot/custodian/u-boot-mpc5xxx
Gary Jennejohn [Fri, 31 Aug 2007 12:29:04 +0000 (14:29 +0200)]
Add support for Sil680 IDE controller.
o add drivers/sil680.c to support the Sil680 IDE-controller.
o drivers/Makefile: add sil680.o.
Signed-off-by: Gary Jennejohn <garyj@denx.de>
Grant Likely [Thu, 6 Sep 2007 15:47:40 +0000 (09:47 -0600)]
bootm/fdt: Only process the fdt if an fdt address was provided
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>
Grant Likely [Thu, 6 Sep 2007 15:46:23 +0000 (09:46 -0600)]
Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
Tested on: lite5200b
Note: the fixup functions have not been moved to a common place. This
patch is targeted for immediate merging as in solves a build issue, but
the final name/location of the fixups is still subject to debate. I
propose to merge this now, and move the fixups in the next merge window
to be usable by all targets.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Grant Likely [Thu, 6 Sep 2007 15:46:17 +0000 (09:46 -0600)]
libfdt: add convenience function fdt_find_and_setprop()
Given the path to a node, fdt_find_and_setprop() allows a property value
to be set directly.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Kumar Gala [Thu, 30 Aug 2007 21:18:18 +0000 (16:18 -0500)]
Fix ULI RTC support on MPC8544 DS
The RTC on the M1575 ULI chipset requires a dummy read before
we are able to talk to the RTC. We accomplish this by adding a
second memory region to the PHB the ULI is on and read from it.
The second region is added to maintain compatiabilty with Linux's
view of the PCI memory map.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Ed Swarthout [Thu, 30 Aug 2007 06:58:48 +0000 (01:58 -0500)]
ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
pcie is now differentiated from pci. Add 8641 bus-range updates.
Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
Stefan Roese [Sun, 2 Sep 2007 12:02:19 +0000 (14:02 +0200)]
Merge with git://www.denx.de/git/u-boot.git
Gary Jennejohn [Fri, 31 Aug 2007 13:21:46 +0000 (15:21 +0200)]
ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
set to non-zero, because it doesn't support MRM (memory-read-
multiple) correctly. We now added the possibility to configure
this register in the board config file, so that the default value
of 8 can be overridden.
Here the details of this patch:
o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
board-specific settings. As an example the sequoia board requires 0.
Idea from Stefan Roese <sr@denx.de>.
o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
CFG_PCI_CACHE_LINE_SIZE to 0.
Signed-off-by: Gary Jennejohn <garyj@denx.de>
Signed-off-by: Stefan Roese <sr@denx.de>
Wolfgang Denk [Fri, 31 Aug 2007 08:01:51 +0000 (10:01 +0200)]
Fix TFTP OACK code for short packets.
The old code had a loop limit overflow bug which caused a semi-
infinite loop for small packets, because in "i<len-8", "i" was signed,
but "len" was unsigned, and "len-8" became a huge number for small
values of "len".
This is a workaround which replaces broken commit
8f1bc284.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Wolfgang Denk [Thu, 30 Aug 2007 12:42:15 +0000 (14:42 +0200)]
Backout commit
8f1bc284 as it causes TFTP to fail.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Ed Swarthout [Thu, 30 Aug 2007 07:26:17 +0000 (02:26 -0500)]
Revert "Fix MPC8544DS PCIe3 scsi."
This reverts commit
9468e680.
Commit
16e23c3f5da removing allocation of PCSRBAR is sufficient.
Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
Grant Likely [Thu, 30 Aug 2007 00:26:24 +0000 (18:26 -0600)]
tftp: don't implicity trust the format of recevied packets
The TFTP OACK code trusts that the incoming packet is formated as
ASCII text and can be processed by string functions. It also has a
loop limit overflow bug where if the packet length is less than 8, it
ends up looping over *all* of memory to find the 'blksize' string.
This patch solves the problem by forcing the packet to be null
terminated and using strstr() to search for the sub string.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Wolfgang Denk [Wed, 29 Aug 2007 14:22:54 +0000 (16:22 +0200)]
Merge ... git+ssh://gemini/home/wd/git/u-boot/master
Kim Phillips [Wed, 29 Aug 2007 14:06:05 +0000 (09:06 -0500)]
sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
this had slipped through the cracks, since the sbc board was added
after I wrote the original patch to remove all these symbols, and
before it was merged.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Wolfgang Denk [Wed, 29 Aug 2007 12:05:30 +0000 (14:05 +0200)]
Add mii_init() prototype
to get rid of a *lot* of compiler warnings.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Wolfgang Denk [Wed, 29 Aug 2007 11:35:03 +0000 (13:35 +0200)]
Disable network support on cmi_mpc5xx board
..because it caused compiler errors and there seems to be no
board maintainer to take care of this.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Kumar Gala [Mon, 20 Aug 2007 14:44:00 +0000 (09:44 -0500)]
Fix MPC8544DS PCIe3 scsi.
<ed.swarthout@freescale.com>
The problem is pciauto_setup_device() getting called from fsl_pci_init.c
is allocating memory space it doesn't need.
Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>
Ed Swarthout [Tue, 21 Aug 2007 14:38:59 +0000 (09:38 -0500)]
8548cds fixes
Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
correct consoledev needed for linux boot.
Standardize on fdt{file,addr} var to hold dtb file name.
Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
Haiying Wang [Thu, 23 Aug 2007 19:20:54 +0000 (15:20 -0400)]
Enable L2 cache for MPC8568MDS board
The L2 cache size is 512KB for 8568, print out the correct informaiton.
Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Jason Jin [Wed, 22 Aug 2007 09:54:49 +0000 (17:54 +0800)]
Remove the bios emulator binary files from MAI board
Signed-off-by: Jason Jin <Jason.jin@freescale.com>
Kim Phillips [Tue, 21 Aug 2007 22:00:17 +0000 (17:00 -0500)]
support board vendor-common makefiles
if a board/$(VENDOR)/common/Makefile exists, build it.
also add the first such case, board/freescale/common/Makefile, to
handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
dictated by board configuration.
thusly get rid of alternate build dir errors such as:
FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
by putting the common/ mkdir command in its proper place (the common
Makefile). Common bits from existing individual board Makefiles have
been removed.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
stefano babic [Tue, 21 Aug 2007 13:52:33 +0000 (15:52 +0200)]
Fix: TFTP is not working on little endian systems
TFTP does not work anymore after multicast tftp
patch was applied on little endian systems.
This patch fix it.
Signed-off-by: Stefano Babic <sbabic@denx.de>
stefano babic [Tue, 21 Aug 2007 13:50:33 +0000 (15:50 +0200)]
Fix MAC address setting in DM9000 driver.
The logic to check if there is a correct MAC address in the DM9000
EEPROM, added in the last patch, is wrong. Now the MAC address is
always taken from the environment, even if a suitable MAC is present
in the EEPROM.
Signed-off-by: Stefano Babic <sbabic@denx.de>
Martin Krause [Tue, 21 Aug 2007 10:40:34 +0000 (12:40 +0200)]
MPC5xxx: fix some compiler warnings in USB code
Fix the following warnings:
- usb.c:xx: warning: function declaration isn't a prototype
- usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
from pointer wihtout a cast
Signed-off-by: Martin Krause <martin.krase@tqs.de>
Ed Swarthout [Tue, 21 Aug 2007 04:55:33 +0000 (23:55 -0500)]
fsl_pci_init - Remove self PCSRBAR allocation
CPU physical address space was being wasted by allocating a
PCSRBAR PCI inbound region to it's memory space.
As a rule, PCSRBAR should be left alone since it does not affect
transactions from self and other masters may have changed it.
Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
Martin Krause [Mon, 20 Aug 2007 11:56:47 +0000 (13:56 +0200)]
Fix compiler warning in include/s3c2410.h
This patch fixes the "type qualifiers ignored on fuction return tpye"
warning for include/s3c2410.h
Signed-off-by: Martin Krause <martin.krause@tqs.de>
Dirk Behme [Mon, 20 Aug 2007 05:09:05 +0000 (07:09 +0200)]
Fix compilation error for omap2420h4_config.
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>
Kim Phillips [Fri, 10 Aug 2007 19:34:14 +0000 (14:34 -0500)]
fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
and make some minor corrections to the FDT part of the README.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Wolfgang Denk [Tue, 28 Aug 2007 23:32:05 +0000 (01:32 +0200)]
Minor coding style cleanup.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Wolfgang Denk [Tue, 28 Aug 2007 22:53:51 +0000 (00:53 +0200)]
Merge ... /home/wd/git/u-boot/custodian/u-boot-ppc4xx
Heiko Schocher [Tue, 28 Aug 2007 15:40:33 +0000 (17:40 +0200)]
[UC101] Fix: if no CF in the board, U-Boot resets sometimes.
Signed-off-by: Heiko Schocher <hs@denx.de>
Heiko Schocher [Tue, 28 Aug 2007 15:39:14 +0000 (17:39 +0200)]
IDE: - make ide_inb () and ide_outb () "weak", so boards can
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>
Yuri Tikhonov [Sat, 25 Aug 2007 03:07:16 +0000 (05:07 +0200)]
POST: limit memory test area to not touch global data anymore
As experienced on lwmon5, on some boards the POST memory test can
corrupt the global data buffer (bd). This patch fixes this issue
by checking and limiting this area.
Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Fri, 24 Aug 2007 13:41:42 +0000 (15:41 +0200)]
ppc4xx: Add RTC POST test to lwmon5 board configuration
Since this RTC POST test is taking quite a while to complete
it's only initiated upon special keypress same as the complete
memory POST.
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Fri, 24 Aug 2007 13:19:10 +0000 (15:19 +0200)]
ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Thu, 23 Aug 2007 09:02:37 +0000 (11:02 +0200)]
ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
board. Now the "eeprom" command can be used to read/write from/to this
device. Additionally a new command was added "eepromwp" to en-/disable
the write-protect of this 2nd EEPROM.
The 1st EEPROM is not affected by this write-protect command.
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Wed, 22 Aug 2007 06:56:09 +0000 (08:56 +0200)]
ppc4xx: Remove unused option CFG_INIT_RAM_OCM
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Tue, 21 Aug 2007 14:33:33 +0000 (16:33 +0200)]
Merge with /home/stefan/git/u-boot/u-boot-ppc4xx
Stefan Roese [Tue, 21 Aug 2007 14:27:57 +0000 (16:27 +0200)]
ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
This patch adds support for the matrix keyboard on the lwmon5 board.
Since the implementation in the dsPCI is kind of compatible with the
"old" lwmon board, most of the code is copied from the lwmon
board directory.
Signed-off-by: Stefan Roese <sr@denx.de>
Wolfgang Denk [Sun, 19 Aug 2007 08:27:34 +0000 (10:27 +0200)]
Fix some build errors.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Wolfgang Denk [Sat, 18 Aug 2007 20:00:38 +0000 (22:00 +0200)]
Update CHANGELOG.
Wolfgang Denk [Sat, 18 Aug 2007 19:56:57 +0000 (21:56 +0200)]
Merge ... /home/wd/git/u-boot/custodian/u-boot-coldfire
Wolfgang Denk [Sat, 18 Aug 2007 19:50:01 +0000 (21:50 +0200)]
Merge ... /home/wd/git/u-boot/custodian/u-boot-mpc85xx
Wolfgang Denk [Sat, 18 Aug 2007 19:47:33 +0000 (21:47 +0200)]
Merge ... /home/wd/git/u-boot/custodian/u-boot-mpc83xx
Wolfgang Denk [Sat, 18 Aug 2007 19:42:30 +0000 (21:42 +0200)]
Merge ... git+ssh://gemini_vpn/home/wd/git/u-boot/master
Kim Phillips [Fri, 17 Aug 2007 03:52:39 +0000 (22:52 -0500)]
lib_ppc: make board_add_ram_info weak
platforms wishing to display RAM diagnostics in addition to size,
can do so, on one line, in their own board_add_ram_info()
implementation.
this consequently eliminates CONFIG_ADD_RAM_INFO.
Thanks to Stefan for the hint.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Shinya Kuribayashi [Fri, 17 Aug 2007 03:43:44 +0000 (12:43 +0900)]
PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
This patch has been sent on:
- 6 Jun 2007
Many users of PCI config read routines tend to ignore the function
ret value, and are only concerned about the contents of *val. Based
on this, pci_hose_read_config_{byte,word}_via_dword should initialize
the *val on dword read error.
Without this fix, for example, we'll go on scanning bus with vendor or
header_type uninitialized. This brings many unnecessary config trials.
Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
Stefan Roese [Sat, 18 Aug 2007 12:37:52 +0000 (14:37 +0200)]
ColdFire: Fix some remaining problems with CFG_CMD_
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Sat, 18 Aug 2007 12:33:02 +0000 (14:33 +0200)]
Coding style cleanup
Signed-off-by: Stefan Roese <sr@denx.de>
TsiChungLiew [Fri, 17 Aug 2007 00:23:50 +0000 (19:23 -0500)]
ColdFire: Add M5235EVB Platform for MCF523x
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
Kim Phillips [Fri, 17 Aug 2007 14:30:00 +0000 (09:30 -0500)]
mpc83xx: fix typo in DDR2 programming
introduced in the implement board_add_ram_info patch as I was cleaning out the
magic numbers. sorry.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Kim Phillips [Fri, 17 Aug 2007 03:53:09 +0000 (22:53 -0500)]
mpc83xx: move freescale boards to boards/freescale
includes build fixes.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Kim Phillips [Fri, 17 Aug 2007 03:52:59 +0000 (22:52 -0500)]
mpc83xx: suppress unused variable 'val8' warning
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Kim Phillips [Fri, 17 Aug 2007 03:52:48 +0000 (22:52 -0500)]
mpc83xx: implement board_add_ram_info
add board_add_ram_info, to make memory diagnostic output more
consistent. u-boot banner output now looks like:
DRAM: 256 MB (DDR1, 64-bit, ECC on)
and for boards with SDRAM on the local bus, a line such as this is
added:
SDRAM: 64 MB (local bus)
also replaced some magic numbers with their equivalent define names.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Tony Li [Fri, 17 Aug 2007 02:35:59 +0000 (10:35 +0800)]
mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
Signed-off-by Tony Li <tony.li@freescale.com>
TsiChungLiew [Thu, 16 Aug 2007 20:05:11 +0000 (15:05 -0500)]
ColdFire: Add M54455EVB for MCF5445x
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
TsiChungLiew [Thu, 16 Aug 2007 18:20:50 +0000 (13:20 -0500)]
ColdFire: Add M5253EVBE platform for MCF52x2
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
TsiChungLiew [Thu, 16 Aug 2007 10:04:31 +0000 (05:04 -0500)]
ColdFire: Add M5249EVB platform for MCF52x2
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
TsiChungLiew [Thu, 16 Aug 2007 01:32:06 +0000 (20:32 -0500)]
ColdFire: Update Freescale MCF52x2 platforms
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
TsiChungLiew [Thu, 16 Aug 2007 00:55:10 +0000 (19:55 -0500)]
ColdFire: Update EB+MCF-EV123 platform
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
TsiChungLiew [Thu, 16 Aug 2007 00:46:38 +0000 (19:46 -0500)]
ColdFire: update TASREG platform for MCF52x2
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
TsiChungLiew [Thu, 16 Aug 2007 00:45:51 +0000 (19:45 -0500)]
ColdFire: update r5200 platform for MCF52x2
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
TsiChungLiew [Thu, 16 Aug 2007 00:43:20 +0000 (19:43 -0500)]
ColdFire: idmr platform MCF52x2 update
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
TsiChungLiew [Thu, 16 Aug 2007 00:41:06 +0000 (19:41 -0500)]
ColdFire: cobra5272 platform for MCF52x2 update
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
TsiChungLiew [Thu, 16 Aug 2007 00:38:15 +0000 (19:38 -0500)]
ColdFire: MCF52x2 Header files update
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
TsiChungLiew [Thu, 16 Aug 2007 00:21:21 +0000 (19:21 -0500)]
ColdFire: MCF52x2 update
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
TsiChungLiew [Wed, 15 Aug 2007 23:46:11 +0000 (18:46 -0500)]
ColdFire: MCF5329 update cache
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
TsiChungLiew [Wed, 15 Aug 2007 20:40:20 +0000 (15:40 -0500)]
ColdFire: MCF5329 header file clean up
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>