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

Albert, Please pull u-boot-ti/master
Regards, Sandeep
The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2: Kyle Moffett (1): e1000: Allow direct access to the E1000 SPI EEPROM device
are available in the git repository at:
git://git.denx.de/u-boot-ti.git master
Bastian Ruppert (4): Davinci: ea20: set console on UART0 Davinci: ea20: set GPIOs to hold MII-Phy in reset and set UART0-Switch for console Davinci: ea20: add gpio for keeping power on in board_late_init Davinci: ea20: add gpios for LCD backlight control
Christian Riesch (1): arm, davinci: Add function lpsc_syncreset()
Heiko Schocher (13): arm, davinci: replace CONFIG_PRELOADER with CONFIG_SPL_BUILD arm, arm926: fix missing symbols in NAND_SPL mode usb, davinci: add enable_vbus() weak function arm, usb, davinci: make USBPHY_CTL register configurable net, davinci_emac: make clock divider in MDIO control register configurable spl: add option for adding post memory test to the SPL framework arm, davinci: add support for new spl framework spl, nand: add 4bit HW ecc oob first nand_read_page function arm, davinci: add header files for dm365 arm, davinci: add lowlevel function for dm365 soc arm926ejs, davinci: add cpuinfo for dm365 arm926ejs, davinci: add missing spi defines for dm365 arm, davinci: add cam_enc_4xx support
Ilya Yanok (2): davinci_emac: compilation fix, phy is array now omap/spl: actually enable the console
Sanjeev Premi (7): omap3evm: Set environment variable 'ethaddr' omap3evm: Reorder related config options omap3evm: Prepare to split configuration omap3evm: move common config options to new file omap3evm: Add (quick) configuration for MMC/SD only omap3evm: Add (quick) configuration for NAND only omap3evm: fix errors caused by multiple definitions
Stefano Babic (8): Davinci: ea20: Add NAND support Davinci: ea20: Add early init to get early output from console Davinci: ea20: Add default U-Boot environment ARM: Davinci: added missing registers to hardware.h VIDEO: davinci: add framebuffer to da8xx Davinci: ea20: added video support Davinci: ea20: added I2C support Davinci: ea20: added PREBOOT to configuration
MAINTAINERS | 1 + Makefile | 8 +- README | 5 + arch/arm/cpu/arm926ejs/davinci/Makefile | 5 + arch/arm/cpu/arm926ejs/davinci/cpu.c | 27 +- arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c | 439 ++++++++++ arch/arm/cpu/arm926ejs/davinci/psc.c | 20 +- arch/arm/cpu/arm926ejs/davinci/spl.c | 63 ++ arch/arm/cpu/arm926ejs/start.S | 31 +- arch/arm/cpu/armv7/omap-common/spl.c | 2 + arch/arm/include/asm/arch-davinci/aintc_defs.h | 50 ++ arch/arm/include/asm/arch-davinci/da8xx-fb.h | 126 +++ arch/arm/include/asm/arch-davinci/dm365_lowlevel.h | 41 + arch/arm/include/asm/arch-davinci/hardware.h | 27 +- arch/arm/include/asm/arch-davinci/pll_defs.h | 84 ++ arch/arm/include/asm/arch-davinci/psc_defs.h | 86 ++ arch/arm/include/asm/arch-davinci/syscfg_defs.h | 66 ++ board/ait/cam_enc_4xx/Makefile | 46 ++ board/ait/cam_enc_4xx/cam_enc_4xx.c | 446 +++++++++++ board/ait/cam_enc_4xx/config.mk | 15 + board/ait/cam_enc_4xx/u-boot-spl.lds | 73 ++ board/ait/cam_enc_4xx/ublimage.cfg | 48 ++ board/davinci/common/misc.c | 2 +- board/davinci/ea20/ea20.c | 205 ++++- board/ti/evm/evm.c | 15 + boards.cfg | 3 + doc/README.SPL | 2 + doc/README.davinci.nand_spl | 141 ++++ drivers/mtd/nand/Makefile | 3 + drivers/mtd/nand/nand_spl_load.c | 56 ++ drivers/mtd/nand/nand_spl_simple.c | 43 +- drivers/net/davinci_emac.c | 11 +- drivers/usb/musb/davinci.c | 20 +- drivers/video/Makefile | 1 + drivers/video/da8xx-fb.c | 846 ++++++++++++++++++++ include/configs/cam_enc_4xx.h | 453 +++++++++++ include/configs/ea20.h | 126 +++- include/configs/omap3_evm.h | 331 ++------- include/configs/omap3_evm_common.h | 292 +++++++ include/configs/omap3_evm_quick_mmc.h | 91 +++ include/configs/omap3_evm_quick_nand.h | 79 ++ spl/Makefile | 1 + tools/ublimage.h | 2 +- 43 files changed, 4098 insertions(+), 334 deletions(-) create mode 100644 arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c create mode 100644 arch/arm/cpu/arm926ejs/davinci/spl.c create mode 100644 arch/arm/include/asm/arch-davinci/aintc_defs.h create mode 100644 arch/arm/include/asm/arch-davinci/da8xx-fb.h create mode 100644 arch/arm/include/asm/arch-davinci/dm365_lowlevel.h create mode 100644 arch/arm/include/asm/arch-davinci/pll_defs.h create mode 100644 arch/arm/include/asm/arch-davinci/psc_defs.h create mode 100644 arch/arm/include/asm/arch-davinci/syscfg_defs.h create mode 100644 board/ait/cam_enc_4xx/Makefile create mode 100644 board/ait/cam_enc_4xx/cam_enc_4xx.c create mode 100644 board/ait/cam_enc_4xx/config.mk create mode 100644 board/ait/cam_enc_4xx/u-boot-spl.lds create mode 100644 board/ait/cam_enc_4xx/ublimage.cfg create mode 100644 doc/README.davinci.nand_spl create mode 100644 drivers/mtd/nand/nand_spl_load.c create mode 100644 drivers/video/da8xx-fb.c create mode 100644 include/configs/cam_enc_4xx.h create mode 100644 include/configs/omap3_evm_common.h create mode 100644 include/configs/omap3_evm_quick_mmc.h create mode 100644 include/configs/omap3_evm_quick_nand.h

