summaryrefslogtreecommitdiffstats
path: root/board/prodrive
Commit message (Collapse)AuthorAgeFilesLines
* Change initdram() return type to phys_size_tBecky Bruce2008-06-121-1/+1
| | | | | | | | | | | | | | | | | | | This patch changes the return type of initdram() from long int to phys_size_t. This is required for a couple of reasons: long int limits the amount of dram to 2GB, and u-boot in general is moving over to phys_size_t to represent the size of physical memory. phys_size_t is defined as an unsigned long on almost all current platforms. This patch *only* changes the return type of the initdram function (in include/common.h, as well as in each board's implementation of initdram). It does not actually modify the code inside the function on any of the platforms; platforms which wish to support more than 2GB of DRAM will need to modify their initdram() function code. Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc MPC8641HPCN. Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
* ppc4xx: Remove implementations of testdram()Stefan Roese2008-06-031-30/+0
| | | | | | | This patch removes the used testdram() implementations of the board that are maintained by myself. Signed-off-by: Stefan Roese <sr@denx.de>
* Big white-space cleanup.Wolfgang Denk2008-05-215-16/+16
| | | | | | | | | | | This commit gets rid of a huge amount of silly white-space issues. Especially, all sequences of SPACEs followed by TAB characters get removed (unless they appear in print statements). Also remove all embedded "vim:" and "vi:" statements which hide indentation problems. Signed-off-by: Wolfgang Denk <wd@denx.de>
* Remove all the search paths from the .lds files.Jason Wessel2008-04-173-3/+0
| | | | | | | The cross compiler is responsible for providing the correct libraries and the logic to find the linking libraries. Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
* Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:Wolfgang Denk2008-04-115-359/+0
| | | | | | | | | | | | | | | | | | | | | | Reverting became necessary after it turned out that the patches in the u-boot-arm repo were modified, and in some cases corrupted. This reverts the following commits: 066bebd6353e33af3adefc3404560871699e9961 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6 c88ae20580b2b01487b4cdcc8b2a113f551aee36 a147e56f03871bba4f05058d5e04ce7deb010b04 d6674e0e2a6a1f033945f78838566210d3f28c95 8c8463cce44d849e37744749b32d38e1dfb12e50 c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d 8bf69d81782619187933a605f1a95ee1d069478d 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d a574a73852a527779234e73e17e7597fd8128882 1377b5583a48021d983e1fd565f7d40c89e84d63 1704dc20917b4f71e373e2c888497ee666d40380 Signed-off-by: Wolfgang Denk <wd@denx.de>
* Merge branch 'master' of git://www.denx.de/git/u-boot-armWolfgang Denk2008-04-085-0/+359
|\
| * Adds support for the Prodrive PMDRA board, based on a DM6441Pieter Voorthuijsen2008-03-305-0/+359
| | | | | | | | Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
* | ppc4xx: Add fdt support to Prodrive alprStefan Roese2008-03-271-1/+24
| | | | | | | | | | | | | | | | Since this board will probably be ported to arch/powerpc in the near future, we add device tree support now. This way we are "ready" for arch/powerpc from now on. Signed-off-by: Stefan Roese <sr@denx.de>
* | ppc4xx: Enable cache support on the ALPR boardPieter Voorthuijsen2008-03-271-0/+9
|/ | | | Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
* ARM: remove useless function board_post_initJean-Christophe PLAGNIOL-VILLARD2008-01-181-5/+0
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* Fix linker scripts: add NOLOAD atribute to .bss/.sbss sectionsWolfgang Denk2008-01-124-4/+4
| | | | | | | | | | | | | | | | | | | With recent toolchain versions, some boards would not build because or errors like this one (here for ocotea board when building with ELDK 4.2 beta): ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab] For many boards, the .bss section is big enough that it wraps around at the end of the address space (0xFFFFFFFF), so the problem will not be visible unless you use a 64 bit tool chain for development. On some boards however, changes to the code size (due to different optimizations) we bail out with section overlaps like above. The fix is to add the NOLOAD attribute to the .bss and .sbss sections, telling the linker that .bss does not consume any space in the image. Signed-off-by: Wolfgang Denk <wd@denx.de>
* ppc4xx: Rework of 4xx serial driver (2)Stefan Roese2007-10-312-26/+0
| | | | | | | | | | Change all linker scripts to reference the changed driver name 4xx_uart.o. Note: In most cased all these explicit referencing of these object files in the linker scripts is not neccessary. Only for manually embedded environment into the U-Boot image, which is not done is most cases. Signed-off-by: Stefan Roese <sr@denx.de>
* board/[m-p]*: Remove obsolete references to CONFIG_COMMANDSJon Loeliger2007-07-094-5/+5
| | | | Signed-off-by: Jon Loeliger <jdl@freescale.com>
* board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).Jon Loeliger2007-07-044-4/+4
| | | | | | | | | | | | | | This is a compatibility step that allows both the older form and the new form to co-exist for a while until the older can be removed entirely. All transformations are of the form: Before: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) After: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) Signed-off-by: Jon Loeliger <jdl@freescale.com>
* ppc4xx: Add pci_pre_init() for 405 boardsStefan Roese2007-06-252-4/+4
| | | | | | | | This patch removes the CFG_PCI_PRE_INIT option completely, since it's not needed anymore with the patch from Matthias Fuchs with the "weak" pci_pre_init() implementation. Signed-off-by: Stefan Roese <sr@denx.de>
* Make "file" command happy with some config.mk files; update CHANGELOGWolfgang Denk2007-05-051-0/+1
|
* Remove BOARDLIBS usage completelyStefan Roese2007-04-231-3/+0
| | | | Signed-off-by: Stefan Roese <sr@denx.de>
* Minor code cleanup.Wolfgang Denk2007-02-271-1/+0
|
* [PATCH] Add missing p3mx.h file to repository (ups)Stefan Roese2007-02-101-0/+34
| | | | Signed-off-by: Stefan Roese <sr@denx.de>
* [PATCH] Add support for Prodrive SCPU (PDNB3 variant) boardStefan Roese2007-01-181-0/+4
| | | | Signed-off-by: Stefan Roese <sr@denx.de>
* [PATCH] Update Prodrive P3Mx supportStefan Roese2007-01-182-6/+61
| | | | Signed-off-by: Stefan Roese <sr@denx.de>
* [PATCH] Update ALPR board filesStefan Roese2007-01-062-20/+11
| | | | | | | This update brings the ALPR board support to the newest version. It also fixes a problem with the NAND driver. Signed-off-by: Stefan Roese <sr@denx.de>
* Merge with /home/hs/TQ/u-boot-devWolfgang Denk2006-12-241-1/+2
|\
| * Added support for the TQM8272 board from TQHeiko Schocher2006-12-211-1/+2
| | | | | | | | Signed-off-by: Heiko Schocher <hs@denx.de>
* | Code cleanup. Update CHANGELOG.Wolfgang Denk2006-11-302-390/+317
| |
* | [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boardsStefan Roese2006-11-2917-0/+9740
| | | | | | | | | | | | | | | | | | This patch adds support for the Prodrive P3M750 (PPC750 & MV64460) and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are quite similar and share the same board directory "prodrive/p3mx" and the same config file "p3mx.h". Signed-off-by: Stefan Roese <sr@denx.de>
* | [PATCH] alpr: remove unused board specific flash driverStefan Roese2006-11-271-70/+0
| | | | | | | | Signed-off-by: Stefan Roese <sr@denx.de>
* | [PATCH] Update Prodrive ALPR board support (440GX)Stefan Roese2006-11-275-82/+118
| | | | | | | | Signed-off-by: Stefan Roese <sr@denx.de>
* | Merge with /home/stefan/git/u-boot/denxStefan Roese2006-11-102-2/+2
|\ \ | |/
| * Move "ar" flags to config.mk to allow for silent "make -s"Wolfgang Denk2006-10-092-2/+2
| | | | | | | | Based on patch by Mike Frysinger, 20 Jun 2006
* | Update ALPR code (NAND support working now)Stefan Roese2006-10-076-213/+185
| | | | | | | | Patch by Stefan Roese, 07 Oct 2006
* | Merge with /home/stefan/git/u-boot/denxStefan Roese2006-09-184-19/+31
|\ \ | |/
| * Add support for a saving build objects in a separate directory.Marian Balakowicz2006-09-013-14/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Modifications are based on the linux kernel approach and support two use cases: 1) Add O= to the make command line 'make O=/tmp/build all' 2) Set environement variable BUILD_DIR to point to the desired location 'export BUILD_DIR=/tmp/build' 'make' The second approach can also be used with a MAKEALL script 'export BUILD_DIR=/tmp/build' './MAKEALL' Command line 'O=' setting overrides BUILD_DIR environent variable. When none of the above methods is used the local build is performed and the object files are placed in the source directory.
* | Add initial support for the ALPR board from ProdriveStefan Roese2006-08-157-0/+1175
|/ | | | | NAND needs some additional testing Patch by Heiko Schocher, 15 Aug 2006
* * Update Intel IXP4xx supportWolfgang Denk2006-05-308-0/+1350
| | | | | | | | | | | - Add IXP4xx NPE ethernet MAC support - Add support for Intel IXDPG425 board - Add support for Prodrive PDNB3 board - Add IRQ support Patch by Stefan Roese, 23 May 2006 [This patch does not include cpu/ixp/npe/IxNpeMicrocode.c which still sufferes from licensing issues. Blame Intel.]
* GCC-4.x fixes: clean up global data pointer initialization for all boards.Wolfgang Denk2006-03-311-4/+2
|
* (no commit message)Wolfgang Denk2005-12-121-0/+1
|
* Code cleanup, especially MIPS for GCC 4.xWolfgang Denk2005-12-041-1/+1
|
* Changed PPC44x startup message (cpu info, speed...) to common style:Stefan Roese2005-11-271-11/+0
| | | | | | | | | | | On PPC44x platforms, the startup message generated in "cpu.c" only comprised the ppc type and revision but not additional informations like speed etc. Those speed infos where printed in the board specific code. This new implementation now prints all CPU infos in the common cpu specific code. No board specific code is needed anymore and therefore removed from all current 44x implementations. Patch by Stefan Roese, 27 Nov 2005
* Add support for Prodrive P3P440 board:Stefan Roese2005-11-226-0/+661
- Added onboard PPC440 DDR autodetection in cpu/ppc/sdram.c - CFG_FLASH_QUIET_TEST added to use the common CFI driver for bank autodetection Patch by Stefan Roese, 22 Nov 2005
OpenPOWER on IntegriCloud