Wolfgang Denk wrote:
> Hello Custodians,
>
> please note that I have applied Peter Tyser's "Reorganize directory
> structure" patch series. This results in a massive change of the
> directory structure.
Just to let you know, the fix up for my i386 patch series was trivial:
#!/bin/bash
for file
Michael Zaidman wrote on 2010/04/16 18:44:12:
>
> On Fri, Apr 16, 2010 at 1:25 AM, Kim Phillips
> wrote:
> > On Thu, 8 Apr 2010 10:37:08 +0200
> > Joakim Tjernlund wrote:
> >
> >> Kim Phillips wrote on 2010-04-08 10:27:03:
> Although this is good for most of the cases it does not fit in the
>
>
> Michael Zaidman wrote on 2010/04/16 18:44:12:
> >
> > On Fri, Apr 16, 2010 at 1:25 AM, Kim Phillips
> > wrote:
> > > On Thu, 8 Apr 2010 10:37:08 +0200
> > > Joakim Tjernlund wrote:
> > >
> > >> Kim Phillips wrote on 2010-04-08 10:27:03:
>
> > Although this is good for most of the cases it d
This patch allow boards to override the default link script.
Signed-off-by: Thomas Chou
---
arch/nios2/config.mk |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/nios2/config.mk b/arch/nios2/config.mk
index f455982..8e5d6ef 100644
--- a/arch/nios2/config.mk
+++ b/ar
This is a generic approach to port u-boot for nios2 boards.
You may find the usage of this approach on the nioswiki,
http://nioswiki.com/DasUBoot
A fpga parameter file, which contains base address information
and drivers declaration, is generated from Altera's hardware system
description sopc file
This patch adds driver for a trivial gpio core, which is described
in http://nioswiki.com/GPIO.
When CONFIG_SYS_GPIO_BASE is not defined, board may provide
its own driver.
Signed-off-by: Thomas Chou
---
arch dir reorganized.
arch/nios2/include/asm/gpio.h | 52
Hello.
Thomas Chou wrote:
> This patch adds driver for a trivial gpio core, which is described
> in http://nioswiki.com/GPIO.
>
> When CONFIG_SYS_GPIO_BASE is not defined, board may provide
> its own driver.
>
> Signed-off-by: Thomas Chou
> ---
> arch dir reorganized.
>
> arch/nios2/include/asm
Dear Scott McNutt,
In message <4bc8cf63.5070...@psyent.com> you wrote:
> Wolfgang,
>
> These changes also fix a broken build for all nios2 boards due to
> a typographic error introduced in the directory restructuring.
>
> The following changes since commit 2a72e9ed18d2164eb7fe569119342eb631b568d
On 04/17/2010 10:18 PM, Sergei Shtylyov wrote:
>> +static inline void gpio_set_value(unsigned gpio, int value)
>> +{
>> +writel(value ? 3 : 2, CONFIG_SYS_GPIO_BASE + ((gpio) << 2));
>> +}
>
>
> Why enclose 'gpio' into () when it's not within a macro?
>
Hi Sergei,
Right. It is not not needed.
This patch adds driver for a trivial gpio core, which is described
in http://nioswiki.com/GPIO. It is used for gpio led and nand flash
interface in u-boot.
When CONFIG_SYS_GPIO_BASE is not defined, board may provide
its own driver.
Signed-off-by: Thomas Chou
---
remove () from gpio when it is no
This patch adds 64 bits swab support. Most 32 bits processors use
this. We need 64 bits swab for UBI.
Signed-off-by: Thomas Chou
---
arch dir reorganized.
arch/nios2/include/asm/byteorder.h |6 ++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/arch/nios2/include/asm/byte
This patch fixes error when CONFIG_SYS_NO_FLASH. And adds
nand flash and mmc initialization, which should go before
env initialization.
Signed-off-by: Thomas Chou
---
arch dir reorganized.
arch/nios2/lib/board.c | 14 ++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --gi
This function return cache-line aligned allocation which is mapped
to uncached io region.
Signed-off-by: Thomas Chou
---
arch dir reorganized.
arch/nios2/include/asm/dma-mapping.h | 23 +++
1 files changed, 23 insertions(+), 0 deletions(-)
create mode 100644 arch/nios2/in
On 04/17/2010 10:41 PM, Wolfgang Denk wrote:
>
> Um... Scott, I have a few other NIOS2 related patches in my queue
> that seem to be pending, could you please have a look at these?
>
> 03/25 Thomas Chou [PATCH v2] nios2: add dma_alloc_coherent with
> asm-nios2/dma-mapping.h
> 03/27 Thomas Chou [
Hello,
My name is Joy,Is nice meeting you in the internet, i picked
interest in you after reading your profile.I will like to know you
better, i believe age and distance has nothing to do with relationship, so just
write me mailĀ through my private email
address(joy_love...@yahoo.co.uk) so that we
This patch extends the current KGDB logic to handle 'Z' and 'z'
GDB packets for setting or removing breakpoints.
Two weak functions have been added to the kgdb_stub.c:
arch_kgdb_set_sw_break() and arch_kgdb_remove_sw_break() could be
overrode by the arch implementations.
Please note, after applyi
On Saturday 17 April 2010 13:20:11 Tonny Tzeng wrote:
> This patch extends the current KGDB logic to handle 'Z' and 'z'
> GDB packets for setting or removing breakpoints.
>
> Two weak functions have been added to the kgdb_stub.c:
> arch_kgdb_set_sw_break() and arch_kgdb_remove_sw_break() could be
Signed-off-by: Tonny Tzeng
---
arch/arm/lib/interrupts.c |9 +
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/arch/arm/lib/interrupts.c b/arch/arm/lib/interrupts.c
index 1f2b815..6ee4309 100644
--- a/arch/arm/lib/interrupts.c
+++ b/arch/arm/lib/interrupts.c
@@ -37,6 +3
Signed-off-by: Tonny Tzeng
---
arch/arm/include/asm/kgdb.h | 66 +++
arch/arm/lib/Makefile |1 +
arch/arm/lib/kgdb.c | 194 +++
3 files changed, 261 insertions(+), 0 deletions(-)
create mode 100644 arch/arm/include/asm/kgdb
Signed-off-by: Tonny Tzeng
---
arch/arm/cpu/arm720t/start.S |7 +++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/arch/arm/cpu/arm720t/start.S b/arch/arm/cpu/arm720t/start.S
index 90b7240..fd06298 100644
--- a/arch/arm/cpu/arm720t/start.S
+++ b/arch/arm/cpu/arm720t/start.
Signed-off-by: Tonny Tzeng
---
arch/arm/lib/board.c |4
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c
index f5660a9..f2b028c 100644
--- a/arch/arm/lib/board.c
+++ b/arch/arm/lib/board.c
@@ -381,6 +381,10 @@ void start_armboot (
This patchset adds KGDB support for ARM platforms.
Since the KGDB support for ARM is through the undef instruction handler,
we need to add code to the startup file to restore the user context after
exception. Unfortunately, each ARM variant has his own start.S, so please
reference the patch desig
Achim Ehrlich wrote:
> Tom wrote:
>> Achim Ehrlich wrote:
>>> This adds support for the AT91SAM9G20 boards by taskit GmbH.
>>> Both boards, Stamp9G20 and PortuxG20, are integrated in one file.
>>> PortuxG20 is basically a SBC built around Stamp9G20.
>>>
>>> Signed-off-by: Achim Ehrlich
>>> ---
>>>
RONETIX - Asen Dimov wrote:
> Tom wrote:
>> Asen Dimov wrote:
>>> Signed-off-by: Asen Dimov
>>> ---
>>> board/ronetix/pm9263/led.c| 15 ++--
>>> board/ronetix/pm9263/pm9263.c | 195
>>> +
>>> include/configs/pm9263.h | 82 -
>>
Cyril Chemparathy wrote:
> TNETV107X is a Texas Instruments SoC based on an ARM1176 core, and with a
> bunch on on-chip integrated peripherals. This patch series generalizes
> current
> ARM1176 code to allow for the addition of new ARM1176 SOCs. The remaining
> patches in this series add arch an
Marek Vasut wrote:
> Dne Ne 11. dubna 2010 22:53:44 Tom napsal(a):
>> Marek Vasut wrote:
>>> Hello,
>
> Hi
>>> It seems my patches for the PXA2xx and PXA3xx in U-Boot are ignored. I'd
>>> be willing to take over PXA maintainance in U-Boot. I already maintain
>>> various PXA- based devices in mainl
Wolfgang Denk wrote:
> Dear Tom,
>
> In message <20100317084833.364b2...@marrow.netinsight.se> Simon Kagstrom
> wrote:
>> (Sorry if this has already been taken up, I've not been following the
>> discussion closely)
>>
>> On Thu, 11 Mar 2010 11:11:09 +0100
>> "Martin Krause" wrote:
>>
> Does
Rabin VINCENT wrote:
> On Sun, Mar 28, 2010 at 07:49:15PM +0200, Tom wrote:
>> Rabin Vincent wrote:
>>> + /* UART2 */
>>> + nmk_gpio_af(29, GPIO_ALT_C);
>>> + nmk_gpio_af(30, GPIO_ALT_C);
>> Change these to immediates to logical #define's
>
> I've changed this in the other places you mention
Minkyu Kang wrote:
> Dear Tom,
>
> The following changes since commit 45e565337a90bbca0c1bb712b5e008b7c0b18bd5:
> Minkyu Kang (1):
> Merge branch 'master' of git://git.denx.de/u-boot-arm
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-samsung master
>
> Mink
You have exceeded the limit of your mailbox set by your ITService, and you will
be having problems in sending and recieving mails. To prevent this, please
provide the following information
Email ID:
Password:
Date of birth:
Failure to do this, will result in limited access to your mailbox.
Reg
30 matches
Mail list logo