> -Original Message-
> From: Mike Frysinger [mailto:vap...@gentoo.org]
> Sent: Thursday, August 27, 2009 2:43 PM
> To: Hu Mingkai-B21284
> Cc: u-boot@lists.denx.de; Fleming Andy-AFLEMING
> Subject: Re: [U-Boot] [PATCH 3/7] eSPI: add eSPI controller support
>
> On Thursday 27 August 200
On Thursday 27 August 2009 02:27:30 Hu Mingkai-B21284 wrote:
> > but what if you dont know the length of the transaction ahead
> > of time ? if you look at the spi flash framework, it'll
> > write a few bytes (like the opcode to read the status
> > register) and then it'll just keep reading 1 byte
> -Original Message-
> From: u-boot-boun...@lists.denx.de
> [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Mike Frysinger
> Sent: Thursday, August 27, 2009 1:54 PM
> To: Hu Mingkai-B21284
> Cc: u-boot@lists.denx.de; Fleming Andy-AFLEMING
> Subject: Re: [U-Boot] [PATCH 3/7] eSPI: add
MPC8379E RM says (10-34):
Once LCRR[CLKDIV] is written, the register should be read, and then
an isync should be executed.
So update this in code.
Also define a LCRR mask for processors, which uses not all bits
in the LCRR register (as for example mpc832x did).
Signed-off-by: Heiko Schocher
---
c
On Thursday 27 August 2009 01:11:32 Stefan Roese wrote:
> On Thursday 27 August 2009 03:55:57 Mike Frysinger wrote:
> > > +int phy_init(void)
> > > +{
> > > + /* Initialize the list */
> > > + INIT_LIST_HEAD(&phy_drvs.list);
> >
> > does it really need to be dynamic ? arent there static initialize
On Wednesday 26 August 2009 23:01:52 Hu Mingkai-B21284 wrote:
> From: Mike Frysinger [mailto:vap...@gentoo.org]
> > On Monday 16 March 2009 04:56:22 Hu Mingkai-B21284 wrote:
> > > But the eSPI controller integrate the chip select into the controller
> > > itself, it use the transfer length to cont
On Thursday 27 August 2009 03:55:57 Mike Frysinger wrote:
> > +int phy_init(void)
> > +{
> > + /* Initialize the list */
> > + INIT_LIST_HEAD(&phy_drvs.list);
>
> does it really need to be dynamic ? arent there static initializers so
> this can be done in .data ?
Using static initializers fai
Hi Wolfgang,
On Wednesday 26 August 2009 22:10:42 Wolfgang Denk wrote:
> > We tested some boot flashes as possible second source.
> > As some had ids above 0x7f, we had to implement JEDEC JEP106Z in
> > cfi_flash.c. I now that I just missed the merge window, but the patches
> > are not urgent and
Hi Wolfgang,
On Wednesday 26 August 2009 22:09:27 Wolfgang Denk wrote:
> > u-boot reports a PCIE PLL lock error at boot time on Yucca
> > board, and left PCIe nonfunctional. This is fixed by making u-boot
> > function ppc4xx_init_pcie() to wait 300 uS after negating reset before
> > the first chec
On Aug 26, 2009, at 10:27 PM, Kumar Gala wrote:
>
> On Aug 26, 2009, at 3:46 PM, Wolfgang Denk wrote:
>
>> Dear Kumar Gala,
>>
>> In message <1250276442-28463-1-git-send-email-ga...@kernel.crashing.org
>>> you wrote:
>>> Added a arch_preboot() function that cpu specific code can
>>> implement to
On Aug 26, 2009, at 3:46 PM, Wolfgang Denk wrote:
> Dear Kumar Gala,
>
> In message <1250276442-28463-1-git-send-email-ga...@kernel.crashing.org
> > you wrote:
>> Added a arch_preboot() function that cpu specific code can
>> implement to
>> allow for various modifications to the state of the m
Hi Mike,
First truly sorry for the long time delay.
Please find comments inline.
> -Original Message-
> From: Mike Frysinger [mailto:vap...@gentoo.org]
> Sent: Monday, March 16, 2009 6:06 PM
> To: Hu Mingkai-B21284
> Cc: u-boot@lists.denx.de; Jean-Christophe PLAGNIOL-VILLARD;
> Fleming
Hi Wolfgang,
First truly sorry for the long time delay. I'm not on purpose.
I reworked this patch and unified the implementation of booting from
NAND/SDCard/SPI flash
for MPC85xx platform, and sent to the U-Boot list on August:
http://lists.denx.de/pipermail/u-boot/2009-August/058803.html
Also w
Hi Wolfgang Denk,
Please pull a couple of minor fix patches for the upcoming release:
The following changes since commit 85f9823cd74bd2d9a7854ca0b2244e43b5214e5a:
Wolfgang Denk (1):
Merge branch 'master' of git://git.denx.de/u-boot-ppc4xx
are available in the git repository at:
git:
On Mon, 24 Aug 2009 14:32:18 -0500
Kim Phillips wrote:
> apparently the ITX was missed last round.
>
> Also make bootdelay consistent with other boards, so as to give on the
> opportunity to fix mistakenly set bootcmd without having checked for an
> bootdelay zero setting first.
>
> Signed-off-
On Fri, 21 Aug 2009 17:38:38 -0500
Kim Phillips wrote:
> Signed-off-by: Kim Phillips
> ---
applied.
Kim
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
On Wednesday 26 August 2009 16:13:03 Jean-Christophe PLAGNIOL-VILLARD wrote:
> +void generic_phy_register(void)
> +{
> + struct phy_driver generic_phy = {
> + .name = "Generic PHY",
> + .phy_id = 0x,
> + .phy_id_mask = 0x,
> + .fea
On Wednesday 26 August 2009 16:13:02 Jean-Christophe PLAGNIOL-VILLARD wrote:
> the current implementation will allow you to probe, instance and mananage
> one phy_device per mii_device
"instance" -> "instantiate"
"mananage" -> "manage"
> --- /dev/null
> +++ b/drivers/net/phy/phylib.c
> @@ -0,0 +1
On Wednesday 26 August 2009 16:13:01 Jean-Christophe PLAGNIOL-VILLARD wrote:
> this rework is done in order to add a phylib and reduce and simplify
> the implementation of multi net_device support for the same driver
i think you mean multi phy ...
> precedently we pass the device name to the miip
On Wed, 26 Aug 2009 08:28:37 +0200
Heiko Schocher wrote:
> Hello Kim,
>
> Kim Phillips wrote:
> > On Tue, 25 Aug 2009 13:31:34 +0200
> > Heiko Schocher wrote:
> >> + /* MPC8379E RM 10-34 says after writting this register
> >> + * the register should be reread and an isync should be
> >> +
Dear AGKohler,
please do not top post-full quote.
Make sure to read http://www.netmeister.org/news/learn2quote.html
And please note that this still off topic on this list. It is a LINUX
question, not an U-Boot one.
In message <25157108.p...@talk.nabble.com> you wrote:
>
> I am using u-boot ve
Dear Kumar Gala,
In message <1250276442-28463-1-git-send-email-ga...@kernel.crashing.org> you
wrote:
> Added a arch_preboot() function that cpu specific code can implement to
> allow for various modifications to the state of the machine right before
> we boot. This can be useful to setup registe
Wolfgang Denk wrote:
>> Scott could you applied on your tree as this one need the nand patch that you
>> handle
>
> Could you please run this through your "next" branch and send a pullr
> equest? TIA.
>
> Acked-by: Wolfgang Denk
I don't have that patch in my inbox anymore -- but I've sent a pul
The following changes since commit d7f4d14a8b317857163ccf3d97e3b1a46ba2282e:
Wolfgang Denk (1):
Merge branch 'next' of git://www.denx.de/git/u-boot-coldfire into next
are available in the git repository at:
git://git.denx.de/u-boot-nand-flash.git next
Heiko Schocher (1):
83xx,
On Wed, Aug 26, 2009 at 01:15:39PM -0700, AGKohler wrote:
> I am using u-boot version 1.1.3, kernel, Linux(Debian) is version 2.6.12.
Both of thosed are extremely old. Our ability to help you with them is
very limited. Please use the current code.
> I searched through the kernel configuration o
the current implementation will allow you to probe, instance and mananage
one phy_device per mii_device
this implementation is based on the linux implementation done by Andy Fleming
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD
---
drivers/net/phy/Makefile |1 +
drivers/net/phy/phylib.c |
this driver must be the last one registered to be the last one probed
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD
---
drivers/net/phy/Makefile |1 +
drivers/net/phy/generic.c | 35 +++
drivers/net/phy/phylib.c |8
include/phydev.h
I am using u-boot version 1.1.3, kernel, Linux(Debian) is version 2.6.12.
I searched through the kernel configuration options via menuconfig, i could
not find
anything that configures the number of serial ports. In LINUX, i tried
creating ttyS1 with
"mknod -m 660 /dev/ttS1 c 4 65". A /dev/ttyS1 s
Dear Scott,
In message <20090814070359.gd11...@game.jcrosoft.org> Jean-Christophe
PLAGNIOL-VILLARD wrote:
> On 02:32 Tue 11 Aug , Ilya Yanok wrote:
> > This patch adds support for i.MX27-LITEKIT development board from
> > LogicPD. This board uses i.MX27 SoC and has 2MB NOR flash, 64MB NAND
>
Dear Stefan,
In message <1248205624-17062-1-git-send-email-niklaus.gi...@member.fsf.org>
Niklaus Giger wrote:
> Signed-off-by: Niklaus Giger
> ---
>
> We tested some boot flashes as possible second source.
> As some had ids above 0x7f, we had to implement JEDEC JEP106Z in cfi_flash.c.
> I now t
Dear Stefan,
In message <89f945070907210538u2784629ev72346813b8a35...@mail.gmail.com>
Rupjyoti Sarmah wrote:
> u-boot reports a PCIE PLL lock error at boot time on Yucca
> board, and left PCIe nonfunctional. This is fixed by making u-boot
> function ppc4xx_init_pcie() to wait 300 uS after negatin
Dear Kyungmin Park,
In message <20090721025804.ga3...@july> you wrote:
> Remove unused read_spareram and add unlock_all as kernel does
>
> Signed-off-by: Kyungmin Park
> ---
Applied to "next", thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Det
Dear =?ISO-8859-1?Q?Andr=E9?= Schwarz,
In message <1250682092.22118.8.ca...@swa-m460> you wrote:
> clean up existing boards (mvBC-P/MPC5200 and mvBL-M7/MPC8343)
> by using common code.
>
>
> Signed-off-by: Andr=C3=A9 Schwarz
> ---
>
> Wolfgang,
> this is my current diff against your latest mas
Dear "Eric Millbrandt",
In message <20090825152816.m45...@coldhaus.com> you wrote:
> Cleanup typo and trailing whitespace from galaxy5200.h
>
> Signed-off-by: Eric Millbrandt
> ---
> include/configs/galaxy5200.h |8
> 1 files changed, 4 insertions(+), 4 deletions(-)
Applied to "ne
Dear "Liew Tsi Chung-R5AAHP",
In message
<4791e710007feb4bbf83775d787f462f08d3d...@az33exm22.fsl.freescale.net> you
wrote:
> Hi Wolfgang,
>
> The following changes since commit
> d3870bd2d832ea2048b7cb2bbb9d642585b137cf:
> Wolfgang Denk (1):
> Merge branch 'next' of git://git.denx.de/
Dear Stefan Roese,
In message <200908260911.36968...@denx.de> you wrote:
> The following changes since commit d3870bd2d832ea2048b7cb2bbb9d642585b137cf:
> Wolfgang Denk (1):
> Merge branch 'next' of git://git.denx.de/u-boot-net into next
>
> are available in the git repository at:
>
>
Hi Heiko,
On Wed, 26 Aug 2009 08:57:46 +0200, Heiko Schocher wrote
> Hello Eric,
>
> Eric Millbrandt wrote:
> > Reset any i2c devices that may have been interrupted by a system reset.
> > Normally this would be accomplished by clocking the line until SCL and SDA
> > are released and then sending
Dear =?iso-8859-1?Q?Ricardo_Mart=EDnez?=,
In message
you wrote:
>
> I'm trying to printf something when one timer generates an interrupt.
Hm... there are certain things you can do in interrupt contect, amd
certain things you cannot do.
Remember that in standard C you can in a signal handler
> -Original Message-
> From: Wolfgang Denk [mailto:w...@denx.de]
> Sent: woensdag 26 augustus 2009 15:38
> To: Wouter Eckhardt
> Cc: u-boot@lists.denx.de
> Subject: Re: [U-Boot] Custom PPC440GX board: "Unsupported relocation
> error"
>
> Dear "Wouter Eckhardt",
>
> In message
<4cd35cd1f80
Hi,
I'm trying to printf something when one timer generates an interrupt.
u-boot version is 1.3.4.
The steps I've followed:
- #define CONFIG_USE_IRQ
- I've enabled interrupts
- I've enabled timer interrupt
- I've enabled timer
- I've checked interrupt masks
- I've checked interrupt status fla
> -Original Message-
> From: Wolfgang Denk [mailto:w...@denx.de]
> Sent: Wednesday, August 26, 2009 8:20 PM
> To: Premi, Sanjeev
> Cc: U-Boot Mailing List
> Subject: Re: [U-Boot] Re-distributing mkimage binary
>
> Dear Sanjeev,
>
> In message
>
> you wrote:
> >
> > Is it possible to
Hi Wolfgang,
The following changes since commit
d3870bd2d832ea2048b7cb2bbb9d642585b137cf:
Wolfgang Denk (1):
Merge branch 'next' of git://git.denx.de/u-boot-net into next
are available in the git repository at:
git://www.denx.de/git/u-boot-coldfire.git next
TsiChung Liew (2):
Dear Sanjeev,
In message you
wrote:
>
> Is it possible to redistribute the mkimage binary outside the u-boot package?
Yes, of course this is possible. It's Free Software under GPL, so you
can modify and/or repackage it as you like. Just make sure to fulfill
the requirements of the GPL which st
As long as you conform to the GPL its fine.
- k
On Aug 26, 2009, at 9:15 AM, Premi, Sanjeev wrote:
> Hi,
>
> Is it possible to redistribute the mkimage binary outside the u-boot
> package?
>
> Best regards,
> Sanjeev
>
> ___
> U-Boot mailing list
> U
Buenas tardes,
Si el proyecto sigue adelante, pero se retomará en Septiembre. Incidencias
administrativas de facturación, y falta de personal debuido a las vacaciones
han sido los culpables de no haber contestado antes.
Yo me reincorporé esta semana, y a lo largo de la semana que viene volverá
Hi,
Is it possible to redistribute the mkimage binary outside the u-boot package?
Best regards,
Sanjeev
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
Dear IaMaPlAyEr,
In message <2ae8403e0908260106g38fe540eldeb0f8660526c...@mail.gmail.com> you
wrote:
>
> I do like to ask a question, why u-boot have no upload command?
Because so far nobodyu needed it bad enough to went into the efforts
of implementing it.
> image such a scene:
> you have tw
Dear "Wouter Eckhardt",
In message <4cd35cd1f8085945b597f80eec8942130348d...@exc01.bk.prodrive.nl> you
wrote:
>
> I've been busy getting a custom PPC440GX board to boot U-Boot. I started
> with a U-Boot (version 1.3.2) based on the ALPR board and the ELDK 4.0
> toolchain.
>
> I got all that wor
Hi Wolfgang
- Original Message -
From: "Wolfgang Denk"
To: "Vivek"
Cc: "Scott Wood" ;
Sent: Friday, July 31, 2009 12:34 AM
Subject: Re: [U-Boot] [RESEND][PATCH 3/6]POSEIDON Board Support
> Dear Vivek,
>
> In message you wrote:
>> Removed code referring Legacy NAND and did some code
Hi
I am using u-boot 1.3.4 ( got from atmel) on AT91SAM9G20 , If enable the
ethernet related code in the u-boot ( drivers etc) the board starts
resetting again and again continuously without giving any error message.
Please somebody tell me what type of mistakes ( coding errors ) make the
boa
Hi all,
I have in memory string/values whatever and I would like to
setup some u-boot variables based on it directly from HUSH
I mean for example to have there unique MAC addr and I would like
to setup it in preboot.
I am trying to find out any U-BOOT commands which could help me.
But I am not su
With the patch updating the atmel_mci driver, some updates are necessary on
AVR32 to make the MMC support working. This patch defines CONFIG_GENERIC_MMC in
the affected boards config and defines the function cpu_mmc_init.
Signed-off-by: Albin Tonnerre
---
As I don't own any AVR32 hardware, I woul
This patch updates (well, pretty much rewrites, actually) the atmel_mci driver
so that it can be used with the new mmc API.
Currently, the driver only supports what the previous driver supported, that
is:
- assumes that the MMC slot was configured in the cpu/board code, no
slot-switching
- doe
hi all:
I do like to ask a question, why u-boot have no upload command?
image such a scene:
you have two board, and develop with one, but to some unknow reason, the
board cannot boot.
maybe it is the hardware problem, you want to upload all the data---a bin
file, and download it to
another board
Hi Ben,
Ben Warren wrote:
> Hi Michal,
>
> mon...@monstr.eu wrote:
>> Hi Ben,
>>
>> I updated LL-temac driver - all fixes are there.
>> Ad to your point Microblaze uses only one ethernet core. It is possible
>> to use a lot of IPs but I don't have board like this to test it that's
>> why I don't w
Hi all.
I've been busy getting a custom PPC440GX board to boot U-Boot. I started
with a U-Boot (version 1.3.2) based on the ALPR board and the ELDK 4.0
toolchain.
I got all that working and now I trying to move up to a newer version of
U-Boot and a newer toolchain (specifically: U-Boot 2009.03 an
Hi Ben,
Ben Warren wrote:
> Hi Michal,
>
> Michal Simek wrote:
>> Hi Stefan,
>>
>> Stefan Roese wrote:
>>
>>> Hi Michal,
>>>
>>> On Tuesday 25 August 2009 09:02:14 Michal Simek wrote:
>>>
I saw you have phy lib in your branch. What is the current state?
Are there any problems? W
The following changes since commit d3870bd2d832ea2048b7cb2bbb9d642585b137cf:
Wolfgang Denk (1):
Merge branch 'next' of git://git.denx.de/u-boot-net into next
are available in the git repository at:
git://www.denx.de/git/u-boot-cfi-flash.git next
Niklaus Giger (1):
Support up to
Hi Dirk,
On Friday 21 August 2009 10:13:21 Dirk Eibach wrote:
> Signed-off-by: Dirk Eibach
> ---
> Changes since v1:
> - also changed config name
>
> Makefile| 16
> include/configs/compactcenter.h |6 +++---
> 2 files changed, 11 insertions(+), 11
On Wednesday 22 July 2009 17:13:24 Niklaus Giger wrote:
> see http://www.jedec.org/download/search/jep106Z.pdf
> Add some second source legacy flash chips 256x8.
>
> Signed-off-by: Niklaus Giger
Applied to cfi-flash/next. Thanks.
Cheers,
Stefan
--
DENX Software Engineering GmbH, MD: Wolfga
60 matches
Mail list logo