summaryrefslogtreecommitdiffstats
path: root/arch
Commit message (Collapse)AuthorAgeFilesLines
* [general] Move include/configs/* to board/*/config.hSascha Hauer2008-04-076-249/+1
|
* [m68k] Add Freescale Coldfire V4E Architecture supportSascha Hauer2008-04-0434-0/+9109
| | | | | | | | | | - Added m68k vector, exception & interrupt handlers - Added m68k macros to access m68k movec registers - Added Coldfire support code (MultiChannelDMA) - Added board support for phytec phyCore-MCF baseboard - Added board support for konzeptpark MCB2 prototype Signed-off-by: Carsten Schlote <schlote@vahanus.net>
* Merge branch 'master' of ssh://sha@octopus/home/git/projects/u-boot-v2Sascha Hauer2008-04-041-0/+12
|\
| * Some Blackfin CPU revs don't handle the clock pre-divider correctly on resetEnrik Berkhan2008-03-141-0/+12
| | | | | | | | | | | | See anomaly 05000242. Signed-Off-By: Enrik Berkhan <Enrik.Berkhan@ge.com>
* | Doxygen cleanupsSascha Hauer2008-04-041-9/+9
|/ | | | | | | | | - Remove trailing whitespaces from doxygen files - escape '<' '>' with backslashes. Otherwise Doxygen interpretes them as html tags Signed-off-by: Carsten Schlote <schlote@vahanus.net> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* cosmetics: fix indentionSascha Hauer2008-03-141-1/+1
|
* add clko command for i.MX27Sascha Hauer2008-03-143-0/+74
|
* imx27: Fix calculation of ahb clock and ipg clockSascha Hauer2008-03-111-5/+2
|
* do not sleep if read gets EAGAIN. Must be some testing leftoverSascha Hauer2008-03-111-2/+2
|
* Add the possibility to have an architecture specific ctrlc() function.Sascha Hauer2008-03-111-3/+10
| | | | | This allows us to return immediately in ctrlc() on sandbox and thus not slow down network througput.
* add globbing supportSascha Hauer2008-03-091-1/+2
|
* [ARM] Remove CONFIG_ARCH_NUMBER from Kconfig system. Putting too manySascha Hauer2008-02-262-21/+29
| | | | | | | | | | | | values into kconfig which are not user configurable at all only encourages people to put even more stuff in there. This is not good because people tend to have board patches lying around and these patches won't apply regularly if they all change the same file (arch/arm/Kconfig) Instead, introduce a function armlinux_set_architecture() which everyone can call during board setup. Similarly introduce armlinux_set_bootparams() for the boot parameter pointer.
* [ppc] Fixed orphaned CONFIG_INTERRUPTSCarsten Schlote2008-02-214-5/+5
| | | | | | Changed CONFIG to CONFIG_USE_IRQ Signed-off-by: Carsten Schlote <c.schlote@konzeptpark.de>
* [blackfin]: register handler for booting linux imagesSascha Hauer2008-02-211-1/+16
|
* [MPC5200]: call early_init() after we've setup our timing. OtherwiseSascha Hauer2008-02-211-2/+2
| | | | the console gets messed up afterwards.
* Make the early console device/baudrate configurable instead of usingSascha Hauer2008-02-211-0/+3
| | | | hardcoded values
* [MPC5200] Make MPC5XXX_EARLY_CONSOLE dependent on ARCH_MPC5200Sascha Hauer2008-02-211-0/+1
|
* [ARM] Remove ARCH_NUMBERs from config.h and put them into KconfigSascha Hauer2008-02-201-0/+10
|
* - Add functions to register image handlers for booting uImagesSascha Hauer2008-02-202-30/+64
|
* [i.MX]: Basic board support for the Freescale i.MX27 eval boardSascha Hauer2008-02-192-0/+13
|
* [i.MX]: Fix i.MX27 clock functions according to the chip revisionSascha Hauer2008-02-191-4/+23
|
* [i.MX] add function to determine chip revisionSascha Hauer2008-02-192-1/+26
|
* [netx]: Fix function prototype for do_loadxcSascha Hauer2008-02-191-1/+1
|
* [IPE337] refreshed defconfigWolfram Sang2008-01-241-4/+18
| | | | Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
* [IPE337] Better support for multiple revisionWolfram Sang2008-01-241-6/+13
| | | | | | Changed bool into choice Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
* Make board IPE337 revision 2 selectable for .configWolfram Sang2008-01-232-0/+11
| | | | | | | A new menu "Board options" is introduced, where one can select if the board is a rev.2 (= 40Mhz) Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
* Fix/Adapt settings for version 2 of IPE337Enrik Berkhan2008-01-231-1/+52
| | | | Signed-Off-By: Enrik Berkhan <Enrik.Berkhan@ge.com>
* Enable blackfin boot rom boot modesEnrik Berkhan2008-01-232-1/+40
| | | | Signed-Off-By: Enrik Berkhan <Enrik.Berkhan@ge.com>
* [sandbox] fix read for buffers of zero lengthMarc Kleine-Budde2008-01-021-0/+3
| | | | | | | | | This patch fixes the read function for the linux sandbox if a buffer of zero length should be read. The error handling introduced in 6574529bb5a233278e9886a93afeed70e9993b54 detects a false positive if the length is zero. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* remove -isystem with empty argumentMarc Kleine-Budde2007-11-294-8/+4
| | | | | | | This patch removes the "-isystem $(gccincdir)" from the arch/*/Makefile because gccindir is empty. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [sandbox] new defconfigMarc Kleine-Budde2007-11-291-15/+17
| | | | | | regenerated sandbox' defconfig Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [sandbox] add error handling to readMarc Kleine-Budde2007-11-291-5/+22
| | | | | | This patch adds propper error handling to the linux' read functions. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* improved codingstyleMarc Kleine-Budde2007-11-291-1/+1
| | | | | | this patch improves the codingstyle Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [sparse] define functions static, use NULL as NULL pointerMarc Kleine-Budde2007-11-291-2/+2
| | | | | | | | fixes: arch/sandbox/board/hostfile.c:32:9: warning: symbol 'hf_read' was not declared. Should it be static? arch/sandbox/board/hostfile.c:43:9: warning: symbol 'hf_write' was not declared. Should it be static? Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [sparse] declare functions staticMarc Kleine-Budde2007-11-291-1/+1
| | | | | | | this fixes: arch/sandbox/board/clock.c:28:10: warning: symbol 'linux_clocksource_read' was not declared. Should it be static? Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [sparse] declare functions staticMarc Kleine-Budde2007-11-291-2/+2
| | | | | | | | this fixes: arch/sandbox/board/hostfile.c:32:9: warning: symbol 'hf_read' was not declared. Should it be static? arch/sandbox/board/hostfile.c:43:9: warning: symbol 'hf_write' was not declared. Should it be static? Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [sandbox] fix stdin and stdout fd for sandbox consoleMarc Kleine-Budde2007-11-291-1/+1
| | | | | | | u_boot_register_console uses the wrong filedescriptors for in and out the are swapped. This patch fixes this problem and uses fileno instead. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [sandbox] HACK: add variable _SDA_BASE_ to main, to please linkerMarc Kleine-Budde2007-11-291-0/+5
| | | | | | | | | | | This patch is a _CRUDE_HACK_ the linker complains about the missing symbol _SDA_BASE_ on powerpc, so git it to him to please him and finally link the sandbx. LD uboot /usr/lib/gcc/powerpc-linux-gnu/4.2.3/../../../../lib/crt1.o:(.rodata+0x0): undefined reference to `_SDA_BASE_' Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [sandbox] add ELF_{ARCH,FORMAT} for powerpcMarc Kleine-Budde2007-11-291-0/+4
| | | | | | This patch adds the needed ELF_{ARCH,FORMAT} for the sandbox on powerpc Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [sandbox] use C99 initializersMarc Kleine-Budde2007-11-281-5/+4
| | | | | | This patch uses C99 initializers to initialize the timeout in linux_tstc() Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [pcm038] regenerate defconfigMarc Kleine-Budde2007-11-281-12/+10
| | | | | | This patch regenerates pcm038s defconfig Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [imx] make frequency output nicerRobert Schwebel2007-11-281-8/+8
| | | | | | | | Make the frequency output a little bit nicer From: Robert Schwebel <r.schwebel@pengutronix.de> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
* remove gpio debug output for imxRobert Schwebel2007-11-281-2/+0
| | | | | | Remove a bogus debug output in the gpio initialization code for i.MX. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
* cleanup do_bootm_linux()Robert Schwebel2007-11-281-106/+121
| | | | | | | | This patch cleans up the do_bootm_linux() function. It removes most of the uggly ifdefery and replaces it by a sane function optimizing structure. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
* don't against link libgccMarc Kleine-Budde2007-11-284-6/+1
| | | | | | We don't want to link against libgcc. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* remove warningsRobert Schwebel2007-11-271-1/+2
| | | | | | | | | This patch fixes the following warnings: arch/arm/cpu/cpu.c:176:4: warning: no newline at end of file commands/bootm.c:872:4: warning: no newline at end of file Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
* [menuconfig] fix indention for Arm specific settingsMarc Kleine-Budde2007-11-271-1/+1
| | | | | | This patch fixes the indention for the menu "Arm specific settings" Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* consider separated commands in pcm038's default configJuergen Beisert2007-11-151-3/+10
| | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
* [ipe337] rename environment subdir form defenv -> envMarc Kleine-Budde2007-11-121-7/+2
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* Merge branch 'master' of jbe@octopus:/home/git/projects/u-boot-v2v2.0.0-rc1Juergen Beisert2007-11-091-1/+0
|\