[U-Boot] [PATCH 0/2] new IGEP board support

2013-02-06 Thread Enric Balletbo i Serra
From: Enric Balletbo i Serra eballe...@iseebcn.com Hi all, In our effort to mainline the IGEP device support here are two patches to add support to the IGEP COM PROTON board. The first patch is only a trivial patch that changes some IGEP boards names. The second is to add the new board. These

[U-Boot] [PATCH 1/2] OMAP3: igep00x0: use official board names.

2013-02-06 Thread Enric Balletbo i Serra
From: Enric Balletbo i Serra eballe...@iseebcn.com This trivial patch only changes current boards names for the official names. Signed-off-by: Enric Balletbo i Serra eballe...@iseebcn.com --- board/isee/igep00x0/igep00x0.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH 2/2] OMAP3: igep00x0: Add new IGEP COM PROTON.

2013-02-06 Thread Enric Balletbo i Serra
From: Enric Balletbo i Serra eballe...@iseebcn.com The IGEP COM PROTON is a new ultra compact module design with an on-board ethernet controller. Signed-off-by: Enric Balletbo i Serra eballe...@iseebcn.com --- MAINTAINERS|1 + board/isee/igep00x0/igep00x0.c |3 +++

Re: [U-Boot] [PATCH v3 3/4] imx: mx5: lowlevel_init: Simplify code

2013-02-06 Thread Stefano Babic
On 05/02/2013 22:07, Benoît Thébaudeau wrote: Don't use several instructions to build constant values. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com --- Changes in v3: - New patch. Changes in v2: None arch/arm/cpu/armv7/mx5/lowlevel_init.S |8 ++-- 1 file

Re: [U-Boot] [PATCH 2/2] OMAP3: igep00x0: Add new IGEP COM PROTON.

2013-02-06 Thread Javier Martinez Canillas
Hi Enric, On Wed, Feb 6, 2013 at 9:29 AM, Enric Balletbo i Serra eballe...@gmail.com wrote: From: Enric Balletbo i Serra eballe...@iseebcn.com The IGEP COM PROTON is a new ultra compact module design with an on-board ethernet controller. Signed-off-by: Enric Balletbo i Serra

Re: [U-Boot] PPC405 with XMD boot

2013-02-06 Thread Rommel G Custodio
Dear Frank, On 2013.02/05, Frank Lombardo wrote: Rommel, I am using your recently posted patch to boot my custom Virtex4 board with XMD. Execution gets stuck in the NS16550_init() function. It gets stuck at this line: So you're not jumping to random addresses anymore. #if

[U-Boot] [PATCH 0/9 v9] Add TMU support for Exynos5250 based SMDK5250

2013-02-06 Thread Akshay Saraswat
This patch series adds support for TMU driver using device tree for Exynos5250 based SMDK5250 board. Changes since v8: - Patch-1: None. - Patch-2: None. - Patch-3: None. - Patch-4: None. - Patch-5: None. - Patch-6: Kept old code same and added

[U-Boot] [PATCH 1/9 v9] EXYNOS5: TMU: Add driver for Thermal Management Unit

2013-02-06 Thread Akshay Saraswat
Adding Exynos Thermal Management Unit driver to monitor SOC temperature and take actions corresponding to states of TMU. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v8: - None.

[U-Boot] [PATCH 2/9 v9] EXYNOS5: Implement board_poweroff for Thermal Management Unit

2013-02-06 Thread Akshay Saraswat
Adding API in power for system shutdown when tripping value is reached in Exynos Thermal Management Unit. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v8: - None. arch/arm/cpu/armv7/exynos/power.c| 15

[U-Boot] [PATCH 3/9 v9] EXYNOS5: FDT: Add TMU device node values

2013-02-06 Thread 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 aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v8: - None. arch/arm/dts/exynos5250.dtsi

[U-Boot] [PATCH 4/9 v9] EXYNOS5: TMU: Add TMU init and status check

2013-02-06 Thread Akshay Saraswat
This adds call to tmu_init() and TMU boot time analysis for the SoC temperature threshold breach. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v8: - None. board/samsung/smdk5250/smdk5250.c | 35

