All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] Please pull u-boot-ti/next into arm/next
@ 2011-09-23 20:58 s-paulraj at ti.com
  2011-09-26 11:25 ` Albert ARIBAUD
  0 siblings, 1 reply; 3+ messages in thread
From: s-paulraj at ti.com @ 2011-09-23 20:58 UTC (permalink / raw)
  To: u-boot

Albert,

Please pull u-boot-ti/next into arm/next
I checked all the patches i applied for checkpatch errors and saw 2, both
of which cannot be fixed. Checkpatch complained about the location of the
header file. It expects things to be like linux.
I ran MAKEALL for davinci, omap3 and omap4 and saw no issues.

Regards,
Sandeep

The following changes since commit 2cfb66ee61104af65eead73f634c373fec6bc827:
  Sandeep Paulraj (1):
        devkit8000: Fix build break

are available in the git repository at:

  git://git.denx.de/u-boot-ti.git next

Aneesh V (1):
      omap4: update maintainer for omap4 boards

Balaji T K (2):
      mmc: omap: enable high capacity
      mmc: omap: config VMMC, MMC1_PBIAS

Heiko Schocher (16):
      i2c, davinci: add i2c set speed
      net, davinci_emac: add KSZ8864 switch
      net, davinci_emac: make less verbose - turn printf() into debug()
      net, davinci_emac: let the EMAC detect the PHYs
      arm, davinci: move davinci_timer in header file
      arm, davinci: add missing timer baseaddresses for !DA8xx cpu
      arm, davinci: add internal WDT support for AM1808 cpus
      arm, davinci: add RTC base addr
      rtc, davinci: add support for davinci internal RTC
      arm, davinci: add SYSCFG1 base and register struct
      arm, davinci: add some missing defines in hardware.h
      arm, davinci, am1808, gpio: add missing defines for bank 8
      arm, davinci: add ddr2 definition
      arm, davinci: add NOR Boot Configuration Word
      arm, davinci, am1808: add lowlevel functions for booting from NOR
      arm, davinci, da8xx: add cpuinfo

Sanjeev Premi (2):
      omap3: Fix compile warning
      omap3evm: env: Fix default console

Thomas Weber (1):
      Devkit8000: Change console from ttyS2 to ttyO2

 MAINTAINERS                                        |    7 +-
 arch/arm/cpu/arm926ejs/davinci/Makefile            |    3 +-
 arch/arm/cpu/arm926ejs/davinci/am1808_lowlevel.c   |  428 ++++++++++++++++++++
 arch/arm/cpu/arm926ejs/davinci/cpu.c               |   16 +-
 arch/arm/cpu/arm926ejs/davinci/ksz8873.c           |   68 +++
 arch/arm/cpu/arm926ejs/davinci/timer.c             |   46 ++-
 arch/arm/cpu/arm926ejs/start.S                     |    9 +
 arch/arm/cpu/armv7/omap3/sys_info.c                |    2 +-
 .../arm/include/asm/arch-davinci/am1808_lowlevel.h |   44 ++
 arch/arm/include/asm/arch-davinci/ddr2_defs.h      |   96 +++++
 arch/arm/include/asm/arch-davinci/emac_defs.h      |    6 +
 arch/arm/include/asm/arch-davinci/gpio.h           |    2 +
 arch/arm/include/asm/arch-davinci/hardware.h       |   30 ++
 arch/arm/include/asm/arch-davinci/timer_defs.h     |   44 ++
 arch/arm/include/asm/arch-omap4/omap4.h            |    8 +-
 doc/README.davinci                                 |    9 +
 drivers/i2c/davinci_i2c.c                          |    5 +
 drivers/mmc/omap_hsmmc.c                           |   34 ++-
 drivers/net/davinci_emac.c                         |   12 +-
 drivers/power/twl6030.c                            |    7 +
 drivers/rtc/Makefile                               |    1 +
 drivers/rtc/davinci.c                              |  125 ++++++
 include/configs/devkit8000.h                       |    2 +-
 include/configs/omap3_evm.h                        |    2 +-
 include/configs/omap4_common.h                     |    2 +
 include/configs/omap4_sdp4430.h                    |    2 +
 include/twl6030.h                                  |    3 +
 27 files changed, 985 insertions(+), 28 deletions(-)
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/am1808_lowlevel.c
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/ksz8873.c
 create mode 100644 arch/arm/include/asm/arch-davinci/am1808_lowlevel.h
 create mode 100644 arch/arm/include/asm/arch-davinci/ddr2_defs.h
 create mode 100644 arch/arm/include/asm/arch-davinci/timer_defs.h
 create mode 100644 drivers/rtc/davinci.c

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] Please pull u-boot-ti/next into arm/next
  2011-09-23 20:58 [U-Boot] Please pull u-boot-ti/next into arm/next s-paulraj at ti.com
@ 2011-09-26 11:25 ` Albert ARIBAUD
  2011-09-26 13:28   ` Paulraj, Sandeep
  0 siblings, 1 reply; 3+ messages in thread
From: Albert ARIBAUD @ 2011-09-26 11:25 UTC (permalink / raw)
  To: u-boot

Hi Sandeep,

Le 23/09/2011 22:58, s-paulraj at ti.com a ?crit :
> Albert,
>
> Please pull u-boot-ti/next into arm/next
> I checked all the patches i applied for checkpatch errors and saw 2, both
> of which cannot be fixed. Checkpatch complained about the location of the
> header file. It expects things to be like linux.
> I ran MAKEALL for davinci, omap3 and omap4 and saw no issues.
>
> Regards,
> Sandeep
>
> The following changes since commit 2cfb66ee61104af65eead73f634c373fec6bc827:
>    Sandeep Paulraj (1):
>          devkit8000: Fix build break
>
> are available in the git repository at:
>
>    git://git.denx.de/u-boot-ti.git next
>
> Aneesh V (1):
>        omap4: update maintainer for omap4 boards
>
> Balaji T K (2):
>        mmc: omap: enable high capacity
>        mmc: omap: config VMMC, MMC1_PBIAS
>
> Heiko Schocher (16):
>        i2c, davinci: add i2c set speed
>        net, davinci_emac: add KSZ8864 switch
>        net, davinci_emac: make less verbose - turn printf() into debug()
>        net, davinci_emac: let the EMAC detect the PHYs
>        arm, davinci: move davinci_timer in header file
>        arm, davinci: add missing timer baseaddresses for !DA8xx cpu
>        arm, davinci: add internal WDT support for AM1808 cpus
>        arm, davinci: add RTC base addr
>        rtc, davinci: add support for davinci internal RTC
>        arm, davinci: add SYSCFG1 base and register struct
>        arm, davinci: add some missing defines in hardware.h
>        arm, davinci, am1808, gpio: add missing defines for bank 8
>        arm, davinci: add ddr2 definition
>        arm, davinci: add NOR Boot Configuration Word
>        arm, davinci, am1808: add lowlevel functions for booting from NOR
>        arm, davinci, da8xx: add cpuinfo
>
> Sanjeev Premi (2):
>        omap3: Fix compile warning
>        omap3evm: env: Fix default console
>
> Thomas Weber (1):
>        Devkit8000: Change console from ttyS2 to ttyO2

Applied to u-boot-arm/next, thanks!

Amicalement,
-- 
Albert.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] Please pull u-boot-ti/next into arm/next
  2011-09-26 11:25 ` Albert ARIBAUD
