Subject: [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex A8
OMAP3 boards
This patch series adds U-Boot v1 support for some of TI's ARM-Cortex A8 based
OMAP3 boards. These are BeagleBoard [1][2], EVM [3] and Overo [4].
The patch series is based on U-Boot tar ball [5] for Beag
Subject: [PATCH 01/11 v1] ARM: OMAP3: Add pin mux, clock and cpu headers
From: Dirk Behme <[EMAIL PROTECTED]>
Add pin mux, clock and cpu header files for OMAP3.
Signed-off-by: Dirk Behme <[EMAIL PROTECTED]>
---
include/asm-arm/arch-omap3/bits.h | 48 +++
include/asm-arm/arch-omap3/cl
Subject: [PATCH 02/11 v1] ARM: OMAP3: Add i2c, memory and additional pin mux
headers
From: Dirk Behme <[EMAIL PROTECTED]>
Add OMAP3 I2C, memory and additional pin mux headers
Signed-off-by: Dirk Behme <[EMAIL PROTECTED]>
---
include/asm-arm/arch-omap3/i2c.h | 128 ++
include/asm-
Subject: [PATCH 03/11 v1] ARM: OMAP3: Add overo pin mux, omap3 and prototype
headers
From: Dirk Behme <[EMAIL PROTECTED]>
Add overo pin mux, omap3 and prototype headers
Signed-off-by: Dirk Behme <[EMAIL PROTECTED]>
---
include/asm-arm/arch-omap3/mux.h | 337
Subject: [PATCH 04/11 v1] ARM: OMAP3: Add assembly startup and sys_info common
files
From: Dirk Behme <[EMAIL PROTECTED]>
Add assembly startup and sys_info common files
Signed-off-by: Dirk Behme <[EMAIL PROTECTED]>
---
cpu/omap3/Makefile| 44 +++
cpu/omap3/config.mk | 36 +++
Subject: [PATCH 05/11 v1] ARM: OMAP3: Add board, clock, cpu and interrupts
common files
From: Dirk Behme <[EMAIL PROTECTED]>
Add board, clock, cpu and interrupts common files
Signed-off-by: Dirk Behme <[EMAIL PROTECTED]>
---
cpu/omap3/Makefile |2
cpu/omap3/board.c | 294 ++
Subject: [PATCH 06/11 v1] ARM: OMAP3: Add memory and syslib common files, add
NAND support
From: Dirk Behme <[EMAIL PROTECTED]>
Add memory and syslib common files, add NAND support
Signed-off-by: Dirk Behme <[EMAIL PROTECTED]>
---
common/cmd_nand.c| 29 +++
cpu/omap3/Makefile
Subject: [PATCH 07/11 v1] ARM: OMAP3: Add MMC support
From: Dirk Behme <[EMAIL PROTECTED]>
Add MMC support
Signed-off-by: Dirk Behme <[EMAIL PROTECTED]>
---
cpu/omap3/Makefile|3
cpu/omap3/mmc.c | 557 ++
inclu
Subject: [PATCH 08/11 v1] ARM: OMAP3: Add I2C and network support
From: Dirk Behme <[EMAIL PROTECTED]>
Add I2C and network support
Signed-off-by: Dirk Behme <[EMAIL PROTECTED]>
---
drivers/i2c/Makefile |1
drivers/i2c/omap24xx_i2c.c | 132 ++-
Subject: [PATCH 09/11 v1] ARM: OMAP3: Add BeagleBoard
From: Dirk Behme <[EMAIL PROTECTED]>
Add BeagleBoard
Signed-off-by: Dirk Behme <[EMAIL PROTECTED]>
---
Makefile |7
board/omap3/beagle/Makefile| 46 ++
board/omap3/beagle/beagle.c| 113 +
Subject: [PATCH 10/11 v1] ARM: OMAP3: Add EVM board
From: Dirk Behme <[EMAIL PROTECTED]>
Add EVM board
Signed-off-by: Dirk Behme <[EMAIL PROTECTED]>
---
Makefile|3
board/omap3/evm/Makefile| 46 ++
board/omap3/evm/config.mk | 17 ++
board/omap3/evm/evm.c
Subject: [PATCH 11/11 v1] ARM: OMAP3: Add Overo board
From: Dirk Behme <[EMAIL PROTECTED]>
Add Overo board
Signed-off-by: Dirk Behme <[EMAIL PROTECTED]>
---
Makefile |3
board/omap3/overo/Makefile| 46 ++
board/omap3/overo/config.mk | 12 +
board/omap3/o
Signed-off-by: Gary Jennejohn <[EMAIL PROTECTED]>
---
cpu/mpc8xx/scc.c | 17 +
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/cpu/mpc8xx/scc.c b/cpu/mpc8xx/scc.c
index 09a3db1..9ffeb11 100644
--- a/cpu/mpc8xx/scc.c
+++ b/cpu/mpc8xx/scc.c
@@ -70,6 +70,9 @@ static
Dear "Luigi 'Comio' Mantellini",
In message <[EMAIL PROTECTED]> you wrote:
>
> I'm working on a mips based SoC with an external watchdog. The watchdog
> should be touched every 5 seconds in order to avoid the system reboot.
That shgould be no problem. We have a couple of boards that have
watchd
Dear Dirk,
In message <[EMAIL PROTECTED]> you wrote:
> Subject: [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex
> A8 OMAP3 boards
Please negotiate timing of patch submissions with Jean-Christophe to
avoid unneeded respins of the patches when he submits his CFG_
change
Wolfgang Denk wrote:
> Dear Dirk,
>
> In message <[EMAIL PROTECTED]> you wrote:
>
>>Subject: [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex
>>A8 OMAP3 boards
>
>
> Please negotiate timing of patch submissions with Jean-Christophe to
> avoid unneeded respins of the pa
Hi Wolfgang,
Thank you to share your experience.
Anyway, I'm not sure that the common infrastructure covers all scenarios. For
example in /common/main.c we have the code:
...
int readline_into_buffer (const char *const prompt, char * buffer)
{
...
for (;;) {
#ifdef CONFIG_BOOT_RETRY_TIM
Hi All,
I am using u-boot-1.2.0.I want to boot U-boot and Linux Kernel silently
ie. with no much print on the serial console. For that to happen I tried
to recompile the u-boot source with CONFIG_SILENT_CONSOLE and set the
silent environment variable using "setenv silent 1" and "saveenv". But
when
On 13:11 Sun 14 Sep , Dirk Behme wrote:
> Wolfgang Denk wrote:
>> Dear Dirk,
>>
>> In message <[EMAIL PROTECTED]> you wrote:
>>
>>> Subject: [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs
>>> ARM-Cortex A8 OMAP3 boards
>>
>>
>> Please negotiate timing of patch submissions with Jean-C
See doc/README.iomux for a general description of what this does.
This is the first of two commits. The second commit touches net/eth.c
and has to go through the custodian, so I split it out for simplicity.
Tested with MAKEALL 8xx.
Signed-off-by: Gary Jennejohn <[EMAIL PROTECTED]>
---
common/
Since this patch touches net/eth.c it is being sent separately.
When CONFIG_IO_MUX, CONFIG_NETCONSOLE and CFG_CONSOLE_IS_IN_ENV are all
defined together it is possible that nc (netconsole) is defined as an
output device. In this case it is necessary to set GD_FLG_DEVINIT
after the network device
Dear "Rajeev Bansal",
In message <[EMAIL PROTECTED]> you wrote:
>
> I am using u-boot-1.2.0.I want to boot U-boot and Linux Kernel silently
> ie. with no much print on the serial console. For that to happen I tried
> to recompile the u-boot source with CONFIG_SILENT_CONSOLE and set the
> silent e
Dear "Luigi 'Comio' Mantellini",
In message <[EMAIL PROTECTED]> you wrote:
>
> Anyway, I'm not sure that the common infrastructure covers all scenarios. For
> example in /common/main.c we have the code:
As menrioned before, I'm not so sure about the MIPS implementation,
but this is in proiducti
Dear Gary Jennejohn,
In message <[EMAIL PROTECTED]> you wrote:
>
> Since this patch touches net/eth.c it is being sent separately.
>
> When CONFIG_IO_MUX, CONFIG_NETCONSOLE and CFG_CONSOLE_IS_IN_ENV are all
> defined together it is possible that nc (netconsole) is defined as an
> output device.
Dear Gary Jennejohn,
In message <[EMAIL PROTECTED]> you wrote:
>
> Signed-off-by: Gary Jennejohn <[EMAIL PROTECTED]>
Sorry, but I don't understand what you're doing here, or why.
Why would there be any machine checks in scc_init()? Such problems
have never been repoorted for any systems. Act
On Sun, 14 Sep 2008 18:07:42 +0200
Wolfgang Denk <[EMAIL PROTECTED]> wrote:
> In message <[EMAIL PROTECTED]> you wrote:
> >
> > Since this patch touches net/eth.c it is being sent separately.
> >
> > When CONFIG_IO_MUX, CONFIG_NETCONSOLE and CFG_CONSOLE_IS_IN_ENV are all
> > defined together it
First, a the platform description is in order. There are actually 2
that have the same problem.
1. Embedded planet EP8245 eval board
2. My current target board which uses MPC8241 w/64 meg sdram and
and 2 Spansion S29GL128P
with "all" memory configured 32 bit wide.
The pr
Dear Gary Jennejohn,
In message <[EMAIL PROTECTED]> you wrote:
>
> See doc/README.iomux for a general description of what this does.
Sorry, but this is not really a good commit message. Please explain at
least in a shoprt summary what the patch is supposed to implement.
> This is the first of t
Dear Gary Jennejohn,
In message <[EMAIL PROTECTED]> you wrote:
>
> > 2) You only add new points where the GD_FLG_DEVINIT bit gets set in
> > gd->flags. That means there are two possibilities when your newly
> > added code is run: either, this bit is already set by other parts of
> > the codem tha
Hi
2008/8/12 Guennadi Liakhovetski <[EMAIL PROTECTED]>:
> Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
> cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
> provides 2% or 0.4% precision depending on the
> CONFIG_MX31_TIMER_HIGH_PRECISION flag. Meas
Hi
2008/9/7 Guennadi Liakhovetski <[EMAIL PROTECTED]>:
> On Sat, 6 Sep 2008, Wolfgang Denk wrote:
>
>> Dear Guennadi Liakhovetski,
>>
>> In message <[EMAIL PROTECTED]> you wrote:
>> >
>> > Was this patch correct then?
>> >
>> > http://lists.denx.de/pipermail/u-boot/2008-July/037375.html
>> >
>> >
Hi
2008/9/14 <[EMAIL PROTECTED]>:
> From: Dirk Behme <[EMAIL PROTECTED]>
>
> Add assembly startup and sys_info common files
>
> Signed-off-by: Dirk Behme <[EMAIL PROTECTED]>
>
> ---
> cpu/omap3/Makefile| 44 +++
> cpu/omap3/config.mk | 36 +++
> cpu/omap3/lowlevel_init.S | 360
32 matches
Mail list logo