summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-01-31tsec: General cleanupPeter Tyser
- Cleanup formatting of phy_info structures - Fix lines > 80 chars - Fix some random indentation inconsistencies Signed-off-by: Peter Tyser <[email protected]> Signed-off-by: Ben Warren <[email protected]>
2010-01-31tsec: Make functions/data static when possiblePeter Tyser
This is generally good practice and saves ~150 bytes. Signed-off-by: Peter Tyser <[email protected]> Signed-off-by: Ben Warren <[email protected]>
2010-01-31tsec: Clean up Broadcom PHY status parsingPeter Tyser
- Remove unnecessary printing "Enet starting in <speed>/<duplex>" This same information is already printed during normal ethernet operation in the form "Speed: 1000, full duplex". - Add a check for link before determining link speed and duplex If there is no link, speed/duplex don't matter. This also removes the annoying and unneeded "Auto-neg error, defaulting to 10BT/HD" message that occurs when no link is detected. - Whitespace and line > 80 characters cleanup Signed-off-by: Peter Tyser <[email protected]> Signed-off-by: Ben Warren <[email protected]>
2010-01-31tsec: Force TBI PHY to 1000Mbps full duplex in SGMII modePeter Tyser
In SGMII mode the link between a processor's internal TBI PHY and an external PHY should always be 1000Mbps, full duplex. Also, the SGMII interface between an internal TBI PHY and external PHY does not support in-band auto-negotation. Previously, when configured for SGMII mode a TBI PHY would attempt to restart auto-negotation during initializtion. This auto-negotation between a TBI PHY and external PHY would fail and result in unusable ethernet operation. Forcing the TBI PHY and and external PHY to link at 1000Mbps full duplex in SGMII mode resolves this issue of auto-negotation failing. Note that 10Mbps and 100Mbps operation is still possible on the external side of the external PHY even when SGMII is operating at 1000Mbps. The SGMII interface still operates at 1000Mbps, but each byte of data is repeated 100 or 10 times for 10/100Mbps and the external PHY handles converting this data stream into proper 10/100Mbps signalling. Signed-off-by: Peter Tyser <[email protected]> Signed-off-by: Ben Warren <[email protected]>
2010-01-31NET: Fix MAC addr handling for smc911xSeunghyeon Rhee
This patch turns off MAC address mismatch warning when optional eeprom programmed with MAC address is not available. In that case, smc911x's MAC address register has its default value ff:ff:ff:ff:ff:ff and it's not a valid address. This makes eth_initialize() show the warning which has no meaningful information while environment variable ethaddr overrides the address read from the register. If there's no eeprom and the value of MAC address register is not valid after initialization, dev->enetaddr had better not be updated and maintain its initial value 00:00:00:00:00:00, which I think is what eth_initialize() expects. This is not a bug fix. Even without this patch, the driver works fine. It's just for enhancing the way of displaying messages. Signed-off-by: Seunghyeon Rhee <[email protected]> Signed-off-by: Ben Warren <[email protected]>
2010-01-31cs8900_initialize() cleanupMatthias Kaehlcke
cs8900_initialize(): remove unecessary calls to free() and fix memory leak Signed-off-by: Matthias Kaehlcke <[email protected]> Signed-off-by: Ben Warren <[email protected]>
2010-01-31smc91111_eeprom: fix linking errorMike Frysinger
Building for a bf533-stamp ends up with this error: smc91111_eeprom.o: In function `smc91111_eeprom': examples/standalone/smc91111_eeprom.c:58: undefined reference to `memset' make[2]: *** [smc91111_eeprom] Error 1 The new eth_struct definition means gcc has to zero out the structure on the stack, and some gcc versions optimize this with an implicit call to memset. So tweak the structure style to avoid that gcc feature. Signed-off-by: Mike Frysinger <[email protected]> Signed-off-by: Ben Warren <[email protected]>
2010-01-31NetStar: Remove debug junk leaked into eeprom utilityLadislav Michl
This patch removes debug junk leaked into eeprom utility. Signed-off-by: Ladislav Michl <[email protected]> Signed-off-by: Sandeep Paulraj <[email protected]>
2010-01-31NetStar: make crcit utility more readableLadislav Michl
This patch makes the crcit utility more readable Signed-off-by: Ladislav Michl <[email protected]> Signed-off-by: Sandeep Paulraj <[email protected]>
2010-01-31NetStar: Disable CONFIG_CMD_JFFS2Ladislav Michl
This patch removes "CONFIG_CMD_JFFS" from the board config Signed-off-by: Ladislav Michl <[email protected]> Signed-off-by: Sandeep Paulraj <[email protected]>
2010-01-31OMAP3 Move declaration of gpmc_cfg.Tom Rix
Every omap3 board config file declared the global variable gpmc_cfg. This changes moves the declaration to a better location in the arch dependent header file cpu.h. Signed-off-by: Tom Rix <[email protected]> Signed-off-by: Sandeep Paulraj <[email protected]>
2010-01-31Overo GPMC registersScott Ellis
Use appropriate GPMC timings for the LAN9221 controller on the Gumstix Overo expansion boards not the values in arch-omap3/mem.h which are for a different ethernet controller. Signed-off-by: Scott Ellis <[email protected]> Signed-off-by: Sandeep Paulraj <[email protected]>
2010-01-31da830evm: Use table driven pin mux configurationNick Thompson
Tidyup the pin muxer configuration using the Davinci table driven pinmux configuration function and data tables. Signed-off-by: Nick Thompson <[email protected]> Signed-off-by: Sandeep Paulraj <[email protected]>
2010-01-31TI DaVinci: Driver for the davinci SPI controllerSekhar Nori
This adds a driver for the SPI controller found on davinci based SoCs from Texas Instruments. Signed-off-by: Sekhar Nori <[email protected]> Signed-off-by: Sudhakar Rajashekhara <[email protected]> Signed-off-by: Sandeep Paulraj <[email protected]>
2010-01-31cmd_ximg.c: fix error: 'i' undeclaredWolfgang Denk
Fix compile error: cmd_ximg.c: In function 'do_imgextract': cmd_ximg.c:234: error: 'i' undeclared (first use in this function) cmd_ximg.c:234: error: (Each undeclared identifier is reported only once cmd_ximg.c:234: error: for each function it appears in.) Signed-off-by: Wolfgang Denk <[email protected]>
2010-01-31at91: Add esd gmbh OTC570 board supportDaniel Gorsulowski
This patch adds support for esd gmbh OTC570 board. The OTC570 is based on an Atmel AT91SAM9263 SoC. Signed-off-by: Daniel Gorsulowski <[email protected]>
2010-01-27lcd: remove CONFIG_ATMEL_LCD ifdefs from lcd_setfgcolorAnatolij Gustschin
Not all boards defining LCD_COLOR16 are able to set lcd_color_fg/lcd_color_bg correctly. The issue seems to be caused by CONFIG_ATMEL_LCD ifdefs in lcd_setfgcolor() and lcd_setbgcolor(). Actually, the color values passed to these functions are already correct, we don't need to fix them. So remove ifdefs here. Reported-by: Alessandro Rubini <[email protected]> Signed-off-by: Anatolij Gustschin <[email protected]>
2010-01-27include/nomadik.h: add physical address for cldcAlessandro Rubini
Signed-off-by: Alessandro Rubini <[email protected]> Acked-by: Andrea Gallo <[email protected]>
2010-01-27video: add amba-clcd prime-cellAlessandro Rubini
This adds support for the CLCD logic cell. It accepts precompiled register values for specific configuration through a board-supplied data structure. It is used by the Nomadik nhk8815, added by a later patch in this series. Signed-off-by: Alessandro Rubini <[email protected]> Acked-by: Andrea Gallo <[email protected]>
2010-01-27Nand mxc_nand add v1.1 controller supportJohn Rigby
Add support for version 1.1 of the nfc nand flash controller which is on the i.mx25 soc. Signed-off-by: John Rigby <[email protected]> CC: Scott Wood <[email protected]>
2010-01-27Add MX25 support to nand_spl fsl nfc driverJohn Rigby
MX25 has a different version of the fsl_nfc flash controller known as version 1.1. Add support to the nand_spl fsl_nfc driver Versioning differs from mainline mxc kernel driver no consensus yet on if the naming here and in Redboot or the kernel is "correct". Signed-off-by: John Rigby <[email protected]> Signed-off-by: Wolfgang Denk <[email protected]> CC: Scott Wood <[email protected]>
2010-01-27arm926ejs: add nand_spl boot supportJohn Rigby
Add CONFIG_PRELOADER/CONFIG_NAND_SPL support for nand booting to arm926ejs/start.S This is derived from CONFIG_PRELOADER support in arm1136/start.S Signed-off-by: John Rigby <[email protected]> CC: Scott Wood <[email protected]>
2010-01-27env_nand.c: print error message and fail gracefullyWolfgang Denk
env_nand.c would crash silently if a malloc() for the environment buffers failed; make it print an error message and fail gracefully, i. e. use the default environment then. Signed-off-by: Wolfgang Denk <[email protected]> Acked-by: John Rigby <[email protected]>
2010-01-27Nand boot: Add nand boot support for MPC8569mds boardLiu Yu
This patch add nand boot support for MPC8569mds board. Signed-off-by: Liu Yu <[email protected]>
2010-01-27Merge branch 'master' of git://git.denx.de/u-boot-mpc85xxWolfgang Denk
2010-01-27Fix compiler warning in imximage.c due to getline prototypeKumar Gala
imximage.c: In function 'imximage_parse_cfg_file': imximage.c:142: warning: implicit declaration of function 'getline' Signed-off-by: Kumar Gala <[email protected]>
2010-01-2685xx: Add support for 'cpu disable' commandKumar Gala
Support disabling of a core via user command 'cpu disable'. Signed-off-by: Kumar Gala <[email protected]>
2010-01-2686xx: Add support for 'cpu disable' commandKumar Gala
Support disabling of a core via user command 'cpu disable'. Signed-off-by: Kumar Gala <[email protected]>
2010-01-26Add support to disable cpu's in multicore processorsKumar Gala
Add a disable sub-command to the cpu command that allows for disabling cores in multicore processors. This can be useful for systems that are using multicore chips but aren't utilizing all the cores as a way to reduce power and possibly improve performance. Also updated an added missing copyright. Signed-off-by: Kumar Gala <[email protected]>
2010-01-26Merge branch 'master' of git://git.denx.de/u-boot-mpc83xxWolfgang Denk
2010-01-26Merge branch 'master' of git://git.denx.de/u-boot-mpc85xxWolfgang Denk
2010-01-2683xx, kmeter1: fix compile errorHeiko Schocher
- delete double MTDIDS_DEFAULT and MTDPARTS_DEFAULT defines in board config file. - add mising CONFIG_KM_UBI_PARTITION_NAME define Signed-off-by: Heiko Schocher <[email protected]> Signed-off-by: Kim Phillips <[email protected]>
2010-01-26add ability to handle compressed images to imxtractWolfgang Wegner
imxtract currently can not handle compressed images. This patch adds handling for bzip2 and zip compression. In both cases, a destination address has to be specified for extraction. Signed-off-by: Wolfgang Wegner <[email protected]>
2010-01-26ppc: remove -ffixed-r14 gcc option.Joakim Tjernlund
This is no loger needed, free up r14 for general usage. Signed-off-by: Joakim Tjernlund <[email protected]>
2010-01-26ppc: Update README about the new GOT ptr.Joakim Tjernlund
r14 is no longer used as non volatile GOT ptr. Instead the volatile r12 is used so be sure to do GET_GOT in asm code when you need to access global data. Signed-off-by: Joakim Tjernlund <[email protected]>
2010-01-26ppc: Use r12 instead of r14 as GOT pointer.Joakim Tjernlund
r14 is not supposed to be clobbered by functions. Switch to r12 and call GET_GOT when needed. This will allow u-boot to loose the -ffixed-r14 gcc option. Signed-off-by: Joakim Tjernlund <[email protected]>
2010-01-26ppc: Loose GOT access in IRQJoakim Tjernlund
Using the GOT in IRQ handlers requires r14 to be -ffixed-r14. Avoid this by relocatate transfer_to_handler too. This will allow to free up r14 later on. Signed-off-by: Joakim Tjernlund <[email protected]>
2010-01-2585xx/p1_p2_rdb: enable hwconfigVivek Mahajan
Signed-off-by: Vivek Mahajan <[email protected]> Signed-off-by: Kumar Gala <[email protected]>
2010-01-25qe: fixup the snum for MPC8569 Rev2.0Liu Yu
Since 1.0 and 2.0 use different snum table, we fixup the snum value according to SPRN_SVR. Signed-off-by: Liu Yu <[email protected]> Signed-off-by: Kumar Gala <[email protected]>
2010-01-25Fix the local bus divider mappingDave Liu
The real clock divider is 4 times of the bits LCRR[CLKDIV], according the latest RevF RM. Signed-off-by: Dave Liu <[email protected]> Signed-off-by: Kumar Gala <[email protected]>
2010-01-25ppc/85xx: Add ATM config for MPC8569MDSLiu Yu
Signed-off-by: Liu Yu <[email protected]> Signed-off-by: Kumar Gala <[email protected]>
2010-01-25ppc/85xx: Add PIB/ATM support for MPC8569mdsLiu Yu
Signed-off-by: Liu Yu <[email protected]> Signed-off-by: Kumar Gala <[email protected]>
2010-01-25fsl_esdhc: fix wrong clock maskLi Yang
Fix typo in SYSCTL_CLOCK_MASK, which caused residual in high bits of SDCLKFS. Signed-off-by: Jin Qing <[email protected]> Signed-off-by: Li Yang <[email protected]> Signed-off-by: Kumar Gala <[email protected]>
2010-01-25Revert "ppc/p4080: Fix reporting of PME & FM clock frequencies"Kumar Gala
This reverts commit bc20f9a9527afe8ae406a74f74765d4323f04922. The original code was correct. I clearly need glasses or a brown paper bag. Signed-off-by: Kumar Gala <[email protected]>
2010-01-25ppc/p4080: Fix mask width of RCW fields MEM_PLL_RAT, SYS_PLL_RATJames Yang
The masks for MEM_PLL_RAT and SYS_PLL_RAT should have been 5-bits instead of 4. Signed-off-by: James Yang <[email protected]> Signed-off-by: Kumar Gala <[email protected]>
2010-01-26jffs2: fix hangs/crashs when not using CONFIG_JFFS2_PART_SIZEMike Frysinger
Commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042 caused the sector_size to be calculated incorrectly when the part size was not hardcoded. This is because the new code relied on part->size but tried to do the calculation before it was initialized properly, and it did not take into consideration the magic SIZE_REMAINING define. Signed-off-by: Mike Frysinger <[email protected]>
2010-01-26getline: split out for darwin systemsMike Frysinger
At least on OS X 10.5 and older, getline does not exist. So split out the function from the mingw code so that we can pull it in for Darwin systems. Signed-off-by: Mike Frysinger <[email protected]>
2010-01-26tools: give explicit libfdt pathsMike Frysinger
The current libfdt object rules hard depend implicitly on the .depend file being correct. If it isn't, then it is unable to properly compile the objects. Give it a full path like all the other implicit rules here so it will always work in face of .depend issues. Signed-off-by: Mike Frysinger <[email protected]>
2010-01-26gzip/zlib: make features optionalMike Frysinger
If you really want to slim down U-Boot and you would rather use a higher compression scheme (like LZMA), it'd be nice to disable gzip/zlib since these code bases take up a significant amount of space. Signed-off-by: Mike Frysinger <[email protected]>
2010-01-25mkimage: Add Freescale imx Boot Image support (imximage)Stefano Babic
This patch adds support for "imximage" (MX Boot Image) to the mkimage utility. The imximage is used on the Freescales's MX.25, MX.35 and MX.51 processors. Further details under doc/README.imximage. This patch was tested on a Freescale mx51evk board. Signed-off-by: Stefano Babic <[email protected]>