Re: [U-Boot] [PATCH] i.mx6q: mx6qarm2: Enable the usboh3 clock

2011-12-26 Thread Jason Liu
2011/12/26 Dirk Behme dirk.be...@googlemail.com: From: Eric Nelson eric.nel...@boundarydevices.com Bits 0 and 1 of CCM_CCGR7 are the usboh3 clock enable bits. Enabling this clock is necessary for the USB download. Signed-off-by: Eric Nelson eric.nel...@boundarydevices.com CC: Jason Hui

Re: [U-Boot] [PATCH] i.mx6:imx6q: allign MAC address with burned-in ordering

2011-12-29 Thread Jason Liu
Stefano, 2011/12/19 Jason Liu jason@linaro.org: For the i.mx6q, the burned-in MAC address will be the following odering, fuse: 0x620[7:0]   MAC_ADDR[7:0]     --- mac[5] fuse: 0x620[15:8]  MAC_ADDR[15:8]    --- mac[4] fuse: 0x620[23:16] MAC_ADDR[23:16]   --- mac[3] fuse: 0x620[31:24

Re: [U-Boot] [PATCH v4 3/4] mmc: fsl_esdhc: Implement card-detect hook.

2012-01-03 Thread Jason Liu
to implementing the hook, this patch also removes the call to the board_mmc_getcd() function which is now called from the MMC framework and is no longer required here. Signed-off-by: Thierry Reding thierry.red...@avionic-design.de --- Tested ok on i.mx51evk board, Tested-by: Jason Liu jason

Re: [U-Boot] [PATCH v4 1/4] mmc: Change board_mmc_getcd() function prototype.

2012-01-03 Thread Jason Liu
, 39 insertions(+), 50 deletions(-) Tested ok on i.mx51evk board, Tested-by: Jason Liu jason@linaro.org [...] ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v4 2/4] mmc: Implement card detection.

2012-01-03 Thread Jason Liu
/mmc/s5p_mmc.c        |    1 +  drivers/mmc/sdhci.c          |    1 +  drivers/mmc/sh_mmcif.c       |    1 +  include/mmc.h                |    2 ++  15 files changed, 33 insertions(+), 0 deletions(-) Tested ok on i.mx51evk board, Tested-by: Jason Liu jason@linaro.org [...] -- 1.7.8.1

[U-Boot] [PATCH] imx: mx6q: add aipstz init for off platform periph

2012-01-10 Thread Jason Liu
-off-by: Jason Liu jason@linaro.org Cc: Stefano Babic sba...@denx.de --- arch/arm/cpu/armv7/mx6/soc.c | 29 +++-- arch/arm/include/asm/arch-mx6/imx-regs.h | 11 +++ 2 files changed, 34 insertions(+), 6 deletions(-) diff --git a/arch/arm/cpu/armv7

Re: [U-Boot] [PATCH 0/3] mxc_spi refactoring (for mx6q and mx6qsabrelite)

2012-01-30 Thread Jason Liu
Eric, 2012/1/31 Eric Nelson eric.nel...@boundarydevices.com: This patch set refactors mxc_spi as described in    http://lists.denx.de/pipermail/u-boot/2010-March/068791.html and requested in    http://lists.denx.de/pipermail/u-boot/2012-January/116023.html in order to add support for the

[U-Boot] [PATCH] i.mx: i.mx5: update imx_get_mac_from_fuse function

2012-01-31 Thread Jason Liu
i.mx5, here it does it. After apply this patch, u-boot works again on i.mx51/53 evk boards. Signed-off-by: Jason Liu jason@linaro.org Cc: Stefano Babic sba...@denx.de --- arch/arm/cpu/armv7/mx5/soc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/cpu/armv7

Re: [U-Boot] [PATCH 1/1] MX5:MX53: support for Freescale MX53LOCO

2012-02-02 Thread Jason Liu
Bud, 2012/2/3 Bud Miljkovic bud_miljko...@trimble.com: Hi Stefano, I have cloned yesterday http://git.denx.de/u-boot.git on to my local machine and from there selected the v2011.12-rc3 tag.  Then I configured the mx53loco board and successfully build u-boot.imx, copied the image to a SD

Re: [U-Boot] [PATCH 1/5] mx53loco: Use gpio_direction_input prior to gpio_get_value

2012-02-08 Thread Jason Liu
2012/2/8 Fabio Estevam feste...@gmail.com: Use gpio_direction_input prior to gpio_get_value. Cc: Jason Liu r64...@freescale.com Signed-off-by: Fabio Estevam fabio.este...@freescale.com Acked-by: Jason Liu r64...@freescale.com ---  board/freescale/mx53loco/mx53loco.c |    2 ++  1 files

Re: [U-Boot] [PATCH 3/5] mx53evk: Use gpio_direction_input prior to gpio_get_value

2012-02-08 Thread Jason Liu
2012/2/8 Fabio Estevam feste...@gmail.com: Use gpio_direction_input prior to gpio_get_value. Cc: Jason Liu r64...@freescale.com Signed-off-by: Fabio Estevam fabio.este...@freescale.com Acked-by: Jason Liu r64...@freescale.com ---  board/freescale/mx53evk/mx53evk.c |    2 ++  1 files

[U-Boot] [PATCH v2 1/1] imx: Get fec mac address from fuse

