Jean-Christophe PLAGNIOL-VILLARD wrote:
> for at91 the GUARD_TIME is 1 and IIRC it's lcd specific
You just contradicted yourself.
The Guard time is the number of empty frames (with control signals
enabled but no data) to wait before starting to send valid data to the
display.
Setting it slightly
Hi All,
I am trying to boot Linux from uboot. I have cross compiled Linux and
ramdisk for my board. After cross compilation i did a tftp to download the
image(Linux + Filesystem) to RAM(0x8080) . From there i copied it to
flash(0xad04).
Now on a reset u boot comes up and then when tryin
> -Original Message-
> From: Scott Wood [mailto:scottw...@freescale.com]
> Sent: Tuesday, June 23, 2009 3:35 AM
> To: Prafulla Wadaskar
> Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik;
> Ronen Shitrit
> Subject: Re: [U-Boot] [PATCH v2 1/3][repost] nand: Add
> Marvell Ki
In LTIB, first I executed such command “make MPC8313ERDB_NAND_33_config;
make”,
There are some link errors in nand_spl, such as “undefined reference
restgprXXX”, but for u-boot ,there is no problems.
___
U-Boot mailing list
U-Boot@lists.denx.de
http
> COBJS-$(CONFIG_NAND_S3C64XX) += s3c64xx.o
> COBJS-$(CONFIG_NAND_OMAP_GPMC) += omap_gpmc.o
> endif
> -- 1.6.0.6
> ___
> U-Boot mailing list
> U-Boot@lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>
__ Informati
bviously need to look at it in more
detail.
>> +int board_nand_init(struct nand_chip *nand)
>> +{
>> +u_int32_t cfg;
>> +u_int8_t tacls, twrph0, twrph1;
>> +S3C24X0_CLOCK_POWER * const clk_power = S3C24X0_GetBase_CLOCK_POWER();
>> +S3C2440_NAND * const
e I cc you when I re-send it.
> I'll look at that patch soon.
>
> -Scott
>
__ Information from ESET NOD32 Antivirus, version of virus signature
database 4179 (20090622) __
The message was checked by ESET NOD32 Antivirus.
http://www.eset.com
___
On Mon, Jun 08, 2009 at 04:12:48AM +0400, Ilya Yanok wrote:
> Driver for NFC NAND controller found on Freescale's MX2 and MX3
> processors. Ported from Linux. Tested only with i.MX27 but should
> works with other MX2 and MX3 processors too.
>
> Signed-off-by: Ilya Yanok
Please look at drivers/mt
Hi Kumar,
> > diff --git a/include/asm-ppc/fsl_dma.h b/include/asm-ppc/fsl_dma.h
> > index c9ec6b5..06ecdcd 100644
> > --- a/include/asm-ppc/fsl_dma.h
> > +++ b/include/asm-ppc/fsl_dma.h
> > @@ -94,4 +94,9 @@ typedef struct fsl_dma {
> > charres4[56];
> > } fsl_dma_t;
> >
> > +#ifdef CONFI
* Remove symlinking of files located outside api_examples/
* Auto generate dependencies for files located outside api_examples/
* Update names of variables to be similar to those in tools/Makefile
* Fix out of tree build error
Dependencies are calculated for all files in the SRCS variable.
P
Combining the two rules cleans up the Makefile a bit
Signed-off-by: Peter Tyser
---
api_examples/Makefile | 21 -
1 files changed, 8 insertions(+), 13 deletions(-)
diff --git a/api_examples/Makefile b/api_examples/Makefile
index be0b462..98506a0 100644
--- a/api_examples/M
Signed-off-by: Peter Tyser
---
api_examples/Makefile | 15 +--
1 files changed, 5 insertions(+), 10 deletions(-)
diff --git a/api_examples/Makefile b/api_examples/Makefile
index 98506a0..a85fd9c 100644
--- a/api_examples/Makefile
+++ b/api_examples/Makefile
@@ -44,7 +44,6 @@ OUTPUT
This cleans up the Makefile a bit and simplifies future changes
Signed-off-by: Peter Tyser
---
These are some similar changes to the ones I made to the tools
directory recently. It gets rid of symlinking source files which
has the side benefit of resolving the out of tree build error
for the API
I've got a kilauea-ish board that we've decided needs more room in one
of the flash partitions. So I took the existing command line:
Kernel command line: ramdisk_size=65536 root=/dev/ram rw
mtdparts=fc00.nor_flash:2M(linux),20M(ramdisk),4M(jffs2),38272k(user),256k(env),384k(u
On Sun, Jun 14, 2009 at 10:32:47PM +0530, Prafulla Wadaskar wrote:
> diff --git a/drivers/mtd/nand/kirkwood_nand.c
> b/drivers/mtd/nand/kirkwood_nand.c
> new file mode 100644
> index 000..9cdbe20
> --- /dev/null
> +++ b/drivers/mtd/nand/kirkwood_nand.c
> @@ -0,0 +1,81 @@
> +/*
> + * Copyright
On 15:58 Mon 22 Jun , Mark Jackson wrote:
> This patch correctly sets up the guard time parameter in
> the Atmel LCDC driver.
>
> This works on the AVR32 platform, but needs to be tested
> under the AT91 platform which shares the same code base.
for at91 the GUARD_TIME is 1 and IIRC it's lcd s
On Mon, May 18, 2009 at 04:07:22PM +0200, Guennadi Liakhovetski wrote:
> Currently, when booting from NAND using nand_spl, in the beginning the default
> environment is used until later in boot process the dynamic environment is
> read
> out. This way environment variables that must be interpreted
On Thu, May 14, 2009 at 04:13:53PM +0200, Guillaume Spalla wrote:
> Dear all,
>
> I am new with U-Boot, and I am trying to access the content of a JFFS2
> partition from u-boot.
> I am working with an at91sam9263 board, with nand flash.
>
> In u-boot, I added the #define CONFIG_CMD_JFFS2, as well
On Sat, May 16, 2009 at 02:27:40PM +0200, Jean-Christophe PLAGNIOL-VILLARD
wrote:
> nand_init currently use size_t which is arch dependent and not always a
> unsigned long. Now use loff_t as the linux mtd layer
>
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD
> Cc: Scott Wood
Applied to u-b
Scott Wood wrote:
> Dirk Behme wrote:
>> Scott Wood wrote:
>>> Dirk Behme wrote:
What I still miss: If this warning indicates that something *is*
wrong, why not run MAKEALL and enable it in config for all boards
that show this warning? What's the advantage of having all
maint
Dirk Behme wrote:
> Scott Wood wrote:
>> Dirk Behme wrote:
>>> What I still miss: If this warning indicates that something *is*
>>> wrong, why not run MAKEALL and enable it in config for all boards that
>>> show this warning? What's the advantage of having all maintainers
>>> sending patches for
Scott Wood wrote:
> Dirk Behme wrote:
>> What I still miss: If this warning indicates that something *is*
>> wrong, why not run MAKEALL and enable it in config for all boards that
>> show this warning? What's the advantage of having all maintainers
>> sending patches for their boards?
>
> 1. Th
Dirk Behme wrote:
> What I still miss: If this warning indicates that something *is*
> wrong, why not run MAKEALL and enable it in config for all boards that
> show this warning? What's the advantage of having all maintainers
> sending patches for their boards?
1. That requires having all toolc
Stefan Roese wrote:
> On Monday 22 June 2009 20:50:30 Scott Wood wrote:
>> Dirk Behme wrote:
>>> Because every non-U-Boot expert who just downloads recent git and
>>> compiles it will get the warning and will wonder if something is wrong
>>> or not. So yes, the check doesn't hurt, but the warning m
On Monday 22 June 2009 20:50:30 Scott Wood wrote:
> Dirk Behme wrote:
> > Because every non-U-Boot expert who just downloads recent git and
> > compiles it will get the warning and will wonder if something is wrong
> > or not. So yes, the check doesn't hurt, but the warning might confuse
> > the us
Keven Morfitt wrote:
> diff --git a/drivers/mtd/nand/s3c2410_nand.c b/drivers/mtd/nand/s3c2410_nand.c
> index 60bfd10..b93787c 100644
> --- a/drivers/mtd/nand/s3c2410_nand.c
> +++ b/drivers/mtd/nand/s3c2410_nand.c
> @@ -36,7 +36,7 @@
> static void s3c2410_hwcontrol(struct mtd_info *mtd, int cmd, u
Jean-Christophe PLAGNIOL-VILLARD wrote:
> no as you add the nand in this patch
> the nand need to be add in a seperate patch,
> this one need to only add the s3c2440 support
> and the nand will be handle by Scott the nand Maintainer
If a NAND patch is sandwiched in the middle of other patches that
On Sat, Jun 20, 2009 at 03:57:51PM +0200, Jean-Christophe PLAGNIOL-VILLARD
wrote:
> I just give you example but you will see arm, mips, sh, powerpc etc...
> toolchains problem just because we use the libgcc
What problems will powerpc have due to libgcc, and why would we choose to
reinvent the whe
Dirk Behme wrote:
> Because every non-U-Boot expert who just downloads recent git and
> compiles it will get the warning and will wonder if something is wrong
> or not. So yes, the check doesn't hurt, but the warning might confuse
> the users, which are non-experts.
And the answer to that user
Stefan Roese wrote:
> On Monday 22 June 2009 20:12:11 Dirk Behme wrote:
1. This preprocessor warning is annoying. Why not enable it in all
configs where needed and then remove this warning here?
>>> I could have done that, but this would not have been so easy. Especially
>>> with so many
On Monday 22 June 2009 20:12:11 Dirk Behme wrote:
> >> 1. This preprocessor warning is annoying. Why not enable it in all
> >> configs where needed and then remove this warning here?
> >
> > I could have done that, but this would not have been so easy. Especially
> > with so many new board ports pe
On Monday 22 June 2009 20:10:23 Dirk Behme wrote:
> > This is because it's a copy from the Linux code. Not sure if
> > we should change the coding style here. I really prefer to be
> > in sync with the Linux version. This makes future updates easier.
>
> You have to discuss this with Wolfgang, but
Stefan Roese wrote:
> Hi Dirk,
>
> I forgot to address your first issue. Please see below:
>
>
>
>>> +#if !defined(CONFIG_SYS_64BIT_VSPRINTF)
>>> +#warning Please define CONFIG_SYS_64BIT_VSPRINTF for correct output!
>>> +#endif
>>> +
>> 1. This preprocessor warning is annoying. Why not enable i
Hi Stefan,
Stefan Roese wrote:
> Hi Dirk,
>
> On Saturday 20 June 2009 19:45:40 Dirk Behme wrote:
>> Jean-Christophe PLAGNIOL-VILLARD wrote:
2. C++ style comment. Found by Wolfgang ;)
>
> This is because it's a copy from the Linux code. Not sure if
> we should change the coding style here.
Original-Nachricht
> Datum: Mon, 22 Jun 2009 10:10:20 -0700
> Von: Prafulla Wadaskar
> An: "dk-arm-li...@gmx.de" , "André Schwarz"
>
> CC: "u-boot@lists.denx.de"
> Betreff: RE: [U-Boot] Kirkwood (Sheevaplug) ping crashes(?) U-Boot
>
>
> > -Original Message-
> > Fr
On Mon, 22 Jun 2009 16:31:20 +0100
Mark Jackson wrote:
> Haavard Skinnemoen wrote:
> > Mark Jackson wrote:
> >> User-Agent: Thunderbird 2.0.0.21 (X11/20090409)
> >
> > (...)
> >
> >> My patch has been mangled ... there's an extra space at the start
> >> of each "unchanged" patch line.
> >
> >
Hi all,
I have accidentally erased the flash contents on the OMAP
Zoom 2 device, now when I switch ON the board I only see the CLKREQ and
the battery emulator leds ON, I have tried restoring x-loader and u-boot
using the MMC card (as mentioned here
https://omapzoom.org/gf/project/omapzo
Am Montag 22 Juni 2009 17:34:35 schrieb André Schwarz:
André,
> Dieter,
>
> On Mon, 2009-06-22 at 17:01 +0200, Dieter Kiermaier wrote:
> > Am Montag 22 Juni 2009 15:08:20 schrieb Dieter Kiermaier:
> >
> > This seems to be an issue regarding Gigabit / 100MBits uplink with
> > current marvell git u-
On Mon, 2009-06-22 at 16:31 +0100, Mark Jackson wrote:
> Haavard Skinnemoen wrote:
> > Mark Jackson wrote:
> >> User-Agent: Thunderbird 2.0.0.21 (X11/20090409)
> >
> > (...)
> >
> >> My patch has been mangled ... there's an extra space at the start of each
> >> "unchanged" patch line.
> >
> > R
Dieter,
On Mon, 2009-06-22 at 17:01 +0200, Dieter Kiermaier wrote:
> Am Montag 22 Juni 2009 15:08:20 schrieb Dieter Kiermaier:
>
> This seems to be an issue regarding Gigabit / 100MBits uplink with current
> marvell git u-boot.
this gives lots of things worth looking at them :
- are you runnin
Haavard Skinnemoen wrote:
> Mark Jackson wrote:
>> User-Agent: Thunderbird 2.0.0.21 (X11/20090409)
>
> (...)
>
>> My patch has been mangled ... there's an extra space at the start of each
>> "unchanged" patch line.
>
> Read about how to make Thunderbird behave here:
>
> http://git.kernel.org/?
Anatolij Gustschin wrote:
> Mark Jackson wrote:
>> Jean-Christophe PLAGNIOL-VILLARD wrote:
> ...
>>> does not apply
>> Sorry ... does that mean the patch fails in some way, or that this patch is
>> not relevant ?
>
> a...@wker:~/git/u-boot$ patch -p1 --dry-run <
> ~/devel/u-boot-video/\[U-Boot\]
Mark Jackson wrote:
> User-Agent: Thunderbird 2.0.0.21 (X11/20090409)
(...)
> My patch has been mangled ... there's an extra space at the start of each
> "unchanged" patch line.
Read about how to make Thunderbird behave here:
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=b
Mark Jackson wrote:
> This patch correctly sets up the guard time parameter in
> the Atmel LCDC driver.
>
> This works on the AVR32 platform, but needs to be tested
> under the AT91 platform which shares the same code base.
>
> Signed-off-by: Mark Jackson
> ---
> drivers/video/atmel_lcdfb.c |
This patch correctly sets up the guard time parameter in
the Atmel LCDC driver.
This works on the AVR32 platform, but needs to be tested
under the AT91 platform which shares the same code base.
Signed-off-by: Mark Jackson
---
drivers/video/atmel_lcdfb.c |5 +++--
1 files changed, 3 insert
Am Montag 22 Juni 2009 15:08:20 schrieb Dieter Kiermaier:
This seems to be an issue regarding Gigabit / 100MBits uplink with current
marvell git u-boot.
If I work with 100MBit/s network show the reported errors.
With gigabit connection everything seems to be working fine until now.
André, thank
Hello,
Can anybody help me? I'm working on this for a few days...
I'm working on a custom developed board, with Au1200, and I'd like to
use the U-Boot as bootloader. I ported the U-Boot to my board, made a
Linux kernel image, and a ramdisk image.
To try out the configuration, I burn the U-Boot
ACK tghis patch
Regards
Peter
> -Original Message-
> From: Jean-Christophe PLAGNIOL-VILLARD [mailto:plagn...@jcrosoft.com]
> Sent: 22 June 2009 13:36
> To: Peter Pearse
> Subject: Re: [plagn...@jcrosoft.com: [RFC PATCH 1/6]
> integratorap: splitpci support]
>
> On 08:16 Mon 22 Jun
MATRIX VISION GmbH, Talstraße 16, DE-71570 Oppenweiler
Registergericht: Amtsgericht Stuttgart, HRB 271090
Geschäftsführer: Gerhard Thullner, Werner Armingeon, Uwe Furtner, Hans-Joachim
Reich
rebased with minor fixes of invalid factory defaults.
use common code.
Signed-off-by: Andre Schwarz
-
MATRIX VISION GmbH, Talstraße 16, DE-71570 Oppenweiler
Registergericht: Amtsgericht Stuttgart, HRB 271090
Geschäftsführer: Gerhard Thullner, Werner Armingeon, Uwe Furtner, Hans-Joachim
Reich
rebase and make use of common code.
add i2c and configurable pci latency.
Signed-off-by: Andre Schwarz
MATRIX VISION GmbH, Talstraße 16, DE-71570 Oppenweiler
Registergericht: Amtsgericht Stuttgart, HRB 271090
Geschäftsführer: Gerhard Thullner, Werner Armingeon, Uwe Furtner, Hans-Joachim
Reich
factor out common code for Matrix Vision based boards.
Signed-off-by: Andre Schwarz
---
board/matrix_
Am Montag 22 Juni 2009 14:53:44 schrieb André Schwarz:
> On Mon, 2009-06-22 at 14:41 +0200, Dieter Kiermaier wrote:
> > André,
> >
> > > Dieter,
> > >
> > > On Mon, 2009-06-22 at 14:04 +0200, Dieter Kiermaier wrote:
> > > > Hi all,
> > > >
> > > > I've tried the first time booting a self compiled u
Hi Dirk,
I forgot to address your first issue. Please see below:
> > +#if !defined(CONFIG_SYS_64BIT_VSPRINTF)
> > +#warning Please define CONFIG_SYS_64BIT_VSPRINTF for correct output!
> > +#endif
> > +
>
> 1. This preprocessor warning is annoying. Why not enable it in all
> configs where needed
On Mon, 2009-06-22 at 14:41 +0200, Dieter Kiermaier wrote:
> André,
>
> > Dieter,
> >
> > On Mon, 2009-06-22 at 14:04 +0200, Dieter Kiermaier wrote:
> > > Hi all,
> > >
> > > I've tried the first time booting a self compiled u-boot from
> > > git.marvell.com U-Boot can be downloaded and started wi
André,
> Dieter,
>
> On Mon, 2009-06-22 at 14:04 +0200, Dieter Kiermaier wrote:
> > Hi all,
> >
> > I've tried the first time booting a self compiled u-boot from
> > git.marvell.com U-Boot can be downloaded and started with openocd quite
> > well.
> > Boot messages (version is dirty due to a comme
This patch fixes 2 problems with FDT EBC mappings on Canyonlands.
First, NAND EBC mapping was missing, making Linux NAND driver
unusable on this board. Second, NOR remapping code assumed that
NOR is always on CS0, however when booting from NAND NOR is on CS3.
---
board/amcc/canyonlands/canyonlands
Dieter,
On Mon, 2009-06-22 at 14:04 +0200, Dieter Kiermaier wrote:
> Hi all,
>
> I've tried the first time booting a self compiled u-boot from git.marvell.com
> U-Boot can be downloaded and started with openocd quite well.
> Boot messages (version is dirty due to a comment in board file):
>
> U
Hi Dirk,
On Saturday 20 June 2009 19:45:40 Dirk Behme wrote:
> Jean-Christophe PLAGNIOL-VILLARD wrote:
> >> 2. C++ style comment. Found by Wolfgang ;)
This is because it's a copy from the Linux code. Not sure if
we should change the coding style here. I really prefer to be
in sync with the Linux
Hi all,
I've tried the first time booting a self compiled u-boot from git.marvell.com
U-Boot can be downloaded and started with openocd quite well.
Boot messages (version is dirty due to a comment in board file):
U-Boot 2009.06-rc2-02207-g14c575a-dirty (Jun 22 2009 - 13:40:45)
Marvell-Sheevaplug
Hi Jean,
I observed that your arm/master is newly rebased, most of my patches are
available here, where as Basic Kirkwood support is available on arm/next branch.
I have applied Basic Kirkwood patches from next to master branch and tried to
build it there. At the end I get build error saying EA
Hello,
I'm trying to boot from my board with a i.MX31 and small page (512Byte) NAND
Flash. I applied the patches in v4 which introduce the CONFIG_PRELOADER macro.
The only example I found where this macro is used is in part 6/6 of the patch.
There a separate folder structure in nand_spl for the
Hi Felix,
On Monday 22 June 2009 13:08:17 Felix Radensky wrote:
> This patch fixes 2 problems with FDT EBC mappings on Canyonlands.
> First, NAND EBC mapping was missing, making Linux NAND driver
> unusable on this board. Second, NOR remapping code assumed that
> NOR is always on CS0, however when
This patch fixes 2 problems with FDT EBC mappings on Canyonlands.
First, NAND EBC mapping was missing, making Linux NAND driver
unusable on this board. Second, NOR remapping code assumed that
NOR is always on CS0, however when booting from NAND NOR is on CS3.
---
board/amcc/canyonlands/canyonlands
Signed-off-by: Prafulla Wadaskar
---
drivers/net/kirkwood_egiga.c |1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/drivers/net/kirkwood_egiga.c b/drivers/net/kirkwood_egiga.c
index b43bbf2..3c5db19 100644
--- a/drivers/net/kirkwood_egiga.c
+++ b/drivers/net/kirkwood_egiga.
Heiko,
this issue looks still unfixed and is somewhat annoying.
Im unable to use show_boot_progress with this weak definition in
include/common.h.
Simply re-defining the prototype in my local repo is not reasonable.
How did you solve it ?
Regards,
André
On Wed, 2008-12-10 at 08:27 +0100, H
Hi Felix,
On Thursday 11 June 2009 12:32:29 Felix Radensky wrote:
> Canyonlands board port has its own version of ft_board_setup(),
> overriding the generic one from cpu/ppc4xx/fdt.c. Canyonlands
> version is missing the code that sets OPB/PLB mappings in device
> tree. As a result, Linux NAND dri
Am Montag 22 Juni 2009 11:17:34 schrieb André Schwarz:
> On Mon, 2009-06-22 at 11:00 +0200, Dieter Kiermaier wrote:
> > André,
> >
> > > Dieter,
> > >
> > > On Mon, 2009-06-22 at 08:19 +0200, Dieter Kiermaier wrote:
> > > > André,
> > > >
> > > > > Dieter,
> > > > >
> > > > > On Fri, 2009-06-19 at
Prafulla,
> > -Original Message-
> > From: u-boot-boun...@lists.denx.de
> > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Dieter Kiermaier
> > Sent: Monday, June 22, 2009 2:30 PM
> > To: André Schwarz
> > Cc: u-boot@lists.denx.de
> > Subject: Re: [U-Boot] Question regarding FPGA firm
From: Alessandro Rubini
This sets CONFIG_SYS_HZ to 1000 as required, and completely rewrites
timer code, which is now both correct and much smaller. Unused
functions like udelay_masked() have been removed as no driver uses
them, even the ones that are not currently active for this board.
Signed
From: Alessandro Rubini
The evaluation kit has both Nand and OneNand, both drivers are there
and the two configurations only select a different default for the
jffs partition. This adds the OneNand driver and cleans up storage.
Signed-off-by: Alessandro Rubini
Acked-by: Andrea Gallo
---
Makef
From: Alessandro Rubini
There is only one public release of the Nomadik chip, so the ifdef
in reset code as well as a define in the config file are not needed
Signed-off-by: Alessandro Rubini
Acked-by: Andrea Gallo
---
cpu/arm926ejs/nomadik/reset.S | 13 +
include/configs/nhk881
From: Alessandro Rubini
This is an error in my side in the initial submission: nobody
calls it ""nmdk8815", it's "nomadik hardware kit", nhk8815, instead.
Signed-off-by: Alessandro Rubini
Acked-by: Andrea Gallo
---
Makefile |6 +++---
board/st/{nm
This patch-set cleans up some glitches in my first submission.
I posted it as a single patch and a separate timer patch. The first one is
split as JC asked, and the timer patch is there as well since it is
conceptually in the same set, although I had no comments on the timer part
yet.
JC: I didn't
On Mon, 2009-06-22 at 11:00 +0200, Dieter Kiermaier wrote:
> André,
>
> > Dieter,
> >
> > On Mon, 2009-06-22 at 08:19 +0200, Dieter Kiermaier wrote:
> > > André,
> > >
> > > > Dieter,
> > > >
> > > > On Fri, 2009-06-19 at 17:46 +0200, Dieter Kiermaier wrote:
> > > > > Hello List,
> > > > >
> > > >
André,
> Dieter,
>
> On Mon, 2009-06-22 at 08:19 +0200, Dieter Kiermaier wrote:
> > André,
> >
> > > Dieter,
> > >
> > > On Fri, 2009-06-19 at 17:46 +0200, Dieter Kiermaier wrote:
> > > > Hello List,
> > > >
> > > > I want to boot a (Lattice) FPGA from u-boot by using Slave Serial
> > > > configur
Daniel Gorsulowski wrote on monday, 2009-06-08, 08:25am:
> Dear Jean-Christophe PLAGNIOL-VILLARD,
>
> please sync include/asm-arm/mach-types.h with mach-types.h
> from latest kernel source to enable support for boards
> MEESC (number 2165) and OTC570 (number 2166).
>
> Thanks!
>
> Best regards,
hi everyone,
I am working on a card based on PPC440EP, I am porting u-boot on this card.
As I understand, the PPC initially boots from the flash and then
relocates itself to RAM address where there is board_init_r() and
main_loop() is called.
I have an application code that simply does a loop ba
Mark Jackson wrote:
> Jean-Christophe PLAGNIOL-VILLARD wrote:
...
>> does not apply
>
> Sorry ... does that mean the patch fails in some way, or that this patch is
> not relevant ?
a...@wker:~/git/u-boot$ patch -p1 --dry-run < ~/devel/u-boot-video/\[U-Boot\]\
\[PATCH\]\ Atmel\ LCD\ driver\ GUAR
Dieter,
On Mon, 2009-06-22 at 08:19 +0200, Dieter Kiermaier wrote:
> André,
>
> > Dieter,
> >
> > On Fri, 2009-06-19 at 17:46 +0200, Dieter Kiermaier wrote:
> > > Hello List,
> > >
> > > I want to boot a (Lattice) FPGA from u-boot by using Slave Serial
> > > configuration on a Marvell Kirkwood de
Jean-Christophe PLAGNIOL-VILLARD wrote:
> On 13:46 Tue 16 Jun , Mark Jackson wrote:
>> This patch correctly sets up the guard time parameter in
>> the Atmel LCDC driver.
>>
>> This works on the AVR32 platform, but needs to be tested
>> under the AT91 platform which shares the same code base.
>>
80 matches
Mail list logo