Re: [U-Boot] [PATCH V2 2/2] eMMC: cmd_mmc.c adds the 'rpmb' sub-command for the 'mmc' command

2014-04-17 Thread Pierre AUBERT
Hello Wolfgang, Le 17/04/2014 21:56, Wolfgang Denk a écrit : Dear Pierre Aubert, In message <1397747435-24042-3-git-send-email-p.aub...@staubli.com> you wrote: This sub-command adds support for the RPMB partition of an eMMC: * mmc rpmb key Programs the authentication key in the eMMC This k

[U-Boot] How to test vlan in u-boot

2014-04-17 Thread diya
Hi , I am using an 8 port switch (MV88E6131) in our customized board with P2020 Processor. Following is the set up in our board, Port 6 -> CPU port Port0 / Port1 / Port2 connected to phy Port3 -> No connection Port 4 / Port 5 connected to DSP's Port 7 routed to back plane , SGMII connection.

Re: [U-Boot] [PATCH 06/11] MX6: add struct for sharing data between SPL and uboot

2014-04-17 Thread Tim Harvey
On Thu, Apr 17, 2014 at 4:44 AM, Stefano Babic wrote: > Hi Igor, hi Tim > > On 17/04/2014 13:22, Igor Grinberg wrote: > >> >> get_ram_size() works on cm-fx6 all DRAM configurations. > > As on most boards in mainline ;-) > It looks like I mis-interpreted the failure. This issue is that get_ram_siz

[U-Boot] [PATCH 1/2 v2] usb: r8a66597: Fix initialization hub that using R8A66597_MAX_ROOT_HUB

2014-04-17 Thread Yasuhisa Umano
This driver is processed as two USB hub despite one. The number of root hub is defined in R8A66597_MAX_ROOT_HUB. This fixes that register is accessed by using the definition of R8A66597_MAX_ROOT_HUB. Signed-off-by: Yasuhisa Umano --- v2 : No changes drivers/usb/host/r8a66597-hcd.c |4 ++--

[U-Boot] [PATCH 2/2 v2] usb: r8a66597: Fix initilization size of r8a66597 info structure

2014-04-17 Thread Yasuhisa Umano
Initialization of r8a66597 info structure is not enough. Because initilization was used size of pointer. This fixes that use size of r8a6659 info structure. Signed-off-by: Yasuhisa Umano --- v2 : Change from sizeof(struct r8a66597) to sizeof(*r8a66597) drivers/usb/host/r8a66597-hcd.c |2 +-

Re: [U-Boot] [PATCH 2/2] usb: r8a66597: Fix initilization size of r8a66597 info, structure

2014-04-17 Thread Yasuhisa Umano
Hi, Thanks for your comment. (2014/04/17 23:09), Marek Vasut wrote: On Thursday, April 17, 2014 at 10:20:29 AM, yasuhisa umano wrote: Initialization of r8a66597 info structure is not enough. Because initilization was used size of pointer. This fixes that use size of r8a6659 info structure. Sig

Re: [U-Boot] [PATCH 1/2] usb: r8a66597: Fix initialization hub that using, R8A66597_MAX_ROOT_HUB

2014-04-17 Thread Yasuhisa Umano
Hi Sorry. I failed to send patchs to ML by setting of MUA. Best regards, Yasuhisa (2014/04/17 19:47), Marek Vasut wrote: On Thursday, April 17, 2014 at 09:48:32 AM, yasuhisa umano wrote: This driver is processed as two USB hub despite one. The number of root hub is defined in R8A66597_MAX_ROO

Re: [U-Boot] [PATCH 1/2] usb: r8a66597: Fix initialization hub that using, R8A66597_MAX_ROOT_HUB

2014-04-17 Thread Yasuhisa Umano
Hi, Thanks for your comment. (2014/04/17 23:07), Marek Vasut wrote: On Thursday, April 17, 2014 at 09:48:32 AM, yasuhisa umano wrote: This driver is processed as two USB hub despite one. The number of root hub is defined in R8A66597_MAX_ROOT_HUB. This fixes that register is accessed by using th

