[U-Boot] [PATCH v5 1/9] tsec: use IO accessors for IO accesses

2011-04-13 Thread Andy Fleming
From: Mingkai Hu mingkai...@freescale.com Signed-off-by: Mingkai Hu mingkai...@freescale.com Acked-by: Andy Fleming aflem...@freescale.com Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- v3: Removed unnecessary syncs v2: Fixed the commit message's spelling drivers/net/tsec.c | 249

[U-Boot] [PATCH v5 0/9] Universal PHY Infrastructure

2011-04-13 Thread Andy Fleming
Or PHY Lib for U-Boot. This sequence of patches adds infrastructure for universally-available PHY drivers (and MDIO drivers). It piggy-backs on the existing miiphy code, for backwards compatibility, but it also creates a new set of APIs. This was necessary partly to provide cleaner interfaces

[U-Boot] [PATCH v5 3/9] Remove instances of phy_read/write

2011-04-13 Thread Andy Fleming
There were a few files which were already using phy_read and phy_write for their PHY function names. It's only a few places, and the name seems most appropriate for the high-level abstraction, so let's rename the other versions to something more specific. Also, uec_phy.c had a marvell_init

[U-Boot] [PATCH v5 4/9] miiphy: Fix some formatting issues

2011-04-13 Thread Andy Fleming
Mostly putting a space between function name and (, and doing return (foo) Signed-off-by: Andy Fleming aflem...@freescale.com --- v3: split off from the phylib changes to miiphyutil.c and miiphy.h common/miiphyutil.c | 144 +- include/miiphy.h

[U-Boot] [PATCH v5 8/9] fsl: Change fsl_phy_enet_if to phy_interface_t

2011-04-13 Thread Andy Fleming
The fsl_phy_enet_if enum was, essentially, the phy_interface_t enum. This meant that drivers which used fsl_phy_enet_if to deal with PHY interfaces would have to convert between the two (or we would have to have them mirror each other, and deal with the ensuing maintenance headache). Instead, we

[U-Boot] [PATCH v5 9/9] Add mdio command for new PHY infrastructure

2011-04-13 Thread Andy Fleming
The new mdio command doesn't have all of the features of the mii command, but it provides the necessary read/write primitives, and allows users to interact with 10G PHYs, and other PHYs which use Clause 45 of 802.3. This means that the mdio command requires a Device Address argument, though for

[U-Boot] [PATCH v5 6/9] phylib: Add a bunch of PHY drivers from tsec

2011-04-13 Thread Andy Fleming
The tsec driver had a bunch of PHY drivers already written. This converts them all into PHY Lib drivers, and serves as the first set of PHY drivers for PHY Lib. While doing that, cleaned up a number of magic numbers (though not all of them, as PHY vendors like to keep their numbers as magical as

[U-Boot] [PATCH v5 2/9] tsec: arrange the code to avoid useless function declaration

2011-04-13 Thread Andy Fleming
From: Mingkai Hu mingkai...@freescale.com This is merely a rearrangement. No changes to the code, except to remove now-useless declarations. Signed-off-by: Mingkai Hu mingkai...@freescale.com Acked-by: Andy Fleming aflem...@freescale.com Signed-off-by: Kumar Gala ga...@kernel.crashing.org ---

Re: [U-Boot] [PATCH]: add canyonlands RAM-boot target

2011-04-13 Thread Stefan Roese
Hi Fawaz, On Sunday 13 March 2011 17:20:31 Fawaz wrote: This Patch adds another build target for the AMCC Canyonlands [PPC460Ex] eval board, this target can be used to do NAND flash or NOR flash programming in a virgin board using u-boot commands. Using JTAG debugger(e.g. BDI2000/3000)

Re: [U-Boot] [PATCH 3/8] hwmon: Extend lm63.c to support LM64

2011-04-13 Thread Stefan Roese
Hi Dirk, On Wednesday 06 April 2011 13:53:45 Dirk Eibach wrote: This patch adds support for the National LM64 temperature sensor with integrated fan control to lm63.c. It's used on the GDSys DLVision-10G board (405EP). Main difference between LM63 and LM64 is 16°C offset in sensor

Re: [U-Boot] [PATCH 00/15] [REWORK AVR32/AT91] additional changes for avr32

2011-04-13 Thread Andreas Bießmann
Dear Reinhard, Am 09.02.2011 16:40, schrieb Andreas Bießmann: This series do some cleanup all avr32 boards. This series is on top of 'Get AVR32 boards working with partial linking' rebased to u-boot-atmel/rework110202. In summary the board specific config.mk and u-boot.lds files are deleted

[U-Boot] [RFC] Act as a TFTP server

2011-04-13 Thread Luca Ceresoli
Hi, I am going to implement in U-Boot the ability to receive a file via TFTP acting as a server, not a client. I've sketched up a way to implement it, and I would appreciate any comments about it. This is useful to solve the firewall issues that a Management Station can face when sending files

[U-Boot] [PATCH] avr32: add ATAG_BOARDINFO

2011-04-13 Thread Andreas Bießmann
This patch adds a new ATAG_BORADINFO to U-Boot. This tag is intended to hand over the bd-bi_board_number to the linux kernel for early stage board information like a board revision or other kind of board specific decisions necessary before the linux peripherial drivers are up. Signed-off-by:

[U-Boot] [RFC] Allow for parallel builds and saved output

2011-04-13 Thread Andy Fleming
The MAKEALL script cleverly runs make with the appropriate options to use all of the cores on the system, but your average U-Boot build can't make much use of more than a few cores. If you happen to have a many-core server, your builds will leave most of the system idle. In order to make full

Re: [U-Boot] [PATCH 1/6] eNET: Fix saveenv crash

2011-04-13 Thread Graeme Russ
On 11/04/11 21:06, Graeme Russ wrote: CONFIG_ENV_SIZE = CONFIG_ENV_SECT_SIZE = 128kB but CONFIG_SYS_STACK_SIZE is only 32kB resulting in saveenv causing a stack overflow and crashing U-Boot. Resolve by reducing CONFIG_ENV_SIZE to 4kB Also fix up CONFIG_SYS_MALLOC_LEN to correctly use

Re: [U-Boot] [PATCH 2/6] eNET: Remove config.mk

2011-04-13 Thread Graeme Russ
On 11/04/11 21:06, Graeme Russ wrote: By including config.h in the ld script, CONFIG_SYS_MONITOR_LEN (defined in the boards config file) can be used in lieu of FLASH_SIZE (defined in the board specific config.mk) As this is the last remaining entry in the board specific config.mk, this file

Re: [U-Boot] [PATCH 3/6] x86: Code cleanup

2011-04-13 Thread Graeme Russ
On 11/04/11 21:06, Graeme Russ wrote: Make the copyright notices in the x86 files consistent and update them with proper attributions for recent updates Also fix a few comment style/accuracy and whitespace/blank line issues Signed-off-by: Graeme Russ graeme.r...@gmail.com ---

Re: [U-Boot] [PATCH 4/6] x86: Rename i386 to x86

2011-04-13 Thread Graeme Russ
On 11/04/11 21:06, Graeme Russ wrote: Signed-off-by: Graeme Russ graeme.r...@gmail.com --- MAKEALL|4 ++-- Makefile |4 ++-- README |2 +- arch/{i386

Re: [U-Boot] [PATCH 5/6] sc520: Move reset to stand-alone file

2011-04-13 Thread Graeme Russ
On 11/04/11 21:06, Graeme Russ wrote: Partial linking allows weak functions to be overridden in files containing only one function. Moving the sc520 override of reset_cpu gets rid of an ugly #ifdef Signed-off-by: Graeme Russ graeme.r...@gmail.com --- arch/x86/cpu/sc520/Makefile |

Re: [U-Boot] [PATCH 6/6] x86: Update MAINTAINERS and delete README files

2011-04-13 Thread Graeme Russ
On 11/04/11 21:07, Graeme Russ wrote: The README files are totally out-of-date to the point where they do more harm than good Signed-off-by: Graeme Russ graeme.r...@gmail.com --- MAINTAINERS|4 +- doc/README-x86 | 74

Re: [U-Boot] [PATCH 0/4] generic mmc_spi driver

2011-04-13 Thread Andy Fleming
On Tue, Apr 12, 2011 at 1:58 AM, Mike Frysinger vap...@gentoo.org wrote: On Friday, December 24, 2010 02:16:05 Thomas Chou wrote: This is the v9 update of the mmc_spi driver. Please enable DEBUG on the top of mmc_spi.c and help me perform the tests. A new spi_set_speed() is added to meet the

Re: [U-Boot] [PATCH] MX51: mx51evk: Use struct to access SRSR register instead of offset

2011-04-13 Thread Sergei Shtylyov
Hello. On 13-04-2011 7:02, Fabio Estevam wrote: Signed-off-by: Fabio Estevamfabio.este...@freescale.com --- board/freescale/mx51evk/mx51evk.c |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/board/freescale/mx51evk/mx51evk.c

Re: [U-Boot] [U-BOOT] [PATCH] mmc: enable switch partition function

2011-04-13 Thread Andy Fleming
I want to get rid of the device argument in all these calls. So the the mmc read would becomes mmc read [ram address] [mmc sector start] [sector num]? Right.  That's what we use on other storage devices, too. Right now, getting rid of all of those is a bit of a chore. Personally, I'd

Re: [U-Boot] [PATCH v2 2/2] MX31: mx31pdk: Print the cause of reset

2011-04-13 Thread Detlev Zundel
Hi Fabio, Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Changes since v1: - Use 3 bits for rcsr mask board/freescale/mx31pdk/mx31pdk.c | 25 - 1 files changed, 24 insertions(+), 1 deletions(-) diff --git a/board/freescale/mx31pdk/mx31pdk.c

Re: [U-Boot] [PATCH v3 2/3] MMC: Add support for PL180 ARM mmc device

2011-04-13 Thread Andy Fleming
On Wed, Mar 2, 2011 at 11:22 PM, matt.wad...@linaro.org wrote: + +static int convert_from_bytes_to_power_of_two(unsigned int x) +{ +       int y = 0; +       y = (x 0x) ? 1 : 0; +       y |= ((x 0x) ? 1 : 0) 1; +       y |= ((x 0xF0F0) ? 1 : 0) 2; +       y |= ((x 0xFF00) ?

Re: [U-Boot] [PATCH 2/3] Initialize second PHY on OpenRD-Client and OpenRD-Ultimate.

2011-04-13 Thread Detlev Zundel
Hi Clint, (rework of Julian Pidancet's patch) --- board/Marvell/openrd_base/openrd_base.c | 24 include/configs/openrd_base.h | 14 -- 2 files changed, 32 insertions(+), 6 deletions(-) Sorry to jump in a little bit late here, but can you

Re: [U-Boot] [PATCH v3 3/3] ARMV7: Vexpress: Add MMC support

2011-04-13 Thread Andy Fleming
On Wed, Mar 2, 2011 at 11:22 PM, matt.wad...@linaro.org wrote: From: Matt Waddel matt.wad...@linaro.org Added the board specific definitions to use the MMCI device. Signed-off-by: Matt Waddel matt.wad...@linaro.org Looks fine to me. I can apply this to my tree if that's fine with the

Re: [U-Boot] [PATCH] JFFS2: bug fix for summary support.

2011-04-13 Thread Detlev Zundel
Hi Leo, This patch fixes some issues with JFFS2 summary support in U-Boot. 1/ Bug fix for summary support: we need to get the latest DIRENT. Can you give an exmaple how this bug showed? 2/ Avoid allocate too big memory if the biggest file in JFFS2 is too long. We only allocate one node size

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

2011-04-13 Thread Andy Fleming
On Fri, Mar 11, 2011 at 6:01 AM, Raffaele Recalcati lamiapost...@gmail.com wrote: From: Raffaele Recalcati raffaele.recalc...@bticino.it 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

Re: [U-Boot] [PATCH] JFFS2: accelerate scanning.

2011-04-13 Thread Detlev Zundel
Hi Leo, This patch make the JFFS2 scanning faster in U-Boot. 1). if we find 1KB 0xFF data from the beginning of the erase block,skip it. 2). if the 1KB data is 0xFF after the cleanmarker, ship this erase block. Ship it to where? ;) Typo, should be skip. For the 16MB nor flash, the scanning

Re: [U-Boot] [RFC] Act as a TFTP server

2011-04-13 Thread Wolfgang Denk
Dear Luca, In message 4da5682a.8040...@comelit.it you wrote: I am going to implement in U-Boot the ability to receive a file via TFTP acting as a server, not a client. I've sketched up a way to implement it, and I would appreciate any comments about it. Thanks for the efforts, and

Re: [U-Boot] [PATCH] avr32: add ATAG_BOARDINFO

2011-04-13 Thread Wolfgang Denk
Dear =?UTF-8?q?Andreas=20Bie=C3=9Fmann?=, In message 1302686741-11090-1-git-send-email-biessm...@corscience.de you wrote: This patch adds a new ATAG_BORADINFO to U-Boot. This tag is intended to hand over the bd-bi_board_number to the linux kernel for early stage board information like a board

Re: [U-Boot] [PATCH v2] MX51: mx51evk: Use struct to access SRSR register instead of offset

2011-04-13 Thread Detlev Zundel
Hi Fabio, Use struct to access SRSR register instead of offset. While at it mask the 7 bits of SRSR for correctness. Signed-off-by: Fabio Estevam fabio.este...@freescale.com The SRSR is a MX51 register and thus not board specific. Can we please move this reset cause detection into common

Re: [U-Boot] [PATCH v5 0/9] Universal PHY Infrastructure

2011-04-13 Thread Detlev Zundel
Hi Andy, Or PHY Lib for U-Boot. I've given acked-bys to parts of the changes that you sent already. As you already ignored them the last time, I'm not reposting them. If you want, you can add them yourself of course. Cheers Detlev -- Modern methods of production have given us the

Re: [U-Boot] [PATCH v5 8/9] fsl: Change fsl_phy_enet_if to phy_interface_t

2011-04-13 Thread Detlev Zundel
Hi Andy, The fsl_phy_enet_if enum was, essentially, the phy_interface_t enum. This meant that drivers which used fsl_phy_enet_if to deal with PHY interfaces would have to convert between the two (or we would have to have them mirror each other, and deal with the ensuing maintenance

[U-Boot] [x86] Pull request

2011-04-13 Thread Graeme Russ
Dear Wolfgang, The following changes since commit b16aadf411280fc426d7488ddd8a5b2038b7194d: disk/part.c: fix potential stack overflow bug (2011-04-12 22:58:35 +0200) are available in the git repository at: git://git.denx.de/u-boot-x86 master Graeme Russ (8): eNET: Fix undefined

[U-Boot] [PATCH 1/1] at91: reworked support for meesc board

2011-04-13 Thread Daniel Gorsulowski
After relocation rework, the meesc and otc570 board support was broken. This patch will fix the meesc board. Signed-off-by: Daniel Gorsulowski daniel.gorsulow...@esd.eu --- This patch is based on u-boot-atmel/rework101229 branch (minus the last 5 patches) plus the 'at91: fixed at91sam9263 system

Re: [U-Boot] [PATCH v5 0/9] Universal PHY Infrastructure

2011-04-13 Thread Andy Fleming
On Apr 13, 2011, at 7:01 AM, Detlev Zundel wrote: Hi Andy, Or PHY Lib for U-Boot. I've given acked-bys to parts of the changes that you sent already. As you already ignored them the last time, I'm not reposting them. If you want, you can add them yourself of course. I apologize for

[U-Boot] P2020RDB/P1020RDB regression in 2011.03

2011-04-13 Thread Felix Radensky
Hi, Commit b0c5ceb305054aadf2f810b0b7bfcc94926b78ad powerpc/85xx: Fix PCI memory map setup on P1_P2_RDB makes mini PCI-E slot on P2020RDB/P1020RDB boards unusable in linux versions before 2.6.39. PCI memory map changes require updates to device tree, which are only available in 2.6.39. In

Re: [U-Boot] [RFC] Act as a TFTP server

2011-04-13 Thread Luca Ceresoli
Wolfgang, thanks for the feedback. Wolfgang Denk wrote: ... From the user point of view, I would implement a new command, activated only when CONFIG_CMD_TFTPSRV is defined: Usage:tftpsrv [loadaddr] This would be used almost like tftpboot, except no file name is specified on

Re: [U-Boot] [PATCH] avr32: add ATAG_BOARDINFO

2011-04-13 Thread Andreas Bießmann
Dear Wolfgang Denk, Am 13.04.2011 13:44, schrieb Wolfgang Denk: Dear =?UTF-8?q?Andreas=20Bie=C3=9Fmann?=, In message 1302686741-11090-1-git-send-email-biessm...@corscience.de you wrote: This patch adds a new ATAG_BORADINFO to U-Boot. This tag is intended to hand over the

Re: [U-Boot] [PATCH] JFFS2: bug fix for summary support.

2011-04-13 Thread Baidu Liu
Hi, Detlev: 2011/4/13 Detlev Zundel d...@denx.de: Hi Leo, This patch fixes some issues with JFFS2 summary support in U-Boot. 1/ Bug fix for summary support: we need to get the latest DIRENT. Can you give an exmaple how this bug showed? For example, if you create a file in linux jffs2 which

[U-Boot] [PATCH V1 1/1] MX5: Keep L2 cache enabled before jump to kernel

2011-04-13 Thread Jason Liu
Currently, Linux kernel does not do any L2 cache enable Operation.So,Keep L2 cache enabled(L2EN=1) in the u-boot before Jump to the Linux Kernel and thus L2 cache can be effectively used in Linux Kernel. Signed-off-by: Jason Liu jason@linaro.org --- arch/arm/cpu/armv7/mx5/Makefile

[U-Boot] [PATCH 1/1] MX5: clock: Add clock config interface

2011-04-13 Thread Jason Liu
Add clock config interface support, so that we can configure CPU or DDR clock in the later init Signed-off-by: Jason Liu jason@linaro.org --- arch/arm/cpu/armv7/mx5/clock.c | 551 +- arch/arm/include/asm/arch-mx5/clock.h|4 +

[U-Boot] Apple iPhone 3G 32GB unlocked cell phone 100% new

2011-04-13 Thread info
We are original distributor of the brands and models of electronics, we sell Laptops, mobile phones, Xbox 360, Sony PSP, Plasma TV, Pda Phones, MP3 MP4 player, PlayStation, digital cameras, DVD players, portable DVD, DVD car radio, MP3 , MP4, LCD TV, Plasma - TV, CD-ROM and more favorable and

[U-Boot] [PATCH 1/2] PMIC: Add dialog pmic support

2011-04-13 Thread Jason Liu
Add dialog pmic(DA9053) driver with I2C interface support Signed-off-by: Jason Liu jason@linaro.org --- drivers/misc/Makefile |1 + drivers/misc/dialog_pmic.c | 123 + include/da9053.h | 186 3

[U-Boot] [PATCH 2/2] MX53: loco: Add power init support

2011-04-13 Thread Jason Liu
Increase CPU core power to 1.25v via DA9053 PMIC, and after that CPU can ran to 1GHZ and DDR 400Mhz. Signed-off-by: Jason Liu jason@linaro.org --- arch/arm/include/asm/arch-mx5/sys_proto.h |2 + board/freescale/mx53loco/mx53loco.c | 94 +

[U-Boot] [PATCH] JFFS2: accelerate scanning.

2011-04-13 Thread Baidu Liu
Hi, Detlev 2011/4/13 Detlev Zundel d...@denx.de: Hi Leo, This patch make the JFFS2 scanning faster in U-Boot. 1). if we find 1KB 0xFF data from the beginning of the erase block,skip it. 2). if the 1KB data is 0xFF after the cleanmarker, ship this erase block. Ship it to where? ;) Typo,

Re: [U-Boot] [PATCH V8 0/6] add i2c support to pantheon and aramada100

2011-04-13 Thread Prafulla Wadaskar
-Original Message- From: Lei Wen [mailto:lei...@marvell.com] Sent: Tuesday, April 05, 2011 1:31 PM To: Heiko Schocher; Prafulla Wadaskar; Wolfgang Denk; u- b...@lists.denx.de; Marek Vasut; Ashish Karkare; Prabhanjan Sarnaik; Yu Tang; adrian.w...@gmail.com Subject: [PATCH V8 0/6]

Re: [U-Boot] [PATCH V8 0/6] add i2c support to pantheon and aramada100

2011-04-13 Thread Lei Wen
Hi Prafulla, On Wed, Apr 13, 2011 at 10:01 PM, Prafulla Wadaskar prafu...@marvell.com wrote: -Original Message- From: Lei Wen [mailto:lei...@marvell.com] Sent: Tuesday, April 05, 2011 1:31 PM To: Heiko Schocher; Prafulla Wadaskar; Wolfgang Denk; u- b...@lists.denx.de; Marek Vasut;

Re: [U-Boot] [PATCH] JFFS2: bug fix for summary support.

2011-04-13 Thread Detlev Zundel
Hi Baidu, Hi, Detlev: 2011/4/13 Detlev Zundel d...@denx.de: Hi Leo, This patch fixes some issues with JFFS2 summary support in U-Boot. 1/ Bug fix for summary support: we need to get the latest DIRENT. Can you give an exmaple how this bug showed? For example, if you create a file in

Re: [U-Boot] [PATCH] mvgbe: enable the reception of packets with an odd number of preamble nibbles

2011-04-13 Thread Prafulla Wadaskar
-Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Wolfgang Denk Sent: Wednesday, April 13, 2011 12:20 AM To: Klaus Flittner Cc: u-boot@lists.denx.de Subject: Re: [U-Boot] [PATCH] mvgbe: enable the reception of packets with an

Re: [U-Boot] [PATCH 3/3] Rename openrd_base files to openrd.

2011-04-13 Thread Prafulla Wadaskar
-Original Message- From: Clint Adams [mailto:cl...@debian.org] Sent: Wednesday, April 13, 2011 12:14 AM To: u-boot@lists.denx.de Cc: Prafulla Wadaskar; julian.pidan...@citrix.com; Clint Adams Subject: [PATCH 3/3] Rename openrd_base files to openrd. ---

Re: [U-Boot] [PATCH 2/3] Initialize second PHY on OpenRD-Client and OpenRD-Ultimate.

2011-04-13 Thread Prafulla Wadaskar
-Original Message- From: Clint Adams [mailto:cl...@debian.org] Sent: Wednesday, April 13, 2011 12:14 AM To: u-boot@lists.denx.de Cc: Prafulla Wadaskar; julian.pidan...@citrix.com; Clint Adams Subject: [PATCH 2/3] Initialize second PHY on OpenRD-Client and OpenRD- Ultimate.

Re: [U-Boot] [PATCH] JFFS2: accelerate scanning.

2011-04-13 Thread Detlev Zundel
Hi Baidu, diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c index dfb1745..f38f755 100644 --- a/fs/jffs2/jffs2_1pass.c +++ b/fs/jffs2/jffs2_1pass.c @@ -1441,7 +1441,7 @@ dump_dirents(struct b_lists *pL) } #endif -#define DEFAULT_EMPTY_SCAN_SIZE 4096 +#define

