summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap/omap3_core.S
Commit message (Collapse)AuthorAgeFilesLines
* Treewide: remove address of the Free Software FoundationSascha Hauer2012-09-171-4/+0
| | | | | | | The FSF address has changed in the past. Instead of updating it each time the address changes, just drop it completely treewide. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM omap3: make omap3_core.S thumb safeSascha Hauer2012-01-171-2/+6
| | | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Tested-by: Sanjeev Premi <premi@ti.com>
* ARM omap3: remove vector setup from lowlevel codeSascha Hauer2012-01-171-36/+5
| | | | | | | | No need to do this so early. We can't print anything right now anyway, so there is no need to setup vectors. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Tested-by: Sanjeev Premi <premi@ti.com>
* ARM omap3: call a_init from board codeSascha Hauer2012-01-171-9/+0
| | | | | | | | There is no need to call a_init before relocation, so rename the function to omap3_core_init and call it from board code. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Tested-by: Sanjeev Premi <premi@ti.com>
* ARM omap3: remove OMAP3_COPY_CLOCK_SRAMSascha Hauer2012-01-171-8/+0
| | | | | | | | | | The X-loader startup relocates to SRAM anyway, so there is no need to be runnable from flash for the clock code. This config is disabled in all defconfigs anyway, so remove it. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Tested-by: Sanjeev Premi <premi@ti.com>
* omap3: add arch specific dcache invalidateNishanth Menon2010-08-251-0/+43
| | | | | | | | | | | | | | | | | | | | | | Add OMAP3 architecture specific dcache flush back in. Commit 78104ae181f78d83664fdc7522eb632d9c3b2ec9 isolates the cache handling to appropriate handlers, but certain architectures may need special handling esp during boot time. without this patch, building barebox with omap3530_beagle_per_uart_defconfig and attempting to use peripheral download with pusb/pserial will fail as OMAP ROM code depends on 2nd stage bootloaders to clean up things. Discussion Thread: http://www.spinics.net/lists/u-boot-v2/msg01286.html Cc: Michael <mgr@pengutronix.de> Cc: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* OMAP: fix compilationSascha Hauer2010-06-231-1/+1
| | | | | | | This got broken during the switch to implement the lowlevel functions in C. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* rename U-Boot-v2 project to bareboxSascha Hauer2009-12-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* [ARM] Move include/asm-arm/arch-* to arch/arm/*/include/machJean-Christophe PLAGNIOL-VILLARD2009-10-221-3/+3
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* 011-OMAP-add-siliconNishanth Menon2008-06-051-0/+101
[Patch 11/17] U-Boot-V2:ARM:OMAP3: Add support for OMAP3 Silicon files This patch introduces support for OMAP3430 - provides for generic OMAP3 files. Signed-off-by: Nishanth Menon<x0nishan@ti.com>