2010-11-13 Thread Jason Liu
The patch is to support getting FEC MAC address from fuse bank. Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: - correct the mac address byte order according to review comments - add memset(edev, 0. sizeof(*edev)) when do fec_probe, - fix some code comments --- arch/arm

Re: [U-Boot] [PATCH 1/1] net:Fix potential empty DHCP Parameter Request List

2010-11-13 Thread Jason Liu
2010/10/23 Mike Frysinger vap...@gentoo.org: On Friday, October 22, 2010 04:36:25 Jason Liu wrote: From: Gray Remlin g_rem...@rocketmail.com Can't get IP address with dhcp due to the dhcp server not allow the empty param list request under some network env --- a/net/bootp.c +++ b/net

[U-Boot] [PATCH v2 1/1] net:Fix potential empty DHCP Parameter Request List

2010-11-13 Thread Jason Liu
Can't get IP address with dhcp due to the dhcp server not allow the empty param list request under some network env This patch is based on Gray Remlin's initial patch. Signed-off-by: Jason Liu r64...@freescale.com Signed-off-by: Gray Remlin g_rem...@rocketmail.com --- Changes for v2

Re: [U-Boot] [PATCH v2 1/1] imx: Get fec mac address from fuse

2010-11-14 Thread Jason Liu
2010/11/15 Stefano Babic sba...@denx.de: On 11/14/2010 04:26 AM, Jason Liu wrote: The patch is to support getting FEC MAC address from fuse bank. Signed-off-by: Jason Liu r64...@freescale.com Hi Jason, --- Changes for v2:   - correct the mac address byte order according to review

Re: [U-Boot] [PATCH v2 1/1] imx: Get fec mac address from fuse

2010-11-15 Thread Jason Liu
diff --git a/arch/arm/include/asm/arch-mx5/imx-regs.h b/arch/arm/include/asm/arch-mx5/imx-regs.h index 0b6249a..93eef48 100644 --- a/arch/arm/include/asm/arch-mx5/imx-regs.h +++ b/arch/arm/include/asm/arch-mx5/imx-regs.h @@ -205,6 +205,9 @@  #define BOARD_REV_1_0           0x0  #define

Re: [U-Boot] [PATCH v2 1/1] imx: Get fec mac address from fuse

2010-11-15 Thread Jason Liu
2010/11/16 Wolfgang Denk w...@denx.de: Dear Jason Liu, In message aanlktimxrzanndrochbfpohu13vuwxsbdodbuun5f...@mail.gmail.com you wrote: Do you have any good method to put the mac address into one structure and use that filed to access it? Currently, we only use the MAC fuse

[U-Boot] [PATCH 1/1] mx51evk: savenv or env save command does not work

2010-11-16 Thread Jason Liu
fix saveenv or env save command not work on mx51evk board. with this patch, we can use savenv or env save to store enviroments to mmc card slot 0 Signed-off-by: Jason Liu r64...@freescale.com --- include/configs/mx51evk.h |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff

Re: [U-Boot] [PATCH 1/1] mx51evk: savenv or env save command does not work

2010-11-16 Thread Jason Liu
2010/11/17 Stefano Babic sba...@denx.de: On 11/16/2010 09:41 AM, Jason Liu wrote: Hi Jason, fix saveenv or env save command not work on mx51evk board. with this patch, we can use savenv or env save to store enviroments to mmc card slot 0 -#define CONFIG_ENV_SECT_SIZE    (128 * 1024

Re: [U-Boot] [PATCH v2 1/1] imx: Get fec mac address from fuse

2010-11-16 Thread Jason Liu
2010/11/16 Stefano Babic sba...@denx.de: I would like to propose a structure to better clarify the internal layout. Let me explain and check if this can be suitable for you. We could use a union to define the different layouts for the fuse banks, such as (the example is for the i.MX51):

Re: [U-Boot] [PATCH 1/1] mx51evk: savenv or env save command does not work

2010-11-16 Thread Jason Liu
2010/11/17 Wolfgang Denk w...@denx.de: Dear Jason Liu, In message aanlktikb6nytdz=4cmr_rduhvxqjta9zukaed+vw4...@mail.gmail.com you wrote:  I set it according to the following reason, - Keep the same setting as the original when you commit the mx51 support patch. Why you select 128KB

Re: [U-Boot] [PATCH 1/1] mx51evk: savenv or env save command does not work

2010-11-17 Thread Jason Liu
2010/11/17 Stefano Babic sba...@denx.de: On 11/17/2010 08:29 AM, Jason Liu wrote: Agree. But I think the original commit for 128KiB env size has been reviewed on the mail list and no one against it. This does not mean that we cannot change this value when we find it is wrong As Wofgang

[U-Boot] [PATCH v2 1/1] mx51evk: savenv or env save command does not work

2010-11-17 Thread Jason Liu
fix saveenv or env save command not work on mx51evk board. with this patch, we can use savenv or env save to store enviroments to mmc card slot 0 Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: - Change MMC env size to 8KiB for the consideration for quick boot --- include

[U-Boot] [PATCH v3 1/1] imx: Get fec mac address from fuse

2010-11-17 Thread Jason Liu
The patch is to support getting FEC MAC address from fuse bank. Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: - correct the mac address byte order according to review comments - add memset(edev, 0. sizeof(*edev)) when do fec_probe, - fix some code comments Changes for v3

