Re: [U-Boot] Running vanilla u-boot v2012.10 on Guruplug

2013-01-12 Thread Dirk Heinrichs
Am Samstag 12 Januar 2013, 15:41:54 schrieb Jason: > > Interesting that [1] states it's possible, though... > > With the dreamplug, I often load u-boot into RAM via the JTAG (0x060 > and 0x080), and then 'resume 0x060'. Then use the u-boot > running from 0x060 to burn the image t

Re: [U-Boot] Googlers please reply: commiters in U-Boot

2013-01-12 Thread Bill Richardson
I work for Google. Anything that comes from wfric...@google.com or wfric...@chromium.org comes from me. Bill -- Art for Art's Sake Engineering for Money ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Googlers please reply: commiters in U-Boot

2013-01-12 Thread 談偉航
On Sunday, January 13, 2013, Simon Glass wrote: > Hi, > > You are being copied because you have written U-Boot code which is now > in mainline. > > The chromium.org domain does not automatically attribute U-Boot > commits by company. Each author needs to be manually added to the list > and this ca

Re: [U-Boot] Googlers please reply: commiters in U-Boot

2013-01-12 Thread Gabe Black
On Sat, Jan 12, 2013 at 9:20 AM, Simon Glass wrote: > Hi, > > You are being copied because you have written U-Boot code which is now > in mainline. > > The chromium.org domain does not automatically attribute U-Boot > commits by company. Each author needs to be manually added to the list > and th

[U-Boot] [PATCH] pxa: Add weak attribute to reset_cpu() function

2013-01-12 Thread Lukasz Dalek
This commit allows pxa2xx based boards to reimplement reset_cpu() function with board specific reset sequence. Signed-off-by: Lukasz Dalek --- arch/arm/cpu/pxa/pxa2xx.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/cpu/pxa/pxa2xx.c b/arch/arm/cpu/pxa/pxa2xx.c

[U-Boot] [PATCH v2] h2200: Add board reset support

2013-01-12 Thread Lukasz Dalek
Use Samsung S3CA410X01 companion chip to reset PDA. Signed-off-by: Lukasz Dalek --- Changes for v2: - Reimplement reset_cpu() instead of board_reset() --- board/h2200/h2200.c |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/board/h2200/h2200.c b/board/h220

Re: [U-Boot] [PATCH 2/3] h2200: Add board reset support

2013-01-12 Thread Marek Vasut
Dear Łukasz Dałek, > On 13.01.2013 00:54, Marek Vasut wrote: > > Dear Lukasz Dalek, > > > > > > +void board_reset(void) > > +{ > > + /* Enable VLIO interface on Hamcop */ > > + writeb(0x1, 0x4000); > > + > > + /* Reset board (cold reset) */ > > + writeb(0xff, 0x4002); > > +} > > Can you

Re: [U-Boot] [PATCH 2/3] h2200: Add board reset support

2013-01-12 Thread Łukasz Dałek
On 13.01.2013 00:54, Marek Vasut wrote: Dear Lukasz Dalek, +void board_reset(void) +{ + /* Enable VLIO interface on Hamcop */ + writeb(0x1, 0x4000); + + /* Reset board (cold reset) */ + writeb(0xff, 0x4002); +} Can you not reimplement reset_cpu() ? reset_cpu() doesn't

Re: [U-Boot] [PATCH 04/10] lcd, pxafb: move the pxafb to drivers/video

2013-01-12 Thread Marek Vasut
Dear Jeroen Hofstee, > Since the lcd code was compiled unconditionally for pxa also add > CONFIG_PXA_LCD to the boards using this framebuffer. Since the > driver/video contains video and lcd driver add lcd to the name > to make clear it belongs to common/lcd.c. > > cc: Anatolij Gustschin > cc: C

Re: [U-Boot] [PATCH 2/3] h2200: Add board reset support

2013-01-12 Thread Marek Vasut
Dear Lukasz Dalek, > Use Samsung S3CA410X01 companion chip to reset PDA. > > Signed-off-by: Lukasz Dalek > --- > board/h2200/h2200.c |9 + > 1 files changed, 9 insertions(+), 0 deletions(-) > > diff --git a/board/h2200/h2200.c b/board/h2200/h2200.c > index 720b06e..a716a3f 100644 >

Re: [U-Boot] [PATCH 3/3] pxa: Save lr register in relocate_code function

2013-01-12 Thread Marek Vasut
Dear Lukasz Dalek, > When u-boot is compiled for PXA25x processor, pxa/start.S is calling > cpu_init_crit by BL instruction. BL is overwriting lr register so > relocate_code is going into infinite loop. This patch preservs lr > register in r12 before calling cpu_init_crit and after function return

