Re: [U-Boot] [PATCH 00/10] USB: Gadget DFU related fixes

2012-11-29 Thread Pantelis Antoniou
Hi Marek, On Nov 29, 2012, at 8:32 AM, Marek Vasut wrote: Dear Pantelis Antoniou, Various bugfixes, g_dnl DFU updates. Pantelis Antoniou (10): usb: Remove obsolete header file usb: Fix bug when both DFU ETHER are defined g_dnl: Issue connect/disconnect as appropriate g_dnl:

[U-Boot] [PATCH] EXYNOS: Add L2 Cache Support.

2012-11-29 Thread Rajeshwari Shinde
This patch set adds L2 Cache Support to EXYNOS. Signed-off-by: Arun Mankuzhi aru...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/cpu/armv7/exynos/soc.c | 36 1 files changed, 36 insertions(+), 0 deletions(-) diff --git

Re: [U-Boot] [PATCH 2/2] net: add ICPlus PHY driver

2012-11-29 Thread Yegor Yefremov
On Thu, Nov 29, 2012 at 8:53 AM, Henrik Nordström hen...@henriknordstrom.net wrote: tor 2012-11-29 klockan 07:27 +0100 skrev Marek Vasut: Dear yegorsli...@googlemail.com, From: Yegor Yefremov yegorsli...@googlemail.com The driver code was taken from Linux kernel source:

Re: [U-Boot] [PATCH 01/10] usb: Remove obsolete header file

2012-11-29 Thread Pantelis Antoniou
Hi Lukasz, I did found out the problem with large transfers, and there is a patch that fixes it. I'm pretty sure that the transfers are correct. Perhaps some other problem with your board? Can you use the updated patch series and try with that, with debugging enabled? Regards -- Pantelis

Re: [U-Boot] [PATCH 01/10] usb: Remove obsolete header file

2012-11-29 Thread Lukasz Majewski
Hi Pantelis, Hi Lukasz, On Nov 28, 2012, at 7:46 PM, Lukasz Majewski wrote: Hi Pantelis, Hi Lukasz, On Nov 28, 2012, at 6:01 PM, Lukasz Majewski wrote: Hi Tom, Hi Pantelis, usbdescriptors.h conflicts with linux/usb/ch9.h Remove it. After rebasing on

Re: [U-Boot] [PATCH 0/6 V4] EXYNOS5: FDT Support for I2C

2012-11-29 Thread Rajeshwari Birje
Hi All, This patch set is based on following patch sets Add DT based ethernet driver for SMDK5250 Add TMU support for Exynos5250 based SMDK5250 Regards, Rajeshwari Shinde On Thu, Nov 29, 2012 at 12:39 PM, Rajeshwari Shinde rajeshwar...@samsung.com wrote: This patch set adds FDT support for

Re: [U-Boot] [PATCH 01/10] usb: Remove obsolete header file

2012-11-29 Thread Pantelis Antoniou
Hi Lukasz, On Nov 29, 2012, at 10:13 AM, Lukasz Majewski wrote: Hi Pantelis, Hi Lukasz, On Nov 28, 2012, at 7:46 PM, Lukasz Majewski wrote: Hi Pantelis, Hi Lukasz, On Nov 28, 2012, at 6:01 PM, Lukasz Majewski wrote: Hi Tom, Hi Pantelis, usbdescriptors.h conflicts with

Re: [U-Boot] Switch from mmcboot to ramboot?

2012-11-29 Thread Lukasz Majewski
Hi Grant, How can I tell u-boot to boot with the ramboot= definition instead of mmcboot= ? - Grant You need to change environmental variable bootcmd setenv bootcmd ramboot saveenv run bootcmd or simpler: Stop u-boot - and access prompt then, run ramboot -- Best regards, Lukasz

Re: [U-Boot] [PATCH 5/6 V4] I2C: Driver changes for FDT support

2012-11-29 Thread Heiko Schocher
Hello Rajeshwari, On 29.11.2012 08:09, Rajeshwari Shinde wrote: Functions added to get the I2C bus number and reset I2C bus using FDT node. Signed-off-by: Rajeshwari Shinderajeshwar...@samsung.com Acked-by: Simon Glasss...@chromium.org Nitpick: missing my Acked by ... so here it comes again:

Re: [U-Boot] U-Boot for MIPS AR7161

2012-11-29 Thread Luka Perkov
Hi Dmytro, On Wed, Nov 28, 2012 at 06:09:21PM +0200, Dmytro wrote: But if all you have decided to go to the end, or you need a JTAG fundamentally, I can put a patch for RAM_uboot AR724x (AP99 platform), so you can make the example of his version of the loader for AR71xx (AP96 platform).

