[U-Boot] Uboot-Mini2440 Not recognizing ARP replies

2011-07-29 Thread Embedded User
Hi I am using a Mini2440 Board and using Uboot-1.3.2 on it. I am connecting it to a my Host Machine which has Ubuntu 11.04 on it. After downloading the Uboot image on the board, through USB, I am able to boot up and set the environment variables like ipaddr,serverip, netmask and ethaddr, to

Re: [U-Boot] Uboot-Mini2440 Not recognizing ARP replies

2011-07-29 Thread Wolfgang Denk
Dear Embedded User, In message CAEdW-gO6zVc2AXV7KQfO1knV2=2slonidmtw2c8sgssg0en...@mail.gmail.com you wrote: I am using a Mini2440 Board and using Uboot-1.3.2 on it. I am connecting it U-Boot v1.3.2 is more than 3 years old, and antiquated. Please update to a recent version. Additionally,

Re: [U-Boot] [PATCH V3+] I2C: mxc_i2c rework

2011-07-29 Thread Jason Hui
Hi, Marek, On Thu, Jul 14, 2011 at 5:58 AM, Marek Vasut marek.va...@gmail.com wrote: Rewrite the mxc_i2c driver.  * This version is much closer to Linux implementation.  * Fixes IPG_PERCLK being incorrectly used as clock source  * Fixes behaviour of the driver on iMX51  * Clean up coding

Re: [U-Boot] [PATCH v7] unify version_string

2011-07-29 Thread Andreas Bießmann
Dear Wolfgang, Am 28.07.2011 um 23:09 schrieb Wolfgang Denk: Dear Andreas, In message 1311869959-6085-1-git-send-email-andreas.de...@googlemail.com you wrote: This patch removes the architecture specific implementation of version_string where possible. Some architectures use a special

[U-Boot] [PATCH] cfb_console: fix build breakage

2011-07-29 Thread Andreas Bießmann
Commit 09c2e90c110ef99f1203685acd1059114a51b167 unify version_string introduced a build breakage in cfb_console.c ---8--- cfb_console.c:1497: warning: format '%s' expects type 'char *', but argument 3 has type 'const char (*)[]' ---8--- Signed-off-by: Andreas Bießmann

Re: [U-Boot] [PATCH V6 2/5] omap-common: add nand spl support

2011-07-29 Thread Aneesh V
Hi Scott, Simon, On Friday 29 July 2011 12:20 AM, Scott Wood wrote: On Thu, 28 Jul 2011 19:46:25 +0530 Aneesh Vane...@ti.com wrote: On Thursday 28 July 2011 02:08 PM, Simon Schwarz wrote: +#ifdef CONFIG_SPL_NAND_SUPPORT +static void nand_load_image(void) +{ + gpmc_init(); +

Re: [U-Boot] [PATCH v3 6/7] Add pxecfg command

2011-07-29 Thread Detlev Zundel
Hi Wolfgang, [...] +if (path_len MAX_TFTP_PATH_LEN) { +printf(Base path too long (%s%s)\n, +bootfile_path ? bootfile_path : , +file_path); Indentation is one level only.

Re: [U-Boot] [PATCH] da850: fix the channel number for EMAC teardown init

2011-07-29 Thread Netagunte, Nagabhushana
Thanks Denk for the comments. Even though all the patches are separate w.r.t features, they have inter-dependency w.r.t applying. To make it easy for applying, I will send it as Single series with a cover letter as they are all related to da850. I hope That is OK with you. Thanks, Nagabhushana

Re: [U-Boot] [PATCH V6 2/5] omap-common: add nand spl support

2011-07-29 Thread Simon Schwarz
Hi Scott, Aneesh, to short the discussion: I already work on the implementation of using the image header. I think a new version will be released late today. Regards thx for your reviews! Simon ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH v7] unify version_string

2011-07-29 Thread Wolfgang Denk
Dear =?iso-8859-1?Q?Andreas_Bie=DFmann?=, In message bb8f5dde-578a-462b-a457-9ed02e046...@googlemail.com you wrote: I do only have arm and avr32 compilers therefore I can only test those There are many free tool chains for several architectures - OpenEmbedded, Yocto, CodeSourcery, ELDK, ...