Re: [U-Boot] Running vanilla u-boot v2012.10 on Guruplug

2013-01-12 Thread Jason Cooper
On Sat, Jan 12, 2013 at 10:30:58PM +0100, Jeroen Hofstee wrote: > On 01/12/2013 09:41 PM, Jason wrote: > >On Sat, Jan 12, 2013 at 08:41:36PM +0100, Dirk Heinrichs wrote: > >>Am Samstag 12 Januar 2013, 16:51:51 schrieb Wolfgang Denk: > >> > >>>Did you read the FAQ? Especially > >>>http://www.denx.d

Re: [U-Boot] Running vanilla u-boot v2012.10 on Guruplug

2013-01-12 Thread Jason
On Sat, Jan 12, 2013 at 10:30:58PM +0100, Jeroen Hofstee wrote: > On 01/12/2013 09:41 PM, Jason wrote: > >On Sat, Jan 12, 2013 at 08:41:36PM +0100, Dirk Heinrichs wrote: > >>Am Samstag 12 Januar 2013, 16:51:51 schrieb Wolfgang Denk: > >> > >>>Did you read the FAQ? Especially > >>>http://www.denx.d

Re: [U-Boot] [PATCH 02/10] lcd, tegra: remove unused cursor functions

2013-01-12 Thread Jeroen Hofstee
I wrote down your mail address wrongly here. I will fix it in v2, awaiting other comments. On 01/12/2013 11:07 PM, Jeroen Hofstee wrote: cc: Anatolij Gustschin cc: Simon Glass Signed-off-by: Jeroen Hofstee --- drivers/video/tegra.c | 52 -

[U-Boot] [PATCH 3/3] pxa: Save lr register in relocate_code function

2013-01-12 Thread Lukasz Dalek
When u-boot is compiled for PXA25x processor, pxa/start.S is calling cpu_init_crit by BL instruction. BL is overwriting lr register so relocate_code is going into infinite loop. This patch preservs lr register in r12 before calling cpu_init_crit and after function returns restores it. Signed-off-b

[U-Boot] [PATCH 10/10] common/lcd.c: move the macro's to the c file

2013-01-12 Thread Jeroen Hofstee
Hide the console macros since some reference global data which is no longer present. cc: Anatolij Gustschin Signed-off-by: Jeroen Hofstee --- common/lcd.c | 28 include/lcd.h | 28 2 files changed, 28 insertions(+), 28 deletions(-)

[U-Boot] [PATCH 09/10] api/api_display: use the getters for console size info

2013-01-12 Thread Jeroen Hofstee
cc: Che-Liang Chiou Signed-off-by: Jeroen Hofstee --- api/api_display.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/api_display.c b/api/api_display.c index 6439170..c167db7 100644 --- a/api/api_display.c +++ b/api/api_display.c @@ -45,8 +45,8 @@ int display_get

[U-Boot] [PATCH 04/10] lcd, pxafb: move the pxafb to drivers/video

2013-01-12 Thread Jeroen Hofstee
Since the lcd code was compiled unconditionally for pxa also add CONFIG_PXA_LCD to the boards using this framebuffer. Since the driver/video contains video and lcd driver add lcd to the name to make clear it belongs to common/lcd.c. cc: Anatolij Gustschin cc: Cliff Brake cc: Marek Vasut Signed-

[U-Boot] [PATCH 08/10] lcd, fb: cleanup, remove prototypes already in lcd.h and unused code

2013-01-12 Thread Jeroen Hofstee
cc: Anatolij Gustschin cc: Cliff Brake cc: John Zhan cc: Marek Vasut cc: Wolfgang Denk Signed-off-by: Jeroen Hofstee --- board/mcc200/lcd.c |7 --- drivers/video/mpc8xx_lcd.c | 40 drivers/video/pxa_lcd.c| 33 --

[U-Boot] [PATCH 07/10] common/lcd: cosmetic: clean up a bit

2013-01-12 Thread Jeroen Hofstee
- Make the brackets of the function calls more consistent - Remove really unnecessary brackets - Removes the extern from the function definitions - Remove curly brackets from single line statements - Remove lcd_setmem proto since it is already in common.h - Don't init globals to 0 cc: Anatol

[U-Boot] [PATCH 05/10] common/lcd.c: cleanup use of global variables

2013-01-12 Thread Jeroen Hofstee
console_col, console_row, lcd_line_length, lcd_console_address had to be declared in board / driver specific code, but were not actually used there. Get rid of the global variables. Cc: Alessandro Rubini Cc: Anatolij Gustschin Cc: Bo Shen Cc: Haavard Skinnemoen Cc: Kyungmin Park Cc: Marek Vas

[U-Boot] [PATCH 06/10] common/lcd.c: remove global lcd_base

