Re: [U-Boot] [PATCH v3 0/6] Introduce generic relocation feature

2012-03-28 Thread Albert ARIBAUD
Hi Simon, Le 20/02/2012 23:38, Simon Glass a écrit : You should keep the code that jumps to board_init_r as it is. I have had a look at this and I don't believe that I can. I need to call it from C and so it needs to conform to the C calling standard. I will send a new series showing what I m

Re: [U-Boot] [PATCH 1/2] fdt: Avoid early panic() when there is no FDT present

2012-03-28 Thread Wolfgang Denk
Dear Simon Glass, In message <1332965305-21151-1-git-send-email-...@chromium.org> you wrote: > CONFIG_OF_CONTROL requires a valid device tree. However, we cannot call > panic() before the console is set up since the message does not appear, > and we get a silent failure. ... > +int fdtdec_prepare_

Re: [U-Boot] [PATCH 2/2] nand: remote biterr command stub

2012-03-28 Thread Wolfgang Denk
Dear Scott Wood, In message <20120328222743.ga14...@schlenkerla.am.freescale.net> you wrote: > It can be scripted instead with .raw accesses. > > Signed-off-by: Scott Wood Can you please add an example how to do that to the commit message? Thanks. Best regards, Wolfgang Denk -- DENX Softwar

Re: [U-Boot] arithmetic operations on hush

2012-03-28 Thread Wolfgang Denk
Dear Haneef Mohamed, In message <1332994302.35766.yahoomail...@web193303.mail.sg3.yahoo.com> you wrote: > > Does hush script support arithmetic operations. Hush itself does not, but the "setexpr" command does. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang D

Re: [U-Boot] Please pull u-boot-ti/master

2012-03-28 Thread Albert ARIBAUD
Hi Tom, Le 28/03/2012 23:54, Tom Rini a écrit : Hello, The following changes since commit 4a3ea216414ad762b3718775a65437c13f0accbc: Rob Herring (1): ARM: highbank: setup env from boot source register are available in the git repository at: git://git.denx.de/u-boot-ti master An

Re: [U-Boot] [PATCH 2/2] nand: remote biterr command stub

2012-03-28 Thread Stefan Roese
On Thursday 29 March 2012 00:27:43 Scott Wood wrote: > It can be scripted instead with .raw accesses. Typo in the subject: s/remote/remove Thanks, Stefan ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] pull request for u-boot-tegra/master

2012-03-28 Thread Albert ARIBAUD
Hi Tom, Le 28/03/2012 23:48, Tom Warren a écrit : Albert, Please pull u-boot-tegra/master into arm master. Thanks! The following changes since commit 4a3ea216414ad762b3718775a65437c13f0accbc: ARM: highbank: setup env from boot source register (2012-03-28 23:34:27 +0200) are available in

[U-Boot] arithmetic operations on hush

2012-03-28 Thread Haneef Mohamed
Hi, Does hush script support arithmetic operations. thanks haneef ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 1/2 v2] FSL/eSDHC: enable the peripheral clock to detect the card

2012-03-28 Thread Chang-Ming.Huang
From: Jerry Huang According to the card detection of p1/p2 platform RM, we should set SYSCTL[PEREN] to enable the clock. Otherwise, after booting the u-boot, and then inserting the SD card, the SD card can't be detected. Signed-off-by: Jerry Huang CC: Andy Fleming --- changes for v2: -

[U-Boot] [PATCH 2/2] nand: remote biterr command stub

2012-03-28 Thread Scott Wood
It can be scripted instead with .raw accesses. Signed-off-by: Scott Wood --- common/cmd_nand.c |6 -- 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/common/cmd_nand.c b/common/cmd_nand.c index 4456706..368c9f2 100644 --- a/common/cmd_nand.c +++ b/common/cmd_nand.c @@ -723

[U-Boot] [PATCH 1/2] nand: extend .raw accesses to work on multiple pages

2012-03-28 Thread Scott Wood
A use for this is to read, modify, erase, and write an entire block as a single unit, as a replacement for the biterr command. This way gives more flexibility in that you can also test multiple bit errors, errors in the ECC, etc. Signed-off-by: Scott Wood --- common/cmd_nand.c | 95 ++

