[U-Boot] [PATCH 1/2] test/py: use " for docstrings

2016-01-26 Thread Stephen Warren
From: Stephen Warren Python's coding style docs indicate to use " not ' for docstrings. test/py has other violations of the coding style docs, since the docs specify a stranger style than I would expect, but nobody has complained about those yet:-) Signed-off-by: Stephen

Re: [U-Boot] [PATCH v2 0/2] net: phy: mv88e61xx: Revise as a PHY driver

2016-01-26 Thread Albert ARIBAUD
Hello Kevin, On Tue, 26 Jan 2016 16:56:21 +, Kevin Smith wrote: > Hi Albert, > > On 01/26/2016 10:13 AM, Joe Hershberger wrote: > > Hi Albert, > > > > On Tue, Jan 26, 2016 at 10:09 AM, Albert ARIBAUD > > wrote: > >> Hello Kevin, > >>

[U-Boot] [PATCH] test/py: Provide custom IDs when parametrizing tests

2016-01-26 Thread Stephen Warren
From: Stephen Warren When pytest generates the name for parametrized tests, simple parameter values (ints, strings) get used directly, but more complex values such as dicts are not handled. This yields test names such as: dfu[env__usb_dev_port0-env__dfu_config0]

[U-Boot] Sandbox DT for testing (unit tests)

2016-01-26 Thread Stephen Warren
Simon, I noticed that under sandbox, "ut dm" needs sandbox to have been started with arch/sandbox/dts/test.dtb. A few questions related to that: a) Is it safe and does it make sense to always use that DT when running Sandbox for tests (e.g. under test/py)? b) Does it make sense for that DT

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

2016-01-26 Thread Tom Rini
On Mon, Jan 25, 2016 at 08:49:38PM +, york sun wrote: > Tom, > > The following changes since commit 12f229ea8f6c8e20f8fd07906eafc853c4c354a9: > > Merge git://git.denx.de/u-boot-fdt (2016-01-22 17:01:22 -0500) > > are available in the git repository at: > > >

Re: [U-Boot] [PULL] u-boot-usb/master

2016-01-26 Thread Tom Rini
On Mon, Jan 25, 2016 at 11:21:57PM +0100, Marek Vasut wrote: > The following changes since commit 12f229ea8f6c8e20f8fd07906eafc853c4c354a9: > > Merge git://git.denx.de/u-boot-fdt (2016-01-22 17:01:22 -0500) > > are available in the git repository at: > > git://git.denx.de/u-boot-usb.git

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

2016-01-26 Thread Tom Rini
On Tue, Jan 26, 2016 at 08:14:43AM +0100, Anatolij Gustschin wrote: > Hi Tom, > > The following changes since commit 12f229ea8f6c8e20f8fd07906eafc853c4c354a9: > > Merge git://git.denx.de/u-boot-fdt (2016-01-22 17:01:22 -0500) > > are available in the git repository at: > > >

Re: [U-Boot] [PATCH] mips: asm/io.h: Add in

2016-01-26 Thread Tom Rini
On Mon, Jan 25, 2016 at 06:53:06PM -0500, Tom Rini wrote: > As part of the bug.h / BUILD_BUG_* clean up, this file was missed. > > Signed-off-by: Tom Rini Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [PATCH] mmc: add missing prototype for mmc_get_env_dev

2016-01-26 Thread Tom Rini
On Tue, Jan 26, 2016 at 04:20:38PM +0100, Clemens Gruber wrote: > This is a follow-up patch to e92029c0f4 and adds a prototype for > the weak mmc_get_env_dev function. > > Cc: Tom Rini > Cc: Stephen Warren > > Signed-off-by: Clemens Gruber

Re: [U-Boot] [PATCH 2/2] test/py: Quote consistency

2016-01-26 Thread Simon Glass
On 26 January 2016 at 13:41, Stephen Warren wrote: > From: Stephen Warren > > When converting test/py from " to ', I missed a few places (or added a > few inconsistencies later). Fix these. > > Note that only quotes in code are converted; double-quotes

Re: [U-Boot] [PATCH] test/py: Provide custom IDs when parametrizing tests

2016-01-26 Thread Simon Glass
Hi Stephen, On 26 January 2016 at 15:26, Stephen Warren wrote: > From: Stephen Warren > > When pytest generates the name for parametrized tests, simple parameter > values (ints, strings) get used directly, but more complex values such > as dicts are

