[U-Boot] how to use a function provided by u-boot in linux driver

2009-05-18 Thread Kartheek N S
Hi All, I would like to use miiphy_read and miiphy_write functions provided by u-boot in the linux kernel driver. This is required for reading the link status of each of the phys associated with a switch. I added miiphy_read and miiphy_write to the exports.h and tried to use it in t

[U-Boot] my u-boot freezing at Uncompress Linux...

2009-05-18 Thread SlinceArm
Hi. dear all my u-boot-2008.03 use tftp download my kernel , but my u-boot was frezzing at Uncompressing Linux ... and show nothing anymore in my console i try another way to start my kernel : nfs , but there is the same issue in my u-boot . //here are is u-boot information in my console

[U-Boot] [PATCH] Add a + prefix form to nand commands.

2009-05-18 Thread Josh Karabin
Permit the use of a + prefix to sizes in nand commands to extend operations to multiples of the appropriate page or erase block size. Signed-off-by: Josh Karabin --- common/cmd_nand.c | 122 +++-- 1 files changed, 99 insertions(+), 23 deletions(-)

Re: [U-Boot] [PATCH v2 05/10] Rename ads5121 board into mpc5121ads

2009-05-18 Thread Kim Phillips
On Sat, 16 May 2009 10:47:41 +0200 Wolfgang Denk wrote: > > We rename the board so we use a consistent name in U-Boot and in > Linux. Also, we use this opportunity to move the board into the > Freecale vendor directory. > > Signed-off-by: Wolfgang Denk > Cc: John Rigby > --- > MAKEALL

Re: [U-Boot] [PATCH v7] Marvell Kirkwood family SOC support

2009-05-18 Thread Wolfgang Denk
Dear Prafulla Wadaskar, > +unsigned char get_random_hex(void) > +{ > + int i; > + u32 inbuf[16]; > + u8 outbuf[16]; > + > + /* > + * in case of 88F6281/88F6192 A0, > + * Bit7 need to reset to generate random values in KW_REG_UNDOC_0x1470 > + * Soc reg offsets KW_REG

Re: [U-Boot] [PATCH] ARM DaVinci Leopard Board Support

2009-05-18 Thread Paulraj, Sandeep
From: Jean-Christophe PLAGNIOL-VILLARD [plagn...@jcrosoft.com] Sent: Monday, May 18, 2009 5:25 PM To: Wolfgang Denk Cc: Paulraj, Sandeep; u-boot@lists.denx.de Subject: Re: [U-Boot] [PATCH] ARM DaVinci Leopard Board Support On 22:47 Mon 18 May , Wolfgan

Re: [U-Boot] [RFC] API Licence

2009-05-18 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090518212049.gj17...@game.jcrosoft.org> you wrote: > > I've to write an application that need to use the mmc and net but can not > be under GPL MMC is not exported to API, is it? And why cannot your application be under GPL? Best regards, Wo

Re: [U-Boot] [RFC] API Licence

2009-05-18 Thread Mike Frysinger
On Monday 18 May 2009 17:20:49 Jean-Christophe PLAGNIOL-VILLARD wrote: > On 17:16 Mon 18 May , Mike Frysinger wrote: > > On Monday 18 May 2009 16:31:39 Jean-Christophe PLAGNIOL-VILLARD wrote: > > > I'd like to known if it's possible to update the COPYING > > > > > > NOTE! This copyright d

Re: [U-Boot] [PATCHv2 1/4] omap3: embedd gpmc_cs into gpmc config struct

2009-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 09:25 Fri 15 May , Matthias Ludwig wrote: > Dear Jean-Christophe > > > > #ifndef __ASSEMBLY__ > > > +struct gpmc_cs { > > > + unsigned int config1; /* 0x00 */ > > > + unsigned int config2; /* 0x04 */ > > > + unsigned int config3; /* 0x08 */ > > > + unsigned in

Re: [U-Boot] [PATCH v2] OMAP3: Introduce CONFIG option for power code

2009-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 07:56 Sat 16 May , Dirk Behme wrote: > Some OMAP3 boards need control for external power companion > chips. Introduce a CONFIG option for this, to avoid Makefile > changes for each board. > > Signed-off-by: Dirk Behme > --- IIRC the Revc Change it's companion chip is this code still compat

Re: [U-Boot] [PATCH] OMAP3: Fix CKE1 MUX setting to allow self-refresh

2009-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 08:39 Sat 16 May , Dirk Behme wrote: > The Beagle rev Cx and Overo boards are using both SDRC CSes. The MUX > setting is needed for the second CS clock signal to allow the 2 RAM > parts to be put in self-refresh correctly. This also works on rev B > Beagle boards with 128M of RAM. > > From:

Re: [U-Boot] [PATCH v8] Marvell MV88F6281GTW_GE Board support

2009-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
> + * Each MPP functionality can be configuration by a 4bit value > + * of MPP control reg, the value and associated functionality is SoC > + * varient dependent > + */ > +#define MV88F6281GTW_GE_MPP0_7 0x0111 > +#define MV88F6281GTW_GE_MPP8_15 0x11103311 > +#define M

Re: [U-Boot] [PATCH v7.1] Marvell Kirkwood family SOC support

2009-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
> > v7.1: u-boot.lds moved from board specific to kirkwood > you can remove the u-boot.lds and it's reference in cpu/arm926ejs/config.mk as you use the same as the cpu/arm926ejs/u-boot.lds Best Regards, J. ___ U-Boot mailing list U-Boot@lists.denx.de h

Re: [U-Boot] [PATCH v7] Marvell Kirkwood family SOC support

2009-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
> + > + icache_enable(); > + /* Change reset vector to address 0x0 */ > + temp = get_cr(); > + set_cr(temp & ~CR_V); > + > + return 0; > +} > +#endif /* CONFIG_ARCH_MISC_INIT */ > diff --git a/cpu/arm926ejs/kirkwood/cpu.h b/cpu/arm926ejs/kirkwood/cpu.h please move to include/asm