2013-01-12 Thread Jeroen Hofstee
lcd_base is available as gd->fb_base as well, there is no need to keep a seperate copy. Cc: Alessandro Rubini Cc: Anatolij Gustschin Cc: Bo Shen Cc: Haavard Skinnemoen Cc: Kyungmin Park Cc: Marek Vasut Cc: Minkyu Kang Cc: Nikita Kiryanov Cc: Simon Glass Cc: Stelian Pop Cc: Tom Warren Si

[U-Boot] [PATCH 03/10] lcd, mpc8xx: move the mpc8xx frame buffer driver to drivers/video

2013-01-12 Thread Jeroen Hofstee
Since the lcd code was compiled unconditionally in arch also add CONFIG_MPC8XX_LCD to the boards using this driver. cc: Anatolij Gustschin cc: John Zhan cc: Wolfgang Denk Signed-off-by: Jeroen Hofstee --- arch/powerpc/cpu/mpc8xx/Makefile |1 - arch/powerpc/cpu/mpc8xx/lcd.c| 618 -

[U-Boot] [PATCH 02/10] lcd, tegra: remove unused cursor functions

2013-01-12 Thread Jeroen Hofstee
cc: Anatolij Gustschin cc: Simon Glass Signed-off-by: Jeroen Hofstee --- drivers/video/tegra.c | 52 - 1 file changed, 52 deletions(-) diff --git a/drivers/video/tegra.c b/drivers/video/tegra.c index 3709d0b..26a96a5 100644 --- a/drivers/video/

[U-Boot] [PATCH 2/3] h2200: Add board reset support

2013-01-12 Thread Lukasz Dalek
Use Samsung S3CA410X01 companion chip to reset PDA. Signed-off-by: Lukasz Dalek --- board/h2200/h2200.c |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/board/h2200/h2200.c b/board/h2200/h2200.c index 720b06e..a716a3f 100644 --- a/board/h2200/h2200.c +++ b/board/h

[U-Boot] [PATCH 01/10] lcd, amba: remove this frame buffer driver since it is not used

2013-01-12 Thread Jeroen Hofstee
Since CONFIG_VIDEO_AMBA is not set by any board, it does not seem to be used, so remove it since there is no way to (compile) test it. cc: Alessandro Rubini cc: Anatolij Gustschin Signed-off-by: Jeroen Hofstee --- drivers/video/Makefile |1 - drivers/video/amba.c | 77 -

[U-Boot] [PATCH 00/10] common.lcd: remove globals and cleanup

2013-01-12 Thread Jeroen Hofstee
As mentioned in http://lists.denx.de/pipermail/u-boot/2013-January/143459.html there does not seem to be a good reason why the frame buffer driver provide the variables for the lcd internal logic. So lets just remove it. If there is any good reason for a framebuffer driver to "call up" it should do

[U-Boot] [PATCH 1/3] pxa: Add support for board specific reset function

2013-01-12 Thread Lukasz Dalek
Some boards have its own way to reset board. This patch adds support for board_reset() function which is called from reset_cpu() to do board specific actions before/instead main reset_cpu() actions. Signed-off-by: Lukasz Dalek --- arch/arm/cpu/pxa/pxa2xx.c |7 +++ 1 files changed, 7 inse

Re: [U-Boot] Running vanilla u-boot v2012.10 on Guruplug

2013-01-12 Thread Jeroen Hofstee
On 01/12/2013 09:41 PM, Jason wrote: On Sat, Jan 12, 2013 at 08:41:36PM +0100, Dirk Heinrichs wrote: Am Samstag 12 Januar 2013, 16:51:51 schrieb Wolfgang Denk: Did you read the FAQ? Especially http://www.denx.de/wiki/view/DULG/CanUBootBeConfiguredSuchThatItCanBeStarted InRAM ? Now I did :) T

Re: [U-Boot] Running vanilla u-boot v2012.10 on Guruplug

2013-01-12 Thread Jason
On Sat, Jan 12, 2013 at 08:41:36PM +0100, Dirk Heinrichs wrote: > Am Samstag 12 Januar 2013, 16:51:51 schrieb Wolfgang Denk: > > > Did you read the FAQ? Especially > > http://www.denx.de/wiki/view/DULG/CanUBootBeConfiguredSuchThatItCanBeStarted > > InRAM ? > > Now I did :) Thanx a lot. > > Inte

Re: [U-Boot] Googlers please reply: commiters in U-Boot

2013-01-12 Thread Vincent Palatin
On Jan 12, 2013 9:20 AM, "Simon Glass" wrote: > > Hi, > > You are being copied because you have written U-Boot code which is now > in mainline. > > The chromium.org domain does not automatically attribute U-Boot > commits by company. Each author needs to be manually added to the list > and this ca

