Re: [U-Boot] [PATCH 3/3] mx6sl: Add initial support for mx6slevk board

2013-04-10 Thread Stefano Babic
On 06/04/2013 18:40, Fabio Estevam wrote: Hi Dirk, On Sat, Apr 6, 2013 at 1:30 PM, Dirk Behme dirk.be...@gmail.com wrote: ... but saving power over the whole (kernel) runtime. I might be wrong, but to my understanding the kernel doesn't *disable* unneeded clocks? So it's up to the

Re: [U-Boot] zmodem ?

2013-04-10 Thread Stefano Babic
On 09/04/2013 21:06, Brad Walker wrote: I am curious to know about the status of support for zmodem. I've looked through the mail archives and it seems as though ymodem is supported. But, zmodem is currently not. Also, there is a kermit mode that is supported. Is my understanding

Re: [U-Boot] [PATCH v2] spi: mxc_spi: Set master mode for all channels

2013-04-10 Thread Stefano Babic
On 10/04/2013 01:06, Fabio Estevam wrote: From: Fabio Estevam fabio.este...@freescale.com The glitch in the SPI clock line, which commit 3cea335c34 (spi: mxc_spi: Fix spi clock glitch durant reset) solved, is back now and itwas re-introduced by commit d36b39bf0d (spi: mxc_spi: Fix ECSPI

Re: [U-Boot] [PATCH V8 4/9] EXYNOS5: DWMMC: Added FDT support for DWMMC

2013-04-10 Thread Amarendra Reddy
Hi Jaehoon, Please find my responses below. Thanks Regards Amarendra Reddy On 9 April 2013 16:23, Jaehoon Chung jh80.ch...@samsung.com wrote: On 04/03/2013 11:08 PM, Amar wrote: This patch adds FDT support for DWMMC, by reading the DWMMC node data from the device tree and initialising

Re: [U-Boot] [PATCH] mx31pdk: Remove watchdog support

2013-04-10 Thread Stefano Babic
On 09/04/2013 21:03, Fabio Estevam wrote: The conversion of mx31pdk to SPL NAND fixed the boot issue, but we start seeing resets in loop, which prevents us from reaching the U-boot prompt. Until the proper fix can be identified, disable watchdog, so that mx31pdk can be functional again.

Re: [U-Boot] [PATCH v2] mx35 iomux: correct offsets of IOMUX registers

2013-04-10 Thread Stefano Babic
On 10/04/2013 00:44, Philip Paeps wrote: This makes mxc_iomux_set_input() work correctly. Previously, the incorrect offset of IOMUXSW_INPUT_CTL caused mxc_iomux_set_input() to write to the wrong register, possibly resulting in unexpected behaviour. Signed-off-by: Philip Paeps

[U-Boot] [PATCH 1/4] imx: Move some header files from arch-mxs to imx-common

2013-04-10 Thread Stefan Roese
The following headers are moved to a i.MX common location: - regs-common.h - regs-apbh.h - regs-bch.h - regs-gpmi.h - dma.h This way this header can be re-used also by other i.MX platforms. For example the i.MX6 which will need it for the upcoming NAND support. Signed-off-by: Stefan Roese

[U-Boot] [PATCH 0/4] imx: Add iMX6 NAND support

2013-04-10 Thread Stefan Roese
To support NAND on the iMX6 this patch moves some headers into i.MX common locations. Instead of creating new files in the imx6 include directory containing nearly the same content. Here the diffstat: Stefan Roese (4): imx: Move some header files from arch-mxs to imx-common imx: Move

[U-Boot] [PATCH 3/4] dma: Add i.MX6 support to drivers/dma/apbh_dma.c

2013-04-10 Thread Stefan Roese
This will be used by the i.MX6 NAND support. Signed-off-by: Stefan Roese s...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Marek Vasut ma...@denx.de Cc: Fabio Estevam fabio.este...@freescale.com --- arch/arm/include/asm/arch-mx6/imx-regs.h| 4 arch/arm/include/asm/imx-common/dma.h

[U-Boot] [PATCH 4/4] mtd: mxs_nand: Add support for i.MX6

2013-04-10 Thread Stefan Roese
Signed-off-by: Stefan Roese s...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Marek Vasut ma...@denx.de Cc: Fabio Estevam fabio.este...@freescale.com Cc: Scott Wood scottw...@freescale.com --- arch/arm/cpu/armv7/mx6/soc.c | 7 +++ arch/arm/include/asm/imx-common/regs-bch.h | 10

[U-Boot] [PATCH 2/4] imx: Move some i.MX common functions into the imx-common directory

2013-04-10 Thread Stefan Roese
This patch moves the following functions into the imx-common directory: - mxs_wait_mask_set() - mxs_wait_mask_clr() - mxs_reset_block() These are currently used by i.MX28. But the upcoming GPMI NAND port for i.MX6 will also use these functions. So lets move them to a common location to re-use

[U-Boot] [PATCH v2 2/4] fs/fat: Don't multiply fatsize with sector size

2013-04-10 Thread Egbert Eich
From: Egbert Eich e...@suse.com Bugfix: Here at this place we need the fat size in sectors not bytes. This was found during code review when adding support for storage devices with blocksizes != 512. Signed-off-by: Egbert Eich e...@suse.com --- Changes for v2:

[U-Boot] [PATCH] imx: Add titanium board support (i.MX6 based)

2013-04-10 Thread Stefan Roese
Titanium is a i.MX6 based board from ProjectionDesign / Barco. This patch adds support for this board with the newly introduced NAND support for i.MX6. Signed-off-by: Stefan Roese s...@denx.de --- MAINTAINERS | 2 + board/freescale/titanium/Makefile | 36

[U-Boot] [PATCH v2 1/4] disk/iso: Add Support for block sizes 512 byte to ISO partition support

2013-04-10 Thread Egbert Eich
From: Egbert Eich e...@suse.com For ISO we check the block size of the device if this is != the CD sector size we assume that the device has no ISO partition. Signed-off-by: Egbert Eich e...@suse.com --- Changes for v2: - Coding

[U-Boot] [PATCH v2 0/4] Add Support for Storage Devices with Blocksizes != 512

2013-04-10 Thread Egbert Eich
From: Egbert Eich e...@suse.de Storage devices with more than 2TB generally use blocksizes of 4096 bytes, So far u-boot was unable to boot from those devices as block sizes were hard coded to 512 bytes. This patchset adds support for blocksizes != 512 byte to: - the ISO partition table. - the

[U-Boot] [PATCH v2 4/4] fs/ext4: Support device block sizes != 512 bytes

2013-04-10 Thread Egbert Eich
From: Egbert Eich e...@suse.com The 512 byte block size was hard coded in the ext4 file systems. Large harddisks today support bigger block sizes typically 4096 bytes. This patch removes this limitation. Signed-off-by: Egbert Eich e...@suse.com --- Changes for v2:

[U-Boot] [PATCH v2 3/4] part/dev_desc: Add log2 of blocksize to block_dev_desc data struct

2013-04-10 Thread Egbert Eich
From: Egbert Eich e...@suse.com log2 of the device block size serves as the shift value used to calculate the block number to read in file systems when implementing avaiable block sizes. It is needed quite often in file systems thus it is pre-calculated and stored in the block device descriptor.

Re: [U-Boot] [PATCH] imx: Add titanium board support (i.MX6 based)

2013-04-10 Thread Heiko Schocher
Hello Stefan, on 10.04.2013 09:17, Stefan Roese wrote: Titanium is a i.MX6 based board from ProjectionDesign / Barco. This patch adds support for this board with the newly introduced NAND support for i.MX6. Signed-off-by: Stefan Roese s...@denx.de --- MAINTAINERS

Re: [U-Boot] [PATCH v2 1/4] cam_enc_4xx: fix CONFIG_SPL_MAX_SIZE semantics

2013-04-10 Thread Heiko Schocher
Hello Albert, On 10.04.2013 01:14, Albert ARIBAUD wrote: CONFIG_SPL_MAX_SIZE wrongly included BSS size. Split 12K max size between 10K image (text,rodata,data) and 2K BSS based on sizes reported for current build: text data bss 9073 840 500

Re: [U-Boot] [PATCH 0/4] imx: Add iMX6 NAND support

2013-04-10 Thread Marek Vasut
Dear Stefan Roese, To support NAND on the iMX6 this patch moves some headers into i.MX common locations. Instead of creating new files in the imx6 include directory containing nearly the same content. Here the diffstat: They look reasonable, can you give them a test on m28evk please? Best

Re: [U-Boot] [PATCH v11 01/30] mtd: nand: Introduce CONFIG_SYS_NAND_BUSWIDTH_16BIT

2013-04-10 Thread Albert ARIBAUD
Hi Benoît, On Tue, 9 Apr 2013 21:48:30 +0200, Benoît Thébaudeau benoit.thebaud...@advansee.com wrote: From: Fabio Estevam fabio.este...@freescale.com Introduce CONFIG_SYS_NAND_BUSWIDTH_16BIT option so that other NAND controller drivers could use it when a 16-bit NAND is deployed.

Re: [U-Boot] [PATCH 6/6] RFC: am335x: enable falcon boot mode for mmc (raw and fat)

2013-04-10 Thread Peter Korsgaard
Peter == Peter Korsgaard jac...@sunsite.dk writes: Hi, Tom We should do some real defines here while at it, since the GP EVM Tom has NAND :) Peter Yes. It's a bit unfortunate that CONFIG_SPL_OS_BOOT is a global Peter setting, so you need all the various falcon boot related defines Peter