[U-Boot] [PATCH 5/9 v9] EXYNOS5: Config: Enable support for Exynos TMU driver

2013-02-06 Thread Akshay Saraswat
Enables TMU driver support for exynos5250 Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v8: - None. include/configs/exynos5250-dt.h |3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/exynos5250-dt.h

[U-Boot] [PATCH 6/9 v9] TMU: Add TMU support in dtt command

2013-02-06 Thread Akshay Saraswat
Add generic TMU support alongwith i2c sensors in dtt command to enable temperature reading in cases where TMU is present along-with/instead-of i2c sensors. Signed-off-by: Akshay Saraswat aksha...@samsung.com --- Changes since v8: - Kept old code same and added dtt_i2c. common/cmd_dtt.c

[U-Boot] [PATCH 7/9 v9] EXYNOS5: Config: Enable dtt command for TMU

2013-02-06 Thread Akshay Saraswat
This enables the dtt command to read the current SOC temperature with the help of TMU Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v8: - None. include/configs/exynos5250-dt.h |2 ++ 1 file changed, 2 insertions(+)

[U-Boot] [PATCH 8/9 v9] EXYNOS5: TMU: Add hardware tripping

2013-02-06 Thread Akshay Saraswat
This adds hardware tripping at 110 degrees celsius which must enable forced system shutdown in case TMU fails to power off. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v8: - None. arch/arm/cpu/armv7/exynos/power.c

[U-Boot] [PATCH 9/9 v9] EXYNOS5: FDT: Add a H/W-trip member to TMU node

2013-02-06 Thread Akshay Saraswat
This adds a member to TMU FDT node for providing hardware tripping temperature threshold. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v8: - None. board/samsung/dts/exynos5250-smdk5250.dts |1 +

Re: [U-Boot] [PATCH] helper: Add architecture specific symbol prefix in the uboot list link script.

2013-02-06 Thread Albert ARIBAUD
Hi Sonic, On Wed, 6 Feb 2013 17:21:03 +0800, Sonic Zhang sonic@gmail.com wrote: From: Sonic Zhang sonic.zh...@analog.com Blackfin compiler add prefix '_' to each symbols. All symbols defined in the link script should have this prefix. Add it to the uboot list helper function

Re: [U-Boot] PPC405 with XMD boot

2013-02-06 Thread Stefan Roese
On 02/06/2013 12:13 PM, Rommel G Custodio wrote: If I define CONFIG_SYS_NS16550_BROKEN_TEMT, it gets stuck in the while loop in NS16550_putc: while ((serial_in(com_port-lsr) UART_LSR_THRE) == 0) ; serial_out(c, com_port-thr); From the GDB output, I can see it is using the

Re: [U-Boot] [PATCH 2/2] OMAP3: igep00x0: Add new IGEP COM PROTON.

2013-02-06 Thread Enric Balletbo Serra
Hi Javier, Thanks for your comments. 2013/2/6 Javier Martinez Canillas jav...@dowhile0.org: Hi Enric, On Wed, Feb 6, 2013 at 9:29 AM, Enric Balletbo i Serra eballe...@gmail.com wrote: From: Enric Balletbo i Serra eballe...@iseebcn.com The IGEP COM PROTON is a new ultra compact module

Re: [U-Boot] [PATCH 2/2] OMAP3: igep00x0: Add new IGEP COM PROTON.

2013-02-06 Thread Javier Martinez Canillas
On Wed, Feb 6, 2013 at 3:42 PM, Enric Balletbo Serra eballe...@gmail.com wrote: Hi Javier, Hi Enric, Thanks for your comments. 2013/2/6 Javier Martinez Canillas jav...@dowhile0.org: Hi Enric, On Wed, Feb 6, 2013 at 9:29 AM, Enric Balletbo i Serra eballe...@gmail.com wrote: From: Enric

Re: [U-Boot] [PATCH 2/2] OMAP3: igep00x0: Add new IGEP COM PROTON.