Re: [U-Boot] Googlers please reply: commiters in U-Boot

2013-01-12 Thread Vadim Bendebury
On Sat, Jan 12, 2013 at 9:20 AM, Simon Glass wrote: > Hi, > > You are being copied because you have written U-Boot code which is now > in mainline. > > The chromium.org domain does not automatically attribute U-Boot > commits by company. Each author needs to be manually added to the list > and thi

[U-Boot] Googlers please reply: commiters in U-Boot

2013-01-12 Thread Simon Glass
Hi, You are being copied because you have written U-Boot code which is now in mainline. The chromium.org domain does not automatically attribute U-Boot commits by company. Each author needs to be manually added to the list and this can only be done if you confirm your employer. So, if you are on

Re: [U-Boot] Running vanilla u-boot v2012.10 on Guruplug

2013-01-12 Thread Dirk Heinrichs
Am Samstag 12 Januar 2013, 16:51:51 schrieb Wolfgang Denk: > Did you read the FAQ? Especially > http://www.denx.de/wiki/view/DULG/CanUBootBeConfiguredSuchThatItCanBeStarted > InRAM ? Now I did :) Thanx a lot. Interesting that [1] states it's possible, though... Bye... Dirk [1]: https

[U-Boot] [PATCH] README.mips: update known issues and TODOs

2013-01-12 Thread daniel . schwierzeck
From: Daniel Schwierzeck Signed-off-by: Daniel Schwierzeck --- doc/README.mips | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/doc/README.mips b/doc/README.mips index 85dea40..f4f770b 100644 --- a/doc/README.mips +++ b/doc/README.mips @@ -16,11 +16,6 @@ Toolchain

[U-Boot] [PATCH] README.qemu-mips: move README file from board to doc directory

2013-01-12 Thread daniel . schwierzeck
From: Daniel Schwierzeck Signed-off-by: Daniel Schwierzeck --- board/qemu-mips/README => doc/README.qemu-mips | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename board/qemu-mips/README => doc/README.qemu-mips (100%) diff --git a/board/qemu-mips/README b/doc/README.qemu-mips similarity

Re: [U-Boot] [PATCH] MIPS: bootm.c: drop obsolete Qemu specific bootm implementation

2013-01-12 Thread Gabor Juhos
Hi Daniel, > From: Daniel Schwierzeck > > The Qemu specific bootm implementation was intended for a special > Qemu target in Linux kernel. But this target has been dropped in > v2.6.25-rc1 by commit 302922e5f6901eb6f29c58539631f71b3d9746b8 > > Author: Ralf Baechle > Date: Tue Jan 29

[U-Boot] [PATCH] MIPS: bootm.c: drop obsolete Qemu specific bootm implementation

