Re: [U-Boot] [PATCH 3/4] OMAP3: twister: add video support

2012-06-21 Thread Stefano Babic
On 21/06/2012 03:15, Tom Rini wrote: On Thu, Jun 14, 2012 at 10:29:47AM +0200, Stefano Babic wrote: Hi Tom, Signed-off-by: Stefano Babic sba...@denx.de [snip] +static GraphicDevice panel; +static const struct panel_config lcd_cfg = { +.timing_h = 0x01101d1b, /* Horizontal

Re: [U-Boot] [PATCH 01/24] mxc_i2c: fix i2c_imx_stop

2012-06-24 Thread Stefano Babic
) /* Stop I2C transaction */ temp = readb(i2c_regs-i2cr); - temp |= ~(I2CR_MSTA | I2CR_MTX); + temp = ~(I2CR_MSTA | I2CR_MTX); writeb(temp, i2c_regs-i2cr); i2c_imx_bus_busy(0); Good catch ! Acked-by: Stefano Babic sba...@denx.de Best regards, Stefano

Re: [U-Boot] [PATCH 06/24] mxc_i2c.c: code i2c_probe as a 0 length i2c_write

2012-06-24 Thread Stefano Babic
); +} Acked-by: Stefano Babic sba...@denx.de Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49

Re: [U-Boot] [PATCH 05/24] mxc_i2c: create i2c_init_transfer

2012-06-24 Thread Stefano Babic
On 22/06/2012 06:12, Troy Kisky wrote: Initial code of i2c_read and i2c_write is identical, move to subroutine. Signed-off-by: Troy Kisky troy.ki...@boundarydevices.com --- Acked-by: Stefano Babic sba...@denx.de Best regards, Stefano Babic

Re: [U-Boot] [PATCH] mx28evk: Fix boot by adjusting HW_DRAM_CTL29 register

2012-07-02 Thread Stefano Babic
...@freescale.com --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49

Re: [U-Boot] [PATCH] i.MX6 USDHC: Use the ESDHC clock

2012-07-02 Thread Stefano Babic
CC: Stefano Babic sba...@denx.de CC: Jason Liu r64...@freescale.com --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich

[U-Boot] [GIT PULL] Pull request: u-boot-imx