[U-Boot] [PATCH] am43xx_evm: Drop SPI SPL

2014-04-17 Thread Tom Rini
QSPI booting on this board does not use SPL, so drop SPI-SPL related options. Signed-off-by: Tom Rini --- include/configs/am43xx_evm.h |8 1 file changed, 8 deletions(-) diff --git a/include/configs/am43xx_evm.h b/include/configs/am43xx_evm.h index 4e56ffc..d5e6c4b 100644 --- a/inc

[U-Boot] [PATCH] am335x_evm: Drop SPI SPL support from the default build

2014-04-17 Thread Tom Rini
This is only useful with the _spiboot build target anyhow, so only include it then. Drop CONFIG_SPL_OS_BOOT support then as the flash is small and didn't include a spot for the device tree already. Signed-off-by: Tom Rini --- include/configs/am335x_evm.h | 18 +- 1 file change

[U-Boot] [PATCH] env_flash.c: Drop unused variables

2014-04-17 Thread Tom Rini
With 7ce1526 we no longer need 'len' or 'res', so drop these variables. Signed-off-by: Tom Rini --- common/env_flash.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/env_flash.c b/common/env_flash.c index b3ad908..004e884 100644 --- a/common/env_flash.c +++ b/com

[U-Boot] support for maxim dallas rtcds1347

2014-04-17 Thread RAGHAVENDRA GANIGA
I am writing the support for rtc ds1347 my driver file resides in drivers/rtc/ds1347.c who is the custodian for the rtc subsystem of uboot or just i have to mail patch to u-boot@lists.denx.de ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.den

[U-Boot] Fwd: [PATCH v3 00/13] ARMv7: add PSCI support to u-boot

2014-04-17 Thread Jon Loeliger
[ Drat. I meant to send this to the U-Boot list, not just Albert. --jdl] -- Forwarded message -- From: Jon Loeliger Date: Thu, Apr 17, 2014 at 11:36 AM Subject: Re: [U-Boot] [PATCH v3 00/13] ARMv7: add PSCI support to u-boot To: Albert ARIBAUD On Thu, Apr 17, 2014 at 3:34 AM,

[U-Boot] [PATCH] MAKEALL: remove hard-coded MIPS boards

2014-04-17 Thread Daniel Schwierzeck
iDo not initialize list_MIPS with hard-coded board names. Use targets_by_arch() instead. Signed-off-by: Daniel Schwierzeck --- MAKEALL | 40 +--- 1 file changed, 1 insertion(+), 39 deletions(-) diff --git a/MAKEALL b/MAKEALL index c54240c..020e65f 100755 ---

Re: [U-Boot] [PATCH V2 2/2] eMMC: cmd_mmc.c adds the 'rpmb' sub-command for the 'mmc' command

2014-04-17 Thread Wolfgang Denk
Dear Pierre Aubert, In message <1397747435-24042-3-git-send-email-p.aub...@staubli.com> you wrote: > This sub-command adds support for the RPMB partition of an eMMC: > * mmc rpmb key > Programs the authentication key in the eMMC This key can not > be overwritten. > * mmc rpmb read <#count>

Re: [U-Boot] [PATCH v3 00/13] ARMv7: add PSCI support to u-boot

2014-04-17 Thread Jon Loeliger
> No, so far there hasn't been much discussion, and people seem happy with > it. I have a couple of fixes lined up, but nothing major. So, I think PSCI 0.2 calls for function numbers in the 0x8400 range. Seems like we'll have to fix this in one of your patches: /* PSCI interface */ #d

Re: [U-Boot] [PATCH 0/3] pcnet driver fixes

2014-04-17 Thread Daniel Schwierzeck
Hi Tom, 2014-04-07 17:41 GMT+02:00 Paul Burton : > This series fixes issues with the pcnet driver & its memory accesses. > > Previously the network interface on the MIPS Malta board was unreliable > & would often time out whilst transferring files via TFTP, but with this > series applied it is now