s-paulraj@ti.com wrote:
Albert, Please pull u-boot-ti/master
Regards, Sandeep
The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2: Kyle Moffett (1): e1000: Allow direct access to the E1000 SPI EEPROM device
are available in the git repository at:
git://git.denx.de/u-boot-ti.git master
Hi Sandeep, yesterday I sent two patches to make the dig297 board compile again after the mach-types sync. Did you receive them?
http://lists.denx.de/pipermail/u-boot/2011-November/108000.html http://lists.denx.de/pipermail/u-boot/2011-November/108001.html
Thanks, Luca

Subject: Re: [U-Boot] Please pull u-boot-ti/master
s-paulraj@ti.com wrote:
Albert, Please pull u-boot-ti/master
Regards, Sandeep
The following changes since commit
ce5207e191c59b3135303fd03b98dd2ac3701ba2:
Kyle Moffett (1): e1000: Allow direct access to the E1000 SPI EEPROM device
are available in the git repository at:
git://git.denx.de/u-boot-ti.git master
Hi Sandeep, yesterday I sent two patches to make the dig297 board compile again after the mach-types sync. Did you receive them?
http://lists.denx.de/pipermail/u-boot/2011-November/108000.html http://lists.denx.de/pipermail/u-boot/2011-November/108001.html
Hi Luca,
Pushed to u-boot-ti master
Hi Albert,
Can you please pick up these 2 as well from my master.
Regards, Sandeep

Dear Sandeep,
In message BE04C0A3BEC7354A8BCE3DB869F4D4930A0A36@DLEE08.ent.ti.com you wrote:
Pushed to u-boot-ti master
Hi Albert,
Can you please pick up these 2 as well from my master.
Umm, no. Can you please send a formal pull request?
Also, what about all the other TI related patches that have been queued for a long time?
Is there hope you will find time to resume processing this backlog?
Best regards,
Wolfgang Denk

Hi Sandeep,
Le 03/11/2011 18:52, Paulraj, Sandeep a écrit :
Subject: Re: [U-Boot] Please pull u-boot-ti/master
s-paulraj@ti.com wrote:
Albert, Please pull u-boot-ti/master
Regards, Sandeep
The following changes since commit
ce5207e191c59b3135303fd03b98dd2ac3701ba2:
Kyle Moffett (1): e1000: Allow direct access to the E1000 SPI EEPROM device
are available in the git repository at:
git://git.denx.de/u-boot-ti.git master
Hi Sandeep, yesterday I sent two patches to make the dig297 board compile again after the mach-types sync. Did you receive them?
http://lists.denx.de/pipermail/u-boot/2011-November/108000.html http://lists.denx.de/pipermail/u-boot/2011-November/108001.html
Hi Luca,
Pushed to u-boot-ti master
Hi Albert,
Can you please pick up these 2 as well from my master.
Branch u-boot-ti/master is based on u-boot/master whereas it should be based on u-boot-arm/master. Please rebase and as Wolfgang asks, submit a formal pull req based on u-boot-arm/master. Currently, that would be commit 6d66073614539d94dabff1f63ebd962840c44b81 ("arm/km: portl2 environment address update to P1B").
Regards, Sandeep
Amicalement,

