Re: [U-Boot] [PATCH] add u-boot sja1000/can support

2009-10-23 Thread Mike Frysinger
On Saturday 24 October 2009 00:17:50 miaofng wrote: > From 1f6aaba856fbf484c442eb33cf220774d57fba8d Mon Sep 17 00:00:00 2001 > From: miaofng > Date: Fri, 23 Oct 2009 17:06:50 +0800 > Subject: [PATCH] [can] add u-boot sja1000/can support this should be split into two patches -- one for the core CA

Re: [U-Boot] replacing do_reset with a custom one

2009-10-23 Thread Mike Frysinger
On Friday 23 October 2009 17:43:18 Richard Retanubun wrote: > I am sorry if this has been asked before, It does not appear so on the > mailing list archive. > > I'd like to replace do_reset function with my own custom one, (i.e. > resetting by not petting an external hw watchdog). > > In previo

[U-Boot] [PATCH] add u-boot sja1000/can support

2009-10-23 Thread miaofng
>From 1f6aaba856fbf484c442eb33cf220774d57fba8d Mon Sep 17 00:00:00 2001 From: miaofng Date: Fri, 23 Oct 2009 17:06:50 +0800 Subject: [PATCH] [can] add u-boot sja1000/can support Signed-off-by: miaofng --- Makefile |1 + drivers/can/Makefile | 46 drivers/can/can_core.

[U-Boot] [PATCH] Enable port-mapped access to 16550 UART

2009-10-23 Thread Graeme Russ
This patch does two things: - Changes default behaviour to use proper memory accessors - Allows port-mapped access (using inb/outb) for the x86 architecture Signed-off-by: Graeme Russ --- drivers/serial/ns16550.c | 69 ++ 1 files changed, 39 inse

[U-Boot] replacing do_reset with a custom one

2009-10-23 Thread Richard Retanubun
Greetings, I am sorry if this has been asked before, It does not appear so on the mailing list archive. I'd like to replace do_reset function with my own custom one, (i.e. resetting by not petting an external hw watchdog). In previous discussion, http://lists.denx.de/pipermail/u-boot/2007-Janu

Re: [U-Boot] setting u-boot params based on serial number

2009-10-23 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > > serialnumber=1234 > set_mac_IP=setexprd sn34 ${serialnumber} % 100 ;setexprd sn12 > ${serialnumber} / 100; setenv ipaddr 10.212.${sn12}.${sn34}; setenv > ethaddr 00:90:46:20:${sn12}:${sn34}; setenv eth1addr > 00:90:46:21:${sn12}:${sn34}; setenv sn

Re: [U-Boot] setting u-boot params based on serial number

2009-10-23 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > > Well I have got it working - but it seems to do exactly what you say it > doesn't Well, I'm not always right :-) > so it looks like it works ONLY in hex - Makes sense. That's what semi-all commands do in U-Boot. > I'd like the decimal version

[U-Boot] [PATCH 2/2 v3] xpedite5370: Enable multi-core support

2009-10-23 Thread Peter Tyser
Signed-off-by: Peter Tyser --- board/xes/xpedite5370/tlb.c | 13 + include/configs/XPEDITE5370.h |8 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/board/xes/xpedite5370/tlb.c b/board/xes/xpedite5370/tlb.c index caafa30..a465ce3 100644 --- a/board/xes

[U-Boot] [PATCH 1/2 v3] 85xx: MP Boot Page Translation update

2009-10-23 Thread Peter Tyser
This change has 3 goals: - Have secondary cores be released into spin loops at their 'true' address in SDRAM. Previously, secondary cores were put into spin loops in the 0xfxxx address range which required that boot page translation was always enabled while cores were in their spin loops

Re: [U-Boot] setting u-boot params based on serial number

2009-10-23 Thread David Collier
wow serialnumber=1234 set_mac_IP=setexprd sn34 ${serialnumber} % 100 ;setexprd sn12 ${serialnumber} / 100; setenv ipaddr 10.212.${sn12}.${sn34}; setenv ethaddr 00:90:46:20:${sn12}:${sn34}; setenv eth1addr 00:90:46:21:${sn12}:${sn34}; setenv sn12 ; setenv sn34 that's seriously useful! TVM David

Re: [U-Boot] setting u-boot params based on serial number

