summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-06-27Prepare v2011.06v2011.06Wolfgang Denk
Signed-off-by: Wolfgang Denk <[email protected]>
2011-06-27Minor coding style fixes.Wolfgang Denk
Signed-off-by: Wolfgang Denk <[email protected]>
2011-06-25usb: convert to partial linkingMike Frysinger
Looks like this was missed during the conversion to partial linking. Signed-off-by: Mike Frysinger <[email protected]>
2011-06-25ehci-pci: Fix PCI EHCI driver for 36-bitZhao Chenhui
Convert the PCI base address into a virtual address. Signed-off-by: Zhao Chenhui <[email protected]> Signed-off-by: Li Yang <[email protected]>
2011-06-25musb: process control messages after roothub accepted itCliff Cai
When dealing with non-multipoint devices, if the software root hub code accepted the message, then we still need to process it normally. So only return quickly when the root hub skipped the message or is otherwise in an error state. Signed-off-by: Cliff Cai <[email protected]> Signed-off-by: Mike Frysinger <[email protected]>
2011-06-23Merge branch 'master' of git://git.denx.de/u-boot-armWolfgang Denk
* 'master' of git://git.denx.de/u-boot-arm: run arm_pci_init after relocation IXP42x PCI rewrite update/fix PDNB3 board update/fix IXDP425 / IXDPG425 boards add dvlhost (dLAN 200 AV Wireless G) board IXP NPE: add support for fixed-speed MII ports update/fix AcTux4 board update/fix AcTux3 board update/fix AcTux2 board update/fix AcTux1 board use -ffunction-sections / --gc-sections on IXP42x support CONFIG_SYS_LDSCRIPT on ARM fix "depend" target in npe directory Fix IXP code to work after relocation was added trigger hardware watchdog in IXP42x serial driver add support for IXP42x Rev. B1 and newer add XScale sub architecture (IXP/PXA) to maintainer list Conflicts: arch/arm/lib/board.c Signed-off-by: Wolfgang Denk <[email protected]>
2011-06-23run arm_pci_init after relocationMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23IXP42x PCI rewriteMichael Schwingen
clean up IXP PCI handling: get rid of IXP-private bus scan, BAR assign etc. code and use u-boot's PCI infrastructure instead. Move board-specific PCI setup code (clock/reset) to board directory. Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23update/fix PDNB3 boardMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23update/fix IXDP425 / IXDPG425 boardsMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23add dvlhost (dLAN 200 AV Wireless G) boardMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23IXP NPE: add support for fixed-speed MII portsMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23update/fix AcTux4 boardMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23update/fix AcTux3 boardMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23update/fix AcTux2 boardMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23update/fix AcTux1 boardMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23use -ffunction-sections / --gc-sections on IXP42xMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23support CONFIG_SYS_LDSCRIPT on ARMMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23fix "depend" target in npe directoryMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23Fix IXP code to work after relocation was addedMichael Schwingen
- jump to real flash location after reset before turning off flash mirror - fix timer system to use HZ == 1000, remove broken interrupt-based code Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23trigger hardware watchdog in IXP42x serial driverMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23add support for IXP42x Rev. B1 and newerMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-23add XScale sub architecture (IXP/PXA) to maintainer listMichael Schwingen
Signed-off-by: Michael Schwingen <[email protected]>
2011-06-22tools: make it possible to build tools unconfiguredMike Frysinger
On Sunday, June 19, 2011 13:55:13 Ilya Yanok wrote: > On 18.06.2011 23:03, Mike Frysinger wrote: > >> - tools/Makefile put common/env_embedded.o and envcrc.o to object list > >> > >> conditionally. This fixes errors during dependency generation. > > > > pretty sure this breaks board builds. if the only thing this fixes is a > > I'm sorry but I can't see how this can break the builds. Could you > please be more specific? I've tried to build some boards, it actually > works... i might be thinking of a different env_embedded situation. a different problem with your patch to tools/Makefile: you copied the same logic multiple times which means more bitrot. why dont you do something like: > > harmless warning when generating dependency files, then i say ignore it. > > after all, this is how it has always worked in the past and no one really > > cared. > > Yep, they are harmless but they are not warnings but rather scary errors > actually. ;) I think it's better to fix them. i guess my threshold for being scared is a bit higher :p -mike
2011-06-22Makefile: move $(VERSION_FILE) rule out of ifeq configuredIlya Yanok
mkimage relies on autogenerated version so we need to move $(VERSION_FILE) rule out of ifeq and make tools rule depend on it to be able to run 'make tools' from the unconfigured tree. Signed-off-by: Ilya Yanok <[email protected]> Acked-by: Mike Frysinger <[email protected]>
2011-06-22config.mk: move LDSCRIPT processing to the top-level MakefileIlya Yanok
LDSCRIPT is used only from the top-level Makefile and only when the system is configured so we can move LDSCRIPT and CONFIG_SYS_LDSCRIPT related logic into the top level Makefile and under configured condition to avoid errors when building tools from unconfigured tree. Signed-off-by: Ilya Yanok <[email protected]> Acked-by: Mike Frysinger <[email protected]>
2011-06-22ARM: drop unsupported 'trab' boardWolfgang Denk
The 'trab' board configuration is broken, and there is nobody who is interested and willing to fix it. Drop it. This includes support for VFD displays which have always been used by this board only. Signed-off-by: Wolfgang Denk <[email protected]>
2011-06-22Prepare v2011.06-rc3v2011.06-rc3Wolfgang Denk
Signed-off-by: Wolfgang Denk <[email protected]>
2011-06-21Build fix/update of AFEB9260Sergey Lapin
Make AFEB9260 build again. Based on fix for AT91SAM9260EK. Signed-off-by: Sergey Lapin <[email protected]>
2011-06-21macb: fix compile warning[email protected]
This patch fixes following compile warning: ---8<--- macb.c: In function 'macb_write_hwaddr': macb.c:525:2: warning: dereferencing type-punned pointer will break strict-aliasing rules --->8--- Signed-off-by: Andreas Bießmann <[email protected]>
2011-06-21at91_emac: fix compile warning[email protected]
This patch removes the warning ---8<--- at91_emac.c: In function 'at91emac_write_hwaddr': at91_emac.c:487:2: warning: dereferencing type-punned pointer will break strict-aliasing rules --->8--- Signed-off-by: Andreas Bießmann <[email protected]>
2011-06-21include/asm/arch-at91: update several .h files to ATMEL_xxx name schemeEric Benard
Signed-off-by: Eric Bénard <[email protected]>
2011-06-21cpuat91: fix board supportEric Benard
Signed-off-by: Eric Bénard <[email protected]>
2011-06-21cpu9260/9G20: fix board supportEric Benard
Signed-off-by: Eric Bénard <[email protected]>
2011-06-21arm926ejs/at91/lowlevel_init.S: fix definesEric Benard
atmel rework changed define names which broke this file Signed-off-by: Eric Bénard <[email protected]>
2011-06-21ATMEL spi_dataflash driver - fix to build againReinhard Meyer
The rework effort for ATMEL (AT91/AVR32) accidentially broke build of this driver. Fix this to make it build again. However this driver should be reworked as soon as possible! Signed-off-by: Reinhard Meyer <[email protected]>
2011-06-21AT91 rework: fix TOP9000 files to build againReinhard Meyer
Fix EMK TOP9000 board to build again: - changes required due to ATMEL rework Signed-off-by: Reinhard Meyer <[email protected]>
2011-06-21AT91 rework: fix at91sam(9260/9g20/9xe)ek board port to build again:Reinhard Meyer
Make ATMEL's at91sam9260/9g20/9xe-ek boards build again Signed-off-by: Reinhard Meyer <[email protected]>
2011-06-21Add support for Bluewater Systems Snapper 9260/9G20 modulesRyan Mallon
Add support for Bluewater Systems AT91 based Snapper 9260 and 9G20 single board computer modules. Includes NAND flash and Ethernet support. Signed-off-by: Ryan Mallon <[email protected]>
2011-06-21update arm/at91rm9200 work with rework rework110202Jens Scharsig
* convert at91rm9200ek and eb_cpux9k2 board to ATMEL_xxx name scheme * Fix: timer.c compile error io.h not found with arm/at91rm9200 * update arm920t/at91 to ATMEL_xxx name scheme * update arm920t/at91 soc lib * update at91_emac driver Signed-off-by: Jens Scharsig <[email protected]> Tested-by: Andreas Bießmann <[email protected]>
2011-06-21mx31pdk: Add DHCP commandFabio Estevam
Signed-off-by: Fabio Estevam <[email protected]>
2011-06-21mxc_spi.c: typo fixedHelmut Raiger
Signed-off-by: Helmut Raiger <[email protected]>
2011-06-21imx31_phycore: Fix build by using new relocation schemeFabio Estevam
Signed-off-by: Fabio Estevam <[email protected]>
2011-06-21mx1ads: Fix build by using new relocation schemeFabio Estevam
Signed-off-by: Fabio Estevam <[email protected]>
2011-06-21MX31: QONG: drop config.mkStefano Babic
Remove obsolete config.mk from QONG board. Signed-off-by: Stefano Babic <[email protected]>
2011-06-21omap730p2: fix build breaksAneesh V
Provide SDRAM base address and use SRAM for initial stack Signed-off-by: Aneesh V <[email protected]> Signed-off-by: Sandeep Paulraj <[email protected]>
2011-06-21omap2420h4: fix build breaksAneesh V
DRAM base address and use SRAM for initial stack Signed-off-by: Aneesh V <[email protected]> Signed-off-by: Sandeep Paulraj <[email protected]>
2011-06-21omap1610inn: fix build breaksAneesh V
Provide SDRAM base address and use SRAM for initial stack Signed-off-by: Aneesh V <[email protected]> Signed-off-by: Sandeep Paulraj <[email protected]>
2011-06-21omap1510inn: fix build breaksAneesh V
Provide SDRAM base address and use SRAM for initial stack Signed-off-by: Aneesh V <[email protected]> Signed-off-by: Sandeep Paulraj <[email protected]>
2011-06-21omap5912osk: fix build breaksAneesh V
Provide SDRAM base address and use SRAM for initial stack Signed-off-by: Aneesh V <[email protected]> Signed-off-by: Sandeep Paulraj <[email protected]>