[U-Boot] Please pull u-boot-ti/master

2012-03-28 Thread Tom Rini
Hello, The following changes since commit 4a3ea216414ad762b3718775a65437c13f0accbc: Rob Herring (1): ARM: highbank: setup env from boot source register are available in the git repository at: git://git.denx.de/u-boot-ti master Anatolij Gustschin (2): board/ti/beagle/beagle.c:

[U-Boot] pull request for u-boot-tegra/master

2012-03-28 Thread Tom Warren
Albert, Please pull u-boot-tegra/master into arm master. Thanks! The following changes since commit 4a3ea216414ad762b3718775a65437c13f0accbc: ARM: highbank: setup env from boot source register (2012-03-28 23:34:27 +0200) are available in the git repository at: git://git.denx.de/u-boot-tegra

Re: [U-Boot] [PATCH 2/2] arm: Check for valid FDT after console is up

2012-03-28 Thread Simon Glass
Hi Stephen, On Wed, Mar 28, 2012 at 2:11 PM, Stephen Warren wrote: > On 03/28/2012 02:08 PM, Simon Glass wrote: >> When using CONFIG_OF_CONTROL, add a check that we have a valid FDT >> and panic() if not. This must be done after the console is ready. >> >> Signed-off-by: Simon Glass > > Excellen

Re: [U-Boot] Any outstanding ARM pull requests?

2012-03-28 Thread Albert ARIBAUD
Hi Rob, The following changes since commit 7cb30b13f12077c7eec8ce2419cd96cd65ace8e2: Merge branch 'master' of git://git.denx.de/u-boot-cfi-flash (2012-03-23 21:59:16 +0100) are available in the git repository at: git://sources.calxeda.com/u-boot.git fixes Rob Herring (4): net: c

Re: [U-Boot] [PATCH 2/2] arm: Check for valid FDT after console is up

2012-03-28 Thread Stephen Warren
On 03/28/2012 02:08 PM, Simon Glass wrote: > When using CONFIG_OF_CONTROL, add a check that we have a valid FDT > and panic() if not. This must be done after the console is ready. > > Signed-off-by: Simon Glass Excellent. The behavior after this series is exactly what I was looking for. One que

Re: [U-Boot] [PATCH] BOOT: Add RAW ramdisk support to bootz

2012-03-28 Thread Marek Vasut
Dear Wolfgang Denk, > > Dear Marek Vasut, > > > > In message <201203221745.16226.marek.va...@gmail.com> you wrote: > > > > > Dear Wolfgang Denk, are we OK with applying this and bootz patch > > > > > please? Can we get it into .04 release please? > > > > > > > > "this" - which patch version exac

Re: [U-Boot] [PATCH 2/2] arm: Check for valid FDT after console is up

2012-03-28 Thread Simon Glass
+Wolfgang Hi Tom, On Wed, Mar 28, 2012 at 1:34 PM, Tom Warren wrote: > Simon, > >> -Original Message- >> From: Simon Glass [mailto:s...@chromium.org] >> Sent: Wednesday, March 28, 2012 1:08 PM >> To: U-Boot Mailing List >> Cc: Tom Warren; Stephen Warren; Albert Aribaud; Simon Glass >> Su

Re: [U-Boot] [PATCH 2/2] arm: Check for valid FDT after console is up

2012-03-28 Thread Tom Warren
Simon, > -Original Message- > From: Simon Glass [mailto:s...@chromium.org] > Sent: Wednesday, March 28, 2012 1:08 PM > To: U-Boot Mailing List > Cc: Tom Warren; Stephen Warren; Albert Aribaud; Simon Glass > Subject: [PATCH 2/2] arm: Check for valid FDT after console is up > > When using C

Re: [U-Boot] [PATCH 1/2] fdt: Avoid early panic() when there is no FDT present

