[U-Boot] Possible bug in U-Boot Exynos clock driver

2014-08-21 Thread Thierry Reding
Hi, I've been running a couple of builds for a patch that I'm working on and I noticed the following errors happening for all Exynos boards: arch/arm/cpu/armv7/exynos/clock.c: In function 'clock_get_periph_rate': arch/arm/cpu/armv7/exynos/clock.c:263:47: warning: array subscript i

Re: [U-Boot] [PATCH v4] Makefile: remove generated boards.cfg within make distclean

2014-08-21 Thread Masahiro Yamada
On Wed, 20 Aug 2014 22:10:29 +0200 Roger Meier wrote: > Signed-off-by: Roger Meier > Cc: Masahiro Yamada > Cc: Tom Rini > Cc: Wolfgang Denk > Cc: Simon Glass > Reviewed-by: Masahiro Yamada Tested-by: Masahiro Yamada ___ U-Boot mailing list

Re: [U-Boot] [RFC PATCH v2 2/2] tools: make genboardscfg.py compatible with Python 2.5

2014-08-21 Thread Masahiro Yamada
Tom, A litte more info: Buildman does not work on python 2.5. (only 2.6 and 2.7) No complaint about it so far. This tools is intended to be a work-around for using MAKEALL and Buildman, but we are removing the former. In that case, having only this tool support python 2.5 seems meaningless.

Re: [U-Boot] [RFC PATCH v2 2/2] tools: make genboardscfg.py compatible with Python 2.5

2014-08-21 Thread Masahiro Yamada
Tom, I noticed this patch's gone to RFC. Did you decide to drop python2.5 from support? If so, I will use "except ... as ..." and "with ... as ..." statements in my other patches. Best Regards Masahiro Yamada On Mon, 4 Aug 2014 19:23:14 +0900 Masahiro Yamada wrote: > The statement "exc

[U-Boot] [PATCH 2/2] buildman: run genboardscfg.py all the time

2014-08-21 Thread Masahiro Yamada
This commit makes sure boards.cfg is up to date before starting the build tests. tools/genboardscfg.py exits immediately printing "boards.cfg is up to date. Nothing to do." when boards.cfg is already new. Signed-off-by: Masahiro Yamada --- tools/buildman/control.py | 10 -- 1 file chan

[U-Boot] [PATCH 1/2] MAKEALL: run genboardscfg.py all the time

2014-08-21 Thread Masahiro Yamada
This commit makes sure boards.cfg is up to date before starting the build tests. tools/genboardscfg.py exits immediately printing "boards.cfg is up to date. Nothing to do." when boards.cfg is already new. Signed-off-by: Masahiro Yamada --- MAKEALL | 11 --- 1 file changed, 4 insertions

[U-Boot] [PATCH 0/2] MAKEALL, buildman: run genboardscfg.py to make sure boards.cfg is new

2014-08-21 Thread Masahiro Yamada
This series depends on the feature introduced by this commit: http://patchwork.ozlabs.org/patch/381622/ Masahiro Yamada (2): MAKEALL: run genboardscfg.py all the time buildman: run genboardscfg.py all the time MAKEALL | 11 --- tools/buildman/control.py | 10

[U-Boot] [PATCH] powerpc/8xxx: Fix in USB device-tree fixup

2014-08-21 Thread Ramneek Mehresh
Fix following issues in USB device-tree fixup: - returns when either dr_mode or phy_type not defined. This was terminating fix-up when only either property was defined in hwconfig string - updates dr_mode_type or dr_phy_type with junk value when their

[U-Boot] [PATCH] tools/genboardscfg.py: fix a bug of MAINTAINERS handling

2014-08-21 Thread Masahiro Yamada
This patch fixes a minor problem: If a block without "F: configs/*_defconfig" is followed by another block with "F: configs/*_defconfig", the maintainers from the former block are squashed into the latter. Signed-off-by: Masahiro Yamada --- tools/genboardscfg.py | 2 +- 1 file changed, 1 in