Re: [U-Boot] Sandbox DT for testing (unit tests)

2016-01-26 Thread Simon Glass
Hi Stephen, On 26 January 2016 at 15:36, Stephen Warren wrote: > Simon, > > I noticed that under sandbox, "ut dm" needs sandbox to have been started > with arch/sandbox/dts/test.dtb. A few questions related to that: > > a) Is it safe and does it make sense to always use

Re: [U-Boot] [PATCH 1/2] test/py: use " for docstrings

2016-01-26 Thread Simon Glass
On 26 January 2016 at 13:41, Stephen Warren wrote: > From: Stephen Warren > > Python's coding style docs indicate to use " not ' for docstrings. > > test/py has other violations of the coding style docs, since the docs > specify a stranger style than I

Re: [U-Boot] [PATCH] test/py: Provide custom IDs when parametrizing tests

2016-01-26 Thread Stephen Warren
On 01/26/2016 04:08 PM, Simon Glass wrote: Hi Stephen, On 26 January 2016 at 15:26, Stephen Warren wrote: From: Stephen Warren When pytest generates the name for parametrized tests, simple parameter values (ints, strings) get used directly, but

Re: [U-Boot] [PATCH] malloc: work around some memalign fragmentation issues

2016-01-26 Thread Tom Rini
On Tue, Jan 26, 2016 at 09:27:02AM -0700, Stephen Warren wrote: > On 01/26/2016 01:54 AM, Lukasz Majewski wrote: > >Hi Stephen, > > > >>From: Stephen Warren > >> > >>Use of memalign can trigger fragmentation issues such as: > >> > >>// Internally, this needs to find a free

Re: [U-Boot] Sandbox DT for testing (unit tests)

2016-01-26 Thread Stephen Warren
On 01/26/2016 04:08 PM, Simon Glass wrote: Hi Stephen, On 26 January 2016 at 15:36, Stephen Warren wrote: Simon, I noticed that under sandbox, "ut dm" needs sandbox to have been started with arch/sandbox/dts/test.dtb. A few questions related to that: a) Is it safe and

Re: [U-Boot] Sandbox DT for testing (unit tests)

2016-01-26 Thread Simon Glass
Hi Stephen, On 26 January 2016 at 16:28, Stephen Warren wrote: > On 01/26/2016 04:08 PM, Simon Glass wrote: >> >> Hi Stephen, >> >> On 26 January 2016 at 15:36, Stephen Warren wrote: >>> >>> Simon, >>> >>> I noticed that under sandbox, "ut dm" needs

Re: [U-Boot] [PATCH v2 2/2] net: phy: Add PHY driver for mv88e61xx switches

2016-01-26 Thread Joe Hershberger
Hi Kevin, On Mon, Dec 21, 2015 at 3:45 PM, Kevin Smith wrote: > The previous mv88e61xx driver was a driver for configuring the > switch, but did not integrate with the PHY/networking system, so > it could not be used as a PHY by U-boot. This is a complete > rework

[U-Boot] question regarding USB gadget driver (dwc2)

2016-01-26 Thread Steve Rae
Hi Marek & Lukasz, I have an issue running fastboot on my board (which is USB_SPEED_HIGH): => fastboot0 failed to enable in ep failed to enable in ep failed to enable in ep Because of this, fastboot does not even initialize properly, and I need to "^C" to break out… I have

Re: [U-Boot] [PATCH v7 5/7] mips: ath79: add spi driver

2016-01-26 Thread Marek Vasut
On Saturday, January 16, 2016 at 07:13:51 PM, Wills Wang wrote: > Reviewed-by: Thomas Chou > > Signed-off-by: Wills Wang > --- > > Changes in v7: > - Define spi_cs_activate/spi_cs_deactivate > - Rename MHZ to ATH79_SPI_MHZ > - Use clrsetbits_32 The

Re: [U-Boot] question regarding USB gadget driver (dwc2)

2016-01-26 Thread Marek Vasut
On Wednesday, January 27, 2016 at 01:35:55 AM, Steve Rae wrote: > Hi Marek & Lukasz, > > > I have an issue running fastboot on my board (which is USB_SPEED_HIGH): > > => fastboot0 > > failed to enable in ep > > failed to enable in ep > > failed to enable in ep > > Because of

Re: [U-Boot] [PATCH] mmc: add missing prototype for mmc_get_env_dev