Re: [U-Boot] [PATCH] da850: add NOR boot mode support

2011-07-29 Thread Detlev Zundel
Hi, From: Nagabhushana Netagunte nagabhushana.netagu...@ti.com Add an option to use NOR boot mode in configuration file and correspanding pin-mux support in board file. Signed-off-by: Sudhakar Rajashekhara sudhakar@ti.com Signed-off-by: Nagabhushana Netagunte

Re: [U-Boot] [PATCH] da850: add cache management support in config file

2011-07-29 Thread Detlev Zundel
Hi, From: Nagabhushana Netagunte nagabhushana.netagu...@ti.com add support for cache management in config file. This is needed as per new cache management framework. da850 doesnt support I-CACHE, D-CACHE or L2-CACHE usage which is indicated by following definitions, 1.

Re: [U-Boot] [PATCH] da850: add provision to use RMII for EMAC

2011-07-29 Thread Detlev Zundel
Hi, From: Nagabhushana Netagunte nagabhushana.netagu...@ti.com Add provision to enable RMII support in configuration file. What is that supposed to mean? You are actually adding an undef, so nothing changes. What are you trying to achieve? Signed-off-by: Sudhakar Rajashekhara

Re: [U-Boot] [PATCH] da8xx: add support for multiple PLL controllers

2011-07-29 Thread Detlev Zundel
Hi, [...] - pre_div = (readl(davinci_pllc_regs-prediv) -DAVINCI_PLLC_DIV_MASK) + 1; - pllm = readl(davinci_pllc_regs-pllm) + 1; + pre_div = (REG(pll_base + PLLC_PREDIV) 0xff) + 1; + pllm = REG(pll_base + PLLC_PLLM) + 1; Nack - do not change common

Re: [U-Boot] [PATCH v4 02/12] omap4: cleanup pin mux data

2011-07-29 Thread Aneesh V
Dear Wolfgang, On Friday 29 July 2011 12:56 AM, Wolfgang Denk wrote: Dear Aneesh V, In message1311233298-17265-3-git-send-email-ane...@ti.com you wrote: - separate mux settings into essential and non essential parts - essential part is board independent as of now(so move it to SoC

Re: [U-Boot] [PATCH V4 2/5] omap-common: add nand spl support

2011-07-29 Thread Simon Schwarz
Hi Scott, On 07/28/2011 08:56 PM, Scott Wood wrote: On Thu, 28 Jul 2011 09:51:01 +0200 Simon Schwarzsimonschwarz...@googlemail.com wrote: On 07/27/2011 11:38 PM, Scott Wood wrote: Note that there will not be one implementation of nand_copy_image suitable for all hardware, just as currently

Re: [U-Boot] [PATCH v4 02/12] omap4: cleanup pin mux data

2011-07-29 Thread Wolfgang Denk
Dear Aneesh V, In message 4e32722c.6020...@ti.com you wrote: Dear Wolfgang, On Friday 29 July 2011 12:56 AM, Wolfgang Denk wrote: Dear Aneesh V, In message1311233298-17265-3-git-send-email-ane...@ti.com you wrote: - separate mux settings into essential and non essential parts -

Re: [U-Boot] [PATCH v2] env: allow people to force envcrc building

2011-07-29 Thread Wolfgang Denk
Dear Mike Frysinger, In message 1310157865-28441-1-git-send-email-vap...@gentoo.org you wrote: For people who want to manually extract the embedded environment so that it can be manually packed into the final u-boot image, add a config opt to force building of the envcrc tool.

Re: [U-Boot] [PATCH V6 3/5] nand spl: add NAND Library to new SPL

2011-07-29 Thread Simon Schwarz
On 07/28/2011 09:16 PM, Scott Wood wrote: On Thu, 28 Jul 2011 10:38:09 +0200 Simon Schwarzsimonschwarz...@googlemail.com wrote: +CONFIG_SPL_POWER_SUPPORT (drivers/power/libpower.o) Not sure what this has to do with NAND. right. This used by devkit8000 - will change the subject to spl: add

Re: [U-Boot] [PATCH V6 3/5] nand spl: add NAND Library to new SPL

2011-07-29 Thread Wolfgang Denk
Dear Simon Schwarz, In message 4e327989.6070...@gmail.com you wrote: On 07/28/2011 09:16 PM, Scott Wood wrote: On Thu, 28 Jul 2011 10:38:09 +0200 Simon Schwarzsimonschwarz...@googlemail.com wrote: +CONFIG_SPL_POWER_SUPPORT (drivers/power/libpower.o) Not sure what this has to do with

Re: [U-Boot] [PATCH] cfb_console: fix build breakage

2011-07-29 Thread Wolfgang Denk
Dear =?UTF-8?q?Andreas=20Bie=C3=9Fmann?=, In message 1311923413-62087-1-git-send-email-andreas.de...@googlemail.com you wrote: Commit 09c2e90c110ef99f1203685acd1059114a51b167 unify version_string introduced a build breakage in cfb_console.c ---8--- cfb_console.c:1497: warning: format '%s'

[U-Boot] [PATCH V4] I2C: mxc_i2c rework

2011-07-29 Thread Marek Vasut
Rewrite the mxc_i2c driver. * This version is much closer to Linux implementation. * Fixes IPG_PERCLK being incorrectly used as clock source * Fixes behaviour of the driver on iMX51 * Clean up coding style a bit ;-) Based on commit: e39428d53d080ad2615b772d7f99d2a70c2aaab2 Date: Mon Jun 21