Re: [U-Boot] [PATCH v2] buildman: make output dir configurable

2014-04-17 Thread Simon Glass
On 17 April 2014 13:13, Daniel Schwierzeck wrote: > Add an option to specify the output directory to override the > default path '../'. This is useful for building in a ramdisk. > > Signed-off-by: Daniel Schwierzeck > Cc: Simon Glass Thanks. Acked-by: Simon Glass _

[U-Boot] [PATCH v2] buildman: make output dir configurable

2014-04-17 Thread Daniel Schwierzeck
Add an option to specify the output directory to override the default path '../'. This is useful for building in a ramdisk. Signed-off-by: Daniel Schwierzeck Cc: Simon Glass --- Changes for v2: - improved help message --- tools/buildman/buildman.py | 3 +++ tools/buildman/control.py | 2 +- 2

Re: [U-Boot] [PATCH 0/5] Do not use __DATE__ and __TIME__ anymore

2014-04-17 Thread Mike Frysinger
On Thu 17 Apr 2014 17:00:27 Masahiro Yamada wrote: > The aim of this series is to prohibit using __DATE__ and __TIME__. as long as the version.h isn't impacted, this should fine. i don't think it is as it looks like the build will generate U_BOOT_DATE and U_BOOT_TIME into a const string by hand

Re: [U-Boot] [PATCH 3/5] blackfin: replace bfin_gen_rand_mac() with eth_random_addr()

2014-04-17 Thread Mike Frysinger
On Thu 17 Apr 2014 17:00:30 Masahiro Yamada wrote: > --- a/include/configs/tcm-bf537.h > +++ b/include/configs/tcm-bf537.h > @@ -73,7 +73,7 @@ > #define CONFIG_HOSTNAME tcm-bf537 > /* Uncomment next line to use fixed MAC address */ > /* #define CONFIG_ETHADDR02:80:ad:20:31:e8 */

[U-Boot] [PATCH] patman: Don't request full names from get_maintainer

2014-04-17 Thread Doug Anderson
The Linux get_maintainer.pl can often produce a whole lot of results. As a result you'll sometimes blow your CC field over 1024 characters and that can cause listservs to reject your message. As a stopgap, call get_maintainer.pl with "--non" so it doesn't include real names. This will dramaticall

[U-Boot] Updating master with next

2014-04-17 Thread Tom Rini
I've now merged next into master and pushed, along with re-applying the change that makes non-COFNIG_SYS_GENERIC_BOARD boards complain at run-time. I'm going to be grabbing some other patches shortly, of the type that easily conflict and I don't want to have to have them be rebased again. -- Tom

Re: [U-Boot] [PATCH] am33xx: add SSC enable macro

2014-04-17 Thread Tom Rini
On Thu, Apr 10, 2014 at 11:35:25AM +0200, yegorsli...@googlemail.com wrote: > From: Yegor Yefremov > > Signed-off-by: Yegor Yefremov > --- > arch/arm/include/asm/arch-am33xx/clock.h |2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/arch/arm/include/asm/arch-am33xx

Re: [U-Boot] [PATCH] usb:gadget:f_thor: fix write to filesystem by add dfu_flush()

2014-04-17 Thread Marek Vasut
On Thursday, April 17, 2014 at 07:31:00 PM, Przemyslaw Marczak wrote: > Since dfu read/write operations needs to be flushed manually, > writing to filesystem on MMC by thor was broken. MMC raw write > actually is working fine because current dfu_flush() function > writes filesystem only. This commi

[U-Boot] [PATCH] usb:gadget:f_thor: fix write to filesystem by add dfu_flush()

2014-04-17 Thread Przemyslaw Marczak
Since dfu read/write operations needs to be flushed manually, writing to filesystem on MMC by thor was broken. MMC raw write actually is working fine because current dfu_flush() function writes filesystem only. This commit adds dfu_flush() to f_thor and now filesystem write is working. This change