[U-Boot] [PATCH] phylib: Add Atheros AR8035 GETH PHY support

2013-04-10 Thread Xie Xiaobo
Signed-off-by: Xie Xiaobo x@freescale.com --- drivers/net/phy/atheros.c | 34 +- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/drivers/net/phy/atheros.c b/drivers/net/phy/atheros.c index 9b3808b..4691f85 100644 --- a/drivers/net/phy/atheros.c

Re: [U-Boot] bootm does not work if netconsole is enabled

2013-04-10 Thread Michael Walle
On Wed, April 10, 2013 03:51, Joe Hershberger wrote: Hi Michael, I just tested this on my Zynq target and it worked. However, you make a good point that it is possible for there to be more traces after the eth_halt call. I can't imagine the stack would like that in all situations (since

Re: [U-Boot] [v3] command/cache: Add flush command

2013-04-10 Thread Wolfgang Denk
Dear Scott, In message 136490.31043.20@snotra you wrote: If that means you have some other reason for objecting that you *do* want to go into, could you elaborate? I explained that before: we already have commands to operate with the caches, and we should rather use the existingones and

Re: [U-Boot] DWMMC / DWMCI question

2013-04-10 Thread Wolfgang Denk
Dear tiger...@viatech.com.cn, In message fe7aded5c2218b4786c09cd97dc4c49f812...@exchbj02.viatech.com.bj you wrote: What is the abbreviation of DWMMC / DWMCI? These are already abbreviations; I don't think you can shorten them even more without losing too much of information ;-) I could not