2016-01-26 Thread Peng Fan
On Tue, Jan 26, 2016 at 04:20:38PM +0100, Clemens Gruber wrote: >This is a follow-up patch to e92029c0f4 and adds a prototype for >the weak mmc_get_env_dev function. > >Cc: Tom Rini >Cc: Stephen Warren > >Signed-off-by: Clemens Gruber

Re: [U-Boot] buildman errors

2016-01-26 Thread Bin Meng
Hi Tom, On Tue, Jan 26, 2016 at 10:47 PM, Tom Rini wrote: > On Tue, Jan 26, 2016 at 12:26:07PM +0800, Bin Meng wrote: >> Hi Tom, >> >> On Mon, Jan 25, 2016 at 10:12 PM, Tom Rini wrote: >> > On Mon, Jan 25, 2016 at 11:18:26AM +0800, Bin Meng wrote: >> >>

Re: [U-Boot] question regarding USB gadget driver (dwc2)

2016-01-26 Thread Steve Rae
On 16-01-26 05:35 PM, Marek Vasut wrote: On Wednesday, January 27, 2016 at 01:35:55 AM, Steve Rae wrote: Hi Marek & Lukasz, I have an issue running fastboot on my board (which is USB_SPEED_HIGH): => fastboot0 failed to enable in ep failed to enable in ep failed to

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

2016-01-26 Thread Tom Rini
On Tue, Jan 26, 2016 at 08:51:38PM +0100, Hans de Goede wrote: > Hi Tom, > > Here is the first sunxi pull-req for v2016.04, it > contains various fixes / improvements all over the place. > > The following changes since commit ac01603da4598b4b34ff3a5c428aa925daa12b60: > > checkpatch: ignore

[U-Boot] [PATCH v2 1/3] ARM: at91: clock: add PLLB enable/disable functions

2016-01-26 Thread Wenyou Yang
To avoid the duplicated code, add the PLLB handle functions. Signed-off-by: Wenyou Yang Reviewed-by: Andreas Bießmann --- Changes in v2: None arch/arm/mach-at91/arm926ejs/clock.c | 38 +

[U-Boot] [PATCH v2 0/3] ARM: at91: add PLLB handle functions

2016-01-26 Thread Wenyou Yang
To reduce the duplicated code, add PLLB enable/disable functions, replace the UTMI PLL handle code with these functions. It is based on the following patch set. [PATCH 0/5] ARM: at91: improve peripheral and system clock handle functions [PATCH 0/4] ARM: at91: add UTMI PLL handle

[U-Boot] [PATCH v2 3/3] board: atmel: siemens: clean up PLLB code

2016-01-26 Thread Wenyou Yang
Due to introducing the new PLLB clock handle functions, use these functions to clean up the PLLB enable code. Signed-off-by: Wenyou Yang Reviewed-by: Andreas Bießmann --- Changes in v2: - collect Reviewed-by from Andreas.

Re: [U-Boot] buildman errors

2016-01-26 Thread Tom Rini
On Wed, Jan 27, 2016 at 09:55:02AM +0800, Bin Meng wrote: > Hi Tom, > > On Tue, Jan 26, 2016 at 10:47 PM, Tom Rini wrote: > > On Tue, Jan 26, 2016 at 12:26:07PM +0800, Bin Meng wrote: > >> Hi Tom, > >> > >> On Mon, Jan 25, 2016 at 10:12 PM, Tom Rini

[U-Boot] [PATCH v2 2/3] drivers: usb: ohci-at91: clean up the PLLB code

2016-01-26 Thread Wenyou Yang
Due to introducing the new PLLB clock handle functions, use these functions to clean up the PLLB enable/disable code. Signed-off-by: Wenyou Yang --- Changes in v2: - add return value for timeout checking at91_pllb_clk_enable/disable(). drivers/usb/host/ohci-at91.c |

Re: [U-Boot] question regarding USB gadget driver (dwc2)

2016-01-26 Thread Marek Vasut
On Wednesday, January 27, 2016 at 02:58:38 AM, Steve Rae wrote: > On 16-01-26 05:35 PM, Marek Vasut wrote: > > On Wednesday, January 27, 2016 at 01:35:55 AM, Steve Rae wrote: > >> Hi Marek & Lukasz, > >> > >> I have an issue running fastboot on my board (which is USB_SPEED_HIGH): > >> =>

[U-Boot] [PATCH 5/5] usb: ehci: Be explicit about the BE IO accessors