2013-02-06 Thread Enric Balletbo Serra
Hi Javier, 2013/2/6 Javier Martinez Canillas martinez.jav...@gmail.com: On Wed, Feb 6, 2013 at 3:42 PM, Enric Balletbo Serra eballe...@gmail.com wrote: Hi Javier, Hi Enric, Thanks for your comments. 2013/2/6 Javier Martinez Canillas jav...@dowhile0.org: Hi Enric, On Wed, Feb 6, 2013

Re: [U-Boot] [PATCH 6/9 v9] TMU: Add TMU support in dtt command

2013-02-06 Thread Simon Glass
Hi Akshay, On Wed, Feb 6, 2013 at 5:18 AM, Akshay Saraswat aksha...@samsung.com wrote: Add generic TMU support alongwith i2c sensors in dtt command to enable temperature reading in cases where TMU is present along-with/instead-of i2c sensors. Signed-off-by: Akshay Saraswat

[U-Boot] Users of ARM repo please re-fetch if your ARM ToT is 1071e736...

2013-02-06 Thread Albert ARIBAUD
Hello all, I had mistakenly pushed a merge of v2013.01.01 onto the Git ARM repo. I have just force-pushed the correct head, 5bedf884 (parent of 107...) Sorry for the inconvenience. Amicalement, -- Albert. ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] am33xx config_ddr api change needed to support mDDR

2013-02-06 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/05/2013 03:48 AM, Markus Brunner wrote: Hi, for mDDR to work mddr_sel (bit 28) of ddrctrl-ddrioctrl has to be set. There is no way of telling config_ddr(unsigned int pll, unsigned int ioctrl, ...) my desired value, it won't be set atm.

Re: [U-Boot] Pull request - sf tree

2013-02-06 Thread Tom Rini
On Mon, Feb 04, 2013 at 12:29:41PM +0100, Michal Simek wrote: Hi Mike and Tom, please pull these sf changes to your tree. Tom: I have sent private email to Mike but I haven't got any response from him. Also I haven't got reactions on mailing list. That's why I am not sure if Mike still

Re: [U-Boot] changing bootcmd environment

2013-02-06 Thread Scott Wood
On 02/05/2013 10:25:41 PM, Ratheendran R wrote: Thanks Scott for your valuable feedback suggestion. I am using the board which is uses SD Card boot NAND boot options,SD CARD boot is used to write firmware to be NAND flash and used only to update the firmware to NAND. Every time you

[U-Boot] [PATCH V2] mvsata_ide.c: Correction of typo in comments

2013-02-06 Thread Gray Remlin
Signed-off-by: Gray Remlin gryr...@gmail.com --- Changes since V1 - None, resend due to mailer mangling. diff --git a/drivers/block/mvsata_ide.c b/drivers/block/mvsata_ide.c index a88d0f7..42c177f 100644 --- a/drivers/block/mvsata_ide.c +++ b/drivers/block/mvsata_ide.c @@ -56,8 +56,8 @@

[U-Boot] Booting on seaboard (unaligned access)

2013-02-06 Thread Simon Glass
Hi Tom, I can't boot mainline on seaboard at present without reverting this commit: c50afc1d Revert arm: armv7: add compile option -mno-unaligned-access if available Is there supposed to be another way of fixing this, or is my toolchain broken? I may have missed something. Regards, Simon

[U-Boot] [PATCH v4 3/9] imx: mx5: lowlevel_init: Simplify code

2013-02-06 Thread Benoît Thébaudeau
Don't use several instructions to build constant values. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com Acked-by: Stefano Babic sba...@denx.de --- Changes in v4: None Changes in v3: - New patch. Changes in v2: None arch/arm/cpu/armv7/mx5/lowlevel_init.S |8 ++-- 1

[U-Boot] [PATCH v4 1/9] nand: mxc: Prepare to add support for i.MX5

2013-02-06 Thread Benoît Thébaudeau
Add some abstraction to NFC defitnitions so that some parts of the current code can also be used for future i.MX5 code. Clean up a few things by the way. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com --- Changes in v4: None Changes in v3: - Separate code reformatting from

[U-Boot] [PATCH v4 5/9] nand: mxc: Fix debug trace in mxc_nand_read_oob_syndrome()

