summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 5xxx: write MAC address to mac-address and local-mac-addressTimur Tabi2007-05-051-0/+4
| | | | | | | | | | Some device trees have a mac-address property, some have local-mac-address, and some have both. To support all of these device trees, ftp_cpu_setup() should write the MAC address to mac-address and local-mac-address, if they exist. Signed-off-by: Timur Tabi <timur@freescale.com> Acked-by: Grant Likely <grant.likely@secretlab.ca>
* [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot messageGrzegorz Wianecki2007-04-292-6/+14
| | | | | | | | | | MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up message. Use PVR to distinguish between the two variants, and print proper CPU information. Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com> Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
* [PATCH] simplify silent consoleLadislav Michl2007-04-252-46/+12
| | | | | Signed-off-by: Ladislav Michl <ladis@linux-mips.org> Acked-by: Stefan Roese <sr@denx.de>
* Fix file modeStefan Roese2007-04-231-0/+0
| | | | Signed-off-by: Stefan Roese <sr@denx.de>
* Merge with git://www.denx.de/git/u-boot.gitStefan Roese2007-04-239-42/+76
|\
| * Cleanup compiler warnings, update CHANGELOGWolfgang Denk2007-04-203-13/+59
| | | | | | | | Signed-off-by: Wolfgang Denk <wd@denx.de>
| * Merge with /home/dzu/src/git/u-bootWolfgang Denk2007-04-202-13/+2
| |\
| | * Fix breakage of NC650 board with respect to nand support.Detlev Zundel2007-04-202-13/+2
| | | | | | | | | | | | Signed-off-by: Detlev Zundel <dzu@denx.de>
| * | Merge with git://www.denx.de/git/u-boot-testingWolfgang Denk2007-04-201-1/+1
| |\ \
| * \ \ Merge with /home/wd/git/u-boot/custodian/u-boot-armWolfgang Denk2007-04-201-9/+12
| |\ \ \
| | * \ \ Merge with git://www.denx.de/git/u-boot.gitPeter Pearse2007-04-19468-9037/+47740
| | |\ \ \ | | | | |/ | | | |/|
| | * | | Move ppearse to ARM board listPeter Pearse2007-04-171-9/+12
| | | | | | | | | | | | | | | | | | | | | | | | | Add Konstantin Kletschke for scb9328. Signed-off-by: Peter Pearse <peter.pearse@arm.com>
| * | | | Fix serious pointer bug with bootm and reserve map.Gerald Van Baren2007-04-193-7/+3
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | What was suppose to be a stack variable was declared as a pointer, overwriting random memory. Also moved the libfdt.a requirement into the main Makefile. That is The U-Boot Way.
* | | | [PATCH] Avoid assigning PCI resources from zero addressSergei Shtylyov2007-04-231-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE core complains and IDE drivers fails to work. Also, assigning zero to a BAR was illegal according to PCI 2.1 (the later revisions seem to have excluded the sentence about "0" being considered an invalid address) -- so, use a reasonable starting value of 0x1000 (that's what the most Linux archs are using). Alternatively, one might have fixed the calls to pci_set_region() individually (some code even seems to have taken care of this issue) but that would have been a lot more work. :-) Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Acked-by: Stefan Roese <sr@denx.de>
* | | | [patch] setenv(...) can delete environmentalvariablesJeffrey Mann2007-04-231-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | update setenv() function so that entering a NULL value for the variable's value will delete the environmental variable Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com> Acked-by: Stefan Roese <sr@denx.de>
* | | | [patch] use unsigned char in smc91111 driver for macMike Frysinger2007-04-231-4/+4
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | the v_mac variable in the smc91111 driver is declared as a signed char ... this causes problems when one of the bytes in the MAC is "signed" like 0xE0 because when it gets printed out, you get a display like: 0xFFFFFFE0 and that's no good Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* | | [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculationDomen Puncer2007-04-201-1/+1
|/ / | | | | | | | | | | | | | | | | G2 core reference manual says decrementer and time base are decreasing/increasing once every 4 bus clock cycles. Lets fix it, so time in Linux won't run twice as fast Signed-off-by: Domen Puncer <domen.puncer@telargo.com> Acked-by: Grant Likely <grant.likely@secretlab.ca>
* | Clenaup, update CHANGELOGWolfgang Denk2007-04-184-3/+54
| | | | | | | | Signed-off-by: Wolfgang Denk <wd@denx.de>
* | Merge with /home/wd/git/u-boot/custodian/u-boot-fdtWolfgang Denk2007-04-1814-343/+770
|\ \
| * | Fix the ft_cpu_setup() property settings.Gerald Van Baren2007-04-151-54/+135
| | | | | | | | | | | | | | | | | | Use "setter" functions instead of flags, cleaner and more flexible. It also fixes the problem noted by Timur Tabi that the ethernet MAC addresses were all being set incorrectly to the same MAC address.
| * | Merge git://www.denx.de/git/u-boot into fdt-cmdGerald Van Baren2007-04-145-11/+158
| |\ \
| * | | Improve the bootm command for CONFIG_OF_LIBFDTGerald Van Baren2007-04-142-13/+77
| | | | | | | | | | | | | | | | | | | | | | | | In bootm, create the "/chosen" node only if it doesn't already exist (better matches the previous behavior). Update for proper reserved memory map handling for initrd.
| * | | Add some utilities to manipulate the reserved memory map.Gerald Van Baren2007-04-143-0/+103
| | | |
| * | | Moved fdt command support code to fdt_support.cGerald Van Baren2007-04-067-275/+412
| | | | | | | | | | | | | | | | | | | | ...in preparation for improving the bootm command's handling of fdt blobs. Also cleaned up some coding sloppiness.
| * | | libfdt: Make fdt_check_header() publicGerald Van Baren2007-04-066-7/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed _fdt_check_header() to fdt_check_header() and made it part of the interface - it is a useful routine. Also did some asthetics cleanup to the include files (headers).
* | | | Update CHANGELOGWolfgang Denk2007-04-181-0/+58
| | | | | | | | | | | | | | | | Signed-off-by: Wolfgang Denk <wd@denx.de>
* | | | Merge with /home/wd/git/u-boot/custodian/u-boot-mpc86xxWolfgang Denk2007-04-186-126/+198
|\ \ \ \
| * | | | Add PIXIS FPGA support for MPC8641HPCN board.Haiying Wang2007-04-096-126/+198
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move the 8641HPCN's PIXIS code to the new directory board/freescale/common/ as it will be shared by future boards not in the same processor family. Write a "pixis_reset" command that utilizes the FPGA reset sequencer to support alternate soft-reset options such as using the "alternate" flash bank, enabling the watch dog, or choosing different CPU frequencies. Add documentation for the pixis_reset to README.mpc8641hpcn. Signed-off-by: Haiying Wang <haiying.wang@freescale.com> Signed-off-by: Jon Loeliger <jdl@freescale.com>
* | | | | Merge with /home/wd/git/u-boot/custodian/u-boot-netWolfgang Denk2007-04-182-0/+25
|\ \ \ \ \
| * | | | | Update usage of 'nc' in README.NetConsoleIgor Marnat2007-04-041-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added information about usage of NetConsole on systems where the -l and -p switches are mutually exclusive. Signed-off-by: Igor Marnat <marny@rambler.ru> Signed-off-by: Ben Warren <bwarren@qstreams.com>
| * | | | | net - Support ping reply when processing net-loopEd Swarthout2007-03-071-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY. This permits the ping command to test the phy interface when the phy is put in loopback mode (typically by setting register 0 bit 14). It also allows the port to respond to an external ping when u-boot is processing some other net command (such as tftp). This is useful when tftp appears to hang. Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> Signed-off-by: Ben Warren <bwarren@qstreams.com>
* | | | | | Cleanup, update CHANGELOGWolfgang Denk2007-04-182-3/+497
| | | | | | | | | | | | | | | | | | | | | | | | Sigend-off-by: Wolfgang Denk <wd@denx.de>
* | | | | | Merge with /home/wd/git/u-boot/custodian/u-boot-74xx-7xxWolfgang Denk2007-04-1825-56/+4388
|\ \ \ \ \ \
| * \ \ \ \ \ Merge with /home/git/u-bootWolfgang Denk2007-03-0812-644/+171
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge with /home/git/u-bootWolfgang Denk2007-03-0852-118/+7778
| |\ \ \ \ \ \ \
| * | | | | | | | Some code cleanup.Wolfgang Denk2007-03-048-96/+80
| | | | | | | | |
| * | | | | | | | Merge with http://opensource.freescale.com/pub/scm/u-boot-7448hpc2.gitWolfgang Denk2007-03-0423-28/+4376
| |\ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|/ | |/| | | | | | |
| | * | | | | | | Merge branch 'master' into hpc2roy zang2007-02-2892-1446/+7523
| | |\ \ \ \ \ \ \ | | | | |_|/ / / / | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: drivers/Makefile Fix the merge conflict in file drivers/Makefile Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
| | * | | | | | | Merge branch 'master' into hpc2roy zang2007-02-1230-1133/+877
| | |\ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ Merge branch 'master' into hpc2roy zang2007-01-3029-8/+2885
| | |\ \ \ \ \ \ \ \
| | * | | | | | | | | use CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAProy zang2007-01-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007 fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support mpc7448hpc2 board.
| | * | | | | | | | | Merge branch 'master' into hpc2roy zang2007-01-2277-290/+7685
| | |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: drivers/cfi_flash.c The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007 fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support mpc7448hpc2 board.
| | * \ \ \ \ \ \ \ \ \ Merge branch 'master' into hpc2roy zang2007-01-0439-40/+3775
| | |\ \ \ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ \ \ \ Merge /home/roy/CVS/7448/Open_Source/u-boot.git.devroy zang2006-12-04154-4417/+26556
| | |\ \ \ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | | Slight code clean up.roy zang2006-12-043-9/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add comments, delete duplicate define and remove spaces. Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
| | | * | | | | | | | | | | Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The originalroy zang2006-12-041-11/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | multiplier table can not refect the real PLL clock behavior of these processors. Please refer to the hardware specification for detailed information of the corresponding processors. Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
| | | * | | | | | | | | | | Remove the static MAC address, ip address, server ip, netmask androy zang2006-12-041-11/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gateway ip for network setting. Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
| | | * | | | | | | | | | | Remove the duplicate memory test code for mpc744ihpc2 board.roy zang2006-12-042-400/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a memory test is needed, please use the functions in post/memory.c or memtest command. Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
| | | * | | | | | | | | | | Fix the exception occuring in RAM table search issue.roy zang2006-12-013-21/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The original search_one_table() function code can only processes the search for the exception occurring in FLASH/ROM, because the exception and fixup table usually locate in FLASH. If the exception address is also in FLASH, it will be OK. If the exception occurs in RAM, after the u-boot relocation, a relocation offset should be added. clean up the code in cpu/74xx_7xx/cpu.c Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
| | | * | | | | | | | | | | Fix the confilcts when merging 'master' into hpc2.roy zang2006-12-01106-2036/+22489
| | | |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The conflicts due to a new mpc7448 p3m7448 board is in the main tree. Merge branch 'master' into hpc2 Conflicts: MAKEALL cpu/74xx_7xx/cpu.c cpu/74xx_7xx/cpu_init.c cpu/74xx_7xx/speed.c