2016-01-26 Thread Marek Vasut
Add explicit cpu_to_be32()/be32_to_cpu() conversion to BE EHCI I/O accessors to align them with their LE counterpart. No functional change. Signed-off-by: Marek Vasut Cc: Daniel Schwierzeck Cc: Hans de Goede ---

[U-Boot] [PATCH 1/5] mips: cache: Bulletproof the code against cornercases

2016-01-26 Thread Marek Vasut
This patch makes sure that the flush/invalidate_dcache_range() functions can handle corner-case calls like this -- invalidate_dcache_range(0, 0, 0); This call is valid and is happily produced by USB EHCI code for example. The expected behavior of the cache function(s) in this case is that they

[U-Boot] [PATCH 4/5] usb: ehci: Clear USBMODE_BE on LE MMIO

2016-01-26 Thread Marek Vasut
If the USB EHCI is configured for little endian MMIO, make sure to clear the USBMODE_BE flag from the USBMODE register. Signed-off-by: Marek Vasut Cc: Daniel Schwierzeck Cc: Hans de Goede --- drivers/usb/host/ehci-hcd.c | 2 ++

[U-Boot] [PATCH 2/5] usb: ehci: Use map_physmem in ehci-generic

2016-01-26 Thread Marek Vasut
Some architectures, like MIPS, require remapping of the registers. Add the map_physmem() call to handle it. Signed-off-by: Marek Vasut Cc: Daniel Schwierzeck Cc: Hans de Goede Cc: Masahiro Yamada

[U-Boot] [PATCH 3/5] usb: ehci: Implement V2P mapping

2016-01-26 Thread Marek Vasut
Certain processor architectures, like MIPS, require that the USB structures and transfer buffers are passed with their PA to the USB controller. If VA is passed, the USB will not work. Add the necessary virt_to_phys() calls into the USB EHCI code to make it work. Signed-off-by: Marek Vasut

Re: [U-Boot] [PATCH] armv7: add cacheline sizes where missing

2016-01-26 Thread Tom Rini
On Tue, Jan 26, 2016 at 05:40:49PM +0100, Albert ARIBAUD wrote: > Some armv7 targets are missing a cache line size declaration. > In preparation for "arm: cache: Implement cache range check for v7" > patch, add these declarations with the appropriate value for > the target's SoC or CPU. > >

[U-Boot] [patch resend] nand: mxs: fix error handling for mxs_nand_init

2016-01-26 Thread Peng Fan
Fix error handling for mxs_nand_init. The original error handling is wrong for err2 and err1. Should first free desc[x], then free desc. This patch also correctly handle err3, should use MXS_DMA_CHANNEL_AHB_APBH_GPMI0 as the check point. Cc: Stefano Babic CC: Fabio Estevam

[U-Boot] [PATCH] serial: serial_stm32: move clock config from driver to board

2016-01-26 Thread Vikas Manocha
This patch removes the uart clock enable from serial driver & move it in the board code. Signed-off-by: Vikas Manocha --- arch/arm/include/asm/arch-stm32f4/stm32_defs.h | 15 arch/arm/include/asm/arch-stm32f4/stm32_periph.h | 27 +++

Re: [U-Boot] [PATCH 3/4] spi: omap3: Convert to DM

2016-01-26 Thread Peng Fan
On Tue, Jan 26, 2016 at 10:12:10AM -0500, Tom Rini wrote: >On Tue, Jan 26, 2016 at 10:58:47AM +0800, Peng Fan wrote: >> On Mon, Jan 25, 2016 at 09:45:47PM -0500, Tom Rini wrote: >> >On Tue, Jan 26, 2016 at 09:55:43AM +0800, Peng Fan wrote: >> >> Hi Simon, >> >> >> >> On Mon, Jan 25, 2016 at

Re: [U-Boot] [patch resend] nand: mxs: fix error handling for mxs_nand_init

2016-01-26 Thread Marek Vasut
On Wednesday, January 27, 2016 at 03:38:02 AM, Peng Fan wrote: > Fix error handling for mxs_nand_init. > > The original error handling is wrong for err2 and err1. > Should first free desc[x], then free desc. > > This patch also correctly handle err3, should use > MXS_DMA_CHANNEL_AHB_APBH_GPMI0

Re: [U-Boot] [PATCH] rpi: fix up Model B entries