2012-03-28 Thread Tom Warren
Simon, > -Original Message- > From: Simon Glass [mailto:s...@chromium.org] > Sent: Wednesday, March 28, 2012 1:08 PM > To: U-Boot Mailing List > Cc: Tom Warren; Stephen Warren; Albert Aribaud; Simon Glass; Jerry Van > Baren; Devicetree Discuss > Subject: [PATCH 1/2] fdt: Avoid early panic(

[U-Boot] [PATCH 2/2] arm: Check for valid FDT after console is up

2012-03-28 Thread Simon Glass
When using CONFIG_OF_CONTROL, add a check that we have a valid FDT and panic() if not. This must be done after the console is ready. Signed-off-by: Simon Glass --- arch/arm/lib/board.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/arch/arm/lib/board.c b/arch/arm

[U-Boot] [PATCH 1/2] fdt: Avoid early panic() when there is no FDT present

2012-03-28 Thread Simon Glass
CONFIG_OF_CONTROL requires a valid device tree. However, we cannot call panic() before the console is set up since the message does not appear, and we get a silent failure. Remove the panic from fdtdec_check_fdt() and provide a new function to prepare the fdt for use. This will be called after the

[U-Boot] [PATCH] mx6qsabrelite: Fix the serial console port

2012-03-28 Thread Fabio Estevam
On mx6qsabrelite the console is ttymxc1. Signed-off-by: Fabio Estevam --- include/configs/mx6qsabrelite.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/mx6qsabrelite.h b/include/configs/mx6qsabrelite.h index 8bc8a83..2643817 100644 --- a/include/config

Re: [U-Boot] Any outstanding ARM pull requests?

2012-03-28 Thread Rob Herring
Albert, Wolfgang, On 03/08/2012 10:07 AM, Rob Herring wrote: > > On 03/08/2012 01:20 AM, Albert ARIBAUD wrote: >> Hi all, >> >> On my working repo where I have all ARM subrepos as remotes, a >> >> git branch -r --no-merged | grep '/master' >> >> with HEAD set to my master branch gives the fol

Re: [U-Boot] Using qemu-system-ppc to boot U-Boot

2012-03-28 Thread Frank Svendsbøe
On Wed, Mar 28, 2012 at 12:16 AM, Marek Vasut wrote: > Dear Scott Wood, > >> On 03/27/2012 03:53 PM, Wolfgang Denk wrote: >> > Dear Frank, >> > >> > In message > you > wrote: >> >> I'm trying to figure out if anyone has ported a PPC system to QEMU >> >> that is capable of booting U-Boot. Similar

Re: [U-Boot] Using qemu-system-ppc to boot U-Boot

2012-03-28 Thread Frank Svendsbøe
On Tue, Mar 27, 2012 at 11:55 PM, Tom Rini wrote: > On Tue, Mar 27, 2012 at 03:59:48PM -0500, Scott Wood wrote: >> On 03/27/2012 03:53 PM, Wolfgang Denk wrote: >> > Dear Frank, >> > >> > In message >> > you >> > wrote: >> >> >> >> I'm trying to figure out if anyone has ported a PPC system to QE

Re: [U-Boot] [PATCH] arch/arm/cpu/armv7/omap-common/clocks-common.c: Fix build warnings

2012-03-28 Thread Tom Rini
On Wed, Mar 28, 2012 at 11:13:43AM +0200, Anatolij Gustschin wrote: > Fix: > clocks-common.c: In function 'setup_non_essential_dplls': > clocks-common.c:323:6: warning: variable 'sys_clk_khz' set but not used > [-Wunused-but-set-variable] > clocks-common.c: In function 'setup_non_essential_dplls':

Re: [U-Boot] [PATCH] board/ti/beagle/beagle.c: Fix build warnings

2012-03-28 Thread Tom Rini
On Wed, Mar 28, 2012 at 11:05:07AM +0200, Anatolij Gustschin wrote: > Fix: > beagle.c:257:13: warning: function declaration isn't a prototype > [-Wstrict-prototypes] > beagle.c:257:13: warning: function declaration isn't a prototype > [-Wstrict-prototypes] > > Also make beagle_dvi_pup() checkpatc

[U-Boot] [PATCH 1/2] OMAP: Remove omap1610inn-based boards

2012-03-28 Thread Tom Rini
The CS_AUTOBOOT configurations have been broken for a long time. Kshitij Gupta is no longer at TI making these broken and orphaned boards, so remove. Signed-off-by: Tom Rini --- MAINTAINERS |1 - board/ti/omap1610inn/Makefile| 45 --- board/ti/omap1

[U-Boot] [PATCH 2/2] OMAP: Move omap1510inn to Unmaintained / Orphaned

2012-03-28 Thread Tom Rini
After removing omap1610inn for not building, move omap1510inn to orphaned. Also update boards.cfg to note it's part of the 'omap' SoC to make sure the board is built more often and future breakage noticed quicker. Signed-off-by: Tom Rini --- MAINTAINERS |7 +++ boards.cfg |2 +- 2

Re: [U-Boot] POLL: DEVELOPER's MEETING

2012-03-28 Thread Mike Frysinger
On Friday 16 March 2012 06:54:39 Wolfgang Denk wrote: > thanks for all the feedback regarding a U-Boot Developer's Meeting. > As I lost track of who said what, I have set up a poll at Doodle. looks like the poll shows an answer ? can we make a decision on this ? -mike signature.asc Description:

Re: [U-Boot] [PATCH] board/vpac270/onenand.c: Fix build errors

2012-03-28 Thread Marek Vasut
Dear Anatolij Gustschin, > Building for vpac270_ond_256 configuration fails: > > arch/arm/lib/libarm.o: In function `icache_disable': > /home/ag/git/u-boot/arch/arm/lib/cache-cp15.c:156: multiple > definition of `icache_disable' > board/vpac270/libvpac270.o:/home/ag/git/u-boot/board/vpac270/onena

[U-Boot] [PATCH 6/7] pxe: parse initrd file from append string

2012-03-28 Thread Rob Herring
From: Rob Herring For syslinux, the initrd can be set in the append string as "initrd=", so try to find it there if we haven't already set the initrd. Signed-off-by: Rob Herring --- common/cmd_pxe.c | 15 ++- doc/README.pxe |3 --- 2 files changed, 14 insertions(+), 4 delet

[U-Boot] [PATCH 7/7] pxe: add support for parsing local syslinux files

2012-03-28 Thread Rob Herring
From: Rob Herring Add a new command "sysboot" which parses syslinux menu files and boots using kernel and initrd specified by menu files. The operation is similar to "pxe boot" except local files on ext2 or fat filesystem are parsed. Signed-off-by: Rob Herring --- common/cmd_pxe.c | 139 +

[U-Boot] [PATCH 5/7] pxe: support absolute paths

2012-03-28 Thread Rob Herring
From: Rob Herring If the file path starts with a '/', then don't pre-pend the bootfile path. This fixes a problem with running 'pxe boot' multiple times where the bootfile path gets pre-pended to itself each time. Signed-off-by: Rob Herring --- common/cmd_pxe.c | 23 ---

[U-Boot] [PATCH 4/7] pxe: support linux entries for labels

2012-03-28 Thread Rob Herring
From: Rob Herring Kernels can be specified using "linux" or "kernel" entry. The difference is kernel is supposed to detect the type of file, but for u-boot both are treated the same. Signed-off-by: Rob Herring --- common/cmd_pxe.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) d