Re: [U-Boot] [PATCH V8 0/6] add i2c support to pantheon and aramada100

2011-04-13 Thread Prafulla Wadaskar
-Original Message- From: Lei Wen [mailto:adrian.w...@gmail.com] Sent: Wednesday, April 13, 2011 7:44 PM To: Prafulla Wadaskar Cc: Lei Wen; Heiko Schocher; Wolfgang Denk; u-boot@lists.denx.de; Marek Vasut; Ashish Karkare; Prabhanjan Sarnaik; Yu Tang Subject: Re: [PATCH V8 0/6] add

Re: [U-Boot] [PATCH V8 0/6] add i2c support to pantheon and aramada100

2011-04-13 Thread Lei Wen
On Wed, Apr 13, 2011 at 10:26 PM, Prafulla Wadaskar prafu...@marvell.com wrote: -Original Message- From: Lei Wen [mailto:adrian.w...@gmail.com] Sent: Wednesday, April 13, 2011 7:44 PM To: Prafulla Wadaskar Cc: Lei Wen; Heiko Schocher; Wolfgang Denk; u-boot@lists.denx.de; Marek

Re: [U-Boot] [PATCH] JFFS2: accelerate scanning.

2011-04-13 Thread Joakim Tjernlund
Hi Baidu, diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c index dfb1745..f38f755 100644 --- a/fs/jffs2/jffs2_1pass.c +++ b/fs/jffs2/jffs2_1pass.c @@ -1441,7 +1441,7 @@ dump_dirents(struct b_lists *pL) } #endif -#define DEFAULT_EMPTY_SCAN_SIZE 4096 +#define