2012-07-02 Thread Stefano Babic
Hi Albert, please pull from u-boot-imx. Thanks ! The following changes since commit 3e0cac6b5158b22248f57cdf7769bf8d610fec5e: EXYNOS: SMDK5250: Enable the pinmux setup (2012-06-25 22:51:36 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-imx.git master for you

Re: [U-Boot] [PATCH v3] doc: README.mx28_common: Add missing entry into Contents

2012-07-07 Thread Stefano Babic
of the original file. Add the missing entry for completeness. Signed-off-by: Fabio Estevam fabio.este...@freescale.com Please add my evil Acked-by: Marek Vasut ma...@denx.de Could this one be applied? Sure: applied to u-boot-imx, thanks ! Best regards, Stefano Babic

Re: [U-Boot] [PATCH v2] mx28: Fix elftosb source link in README.mx28_common

2012-07-07 Thread Stefano Babic
Estevam feste...@gmail.com Acked-by: Otavio Salvador ota...@ossystems.com.br --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235

Re: [U-Boot] [PATCH] mx6: Make pad name macro consistent with the datasheet

2012-07-07 Thread Stefano Babic
On 15/06/2012 15:48, Ashok wrote: Use the same name as defined in the datasheet. DSP_CLK - DISP_CLK Signed-off-by: Ashok Kumar Reddy Kourla ashokkourla2...@gmail.com --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic

Re: [U-Boot] [PATCH 5/5] [PATCH 5/5] Add config file for the apf27

2012-07-07 Thread Stefano Babic
values to the fpga file - and as I said, a CONFIG_SYS_ define has meaning for the whole code across architectures, and this is not the case. The same comment for the GPIOs and so on. Best regards, Stefano Babic -- = DENX

Re: [U-Boot] [PATCH 3/5] [PATCH 3/5] Add nand_spl support for the apf27

2012-07-07 Thread Stefano Babic
mode 100644 nand_spl/board/armadeus/apf27/start.S create mode 100644 nand_spl/board/armadeus/apf27/u-boot.lds nand_spl is obsolete - new boards should add spl support with the newer SPL framework (using spl/ instead of nand_spl/) Best regards, Stefano Babic

Re: [U-Boot] [PATCH 4/5] [PATCH 4/5] Add FPGA support for the apf27 board

2012-07-07 Thread Stefano Babic
, + (void *) fpga_fns, + 0} +}; + +/* + * nitialize GPIO port B before download initialize Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich

Re: [U-Boot] [PATCH 2/5] [PATCH 2/5] Add support for the armadeus APF27 board

2012-07-07 Thread Stefano Babic
are grouped for SOC, and then sorted alphabetically. The entry for your board should go before the imx27lite / magnesium boards. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB

Re: [U-Boot] [PATCH 1/3] MX28: SPI: Refactor spi_xfer a bit

2012-07-09 Thread Stefano Babic
On 09/07/2012 03:33, Marek Vasut wrote: This makes it easier to adapt for addition of DMA support. Signed-off-by: Marek Vasut ma...@denx.de Cc: Fabio Estevam feste...@freescale.com Cc: Otavio Salvador ota...@ossystems.com.br Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de

Re: [U-Boot] i.MX dcache issues

2012-07-15 Thread Stefano Babic
isn't defined? For all these reasons - because the drivers do not support yet cache, cache on MX35 remains disabled. When support for cache (= buffers are invalidate..) flows into mainline, it will be possible to activate cache by default. Best regards, Stefano Babic

Re: [U-Boot] i.MX dcache issues

2012-07-15 Thread Stefano Babic
buffers in unused RAM areas. That will help: http://git.denx.de/?p=u-boot/u-boot-mmc.git;a=commitdiff;h=e576bd90f940806b989ffd666552081f17f032c8 This patch is merged into u-boot-mmc. It will flow to mainline by next Andy's (MMC custodian) pull request. Best regards, Stefano Babic

Re: [U-Boot] USB on mx53

2012-07-16 Thread Stefano Babic
, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sba...@denx.de

Re: [U-Boot] [PATCH 3/3] mxc_i2c: remove setting speed at each start

2012-07-16 Thread Stefano Babic
On 13/07/2012 12:38, Marek Vasut wrote: Dear Dirk Behme, [...] Ok, everything was already clear, and I can also add my: Acked-by: Stefano Babic sba...@denx.de Same for this one: Is this applied anywhere? It doesn't seem to be part of v2012.07-rc1? Best regards Stefano, once you're

Re: [U-Boot] [PATCH v2 1/2] imx: Use a clear identification of an unidentified CPU type

2012-07-16 Thread Stefano Babic
On 30/06/2012 17:07, Otavio Salvador wrote: In case an unidentified CPU type is detected it now returns i.MX??, in a const char. Signed-off-by: Otavio Salvador ota...@ossystems.com.br Cc: Marek Vasut ma...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Fabio Estevam fabio.este

Re: [U-Boot] [PATCH v3 2/2] mxs: generalize code for print_cpuinfo()

2012-07-16 Thread Stefano Babic
On 30/06/2012 17:07, Otavio Salvador wrote: The information now is gathered from HW_DIGCTL_CHIPID register and includes the revision of the chip on the output. Signed-off-by: Otavio Salvador ota...@ossystems.com.br Cc: Marek Vasut ma...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Fabio

Re: [U-Boot] [PATCH 1/3 V2] MX28: SPI: Refactor spi_xfer a bit

2012-07-16 Thread Stefano Babic
On 09/07/2012 12:48, Marek Vasut wrote: This makes it easier to adapt for addition of DMA support. Signed-off-by: Marek Vasut ma...@denx.de Cc: Fabio Estevam feste...@gmail.com Cc: Otavio Salvador ota...@ossystems.com.br Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de

Re: [U-Boot] [PATCH 2/3 RESEND] MX28: SPI: Pull out the PIO transfer function

2012-07-16 Thread Stefano Babic
On 09/07/2012 12:48, Marek Vasut wrote: Pull out all the PIO transfer logic into separate function, so DMA can be added. Signed-off-by: Marek Vasut ma...@denx.de Cc: Fabio Estevam feste...@gmail.com Cc: Otavio Salvador ota...@ossystems.com.br Cc: Stefano Babic sba...@denx.de Cc: Wolfgang

Re: [U-Boot] [PATCH v3] i.MX28: extend print_cpuinfo() to use chip information

2012-07-17 Thread Stefano Babic
On 16/07/2012 21:59, Otavio Salvador wrote: The information now is gathered from HW_DIGCTL_CHIPID register and includes the chip modem and revision on the output. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Applied to u-boot-imx, next branch, thanks. Best regards, Stefano

Re: [U-Boot] [RFC PATCH 2/2] i.MX28: use a clear name for DDR2 initialization

2012-07-17 Thread Stefano Babic
, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sba...@denx.de

Re: [U-Boot] [RFC PATCH 2/2] i.MX28: use a clear name for DDR2 initialization

2012-07-17 Thread Stefano Babic
On 17/07/2012 14:16, Otavio Salvador wrote: On Tue, Jul 17, 2012 at 6:15 AM, Stefano Babic sba...@denx.de wrote: Simply a general remark - I think we can discuss further when first patches for MX23 will be submitted. However, I think is a bad idea to specialize functions to a specific SOC

Re: [U-Boot] [PATCH] mx6: Make pad name macro consistent with the datasheet

2012-07-17 Thread Stefano Babic
On 11/07/2012 08:39, Dirk Behme wrote: On 07.07.2012 18:54, Stefano Babic wrote: On 15/06/2012 15:48, Ashok wrote: Hi Dirk, Use the same name as defined in the datasheet. DSP_CLK - DISP_CLK Signed-off-by: Ashok Kumar Reddy Kourla ashokkourla2...@gmail.com --- Applied to u-boot-imx

[U-Boot] Please pull u-boot-imx for v2012.07

2012-07-19 Thread Stefano Babic
Hi Albert, please pull from u-boot-imx, thanks. The following changes since commit 444def73695103c4aca06a70e9f4de9a5e6df28a: ARM: OMAP4: PANDA: Add rest of the USB module pads to essentials (2012-07-19 00:03:34 +0200) are available in the git repository at:

Re: [U-Boot] [PATCH] ARM1136: Fix cache range checks

2012-07-19 Thread Stefano Babic
) { - if (bad_cache_range(start, stop)) + if (!check_cache_range(start, stop)) return; while (start stop) { Acked-by: Stefano Babic sba...@denx.de Albert, this is surely a fix - can you apply it for the release ? Thanks, Stefano

Re: [U-Boot] i.MX dcache issues

2012-07-19 Thread Stefano Babic
have already a solution to fix it. Since then, all my MMC/EHCI/FEC i.MX DMA issues are resolved, except on i.MX35 because of a huge bug in the handling of cache range checks on ARM1136. I have just posted a patch that fixes this issue. Thanks for fixing ! Best regards, Stefano Babic

Re: [U-Boot] [PATCH V2] i.MX: fsl_esdhc: allow use with cache enabled.

2012-07-20 Thread Stefano Babic
On 20/07/2012 07:35, Dirk Behme wrote: Then http://lists.denx.de/pipermail/u-boot/2012-June/126097.html mentions WD applied the cache stub patch already. So do we have this cache stub patch somewhere which fixes the issue mentioned above? I'm not sure I've seen it ... It is done, but

[U-Boot] [PATCH] MPC85XX: compile stub cache function

2012-07-20 Thread Stefano Babic
An empty flush_dcache_range() was added into MPC85xx to work with drivers shared with other architecture. However, it is compiled only if USB is set, but it is required for other drivers (FSL_ESDHC), too. Signed-off-by: Stefano Babic sba...@denx.de CC: Andy Fleming aflem...@gmail.com CC: Dirk

Re: [U-Boot] [PATCH] i.MX28: bug fixes in PMU configuration code

2012-07-20 Thread Stefano Babic
. Signed-off-by: Stathis Voukelatos stathis.voukela...@linn.co.uk Cc: Stefano Babic sba...@denx.de Cc: Marek Vasut marek.va...@gmail.com Stefano, I think this should be applied. There are checkpatch errors that should be fixed before applying. Stathis, can you check them and resubmit

Re: [U-Boot] [PATCH] net: Improve the speed of netconsole

2012-07-25 Thread Stefano Babic
On 24/07/2012 22:11, Joe Hershberger wrote: Previously u-boot would initialize the network interface for every network operation and then shut it down again. This makes sense for most operations where the network in not known to be needed soon after the operation is complete. In the case of

Re: [U-Boot] dwc_ahsata vs ahci

2012-07-29 Thread Stefano Babic
was ported from Freescale's u-boot, and linked only for MX5 / MX6 SOCs. I think it is a very good idea to merge the two drivers (dwc_ahsata seems an updated version of the original driver), thanks to note this ! Best regards, Stefano Babic

Re: [U-Boot] [RFC PATCH 2/5] mxs: prefix register acessor macros with 'mxs' prefix

2012-07-29 Thread Stefano Babic
, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sba...@denx.de

Re: [U-Boot] [PATCH v4] MX28: extend print_cpuinfo() to use chip information

2012-07-29 Thread Stefano Babic
On 28/07/2012 23:43, Otavio Salvador wrote: The information now is gathered from HW_DIGCTL_CHIPID register and includes the chip modem and revision on the output. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Applied to u-boot-imx, next branch, thanks. Best regards, Stefano

Re: [U-Boot] [PATCH v2] i.MX28: bug fixes in PMU configuration code

2012-07-29 Thread Stefano Babic
-by: Stathis Voukelatos stathis.voukela...@linn.co.uk Cc: Stefano Babic sba...@denx.de Cc: Marek Vasut marek.va...@gmail.com --- Hi Stathis, your patch looks ok but it is mangled by your e-mailer. See how patchwork shows your patch at: http://patchwork.ozlabs.org/patch/173592/ Part

Re: [U-Boot] [PATCH v4] MX28: extend print_cpuinfo() to use chip information

2012-07-29 Thread Stefano Babic
tree to the server to make it public. Sorry for delay. I took in any case your V4, even if V3 was already ok :-) Applied to u-boot-imx, next branch, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD

Re: [U-Boot] [PATCH v2] Add support for Bluegiga APX4 Development Kit

2012-07-31 Thread Stefano Babic
...@bluegiga.com Signed-off-by: Lauri Hintsala lauri.hints...@bluegiga.com Cc: Stefano Babic sba...@denx.de --- Hi Veli-Pekka, hi Laurie, sorry for late review. And thanks for the remind ! Changes after v1 from last December: - Updating MAINTAINERS file which I missed last time - Started to use

Re: [U-Boot] [PATCH v2] Add support for Bluegiga APX4 Development Kit

2012-07-31 Thread Stefano Babic
...@bluegiga.com Signed-off-by: Lauri Hintsala lauri.hints...@bluegiga.com Cc: Stefano Babic sba...@denx.de --- Applied to u-boot-imx, -next branch, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD

Re: [U-Boot] [PATCH] mx53loco: Define CONFIG_BOARD_LATE_INIT

2012-07-31 Thread stefano babic
-by: Stefano Babic sba...@denx.de Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-0 Fax

Re: [U-Boot] [PATCH] mx53loco: Define CONFIG_BOARD_LATE_INIT

2012-07-31 Thread stefano babic
Am 31/07/2012 21:56, schrieb Wolfgang Denk: Dear Fabio Estevam, Hi Fabio, In message CAOMZO5CBpA4kVC+J6Yp8RwmL-EbLwK1PcYWC_RLX=swwrnq...@mail.gmail.com you wrote: ... -#ifdef CONFIG_BOARD_LATE_INIT int board_late_init(void) { -setenv(stdout, serial); +setenv(preboot,

Re: [U-Boot] [PATCH] mx28evk: Turn on caches

2012-07-31 Thread stefano babic
CONFIG_BOARD_EARLY_INIT_F #define CONFIG_ARCH_MISC_INIT Acked-by : Stefano Babic sba...@denx.de -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

Re: [U-Boot] [PATCH] mx53loco: Define CONFIG_BOARD_LATE_INIT

2012-07-31 Thread stefano babic
CONFIG_SYS_MALLOC_LEN (10 * 1024 * 1024) #define CONFIG_BOARD_EARLY_INIT_F +#define CONFIG_BOARD_LATE_INIT I see, commit eae08eb2b53ffb87f3342e45ab422d8625659fcd dropped it. Acked-by: Stefano Babic sba...@denx.de Please see my previous message - I dislike the first part

Re: [U-Boot] [PATCH] mx6q: mx6qsabrelite: add GPIO_0__CCM_CLKO and GPIO_3__CCM_CLKO2 pin mux

2012-08-02 Thread Stefano Babic
from Freescale's ER5 U-Boot for the SabreLite. Signed-off-by: Dirk Behme dirk.be...@de.bosch.com CC: Troy Kisky troy.ki...@boundarydevices.com CC: Stefano Babic sba...@denx.de --- board/freescale/mx6qsabrelite/imximage.cfg |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff

Re: [U-Boot] i.MX35PDK: Starting U-Boot from serial NOR-Flash

2012-08-02 Thread Stefano Babic
regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sba

Re: [U-Boot] i.MX35PDK: Starting U-Boot from serial NOR-Flash

2012-08-03 Thread Stefano Babic
, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sba...@denx.de

Re: [U-Boot] [PATCH v3] MX28: use a clear name for DDR2 initialization

2012-08-05 Thread Stefano Babic
bit from DRAM_CTL16 */ clrbits_le32(MXS_DRAM_BASE + 0x40, 1); - init_m28_200mhz_ddr2(); + init_mx28_200mhz_ddr2(); /* Clear SREFRESH bit from DRAM_CTL17 */ clrbits_le32(MXS_DRAM_BASE + 0x44, 1); Acked-by : Stefano Babic sba...@denx.de Best regards, Stefano

