Re: [U-Boot] [PATCH] net: Fix faulty definition of uec_initialize()

2010-08-10 Thread Mike Frysinger
On Tue, Aug 10, 2010 at 1:52 AM, Joakim Tjernlund wrote: Ben Warren wrote on 2010/08/09 22:54:10:  On 8/9/2010 1:18 PM, Mike Frysinger wrote: On Mon, Aug 9, 2010 at 3:15 PM, Joakim Tjernlund wrote: The correct definition is in drivers/qe/uec.h so just include that one instead. ... except

Re: [U-Boot] [PATCH] bug fix and cleanup for s3c44b0 serial driver

2010-08-10 Thread Reinhard Meyer
Dear Minkyu Kang, my five cents: #define REGL(addr) (*(volatile unsigned int *)(REGBASE+addr)) #define REGW(addr) (*(volatile unsigned short *)(REGBASE+addr)) #define REGB(addr) (*(volatile unsigned char *)(REGBASE+addr)) isn't that way of accessing hardware VERY depreciated?

[U-Boot] [PATCH v2] MX51EVK: fix return value of get_timer_masked

2010-08-10 Thread Li Haibo
get_timer_masked() should return current timestamp, not current ticks from hardware register. Tested on one custom board with NAND flash. Without this patch, NAND write always TIMEOUT because get_timer(0) return a big value. This patch applies for u-boot-2010.06 Signed-off-by: Li Haibo

Re: [U-Boot] [PATCH 1/1] Fixed clobbered output of the help usb command

2010-08-10 Thread Sergei Poselenov
Hi Remy, On Mon, 9 Aug 2010 19:26:46 +0200 Remy Bohmer li...@bohmer.net wrote: --- a/common/cmd_usb.c +++ b/common/cmd_usb.c @@ -712,7 +712,7 @@ U_BOOT_CMD(        usb part [dev] - print partition table of one or all USB storage devices\n Patch is corrupt. Lines are wrapped.

Re: [U-Boot] can uboot boot from spi flash?

2010-08-10 Thread Shawn Jin
SPI flash seems supported in u-boot after searching it in the mailing list. But can u-boot boot from spi flash? it completely depends on your processor.  but you never said what processor you're actually using. It's a LPC3131 (ARM926EJ-S) based. Thanks, -Shawn.

Re: [U-Boot] [PATCH v2] MX51EVK: fix return value of get_timer_masked

2010-08-10 Thread Stefano Babic
Li Haibo wrote: get_timer_masked() should return current timestamp, not current ticks from hardware register. Tested on one custom board with NAND flash. Without this patch, NAND write always TIMEOUT because get_timer(0) return a big value. This patch applies for u-boot-2010.06

[U-Boot] Please pull u-boot-imx

2010-08-10 Thread Stefano Babic
Hi Wolfgang, in the pull request I have already merged the fix by Reinhard Meyer ( fix cmd_mmc.c, line 136 missing ), even if it is not strictly related to imx, else I cannot compile clean. It should not be a problem ;-) The following changes since commit

Re: [U-Boot] [PATCH] bug fix and cleanup for s3c44b0 serial driver

2010-08-10 Thread Minkyu Kang
Dear Reinhard Meyer, On 10 August 2010 15:10, Reinhard Meyer u-b...@emk-elektronik.de wrote: Dear Minkyu Kang, my five cents:  #define REGL(addr)     (*(volatile unsigned int *)(REGBASE+addr))  #define REGW(addr)     (*(volatile unsigned short *)(REGBASE+addr))  #define REGB(addr)    

Re: [U-Boot] u-boot patch base version

2010-08-10 Thread Wolfgang Denk
Dear Joe Hershberger, In message aanlktimk3fmjq0jy7iph2o=y06vob_rmkwguztvko...@mail.gmail.com you wrote: I'm looking to submit some patches that I'm currently running on u-boot-2009.11. I'd like to know before I go through the trouble of creating the separate patches if it is a problem for

Re: [U-Boot] can uboot boot from spi flash?