2016-01-26 Thread Stephen Warren
On 01/25/2016 01:36 PM, Lubomir Rintel wrote: > It seems like the P5 header was not present on "Model B" any board prior > to Revision 2.0, there's no need for a separate device tree. > > Also, it looks like "rev2" is incorrectly used to only cover the 512MiB > memory models; there also were

[U-Boot] [PATCHv3 7/9] arm: vybrid: Update defconfig's

2016-01-26 Thread Bhuvanchandra DV
Let's go with pure DT solution for board's based on NXP/Freescale Vybrid platform. - Merge the DT defconfig with non-DT defconfig for Toradex Colibri VF50/VF61 and drop the non-DT defconfig. - Update the legacy defconfigs for NXP/Freescale VF610 Tower Board with DT. - Update the legacy

[U-Boot] [PATCHv3 8/9] dm: lpuart: Drop the legacy code

2016-01-26 Thread Bhuvanchandra DV
All boards using this driver are with device tree support, hence drop the legacy code in driver to have a pure DT solution. Signed-off-by: Bhuvanchandra DV Reviewed-by: Bin Meng --- drivers/serial/serial_lpuart.c | 101

[U-Boot] [PATCHv3 6/9] arm: pcm052: Add device tree file's

2016-01-26 Thread Bhuvanchandra DV
- Add device tree files for Phytec phyCORE-Vybrid Board. - Enable lpuart support for Phytec phyCORE-Vybrid Board. - Use UART1 for stdout. Signed-off-by: Bhuvanchandra DV --- arch/arm/dts/Makefile | 3 ++- arch/arm/dts/pcm052.dts | 22 ++ 2

[U-Boot] [PATCH 14/22] configs/xilinx-ppc405-generic: Typos and size

2016-01-26 Thread Ricardo Ribalda Delgado
-Fix typos (runnining -> running) -Increase default size Signed-off-by: Ricardo Ribalda Delgado --- include/configs/xilinx-ppc405-generic.h | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/configs/xilinx-ppc405-generic.h

[U-Boot] [PATCH 13/22] ppc: dts: Add device tree for xilix-ppc4xx-generic

2016-01-26 Thread Ricardo Ribalda Delgado
Add device tree example file for xilinx-ppc440-generic and xilinx-ppc405-generic Signed-off-by: Ricardo Ribalda Delgado --- arch/powerpc/dts/Makefile | 2 ++ arch/powerpc/dts/xilinx-ppc405-generic.dts | 13 +

[U-Boot] [PATCH 12/22] ppc: xilinx-ppc4xx-generic: Update xparameters.h

2016-01-26 Thread Ricardo Ribalda Delgado
-Remove UART address (It is now part of the dts). -Include dummy ns16550 clock -Fix address to last test Signed-off-by: Ricardo Ribalda Delgado --- board/xilinx/ppc405-generic/xparameters.h | 5 ++--- board/xilinx/ppc440-generic/xparameters.h | 9 - 2 files

[U-Boot] [PATCH 08/22] ppc: ppc440: ppc440-generic_flash_defconfig

2016-01-26 Thread Ricardo Ribalda Delgado
Remove redundant defconfig file. Boot via flash can be configured via Kconfig. Signed-off-by: Ricardo Ribalda Delgado --- configs/xilinx-ppc440-generic_flash_defconfig | 8 1 file changed, 8 deletions(-) delete mode 100644

[U-Boot] [PATCH 06/22] ppc: pp405-generic: Simplify Makefile

2016-01-26 Thread Ricardo Ribalda Delgado
As a result of the specific board removal, the Makefiles can be simplified. Signed-off-by: Ricardo Ribalda Delgado --- board/xilinx/ppc405-generic/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/xilinx/ppc405-generic/Makefile

Re: [U-Boot] [PATCHv3 6/9] arm: pcm052: Add device tree file's

2016-01-26 Thread Bin Meng
On Tue, Jan 26, 2016 at 5:46 PM, Bhuvanchandra DV wrote: > - Add device tree files for Phytec phyCORE-Vybrid Board. > - Enable lpuart support for Phytec phyCORE-Vybrid Board. > - Use UART1 for stdout. > > Signed-off-by: Bhuvanchandra DV

Re: [U-Boot] [PATCHv3 2/9] arm: vybrid: Update the license string

2016-01-26 Thread Bin Meng
On Tue, Jan 26, 2016 at 5:46 PM, Bhuvanchandra DV wrote: > Since SPDX license is already there, drop the full one. > > Signed-off-by: Bhuvanchandra DV > --- > arch/arm/dts/vf-colibri.dtsi | 5 - > arch/arm/dts/vf.dtsi |