[U-Boot] [PATCH 3/7] pxe: add support for label menu text

2012-03-28 Thread Rob Herring
From: Rob Herring Use a menu string if present, otherwise use the kernel string. Signed-off-by: Rob Herring --- common/cmd_pxe.c | 13 + 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/common/cmd_pxe.c b/common/cmd_pxe.c index 25054ba..2497b73 100644 --- a/common/c

[U-Boot] [PATCH 1/7] menu: only timeout when menu is displayed

2012-03-28 Thread Rob Herring
From: Rob Herring Make the menu timeout apply only when prompt flag is set and after the menu is displayed. This allows auto boot to work no matter whether prompt is set or cleared. Use the default selection if the menu times out. This also fixes the timeout value given to readline_into_buffer t

[U-Boot] [PATCH 2/7] pxe: support include files at top-level

2012-03-28 Thread Rob Herring
From: Rob Herring Include files outside of a menu were not getting included and parsed. Signed-off-by: Rob Herring --- common/cmd_pxe.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/common/cmd_pxe.c b/common/cmd_pxe.c index 8a68fa1..25054ba 100644 --- a/common/cm

[U-Boot] [PATCH 0/7] PXE parsing fixes and local file support

2012-03-28 Thread Rob Herring
From: Rob Herring The first 6 patches are menu file parsing fixes found in testing ubuntu/ debian generated menu files. The menu display is cleaned up to display the friendly menu label string and boot the default image on timeout as is typical for a PC bootloader. The last patch adds support fo