Re: [U-Boot] [PATCH] ARM DaVinci Leopard Board Support

2009-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:47 Mon 18 May , Wolfgang Denk wrote: > Dear Jean-Christophe PLAGNIOL-VILLARD, > > In message <20090518202149.gg17...@game.jcrosoft.org> you wrote: > > > > > +#ifndef __CONFIG_H > > > +#define __CONFIG_H > > > +#include > > > + > > > + > > > +#define DAVINCI_LEOPARD > > please CONFIG_ >

Re: [U-Boot] [RFC] API Licence

2009-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:16 Mon 18 May , Mike Frysinger wrote: > On Monday 18 May 2009 16:31:39 Jean-Christophe PLAGNIOL-VILLARD wrote: > > I'd like to known if it's possible to update the COPYING > > > > NOTE! This copyright does *not* cover the so-called "standalone" > > applications that use U-

Re: [U-Boot] [RFC] API Licence

2009-05-18 Thread Mike Frysinger
On Monday 18 May 2009 16:31:39 Jean-Christophe PLAGNIOL-VILLARD wrote: > I'd like to known if it's possible to update the COPYING > > NOTE! This copyright does *not* cover the so-called "standalone" > applications that use U-Boot services by means of the jump table > p

[U-Boot] Uboot porting Cloning an existing board/processor configuration : Link errors

2009-05-18 Thread alfred steele
Hi All, I am trying to clone the configuration of a board already exiting in U-boot in an effort to port u-boot to this board. I changed the following files Makefile - To copy the config rule for the corresponding board. created a directory for the new board in the "board" directory and copied

Re: [U-Boot] [PATCH] ARM DaVinci Leopard Board Support

2009-05-18 Thread Paulraj, Sandeep
Wolfgang, I think what JC means is to use something like #define CONFIG_SYS_NAND_BASE_LIST { DAVINCI_NAND_BASE, } Now this info is available in the hardware.h file for DaVinci but it requires a little tweak. I just sent another patch to address that [PATCH] ARM DaVinci Minor Change to header f

[U-Boot] [PATCH] ARM DaVinci Minor Change to header file

2009-05-18 Thread s-paulraj
WE want to use MACROS in the config files for various DaVinci boards. At the moment this is not possible because we get compilation error when we include the hardware.h header file in the config file for various SOC's and then try to compile. This patch addresses comments received while submitting

Re: [U-Boot] [PATCH] ARM DaVinci Leopard Board Support

2009-05-18 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090518202149.gg17...@game.jcrosoft.org> you wrote: > > > +#ifndef __CONFIG_H > > +#define __CONFIG_H > > +#include > > + > > + > > +#define DAVINCI_LEOPARD > please CONFIG_ Or rather CONFIG_SYS_DAVINCI_LEOPARD This is not a user-0selectable p

[U-Boot] [RFC] API Licence

