Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Change initdram() return type to phys_size_t | Becky Bruce | 2008-06-12 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | 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> | |||
* | board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols. | Jon Loeliger | 2007-07-10 | -2/+2 |
| | | | | | | | | Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. Those always evaluated TRUE, and thus were always compiled even when IDE really wasn't defined/wanted. Signed-off-by: Jon Loeliger <jdl@freescale.com> | |||
* | - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the | Bartlomiej Sieka | 2006-11-01 | -3/+2 |
| | | | | | | | | MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with MPC5XXX_WU_GPIO_DATA_O for affected boards. - Add defintions for some MPC5XXX GPIO pins. | |||
* | Coding Style cleanup | Wolfgang Denk | 2006-05-03 | -12/+7 |
| | ||||
* | Add support for BC3450 board | dzu@denx.de | 2006-04-21 | -0/+677 |
Signed-off-by: dzu@denx.de <dzu@denx.de> |