summaryrefslogtreecommitdiffstats
path: root/board
Commit message (Collapse)AuthorAgeFilesLines
* documentation updatesJuergen Beisert2009-12-1510-71/+93
| | | | | 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-1557-150/+150
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* cpuimx27 : use flash bbtEric Benard2009-12-151-0/+1
| | | | | Signed-off-by: Eric Benard <eric@eukrea.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Some doxygen related fixesJuergen Beisert2009-12-147-9/+16
| | | | | | | | | | | | | | | | | | | | | | | Nishanth Menon wrote: > no signed off by and no diffstat? Ups. > can you use git-format-patch to send please? it is easier to review. Sure. Here it comes: jbe ------8<---------8<---------8<---------8<---------8<---------8<---- Subject: [PATCH] Some doxygen related fixes: - fix a few doxygen comments that are used in a wrong way - move some pages and their content to a better place in the generated documentation Signed-off-by: Juergen Beisert <jbe@pengutronix.de> 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>
* pcm038: Use a flash based bbtSascha Hauer2009-12-101-2/+3
| | | | 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>
* pcm043: Add MMU supportSascha Hauer2009-12-101-0/+26
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* pcm043: add display supportSascha Hauer2009-12-101-0/+53
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* mx35 3stack display supportJuergen nogit Beisert2009-12-101-0/+69
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* PCA100: initialize pll in assembler codeSascha Hauer2009-12-032-43/+18
| | | | | | | | The PLL initialisation does not work properly if run from SDRAM. Move the initialisation code to lowlevel init which is run in NFC RAM. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* i.MX35 3stack: several enhancementsMarc Kleine-Budde2009-12-035-401/+547
| | | | | | | | | | - Add support for booting from NAND - Add support for internal Boot mode - Add I2C PMIC support - Enable FEC Ethernet controller Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Eukrea CPUIMX27 : update documentationEric Benard2009-12-031-0/+1
| | | | | Signed-off-by: Eric Benard <eric@eukrea.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Eukrea CPUIMX27 : Add MMU supportEric Benard2009-12-031-0/+26
| | | | | Signed-off-by: Eric Benard <eric@eukrea.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Eukrea CPUIMX27 : add console on Quad UART supportEric Benard2009-12-031-7/+58
| | | | | | | | The SOM can integrate a 16550 Quad UART which can be used for serial console. Signed-off-by: Eric Benard <eric@eukrea.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Eukrea CPUIMX27 : add NOR flash size configurationEric Benard2009-12-031-1/+11
| | | | | | | | | | 64MB strataflash consist in 2x256Mb flashs. So we must declare 2 cfi_flash in order to have both 256Mb flash geometry properly detected. For flash <= 32 MB we prefer not to register the second cfi_flash which would be an alias of the first one. Signed-off-by: Eric Benard <eric@eukrea.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Eukrea CPUIMX27 : add SDRAM size choiceEric Benard2009-12-032-4/+21
| | | | | | | | Add a menu entry and proper settings for 128MB and 256MB RAM size. Signed-off-by: Eric Benard <eric@eukrea.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* at91sam9260ek: Reset ethernet phy during initSascha Hauer2009-12-031-0/+34
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* mx25-3stack, pcm043: use IMX_FEC_BASE defineMarc Kleine-Budde2009-11-242-2/+2
| | | | Signed-off-by: Marc Kleine-Budde <mkl@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>
* at91: add support for the at91sam9263ek board of AtmelJean-Christophe PLAGNIOL-VILLARD2009-11-0211-0/+462
| | | | | | | | | | | Here is the page on Atmel website: http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4057 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Cc: Nicolas Ferre <nicolas.ferre@atmel.com> Cc: Patrice VILCHEZ <patrice.vilchez@atmel.com> Cc: Sedji Gaouaou <sedji.gaouaou@atmel.com> 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>
* a9m2410dev: compile fixesSascha Hauer2009-10-281-1/+3
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Merge branch 'for-sascha' of git://uboot.jcrosoft.org/u-boot-v2 into from-jeanSascha Hauer2009-10-2845-113/+113
|\ | | | | | | | | | | | | | | | | Conflicts: board/a9m2440/a9m2440.c board/pcm043/pcm043.c drivers/nand/nand_imx.c Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
| * [M68K] Move include/asm-m68k/{arch,proc}-* to arch/m68k/*/include/{mach,proc}Jean-Christophe PLAGNIOL-VILLARD2009-10-226-9/+9
| | | | | | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
| * [PPC] Move include/asm-ppc/arch-* to arch/ppc/*/include/machJean-Christophe PLAGNIOL-VILLARD2009-10-222-3/+3
| | | | | | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
| * [SANDBOX] Move include/asm-sandbox/arch-* to arch/sandbox/*/include/machJean-Christophe PLAGNIOL-VILLARD2009-10-224-5/+5
| | | | | | | | 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-2233-95/+95
| | | | | | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* | A9M2440: Addapting the default environmentJuergen Beisert2009-10-283-9/+9
| | | | | | | | | | | | Adapting the default environment to support booting from network and NAND Signed-off-by: Juergen Beisert <juergen@kreuzholzen.de>
* | A9M2440: Be able to configure things baseboard dependentJuergen Beisert2009-10-284-40/+124
| | | | | | | | | | | | | | | | | | There is no really generic way to configure the S3C2440 CPU with fits to all possible baseboards. This patch separates things into the CPU card related and baseboard related things. This ensures to be able to configure things for each possible baseboard without modifying/patching the main card source. Signed-off-by: Juergen Beisert <juergen@kreuzholzen.de>
* | A9M2440: Use external GPIO settings to setup the SDRAMJuergen Beisert2009-10-283-70/+251
| | | | | | | | | | | | | | | | | | | | | | | | | | The generic A9M2440 comes in many SDRAM variantes. Two GPIO pins describing the populated SDRAM devices. This patch adds some code to query the setting and setup a correct SDRAM configuration out of four possible variants. Due to the lack of hardware the 16 MiB and 128 MiB case is untested yet. Due to the 32 MiB configuration we must link the u-boot-v2 always to address 0x31fc0000. Even for the 64 MiB and 128 MiB configuration. Signed-off-by: Juergen Beisert <juergen@kreuzholzen.de>
* | A9M2440: Generic code should support generic hardwareJuergen Beisert2009-10-282-11/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | The generic A9M2440 comes with a CS8900 network controller at chip select 5. There are custom specific variants available without this device, but this case will be handled in a separate baseboard file. The current Linux-2.6.31 CS8900 network driver is a very poor piece of code. It needs some patches to also work with this platform. So, I add two kernel parameters to be able to use this network device also in the NFS rootfs case (to setup media and MAC). Signed-off-by: Juergen Beisert <juergen@kreuzholzen.de>
* | A9M2440: Fix documentationJuergen Beisert2009-10-281-16/+30
| | | | | | | | | | | | | | The generic A9M2440 comes in many variantes. Mostly with different SDRAM and NAND populations. This patch reflects and describes these variants. Signed-off-by: Juergen Beisert <juergen@kreuzholzen.de>
* | A9M2440: Just clean upJuergen Beisert2009-10-281-3/+3
| | | | | | | | | | | | Just clean up whitespaces. Signed-off-by: Juergen Beisert <juergen@kreuzholzen.de>
* | Adapt pcm043 platform to boot from NANDJuergen Beisert2009-10-264-23/+107
| | | | | | | | | | | | | | Adapt the pcm043 plattform to be able to boot from NOR and NAND Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* | IMX_NAND_BASE -> IMX_NFC_BASESascha Hauer2009-10-263-5/+5
| | | | | | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* | mxc_nand: determine page and block size depending on NFMS bitSascha Hauer2009-10-264-21/+4
| | | | | | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* | imx-nand : remove wrong part of commit ca326e88827e08e723046a21b18e74d41d15ace7Eric Benard2009-10-231-1/+0
|/ | | | | | | previous fix for 2k pages was wrong so remove it Signed-off-by: Eric Benard <eric@eukrea.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* CPUIMX27 : update dram declarationEric Benard2009-10-211-1/+8
| | | | | | | Boot on this board was broken following ram updates in u-boot Signed-off-by: Eric Benard <eric@eukrea.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* at91sam9: switch to the same api as the kernelJean-Christophe PLAGNIOL-VILLARD2009-10-209-730/+325
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* at91: add cpu devices common apiJean-Christophe PLAGNIOL-VILLARD2009-10-203-103/+16
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* commands: remove maxargsSascha Hauer2009-10-192-2/+0
| | | | | | | No need to check for maximum argument counts. The commands are safe to be called with more arguments, so lets safe some bytes. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* commands: return COMMAND_ERROR_USAGESascha Hauer2009-10-192-10/+5
| | | | | | | instead of calling u_boot_cmd_usage in each command to safe space. Signed-off-by: Sascha Hauer <sha@pengutronix.de>
* sandbox: add a default environmentSascha Hauer2009-10-122-0/+15
| | | | Signed-off-by: Sascha Hauer <sha@pengutronix.de>
* pca100: add missing USB bitsSascha Hauer2009-10-091-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* pca100: remove imx_ prefix from gpio access functionsSascha Hauer2009-10-091-3/+3
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* imx spi: Use gpio as chip selectsSascha Hauer2009-10-021-3/+12
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* boards: use recently introduced protect_file functionSascha Hauer2009-10-0210-10/+11
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* register env as env0 and not as envSascha Hauer2009-09-2910-20/+20
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* pcm038: Add USB supportSascha Hauer2009-09-091-0/+46
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>