[U-Boot] [PATCH v3 8/8] dm: x86: Drop the weak cpu_irq_init() function

2016-01-19 Thread Simon Glass
There are no callers now. Platforms which need to set up interrupts their own way can implement an interrupt driver. Drop this function. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- Changes in v3: None Changes in v2: - Rebase on top of updated SPI

Re: [U-Boot] [PATCH 5/5] i2c: omap24xx: Convert fully to DM_I2C

2016-01-19 Thread Heiko Schocher
Hello Christophe, Am 18.01.2016 um 22:22 schrieb Christophe Ricard: Hi Heiko, I was expecting such kind of feedback on this one :). I had myself to hack around between the MLO and the u-boot.img to get it working. For omap, i think twl drivers are kind of the main item to convert. Would

Re: [U-Boot] [PATCH] iocon / bamboo: Drop CONFIG_SYS_LONGHELP

2016-01-19 Thread Stefan Roese
On 19.01.2016 19:01, Tom Rini wrote: The iocon and bamboo boards are often on the verge of, or going over, their allowed size limits depending on toolchain used. If we turn off CONFIG_SYS_LONGHELP we can gain approximately 14KiB back. Cc: Dirk Eibach Cc: Stefan Roese

[U-Boot] [PATCH 2/2] armv8: ls2085a: Remove phy configuration from QDS and RDB

2016-01-19 Thread Prabhakar Kushwaha
From: Prabhakar Kushwaha As phy_connect and phy_config are being called from DPAA2 driver. Remove calling of mentioned function from board file. Signed-off-by: Pratiyush Mohan Srivastava Signed-off-by: Prabhakar Kushwaha

[U-Boot] [PATCH] driver: net: fsl-mc: Memset dprc_cfg before configuring

2016-01-19 Thread Prabhakar Kushwaha
From: Prabhakar Kushwaha All fields of struct dprc_cfg are not being configured while creating child container. "Not" configured fields are assumed to be 0. So memset dprc_cfg before configuring the fields. Signed-off-by: Itai Katz Signed-off-by:

[U-Boot] [PATCH] armv8/ls1043a: Implement workaround for erratum A009660

2016-01-19 Thread Mingkai Hu
From: Mingkai Hu Memory controller performance is not optimal with default internal target queue register value, write required value for optimal DDR performance. Signed-off-by: Mingkai Hu --- arch/arm/cpu/armv8/fsl-layerscape/soc.c | 13

Re: [U-Boot] [Patch V4 1/4] spi: fsl_qspi: fix compile warning for 64-bit platform

2016-01-19 Thread Qianyu Gong
> -Original Message- > From: york sun > Sent: Wednesday, January 20, 2016 2:42 AM > To: Qianyu Gong ; u-boot@lists.denx.de > Cc: Mingkai Hu ; jt...@openedev.com; Yao Yuan > ; r58...@freescale.com; Gong Qianyu >

Re: [U-Boot] [PATCH v2 01/50] dm: clk: Add support for decoding clocks from the device tree

2016-01-19 Thread Simon Glass
Hi Masahiro, On 18 January 2016 at 21:29, Masahiro Yamada wrote: > Hi Simon, > > > 2016-01-19 11:27 GMT+09:00 Simon Glass : >> Add a method which can locate a clock for a device, given its index. This >> uses the normal device tree bindings to

Re: [U-Boot] [PATCHv2 5/5] igep00x0: Remove no-op macros from config header

2016-01-19 Thread Heiko Schocher
Hello Tom, Am 04.01.2016 um 23:24 schrieb Tom Rini: On Mon, Jan 04, 2016 at 11:08:02PM +0100, Enric Balletbo i Serra wrote: From: Ladislav Michl The patch removes some macros that are not used. Signed-off-by: Ladislav Michl Acked-by: Enric

Re: [U-Boot] [PATCH v2 01/50] dm: clk: Add support for decoding clocks from the device tree