Re: [U-Boot] [RFC PATCH 3/5] mxs: prefix register structs with 'mxs' prefix

2012-08-05 Thread Stefano Babic
? Stefano ... ? Patches merged into the -next branch before the release are now in imx/master. Rebasing on imx/master makes things for me easier... Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang

Re: [U-Boot] [PATCH v3] MX28: use a clear name for DDR2 initialization

2012-08-05 Thread Stefano Babic
--- Applied to u-boot-imx, thanks Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989

Re: [U-Boot] [PATCH] rtc: imxdi: Initial support

2012-08-05 Thread Stefano Babic
On 20/07/2012 16:24, Benoît Thébaudeau wrote: Add support for Freescale's i.MX DryIce RTC, present on i.MX25. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com Cc: Wolfgang Denk w...@denx.de Cc: Stefano Babic sba...@denx.de --- Hi Benoit, just a few comments

Re: [U-Boot] [PATCH] MX28: Add SchulerControl SC_SPS_1 platform

2012-08-05 Thread Stefano Babic
, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sba...@denx.de

Re: [U-Boot] [PATCH] mx28evk: Turn on caches

2012-08-05 Thread Stefano Babic
On 31/07/2012 20:10, Fabio Estevam wrote: Turn on data and instruction caches. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- = DENX Software