Re: [U-Boot] [PATCH V8 0/6] add i2c support to pantheon and aramada100

2011-04-13 Thread Prafulla Wadaskar
-Original Message- From: Prafulla Wadaskar Sent: Wednesday, April 13, 2011 7:57 PM To: 'Lei Wen' Cc: Lei Wen; Heiko Schocher; Wolfgang Denk; u-boot@lists.denx.de; Marek Vasut; Ashish Karkare; Prabhanjan Sarnaik; Yu Tang Subject: RE: [PATCH V8 0/6] add i2c support to pantheon and

Re: [U-Boot] [PATCH V8 0/6] add i2c support to pantheon and aramada100

2011-04-13 Thread Prafulla Wadaskar
-Original Message- From: Lei Wen [mailto:lei...@marvell.com] Sent: Tuesday, April 05, 2011 1:31 PM To: Heiko Schocher; Prafulla Wadaskar; Wolfgang Denk; u- b...@lists.denx.de; Marek Vasut; Ashish Karkare; Prabhanjan Sarnaik; Yu Tang; adrian.w...@gmail.com Subject: [PATCH V8 0/6]

Re: [U-Boot] [PATCH 1/7] Orion5x: Correct DRAM bank detection

2011-04-13 Thread Prafulla Wadaskar
-Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] On Behalf Of ro...@dawes.za.net Sent: Friday, March 18, 2011 1:40 PM To: u-boot@lists.denx.de Subject: [U-Boot] [PATCH 1/7] Orion5x: Correct DRAM bank detection From: Rogan Dawes

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