[U-Boot] [PATCH v2 7/7] tools/genboardscfg.py: improve performance

2014-08-21 Thread Masahiro Yamada
I guess some developers are already getting sick of this tool because it generally takes a few minites to generate the boards.cfg on a reasonable computer. This commit makes it about 4 times faster. You might still not be satisfied, but better than doing nothing. Signed-off-by: Masahiro Yamada A

Re: [U-Boot] newbie questions regarding some config options.

2014-08-21 Thread Chris
Wolfgang Denk denx.de> writes: > > Dear PHIL.EDWORTHY renesas.com, > > In message eu.necel.com> you wrote: > > > > > > U-boot is typically stored in flash and one of the first things it > > does when executed is relocate to ram. CONFIG_SYS_TEXT_BASE is the > > relocation address. Typically,

Re: [U-Boot] Call for participation in the U-Boot Mini Summit 2014

2014-08-21 Thread Masahiro Yamada
Hi Detlev, I'd like to have a presentation at U-Boot mini summit 2014. >8--- Kbuild and Kconfig for U-Boot Abstract: U-Boot has had big changes on its build system in the past year. Kbuild and Kconfig provide us a lot of benefites;

[U-Boot] [PATCH] nios2: remove obsolete PCI5441 and PK1C20 boards

2014-08-21 Thread Thomas Chou
Signed-off-by: Thomas Chou --- arch/nios2/Kconfig |8 -- board/psyent/common/AMDLV065D.c | 170 board/psyent/pci5441/Kconfig | 15 --- board/psyent/pci5441/MAINTAINERS |6 - board/psyent/pci5441/Makefile|8 -- board/psyent/pci5441

Re: [U-Boot] [PATCH v4] net: fec_mxc: Poll FEC_TBD_READY after polling TDAR

2014-08-21 Thread Li Ye-B37916
Hi Marek, On 8/22/2014 1:18 AM, Marek Vasut wrote: > On Thursday, August 21, 2014 at 07:10:32 PM, Fabio Estevam wrote: >> When testing the FEC driver on a mx6solox we noticed that the TDAR bit gets >> always cleared prior then the READY bit is set in the last BD, which causes >> FEC transmission t

[U-Boot] [PATCH] driver/ddr/fsl: Fix tXP and tCKE

2014-08-21 Thread York Sun
The driver was written using old DDR3 spec which only covers low speeds. The value would be suboptimal for higher speeds. Fix both timing according to latest DDR3 spec, remove tCKE as an config option. Signed-off-by: York Sun --- drivers/ddr/fsl/ctrl_regs.c | 28 ++--

[U-Boot] [PATCH v3 3/4] mtd: nand: add Freescale vf610_nfc driver

2014-08-21 Thread Bill Pringlemeir
> On 14 Aug 2014, ste...@agner.ch wrote: > This adds initial support for Freescale NFC (NAND Flash > Controller) found in ARM Vybrid SoC's, Power Architecture MPC5125 > and others. However, this driver is only tested on Vybrid. >>> On Wed, 2014-08-13 at 22:32, Scott Wood wrote:

Re: [U-Boot] U-boot for Banana Pi

2014-08-21 Thread Ian Campbell
On Thu, 2014-08-21 at 10:48 +0200, Michal Suchanek wrote: > Hello, > > On 20 August 2014 21:19, TooMeeK Admin wrote: > > Hello, > > > > I'm getting some troubles booting FreeBSD on Banana Pi. > > I wrote simple script that creates bootable SD card image for FreeBSD OS. > > > > #!/bin/bash > > cd

Re: [U-Boot] [PATCH] mx6: Fix cacheline size

2014-08-21 Thread Fabio Estevam
Hi Benoît, On Thu, Aug 21, 2014 at 5:13 PM, Benoît Thébaudeau wrote: > Yes, it's always 32 bytes for Cortex-A9. But does mx6solox really have > a standard Cortex-A9 core like all the currently released i.MX6 SoCs > (which seems to be the case according to > http://lwn.net/Articles/598434/), or a