Re: [U-Boot] [PATCH v2] spi: mxc_spi: Set master mode for all channels

2013-04-10 Thread Fabio Estevam
Hi Stefano, On Wed, Apr 10, 2013 at 3:10 AM, Stefano Babic sba...@denx.de wrote: I am afraid you are breaking MX3x / MX25 because you add MXC_CSPICTRL_MODE_MASK only to MX5 / MX6. It will not break other platforms because this code is protected with a #ifdef MXC_ECSPI. And MXC_ECSPI is only

Re: [U-Boot] [PATCH] imx: Add titanium board support (i.MX6 based)

2013-04-10 Thread Wolfgang Denk
Dear Stefan Roese, In message 1365578252-13264-1-git-send-email...@denx.de you wrote: Titanium is a i.MX6 based board from ProjectionDesign / Barco. This patch adds support for this board with the newly introduced NAND support for i.MX6. Signed-off-by: Stefan Roese s...@denx.de There are

[U-Boot] [PATCH 1/4] driver:usb:s3c_udc: add support for Exynos4x12

2013-04-10 Thread Piotr Wilczek
This patch add new defines for usb phy for Exynos4x12. Signed-off-by: Piotr Wilczek p.wilc...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com CC: Minkyu Kang mk7.k...@samsung.com --- drivers/usb/gadget/regs-otg.h|5 + drivers/usb/gadget/s3c_udc_otg.c |9

[U-Boot] [PATCH 0/4] Enable 'ums' command on Trats2 board.

2013-04-10 Thread Piotr Wilczek
This patchset enable 'ums' command on Trats2 board. Definitions are added to pmic max77693 to enable safeout outputs. USB s3c_udc is modified to support Exnos4x12 Piotr Wilczek (4): driver:usb:s3c_udc: add support for Exynos4x12 usb:composite: use memcpy to avoid unaligned access pmic:

[U-Boot] [PATCH 2/4] usb:composite: use memcpy to avoid unaligned access

2013-04-10 Thread Piotr Wilczek
This patch memcpy is used instead of an assignment to avoid unaligned access execption on some ARM platforms. Signed-off-by: Piotr Wilczek p.wilc...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com CC: Lukasz Majewski l.majew...@samsung.com --- drivers/usb/gadget/composite.c |

[U-Boot] [PATCH 3/4] pmic: max77693: add defines for safeout 1 and 2

2013-04-10 Thread Piotr Wilczek
Signed-off-by: Piotr Wilczek p.wilc...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- include/power/max77693_pmic.h |3 +++ 1 file changed, 3 insertions(+) diff --git a/include/power/max77693_pmic.h b/include/power/max77693_pmic.h index 07c3dd6..c43ace0 100644 ---

[U-Boot] [PATCH 4/4] trats2: enable ums support on Trats2

2013-04-10 Thread Piotr Wilczek
This patch enables 'ums' command on Trats2 board. Signed-off-by: Piotr Wilczek p.wilc...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- board/samsung/trats2/trats2.c | 133 + include/configs/trats2.h | 19 ++ 2 files

Re: [U-Boot] [PATCH] imx: Add titanium board support (i.MX6 based)