2016-01-19 Thread Masahiro Yamada
Hi Simon, >>> >>> +/** >>> + * clk_get_by_index() - look up a clock referenced by a device >>> + * >>> + * Parse a device's 'clocks' list, returning information on the indexed >>> clock, >>> + * ensuring that it is activated. >>> + * >>> + * @dev: Device containing the clock reference >>>

[U-Boot] [PATCH v5 2/2] usb: eth: add Realtek RTL8152B/RTL8153 DRIVER

2016-01-19 Thread Ted Chen
This patch adds driver support for the Realtek RTL8152B/RTL8153 USB network adapters. Signed-off-by: Ted Chen [swarren, fixed a few compiler warnings] [swarren, with permission, converted license header to SPDX] [swarren, removed printf() spew during probe()] Signed-off-by: Stephen Warren ---

[U-Boot] [PATCH] driver: net: fsl-mc: Update print to reflect correct string

2016-01-19 Thread Prabhakar Kushwaha
From: Prabhakar Kushwaha Update printf with dpbp_exit to match with previous function call. Signed-off-by: Itai Katz Signed-off-by: Prabhakar Kushwaha --- drivers/net/fsl-mc/mc.c | 2 +- 1 file changed, 1 insertion(+), 1

[U-Boot] [PATCH 1/2] driver: net: ldpaa_eth: Add support of PHY framework

2016-01-19 Thread Prabhakar Kushwaha
This patch integrate DPAA2 ethernet driver existing PHY framework. Call phy_connect and phy_config as per available DPMAC id defined in SerDes Protcol. Signed-off-by: Pratiyush Mohan Srivastava Signed-off-by: Prabhakar Kushwaha ---

Re: [U-Boot] [PATCH 02/23] dm: video: Flush the cache after a puts()

2016-01-19 Thread Simon Glass
Hi Tom, On 19 January 2016 at 09:53, Tom Warren wrote: > Simon, > >> -Original Message- >> From: s...@google.com [mailto:s...@google.com] On Behalf Of Simon Glass >> Sent: Monday, January 18, 2016 7:03 PM >> To: Tom Warren >> Cc: U-Boot Mailing

Re: [U-Boot] [PATCH] At start of autoboot check, flush any pending RX bytes

2016-01-19 Thread Simon Glass
Hi, On 18 January 2016 at 23:46, Craig McQueen wrote: >> Tom Rini wrote: >> >> On Mon, Jan 11, 2016 at 09:59:18AM -0700, Simon Glass wrote: >> > Hi Craig, >> > >> > On 20 December 2015 at 19:07, Craig McQueen >> > wrote: >> > > This is

Re: [U-Boot] [PATCH v2] clk: add fixed rate clock driver

2016-01-19 Thread Simon Glass
On 18 January 2016 at 21:55, Masahiro Yamada wrote: > This commit intends to implement "fixed-clock" as in Linux. > (drivers/clk/clk-fixed-rate.c in Linux) > > If you need a very simple clock to just provide fixed clock rate > like a crystal oscillator, you do not

Re: [U-Boot] [PATCH 1/2] Move all command code into its own directory

2016-01-19 Thread Simon Glass
Hi, On 19 January 2016 at 08:53, Tom Rini wrote: > On Tue, Jan 19, 2016 at 12:59:10PM +0900, Masahiro Yamada wrote: >> Hi Simon, >> >> 2016-01-18 12:53 GMT+09:00 Simon Glass : >> > There are a lot of unrelated files in common, including all of the >> >

Re: [U-Boot] [PATCH v2 0/6] dm: x86: Remove pirq_init() and cpu_irq_init()

2016-01-19 Thread Simon Glass
Hi Bin. On 19 January 2016 at 02:15, Bin Meng wrote: > Hi Simon, > > On Tue, Jan 19, 2016 at 11:39 AM, Simon Glass wrote: >> This series adds an interrupt driver for x86. Since different platforms >> can implement this in their own way, we no-longer need

Re: [U-Boot] [U-Boot,2/3] axm/taurus: Enable tiny printf in SPL

2016-01-19 Thread Heiko Schocher
Hello Tom, Am 19.01.2016 um 19:08 schrieb Tom Rini: On Thu, Jan 14, 2016 at 01:02:04PM -0500, Tom Rini wrote: Both of these boards are very close to their limit and with some toolchains such as gcc 5.x are too large. Switch to tiny printf to reclaim some size. Signed-off-by: Tom Rini

[U-Boot] [PATCH v3 1/8] dm: x86: Create a driver for x86 interrupts

2016-01-19 Thread Simon Glass
It seems likely that at some point we will want a generic interrupt uclass. But this is a big undertaking as it involves unifying code across multiple architectures. As a first step, create a simple IRQ uclass and a driver for x86. This can be generalised later as required. Adjust pirq_init() to

[U-Boot] [PATCH v3 3/8] dm: x86: Add a common PIRQ init function

2016-01-19 Thread Simon Glass
Most x86 interrupt drivers will want to use the standard PIRQ routing and table setup. Put this code in a common function so it can be used by those drivers that want it. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- Changes in v3: None Changes in

[U-Boot] [PATCH v3 5/8] x86: Drop the irq router compatible string

2016-01-19 Thread Simon Glass
We use driver model for this now, so we don't need this string. Signed-off-by: Simon Glass --- Changes in v3: - Add new patch to drop the irq router compatible string Changes in v2: None include/fdtdec.h | 1 - lib/fdtdec.c | 1 - 2 files changed, 2 deletions(-) diff

[U-Boot] [PATCH v3 0/8] dm: x86: Remove pirq_init() and cpu_irq_init()

2016-01-19 Thread Simon Glass
This series adds an interrupt driver for x86. Since different platforms can implement this in their own way, we no-longer need the platform-specific weak function. We can also dispense with the arch_misc_init() call in some cases. Changes in v3: - Add new patch to use the IRQ device when setting

[U-Boot] [PATCH v3 4/8] x86: Use the IRQ device when setting up the mptable

2016-01-19 Thread Simon Glass
Instead of searching for the device tree node, use the IRQ device which has a record of it. Signed-off-by: Simon Glass --- Changes in v3: - Add new patch to use the IRQ device when setting up the mptable Changes in v2: None arch/x86/cpu/irq.c| 16

[U-Boot] [PATCH ] board: ls2080a: Add "mcinitcmd" env for MC & DPL deployment

2016-01-19 Thread Pratiyush Mohan Srivastava
From: Pratiyush Mohan Srivastava Environment variable mcinitcmd is defined to initiate MC and DPL deployment from the location where it is stored(NOR, NAND, SD, SATA, USB)during u-boot booting.If this variable is not defined then macro MC_BOOT_ENV_VAR will be null

Re: [U-Boot] [PATCH v2 00/14] dm: video: Introduce initial driver-model video support

2016-01-19 Thread Anatolij Gustschin
Hi Simon, On Mon, 18 Jan 2016 19:57:53 -0700 Simon Glass wrote: ... > >> Changes in v2: > >> - Fix Ebabling typo in comment > >> - Remove duplicated @fb_size line in common > >> - Fix comment for video_get_ysize() > >> - Fix reference to \n which should be \b > >> - Fix

Re: [U-Boot] [PATCH] iocon / bamboo: Drop CONFIG_SYS_LONGHELP

2016-01-19 Thread Dirk Eibach
2016-01-19 19:01 GMT+01:00 Tom Rini : > The iocon and bamboo boards are often on the verge of, or going over, > their allowed size limits depending on toolchain used. If we turn off > CONFIG_SYS_LONGHELP we can gain approximately 14KiB back. > > Cc: Dirk Eibach

[U-Boot] [PATCH 1/2] mx6: soc: Add ENET2 mac address support

2016-01-19 Thread Ye Li
The i.MX6SX and i.MX6UL has two ENET controllers, add support for reading MAC address from fuse for ENET2. Signed-off-by: Ye Li --- arch/arm/cpu/armv7/mx6/soc.c | 32 + arch/arm/include/asm/arch-mx6/imx-regs.h | 19 + 2

Re: [U-Boot] [PATCH 1/3] ARMv8/layerscape: Add mmu_init API

2016-01-19 Thread Prabhakar Kushwaha
> -Original Message- > From: Zhiqiang Hou [mailto:zhiqiang@freescale.com] > Sent: Tuesday, January 19, 2016 6:10 PM > To: u-boot@lists.denx.de; albert.u.b...@aribaud.net; > mingkai...@freescale.com; york...@freescale.com > Cc: le...@freescale.com; prabha...@freescale.com; >

[U-Boot] [PATCH 3/3] ARMv8/ls1043ardb: Integrate FSL PPA

2016-01-19 Thread Zhiqiang Hou
From: Hou Zhiqiang Signed-off-by: Hou Zhiqiang --- board/freescale/ls1043ardb/ls1043ardb.c | 11 +++ include/configs/ls1043ardb.h| 9 + 2 files changed, 20 insertions(+) diff --git

Re: [U-Boot] [PATCH 4/4] armv8/ls1043aqds: Initizlize NS16550 if enalbed LPUART

2016-01-19 Thread Wenbin Song
Hi: Bin, Because we use the ns16550 as the early console when booting kernel , and the earlycon driver on kernel cannot initialize port->uartclk rightly, So if we want to use it, we must initialize ns16550 on uboot, and use the bootargs as follow : "console=ttyS0,115200

Re: [U-Boot] [PATCH 4/4] armv8/ls1043aqds: Initizlize NS16550 if enalbed LPUART

2016-01-19 Thread Wenbin Song
Hi:Bin Thanks for your advice! I realize that I can use the lpuart as earlycon on kernel . So I will remove this patch on next vesion. Thanks Wenbin Song Sent from my iPhone > On Jan 19, 2016, at 18:42, Bin Meng wrote: > > Hi Wenbin, > >> On Tue, Jan 19, 2016 at 6:21

[U-Boot] [PATCH 2/3] ARMv8/layerscape: Add FSL PPA support

2016-01-19 Thread Zhiqiang Hou
From: Hou Zhiqiang The FSL Primary Protected Application (PPA) is a software component loaded during boot which runs in TrustZone and remains resident after boot. Signed-off-by: Hou Zhiqiang --- arch/arm/cpu/armv8/fsl-layerscape/Makefile | 1 +

[U-Boot] [PATCH 1/2 v2] misc: Add simple driver to enable the legacy UART on Winbond Super IO chips

2016-01-19 Thread Stefan Roese
On most x86 boards, the legacy serial ports (io address 0x3f8/0x2f8) are provided by a superio chip connected to the LPC bus. We must program the superio chip so that serial ports are available for us. Signed-off-by: Stefan Roese Cc: Bin Meng Cc: Simon Glass

Re: [U-Boot] [PATCH 2/2] x86: BayTrail: Add option to disable the internal UART to setup_early_uart()

2016-01-19 Thread Bin Meng
Hi Stefan, On Tue, Jan 19, 2016 at 9:05 PM, Stefan Roese wrote: > This patch adds a parameter to the function setup_early_uart() to either > enable or disable the internal BayTrail legacy UART. Since the name > setup_early_uart() does not match its functionality any more, lets >

Re: [U-Boot] [PATCH 1/2 v2] misc: Add simple driver to enable the legacy UART on Winbond Super IO chips

2016-01-19 Thread Bin Meng
On Tue, Jan 19, 2016 at 9:05 PM, Stefan Roese wrote: > On most x86 boards, the legacy serial ports (io address 0x3f8/0x2f8) > are provided by a superio chip connected to the LPC bus. We must > program the superio chip so that serial ports are available for us. > > Signed-off-by:

Re: [U-Boot] [PATCH 2/3] x86: BayTrail: Add function to disable the internal legacy UART

2016-01-19 Thread Stefan Roese
Hi Bin, On 19.01.2016 12:02, Bin Meng wrote: Hi Stefan, On Tue, Jan 19, 2016 at 6:54 PM, Stefan Roese wrote: Hi Bin, On 19.01.2016 11:15, Bin Meng wrote: On Tue, Jan 19, 2016 at 5:29 PM, Stefan Roese wrote: Hi Bin, (added Simon again to Cc) On 19.01.2016

[U-Boot] [PATCH 2/2 v2] x86: BayTrail: Add option to disable the internal UART to setup_early_uart()

2016-01-19 Thread Stefan Roese
This patch adds a parameter to the function setup_early_uart() to either enable or disable the internal BayTrail legacy UART. Since the name setup_early_uart() does not match its functionality any more, lets rename it to setup_internal_uart() as well in this patch. Signed-off-by: Stefan Roese

Re: [U-Boot] [PATCH 2/3] ARMv8/layerscape: Add FSL PPA support

2016-01-19 Thread Prabhakar Kushwaha
> -Original Message- > From: Zhiqiang Hou [mailto:zhiqiang@freescale.com] > Sent: Tuesday, January 19, 2016 6:10 PM > To: u-boot@lists.denx.de; albert.u.b...@aribaud.net; > mingkai...@freescale.com; york...@freescale.com > Cc: le...@freescale.com; prabha...@freescale.com; >

[U-Boot] [PATCH 2/2] x86: BayTrail: Add option to disable the internal UART to setup_early_uart()

2016-01-19 Thread Stefan Roese
This patch adds a parameter to the function setup_early_uart() to either enable or disable the internal BayTrail legacy UART. Since the name setup_early_uart() does not match its functionality any more, lets rename it to setup_internal_uart() as well in this patch. Signed-off-by: Stefan Roese

[U-Boot] [PATCH 2/2] imx: mx6sxsabreauto: Add support for mx6sx SABREAUTO board

2016-01-19 Thread Ye Li
Initial version for mx6sx SABREAUTO board support with features: PMIC, QSPI, NAND flash, SD/MMC, USB, Ethernet, I2C, IO Expander. Signed-off-by: Ye Li --- arch/arm/cpu/armv7/mx6/Kconfig |6 + board/freescale/mx6sxsabreauto/Kconfig | 12 +

[U-Boot] [PATCH 1/3] ARMv8/layerscape: Add mmu_init API

2016-01-19 Thread Zhiqiang Hou
From: Hou Zhiqiang Expose this API to make it reuseable when u-boot turn into other EL from EL3. Signed-off-by: Hou Zhiqiang --- arch/arm/cpu/armv8/fsl-layerscape/cpu.c | 24 include/common.h| 1 + 2

Re: [U-Boot] [PATCH] ARM: tegra: rm Jetson TK1 PMIC GPIO programming

2016-01-19 Thread Thierry Reding
On Mon, Jan 18, 2016 at 11:23:16AM -0700, Stephen Warren wrote: > From: Stephen Warren > > The PMIC is configured such that its GPIOs have the correct configuration > at power-up, so no programming is required. > > In fact, the current programming is actively wrong, since: >

[U-Boot] [PATCH] fsl_qspi: fix address mask issue

2016-01-19 Thread Ye Li
The OFFSET_BITS_MASK should mask bit from 0-23. By using GENMASK(24, 0), when using the fast read common (0xb), a invalid sf_addr 0x100 is produced by swab32(txbuf) & OFFSET_BITS_MASK. Signed-off-by: Ye Li --- drivers/spi/fsl_qspi.c |2 +- 1 files changed, 1

[U-Boot] Transition Freescale -> NXP

2016-01-19 Thread Wolfgang Denk
Hi, apparently all Freescalers now show up with @nxp.com addresses. Of course you can all individually unsubscribe the old FSL address and then re-subscribe with a new NXP one. I guess this is a boring process. And I'm afraid I cannot even help you - I've been looking for a (documented) way to

[U-Boot] [PATCH] arm: socfpga: revert "set the fpga global bit to disable HPS to FPGA signals"

2016-01-19 Thread Dinh Nguyen
Revert "arm: socfpga: set the fpga global bit to disable HPS to FPGA signals" Apparently, the logic for the FPGA global bit is not universal between Gen5 and Gen10 devices is not the same. Disabling this bit, while applicable to Gen10 devices, will break FPGA programming on Gen5 devices.

Re: [U-Boot] [PATCH] arm: socfpga: revert "set the fpga global bit to disable HPS to FPGA signals"

2016-01-19 Thread Dinh Nguyen
Hi Marek, On 01/19/2016 09:16 AM, Dinh Nguyen wrote: > Revert "arm: socfpga: set the fpga global bit to disable HPS to FPGA signals" > I apologize for the original patch "arm: socfpga: set the fpga global bit to disable HPS to FPGA signals". I did not test the patch when it was sent out. I did

Re: [U-Boot] [PATCH 1/2] Move all command code into its own directory

2016-01-19 Thread Tom Rini
On Tue, Jan 19, 2016 at 12:59:10PM +0900, Masahiro Yamada wrote: > Hi Simon, > > 2016-01-18 12:53 GMT+09:00 Simon Glass : > > There are a lot of unrelated files in common, including all of the commands. > > Moving them into their own directory makes them easier to find and is

Re: [U-Boot] AM335x SPI boot not working

2016-01-19 Thread Tom Rini
On Mon, Jan 18, 2016 at 10:02:32AM +0100, Lars Poeschel wrote: > Am Donnerstag, 14. Januar 2016, 16:01:00 schrieben Sie: > > On Wed, Dec 16, 2015 at 03:34:24PM +0100, Lars Poeschel wrote: > > > Hi! > > > > > > I played a bit with spi boot on my am3359. It is currently not working > > > with u-

Re: [U-Boot] [PATCH v2] ARM: Disable "DISCARD" for secure section if CONFIG_ARMV7_SECURE_BASE isn't defined

2016-01-19 Thread Tom Rini
On Mon, Jan 18, 2016 at 11:02:40AM +0800, Dongsheng Wang wrote: > From: Wang Dongsheng > > "DISCARD" will remove ._secure.text relocate, but PSCI framework > has already used some absolute address those need to relocate. > > Use readelf -t -r u-boot show us: >

Re: [U-Boot] [v2] mmc: fsl_esdhc: fix mmc read/write error on T4080

2016-01-19 Thread Tom Rini
On Mon, Jan 18, 2016 at 07:18:59AM +, Yangbo Lu wrote: > > -Original Message- > > From: Tom Rini [mailto:tr...@konsulko.com] > > Sent: Friday, January 15, 2016 2:09 AM > > To: york sun > > Cc: Andy Fleming; Yangbo Lu; U-Boot list > > Subject: Re: [U-Boot] [v2] mmc: fsl_esdhc: fix mmc

Re: [U-Boot] [PATCH 2/4] video: tegra: Move to using simple-panel and pwm-backlight

2016-01-19 Thread Stephen Warren
On 01/18/2016 07:08 PM, Simon Glass wrote: Hi Stephen, On 18 January 2016 at 12:43, Stephen Warren wrote: On 01/14/2016 01:26 PM, Simon Glass wrote: We have standard drivers for panels and backlights which can do most of the work for us. Move the tegra20 LCD driver

Re: [U-Boot] [PATCH 02/23] dm: video: Flush the cache after a puts()

2016-01-19 Thread Tom Warren
Simon, > -Original Message- > From: s...@google.com [mailto:s...@google.com] On Behalf Of Simon Glass > Sent: Monday, January 18, 2016 7:03 PM > To: Tom Warren > Cc: U-Boot Mailing List ; Stephen Warren > ; Stephen Warren

Re: [U-Boot] [PATCH 0/4] tegra: Move tegra20 towards the 'new' display bindings

2016-01-19 Thread Stephen Warren
On 01/18/2016 06:58 PM, Simon Glass wrote: Hi Stephen, On 18 January 2016 at 12:52, Stephen Warren wrote: On 01/14/2016 04:12 PM, Simon Glass wrote: Hi Lucas, On 14 January 2016 at 13:34, Lucas Stach wrote: Am Donnerstag, den 14.01.2016, 13:26

Re: [U-Boot] [PATCH] ARMv8:ls2-2080a: Implement core ERRATA 829520, 833471

2016-01-19 Thread york sun
On 01/17/2016 11:15 PM, Ashish Kumar wrote: > * 829520: Code bounded by indirect conditional branch might corrupt > instruction stream, > Workaround: Set CPUACTLR_EL1[4] = 1'b1 to disable the Indirect Predictor > > * 833471: VMSR FPSCR functional failure or deadlock > Workaround: Set

[U-Boot] [PATCH] ARM: uniphier: remove unneeded if conditionals

2016-01-19 Thread Masahiro Yamada
The if block does the same as the else block does. The conditional is not necessary at all. Signed-off-by: Masahiro Yamada --- arch/arm/mach-uniphier/dram/ddrphy-ph1-pro4.c | 10 ++ 1 file changed, 2 insertions(+), 8 deletions(-) diff --git

Re: [U-Boot] Banan Pro (ahci-sunxi) SATA port stopped working after switching to U-Boot v2016.01

2016-01-19 Thread Tom Rini
On Sun, Jan 17, 2016 at 09:44:53PM +0100, Markus Baier wrote: > Hello, > > tonight I switched to the new U-Boot v2016.01 > on my Banana Pro system. > I compiled u-boot, like I did with all the working > versions before, with: > make Bananapro_defconfig > make > > But with the new U-Boot

Re: [U-Boot] [PATCH 4/4] ARM: sheevaplug: correct nand partition layout

2016-01-19 Thread Tom Rini
On Sun, Jan 17, 2016 at 06:23:45PM +0100, Peter Korsgaard wrote: > Commit 1e3d640316 (ARM: sheevaplug: redefine MTDPARTS) changed the partition > layout (without any description why), but didn't change the offset/size to > load the kernel from or the root=/dev/mtdblockX in the bootargs. > > The

Re: [U-Boot] [PATCH 1/2] x86: x86-common.h: Add CONFIG_BOOTDELAY

2016-01-19 Thread Tom Rini
On Mon, Jan 18, 2016 at 02:49:56PM +0100, Stefan Roese wrote: > Without this CONFIG_BOOTDELAY, autobooting does not work at all. As > autoboot_command() from common/* will not get called. So lets define > CONFIG_BOOTDELAY, so that auto-booting works on x86. > > Signed-off-by: Stefan Roese

Re: [U-Boot] [PATCH] bug.h: move BUILD_BUG_* defines to include/linux/bug.h

2016-01-19 Thread Tom Rini
On Mon, Jan 18, 2016 at 09:12:08PM +0900, Masahiro Yamada wrote: > BUILD_BUG_* macros have been defined in several headers. It would > be nice to collect them in include/linux/bug.h like Linux. > > Signed-off-by: Masahiro Yamada Reviewed-by: Tom Rini

Re: [U-Boot] [PATCH 00/17] arm: ls1021atwr: Convert to use driver model TSEC driver

2016-01-19 Thread york sun
On 01/17/2016 09:16 PM, Bin Meng wrote: > Joe, York, > > On Tue, Jan 12, 2016 at 2:41 PM, Bin Meng wrote: >> This series adds driver model ethernet support to the Freescale >> TSEC ethernet driver and convert ls1021atwr board to use it. >> >> Enable the support in the

<    1   2