Re: [U-Boot] [PATCH] drivers/mmc/tegra2_mmc.c: fix GCC 4.6 warning

2012-03-28 Thread Tom Warren
Anatolij, > -Original Message- > From: Anatolij Gustschin [mailto:ag...@denx.de] > Sent: Wednesday, March 28, 2012 6:40 AM > To: u-boot@lists.denx.de > Cc: Doug Anderson; Tom Warren > Subject: [PATCH] drivers/mmc/tegra2_mmc.c: fix GCC 4.6 warning > > Fix: > tegra2_mmc.c: In function 'mmc_

[U-Boot] [PATCH] board/vpac270/onenand.c: Fix build errors

2012-03-28 Thread Anatolij Gustschin
Building for vpac270_ond_256 configuration fails: arch/arm/lib/libarm.o: In function `icache_disable': /home/ag/git/u-boot/arch/arm/lib/cache-cp15.c:156: multiple definition of `icache_disable' board/vpac270/libvpac270.o:/home/ag/git/u-boot/board/vpac270/onenand.c:65: first defined here arch/arm/l

[U-Boot] mixed case DATA lines in kwbimage.cfg, and other file : cosmetic?

2012-03-28 Thread David Purdy
Hi Prafulla & all, I understand that lower case hexadecimal for DATA lines is preferred for kwbimage.cfg (in Kirkwood). For a mixed-upper-and-lower-case kwbimage.cfg that is already in U-Boot, should I first submit a [PATCH][cosmetic] to change it to all lower case DATA? Or should this sort of

Re: [U-Boot] [PATCH 1/3] misc:pmic: Support for voltage to register value conversion function

2012-03-28 Thread Stefano Babic
On 28/03/2012 15:13, Lukasz Majewski wrote: > Hi Stefano, > Hi Lucasz, > I've looked on patches which I've posted and for patches from 1 do > 3 there isn't usage for this function. > > However I'm using this functionality in a code on which I'm working on > (Trats), so posting it to the list i

Re: [U-Boot] [PATCH] nhk8815: fix build errors

2012-03-28 Thread Alessandro Rubini
Acked-by: Alessandro Rubini ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] ext2load: increase read speed

2012-03-28 Thread Jason Cooper
This patch dramatically drops the amount of time u-boot needs to read a file from an ext2 partition. On a typical 2 to 5 MB file (kernels and initrds) it goes from tens of seconds to a couple seconds. All we are doing here is grouping contiguous blocks into one read. Boot tested on Globalscale T

Re: [U-Boot] [PATCH V2] Enable high speed support for USB device framework and usbtty

2012-03-28 Thread Marek Vasut
Dear Amit Virdi, > From: Vipin KUMAR > > This patch adds the support for high speed in usb device framework and > usbtty driver. This feature has been kept within a macro CONFIG_USBD_HS, > so the board configuration files have to define this macro to enable high > speed support. > > Along with

[U-Boot] [PATCH] drivers/mtd/spr_smi.c: Fix build warning

2012-03-28 Thread Anatolij Gustschin
Fix: spr_smi.c: In function 'smi_write': spr_smi.c:325:15: warning: variable 'WM' set but not used [-Wunused-but-set-variable] Signed-off-by: Anatolij Gustschin Cc: Vipin Kumar --- drivers/mtd/spr_smi.c |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/drivers/mtd/spr

Re: [U-Boot] [PATCH] nhk8815: fix build errors