[U-Boot] [PATCH] tegra: remove custom TEGRA_DEVICE_SETTINGS for board files

2012-11-29 Thread Marc Dietrich
TEGRA_DEVICE_SETTINGS lives now in tegra-common-post.h. This removes custom TEGRA_DEVICE_SETTINGS for all tegra boards providing video output, except seaboard, which was fixed by Stephen already. Cc: Thierry Reding thierry.red...@avionic-design.de Signed-off-by: Marc Dietrich marvi...@gmx.de ---

Re: [U-Boot] [PATCH 5/6 V4] I2C: Driver changes for FDT support

2012-11-29 Thread Rajeshwari Birje
Hi Heiko, Thank you for acking the patch. Had made a few changes in the Driver hence had removed the same. Regards, Rajeshwari Shinde. On Thu, Nov 29, 2012 at 2:03 PM, Heiko Schocher h...@denx.de wrote: Hello Rajeshwari, On 29.11.2012 08:09, Rajeshwari Shinde wrote: Functions added to get

Re: [U-Boot] [PATCH] dfu: Handle large transfers correctly

2012-11-29 Thread Lukasz Majewski
Hi Pantelis, The sequence number is a 16 bit counter; make sure we handle rollover correctly. This fixes the wrong transfers for large ( 256MB) images. This is a bit misleading comment. DFU 1.1 standard says: The wBlockNum field is a block sequence number. It increments each time a block is

Re: [U-Boot] [PATCH] dfu: Handle large transfers correctly

2012-11-29 Thread Pantelis Antoniou
Hi Lukasz, On Nov 29, 2012, at 11:06 AM, Lukasz Majewski wrote: Hi Pantelis, The sequence number is a 16 bit counter; make sure we handle rollover correctly. This fixes the wrong transfers for large ( 256MB) images. This is a bit misleading comment. DFU 1.1 standard says: The

Re: [U-Boot] [PATCH] dfu: Handle large transfers correctly

2012-11-29 Thread Lukasz Majewski
Hi Pantelis, Please see below comments. Moreover this patch doesn't solve the problem of bricking trats board after flashing it with dfu after applying: [U-Boot] [PATCH] dfu: Handle large transfers correctly on top of: [U-Boot] [PATCH 00/10] USB: Gadget DFU related fixes Without your patches

[U-Boot] [PATCH v0] mmc: forced sector mode when accessing OCR register

2012-11-29 Thread Davide Bonfanti
Some eMMC require this setting to work properly. Tested on: - Toshiba THGBM2G8D8FBAIB (the one giving the problem) - Toshiba THGBM4G4D1HBAR - Micron MTFC4GMVEA - Hynix H26M64002BNR - SanDisk SDIN5E1-32G Signed-off-by: Davide Bonfanti davide.bonfa...@bticino.it --- drivers/mmc/mmc.c |3

[U-Boot] [PATCH v0] davinci, mmc: Added a delay reading ext CSD register

2012-11-29 Thread Davide Bonfanti
Without this additional delay, some eMMC don't negotiate properly bus width Tested on: - Toshiba THGBM2G8D8FBAIB - Toshiba THGBM4G4D1HBAR - Micron MTFC4GMVEA (the one giving the problem) - Hynix H26M64002BNR - SanDisk SDIN5E1-32G Signed-off-by: Davide Bonfanti davide.bonfa...@bticino.it ---