2013-02-06 Thread Benoît Thébaudeau
The page number indicated in the debug trace of mxc_nand_read_oob_syndrome() did not match the page being worked on. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com --- Changes in v4: - New patch. Changes in v3: None Changes in v2: None drivers/mtd/nand/mxc_nand.c |2 +- 1

[U-Boot] [PATCH v4 4/9] imx: mx53ard: Add support for NAND Flash

2013-02-06 Thread Benoît Thébaudeau
Add support for the Samsung K9LAG08U0M NAND Flash (2-GiB MLC NAND Flash, 2-kiB pages, 256-kiB blocks, 30-ns R/W cycles, 1 CS) on mx53ard. eNFC_CLK_ROOT is set up with a cycle time of 37.5 ns (400 MHz / 3 / 5) for this board, which satisfies the 30-ns NF R/W cycle requirement. Signed-off-by:

[U-Boot] [PATCH v4 7/9] Makefile: u-boot-with-spl.bin: Pad to CONFIG_SPL_MAX_SIZE

2013-02-06 Thread Benoît Thébaudeau
PAD_TO is not a generic SPL configuration option, so use CONFIG_SPL_MAX_SIZE instead. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com --- Changes in v4: - New patch. Changes in v3: None Changes in v2: None Makefile |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[U-Boot] [PATCH v4 6/9] nand: mxc: Use appropriate page number in syndrome functions

2013-02-06 Thread Benoît Thébaudeau
The syndrome functions should use the page number passed as argument instead of the page number saved upon NAND_CMD_READ0. This does not make any difference if the NAND_NO_AUTOINCR option is set, but otherwise this fixes accesses to the wrong pages. Signed-off-by: Benoît Thébaudeau

[U-Boot] [PATCH v4 9/9] imx: Add u-boot-with-spl.imx make target

2013-02-06 Thread Benoît Thébaudeau
Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com --- Changes in v4: - New patch. Changes in v3: None Changes in v2: None Makefile |3 +++ arch/arm/imx-common/Makefile |4 2 files changed, 7 insertions(+) diff --git a/Makefile b/Makefile index

[U-Boot] [PATCH v4 2/9] nand: mxc: Add support for i.MX5

2013-02-06 Thread Benoît Thébaudeau
Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com --- Changes in v4: None Changes in v3: - Separate code reformatting from behavioral changes. Changes in v2: None arch/arm/include/asm/arch-mx5/imx-regs.h |9 +++ drivers/mtd/nand/mxc_nand.c | 129

[U-Boot] [PATCH v4 8/9] nand: mxc: Switch NAND SPL to generic SPL

2013-02-06 Thread Benoît Thébaudeau
Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com --- Changes in v4: - New patch. Changes in v3: None Changes in v2: None board/freescale/mx31pdk/config.mk |5 -- .../freescale/mx31pdk/u-boot-spl.lds |0 board/karo/tx25/config.mk

Re: [U-Boot] [PATCH v4 7/9] Makefile: u-boot-with-spl.bin: Pad to CONFIG_SPL_MAX_SIZE

2013-02-06 Thread Benoît Thébaudeau
On Wednesday, February 6, 2013 10:37:14 PM, Benoît Thébaudeau wrote: PAD_TO is not a generic SPL configuration option, so use CONFIG_SPL_MAX_SIZE instead. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com This patch and the next 2 are rather drafts and RFCs than true patches.

Re: [U-Boot] Booting on seaboard (unaligned access)

2013-02-06 Thread Tom Warren
I don't see that commit in u-boot-tegra. I assume it's in u-boot/master (TOT)? I'll try a Seaboard build from u-boot/master when I get a chance. What about other (non-Tegra) ARM boards? -Original Message- From: s...@google.com [mailto:s...@google.com] On Behalf Of Simon Glass Sent:

Re: [U-Boot] Booting on seaboard (unaligned access)

2013-02-06 Thread Tom Warren
Sorry, I do see it - I was using a mangled grep string. I have no problem with it w/Sourcery G++ Lite 2009q3-67 4.4.1, which is what I've used forever. -Original Message- From: Tom Warren Sent: Wednesday, February 06, 2013 3:08 PM To: 'Simon Glass'; U-Boot Mailing List Cc: Albert

