[U-Boot] [PATCH] EXYNOS4: Add pinmux support for SROMC

2012-12-12 Thread Jeong-Hyeon Kim
This patch adds pinumx support for SROMC. Signed-off-by: Jeong-Hyeon Kim --- arch/arm/cpu/armv7/exynos/pinmux.c | 77 1 file changed, 77 insertions(+) diff --git a/arch/arm/cpu/armv7/exynos/pinmux.c b/arch/arm/cpu/armv7/exynos/pinmux.c index d778b46..cdd6

[U-Boot] NXP lpc31xx support

2012-12-12 Thread Paul B. Henson
A friend of mine (who is more of a low-level hardware guy) is trying to put together a project based on the NXP lpc3130 processor, and asked me to help him out. I've got a reasonable OS/development background, but not much of any experience in the embedded realm, so apologies in advance for any

[U-Boot] Using U-Boot in a mixed licensed environment

2012-12-12 Thread Stephen Baker
All, My question stems from building a "standalone" application for U-Boot with code that has conflicting licenses with GPL v2. The COPYING file states that if I used the standard jump table then the standalone application will not fall under GPL v2. However if I want to expand the functionality

Re: [U-Boot] [PATCH 3/4] EXYNOS4: Add support for Exynos4x12 SoCs

2012-12-12 Thread Chander Kashyap
On 13 December 2012 11:49, Chander Kashyap wrote: > Dear Kim, > > On 12 December 2012 13:24, Jeong Hyeon Kim wrote: >> From: Jeong-Hyeon Kim >> >> This patch adds the support for Exynos4212/4412. >> >> Samsung's ARM Cortex-A9 based Exynos4x12 SoCs and Exynos4210 are similar. >> Address of a few

Re: [U-Boot] [PATCH 3/4] EXYNOS4: Add support for Exynos4x12 SoCs

2012-12-12 Thread Chander Kashyap
Dear Kim, On 12 December 2012 13:24, Jeong Hyeon Kim wrote: > From: Jeong-Hyeon Kim > > This patch adds the support for Exynos4212/4412. > > Samsung's ARM Cortex-A9 based Exynos4x12 SoCs and Exynos4210 are similar. > Address of a few registers are different in CMU part like MPLL. > > Signed-off-

Re: [U-Boot] [PATCH v2] usbh/ehci: Increase timeout for enumeration