[U-Boot] pull request for u-boot-tegra/master into ARM/master

2014-04-17 Thread Tom Warren
Albert, Please pull u-boot-tegra/master into ARM/master. Thanks! ./MAKEALL -s tegra AOK, checkpatch.pl is OK, and ./MAKEALL -a arm only shows failures that were already present in ARM/master. The following changes since commit 1b82491ee6ee1e986e5521b33692a00e1f38fe75: board:tricorder: fixup S

Re: [U-Boot] [PATCH 2/2] usb: r8a66597: Fix initilization size of r8a66597 info, structure

2014-04-17 Thread Marek Vasut
On Thursday, April 17, 2014 at 10:20:29 AM, yasuhisa umano wrote: > Initialization of r8a66597 info structure is not enough. > Because initilization was used size of pointer. > This fixes that use size of r8a6659 info structure. > > Signed-off-by: Yasuhisa Umano > --- > drivers/usb/host/r8a66597

Re: [U-Boot] [PATCH 1/2] usb: r8a66597: Fix initialization hub that using, R8A66597_MAX_ROOT_HUB

2014-04-17 Thread Marek Vasut
On Thursday, April 17, 2014 at 09:48:32 AM, yasuhisa umano wrote: > This driver is processed as two USB hub despite one. > The number of root hub is defined in R8A66597_MAX_ROOT_HUB. > This fixes that register is accessed by using the definition > of R8A66597_MAX_ROOT_HUB. > > Signed-off-by: Yasuh

[U-Boot] [PATCH V2 1/2] eMMC: add support for operations in RPMB partition

2014-04-17 Thread Pierre Aubert
This patch adds functions for read, write and authentication key programming for the Replay Protected Memory Block partition in the eMMC. Signed-off-by: Pierre Aubert CC: Pantelis Antoniou --- drivers/mmc/Makefile |1 + drivers/mmc/rpmb.c | 323 +++

[U-Boot] [PATCH V2 2/2] eMMC: cmd_mmc.c adds the 'rpmb' sub-command for the 'mmc' command

2014-04-17 Thread Pierre Aubert
This sub-command adds support for the RPMB partition of an eMMC: * mmc rpmb key Programs the authentication key in the eMMC This key can not be overwritten. * mmc rpmb read <#count> [address of key] Reads <#count> blocks of 256 bytes in the RPMB partition beginning at block number . If t

[U-Boot] [PATCH V2 0/2] eMMC: support for Read Protected Memory Block (RPMB)

2014-04-17 Thread Pierre Aubert
This serie of patches adds some functions and a sub-command of 'mmc' for programming the authentication key and for reading and writing the RPMB partition of an eMMC according to the JEDEC standard No. 64-A441 The sub-command rpmb is enabled by the flag CONFIG_SUPPORT_EMMC_RPMB defined in the b

Re: [U-Boot] [PATCH 0/5] Do not use __DATE__ and __TIME__ anymore

2014-04-17 Thread Wolfgang Denk
Dear Masahiro, In message <20140417204113.6cec.aa925...@jp.panasonic.com> you wrote: > > I want to gather timestamp stuff to one place for easy control of it. All understood - but this should be documented in the commit message. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH,

Re: [U-Boot] [PATCH 01/11] SPL: NAND: remove CONFIG_SYS_NAND_PAGE_SIZE

2014-04-17 Thread Tim Harvey
On Mon, Apr 14, 2014 at 4:38 AM, Stefano Babic wrote: > On 03/04/2014 08:01, Tim Harvey wrote: >> We only need to read in the size of struct image_header and thus don't >> need to know the page size of the nand device. >> >> Signed-off-by: Tim Harvey >> --- >> common/spl/spl_nand.c | 2 +- >> 1

Re: [U-Boot] [PATCH] spl: consolidate arch/arm/include/asm/arch-*/spl.h

