Re: [U-Boot] [PATCH v1] arm: move generic startup code in crt0.S

2012-11-04 Thread Wolfgang Denk
Dear Albert ARIBAUD, In message <1352001421-25913-2-git-send-email-albert.u.b...@aribaud.net> you wrote: > Signed-off-by: Albert ARIBAUD > --- Please move the patch description from the cover letter to this commit message. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, M

Re: [U-Boot] [PATCH v1] arm: move generic startup code in crt0.S

2012-11-04 Thread Albert ARIBAUD
Hi Wolfgang, On Sun, 04 Nov 2012 08:29:53 +0100, Wolfgang Denk wrote: > Dear Albert ARIBAUD, > > In message <1352001421-25913-2-git-send-email-albert.u.b...@aribaud.net> you > wrote: > > Signed-off-by: Albert ARIBAUD > > --- > > Please move the patch description from the cover letter to this

Re: [U-Boot] [PATCH] TPM: remove dead code

2012-11-04 Thread Wolfgang Denk
Dear Simon, In message you wrote: > > >> I think you may have missed the pending patches which make use of > >> this. it is important functionality for the Chromebooks (secure boot). > > > > No, I have not missed these. But all the patch does is set > > CONFIG_GENERIC_LPC_TPM - there is still

[U-Boot] [PATCH v2 0/2] Factorize ARM startup code as mush as possible.

2012-11-04 Thread Albert ARIBAUD
The goal of this series is to scrub the start.S files which have proliferated across arch/arm and eliminate code redundancy. Currently this series only factorizes the C runtime framework, that is, the assembly code responsible for setting up the C environments needed by board_init_*() and relocate

[U-Boot] [PATCH v2 1/2] arm: move C runtime setup code in crt0.S

2012-11-04 Thread Albert ARIBAUD
Move all the C runtime setup code from every start.S in arch/arm into arch/arm/lib/crt0.S. This covers the code sequence from isetting up the initial stack to calling into board_init_r(). Also, rewrite the C runtime setup and make functions board_init_*() and relocate_code() behave according to no

[U-Boot] [PATCH v2 2/2] arm: remove useless code in start.S files

2012-11-04 Thread Albert ARIBAUD
Remove code such as unneeded includes or labels. These removals have no functional effect. Signed-off-by: Albert ARIBAUD --- Changes in v2: - introduced in V2 arch/arm/cpu/arm925t/start.S |4 arch/arm/cpu/arm926ejs/start.S |6 -- 2 files changed, 10 deletions(-) diff --git a

Re: [U-Boot] [PATCH v2 1/2] arm: move C runtime setup code in crt0.S

2012-11-04 Thread Albert ARIBAUD
Hi Albert, On Sun, 4 Nov 2012 12:32:04 +0100, Albert ARIBAUD wrote: > the code sequence from isetting up the initial stack Argh. s/isetting/setting/ in V3... Amicalement, -- Albert. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [PATCH v2 0/2] Factorize ARM startup code as mush as possible.

2012-11-04 Thread Albert ARIBAUD
Hi Tom, On Sun, 4 Nov 2012 12:32:03 +0100, Albert ARIBAUD wrote: > The goal of this series is to scrub the start.S files > which have proliferated across arch/arm and eliminate > code redundancy. I know this came a bit late in early nov 4th, but I really would like it to be considered for 2013

Re: [U-Boot] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-11-04 Thread Sambul
Wolfgang Denk denx.de> writes: > > Please see http://www.denx.de/wiki/U-Boot/Patches and post proper > patch(es). > > Thanks. > > Best regards, > > Wolfgang Denk > I assume that tool is needed to boot a Plug via Serial instead of using more complex Jtag restore of Uboot, when Uboot is brok

Re: [U-Boot] [PATCH] mx53loco: Add support for SEIKO 4.3'' WVGA panel

2012-11-04 Thread Albert ARIBAUD
Hi Marek, On Thu, 25 Oct 2012 13:14:38 +0200, Marek Vasut wrote: > Dear Fabio Estevam, > > CCing Albert. > > > Hi Stefano, > > > > On Thu, Oct 25, 2012 at 8:28 AM, Stefano Babic wrote: > > > Yes, I thins is due to the fact that size for the framebuffer is > > > allocated before relocation. T

Re: [U-Boot] [PATCH V2 1/4] ARM: bcm2835: add mailbox driver