[U-Boot] [PATCH v4 1/1] imx: Get fec mac address from fuse

2010-11-17 Thread Jason Liu
The patch is to support getting FEC MAC address from fuse bank. Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: - correct the mac address byte order according to review comments - add memset(edev, 0. sizeof(*edev)) when do fec_probe, - fix some code comments Changes for v3

Re: [U-Boot] [PATCH v4 1/1] imx: Get fec mac address from fuse

2010-11-17 Thread Jason Liu
2010/11/18 Wolfgang Denk w...@denx.de: Dear Jason Liu, In message 1290059063-20899-1-git-send-email-r64...@freescale.com you wrote: The patch is to support getting FEC MAC address from fuse bank. Signed-off-by: Jason Liu r64...@freescale.com ... +struct fuse_bank1_regs { +     u32

[U-Boot] [PATCH v5 1/1] imx: Get fec mac address from fuse

2010-11-18 Thread Jason Liu
The patch is to support getting FEC MAC address from fuse bank. Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: - correct the mac address byte order according to review comments - add memset(edev, 0. sizeof(*edev)) when do fec_probe, - fix some code comments Changes for v3

Re: [U-Boot] [PATCH v5 1/1] imx: Get fec mac address from fuse

2010-11-18 Thread Jason Liu
Hi, Stefano, 2010/11/18 Stefano Babic sba...@denx.de: On 11/18/2010 09:09 AM, Jason Liu wrote: The patch is to support getting FEC MAC address from fuse bank. Signed-off-by: Jason Liu r64...@freescale.com Hi Jason, +     for (i = 0; i 6; i++) +             mac[i] = readl(fuse-mac_addr[i

[U-Boot] [PATCH v6 1/1] imx: Get fec mac address from fuse

2010-11-18 Thread Jason Liu
The patch is to support getting FEC MAC address from fuse bank. Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: - correct the mac address byte order according to review comments - add memset(edev, 0. sizeof(*edev)) when do fec_probe, - fix some code comments Changes for v3

Re: [U-Boot] [PATCH v6 1/1] imx: Get fec mac address from fuse

2010-11-18 Thread Jason Liu
Hi, Stefano, 2010/11/18 Stefano Babic sba...@denx.de: On 11/18/2010 12:49 PM, Jason Liu wrote: The patch is to support getting FEC MAC address from fuse bank. Signed-off-by: Jason Liu r64...@freescale.com Hi Jason, I applied your patch and I tested on a i.MX27 Lite board. The result

Re: [U-Boot] [PATCH v6 1/1] imx: Get fec mac address from fuse

2010-11-18 Thread Jason Liu
Hi, Stefano, 2010/11/19 Jason Liu liu.h.ja...@gmail.com: Hi, Stefano, 2010/11/18 Stefano Babic sba...@denx.de: On 11/18/2010 12:49 PM, Jason Liu wrote: The patch is to support getting FEC MAC address from fuse bank. Signed-off-by: Jason Liu r64...@freescale.com Hi Jason, I applied

Re: [U-Boot] [PATCH v6 1/1] imx: Get fec mac address from fuse

2010-11-19 Thread Jason Liu
2010/11/19 Stefano Babic sba...@denx.de: On 11/19/2010 07:44 AM, Jason Liu wrote: I think you are right. I did not have the mx27 board to do test. Thanks for test. I only test it on mx51babbage board, the following is the output: Net:   got MAC address from fuse: 00:04:9f:00:f7:78 which

[U-Boot] [PATCH v7 1/1] imx: Get fec mac address from fuse

2010-11-19 Thread Jason Liu
The patch is to support getting FEC MAC address from fuse bank. Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: - correct the mac address byte order according to review comments - add memset(edev, 0. sizeof(*edev)) when do fec_probe, - fix some code comments Changes for v3

Re: [U-Boot] [PATCH v7 1/1] imx: Get fec mac address from fuse

2010-11-21 Thread Jason Liu
2010/11/19 Stefano Babic sba...@denx.de: On 11/19/2010 10:45 AM, Jason Liu wrote: The patch is to support getting FEC MAC address from fuse bank. Signed-off-by: Jason Liu r64...@freescale.com Jason, I can test successfully the patch on i.MX25 and i.MX27 (imx27lite and tx25). Tested

[U-Boot] ulong type size?

2010-12-01 Thread Jason Liu
Hi there, I have one problem when support more than 4GB NAND flash in u-boot. I found that there used ulong type in common/cmd_nand.c, but it turned out that ulong is 32bit in my build environment, the gcc version is as the following? Does anyone meet the same problem?

[U-Boot] [PATCH] MX5: Add initial support for mx53

2010-12-06 Thread Jason Liu
Signed-off-by: Jason Liu r64...@freescale.com --- arch/arm/cpu/armv7/mx5/iomux.c| 102 --- arch/arm/cpu/armv7/mx5/lowlevel_init.S| 92 --- arch/arm/cpu/armv7/mx5/soc.c |5 +- arch/arm/include/asm/arch-mx5/imx-regs.h | 73 ++--- arch/arm/include/asm/arch

Re: [U-Boot] [PATCH] MX5: Add initial support for mx53

2010-12-06 Thread Jason Liu
Hi, Stefano, 2010/12/7 Stefano Babic sba...@denx.de: On 12/06/2010 11:57 AM, Jason Liu wrote: Hi Jason, Add initial support for mx53 with the following change, - Add the iomux support and the pin definition, - Add the regs definition, clean up some unused def from mx51, - Add the low

Re: [U-Boot] [PATCH] MX5: Add initial support for mx53

2010-12-06 Thread Jason Liu
Hi, Stefano, 2010/12/7 Stefano Babic sba...@denx.de: On 12/07/2010 03:58 AM, Jason Liu wrote: I know all this crap is for MX51 in the TO1 version, even if I do not know if there are boards with this first version of the processor. Probably we must maintain this stuff for compatibility

[U-Boot] [PATCH 1/1] armv7: start.S: Fix relocation address caculation

2010-12-15 Thread Jason Liu
. This patch also correct the board_init_r function address caculation in relocation area. The addr of board_init_r after relocation is: _board_init_r_offs + relocation start address. This patch also make code cleanup by removing some useless code Signed-off-by: Jason Liu r64...@freescale.com --- arch/arm

Re: [U-Boot] [PATCH 1/1] armv7: start.S: Fix relocation address caculation

2010-12-15 Thread Jason Liu
Hi, Albert, 2010/12/16 Albert ARIBAUD albert.arib...@free.fr: Hi Jason, Le 15/12/2010 14:57, Jason Liu a écrit : There will have issue if the _start not equal TEXT_BASE when enable relocation. In what case does this happen? Some ARM SOC ROM need run the plug-in code first in IRAM

Re: [U-Boot] [PATCH 1/1] armv7: start.S: Fix relocation address caculation

2010-12-16 Thread Jason Liu
Hi, Albert, 2010/12/16 Albert ARIBAUD albert.arib...@free.fr: Le 16/12/2010 04:04, Jason Liu a écrit : Hi, Albert, 2010/12/16 Albert ARIBAUDalbert.arib...@free.fr: Hi Jason, Le 15/12/2010 14:57, Jason Liu a écrit : There will have issue if the _start not equal TEXT_BASE when enable

Re: [U-Boot] [PATCH 1/1] armv7: start.S: Fix relocation address caculation

2010-12-16 Thread Jason Liu
Hi, Wolfgang, 2010/12/16 Wolfgang Denk w...@denx.de: Dear Albert ARIBAUD, In message 4d09e2b9.5030...@free.fr you wrote: Why must you modify the original layout? right! Also, what is this 'plug-in' if it is not an IPL? Yes, and why must it be linked at TEXT_BASE? Let's stop this

[U-Boot] [PATCH 0/5] Add support for Freescale MX53

2010-12-16 Thread Jason Liu
The following patch set add support for Freescale MX53 Jason Liu (5): MX5: Add initial support for MX53 serial_mxc: add support for MX53 processor fec_mxc: add support for MX53 processor mxc_i2c: add support for MX53 processor MX5:MX53: add initial support for MX53EVK board

[U-Boot] [PATCH 2/5] serial_mxc: add support for MX53 processor

2010-12-16 Thread Jason Liu
This patch add UART support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com --- drivers/serial/serial_mxc.c |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/drivers/serial/serial_mxc.c b/drivers/serial/serial_mxc.c index f96b21f..805f4c5

[U-Boot] [PATCH 4/5] mxc_i2c: add support for MX53 processor

2010-12-16 Thread Jason Liu
This patch add I2C support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com --- drivers/i2c/mxc_i2c.c | 18 +- 1 files changed, 13 insertions(+), 5 deletions(-) mode change 100644 = 100755 drivers/i2c/mxc_i2c.c diff --git a/drivers/i2c/mxc_i2c.c b

[U-Boot] [PATCH 1/5] MX5: Add initial support for MX53

2010-12-16 Thread Jason Liu
Babic, Signed-off-by: Jason Liu r64...@freescale.com --- arch/arm/cpu/armv7/mx5/iomux.c | 30 ++- arch/arm/cpu/armv7/mx5/lowlevel_init.S | 92 --- arch/arm/cpu/armv7/mx5/soc.c| 14 +- arch/arm/include/asm/arch-mx5/asm-offsets.h |5 + arch/arm/include

[U-Boot] [PATCH 3/5] fec_mxc: add support for MX53 processor

2010-12-16 Thread Jason Liu
This patch add FEC support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com --- drivers/net/fec_mxc.c |2 +- drivers/net/fec_mxc.h |4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 0d0f392

[U-Boot] [PATCH 5/5] MX5:MX53: add initial support for MX53EVK board

2010-12-16 Thread Jason Liu
Add initial support for MX53EVK board support. FEC, SD/MMC, UART, I2C, have been support. Signed-off-by: Jason Liu r64...@freescale.com --- MAINTAINERS |3 + arch/arm/cpu/armv7/u-boot.lds |1 + board/freescale/mx53evk/Makefile | 49 + board/freescale

Re: [U-Boot] [PATCH 5/5] MX5:MX53: add initial support for MX53EVK board

2010-12-16 Thread Jason Liu
Hi, Wolfgang, 2010/12/17 Wolfgang Denk w...@denx.de: Dear Jason Liu, In message 1292494665-25674-6-git-send-email-r64...@freescale.com you wrote: Add initial support for MX53EVK board support. FEC, SD/MMC, UART, I2C, have been support. Signed-off-by: Jason Liu r64...@freescale.com

Re: [U-Boot] [PATCH 5/5] MX5:MX53: add initial support for MX53EVK board

2010-12-16 Thread Jason Liu
Hi, Stefano, 2010/12/16 Stefano Babic sba...@denx.de: On 12/16/2010 11:17 AM, Jason Liu wrote: Add initial support for MX53EVK board support. FEC, SD/MMC, UART, I2C, have been support. diff --git a/arch/arm/cpu/armv7/u-boot.lds b/arch/arm/cpu/armv7/u-boot.lds index 5725c30..7b6ab66 100644

Re: [U-Boot] [PATCH 1/5] MX5: Add initial support for MX53

2010-12-16 Thread Jason Liu
Hi, Stefano, 2010/12/16 Stefano Babic sba...@denx.de: On 12/16/2010 11:17 AM, Jason Liu wrote: Add initial support for Freescale MX53 processor, - Add the iomux support and the pin definition, - Add the regs definition, clean up some unused def from mx51, - Add the low level init support

Re: [U-Boot] [PATCH 1/5] MX5: Add initial support for MX53

2010-12-16 Thread Jason Liu
Hi, Wolfgang, 2010/12/16 Wolfgang Denk w...@denx.de: Dear Jason Liu, In message 1292494665-25674-2-git-send-email-r64...@freescale.com you wrote: Add initial support for Freescale MX53 processor, - Add the iomux support and the pin definition, - Add the regs definition, clean up some

Re: [U-Boot] [PATCH 4/5] mxc_i2c: add support for MX53 processor

2010-12-16 Thread Jason Liu
Hi, Heiko 2010/12/16 Heiko Schocher h...@denx.de: Hello Jason, Jason Liu wrote: This patch add I2C support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com ---  drivers/i2c/mxc_i2c.c |   18 +-  1 files changed, 13 insertions(+), 5 deletions

Re: [U-Boot] [PATCH 5/5] MX5:MX53: add initial support for MX53EVK board

2010-12-19 Thread Jason Liu
Hi, Stefano, 2010/12/17 Stefano Babic sba...@denx.de: On 12/17/2010 04:05 AM, Jason Liu wrote: There is pretty much different with I.MX51 ROM,  we will not use DCD data file to config the DDR script since ROM has the DCD size limitation and use the advance feature of what we called plug

[U-Boot] [PATCH 1/1] armv7: start.S: code cleanup

2010-12-19 Thread Jason Liu
Remove the useless code from start.S Signed-off-by: Jason Liu r64...@freescale.com --- arch/arm/cpu/armv7/start.S |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/armv7/start.S b/arch/arm/cpu/armv7/start.S index 684f2d2..cb4f92f 100644 --- a/arch/arm/cpu

Re: [U-Boot] [PATCH 1/1] armv7: start.S: code cleanup

2010-12-19 Thread Jason Liu
Hi, Albert, 2010/12/20 Albert ARIBAUD albert.arib...@free.fr: Hi Jason, Le 20/12/2010 07:14, Jason Liu a écrit : Remove the useless code from start.S Signed-off-by: Jason Liur64...@freescale.com ---   arch/arm/cpu/armv7/start.S |    2 --   1 files changed, 0 insertions(+), 2 deletions

[U-Boot] [PATCH v2 3/3] MX5:MX53: add initial support for MX53EVK board

2010-12-22 Thread Jason Liu
Add initial support for MX53EVK board support. FEC, SD/MMC, UART, I2C, have been support. Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: -Address the comments from Stefano, Albert and Wolfgang, -remove the ivt.S file and use imximage.cfg instead, -remove

[U-Boot] [PATCH v2 1/3] MX5: Add initial support for MX53 processor

2010-12-22 Thread Jason Liu
Babic, remove the is_soc_type and use #ifdef, -address the comments of stefano, remove CPU_TYPE def, remove something like /*0x760*/ comments in mx5x_pins.h. -fix the build break for vision2 board Signed-off-by: Jason Liu r64...@freescale.com --- arch/arm/cpu/armv7/mx5/iomux.c | 30

[U-Boot] [PATCH 1/3] mxc_gpio: add support for MX53 processor

2010-12-22 Thread Jason Liu
This patch add mxc_gpio support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com --- drivers/gpio/mxc_gpio.c |9 +++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/drivers/gpio/mxc_gpio.c b/drivers/gpio/mxc_gpio.c index 663141f..53a0673 100644

[U-Boot] [PATCH 3/3] imximage: Add MX53 boot image support

2010-12-22 Thread Jason Liu
This patch add the MX53 boot image support This patch has been tested on Freescale MX53EVK board. Signed-off-by: Jason Liu r64...@freescale.com --- board/freescale/mx53evk/config.mk| 25 board/freescale/mx53evk/imximage.cfg | 108 ++ tools

[U-Boot] [PATCH 2/3] fsl_pmic: add I2C interface support

2010-12-22 Thread Jason Liu
This patch add I2C interface for fsl_pmic driver support Signed-off-by: Jason Liu r64...@freescale.com --- drivers/misc/fsl_pmic.c | 39 ++- 1 files changed, 38 insertions(+), 1 deletions(-) diff --git a/drivers/misc/fsl_pmic.c b/drivers/misc/fsl_pmic.c

Re: [U-Boot] [PATCH 5/5] MX5:MX53: add initial support for MX53EVK board

2010-12-22 Thread Jason Liu
Hi, Stefano, Wolfgang, Albert, John 2010/12/20 John Rigby john.ri...@linaro.org: On Sun, Dec 19, 2010 at 10:19 PM, Jason Liu liu.h.ja...@gmail.com wrote: Jason: No one is arguing about the use the plugin feature.  The objection is to how you are getting the plugin bits into the u-boot image

[U-Boot] [PATCH v2 2/3] mxc_i2c: add support for MX53 processor

2010-12-22 Thread Jason Liu
This patch add I2C support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: -address the comments of Heiko, add #if defined(CONFIG_MX31) to avoid break MX31 build. Move CONFIG_HARD_I2C to the top of the file and fix the error message from

Re: [U-Boot] [PATCH v2 2/3] mxc_i2c: add support for MX53 processor

2010-12-22 Thread Jason Liu
Hi, Albert, 2010/12/23 Albert ARIBAUD albert.arib...@free.fr: Le 22/12/2010 14:23, Jason Liu a écrit : This patch add I2C support for Freescale MX53 processor Signed-off-by: Jason Liur64...@freescale.com --- Changes for v2: -address the comments of Heiko, add #if defined(CONFIG_MX31

[U-Boot] [PATCH v3 1/1] mxc_i2c: add support for MX53 processor

2010-12-22 Thread Jason Liu
This patch add I2C support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: -address the comments of Heiko, add #if defined(CONFIG_MX31) to avoid break MX31 build. Move CONFIG_HARD_I2C to the top of the file and fix the error message from

[U-Boot] [PATCH v2 1/1] ARM: */start.S: code cleanup

2010-12-22 Thread Jason Liu
Remove the useless code from start.S Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: -Address the comments from Albert to make changes to all ARM cpus with one single patch --- arch/arm/cpu/arm1136/start.S |2 -- arch/arm/cpu/arm1176/start.S |2 -- arch/arm/cpu

[U-Boot] [PATCH v3 1/1] MX5:MX53: add initial support for MX53EVK board

2010-12-23 Thread Jason Liu
Add initial support for MX53EVK board support. FEC, SD/MMC, UART, I2C, have been support. Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: -Address the comments from Stefano, Albert and Wolfgang, -remove the ivt.S file and use imximage.cfg instead, -remove

[U-Boot] [PATCH 1/1] MX51EVK: UART does not print out the early information

2010-12-23 Thread Jason Liu
iomux setup to the board_early_init_f. Signed-off-by: Jason Liu r64...@freescale.com --- board/freescale/mx51evk/mx51evk.c | 11 --- include/configs/mx51evk.h |2 ++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/board/freescale/mx51evk/mx51evk.c b/board

Re: [U-Boot] [PATCH v2 3/3] MX5:MX53: add initial support for MX53EVK board

2010-12-27 Thread Jason Liu
Hi, Stefano, 2010/12/27 Stefano Babic sba...@denx.de: On 12/22/2010 02:23 PM, Jason Liu wrote: Add initial support for MX53EVK board support. FEC, SD/MMC, UART, I2C, have been support. Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: -Address the comments from Stefano

Re: [U-Boot] [PATCH 2/3] fsl_pmic: add I2C interface support

2010-12-28 Thread Jason Liu
Hi, Stefano, 2010/12/27 Stefano Babic sba...@denx.de: On 12/22/2010 02:23 PM, Jason Liu wrote: This patch add I2C interface for fsl_pmic driver support +#ifdef CONFIG_FSL_PMIC_I2C +#include i2c.h +static int init_done; + +u32 pmic_reg(u32 reg, u32 val, u32 write) +{ +     unsigned char

Re: [U-Boot] [PATCH 1/3] mxc_gpio: add support for MX53 processor

2010-12-28 Thread Jason Liu
Hi, Stefano, 2010/12/27 Stefano Babic sba...@denx.de: On 12/22/2010 02:23 PM, Jason Liu wrote: This patch add mxc_gpio support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com ---  drivers/gpio/mxc_gpio.c |    9 +++--  1 files changed, 7 insertions(+), 2

Re: [U-Boot] [PATCH 3/3] imximage: Add MX53 boot image support

2010-12-28 Thread Jason Liu
Hi, Stefano, 2010/12/27 Stefano Babic sba...@denx.de: On 12/22/2010 02:23 PM, Jason Liu wrote: This patch add the MX53 boot image support This patch has been tested on Freescale MX53EVK board. Signed-off-by: Jason Liu r64...@freescale.com ---  board/freescale/mx53evk/config.mk    |   25

Re: [U-Boot] [PATCH v2 1/3] MX5: Add initial support for MX53 processor

2010-12-28 Thread Jason Liu
Hi, Stefano, 2010/12/27 Stefano Babic sba...@denx.de: On 12/22/2010 02:23 PM, Jason Liu wrote: Add initial support for Freescale MX53 processor, - Add the iomux support and the pin definition, - Add the regs definition, clean up some unused def from mx51, - Add the low level init support

Re: [U-Boot] [PATCH 3/3] imximage: Add MX53 boot image support

2010-12-28 Thread Jason Liu
Hi, Stefano, 2010/12/28 Stefano Babic sba...@denx.de: On 12/28/2010 09:08 AM, Jason Liu wrote: +#ifdef CONFIG_MX51 NAK. This is wrong: mkimage is a tool running on host and must be possible to include it in a distro. It must be able (as it now does) to produce the correct image at runtime

Re: [U-Boot] [PATCH v2 1/3] MX5: Add initial support for MX53 processor

2010-12-28 Thread Jason Liu
Hi, Stefano, 2010/12/28 Stefano Babic sba...@denx.de: On 12/28/2010 09:12 AM, Jason Liu wrote: A general remark. You posted two different patchset now to support the MX53 processor. As the patches are related, please combine all patches in a single patchset to avoid that only a few of them

[U-Boot] [PATCH v3 3/8] serial_mxc: add support for MX53 processor

2010-12-29 Thread Jason Liu
This patch add UART support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com --- drivers/serial/serial_mxc.c |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/drivers/serial/serial_mxc.c b/drivers/serial/serial_mxc.c index f96b21f..805f4c5

[U-Boot] [PATCH v3 4/8] mxc_gpio: add support for MX53 processor

2010-12-29 Thread Jason Liu
This patch add mxc_gpio support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2 - put this patch into the same patchset with MX53 support as Stefano comments, --- drivers/gpio/mxc_gpio.c |9 +++-- 1 files changed, 7 insertions(+), 2

[U-Boot] [PATCH v3 6/8] fsl_pmic: add I2C interface support

2010-12-29 Thread Jason Liu
This patch add I2C interface for fsl_pmic driver support Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: - Address the comments from Stefano, - factor out the param_check in pmic_reg for both spi/i2c --- drivers/misc/fsl_pmic.c | 52

[U-Boot] [PATCH v3 1/8] MX5: Add initial support for MX53 processor

2010-12-29 Thread Jason Liu
Babic, remove the is_soc_type and use #ifdef, -address the comments of stefano, remove CPU_TYPE def, remove something like /*0x760*/ comments in mx5x_pins.h. -fix the build break for vision2 board Signed-off-by: Jason Liu r64...@freescale.com --- arch/arm/cpu/armv7/mx5/iomux.c | 30

[U-Boot] [PATCH v3 5/8] mxc_i2c: add support for MX53 processor

2010-12-29 Thread Jason Liu
This patch add I2C support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: -address the comments of Heiko, add #if defined(CONFIG_MX31) to avoid break MX31 build. Move CONFIG_HARD_I2C to the top of the file and fix the error message from

[U-Boot] [PATCH v3 2/3] imximage: Add MX53 boot image support

2010-12-29 Thread Jason Liu
This patch add the MX53 boot image support. This patch has been tested on Freescale MX53EVK board and MX51EVK board. Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: - Address the following comments from Stefano, - Get rid of #ifdef in the imximage.h and .c file and use

[U-Boot] [PATCH v3 2/8] fec_mxc: add support for MX53 processor

2010-12-29 Thread Jason Liu
This patch add FEC support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com --- drivers/net/fec_mxc.c |2 +- drivers/net/fec_mxc.h |4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 0d0f392

[U-Boot] [PATCH v3 1/3] fsl_pmic: add I2C interface support

2010-12-29 Thread Jason Liu
This patch add I2C interface for fsl_pmic driver support Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: - Address the comments from Stefano, - factor out the param_check in pmic_reg for both spi/i2c --- drivers/misc/fsl_pmic.c | 52

[U-Boot] [PATCH v3 3/3] MX5:MX53: add initial support for MX53EVK board

2010-12-29 Thread Jason Liu
Add initial support for MX53EVK board support. FEC, SD/MMC, UART, I2C, have been support. Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: -Address the comments from Stefano, Albert and Wolfgang, -remove the ivt.S file and use imximage.cfg instead, -remove

Re: [U-Boot] [PATCH v3 1/3] fsl_pmic: add I2C interface support

2010-12-29 Thread Jason Liu
2010/12/29 Jason Liu r64...@freescale.com: This patch add I2C interface for fsl_pmic driver support Signed-off-by: Jason Liu r64...@freescale.com Please ignore this patch. Send it wrongly. Sorry for the noise. ___ U-Boot mailing list U-Boot

Re: [U-Boot] [PATCH v3 3/3] MX5:MX53: add initial support for MX53EVK board

2010-12-29 Thread Jason Liu
2010/12/29 Jason Liu r64...@freescale.com: Add initial support for MX53EVK board support. FEC, SD/MMC, UART, I2C, have been support. Signed-off-by: Jason Liu r64...@freescale.com Please ignore this patch. Send it wrongly. Sorry for the noise

Re: [U-Boot] [PATCH v3 2/3] imximage: Add MX53 boot image support

2010-12-29 Thread Jason Liu
2010/12/29 Jason Liu r64...@freescale.com: This patch add the MX53 boot image support. This patch has been tested on Freescale MX53EVK board and MX51EVK board. Signed-off-by: Jason Liu r64...@freescale.com Please ignore the patch. Send it wrongly. Sorry for the noise

[U-Boot] [PATCH v3 7/8] imximage: Add MX53 boot image support

2010-12-29 Thread Jason Liu
This patch add the MX53 boot image support. This patch has been tested on Freescale MX53EVK board and MX51EVK board. Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: - Address the following comments from Stefano, - Get rid of #ifdef in the imximage.h and .c file and use

[U-Boot] [PATCH v3 8/8] MX5:MX53: add initial support for MX53EVK board

2010-12-29 Thread Jason Liu
Add initial support for MX53EVK board support. FEC, SD/MMC, UART, I2C, have been support. Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: -Address the comments from Stefano, Albert and Wolfgang, -remove the ivt.S file and use imximage.cfg instead, -remove

Re: [U-Boot] [PATCH v3 3/3] MX5:MX53: add initial support for MX53EVK board

2010-12-30 Thread Jason Liu
Hi, Stefano, 2010/12/30 Stefano Babic sba...@denx.de: On 12/29/2010 01:38 PM, Jason Liu wrote: Add initial support for MX53EVK board support. FEC, SD/MMC, UART, I2C, have been support. Signed-off-by: Jason Liu r64...@freescale.com Hi Jason, Changes for v3: - put uart and fec iomux

Re: [U-Boot] [PATCH v3 1/8] MX5: Add initial support for MX53 processor

2010-12-30 Thread Jason Liu
Hi, Stefano, 2010/12/30 Stefano Babic sba...@denx.de: On 12/29/2010 01:38 PM, Jason Liu wrote: Add initial support for Freescale MX53 processor, - Add the iomux support and the pin definition, - Add the regs definition, clean up some unused def from mx51, - Add the low level init support

Re: [U-Boot] [PATCH v3 7/8] imximage: Add MX53 boot image support

2010-12-30 Thread Jason Liu
Hi, Stefano, 2010/12/30 Stefano Babic sba...@denx.de: On 12/29/2010 01:49 PM, Jason Liu wrote: This patch add the MX53 boot image support. This patch has been tested on Freescale MX53EVK board and MX51EVK board. Signed-off-by: Jason Liu r64...@freescale.com Hi Jason, diff --git a/board

Re: [U-Boot] [PATCH v3 6/8] fsl_pmic: add I2C interface support

2010-12-30 Thread Jason Liu
Hi, Stefano, 2010/12/31 Stefano Babic sba...@denx.de: On 12/29/2010 01:38 PM, Jason Liu wrote: This patch add I2C interface for fsl_pmic driver support Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: - Address the comments from Stefano,   - factor out the param_check

Re: [U-Boot] [PATCH v3 7/8] imximage: Add MX53 boot image support

2010-12-30 Thread Jason Liu
Hi, Stefano, 2010/12/31 Jason Liu liu.h.ja...@gmail.com: Hi, Stefano, 2010/12/30 Stefano Babic sba...@denx.de: On 12/29/2010 01:49 PM, Jason Liu wrote: This patch add the MX53 boot image support. @@ -82,44 +213,91 @@ static int imximage_check_image_types(uint8_t type)  static int

Re: [U-Boot] [PATCH v3 7/8] imximage: Add MX53 boot image support

2010-12-31 Thread Jason Liu
Hi, Wolfgang, 2010/12/31 Wolfgang Denk w...@denx.de: Dear Jason Liu, In message aanlktinnfxd26yrciwfnbt5lx9ay5kxihbolsc8jg...@mail.gmail.com you wrote: But, I did think again about your comments. If we store the version into the header which will make the version check more easier

Re: [U-Boot] [PATCH v3 7/8] imximage: Add MX53 boot image support

2010-12-31 Thread Jason Liu
Hi, Wolfgang, 2010/12/31 Wolfgang Denk w...@denx.de: Dear Jason Liu, In message aanlktik1uxzk+7ll6chtq465z4x+pm-kfqeali=d7...@mail.gmail.com you wrote: This looks as if you added something to the standard 64 byte image header. You must not modify this. It is fixed for all architectures

[U-Boot] [PATCH v4 3/8] serial_mxc: add support for MX53 processor

2011-01-04 Thread Jason Liu
This patch add UART support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com --- drivers/serial/serial_mxc.c |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/drivers/serial/serial_mxc.c b/drivers/serial/serial_mxc.c index f96b21f..805f4c5

[U-Boot] [PATCH v4 2/8] fec_mxc: add support for MX53 processor

2011-01-04 Thread Jason Liu
This patch add FEC support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com --- drivers/net/fec_mxc.c |2 +- drivers/net/fec_mxc.h |4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 0d0f392

[U-Boot] [PATCH v4 6/8] fsl_pmic: add I2C interface support

2011-01-04 Thread Jason Liu
This patch add I2C interface for fsl_pmic driver support Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: - Address the comments from Stefano, - factor out the param_check in pmic_reg for both spi/i2c - Address the comments from Stefano, - Remvove call i2c_init again - Fix

[U-Boot] [PATCH v4 5/8] mxc_i2c: add support for MX53 processor

2011-01-04 Thread Jason Liu
This patch add I2C support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com --- Changes for v2: -address the comments of Heiko, add #if defined(CONFIG_MX31) to avoid break MX31 build. Move CONFIG_HARD_I2C to the top of the file and fix the error message from

  1   2   3   >