Re: [U-Boot] [PATCH V3+] I2C: mxc_i2c rework

2011-07-29 Thread Marek Vasut
On Friday, July 29, 2011 08:55:14 AM Jason Hui wrote: Hi, Marek, On Thu, Jul 14, 2011 at 5:58 AM, Marek Vasut marek.va...@gmail.com wrote: Rewrite the mxc_i2c driver. * This version is much closer to Linux implementation. * Fixes IPG_PERCLK being incorrectly used as clock source *

Re: [U-Boot] [PATCH V3+] I2C: mxc_i2c rework

2011-07-29 Thread Stefano Babic
On 07/29/2011 11:35 AM, Marek Vasut wrote: why you change i2c clock from IPG_PERCLK to IPG_CLK? On MX51, PERCLK are those fast (680MHz) clock, that's not source of clock for I2C. The IPG_CLK (they are 68.5MHz iirc) are source for the I2C. Also, I discussed this with Stefano and we agreed

[U-Boot] Your Mailbox Has Exceeded It Storage Limit

2011-07-29 Thread Chernipeski, Randy
Your Mailbox Has Exceeded It Storage Limit As Set By Your Administrator, And You Will Not Be Able To Receive New Mails Until You Re-Validate It. To Re-Validate - Click Here: http://www.empin.org/phpFormGen/use/sampleform/form1.html Note: Do not send your e-mail or password to any one via

Re: [U-Boot] [PATCH RESEND v2] armv7: Disable D cache for goni target (s5p)

2011-07-29 Thread Aneesh V
Hi Linus, On Friday 29 July 2011 04:04 AM, Linus Walleij wrote: On Thu, Jul 28, 2011 at 7:04 AM, Minkyu Kangproms...@gmail.com wrote: Dear Linus Walleij, On 18 July 2011 19:35, Linus Walleijlinus.wall...@linaro.org wrote: On Mon, Jul 18, 2011 at 9:23 AM, Lukasz

Re: [U-Boot] [PATCH RESEND v2] armv7: Disable D cache for goni target (s5p)

2011-07-29 Thread Chander Kashyap
Hi Aneesh, On 29 July 2011 15:43, Aneesh V ane...@ti.com wrote: Hi Linus, On Friday 29 July 2011 04:04 AM, Linus Walleij wrote: On Thu, Jul 28, 2011 at 7:04 AM, Minkyu Kangproms...@gmail.com  wrote: Dear Linus Walleij, On 18 July 2011 19:35, Linus Walleijlinus.wall...@linaro.org  wrote:

[U-Boot] Der Gewinner