2009-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi, I'd like to known if it's possible to update the COPYING NOTE! This copyright does *not* cover the so-called "standalone" applications that use U-Boot services by means of the jump table provided by U-Boot exactly for this purpose - this is merely

Re: [U-Boot] [patch] Add display cpuinfo for Atmel at91sam9261 Cores

2009-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:06 Sat 02 May , Remy Bohmer wrote: > This patch adds support for displaying CPU type information > about Atmel AT91 cores during boot. It currently only configures it for the > at91sam9261ek board, but it can easily be configured for all at91 based cores. please do this in two seperate pa

Re: [U-Boot] [PATCH] ARM DaVinci Leopard Board Support

2009-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:32 Wed 13 May , s-paul...@ti.com wrote: > The patch applies to arm/next. It was tested on a leopard board. > After testing had to change the MACH TYPE as this board is not present > in the list of mach types at the moment. So the patch itself is going > to give a compilation failure. whic

Re: [U-Boot] Out-of-tree build of API code fails

2009-05-18 Thread Rafal Jaworowski
On 2009-05-15, at 23:19, Wolfgang Denk wrote: > In message <0ad43a8e-402b-41f0-bab1-e6d7f7537...@semihalf.com> you > wrote: >> Dear Wolfgang, >> >> On 2009-03-29, at 00:03, Wolfgang Denk wrote: >> >>> Dear Rafal, >>> >>> it seems the api_examples/ code fails when building out of tree: >> >> ...

Re: [U-Boot] [PATCH 01/10] mx27: basic cpu support

2009-05-18 Thread Wolfgang Denk
Dear Magnus, In message <59b21cf20905180959p4e736d52g566b0e826e17c...@mail.gmail.com> you wrote: > > After having browsed some powerpc code I can find two different ways > the struct-thing is used: > Variant A, all members declared volatile: > struct controller_reg { > volatile uint32_t reg1;

Re: [U-Boot] Not getting the Uboot prompt for sbc2410x using u-boot1.1.6

2009-05-18 Thread Wolfgang Denk
Dear vishalD, In message <23596126.p...@talk.nabble.com> you wrote: > > > I am using the sbc2410x board. I successfully compiled the uboot-1.1.6 for > this board. But after downloading the uboot.bin to the flash, i am not > getting the uboot prompt on serial terminal. U-Boot 1.1.6 is obsolete.

Re: [U-Boot] [PATCH 2/2] KB9202: Add NAND support

2009-05-18 Thread Scott Wood
Matthias Kaehlcke wrote: >>> +#ifdef CONFIG_KB9202B_ATL >>> +#define CFG_MAX_FLASH_BANKS0 >>> +#else >> Is this really the recommended way of turning off flash support? > > thanks for your review and your comments. > > i'm new to u-boot development, could you point me to the correct way > of

Re: [U-Boot] [PATCH 01/10] mx27: basic cpu support

2009-05-18 Thread Scott Wood
On Mon, May 18, 2009 at 06:59:18PM +0200, Magnus Lilja wrote: > After having browsed some powerpc code I can find two different ways > the struct-thing is used: > Variant A, all members declared volatile: > struct controller_reg { > volatile uint32_t reg1; > volatile uint32_t reg2; > } > > str

Re: [U-Boot] Ethernet not working on OMAP3 board with

2009-05-18 Thread Ben Warren
Wolfgang Denk wrote: > Dear Matthias Ludwig, > > In message <20090518081724.ga19...@ultratronik.de> you wrote: > >> Dear Mani, >> >> >>> I was testing the latest tip of u-boot and v2009.06-rc1, >>> I find that the Ethernet is not working. >>> >> i assume you are using a board with SM

Re: [U-Boot] [PATCH 01/10] mx27: basic cpu support

2009-05-18 Thread Magnus Lilja
Dear Wolfgang, 2009/5/14 Wolfgang Denk : >> I see. PowerPC in Linux uses C structs too. But there are still a lot of >> code that uses registers offsets in Linux, so my arguments are the same: >> requirement to convert offsets to C struct brings additional >> difficulties to porting (and maintaini

[U-Boot] [PATCH v8] Marvell MV88F6281GTW_GE Board support

2009-05-18 Thread Prafulla Wadaskar
From: prafulla_wadaskar This is Marvell's 88F6281_A0 based custom board developed for wireless access point product This patch is tested for- 1. Boot from DRAM/SPI flash/NFS 2. File transfer using tftp and loadb 3. SPI flash read/write/erase 4. Booting Linux kernel and RFS from SPI flash Review

[U-Boot] [PATCH v7.1] Marvell Kirkwood family SOC support

2009-05-18 Thread Prafulla Wadaskar
Kirkwood family controllers are highly integrated SOCs based on Feroceon-88FR131/Sheeva-88SV131 cpu core. SOC versions supported:- 1) 88F6281-A0 define CONFIG_KW88F6281_A0 2) 88F6192-A0 define CONFIG_KW88F6192_A0 Other supported features:- 1) get_random_hex() fucntion 2) SPI port cont