[U-Boot] [PATCH] dfu: Handle large transfers correctly (take #2)

2012-11-29 Thread Pantelis Antoniou
The sequence number is a 16 bit counter; make sure we handle rollover correctly. This fixes the wrong transfers for large ( 256MB) images. Also utilize a variable to handle initialization, so that we don't rely on just the counter sent by the host. Signed-off-by: Pantelis Antoniou

[U-Boot] mtd/cfi: SST39VF3201B flash model not properly handled

2012-11-29 Thread Angelo Dureghello
Dear All, as Wolfgang Denx suggested me, i am trying to use the u-boot CFI driver with a CFI flash (SSTVF3201B). This flash chip allows erasing/writing blocks of 4 KBytes (called sectors in the SST datasheet), or 64 KBytes (called blocks). The command sequence table for this flash shows 2

Re: [U-Boot] mtd/cfi: SST39VF3201B flash model not properly handled

2012-11-29 Thread Stefan Roese
Hi Angelo, On 11/29/2012 01:03 PM, Angelo Dureghello wrote: as Wolfgang Denx suggested me, i am trying to use the u-boot CFI driver with a CFI flash (SSTVF3201B). Yes. But please take a look at the CONFIG_FLASH_CFI_LEGACY config option. This enables the legacy CFI flash devices. And IIRC the

[U-Boot] [PATCH 1/2] README.scrapyard: add missing commit IDs

2012-11-29 Thread Wolfgang Denk
Now that the patches have made it into mainline, we can also add the commit IDs. Signed-off-by: Wolfgang Denk w...@denx.de --- doc/README.scrapyard | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/README.scrapyard b/doc/README.scrapyard index

Re: [U-Boot] [PATCH 02/10] usb: Fix bug when both DFU ETHER are defined

2012-11-29 Thread Marek Vasut
Dear Pantelis Antoniou, When both CONFIG_USB_GADGET CONFIG_USB_ETHER are defined the makefile links objects twice. Detect this and fix it with a not very elegant way in the makefile. Revisit and clean it later. Signed-off-by: Pantelis Antoniou pa...@antoniou-consulting.com [...] This

Re: [U-Boot] [PATCH 00/10] USB: Gadget DFU related fixes

2012-11-29 Thread Marek Vasut
Dear Pantelis Antoniou, Various bugfixes, g_dnl DFU updates. Pantelis Antoniou (10): usb: Remove obsolete header file usb: Fix bug when both DFU ETHER are defined g_dnl: Issue connect/disconnect as appropriate g_dnl: Properly terminate string list. dfu: Only perform DFU

Re: [U-Boot] [PATCH 04/10] g_dnl: Properly terminate string list.

2012-11-29 Thread Marek Vasut
Dear Pantelis Antoniou, Well, not terminating the list causes very interesting crashes. As in changing the vendor product ID crashes. Fun. Signed-off-by: Pantelis Antoniou pa...@antoniou-consulting.com --- drivers/usb/gadget/g_dnl.c | 1 + 1 file changed, 1 insertion(+) diff --git

Re: [U-Boot] [PATCH 2/2] net: add ICPlus PHY driver

2012-11-29 Thread Marek Vasut
Dear Yegor Yefremov, On Thu, Nov 29, 2012 at 8:53 AM, Henrik Nordström hen...@henriknordstrom.net wrote: tor 2012-11-29 klockan 07:27 +0100 skrev Marek Vasut: Dear yegorsli...@googlemail.com, From: Yegor Yefremov yegorsli...@googlemail.com The driver code was taken from Linux

[U-Boot] [PATCH] pxa25x_udc: Remove usbdescriptors.h

2012-11-29 Thread Lukasz Dalek
usbdescriptors.h conflicts with linux/usb/ch9.h. Remove it. Signed-off-by: Lukasz Dalek luk0...@gmail.com --- drivers/usb/gadget/pxa25x_udc.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/usb/gadget/pxa25x_udc.c b/drivers/usb/gadget/pxa25x_udc.c index

Re: [U-Boot] [PATCH 2/2] net: add ICPlus PHY driver

2012-11-29 Thread Yegor Yefremov
On Thu, Nov 29, 2012 at 1:55 PM, Marek Vasut ma...@denx.de wrote: Dear Yegor Yefremov, On Thu, Nov 29, 2012 at 8:53 AM, Henrik Nordström hen...@henriknordstrom.net wrote: tor 2012-11-29 klockan 07:27 +0100 skrev Marek Vasut: Dear yegorsli...@googlemail.com, From: Yegor Yefremov

Re: [U-Boot] [PATCH 04/10] g_dnl: Properly terminate string list.

2012-11-29 Thread Pantelis Antoniou
Hi Marek, On Nov 29, 2012, at 10:20 AM, Marek Vasut wrote: Dear Pantelis Antoniou, Well, not terminating the list causes very interesting crashes. As in changing the vendor product ID crashes. Fun. Signed-off-by: Pantelis Antoniou pa...@antoniou-consulting.com ---

Re: [U-Boot] Please pull u-boot-mpc85xx.git

2012-11-29 Thread Tom Rini
On Wed, Nov 28, 2012 at 01:39:06AM -0600, Andy Fleming wrote: The following changes since commit 66dc452bfe13b0e276adddf3997b9c5abc00115d: Remove obsolete header file (2012-11-27 09:41:10 -0700) are available in the git repository at: git://www.denx.de/git/u-boot-mpc85xx.git master

Re: [U-Boot] Please pull u-boot-x86.git

2012-11-29 Thread Tom Rini
On Wed, Nov 28, 2012 at 11:52:21AM -0800, Simon Glass wrote: Hi Tom, (This is my first pull request for x86, so please view it with suspicion and let me know of any steps I have missed, etc.) The following changes since commit d41b3cc16fd97da23900f79e8fefdeedeebde8f6: Merge branch

Re: [U-Boot] U-Boot for MIPS AR7161

2012-11-29 Thread Drassal, Allan
Dear Dmytro and others, Sorry, I didn't post the output in the previous post, just the commands. I am going to post the full output below, along with the details of the ar71xx.cfg file, and output from openocd also. The config file originally came from an AR724x processor as well, so it might

Re: [U-Boot] [PATCH] pxa25x_udc: Remove usbdescriptors.h

2012-11-29 Thread Marek Vasut
Dear Lukasz Dalek, usbdescriptors.h conflicts with linux/usb/ch9.h. Remove it. Applied, thanks Signed-off-by: Lukasz Dalek luk0...@gmail.com --- drivers/usb/gadget/pxa25x_udc.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/usb/gadget/pxa25x_udc.c

Re: [U-Boot] [PATCH 04/10] g_dnl: Properly terminate string list.

2012-11-29 Thread Marek Vasut
Dear Pantelis Antoniou, Hi Marek, On Nov 29, 2012, at 10:20 AM, Marek Vasut wrote: Dear Pantelis Antoniou, Well, not terminating the list causes very interesting crashes. As in changing the vendor product ID crashes. Fun. Signed-off-by: Pantelis Antoniou

Re: [U-Boot] [PATCH 2/2] net: add ICPlus PHY driver

2012-11-29 Thread Marek Vasut
Dear Yegor Yefremov, On Thu, Nov 29, 2012 at 1:55 PM, Marek Vasut ma...@denx.de wrote: Dear Yegor Yefremov, On Thu, Nov 29, 2012 at 8:53 AM, Henrik Nordström hen...@henriknordstrom.net wrote: tor 2012-11-29 klockan 07:27 +0100 skrev Marek Vasut: Dear yegorsli...@googlemail.com,

Re: [U-Boot] [PATCH] dfu: Handle large transfers correctly (take #2)

2012-11-29 Thread Marek Vasut
Dear Pantelis Antoniou, The sequence number is a 16 bit counter; make sure we handle rollover correctly. This fixes the wrong transfers for large ( 256MB) images. Also utilize a variable to handle initialization, so that we don't rely on just the counter sent by the host. [...] Uh, how

Re: [U-Boot] [PATCH 2/2] net: add ICPlus PHY driver

2012-11-29 Thread Yegor Yefremov
On Thu, Nov 29, 2012 at 3:29 PM, Marek Vasut ma...@denx.de wrote: Dear Yegor Yefremov, On Thu, Nov 29, 2012 at 1:55 PM, Marek Vasut ma...@denx.de wrote: Dear Yegor Yefremov, On Thu, Nov 29, 2012 at 8:53 AM, Henrik Nordström hen...@henriknordstrom.net wrote: tor 2012-11-29 klockan

Re: [U-Boot] [PATCH] EXYNOS: Add L2 Cache Support.

2012-11-29 Thread Kyungmin Park
On Thu, Nov 29, 2012 at 5:12 PM, Rajeshwari Shinde rajeshwar...@samsung.com wrote: This patch set adds L2 Cache Support to EXYNOS. Signed-off-by: Arun Mankuzhi aru...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/cpu/armv7/exynos/soc.c | 36

Re: [U-Boot] [PATCH] pxa25x_udc: Remove usbdescriptors.h

2012-11-29 Thread Łukasz Dałek
On 29.11.2012 15:27, Marek Vasut wrote: Dear Lukasz Dalek, usbdescriptors.h conflicts with linux/usb/ch9.h. Remove it. Applied, thanks Signed-off-by: Lukasz Dalekluk0...@gmail.com --- drivers/usb/gadget/pxa25x_udc.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git

Re: [U-Boot] [PATCH 2/2] net: add ICPlus PHY driver

2012-11-29 Thread Marek Vasut
Dear Yegor Yefremov, On Thu, Nov 29, 2012 at 3:29 PM, Marek Vasut ma...@denx.de wrote: Dear Yegor Yefremov, On Thu, Nov 29, 2012 at 1:55 PM, Marek Vasut ma...@denx.de wrote: Dear Yegor Yefremov, On Thu, Nov 29, 2012 at 8:53 AM, Henrik Nordström hen...@henriknordstrom.net

Re: [U-Boot] [PATCH] pxa25x_udc: Remove usbdescriptors.h

2012-11-29 Thread Marek Vasut
Dear Łukasz Dałek, On 29.11.2012 15:27, Marek Vasut wrote: Dear Lukasz Dalek, usbdescriptors.h conflicts with linux/usb/ch9.h. Remove it. Applied, thanks Signed-off-by: Lukasz Dalekluk0...@gmail.com --- drivers/usb/gadget/pxa25x_udc.c |1 - 1 files changed, 0

[U-Boot] [PATCH v7] h2200: Add USB CDC ethernet support

2012-11-29 Thread Lukasz Dalek
Add support for ethernet over USB which can be used for e.g. booting process. It works with tftp and dhcp clients code. Signed-off-by: Lukasz Dalek luk0...@gmail.com --- Changes for v7: - Removed CONFIG_H2200_USBETH Changes for v6: - Defined only one entire for board Changes for

Re: [U-Boot] [PATCH 2/2] net: add ICPlus PHY driver

2012-11-29 Thread Yegor Yefremov
On Thu, Nov 29, 2012 at 3:51 PM, Marek Vasut ma...@denx.de wrote: Dear Yegor Yefremov, On Thu, Nov 29, 2012 at 3:29 PM, Marek Vasut ma...@denx.de wrote: Dear Yegor Yefremov, On Thu, Nov 29, 2012 at 1:55 PM, Marek Vasut ma...@denx.de wrote: Dear Yegor Yefremov, On Thu, Nov 29,

Re: [U-Boot] [PATCH v0] mmc: forced sector mode when accessing OCR register

2012-11-29 Thread Jae hoon Chung
Hi, i didn't understand why need to set by force? Best Regards, Jaehoon Chung 2012/11/29 Davide Bonfanti davide.bonfa...@bticino.it: Some eMMC require this setting to work properly. Tested on: - Toshiba THGBM2G8D8FBAIB (the one giving the problem) - Toshiba THGBM4G4D1HBAR - Micron

Re: [U-Boot] [PATCH v2] mmc: Split device init to decouple OCR-polling delay

2012-11-29 Thread Jae hoon Chung
Hi Simon, Is it saved the 200ms? Could you tell me your environment? I will check this patch..and share the result. Best Regards, Jaehoon Chung 2012/11/29 Simon Glass s...@chromium.org: From: Che-Liang Chiou clch...@chromium.org Most of time that MMC driver spends on initializing a device is

Re: [U-Boot] mtd/cfi: SST39VF3201B flash model not properly handled

2012-11-29 Thread Angelo Dureghello
Dear Stefan Roese, as Wolfgang Denx suggested me, i am trying to use the u-boot CFI driver with a CFI flash (SSTVF3201B). Yes. But please take a look at the CONFIG_FLASH_CFI_LEGACY config option. This enables the legacy CFI flash devices. And IIRC the SST flash chips are supported

Re: [U-Boot] [PATCH 1/2] am335x_evm: Define CONFIG_SYS_CACHELINE_SIZE

2012-11-29 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/29/12 01:33, Marek Vasut wrote: Dear Pantelis Antoniou, drivers/usb/gadget/composite.c requires that this is defined early. Signed-off-by: Pantelis Antoniou pa...@antoniou-consulting.com Tom, this is OMAP, I'll leave this set to you,

Re: [U-Boot] [PATCH 2/2] am335x_evm: Add DFU config

2012-11-29 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/29/12 02:34, Pantelis Antoniou wrote: Add configuration for using DFU on the am335x_evm boards Signed-off-by: Pantelis Antoniou pa...@antoniou-consulting.com Acked-by: Tom Rini tr...@ti.com - -- Tom -BEGIN PGP SIGNATURE- Version:

Re: [U-Boot] [PATCH] mmc: Add an mmcsilent option

2012-11-29 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/28/12 11:50, Pantelis Antoniou wrote: Hi Andy, On Nov 28, 2012, at 6:49 PM, Andy Fleming wrote: On Thu, Nov 29, 2012 at 1:34 AM, Pantelis Antoniou pa...@antoniou-consulting.com wrote: When using MMC commands for dfu there is

Re: [U-Boot] [Pull] u-boot-fdt/master

2012-11-29 Thread Tom Rini
On Wed, Nov 28, 2012 at 08:14:12PM -0500, Jerry Van Baren wrote: Dear Tom, Please pull u-boot-fdt to fix the global_data compilation issue introduced in [PATCH 14/14] fdt: Set kernaddr if fdt indicates a kernel is present (identified by Dennis Lan). Thanks, gvb The following changes

Re: [U-Boot] [PATCH v0] davinci, mmc: Added a delay reading ext CSD register

2012-11-29 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/29/12 06:06, Davide Bonfanti wrote: Without this additional delay, some eMMC don't negotiate properly bus width Tested on: - Toshiba THGBM2G8D8FBAIB - Toshiba THGBM4G4D1HBAR - Micron MTFC4GMVEA (the one giving the problem) - Hynix

Re: [U-Boot] [PATCH 05/10] dfu: Only perform DFU board_usb_init() for TRATS

2012-11-29 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/28/12 11:08, Lukasz Majewski wrote: Hi Tom, On 11/28/12 09:47, Lukasz Majewski wrote: Hi Pantelis, USB initialization shouldn't happen for all the boards. The board_usb_init() follows u-boot policy, that SoC IPs (USB) are enabled

Re: [U-Boot] [PATCH] tegra: remove custom TEGRA_DEVICE_SETTINGS for board files

2012-11-29 Thread Stephen Warren
On 11/29/2012 02:23 AM, Marc Dietrich wrote: TEGRA_DEVICE_SETTINGS lives now in tegra-common-post.h. This removes custom TEGRA_DEVICE_SETTINGS for all tegra boards providing video output, except seaboard, which was fixed by Stephen already. Reviewed-by: Stephen Warren swar...@nvidia.com I

Re: [U-Boot] [PATCH v0] mmc: forced sector mode when accessing OCR register

2012-11-29 Thread davide . bonfanti
It seems to me a bug of the specific mmc like if that it declares byte-mode, but supports only sector mode. Sincerely I don't know if it is a good idea to accept a workaround like this, but this is the only way I found to have my board working. Best Regards, Davide Bonfanti -Jae hoon

Re: [U-Boot] [PATCH 1/3] tegra: only define TEGRA_DEVICE_SETTINGS if not already defined

2012-11-29 Thread Tom Warren
Stephen, -Original Message- From: Stephen Warren [mailto:swar...@wwwdotorg.org] Sent: Wednesday, November 28, 2012 2:03 PM To: Simon Glass Cc: u-boot@lists.denx.de; Tom Warren; Stephen Warren; Marc Dietrich; Thierry Reding Subject: Re: [PATCH 1/3] tegra: only define

Re: [U-Boot] [PATCH 1/3] tegra: only define TEGRA_DEVICE_SETTINGS if not already defined

2012-11-29 Thread Stephen Warren
On 11/29/2012 11:40 AM, Tom Warren wrote: Stephen, -Original Message- From: Stephen Warren [mailto:swar...@wwwdotorg.org] Sent: Wednesday, November 28, 2012 2:03 PM To: Simon Glass Cc: u-boot@lists.denx.de; Tom Warren; Stephen Warren; Marc Dietrich; Thierry Reding Subject: Re:

Re: [U-Boot] [PATCH 1/3] tegra: only define TEGRA_DEVICE_SETTINGS if not already defined

2012-11-29 Thread Tom Warren
Stephen, -Original Message- From: Stephen Warren [mailto:swar...@wwwdotorg.org] Sent: Thursday, November 29, 2012 12:10 PM To: Tom Warren Cc: Simon Glass; u-boot@lists.denx.de; Stephen Warren; Marc Dietrich; Thierry Reding Subject: Re: [PATCH 1/3] tegra: only define

Re: [U-Boot] [PATCH 1/3] tegra: only define TEGRA_DEVICE_SETTINGS if not already defined

2012-11-29 Thread Stephen Warren
On 11/29/2012 12:50 PM, Tom Warren wrote: Stephen, -Original Message- From: Stephen Warren [mailto:swar...@wwwdotorg.org] Sent: Thursday, November 29, 2012 12:10 PM To: Tom Warren Cc: Simon Glass; u-boot@lists.denx.de; Stephen Warren; Marc Dietrich; Thierry Reding Subject: Re:

[U-Boot] [PATCH v2 5/5] x86: Select stdio devices for coreboot

2012-11-29 Thread Simon Glass
We want to support VGA, serial, USB keyboard and the Coreboot memory console buffer. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: - Collect settings in one place - Use eserial0 instead of serial since this is now the correct name - define CONFIG_EXTRA_ENV_SETTINGS so that these

Re: [U-Boot] Switch from mmcboot to ramboot?

2012-11-29 Thread Grant
How can I tell u-boot to boot with the ramboot= definition instead of mmcboot= ? - Grant You need to change environmental variable bootcmd setenv bootcmd ramboot saveenv run bootcmd or simpler: Stop u-boot - and access prompt then, run ramboot Hi Lucasz, that didn't work for

Re: [U-Boot] [PATCH 1/2] README.scrapyard: add missing commit IDs

2012-11-29 Thread Graeme Russ
Hi Wolfgang, On Thu, Nov 29, 2012 at 11:53 PM, Wolfgang Denk w...@denx.de wrote: Now that the patches have made it into mainline, we can also add the commit IDs. Signed-off-by: Wolfgang Denk w...@denx.de --- doc/README.scrapyard | 14 +++--- 1 file changed, 7 insertions(+), 7

Re: [U-Boot] [PATCH 05/10] dfu: Only perform DFU board_usb_init() for TRATS

2012-11-29 Thread Lukasz Majewski
Hi Tom, -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/28/12 11:08, Lukasz Majewski wrote: Hi Tom, On 11/28/12 09:47, Lukasz Majewski wrote: Hi Pantelis, USB initialization shouldn't happen for all the boards. The board_usb_init() follows u-boot policy, that SoC

Re: [U-Boot] Switch from mmcboot to ramboot?

2012-11-29 Thread Lukasz Majewski
Hi Grant, How can I tell u-boot to boot with the ramboot= definition instead of mmcboot= ? - Grant You need to change environmental variable bootcmd setenv bootcmd ramboot saveenv run bootcmd or simpler: Stop u-boot - and access prompt then, run ramboot

Re: [U-Boot] [PATCH 05/10] dfu: Only perform DFU board_usb_init() for TRATS

2012-11-29 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/29/12 18:14, Lukasz Majewski wrote: Hi Tom, On 11/28/12 11:08, Lukasz Majewski wrote: Hi Tom, On 11/28/12 09:47, Lukasz Majewski wrote: Hi Pantelis, USB initialization shouldn't happen for all the boards. The board_usb_init()

[U-Boot] [PATCH v2 01/12] x86: Allow compiling out realmode/bios code

2012-11-29 Thread Simon Glass
From: Gabe Black gabebl...@chromium.org We don't want this for coreboot, so provide a way of compiling it out. Signed-off-by: Gabe Black gabebl...@chromium.org Signed-off-by: Stefan Reinauer reina...@chromium.org Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: - Rename real mode

Re: [U-Boot] [PATCH v2 01/12] x86: Allow compiling out realmode/bios code

2012-11-29 Thread Graeme Russ
Hi Simon, On Fri, Nov 30, 2012 at 12:57 PM, Simon Glass s...@chromium.org wrote: From: Gabe Black gabebl...@chromium.org We don't want this for coreboot, so provide a way of compiling it out. Signed-off-by: Gabe Black gabebl...@chromium.org Signed-off-by: Stefan Reinauer

Re: [U-Boot] [PATCH v2 01/12] x86: Allow compiling out realmode/bios code

2012-11-29 Thread Simon Glass
Hi Graeme, On Thu, Nov 29, 2012 at 6:09 PM, Graeme Russ graeme.r...@gmail.com wrote: Hi Simon, [snip] } Hmm, what to do about boot_zimage() in arch/x86/lib/zimage.c. If you define CONFIG_X86_NO_REAL_MODE but don't define CONFIG_ZBOOT_32 you will get a linker failure. Maybe change: #if

Re: [U-Boot] [PATCH v2 01/12] x86: Allow compiling out realmode/bios code

2012-11-29 Thread Graeme Russ
Hi Simon, On Fri, Nov 30, 2012 at 1:17 PM, Simon Glass s...@chromium.org wrote: Hi Graeme, On Thu, Nov 29, 2012 at 6:09 PM, Graeme Russ graeme.r...@gmail.com wrote: Hi Simon, [snip] } Hmm, what to do about boot_zimage() in arch/x86/lib/zimage.c. If you define CONFIG_X86_NO_REAL_MODE