Re: [U-Boot] Booting on seaboard (unaligned access)

2013-02-06 Thread Albert ARIBAUD
Hi Simon, On Wed, 6 Feb 2013 13:06:15 -0800, Simon Glass s...@chromium.org wrote: Hi Tom, I can't boot mainline on seaboard at present without reverting this commit: c50afc1d Revert arm: armv7: add compile option -mno-unaligned-access if available Is there supposed to be another way

[U-Boot] [Patch v2] PHY: micrel.c: add support for KSZ9031

2013-02-06 Thread David Andrey
Add support for Micrel PHY KSZ9031 in phylib, including small rework for KSZ9021 to avoid code duplication Signed-off-by: David Andrey david.and...@netmodule.com Cc: Troy Kisky troy.ki...@boundarydevices.com Cc: Joe Herschberger joe.hershber...@gmail.com Cc: Andy Fleming aflem...@freescale.com

Re: [U-Boot] [PATCH] env: Allow accessing non-mtd devices

2013-02-06 Thread Lubomir Rintel
On Thu, 2013-01-31 at 15:10 +0100, Wolfgang Denk wrote: Dear Lubomir Rintel, In message 1359630144.16475.6.camel@hobbes you wrote: Mine is a Kobo Mini e-book reader, which is basically Freescale MX50 with the only storage there being an MMC/SD card (removable from a slot if

[U-Boot] [PATCH] env: Allow accessing non-mtd devices

2013-02-06 Thread Lubomir Rintel
In certain cases, memory device is present as flat file or block device (via mmc or mtdblock layer). Do not attempt MTD operations against it. Signed-off-by: Lubomir Rintel lkund...@v3.sk --- tools/env/fw_env.c | 20 tools/env/fw_env.config |3 +++ 2 files

Re: [U-Boot] [PATCH] helper: Add architecture specific symbol prefix in the uboot list link script.

2013-02-06 Thread Wolfgang Denk
Dear Sonic Zhang, In message 1360142463-5035-1-git-send-email-sonic@gmail.com you wrote: From: Sonic Zhang sonic.zh...@analog.com Blackfin compiler add prefix '_' to each symbols. All symbols defined in the link script should have this prefix. Add it to the uboot list helper function

Re: [U-Boot] [PATCH] env: Allow accessing non-mtd devices

2013-02-06 Thread Wolfgang Denk
Dear Lubomir Rintel, In message 1360191866.3594.10.camel@unicorn you wrote: - if (mtd_type != MTD_DATAFLASH) + if (mtd_type mtd_type != MTD_DATAFLASH) This change appears to be redundant. If mtd_type is null, then this is already caught iun te test mtd_type !=

[U-Boot] [PATCH v2 0/3] Add I2C driver for T114 Dalmore

2013-02-06 Thread Tom Warren
Update DT tables and enable I2C driver support for the Tegra114 Dalmore board. This uses the standard Tegra I2C driver. 5 controllers are supported, although all may not have devices behind them on every board. Changes in V2: - use new calculation for T114 I2C clocks - incorporate review comments

[U-Boot] [PATCH v2 1/3] Tegra: I2C: Add T114 clock support to tegra_i2c driver

2013-02-06 Thread Tom Warren
T114 has a slightly different I2C clock, with a new divisor for standard/fast mode and HS mode. Tested on my Dalmore, and the I2C clock is 100KHz +/- 3% on my Saleae Logic analyzer. Signed-off-by: Tom Warren twar...@nvidia.com --- v2: new arch/arm/include/asm/arch-tegra/tegra_i2c.h |6

[U-Boot] [PATCH v2 2/3] Tegra114: fdt: Update DT files with I2C info for T114/Dalmore

2013-02-06 Thread Tom Warren
Note that T114 does not have a separate/different DVC (power I2C) controller like T20 - all 5 I2C controllers are identical, but I2C5 is used to designate the controller intended for power control (PWR_I2C in the schematics). Signed-off-by: Tom Warren twar...@nvidia.com --- v2: Match dts files

[U-Boot] [PATCH v2 3/3] Tegra114: I2C: Enable I2C driver on Dalmore E1611 eval board

2013-02-06 Thread Tom Warren
Tested all 5 'buses', i2c probe enumerates device addresses on bus 1 and 2. Signed-off-by: Tom Warren twar...@nvidia.com --- v2: No change include/configs/dalmore.h |9 + include/configs/tegra114-common.h |3 +++ 2 files changed, 12 insertions(+), 0 deletions(-) diff

Re: [U-Boot] [PATCH] env: Allow accessing non-mtd devices

2013-02-06 Thread Wolfgang Denk
Dear Lubomir Rintel, In message 1360191923-4688-1-git-send-email-lkund...@v3.sk you wrote: In certain cases, memory device is present as flat file or block device (via mmc or mtdblock layer). Do not attempt MTD operations against it. Signed-off-by: Lubomir Rintel lkund...@v3.sk ---

Re: [U-Boot] [PATCH v2 1/3] Tegra: I2C: Add T114 clock support to tegra_i2c driver

2013-02-06 Thread Stephen Warren
On 02/06/2013 04:26 PM, Tom Warren wrote: T114 has a slightly different I2C clock, with a new divisor for standard/fast mode and HS mode. Tested on my Dalmore, and the I2C clock is 100KHz +/- 3% on my Saleae Logic analyzer. This looks plausible to me, but best to have Laxman review it since

Re: [U-Boot] [PATCH v2 2/3] Tegra114: fdt: Update DT files with I2C info for T114/Dalmore

2013-02-06 Thread Stephen Warren
On 02/06/2013 04:26 PM, Tom Warren wrote: Note that T114 does not have a separate/different DVC (power I2C) controller like T20 - all 5 I2C controllers are identical, but I2C5 is used to designate the controller intended for power control (PWR_I2C in the schematics). diff --git

Re: [U-Boot] [PATCH v2 3/3] Tegra114: I2C: Enable I2C driver on Dalmore E1611 eval board

2013-02-06 Thread Stephen Warren
On 02/06/2013 04:26 PM, Tom Warren wrote: Tested all 5 'buses', i2c probe enumerates device addresses on bus 1 and 2. This patch, Reviewed-by: Stephen Warren swar...@nvidia.com ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] PPC405 with XMD boot