2011-07-29 Thread Euromillion-Microsoft System 2011
EUROPEAN-WORLDWIDE:MICROSOFT-PRIMITIVA JACKPOT-LOTTERIE 2011 PROMO SPAN-NR:Nº/009819 WINNER B.P.S GEMEIND SOFTWARES SYSTEM PROMOTION ESPAÑA)APARTADO POSTAL(P.O.BOX 17083-28080 Zaragoza España)Date:27/07/2011 --- Glückwunsch Ihr

Re: [U-Boot] [PATCH v4 02/12] omap4: cleanup pin mux data

2011-07-29 Thread Aneesh V
Dear Wolfgang, On Friday 29 July 2011 02:26 PM, Wolfgang Denk wrote: Dear Aneesh V, In message4e32722c.6020...@ti.com you wrote: Dear Wolfgang, On Friday 29 July 2011 12:56 AM, Wolfgang Denk wrote: Dear Aneesh V, In message1311233298-17265-3-git-send-email-ane...@ti.com you wrote: -

Re: [U-Boot] [PATCH RESEND v2] armv7: Disable D cache for goni target (s5p)

2011-07-29 Thread Aneesh V
Hi Chander, On Friday 29 July 2011 04:01 PM, Chander Kashyap wrote: Hi Aneesh, On 29 July 2011 15:43, Aneesh Vane...@ti.com wrote: Hi Linus, On Friday 29 July 2011 04:04 AM, Linus Walleij wrote: On Thu, Jul 28, 2011 at 7:04 AM, Minkyu Kangproms...@gmail.comwrote: Dear Linus Walleij,

Re: [U-Boot] [PATCH V4] I2C: mxc_i2c rework

2011-07-29 Thread Jason Hui
Hi, Marek, On Fri, Jul 29, 2011 at 5:32 PM, Marek Vasut marek.va...@gmail.com wrote: Rewrite the mxc_i2c driver.  * This version is much closer to Linux implementation.  * Fixes IPG_PERCLK being incorrectly used as clock source  * Fixes behaviour of the driver on iMX51  * Clean up coding

[U-Boot] u-boot-2011-03

2011-07-29 Thread Rajeev Rao Battu
Greetings, I am bit new to Linux, working as RD engineer, i am currently using u-boot-1.3.4 2008.10. In that i am facing bit problem with nandflash bad blocks. i want to upgrade my u-boot to 2011.03 when i compile this u-boot u-boot version i am encountering errors. following is the

Re: [U-Boot] [PATCH v4 02/12] omap4: cleanup pin mux data

2011-07-29 Thread Wolfgang Denk
Dear Aneesh V, In message 4e328e73.9080...@ti.com you wrote: My patch is already in u-boot-arm. If I have to rework this patch should I create a new patch to fix the problem or should I re-work the original patch? It's not worth fighting about this. Please feel free to leave as is. Best

Re: [U-Boot] [PATCH V6 3/5] nand spl: add NAND Library to new SPL

2011-07-29 Thread Simon Schwarz
Hi Aneesh, On 07/28/2011 06:18 PM, Aneesh V wrote: [snip] Oh. There I played around with the Access Size Adaptation of the GPMC - It is still a x16 interface - this is what the 16 refers to IMHO. But Ok. I have to admit that I am not a NAND expert and I do not understand this code well.

Re: [U-Boot] [PATCH V6 3/5] nand spl: add NAND Library to new SPL

2011-07-29 Thread Simon Schwarz
Dear Wolfgang Denk, On 07/29/2011 11:27 AM, Wolfgang Denk wrote: Dear Simon Schwarz, In message4e327989.6070...@gmail.com you wrote: On 07/28/2011 09:16 PM, Scott Wood wrote: On Thu, 28 Jul 2011 10:38:09 +0200 Simon Schwarzsimonschwarz...@googlemail.com wrote: +CONFIG_SPL_POWER_SUPPORT

Re: [U-Boot] [PATCH] cfb_console: fix build breakage

2011-07-29 Thread Sergei Shtylyov
Hello. On 29-07-2011 11:10, Andreas Bießmann wrote: Commit 09c2e90c110ef99f1203685acd1059114a51b167 unify version_string introduced a build breakage in cfb_console.c ---8--- cfb_console.c:1497: warning: format '%s' expects type 'char *', but argument 3 has type 'const char (*)[]' ---8---

