- 12 Feb, 2012 1 commit
-
-
Mike Frysinger authored
The bf537-stamp shouldn't need this SPI flash workaround. It was added by accident a long time ago through a convoluted series of steps which originated from a customer board (not the bf537-stamp). So drop it to keep people from incorrectly adding it to their own boards. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
- 05 Jul, 2010 1 commit
-
-
Mike Frysinger authored
The common gpio code provides a function for handling the spi boot workaround logic, so switch over to that rather than bang on the gpio MMRs directly. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
- 17 Jan, 2010 1 commit
-
-
Mike Frysinger authored
While the initdram() function makes sense on some arches, it doesn't for Blackfin systems as it's always implemented the same way. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
- 02 Apr, 2009 1 commit
-
-
Mike Frysinger authored
Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
- 25 Mar, 2009 2 commits
-
-
Mike Frysinger authored
Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
Mike Frysinger authored
Use the common net eth functions to setup the env/global data with the MAC address, and properly handle the case where CONFIG_SYS_NO_FLASH is defined. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
- 29 Jan, 2009 1 commit
-
-
Mike Frysinger authored
Import the is_valid_ether_addr() function from the Linux kernel. Signed-off-by:
Mike Frysinger <vapier@gentoo.org> Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
- 28 Jan, 2009 1 commit
-
-
Mike Frysinger authored
The DEBUG code in initdram() is quite old and was never really useful, so just drop it altogether. Common Blackfin debug code does a better job. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
- 18 Oct, 2008 1 commit
-
-
Jean-Christophe PLAGNIOL-VILLARD authored
Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
- 03 Sep, 2008 1 commit
-
-
Ben Warren authored
This addresses all drivers whose initializers have already been moved to board_eth_init()/cpu_eth_init(). Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
- 27 Aug, 2008 1 commit
-
-
Ben Warren authored
Added board_eth_init() function to bf537-stamp board. Removed initialization for the Blackin EMAC driver from net/eth.c Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
- 12 Jun, 2008 1 commit
-
-
Becky Bruce authored
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>
-
- 30 Mar, 2008 1 commit
-
-
Mike Frysinger authored
All of the duplicated code for Blackfin processors and boot modes have been unified. After all, the core is the same for all processors, just the peripheral set differs (which gets handled in the drivers). Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
- 16 Mar, 2008 2 commits
-
-
Mike Frysinger authored
Stop tying things to the processor that should be tied to other defines and change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build system to select the -mcpu option. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
Mike Frysinger authored
This moves the Blackfin-common bootldr command out of the BF537-STAMP specific board directory and into the common directory so that all Blackfin boards may utilize it. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
- 05 Feb, 2008 1 commit
-
-
Mike Frysinger authored
Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
- 16 Jan, 2008 1 commit
-
-
Jean-Christophe PLAGNIOL-VILLARD authored
and move is_valid_ether_addr board file Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
- 15 Sep, 2007 1 commit
-
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
- 09 Jul, 2007 1 commit
-
-
Jon Loeliger authored
Signed-off-by:
Jon Loeliger <jdl@freescale.com>
-
- 03 Jul, 2007 1 commit
-
-
Jon Loeliger authored
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>
-
- 05 Apr, 2007 1 commit
-
-
Aubrey Li authored
-
- 18 Mar, 2007 1 commit
-
-
Aubrey Li authored
-