[PATCH] ARM: Eltec-hypercam: Add missing dcdofd in flash header

2015-10-27 Thread Sascha Hauer
Signed-off-by: Sascha Hauer --- arch/arm/boards/eltec-hipercam/flash-header-eltec-hipercam.imxcfg | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/boards/eltec-hipercam/flash-header-eltec-hipercam.imxcfg

[PATCH 7/9] memtest: move error handling to end of function

2015-10-27 Thread Sascha Hauer
Move error handling out of the test code to make the actual test better visible. Signed-off-by: Sascha Hauer --- common/memtest.c | 38 ++ 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/common/memtest.c

[PATCH 9/9] memtest: Make cached/uncached test configurable

2015-10-27 Thread Sascha Hauer
Add options to explicitly test cached/uncached tests. Without these options still both cached and uncached is tested if remapping is supported. Signed-off-by: Sascha Hauer --- commands/memtest.c | 26 +- 1 file changed, 21 insertions(+), 5

[PATCH 2/9] rework remap_range

2015-10-27 Thread Sascha Hauer
remap_range is for remapping regions with different cache attributes. It is implemented for ARM and PowerPC only, the other architectures only provide stubs. Currently the new cache attributes are passed in an architecture specific way and the attributes have to be retrieved by calls to

memtest updates

2015-10-27 Thread Sascha Hauer
This series has some updates for the memory test. The output and the code are made more compact and some additional options are added. Also the remap_range function is reworked. Sascha Sascha Hauer (9): memtest: move

[PATCH 8/9] memtest: By default only test biggest region

2015-10-27 Thread Sascha Hauer
Often enough the biggest free region spans most free RAM, so it doesn't add much value to test the remaining free regions. This patch changes the default behaviour to only test the biggest free region and adds the -t option to test all regions. Signed-off-by: Sascha Hauer

[PATCH 3/9] memtest: split tests in separate functions

2015-10-27 Thread Sascha Hauer
The memtest does a bus integrity check and a moving inversions test. Split the tests into two separate functions so that the can be called separately. Signed-off-by: Sascha Hauer --- commands/memtest.c | 9 - common/memtest.c | 36

[PATCH 6/9] memtest: move ctrlc check / progress showing into separate function

2015-10-27 Thread Sascha Hauer
To make the actual test a bit better visible in the code. Signed-off-by: Sascha Hauer --- common/memtest.c | 39 +++ 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/common/memtest.c b/common/memtest.c index

[PATCH 5/9] memtest: Make comments single line when appropriate

2015-10-27 Thread Sascha Hauer
Make the comments single line when they fit into a single line to make the code a bit shorter. Signed-off-by: Sascha Hauer --- common/memtest.c | 21 + 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/common/memtest.c b/common/memtest.c

[PATCH 1/9] memtest: move request/release regions to common/

2015-10-27 Thread Sascha Hauer
Normally code providing a feature should be implemented in common/ which is then called from the command code. Follow this rule and move some more of the memtest code to common/. Signed-off-by: Sascha Hauer --- commands/memtest.c | 107

[PATCH 4/9] memtest: Make output more compact

2015-10-27 Thread Sascha Hauer
Especially when called multiple times the output of the memory test is quite verbose. Make it more compact by only describing once what is being done and only use one progress bare instead of three. Signed-off-by: Sascha Hauer --- common/memtest.c | 20

[PATCH 3/3] ARM: add wandboard support

2015-10-27 Thread Sascha Hauer
From: Michael Grzeschik Signed-off-by: Michael Grzeschik Signed-off-by: Sascha Hauer --- arch/arm/boards/Makefile | 1 + arch/arm/boards/technexion-wandboard/Makefile | 3 +

[PATCH 2/3] ARM: i.MX6dl: dts: include arm/imx6dl.dtsi from board files

2015-10-27 Thread Sascha Hauer
Otherwise boards cannot include board files from the kernel dts without getting the file ordering wrong. Signed-off-by: Sascha Hauer --- arch/arm/dts/imx6dl-cm-fx6.dts | 1 + arch/arm/dts/imx6dl-dfi-fs700-m60-6s.dts | 1 + arch/arm/dts/imx6dl-eltec-hipercam.dts