Re: [U-Boot] armv7: integrate cache maintenance support breaks km_kirkwood ethernet

2011-07-29 Thread Wolfgang Denk
Dear Aneesh, In message 4e3161ed.5030...@keymile.com Holger Brunck wrote: today I did a rebase of my development branch to current u-boot master. And I saw on our km_kirkwood board that our egiga0 interface isn't working anymore. The CPU is a: SoC: Kirkwood 88F6281_A0 After bisecting

[U-Boot] [PATCH] Constify getenv(), setenv() and hash code functions

2011-07-29 Thread Wolfgang Denk
This is needed to get rid of build warnings like main.c:311: warning: passing argument 2 of 'setenv' discards qualifiers from pointer target type which result from commit 09c2e90 unify version_string. Signed-off-by: Wolfgang Denk w...@denx.de Cc: Andreas Bießmann andreas.de...@googlemail.com

Re: [U-Boot] problem with mpc837x start.S

2011-07-29 Thread shawn Bai
Sorry, guys, I have no idea whether it makes you feel uncomfortable the way I ask questions. If yes, I apologize. But, I really don't understand the way uboot branch to nor flash, branch to ram. I have read the source code in the 83xx/start.S file for many times, and I have looked up the

Re: [U-Boot] [PATCH] powerpc/85xx: Fix build failure for P1023RDS

2011-07-29 Thread Kumar Gala
On Jul 28, 2011, at 2:36 PM, Kumar Gala wrote: When we added the fman fdt fixup we forgot to fixup the P1023RDS platform. So we would get: fdt.c: In function 'fdt_fixup_fman_firmware': fdt.c:465:15: error: 'CONFIG_SYS_FMAN_FW_LENGTH' undeclared (first use in this function)

Re: [U-Boot] [PATCH] powerpc/85xx: Cleanup handling of PVR detection for e500/e500mc/e5500

2011-07-29 Thread Kumar Gala
On Jul 26, 2011, at 10:01 PM, Kumar Gala wrote: At some point we broke the detection of e500v1 class cores. Fix that and simply the code to just utilize PVR_VER() to have a single case statement. Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- arch/powerpc/cpu/mpc85xx/cpu.c

Re: [U-Boot] [PATCH] powerpc/p2041rdb: Enable SATA support

2011-07-29 Thread Kumar Gala
On Jul 26, 2011, at 8:55 PM, Mingkai Hu wrote: Signed-off-by: Mingkai Hu mingkai...@freescale.com --- include/configs/P2041RDB.h | 20 1 files changed, 20 insertions(+), 0 deletions(-) applied to 85xx - k ___ U-Boot mailing

Re: [U-Boot] [PATCH V0] omap-common: move early UART clock setup to s_init

2011-07-29 Thread Simon Schwarz
Hi Andreas, On 07/28/2011 11:44 AM, Andreas Bießmann wrote: Hi Simon, Am 28.07.2011 11:22, schrieb Simon Schwarz: Moves the early UART clock setup setup_clocks_for_console() from preloader_console_init() to s_init() of OMAP4. I recommend putting this in your 'devkit8000 nand_spl support'

Re: [U-Boot] armv7: integrate cache maintenance support breaks km_kirkwood ethernet

2011-07-29 Thread Jason Liu
Hi, All, 2011/7/29 Wolfgang Denk w...@denx.de: Dear Aneesh, In message 4e3161ed.5030...@keymile.com Holger Brunck wrote: today I did a rebase of my development branch to current u-boot master. And I saw on our km_kirkwood board that our egiga0 interface isn't working anymore. The CPU is

Re: [U-Boot] [PATCH] mpc8xxx: lc_common_dimm_params: make less verbose

2011-07-29 Thread Kumar Gala
On Jul 28, 2011, at 2:11 PM, Wolfgang Denk wrote: Dear York Sun, In message 1311879751.29459.24.camel@oslab-l1 you wrote: I don't agree one line with the module information corrupts the boot messages. Do we have fixed format? Am I missing something? Yes, we have a well defined format

Re: [U-Boot] [PATCH 2/2] [v2] powerpc/85xx: verify the device tree before booting Linux