2011-04-13 Thread Prafulla Wadaskar
Hi Albert Please kindly pull The following changes since commit 531bb02c0bfc783e95f1b761f18e15d6f565e357: Fabio Estevam (1): MX25: tx25: Add _end section on nand_spl are available in the git repository at: u-boot-marvell.git master branch Lei Wen (6): pxa: move i2c driver to

Re: [U-Boot] [PATCH 4/5] e1000: New e1000 commands for SPI EEPROM management

2011-04-13 Thread Moffett, Kyle D
On Apr 13, 2011, at 01:23, Wolfgang Denk wrote: In message 0ef7e520-ff4a-435f-af2a-0d47c0951...@boeing.com you wrote: In particular, those other eeprom drivers simply have a single hardcoded I/O base address that they assume is properly mapped, IE: struct eth_device dev; dev.iobase =

[U-Boot] building breakage for xpedite5xxx boards

2011-04-13 Thread Kumar Gala
Not sure what broke it: [galak@right u-boot-85xx]$ cat LOG/xpedite520x.ERR cfi_flash.c: In function 'flash_protect_default': cfi_flash.c:2118:7: error: 'i' undeclared (first use in this function) cfi_flash.c:2118:7: note: each undeclared identifier is reported only once for each function it

Re: [U-Boot] LED LIGHTING