Re: [U-Boot] [PATCH] mx53loco: Define CONFIG_BOARD_LATE_INIT

2012-08-05 Thread Stefano Babic
On 05/08/2012 09:34, Stefano Babic wrote: On 31/07/2012 21:21, Fabio Estevam wrote: Define CONFIG_BOARD_LATE_INIT so that the serial console messages can be redirected to the serial port. This is needed because in mx53loco.c we have: #ifdef CONFIG_BOARD_LATE_INIT int board_late_init(void

[U-Boot] [PATCH] MX5: mx53loco: do not overwrite the console

2012-08-05 Thread Stefano Babic
On this board, the console is always set to the serial line. Do not allow to overwrite it when video is enabled. Signed-off-by: Stefano Babic sba...@denx.de CC: Fabio Estevam fabio.este...@freescale.com --- board/freescale/mx53loco/mx53loco.c | 12 ++-- include/configs/mx53loco.h

Re: [U-Boot] [PATCH] MX28: Move the u-boot.bd info CPUDIR/SOCDIR

2012-08-05 Thread Stefano Babic
On 05/08/2012 12:36, Marek Vasut wrote: This gets us rid of duplication of the same file. Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic sba...@denx.de --- Makefile |2 +- arch/arm/cpu/arm926ejs/mx28/u-boot.bd | 14 ++ board