Re: [U-Boot] [PATCH] mx6: Fix cacheline size

2014-08-21 Thread Benoît Thébaudeau
Hi Fabio, On Thu, Aug 21, 2014 at 9:11 PM, Fabio Estevam wrote: > On Thu, Aug 21, 2014 at 2:14 PM, Marek Vasut wrote: >> On Thursday, August 21, 2014 at 07:10:02 PM, Fabio Estevam wrote: >>> mx6 is an armv7 which has 64-byte cacheline size. >>> >>> Without this fix we are not able to get the FEC

Re: [U-Boot] [PATCH] sun7i: Add support for Olimex A20-OLinuXino-LIME

2014-08-21 Thread Ian Campbell
On Wed, 2014-08-20 at 14:37 +0900, FUKAUMI Naoki wrote: > This patch adds support for Olimex A20-OLinuXino-LIME board. > > Signed-off-by: FUKAUMI Naoki I think this looks like a pretty straight import from the linux-sunxi u-boot fork, massaged for changes from upstream, is that right? Looks goo

Re: [U-Boot] [PATCH] arm: fix missing exception handling

2014-08-21 Thread Benoît Thébaudeau
On Thu, Aug 21, 2014 at 8:36 AM, Christian Riesch wrote: > Benoît, > > On Wed, Aug 20, 2014 at 12:47 PM, Benoît Thébaudeau > wrote: >> On Wed, Aug 20, 2014 at 9:21 AM, Christian Riesch >> wrote: >>> On Tue, Aug 19, 2014 at 8:35 PM, Benoît Thébaudeau >>> wrote: Commit 41623c9 'arm: move exc

Re: [U-Boot] [PATCH] mx6: Fix cacheline size

2014-08-21 Thread Fabio Estevam
On Thu, Aug 21, 2014 at 2:14 PM, Marek Vasut wrote: > On Thursday, August 21, 2014 at 07:10:02 PM, Fabio Estevam wrote: >> mx6 is an armv7 which has 64-byte cacheline size. >> >> Without this fix we are not able to get the FEC driver to work on mx6solox. >> >> 64-byte cacheline is also used by the

Re: [U-Boot] [Patch v2 3/5] armv8/fsl-lsch3: Release secondary cores from boot hold off with Boot Page