2009-10-23 Thread David Collier
Well I have got it working - but it seems to do exactly what you say it doesn't for instance LPNC U-Boot> printenv serialnumber serialnumber=410 LPNC U-Boot> setexpr sn34 ${serialnumber} / 2 LPNC U-Boot> printenv sn34 sn34=208 so it looks like it works ONLY in hex - yup a = simple_st

Re: [U-Boot] blank line repeats last command

2009-10-23 Thread Peter Tyser
On Fri, 2009-10-23 at 13:59 -0500, Scott Wood wrote: > Frank Svendsbøe wrote: > > I partly agree with David Collier on this matter. Before I discovered > > this was a feature, > > I was sure this was a bug, but I understand some of you reasoning.. > > just not all. For instance, > > I can understan

Re: [U-Boot] ip address confusion.

2009-10-23 Thread David Collier
right - pardon my stupidity... I mis-typed above... I've dug into this and I can tftp fine to the server, but it doesn't respond to ping - so I guess it's a setup issue on the ping server s/w Thanks all for your patience D. ___ U-Boot mailing list U-Bo

Re: [U-Boot] blank line repeats last command

2009-10-23 Thread Scott Wood
Frank Svendsbøe wrote: > I partly agree with David Collier on this matter. Before I discovered > this was a feature, > I was sure this was a bug, but I understand some of you reasoning.. > just not all. For instance, > I can understand why it's handy when dumping memory, but what's the > rationale

Re: [U-Boot] blank line repeats last command

2009-10-23 Thread Frank Svendsbøe
On Fri, Oct 23, 2009 at 1:55 PM, Jerry Van Baren wrote: > David Collier wrote: > > [snip] > >> For my money, I'd want to see what I'd repeated, so I'd have been happy >> to have to use up-arrow, enter, rather then just enter. >> >> But my views don't always prevail. >> >> D > > Command repeating p

Re: [U-Boot] ip address confusion.

2009-10-23 Thread David Collier
pardon me everyone - I'm an idiot. Sorry. David In article , from_denx_ub...@dexdyne.com (David Collier) wrote: > *From:* "David Collier" > *To:* u-boot@lists.denx.de > *Date:* Fri, 23 Oct 2009 13:32 +0100 (BST) > > Our office network runs on > > 10.213.1.1/24 > > so all addresses in 10

Re: [U-Boot] setting u-boot params based on serial number

2009-10-23 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > > I have a batch of boards in production. > > say serial numbers 1 to 50 > > I want to set the 2 mac address, and the ip address so that the last few > digits match the serial number. > > can I do this easily with some sort of u-boot script? Or c

Re: [U-Boot] ping default behaviour

2009-10-23 Thread David Collier
> > No, that's not a good default behavior for everybody, for several > > reasons. > The only one I'll mention here is that 'ping' is a ubiquitous > utility that > everybody knows and changing its behavior would be confusing at > best. H.. well if I'm defining it's behaviour in a circumsta

Re: [U-Boot] Help on U-Boot and Linux integration on PPC cpus

2009-10-23 Thread Luigi 'Comio' Mantellini
Hi Jerry and Wolfgang, Thanks for your suggestions. ciao ciao luigi venerdì 23 ottobre 2009 13:39 Jerry Van Baren ha scritto: Luigi 'Comio' Mantellini wrote: > Hi Ml, > > I'm working on a ppc8541 based board. I ported the U-boot board just creationg > a "strip-down" version of frescale854

Re: [U-Boot] setting u-boot params based on serial number

2009-10-23 Thread Ben Warren
David Collier wrote: > This may be bloody obvious to most of you, but I'm still learning. > > I have a batch of boards in production. > > say serial numbers 1 to 50 > > I want to set the 2 mac address, and the ip address so that the last few > digits match the serial number. > > can I do this easil

[U-Boot] setting u-boot params based on serial number

2009-10-23 Thread David Collier
This may be bloody obvious to most of you, but I'm still learning. I have a batch of boards in production. say serial numbers 1 to 50 I want to set the 2 mac address, and the ip address so that the last few digits match the serial number. can I do this easily with some sort of u-boot script? Or

Re: [U-Boot] [PATCH V2] ppc4xx: Initialize magnetic couplers in PLU405

