[U-Boot] Profitable Arbeit von zu Hause.

2011-03-11 Thread martinhovillani
Firma: EUROPEAN LOGISTIC UNION Position: Versandmanager Kategorie: Versand/Manager Arbeitszeit: Teilzeitbeschaftigung/Heimarbeit Location: Deutschland Vergutung: 1.800 Euro monatlich + Bonus Erfahrung: nicht erforderlich Ausbildung: Mittelschulabschluss Sehr geehrter Bewerber, sehr

Re: [U-Boot] Understanding a BDI U-boot issue

2011-03-11 Thread Sinan Akman
Charles Krinke wrote: > I have inherited a MPC8323ERDB project and when I connect my BDI to it, I > get to this point when the target is turned on. > > CPU: e300c2, MPC8323E, Rev: 1.1 at 333.333 MHz, CSB: 133.333 MHz > Econolite Control Products ASC/4I2C: ready > DRAM: 64 MB > FLASH: 16 MB

Re: [U-Boot] Understanding a BDI U-boot issue

2011-03-11 Thread Scott Wood
On Fri, 11 Mar 2011 15:06:09 -0800 Charles Krinke wrote: > I have inherited a MPC8323ERDB project and when I connect my BDI to it, I > get to this point when the target is turned on. > > CPU: e300c2, MPC8323E, Rev: 1.1 at 333.333 MHz, CSB: 133.333 MHz > Econolite Control Products ASC/4I2C: r

[U-Boot] Understanding a BDI U-boot issue

2011-03-11 Thread Charles Krinke
I have inherited a MPC8323ERDB project and when I connect my BDI to it, I get to this point when the target is turned on. CPU: e300c2, MPC8323E, Rev: 1.1 at 333.333 MHz, CSB: 133.333 MHz Econolite Control Products ASC/4I2C: ready DRAM: 64 MB FLASH: 16 MB With the BDI, when I issue its "go" c

Re: [U-Boot] [PATCH] powerpc: 'monitor' environment variable contains full video configuration

2011-03-11 Thread Timur Tabi
Timur Tabi wrote: > Update the "monitor" environment variable (for Freescale chips that have a > DIU display controller) to display the full video configuration, instead > of just the output monitor. This patch has a couple issues, so I'll be posting a V2 next week. -- Timur Tabi Linux kernel de

Re: [U-Boot] [PATCH 3/3] powerpc/85xx: Add support for ULI1575 PCI EHCI module on MPC8572DS

2011-03-11 Thread Remy Bohmer
Hi, 2011/3/7 Kumar Gala : > From: Zhao Chenhui > > MPC8572DS provides 2 USB ports with ULI1575. We enable USB storage > device support using PCI EHCI module. > > Signed-off-by: Zhao Chenhui > Signed-off-by: Kumar Gala > --- >  drivers/usb/host/ehci-pci.c |    3 +++ >  include/configs/MPC8572DS.

[U-Boot] SAMSUNG NAND FLASH and U-BOOT

2011-03-11 Thread PROPOX, Andrzej Okulicz
Hi Recently we use K9G8G08U0A-PCB0 and everything was ok, but now Samsung stop produce this version and only available is K9G8G08U0C-SCB0, its a 4th generation of this old and its not working. The problem maybe is that it has more then 1-bit CRC and the linux works only with 1-bit CRC. Can an

[U-Boot] config for phy3250 in u-boot

2011-03-11 Thread Le Minh Trinh
Dear all, I would like to build u-boot for Board PhyCORE LPC3250, but I haven't found the board config for phy3250 in board/ and header file in include/configs/. Where can I find these files? Thank you very much. Regards Le Minh ___ U-Boot mailing li

Re: [U-Boot] [PATCH] ARM: mx31: Print the silicon version

2011-03-11 Thread Stefano Babic
On 03/10/2011 08:26 PM, Fabio Estevam wrote: > +void mx31_read_cpu_rev(void) Generally, for exported function, I would prefer to remove the processor name. For other i.MX processors we use the convention mxc_, as we can get rid of nasty #ifdef inside the drivers. You can see a lot of examples in

Re: [U-Boot] Uboot- Nor flash

2011-03-11 Thread Hebbar, Gururaja
Hi, On Fri, Mar 11, 2011 at 14:02:20, Sanjeeva Kumara wrote: > Hi > My self Sanjeev. I'm working on marvell's processor ( PXA ). I'm using NOR > flash to port Uboot. I want to do partition in NOR flash so that in one > partition I can keep my master copy and provide Uboot upgrade option. Pl

Re: [U-Boot] [RFC 2/3][v4] mmc: SEND_OP_COND considers card capabilities (voltage)

2011-03-11 Thread Lei Wen
On Fri, Mar 11, 2011 at 8:01 PM, Raffaele Recalcati wrote: > From: Raffaele Recalcati > > The first SEND_OP_COND (CMD1) command added is used to ask card capabilities. > After it an AND operation is done between card capabilities and host > capabilities (at the moment only for the voltage field).

Re: [U-Boot] [RFC 1/3][v4] mmc: checking status after commands with R1b response

2011-03-11 Thread Lei Wen
On Fri, Mar 11, 2011 at 8:01 PM, Raffaele Recalcati wrote: > From: Raffaele Recalcati > > It is recommended to check card status after these kind of commands. > This is done using CMD13 (SEND_STATUS) JEDEC command until > the card is ready. > In case of error the card status field is displayed. >

[U-Boot] [RFC 3/3][v4] mmc: trace added

