Re: [vedio] support no-ascii fonts?

2015-10-26 Thread Sascha Hauer
Hi Kevin, On Fri, Oct 23, 2015 at 03:28:18PM +0800, Kevin Du Huanpeng wrote: > Hi, How about add a index before get fontdata? > so, we will able to support non-ascii fonts. > like: > drivers/video/fbconsole.c > --> static void drawchar(struct fbc_priv *priv, int x, int y, char >

Re: [PATCH] fixup! commands: clk_dump: use COMMAND_SUCCESS instead of 0 return code

2015-10-26 Thread Sascha Hauer
On Thu, Oct 22, 2015 at 11:20:38AM +0300, Antony Pavlov wrote: > Sorry, I have missed that occurence. > So we can change original patch subject line to > > > commands: clk: use COMMAND_SUCCESS instead of 0 Did that. Sascha > > > --- > commands/clk.c | 2 +- > 1 file changed, 1

Re: [PATCH] Make barebox flashable image link for "multi-image" targets

2015-10-26 Thread Sascha Hauer
On Thu, Oct 22, 2015 at 06:48:54PM +, Trent Piepho wrote: > On Thu, 2015-10-22 at 09:06 +0200, Sascha Hauer wrote: > > > > > It only works when a single image is made. If one is making multiple > > > > > images, then the concept of a single finished image no longer applies, > > > > > and no

Re: [PATCH] imx6-mmdc: fix automatic power down enable in write level calibration

2015-10-26 Thread Sascha Hauer
Hi Eric, On Fri, Oct 23, 2015 at 12:49:44PM -0700, Eric Nelson wrote: > Bit 0 of the MAPSR register controls auto power down. > > Explicitly clear this bit instead of reserved bit when > exiting from mmdc_do_write_level_calibration(). > > Signed-off-by: Eric Nelson Looks

Re: [PATCH] imx6-mmdc: restore RALAT/WALAT in MMDC0, not MMDC1

2015-10-26 Thread Sascha Hauer
On Fri, Oct 23, 2015 at 04:34:40PM -0700, Eric Nelson wrote: > Signed-off-by: Eric Nelson > --- > arch/arm/mach-imx/imx6-mmdc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied, thanks Sascha > > diff --git a/arch/arm/mach-imx/imx6-mmdc.c

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

2015-10-26 Thread Sascha Hauer
On Sat, Oct 24, 2015 at 01:38:08PM +0300, Du Huanpeng wrote: > Signed-off-by: Du Huanpeng > --- > drivers/video/fbconsole.c | 39 - > include/linux/font.h| 11 ++- > lib/fonts/Kconfig | 5 ++ > lib/fonts/Makefile | 4 + >

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

2015-10-26 Thread Trent Piepho
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 are generated as well as for a single image. Also update the existing

Re: [PATCH] imx6-mmdc: restore RALAT/WALAT in MMDC0, not MMDC1

2015-10-26 Thread Eric Nelson
Hi Sascha, On 10/25/2015 11:54 PM, Sascha Hauer wrote: > On Fri, Oct 23, 2015 at 04:34:40PM -0700, Eric Nelson wrote: >> Signed-off-by: Eric Nelson >> --- >> arch/arm/mach-imx/imx6-mmdc.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) > > Applied, thanks > > Sascha

[PATCH] of_dump: Add option to print node names only

2015-10-26 Thread Sascha Hauer
Devicetrees tend to become very long and it is hard to find the interesting nodes in a full tree output. This patch adds the -n option to the of_node command. With this option only the names of the nodes are printed, but not the properties. The resulting output is much shorter and the node one is

[PATCH] ARM: imx: clocksource: add new DT compatible

2015-10-26 Thread Lucas Stach
The i.MX6 DL/S DT has been changed to use more specific compatibles as GPTv2 has a different programming model for modes used in Linux. This difference doesn't matter for Barebox, but the old mx31 compatible has been dropped from the DT, so we need to match on the one still present.

Re: [PATCH] ARM: imx: clocksource: add new DT compatible

2015-10-26 Thread Sascha Hauer
On Mon, Oct 26, 2015 at 03:03:08PM +0100, Lucas Stach wrote: > The i.MX6 DL/S DT has been changed to use more specific compatibles as > GPTv2 has a different programming model for modes used in Linux. This > difference doesn't matter for Barebox, but the old mx31 compatible has > been dropped from

Re: [PATCH] imx6-mmdc: fix automatic power down enable in write level calibration

2015-10-26 Thread Eric Nelson
Hi Sascha, On 10/25/2015 11:53 PM, Sascha Hauer wrote: > Hi Eric, > > On Fri, Oct 23, 2015 at 12:49:44PM -0700, Eric Nelson wrote: >> Bit 0 of the MAPSR register controls auto power down. >> >> Explicitly clear this bit instead of reserved bit when >> exiting from

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

2015-10-26 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

[PATCH 3/3] amba: check if on remove callback

2015-10-26 Thread Alexander Aring
Currently we get a null pointer dereference when booting linux on RPi which use "uart-pl011" driver. This driver doesn't implement a remove driver callback. This patch adds a check before calling the remove callback if the driver which use the amba bus implement such functionality. Signed-off-by:

[PATCH 2/3] checkpatch: fix left brace warning

2015-10-26 Thread Alexander Aring
Running checkpatch with perl version 5.22 occur the following warnings: Unescaped left brace in regex is deprecated, ... checkpatch.pl line 2017. Unescaped left brace in regex is deprecated, ... checkpatch.pl line 2267. Unescaped left brace in regex is deprecated, ... checkpatch.pl line 2268. ...

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

2015-10-26 Thread Alexander Aring
This patch adds missing brackets in the help text of loadb command. Signed-off-by: Alexander Aring --- commands/loadb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/loadb.c b/commands/loadb.c index be5830d..aabb00a 100644 ---