Re: [U-Boot] [PATCH] MX28: Add SchulerControl SC_SPS_1 platform

2012-08-05 Thread Stefano Babic
On 05/08/2012 12:14, Marek Vasut wrote: Dear Stefano Babic, Hi Marek, This is the fourth copy of the same file in u-boot. Do we have really no chance to share it among boards ? Given that we're coliding with Otavio with every single patch, do you prefer to apply this one and do

Re: [U-Boot] [PATCH 1/2] m28evk: Turn on caches

2012-08-06 Thread Stefano Babic
had this in my tree for a while, but I still want to retest SPI and MMC /w DMA before I go for this. Right - but maybe it is not bad in the meantime to get some feedback from other users to check for problems. Maybe Veli-Pekkola can test this on his board, too. Best regards, Stefano Babic

Re: [U-Boot] [PATCH 1/2] mx51evk: do not overwrite the console

2012-08-06 Thread Stefano Babic
On 05/08/2012 19:31, Fabio Estevam wrote: From: Fabio Estevam fabio.este...@freescale.com On this board, the console is always set to the serial line. Do not allow to overwrite it when video is enabled. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Hi Fabio, it seems you

Re: [U-Boot] [PATCH v1 1/6] mxs: reorganize source directory for easy sharing of code in i.MXS SoCs

2012-08-06 Thread Stefano Babic
/master - rework due apx4devkit board addition Hi Otavio, as far as I can see there is nothing that can break the current mx28 boards in mainline. I will wait for a while, but I think the series can be merged into mainline. Acked-by: Stefano Babic sba...@denx.de Best regards, Stefano Babic

Re: [U-Boot] [PATCH 2/2] imx27lite: update with gpio api change