2012-03-28 Thread Marek Vasut
Dear Anatolij Gustschin, > Fix: > common/libcommon.o: In function `cread_line': > /home/ag/git/u-boot/common/main.c:695: undefined reference to `get_ticks' > /home/ag/git/u-boot/common/main.c:695: undefined reference to `get_tbclk' > /home/ag/git/u-boot/common/main.c:698: undefined reference to `g

Re: [U-Boot] [PATCH 1/1] MX53: DDR: Fix ZQHWCTRL field TZQ_CS

2012-03-28 Thread Stefano Babic
On 28/03/2012 15:31, Fabio Estevam wrote: > On 3/28/12, Stefano Babic wrote: >> On 22/03/2012 23:00, Troy Kisky wrote: >>> Currently, board files are setting this field to 0x01 >>> which the manual says is a reserved value. Change to >>> use the default of 0x04 - 128 cycles. >>> >>> Signed-off-by:

[U-Boot] [PATCH] drivers/mmc/tegra2_mmc.c: fix GCC 4.6 warning

2012-03-28 Thread Anatolij Gustschin
Fix: tegra2_mmc.c: In function 'mmc_send_cmd': tegra2_mmc.c:230:3: warning: 'mask' may be used uninitialized in this function [-Wuninitialized] Signed-off-by: Anatolij Gustschin Cc: Doug Anderson Cc: Tom Warren --- gcc is wrong here, I think. But I'd like to have a clean build log. Anatolij

Re: [U-Boot] [PATCH 1/1] MX53: DDR: Fix ZQHWCTRL field TZQ_CS

2012-03-28 Thread Fabio Estevam
On 3/28/12, Stefano Babic wrote: > On 22/03/2012 23:00, Troy Kisky wrote: >> Currently, board files are setting this field to 0x01 >> which the manual says is a reserved value. Change to >> use the default of 0x04 - 128 cycles. >> >> Signed-off-by: Troy Kisky >> --- > > Thanks everybody to fix /

Re: [U-Boot] [PATCH 1/1] MX53: DDR: Fix ZQHWCTRL field TZQ_CS

2012-03-28 Thread Stefano Babic
On 22/03/2012 23:00, Troy Kisky wrote: > Currently, board files are setting this field to 0x01 > which the manual says is a reserved value. Change to > use the default of 0x04 - 128 cycles. > > Signed-off-by: Troy Kisky > --- Thanks everybody to fix / explain this issue. Applied to u-boot-imx(f

Re: [U-Boot] [PATCH 1/3] misc:pmic: Support for voltage to register value conversion function

2012-03-28 Thread Lukasz Majewski
On Wed, 28 Mar 2012 14:50:35 +0200 Stefano Babic wrote: > On 28/03/2012 14:38, Lukasz Majewski wrote: > > > Hi Stefano, > > > > Hi Lucasz, > > > I've already forwarded those patches to you. > > They are also available on the mailing list, so I don't know what > > has happened. > > Really not

Re: [U-Boot] [PATCH 1/1] MX53: DDR: Fix ZQHWCTRL field TZQ_CS

2012-03-28 Thread Fabio Estevam
On 3/22/12, Troy Kisky wrote: > Currently, board files are setting this field to 0x01 > which the manual says is a reserved value. Change to > use the default of 0x04 - 128 cycles. > > Signed-off-by: Troy Kisky Confirmed with the design team that your patch is correct. Thanks for catching this.

[U-Boot] [PATCH] Sheevaplug: Add Kirkwood watchdog support

2012-03-28 Thread Stathis Voukelatos
Signed-off-by: Stathis Voukelatos Cc: Prafulla Wadaskar --- arch/arm/cpu/arm926ejs/kirkwood/timer.c | 47 +++-- arch/arm/include/asm/arch-kirkwood/cpu.h |1 + board/Marvell/sheevaplug/sheevaplug.c| 23 ++- include/configs/sheevaplug.h

[U-Boot] [PATCH] nhk8815: fix build errors

2012-03-28 Thread Anatolij Gustschin
Fix: common/libcommon.o: In function `cread_line': /home/ag/git/u-boot/common/main.c:695: undefined reference to `get_ticks' /home/ag/git/u-boot/common/main.c:695: undefined reference to `get_tbclk' /home/ag/git/u-boot/common/main.c:698: undefined reference to `get_ticks' Signed-off-by: Anatolij G

Re: [U-Boot] [PATCH 1/3] misc:pmic: Support for voltage to register value conversion function