2013-04-10 Thread Wolfgang Denk
Dear Stefan Roese, In message 1365578252-13264-1-git-send-email...@denx.de you wrote: Titanium is a i.MX6 based board from ProjectionDesign / Barco. This patch adds support for this board with the newly introduced NAND support for i.MX6. having a second look... +int board_mmc_init(bd_t

Re: [U-Boot] [U-Boot, v6, 4/9] nand: Extend nand_(read|write)_skip_bad with *actual and limit parameters

2013-04-10 Thread Tom Rini
On Thu, Mar 14, 2013 at 05:32:50AM -, Tom Rini wrote: We make these two functions take a size_t pointer to how much space was used on NAND to read or write the buffer (when reads/writes happen) so that bad blocks can be accounted for. We also make them take an loff_t limit on how much

[U-Boot] [PATCH v2 0/8] ARM: Add Seagate GoFlexHome support

2013-04-10 Thread Suriyan Ramasami
Thank you Wolfgang and Prafulla for feedback on patch v1. This is version 2. I couldn't figure out how to squash all these changes in one file with git. Do I just cat them? Hence, for this patch request they are unsquashed and in separate emails. Please let me know how I should squash for v3!

[U-Boot] [PATCH v2 1/8] ARM: Add maintainer for the Seagate GoFlexHome

2013-04-10 Thread Suriyan Ramasami
Create an entry for the Seagate GoFlexHome as goflexhome Signed-off-by: Suriyan Ramasami suriya...@gmail.com --- Changes for v2: - Coding style changes MAINTAINERS |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index

[U-Boot] [PATCH v2 2/8] ARM: Add a board entry for the Seagate GoFlexHome

2013-04-10 Thread Suriyan Ramasami
Create an entry for the Seagate GoFlexHome as goflexhome Its exactly like the dockstar entry. Signed-off-by: Suriyan Ramasami suriya...@gmail.com --- Changes for v2: - Coding style changes boards.cfg |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/boards.cfg

[U-Boot] [PATCH v2 3/8] ARM: Add Seagate GoFlexHome support

2013-04-10 Thread Suriyan Ramasami
Start with dockstar's dockstar.h Add #define CONFIG_CMD_IDE, CONFIG_MVSATA_IDE for IDE support Add #define CONFIG_CMD_DATE, CONFIG_RTC_MV for RTC support Add #define CONFIG_CMD_EXT4 for supporting ext4 FS Change CONFIG_SYS_PROMPT to be GoFlex specific Change CONFIG_ENV_ADDR and CONFIG_ENV_OFFSET

[U-Boot] [PATCH v2 4/8] ARM: Add Seagate GoFlexHome support

2013-04-10 Thread Suriyan Ramasami
Start with the Dockstar Makefile Add the two object files goflexhome.o and goflexhomemenu.o that need to be compiled Signed-off-by: Suriyan Ramasami suriya...@gmail.com --- Changes for v2: - Coding style changes board/Seagate/goflexhome/Makefile | 51

[U-Boot] [PATCH v2 5/8] ARM: Add Seagate GoFlexHome support

2013-04-10 Thread Suriyan Ramasami
Start with the Dockstar kwbimage.cfg Absolutely no change from the dockstar file Signed-off-by: Suriyan Ramasami suriya...@gmail.com --- Changes for v2: - Coding style changes board/Seagate/goflexhome/kwbimage.cfg | 168 + 1 files changed, 168

[U-Boot] [PATCH v2 6/8] ARM: Add Seagate GoFlexHome support

2013-04-10 Thread Suriyan Ramasami
Start with the dockstar file. In all the #defines cosmetically change DOCKSTAR to GOFLEXHOME Signed-off-by: Suriyan Ramasami suriya...@gmail.com --- Changes in v2: - Coding style changes board/Seagate/goflexhome/goflexhome.h | 47 + 1 files changed, 47

[U-Boot] [PATCH v2 7/8] ARM: Add Seagate GoFlexHome support

2013-04-10 Thread Suriyan Ramasami
Start with the dockstar file. Include goflexhome.h instead of dockstar.h Change #define DOCKSTAR_* to #define GOFLEXHOME_* Change the MACH_TYPE_DOCKSTAR to MACH_TYPE_GOFLEXHOME to reflect that its a GoFlexHome. Signed-off-by: Suriyan Ramasami suriya...@gmail.com --- Changes in v2: Coding

[U-Boot] [PATCH v2 8/8] ARM: Present a menu of bootable options on boot

2013-04-10 Thread Suriyan Ramasami
Initialize usb and ide. Scan through the usb for storage and boot capable partitions. Scan through the ide interface for boot capable partitions. Present such bootable options to the user to choose to boot from If the user does not choose any choose the default option the default option is the

Re: [U-Boot] [PATCH v2 0/8] ARM: Add Seagate GoFlexHome support

2013-04-10 Thread Albert ARIBAUD
Hi Suriyan, On Wed, 10 Apr 2013 06:12:09 -0700, Suriyan Ramasami suriya...@gmail.com wrote: Thank you Wolfgang and Prafulla for feedback on patch v1. This is version 2. I couldn't figure out how to squash all these changes in one file with git. Do I just cat them? Hence, for this patch

Re: [U-Boot] [Patch v2] cmd/gpt: Support gpt command for all devices

2013-04-10 Thread Piotr Wilczek
Dear Egbert Eich, -Original Message- From: Egbert Eich [mailto:egbert.e...@gmail.com] Sent: Tuesday, April 09, 2013 5:12 PM To: u-boot@lists.denx.de Cc: Piotr Wilczek; Egbert Eich Subject: [Patch v2] cmd/gpt: Support gpt command for all devices From: Egbert Eich e...@suse.com

Re: [U-Boot] [PATCH v2 0/8] ARM: Add Seagate GoFlexHome support

2013-04-10 Thread Wolfgang Denk
Dear Suriyan Ramasami, In message 1365599537-14138-1-git-send-email-suriya...@gmail.com you wrote: I couldn't figure out how to squash all these changes in one file with git. Do I just cat them? Hence, for this patch request they are unsquashed and in separate emails. Please let me know how

Re: [U-Boot] [PATCH] doc/feature-removal-schedule.txt: Add CONFIG_SYS_(CLOCKS|PADS)_ENABLE_ALL

2013-04-10 Thread Michael Cashwell
On Apr 8, 2013, at 1:57 PM, Tom Rini tr...@ti.com wrote: What I'm saying is that once either mainline, or another TI-provided tree exists and doesn't need these options set, they can go away. I want several new u-boot features (DFU, USB host Ethernet, GPT support, etc.) but cannot casually

Re: [U-Boot] [PATCH] doc/feature-removal-schedule.txt: Add CONFIG_SYS_(CLOCKS|PADS)_ENABLE_ALL

2013-04-10 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 04/10/2013 10:58 AM, Michael Cashwell wrote: On Apr 8, 2013, at 1:57 PM, Tom Rini tr...@ti.com wrote: What I'm saying is that once either mainline, or another TI-provided tree exists and doesn't need these options set, they can go away.

[U-Boot] [PATCH] am335x: Update timings for the beaglebone again

2013-04-10 Thread Tom Rini
After further testing we can run DDR at 400MHz so update the timings again. Tested-by: Koen Kooi k...@dominion.thruhere.net Signed-off-by: Tom Rini tr...@ti.com --- arch/arm/include/asm/arch-am33xx/ddr_defs.h | 20 ++-- board/ti/am335x/board.c |2 +- 2

Re: [U-Boot] bootm does not work if netconsole is enabled

2013-04-10 Thread Joe Hershberger
Hi Michael, On Wed, Apr 10, 2013 at 5:07 AM, Michael Walle mich...@walle.cc wrote: On Wed, April 10, 2013 03:51, Joe Hershberger wrote: Hi Michael, I just tested this on my Zynq target and it worked. However, you make a good point that it is possible for there to be more traces after the

[U-Boot] [PULL] u-boot-usb/master

2013-04-10 Thread Marek Vasut
The following changes since commit 645b271a6039e79b368f027a5624dc0820441733: patman: Add Series-process-log tag to sort/uniq change logs (2013-04-08 15:21:22 -0700) are available in the git repository at: git://git.denx.de/u-boot-usb.git master for you to fetch changes up to

[U-Boot] [PATCH v2] Tegra: Split tegra_get_chip_type() into soc sku funcs

2013-04-10 Thread Tom Warren
As suggested by Stephen Warren, use tegra_get_chip() to return the pure CHIPID for a Tegra SoC (i.e. 0x20 for Tegra20, 0x30 for Tegra30, etc.) and rename tegra_get_chip_type() to reflect its true function, i.e. tegra_get_chip_sku(), which returns an ID like TEGRA_SOC_T25, TEGRA_SOC_T33, etc.

Re: [U-Boot] [PATCH v2] Tegra: Split tegra_get_chip_type() into soc sku funcs

2013-04-10 Thread Stephen Warren
On 04/10/2013 11:53 AM, Tom Warren wrote: As suggested by Stephen Warren, use tegra_get_chip() to return the pure CHIPID for a Tegra SoC (i.e. 0x20 for Tegra20, 0x30 for Tegra30, etc.) and rename tegra_get_chip_type() to reflect its true function, i.e. tegra_get_chip_sku(), which returns an ID

[U-Boot] [PATCH v2 3/3] mx6sl: Add initial support for mx6slevk board

2013-04-10 Thread festevam
From: Fabio Estevam fabio.este...@freescale.com mx6slevk board is a development board from Freescale based on the mx6 solo-lite processor. For details about mx6slevk, please refer to: http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=IMX6SLEVKparentCode=i.MX6SLfpsp=1 Signed-off-by:

[U-Boot] [PATCH v3 1/3] iomux-v3: Place pad control definitions into common file

2013-04-10 Thread festevam
From: Fabio Estevam fabio.este...@freescale.com Instead of having the same PAD control definition in each MX6 variant pin file, place it into a common location. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Changes since v2: - None Changes since v1: - Add missing IOMUX_CONFIG_SION

[U-Boot] [PATCH v3 2/3] mx6: Add solo-lite variant support

2013-04-10 Thread festevam
From: Fabio Estevam fabio.este...@freescale.com mx6 solo-lite is another member of the mx6 series. For more information about mx6 solo-lite, please visit: http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=i.MX6SLnodeId=018rH3ZrDRB24A Signed-off-by: Fabio Estevam

Re: [U-Boot] [v3] command/cache: Add flush command

2013-04-10 Thread Scott Wood
On 04/10/2013 06:54:25 AM, Wolfgang Denk wrote: Dear Scott, In message 136490.31043.20@snotra you wrote: If that means you have some other reason for objecting that you *do* want to go into, could you elaborate? I explained that before: we already have commands to operate with the

[U-Boot] [PATCH] omap5_uevm: Correct to 2MiB aligned partitions on eMMC

2013-04-10 Thread Tom Rini
This has a 2MiB erase block size eMMC, so make sure we align on that for best possible performance. Signed-off-by: Tom Rini tr...@ti.com --- include/configs/omap5_uevm.h |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/configs/omap5_uevm.h

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

2013-04-10 Thread Tom Rini
Hello, The following changes since commit dd2445ec1b839a5ca61ff8438a5b7aebb21b7986: omap5_common.h: Use fallback CONFIG_SYS_BAUDRATE_TABLE (2013-04-08 11:40:59 -0400) are available in the git repository at: git://git.denx.de/u-boot-ti.git master for you to fetch changes up to

Re: [U-Boot] [PATCH 0/4] omap2420-h4: Fix u-boot support for board

2013-04-10 Thread Tom Rini
On Wed, Apr 03, 2013 at 02:35:32PM -0500, Jon Hunter wrote: Currently, u-boot support for the omap2420-h4 board is broken and u-boot is not booting when program into flash. Fix u-boot support for this board. Jon Hunter (4): omap2420-h4: Fix DRAM initialisation omap2420-h4: Fix booting

Re: [U-Boot] [PATCH] OMAP4: Fix bug in omap4460_volts struct

2013-04-10 Thread Tom Rini
On Tue, Apr 09, 2013 at 11:05:33AM +0300, Lubomir Popov wrote: The omap4460_volts struct was incorrectly referencing tps62361 instead of twl6030 as PMIC for the core and mm voltages (the tps is used for mpu supply only). This shall lead to bad OPP settings while booting kernel. Fixing it.

Re: [U-Boot] [PATCH] am335x/ti814x: Correct MMC_BOOT_DEVICES_START/END

2013-04-10 Thread Tom Rini
On Tue, Apr 09, 2013 at 11:41:33AM -0400, Tom Rini wrote: Given that on TI814x we have MMC1/2 swapped, we also need to swap them in MMC_BOOT_DEVICES_START/END Reported-by: Peter Korsgaard jac...@sunsite.dk Signed-off-by: Tom Rini tr...@ti.com Applied to u-boot-ti/master, thanks! -- Tom

Re: [U-Boot] [PATCH] omap5_uevm: Correct to 2MiB aligned partitions on eMMC

2013-04-10 Thread Tom Rini
On Wed, Apr 10, 2013 at 03:44:41PM -0400, Tom Rini wrote: This has a 2MiB erase block size eMMC, so make sure we align on that for best possible performance. Signed-off-by: Tom Rini tr...@ti.com Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [PATCH 1/5][v2] powerpc/mpc85xx:No NOR boot, do not compile IFC errata A003399

2013-04-10 Thread Scott Wood
On 04/09/2013 10:57:04 PM, Prabhakar Kushwaha wrote: On 04/10/2013 05:11 AM, Scott Wood wrote: On 04/08/2013 11:56:25 PM, Prabhakar Kushwaha wrote: I tried just after CONFIG_P1010 but it is giving compilation error. What error? make[1]: Entering directory

Re: [U-Boot] [PATCH] am335x: Update timings for the beaglebone again

2013-04-10 Thread Tom Rini
On Wed, Apr 10, 2013 at 11:16:54AM -0400, Tom Rini wrote: After further testing we can run DDR at 400MHz so update the timings again. Tested-by: Koen Kooi k...@dominion.thruhere.net Signed-off-by: Tom Rini tr...@ti.com Applied to u-boot-ti/master, thanks! -- Tom signature.asc

Re: [U-Boot] [PATCH 1/1] powerpc/lib: fix unsafe register handling in wait_ticks

2013-04-10 Thread Tom Rini
On Tue, Apr 09, 2013 at 05:10:59PM +0200, Mats K??rrman wrote: If watchdog is enabled, the arch/powerpc/lib/ticks.S::wait_ticks() function calls the function specified by the WATCHDOG_RESET macro. The wait_ticks function depends on the registers r0, r6 and r7 being preserved however that is

Re: [U-Boot] [PATCH 4/4] mtd: mxs_nand: Add support for i.MX6

2013-04-10 Thread Scott Wood
On 04/10/2013 02:06:10 AM, Stefan Roese wrote: Signed-off-by: Stefan Roese s...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Marek Vasut ma...@denx.de Cc: Fabio Estevam fabio.este...@freescale.com Cc: Scott Wood scottw...@freescale.com --- arch/arm/cpu/armv7/mx6/soc.c | 7 +++

Re: [U-Boot] [PATCH v11 01/30] mtd: nand: Introduce CONFIG_SYS_NAND_BUSWIDTH_16BIT

2013-04-10 Thread Albert ARIBAUD
Hi Benoît, On Tue, 9 Apr 2013 21:48:30 +0200, Benoît Thébaudeau benoit.thebaud...@advansee.com wrote: From: Fabio Estevam fabio.este...@freescale.com Introduce CONFIG_SYS_NAND_BUSWIDTH_16BIT option so that other NAND controller drivers could use it when a 16-bit NAND is deployed.

Re: [U-Boot] bootm does not work if netconsole is enabled

2013-04-10 Thread Michael Walle
Hi Joe, Am Mittwoch 10 April 2013, 18:13:57 schrieb Joe Hershberger: If i understand you correctly, the network will only be halted once the bootloader starts an operating system. Then what do you think about making either the nc_send_packet() or nc_putc()/nc_puts() function a noop when

[U-Boot] [PATCH] env_mmc: add support for redundant environment

2013-04-10 Thread Michael Heimpold
This patch add support for storing the environment redundant on mmc devices. Substantially it re-uses the logic from the NAND implementation, that means using an incremental counter for marking newer data. Signed-off-by: Michael Heimpold m...@heimpold.de --- board/freescale/common/sdhc_boot.c |

Re: [U-Boot] [v3] command/cache: Add flush command

2013-04-10 Thread Wolfgang Denk
Dear Scott, In message 1365622923.8381.10@snotra you wrote: I explained that before: we already have commands to operate with the caches, and we should rather use the existingones and extend these as needed instead of adding arbitrary new ones. The existing ones have semantics that are

Re: [U-Boot] [v3] command/cache: Add flush command

2013-04-10 Thread Scott Wood
On 04/10/2013 04:04:43 PM, Wolfgang Denk wrote: Dear Scott, In message 1365622923.8381.10@snotra you wrote: testing that we cannot do). Blackfin is weird -- if we did a simple split at the C-code level it looks like we'd have two dummy loops executing. Huh? flush_cache() does not include