[U-Boot] [PATCH v3 01/12] x86: Allow compiling out realmode/bios code

2012-11-29 Thread Simon Glass
From: Gabe Black gabebl...@chromium.org We don't want this for coreboot, so provide a way of compiling it out. Signed-off-by: Gabe Black gabebl...@chromium.org Signed-off-by: Stefan Reinauer reina...@chromium.org Signed-off-by: Simon Glass s...@chromium.org --- Changes in v3: - Check for

Re: [U-Boot] [PATCH v2 01/12] x86: Allow compiling out realmode/bios code

2012-11-29 Thread Simon Glass
Hi Graham, On Thu, Nov 29, 2012 at 6:19 PM, Graeme Russ graeme.r...@gmail.com wrote: Hi Simon, On Fri, Nov 30, 2012 at 1:17 PM, Simon Glass s...@chromium.org wrote: Hi Graeme, On Thu, Nov 29, 2012 at 6:09 PM, Graeme Russ graeme.r...@gmail.com wrote: Hi Simon, [snip] } Hmm, what to

Re: [U-Boot] [PATCH v2 01/12] x86: Allow compiling out realmode/bios code

2012-11-29 Thread Graeme Russ
Hi Simon, On Fri, Nov 30, 2012 at 1:25 PM, Simon Glass s...@chromium.org wrote: Hi Graham, On Thu, Nov 29, 2012 at 6:19 PM, Graeme Russ graeme.r...@gmail.com wrote: Hi Simon, On Fri, Nov 30, 2012 at 1:17 PM, Simon Glass s...@chromium.org wrote: Hi Graeme, On Thu, Nov 29, 2012 at 6:09 PM,