2011-07-29 Thread Kumar Gala
On May 3, 2011, at 1:24 PM, Timur Tabi wrote: Introduce ft_verify_fdt(), a function that is called after the device tree has been fixed up, that displays warning messages if there is a mismatch between the physical addresses of some devices that U-Boot has configured with what the device

[U-Boot] [GIT pull] Please pull u-boot-mpc85xx

2011-07-29 Thread Kumar Gala
The following changes since commit 85f3df1c3a6e8f8f0c7a1daa0cdc3714daf967d7: Fix build error causes by unify version_string (2011-07-28 22:16:57 +0200) are available in the git repository at: git://git.denx.de/u-boot-mpc85xx.git master Bhaskar Upadhaya (1): powerpc/85xx: Fix up

[U-Boot] Broken FSL boards

2011-07-29 Thread Wolfgang Denk
Hi Kim, Kumar Andy, I'm not sure if you already notied that there is a relatively large number of Freescale boards that is broken in recent builds: onfiguring for MPC837XEMDS_HOST - Board: MPC837XEMDS, Options: PCI In file included from fdt.c:34: /home/wd/git/u-boot/work/include/usb.h:159:2:

Re: [U-Boot] Broken FSL boards

2011-07-29 Thread Kumar Gala
On Jul 29, 2011, at 8:20 AM, Wolfgang Denk wrote: Hi Kim, Kumar Andy, I'm not sure if you already notied that there is a relatively large number of Freescale boards that is broken in recent builds: onfiguring for MPC837XEMDS_HOST - Board: MPC837XEMDS, Options: PCI In file included from

Re: [U-Boot] [PATCH][v3] powerpc/85xx: enable USB2 gadget mode for corenet ds board

2011-07-29 Thread Kumar Gala
On Jul 28, 2011, at 3:17 AM, Shaohui Xie wrote: to make USB2 worked in gadget mode, we need to set it's 'dr_mode' to 'peripheral' in hwconfig, but driver starts scan from 'usb1', it'll break out if it cannot find 'usb1', so drop the 'else' clause to make driver scan all the 'usbx'.

[U-Boot] [PATCH] powerpc/8xxx: Remove dependancy on usb.h

2011-07-29 Thread Kumar Gala
We used usb.h for USB_MAX_DEVICE. However this we requires we actual build in support for USB into u-boot (which should not be required for device tree fixup). At this time no FSL SoC that utilizies this code (83xx/85xx) has more than 2 USB controllers. So we replace USB_MAX_DEVICE with a local

[U-Boot] Please pull u-boot-mpc85xx (updated)

2011-07-29 Thread Kumar Gala
[ pulled in a USB patch, and fix for fdt usb code that fixes MPC83xx build issues] The following changes since commit ce0f709bcd52bbe5f432771ad3a18bd3d5a6747f: cfb_console: fix build breakage (2011-07-29 11:28:26 +0200) are available in the git repository at:

Re: [U-Boot] armv7: integrate cache maintenance support breaks km_kirkwood ethernet

2011-07-29 Thread Aneesh V
Dear Wolfgang, On Friday 29 July 2011 06:03 PM, Wolfgang Denk wrote: Dear Aneesh, In message4e3161ed.5030...@keymile.com Holger Brunck wrote: today I did a rebase of my development branch to current u-boot master. And I saw on our km_kirkwood board that our egiga0 interface isn't working

Re: [U-Boot] RFC [PATCH 3/5] usb: Some EHCI chipsets are slow to respond.

2011-07-29 Thread Jason
On Thu, Jul 28, 2011 at 12:16:00PM -0700, Prafulla Wadaskar wrote: -Original Message- From: Jason [mailto:u-b...@lakedaemon.net] Sent: Thursday, July 28, 2011 7:07 AM To: Prafulla Wadaskar Cc: cl...@debian.org; w...@denx.de; u-boot@lists.denx.de; Prabhanjan Sarnaik; Ashish

[U-Boot] RFC [PATCH 4/5 v5 RESEND] dreamplug: initial board support.

2011-07-29 Thread Jason Cooper
Copied wholeheartedly from board/Marvell/guruplug and modified to add support for SPI NOR flash. Also, the following features are used: - Use the Marvell Integrated RTC. - display Marvell CPU/L2/etc speeds if requested. Note: this still uses MACH_TYPE_GURUPLUG until