2011-03-11 Thread Raffaele Recalcati
From: Raffaele Recalcati Defining CONFIG_MMC_TRACE in the include board file it is possible to activate a tracing support. This code helps in case of eMMC hw failure or to investigate possible eMMC initialization issues. Signed-off-by: Raffaele Recalcati --- drivers/mmc/mmc.c | 57 ++

[U-Boot] [RFC 2/3][v4] mmc: SEND_OP_COND considers card capabilities (voltage)

2011-03-11 Thread Raffaele Recalcati
From: Raffaele Recalcati The first SEND_OP_COND (CMD1) command added is used to ask card capabilities. After it an AND operation is done between card capabilities and host capabilities (at the moment only for the voltage field). Finally the correct value is sent to the MMC, waiting that the card

[U-Boot] [RFC 1/3][v4] mmc: checking status after commands with R1b response

2011-03-11 Thread Raffaele Recalcati
From: Raffaele Recalcati It is recommended to check card status after these kind of commands. This is done using CMD13 (SEND_STATUS) JEDEC command until the card is ready. In case of error the card status field is displayed. Signed-off-by: Raffaele Recalcati --- drivers/mmc/mmc.c | 60 ++

[U-Boot] [RFC 0/3][v4] mmc inizialization steps enhanced

2011-03-11 Thread Raffaele Recalcati
I have added some better inizializations and status check. I have created following patchset for Davinci dm365 against git://arago-project.org/git/projects/u-boot-davinci.git git tree. There are two commits more in that tree, but they are not in conflict with my work. I have finally tested this ser

[U-Boot] Quotation for Conference Tote and Padfolio.....u wTGPi

2011-03-11 Thread Emily/Pitacgift
Q 8C0 We are a bag manufacturer located in China. We are currently having a special offer on Conference Tote and Padfolio. Please kindly review the flyer and pricing below. We are a bag manufacturer located in China. We are currently having a special offer on Conference T

[U-Boot] Quotation for Conference Tote and Padfolio.....u wTGPi

2011-03-11 Thread Emily/Pitacgift
Q 8C0 We are a bag manufacturer located in China. We are currently having a special offer on Conference Tote and Padfolio. Please kindly review the flyer and pricing below. We are a bag manufacturer located in China. We are currently having a special offer on Conference T

Re: [U-Boot] [PATCH 1/3][v3] mmc: checking status after commands with R1b response

2011-03-11 Thread Raffaele Recalcati
Hi Gururaja, On Fri, Mar 11, 2011 at 9:57 AM, Hebbar, Gururaja wrote: > Hi, > > On Fri, Mar 11, 2011 at 14:08:14, Raffaele Recalcati wrote: >> From: Raffaele Recalcati >> > [...] > [...] it means the lines are ok? >> @@ -48,6 +48,36 @@ int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, >>

[U-Boot] ELOUNDA SUNRISE APARTMENTS - SUMMER HOLIDAYS 2001 - ELOUNDA CRETE GREECE

2011-03-11 Thread Elounda Sunrise Apartments
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible.<>___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/3][v3] mmc: checking status after commands with R1b response

2011-03-11 Thread Hebbar, Gururaja
Hi, On Fri, Mar 11, 2011 at 14:08:14, Raffaele Recalcati wrote: > From: Raffaele Recalcati > [...] [...] > @@ -48,6 +48,36 @@ int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, > struct mmc_data *data) > return mmc->send_cmd(mmc, cmd, data); > } > > +int mmc_send_status(struct mmc

[U-Boot] [PATCH 3/3][v3] mmc: trace added

2011-03-11 Thread Raffaele Recalcati
From: Raffaele Recalcati Defining CONFIG_MMC_TRACE in the include board file it is possible to activate a tracing support. This code helps in case of eMMC hw failure or to investigate possible eMMC initialization issues. Signed-off-by: Raffaele Recalcati --- drivers/mmc/mmc.c | 71 ++

[U-Boot] [RFC 2/3][v3] mmc: SEND_OP_COND considers card capabilities (voltage)

2011-03-11 Thread Raffaele Recalcati
From: Raffaele Recalcati The first SEND_OP_COND (CMD1) is used only to ask card capabilities, waiting that the card is not busy. After it, an AND operation is done between card capabilities and host capabilities, (at the moment only for the voltage field). Finally the correct value is sent to the

[U-Boot] [PATCH 1/3][v3] mmc: checking status after commands with R1b response

2011-03-11 Thread Raffaele Recalcati
From: Raffaele Recalcati It is a recommended to check card status after these kind of commands. This is done using CMD13 (SEND_STATUS) JEDEC command. In case of error the card status field is displayed. Signed-off-by: Raffaele Recalcati --- It is not clear what should nice to do in case of stat

[U-Boot] [RFC 0/3][v3] mmc inizialization steps enhanced

2011-03-11 Thread Raffaele Recalcati
I have added some better inizializations and status check. I have created following patchset for Davinci dm365 against git://arago-project.org/git/projects/u-boot-davinci.git git tree. There are two commits more in that tree, but they are not in conflict with my work. I have finally tested this ser

[U-Boot] Uboot- Nor flash

2011-03-11 Thread Sanjeeva Kumara
Hi My self Sanjeev. I'm working on marvell's processor ( PXA ). I'm using NOR flash to port Uboot. I want to do partition in NOR flash so that in one partition I can keep my master copy and provide Uboot upgrade option. Please suggest me how can I achieve this. Thanks & Regards Sanjeev Kum