Re: [PATCH v2] ARM: imx6: add OF fixup to delete nonexistent CPU cores

2015-10-27 Thread Sascha Hauer
On Tue, Oct 27, 2015 at 04:09:29PM +0100, Lucas Stach wrote: > Make sure that the DT passed to Linux reflects the actual number of CPU > cores present in the system by reading the SCU configuration. As both > the Q and DL variants of the MX6 have versions with cores fused away, > but the DTs have

[PATCH v2] ARM: imx6: add OF fixup to delete nonexistent CPU cores

2015-10-27 Thread Lucas Stach
Make sure that the DT passed to Linux reflects the actual number of CPU cores present in the system by reading the SCU configuration. As both the Q and DL variants of the MX6 have versions with cores fused away, but the DTs have the maximum number of cores specified, this just deletes any

Re: [PATCH v2] Make list of flash images and fix link all single image cases

2015-10-27 Thread Sascha Hauer
Hi Trent, On Mon, Oct 26, 2015 at 08:55:30PM +, Trent Piepho wrote: > Create a new file named 'barebox-flash-images' in the top level output > directory that lists each image generated, one per line. Paths will > be relative to the top level output directory. This works if multiple > images

Re: [PATCH] ARM: imx6: add OF fixup to delete nonexistent CPU cores

2015-10-27 Thread Sascha Hauer
On Mon, Oct 26, 2015 at 05:33:49PM +0100, Lucas Stach wrote: > Make sure that the DT passed to Linux reflects the actual number of CPU > cores present in the system by reading the SCU configuration. As both > the Q and DL variants of the MX6 have versions with cores fused away, > but the DTs have

Re: [PATCH 1/3] loadb: add missing brackets in help

2015-10-27 Thread Sascha Hauer
On Mon, Oct 26, 2015 at 07:10:27PM +0100, Alexander Aring wrote: > This patch adds missing brackets in the help text of loadb command. > > Signed-off-by: Alexander Aring Applied, thanks Sascha > --- > commands/loadb.c | 4 ++-- > 1 file changed, 2 insertions(+), 2

Re: [PATCH] ARM: imx6: add OF fixup to delete nonexistent CPU cores

2015-10-27 Thread Lucas Stach
Am Dienstag, den 27.10.2015, 15:43 +0100 schrieb Sascha Hauer: > On Mon, Oct 26, 2015 at 05:33:49PM +0100, Lucas Stach wrote: > > Make sure that the DT passed to Linux reflects the actual number of CPU > > cores present in the system by reading the SCU configuration. As both > > the Q and DL

Re: memtest updates

2015-10-27 Thread Alexander Aring
On Tue, Oct 27, 2015 at 06:27:42PM +0100, Alexander Aring wrote: > On Tue, Oct 27, 2015 at 05:54:59PM +0100, Alexander Aring wrote: > > On Tue, Oct 27, 2015 at 09:29:53AM +0100, Sascha Hauer wrote: > > > This series has some updates for the memory test. The output and the > > > code are made more

Re: memtest updates

2015-10-27 Thread Alexander Aring
On Tue, Oct 27, 2015 at 05:54:59PM +0100, Alexander Aring wrote: > On Tue, Oct 27, 2015 at 09:29:53AM +0100, Sascha Hauer wrote: > > This series has some updates for the memory test. The output and the > > code are made more compact and some additional options are added. Also > > the remap_range

Re: memtest updates

2015-10-27 Thread Alexander Aring
On Tue, Oct 27, 2015 at 09:29:53AM +0100, Sascha Hauer wrote: > This series has some updates for the memory test. The output and the > code are made more compact and some additional options are added. Also > the remap_range function is reworked. > I currently try to build next with memtest, I

Re: [PATCH] lib:font:fbconsole: add custom font support for review

2015-10-27 Thread Kevin Du Huanpeng
On Mon, Oct 26, 2015 at 08:18:36AM +0100, Sascha Hauer wrote: > > This patch has several hunks without changes which makes it hard to look > at. > > Somehow this looks like beginning unicode support. Wouldn't it be better > to pick the relevant parts we need from unicode and support them? How