2014-04-17 Thread Stefano Babic
Hi Masahiro, On 16/04/2014 08:44, Masahiro Yamada wrote: > arch/arm/include/asm/spl.h requires all SoCs to have > arch/arm/include/asm/arch-*/spl.h. > > But many of them just define BOOT_DEVICE_* macros. > > Those macros are used in the "switch (boot_device) { ... }" > statement in common/spl/sp

Re: [U-Boot] [PATCH] tools: make imxheader size align on page size

2014-04-17 Thread Stefano Babic
Hi Stefan, On 16/04/2014 15:17, Stefan Agner wrote: > > Quite possible that an altered/correct FCB would actually work. But > speaking about FCB, is there already something for Vybrid? I'm currently > try to create an Image with FCB+IVT V2 header using the mxsboot utility, mxsboot is not the rig

Re: [U-Boot] [PATCH 06/11] MX6: add struct for sharing data between SPL and uboot

2014-04-17 Thread Igor Grinberg
Hi Stefano, Tim, On 04/17/14 12:30, Stefano Babic wrote: > Hi Tim, > > On 17/04/2014 08:07, Tim Harvey wrote: >> On Mon, Apr 14, 2014 at 5:35 AM, Stefano Babic wrote: >>> Hi Tim, >>> >>> I see checking your patch that the MXS uses the same concept. And as far >>> as I can see, boot_mode_idx is u

Re: [U-Boot] [PATCH 06/11] MX6: add struct for sharing data between SPL and uboot

2014-04-17 Thread Stefano Babic
Hi Igor, hi Tim On 17/04/2014 13:22, Igor Grinberg wrote: > > get_ram_size() works on cm-fx6 all DRAM configurations. As on most boards in mainline ;-) > >> SPL is thought to generally load an image (of course, in most cases it is u-boot). In Falcon mode, the kernel is started witho

Re: [U-Boot] [PATCH 0/5] Do not use __DATE__ and __TIME__ anymore

2014-04-17 Thread Masahiro Yamada
Hi Wolfgang On Thu, 17 Apr 2014 13:07:32 +0200 Wolfgang Denk wrote: > Dear Masahiro, > > In message <1397721632-18797-1-git-send-email-yamad...@jp.panasonic.com> you > wrote: > > > > The aim of this series is to prohibit using __DATE__ and __TIME__. > > What is bad about using these? inclu

Re: [U-Boot] [PATCH 1/2] usb: r8a66597: Fix initialization hub that using, R8A66597_MAX_ROOT_HUB

2014-04-17 Thread Marek Vasut
On Thursday, April 17, 2014 at 09:48:32 AM, yasuhisa umano wrote: > This driver is processed as two USB hub despite one. > The number of root hub is defined in R8A66597_MAX_ROOT_HUB. > This fixes that register is accessed by using the definition > of R8A66597_MAX_ROOT_HUB. > > Signed-off-by: Yasuh

Re: [U-Boot] [PATCH 2/5] net: rename and refactor eth_rand_ethaddr() function

2014-04-17 Thread Wolfgang Denk
Dear Masahiro, In message <1397721632-18797-3-git-send-email-yamad...@jp.panasonic.com> you wrote: > Some functions in include/net.h are ported from > include/linux/etherdevice.h of Linux Kernel. > > For ex. > is_zero_ether_addr() > is_multicast_ether_addr() > is_broadcast_ether_addr() >

Re: [U-Boot] [PATCH 0/5] Do not use __DATE__ and __TIME__ anymore

2014-04-17 Thread Wolfgang Denk
Dear Masahiro, In message <1397721632-18797-1-git-send-email-yamad...@jp.panasonic.com> you wrote: > > The aim of this series is to prohibit using __DATE__ and __TIME__. What is bad about using these? Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Det

Re: [U-Boot] [PATCH v3 00/13] ARMv7: add PSCI support to u-boot