2012-03-28 Thread Stefano Babic
On 28/03/2012 14:38, Lukasz Majewski wrote: > Hi Stefano, > Hi Lucasz, > I've already forwarded those patches to you. > They are also available on the mailing list, so I don't know what has > happened. Really nothing, I got all e-mails, I was only not able to explain my doubt. I try again: -

Re: [U-Boot] [PATCH 1/3] misc:pmic: Support for voltage to register value conversion function

2012-03-28 Thread Stefano Babic
On 28/03/2012 13:26, Lukasz Majewski wrote: Hi Lukasz, >> >>> >>> +int pmic_vol_to_reg(struct pmic *p, int uV) >> >> You added a new entry point to pmic, but you do not use it...I have >> not found in your patchset why it is necessary for you. >> > > Rationale for this change is in commits foll

Re: [U-Boot] [PATCH 1/3] misc:pmic: Support for voltage to register value conversion function

2012-03-28 Thread Lukasz Majewski
Hi Stefano, On Wed, 28 Mar 2012 12:26:46 +0200 Stefano Babic wrote: > On 28/03/2012 10:45, Lukasz Majewski wrote: > > Support for voltage (in uV) to proper register value is added. > > The function tied to this callback is often PMIC dependent > > and shall be defined for each device. > > > > S

Re: [U-Boot] [PATCH 1/3] misc:pmic: Support for voltage to register value conversion function

2012-03-28 Thread Stefano Babic
On 28/03/2012 10:45, Lukasz Majewski wrote: > Support for voltage (in uV) to proper register value is added. > The function tied to this callback is often PMIC dependent > and shall be defined for each device. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park > Cc: Stefano Babic

Re: [U-Boot] [PATCH 3/3] misc:pmic:samsung Convert TRATS target to use MAX8997 instead of MAX8998

2012-03-28 Thread Minkyu Kang
On 28 March 2012 17:45, Lukasz Majewski wrote: > TRATS target uses MAX8997 PMIC device instead of MAX8998. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park > Cc: Minkyu Kang > Cc: Stefano Babic > --- >  board/samsung/trats/trats.c |   27 ++- >  include/

Re: [U-Boot] [PATCH 2/2] mx28evk: Add a README file

2012-03-28 Thread Stefano Babic
On 24/03/2012 21:58, Fabio Estevam wrote: > Add a README file for mx28evk board. > > Signed-off-by: Fabio Estevam > --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: W

Re: [U-Boot] [PATCH v2 1/2] mx28: Split the README into a common part and a m28 specific part

2012-03-28 Thread Stefano Babic
On 24/03/2012 23:42, Fabio Estevam wrote: > Split the README into a common part and a m28 specific part. > > This will make things easier when adding new README files for other mx28 > based boards. > > Signed-off-by: Fabio Estevam > --- Applied to u-boot-imx, thanks. Best regards, Stefano Babi

[U-Boot] [PATCH] arch/arm/cpu/armv7/omap-common/clocks-common.c: Fix build warnings