2013-01-12 Thread daniel . schwierzeck
From: Daniel Schwierzeck The Qemu specific bootm implementation was intended for a special Qemu target in Linux kernel. But this target has been dropped in v2.6.25-rc1 by commit 302922e5f6901eb6f29c58539631f71b3d9746b8 Author: Ralf Baechle Date: Tue Jan 29 10:15:02 2008 + [MI

[U-Boot] [RFC PATCH 2/4] x86: Rewrite bootm.c to make it similar to ARM

2013-01-12 Thread Simon Glass
The x86 bootm code is quite special, and geared to zimage. Adjust it to support device tree and make it more like the ARM code, with separate bootm stages and functions for each stage. Create a function announce_and_cleanup() to handle printing the "Starting kernel ..." message and put it in bootm

[U-Boot] [RFC PATCH 3/4] x86: Allow cmdline setup in setup_zimage() to be optional

2013-01-12 Thread Simon Glass
If we are passing this using the device tree then we may not want to set this up here. TBD. Signed-off-by: Simon Glass --- arch/x86/lib/zimage.c | 21 - 1 files changed, 12 insertions(+), 9 deletions(-) diff --git a/arch/x86/lib/zimage.c b/arch/x86/lib/zimage.c index 8819a

[U-Boot] [RFC PATCH 4/4] x86: Support loading kernel setup from a FIT

2013-01-12 Thread Simon Glass
Add a new setup@ section to the FIT which can be used to provide a setup binary for booting Linux on x86. This makes it possible to boot x86 from a FIT. Signed-off-by: Simon Glass --- common/cmd_bootm.c| 22 +- common/image-fit.c| 20 ++

[U-Boot] [RFC PATCH 1/4] x86: Enable LMB and RAMDISK_HIGH by default

2013-01-12 Thread Simon Glass
These options are used by the image code. To allow us to use the generic code more easily, define these for x86. Signed-off-by: Simon Glass --- arch/x86/include/asm/config.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/x86/include/asm/config.h b/arch/x86/include

[U-Boot] [RFC PATCH 0/4] RFC: FIT images and device tree on x86

2013-01-12 Thread Simon Glass
This little series adds support for booting FITs on x86. A FIT is a single file that can contain a kernel, device tree and ramdisk. This is a bit of an experiment, and is work in progress. I would like to get feedback on the approach. x86 kernels require a setup.bin file to boot. Rather than try

[U-Boot] [PATCH 16/18 V3] mxs: Add MX23 olinuxino board support

2013-01-12 Thread Marek Vasut
This patch adds support for MX23-based Olinuxino board. Signed-off-by: Marek Vasut Cc: Fabio Estevam Cc: Otavio Salvador Cc: Stefano Babic --- MAINTAINERS |1 + board/olimex/mx23_olinuxino/Makefile | 47 + board/olimex/mx23_olinuxino/mx23

Re: [U-Boot] [PATCH] common/lcd.c: cleanup use of global variables

2013-01-12 Thread Simon Glass
Hi Jeroen, On Sun, Jan 6, 2013 at 2:43 PM, Jeroen Hofstee wrote: > On 01/05/2013 08:50 PM, Wolfgang Denk wrote: >> >> Dear Anatolij, >> >> In message <1357415148-9243-1-git-send-email...@denx.de> you wrote: >>> >>> lcd_color_fg and lcd_color_bg had to be declared in board specific >>> code, but w

Re: [U-Boot] [PATCH 16/18 V2] mxs: Add MX23 olinuxino board support

2013-01-12 Thread Otavio Salvador
On Sat, Jan 12, 2013 at 2:52 PM, Marek Vasut wrote: > Dear Otavio Salvador, > >> On Sat, Jan 12, 2013 at 2:16 PM, Marek Vasut wrote: >> > Dear Otavio Salvador, >> > >> >> On Fri, Jan 11, 2013 at 9:27 PM, Marek Vasut wrote: >> >> > This patch adds support for MX23-based Olinuxino board. >> >> > >

Re: [U-Boot] [PATCH] common/lcd.c: cleanup use of global variables

2013-01-12 Thread Simon Glass
On Sat, Jan 5, 2013 at 11:45 AM, Wolfgang Denk wrote: > lcd_color_fg and lcd_color_bg had to be declared in board specific > code, but were not actually used there; in addition, we have getter / > setter functions for these, which were not used either. > > Get rid of the global variables, and use

Re: [U-Boot] [PATCH] fdt: fix dts preprocessor options

2013-01-12 Thread Simon Glass
On Tue, Jan 8, 2013 at 6:07 PM, Allen Martin wrote: > Using "-ansi" preprocessor option will cause dts lines that begin with > '#' to choke the preprocessor. Change to "-x assembler-with-cpp" > instead which is what the kernel uses to preprocess dts files. > > Signed-off-by: Allen Martin Acked-

Re: [U-Boot] [PATCH v2 6/9] tegra30: fdt: add SPI SLINK nodes

2013-01-12 Thread Simon Glass
On Sat, Jan 12, 2013 at 1:07 AM, Allen Martin wrote: > Add tegra30 SPI SLINK nodes to fdt. > > Signed-off-by: Allen Martin Acked-by: Simon Glass ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v2 7/9] tegra: add addresses of SPI SLINK controllers

2013-01-12 Thread Simon Glass
On Sat, Jan 12, 2013 at 1:07 AM, Allen Martin wrote: > Add I/O addresses of SPI SLINK controllers 1-6 > > Signed-off-by: Allen Martin Acked-by: Simon Glass (optional thought below) > --- > arch/arm/include/asm/arch-tegra/tegra.h |6 ++ > 1 file changed, 6 insertions(+) > > diff --git

Re: [U-Boot] [PATCH v2 5/9] tegra30: add SBC1 to periph id mapping table

2013-01-12 Thread Simon Glass
On Sat, Jan 12, 2013 at 1:07 AM, Allen Martin wrote: > SBC1 is SPI controller 1 on tegra30 > > Signed-off-by: Allen Martin Acked-by: Simon Glass > --- > arch/arm/cpu/tegra30-common/clock.c |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/cpu/tegra30-common/

Re: [U-Boot] [PATCH v2 9/9] tegra: cardhu: config: enable SPI

2013-01-12 Thread Simon Glass
On Sat, Jan 12, 2013 at 1:07 AM, Allen Martin wrote: > Turn on SPI in cardhu config file > > Signed-off-by: Allen Martin Acked-by: Simon Glass > --- > include/configs/cardhu.h | 11 +++ > 1 file changed, 11 insertions(+) > > diff --git a/include/configs/cardhu.h b/include/configs/ca