[U-Boot] [PATCH v7] Marvell Kirkwood family SOC support

2009-05-18 Thread Prafulla Wadaskar
Kirkwood family controllers are highly integrated SOCs based on Feroceon-88FR131/Sheeva-88SV131 cpu core. SOC versions supported:- 1) 88F6281-A0 define CONFIG_KW88F6281_A0 2) 88F6192-A0 define CONFIG_KW88F6192_A0 Other supported features:- 1) get_random_hex() fucntion 2) SPI port cont

[U-Boot] [PATCH v10] Marvell MV88E61XX Switch Driver support

2009-05-18 Thread Prafulla Wadaskar
Chips supported:- 1. 88E6161 6 port gbe swtich with 5 integrated PHYs 2. 88E6165 6 port gbe swtich with 5 integrated PHYs 2. 88E6132 3 port gbe swtich with 2 integrated PHYs Platform specific configuration supported for:- default or router port vlan configuration led_init configuration mdip/n polar

[U-Boot] Not getting the Uboot prompt for sbc2410x using u-boot1.1.6

2009-05-18 Thread vishal dahiwal
Hi All, I am new to uBoot. I am using the sbc2410x board. I successfully compiled the uboot-1.1.6 for this board. But after downloading the uboot.bin to the flash, i am not getting the uboot prompt on serial terminal. I am using the NAND flash. Do i have to make the changes for NAND flash and re

[U-Boot] Not getting the Uboot prompt for sbc2410x using u-boot1.1.6

2009-05-18 Thread vishalD
Hi All, I am new to uBoot. I am using the sbc2410x board. I successfully compiled the uboot-1.1.6 for this board. But after downloading the uboot.bin to the flash, i am not getting the uboot prompt on serial terminal. I am using the NAND flash. Do i have to make the changes for NAND flash and r

[U-Boot] [PATCH][u-boot arm/next] ARM DaVinci DM365 Support

2009-05-18 Thread s-paulraj
This patch adds support for new TI DaVinci SOC DM365. Further details and user guides can be found at http://focus.ti.com/docs/prod/folders/print/tms320dm365.html The DM365 EVM is from Spectrum Digital and details are at http://support.spectrumdigital.com/boards/evmdm365/revc/ This patch does NO

[U-Boot] [PATCH 2/2] nand_spl: read environment early, when booting from NAND using nand_spl

2009-05-18 Thread Guennadi Liakhovetski
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 early, like the baudrate or "silent", cannot be modified dynamically and remain

[U-Boot] [PATCH 1/2] env_nand: remove unused variable.

2009-05-18 Thread Guennadi Liakhovetski
Remove an unused "total" variable in multiple functions. Signed-off-by: Guennadi Liakhovetski --- common/env_nand.c | 10 -- 1 files changed, 0 insertions(+), 10 deletions(-) diff --git a/common/env_nand.c b/common/env_nand.c index 76569da..21bce25 100644 --- a/common/env_nand.c +++ b

Re: [U-Boot] uboot kernel rejects filesystem

2009-05-18 Thread Bharat Bhushan
Hi Detlev, Seems there was an issue with my kernel code that you correctly pointed out in previous mail. Now I could pass bootarg board='myboard'. For myboard, I have done relevent changes in kernel code, so kernel does init for my hardware. Earlier while choosing mips machine, it was choosing g

Re: [U-Boot] u-boot version

2009-05-18 Thread Wolfgang Denk
Dear Deepak Gopalakrishnan, In message you wrote: > > this time i want to know is there anywat i can get a application in linux > to fetch the bootstrap and u-boot version and display it > i have no idea how this can be done > could someone give a start.im using AT91Bootstrap and

[U-Boot] u-boot version

2009-05-18 Thread Deepak Gopalakrishnan
Hi all this time i want to know is there anywat i can get a application in linux to fetch the bootstrap and u-boot version and display it i have no idea how this can be done could someone give a start.im using AT91Bootstrap and u-boot-1.1.5_atmel_1.2 thanks alot note:sorry if i h