2010-08-10 Thread Wolfgang Denk
Dear Shawn Jin, In message aanlktinwdpjtgmesxyqk2vmdovjr-4vo8u8acdjjp...@mail.gmail.com you wrote: SPI flash seems supported in u-boot after searching it in the mailing list. But can u-boot boot from spi flash? it completely depends on your processor. =A0but you never said what

[U-Boot] AT91/AVR32: at91_emac.c VS macb.c in drivers/net

2010-08-10 Thread Reinhard Meyer
Hallo, macb.c is known to work for AT91 and AVR32. Why was at91_emac.c introduced into mainstream? By name it suggests it is designed to work with AT91 (only)? I don't think it is desireable to have to drivers doing the same task. Unless someone has a good point why we need at91_emac.c I

Re: [U-Boot] [PATCH] AT91: reset.c: fix comments, add option

2010-08-10 Thread Detlev Zundel
Hi Reinhard, - The comment was wrong/misleading - One would assume that a u-boot reset command should also reset the external hardware outside the SoC. Since its unknown whether some boards rely on that NOT being so, asserting the external reset signal is optional Signed-off-by: Reinhard

Re: [U-Boot] [PATCH] Create a new driver for Atmel at91/avr MCI adapters that uses the u-boot mmc framework.

2010-08-10 Thread Reinhard Meyer
Rob Emanuele schrieb: To use it on your platform add defines like these: #define CONFIG_MMC 1 #define CONFIG_GENERIC_MMC 1 #define CONFIG_GENERIC_ATMEL_MCI1 snip Dear Rob Emanuele, this patch applies to current TOT, however it does not work

Re: [U-Boot] [PATCH] usb: musb: only write CLRDATATOG when appropriate

2010-08-10 Thread Sergei Shtylyov
Hello. Mike Frysinger wrote: From: Bryan Wu bryan...@analog.com This is a change similar to what is already in the Linux driver. We should only program the CLRDATATOG bit when the current mode indicates that it is needed. Signed-off-by: Bryan Wu bryan...@analog.com Signed-off-by: Cliff

Re: [U-Boot] [PATCHv2 CFI flash]: Workaround for Numonyx Axcell P33/P30 256-Mbit 65nm bug

2010-08-10 Thread Stefan Roese
Hi Philippe, On Monday 09 August 2010 17:46:03 Philippe De Muyter wrote: Please move this variable declaration of cmd and assignment further down (see below). You can remove the { } of this block then. Here is the excerpt from the errata : Workaround: If the interval between 60h and

[U-Boot] [PATCH] TI: DaVinci DA850 EVM: support passing device speed grade information to kernel

2010-08-10 Thread Sekhar Nori
The TI DA850/OMAP-L138/AM18x EVM can be populated with devices of different speed grades. The maximum speed the chip can support can only be determined from the label on the package (not software readable). Introduce a method to pass the speed grade information to kernel using ATAG_REVISION. The

Re: [U-Boot] [PATCH] net: Fix faulty definition of uec_initialize()

2010-08-10 Thread Joakim Tjernlund
vapierfil...@gmail.com wrote on 2010/08/10 08:04:02: On Tue, Aug 10, 2010 at 1:52 AM, Joakim Tjernlund wrote: Ben Warren wrote on 2010/08/09 22:54:10:  On 8/9/2010 1:18 PM, Mike Frysinger wrote: On Mon, Aug 9, 2010 at 3:15 PM, Joakim Tjernlund wrote: The correct definition is in

[U-Boot] [PATCHv2] net: Fix faulty definition of uec_initialize()

2010-08-10 Thread Joakim Tjernlund
The correct definition is in drivers/qe/uec.h so just remove this one. Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- include/netdev.h |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/include/netdev.h b/include/netdev.h index 882642a..65833e2 100644 ---

Re: [U-Boot] [PATCH] Create a new driver for Atmel at91/avr MCI adapters that uses the u-boot mmc framework.

2010-08-10 Thread Reinhard Meyer
Reinhard Meyer schrieb: TOP9000 fatls mmc 0:1 gen_atmel_mci: CMDR 0x1050 (16) ARGR 0x (SR: 0x) COMMAND Dbg Msg gen_atmel_mci: CMDR 0x00051051 (17) ARGR 0x (SR: 0x) COMMAND Dbg Msg *** system hangs here *** But, if preceeded by a mmc read command