Re: [U-Boot] RFC [PATCH 4/5 v5] dreamplug: initial board support.

2011-07-29 Thread Jason
On Thu, Jul 28, 2011 at 12:37:32PM -0700, Prafulla Wadaskar wrote: -Original Message- From: Jason [mailto:u-b...@lakedaemon.net] Sent: Thursday, July 28, 2011 7:33 AM To: Prafulla Wadaskar Cc: cl...@debian.org; w...@denx.de; u-boot@lists.denx.de; Prabhanjan Sarnaik; Ashish

Re: [U-Boot] RFC [PATCH 5/5 v5] dreamplug: use MACH_TYPE_DREAMPLUG

2011-07-29 Thread Jason
On Thu, Jul 28, 2011 at 12:39:02PM -0700, Prafulla Wadaskar wrote: -Original Message- From: Jason [mailto:u-b...@lakedaemon.net] Sent: Thursday, July 28, 2011 7:38 AM To: Prafulla Wadaskar Cc: cl...@debian.org; w...@denx.de; u-boot@lists.denx.de; Prabhanjan Sarnaik; Ashish

Re: [U-Boot] EHCI timed out on TD on OpenRD Ultimate

2011-07-29 Thread Jason
On Thu, Jul 28, 2011 at 11:15:56PM +0400, Alexei Ozhigov wrote: 2011/7/28 Jason u-b...@lakedaemon.net: On Thu, Jul 28, 2011 at 07:25:54PM +0400, Alexei Ozhigov wrote: I tried running latest U-Boot on OpenRD Ultimate, and USB support appears to be broken: Marvell usb reset

Re: [U-Boot] armv7: integrate cache maintenance support breaks km_kirkwood ethernet

2011-07-29 Thread Aneesh V
Hi Jason, On Friday 29 July 2011 06:21 PM, Jason Liu wrote: Hi, All, 2011/7/29 Wolfgang Denkw...@denx.de: Dear Aneesh, In message4e3161ed.5030...@keymile.com Holger Brunck wrote: today I did a rebase of my development branch to current u-boot master. And I saw on our km_kirkwood board

Re: [U-Boot] EHCI timed out on TD on OpenRD Ultimate

2011-07-29 Thread Jason
On Fri, Jul 29, 2011 at 11:51:08AM -0400, Jason wrote: On Thu, Jul 28, 2011 at 11:15:56PM +0400, Alexei Ozhigov wrote: 2011/7/28 Jason u-b...@lakedaemon.net: On Thu, Jul 28, 2011 at 07:25:54PM +0400, Alexei Ozhigov wrote: I tried running latest U-Boot on OpenRD Ultimate, and USB support

Re: [U-Boot] [PATCH v2 3/5] omap: reuse omap3 gpio support in omap4

2011-07-29 Thread Aneesh V
Hi All, On Wednesday 20 July 2011 04:25 PM, Aneesh V wrote: Signed-off-by: Aneesh Vane...@ti.com --- V2: * Added a new file that was accidentally missing in v1 --- [snip ..] .../include/asm/{arch-omap3/gpio.h = omap_gpio.h} | 27 +--- I just realized that this change in

Re: [U-Boot] [PATCH V6 1/5] omap3: Configure RAM bank 0 if in SPL

2011-07-29 Thread Simon Schwarz
Hi Aneesh, On 07/28/2011 11:42 AM, Simon Schwarz wrote: Hi Aneesh, On 07/28/2011 10:50 AM, Aneesh V wrote: Hi Simon, First of all sorry for giving my first comments on v6. But I didn't have mail access for the last couple of days. On Thursday 28 July 2011 02:08 PM, Simon Schwarz wrote:

[U-Boot] [PATCH V7 0/7] OMAP3 and devkit8000 SPL support

2011-07-29 Thread Simon Schwarz
V1 Initial SPL support for OMAP3 was based on the old SPL V2 Introduced major changes. It is based on the OMAP4-SPL patch by Aneesh V and the new SPL Framework by Daniel Schwierzeck and Aneesh V V3 Some small bug fixes and correct placed SOB. V4 Corrected one bugfix and some style problems

