Dear Prafulla Wadaskar,
In message
you wrote:
>
> > Hm... when pulling as instructed I also got this commit which you do
> > not mention here:
>
> I am sorry about this, I added it after sending this request.
No problem.
> > As this is trivial and obvious enough, I left it in.
>
> Please ki
> -Original Message-
> From: Wolfgang Denk [mailto:w...@denx.de]
> Sent: Wednesday, September 08, 2010 2:55 AM
> To: Prafulla Wadaskar
> Cc: Tom Rix; u-boot@lists.denx.de; Prabhanjan Sarnaik; Ashish Karkare
> Subject: Re: Pull request u-boot-marvell.git
>
> Dear Prafulla Wadaskar,
>
>
Dear Mike Frysinger,
In message <201009080020.15801.vap...@gentoo.org> you wrote:
>
> which bug ? the logic is:
> for (...)
> if (...)
> ... = ...;
>
> you want the for loop to have explicit braces ?
> for (...) {
> if (...)
>
On Tuesday, September 07, 2010 18:50:26 John Rigby wrote:
> When eth_init updates dev->enetaddr it does not
> call dev->write_hwaddr. Fix that so when ethaddr
> is set after eth_initialize the change will propagate
> to the hw.
current policy is that the driver init() is supposed to be taking car
On Tuesday, September 07, 2010 19:33:38 Wolfgang Denk wrote:
> Reinhard Meyer wrote:
> > for (i = 0; i < linelen * width; i++)
> >
> > - if (!isprint(ucp[i]) || ucp[i] >= 0x80)
> > - ucp[i] = '.';
> > - ucp[i] = '\0';
> > -
Dear Wolfgang Denk,
>> +/* linebuf as a union causes proper alignment */
>> +union linebuf {
>> +uint32_t ui[MAX_LINE_LENGTH_BYTES/4 + 1];
>> +uint16_t us[MAX_LINE_LENGTH_BYTES/2 + 1];
>> +uint8_t uc[MAX_LINE_LENGTH_BYTES/1 + 1];
>
> Please replace the m
On Tue, 2010-09-07 at 17:50 -0500, Moffett, Kyle D wrote:
> On Sep 07, 2010, at 18:09, Peter Tyser wrote:
> >>> The GPIO functions above aren't hww1u1a specific. What about adding
> >>> generic 85xx GPIO functions so others can use them too?
> >>
> >> I can do that. Do you have any particular pl
From: Tirumala Marri
APM821XX is a new line of SoCs which are derivatives of
PPC44X family of processors. This patch adds support of CPU, cache,
tlb, 32k ocm, bootstraps, PLB and AHB bus.
Signed-off-by: Tirumala R Marri
---
V2:
* Removed Defines added to 405ex.
V3:
* Change APM82XXX to AP
From: Tirumala Marri
Add support code for bluestone board wth APM821XX processor based.
This patch includes early board init, misc init, configure EBC,
initializes UIC, MAKEALL, board.cfg and MAINTAINERS file.
Signed-off-by: Tirumala R Marri > " .
* Correct the phy name CONFIG_M88E_PHY to
From: Tirumala Marri
APM821XX is Applied Micro Circuits Corporations naming
convention for new line of SoCs.
V2:
* Missing space before "<".
* SDR_AHB_CFG not used, remove.
* boot device dfinitions are board specific ? removed.
* APM82161_MASK not used, remove
* set_mcsr() is already c
Please ignore this series. I missed "PATCH" string. I will resend the
correct patch set.
--Marri
> -Original Message-
> From: tma...@apm.com [mailto:tma...@apm.com]
> Sent: Tuesday, September 07, 2010 5:19 PM
> To: u-boot@lists.denx.de
> Cc: s...@denx.de; Tirumala Marri
> Subject: [v3 0/2]
Running U-Boot from the SDCard on an Atmel 9G20 is certainly doable. I have
recently booted U-Boot and Linux from an SDCard on an Atmel AT91SAM9G45-EKES
with no other non-volatile memories and the process is the same with some minor
limitations.
The process I used:
1. SAM Boot loader loads "
From: Tirumala Marri
Add support code for bluestone board wth APM82XXX processor based.
This patch includes early board init, misc init, configure EBC,
initializes UIC, MAKEALL, board.cfg and MAINTAINERS file.
Signed-off-by: Tirumala R Marri > " .
* Correct the phy name CONFIG_M88E_PHY to
From: Tirumala Marri
APM821XX is a new line of SoCs which are derivatives of
PPC44X family of processors. This patch adds support of CPU, cache,
tlb, 32k ocm, bootstraps, PLB and AHB bus.
Signed-off-by: Tirumala R Marri
---
V1:
* Squash some of the patches.
* add space between "||" and "\".
From: Tirumala Marri
APM8 is Applied Micro Circuits Corporations naming
convention for new line of SoCs.
V1:
* Squash some of the patches.
* add space between "||" and "\".
* Add spaces around operators.
* Unsigned int to u32.
* Add empty line which was removed.
* remove warning
Thanks. I'll fix them and resubmit the patch
On Tuesday, September 7, 2010, Wolfgang Denk wrote:
> Dear Alex Ling,
>
> In message <1283869706-18506-1-git-send-email-kasiml...@gmail.com> you wrote:
>> This patch adds basic support for FriendlyARM MINI6410 development board (a
>> Chinese clone of
Dear Reinhard Meyer,
In message <1283243000-25427-1-git-send-email-u-b...@emk-elektronik.de> you
wrote:
> use a union to cause necessary alignment per architecture
>
> Signed-off-by: Reinhard Meyer
> ---
> lib/display_options.c | 24 +---
> 1 files changed, 13 insertions(
On Sep 07, 2010, at 18:09, Peter Tyser wrote:
>>> The GPIO functions above aren't hww1u1a specific. What about adding
>>> generic 85xx GPIO functions so others can use them too?
>>
>> I can do that. Do you have any particular place you recommend I put them?
>
> The 2 places that jump to mind ar
Dear Reinhard Meyer,
In message <4c7b7c52.1040...@emk-elektronik.de> you wrote:
> Reinhard Meyer schrieb:
> >> + uint32_t linebuf[MAX_LINE_LENGTH_BYTES/4 + 1];
> >>> uint32_t *uip = (void*)linebuf;
> >>> uint16_t *usp = (void*)linebuf;
> >>> uint8_t *ucp = (void*)linebuf;
> > I personally p
Dear Reinhard Meyer,
In message <4c7b7864.2080...@emk-elektronik.de> you wrote:
>
> One could add a comment above like:
> /*
>* it is mandatory that linebuf stays uint32_t aligned
>* since we are going to slide along it with a uint32_t
>* pointer
>*/
>
Dear =?iso-8859-1?Q?Lo=EFc?= Minier,
In message <20100903214753.ga8...@bee.dooz.org> you wrote:
> On Fri, Sep 03, 2010, Wolfgang Denk wrote:
> > > I have a client that has asked me to look into loading zImage files
> > > instead of uImage for some ARM based boards.
> > >
> > Why?
>
> It's the dir
Dear Wolfgang,
> > Dear Sandeep,
> >
> > In message <0554bef07d437848af01b9c9b5f0bc5d9fffc...@dlee01.ent.ti.com>
> > you wrote:
> > >
> > > I am not supposed to be adding this patch below
> > > http://www.mail-archive.com/u-boot@lists.denx.de/msg34906.html
> > >
> > > I will need an ACK from the
When eth_init updates dev->enetaddr it does not
call dev->write_hwaddr. Fix that so when ethaddr
is set after eth_initialize the change will propagate
to the hw.
Signed-off-by: John Rigby
---
net/eth.c |8 +++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/net/eth.c b/n
Dear Reinhard Meyer,
In message <4c810919.2040...@emk-elektronik.de> you wrote:
> The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
> Wolfgang Denk (1):
> Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master
>
> are available in the git repository a
Dear Reinhard Meyer,
In message <4c81065f.7060...@emk-elektronik.de> you wrote:
> The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
> Wolfgang Denk (1):
> Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master
>
> are available in the git repository a
Dear Will Tucker,
> Hi,
>
> I’m trying to get the ATSAM9G20-EK booting from SD/MMC on MCI A, with the
> Nand
> and Dataflash disabled, with no luck.
>
> I have gotten the latest u-boot-atmel compiled and placed boot.bin on a FAT
> 16
> formatted. When I turn power on I only get RomBoot o
Dne Út 7. září 2010 23:30:16 Marek Vasut napsal(a):
> N900 again, sorry.
> - Původní zpráva -
>
> > Dear Marek Vasut,
> >
> > In message <1282296691-15910-6-git-send-email-marek.va...@gmail.com> you
> >
> > wrote:
> > > 128MB NOR module support.
> > > Define __io to get harddrive working
Peter,
I've got one more followup question as I work through these updates:
On Sep 03, 2010, at 00:00, Peter Tyser wrote:
>> --- a/Makefile
>> +++ b/Makefile
>> @@ -2499,6 +2499,10 @@ P2020DS_36BIT_config \
>> P2020DS_config: unconfig
>> @$(MKCONFIG) -t $(@:_config=) P2020DS ppc
On Sep 07, 2010, at 17:40, Peter Tyser wrote:
> Hi Kyle,
>> The latest u-boot.git still seems to have the P2020DS lines that I
>> referenced in "Makefile", and it has no references at all to "P2020DS" in
>> the "boards.cfg" file.
>
> It looks like the top-level Makefile is still required for boa
I am using a Ubicom processor with 128 MB of ram, and a network
interface and a USB port.
The issue I have is if I have u-boot enabled then 99% of the time the network
will not work in linux.
I know this is probably a Ubicom driver issue, and they do not have the time
to resolv
Dear Albert Aribaud,
In message <1283586138-4680-1-git-send-email-albert.arib...@free.fr> you wrote:
> This makes the first 63 megabytes of RAM free to use
> for loading images and booting kernels however big they are.
>
> Signed-off-by: Albert Aribaud
> ---
> board/LaCie/edminiv2/config.mk |
> >> diff --git a/board/exmeritus/hww-1u-1a/gpios.h
> >> b/board/exmeritus/hww-1u-1a/gpios.h
> >> +static inline void hww1u1a_gpio_set(unsigned int mask,
> >> + unsigned int dir, unsigned int val)
> >> +{
> >> + volatile ccsr_gpio_t *gpio;
> >> +
> >> + /* First mask off the
On 07/09/10 10:26, Stefan Roese wrote:
> Hi Chris,
>
> On Tuesday 07 September 2010 19:05:46 Chris Packham wrote:
>> My u-boot config is currently setup for the 2x32MB case i.e.
>> CONFIG_SYS_MAX_FLASH_BANKS = 2, CONFIG_SYS_FLASH_BANKS_LIST = {base,
>> base+32MB}. The problem with this is that whe
Dear Minkyu Kang,
In message <4c7cd916.5060...@samsung.com> you wrote:
> Please pull u-boot-samsung/master
> Thanks
>
> The following changes since commit 9efac4a1eb99d9c5539aa6992025eeacab7980c6:
> Wolfgang Denk (1):
> Merge branch 'master' of git://git.denx.de/u-boot-samsung
>
> are
Dear Peter Tyser,
In message <1283895627.26713.466.ca...@petert> you wrote:
>
> It looks like the top-level Makefile is still required for boards that
> support multiple configs, eg 'make P2020DS_36BIT' will configure U-Boot
> to compile a 36-bit addressable U-Boot image while 'make P2020DS' will
On Mon, 6 Sep 2010 12:32:52 +0200
Ilya Yanok wrote:
> +static void resume_from_sleep(void)
> +{
> + u32 magic = *(u32 *)0;
> +
> + typedef void (*func_t)(void);
> + func_t resume = *(func_t *)4;
> +
> + if (magic == 0xf5153ae5)
> + resume();
> +
> + gd->flags &= ~G
Hi Kyle,
> On Sep 03, 2010, at 00:00, Peter Tyser wrote:
> >> --- a/Makefile
> >> +++ b/Makefile
> >> @@ -2499,6 +2499,10 @@ P2020DS_36BIT_config \
> >> P2020DS_config: unconfig
> >> @$(MKCONFIG) -t $(@:_config=) P2020DS ppc mpc85xx p2020ds freescale
> >>
> >> +HWW_1U_1A_36BIT_c
N900 again, sorry.
- Původní zpráva -
> Dear Marek Vasut,
>
> In message <1282296691-15910-6-git-send-email-marek.va...@gmail.com> you
> wrote:
> > 128MB NOR module support.
> > Define __io to get harddrive working.
> > Fix saving of environment into OneNAND.
> > Boot from harddrive when p
On Sat, Sep 4, 2010 at 10:38 AM, Paulraj, Sandeep wrote:
>
>
>>
>> This printk was added recently and results in ugly output on systems
>> with no NAND:
>>
>> NAND: nand_get_flash_type: unknown NAND device: Manufacturer ID: 0x00,
>> Chip ID: 0x00 0 MiB
>>
>> instead of:
>>
>> NAND: 0 MiB
>>
>> S
N900 mailclient is stupid ... Bear with it please.
- Původní zpráva -
> Dear Marek Vasut,
>
> In message <1282296691-15910-7-git-send-email-marek.va...@gmail.com> you
> wrote:
> > The following hardware is currently supported:
> > - UART
> > - USB Host
> > - FPGA
> ...
> > +int usb_board_i
Dear Prafulla Wadaskar,
In message
you wrote:
> Hi Wolfgang/Tom
>
> Pls pull
>
> The following changes since commit 5549d22b656550d36b2cc46743c7220ab0e9dcc4=
> :
> Wolfgang Denk (1):
> Merge branch 'master' of /home/wd/git/u-boot/master
>
> are available in the git repository at:
>
Dear Marek Vasut,
In message <201008201158.10826.marek.va...@gmail.com> you wrote:
> Hi, please pull my git://git.denx.de/u-boot-pxa for-wd-master branch into
> your -
> master branch. Thanks
>
> The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
>
> Merge branch 'ma
Dear Marek Vasut,
In message <1282296691-15910-7-git-send-email-marek.va...@gmail.com> you wrote:
> The following hardware is currently supported:
> - UART
> - USB Host
> - FPGA
...
> +int usb_board_init(void)
> +{
> + UHCHR = (UHCHR | UHCHR_PCPL | UHCHR_PSPL) &
> + ~(UHCHR_SSEP0 |
Le 07/09/2010 21:00, Wolfgang Denk a écrit :
> Dear Albert ARIBAUD,
>
> In message<4c867741.6060...@free.fr> you wrote:
>>
>> I'm a bit lost at the logic of this last sentence. If errors are not
>> always represented as negative return values, and especially so in
>> U-boot, then what is the ratio
Dear Marek Vasut,
In message <1282296691-15910-6-git-send-email-marek.va...@gmail.com> you wrote:
> 128MB NOR module support.
> Define __io to get harddrive working.
> Fix saving of environment into OneNAND.
> Boot from harddrive when possible.
> Add missing MAINTAINERS entry.
>
> Signed-off-by:
Hi Mike,
> when you're editing a commit in the middle of a rebase, you can add on any
> number of commits you like on top of it. so usually the way i split commits:
> git rebase -i ^
>
>
> git format-patch -1
>
> patch -p1 -R < 0001-*
> git commit -a
Dear Shinya Kuribayashi,
In message <4c81b954.7020...@pobox.com> you wrote:
> The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
>
> Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master (2010-08-18
> 21:16:35 +0200)
>
> are available in the git repository
Dear Stefan Roese,
In message <201009031116.25771...@denx.de> you wrote:
> The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
>
> Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master (2010-08-18
> 21:16:35
> +0200)
>
> are available in the git repository
Dear Nobuhiro Iwamatsu,
In message <20100830080813.ga11...@chimagu.nigauri.org> you wrote:
> Dear Hello Wolfgang,
>
> The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
>
> Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master (2010-08-18
> 21:16:35 +0200)
Dear Scott McNutt,
In message <4c753af8.7040...@psyent.com> you wrote:
> Dear Wolfgang,
>
> The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
>Wolfgang Denk (1):
> Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master
>
> are available in the git
Dear Heiko Schocher,
In message <4c7bb3e0.6070...@denx.de> you wrote:
> Hello Wolfgang,
>
> The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
> Wolfgang Denk (1):
> Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master
>
> are available in the git r
Dear Heiko Schocher,
In message <4c760ba5.90...@denx.de> you wrote:
> Hello Wolfgang,
>
> The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
> Wolfgang Denk (1):
> Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master
>
> are available in the git rep
Dear Reinhard Meyer,
In message <4c760243.6030...@emk-elektronik.de> you wrote:
> Dear Mike Frysinger,
> > i dont have a problem with going through the env as a hook, but it doesnt
> > seem
> > to scale. what if you have 2 fram devices and a winbond spi flash ?
> > perhaps
> > the name spec sh
Dear Kumar Gala,
In message you wrote:
> The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
> Wolfgang Denk (1):
> Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-mpc85
Dear Albert ARIBAUD,
In message <4c867741.6060...@free.fr> you wrote:
>
> I'm a bit lost at the logic of this last sentence. If errors are not
> always represented as negative return values, and especially so in
> U-boot, then what is the rationale for supporting a request for
> specifically n
On Sat, 4 Sep 2010 12:38:34 -0500
"Paulraj, Sandeep" wrote:
> Scott,
>
> Is it ok if I add this to my tree?
Yes, once the whitespace is fixed.
>
> Its part of a 11 patch series and a total of some 20 patches submitted by
> Steve
>
>
> > ---
> > drivers/mtd/nand/nand_base.c |7 +--
On Sun, 5 Sep 2010 14:37:13 -0700
Steve Sakoman wrote:
> On Sun, Sep 5, 2010 at 3:59 AM, Sergei Shtylyov wrote:
> > On 02-09-2010 19:33, Steve Sakoman wrote:
> >
> >> diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
> >> index ed1c9c9..b2400dd 100644
> >> --- a/drivers/mt
Le 07/09/2010 16:06, Wolfgang Denk a écrit :
>> Negative always represents errors,
>> whereas positive may represent some valid return state.
>
> He. This is _not_quite_ correct. Not in U-Boot, and not in genreal.
>
> [But your comment asking for a negative return code is valid, of
> course.]
I'm
Hi Chris,
On Tuesday 07 September 2010 19:05:46 Chris Packham wrote:
> I've run into a situation with a new design and I could use some pointers.
>
> Our hardware designers have built prototypes with different flash
> configurations. One possible configuration is a dual die 2x32MB the
> other is
This patch replaces the unnecessary waiting in at91emac_read() and
at91emac_write() by checking the IDLE flag.
Signed-off-by: Andreas Bießmann
---
drivers/net/at91_emac.c | 16 ++--
1 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/drivers/net/at91_emac.c b/drivers/ne
This patch also removes conditional nameing of at91_emac driver whether it's
connection to PHY is RMII or MII.
Signed-off-by: Andreas Bießmann
---
drivers/net/at91_emac.c |6 +-
1 files changed, 1 insertions(+), 5 deletions(-)
diff --git a/drivers/net/at91_emac.c b/drivers/net/at91_emac
Signed-off-by: Andreas Bießmann
Acked-by: Jens Scharsig
---
v2:
Acked-by: Jens Scharsig see
http://article.gmane.org/gmane.comp.boot-loaders.u-boot/83624
additionally add this patch to a series of other patches related to atmel_emac
driver
arch/arm/include/asm/arch-at91/at91_emac.h |2
Hi,
I've run into a situation with a new design and I could use some pointers.
Our hardware designers have built prototypes with different flash
configurations. One possible configuration is a dual die 2x32MB the
other is a single die 1x64MB.
My u-boot config is currently setup for the 2x32MB ca
On Aug 19, 2010, at 2:47 AM, Wolfgang Denk wrote:
> Dear Kumar Gala,
>
> In message you
> wrote:
>>
>> This will take a bit longer since it seems to be compiler version
>> dependent. Not seeing it with gcc 4.3.2. What gcc are you using?
>
> gcc 4.2.2 as comes with ELDK 4.2
>
> Best regard
Dear Reinhard Meyer,
In message <4c865e75.5020...@emk-elektronik.de> you wrote:
>
> Besides that my remarks to yesterdays patch of yours are still valid:
> Those "magic numbers" are due to a specific hardware controller/limitation
> and not any SD/MMC card limitation.
Correct.
> And which hardw
Dear Eric Cooper,
In message <1283869696-10077-6-git-send-email-...@cmu.edu> you wrote:
> derived from patches posted by Jeff Doozan
> in the uBoot forum at http://forum.doozan.com
Please squash into patch that adds support for this board.
> diff --git a/include/configs/dockstar.h b/include/con
Dear Eric Cooper,
In message <1283869696-10077-5-git-send-email-...@cmu.edu> you wrote:
> From: Alexander Holler
>
> Change ident string.
> Include long help messages.
> Environment is at 0xa.
> Define MTD partitions and default environment variables.
>
> Signed-off-by: Eric Cooper
> ---
Dear Dennis Kerrisk,
In message you
wrote:
> Unfortunately the Ubicom board is not supported in the mainline.
> So I would have to report it. Does this work on a board that supports
> Mainline code? I would like to eliminate that as the problem. My guess
> Is that there is a bug in the Ubi
On 07.09.2010 15:57, Wolfgang Denk wrote:
> Dear Lei Wen,
>
> In message<1283862729-17045-1-git-send-email-lei...@marvell.com> you wrote:
>> Signed-off-by: Lei Wen
>> ---
>> drivers/mmc/mmc.c | 59
>> ++--
>> 1 files changed, 38 insertions(+),
From: Alexander Holler
Change ident string.
Include long help messages.
Environment is at 0xa.
Define MTD partitions and default environment variables.
Signed-off-by: Eric Cooper
---
include/configs/dockstar.h | 218
1 files changed, 218 insert
derived from patches posted by Jeff Doozan
in the uBoot forum at http://forum.doozan.com
Signed-off-by: Eric Cooper
---
board/Marvell/dockstar/dockstar.c | 30 ++
include/configs/dockstar.h|1 -
2 files changed, 30 insertions(+), 1 deletions(-)
diff --g
Unfortunately the Ubicom board is not supported in the mainline.
So I would have to report it. Does this work on a board that supports
Mainline code? I would like to eliminate that as the problem. My guess
Is that there is a bug in the Ubicom port, probably dealing with
The USB. I seem to
Dear Eric Cooper,
In message <1283869696-10077-4-git-send-email-...@cmu.edu> you wrote:
> From: Alexander Holler
>
>
> Signed-off-by: Eric Cooper
> ---
> board/Marvell/dockstar/kwbimage.cfg | 162
> +++
> 1 files changed, 162 insertions(+), 0 deletions(-)
>
Dear Eric Cooper,
In message <1283869696-10077-3-git-send-email-...@cmu.edu> you wrote:
>
> Signed-off-by: Eric Cooper
> ---
> board/Marvell/dockstar/Makefile | 51
> board/Marvell/dockstar/config.mk | 28 +++
> board/Marvell/dockstar/dockstar.c | 155
> +++
Dear Eric Cooper,
In message <1283869696-10077-2-git-send-email-...@cmu.edu> you wrote:
>
> Signed-off-by: Eric Cooper
> ---
> arch/arm/include/asm/mach-types.h | 13 +
> 1 files changed, 13 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/include/asm/mach-types.h
> b/arc
Signed-off-by: Eric Cooper
---
board/Marvell/dockstar/Makefile | 51
board/Marvell/dockstar/config.mk | 28 +++
board/Marvell/dockstar/dockstar.c | 155 +
board/Marvell/dockstar/dockstar.h | 41 ++
boards.cfg
From: Alexander Holler
Signed-off-by: Eric Cooper
---
board/Marvell/dockstar/kwbimage.cfg | 162 +++
1 files changed, 162 insertions(+), 0 deletions(-)
create mode 100644 board/Marvell/dockstar/kwbimage.cfg
diff --git a/board/Marvell/dockstar/kwbimage.cfg
b/
Dear Dennis Kerrisk,
In message you
wrote:
>
> I have a problem that I am trying to solve with U-boot. Wha
> t I have is a Ubicom processor with 128 MB of ram, and USB. What I need to
> do is load a 12 MB file into ram, and then program the flash with it. This
Please restrict yo
Dear Alex Ling,
In message <1283869706-18506-1-git-send-email-kasiml...@gmail.com> you wrote:
> This patch adds basic support for FriendlyARM MINI6410 development board (a
> Chinese clone of Samsung SMDK6410)
Please restrict your line length to < 70 characters.
General note: please rebase your
This patch series adds support for the Seagate FreeAgent DockStar.
The DockStar is almost identical to the Marvell SheevaPlug,
but has 256M of NAND flash, 128M of SDRAM, and different LED pins.
A new machine ID (2998) has already been registered for this device.
Alexander Holler (2):
DockStar:
Signed-off-by: Eric Cooper
---
arch/arm/include/asm/mach-types.h | 13 +
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/arch/arm/include/asm/mach-types.h
b/arch/arm/include/asm/mach-types.h
index fd28d2b..e0b6090 100644
--- a/arch/arm/include/asm/mach-types.h
+++
Hi,
I have a problem that I am trying to solve with U-boot. What I
have is a Ubicom processor with 128 MB of ram, and USB. What I need to do is
load a 12 MB file into ram, and then program the flash with it. This version of
u-boot was supplied by Ubicom for their chip. Every time
This patch adds basic support for FriendlyARM MINI6410 development board (a
Chinese clone of Samsung SMDK6410)
Signed-off-by: Alex Ling
---
MAINTAINERS|4 +
MAKEALL|1 +
Makefile | 14
Dear Prafulla Wadaskar,
In message
you wrote:
>
> Negative always represents errors,
> whereas positive may represent some valid return state.
He. This is _not_quite_ correct. Not in U-Boot, and not in genreal.
[But your comment asking for a negative return code is valid, of
course.]
Best re
Dear Vaishali Dhakate,
you are violating a number of netiquette rules; this does not increase
the likelihood for a helpful reply.
- You hijack a mail thread.
- You top post / full quote (and even a message where I asked the OP
_not_ to do exactly this!
and some more.
Please read http://www.ne
Dear Lei Wen,
In message <1283862729-17045-1-git-send-email-lei...@marvell.com> you wrote:
> Signed-off-by: Lei Wen
> ---
> drivers/mmc/mmc.c | 59 ++--
> 1 files changed, 38 insertions(+), 21 deletions(-)
> + BUG_ON(blklen * blocknum > 5242
Dear Lei Wen,
In message <1283862729-17045-3-git-send-email-lei...@marvell.com> you wrote:
> Signed-off-by: Lei Wen
> ---
> common/cmd_mmc.c | 20
> disk/part.c |3 +++
> 2 files changed, 23 insertions(+), 0 deletions(-)
>
> diff --git a/common/cmd_mmc.c b/common
Dear Lei Wen,
In message <1283862729-17045-2-git-send-email-lei...@marvell.com> you wrote:
> Signed-off-by: Lei Wen
> ---
> drivers/mmc/mmc.c |8
> 1 files changed, 8 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
> index 5cc1904..9a50b2f 10064
On Tue, 7 Sep 2010 18:13:12 +0530, Vaishali Dhakate
wrote:
> Hi,
> I am looking for the website where I could browse the u-boot source code for
> Hawkboard only.
> As I dont have access to Linux machine right now.
> plz tell.
> Thanks
> Vaishali.
>
>
Aren't they here?
http://git.denx.de/
http
> -Original Message-
> From: Albert ARIBAUD [mailto:albert.arib...@free.fr]
> Sent: Tuesday, September 07, 2010 4:53 PM
> To: Prafulla Wadaskar
> Cc: u-boot@lists.denx.de; Prabhanjan Sarnaik; Ashish Karkare
> Subject: Re: [PATCH V2] mvsata_ide: adjust port init sequence
>
> Le 07/09/20
Hi , I am new to Linux crosscompilation ...u-boot and Porting Linux .
I plan to do this for Hawk board.
currently I am reading hapazardously..
http://elinux.org/Hawkboard Mainly from this source.tried to follow
these , alright ... still want to make sure I have the fundamentals in
place before I be
Hi,
I am looking for the website where I could browse the u-boot source code for
Hawkboard only.
As I dont have access to Linux machine right now.
plz tell.
Thanks
Vaishali.
On Fri, Sep 3, 2010 at 1:59 PM, Wolfgang Denk wrote:
> Dear "Tobias Waldekranz (Knutsson)",
>
> please STOP full quoting
Signed-off-by: Lei Wen
---
drivers/mmc/mmc.c | 59 ++--
1 files changed, 38 insertions(+), 21 deletions(-)
diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
index cf4ea16..5cc1904 100644
--- a/drivers/mmc/mmc.c
+++ b/drivers/mmc/mmc.c
@@ -77,29
Signed-off-by: Lei Wen
---
common/cmd_mmc.c | 20
disk/part.c |3 +++
2 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c
index c0b30d8..af82984 100644
--- a/common/cmd_mmc.c
+++ b/common/cmd_mmc.c
@@ -154,6 +154,25 @
Signed-off-by: Lei Wen
---
drivers/mmc/mmc.c |8
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
index 5cc1904..9a50b2f 100644
--- a/drivers/mmc/mmc.c
+++ b/drivers/mmc/mmc.c
@@ -134,6 +134,10 @@ mmc_bwrite(int dev_num, ulong start
Hi Terry,
I came across a patch[1] from you to add support to save the
environment to mmc/sd. What is the status of the patch?
I am unable to find it in mainline u-boot or Stefano's u-boot-imx.git.
I ran across this when trying mainline u-boot on a mx51evk where it
won't let me change the defaul
Le 07/09/2010 08:42, Prafulla Wadaskar a écrit :
>> diff --git a/drivers/block/mvsata_ide.c b/drivers/block/mvsata_ide.c
>> @@ -125,15 +129,17 @@ int ide_preinit(void)
>> +return 1;
>
> How about returning negative values for errors ?
Function ide_preinit() is called from cmd_ide.c:i
Dear Albert ARIBAUD,
In message <4c8572f1.8030...@free.fr> you wrote:
> Le 07/09/2010 00:53, Albert Aribaud a =E9crit :
> >
>
> Sorry, missed the "V2" part in the tag -- ignore this post.
Argh... And I missed the followup.
Please ignore my mail, too. :-(
Best regards,
Wolfgang Denk
--
DENX
Dear Albert Aribaud,
In message <1283813585-6565-1-git-send-email-albert.arib...@free.fr> you wrote:
> mvsata_ide_initialize_port(): adjust init sequence (SStatus
> should be checked only after all writes to SControl) and
> return success/failure to ide_preinit().
>
> Also, as some tests showed i
Hello.
On 07-09-2010 3:02, Albert Aribaud wrote:
> mvsata_ide_initialize_port(): adjust init sequence (SStatus
> should be checked only after all writes to SControl) and
> return success/failure to ide_preinit().
> Also, as some tests showed init durations in the hundreds
> of us, raise the time
100 matches
Mail list logo