Re: [U-Boot] [PATCH v2a] AT91: add SD/MMC support

2010-08-10 Thread Reinhard Meyer
Disregard this patch, please. I found a better solution based on Rob Emanuele's work, it will be presented as a patch soon. Reinhard ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] Fixing spi erase for S25FL128P_256K

2010-08-10 Thread Marc-André Hébert
The spansion_erase currently only works when the sector size is 64KB. cmd[1] should contain the higher 8 bit of the 24 bit address of the sector to be erased. Currently it is holding the sector index to be erased which happens to be the same thing when the sector size is 64KB. Signed-off-by:

Re: [U-Boot] [PATCH] Fixing spi erase for S25FL128P_256K

2010-08-10 Thread Sergei Shtylyov
Hello. Marc-André Hébert wrote: The spansion_erase currently only works when the sector size is 64KB. cmd[1] should contain the higher 8 bit of the 24 bit address of the sector to be erased. Currently it is holding the sector index to be erased which happens to be the same thing when the

[U-Boot] [PATCH v2] Fixing spi erase for S25FL128P_256K

2010-08-10 Thread Marc-André Hébert
The spansion_erase currently only works when the sector size is 64KB. cmd[1] should contain the higher 8 bit of the 24 bit address of the sector to be erased. Currently it is holding the sector index to be erased which happens to be the same thing when the sector size is 64KB. Signed-off-by:

Re: [U-Boot] [PATCHv2 CFI flash]: Workaround for Numonyx Axcell P33/P30 256-Mbit 65nm bug

