summaryrefslogtreecommitdiffstats
path: root/board/omap
Commit message (Collapse)AuthorAgeFilesLines
* omap3evm: Add basic support for the boardSanjeev Premi2009-12-173-0/+303
| | | | | | | | | | | | This patch adds support for OMAP3EVM. It does the following: - Adds OMAP3EVM as an option in Kconfig. - Adds choice for UART1/UART3 for serial console - Minimal initializations for the board - Updates to makefile Signed-off-by: Sanjeev Premi <premi@ti.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* documentation updatesJuergen Beisert2009-12-152-41/+51
| | | | | Signed-off-by: Juergen Beisert <jbe@pengutronix.de> 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>
* OMAP3430-SDP: Compile fixesAnand Gadiyar2009-12-111-19/+1
| | | | | Signed-off-by: Anand Gadiyar <gadiyar@ti.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* beagle board: Compile fixesSascha Hauer2009-12-101-18/+2
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* arm/kconfig: inverse the board selectionJean-Christophe PLAGNIOL-VILLARD2009-11-021-1/+0
| | | | | | | | | instead of select first the board which will select the arch, now first choice the arch to filter the possible boards as it's already done for omap Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* [ARM] Move include/asm-arm/arch-* to arch/arm/*/include/machJean-Christophe PLAGNIOL-VILLARD2009-10-224-18/+18
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* remove id fields from struct device_dSascha Hauer2009-07-213-3/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* register sdram devices correctlySascha Hauer2009-07-212-8/+17
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Get rid of DEVICE_TYPE_CONSOLE usageSascha Hauer2009-07-212-2/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Get rid of DEVICE_TYPE_DRAM usageSascha Hauer2009-07-212-6/+2
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Remove all ARM __raw_* functions. They are mixed all overJuergen Beisert2009-07-012-30/+30
| | | | | | | the place. This clean up all ARM architectures to use only one set of io functions. Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* OMAP: SDRC MCFG Register configuration corrected for SDP3430.Sascha Hauer2008-10-071-32/+13
| | | | | | Signed-off-by: Shankarganesh K <shankarganesh@ti.com> Acked-By: Nishanth Menon <nm@ti.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Boards:OMAP: Add GPMC initNishanth Menon2008-09-152-0/+25
| | | | | | | This patch adds support for GPMC initialization to existing board files - beagle and sdp3430 Signed-off-by: Nishanth Menon <x0nishan@ti.com>
* Board:OMAP:NAND introduce generic NAND support This introduces generic nand ↵Nishanth Menon2008-09-153-0/+214
| | | | | | device support including common configurations used on various OMAP platforms Signed-off-by: Nishanth Menon <x0nishan@ti.com>
* This patch adds support for Beagle Board.Raghavendra KH2008-08-203-0/+287
| | | | | | | | | | | | | Beagle board from TI is a development platform based on TI's OMAP3530 silicon. You can find more about Beagle Board here: www.beagleboard.org More on OMAP3530 (including documentation can be found here): http://focus.ti.com/docs/prod/folders/print/omap3530.html Signed-off-by: Raghavendra KH <r-khandenahally@ti.com>
* Introduce a common board header for functions required by platform.SRaghavendra KH2008-08-202-9/+11
| | | | | | | | | | | This will prevent redundancies of multiple board-xyz.h files all doing the same thing. This deletes the redundant board-sdp343x.h and fixes the corresponding .c for the change. Signed-off-by: Raghavendra KH <r-khandenahally@ti.com>
* Commit ee6d36a5405305f3bbdb0457948c219731b3d9cc introduced requirementNishanth Menon2008-06-111-0/+3
| | | | | for default functions be registered. Without this accessing /dev/ram0 will not work on SDP3430 in the default config.
* 016-OMAP-add-SDP3430-part2Nishanth Menon2008-06-052-0/+713
| | | | | | | | [Patch 16/17] U-Boot-V2:ARM:OMAP3: Add support for SDP3430 board file This patch introduces support for SDP3430 board file. Signed-off-by: Nishanth Menon<x0nishan@ti.com>
* 015-OMAP-add-SDP3430Nishanth Menon2008-06-055-0/+181
[Patch 15/17] U-Boot-V2:ARM:OMAP3: Add support for SDP3430 support files This patch introduces support for OMAP Boards common infrastructure. Signed-off-by: Nishanth Menon<x0nishan@ti.com>