Re: [U-Boot] [PATCHv3 5/9] arm: vf610-twr: Add device tree file's

2016-01-26 Thread Bin Meng
On Tue, Jan 26, 2016 at 5:46 PM, Bhuvanchandra DV wrote: > - Add device tree files for NXP/Freescale VF610 Tower Board. > - Enable lpuart support on NXP/Freescale VF610 Tower Board. > - Use UART1 as stdout. > > Signed-off-by: Bhuvanchandra DV

Re: [U-Boot] [PATCHv3 7/9] arm: vybrid: Update defconfig's

2016-01-26 Thread Bin Meng
On Tue, Jan 26, 2016 at 5:46 PM, Bhuvanchandra DV wrote: > Let's go with pure DT solution for board's > based on NXP/Freescale Vybrid platform. > > - Merge the DT defconfig with non-DT defconfig for Toradex > Colibri VF50/VF61 and drop the non-DT defconfig. > -

[U-Boot] [PATCH v2 22/22] ppc: xilinx-ppc440-generic: Wire LL_TEMAC driver

2016-01-26 Thread Ricardo Ribalda Delgado
If the xparameters file contains a LL_TEMAC definition compile its driver and the net commands. Signed-off-by: Ricardo Ribalda Delgado --- v2: Add whitespaces after /* and before*/ Credit-to: Bin Meng

Re: [U-Boot] [PATCH v2 22/22] ppc: xilinx-ppc440-generic: Wire LL_TEMAC driver

2016-01-26 Thread Bin Meng
On Tue, Jan 26, 2016 at 8:47 PM, Ricardo Ribalda Delgado wrote: > If the xparameters file contains a LL_TEMAC definition compile its > driver and the net commands. > > Signed-off-by: Ricardo Ribalda Delgado > --- > > v2: Add whitespaces after

Re: [U-Boot] [PATCH 13/22] ppc: dts: Add device tree for xilix-ppc4xx-generic

2016-01-26 Thread Ricardo Ribalda Delgado
On Tue, Jan 26, 2016 at 1:21 PM, Bin Meng wrote: > Hi Ricardo, > > On Tue, Jan 26, 2016 at 6:24 PM, Ricardo Ribalda Delgado > wrote: >> Add device tree example file for xilinx-ppc440-generic and >> xilinx-ppc405-generic >> >> Signed-off-by: Ricardo

Re: [U-Boot] [PATCH v2 13/22] ppc: dts: Add device tree for xilix-ppc4xx-generic

2016-01-26 Thread Bin Meng
On Tue, Jan 26, 2016 at 8:47 PM, Ricardo Ribalda Delgado wrote: > Add device tree example file for xilinx-ppc440-generic and > xilinx-ppc405-generic > > Signed-off-by: Ricardo Ribalda Delgado > --- > arch/powerpc/dts/Makefile

Re: [U-Boot] [PATCH 22/22] ppc: xilinx-ppc440-generic: Wire LL_TEMAC driver

2016-01-26 Thread Ricardo Ribalda Delgado
Hello Bin On Tue, Jan 26, 2016 at 1:21 PM, Bin Meng wrote: > Hi Ricardo, > > On Tue, Jan 26, 2016 at 6:24 PM, Ricardo Ribalda Delgado > wrote: >> If the xparameters file contains a LL_TEMAC definition compile its >> driver and the net commands. >>

Re: [U-Boot] [PATCH v2 5/5] tools: Add tool to add crc8 to a mac address

2016-01-26 Thread Albert ARIBAUD
Hello Joe, On Mon, 25 Jan 2016 18:45:52 -0600, Joe Hershberger wrote: > On Mon, Dec 14, 2015 at 6:41 AM, Olliver Schinagl > wrote: > > +++ b/tools/gen_mac_addr.c > > This is not "generating a mac address", right? Its point is to create > a

[U-Boot] [PATCH v2 13/22] ppc: dts: Add device tree for xilix-ppc4xx-generic

2016-01-26 Thread Ricardo Ribalda Delgado
Add device tree example file for xilinx-ppc440-generic and xilinx-ppc405-generic Signed-off-by: Ricardo Ribalda Delgado --- arch/powerpc/dts/Makefile | 2 ++ arch/powerpc/dts/xilinx-ppc405-generic.dts | 15 +++

<    1   2   3