2010-08-10 Thread Stefan Roese
Hi Philippe, On Tuesday 10 August 2010 15:31:12 Philippe De Muyter wrote: Because of requirement (3), I choosed to minimize the number of instructions between the `read lock status' and the `unlock' commands, hence the initialisation of `cmd' moved before the `read lock status'

Re: [U-Boot] [PATCH v6] POST cleanup.

2010-08-10 Thread Michael Zaidman
Dear Wolfgang, On Sun, Aug 8, 2010 at 11:30 PM, Wolfgang Denk w...@denx.de wrote: Dear Michael Zaidman, On Wed, Jun 30, 2010 at 7:16 PM, Michael Zaidman michael.zaid...@gmail.com wrote: ... More than 5 week ago I rebased and resubmitted this patch as you asked but did not receive any

Re: [U-Boot] [PATCHv2 CFI flash]: Workaround for Numonyx Axcell P33/P30 256-Mbit 65nm bug

2010-08-10 Thread Philippe De Muyter
Hi Stefan, On Tue, Aug 10, 2010 at 01:20:42PM +0200, Stefan Roese wrote: Hi Philippe, On Monday 09 August 2010 17:46:03 Philippe De Muyter wrote: Please move this variable declaration of cmd and assignment further down (see below). You can remove the { } of this block then. Here is

Re: [U-Boot] AT91/AVR32: at91_emac.c VS macb.c in drivers/net

2010-08-10 Thread Ben Warren
Hi Reinhard On Tuesday, August 10, 2010, Reinhard Meyer u-b...@emk-elektronik.de wrote: Hallo, macb.c is known to work for AT91 and AVR32. Why was at91_emac.c introduced into mainstream? By name it suggests it is designed to work with AT91 (only)? I don't think it is desireable to have

[U-Boot] [PATCH] UEC PHY: Speed up initial PHY neg.

2010-08-10 Thread Joakim Tjernlund
Instead of always performing an autoneg, check if the PHY already has a link and if it matches one of the requested modes. Initially only 100MbFD is optimized this way. Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- drivers/qe/uec_phy.c |9 + 1 files changed, 9

[U-Boot] [PATCH CFI]: Fix printing reading of 16-bit CFI device identifiers

2010-08-10 Thread Philippe De Muyter
Fix reading and printing of CFI flashes 16-bit devices identifiers Nowadays CFI flashes have a 16-bit device identifier. U-boot still print them and read them as if they were only 8-bit wide. Fix that. Before: Intel Extended command set, Manufacturer ID: 0x89, Device ID: 0x1B After: Intel

Re: [U-Boot] [PATCHv2 CFI flash]: Workaround for Numo nyx Axcell P33/P30 256-Mbit 65nm bug

2010-08-10 Thread Stefan Roese
Hi Philippe, one more thing: On Monday 09 August 2010 17:46:03 Philippe De Muyter wrote: Here is the excerpt from the errata : Workaround: If the interval between 60h and its subsequent command can be guaranteed within 20μs, Option I is recommended, otherwise Option

Re: [U-Boot] [PATCHv2 CFI flash]: Workaround for Numonyx Axcell?P33/P30 256-Mbit 65nm bug

2010-08-10 Thread Philippe De Muyter
On Tue, Aug 10, 2010 at 05:28:59PM +0200, Stefan Roese wrote: Hi Philippe, one more thing: On Monday 09 August 2010 17:46:03 Philippe De Muyter wrote: Here is the excerpt from the errata : Workaround: If the interval between 60h and its subsequent command can be

Re: [U-Boot] [PATCH 2/2] MPC8308ERDB: minimal support for devboard from Freescale (ICache issue)

2010-08-10 Thread Ilya Yanok
Hi Kim, 20.07.2010 4:33, Kim Phillips wrote: turning icache on early causes a different pattern of bus accesses when fetching code, and this might trigger bus accesses that interfere with code that sets bus configuration registers, such as the acr. Can you test this patch please?: This

Re: [U-Boot] [RFC][PATCH v2 17/19] arm cp15: setup mmu and enable dcache

2010-08-10 Thread Ben Gardiner
On Fri, Aug 6, 2010 at 12:44 PM, Ben Gardiner bengardi...@nanometrics.ca wrote: On Fri, Aug 6, 2010 at 12:32 PM, Reinhard Meyer reinhard.me...@emk-elektronik.de wrote: The value loaded into SP is IN the location at PC+808... look there. About in 0xc1080078+0x0328 give or take a word. And

[U-Boot] Marketing Jurídico | Newsletter Inris e Consultoria | Edição 17 | Ano 03

2010-08-10 Thread Inrise Consultoria
Seu programa de e-mail não está configurado para acessar mensagens no formato HTML. Para visualizar este email copie e cole o seguinte link em seu navegador: www.inriseconsultoria.com.br/emailmkt/visualizar.php?key=6bbd35f76452aefid=3697732

Re: [U-Boot] [RFC 1/3] FDT: Add fixup support of multiple banks of memory

2010-08-10 Thread Grant Likely
On Thu, Aug 5, 2010 at 5:36 PM, John Rigby jcri...@gmail.com wrote: On Thu, Aug 5, 2010 at 5:26 PM, Kumar Gala ga...@kernel.crashing.org wrote: On Aug 5, 2010, at 5:14 PM, John Rigby wrote: Add fdt_fixup_memory_banks and reimplement fdt_fixup_memory to use it. Signed-off-by: John Rigby

Re: [U-Boot] [RFC 2/3] ARM: WIP: add flat device tree support

2010-08-10 Thread Grant Likely
On Thu, Aug 5, 2010 at 4:14 PM, John Rigby john.ri...@linaro.org wrote: Add device tree support for ARM.  Based on other existing implementations. Hi John, minor comments. Signed-off-by: John Rigby john.ri...@linaro.org ---  arch/arm/include/asm/config.h |    1 +  arch/arm/lib/bootm.c    

Re: [U-Boot] Please Pull u-boot-ti/master

2010-08-10 Thread Wolfgang Denk
Dear s-paul...@ti.com, In message 128908-22215-1-git-send-email-s-paul...@ti.com you wrote: The following changes since commit 9efac4a1eb99d9c5539aa6992025eeacab7980c6: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-samsung are available in the git

Re: [U-Boot] [PATCH] UEC PHY: Speed up initial PHY neg.

2010-08-10 Thread Mike Frysinger
On Tue, Aug 10, 2010 at 10:36 AM, Joakim Tjernlund wrote: Instead of always performing an autoneg, check if the PHY already has a link and if it matches one of the requested modes. Initially only 100MbFD is optimized this way. wish the common net/miiphy layer had similar functionality ...

Re: [U-Boot] [RFC 2/3] ARM: WIP: add flat device tree support

2010-08-10 Thread Albert ARIBAUD
Le 10/08/2010 21:44, Grant Likely a écrit : #if defined(CONFIG_OF_LIBFDT) -#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC) +#if defined(CONFIG_PPC) || \ +defined(CONFIG_M68K) || \ +defined(CONFIG_SPARC) || \ +defined(CONFIG_ARM) There's got to be a

Re: [U-Boot] [RFC 1/3] FDT: Add fixup support of multiple banks of memory

2010-08-10 Thread Dan Malek
On Aug 10, 2010, at 12:39 PM, Grant Likely wrote: . At the moment, I think firmware should be restricted to only touching the /chosen node, the /memory node, I don't even want it updating these, except maybe for the processor clock speeds. I'm trying to use device trees as a mechanism

Re: [U-Boot] [PATCH] usb: musb: only write CLRDATATOG when appropriate

2010-08-10 Thread Mike Frysinger
On Tue, Aug 10, 2010 at 6:26 AM, Sergei Shtylyov wrote: Mike Frysinger wrote: --- a/drivers/usb/musb/musb_hcd.c +++ b/drivers/usb/musb/musb_hcd.c        } else { -               if (!toggle) -                       writew(MUSB_RXCSR_CLRDATATOG, musbr-rxcsr); -               else { +        

Re: [U-Boot] Pull request u-boot-marvell.git

2010-08-10 Thread Wolfgang Denk
Dear Prafulla Wadaskar, In message f766e4f80769bd478052fb6533fa745d19a6577...@sc-vexch4.marvell.com you wrote: are available in the git repository at: u-boot-marvell.git maaster branch Albert Aribaud (5): ide: add configuration ide: reorder object files alphabetically

Re: [U-Boot] [PATCH] orion5x: allow overriding default mappings windows

2010-08-10 Thread Wolfgang Denk
Dear Albert Aribaud, In message 1279004666-12949-1-git-send-email-albert.arib...@free.fr you wrote: Turn all ORION5X_DEF{ADR,SZ}_xxx macros into ORION5X_{ADR,SZ}_xxx and allow defining them from board code to override defaults. This is particularly useful for defining board-specific FLASH

Re: [U-Boot] Pull request u-boot-marvell.git

2010-08-10 Thread Wolfgang Denk
Dear Albert ARIBAUD, In message 4c5fbee7.4050...@free.fr you wrote: I haven't got a publically accessible repo at this point. Wolfgang, as Prafulla acknowledged the 'default windows mapping' patch except for the formal Ack-by, could you please merge it directly from the mailing list in your

Re: [U-Boot] [RFC 2/3] ARM: WIP: add flat device tree support

2010-08-10 Thread John Rigby
Thanks Albert, this is an excellent idea. On Tue, Aug 10, 2010 at 2:23 PM, Albert ARIBAUD albert.arib...@free.fr wrote: Le 10/08/2010 21:44, Grant Likely a écrit :   #if defined(CONFIG_OF_LIBFDT) -#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC) +#if

Re: [U-Boot] Please pull u-boot-imx

2010-08-10 Thread Wolfgang Denk
Dear Stefano Babic, In message 4c6107a6.60...@denx.de you wrote: Hi Wolfgang, in the pull request I have already merged the fix by Reinhard Meyer ( fix cmd_mmc.c, line 136 missing ), even if it is not strictly related to imx, else I cannot compile clean. It should not be a problem ;-)

[U-Boot] Pull request u-boot-arm

2010-08-10 Thread Wolfgang Denk
The following changes since commit 201532a69cf7e7a84bff354fdab45947425d22b4: Merge branch 'master' of ../master (2010-08-10 22:20:27 +0200) are available in the git repository at: git://git.denx.de/u-boot-arm.git master Albert Aribaud (6): ide: add configuration ide: reorder

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

2010-08-10 Thread Wolfgang Denk
Dear Stefan Roese, In message 201008091625.45939...@denx.de you wrote: The following changes since commit b417260d871d4d8d336c160d95ed40cc8c0fb0fa: PXA: Declare __io for vpac270 IDE (2010-08-09 01:15:22 +0200) are available in the git repository at:

Re: [U-Boot] [PATCH v2] Fixing spi erase for S25FL128P_256K

2010-08-10 Thread Mike Frysinger
2010/8/10 Marc-André Hébert: The spansion_erase currently only works when the sector size is 64KB. cmd[1] should contain the higher 8 bit of the 24 bit address of the sector to be erased. Currently it is holding the sector index to be erased which happens to be the same thing when the sector

Re: [U-Boot] Pull request u-boot-marvell.git

2010-08-10 Thread Albert ARIBAUD
Le 10/08/2010 22:45, Wolfgang Denk a écrit : Dear Albert ARIBAUD, In message4c5fbee7.4050...@free.fr you wrote: I haven't got a publically accessible repo at this point. Wolfgang, as Prafulla acknowledged the 'default windows mapping' patch except for the formal Ack-by, could you please

Re: [U-Boot] Pull request - net

2010-08-10 Thread Wolfgang Denk
Dear Ben Warren, In message 4c604f72.8010...@gmail.com you wrote: Wolfgang, The following changes since commit b417260d871d4d8d336c160d95ed40cc8c0fb0fa: Marek Vasut (1): PXA: Declare __io for vpac270 IDE are available in the git repository at:

Re: [U-Boot] [RFC 2/3] ARM: WIP: add flat device tree support

2010-08-10 Thread Wolfgang Denk
Dear John Rigby, In message aanlktin=irnma_tlcjvvaj4k-q_shqbohp33hj-0b...@mail.gmail.com you wrote: Thanks Albert, this is an excellent idea. On Tue, Aug 10, 2010 at 2:23 PM, Albert ARIBAUD albert.arib...@free.fr wr= Full quote delted. Please DO NOT top post / full quote. Thanks.

Re: [U-Boot] Pull request u-boot-arm

2010-08-10 Thread Wolfgang Denk
The following changes since commit 201532a69cf7e7a84bff354fdab45947425d22b4: Merge branch 'master' of ../master (2010-08-10 22:20:27 +0200) are available in the git repository at: git://git.denx.de/u-boot-arm.git master Albert Aribaud (6): ide: add configuration ide:

Re: [U-Boot] [RFC 1/3] FDT: Add fixup support of multiple banks of memory

2010-08-10 Thread John Rigby
Kumar, Grant: On Tue, Aug 10, 2010 at 1:39 PM, Grant Likely grant.lik...@secretlab.ca wrote: On Thu, Aug 5, 2010 at 5:36 PM, John Rigby jcri...@gmail.com wrote: On Thu, Aug 5, 2010 at 5:26 PM, Kumar Gala ga...@kernel.crashing.org wrote: The problem w/libfdt is that use of 'offsets' to

Re: [U-Boot] [PATCH v2.1] PXA: New MMC driver

2010-08-10 Thread Wolfgang Denk
Dear Marek Vasut, In message 1281119471-30895-1-git-send-email-marek.va...@gmail.com you wrote: The new driver is a complete rewrite. It uses the MMC framework and should support both pxa2xx and pxa3xx. Did you even compile test this driver? Tested on: - Palm Tungsten|C PXA255 -

Re: [U-Boot] [RFC 1/3] FDT: Add fixup support of multiple banks of memory

2010-08-10 Thread Grant Likely
On Tue, Aug 10, 2010 at 3:03 PM, John Rigby john.ri...@linaro.org wrote: Kumar, Grant: On Tue, Aug 10, 2010 at 1:39 PM, Grant Likely grant.lik...@secretlab.ca wrote: On Thu, Aug 5, 2010 at 5:36 PM, John Rigby jcri...@gmail.com wrote: On Thu, Aug 5, 2010 at 5:26 PM, Kumar Gala

Re: [U-Boot] [PATCH] disk/part.c: 'usb storage' avoiding overflow when output capacity

2010-08-10 Thread Wolfgang Denk
Dear Sergei Trofimovich, In message 1281269139-8194-1-git-send-email-sly...@inbox.ru you wrote: From: Sergei Trofimovich sly...@gentoo.org Before: Marvell usb storage Device 0: Vendor: StoreJet Rev: Prod: Transcend Type: Hard Disk Capacity:

Re: [U-Boot] [PATCH V6 1/3] arm: Add support for MB86R0x SoCs

2010-08-10 Thread Wolfgang Denk
Dear Matthias Weisser, In message 1281353511-23719-2-git-send-email-weiss...@arcor.de you wrote: Signed-off-by: Matthias Weisser weiss...@arcor.de --- arch/arm/cpu/arm926ejs/mb86r0x/Makefile | 47 ++ arch/arm/cpu/arm926ejs/mb86r0x/clock.c | 43 ++

Re: [U-Boot] [PATCH V6 2/3] video: add support for display controller in MB86R0x SoCs

2010-08-10 Thread Wolfgang Denk
Dear Matthias Weisser, In message 1281353511-23719-3-git-send-email-weiss...@arcor.de you wrote: This patch adds support for the display controller in the MB86R0x SoCs. Signed-off-by: Matthias Weisser weiss...@arcor.de --- drivers/video/Makefile |1 + drivers/video/mb86r0xgdc.c |

Re: [U-Boot] [PATCH V6 3/3] arm: Add support for jadecpu board based on MB86R01 SoC

2010-08-10 Thread Wolfgang Denk
Dear Matthias Weisser, In message 1281353511-23719-4-git-send-email-weiss...@arcor.de you wrote: This patch adds support for the jadecpu board using the MB86R01 'Jade' SoC from Fujitsu. Signed-off-by: Matthias Weisser weiss...@arcor.de --- MAINTAINERS |4 +

Re: [U-Boot] [RFC 1/3] FDT: Add fixup support of multiple banks of memory

2010-08-10 Thread Dan Malek
On Aug 10, 2010, at 1:26 PM, Grant Likely wrote: Hi Dan! I'm glad you're reading as you're one of the use-cases I was thinking about. :-) Hi Grant. Yeah, it's me, the special case :-) ... but I gather from your comment that even that causes problems in your use-case. The /chosen

Re: [U-Boot] [PATCH 1/9] ARM: Define __raw_readX and __raw_writeX

2010-08-10 Thread Wolfgang Denk
Dear Marek Vasut, In message 1281415810-31363-1-git-send-email-marek.va...@gmail.com you wrote: These functions are undefined on ARM when using __io. These are the commonly used versions and can be redefined. Signed-off-by: Marek Vasut marek.va...@gmail.com --- arch/arm/include/asm/io.h |

Re: [U-Boot] [PATCH 2/9] PXA: pxafb: Add ACX517AKN support

2010-08-10 Thread Wolfgang Denk
Dear Marek Vasut, In message 1281415810-31363-2-git-send-email-marek.va...@gmail.com you wrote: ACX517AKN LCD panel is found in Palm Tungsten|C Signed-off-by: Marek Vasut marek.va...@gmail.com --- arch/arm/cpu/pxa/pxafb.c | 34 ++ 1 files changed, 34

Re: [U-Boot] [PATCH 9/9] PXA: Add missing MAINTAINERS entries

2010-08-10 Thread Wolfgang Denk
Dear Marek Vasut, In message 1281415810-31363-9-git-send-email-marek.va...@gmail.com you wrote: Signed-off-by: Marek Vasut marek.va...@gmail.com --- MAINTAINERS |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index

Re: [U-Boot] [PATCH 8/9] PXA: Balloon3 board support

2010-08-10 Thread Wolfgang Denk
Dear Marek Vasut, In message 1281415810-31363-8-git-send-email-marek.va...@gmail.com you wrote: The following hardware is currently supported: - UART - USB Host - FPGA Signed-off-by: Marek Vasut marek.va...@gmail.com --- MAKEALL|1 + board/balloon3/Makefile

Re: [U-Boot] [RFC 1/3] FDT: Add fixup support of multiple banks of memory

2010-08-10 Thread Scott Wood
On Tue, 10 Aug 2010 13:39:57 -0600 Grant Likely grant.lik...@secretlab.ca wrote: :-) I still stand on my point that hard coding device tree manipulations is asking for trouble. IMNSHO, firmware should really be restricted to very well defined things in the device tree. I've been thinking

Re: [U-Boot] [PATCH 1/9] ARM: Define __raw_readX and __raw_writeX

2010-08-10 Thread Marek Vasut
Dne Út 10. srpna 2010 23:38:25 Wolfgang Denk napsal(a): Dear Marek Vasut, In message 1281415810-31363-1-git-send-email-marek.va...@gmail.com you wrote: These functions are undefined on ARM when using __io. These are the commonly used versions and can be redefined. Signed-off-by:

Re: [U-Boot] [PATCH 2/9] PXA: pxafb: Add ACX517AKN support

2010-08-10 Thread Marek Vasut
Dne Út 10. srpna 2010 23:45:05 Wolfgang Denk napsal(a): Dear Marek Vasut, In message 1281415810-31363-2-git-send-email-marek.va...@gmail.com you wrote: ACX517AKN LCD panel is found in Palm Tungsten|C Signed-off-by: Marek Vasut marek.va...@gmail.com --- arch/arm/cpu/pxa/pxafb.c

Re: [U-Boot] [PATCH v2.1] PXA: New MMC driver

2010-08-10 Thread Marek Vasut
Dne Út 10. srpna 2010 23:08:15 Wolfgang Denk napsal(a): Dear Marek Vasut, In message 1281119471-30895-1-git-send-email-marek.va...@gmail.com you wrote: The new driver is a complete rewrite. It uses the MMC framework and should support both pxa2xx and pxa3xx. Did you even compile test

[U-Boot] Email Notice

2010-08-10 Thread i...@nationallottery.co.uk
Your email address won £500,000 GPB. Contact claims officer: uknl-mr.grahamwilbe r...@windowslive.com ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] u-boot patch submission

2010-08-10 Thread Tirumala Marri
Hi, It has been a while I submitted u-boot patches. Can someone please send me updated guide lines. Thanks in Advance, Marri ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] A bl command question about smdk2410 in u-boot-2010.06

2010-08-10 Thread Paul Hsu
Hi Jianchun, The result of objdump is based on the ELF format. It knows that the piece of code should be put to address 0x33f8 to run, although the code is running at address 0x0 after power-on. And bl instruction is a jump instruction according to an offset of PC. That't why you see the

Re: [U-Boot] u-boot patch submission

2010-08-10 Thread Mike Frysinger
On Tue, Aug 10, 2010 at 9:53 PM, Tirumala Marri wrote: It has been a while I submitted u-boot patches. Can someone please send me updated guide lines. u-boot has a doc wiki. i suggest you start there. http://www.denx.de/wiki/U-Boot/WebHome -mike ___

Re: [U-Boot] u-boot patch submission

2010-08-10 Thread Wolfgang Denk
Dear Tirumala Marri, In message 1f0a61861c6ba89e0172a79d5a564...@mail.gmail.com you wrote: It has been a while I submitted u-boot patches. Can someone please send me updated guide lines. Please see the Patches page in the U-Boot wiki. Best regards, Wolfgang Denk -- DENX Software

Re: [U-Boot] [PATCH] TI: DaVinci DA850 EVM: support passing device speed grade information to kernel

2010-08-10 Thread Nishanth Menon
On 08/10/2010 06:39 AM, Sekhar Nori wrote: The TI DA850/OMAP-L138/AM18x EVM can be populated with devices of different speed grades. The maximum speed the chip can support can only be determined from the label on the package (not software readable). Introduce a method to pass the speed

[U-Boot] Hello Dear,

2010-08-10 Thread Aisha Rabiya
Hello Dear, How are you today? My name is Aisha Rabiya. However it really pleases me to write you for a lovely and sincere friendship even if we haven’t met or seen each other before.I will so much appreciate to see your reply soon so that we can share pictures and more about ourselves. Yours

Re: [U-Boot] [RFC][PATCH v2 17/19] arm cp15: setup mmu and enable dcache

2010-08-10 Thread Heiko Schocher
Hello Ben, Thanks for trying this patches! Ben Gardiner wrote: On Fri, Aug 6, 2010 at 12:44 PM, Ben Gardiner bengardi...@nanometrics.ca wrote: On Fri, Aug 6, 2010 at 12:32 PM, Reinhard Meyer reinhard.me...@emk-elektronik.de wrote: The value loaded into SP is IN the location at PC+808...