summaryrefslogtreecommitdiffstats
path: root/board/pm9263
Commit message (Collapse)AuthorAgeFilesLines
* move boards to arch/<architecure>/boardsJean-Christophe PLAGNIOL-VILLARD2010-07-2310-442/+0
| | | | | | | | | | | | this will allow each arch to handle the boards more simply and depending on there need the env var BOARD will refer to the current board dirent for sandbox as we have only one board the board dirent is arch/sandbox/board Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* fix _update scriptsSascha Hauer2010-05-031-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* cfi_flash: move include/cfi_flash.c next to driverSascha Hauer2010-02-081-1/+0
| | | | | | | | This file has no useful things for others than the driver, so move it next to the driver and remove the corresponding include from other files. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* rename U-Boot-v2 project to bareboxSascha Hauer2009-12-151-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* pm9263: add nand supportJean-Christophe PLAGNIOL-VILLARD2009-11-021-0/+50
| | | | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Cc: Ilko Iliev <iliev@ronetix.at> 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-4/+4
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* at91sam9: switch to the same api as the kernelJean-Christophe PLAGNIOL-VILLARD2009-10-204-351/+135
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* at91: add cpu devices common apiJean-Christophe PLAGNIOL-VILLARD2009-10-201-31/+5
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* register env as env0 and not as envSascha Hauer2009-09-291-2/+2
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* remove id fields from struct device_dSascha Hauer2009-07-211-4/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* register sdram devices correctlySascha Hauer2009-07-211-3/+7
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Get rid of DEVICE_TYPE_CONSOLE usageSascha Hauer2009-07-211-1/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Get rid of DEVICE_TYPE_DRAM usageSascha Hauer2009-07-211-2/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Get rid of DEVICE_TYPE_ETHER usageSascha Hauer2009-07-211-1/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* dev_add_partition -> devfs_add_partitionSascha Hauer2009-07-211-2/+2
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* [pm9263] fix update_root scriptMarc Kleine-Budde2009-05-181-1/+1
| | | | | | use correct image ("jffs2") to flash root Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* Default environments: Do not continue when tftp failedSascha Hauer2008-11-141-1/+1
| | | | | | | When we fail to download the kernel image (for example when the user pressed ctrl-c) do not try to boot the image Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* [pm9263] use define rather than plain integer value for ↵Marc Kleine-Budde2008-10-271-1/+1
| | | | | | | | | armlinux_set_architecture armlinux_set_architecture uses a plain integer value, this patch changes this to use the define from mach-types.h Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [pm9263] remove ifdef around dev_add_partitionMarc Kleine-Budde2008-09-021-2/+0
| | | | | | | | This patch removed the ifdef around dev_add_partition. Since dev_add_partition becomes a void function if compiling u-boot w/o partition support. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [pm9263] add sane default environemntMarc Kleine-Budde2008-09-027-27/+114
| | | | | | This patch adds a sane default environemnt for the pm9263 bsp. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [pm9263] use correct architecture a.k.a. machine IDMarc Kleine-Budde2008-08-291-1/+1
| | | | | | | The "pm9263" has the official machie ID 0x5c3, not 0x4b2. This patche fixes this. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* PM9263 board: add lowlevel_init to start from resetSascha Hauer2008-08-262-5/+326
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Net: Remove all hardcoded MAC addresses from default environmentsSascha Hauer2008-08-201-1/+0
| | | | | | | While very convenient during debugging having MAC addresses in default environments is a very bad idea. Stop it! Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* add Ronetix pm9263 board supportSascha Hauer2008-08-019-0/+233
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>