Re: [U-Boot] [PATCH] mx31pdk: Remove watchdog support

2013-04-10 Thread Albert ARIBAUD
Hi Fabio, On Tue, 9 Apr 2013 16:03:52 -0300, Fabio Estevam fabio.este...@freescale.com wrote: The conversion of mx31pdk to SPL NAND fixed the boot issue, but we start seeing resets in loop, which prevents us from reaching the U-boot prompt. Until the proper fix can be identified, disable

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

2013-04-10 Thread Albert ARIBAUD
Hi Tom, On Wed, 10 Apr 2013 16:07:57 -0400, Tom Rini tr...@ti.com wrote: Hello, The following changes since commit dd2445ec1b839a5ca61ff8438a5b7aebb21b7986: omap5_common.h: Use fallback CONFIG_SYS_BAUDRATE_TABLE (2013-04-08 11:40:59 -0400) are available in the git repository at:

Re: [U-Boot] [PATCH v11 01/30] mtd: nand: Introduce CONFIG_SYS_NAND_BUSWIDTH_16BIT

2013-04-10 Thread Benoît Thébaudeau
Hi Albert, On Wednesday, April 10, 2013 10:43:31 PM, Albert ARIBAUD wrote: Hi Benoît, On Tue, 9 Apr 2013 21:48:30 +0200, Benoît Thébaudeau benoit.thebaud...@advansee.com wrote: From: Fabio Estevam fabio.este...@freescale.com Introduce CONFIG_SYS_NAND_BUSWIDTH_16BIT option so that