2014-08-21 Thread bhupesh.sha...@freescale.com
Hi Mark, > -Original Message- > From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] > On Behalf Of York Sun > Sent: Friday, August 22, 2014 12:03 AM > To: Mark Rutland; Basu Arnab-B45036 > Cc: tr...@ti.com; u-boot@lists.denx.de; Wood Scott-B07421 > Subject: Re: [U-Boo

Re: [U-Boot] Treat warnings different from errors in buildman?

2014-08-21 Thread Tom Rini
On Thu, Aug 21, 2014 at 12:53:42PM -0400, Tom Rini wrote: > Hey, > > So as I migrate scripts over to buildman, one issue I have is that > today warning and errors are treated the same: > u-boot (master)$ ./tools/buildman/buildman -b master -c 1 -ve -T 1 -j 9 > 'arc|blackfin|microblaze|m68k|nds32

Re: [U-Boot] [Patch v2 3/5] armv8/fsl-lsch3: Release secondary cores from boot hold off with Boot Page

2014-08-21 Thread York Sun
On 08/21/2014 06:47 AM, Mark Rutland wrote: > Hi York, > > I have mostly minor comments this time; this is looking pretty good. > > On Tue, Aug 19, 2014 at 09:28:00PM +0100, York Sun wrote: >> Secondary cores need to be released from holdoff by boot release >> registers. With GPP bootrom, they ca

Re: [U-Boot] [UBOOT RFC PATCH 11/13] commom: usb: implement "__weak" functions to make compiler happy

2014-08-21 Thread Tom Rini
On Tue, Aug 19, 2014 at 09:44:20PM +0530, Kishon Vijay Abraham I wrote: > > > On Tuesday 19 August 2014 01:58 PM, Lukasz Majewski wrote: > > Hi Kishon, > > > >> Implemented __weak functions for board_usb_cleanup, > >> board_usb_gadget_handle_interrupts and usb_gadget_handle_interrupts > >> to ge

Re: [U-Boot] [PATCH] mx6: Fix cacheline size

2014-08-21 Thread Fabio Estevam
On Thu, Aug 21, 2014 at 2:14 PM, Marek Vasut wrote: > On Thursday, August 21, 2014 at 07:10:02 PM, Fabio Estevam wrote: >> mx6 is an armv7 which has 64-byte cacheline size. >> >> Without this fix we are not able to get the FEC driver to work on mx6solox. >> >> 64-byte cacheline is also used by the

Re: [U-Boot] [PATCH] mx6: Fix cacheline size

2014-08-21 Thread Marek Vasut
On Thursday, August 21, 2014 at 07:10:02 PM, Fabio Estevam wrote: > mx6 is an armv7 which has 64-byte cacheline size. > > Without this fix we are not able to get the FEC driver to work on mx6solox. > > 64-byte cacheline is also used by the kernel on ARMv7, so fix it > accordingly. It's not a ker

Re: [U-Boot] [PATCH v4] net: fec_mxc: Poll FEC_TBD_READY after polling TDAR

2014-08-21 Thread Marek Vasut
On Thursday, August 21, 2014 at 07:10:32 PM, Fabio Estevam wrote: > When testing the FEC driver on a mx6solox we noticed that the TDAR bit gets > always cleared prior then the READY bit is set in the last BD, which causes > FEC transmission to fail. > > As explained by Ye Li: > > "The TDAR bit is

[U-Boot] Pull request: u-boot-staging

2014-08-21 Thread Anatolij Gustschin
Hey Tom, The following changes since commit e49f14af1349eef94e41b636320bbfcace7403b5: patman: Only use git's --no-decorate when available (2014-08-13 08:34:16 -0600) are available in the git repository at: git://git.denx.de/u-boot-staging.git ag...@denx.de for you to fetch changes up to 9

[U-Boot] [PATCH] mx6: Fix cacheline size

2014-08-21 Thread Fabio Estevam
mx6 is an armv7 which has 64-byte cacheline size. Without this fix we are not able to get the FEC driver to work on mx6solox. 64-byte cacheline is also used by the kernel on ARMv7, so fix it accordingly. Signed-off-by: Fabio Estevam --- arch/arm/include/asm/arch-mx6/imx-regs.h | 2 +- 1 file c

[U-Boot] [PATCH v4] net: fec_mxc: Poll FEC_TBD_READY after polling TDAR

2014-08-21 Thread Fabio Estevam
When testing the FEC driver on a mx6solox we noticed that the TDAR bit gets always cleared prior then the READY bit is set in the last BD, which causes FEC transmission to fail. As explained by Ye Li: "The TDAR bit is set when the descriptors are all out from TX ring, but the descriptor properly

Re: [U-Boot] [PATCH v3 1/2] net: fec_mxc: Adjust RX DMA alignment for mx6solox

2014-08-21 Thread Marek Vasut
On Thursday, August 21, 2014 at 06:41:26 PM, Fabio Estevam wrote: > On Thu, Aug 21, 2014 at 1:21 PM, Marek Vasut wrote: > > Isn't MX6SX ARMv7 with 64-byte cacheline alignment anyway ? So isn't > > there something completely else broken on MX6SX ? > > Thanks for the review, Marek. > > Inspecting

[U-Boot] Treat warnings different from errors in buildman?

2014-08-21 Thread Tom Rini
Hey, So as I migrate scripts over to buildman, one issue I have is that today warning and errors are treated the same: u-boot (master)$ ./tools/buildman/buildman -b master -c 1 -ve -T 1 -j 9 'arc|blackfin|microblaze|m68k|nds32|sparc|x86|aarch64|sandbox|mips' -s Summary of 1 commit for 128 boards

Re: [U-Boot] [PATCH v3 1/2] net: fec_mxc: Adjust RX DMA alignment for mx6solox

2014-08-21 Thread Fabio Estevam
On Thu, Aug 21, 2014 at 1:21 PM, Marek Vasut wrote: > Isn't MX6SX ARMv7 with 64-byte cacheline alignment anyway ? So isn't there > something completely else broken on MX6SX ? Thanks for the review, Marek. Inspecting this further I think the correct fix would be: arch/arm/include/asm/arch-mx6/

Re: [U-Boot] [PATCH v3 2/2] net: fec_mxc: Poll FEC_TBD_READY after polling TDAR

2014-08-21 Thread Marek Vasut
On Thursday, August 21, 2014 at 06:12:09 PM, Fabio Estevam wrote: > When testing the FEC driver on a mx6solox we noticed that the TDAR bit gets > always cleared prior then the READY bit is set in the last BD, which causes > FEC transmission to fail. > > As explained by Ye Li: > > "The TDAR bit is

Re: [U-Boot] [PATCH v3 1/2] net: fec_mxc: Adjust RX DMA alignment for mx6solox

2014-08-21 Thread Marek Vasut
On Thursday, August 21, 2014 at 06:12:08 PM, Fabio Estevam wrote: > mx6solox has a requirement for 64 bytes alignment for RX DMA transfer. > Other SoCs work with the standard 32 bytes alignment. > > Adjust it accordingly by using 64 bytes aligment in the FEC RX DMA buffers, > which addresses the n

[U-Boot] [PATCH v3 2/2] net: fec_mxc: Poll FEC_TBD_READY after polling TDAR

2014-08-21 Thread Fabio Estevam
When testing the FEC driver on a mx6solox we noticed that the TDAR bit gets always cleared prior then the READY bit is set in the last BD, which causes FEC transmission to fail. As explained by Ye Li: "The TDAR bit is set when the descriptors are all out from TX ring, but the descriptor properly

[U-Boot] [PATCH v3 1/2] net: fec_mxc: Adjust RX DMA alignment for mx6solox

2014-08-21 Thread Fabio Estevam
mx6solox has a requirement for 64 bytes alignment for RX DMA transfer. Other SoCs work with the standard 32 bytes alignment. Adjust it accordingly by using 64 bytes aligment in the FEC RX DMA buffers, which addresses the needs from mx6solox and also works for the other SoCs. Signed-off-by: Fabio

Re: [U-Boot] [PATCH 4/9] ARM: Implement non-cached memory support

2014-08-21 Thread Thierry Reding
On Wed, Aug 20, 2014 at 01:23:13PM -0600, Stephen Warren wrote: > On 08/18/2014 02:00 AM, Thierry Reding wrote: > >From: Thierry Reding > > > >Implement an API that can be used by drivers to allocate memory from a > >poll that is mapped uncached. This is useful if drivers would otherwise > > s/po

Re: [U-Boot] [PATCH 0/9] net: rtl8169: Fix cache maintenance issues

2014-08-21 Thread Thierry Reding
On Wed, Aug 20, 2014 at 01:12:20PM -0600, Stephen Warren wrote: > On 08/18/2014 02:00 AM, Thierry Reding wrote: > >From: Thierry Reding > > > >This series attempts to fix a long-standing problem in the rtl8169 driver > >(though the same problem may exist in other drivers as well). Let me first > >

Re: [U-Boot] [UBOOT RFC PATCH 07/13] usb: gadget: g_dnl: Explicitly set the max packet size in descriptor

2014-08-21 Thread Felipe Balbi
On Thu, Aug 21, 2014 at 10:00:46AM +0200, Lukasz Majewski wrote: > Hi Felipe, > > > On Wed, Aug 20, 2014 at 09:34:13AM +0200, Lukasz Majewski wrote: > > > Hi Felipe, > > > > > > > On Tue, Aug 19, 2014 at 09:08:00PM +0530, Kishon Vijay Abraham I > > > > wrote: > > > > > > > > > > > > > > > On Mo

Re: [U-Boot] [Patch v2 3/5] armv8/fsl-lsch3: Release secondary cores from boot hold off with Boot Page

2014-08-21 Thread Mark Rutland
Hi York, I have mostly minor comments this time; this is looking pretty good. On Tue, Aug 19, 2014 at 09:28:00PM +0100, York Sun wrote: > Secondary cores need to be released from holdoff by boot release > registers. With GPP bootrom, they can boot from main memory > directly. Individual spin tabl

[U-Boot] [PATCH v2] arm: Add missing .vectors section to linker scripts

2014-08-21 Thread Benoît Thébaudeau
Commit 41623c9 'arm: move exception handling out of start.S files' missed some linker scripts. Hence, some boards no longer had exception handling linked since this commit. Restore the original behavior by adding the .vectors section to these linker scripts. Signed-off-by: Benoît Thébaudeau Cc: A

[U-Boot] [PATCH] mx6dlsabresd: Use its own DCD table

2014-08-21 Thread Fabio Estevam
Currently mx6dlsabresd shares the same DCD settings with the nitrogen board. Provide a DCD configuration file specific to mx6dlsabresd with the settings recommended by the Freescale hardware team. Signed-off-by: Fabio Estevam --- board/freescale/mx6sabresd/mx6dlsabresd.cfg | 131 +++

[U-Boot] [RFC] Add EXT filesystem support to SPL

2014-08-21 Thread Guillaume Gardet
Hi, I have prepared a patch to add EXT filesystem support to SPL, but I have some questions to make a good patch. Currently, we have : MMCSD_MODE_FAT for FAT boot. Should we add MMCSD_MODE_EXT or just rename it to MMCSD_MODE_FS (or something else) to be filesystem generic? Then, some vars are

[U-Boot] [PATCH] 85xx/b4:Correct USB DR controller liodn entry

2014-08-21 Thread Ramneek Mehresh
LIODN entry for B4860/B4420 mentions USB controller as "mph" insread of "dr". This results in PAMU not permitting bus transactions for USB DR controller on B4860 resulting in USB function failure. Replacing "fsl-usb2-mph" with "fsl-usb2-dr" allows USB DR controller bus transactions Signed-off-by:

[U-Boot] [PATCH v2] nios2: add generic board support

2014-08-21 Thread Thomas Chou
This patch implements the generic board init as described in doc/README.generic-board. Signed-off-by: Thomas Chou Signed-off-by: Scott McNutt Reviewed-by: Stefan Roese --- Changes in v2: - Coding style clean up arch/nios2/config.mk|2 + arch/nios2/cpu/cpu.c| 12

Re: [U-Boot] [PATCH v2 1/2] net: fec_mxc: Adjust RX DMA alignment for mx6solox

2014-08-21 Thread Fabio Estevam
On Thu, Aug 21, 2014 at 3:03 AM, Stefan Roese wrote: > Why don't you just use the bigger value (64) for all SoC versions? Shouldn't > hurt, right. And would keep the source clean. I think this should work fine. Thanks for the suggestion, Stefan. ___ U-

Re: [U-Boot] [PATCH v2 1/2] net: fec_mxc: Adjust RX DMA alignment for mx6solox

2014-08-21 Thread Fabio Estevam
On Thu, Aug 21, 2014 at 5:01 AM, Stefano Babic wrote: > I go just a bit further according to Otavio's comment. In this way, we > do not remove #ifdef, we have only moved. What about using is_cpu_type() > instead of this ? If you do not want to add the macro for not mx6 socs > (preferable way, I t

[U-Boot] [RFC] Replace {fat, ext2}load by load in default env settings

2014-08-21 Thread Guillaume Gardet
Hi, I would like to replace 'fatload' and 'ext2load' commands by 'load' command in default env settings such as loadbootscript, loaduimage, etc. for all boards. That way, the load commands are independent from the filesystem used. Is there any objection? If everyone is ok, I could submit a pa

Re: [U-Boot] [PATCH v2 2/2] net: fec_mxc: Do not error out when FEC_TBD_READY

2014-08-21 Thread Marek Vasut
On Thursday, August 21, 2014 at 09:57:23 AM, Stefano Babic wrote: > Hi, > > On 21/08/2014 07:02, Marek Vasut wrote: > > On Thursday, August 21, 2014 at 06:11:16 AM, Ye Li wrote: > >> The TDAR bit is set when the descriptors are all out from TX ring, but > >> the descriptor properly is in transmitt

Re: [U-Boot] [PATCH 3/6] arm: uniphier: add UniPhier SoC suppurt code

2014-08-21 Thread Masahiro Yamada
Hi Albert, First, I don't like full-quoting as Wolfgang also mentioned before: http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/52214/focus=52252 Since this patch is very long, I might miss some of your comments. If I did not overlook, my comments are below: On Wed, 20 Aug 2014 11:31

[U-Boot] Recommended SH toolchain

2014-08-21 Thread Vasili Galka
Hi Nobuhiro, I'm trying to verify the correct build of all SH boards in U-Boot. What is the recommended toolchain to use? I tried the one from kernel.org [1], but it does not work for all the boards, I get build errors like this one: Building rsk7203 board... sh4-linux-gcc: error: command line o

Re: [U-Boot] Recommended AVR32 toolchain

2014-08-21 Thread Vasili Galka
Hi Andreas, The toolchain from kernel.org indeed works fine. Thank you very much for your help! Best regards, Vasili On Wed, Aug 20, 2014 at 11:38 PM, Andreas Bießmann wrote: > Hi Vasili, > > On 20.08.14 18:10, Vasili Galka wrote: >> Hi Andreas, >> >> I'm trying to verify the correct build of

Re: [U-Boot] MMU Mapping

2014-08-21 Thread Stefano Babic
Hi Alexandre, On 21/08/2014 11:08, Alexandre Delove wrote: > Hello > > I am trying to disable the memory management unit on my sabreLite board, but > i don't find what i should do. I also want to change the mapping of the MMU, > but i don't know where it is. > MMU is off in U-Boot. It is turn

Re: [U-Boot] [PATCH] nios2: add generic board support

2014-08-21 Thread Stefan Roese
On 21.08.2014 10:53, Thomas Chou wrote: This patch implements the generic board init as described in doc/README.generic-board. Good idea. Please find below a few comments, mostly coding style related. diff --git a/arch/nios2/cpu/cpu.c b/arch/nios2/cpu/cpu.c index e0dcbc2..4714171 100644 ---

[U-Boot] MMU Mapping

2014-08-21 Thread Alexandre Delove
Hello I am trying to disable the memory management unit on my sabreLite board, but i don't find what i should do. I also want to change the mapping of the MMU, but i don't know where it is. Do you know which file i have to edit? Sorry for my english, it's not my mother tongue. Regards Alexan

[U-Boot] [PATCH] nios2: add generic board support

2014-08-21 Thread Thomas Chou
This patch implements the generic board init as described in doc/README.generic-board. Signed-off-by: Thomas Chou Signed-off-by: Scott McNutt --- arch/nios2/config.mk|2 + arch/nios2/cpu/cpu.c| 12 +++- arch/nios2/cpu/start.S | 34 - arch/nios2/i

[U-Boot] [PATCH 1/2] nios2: add generic board support

2014-08-21 Thread Thomas Chou
This patch implements the generic board init as described in doc/README.generic-board. Signed-off-by: Thomas Chou Signed-off-by: Scott McNutt --- arch/nios2/config.mk|2 + arch/nios2/cpu/cpu.c| 12 +++- arch/nios2/cpu/start.S | 34 - arch/nios2/i

Re: [U-Boot] U-boot for Banana Pi

2014-08-21 Thread Michal Suchanek
Hello, On 20 August 2014 21:19, TooMeeK Admin wrote: > Hello, > > I'm getting some troubles booting FreeBSD on Banana Pi. > I wrote simple script that creates bootable SD card image for FreeBSD OS. > > #!/bin/bash > cd /root/banana > rm /root/banana/banana.img > truncate -s 940M banana.img > mdco

Re: [U-Boot] [PATCH v2 2/2] net: fec_mxc: Do not error out when FEC_TBD_READY

2014-08-21 Thread Li Ye-B37916
On 8/21/2014 3:57 PM, Stefano Babic wrote: > Hi, > > On 21/08/2014 07:02, Marek Vasut wrote: >> On Thursday, August 21, 2014 at 06:11:16 AM, Ye Li wrote: >>> The TDAR bit is set when the descriptors are all out from TX ring, but the >>> descriptor properly is in transmitting not READY. >> I don't

Re: [U-Boot] [PATCH v2 1/2] net: fec_mxc: Adjust RX DMA alignment for mx6solox

2014-08-21 Thread Stefano Babic
Hi Fabio, On 20/08/2014 23:24, Fabio Estevam wrote: > From: Fabio Estevam > > mx6solox has a requirement for 64 bytes alignment for RX DMA transfer. > > Adjust it accordingly. > > Signed-off-by: Fabio Estevam > --- > Changes since v1: > - Avoid too many ifdef's by providing a dma_rx_align() f

Re: [U-Boot] [UBOOT RFC PATCH 07/13] usb: gadget: g_dnl: Explicitly set the max packet size in descriptor

2014-08-21 Thread Lukasz Majewski
Hi Felipe, > On Wed, Aug 20, 2014 at 09:34:13AM +0200, Lukasz Majewski wrote: > > Hi Felipe, > > > > > On Tue, Aug 19, 2014 at 09:08:00PM +0530, Kishon Vijay Abraham I > > > wrote: > > > > > > > > > > > > On Monday 18 August 2014 08:26 PM, Lukasz Majewski wrote: > > > > > Hi Kishon, > > > > >

Re: [U-Boot] [PATCH v2 2/2] net: fec_mxc: Do not error out when FEC_TBD_READY

2014-08-21 Thread Stefano Babic
Hi, On 21/08/2014 07:02, Marek Vasut wrote: > On Thursday, August 21, 2014 at 06:11:16 AM, Ye Li wrote: >> The TDAR bit is set when the descriptors are all out from TX ring, but the >> descriptor properly is in transmitting not READY. > > I don't quite understand this, can you please rephrase ? >

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

2014-08-21 Thread angelo
From: Angelo Dureghello 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 Changes for v4: - removed MAINTAINERS file / entry

[U-Boot] [PATCH v7 2/2] Add support for Sysam AMCORE board

2014-08-21 Thread angelo
From: Angelo Dureghello Signed-off-by: Angelo Dureghello Cc: Tom Rini --- This patch adds support for Sysam AMCORE mcf5307-based board Changes for v2: - fix patch email sending issues Changes for v3: - fix code format issues Changes for v4: - add MAINTAINERS file entry - remove al

Re: [U-Boot] [PATCH] imximage: Fix imximage IVT bug for EIM-NOR boot

2014-08-21 Thread Li Ye-B37916
Hi Stefano Babic, On 8/20/2014 5:44 PM, Stefano Babic wrote: > Hi Ye, > > On 20/08/2014 10:55, Ye.Li wrote: >> From: "Ye.Li" >> >> The load region size of EIM-NOR are defined to 0. For this case, >> the parameter "imximage_init_loadsize" must be calculated. >> The imximage tool implements the cal

Re: [U-Boot] [PATCH 0/2] e1000: add i210 support

2014-08-21 Thread Marek Vasut
On Thursday, August 21, 2014 at 08:40:14 AM, Tim Harvey wrote: > On Fri, Aug 8, 2014 at 7:41 AM, Tim Harvey wrote: > > Two patches to add Intel i210 support to the e1000 driver. > > > > Marek Vasut (2): > > e1000: Implement dcache support > > e1000: add i210 support > > > > drivers/net/e10