2012-08-06 Thread Stefano Babic
(), gpio_get_value(), gpio_direction_input() and gpio_direction_output() should be used. You can take a look at other iMX (MX3, MX28, MX5, MX6), that are already using the generic API. Best regards, Stefano Babic -- = DENX Software Engineering

Re: [U-Boot] [PATCH 2/2] imx27lite: update with gpio api change

2012-08-06 Thread Stefano Babic
On 06/08/2012 17:27, Philippe Reynes wrote: Oh, I understand. As I don't have this board, I've done the smallest change to fix the compilation. I add the driver mxc_gpio on imx27lite, remove this direct acces to gpio register, and send the new version of the patch. I think I can test it,

Re: [U-Boot] [PATCH 1/4] MX28: Fix up the MMC driver DMA mode

2012-08-07 Thread Stefano Babic
On 06/08/2012 23:23, Marek Vasut wrote: Dear Marek Vasut, The DMA mode didn't properly configure the DMA_ENABLE bit in CTRL1. Also, it was using SSP0 DMA channel for all SSP devices. Signed-off-by: Marek Vasut ma...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Stefano Babic sba...@denx.de

Re: [U-Boot] patman patches

2012-08-07 Thread Stefano Babic
On 07/08/2012 10:54, Ilya Yanok wrote: Hi guys, Hi Ilya, Is it a good place to post patman patches? Or should I go to some chromium list? IMHO here is the best place, patman is integrated in u-boot and your patches can be discussed on this ML - my 2 cents. Regards, Stefano --

Re: [U-Boot] [PATCH v1 1/6] mxs: reorganize source directory for easy sharing of code in i.MXS SoCs

2012-08-07 Thread Stefano Babic
, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80

Re: [U-Boot] [PATCH 1/4] MX28: Fix up the MMC driver DMA mode

2012-08-07 Thread Stefano Babic
On 07/07/2012 09:25, Marek Vasut wrote: The DMA mode didn't properly configure the DMA_ENABLE bit in CTRL1. Also, it was using SSP0 DMA channel for all SSP devices. Signed-off-by: Marek Vasut ma...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Fabio Estevam

Re: [U-Boot] [PATCH 2/2] vision2: do not overwrite the console

2012-08-07 Thread Stefano Babic
, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80

Re: [U-Boot] [PATCH 1/2] mx51evk: do not overwrite the console

2012-08-07 Thread Stefano Babic
, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80

Re: [U-Boot] [PATCH V2] MX28: Add SchulerControl SC_SPS_1 platform

2012-08-07 Thread Stefano Babic
On 05/08/2012 12:37, Marek Vasut wrote: This i.MX28 platform supports the following: * 2x FEC ethernet * USB on USBH0 * I2C EEPROM * SPI NVRAM * LEDs Signed-off-by: Marek Vasut ma...@denx.de --- board/schulercontrol/sc_sps_1/Makefile | 47 +++

Re: [U-Boot] [RESEND PATCH v2] i.MX28: bug fixes in PMU configuration code

2012-08-07 Thread Stefano Babic
On 07/08/2012 16:56, Stathis Voukelatos wrote: Signed-off-by: Stathis Voukelatos stathis.voukela...@linn.co.uk Cc: Stefano Babic sba...@denx.de Cc: Marek Vasut marek.va...@gmail.com --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic

[U-Boot] [GIT PULL] Pull request: u-boot-imx

2012-08-07 Thread Stefano Babic
'mxs' prefix for methods mxs: Clarify why we poweroff in case of brownout in 5v conflict mxs: rename mx28.c to mxs.c as it is common to i.MX233 and i.MX28 SoCs Stathis Voukelatos (1): i.MX28: bug fixes in PMU configuration code Stefano Babic (1): MX5: mx53loco: do

Re: [U-Boot] [PATCH] KARO TX25: Fix NAND Flash R/W cycle times

2012-08-08 Thread Stefano Babic
...@gmail.com Cc: Scott Wood scottw...@freescale.com Cc: Stefano Babic sba...@denx.de Cc: Daniel Gachet daniel.gac...@hefr.ch --- This patch is a replacement solution that I suggest instead of http://patchwork.ozlabs.org/patch/174735/ since there is no need

Re: [U-Boot] [PATCH v2] rtc: imxdi: Initial support

2012-08-08 Thread Stefano Babic
On 08/08/2012 13:57, Benoît Thébaudeau wrote: Add support for Freescale's i.MX DryIce RTC, present on i.MX25. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com Cc: Wolfgang Denk w...@denx.de Cc: Stefano Babic sba...@denx.de --- Hi Benoît, checkpatch reports an error when I