2014-04-17 Thread Ian Campbell
On Thu, 2014-04-17 at 09:58 +0100, Marc Zyngier wrote: > Ian Campbell (cc-ed) is actively pushing out patches to support the A20 > in mainline U-Boot (I believe you've been on the receiving end of > these), Need to make a few more cleanups based on the review but v$NEXT should be along soon. > an

[U-Boot] [U-boot] Is there generic code to detect nand chip's ecc bits?

2014-04-17 Thread TigerLiu
Hi, Scott: I have a question about nand chip's ecc bits: Nand chip usually declared its ecc bits for each 512 bytes in its data sheet. Such as: Some nand chips required 4bit ECC for each 512 bytes. Some nand chips required 2bit ECC for each 512 bytes. So, my question is: Could ecc bits be

Re: [U-Boot] [PATCH v4] arm: ep9315: Return back Cirrus Logic EDB9315A board support

2014-04-17 Thread Albert ARIBAUD
Hi Sergey, On Thu, 6 Mar 2014 21:20:20 +0400, Sergey Kostanbaev wrote: > diff --git a/arch/arm/cpu/arm920t/ep93xx/lowlevel_init.S > b/arch/arm/cpu/arm920t/ep93xx/lowlevel_init.S > index bf2fa2a..3ac0f88 100644 > --- a/arch/arm/cpu/arm920t/ep93xx/lowlevel_init.S > +++ b/arch/arm/cpu/arm920t/ep9

Re: [U-Boot] [PATCH v3 00/13] ARMv7: add PSCI support to u-boot

2014-04-17 Thread Albert ARIBAUD
Hi Marc, On Thu, 17 Apr 2014 09:58:19 +0100, Marc Zyngier wrote: > On Thu, Apr 17 2014 at 9:34:24 am BST, Albert ARIBAUD > wrote: > > Hi Marc, > > > > On Wed, 16 Apr 2014 17:09:07 +0100, Marc Zyngier > > wrote: > > > >> On 16/04/14 15:45, Albert ARIBAUD wrote: > >> > Hi Marc, > >> > > >> >

Re: [U-Boot] [PATCH 06/11] MX6: add struct for sharing data between SPL and uboot

2014-04-17 Thread Stefano Babic
Hi Tim, On 17/04/2014 08:07, Tim Harvey wrote: > On Mon, Apr 14, 2014 at 5:35 AM, Stefano Babic wrote: >> Hi Tim, >> >> I see checking your patch that the MXS uses the same concept. And as far >> as I can see, boot_mode_idx is used only to print the boot devioce > > Stefano, > > yes, that is wh

Re: [U-Boot] [PATCH] mmc: Handle switch error status bit in MMC card status

2014-04-17 Thread Gabbasov, Andrew
Hi Pantelis, > From: Gabbasov, Andrew > Sent: Thursday, April 03, 2014 13:32 > To: Pantelis Antoniou > Cc: u-boot@lists.denx.de > Subject: RE: [U-Boot] [PATCH] mmc: Handle switch error status bit in MMC card > status > > Hi Pantelis, > > > From: Pantelis

Re: [U-Boot] [PATCH 05/11] MX6: add boot device support SPL

2014-04-17 Thread Stefano Babic
Hi Tim, On 17/04/2014 08:16, Tim Harvey wrote: >>> + boot_dev = MX6_SATA_BOOT; >>> + break; >>> + /* Serial ROM: See 8.5.5.1, Table 8-22 */ >>> + case 0x3: >>> + /* BOOT_CFG4[2:0] */ >>> + switch ((soc_sbmr & 0x0700) >> 24) { >>> +

Re: [U-Boot] [PATCH v3 00/13] ARMv7: add PSCI support to u-boot

2014-04-17 Thread Marc Zyngier
On Thu, Apr 17 2014 at 9:34:24 am BST, Albert ARIBAUD wrote: > Hi Marc, > > On Wed, 16 Apr 2014 17:09:07 +0100, Marc Zyngier > wrote: > >> On 16/04/14 15:45, Albert ARIBAUD wrote: >> > Hi Marc, >> > >> > On Sat, 15 Feb 2014 13:36:24 +, Marc Zyngier >> > wrote: >> > >> >> PSCI is an ARM s

Re: [U-Boot] [PATCH] tools: make imxheader size align on page size

2014-04-17 Thread Stefano Babic
Hi Stefan, On 16/04/2014 15:36, Stefan Agner wrote: >>> >>> Can you better explain this ? There is only one board in mainline with >>> vf610. CONFIG_SYS_TEXT_BASE is set to 0x3f008000. I cannot get the >>> offset in your example. Are you referring to NAND page ? But if the >>> header must be alig

Re: [U-Boot] [PATCH v3 00/13] ARMv7: add PSCI support to u-boot

2014-04-17 Thread Albert ARIBAUD
Hi Marc, On Wed, 16 Apr 2014 17:09:07 +0100, Marc Zyngier wrote: > On 16/04/14 15:45, Albert ARIBAUD wrote: > > Hi Marc, > > > > On Sat, 15 Feb 2014 13:36:24 +, Marc Zyngier > > wrote: > > > >> PSCI is an ARM standard that provides a generic interface that > >> supervisory software can us

[U-Boot] [PATCH 2/2] usb: r8a66597: Fix initilization size of r8a66597 info, structure

2014-04-17 Thread yasuhisa umano
Initialization of r8a66597 info structure is not enough. Because initilization was used size of pointer. This fixes that use size of r8a6659 info structure. Signed-off-by: Yasuhisa Umano --- drivers/usb/host/r8a66597-hcd.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dr

Re: [U-Boot] [PATCH] e1000: remove redundant assignment

2014-04-17 Thread Joe Hershberger
On Wed, Apr 16, 2014 at 6:15 AM, David Müller wrote: > > Signed-off-by: David Mueller > Joe Hershberger Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 2/5] net: rename and refactor eth_rand_ethaddr() function

2014-04-17 Thread Joe Hershberger
On Thu, Apr 17, 2014 at 3:00 AM, Masahiro Yamada wrote: > > Some functions in include/net.h are ported from > include/linux/etherdevice.h of Linux Kernel. > > For ex. > is_zero_ether_addr() > is_multicast_ether_addr() > is_broadcast_ether_addr() > is_valid_ether_addr(); > > So, we should u

Re: [U-Boot] [PATCH v3 0/5] ARM: refactor start.S files

2014-04-17 Thread Albert ARIBAUD
Hi Gerhard, On Wed, 16 Apr 2014 23:57:11 +0200, Gerhard Sittig wrote: > On Tue, 2014-04-15 at 16:13 +0200, Albert ARIBAUD wrote: > > > > [ ... deeply nested 'git send-email' thread ... ] > > May I suggest the following git config option? > > [sendemail] > chainreplyto = false > > This

[U-Boot] [PATCH 3/5] blackfin: replace bfin_gen_rand_mac() with eth_random_addr()

2014-04-17 Thread Masahiro Yamada
bfin_gen_rand_mac() uses __DATE__ as the seed for random ethernet address. This is not good. In the first place, it should not be implemented as a Bfin-specific function. Use eth_random_addr() instead. Signed-off-by: Masahiro Yamada Cc: Sonic Zhang --- arch/blackfin/include/asm/net.h |

[U-Boot] [PATCH 0/5] Do not use __DATE__ and __TIME__ anymore

2014-04-17 Thread Masahiro Yamada
The aim of this series is to prohibit using __DATE__ and __TIME__. Currently they are used in two files. [1] arch/blackfin/include/asm/net.h Blackfin is using __DATE__ as the seed for the random ethernet address. This feature will be replaced with genericly-used eth_random_addr(). [2] fs/ubif

[U-Boot] [PATCH 1/5] rand: do not surround function declarations by #ifdef

2014-04-17 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada --- include/common.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/common.h b/include/common.h index cbd3c9e..49feac2 100644 --- a/include/common.h +++ b/include/common.h @@ -834,12 +834,10 @@ char *strmhz(char *buf, unsigned long hz); #include

[U-Boot] [PATCH 5/5] kbuild: build with -Werror=date-time if the compiler supports it

2014-04-17 Thread Masahiro Yamada
This commit has been imported from Linux Kernel: commit fe7c36c7bde12190341722af69358e42171162f3 Author: Josh Triplett Date: Mon Dec 23 13:56:06 2013 -0800 Makefile: Build with -Werror=date-time if the compiler supports it GCC 4.9 and newer have a new warning -Wdate-time,

[U-Boot] [PATCH 4/5] fs: ubifs: drop __DATE__ and __TIME__

2014-04-17 Thread Masahiro Yamada
__DATE__ and __TIME__ should not be used anymore. Drop the debug message using them. Signed-off-by: Masahiro Yamada --- fs/ubifs/super.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 67f115f..748ab67 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/sup

[U-Boot] [PATCH 2/5] net: rename and refactor eth_rand_ethaddr() function

2014-04-17 Thread Masahiro Yamada
Some functions in include/net.h are ported from include/linux/etherdevice.h of Linux Kernel. For ex. is_zero_ether_addr() is_multicast_ether_addr() is_broadcast_ether_addr() is_valid_ether_addr(); So, we should use the same function name as Linux Kernel, eth_rand_addr(), for consistency.

[U-Boot] [PATCH 1/2] usb: r8a66597: Fix initialization hub that using, R8A66597_MAX_ROOT_HUB

2014-04-17 Thread yasuhisa umano
This driver is processed as two USB hub despite one. The number of root hub is defined in R8A66597_MAX_ROOT_HUB. This fixes that register is accessed by using the definition of R8A66597_MAX_ROOT_HUB. Signed-off-by: Yasuhisa Umano --- drivers/usb/host/r8a66597-hcd.c |4 ++-- 1 file changed, 2

[U-Boot] [PATCH] mpc85xx: Add deep sleep support on T104xRDB

2014-04-17 Thread Tang Yuantian
From: Tang Yuantian Add deep sleep support on T104xRDB platforms. Signed-off-by: Tang Yuantian --- board/freescale/t104xrdb/t104xrdb.c | 10 ++ include/configs/T104xRDB.h | 4 2 files changed, 14 insertions(+) diff --git a/board/freescale/t104xrdb/t104xrdb.c b/board/fr

[U-Boot] [PATCH 1/2] mpc85xx: Add deep sleep support on T1040QDS

2014-04-17 Thread Tang Yuantian
From: Tang Yuantian Add deep sleep support on T1040QDS platform. Signed-off-by: Tang Yuantian --- board/freescale/t1040qds/t1040qds.c | 12 include/configs/T1040QDS.h | 4 2 files changed, 16 insertions(+) diff --git a/board/freescale/t1040qds/t1040qds.c b/board/f

[U-Boot] [PATCH v4] mpc85xx/t104x: Add deep sleep framework support

2014-04-17 Thread Tang Yuantian
From: Tang Yuantian When T104x soc wakes up from deep sleep, control is passed to the primary core that starts executing uboot. After re-initialized some IP blocks, like DDRC, kernel will take responsibility to continue to restore environment it leaves before. Signed-off-by: Tang Yuantian --- b

Re: [U-Boot] [PATCH 3/6] PPC: 85xx: Remove IVOR reset

2014-04-17 Thread Alexander Graf
> Am 17.04.2014 um 02:46 schrieb York Sun : > >> On 04/11/2014 08:09 AM, Alexander Graf wrote: >> diff --git a/nand_spl/board/freescale/mpc8572ds/Makefile >> b/nand_spl/board/freescale/mpc8572ds/Makefile >> index c639b12..c58b7a4 100644 >> --- a/nand_spl/board/freescale/mpc8572ds/Makefile >> ++