2011-04-13 Thread Johan
Dear Purchasing Manager Vast-Star here, exporting led bulbs,led spotlight, led strips with good quality and low price in China. Call me orReply me, let's talk details. Rgds, Johan Email:vast...@gmail.com www.vastled.com 86 15869177755___

Re: [U-Boot] [PATCH 6/6] EA20: do not use subpage write for NAND

2011-04-13 Thread Scott Wood
On Tue, 12 Apr 2011 11:44:26 +0200 Stefano Babic sba...@denx.de wrote: On 04/11/2011 09:16 PM, Scott Wood wrote: This only controls the davinci driver, so it should be CONFIG_SYS_DAVINCI_NAND_NO_SUBPAGE. Is this really board-specific? No, really not. Does the davinci driver ever

[U-Boot] [V1 0/3] OpenRD-Client and OpenRD-Ultimate support

2011-04-13 Thread Clint Adams
This moves the renames to the begining, removes the unsightly periods from the commit logs, puts V1 in the Subject headers, breaks up the 80-character line, and hopefully addresses all complaints except for Detlev Zundel's. Clint Adams (3): Rename openrd_base files to openrd Add definitions

[U-Boot] [V1 1/3] Rename openrd_base files to openrd

2011-04-13 Thread Clint Adams
--- board/Marvell/{openrd_base = openrd}/Makefile |2 +- board/Marvell/{openrd_base = openrd}/kwbimage.cfg |0 .../{openrd_base/openrd_base.c = openrd/openrd.c} |2 +- .../{openrd_base/openrd_base.h = openrd/openrd.h} |0 boards.cfg |