Re: [U-Boot] [PATCH v2] rtc: imxdi: Initial support

2012-08-08 Thread Stefano Babic
On 08/08/2012 16:57, Benoît Thébaudeau wrote: Hi Stefano, On 08/08/2012 16:29, Stefano Babic wrote: On 08/08/2012 13:57, Benoît Thébaudeau wrote: Add support for Freescale's i.MX DryIce RTC, present on i.MX25. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com Cc: Wolfgang

Re: [U-Boot] [PATCH] mx6qsabrelite: enable DCache and MMC bounce buffer

2012-08-08 Thread Stefano Babic
CONFIG_SYS_DCACHE_OFF #define CONFIG_CMD_CACHE #endif Acked-by: Stefano Babic sba...@denx.de Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr

Re: [U-Boot] [PATCH V3 1/3] imx-common/cmd_resetmode.c: add imx resetmode command

2012-08-09 Thread Stefano Babic
do_resetmode_cmd(mmc1); +} Why do you not pass the mode to do_resetmode_cmd() and let this function parse the argument, without these help functions ? Then we do not need to add new functions if we have, for example, mmc2 or mmc3. Best regards, Stefano Babic

Re: [U-Boot] [PATCH v3] rtc: imxdi: Initial support

2012-08-09 Thread Stefano Babic
On 08/08/2012 16:52, Benoît Thébaudeau wrote: Add support for Freescale's i.MX DryIce RTC, present on i.MX25. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com Cc: Wolfgang Denk w...@denx.de Cc: Stefano Babic sba...@denx.de --- Applied to u-boot-imx, thanks. Best regards

Re: [U-Boot] [PATCH] sc_sps_1: Adjust board config to use 'mxs' SoC code

2012-08-09 Thread Stefano Babic
; + struct mxs_clkctrl_regs *clkctrl_regs = + (struct mxs_clkctrl_regs *)MXS_CLKCTRL_BASE; int ret; Of course, you are right. I think I changed myself V2 of Marek's patch, and I did not with V3. Acked-by: Stefano Babic sba...@denx.de Best regards, Stefano Babic

Re: [U-Boot] [PATCH V3 1/3] imx-common/cmd_resetmode.c: add imx resetmode command

2012-08-09 Thread stefano babic
features. Can some Freescalers here point out to some docs ? This feature is surely very useful - any hints to have more information ? Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel

Re: [U-Boot] [PATCH V3 1/3] imx-common/cmd_resetmode.c: add imx resetmode command

2012-08-09 Thread stefano babic
a command for boot mode, it is normal that he automatically knows what is going on. Boot conflicts with other u-boot command, then bmode is my first choice. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD

Re: [U-Boot] [PATCH] sc_sps_1: Adjust board config to use 'mxs' SoC code

2012-08-10 Thread Stefano Babic
On 09/08/2012 16:12, Otavio Salvador wrote: Fix build failure due the move of mx28 code to 'mxs' SoC. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic

Re: [U-Boot] [GIT PULL] [Update] Pull request: u-boot-imx

2012-08-10 Thread Stefano Babic
to use 'mxs' SoC code Stathis Voukelatos (1): i.MX28: bug fixes in PMU configuration code Stefano Babic (1): MX5: mx53loco: do not overwrite the console Veli-Pekka Peltola (1): Add support for Bluegiga APX4 Development Kit MAINTAINERS

Re: [U-Boot] [PATCH 3/5] Add fuse API and commands

2012-12-03 Thread Stefano Babic
On 14/08/2012 14:52, Benoît Thébaudeau wrote: This can be useful for fuse-like hardware, OTP SoC options, etc. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com Cc: Wolfgang Denk w...@denx.de Cc: Stefano Babic sba...@denx.de --- Hi Benoît, I agree with you that same code can

Re: [U-Boot] [PATCH V4 01/11] imximage: mx53 needs transfer length a multiple of 512

2012-12-03 Thread Stefano Babic
of macros. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80

Re: [U-Boot] [PATCH V4 01/11] imximage: mx53 needs transfer length a multiple of 512

2012-12-03 Thread Stefano Babic
the same interface without special hacking for each SOC overcomes the increment in the footprint for the i.MX6 (in worst case 511 bytes - and not a lot compared to current size of U-Boot for MX5/MX6, usually several hundred of KB). Best regards, Stefano Babic

Re: [U-Boot] [PATCH 3/5] Add fuse API and commands