Re: [U-Boot] [PATCH v11 01/30] mtd: nand: Introduce CONFIG_SYS_NAND_BUSWIDTH_16BIT

2013-04-10 Thread Fabio Estevam
On Wed, Apr 10, 2013 at 6:26 PM, Benoît Thébaudeau benoit.thebaud...@advansee.com wrote: Thanks, but you have applied the bundle from my branch instead of the series from the mailing list, so all commit messages are crippled with patman stuff, my SoB is missing, and 01 and 02/30 do not have

Re: [U-Boot] [PATCH v11 01/30] mtd: nand: Introduce CONFIG_SYS_NAND_BUSWIDTH_16BIT

2013-04-10 Thread Albert ARIBAUD
Hi Benoît, On Wed, 10 Apr 2013 23:26:10 +0200 (CEST), Benoît Thébaudeau benoit.thebaud...@advansee.com wrote: Hi Albert, On Wednesday, April 10, 2013 10:43:31 PM, Albert ARIBAUD wrote: Hi Benoît, On Tue, 9 Apr 2013 21:48:30 +0200, Benoît Thébaudeau benoit.thebaud...@advansee.com

[U-Boot] [ARM] rolling u-boot-arm back then forward

2013-04-10 Thread Albert ARIBAUD
Hello, I have mistakenly applied Benoît's bundle for his v11 30-patch series instead of the 30 patchwork patches. since it was just shortly ago and I have not output any PR yet, I have rolled back master and next of u-boot-arm to just before the series and am in the process of rolling it forward