Re: [U-Boot] [PATCH] EXYNOS: Add L2 Cache Support.

2012-11-29 Thread Rajeshwari Birje
Hi Kyungmin Park, Thank you for comment. Will make the change and resubmit the patch. Regards, Rajeshwari Shinde. On Thu, Nov 29, 2012 at 8:12 PM, Kyungmin Park kmp...@infradead.org wrote: On Thu, Nov 29, 2012 at 5:12 PM, Rajeshwari Shinde rajeshwar...@samsung.com wrote: This patch set adds

Re: [U-Boot] [PATCH 4/6 V4] EXYNOS5: FDT : Decode peripheral id

2012-11-29 Thread Simon Glass
On Wed, Nov 28, 2012 at 11:09 PM, Rajeshwari Shinde rajeshwar...@samsung.com wrote: Api is added to decode peripheral id based on the interrupt number of the peripheral. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by; Simon Glass s...@chromium.org --- Chnages in V3:

Re: [U-Boot] [PATCH 4/6 V3] Sound: Add FDT support to driver

2012-11-29 Thread Simon Glass
On Wed, Nov 28, 2012 at 11:55 PM, Rajeshwari Shinde rajeshwar...@samsung.com wrote: This patch adds FDT support to the sound driver. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - Made single function to get

Re: [U-Boot] [PATCH 5/6 V3] Sound: WM8994: Add FDT support to codec