2009-10-23 Thread Wolfgang Denk
Dear Matthias, In message <200910231710.56712.matthias.fu...@esd.eu> you wrote: > > you are right, but I didn't want to trigger a discussion > about CAN in U-Boot. This has nothing to do with CAN :-) Yes, I know. But then - haven't you seen requests to boot over CAN yet? ;-) > Also I am using t

Re: [U-Boot] [PATCH V2] ppc4xx: Initialize magnetic couplers in PLU405

2009-10-23 Thread Matthias Fuchs
Wolfgang, you are right, but I didn't want to trigger a discussion about CAN in U-Boot. This has nothing to do with CAN :-) Also I am using the controller in a slightly untypical manner. I also dont't want to add sja1000 Linux kernel headers (from SocketCAN) - a) they do not contains the wanted C

Re: [U-Boot] [PATCH V2] ppc4xx: Initialize magnetic couplers in PLU405

2009-10-23 Thread Wolfgang Denk
Dear Matthias Fuchs, In message <200910231638.11295.matthias.fu...@esd.eu> you wrote: > This patch fixes an ugly behavior of the IL712 magnetic couplers > as used on PLU405. These parts will remember their last state > over a power cycle which might cause unwanted behavior. ... > --- a/board/esd/p

[U-Boot] [PATCH V2] ppc4xx: Initialize magnetic couplers in PLU405

2009-10-23 Thread Matthias Fuchs
This patch fixes an ugly behavior of the IL712 magnetic couplers as used on PLU405. These parts will remember their last state over a power cycle which might cause unwanted behavior. Signed-off-by: Matthias Fuchs --- V2 changes: - use C struct to access CAN controller registes board/esd/plu40

[U-Boot] Compiling with arm-eabi and YAFFS2

2009-10-23 Thread Chris Isbell
U-Boot 2009.08 fails to compile with the arm-eabi compiler (V4.1.0 and V4.3.1) when YAFFS2 support is enabled (CONFIG_YAFFS2 defined as 1). It reports undefined symbols. (JFFS2 support compiles successfully.) Having investigated, it appears that a work around is to create dummy functions as follow

Re: [U-Boot] ping default behaviour

2009-10-23 Thread Ben Warren
David, On Fri, Oct 23, 2009 at 3:09 AM, David Collier wrote: > would it be reasonable for ping with no parameters to ping the serverip > address if that's defined? > > No, that's not a good default behavior for everybody, for several reasons. The only one I'll mention here is that 'ping' is a ub

[U-Boot] Please pull u-boot-ppc4xx/master

2009-10-23 Thread Stefan Roese
Hi Wolfgang, please pull some fixes and last minute updates from ppc4xx. Thanks. The following changes since commit f67066b6b0740b826ed862615c5ab022aaf4779a: Mike Frysinger (1): envcrc: check return value of fwrite() are available in the git repository at: git://www.denx.de/git/u-bo

Re: [U-Boot] ip address confusion.

2009-10-23 Thread Ben Warren
David, On Fri, Oct 23, 2009 at 5:32 AM, David Collier wrote: > > Our office network runs on > > 10.213.1.1/24 > > so all addresses in 10.212 and 10.213 should be local. > As Jerry mentioned, this is not correct. 10.212 and 10.213 are on different subnets if your mask is 24 bits in size: 10.212

Re: [U-Boot] [PATCH] ppc4xx: Sequoia: Add chip_config command

2009-10-23 Thread Stefan Roese
On Monday 19 October 2009 16:28:14 Stefan Roese wrote: > This patch removes the Sequoia "bootstrap" command and replaces it > with the now common command "chip_config". > > Please note that the patches with the dynamic PCI sync clock > configuration have to be applied, before this one should go in

Re: [U-Boot] [PATCH 1/4] ppc4xx: Add function to check and dynamically change PCI sync clock

2009-10-23 Thread Stefan Roese
On Monday 19 October 2009 16:16:02 Stefan Roese wrote: > PPC440EP(x)/PPC440GR(x): > In asynchronous PCI mode, the synchronous PCI clock must meet > certain requirements. The following equation describes the > relationship that must be maintained between the asynchronous PCI > clock and synchronous

Re: [U-Boot] [u-boot] [PATCH] [1/2] mxc_fec: fix some erroneous PHY accesses.