Re: [U-Boot] EHCI timed out on TD on OpenRD Ultimate

2011-07-29 Thread Jason
On Fri, Jul 29, 2011 at 12:30:46PM -0400, Jason wrote: On Fri, Jul 29, 2011 at 11:51:08AM -0400, Jason wrote: On Thu, Jul 28, 2011 at 11:15:56PM +0400, Alexei Ozhigov wrote: 2011/7/28 Jason u-b...@lakedaemon.net: On Thu, Jul 28, 2011 at 07:25:54PM +0400, Alexei Ozhigov wrote: I tried

[U-Boot] [PATCH V7 1/7] omap-common/omap4: relocate early UART clock setup

2011-07-29 Thread Simon Schwarz
Moves the early UART clock setup setup_clocks_for_console() from preloader_console_init() to s_init() of OMAP4. This is done to prepare for OMAP3 integration. This patch was posted seperatly to the mailinglist but I decidet - since it is a prereqesit for this patch to add it. Former port to ML:

[U-Boot] [PATCH V7 2/7] omap3: Configure RAM bank 0 if in SPL

2011-07-29 Thread Simon Schwarz
OMAP3 relied on the memory config done by X-loader or Configuration Header. This has to be reworked for the implementation of a SPL. This patch configures RAM bank 0 if CONFIG_SPL_BUILD is set. Settings for Micron-RAM used by devkit8000 are added to mem.h Signed-off-by: Simon Schwarz

[U-Boot] [PATCH V7 3/7] omap-common: add nand spl support

2011-07-29 Thread Simon Schwarz
Add NAND support for the new SPL structure. Signed-off-by: Simon Schwarz simonschwarz...@gmail.com --- This patch didn't exist before V2! V2 changes: ADD Some define-barriers for OMAP3 to only use NAND ADD nand_load_image() - inits the OMAP gpmc, loads the images - parses the header CHG

[U-Boot] [PATCH V7 4/7] spl: add NAND Library to new SPL

2011-07-29 Thread Simon Schwarz
Adds NAND libarary to SPL. Signed-off-by: Simon Schwarz simonschwarz...@gmail.com --- V1 changes: CHG Default to HW ecc in SPL build ADD nand_read_buf16 function, read buffer ADD omap_dev_ready function, indicte if chip is ready V2 changes: DEL GPMC_WAIT0_PIN_ACTIVE define CHG omap_dev_ready()

[U-Boot] [PATCH V7 5/7] spl: Add POWER library to new spl

2011-07-29 Thread Simon Schwarz
Adds power library to the new spl Signed-off-by: Simon Schwarz simonschwarz...@gmail.com --- Didn't exist before V7 --- doc/README.SPL |1 + spl/Makefile |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/doc/README.SPL b/doc/README.SPL index ef946ce..2987f43 100644

[U-Boot] [PATCH V7 6/7] omap3: new SPL structure support

2011-07-29 Thread Simon Schwarz
Support for the new spl structure. Using the interface defined by Aneesh V for OMAP4 Signed-off-by: Simon Schwarz simonschwarz...@gmail.com --- V1 changes: ADD support for early console output in SPL V2 changes: ADD include omap_common.h in board.c ADD implement new omap common interface

[U-Boot] [PATCH V7 7/7] devkit8000: Add nand-spl support for new SPL

2011-07-29 Thread Simon Schwarz
Add NAND SPL support to the devkit8000 config Signed-off-by: Simon Schwarz simonschwarz...@gmail.com --- V1 changes: ADD devkit8000_nand to board.cfg ADD nand_spl Makefile, llinker script, spl-devkit8000.c ADD config ecc, SRAM, SPL to board config ADD CONFIG_SYS_SRAM_START and _SIZE to board

Re: [U-Boot] [PATCH] Constify getenv(), setenv() and hash code functions

2011-07-29 Thread Wolfgang Denk
Dear Wolfgang Denk, In message 1311943338-23147-1-git-send-email...@denx.de you wrote: This is needed to get rid of build warnings like main.c:311: warning: passing argument 2 of 'setenv' discards qualifiers from pointer target type which result from commit 09c2e90 unify version_string.