2013-02-06 Thread Frank Lombardo
Thanks for the responses guys. I got to work. What I found was that the address being passed to the driver code was 0x8400. This is the base address of the UART. However, the registers of the XPS 16550 UART are offset by 0x1000 from the base. I changed the base address in my xparameters.h

[U-Boot] [PATCH]powerpc/usb: Fix usb device-tree fix-up

2013-02-06 Thread Ramneek Mehresh
Fix USB device-tree fixup to properly handle device-tree fixup and print appropriate message when wrong/junk dr_mode or phy_type are mentioned in hwconfig string Signed-off-by: Ramneek Mehresh ramneek.mehr...@freescale.com --- arch/powerpc/cpu/mpc8xxx/fdt.c | 6 ++ 1 file changed, 6

Re: [U-Boot] [PATCH]powerpc/usb: Fix usb device-tree fix-up

2013-02-06 Thread Wolfgang Denk
Dear Ramneek Mehresh, In message 1360207562-1784-1-git-send-email-ramneek.mehr...@freescale.com you wrote: + if (mode_idx 0 || phy_idx 0) { + printf(WARNING: wrong usb mode/phy + defined!!\n); +

Re: [U-Boot] changing bootcmd environment

2013-02-06 Thread Ratheendran R
Thanks Scott SD Card boot only to write firmware to NAND flash. *'And you should never use nand scrub in an automated way.' * what is better way of doing this, since I am using with an old uboot.. -Ratheendran On Thu, Feb 7, 2013 at 12:05 AM, Scott Wood scottw...@freescale.com wrote: On

Re: [U-Boot] PPC405 with XMD boot

2013-02-06 Thread Stefan Roese
On 02/07/2013 04:20 AM, Frank Lombardo wrote: Thanks for the responses guys. I got to work. What I found was that the address being passed to the driver code was 0x8400. This is the base address of the UART. However, the registers of the XPS 16550 UART are offset by 0x1000 from the

[U-Boot] [PATCH 04/11] Blackfin: bf60x: add dma support

2013-02-06 Thread Sonic Zhang
From: Bob Liu lliu...@gmail.com Add dma support for bf60x. Signed-off-by: Bob Liu lliu...@gmail.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com --- arch/blackfin/include/asm/dma.h | 113 -- arch/blackfin/include/asm/mach-common/bits/dma.h | 48

[U-Boot] [PATCH 03/11] Blackfin: bf60x: add serial support

2013-02-06 Thread Sonic Zhang
From: Sonic Zhang sonic.zh...@analog.com Add serial for bf60x. Signed-off-by: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/cpu/serial.c | 81 --- arch/blackfin/cpu/serial.h | 222

[U-Boot] [PATCH 00/11] Add BF60x processor support to Blackfin architecture.

2013-02-06 Thread Sonic Zhang
From: Sonic Zhang sonic.zh...@analog.com ADSP-BF60x is the new generation Blackfin® dual-core processor announced by Analog Devices in late March, 2012. This patch set adds BF60x processor support to Das U-Boot Blackfin architecture. For more information, see http://blackfin.uclinux.org . In

[U-Boot] [PATCH 10/11] Blackfin: bf60x: add hw watchdog support

2013-02-06 Thread Sonic Zhang
From: Bob Liu lliu...@gmail.com Signed-off-by: Bob Liu lliu...@gmail.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com --- arch/blackfin/cpu/initcode.c | 13 + arch/blackfin/cpu/start.S |2 ++ include/configs/bf609-ezkit.h |1 + 3 files changed, 16 insertions(+), 0

[U-Boot] [PATCH 06/11] Blackfin: bf60x: add gpio support

2013-02-06 Thread Sonic Zhang
From: Bob Liu lliu...@gmail.com Signed-off-by: Bob Liu lliu...@gmail.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com --- arch/blackfin/cpu/gpio.c| 36 +-- arch/blackfin/include/asm/gpio.h|2 +- arch/blackfin/include/asm/mach-bf609/gpio.h | 151

[U-Boot] [PATCH 08/11] Blackfin: bf60x: add rsi/sdh support

2013-02-06 Thread Sonic Zhang
From: Sonic Zhang sonic.zh...@analog.com Add rsi/sdh support for bf60x. Signed-off-by: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/include/asm/mach-common/bits/sdh.h | 38 +++- drivers/mmc/bfin_sdh.c | 68

[U-Boot] [PATCH 02/11] Blackfin: bf60x: Port blackfin core architecture code to boot on bf60x.

2013-02-06 Thread Sonic Zhang
From: Sonic Zhang sonic.zh...@analog.com Set up clocks, DDR controller, Nor flash controller, reboot, serial port. Add new SPI boot modes. Signed-off-by: Bob Liu lliu...@gmail.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com --- arch/blackfin/cpu/cpu.c|4 +-

[U-Boot] [PATCH 11/11] Blackfin: bf60x: add resume from hibernate

2013-02-06 Thread Sonic Zhang
From: Steven Miao real...@gmail.com Add Bf60x resume from hibernate support Signed-off-by: Steven Miao real...@gmail.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/cpu/initcode.c | 44 ++

[U-Boot] [PATCH 09/11] Blackfin: spi: add bf6xx spi driver

2013-02-06 Thread Sonic Zhang
From: Scott Jiang scott.jiang.li...@gmail.com Spi driver for bf60x is different from old one, so implement a new driver for it. Signed-off-by: Scott Jiang scott.jiang.li...@gmail.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Bob Liu lliu...@gmail.com ---

[U-Boot] [PATCH 07/11] blackfin: bf609: add board and headers files to support bf609

2013-02-06 Thread Sonic Zhang
From: Sonic Zhang sonic.zh...@analog.com Board and config header files for bf609-ezkit support. Signed-off-by: Bob Liu lliu...@gmail.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com --- MAINTAINERS |3 +- board/bf609-ezkit/Makefile| 55