Re: [U-Boot] [PATCH v2 8/9] tegra: add SPI SLINK driver

2013-01-12 Thread Simon Glass
Hi, On Sat, Jan 12, 2013 at 1:07 AM, Allen Martin wrote: > Add driver for tegra SPI "SLINK" style driver. This controller is > similar to the tegra20 SPI "SFLASH" controller. The difference is > that the SLINK controller is a genernal purpose SPI controller and the > SFLASH controller is specia

Re: [U-Boot] [PATCH 16/18 V2] mxs: Add MX23 olinuxino board support

2013-01-12 Thread Marek Vasut
Dear Otavio Salvador, > On Sat, Jan 12, 2013 at 2:16 PM, Marek Vasut wrote: > > Dear Otavio Salvador, > > > >> On Fri, Jan 11, 2013 at 9:27 PM, Marek Vasut wrote: > >> > This patch adds support for MX23-based Olinuxino board. > >> > > >> > Signed-off-by: Marek Vasut > >> > Cc: Fabio Estevam

Re: [U-Boot] [PATCH v2 1/9] tegra: fdt: sort dts files

2013-01-12 Thread Simon Glass
On Sat, Jan 12, 2013 at 1:07 AM, Allen Martin wrote: > Sort nodes in dts files according the the following rules: > > 1) Any nodes that already exist in any /include/d file, in the order > they appear in the /include/d file. > > 2) Any nodes with a reg property, in order of their address. > > 3) A

Re: [U-Boot] [PATCH V4 6/9] SMDK5250: Initialise and Enable DWMMC, support FDT and non-FDT

2013-01-12 Thread Simon Glass
Hi Amar, On Fri, Jan 11, 2013 at 9:58 AM, Amarendra Reddy wrote: > Hi Simon, > > Thanks for review comments. > Please find my responses below. > > Thanks & Regards > Amarendra Reddy > > On 10 January 2013 22:27, Simon Glass wrote: >> >> Hi Amar, >> >> On Fri, Jan 4, 2013 at 1:34 AM, Amar wrote:

Re: [U-Boot] [PATCH 16/18 V2] mxs: Add MX23 olinuxino board support

2013-01-12 Thread Otavio Salvador
On Sat, Jan 12, 2013 at 2:16 PM, Marek Vasut wrote: > Dear Otavio Salvador, > >> On Fri, Jan 11, 2013 at 9:27 PM, Marek Vasut wrote: >> > This patch adds support for MX23-based Olinuxino board. >> > >> > Signed-off-by: Marek Vasut >> > Cc: Fabio Estevam >> > Cc: Otavio Salvador >> > Cc: Stefan

Re: [U-Boot] [PATCH v2 01/10] arm: move flush_dcache_all() to just before disable cache

2013-01-12 Thread Simon Glass
Hi, On Thu, Jan 10, 2013 at 11:59 PM, R Sricharan wrote: > Hi, > > > On Saturday 01 December 2012 04:31 AM, Simon Glass wrote: >> >> From: Arun Mankuzhi >> >> In Cortex-A15 architecture, when we run cache invalidate >> the cache clean operation executes automatically. >> So if there are any dirt

Re: [U-Boot] [PATCH] mxs: Linux uses ttyAMA0 as DUART

2013-01-12 Thread Otavio Salvador
On Sat, Jan 12, 2013 at 2:14 PM, Marek Vasut wrote: > Dear Otavio Salvador, > >> On Fri, Jan 11, 2013 at 9:29 PM, Marek Vasut wrote: >> > Replace use of ttyAM0 with ttyAMA0 as default serial console. >> > >> > Signed-off-by: Marek Vasut >> > Cc: Stefano Babic >> >> Please use the board name in

Re: [U-Boot] [PATCH 16/18 V2] mxs: Add MX23 olinuxino board support

2013-01-12 Thread Marek Vasut
Dear Otavio Salvador, > On Fri, Jan 11, 2013 at 9:27 PM, Marek Vasut wrote: > > This patch adds support for MX23-based Olinuxino board. > > > > Signed-off-by: Marek Vasut > > Cc: Fabio Estevam > > Cc: Otavio Salvador > > Cc: Stefano Babic > > --- > > > > MAINTAINERS

Re: [U-Boot] [PATCH 16/18] mxs: Add MX23 olinuxino board support

2013-01-12 Thread Marek Vasut
Dear Otavio Salvador, > On Fri, Jan 11, 2013 at 9:27 PM, Marek Vasut wrote: > > Dear Fabio Estevam, > > > >> Hi Marek, > >> > >> On Fri, Jan 11, 2013 at 11:19 AM, Marek Vasut wrote: > >> > This patch adds support for MX23-based Olinuxino board. > >> > > >> > Signed-off-by: Marek Vasut > >> >