2009-10-23 Thread javier Martin
Who can ack this patch? Is Fred Fan or Tom Rix? Thank you. -- Javier Martin Vista Silicon S.L. CDTUC - FASE C - Oficina S-345 Avda de los Castros s/n 39005- Santander. Cantabria. Spain +34 942 25 32 60 www.vista-silicon.com ___ U-Boot mailing list U-Boo

Re: [U-Boot] [U-Boot-Users] Serial download, hangs in kermit receive problem

2009-10-23 Thread Wolfgang Denk
Dear =?utf-8?B?546L5Z+55YW7ICA=?=, In message <950053.37427...@web92201.mail.cnh.yahoo.com> you wrote: > > i porting u-boot-1.3.4 to s3c44box.when i porting uclinux to board, > then there is the problem as follows: > > END-class command failed. > Packets sent: 1301 > Retransmissions: 11 > Timeouts

Re: [U-Boot] [PATCH 2/2 v3] ppc4xx: Update flash size in reg property of the NOR flash node

2009-10-23 Thread Stefan Roese
On Wednesday 21 October 2009 13:25:14 Stefan Roese wrote: > Till now only the ranges in the ebc node are updated with the values > currently configured in the PPC4xx EBC controller. With this patch now > the NOR flash size is updated in the device tree blob as well. This is > done by scanning the c

Re: [U-Boot] [PATCH 1/2] fdt: Add fdt_fixup_nor_flash_size() to fixup NOR FLASH size in dtb

2009-10-23 Thread Stefan Roese
On Wednesday 21 October 2009 13:25:07 Stefan Roese wrote: > This function can be used to update the size in the "reg" property > of the NOR FLASH device nodes. This is necessary for boards with > non-fixed NOR FLASH sizes. Applied to u-boot-ppc4xx/master. Thanks. Cheers, Stefan -- DENX Software

Re: [U-Boot] [PATCH] cpu/ppc4xx/fdt.c: avoid strcpy() to constant string

2009-10-23 Thread Stefan Roese
On Tuesday 20 October 2009 23:12:13 y...@denx.de wrote: > strcpy() was iused with the target address being a pointer to a > constant string, which potentially is read-only. Use a (writable) > array of characters instead. Applied to u-boot-ppc4xx/master. Thanks. Cheers, Stefan -- DENX Software E

Re: [U-Boot] We need your help..

2009-10-23 Thread Jerry Van Baren
Matt Gessner wrote: > Hello > >I'm sorry for this odd request because it might get to you too urgent but > it's because of the situation of things right now, Sally and I are stuck in > london with the kids right now,we came down here on vacation ,we were > robbed, worse of it is that bags, cas

Re: [U-Boot] Add Spansion support

2009-10-23 Thread Stefan Roese
On Friday 23 October 2009 13:51:18 alan A. A wrote: > can you tell me please, which steps/infos needed to add support in U-Boot > for my Spansion S29GL064N90TFI04( 2x 8 Mb ) flash memory? This NOR chip should be CFI compatible. So you should be able to use the common U-Boot CFI driver. I suggest

Re: [U-Boot] blank line repeats last command

2009-10-23 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > Now I've turned on command history, if I hit "return" on a blank line it > is the same as hitting up arrow and return - in other words it repeats > the last command. > > That isn't helpful behaviour to my mind. Please READ THE DOCUMENTATION. Best

Re: [U-Boot] ping timeout

2009-10-23 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > > But there's a difference between "is the server there" and "please TFTP > from it - and the timeouts for one are not the same as the timeout for > another. But with a ping you do NOT check if the (TFTP) server is there. All you check if the host i

Re: [U-Boot] Help on U-Boot and Linux integration on PPC cpus

2009-10-23 Thread Wolfgang Denk
Dear "Luigi 'Comio' Mantellini", In message <200910231150.09063.luigi.mantellini...@gmail.com> you wrote: > > 1) I created my dts/dtb (exentially copying a 8541 board): How can this > object > be used by u-boot? should I copy it into the flash (for example)? > 2) is there a how-to or a survey r

Re: [U-Boot] funny handling of arrow keys

2009-10-23 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > > All of which is lovely, but the behaviour I commented on is still odd - > command line parsers shouldn't accept unprintable chars and then complain > about them in an unprintable way. Please feel free to submit a patch to fix this irritating (to

Re: [U-Boot] DHCP command