2012-03-28 Thread Anatolij Gustschin
Fix: clocks-common.c: In function 'setup_non_essential_dplls': clocks-common.c:323:6: warning: variable 'sys_clk_khz' set but not used [-Wunused-but-set-variable] clocks-common.c: In function 'setup_non_essential_dplls': clocks-common.c:323:6: warning: variable 'sys_clk_khz' set but not used [-Wunu

[U-Boot] [PATCH] board/ti/beagle/beagle.c: Fix build warnings

2012-03-28 Thread Anatolij Gustschin
Fix: beagle.c:257:13: warning: function declaration isn't a prototype [-Wstrict-prototypes] beagle.c:257:13: warning: function declaration isn't a prototype [-Wstrict-prototypes] Also make beagle_dvi_pup() checkpatch clean, fix: ERROR: open brace '{' following function declarations go on the next

[U-Boot] [PATCH 3/3] misc:pmic:samsung Convert TRATS target to use MAX8997 instead of MAX8998

2012-03-28 Thread Lukasz Majewski
TRATS target uses MAX8997 PMIC device instead of MAX8998. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Minkyu Kang Cc: Stefano Babic --- board/samsung/trats/trats.c | 27 ++- include/configs/trats.h |2 +- 2 files changed, 11 insertions(+),

[U-Boot] [PATCH 2/3] misc:pmic:max8997 MAX8997 support for PMIC driver

2012-03-28 Thread Lukasz Majewski
This commit adds support for MAX8997 PMIC driver. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Stefano Babic --- drivers/misc/Makefile |1 + drivers/misc/pmic_max8997.c | 60 ++ include/max8997_pmic.h | 190 ++

[U-Boot] [PATCH 1/3] misc:pmic: Support for voltage to register value conversion function

2012-03-28 Thread Lukasz Majewski
Support for voltage (in uV) to proper register value is added. The function tied to this callback is often PMIC dependent and shall be defined for each device. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Stefano Babic --- drivers/misc/pmic_core.c | 10 ++ include/

[U-Boot] [PATCH] TRATS: modify the trats's configuration

2012-03-28 Thread Jaehoon Chung
Trats is supported 1GiB memory size. (Each bank size is 512MB.) And INITRD is unnecessary. So removed them. Signed-off-by: Jaehoon Chung Signed-off-by: Kyungmin Park --- include/configs/trats.h |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/configs/trats.h

Re: [U-Boot] [PATCH] lzma: fix printf warnings

2012-03-28 Thread Anatolij Gustschin
Hi Mike, On Sun, 8 Jan 2012 04:14:35 -0500 Mike Frysinger wrote: > Fix size_t printf format warnings: > > LzmaTools.c: In function 'lzmaBuffToBuffDecompress': > LzmaTools.c:110:5: warning: format '%x' expects type 'unsigned int', > but argument 2 has type 'SizeT' >

Re: [U-Boot] [PATCH 1/2] FSL/eSDHC: enable the peripheral clock to detect the card

2012-03-28 Thread Stefano Babic
> I.MX6/5 reuse the fsl_esdhc.c driver, and he don't care these reserved field. > Otherwise he should change this driver. E.g: > In function esdhc_init: > esdhc_write32(®s->sysctl, SYSCTL_HCKEN | SYSCTL_IPGEN); > in function set_sysctl: > clk = SYSCTL_PEREN | SYSCTL_CKEN; > esdhc_setbits32(®s->sysc

Re: [U-Boot] [PATCH v5] kirkwood: add support for Cloud Engines Pogoplug E02

2012-03-28 Thread Prafulla Wadaskar
> -Original Message- > From: Dave Purdy [mailto:david.c.pu...@gmail.com] > Sent: 28 March 2012 07:31 > To: u-boot@lists.denx.de > Cc: Dave Purdy; Prafulla Wadaskar; albert.u.b...@aribaud.net > Subject: [PATCH v5] kirkwood: add support for Cloud Engines Pogoplug > E02 > > This patch adds

Re: [U-Boot] [PATCH v2] spi/kirkwood: add weak functions board_spi_bus_claim/release

2012-03-28 Thread Prafulla Wadaskar
> -Original Message- > From: Valentin Longchamp [mailto:valentin.longch...@keymile.com] > Sent: 27 March 2012 18:58 > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Gerlando Falauto; Holger Brunck > Subject: Re: [PATCH v2] spi/kirkwood: add weak functions > board_spi_bus_claim/release

Re: [U-Boot] [PATCH 1/4] net: ll_temac: Add LL TEMAC driver to u-boot

2012-03-28 Thread Michal Simek
Hi Joe, Stephan Linz wrote: Xilinx LocalLink Tri-Mode Ether MAC driver can be used by Xilinx Microblaze or Xilinx ppc405/440 in SDMA and FIFO mode. DCR or XPS bus can be used. Joe, Wolfgang: I don't agree with this driver because it is doing the same things as my origin version but on 800 line

Re: [U-Boot] [PATCH v2 00/19] updates for keymile arm boards

2012-03-28 Thread Prafulla Wadaskar
> -Original Message- > From: Valentin Longchamp [mailto:valentin.longch...@keymile.com] > Sent: 27 March 2012 19:02 > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de > Subject: Re: [PATCH v2 00/19] updates for keymile arm boards > > Prafulla, > > On 03/26/2012 01:34 PM, Valentin Longch