Re: [U-Boot] [PATCH] DaVinci Network Driver Updates

2009-05-18 Thread Paulraj, Sandeep
Ben, Any comments on this patch? Thanks, Sandeep > -Original Message- > From: Paulraj, Sandeep > Sent: Tuesday, May 12, 2009 11:46 AM > To: u-boot@lists.denx.de > Cc: Paulraj, Sandeep > Subject: [PATCH] DaVinci Network Driver Updates > > Different flavours of DaVinci SOC's have di

[U-Boot] [PATCH] fix accidental erase of OneNand whole chip

2009-05-18 Thread Geiger Ho
This patch fixes the accidental erase of OneNand whole chip when issuing command "onenand erase". Signed-off-by: Geiger Ho --- u-boot-2009.03/common/cmd_onenand.c 2009-03-22 05:04:41.0 +0800 +++ u-boot-2009.03-dev/common/cmd_onenand.c 2009-05-18 17:57:27.0 +0800 @@ -367,6

[U-Boot] [PATCH] at91: Extended soft_i2c driver for AT91SAM9263 SoC

2009-05-18 Thread Daniel Gorsulowski
While hard_i2c support is not available (see http://lists.denx.de/pipermail/u-boot/2009-March/049751.html), this patch enables soft_i2c on AT91SAM9263 SoC. Signed-off-by: Daniel Gorsulowski --- drivers/i2c/soft_i2c.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/dr

[U-Boot] [PATCH] at91: Add support for MEESC board of esd gmbh

2009-05-18 Thread Daniel Gorsulowski
This patch is a rebase against branch arm/next and adds support for MEESC board of esd gmbh. The MEESC is based on an Atmel AT91SAM9263 SoC. Signed-off-by: Daniel Gorsulowski --- MAINTAINERS |4 + MAKEALL |1 + Makefile |3 + board/esd

Re: [U-Boot] [PATCH] 85xx: Fix the wrong SYS_CLK_IN for 8569MDS

2009-05-18 Thread Joakim Tjernlund
> > The SYS_CLK_IN of MPC8569MDS is 66.66MHz, > The DDR_CLK_IN is same with SYS_CLK_IN in 8569 processor. > so, change the SYS_CLK_IN from 66MHz to 66.66MHz. > > Signed-off-by: Dave Liu > --- > include/configs/MPC8569MDS.h |4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff -

[U-Boot] [PATCH] 85xx: Fix the wrong SYS_CLK_IN for 8569MDS

2009-05-18 Thread Dave Liu
The SYS_CLK_IN of MPC8569MDS is 66.66MHz, The DDR_CLK_IN is same with SYS_CLK_IN in 8569 processor. so, change the SYS_CLK_IN from 66MHz to 66.66MHz. Signed-off-by: Dave Liu --- include/configs/MPC8569MDS.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/confi

Re: [U-Boot] make U-Boot quiet

2009-05-18 Thread simon polette
Ok, so when I say "don't work", it mean that it don't change anything. This option should quiet messages on the console, but all messages are still printed. 2009/5/18 Wolfgang Denk : > Dear simon polette, > > In message <72795ccb0905180218w1a23321fi1c93c84345a16...@mail.gmail.com> you > wrote: >>

Re: [U-Boot] Timeout in tftp.c

2009-05-18 Thread Achim Ehrlich
Jean-Christophe PLAGNIOL-VILLARD schrieb: >> My value was at 100. Switching back to 1000 didn't solve my problem, >> but instead causes erase and write operations on nand flash to timeout >> as well. My u-boot was built on commit >> 03bab0091948196b9558248684c04f60943ca4b5 of the at-91 tr

Re: [U-Boot] make U-Boot quiet

2009-05-18 Thread Wolfgang Denk
Dear simon polette, In message <72795ccb0905180218w1a23321fi1c93c84345a16...@mail.gmail.com> you wrote: > > I'm trying to get U-Boot run silently by #defining > CONFIG_SILENT_CONSOLE and CONFIG_SYS_DEVICE_NULLDEV in the config > file, and setting "silent" in the environment, but it still don't >

Re: [U-Boot] Enable Autoboot

2009-05-18 Thread H. Johnny
Yes, I misunderstand the problem. Use CONFIG_BOOTDELAY to enable/disable for autoboot. 2009/5/18 Wolfgang Denk : > Dear "H. Johnny", > > In message <50a974c70905180032t18a559ffxd2772d36ef23c...@mail.gmail.com> you > wrote: >> >> Set bootargs in u-boot command if you just want to autoboot. For exa

[U-Boot] make U-Boot quiet

2009-05-18 Thread simon polette
Hi, I'm trying to get U-Boot run silently by #defining CONFIG_SILENT_CONSOLE and CONFIG_SYS_DEVICE_NULLDEV in the config file, and setting "silent" in the environment, but it still don't work. Do I forget anything? My device is a at91sam9261ek board (arm). Best regards, Simon Polette Adeneo - Ad

Re: [U-Boot] [RFC/PATCH] Add support for Linux-like kallsysms

2009-05-18 Thread Mike Frysinger
On Monday 18 May 2009 04:37:54 Wolfgang Denk wrote: > In message Mike Frysinger wrote: > > The kernel stores address<->symbol names in it so things can be decoded > > at runtime. Do it in U-Boot, and we get nice symbol decoding when > > crashing. > > I like the idea as a pretty useful debug help.

Re: [U-Boot] Enable Autoboot

2009-05-18 Thread Wolfgang Denk
Dear "H. Johnny", In message <50a974c70905180032t18a559ffxd2772d36ef23c...@mail.gmail.com> you wrote: > > Set bootargs in u-boot command if you just want to autoboot. For example, This is nonsense. The "bootargs" variable is completely unrelated to autoboot. > You also can modify the CONFIG_EXT

Re: [U-Boot] [RFC/PATCH] Add support for Linux-like kallsysms

2009-05-18 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1242627582-25398-1-git-send-email-vap...@gentoo.org> you wrote: > The kernel stores address<->symbol names in it so things can be decoded at > runtime. Do it in U-Boot, and we get nice symbol decoding when crashing. I like the idea as a pretty useful debug help.

Re: [U-Boot] Ethernet not working on OMAP3 board with

2009-05-18 Thread Wolfgang Denk
Dear Matthias Ludwig, In message <20090518081724.ga19...@ultratronik.de> you wrote: > Dear Mani, > > > I was testing the latest tip of u-boot and v2009.06-rc1, > > I find that the Ethernet is not working. > > i assume you are using a board with SMSC911x ethernet chip? If so, this > discussion ma

Re: [U-Boot] Booting X86 using uboot

2009-05-18 Thread Wolfgang Denk
Dear "Zvi Vered", In message <509266184e1640ce8b4b0a06f1adf...@userd662364e58> you wrote: > > Is it possible to boot an X86 machine (with ATOM or Core2Duo) using > uboot ? U-Boot has not been ported to Atom ore Core2Duo yet. > If yes, how uboot is loaded to the master boot record of the disk fr

Re: [U-Boot] Ethernet not working on OMAP3 board with

2009-05-18 Thread Matthias Ludwig
Dear Mani, > I was testing the latest tip of u-boot and v2009.06-rc1, > I find that the Ethernet is not working. i assume you are using a board with SMSC911x ethernet chip? If so, this discussion may help you: http://lists.denx.de/pipermail/u-boot/2009-April/050687.html SMSC911x (and oth

Re: [U-Boot] Enable Autoboot

2009-05-18 Thread H. Johnny
2009/5/18 Vijay Nikam : > Hello All, > > I have bsp from freescale for mpc8313erdb evalutaion board. the board > is up and running no issues with it as of now. > But in u-boot the autoboot option is not enabled and I would like to > have enabled. I believe that I need to do some changes in the u-bo

Re: [U-Boot] Enable Autoboot

2009-05-18 Thread Liu Dave-R63238
> I have bsp from freescale for mpc8313erdb evalutaion board. the board > is up and running no issues with it as of now. > But in u-boot the autoboot option is not enabled and I would like to > have enabled. I believe that I need to do some changes in the u-boot > source code. > Could anyone please

[U-Boot] Enable Autoboot

2009-05-18 Thread Vijay Nikam
Hello All, I have bsp from freescale for mpc8313erdb evalutaion board. the board is up and running no issues with it as of now. But in u-boot the autoboot option is not enabled and I would like to have enabled. I believe that I need to do some changes in the u-boot source code. Could anyone please

[U-Boot] [RFC/PATCH v2] allow boards to customize compiler options on a per-file/dir basis

2009-05-18 Thread Mike Frysinger
With our Blackfin boards, we like to build the compression routines with -O2 as our tests show a pretty good size/speed tradeoff. For the rest of U-Boot though, we want to stick with the default -Os as that is mostly control code. So in our case, we would add a line like so to the board specific