2009-10-23 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > I'm very confused by this RTFM... RTFM... > isn't it more reasonable to separate the getting of an ip address for our > interface from the downloading of an image by TFTP? It is reasonable, and trivial to do. > maybe I'm looking for a separate

Re: [U-Boot] DHCP doesn't update environment if file download fails.

2009-10-23 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > > If you run DHCP and it gets an ip address, but fails to download the file, > it doesn put the ip address in the environment - arguably it should > update the environment before going for the file? > > maybe again an argument for a separate dodhcp

[U-Boot] [U-Boot-Users] Serial download, hangs in kermit receive problem

2009-10-23 Thread 王培养
hi,all  i porting u-boot-1.3.4 to s3c44box.when i porting uclinux to board, then there is the problem as follows: END-class command failed. Packets sent: 1301 Retransmissions: 11 Timeouts: 0 Damaged packets: 0 Fatal Kermit Protocol Error: Too many retries HINTS... If the preceding error message d

[U-Boot] We need your help..

2009-10-23 Thread Matt Gessner
Hello I'm sorry for this odd request because it might get to you too urgent but it's because of the situation of things right now, Sally and I are stuck in london with the kids right now,we came down here on vacation ,we were robbed, worse of it is that bags, cash and cards and cell phone were

Re: [U-Boot] ip address confusion.

2009-10-23 Thread Jerry Van Baren
David Collier wrote: > Our office network runs on > > 10.213.1.1/24 10.213.1.1/15 per your netmask. > so all addresses in 10.212 and 10.213 should be local. > > and I have a TFTP server on 10.213.1.105 > > if I set my office pc to 10.212.0.99 I can ping 10.213.1.105 > > so far so good > > -

Re: [U-Boot] ARM pull request v3

2009-10-23 Thread Tom
Simon Kagstrom wrote: > Hi Tom and Wolfgang! > > On Sun, 18 Oct 2009 17:58:48 -0500 > Tom wrote: > >> [...] >> The following changes since commit a380279b2abe130c2d3d2c8de36f8ff98bc6b3b0: >>Daniel Gorsulowski (1): >> at91: Update MEESC board support >> >> are available in the git re

[U-Boot] ip address confusion.

2009-10-23 Thread David Collier
Our office network runs on 10.213.1.1/24 so all addresses in 10.212 and 10.213 should be local. and I have a TFTP server on 10.213.1.105 if I set my office pc to 10.212.0.99 I can ping 10.213.1.105 so far so good - if I set u-boot up so the printenv a

[U-Boot] fileaddr

2009-10-23 Thread David Collier
I don't quite understand how bootm in my version of u-boot, for instance, knows it should work with address 1040 it's clearly some sort of default - but where is it set up please? I can't find it in the source files, and it's there immediately after power-on. is it calculated from the other m

[U-Boot] macro substitution - can someone explain please

2009-10-23 Thread David Collier
If I put the following line in my board.h file #define CONFIG_RAMBOOTCOMMAND \ "ping ${serverip} && tftp && bootm ${fileaddr}" then when I do PRINTENV I see ramboot=ping ${serverip} && tftp && bootm 0x1040 so clearly at some point the text ${filea

Re: [U-Boot] blank line repeats last command

2009-10-23 Thread Jerry Van Baren
David Collier wrote: [snip] > For my money, I'd want to see what I'd repeated, so I'd have been happy > to have to use up-arrow, enter, rather then just enter. > > But my views don't always prevail. > > D Command repeating predates the implementation of command line history and works even if

[U-Boot] Add Spansion support

2009-10-23 Thread alan A. A
Hi, can you tell me please, which steps/infos needed to add support in U-Boot for my Spansion S29GL064N90TFI04( 2x 8 Mb ) flash memory? Thanks in advance. _ http://redirect.gimas.net/?n=M

Re: [U-Boot] blank line repeats last command

2009-10-23 Thread David Collier
> That is intentional behavior and has been that way (nearly) > forever. It is configured via the command definition macro on a > per-command basis. "Dangerous" commands do *not* repeat, commands > that may be useful to repeat (e.g. displaying memory) do. ah - much more subtle than I was guess

Re: [U-Boot] Help on U-Boot and Linux integration on PPC cpus