[U-Boot] [PATCH v1 1/1] omap3: Display MHz instead of mHz on the console

2013-04-10 Thread Manfred Huber
The processor is hopefully running with M(ega)Hz and not with m(illi)Hz. Signed-off-by: Manfred Huber man.hu...@arcor.de --- arch/arm/cpu/armv7/omap3/sys_info.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/armv7/omap3/sys_info.c

Re: [U-Boot] [PATCH v11 01/30] mtd: nand: Introduce CONFIG_SYS_NAND_BUSWIDTH_16BIT

2013-04-10 Thread Albert ARIBAUD
Hi Fabio, On Wed, 10 Apr 2013 18:34:13 -0300, Fabio Estevam feste...@gmail.com wrote: On Wed, Apr 10, 2013 at 6:26 PM, Benoît Thébaudeau benoit.thebaud...@advansee.com wrote: Thanks, but you have applied the bundle from my branch instead of the series from the mailing list, so all commit

Re: [U-Boot] [ARM] rolling u-boot-arm back then forward - done

2013-04-10 Thread Albert ARIBAUD
On Thu, 11 Apr 2013 00:07:13 +0200, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hello, I have mistakenly applied Benoît's bundle for his v11 30-patch series instead of the 30 patchwork patches. since it was just shortly ago and I have not output any PR yet, I have rolled back master

Re: [U-Boot] [PATCH v2 4/4] ARM: fix CONFIG_SPL_MAX_SIZE semantics

2013-04-10 Thread Stephen Warren
On 04/09/2013 05:14 PM, Albert ARIBAUD wrote: Remove SPL-related ASSERT() in arch/arm/cpu/u-boot.lds as this file is never used for SPL builds. Rewrite the ASSERT() in arch/arm/cpu/u-boot-spl.lds to separately test image (text,data,rodata...) size and BSS size each against its own max.

Re: [U-Boot] [PATCH v2 4/4] ARM: fix CONFIG_SPL_MAX_SIZE semantics

2013-04-10 Thread Albert ARIBAUD
Hi Stephen, On Wed, 10 Apr 2013 16:21:54 -0600, Stephen Warren swar...@wwwdotorg.org wrote: On 04/09/2013 05:14 PM, Albert ARIBAUD wrote: Remove SPL-related ASSERT() in arch/arm/cpu/u-boot.lds as this file is never used for SPL builds. Rewrite the ASSERT() in

Re: [U-Boot] [v3] command/cache: Add flush command

2013-04-10 Thread Wolfgang Denk
Dear Scott Wood, In message 1365628243.8381.20@snotra you wrote: testing that we cannot do). Blackfin is weird -- if we did a simple split at the C-code level it looks like we'd have two dummy loops executing. Huh? flush_cache() does not include any loop for BF. Yes it does.

Re: [U-Boot] [v3] command/cache: Add flush command

2013-04-10 Thread Scott Wood
On 04/10/2013 05:50:56 PM, Wolfgang Denk wrote: Dear Scott Wood, In message 1365628243.8381.20@snotra you wrote: testing that we cannot do). Blackfin is weird -- if we did a simple split at the C-code level it looks like we'd have two dummy loops executing. Huh?

Re: [U-Boot] [PATCH v2 4/4] ARM: fix CONFIG_SPL_MAX_SIZE semantics

2013-04-10 Thread Stephen Warren
On 04/10/2013 04:50 PM, Albert ARIBAUD wrote: On Wed, 10 Apr 2013 16:21:54 -0600, Stephen Warren wrote: On 04/09/2013 05:14 PM, Albert ARIBAUD wrote: ... This still seems to have separate defines for SPL text/data/rodata size and BSS size. If I want instead to limit the total

Re: [U-Boot] [PATCH v2 4/4] ARM: fix CONFIG_SPL_MAX_SIZE semantics