2012-11-04 Thread Albert ARIBAUD
Hi Stephen, On Thu, 18 Oct 2012 22:51:31 -0600, Stephen Warren wrote: > The BCM2835 SoC contains (at least) two CPUs; the VideoCore (a/k/a "GPU") > and the ARM CPU. The ARM CPU is often thought of as the main CPU. > However, the VideoCore actually controls the initial SoC boot, and hides > much

Re: [U-Boot] [PATCH] arm: atmel: cpux9k2: add missing cache configs

2012-11-04 Thread Albert ARIBAUD
Hi Jens, On Fri, 19 Oct 2012 09:41:10 +0200, "Jens Scharsig (BuS Elektronik)" wrote: > From: "Jens Scharsig (BuS Elektronik)" > > * add CONFIG_SYS_CACHELINE_SIZE to eb_cpux9k2 board config header > * dissable dcache (CONFIG_SYS_DCACHE_OFF) for eb_cpux9k2 > > Signed-off-by: Jens Scharsig (BuS

Re: [U-Boot] [PATCH v2 1/2] arm: move C runtime setup code in crt0.S

2012-11-04 Thread Vikram Narayanan
Hello Albert, On 11/4/2012 5:02 PM, Albert ARIBAUD wrote: Move all the C runtime setup code from every start.S in arch/arm into arch/arm/lib/crt0.S. This covers the code sequence from isetting up the initial stack to calling into board_init_r(). Also, rewrite the C runtime setup and make functi

Re: [U-Boot] [PATCH 1/2] socfpga/spl: Remove timer_init from spl_board_init

2012-11-04 Thread Albert ARIBAUD
Hi Vikram, On Tue, 23 Oct 2012 15:51:16 +0530, Vikram Narayanan wrote: > Timer is initialized already in board_init_r function in > (common/spl/spl.c) No need to initialize it again > > Signed-off-by: Vikram Narayanan > Cc: Dinh Nguyen > --- > arch/arm/cpu/armv7/socfpga/spl.c |3 --- > 1

Re: [U-Boot] [PATCH 1/2] mmc: add bcm2835 driver

2012-11-04 Thread Albert ARIBAUD
Hi Stephen, On Sun, 28 Oct 2012 22:36:25 +0530, Vikram Narayanan wrote: > On 10/28/2012 8:58 AM, Stephen Warren wrote: > > On 10/26/2012 05:33 AM, Vikram Narayanan wrote: > >> Some nitpicks. > >> > >> On 10/24/2012 10:20 AM, Stephen Warren wrote: > > >>> +static u8 bcm2835_sdhci_readb(struct sd

Re: [U-Boot] [PATCH V2 3/4] lcd: calculate line_length after lcd_ctrl_init()

2012-11-04 Thread Anatolij Gustschin
Hi, On Thu, 18 Oct 2012 22:51:33 -0600 Stephen Warren wrote: > When an LCD driver is actually driving a regular external display, e.g. > an HDMI monitor, the display resolution might not be known until the > display controller has initialized, i.e. during lcd_ctrl_init(). However, > lcd.c calcul

Re: [U-Boot] [PATCH 1/2] mmc: add bcm2835 driver

2012-11-04 Thread Stephen Warren
On 11/04/2012 08:32 AM, Albert ARIBAUD wrote: > Hi Stephen, > > On Sun, 28 Oct 2012 22:36:25 +0530, Vikram Narayanan > wrote: > >> On 10/28/2012 8:58 AM, Stephen Warren wrote: >>> On 10/26/2012 05:33 AM, Vikram Narayanan wrote: Some nitpicks. On 10/24/2012 10:20 AM, Stephen Warren

Re: [U-Boot] [PATCH v2 0/2] Factorize ARM startup code as mush as possible.

2012-11-04 Thread Tom Rini
On Sun, Nov 04, 2012 at 12:43:12PM +0100, Albert ARIBAUD wrote: > Hi Tom, > > On Sun, 4 Nov 2012 12:32:03 +0100, Albert ARIBAUD > wrote: > > > The goal of this series is to scrub the start.S files > > which have proliferated across arch/arm and eliminate > > code redundancy. > > I know this c

Re: [U-Boot] [PATCH v3] fs/fs.c: do_fsload: measure throughput

2012-11-04 Thread Tom Rini
On Wed, Oct 31, 2012 at 08:39:39AM +0100, Andreas Bie??mann wrote: > Dear Tom Rini, > > On 30.10.2012 12:49, Andreas Bie??mann wrote: > > This patch adds time measurement and throughput calculation for all > > supported > > fsload commands. > > > > The output of ext2load changes from > > > > --

Re: [U-Boot] [PATCH v2 1/2] arm: move C runtime setup code in crt0.S

2012-11-04 Thread Albert ARIBAUD
Hi Vikram, On Sun, 04 Nov 2012 20:36:14 +0530, Vikram Narayanan wrote: > Hello Albert, > > diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S > > +#ifndef CONFIG_SPL_BUILD > > In some places the other style is used. "!(defined)". > Any particular reasons for switching b/w these two styles

Re: [U-Boot] [PATCH V2 4/4] video: add a driver for the bcm2835

2012-11-04 Thread Anatolij Gustschin
Hi, On Thu, 18 Oct 2012 22:51:34 -0600 Stephen Warren wrote: > The firmware running on the bcm2835 SoC's VideoCore CPU manages the > display controller. Add a simple "LCD" drive that communicates with the s/drive/driver ... > +++ b/drivers/video/bcm2835.c > @@ -0,0 +1,126 @@ > +/* > + * (C) Co

Re: [U-Boot] [PATCH] fs: handle CONFIG_NEEDS_MANUAL_RELOC

2012-11-04 Thread Tom Rini
On Wed, Oct 31, 2012 at 10:47:22AM +0100, Andreas Bie?mann wrote: > Dear Stephen Warren, > > On 30.10.2012 18:50, Stephen Warren wrote: > > From: Stephen Warren > > > > Without this, fstypes[].probe points at the wrong place, so calling the > > function results in undefined behaviour. > > > > S

Re: [U-Boot] [PATCH] cmd_fdt.c: Use %p when printing pointers

2012-11-04 Thread Tom Rini
On Mon, Oct 29, 2012 at 05:53:18PM -0700, Tom Rini wrote: > When putting pointers into a format string use %p to ensure that they > are printed correctly regardless of bitsize. This fixes warnings on > sandbox on 64bit systems. > > Cc: Joe Hershberger > Cc: Gerald Van Baren > Signed-off-by: To

Re: [U-Boot] [PATCH] lib/vsprintf.c: don't special-case pointers to address null

2012-11-04 Thread Tom Rini
On Tue, Oct 30, 2012 at 02:23:17PM -0500, Joe Hershberger wrote: > Hi Wolfgang, > > On Tue, Oct 30, 2012 at 2:19 PM, Wolfgang Denk wrote: > > The %p format of printf() would print a pointer to address null as > > "(null)". This makes sense in a real OS where a NULL pointer must > > never be dere

Re: [U-Boot] [PATCH] git-mailrc: Change x86 maintainer to Simon

2012-11-04 Thread Tom Rini
On Wed, Oct 31, 2012 at 03:41:49PM -0700, Simon Glass wrote: > Grame is still listed since he has agreed to continue with some review. > Also add an alias to shorten things. > > Signed-off-by: Simon Glass Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [PATCH 0/2] Standardize on run-time board ID variables

2012-11-04 Thread Tom Rini
On Wed, Oct 24, 2012 at 10:28:15AM -0700, Tom Rini wrote: > I've been thinking about one of the problems we need to solve over in TI > AM335x land and that is given that we support a number of different > boards with a single binary (and we have an i2c eeprom that tells us > what board and revisio

Re: [U-Boot] [PATCH] Add board_name to CONFIG_ENV_VARS_UBOOT_CONFIG

2012-11-04 Thread Tom Rini
On Wed, Oct 31, 2012 at 04:23:27PM -0500, Joe Hershberger wrote: > Hi Stephen, > > On Wed, Oct 31, 2012 at 4:17 PM, Stephen Warren wrote: > > From: Stephen Warren > > > > CONFIG_ENV_VARS_UBOOT_CONFIG creates environment variables indicating > > which configuration U-Boot was built for. Some U-Bo

Re: [U-Boot] [PATCH 1/2] ZFS: Fix compile warning in cmd_zfs.c (GCC 4.6.4 from ELDK 5.2.1)

2012-11-04 Thread Tom Rini
On Fri, Oct 26, 2012 at 04:24:00PM +0200, Stefan Roese wrote: > This patch fixes the following compile warnings: > > cmd_zfs.c:177:1: warning: initialization from incompatible pointer type > [enabled by default] > cmd_zfs.c:177:1: warning: (near initialization for > '_u_boot_list_cmd_zfsls.cmd'

Re: [U-Boot] [PATCH v3 0/22] AHCI / SATA Improvements

2012-11-04 Thread Tom Rini
On Mon, Oct 29, 2012 at 08:23:43AM -0700, Simon Glass wrote: > This series contains a set of improvements for the SATA susbsystem, mostly > targeted at solid-state drivers and improving start-up time. > > The patches are tested on various x86 Chromebooks. > > Changes in v3: > - Remove use of DEF

Re: [U-Boot] [PATCH 1/3] fs: fix do_fsload() handling of optional arguments

2012-11-04 Thread Tom Rini
On Tue, Oct 30, 2012 at 11:28:55PM +0100, Beno??t Th??baudeau wrote: > On Tuesday, October 30, 2012 11:04:17 PM, Stephen Warren wrote: > > From: Stephen Warren > > > > Most arguments to the shell command do_fsload() implements are > > optional. > > Fix the minimum argc check to respect that. Cate

Re: [U-Boot] [PATCH] fs: rename fsload command to load

2012-11-04 Thread Tom Rini
On Wed, Oct 31, 2012 at 03:05:07PM -0600, Stephen Warren wrote: > From: Stephen Warren > > When the generic filesystem load command "fsload" was written, I felt > that "load" was too generic of a name for it, since many other similar > commands already existed. However, it turns out that there i

Re: [U-Boot] [PATCH v2 00/32] Initial sparse fix series

2012-11-04 Thread Tom Rini
On Mon, Oct 29, 2012 at 06:34:22PM -0500, Kim Phillips wrote: > [v2 summary: zero inter-commit build errors on all power, arm, > and mips boards (which means some patches got merged into patch #1), > checkpatch fixes, and postponement of the libfdt changes, primarily > to get the bulk of these in

Re: [U-Boot] [PATCH] usb gadget ether: Fix warning in is_eth_addr_valid()

2012-11-04 Thread Tom Rini
On Wed, Oct 31, 2012 at 07:31:12PM -0500, Joe Hershberger wrote: > Hi Tom, > > On Wed, Oct 31, 2012 at 6:30 PM, Tom Rini wrote: > > The gadget ethernet driver needs to keep copies of the MAC address (at > > both endpoints) as strings so it needs a custom function for validation > > of the MAC. I

Re: [U-Boot] [PATCH] patman: Add additional tags to ignore

2012-11-04 Thread Tom Rini
On Fri, Nov 02, 2012 at 09:38:43AM -0700, Simon Glass wrote: > The BRANCH= tag can be used to indicate the destination branch for a > commit. Ignore this tag. > > Also ignore the gerrit 'Commit-Ready:' tag. > > Signed-off-by: Simon Glass Applied to u-boot/master, thanks! -- Tom signature.a

[U-Boot] v2013.01-rc1 released

2012-11-04 Thread Tom Rini
Hey all, With the official closing of the merge window just past us now, I've tagged v2013.01-rc1. I expect a number of pull requests still covering all of the patches that have been posted before the merge window closed and are ready to pull, but haven't yet. Since we have tagged -rc1 that does

Re: [U-Boot] v2013.01-rc1 released

2012-11-04 Thread Wolfgang Denk
Dear Tom, In message <20121104184959.GN15839@bill-the-cat> you wrote: > > With the official closing of the merge window just past us now, I've > tagged v2013.01-rc1. Thanks a lot - a minor nitpick: as is, we have a somewhat ugly version string "2013.01.-rc1". Please consider (at least for futur

[U-Boot] [PATCH v3 1/2] m68k: add support for mcf5307 cpu

2012-11-04 Thread angelo
Add support for freescale coldfire mcf5307 cpu. Signed-off-by: Angelo Dureghello Cc: Jason Jin --- Changes for v2: - Add MAINTAINERS entry - Add boards.cfg entry Changes for v3: - Fix code format issues --- MAINTAINERS|4 + arch/m68k/cpu/mcf530x/Makefile | 48 +

[U-Boot] [PATCH v3 2/2] amcore: add support for amcore board

2012-11-04 Thread angelo
Add support for amcore board. Signed-off-by: Angelo Dureghello Cc: Jason Jin --- Changes for v2: - None Changes for v3: - Fix code format issues --- board/sysam/amcore/Makefile| 43 board/sysam/amcore/amcore.c| 168 ++ board/sysam/amcore/config.mk | 2

Re: [U-Boot] [PATCH v4 0/13] Port of MUSB driver from Linux (changes from Linux)

2012-11-04 Thread Marek Vasut
Dear Ilya Yanok, > Current MUSB driver in U-Boot uses old UDC API while new gagdet > client drivers need new gadget API. Also current MUSB driver has > some significant limitations (like inability to handle tx for > endpoints other than ep0). So I think port of new Linux driver is > desirable. >

Re: [U-Boot] [PATCH v3 1/2] m68k: add support for mcf5307 cpu

2012-11-04 Thread Wolfgang Denk
Dear angelo, In message <20121104195901.GA5141@angel3> you wrote: > Add support for freescale coldfire mcf5307 cpu. ... > --- /dev/null > +++ b/arch/m68k/cpu/mcf530x/cpu_init.c ... > +#define MCF5307_SP_ERR_FIX(cs_base,mask) \ > +if((cs_base+(mask&0x))>=0x)mask|=0x20 Pleas

[U-Boot] Pull request: u-boot-arm/master

2012-11-04 Thread Albert ARIBAUD
Hello Tom, The following changes since commit b68d6712c379735e886ef9c01b946bc36f295273: ARM: fix u-boot.lds for -ffunction-sections/-fdata-sections (2012-10-26 23:46:21 +0200) are available in the git repository at: git://git.denx.de/u-boot-arm master for you to fetch changes up to 46d62

Re: [U-Boot] [PATCH v3 2/2] amcore: add support for amcore board

2012-11-04 Thread Wolfgang Denk
Dear angelo, In message <20121104200021.GB5141@angel3> you wrote: > Add support for amcore board. > > Signed-off-by: Angelo Dureghello > Cc: Jason Jin > --- > Changes for v2: > - None > Changes for v3: > - Fix code format issues > --- > board/sysam/amcore/Makefile| 43 > board/s

Re: [U-Boot] [PATCH 3/3] Add stricmp() and strnicmp()

2012-11-04 Thread Albert ARIBAUD
Hi Simon, > OK, messaged received loud and clear. It does require a change of > process at my end - now I have to find relationships between commits > in different series going to different maintainers and try to tie them > together. Just one more thing to worry about. Consider a 'paradigm shift'

[U-Boot] [PATCH v4 1/4] mvgbe: allow non-sequential PHY addresses

2012-11-04 Thread Albert ARIBAUD
Signed-off-by: Albert ARIBAUD --- Changes in v3: - fixed building when SoC provides only one GbE port. arch/arm/include/asm/arch-kirkwood/kirkwood.h |1 - arch/arm/include/asm/arch-orion5x/orion5x.h |1 - drivers/net/mvgbe.c | 12 +++- drivers/net/mv

[U-Boot] [PATCH v4 2/4] mv88e61xx: refactor PHY and SWITCH level-code

2012-11-04 Thread Albert ARIBAUD
Signed-off-by: Albert ARIBAUD --- drivers/net/phy/mv88e61xx.c | 300 ++- drivers/net/phy/mv88e61xx.h | 23 ++-- include/netdev.h| 21 ++- 3 files changed, 155 insertions(+), 189 deletions(-) diff --git a/drivers/net/phy/mv88e61xx.c b/dri

[U-Boot] [PATCH v4 3/4] kirkwood: make MPP arrays static const

2012-11-04 Thread Albert ARIBAUD
This saves stack and code memory for local copy, and consumes initialized data memory. For 22 of the 29 kirkwood-based boards, this results in a global saving of about 30 bytes. For 7 of them, it results in an increase of 6 to 14 bytes. Signed-off-by: Albert ARIBAUD --- arch/arm/cpu/arm926ejs/k

[U-Boot] [PATCH v4 4/4] ARM: lacie_kw: add support for WIRELESS_SPACE

2012-11-04 Thread Albert ARIBAUD
Signed-off-by: Albert ARIBAUD --- Changes in v4: - switched from netspace_V2-based to standalone board - added support for mv88e61xx switch - corrected some kwbimage.cfg values Changes in v3: - fix broken support for NETSPACE_(MINI|LITE)_V2 Changes in v2: - split the patch in two: mvgbe phy/port

Re: [U-Boot] [PATCH 1/2] MAKEALL: Fix kill_children

2012-11-04 Thread Joe Hershberger
Hi Tom, On Sat, Nov 3, 2012 at 5:54 PM, Tom Rini wrote: > On Tue, Oct 30, 2012 at 08:55:20PM -0500, Joe Hershberger wrote: > >> When building in parallel, make sure that we look up the children >> based on the the actual process group id instead of just assuming >> that the MAKEALL pid is the pro

Re: [U-Boot] [PATCH v3 0/18] Add environment call-back and flags capability

2012-11-04 Thread Joe Hershberger
Hi Wolfgang, On Fri, Nov 2, 2012 at 5:40 PM, Wolfgang Denk wrote: > Dear Joe Hershberger, > > In message <1351787996-24560-1-git-send-email-joe.hershber...@ni.com> you > wrote: >> >> When a variable with a registered callback is inserted, deleted, or >> overwritten the callback is called and giv

Re: [U-Boot] [PATCH 1/2] serial: Remove the "serial" console device

2012-11-04 Thread Joe Hershberger
Hi Marek, On Fri, Nov 2, 2012 at 8:35 PM, Marek Vasut wrote: > Dear Joe Hershberger, > >> Each serial device is added as a console device. There was also the >> "serial" device that points to the most-recently-assigned-to-some- >> console-handle device. This can be confusing. Instead, only sho

Re: [U-Boot] [PATCH 2/2] serial: Make nulldev a serial device

2012-11-04 Thread Joe Hershberger
Hi Marek, On Fri, Nov 2, 2012 at 8:37 PM, Marek Vasut wrote: > Dear Joe Hershberger, > >> This allows the default console to be specified as the nulldev. This is >> specifically helpful when the real serial console's init() cannot run >> early in the boot process. When the init can be run, then

Re: [U-Boot] [PATCH] net: Fix endianness bug in link-local

2012-11-04 Thread Joe Hershberger
Hi Kim, On Fri, Nov 2, 2012 at 2:58 PM, Kim Phillips wrote: > On Thu, 1 Nov 2012 22:05:54 -0500 > Joe Hershberger wrote: > >> The ip is stored in network order, so we can't test it in host order. >> >> Signed-off-by: Joe Hershberger >> --- >> net/link_local.c | 2 +- >> 1 file changed, 1 inser

Re: [U-Boot] v2013.01-rc1 released

2012-11-04 Thread Tom Rini
On Sun, Nov 04, 2012 at 08:58:37PM +0100, Wolfgang Denk wrote: > Dear Tom, > > In message <20121104184959.GN15839@bill-the-cat> you wrote: > > > > With the official closing of the merge window just past us now, I've > > tagged v2013.01-rc1. > > Thanks a lot - a minor nitpick: as is, we have a s

Re: [U-Boot] [PATCH 1/2] MAKEALL: Fix kill_children

2012-11-04 Thread Tom Rini
On Sun, Nov 04, 2012 at 06:13:03PM -0600, Joe Hershberger wrote: > Hi Tom, > > On Sat, Nov 3, 2012 at 5:54 PM, Tom Rini wrote: > > On Tue, Oct 30, 2012 at 08:55:20PM -0500, Joe Hershberger wrote: > > > >> When building in parallel, make sure that we look up the children > >> based on the the actu

[U-Boot] [PATCH] sh: fix trigger_address_error()

2012-11-04 Thread Shimoda, Yoshihiro
The function should set BL bit, but it should not clear other flags. So, the patch uses set_bl_bit() instead of a local asm code. Signed-off-by: Yoshihiro Shimoda --- arch/sh/include/asm/system.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/sh/include/asm/system

[U-Boot] [PATCH] serial_sh: Add support Renesas SH7752

2012-11-04 Thread Shimoda, Yoshihiro
Signed-off-by: Yoshihiro Shimoda --- drivers/serial/serial_sh.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/serial/serial_sh.h b/drivers/serial/serial_sh.h index a4e..7e38a3f 100644 --- a/drivers/serial/serial_sh.h +++ b/drivers/serial/serial_sh.h @@ -143

[U-Boot] [PATCH] sh: add support for sh7752evb board

2012-11-04 Thread Shimoda, Yoshihiro
The R0P7752C0RZ board has SH7752, 512MB DDR3-SDRAM, SPI ROM, Gigabit Ethernet, and eMMC. This patch supports the following functions: - 512MB DDR3-SDRAM, SCIF4, SPI ROM, Gigabit Ethernet, eMMC Signed-off-by: Yoshihiro Shimoda --- MAINTAINERS |1 + arch/sh/in

[U-Boot] [PATCH] net: sh_eth: add support for SH7752

2012-11-04 Thread Shimoda, Yoshihiro
SH7752 has two fast ethernet controllers and two gigabit ethernet controllers. It is similar to SH7757. Signed-off-by: Yoshihiro Shimoda --- drivers/net/sh_eth.c |4 ++-- drivers/net/sh_eth.h |4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/sh_eth.c b/d

Re: [U-Boot] [PATCH 0/5 V9] EXYNOS5: Enable SPI support

2012-11-04 Thread Minkyu Kang
On 02/11/12 20:15, Hatim Ali wrote: > This patch set adds SPI driver for EXYNOS5 and enables same. > This patch set is based on latest u-boot-samsung.git tree. > > Changes in V2: > - Correted the Commit message. > Changes in V3: > - Removed SPI_SLAVE Flag. > - Corrected warning m

Re: [U-Boot] USB mass storage gadget patch

2012-11-04 Thread victor
Lukasz, >> 2) Now I can use the patch and process till SCSI MODE_SELECT_6 >> command, and then problem is encountered. Basically the SCSI >> MODE_SELECT_6 is sent to EP1 Out, then data is sent to EP1 out, and >> the fsg_main_thread only sees the data. I change the code to force the >> CSW. > >C

Re: [U-Boot] [PATCH v7 09/16] arm: Add control over cachability of memory regions

2012-11-04 Thread Dennis Lan (dlan)
HI Simon: This patch still not go to the master branch, but I actually found it useful, like interact with peripheral buffer (not only just LCD here), then I can set special attribute. One question here, can I use mmu_set_region_dcache_behaviour following malloc, what about if I allocate small b

[U-Boot] [PATCH] nios2: use builtin functions for control registers access

2012-11-04 Thread Thomas Chou
The commit 51926d5ee0be029fb45f10f42756df97279f8ad3 COMMON: Use __stringify() instead of rest of implementations forgot to update the wrctl funtion, and causes compilation error. But there are builtin functions for control registers access in nios2 comipiler. It is convenient to use them instead

[U-Boot] [PATCH] nios2: remove asm/status_led.h

2012-11-04 Thread Thomas Chou
The file has a wrong inline keyword of __led_toggle(), which causes compilation error. And its content is defined in common status_led.h. So define CONFIG_BOARD_SPECIFIC_LED in board config files and remove this header file. Signed-off-by: Thomas Chou --- arch/nios2/include/asm/status_led.h | 31

Re: [U-Boot] USB mass storage gadget patch

2012-11-04 Thread victor
Lukasz, >>> 2) Now I can use the patch and process till SCSI MODE_SELECT_6 >>> command, and then problem is encountered. Basically the SCSI >>> MODE_SELECT_6 is sent to EP1 Out, then data is sent to EP1 out, and >>> the fsg_main_thread only sees the data. I change the code to force >>> the CSW.

Re: [U-Boot] [PATCH v4 00/24] pmic: Redesign PMIC framework to support multiple instances of devices

2012-11-04 Thread Lukasz Majewski
Hi Tom, > On Tue, Oct 30, 2012 at 05:56:55PM +0100, Lukasz Majewski wrote: > > > PMIC framework has been redesigned to support multiple instances of > > power related devices (e.g. fuel gauge, PMICs, chargers, micro USB > > IC, battery). > > I _think_ this series is causing: > $ uboot-build.sh m

Re: [U-Boot] [PATCH v2 0/2] Factorize ARM startup code as mush as possible.

2012-11-04 Thread Sughosh Ganu
On Sun Nov 04, 2012 at 10:38:32AM -0700, Tom Rini wrote: > On Sun, Nov 04, 2012 at 12:43:12PM +0100, Albert ARIBAUD wrote: > > > Hi Tom, > > > > On Sun, 4 Nov 2012 12:32:03 +0100, Albert ARIBAUD > > wrote: > > > > > The goal of this series is to scrub the start.S files > > > which have prolife