@ 2011-09-26 13:28   ` Paulraj, Sandeep
  0 siblings, 0 replies; 3+ messages in thread
From: Paulraj, Sandeep @ 2011-09-26 13:28 UTC (permalink / raw)
  To: u-boot



> 
> Hi Sandeep,
> 
> Le 23/09/2011 22:58, s-paulraj at ti.com a ?crit :
> > Albert,
> >
> > Please pull u-boot-ti/next into arm/next
> > I checked all the patches i applied for checkpatch errors and saw 2,
> both
> > of which cannot be fixed. Checkpatch complained about the location of
> the
> > header file. It expects things to be like linux.
> > I ran MAKEALL for davinci, omap3 and omap4 and saw no issues.
> >
> > Regards,
> > Sandeep
> >
> > The following changes since commit
> 2cfb66ee61104af65eead73f634c373fec6bc827:
> >    Sandeep Paulraj (1):
> >          devkit8000: Fix build break
> >
> > are available in the git repository at:
> >
> >    git://git.denx.de/u-boot-ti.git next
> >
> > Aneesh V (1):
> >        omap4: update maintainer for omap4 boards
> >
> > Balaji T K (2):
> >        mmc: omap: enable high capacity
> >        mmc: omap: config VMMC, MMC1_PBIAS
> >
> > Heiko Schocher (16):
> >        i2c, davinci: add i2c set speed
> >        net, davinci_emac: add KSZ8864 switch
> >        net, davinci_emac: make less verbose - turn printf() into debug()
> >        net, davinci_emac: let the EMAC detect the PHYs
> >        arm, davinci: move davinci_timer in header file
> >        arm, davinci: add missing timer baseaddresses for !DA8xx cpu
> >        arm, davinci: add internal WDT support for AM1808 cpus
> >        arm, davinci: add RTC base addr
> >        rtc, davinci: add support for davinci internal RTC
> >        arm, davinci: add SYSCFG1 base and register struct
> >        arm, davinci: add some missing defines in hardware.h
> >        arm, davinci, am1808, gpio: add missing defines for bank 8
> >        arm, davinci: add ddr2 definition
> >        arm, davinci: add NOR Boot Configuration Word
> >        arm, davinci, am1808: add lowlevel functions for booting from NOR
> >        arm, davinci, da8xx: add cpuinfo
> >
> > Sanjeev Premi (2):
> >        omap3: Fix compile warning
> >        omap3evm: env: Fix default console
> >
> > Thomas Weber (1):
> >        Devkit8000: Change console from ttyS2 to ttyO2
> 
> Applied to u-boot-arm/next, thanks!


Thanks

--Sandeep

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-09-26 13:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-23 20:58 [U-Boot] Please pull u-boot-ti/next into arm/next s-paulraj at ti.com
2011-09-26 11:25 ` Albert ARIBAUD
2011-09-26 13:28   ` Paulraj, Sandeep

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.