[PATCH] ARM/Samsung: remaining clean up...

2012-07-24 Thread Juergen Beisert
...in preparation to add the S3C6410 SoC support. Mostly simplifying the Samsung serial driver and some more cosmetic. These patches are a re-work and re-send of the remaining ones not yet included from the previous ARM/Samsung: more clean up... series. The patches 1/3 and 3/3 base on the

Re: [PATCH] Add JTAG bitbang driver

2012-07-24 Thread Antony Pavlov
Hi, Slawa! Use 'git-send-email' for submiting patches to this maillist! Please, do not send attached patches! On 24 July 2012 13:11, Wjatscheslaw Stoljarski (Slawa) wjatscheslaw.stoljar...@kiwigrid.com wrote: ___ barebox mailing list

[PATCH] OMAP4: small header cleanup

2012-07-24 Thread Teresa Gámez
Use mach/clocks.h for OMAP4. Signed-off-by: Teresa Gámez t.ga...@phytec.de --- arch/arm/mach-omap/include/mach/clocks.h |3 +++ arch/arm/mach-omap/omap4_clock.c |4 ++-- arch/arm/mach-omap/omap4_generic.c |5 ++--- 3 files changed, 7 insertions(+), 5 deletions(-) diff

[PATCH] scripts/checkpatch.pl: reset rpt_cleaners warnings

2012-07-24 Thread Teresa Gámez
When running checkpatch against multiple patches and one of them has a whitespace issue, all following patches will contain the same note, even if they are ok. This patch is taken from the linux kernel: scripts/checkpatch.pl: reset rpt_cleaners warnings b0781216e7bff68aca2fbcd275b4db7531d1e22f

[PATCH] ARM i.MX53: notify clocksource about changing clock

2012-07-24 Thread Wjatscheslaw Stoljarski (Slawa)
This fix a clock inaccuracy in get_time_ns (used by sleep, time, etc). At i.MX53 power-on GPT clock is typically 5550 Hz, and it will be used to calc the clock multiplier. After call imx53_init_lowlevel() GPT clock will changed (e.g. to Hz), but multiplier not. To fix this

[PATCH 0/3] nand: autodetect buswith

2012-07-24 Thread Jan Weitzel
Add flag NAND_BUSWIDTH_UNKNOWN to allow the nand driver to detect the buswidth. Driver must provide callback set_buswidth which configure buswidth set in (struct nand_chip) nand-options Jan Weitzel (3): nand: base: Add autodetect buswidth OMAP GPMC NAND: add set_buswidth callback PCA-A_XL2

[PATCH 3/3] PCA-A_XL2 PCM049: Use autodetection for NAND width

2012-07-24 Thread Jan Weitzel
Signed-off-by: Jan Weitzel j.weit...@phytec.de --- arch/arm/boards/pcm049/board.c|4 ++-- arch/arm/boards/phycard-a-xl2/pca-a-xl2.c |3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/arch/arm/boards/pcm049/board.c b/arch/arm/boards/pcm049/board.c index

[PATCH 1/3] nand: base: Add autodetect buswidth

2012-07-24 Thread Jan Weitzel
If a 16bit NAND is attached, but configured with 8bit nand_base will fail. Add a flag NAND_BUSWIDTH_UNKNOWN and callback set_buswidth to allow it to change the configuration to 16bit. Signed-off-by: Jan Weitzel j.weit...@phytec.de --- drivers/mtd/nand/nand_base.c | 45