[U-Boot] [V1 2/3] Add definitions for OpenRD-Client and OpenRD-Ultimate

2011-04-13 Thread Clint Adams
--- MAKEALL |2 ++ board/Marvell/openrd/openrd.c |6 ++ boards.cfg|2 ++ include/configs/openrd.h | 14 +- 4 files changed, 23 insertions(+), 1 deletions(-) diff --git a/MAKEALL b/MAKEALL index e1b928f..011cead 100755

[U-Boot] [V1 3/3] Initialize second PHY on OpenRD-Client and OpenRD-Ultimate

2011-04-13 Thread Clint Adams
(rework of Julian Pidancet's patch) --- board/Marvell/openrd/openrd.c | 25 + include/configs/openrd.h | 14 -- 2 files changed, 33 insertions(+), 6 deletions(-) diff --git a/board/Marvell/openrd/openrd.c b/board/Marvell/openrd/openrd.c index

[U-Boot] [PATCH] cfi_flash: Fix CONFIG_SYS_FLASH_AUTOPROTECT_LIST usage

2011-04-13 Thread Peter Tyser
Commit 6ee1416e8184b4d9ebe6087d396a60bcecf3551c (mtd, cfi: introduce void flash_protect_default(void)) introduced a bug which resulted in boards that define CONFIG_SYS_FLASH_AUTOPROTECT_LIST not compiling with the the following errors and warning: ptyser@petert u-boot $ make -s xpedite520x

[U-Boot] CEPAT email saya

2011-04-13 Thread Titie
Salam perkenalan dari saudaramu dinbsp; Negara Mesir. Alhamdulillah, Allah menjaga saya di negara ini sampai saat ini. nbsp; Nama saya Tities Roro Massayu. Dari

Re: [U-Boot] [PATCH 5/5] Allow tftp server to be different from bootp/dhcp server

2011-04-13 Thread Simon Glass
On Tue, Apr 12, 2011 at 10:26 PM, Wolfgang Denk w...@denx.de wrote: Dear Simon Glass, In message banlktinsrgr1t_yamq-21d73okeo__n...@mail.gmail.com you wrote: Why don't you simply re-assing another value to serverip before doing any TFTP transfers? The point here is to initialize the

Re: [U-Boot] [PATCH v2 1/5] Add support for SMSC95XX USB 2.0 10/100MBit Ethernet Adapter

2011-04-13 Thread Simon Glass
On Tue, Apr 12, 2011 at 8:44 PM, Mike Frysinger vap...@gentoo.org wrote: On Tuesday, April 12, 2011 20:46:08 Simon Glass wrote: +static int turbo_mode = 1; perhaps this should be a #define ?  i cant see anything that changes its value in this driver ... OK, I have changed this to a

[U-Boot] [PATCH v3 1/4] Add support for SMSC95XX USB 2.0 10/100MBit Ethernet Adapter

2011-04-13 Thread Simon Glass
The SMSC95XX is a USB hub with a built-in Ethernet adapter. This adds support for this, using the USB host network framework. TEST=usb start; bootp; tftp ... --- Changes for v2: - Coding style cleanup - Changed some comments as suggested - eth_set_hwaddr - eth_write_hwaddr - tided up

Re: [U-Boot] [PATCH v3 1/4] Add support for SMSC95XX USB 2.0 10/100MBit Ethernet Adapter

2011-04-13 Thread Simon Glass
(please ignore this. I will resend with sign-off) On Wed, Apr 13, 2011 at 11:51 AM, Simon Glass s...@chromium.org wrote: The SMSC95XX is a USB hub with a built-in Ethernet adapter. This adds support for this, using the USB host network framework. ___

[U-Boot] [PATCH v3 2/4] Add Ethernet hardware MAC address framework to usbnet

2011-04-13 Thread Simon Glass
Built-in Ethernet adapters support setting the mac address by means of a ethaddr environment variable for each interface (ethaddr, eth1addr, eth2addr). This adds similar support to the USB network side, using the names usbethaddr, usbeth1addr, etc. They are kept separate since we don't want a USB

[U-Boot] [PATCH v3 3/4] Add documentation for USB Host Networking

2011-04-13 Thread Simon Glass
This describes what it is for, devices supported, how to enable for your board in U-Boot, setting up the server, and notes about MAC addresses. Signed-off-by: Simon Glass s...@chromium.org --- doc/README.usb | 163 +++- 1 files changed, 162

[U-Boot] [PATCH v3 1/4] Add support for SMSC95XX USB 2.0 10/100MBit Ethernet Adapter

2011-04-13 Thread Simon Glass
The SMSC95XX is a USB hub with a built-in Ethernet adapter. This adds support for this, using the USB host network framework. TEST=usb start; bootp; tftp ... Signed-off-by: Simon Glass s...@chromium.org --- Changes for v2: - Coding style cleanup - Changed some comments as suggested -

[U-Boot] [PATCH v3 4/4] Put common autoload code into auto_load() function

2011-04-13 Thread Simon Glass
This is a small clean-up patch. TEST=Build U-Boot, try bootp and check it auto-loads. Signed-off-by: Simon Glass s...@chromium.org --- net/bootp.c | 76 +- 1 files changed, 33 insertions(+), 43 deletions(-) diff --git a/net/bootp.c

Re: [U-Boot] [PATCH v3 1/4] Add support for SMSC95XX USB 2.0 10/100MBit Ethernet Adapter

2011-04-13 Thread Andy Fleming
+       ret = smsc95xx_read_reg(dev, HW_CFG, read_buf); +       if (ret 0) { +               debug(Failed to read HW_CFG: %d\n, ret); +               return ret; +       } +       debug(Read Value from HW_CFG: 0x%08x\n, read_buf); + +       if (turbo_mode) +               read_buf |=

[U-Boot] [PATCH 7/6] sf: sst: add support for SST25VF064C

2011-04-13 Thread Mike Frysinger
From: James Kosin jko...@intcomgrp.com Signed-off-by: James Kosin jko...@intcomgrp.com Signed-off-by: Mike Frysinger vap...@gentoo.org --- drivers/mtd/spi/sst.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/mtd/spi/sst.c b/drivers/mtd/spi/sst.c index

[U-Boot] [PATCH] cfi_flash: Fix CONFIG_SYS_FLASH_AUTOPROTECT_LIST

2011-04-13 Thread Andy Fleming
The patch which created flash_protect_default(), moved the autoprotect list code into that function, but left its variable declarations in the init function. Signed-off-by: Andy Fleming aflem...@freescale.com --- drivers/mtd/cfi_flash.c | 15 --- 1 files changed, 8 insertions(+), 7

Re: [U-Boot] building breakage for xpedite5xxx boards

2011-04-13 Thread Andy Fleming
On Wed, Apr 13, 2011 at 10:08 AM, Kumar Gala ga...@kernel.crashing.org wrote: Not sure what broke it: [galak@right u-boot-85xx]$ cat LOG/xpedite520x.ERR cfi_flash.c: In function 'flash_protect_default': cfi_flash.c:2118:7: error: 'i' undeclared (first use in this function)

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

2011-04-13 Thread Albert ARIBAUD
Le 13/04/2011 16:47, Prafulla Wadaskar a écrit : Hi Albert Please kindly pull The following changes since commit 531bb02c0bfc783e95f1b761f18e15d6f565e357: Fabio Estevam (1): MX25: tx25: Add _end section on nand_spl are available in the git repository at: u-boot-marvell.git

Re: [U-Boot] [PATCH] cfi_flash: Fix CONFIG_SYS_FLASH_AUTOPROTECT_LIST

2011-04-13 Thread Andy Fleming
Ha! That's what I get for reading my emails in reverse. Peter already fixed it. On Wed, Apr 13, 2011 at 2:32 PM, Andy Fleming aflem...@freescale.com wrote: The patch which created flash_protect_default(), moved the autoprotect list code into that function, but left its variable declarations

[U-Boot] Pull request u-boot-blackfin.git (sf branch)

2011-04-13 Thread Mike Frysinger
The following changes since commit b16aadf411280fc426d7488ddd8a5b2038b7194d: disk/part.c: fix potential stack overflow bug (2011-04-12 22:58:35 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git sf James Kosin (1): sf: sst: add support for

[U-Boot] [PATCH] Replace obsolete e-mail address

2011-04-13 Thread Albert Aribaud
From: Albert (U-Boot) albert.u.b...@aribaud.net Signed-off-by: Albert (U-Boot) albert.u.b...@aribaud.net --- MAINTAINERS|2 +- arch/arm/cpu/arm926ejs/orion5x/Makefile|2 +- arch/arm/cpu/arm926ejs/orion5x/cpu.c |2 +-

Re: [U-Boot] [PATCH 0/4] generic mmc_spi driver

2011-04-13 Thread Mike Frysinger
On Wednesday, April 13, 2011 06:17:43 Andy Fleming wrote: On Tue, Apr 12, 2011 at 1:58 AM, Mike Frysinger vap...@gentoo.org wrote: On Friday, December 24, 2010 02:16:05 Thomas Chou wrote: This is the v9 update of the mmc_spi driver. Please enable DEBUG on the top of mmc_spi.c and help me

Re: [U-Boot] trigger automatic update (FIT image) from prompt instead of updatefile env variable

2011-04-13 Thread Andreas Pretzsch
Am Montag, den 11.04.2011, 23:11 +0200 schrieb Wolfgang Denk: In message 1302554333.13241.158.ca...@ws-apr.office.loc you wrote: Is there a way to manually trigger an automatic update using a FIT image, based on the way described in doc/README.update ? Yes, there is. I suppose you meant

Re: [U-Boot] [RFC] skip area in flash/memory commands (cp, cmp, ...)

2011-04-13 Thread Andreas Pretzsch
Am Dienstag, den 12.04.2011, 16:15 +0200 schrieb Wolfgang Denk: Dear Andreas Pretzsch, In message 1302614926.27200.12.ca...@ws-apr.office.loc you wrote: True, but it would pollute the env with transient variables like fileaddr, filesize and serveraddr. Nothing serious, of course. Do

Re: [U-Boot] [V1 0/3] OpenRD-Client and OpenRD-Ultimate support

2011-04-13 Thread Albert ARIBAUD
Le 13/04/2011 18:25, Clint Adams a écrit : This moves the renames to the begining, removes the unsightly periods from the commit logs, puts V1 in the Subject headers, breaks up the80-character line, and hopefully addresses all complaints except for Detlev Zundel's. If you can rework according

Re: [U-Boot] [PATCH 5/5] Allow tftp server to be different from bootp/dhcp server

2011-04-13 Thread Wolfgang Denk
Dear Simon Glass, In message BANLkTi=f6s2tcewb5ddbwen26qt+jey...@mail.gmail.com you wrote: setenv autoload n; bootp; tftp... does two initializations which costs a few seconds (to get a link, etc.). This should not be the case.  Which board / network hardware are you talking about?

Re: [U-Boot] [PATCH v2 1/5] Add support for SMSC95XX USB 2.0 10/100MBit Ethernet Adapter

2011-04-13 Thread Wolfgang Denk
Dear Simon Glass, In message BANLkTinacFQ=1xa4ptgzki5on9agg7-...@mail.gmail.com you wrote: +static void smsc95xx_halt(struct eth_device *eth) +{ + debug(** %s()\n, __func__); +} is this right ? shouldnt you be halting something ? I could do, but halting is not in the driver

[U-Boot] Pull request u-boot-blackfin.git (misc branch)

2011-04-13 Thread Mike Frysinger
Wolfgang: I put together this branch of my random little patches over the tree. These are the latest versions, and haven't garned any new feedback (if any at all). Just in case pulling a branch vs cherry picking random e-mails is easier. The following changes since commit

Re: [U-Boot] [x86] Pull request

2011-04-13 Thread Wolfgang Denk
Dear Graeme Russ, In message 1302696226-3912-1-git-send-email-graeme.r...@gmail.com you wrote: Dear Wolfgang, The following changes since commit b16aadf411280fc426d7488ddd8a5b2038b7194d: disk/part.c: fix potential stack overflow bug (2011-04-12 22:58:35 +0200) are available in the git

Re: [U-Boot] [PATCH] cfi_flash: Fix CONFIG_SYS_FLASH_AUTOPROTECT_LIST usage

2011-04-13 Thread Wolfgang Denk
Dear Peter Tyser, In message 1302713216-23363-1-git-send-email-pty...@xes-inc.com you wrote: Commit 6ee1416e8184b4d9ebe6087d396a60bcecf3551c (mtd, cfi: introduce void flash_protect_default(void)) introduced a bug which resulted in boards that define CONFIG_SYS_FLASH_AUTOPROTECT_LIST not

[U-Boot] [PATCH 0/3] Fix hang when loading U-Boot from SPI or NAND

2011-04-13 Thread Tom Warren
This series of patches fixes a hang seen when loading U-Boot from SPI or NAND on Seaboard and Harmony due to a missing PLLX init. It also corrects a UARTD bit error in clk_rst.h, and adds rudimentary GPIO support so that the UART on Seaboard can be used by U-Boot (UARTD SPIFLASH are muxed, and

[U-Boot] [PATCH 1/3] arm: Tegra2: Add missing PLLX init

2011-04-13 Thread Tom Warren
Signed-off-by: Tom Warren twar...@nvidia.com --- arch/arm/cpu/armv7/tegra2/ap20.c | 29 arch/arm/include/asm/arch-tegra2/clk_rst.h |6 +++- 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/armv7/tegra2/ap20.c

[U-Boot] [PATCH 2/3] arm: Tegra2: GPIO: Add basic GPIO functionality

2011-04-13 Thread Tom Warren
Signed-off-by: Tom Warren twar...@nvidia.com --- arch/arm/include/asm/arch-tegra2/gpio.h | 59 + arch/arm/include/asm/arch-tegra2/tegra2.h |1 + 2 files changed, 60 insertions(+), 0 deletions(-) create mode 100644 arch/arm/include/asm/arch-tegra2/gpio.h diff

  1   2   >