2009-10-23 Thread Jerry Van Baren
Luigi 'Comio' Mantellini wrote: > Hi Ml, > > I'm working on a ppc8541 based board. I ported the U-boot board just > creationg > a "strip-down" version of frescale8541 board (I don't use TSEC and Quicc, > ...)- > My next task is to have the first boot with linux and I'm a lot confused by > fdt

[U-Boot] [RFC][PATCH] Change x86 to use CONFIG_SERIAL_MULTI

2009-10-23 Thread Graeme Russ
The fact that cpu/i386 has contained a serial driver has been a pet peeve of mine for some time. I was just going to move it into lib_i386, but decided that migrating to SERIAL_MULTI was probably the better option since there is already a 16550 driver which is SERIAL_MULTI compatible and my board h

[U-Boot] AT91SAM9263 with DM8203 Phy

2009-10-23 Thread Matthias Wieloch
Hi, Has anyone experience with phy DM8203? On the AT91SAM9263-EK the phy DM9161 is used. But I'd like to use the 2-Port Switch of the DM8203. So far I couldn't get it working. The best result at the moment is a timeout while autonegotiation in U-Boot 1.3.4 based on AT91SAM9263EK. A

Re: [U-Boot] blank line repeats last command

2009-10-23 Thread Jerry Van Baren
David Collier wrote: > Now I've turned on command history, if I hit "return" on a blank line it > is the same as hitting up arrow and return - in other words it repeats > the last command. (for a subset of commands) > That isn't helpful behaviour to my mind. > > David Collier That is intentiona

[U-Boot] blank line repeats last command

2009-10-23 Thread David Collier
Now I've turned on command history, if I hit "return" on a blank line it is the same as hitting up arrow and return - in other words it repeats the last command. That isn't helpful behaviour to my mind. David Collier www.dexdyne.com ___ U-Boot mailing

[U-Boot] [PATCH v2 4/4] add TI DA8xx support: Integrate DA830 EVM support into U-Boot

2009-10-23 Thread Nick Thompson
Integrate DA830 EVM support into U-Boot. Provides initial support for TI OMAP-L137/DA830 SoC devices on a Spectrum Digital EVM board. See http://www.spectrumdigital.com/ Signed-off-by: Nick Thompson --- Applies to u-boot-ti MAINTAINERS|4 + MAKEALL|1

[U-Boot] [PATCH v2 3/4] add TI DA8xx support: Add new directory for da830evm board

2009-10-23 Thread Nick Thompson
Add new directory for da830evm board Provides initial support for TI OMAP-L137/DA830 SoC devices on a Spectrum Digital EVM board. See http://www.spectrumdigital.com/ Provides: Initial boot and configuration. Support for i2c. UART support (console). Signed-off-by: Nick Thompson --- Applies to u-

[U-Boot] [PATCH v2 2/4] add TI DA8xx support: Add new directory for da8xx architecture includes

2009-10-23 Thread Nick Thompson
Add new directory for da8xx architecture includes. Provides initial support for TI OMAP-L1x/DA8xx SoC devices. See http://www.ti.com The DA8xx devices are similar to DaVinci devices but have a differing memory map and updated peripheral versions. Signed-off-by: Nick Thompson --- Applies to u-bo

[U-Boot] [PATCH v2 1/4] add TI DA8xx support: Add new directory for da8xx cpu functions

2009-10-23 Thread Nick Thompson
Add new directory for da8xx cpu functions. Provides initial support for TI OMAP-L1x/DA8xx SoC devices. See http://www.ti.com Provides: Low level initialisation. System clock API. Timer control. System reset. Signed-off-by: Nick Thompson --- Applies to u-boot-ti cpu/arm926ejs/da8xx/Makefile

[U-Boot] [PATCH v2 0/4] add TI DA8xx support:

2009-10-23 Thread Nick Thompson
Add initial support for DA8xx SoC's and the spectrum digital DA830 EVM board. DA8xx is similar to DaVinci devices, but has a differing memory map and updated peripherals. It is intended that DaVinci drivers will be modified in some way to support these differences. A side effect of this is that t

Re: [U-Boot] DHCP command

2009-10-23 Thread David Collier
In article , from_denx_ub...@dexdyne.com (David Collier) wrote: sorry that should have read after all one can always go dhcp;tftp or dhcp && tftp David Collier www.dexdyne.com ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/

[U-Boot] [PATCH v2 1/4] video: mb862xx: improve board-specific Lime configuration

