summaryrefslogtreecommitdiffstats
path: root/arch/ppc/lib
Commit message (Collapse)AuthorAgeFilesLines
* rename U-Boot-v2 project to bareboxSascha Hauer2009-12-153-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | This has been done with the following script: find -path ./.git -prune -o -type f -print0 | xargs -0 -r sed -i \ -e 's/u2boot/barebox/g' \ -e 's/U2Boot/barebox/g' \ -e 's/U-boot V2/barebox/g' \ -e 's/u-boot v2/barebox/g' \ -e 's/U-Boot V2/barebox/g' \ -e 's/U-Boot-v2/barebox/g' \ -e 's/U_BOOT/BAREBOX/g' \ -e 's/UBOOT/BAREBOX/g' \ -e 's/uboot/barebox/g' \ -e 's/u-boot/barebox/g' \ -e 's/u_boot/barebox/g' \ -e 's/U-Boot/barebox/g' \ -e 's/U-boot/barebox/g' \ -e 's/U-BOOT/barebox/g' find -path ./.git -prune -o \( -name "*u-boot*" -o -name "*uboot*" -o -name "*u_boot*" \) -print0 | \ xargs -0 -r rename 's/u[-_]?boot/barebox/' It needs some manual fixup following in the next patch Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* [PPC] Move include/asm-ppc/arch-* to arch/ppc/*/include/machJean-Christophe PLAGNIOL-VILLARD2009-10-221-1/+1
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* remove SHOW_BOOT_PROGRESSSascha Hauer2009-03-192-14/+0
| | | | | | Though useful it is currently unsued and broken. Should be reimplemented Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* fix compiler warningSascha Hauer2008-08-131-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* [memory layout]: streamline memory layoutSascha Hauer2008-06-041-1/+2
| | | | | | | Memory layout can now be specified via kconfig options. Two possibilities exist: default layout means the layout is stack / malloc heap / U-Boot. The user can also specify fixed addresses for each TEXT_BASE / stack / malloc heap.
* [ppc] Fixed orphaned CONFIG_INTERRUPTSCarsten Schlote2008-02-212-2/+2
| | | | | | Changed CONFIG to CONFIG_USE_IRQ Signed-off-by: Carsten Schlote <c.schlote@konzeptpark.de>
* - Add functions to register image handlers for booting uImagesSascha Hauer2008-02-201-17/+29
|
* CONFIG_MODULE -> CONFIG_MODULESSascha Hauer2007-10-041-1/+1
|
* fix read_file()Sascha Hauer2007-10-011-1/+1
|
* add powerpc specific bits for modulesSascha Hauer2007-10-012-0/+298
|
* move ppc assembler templates to include/asm-ppcSascha Hauer2007-09-223-4/+4
|
* whitespace cleanupSascha Hauer2007-09-131-2/+2
|
* further reloc fixesSascha Hauer2007-07-251-1/+15
|
* use memmap() to save one memcpy call in bootmSascha Hauer2007-07-151-11/+15
|
* consolidate cpu_init_*Sascha Hauer2007-07-121-3/+0
|
* remove unused extern declarationSascha Hauer2007-07-121-3/+0
|
* use reset_cpu()Sascha Hauer2007-07-051-1/+1
|
* svn_rev_688Sascha Hauer2007-07-051-13/+14
| | | | fix compiler warnings
* svn_rev_683Sascha Hauer2007-07-052-22/+1
| | | | more cleanups, fix compiler warnings
* svn_rev_663Sascha Hauer2007-07-051-1/+0
|
* svn_rev_653Sascha Hauer2007-07-051-1/+1
| | | | restructure tree, add reginfo command
* svn_rev_624Sascha Hauer2007-07-051-5/+3
| | | | first successfull boot
* svn_rev_615Sascha Hauer2007-07-051-0/+2
|
* svn_rev_612Sascha Hauer2007-07-051-0/+49
|
* svn_rev_610Sascha Hauer2007-07-051-57/+0
| | | | no global data
* svn_rev_609Sascha Hauer2007-07-051-312/+106
| | | | on our way to boot...
* svn_rev_598Sascha Hauer2007-07-051-1/+1
| | | | no interrupts
* svn_rev_597Sascha Hauer2007-07-051-0/+2
| | | | no interrupts
* svn_rev_596Sascha Hauer2007-07-051-39/+2
| | | | remove usec2ticks and ticks2usec
* svn_rev_538Sascha Hauer2007-07-052-25/+24
| | | | several powerpc fixes
* svn_rev_526Sascha Hauer2007-07-051-4/+4
| | | | CFG_CACHELINESIZE -> CONFIG_CACHELINE_SIZE
* svn_rev_517Sascha Hauer2007-07-051-1/+1
| | | | fix comppiler warning
* svn_rev_463Sascha Hauer2007-07-051-1/+8
| | | | make ppc compile again
* svn_rev_280Sascha Hauer2007-07-052-0/+463
| | | | move ppc linux startup to arch/ppc
* svn_rev_195Sascha Hauer2007-07-051-15/+0
| | | | remove unneeded timer functions
* svn_rev_183Sascha Hauer2007-07-051-293/+19
| | | | | | | | | | | | restructure ppc startup process. Instead of doing the whole initialization sequence in flash, we now initialize sdram very early in the start sequence and relocate u-boot into RAM. Also U-Boot is now linked to address 0x0 and is also executed from there. This gives the advantage that we see the correct offsets in the objdump and we do not need to hassle with relocation anymore. The code is still position independent and compiled with -fPIC, but this could be removed.
* svn_rev_173Sascha Hauer2007-07-051-37/+11
| | | | WIP
* svn_rev_166Sascha Hauer2007-07-052-434/+12
| | | | ppc startup cleaunup
* svn_rev_163Sascha Hauer2007-07-051-152/+96
| | | | move setup of bd_t to extra function, add some debug PUTHEX_LL
* svn_rev_155Sascha Hauer2007-07-0511-0/+2084
on the way to compile powerpc