On Thu, Nov 3, 2011 at 11:17 AM, Albert ARIBAUD albert.u.boot@aribaud.net wrote:
Hi Sandeep,
Le 03/11/2011 18:52, Paulraj, Sandeep a écrit :
Subject: Re: [U-Boot] Please pull u-boot-ti/master
s-paulraj@ti.com wrote:
Albert, Please pull u-boot-ti/master
Regards, Sandeep
The following changes since commit
ce5207e191c59b3135303fd03b98dd2ac3701ba2:
Kyle Moffett (1): e1000: Allow direct access to the E1000 SPI EEPROM device
are available in the git repository at:
git://git.denx.de/u-boot-ti.git master
Hi Sandeep, yesterday I sent two patches to make the dig297 board compile again after the mach-types sync. Did you receive them?
http://lists.denx.de/pipermail/u-boot/2011-November/108000.html http://lists.denx.de/pipermail/u-boot/2011-November/108001.html
Hi Luca,
Pushed to u-boot-ti master
Hi Albert,
Can you please pick up these 2 as well from my master.
Branch u-boot-ti/master is based on u-boot/master whereas it should be based on u-boot-arm/master. Please rebase and as Wolfgang asks, submit a formal pull req based on u-boot-arm/master. Currently, that would be commit 6d66073614539d94dabff1f63ebd962840c44b81 ("arm/km: portl2 environment address update to P1B").
Sorry, my fault there. It looks like it'll be a real easy rebase at least.

Branch u-boot-ti/master is based on u-boot/master whereas it should be based on u-boot-arm/master. Please rebase and as Wolfgang asks, submit a formal pull req based on u-boot-arm/master. Currently, that would be commit 6d66073614539d94dabff1f63ebd962840c44b81 ("arm/km: portl2 environment address update to P1B").
Did just that! Can you please pull
Regards, Sandeep

Hi Sandeep,
Le 03/11/2011 21:13, Paulraj, Sandeep a écrit :
Branch u-boot-ti/master is based on u-boot/master whereas it should be based on u-boot-arm/master. Please rebase and as Wolfgang asks, submit a formal pull req based on u-boot-arm/master. Currently, that would be commit 6d66073614539d94dabff1f63ebd962840c44b81 ("arm/km: portl2 environment address update to P1B").
Did just that! Can you please pull
I will gladly do, as soon as you send out a formal pull request.
Regards, Sandeep
Amicalement,

On Thu, Nov 3, 2011 at 10:24 AM, Luca Ceresoli luca.ceresoli@comelit.it wrote:
s-paulraj@ti.com wrote:
Albert, Please pull u-boot-ti/master
Regards, Sandeep
The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2: Kyle Moffett (1): e1000: Allow direct access to the E1000 SPI EEPROM device
are available in the git repository at:
git://git.denx.de/u-boot-ti.git master
Hi Sandeep, yesterday I sent two patches to make the dig297 board compile again after the mach-types sync. Did you receive them?
http://lists.denx.de/pipermail/u-boot/2011-November/108000.html http://lists.denx.de/pipermail/u-boot/2011-November/108001.html
Sorry, for some reason I had thought Albert was collecting all of the MACH_TYPE fixups that had gone past.

Le 03/11/2011 19:26, Tom Rini a écrit :
On Thu, Nov 3, 2011 at 10:24 AM, Luca Ceresoliluca.ceresoli@comelit.it wrote:
s-paulraj@ti.com wrote:
Albert, Please pull u-boot-ti/master
Regards, Sandeep
The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2: Kyle Moffett (1): e1000: Allow direct access to the E1000 SPI EEPROM device
are available in the git repository at:
git://git.denx.de/u-boot-ti.git master
Hi Sandeep, yesterday I sent two patches to make the dig297 board compile again after the mach-types sync. Did you receive them?
http://lists.denx.de/pipermail/u-boot/2011-November/108000.html http://lists.denx.de/pipermail/u-boot/2011-November/108001.html
Sorry, for some reason I had thought Albert was collecting all of the MACH_TYPE fixups that had gone past.
I am, or will, but if you have picked some up already then I'll just apply these via your pull request and get on with the rest.
Amicalement,

On Thu, Nov 3, 2011 at 10:24 AM, Luca Ceresoli luca.ceresoli@comelit.it wrote:
s-paulraj@ti.com wrote:
Albert, Please pull u-boot-ti/master
Regards, Sandeep
The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2: Kyle Moffett (1): e1000: Allow direct access to the E1000 SPI EEPROM device
are available in the git repository at:
git://git.denx.de/u-boot-ti.git master
Hi Sandeep, yesterday I sent two patches to make the dig297 board compile again after the mach-types sync. Did you receive them?
http://lists.denx.de/pipermail/u-boot/2011-November/108000.html http://lists.denx.de/pipermail/u-boot/2011-November/108001.html
Can you condense these into a single patch please? Thanks.
participants (6)
-
Albert ARIBAUD
-
Luca Ceresoli
-
Paulraj, Sandeep
-
s-paulraj@ti.com
-
Tom Rini
-
Wolfgang Denk