2009-10-23 Thread Wolfgang Grandegger
From: Wolfgang Grandegger To avoid board-specific code accessing the mb862xx registers directly, the public function mb862xx_probe() has been introduced. Furthermore, the "Change of Clock Frequency" and "Set Memory I/F Mode" registers are now defined by CONFIG_SYS_MB862xx_CCF and CONFIG_SYS_MB862

[U-Boot] [PATCH v2 3/4] video: mb862xx: add option VIDEO_FB_16BPP_WORD_SWAP for IPEK01

2009-10-23 Thread Wolfgang Grandegger
From: Wolfgang Grandegger In 16 bpp mode, the new IPEK01 board only requires swapping of D16 words for D32 accesses due to the diffferent connecting to the GDC bus. This patch introduces the configuration option VIDEO_FB_16BPP_WORD_SWAP, which should be set for all board using the mb862xx in 16 b

[U-Boot] [PATCH v2 2/4] video: mb862xx: add option CONFIG_VIDEO_MB862xx_ACCEL for 32bpp mode

2009-10-23 Thread Wolfgang Grandegger
From: Anatolij Gustschin The new IPEK01 board can use the 32 bpp mode for the Lime graphics controller. For this mode, video accelaration does not work. This patch makes the accelaration configurable via CONFIG_VIDEO_MB862xx_ACCEL, which is enabled for the lwmon5 and the socrates board for backwa

[U-Boot] [PATCH v2 0/4] mpc52xx: IPEK01 board support

2009-10-23 Thread Wolfgang Grandegger
This patch add support for the IPEK01 MPC5200 based board. It requires three patches for the Fujitsu MB862xx driver. Changes since v1: - send patches properly Wolfgang Anatolij Gustschin (1): video: mb862xx: add option CONFIG_VIDEO_MB862xx_ACCEL for 32bpp mode Wolfgang Grandegger (3): vide

[U-Boot] [PATCH v2 4/4] mpc52xx: add support for the IPEK01 board

2009-10-23 Thread Wolfgang Grandegger
From: Wolfgang Grandegger This patch adds support for the board IPEK01 based on the MPC5200. The Futjitsu Lime graphics controller is configured in 16 bpp mode. Signed-off-by: Wolfgang Grandegger --- MAINTAINERS |2 + MAKEALL |1 + Makefile

Re: [U-Boot] ping timeout

2009-10-23 Thread David Collier
> > Is there a better way to quickly check for the presence of a > > server? > > Yes. > > > Actually trying TFTP seems to take even longer. > > No, if you configure it correctly. OK - I see your comments and understand them. But there's a difference between "is the server there" and "please T

[U-Boot] ping default behaviour

2009-10-23 Thread David Collier
would it be reasonable for ping with no parameters to ping the serverip address if that's defined? David Collier www.dexdyne.com ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] funny handling of arrow keys

2009-10-23 Thread David Collier
OK, well I'm still working on 2008.10, so things may be different there. in hush I can see 2 references to CONFIG_FEATURE_COMMAND_EDITING which is NOT defined in my set-up elsewhere I see #define CONFIG_CMDLINE_EDITING 1 /* add command line history */ which I have now added in to the .h

[U-Boot] Help on U-Boot and Linux integration on PPC cpus

2009-10-23 Thread Luigi 'Comio' Mantellini
Hi Ml, I'm working on a ppc8541 based board. I ported the U-boot board just creationg a "strip-down" version of frescale8541 board (I don't use TSEC and Quicc, ...)- My next task is to have the first boot with linux and I'm a lot confused by fdt usage. In the past I always worked on mips based

[U-Boot] DHCP command

2009-10-23 Thread David Collier
I'm very confused by this isn't it more reasonable to separate the getting of an ip address for our interface from the downloading of an image by TFTP? after all one can always go hp;TFTP or DHCP && TFTP just puzzled maybe I'm looking for a separate command that just gets an address... cal

[U-Boot] DHCP doesn't update environment if file download fails.

2009-10-23 Thread David Collier
If you run DHCP and it gets an ip address, but fails to download the file, it doesn put the ip address in the environment - arguably it should update the environment before going for the file? maybe again an argument for a separate dodhcp command David Collier www.dexdyne.com __

Re: [U-Boot] hush while confusion