Re: [U-Boot] [PATCH] mxs: Linux uses ttyAMA0 as DUART

2013-01-12 Thread Marek Vasut
Dear Otavio Salvador, > On Fri, Jan 11, 2013 at 9:29 PM, Marek Vasut wrote: > > Replace use of ttyAM0 with ttyAMA0 as default serial console. > > > > Signed-off-by: Marek Vasut > > Cc: Stefano Babic > > Please use the board name in the commit log. I think mxs is enough. Best regards, Marek

Re: [U-Boot] Running vanilla u-boot v2012.10 on Guruplug

2013-01-12 Thread Wolfgang Denk
Dear Dirk Heinrichs, In message <1457183.WG9k8kxG45@moria> you wrote: > > 1) Does running from RAM this way work at all? > 2) If I can't test it from RAM, is it save to write it to flash anyway? Did you read the FAQ? Especially http://www.denx.de/wiki/view/DULG/CanUBootBeConfiguredSuchThatItCan

Re: [U-Boot] [PATCH] mxs: Linux uses ttyAMA0 as DUART

2013-01-12 Thread Otavio Salvador
On Fri, Jan 11, 2013 at 9:29 PM, Marek Vasut wrote: > Replace use of ttyAM0 with ttyAMA0 as default serial console. > > Signed-off-by: Marek Vasut > Cc: Stefano Babic Please use the board name in the commit log. -- Otavio Salvador O.S. Systems E-mail: ota...@ossyste

Re: [U-Boot] [PATCH 16/18] mxs: Add MX23 olinuxino board support

2013-01-12 Thread Otavio Salvador
On Fri, Jan 11, 2013 at 9:27 PM, Marek Vasut wrote: > Dear Fabio Estevam, > >> Hi Marek, >> >> On Fri, Jan 11, 2013 at 11:19 AM, Marek Vasut wrote: >> > This patch adds support for MX23-based Olinuxino board. >> > >> > Signed-off-by: Marek Vasut >> > Cc: Fabio Estevam >> > Cc: Otavio Salvador

Re: [U-Boot] [PATCH 16/18 V2] mxs: Add MX23 olinuxino board support

2013-01-12 Thread Otavio Salvador
On Fri, Jan 11, 2013 at 9:27 PM, Marek Vasut wrote: > This patch adds support for MX23-based Olinuxino board. > > Signed-off-by: Marek Vasut > Cc: Fabio Estevam > Cc: Otavio Salvador > Cc: Stefano Babic > --- > MAINTAINERS |1 + > board/olimex/mx23_olinuxi

[U-Boot] Running vanilla u-boot v2012.10 on Guruplug

2013-01-12 Thread Dirk Heinrichs
Hello, I have compiled u-boot v2012.10 for my Guruplug and would like to test it from RAM before I write it to flash. So following instructions I found via internet search I load the u-boot.kwb from SATA disk into RAM at address 0x80 (ext2load ide 0:1 0x80 u-boot.kwb) and then start it

[U-Boot] Moving from 1.1.6 to 2012.07 for Coldfire help

2013-01-12 Thread Steve deRosier
Hi all, I'm stuck trying to get Linux to boot from U-Boot on a Coldfire system and I'd love some ideas of what to try next. I'm upgrading a uClinux system from a 2.4 kernel to 3.3. Additionally I'm trying to upgrade the boot-loader from u-boot 1.1.6 to release 2012.07. The board is based on a MC

Re: [U-Boot] [PATCH] arm: at91sam9x5: add dataflash boot support

2013-01-12 Thread Albert ARIBAUD
Hi Bo, On Fri, 7 Dec 2012 15:37:04 +0800, Bo Shen wrote: > Add dataflash boot support on at91sam9x5ek board > > Signed-off-by: Bo Shen > --- > boards.cfg |1 + > include/configs/at91sam9x5ek.h | 10 ++ > 2 files changed, 11 insertions(+) > > diff --git a/bo

Re: [U-Boot] [PATCH] arm: at91sam9x5: add dataflash boot support

2013-01-12 Thread Andreas Bießmann
Dear Albert Aribaud, On 09.01.13 17:17, Andreas Bießmann wrote: > Dear Bo Shen, > > Albert Aribaud agreed to apply this one to u-boot-arm/master for the > upcoming release. gentle reminder ... Best regards Andreas Bießmann ___ U-Boot mailing list U-B

[U-Boot] [PATCH v2 8/9] tegra: add SPI SLINK driver

2013-01-12 Thread Allen Martin
Add driver for tegra SPI "SLINK" style driver. This controller is similar to the tegra20 SPI "SFLASH" controller. The difference is that the SLINK controller is a genernal purpose SPI controller and the SFLASH controller is special purpose and can only talk to FLASH devices. In addition there ar