2012-12-03 Thread Stefano Babic
On 03/12/2012 12:25, Benoît Thébaudeau wrote: Hi Stefano, On Monday, December 3, 2012 10:03:22 AM, Stefano Babic wrote: I am thinking about if we need some kind of protection to avoid to destroy very easy the SOC. Running a fuse command can be much more dangerous as scrubbing NAND

Re: [U-Boot] [PATCH] mx28: Remove SET, CLR, TOG ops from PLLxCTRL1 registers

2012-12-03 Thread Stefano Babic
On 25/11/2012 01:03, Marek Vasut wrote: These registers don't have _SET, _CLR and _TOG at the respective offsets available, these registers has to be toggled via R-M-W if needed. Thus do not export these offsets anymore. Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic sba

Re: [U-Boot] [PATCH] mx23: Add POWER and CLKCTRL register definitions

2012-12-04 Thread Stefano Babic
On 25/11/2012 01:21, Marek Vasut wrote: Add register definitions for the i.MX23 power control block and clock control block. These are essential for the basic bootstrap of the i.MX23. Also, properly include them in imx-regs.h . Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic sba

Re: [U-Boot] [PATCH] mxs: Silence elftosb

2012-12-04 Thread Stefano Babic
On 30/11/2012 14:04, Marek Vasut wrote: The elftosb tool is now called with -d switch, which produces debug output to the stdout. The debug output is completely useless for regular operation, so silence it. Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Fabio

Re: [U-Boot] [PATCH V4 08/11] imximage: enable word writes for version2 header

2012-12-04 Thread Stefano Babic
, but this patch removes more lines than it adds. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone

Re: [U-Boot] [PATCH 1/2] mxs: Implement common function to setup VDDx

2012-12-04 Thread Stefano Babic
to the common function. Moreover, the function has almost identical loops for setting higher and lower VDDx voltage. Merge these two loops. Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Fabio Estevam fabio.este...@freescale.com --- Applied to u-boot-imx

Re: [U-Boot] [PATCH 2/2] mxs: Properly setup VDDD in power supply setup code

2012-12-04 Thread Stefano Babic
On 30/11/2012 16:22, Marek Vasut wrote: The memory setup code adjusted the VDDD voltage. Remove this adjustment and configure the VDDD voltage correctly in the power supply setup code. Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Fabio Estevam fabio.este

Re: [U-Boot] [PATCH] mxs: Staticize SPL functions

2012-12-04 Thread Stefano Babic
On 30/11/2012 18:09, Marek Vasut wrote: The MXS SPL didn't mark local functions static. Fix it. This also makes the SPL smaller by roughly 300 bytes. Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Fabio Estevam fabio.este...@freescale.com --- Hi Marek

Re: [U-Boot] [PATCH] FAT: make FAT compile without VFAT

2012-12-04 Thread Stefano Babic
*dentptr = NULL; +#ifdef CONFIG_SUPPORT_VFAT __u16 prevcksum = 0x; +#endif Ditto +#ifdef CONFIG_SUPPORT_VFAT csum = mkcksum(dentptr-name, dentptr-ext); +#endif I think this is the only place where #ifdef is necessary Best regards, Stefano Babic

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

2012-12-06 Thread Stefano Babic
; +#endif case SPL_EXPORT_ATAGS: printf(Argument image is now in RAM at: 0x%p\n, (void *)gd-bd-bi_boot_params); Acked-by: Stefano Babic sba...@denx.de Best regards, Stefano Babic

Re: [U-Boot] [PATCH] mxs: SPL: Generalize memory initialization

2012-12-07 Thread Stefano Babic
. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email

Re: [U-Boot] [PATCH v3 1/3] apf27: add missing constant to mx27

2012-12-07 Thread Stefano Babic
need an extra definitions for the NFC controller when we have already one general for all i.MX ? What you define here can be found in include/fsl_nfc.h, and the NFC controller for i.MX27 is supported as well. Best regards, Stefano Babic

Re: [U-Boot] [PATCH v2 2/3] apf27: add support for the armadeus APF27 board

2012-12-07 Thread Stefano Babic
CONFIG_SPL_FRAMEWORK does not work for you. You should have availbale a lot of function that you redefine in your patches. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich

[U-Boot] [PULL] : Please pull u-boot-imx

2012-12-07 Thread Stefano Babic
Hi Albert, please pull from u-boot-imx, thanks ! The following changes since commit 1d4fd0dc3b45de7b7a706285845ef5b527422014: mx28: Fix typo in POWER_DCLIMITS_NEGLIMIT_OFFSET (2012-11-24 16:21:37 +0100) are available in the git repository at: git://www.denx.de/git/u-boot-imx.git master

<    6   7   8   9   10   11   12   13   14   15   >