2009-10-23 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > > > Try: "man sh" :-) > > OK... TVM > > I've worked with bash, and naively assumed that that syntax was standard. Bash is bash and not standard. And hush is hush and not standard either. But all things you tried so far are covered by bash, hush, a

Re: [U-Boot] funny handling of arrow keys

2009-10-23 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > my u-boot doesn't react well to my hitting the up-arrow key in puTTY. > > When I do it ( hoping for cxommand repeat ) it moves the arrow iup and > down - but u-boot notices the chars, and barfs any command I then type > > Can I fix this in u-boot o

Re: [U-Boot] ping timeout

2009-10-23 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > > Is there a better way to quickly check for the presence of a server? Yes. > Actually trying TFTP seems to take even longer. No, if you configure it correctly. > Would it be a good enhancement to u-boot to have an environment variable > which c

Re: [U-Boot] ARM pull request v3

2009-10-23 Thread Simon Kagstrom
Hi Tom and Wolfgang! On Sun, 18 Oct 2009 17:58:48 -0500 Tom wrote: > [...] > The following changes since commit a380279b2abe130c2d3d2c8de36f8ff98bc6b3b0: >Daniel Gorsulowski (1): > at91: Update MEESC board support > > are available in the git repository at: > >git://git.denx.d

Re: [U-Boot] [PATCH] License cleanup: Fix license header for some esd display configurations

2009-10-23 Thread Stefan Roese
Hi Wolfgang, On Friday 23 October 2009 10:52:38 Matthias Fuchs wrote: > These files were autogenerated by EPSON configuration tools. > This patch replaces the autogenerated file headers by the GPL > license notice. > > This change is done with the explicit permission > of Epson Research & Develop

Re: [U-Boot] [PATCH 1/2] fdt: Add fdt_fixup_nor_flash_size() to fixup NOR FLASH size in dtb

2009-10-23 Thread Stefan Roese
On Friday 23 October 2009 10:33:10 Wolfgang Denk wrote: > > Looking at the code, I'm OK with it. > > > > Are you looking to get this into the current release (v2009.11) as a > > bugfix or the next release (v2010.02)? > > I consider it a bug fix, as failing to adjust the flash size prevents > booti

Re: [U-Boot] hush while confusion

2009-10-23 Thread David Collier
> Not yet - a patch to add "true" and "false" commands was submitted a > week ago and will make it into the next release - see > http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/69887/focus=6 > 9886 excellent - I'll keep the clumsy-but-working version then. > > I'd still love to find some t

[U-Boot] funny handling of arrow keys

2009-10-23 Thread David Collier
my u-boot doesn't react well to my hitting the up-arrow key in puTTY. When I do it ( hoping for cxommand repeat ) it moves the arrow iup and down - but u-boot notices the chars, and barfs any command I then type Can I fix this in u-boot or by changing the putty session setting to emulate somethin

[U-Boot] [PATCH] License cleanup: Fix license header for some esd display configurations

2009-10-23 Thread Matthias Fuchs
These files were autogenerated by EPSON configuration tools. This patch replaces the autogenerated file headers by the GPL license notice. This change is done with the explicit permission of Epson Research & Development / IC Software Development. Signed-off-by: Matthias Fuchs --- board/esd/comm

[U-Boot] ping timeout

2009-10-23 Thread David Collier
I'd like to have a boot cmd which says "if my test server is there, download uImage from it, otherwise boot from the MMC card." I can do that by starting with a ping, and waiting for it to fail, but it takes 10 seconds, which is way too much to add to the normal boot process. The timeout appears

Re: [U-Boot] Databases of Doctors and Dentists

2009-10-23 Thread cobblestone
Please let me know if you were still looking for directories of US doctors or dentists. I have US medical professional lists, let me know what you need and I will get you some more info, samples and a very reasonable price. you can reach me at: krist...@listexperts.us For your subscript

Re: [U-Boot] [PATCH 1/2] fdt: Add fdt_fixup_nor_flash_size() to fixup NOR FLASH size in dtb

2009-10-23 Thread Wolfgang Denk
Dear Jerry Van Baren, In message <4ae0d860.7030...@gmail.com> you wrote: > > Stefan Roese wrote: > > This function can be used to update the size in the "reg" property > > of the NOR FLASH device nodes. This is necessary for boards with > > non-fixed NOR FLASH sizes. > > > > Signed-off-by: Stefa