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

2012-12-10 Thread Rajeshwari Birje
Hi Simon, Yes it is a V2 patch. Sorry I missed the add the same will submitting the patch. Regards, Rajeshwari Shinde. On Sun, Dec 9, 2012 at 1:08 AM, Simon Glass wrote: > On Sat, Dec 8, 2012 at 11:38 AM, Simon Glass wrote: >> On Thu, Nov 29, 2012 at 10:29 PM, Rajeshwari Shinde >> wrote: >>>

Re: [U-Boot] universal_c210: fix compiler error and compiler warning

2012-12-10 Thread Wolfgang Denk
Dear Minkyu Kang, In message <50c58623.3090...@samsung.com> you wrote: ... > @@ -337,7 +341,7 @@ static void init_pmic_lcd(void) > unsigned char val; > int ret = 0; > > - struct pmic *p = get_pmic(); > + struct pmic *p = pmic_get("MAX8998_PMIC"); > > if (pmic_probe(p)

Re: [U-Boot] universal_c210: fix compiler error and compiler warning

2012-12-10 Thread Lukasz Majewski
Hi Wolfgang, > Dear Minkyu Kang, > > In message <50c58623.3090...@samsung.com> you wrote: > ... > > @@ -337,7 +341,7 @@ static void init_pmic_lcd(void) > > unsigned char val; > > int ret = 0; > > > > - struct pmic *p = get_pmic(); > > + struct pmic *p = pmic_get("MAX8998_PMIC"); > >

Re: [U-Boot] [PATCH v2 00/10] Add Marvell Dove and SolidRun CuBox

2012-12-10 Thread Prafulla Wadaskar
> -Original Message- > From: Sebastian Hesselbarth [mailto:sebastian.hesselba...@gmail.com] > Sent: 04 December 2012 14:02 > To: Sebastian Hesselbarth > Cc: u-boot@lists.denx.de; Rabeeh Khoury; Albert Aribaud; Prafulla > Wadaskar; Andy Fleming; Joe Hershberger; Daniel Stodden; Luka Perkov

Re: [U-Boot] universal_c210: fix compiler error and compiler warning

2012-12-10 Thread Minkyu Kang
Dear Wolfgang, On 10/12/12 18:32, Lukasz Majewski wrote: > Hi Wolfgang, > >> Dear Minkyu Kang, >> >> In message <50c58623.3090...@samsung.com> you wrote: >> ... >>> @@ -337,7 +341,7 @@ static void init_pmic_lcd(void) >>> unsigned char val; >>> int ret = 0; >>> >>> - struct pmic *p = g

Re: [U-Boot] universal_c210: fix compiler error and compiler warning

2012-12-10 Thread Piotr Wilczek
On 12/10/2012 07:50 AM, Minkyu Kang wrote: This patch fix following errors universal.c: In function 'init_pmic_lcd': universal.c:340: warning: implicit declaration of function 'get_pmic' universal.c:340: warning: initialization makes pointer from integer without a cast universal.c: In function

Re: [U-Boot] universal_c210: fix compiler error and compiler warning

2012-12-10 Thread Wolfgang Denk
Dear Lukasz Majewski, In message <20121210103224.372c572e@amdc308.digital.local> you wrote: > > > This is unrelated to your patch - but what if pmic_get() returns NULL? > > > > pmic_probe() will crashif you pass it a NULL pointer... > > The PMIC 2.0 uses malloc to allocate pmic structure. ...a

Re: [U-Boot] Unable to Receive 1Kb of data

2012-12-10 Thread Wolfgang Denk
Dear lokesh nijalinge, In message you wrote: > > I am using the TI's DM3730 processors for one of my project. I want to > *receive > 1Kb of data* from UART2. At kernel i am able to send and receive full 1Kb > of data. > I am sending a buffer of 1Kb at UART2 and able to receive only 64 Bytes of

[U-Boot] [PATCH 0/2] SMDK5250: Modify MAX77686 as per the latest Implementation

2012-12-10 Thread Rajeshwari Shinde
Resolved the compilation errors for PMIC MAX77686 on SMDK5250. Based on resolve branch of u-boot-samsung. Rajeshwari Shinde (2): POWER: MAX77686: Modified as per the latest Implementation SMDK5250: Enable pmic MAX77686 board/samsung/smdk5250/smdk5250.c | 15 +++- drivers/misc/pmic_max7768

[U-Boot] [PATCH 1/2] POWER: MAX77686: Modified as per the latest Implementation

2012-12-10 Thread Rajeshwari Shinde
Moved the pmic_max77686.c max77686_pmic.h to drivers/power and made required changes accordingly Signed-off-by: Rajeshwari Shinde --- drivers/misc/pmic_max77686.c | 42 -- drivers/power/pmic/Makefile|1 + drivers/power/pmic/pmic_max77686.c | 48 +++ include/

[U-Boot] [PATCH 2/2] SMDK5250: Enable pmic MAX77686

2012-12-10 Thread Rajeshwari Shinde
Enabled pmic MAX77686 for SMDK5250. Signed-off-by: Rajeshwari Shinde --- board/samsung/smdk5250/smdk5250.c | 15 +++ include/configs/smdk5250.h|8 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/board/samsung/smdk5250/smdk5250.c b/board/samsung

Re: [U-Boot] [PATCH 0/6] EXYNOS: Add support for Exynos4x10

2012-12-10 Thread Piotr Wilczek
Dear Minkyu, The idea was to have Exynos4x10 and Exynos4x12 separately instead of Exynos4. As for now, when we use ex. exynos4_gpio_part1 it is not obvious which Exynos we refer to. Best regards, Piotr Wilczek From: Minkyu Kang [mailto:proms...@gmail.com] Sent: Friday, December 07

[U-Boot] U-boot : compare read and expect value

2012-12-10 Thread Khalid Tourabi
Hi, I'm newbie and I want to use scripts to test the board peripherals (I2C, SPI, LAN, PCIe, USB, ...) using u-boot. My problem is how to compare the reading with the expected value? the reading is in an environment variable? If so which one? I searched the forums and docs without success. Than

Re: [U-Boot] Unable to Receive 1Kb of data

2012-12-10 Thread lokesh nijalinge
Hi Sir, Thanks for the reply. I am trying to read around 1Kbyte of data from the serial port uart2. Standard serial console is uart1. I am using the function* NS16550_init() in drivers/serial/ns16550.c* file for the console initialization or configuration. I am using functions* NS16550_putc() *for

Re: [U-Boot] Unable to Receive 1Kb of data

2012-12-10 Thread Wolfgang Denk
Dear lokesh nijalinge, please don't top post / full quote. In message you wrote: > > I am trying to read around 1Kbyte of data from the serial port uart2. > Standard serial console is uart1. > I am using the function* NS16550_init() in drivers/serial/ns16550.c* file > for the console initializ

Re: [U-Boot] U-boot : compare read and expect value

2012-12-10 Thread Wolfgang Denk
Dear Khalid Tourabi, In message <50c5c063.2020...@planar.com> you wrote: > > I'm newbie and I want to use scripts to test the board peripherals (I2C, > SPI, LAN, PCIe, USB, ...) using u-boot. > My problem is how to compare the reading with the expected value? > the reading is in an environment va

Re: [U-Boot] [PATCH 0/2] SMDK5250: Modify MAX77686 as per the latest Implementation

2012-12-10 Thread Lukasz Majewski
Hi Rajeshwari, > Resolved the compilation errors for PMIC MAX77686 on SMDK5250. > Based on resolve branch of u-boot-samsung. > > Rajeshwari Shinde (2): > POWER: MAX77686: Modified as per the latest Implementation > SMDK5250: Enable pmic MAX77686 > > board/samsung/smdk5250/smdk5250.c | 15

Re: [U-Boot] [PATCH 2/4] env_nand.c: support falling back to redundant env when writing

2012-12-10 Thread Phil Sutter
On Fri, Dec 07, 2012 at 11:38:11AM -0600, Scott Wood wrote: > On 12/07/2012 10:58:53 AM, Phil Sutter wrote: > > Scott, > > > > On Fri, Dec 07, 2012 at 12:53:34PM +0100, Phil Sutter wrote: > > > On Thu, Dec 06, 2012 at 12:18:39PM -0600, Scott Wood wrote: > > > > On 11/28/2012 03:06:00 PM, Phil Sutt

[U-Boot] [PATCH] universal_c210: check the NULL pointer when get the PMIC

2012-12-10 Thread Minkyu Kang
PMIC 2.0 require to test return pointer from pmic_get() Signed-off-by: Minkyu Kang Cc: Lukasz Majewski Cc: Wolfgang Denk --- board/samsung/universal_c210/universal.c |6 ++ 1 file changed, 6 insertions(+) diff --git a/board/samsung/universal_c210/universal.c b/board/samsung/universal

[U-Boot] [PATCH 0/4] sf: New flash command support

2012-12-10 Thread Jagannadha Sutradharudu Teki
Patches mostly provides a new flash command (QPP), config register writing and some print support on flash read/write. Thanks, Jagan. Jagannadha Sutradharudu Teki (4): sf: Enable prints on erase and write functions sf: Add print message on flash read function sf: Add configuration register

[U-Boot] [PATCH 1/4] sf: Enable prints on erase and write functions

2012-12-10 Thread Jagannadha Sutradharudu Teki
This patch provides to enabled the prints on erase and write functions to make sure that how many bytes erase/write into flash device. Signed-off-by: Jagannadha Sutradharudu Teki --- drivers/mtd/spi/spi_flash.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/m

[U-Boot] [PATCH 2/4] sf: Add print message on flash read function

2012-12-10 Thread Jagannadha Sutradharudu Teki
This patch adds a print message on spi_flash_cmd_read_fast() to make sure that how many bytes read from flash device. Signed-off-by: Jagannadha Sutradharudu Teki --- drivers/mtd/spi/spi_flash.c |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/drivers/mtd/spi/spi_fla

[U-Boot] [PATCH 3/4] sf: Add configuration register writing

2012-12-10 Thread Jagannadha Sutradharudu Teki
This patch provides support to program a flash config register. Configuration register contains the control bits used to configure the different configurations and security features of a device. User need to set these bits through spi_flash_cmd_write_config() based on their usage. Signed-off-by:

[U-Boot] [PATCH 4/4] sf: Add Quad-input Page Program(32h) instruction support

2012-12-10 Thread Jagannadha Sutradharudu Teki
This patch provides support to program a flash using Quad-input Page Program(32h) instruction. This will effectively increases the data transfer rate by up to four times, as compared to the Page Program(PP) instruction. Respective flash drivers need to use spi_flash_cmd_write_multi_qpp() based on

Re: [U-Boot] U-boot : compare read and expect value

2012-12-10 Thread Wolfgang Denk
Dear Khalid Tourabi, please don't top post / full quote, and keep the mailing list on Cc: In message <50c5f2d6.5060...@planar.com> you wrote: > > Thanks for your answer. > > setexpr command allows set the result operation in an environment > variable. > But I want to set the re

Re: [U-Boot] [GIT PULL] u-boot-mips/master

2012-12-10 Thread Tom Rini
On Sat, Dec 08, 2012 at 09:57:28PM +0100, Daniel Schwierzeck wrote: > Hi Tom, > > please pull two bugfixes for MIPS > > > The following changes since commit fd4d564b3c80b111f18c93adb14233a6a7ddb0e9: > > Merge branch 'master' of git://git.denx.de/u-boot-x86 (2012-12-07 > 08:47:59 -0700) > >

[U-Boot] [PATCH] [nand] Implement nand_extent_skip_bad

2012-12-10 Thread Pantelis Antoniou
When accessing nand any bad blocks encountered are skipped, with no indication about the amount of bad blocks encountered. While this is normally fine, when you have to write a large amount of data in chunks, you need to account for the skipped amount due to the presence of the bad blocks. nand_ex

[U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-10 Thread Pantelis Antoniou
Introduce on-the fly DFU NAND support. Signed-off-by: Pantelis Antoniou --- drivers/dfu/Makefile | 1 + drivers/dfu/dfu.c | 7 ++ drivers/dfu/dfu_nand.c | 194 + include/dfu.h | 23 ++ 4 files changed, 225 insertions(+) cr

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-10 Thread Tom Warren
Will do. On Sat, Dec 8, 2012 at 11:03 PM, Albert ARIBAUD wrote: > Hello, > > It seems like two commits 5ddcc38b (in u-boot, committed by Marek) > 29f3e3f2 (in u-boot-arm, committed by Tom from u-boot-tegra) are > conflicting on the seaboard configuration header file for USB (and > possibly other

[U-Boot] [PATCH] m28evk/mx28evk: fix nand_update_full

2012-12-10 Thread Eric Bénard
- commit 418396e212b59bf907dbccad997ff50f7eb61b16 chenged the behaviour of nand write.raw which now takes a pagecount as a parameter and no more the size to be written so update the default environment of these boards to fix the problem. - tested on a mx28evk with a 4k page NAND and on a custom boa

Re: [U-Boot] [PATCH] m28evk/mx28evk: fix nand_update_full

2012-12-10 Thread Marek Vasut
Dear Eric Bénard, > - commit 418396e212b59bf907dbccad997ff50f7eb61b16 chenged the behaviour > of nand write.raw which now takes a pagecount as a parameter and no more > the size to be written so update the default environment of these boards > to fix the problem. > - tested on a mx28evk with a 4k

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-10 Thread Tom Warren
Albert, On Mon, Dec 10, 2012 at 9:25 AM, Tom Warren wrote: > Will do. > > On Sat, Dec 8, 2012 at 11:03 PM, Albert ARIBAUD > wrote: >> Hello, >> >> It seems like two commits 5ddcc38b (in u-boot, committed by Marek) >> 29f3e3f2 (in u-boot-arm, committed by Tom from u-boot-tegra) are >> conflicting

Re: [U-Boot] [PATCH v2 7/7] Tegra30: Add/enable Cardhu build (T30 reference board)

2012-12-10 Thread Tom Warren
Simon, On Sat, Dec 8, 2012 at 1:00 PM, Simon Glass wrote: > Hi, > > On Tue, Dec 4, 2012 at 2:41 PM, Stephen Warren wrote: >> On 12/04/2012 01:40 PM, Lucas Stach wrote: >>> Hi Tom, >>> >>> Am Dienstag, den 04.12.2012, 13:22 -0700 schrieb Tom Warren: >>> [...] > >> +#define V_NS16550_

Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-10 Thread Lukasz Majewski
Hi Pantelis, > DFU is a bit peculiar. It needs to hook to composite setup and > return it's function descriptor. > > So when get-descriptor request comes with a type of DFU_DT_FUNC > we iterate over the configs, and functions, and when we find > the DFU function we call the setup method which is

Re: [U-Boot] JFFS2 seems to drop nand data with ECC corrections

2012-12-10 Thread Scott Wood
On 12/10/2012 01:33:52 AM, Deltour, Stephane wrote: Hi, Thanks for the confirmation. Is this something that may be patched ? I mean, would a patch for this be accepted ? Yes, please send a patch. -Scott ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-10 Thread Pantelis Antoniou
Hi Lukasz, On Dec 10, 2012, at 7:11 PM, Lukasz Majewski wrote: > Hi Pantelis, > >> DFU is a bit peculiar. It needs to hook to composite setup and >> return it's function descriptor. >> >> So when get-descriptor request comes with a type of DFU_DT_FUNC >> we iterate over the configs, and functio

Re: [U-Boot] U-boot : compare read and expect value

2012-12-10 Thread Khalid Tourabi
Dear Wolfgang Denk Dear Khalid Tourabi, please don't top post / full quote, and keep the mailing list on Cc: Ok sorry thanks. In message<50c5f2d6.5060...@planar.com> you wrote: Thanks for your answer. setexpr command allows set the result operation in an environment vari

Re: [U-Boot] [PATCH v2 7/7] Tegra30: Add/enable Cardhu build (T30 reference board)

2012-12-10 Thread Simon Glass
Hi Tom, On Mon, Dec 10, 2012 at 9:05 AM, Tom Warren wrote: > Simon, > > On Sat, Dec 8, 2012 at 1:00 PM, Simon Glass wrote: >> Hi, >> >> On Tue, Dec 4, 2012 at 2:41 PM, Stephen Warren wrote: >>> On 12/04/2012 01:40 PM, Lucas Stach wrote: Hi Tom, Am Dienstag, den 04.12.2012, 13:22

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-10 Thread Allen Martin
On Mon, Dec 10, 2012 at 08:59:59AM -0800, Tom Warren wrote: > Albert, > > On Mon, Dec 10, 2012 at 9:25 AM, Tom Warren wrote: > > Will do. > > > > On Sat, Dec 8, 2012 at 11:03 PM, Albert ARIBAUD > > wrote: > >> Hello, > >> > >> It seems like two commits 5ddcc38b (in u-boot, committed by Marek) >

Re: [U-Boot] [PATCH 1/4] sf: Enable prints on erase and write functions

2012-12-10 Thread Simon Glass
Hi, On Mon, Dec 10, 2012 at 6:41 AM, Jagannadha Sutradharudu Teki wrote: > This patch provides to enabled the prints on erase and write > functions to make sure that how many bytes erase/write into flash device. > > Signed-off-by: Jagannadha Sutradharudu Teki > --- > drivers/mtd/spi/spi_flash.c

[U-Boot] [STATUS] 'next' is now open

2012-12-10 Thread Tom Rini
Hey all, I pushed earlier (and it's live now) an update making the next branch be in-sync with master. Seeing as for this release we do not have any planned changes that will require a rebase (last time we wanted the very first commits to be to switch to the right fix for ARM and alignment stuff)

Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-10 Thread Lukasz Majewski
Pantelis, > Hi Lukasz, > > On Dec 10, 2012, at 7:11 PM, Lukasz Majewski wrote: > > > Hi Pantelis, > > > >> DFU is a bit peculiar. It needs to hook to composite setup and > >> return it's function descriptor. > >> > >> So when get-descriptor request comes with a type of DFU_DT_FUNC > >> we iter

Re: [U-Boot] omap3_beagle.h: Fix comment for true/false return value.

2012-12-10 Thread Tom Rini
On Sun, Nov 11, 2012 at 11:20:58PM -, Robert P. J. Day wrote: > Signed-off-by: Robert P. J. Day > > --- > pretty sure that comment is inaccurate, but i'm willing to be > corrected. Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature _

Re: [U-Boot] Pass sdrc timing values through board_sdrc_timings structure

2012-12-10 Thread Tom Rini
On Tue, Nov 13, 2012 at 07:40:28AM -, Peter Barada wrote: > Instead of passing individual registers by value to board_get_mem_timings, > pass a board_mem_timings structure pointer for the board files to fill in. > Pass same structure pointer to write_sdrc_timings. This saves about > 90 bytes

Re: [U-Boot] omap3: Add a few comments to "#endif"s for readability.

2012-12-10 Thread Tom Rini
On Tue, Nov 13, 2012 at 07:57:54AM -, Robert P. J. Day wrote: > No functional changes, just more comments for readability when a > preprocessor check spans more than a few lines, and for consistency. > > Signed-off-by: Robert P. J. Day Applied to u-boot-ti/master, thanks! -- Tom signatu

Re: [U-Boot] omap4: Add comments on some "#endif"s for readability.

2012-12-10 Thread Tom Rini
On Tue, Nov 13, 2012 at 08:12:08AM -, Robert P. J. Day wrote: > No functional changes, simply for readability. > > Signed-off-by: Robert P. J. Day Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-B

Re: [U-Boot] OMAP: Tweak omap-common/Makefile since reset.S -> reset.c

2012-12-10 Thread Tom Rini
On Thu, Nov 15, 2012 at 01:21:18AM -, Robert P. J. Day wrote: > Git commit d417d1db5f9092d125ddea882ced77eaa5f3d236 replaced the > omap-common file reset.S with reset.c, but the Makefile was not > adjusted for that. > > Signed-off-by: Robert P. J. Day Applied to u-boot-ti/master, thanks! -

Re: [U-Boot] [U-Boot, V2] omap: emif: configure emif only when required

2012-12-10 Thread Tom Rini
On Thu, Nov 15, 2012 at 09:06:33PM -, Lokesh Vutla wrote: > DMM_LISA_MAP registers program whether memory is mapped > on particular EMIF or not. Irrespective of these registers > EMIF is getting configured. Correcting the same. > > Signed-off-by: Lokesh Vutla Applied to u-boot-ti/master, th

Re: [U-Boot] OMAP3 SPI : Fixed bugs related to SPI transfer

2012-12-10 Thread Tom Rini
On Sat, Nov 17, 2012 at 09:10:15PM -, Ajoy Kumar Das wrote: > From: ajoy > > Added posted writes (read after writes) to effect the > change immediately for channel confiuration and channel > enable register > > Disable the channel to purge receieve data in TX_ONLY > mode transfer otherwise

Re: [U-Boot] [U-Boot,v0] davinci: fixed cpu reset

2012-12-10 Thread Tom Rini
On Wed, Nov 21, 2012 at 12:45:12AM -, Davide Bonfanti wrote: > The reset procedure works on watchdog timer while before it was modifying > TIMER_1 registers. > Tested on DM365. > > Signed-off-by: Davide Bonfanti Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digi

Re: [U-Boot] am335x: disable internal delay for RGMII mode

2012-12-10 Thread Tom Rini
On Mon, Nov 26, 2012 at 03:30:42AM -, Yegor Yefremov wrote: > From: Yegor Yefremov > > According to errata the AM335x device does not support internal delay > mode, so RGMII1_IDMODE and RGMII2_IDMODE must be set to 1. > > Signed-off-by: Yegor Yefremov Applied to u-boot-ti/master, thanks!

Re: [U-Boot] am335x: cpsw: make phy address configurable

2012-12-10 Thread Tom Rini
On Mon, Nov 26, 2012 at 04:03:16AM -, Yegor Yefremov wrote: > From: Yegor Yefremov > > Signed-off-by: Yegor Yefremov Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists

Re: [U-Boot] [U-Boot, RFC/PATCHv2] OMAP3: Remove unused PHYS_SDRAM_1_SIZE

2012-12-10 Thread Tom Rini
On Tue, Nov 27, 2012 at 10:32:40AM -, Thomas Weber wrote: > Remove the unused PHYS_SDRAM_1_SIZE from OMAP3 config files. > > Signed-off-by: Thomas Weber Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature _

Re: [U-Boot] [U-Boot, V2] gpio: add gpio_is_valid() to omap_gpio API

2012-12-10 Thread Tom Rini
On Tue, Nov 27, 2012 at 10:40:57PM -, Nikita Kiryanov wrote: > Add gpio_is_valid() to omap_gpio API > > Signed-off-by: Nikita Kiryanov > Signed-off-by: Igor Grinberg Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature ___

Re: [U-Boot] [U-Boot,1/2] omap24xx_i2c: Handle wait_for_bb error

2012-12-10 Thread Tom Rini
On Mon, Dec 03, 2012 at 05:23:16AM -, Vincent Stehl?? wrote: > We add a return code to wait_for_bb() to be able to report errors to the > callers properly. We in turn handle this new error code in i2c_read, i2c_write > and i2c_probe. > > Signed-off-by: Vincent Stehl?? Applied to u-boot-ti/ma

Re: [U-Boot] [U-Boot,2/2] power: twl6035: complain on LDO9 error

2012-12-10 Thread Tom Rini
On Mon, Dec 03, 2012 at 05:23:17AM -, Vincent Stehl?? wrote: > We handle i2c_write return code and complain in case of error. We propagate > the > error, too, to allow better handling at the upper level in the future. > > Signed-off-by: Vincent Stehl?? Applied to u-boot-ti/master, thanks!

Re: [U-Boot] cm-t35: enable zero bootdelay check

2012-12-10 Thread Tom Rini
On Tue, Dec 04, 2012 at 11:28:26PM -, Nikita Kiryanov wrote: > Enable zero bootdelay check to make it possible to abort autoboot even if > bootdelay == 0 > > Signed-off-by: Nikita Kiryanov Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature _

Re: [U-Boot] [PATCH] omap3/mem.c: remove unused defines

2012-12-10 Thread Tom Rini
On Fri, Nov 02, 2012 at 11:14:57AM +0100, Andreas Bie??mann wrote: > These GPMC_CS defines are a leftover from prior gpmc_init(). Commit 187af954 > removed the need for these definitions but missed to remove them. > > Signed-off-by: Andreas Bie??mann > Cc: Tom Rini Applied to u-boot-ti/master,

Re: [U-Boot] [PATCH 1/2] OMAP3: fix panel timing on the mt_ventoux board

2012-12-10 Thread Tom Rini
On Fri, Nov 23, 2012 at 04:19:24PM +0100, Stefano Babic wrote: > Signed-off-by: Stefano Babic Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de

Re: [U-Boot] [PATCH 2/2] OMAP3: TAM3517: add macros for reading eeprom

2012-12-10 Thread Tom Rini
On Fri, Nov 23, 2012 at 04:19:25PM +0100, Stefano Babic wrote: > Added macros to read SOM information from the I2C > EEPROM. > > Signed-off-by: Stefano Babic Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [PATCH v2 0/8] NAND support for AM33XX

2012-12-10 Thread Tom Rini
On Wed, Nov 07, 2012 at 12:06:27AM +0100, Ilya Yanok wrote: > These series add support for NAND on AM33XX. AM33XX has the same GPMC > controller as OMAP3 so the first part of the series just add required > defines/initialization to enable the existing omap_gpmc driver to work > on AM33XX. The rest

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

2012-12-10 Thread Tom Rini
Hello, The following changes since commit b8a7c467960ffb4d5a5e1eef5f7783fb6f594542: Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2012-11-25 13:01:58 +0100) are available in the git repository at: git://git.denx.de/u-boot-ti.git master for you to fetch changes up to 9bd5c1ad

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-10 Thread Tom Warren
u-boot-arm/master and u-boot-tegra/next should have the same base commit (b8a7c46), so merging them isn't a big deal, and goes smoothly for me. If I then take u-boot/master and merge it, I see a conflict in drivers/power/power_fls.c and include/configs/mx35pdk.h and mx53loco.h, but no problems with

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-10 Thread Tom Warren
Albert, > On Sat, Dec 8, 2012 at 11:03 PM, Albert ARIBAUD > wrote: >> Hello, >> >> It seems like two commits 5ddcc38b (in u-boot, committed by Marek) >> 29f3e3f2 (in u-boot-arm, committed by Tom from u-boot-tegra) are >> conflicting on the seaboard configuration header file for USB (and >> possib

Re: [U-Boot] [PATCH] [nand] Implement nand_extent_skip_bad

2012-12-10 Thread Scott Wood
On 12/10/2012 09:24:24 AM, Pantelis Antoniou wrote: When accessing nand any bad blocks encountered are skipped, with no indication about the amount of bad blocks encountered. While this is normally fine, when you have to write a large amount of data in chunks, you need to account for the skipped

Re: [U-Boot] [PATCH] m28evk/mx28evk: fix nand_update_full

2012-12-10 Thread Scott Wood
On 12/10/2012 10:41:59 AM, Eric Bénard wrote: - commit 418396e212b59bf907dbccad997ff50f7eb61b16 chenged the behaviour of nand write.raw which now takes a pagecount as a parameter and no more the size to be written so update the default environment of these boards to fix the problem. It ne

Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-10 Thread Marek Vasut
Dear Lukasz Majewski, > Pantelis, [...] Hm hm ... I suspect it'd be nice to have a separate DFU custodian. That'd leverage some burden from me. I like that idea. I wonder if it'd be nice to start building such bigger net of custodians. Hm ? Best regards, Marek Vasut __

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-10 Thread Scott Wood
On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: Introduce on-the fly DFU NAND support. Signed-off-by: Pantelis Antoniou --- drivers/dfu/Makefile | 1 + drivers/dfu/dfu.c | 7 ++ drivers/dfu/dfu_nand.c | 194 + include/dfu.h

[U-Boot] Question regarding "Problems with CONFIG_SYS_64BIT_LBA" in disk/part_efi.c

2012-12-10 Thread David Purdy
In the current source tree, in disk/part_efi.c , we see: /* * Problems with CONFIG_SYS_64BIT_LBA: * * struct disk_partition.start in include/part.h is sized as ulong. * When CONFIG_SYS_64BIT_LBA is activated, lbaint_t changes from ulong to uint64_t. * For now, it is cast back to ulong at assi

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-10 Thread Tom Rini
On Mon, Dec 10, 2012 at 07:09:55PM -0600, Scott Wood wrote: > On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: > >Introduce on-the fly DFU NAND support. > > > >Signed-off-by: Pantelis Antoniou > >--- > > drivers/dfu/Makefile | 1 + > > drivers/dfu/dfu.c | 7 ++ > > drivers/dfu/dfu_nand

Re: [U-Boot] [PATCH] mtd: nand: mxs: reset BCH earlier, too, to avoid NAND startup problems

2012-12-10 Thread Marek Vasut
Dear Wolfram Sang, > It could happen (1 out of 100 times) that NAND did not start up correctly > after warm rebooting, so we end up with various failures or DMA timed out > due to a stalled BCH. When resetting BCH together with GPMI, the issue > could not be observed anymore (after 1+ reboots)

[U-Boot] [PATCH v2] universal_c210: check the NULL pointer when get the PMIC

2012-12-10 Thread Minkyu Kang
PMIC 2.0 require to test return pointer from pmic_get() Signed-off-by: Minkyu Kang Cc: Lukasz Majewski Cc: Wolfgang Denk --- Changes in V2: - Since functions are void type, remove the return value. board/samsung/universal_c210/universal.c |6 ++ 1 file changed, 6 insertions(+)

Re: [U-Boot] universal_c210: fix compiler error and compiler warning

2012-12-10 Thread Minkyu Kang
On 10/12/12 15:50, Minkyu Kang wrote: > This patch fix following errors > > universal.c: In function 'init_pmic_lcd': > universal.c:340: warning: implicit declaration of function 'get_pmic' > universal.c:340: warning: initialization makes pointer from integer without a > cast > universal.c: In fu

Re: [U-Boot] [PATCH 0/2] SMDK5250: Modify MAX77686 as per the latest Implementation

2012-12-10 Thread Minkyu Kang
On 10/12/12 22:16, Lukasz Majewski wrote: > Hi Rajeshwari, > >> Resolved the compilation errors for PMIC MAX77686 on SMDK5250. >> Based on resolve branch of u-boot-samsung. >> >> Rajeshwari Shinde (2): >> POWER: MAX77686: Modified as per the latest Implementation >> SMDK5250: Enable pmic MAX77

Re: [U-Boot] [PATCH 1/4] sf: Enable prints on erase and write functions

2012-12-10 Thread Jagan Teki
Hi Simon, I understand your concern. But currently there is no prints a/f reading/writing/erasing the SPI flash. User's are unable to confirm whether that particular sf commands are properly done/not. Thanks, Jagan. On Tue, Dec 11, 2012 at 12:56 AM, Simon Glass wrote: > Hi, > > On Mon, Dec 10

[U-Boot] [GIT PULL] u-boot-i2c/master

2012-12-10 Thread Heiko Schocher
Hello Tom, The following changes since commit fd4d564b3c80b111f18c93adb14233a6a7ddb0e9: Merge branch 'master' of git://git.denx.de/u-boot-x86 (2012-12-07 08:47:59 -0700) are available in the git repository at: git://git.denx.de/u-boot-i2c.git master Andreas Bießmann (1): soft_i2c:

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-10 Thread Lukasz Majewski
Hi Scott, > On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: > > Introduce on-the fly DFU NAND support. > > > > Signed-off-by: Pantelis Antoniou > > --- > > drivers/dfu/Makefile | 1 + > > drivers/dfu/dfu.c | 7 ++ > > drivers/dfu/dfu_nand.c | 194 > > +++

Re: [U-Boot] [PATCH v2] universal_c210: check the NULL pointer when get the PMIC

2012-12-10 Thread Lukasz Majewski
Hi Minkyu, > PMIC 2.0 require to test return pointer from pmic_get() > > Signed-off-by: Minkyu Kang > Cc: Lukasz Majewski > Cc: Wolfgang Denk > --- > Changes in V2: > - Since functions are void type, remove the return value. > > board/samsung/universal_c210/universal.c |6 ++ >