2013-04-10 Thread Albert ARIBAUD
On Thu, 11 Apr 2013 00:50:01 +0200, Albert ARIBAUD albert.u.b...@aribaud.net wrote: What we could do, though, is subdivide testing based on the existence or non-existence of CONFIG_SPL_BSS_START_ADDR: - if CONFIG_SPL_BSS_START_ADDR exists, then we assume SPL image and BSS are disjoint and

Re: [U-Boot] [PATCH v2 0/4] Homogeneize semantics of CONFIG_SPL_MAX_SIZE

2013-04-10 Thread Albert ARIBAUD
On Wed, 10 Apr 2013 01:14:51 +0200, Albert ARIBAUD albert.u.b...@aribaud.net wrote: CONFIG_SPL_MAX_SIZE and CONFIG_SPL_BSS_MAX_SIZE did not have constant semantics across all of U-boot. This patch series aims at fixing this by splitting the maximum size into separate image (code + data +

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

2013-04-10 Thread Albert ARIBAUD
Hello, The following changes since commit 009d75ccc11d27b9a083375a88bb93cb746b4800: Merge branch 'u-boot/master' into 'u-boot-arm/master' (2013-03-28 18:50:01 +0100) are available in the git repository at: git://git.denx.de/u-boot-arm master for you to fetch changes up to

Re: [U-Boot] [PATCH v2 4/4] ARM: fix CONFIG_SPL_MAX_SIZE semantics

2013-04-10 Thread Stephen Warren
On 04/10/2013 05:09 PM, Albert ARIBAUD wrote: On Thu, 11 Apr 2013 00:50:01 +0200, Albert ARIBAUD albert.u.b...@aribaud.net wrote: What we could do, though, is subdivide testing based on the existence or non-existence of CONFIG_SPL_BSS_START_ADDR: - if CONFIG_SPL_BSS_START_ADDR exists, then

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

2013-04-10 Thread Benoît Thébaudeau
Hi Albert, On Thursday, April 11, 2013 1:12:17 AM, Albert ARIBAUD wrote: Hello, The following changes since commit 009d75ccc11d27b9a083375a88bb93cb746b4800: Merge branch 'u-boot/master' into 'u-boot-arm/master' (2013-03-28 18:50:01 +0100) are available in the git repository at:

[U-Boot] [PATCH v3 1/1] ARM: Add support for Seagate GoFlexHome

2013-04-10 Thread Suriyan Ramasami
This is yet another attempt with patch v3. Thanks to Wolfgang, Prafulla and Albert for comments, corrections, and suggestions. Comments on the files: MAINTAINERS: Add maintainer entry for the Seagate GoFlexHome board/Seagate/goflexhome/Makefile: Start with the Dockstar Makefile The object file

Re: [U-Boot] freescale i.MX28 mxsboot NAND booting on mx28evk bad blocks

2013-04-10 Thread Paul B. Henson
Let me just preface this reply with the disclaimer that I'm fairly new to embedded development, and it sounds like you know a lot more about what you're talking about than I do ;). On 4/6/2013 12:18 AM, Trent Piepho wrote: Did you already have the bad sectors when you burnt under Linux? I

[U-Boot] [PATCH v2 0/7] palm treo 680 smartphone board support

2013-04-10 Thread Mike Dunn
Hi, This patchset adds support for the Palm Treo 680 smartphone. I had to make some minor tweaks to u-boot to get things working. Most of these changes are small, and most only touch the pxa arch. Thanks for looking. Changelog: v2: - tabs removed in #defines in palmtreo680.h - use

[U-Boot] [PATCH v2 1/7] pxa_lcd: add the ACX544AKN lcd device

2013-04-10 Thread Mike Dunn
This adds the definitions required to support the LCD device on the Palm Treo 680. Signed-off-by: Mike Dunn miked...@newsguy.com --- drivers/video/pxa_lcd.c | 32 1 files changed, 32 insertions(+), 0 deletions(-) diff --git a/drivers/video/pxa_lcd.c

[U-Boot] [PATCH v2 2/7] pxa_lcd: make lcd_enable() a weak pointer

2013-04-10 Thread Mike Dunn
Make lcd_init() a weak pointer so that boards can overload it if necessary. The palmtreo680 board needs to wiggle some gpios and configure the pwm controller in order to get the lcd and its backlight working. Signed-off-by: Mike Dunn miked...@newsguy.com --- drivers/video/pxa_lcd.c |2 +- 1

[U-Boot] [PATCH v2 3/7] pxa27x_udc: remove call to unimplemented set_GPIO_mode()

2013-04-10 Thread Mike Dunn
If CONFIG_USB_DEV_PULLUP_GPIO is defined, a link error occurs because the set_GPIO_mode() helper function is not implemented. This function doesn't do much except make the code a little more readable, so I just manually coded its equivalent and removed the prototype from the header file. It is

[U-Boot] [PATCH v2 4/7] arm: bootm: call udc_disable()before booting linux

2013-04-10 Thread Mike Dunn
On the pxa270, if the udc device is not disabled before jumping to linux, the device fails to initialize in linux because it was left in a running state, and the linux driver assumes that it is in a disabled state. Signed-off-by: Mike Dunn miked...@newsguy.com --- Arguably, this is a bug in the

[U-Boot] [PATCH v2 5/7] lib: import bitrev library from the linux kernel

2013-04-10 Thread Mike Dunn
This patch adds the bitrev library from the linux kernel. This is a simple algorithm that uses an 8 bit look-up table to reverse the bits in data types of 8, 16, or 32 bit widths. The docg4 nand flash driver uses it. [port from linux kernel 2.6.20 commit

  1   2   >