2012-11-29 Thread Simon Glass
On Wed, Nov 28, 2012 at 11:55 PM, Rajeshwari Shinde rajeshwar...@samsung.com wrote: This patch adds FDT support to the codec. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - New patch. Changes in V3: -

Re: [U-Boot] [PATCH 6/6 V3] Sound: Add FDT support to CMD.

2012-11-29 Thread Simon Glass
On Wed, Nov 28, 2012 at 11:55 PM, Rajeshwari Shinde rajeshwar...@samsung.com wrote: This patch adds FDT support to sound init in CMD. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - Same function call for sound

Re: [U-Boot] [PATCH v2] include/linux/byteorder: Always defines __fswab64, __swab64p and __swab64s

2012-11-29 Thread Nobuhiro Iwamatsu
Hi, Tom. Could you pick this patch? Best regards, Nobuhiro On Fri, Nov 16, 2012 at 9:49 AM, Kim Phillips kim.phill...@freescale.com wrote: On Thu, 15 Nov 2012 16:35:26 +0900 Nobuhiro Iwamatsu nobuhiro.iwamatsu...@renesas.com wrote: When __BYTEORDER_HAS_U64__ is not defined, we got

[U-Boot] Pull request: u-boot-sh/master

2012-11-29 Thread Nobuhiro Iwamatsu
Hi Tom, Please pull u-boot-sh master branch. Best regards, Nobuhiro The following changes since commit b8715d8def240014da5614a4f940130ec06d9ebf: Merge branch 'master' of git://git.denx.de/u-boot-fdt (2012-11-29 06:41:56 -0700) are available in the git repository at:

Re: [U-Boot] [PATCH 1/2] README.scrapyard: add missing commit IDs

2012-11-29 Thread Wolfgang Denk
Dear Graeme Russ, In message calbutcjo15hswnydpuyppsxyngvx6s9h2xp0_dq+x4rpny+...@mail.gmail.com you wrote: Board ArchCPU removed Commit last known maintainer/contact = -AMX860 powerpc

[U-Boot] [PATCH] EXYNOS5: Add L2 Cache Support.

2012-11-29 Thread Rajeshwari Shinde
This patch set adds L2 Cache Support to EXYNOS. Signed-off-by: Arun Mankuzhi aru...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/cpu/armv7/exynos/soc.c | 37 + 1 files changed, 37 insertions(+), 0 deletions(-) diff

Re: [U-Boot] [PATCH 1/2] README.scrapyard: add missing commit IDs

2012-11-29 Thread Graeme Russ
Hi Wolfgang, On 30/11/2012, at 5:20 PM, Wolfgang Denk w...@denx.de wrote: Dear Graeme Russ, In message calbutcjo15hswnydpuyppsxyngvx6s9h2xp0_dq+x4rpny+...@mail.gmail.com you wrote: Board ArchCPU removed Commit last known maintainer/contact