2012-12-12 Thread Vipin Kumar
On 12/12/2012 4:55 PM, Marek Vasut wrote: Dear Vipin Kumar, + ulong start = get_timer(0); + + do { + ret = usb_get_port_status(dev, i + 1, portsts); + if (ret< 0) { + USB_HUB_PRINTF("get_port

Re: [U-Boot] [PATCH v2] imls: Add support to list images in NAND device

2012-12-12 Thread Vipin Kumar
[...] README | 3 +- common/cmd_bootm.c | 133 - 2 files changed, 134 insertions(+), 2 deletions(-) diff --git a/README b/README index 2077c3b..ec5c31e 100644 --- a/README +++ b/README @@ -831,7 +831,8 @@ The following opti

Re: [U-Boot] [PATCH v2] imls: Add support to list images in NAND device

2012-12-12 Thread Vipin Kumar
On 12/13/2012 1:54 AM, Wolfgang Denk wrote: Dear Vipin Kumar, In message you wrote: imls does not list the images in NAND devices. This patch implements this support for legacy type images. ... -static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) +static void do_i

Re: [U-Boot] [PATCH 2/5] EXYNOS5: Add pinmux for LCD

2012-12-12 Thread Minkyu Kang
On 12/12/12 23:02, Kyungmin Park wrote: > Hi, > > On Tue, Dec 11, 2012 at 8:01 PM, Ajay Kumar wrote: >> This patch adds pinmux configuration for backlight, LCD reset >> and HPD for DP panel on Exynos5 SMDK. >> >> Signed-off-by: Ajay Kumar >> --- >> arch/arm/cpu/armv7/exynos/pinmux.c|

[U-Boot] [PATCH 04/11] usb: ehci: Support interrupt transfers via periodic list

2012-12-12 Thread Simon Glass
From: Patrick Georgi Interrupt transfers aren't meant to be used from the async list (the EHCI spec indicates trouble with low/full-speed intr on async). Build a periodic list instead, and provide an API to make use of it. Then, use that API from the existing interrupt transfer API. This provid

[U-Boot] [PATCH 11/11] x86: Enable USB features for coreboot

2012-12-12 Thread Simon Glass
Enable PCI EHCI, storage, keyboard and Ethernet for USB. Signed-off-by: Simon Glass --- include/configs/coreboot.h | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/include/configs/coreboot.h b/include/configs/coreboot.h index adeace0..79adbc0 100644 --- a

[U-Boot] [PATCH 05/11] usb: ehci: Fix aliasing issue in EHCI interrupt code

2012-12-12 Thread Simon Glass
From: Vincent Palatin The interrupt endpoint handling code stores the buffer pointer in the QH padding field. We need to make it the size of a pointer to avoid strict aliasing issue with the compiler. Signed-off-by: Vincent Palatin Signed-off-by: Simon Glass --- drivers/usb/host/ehci.h |

[U-Boot] [PATCH 01/11] usb: net: asix: Do a fast init if link already established

2012-12-12 Thread Simon Glass
The Asix driver takes the link down during init() and then brings it back up. This commit changes this so that if a link has already been established successfully we simply check that the link is still good. Also fix up asix_halt() to actually halt RX on the interface. Previously this was not done

[U-Boot] [PATCH 08/11] usb: Clean up newly allocated device nodes in case of configuration failure

2012-12-12 Thread Simon Glass
From: Milind Choudhary If probe of a newly connected device fails for some reason, clean up the allocated entry in usb_dev array. Signed-off-by: Milind Choudhary Signed-off-by: Simon Glass --- common/usb.c | 12 common/usb_hub.c |2 ++ include/usb.h|1 + 3 files

[U-Boot] [PATCH 07/11] usb: usbeth: smsc95xx: remove EEPROM loaded check

2012-12-12 Thread Simon Glass
From: Michael Spang [port of Linux kernel commit bcd218be5aeb by Steve Glendinning] The eeprom read & write commands currently check the E2P_CMD_LOADED_ bit is set before allowing any operations. This prevents any reading or writing unless a correctly programmed EEPROM is installed. Signed-off

[U-Boot] [PATCH 06/11] usb: ehci: Add timeout on interrupt endpoint operations

2012-12-12 Thread Simon Glass
From: Vincent Palatin Ensure we cannot get stuck in the keyboard scanning if something wrong happens (USB device unplugged or fatal I/O error) Signed-off-by: Vincent Palatin Signed-off-by: Simon Glass --- drivers/usb/host/ehci-hcd.c | 18 -- 1 files changed, 16 insertions(+

[U-Boot] [PATCH 09/11] usb: properly detect empty mass storage media reader

2012-12-12 Thread Simon Glass
From: Vincent Palatin When a USB card reader is empty, it will return "Not Ready - medium not present" as Key Code Qualifier. In that situation, it's useless waiting for the full timeout since the result won't change until the user inserts a card. Signed-off-by: Vincent Palatin Signed-off-by: V

[U-Boot] [PATCH 02/11] usb: ehci: Add 64-bit controller support

2012-12-12 Thread Simon Glass
From: Vincent Palatin On EHCI controller with 64-bit address space support, we must initialize properly the high word for the PCI bus master accesses. Signed-off-by: Vincent Palatin Signed-off-by: Simon Glass --- drivers/usb/host/ehci-hcd.c |3 +++ 1 files changed, 3 insertions(+), 0 dele

[U-Boot] [PATCH 10/11] usb: Add multiple controllers support for EHCI PCI

2012-12-12 Thread Simon Glass
From: Vincent Palatin Use the ability to have several active EHCI controller on a system in the PCI EHCI controller implementation. Signed-off-by: Simon Glass --- drivers/usb/host/ehci-pci.c | 24 +++- 1 files changed, 15 insertions(+), 9 deletions(-) diff --git a/driver

[U-Boot] [PATCH 03/11] usb: ehci: generic PCI support

2012-12-12 Thread Simon Glass
From: Vincent Palatin Instead of hardcoding the PCI IDs on the USB controller, use the PCI class to detect them. Ensure the busmaster bit is properly set in the PCI configuration. Signed-off-by: Simon Glass --- drivers/usb/host/ehci-pci.c | 37 + 1 files

[U-Boot] [PATCH 0/11] Various USB improvements

2012-12-12 Thread Simon Glass
This series adds a few USB improvements for Marek: - Support for interupt transfers - Faster start-up and proper shutdown of ASIX USB adapter - Basic 64-bit controller support (used by x86) - Fix detection of empty USB media readers - Clean up after device configuration failure Michael Spang (1)

Re: [U-Boot] [PATCH] ns16550: allow UART address to be set dynamically

2012-12-12 Thread Simon Glass
Hi Stephen, On Wed, Dec 12, 2012 at 3:52 PM, Stephen Warren wrote: > On 12/12/2012 04:38 PM, Simon Glass wrote: >> Hi Stephen, >> >> On Wed, Dec 12, 2012 at 3:23 PM, Stephen Warren >> wrote: >>> From: Stephen Warren >>> >>> A single U-Boot binary may support multiple very similar boards. These

Re: [U-Boot] [PATCH] ns16550: allow UART address to be set dynamically

2012-12-12 Thread Stephen Warren
On 12/12/2012 04:38 PM, Simon Glass wrote: > Hi Stephen, > > On Wed, Dec 12, 2012 at 3:23 PM, Stephen Warren wrote: >> From: Stephen Warren >> >> A single U-Boot binary may support multiple very similar boards. These >> boards may use different UARTs for the main debug console. Hence, it is >> i

Re: [U-Boot] [PATCH] net: sh_eth: add support for SH7752

2012-12-12 Thread Nobuhiro Iwamatsu
Hi, Thanks. I set assign to you in patchwork. But first, this was set to me. Best regards, Nobuhiro On Wed, Dec 12, 2012 at 4:23 PM, Joe Hershberger wrote: > Hi > > On Wed, Dec 12, 2012 at 12:37 AM, Nobuhiro Iwamatsu > wrote: >> Hi, Joe. >> >> Please pick this patch for your repository. > >

Re: [U-Boot] [PATCH] ns16550: allow UART address to be set dynamically

2012-12-12 Thread Simon Glass
Hi Stephen, On Wed, Dec 12, 2012 at 3:23 PM, Stephen Warren wrote: > From: Stephen Warren > > A single U-Boot binary may support multiple very similar boards. These > boards may use different UARTs for the main debug console. Hence, it is > impossible to #define CONFIG_SYS_NS16550_COM1 to some s

Re: [U-Boot] [PATCH 4/8] Add a poll function to monitor events

2012-12-12 Thread Simon Glass
Hi Wolfgang, On Wed, Dec 12, 2012 at 2:11 PM, Wolfgang Denk wrote: > Dear Simon Glass, > > In message > you > wrote: >> >> > Also, this should not be considered as somethin board specific as the >> > name "board polling function" might suggest. What is being discussed >> > here is not more an

[U-Boot] [PATCH] ns16550: allow UART address to be set dynamically

2012-12-12 Thread Stephen Warren
From: Stephen Warren A single U-Boot binary may support multiple very similar boards. These boards may use different UARTs for the main debug console. Hence, it is impossible to #define CONFIG_SYS_NS16550_COM1 to some static UART address, since the true value may only be determined at run-time, a

Re: [U-Boot] [PATCH V3 0/7] Add support for NVIDIA Tegra30 SoC

2012-12-12 Thread Tom Warren
Simon, On Wed, Dec 12, 2012 at 3:40 PM, Simon Glass wrote: > Hi Tom, > > On Tue, Dec 11, 2012 at 7:05 PM, Allen Martin wrote: >> On Tue, Dec 11, 2012 at 03:34:11PM -0800, Tom Warren wrote: >>> This patch series adds basic (boot to cmd prompt) support for Tegra30. >>> This is based on the Tegra20

Re: [U-Boot] [PATCH V3 5/7] Tegra30: Cardhu: Add DT files

2012-12-12 Thread Tom Warren
Stephen, On Wed, Dec 12, 2012 at 3:10 PM, Stephen Warren wrote: > On 12/11/2012 04:34 PM, Tom Warren wrote: >> These are stripped down for bringup, They'll be filled out later >> to match-up with the kernel DT contents, and/or as devices are >> brought up (mmc, usb, spi, etc.). > >> diff --git a/

Re: [U-Boot] [PATCH V3 4/7] Tegra30: Add common CPU (shared) files

2012-12-12 Thread Tom Warren
Stephen, On Wed, Dec 12, 2012 at 3:06 PM, Stephen Warren wrote: > On 12/12/2012 09:14 AM, Tom Warren wrote: >> Allen, >> >> On Tue, Dec 11, 2012 at 5:45 PM, Allen Martin wrote: >>> On Tue, Dec 11, 2012 at 03:34:15PM -0800, Tom Warren wrote: These files are used by both SPL and main U-Boot.

Re: [U-Boot] [PATCH V3 1/7] Tegra30: Add arch-tegra30 include files

2012-12-12 Thread Tom Warren
Stephen, On Wed, Dec 12, 2012 at 3:02 PM, Stephen Warren wrote: > On 12/12/2012 09:23 AM, Tom Warren wrote: >> Stephen, >> >> On Tue, Dec 11, 2012 at 5:36 PM, Stephen Warren >> wrote: >>> On 12/11/2012 04:34 PM, Tom Warren wrote: Common Tegra files are in arch-tegra, shared between T20 and

Re: [U-Boot] [PATCH v2] imls: Add support to list images in NAND device

2012-12-12 Thread Scott Wood
On 12/12/2012 03:20:24 AM, Vipin Kumar wrote: imls does not list the images in NAND devices. This patch implements this support for legacy type images. Signed-off-by: Vipin Kumar --- Hello Scott, There has been sometime since you reviewed the first version of this patch. http://lists.denx

Re: [U-Boot] [PATCH V3 0/7] Add support for NVIDIA Tegra30 SoC

2012-12-12 Thread Simon Glass
Hi Tom, On Tue, Dec 11, 2012 at 7:05 PM, Allen Martin wrote: > On Tue, Dec 11, 2012 at 03:34:11PM -0800, Tom Warren wrote: >> This patch series adds basic (boot to cmd prompt) support for Tegra30. >> This is based on the Tegra20 SPL, which initializes the AVP (ARM7TDMI) >> boot proc) first, then

Re: [U-Boot] [PATCH 4/4] sf: Add Quad-input Page Program(32h) instruction support

2012-12-12 Thread Simon Glass
Hi Jagan, On Wed, Dec 12, 2012 at 8:52 AM, Jagan Teki wrote: > Hi Simon, > > On Wed, Dec 12, 2012 at 12:11 PM, Simon Glass wrote: >> Hi, >> >> On Mon, Dec 10, 2012 at 6:42 AM, Jagannadha Sutradharudu Teki >> wrote: >>> This patch provides support to program a flash using >>> Quad-input Page Pro

Re: [U-Boot] [PATCH 3/4] sf: Add configuration register writing

2012-12-12 Thread Simon Glass
Hi Jagan, On Wed, Dec 12, 2012 at 8:21 AM, Jagan Teki wrote: > Hi Simon, > > On Wed, Dec 12, 2012 at 8:53 PM, Simon Glass wrote: >> Hi Jagan, >> >> On Wed, Dec 12, 2012 at 7:20 AM, Jagan Teki wrote: >>> Hi Simon, >>> >>> On Wed, Dec 12, 2012 at 12:05 PM, Simon Glass wrote: Hi, O

Re: [U-Boot] [PATCH 2/4] sf: Add print message on flash read function

2012-12-12 Thread Simon Glass
On Wed, Dec 12, 2012 at 6:46 AM, Jagan Teki wrote: > Hi Simon, > > On Wed, Dec 12, 2012 at 12:03 PM, Simon Glass wrote: >> Hi, >> >> On Mon, Dec 10, 2012 at 6:41 AM, Jagannadha Sutradharudu Teki >> wrote: >>> This patch adds a print message on spi_flash_cmd_read_fast() >>> to make sure that how

Re: [U-Boot] [PATCH V3 7/7] Tegra30: Add/enable Cardhu build (T30 reference board)

2012-12-12 Thread Stephen Warren
On 12/11/2012 04:34 PM, Tom Warren wrote: > This build is stripped down. It boots to the command prompt. > GPIO is the only peripheral supported. Others TBD. > > include/configs/tegra-common.h now holds common config options > for Tegra SoCs. Reviewed-by: Stephen Warren

Re: [U-Boot] [PATCH V3 6/7] Tegra30: Add generic Tegra30 build support

2012-12-12 Thread Stephen Warren
On 12/11/2012 04:34 PM, Tom Warren wrote: > This patch adds basic Tegra30 (T30) build support - no specific > board is targeted. Reviewed-by: Stephen Warren ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 4/8] Add a poll function to monitor events

2012-12-12 Thread Wolfgang Denk
Dear Simon Glass, In message you wrote: > > > Also, this should not be considered as somethin board specific as the > > name "board polling function" might suggest. What is being discussed > > here is not more and not less than support for periodic, asynchronous > > services. So let's call it

Re: [U-Boot] [PATCH V3 5/7] Tegra30: Cardhu: Add DT files

2012-12-12 Thread Stephen Warren
On 12/11/2012 04:34 PM, Tom Warren wrote: > These are stripped down for bringup, They'll be filled out later > to match-up with the kernel DT contents, and/or as devices are > brought up (mmc, usb, spi, etc.). > diff --git a/board/nvidia/dts/tegra30-cardhu.dts > b/board/nvidia/dts/tegra30-cardhu.

Re: [U-Boot] [PATCH V3 4/7] Tegra30: Add common CPU (shared) files

2012-12-12 Thread Stephen Warren
On 12/11/2012 04:34 PM, Tom Warren wrote: > These files are used by both SPL and main U-Boot. > Also made minor changes to shared Tegra code to support > T30 differences. Reviewed-by: Stephen Warren (briefly!) ___ U-Boot mailing list U-Boot@lists.denx

Re: [U-Boot] [PATCH V3 4/7] Tegra30: Add common CPU (shared) files

2012-12-12 Thread Stephen Warren
On 12/12/2012 09:14 AM, Tom Warren wrote: > Allen, > > On Tue, Dec 11, 2012 at 5:45 PM, Allen Martin wrote: >> On Tue, Dec 11, 2012 at 03:34:15PM -0800, Tom Warren wrote: >>> These files are used by both SPL and main U-Boot. >>> Also made minor changes to shared Tegra code to support >>> T30 diff

Re: [U-Boot] [PATCH V3 1/7] Tegra30: Add arch-tegra30 include files

2012-12-12 Thread Stephen Warren
On 12/12/2012 09:23 AM, Tom Warren wrote: > Stephen, > > On Tue, Dec 11, 2012 at 5:36 PM, Stephen Warren wrote: >> On 12/11/2012 04:34 PM, Tom Warren wrote: >>> Common Tegra files are in arch-tegra, shared between T20 and T30. >>> Tegra30-specific headers are in arch-tegra30. Note that some of >>

Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-12 Thread Marek Vasut
Dear Robert P. J. Day, > On Tue, 11 Dec 2012, Lukasz Majewski wrote: > > Hi Pantelis, > > > > > Tomorrow I will prepare output of USB Ellisys analizer on my side, so > > > we could get clue what is going on. > > > > Please find attached output from USB ellisys analizer. > > is it really appro

Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-12 Thread Marek Vasut
Dear Lukasz Majewski, > Hi Pantelis, > > > Tomorrow I will prepare output of USB Ellisys analizer on my side, so > > we could get clue what is going on. > > Please find attached output from USB ellisys analizer. > > (It is possible to download WinXP based program to view logs without > USB anal

Re: [U-Boot] One basic U-boot question

2012-12-12 Thread Scott Wood
On 12/12/2012 02:11:46 AM, Martin Peevski wrote: Hello, I have the following question. It is about the adresses where the U-boot and Linux Kernel are copyed in the SDRAM from NAND. In my board config file I have: #define CONFIG_SYS_LOAD_ADDR0x2200/* load address

Re: [U-Boot] [PATCH 4/8] Add a poll function to monitor events

2012-12-12 Thread Simon Glass
Hi Wolfgang, On Wed, Dec 12, 2012 at 12:44 PM, Wolfgang Denk wrote: > Dear Simon Glass, > > In message > you > wrote: >> >> >If anything like this gets implemented, it has to be done in a way >> >that will be general enough to be useful to others as well. >> >> Yes. It isn't really cle

[U-Boot] [PATCH] powerpc/t4qds: move VSC3316 config data from t4qds.h to t4qds.c

2012-12-12 Thread Timur Tabi
Static variables should be defined in C files, not header files, because otherwise every C file that #includes the header file will generate a duplicate of the variables. Since the vsc3316_xxx[] arrays are only used by t4qds.c anyway, just put the variables there. Signed-off-by: Timur Tabi ---

Re: [U-Boot] [PATCH 4/8] Add a poll function to monitor events

2012-12-12 Thread Wolfgang Denk
Dear Simon Glass, In message you wrote: > > >If anything like this gets implemented, it has to be done in a way > >that will be general enough to be useful to others as well. > > Yes. It isn't really clear how this sort of thing should be done, but > creating a board polling function s

Re: [U-Boot] [PATCH 3/8] EXYNOS5: Power down API for Thermal Management Unit

2012-12-12 Thread Wolfgang Denk
Dear Simon Glass, In message you wrote: > > > If we add something like this, it should be general enough to be used > > by other systems as well, i. e. please chose a generic API like plain > > poweroff() or similar. > > Maybe rename the function and move to a new include/power.h header, > wit

Re: [U-Boot] [PATCH 7/8] TMU: Add u-boot command to read current temp

2012-12-12 Thread Wolfgang Denk
Dear Simon Glass, In message you wrote: > > > Do we really need a new command here? > > > > We already have dtt, which basicly does the same. > > > > It makes no sense to add new commands for each new device, all doing > > basicly trhe same, just in an incompatible way. > > This patch feature

Re: [U-Boot] [PATCH v2] imls: Add support to list images in NAND device

2012-12-12 Thread Wolfgang Denk
Dear Vipin Kumar, In message you wrote: > imls does not list the images in NAND devices. This patch implements this > support for legacy type images. ... > -static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) > +static void do_imls_flash(void) Why is this void? Shoul

Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-12 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 12/12/12 12:55, Marek Vasut wrote: > Dear Tom Rini, > >> On 12/10/12 19:47, Marek Vasut wrote: >>> Dear Lukasz Majewski, >>> Pantelis, >>> >>> [...] >>> >>> Hm hm ... I suspect it'd be nice to have a separate DFU >>> custodian. That'd lever

Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-12 Thread Marek Vasut
Dear Tom Rini, > On 12/10/12 19:47, Marek Vasut wrote: > > Dear Lukasz Majewski, > > > >> Pantelis, > > > > [...] > > > > Hm hm ... I suspect it'd be nice to have a separate DFU custodian. > > That'd leverage some burden from me. I like that idea. I wonder if > > it'd be nice to start building

Re: [U-Boot] [PATCH 4/4] sf: Add Quad-input Page Program(32h) instruction support

2012-12-12 Thread Jagan Teki
Hi Simon, On Wed, Dec 12, 2012 at 12:11 PM, Simon Glass wrote: > Hi, > > On Mon, Dec 10, 2012 at 6:42 AM, Jagannadha Sutradharudu Teki > wrote: >> This patch provides support to program a flash using >> Quad-input Page Program(32h) instruction. >> >> This will effectively increases the data tran

Re: [U-Boot] [PATCH v2] usbh/ehci: Increase timeout for enumeration

2012-12-12 Thread Marek Vasut
Dear Vipin Kumar, > >> + ulong start = get_timer(0); > >> + > >> + do { > >> + ret = usb_get_port_status(dev, i + 1, portsts); > >> + if (ret< 0) { > >> + USB_HUB_PRINTF("get_port_status failed\n"); > >> +

Re: [U-Boot] [PATCH V3 2/7] Tegra30: Add AVP (arm720t) files

2012-12-12 Thread Tom Warren
Stephen, On Tue, Dec 11, 2012 at 5:40 PM, Stephen Warren wrote: > On 12/11/2012 04:34 PM, Tom Warren wrote: >> This provides SPL support for T30 boards - AVP early init, plus >> CPU (A9) init/jump to main U-Boot. >> >> Some changes were made to Tegra20 cpu.c to move common routines >> into tegra-

Re: [U-Boot] [PATCH V3 1/7] Tegra30: Add arch-tegra30 include files

2012-12-12 Thread Tom Warren
Stephen, On Tue, Dec 11, 2012 at 5:36 PM, Stephen Warren wrote: > On 12/11/2012 04:34 PM, Tom Warren wrote: >> Common Tegra files are in arch-tegra, shared between T20 and T30. >> Tegra30-specific headers are in arch-tegra30. Note that some of >> these will be filled in as more T30 support is add

Re: [U-Boot] [PATCH 3/4] sf: Add configuration register writing

2012-12-12 Thread Jagan Teki
Hi Simon, On Wed, Dec 12, 2012 at 8:53 PM, Simon Glass wrote: > Hi Jagan, > > On Wed, Dec 12, 2012 at 7:20 AM, Jagan Teki wrote: >> Hi Simon, >> >> On Wed, Dec 12, 2012 at 12:05 PM, Simon Glass wrote: >>> Hi, >>> >>> On Mon, Dec 10, 2012 at 6:42 AM, Jagannadha Sutradharudu Teki >>> wrote:

Re: [U-Boot] [PATCH V3 4/7] Tegra30: Add common CPU (shared) files

2012-12-12 Thread Tom Warren
Allen, On Tue, Dec 11, 2012 at 5:45 PM, Allen Martin wrote: > On Tue, Dec 11, 2012 at 03:34:15PM -0800, Tom Warren wrote: >> These files are used by both SPL and main U-Boot. >> Also made minor changes to shared Tegra code to support >> T30 differences. >> >> Signed-off-by: Tom Warren >> --- >>

Re: [U-Boot] [PATCH 3/4] sf: Add configuration register writing

2012-12-12 Thread Simon Glass
Hi Jagan, On Wed, Dec 12, 2012 at 7:20 AM, Jagan Teki wrote: > Hi Simon, > > On Wed, Dec 12, 2012 at 12:05 PM, Simon Glass wrote: >> Hi, >> >> On Mon, Dec 10, 2012 at 6:42 AM, Jagannadha Sutradharudu Teki >> wrote: >>> This patch provides support to program a flash config register. >>> >>> Conf

Re: [U-Boot] [PATCH 1/4] sf: Enable prints on erase and write functions

2012-12-12 Thread Simon Glass
+Mike who is the maintainer On Wed, Dec 12, 2012 at 7:16 AM, Jagan Teki wrote: > Hi Simon, > > On Wed, Dec 12, 2012 at 8:31 PM, Simon Glass wrote: >> Hi Jagan, >> >> On Wed, Dec 12, 2012 at 6:43 AM, Jagan Teki wrote: >>> Hi Simon, >>> >>> On Wed, Dec 12, 2012 at 12:01 PM, Simon Glass wrote: >>

Re: [U-Boot] [PATCH 3/4] sf: Add configuration register writing

2012-12-12 Thread Jagan Teki
Hi Simon, On Wed, Dec 12, 2012 at 12:05 PM, Simon Glass wrote: > Hi, > > On Mon, Dec 10, 2012 at 6:42 AM, Jagannadha Sutradharudu Teki > wrote: >> This patch provides support to program a flash config register. >> >> Configuration register contains the control bits used to configure >> the diffe

Re: [U-Boot] [PATCH 1/4] sf: Enable prints on erase and write functions

2012-12-12 Thread Jagan Teki
Hi Simon, On Wed, Dec 12, 2012 at 8:31 PM, Simon Glass wrote: > Hi Jagan, > > On Wed, Dec 12, 2012 at 6:43 AM, Jagan Teki wrote: >> Hi Simon, >> >> On Wed, Dec 12, 2012 at 12:01 PM, Simon Glass wrote: >>> Hi Jagan, >>> >>> On Mon, Dec 10, 2012 at 10:37 PM, Jagan Teki >>> wrote: Hi Simon,

Re: [U-Boot] [PATCH 2/2] EXYNOS5: Add gpio pin numbering feature

2012-12-12 Thread Simon Glass
Hi, On Wed, Dec 12, 2012 at 5:17 AM, Kyungmin Park wrote: > Hi, > > On Wed, Dec 12, 2012 at 8:33 PM, Rajeshwari Shinde > wrote: >> This patch adds support for gpio pin numbering support on EXYNOS5 >> pinmux. > > We already know that each exynos5 SoCs has different GPIO name and offsets. > So it'

Re: [U-Boot] [PATCH 1/4] sf: Enable prints on erase and write functions

2012-12-12 Thread Simon Glass
Hi Jagan, On Wed, Dec 12, 2012 at 6:43 AM, Jagan Teki wrote: > Hi Simon, > > On Wed, Dec 12, 2012 at 12:01 PM, Simon Glass wrote: >> Hi Jagan, >> >> On Mon, Dec 10, 2012 at 10:37 PM, Jagan Teki >> wrote: >>> Hi Simon, >>> >>> I understand your concern. >>> >>> But currently there is no prints

Re: [U-Boot] [PATCH V3 2/7] Tegra30: Add AVP (arm720t) files

2012-12-12 Thread Simon Glass
On Tue, Dec 11, 2012 at 3:34 PM, Tom Warren wrote: > This provides SPL support for T30 boards - AVP early init, plus > CPU (A9) init/jump to main U-Boot. > > Some changes were made to Tegra20 cpu.c to move common routines > into tegra-common/cpu.c and reduce code duplication. > > Signed-off-by: To

Re: [U-Boot] [PATCH V3 1/7] Tegra30: Add arch-tegra30 include files

2012-12-12 Thread Simon Glass
On Tue, Dec 11, 2012 at 3:34 PM, Tom Warren wrote: > Common Tegra files are in arch-tegra, shared between T20 and T30. > Tegra30-specific headers are in arch-tegra30. Note that some of > these will be filled in as more T30 support is added (drivers, > WB/LP0 support, etc.). A couple of Tegra20 fil

Re: [U-Boot] [PATCH 1/8] EXYNOS5: FDT: Add TMU device node values

2012-12-12 Thread Simon Glass
Hi Hatim, On Tue, Dec 11, 2012 at 2:54 AM, Hatim Ali wrote: > From: Akshay Saraswat > > Fdt entry for Exynos TMU driver specific pre-defined values used for > calibration of current temperature and defining threshold values. > > Signed-off-by: Akshay Saraswat > Acked-by: Simon Glass > > diff -

[U-Boot] [PATCH] sf: stmicro: add support for N25Q064

2012-12-12 Thread Jagannadha Sutradharudu Teki
Add support for Numonyx N25Q064 SPI flash. Signed-off-by: Jagannadha Sutradharudu Teki --- drivers/mtd/spi/stmicro.c |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/drivers/mtd/spi/stmicro.c b/drivers/mtd/spi/stmicro.c index 30b626a..9ec938a 100644 --- a/drivers/mtd

Re: [U-Boot] [PATCH 5/5] video: Modify exynos_fimd driver to support LCD console.

2012-12-12 Thread Simon Glass
On Tue, Dec 11, 2012 at 3:01 AM, Ajay Kumar wrote: > Currently, exynos FIMD driver is being used to support only TIZEN LOGOs. > In order to get LCD console, we need to enable half word swap feature > of FIMD and use 16 BPP. > > Signed-off-by: Ajay Kumar Eventual FDT support should help to remove

Re: [U-Boot] [PATCH 2/4] sf: Add print message on flash read function

2012-12-12 Thread Jagan Teki
Hi Simon, On Wed, Dec 12, 2012 at 12:03 PM, Simon Glass wrote: > Hi, > > On Mon, Dec 10, 2012 at 6:41 AM, Jagannadha Sutradharudu Teki > wrote: >> This patch adds a print message on spi_flash_cmd_read_fast() >> to make sure that how many bytes read from flash device. >> >> Signed-off-by: Jaganna

Re: [U-Boot] [PATCH 1/4] sf: Enable prints on erase and write functions

2012-12-12 Thread Jagan Teki
Hi Simon, On Wed, Dec 12, 2012 at 12:01 PM, Simon Glass wrote: > Hi Jagan, > > On Mon, Dec 10, 2012 at 10:37 PM, Jagan Teki wrote: >> Hi Simon, >> >> I understand your concern. >> >> But currently there is no prints a/f reading/writing/erasing the SPI flash. >> User's are unable to confirm wheth

Re: [U-Boot] [PATCH 4/5] EXYNOS5: Add support for FIMD and DP

2012-12-12 Thread Simon Glass
Hi Ajay, On Tue, Dec 11, 2012 at 3:01 AM, Ajay Kumar wrote: > Add panel_info structure required by LCD driver > and DP panel platdata for SMDK5250. > Enable FIMD and DP support on SMDK5250. > DP Panel size: 2560x1600. > We use 16BPP resolution to get LCD console. > > Signed-off-by: Ajay Kumar A

Re: [U-Boot] [PATCH 2/3] EXYNOS5: Add device node for USB.

2012-12-12 Thread Simon Glass
Hi Rajeshwari, On Mon, Dec 3, 2012 at 5:30 AM, Rajeshwari Shinde wrote: > This patch adds the device node required for USB > > Signed-off-by: Vivek Gautam > --- > arch/arm/dts/exynos5250.dtsi |6 ++ > 1 files changed, 6 insertions(+), 0 deletions(-) > > diff --git a/arch/arm/dts/exynos5

Re: [U-Boot] [PATCH 3/5] video: Fix compilation dependency of exynos_dp and exynos_mipi on exynos_fb

2012-12-12 Thread Simon Glass
On Tue, Dec 11, 2012 at 3:01 AM, Ajay Kumar wrote: > When only DP is used, we need not enable CONFIG_EXYNOS_MIPI_DSIM. > Similarly, when only MIPI is used, we need not enable CONFIG_EXYNOS_DP. > But the current structuring of code forces us to enable both > CONFIG_EXYNOS_MIPI_DSIM and CONFIG_EXYNO

Re: [U-Boot] [PATCH 1/5] EXYNOS5: Change parent clock of FIMD to MPLL

2012-12-12 Thread Simon Glass
Hi Ajay, On Tue, Dec 11, 2012 at 3:01 AM, Ajay Kumar wrote: > With VPLL as source clock to FIMD, > Exynos DP Initializaton was failing sometimes with unstable clock. > Changing FIMD source to resolves this issue. > > Signed-off-by: Ajay Kumar Acked-by: Simon Glass At some point it would be ni

Re: [U-Boot] [PATCH 2/2] SMDK5250: Enable pmic MAX77686

2012-12-12 Thread Simon Glass
Hi Rajeshwari, On Mon, Dec 10, 2012 at 3:55 AM, Rajeshwari Shinde wrote: > Enabled pmic MAX77686 for SMDK5250. > > Signed-off-by: Rajeshwari Shinde With nit below fixed: Acked-by: Simon Glass > --- > board/samsung/smdk5250/smdk5250.c | 15 +++ > include/configs/smdk5250.h

Re: [U-Boot] [PATCH 1/2] POWER: MAX77686: Modified as per the latest Implementation

2012-12-12 Thread Simon Glass
Hi Rajeshwari, On Mon, Dec 10, 2012 at 3:55 AM, Rajeshwari Shinde wrote: > Moved the pmic_max77686.c max77686_pmic.h to drivers/power > and made required changes accordingly > > Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass See nit below if you end up resending. You might consider u

Re: [U-Boot] [PATCH 5/5 v3] SMDK5250: config: Add configuration file for SMDK5250 board

2012-12-12 Thread Simon Glass
On Tue, Dec 11, 2012 at 2:52 AM, Hatim Ali wrote: > Add the configuration file for exynos5250 based SMDK5250 board. > > Signed-off-by: Hatim Ali Acked-by: Simon Glass > --- > Changes since v2: > - No Change > > include/configs/smdk5250.h | 33 + > 1 f

Re: [U-Boot] [PATCH 4/5 v3] exynos5: config: Rename the smdk5250.h to exynos5250-dt.h

2012-12-12 Thread Simon Glass
Hi Hatim, On Tue, Dec 11, 2012 at 2:52 AM, Hatim Ali wrote: > Create a common configuration file for all exynos5250 based boards. > Going forward we will be using DT based driver discovery for all the boards > based on Exynos5. The different boards added will have there own config.h > files > wh

Re: [U-Boot] [PATCH 4/8] Add a poll function to monitor events

2012-12-12 Thread Simon Glass
Hi Wolfgang, On Tue, Dec 11, 2012 at 4:39 AM, Wolfgang Denk wrote: > Dear Hatim Ali, > > In message <1355223289-15685-5-git-send-email-hatim...@samsung.com> you wrote: >> From: Akshay Saraswat >> >> Adding a generic polling function to continuously monitor events and >> trigger actions correspon

Re: [U-Boot] [PATCH v2] spi/arm-pl022: Add support for ARM PL022 spi controller

2012-12-12 Thread Armando Visconti
Ciao Vipin, On 12/12/2012 01:04 PM, Vipin KUMAR wrote: From: Armando Visconti This patch adds the support for the ARM PL022 SPI controller for the standard variant (0x00041022), which has a 16bit wide and 8 locations deep TX/RX FIFO. Have you tested this patch on the new variant as well? You

Re: [U-Boot] [PATCH 2/5] EXYNOS5: Add pinmux for LCD

2012-12-12 Thread Kyungmin Park
Hi, On Tue, Dec 11, 2012 at 8:01 PM, Ajay Kumar wrote: > This patch adds pinmux configuration for backlight, LCD reset > and HPD for DP panel on Exynos5 SMDK. > > Signed-off-by: Ajay Kumar > --- > arch/arm/cpu/armv7/exynos/pinmux.c| 20 > arch/arm/include/asm/arch

Re: [U-Boot] [PATCH 3/8] EXYNOS5: Power down API for Thermal Management Unit

2012-12-12 Thread Simon Glass
Hi Hatim, On Tue, Dec 11, 2012 at 4:43 AM, Wolfgang Denk wrote: > Dear Hatim Ali, > > In message <1355223289-15685-4-git-send-email-hatim...@samsung.com> you wrote: >> From: Akshay Saraswat >> >> Adding API in power for system shutdown when tripping value is reached >> in Exynos Thermal Manageme

Re: [U-Boot] [PATCH 7/8] TMU: Add u-boot command to read current temp

2012-12-12 Thread Simon Glass
Hi, On Tue, Dec 11, 2012 at 4:30 AM, Wolfgang Denk wrote: > Dear Hatim Ali, > > In message <1355223289-15685-8-git-send-email-hatim...@samsung.com> you wrote: >> From: Alim Akhtar >> >> Adds a new u-boot command to read current temprature from tmu driver. >> >> Signed-off-by: Alim Akhtar >> Ack

Re: [U-Boot] [GIT PULL] u-boot-mips/master

2012-12-12 Thread Tom Rini
On Wed, Dec 12, 2012 at 02:00:33PM +0100, Daniel Schwierzeck wrote: > Hi Tom, > > please pull two bugfixes for MIPS. > > > The following changes since commit ea40a05422bdc87a7af5dc349e8adce59f982e72: > > MIPS: constify address pointer in test_bit() (2012-12-08 21:48:19 +0100) > > are availa

Re: [U-Boot] [PATCH v3 0/20] Various patches in common/

2012-12-12 Thread Simon Glass
Hi Tom, On Wed, Dec 12, 2012 at 5:13 AM, Tom Rini wrote: > On Wed, Dec 05, 2012 at 04:46:27PM -0800, Simon Glass wrote: > >> This collection of patches to common/ adds the following: >> >> - EDID support for LCD displays >> - TPM stress test >> - gettime command to find out the time since boot >>

Re: [U-Boot] [PATCH 2/2] EXYNOS5: Add gpio pin numbering feature

2012-12-12 Thread Kyungmin Park
Hi, On Wed, Dec 12, 2012 at 8:33 PM, Rajeshwari Shinde wrote: > This patch adds support for gpio pin numbering support on EXYNOS5 > pinmux. We already know that each exynos5 SoCs has different GPIO name and offsets. So it's good time to use proper soc prefix. e.g., EXYNOS5250_*. Since only exyno

Re: [U-Boot] Pull request: u-boot-net.git master

2012-12-12 Thread Tom Rini
On Tue, Dec 11, 2012 at 09:42:21PM -0600, Joe Hershberger wrote: > Hi Thomas, > > On Tue, Dec 11, 2012 at 5:47 PM, Langer Thomas (LQDE RD ST PON SW) > wrote: > > Hello Joe, > > > > These patches for static initialization of the struct eth_ops will break > > the drivers on any architecture which

Re: [U-Boot] [GIT PULL] u-boot-i2c/master

2012-12-12 Thread Tom Rini
On Tue, Dec 11, 2012 at 07:42:19AM +0100, Heiko Schocher wrote: > Hello Tom, > > The following changes since commit fd4d564b3c80b111f18c93adb14233a6a7ddb0e9: > > Merge branch 'master' of git://git.denx.de/u-boot-x86 (2012-12-07 08:47:59 > -0700) > > are available in the git repository at: >

Re: [U-Boot] [PATCH] cmd:spl:fix: Prevent from a build error on boards, which don't support FDT

2012-12-12 Thread Tom Rini
On Thu, Dec 06, 2012 at 04:33:33PM +0100, Stefano Babic wrote: > On 06/12/2012 16:23, Lukasz Majewski wrote: > > Do not compile in FDT related code, when it is not supported. > > > > Signed-off-by: Lukasz Majewski > > Signed-off-by: Kyungmin Park > > --- > > common/cmd_spl.c |2 ++ > > 1 fi

Re: [U-Boot] [PATCH v3 0/20] Various patches in common/

2012-12-12 Thread Tom Rini
On Wed, Dec 05, 2012 at 04:46:27PM -0800, Simon Glass wrote: > This collection of patches to common/ adds the following: > > - EDID support for LCD displays > - TPM stress test > - gettime command to find out the time since boot > - Adds coreboot information to the 'version' command > - Fixes LMB

Re: [U-Boot] [PATCH v3 15/20] Add console command to access io space registers

2012-12-12 Thread Tom Rini
On Sat, Dec 08, 2012 at 11:54:13AM -0800, Simon Glass wrote: > Hi Fabio, > > On Wed, Dec 5, 2012 at 5:30 PM, Fabio Estevam wrote: > > On Wed, Dec 5, 2012 at 11:25 PM, Vadim Bendebury > > wrote: > > > >> No - md/mw access memory, the new commands access the IO space (which > >> is an x86 archite

[U-Boot] [GIT PULL] u-boot-mips/master

2012-12-12 Thread Daniel Schwierzeck
Hi Tom, please pull two bugfixes for MIPS. The following changes since commit ea40a05422bdc87a7af5dc349e8adce59f982e72: MIPS: constify address pointer in test_bit() (2012-12-08 21:48:19 +0100) are available in the git repository at: git://git.denx.de/u-boot-mips.git master for you to fet

[U-Boot] [PATCH v2] mips: serial: Fix busted manual relocation

2012-12-12 Thread Daniel Schwierzeck
From: Joe Hershberger serial_initialize() must be called after relocation to adjust the pointers to putc(), getc(), etc. This is busted ever since the serial driver-model-ification series. Signed-off-by: Joe Hershberger Signed-off-by: Daniel Schwierzeck --- Changes for v2: - include to fix g

[U-Boot] [PATCH] MIPS: constify mips_io_port_base

2012-12-12 Thread Daniel Schwierzeck
mips_io_port_base is exported as 'extern const unsigned long mips_io_port_base;' in arch/mips/include/asm/io.h. Thus make the variable const too. Signed-off-by: Daniel Schwierzeck --- arch/mips/lib/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/lib/board.c

Re: [U-Boot] [BUGFIX PATCH] mips: serial: Fix busted manual relocation

2012-12-12 Thread Daniel Schwierzeck
Hi Joe, 2012/12/12 Joe Hershberger : > serial_initialize() must be called after relocation to adjust the > pointers to putc(), getc(), etc. This is busted ever since the > serial driver-model-ification series. > > Signed-off-by: Joe Hershberger > --- > arch/mips/lib/board.c | 2 ++ > 1 file cha

Re: [U-Boot] [PATCH v2] spi/arm-pl022: Add support for ARM PL022 spi controller

2012-12-12 Thread Stefan Roese
On 12/12/2012 01:04 PM, Vipin Kumar wrote: > From: Armando Visconti > > This patch adds the support for the ARM PL022 SPI controller for the standard > variant (0x00041022), which has a 16bit wide and 8 locations deep TX/RX FIFO. > > Signed-off-by: Armando Visconti > Signed-off-by: Vipin Kumar

[U-Boot] [PATCH v2] spi/arm-pl022: Add support for ARM PL022 spi controller

2012-12-12 Thread Vipin Kumar
From: Armando Visconti This patch adds the support for the ARM PL022 SPI controller for the standard variant (0x00041022), which has a 16bit wide and 8 locations deep TX/RX FIFO. Signed-off-by: Armando Visconti Signed-off-by: Vipin Kumar --- drivers/spi/Makefile| 1 + drivers/spi/pl022_

  1   2   >