[U-Boot] [PATCH v2 1/9] tegra: fdt: sort dts files

2013-01-12 Thread Allen Martin
Sort nodes in dts files according the the following rules: 1) Any nodes that already exist in any /include/d file, in the order they appear in the /include/d file. 2) Any nodes with a reg property, in order of their address. 3) Any nodes without a reg property, alphabetically by node name. Sign

[U-Boot] [PATCH v2 2/9] tegra: fdt: add apbdma node

2013-01-12 Thread Allen Martin
Add apbdma node for tegra20 and tegra30, copied directly from tegra Linux dtsi files. Signed-off-by: Allen Martin --- arch/arm/dts/tegra20.dtsi | 21 + arch/arm/dts/tegra30.dtsi | 37 + 2 files changed, 58 insertions(+) diff --git a/ar

[U-Boot] [PATCH v2 6/9] tegra30: fdt: add SPI SLINK nodes

2013-01-12 Thread Allen Martin
Add tegra30 SPI SLINK nodes to fdt. Signed-off-by: Allen Martin --- arch/arm/dts/tegra30.dtsi | 72 +++ board/nvidia/dts/tegra30-cardhu.dts |4 ++ 2 files changed, 76 insertions(+) diff --git a/arch/arm/dts/tegra30.dtsi b/arch/arm/dts/tegra30.dtsi

[U-Boot] [PATCH v2 9/9] tegra: cardhu: config: enable SPI

2013-01-12 Thread Allen Martin
Turn on SPI in cardhu config file Signed-off-by: Allen Martin --- include/configs/cardhu.h | 11 +++ 1 file changed, 11 insertions(+) diff --git a/include/configs/cardhu.h b/include/configs/cardhu.h index aa725ba..1616b39 100644 --- a/include/configs/cardhu.h +++ b/include/configs/car

[U-Boot] [PATCH v2 7/9] tegra: add addresses of SPI SLINK controllers

2013-01-12 Thread Allen Martin
Add I/O addresses of SPI SLINK controllers 1-6 Signed-off-by: Allen Martin --- arch/arm/include/asm/arch-tegra/tegra.h |6 ++ 1 file changed, 6 insertions(+) diff --git a/arch/arm/include/asm/arch-tegra/tegra.h b/arch/arm/include/asm/arch-tegra/tegra.h index 67e6fd0..d2435c1 100644 ---

[U-Boot] [PATCH v2 0/9] tegra: SPI drivers

2013-01-12 Thread Allen Martin
This series updates the tegra20 SPI driver to add fdt support and adds a new tegra30 SPI driver. This series depends on the following patches: Allen Martin: fdt: fix dts preprocessor options tegra: remove IRDA pinmux synonym Testing was done on seaboard (tegra20) and cardhu (tegra30)

[U-Boot] [PATCH v2 3/9] tegra20: fdt: add SPI SFLASH node

2013-01-12 Thread Allen Martin
Add node for tegra20 SPI SFLASH controller to fdt. Signed-off-by: Allen Martin --- arch/arm/dts/tegra20.dtsi | 12 board/nvidia/dts/tegra20-seaboard.dts |4 2 files changed, 16 insertions(+) diff --git a/arch/arm/dts/tegra20.dtsi b/arch/arm/dts/tegra20.dtsi i

[U-Boot] [PATCH v2 4/9] tegra: spi: add fdt support to tegra SPI SFLASH driver

2013-01-12 Thread Allen Martin
Add support for configuring tegra SPI driver from devicetree. Support is keyed off CONFIG_OF_CONTROL. Add entry in seaboard dts file for spi controller to describe seaboard spi. Signed-off-by: Allen Martin --- drivers/spi/tegra_spi.c | 42 +- include/fd

[U-Boot] [PATCH v2 5/9] tegra30: add SBC1 to periph id mapping table

2013-01-12 Thread Allen Martin
SBC1 is SPI controller 1 on tegra30 Signed-off-by: Allen Martin --- arch/arm/cpu/tegra30-common/clock.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/cpu/tegra30-common/clock.c b/arch/arm/cpu/tegra30-common/clock.c index c67a2e1..db5ac1e 100644 --- a/arch/arm/c

Re: [U-Boot] please pull u-boot-samsung master

2013-01-12 Thread Albert ARIBAUD
On Fri, 11 Jan 2013 22:33:58 +0100, Albert ARIBAUD wrote: > Hi Minkyu, > > On Fri, 11 Jan 2013 17:23:10 +0900, Minkyu Kang > wrote: > > Dear Albert, > > > > Merge samsung, imx, tegra into u-boot-arm/master (2012-12-22 11:59:14 > > +0100) > > > > are available in the git repository at: > >