linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: hvaibhav@ti.com (Vaibhav Hiremath)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 6/6] am33xx changes for v3.6 merge window
Date: Tue, 3 Jul 2012 17:02:12 +0530	[thread overview]
Message-ID: <4FF2D83C.7060409@ti.com> (raw)
In-Reply-To: <E1SlGLI-0004Vt-0L@merlin.infradead.org>



On 7/1/2012 2:31 PM, Tony Lindgren wrote:
> The following changes since commit f8f5701bdaf9134b1f90e5044a82c66324d2073f:
> 
>   Linux 3.5-rc1 (2012-06-02 18:29:26 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-devel-am33xx-for-v3.6
> 
> for you to fetch changes up to 6fd8246b1c1167c983b089f9eaafa13ef9ca7adf:
> 
>   Merge tag 'omap-devel-a-for-3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/pjw/omap-pending into devel-am33xx (2012-06-22 01:50:22 -0700)
> 
> ----------------------------------------------------------------
> 
> Here are changes to add support for am33xx processors for the
> clock, power, and voltagedomains.
> 
> ----------------------------------------------------------------
> Afzal Mohammed (2):
>       ARM: OMAP2+: am33xx: Add low level debugging support
>       ARM: OMAP2+: am33xx: Add AM335XEVM machine support
> 
> Tony Lindgren (1):
>       Merge tag 'omap-devel-a-for-3.6' of git://git.kernel.org/.../pjw/omap-pending into devel-am33xx
> 
> Vaibhav Hiremath (6):
>       ARM: OMAP2+: control: Add AM33XX control reg & sec clkctrl offset
>       ARM: OMAP AM33xx: voltagedomain: Add voltage domain data
>       ARM: OMAP AM33xx: PRM: add PRM support
>       ARM: OMAP AM33xx: CM: Introduce AM33xx CM APIs and register level details
>       ARM: OMAP AM33xx: powerdomains: add AM335x support
>       ARM: OMAP AM33xx: clockdomains: Add clockdomain data and respective operations
> 

Hi Tony,

Few patches got missed in this pull request,

ARM: OMAP2+: am33xx: Make am33xx as a separate class
ARM: OMAP2+: am33xx: Change cpu_is_am33xx to soc_is_am33xx

Thanks,
Vaibhav

>  arch/arm/mach-omap2/Makefile                   |    6 +
>  arch/arm/mach-omap2/board-generic.c            |   18 +
>  arch/arm/mach-omap2/clockdomain.h              |    2 +
>  arch/arm/mach-omap2/clockdomain33xx.c          |   74 +++
>  arch/arm/mach-omap2/clockdomains33xx_data.c    |  196 +++++++
>  arch/arm/mach-omap2/cm-regbits-33xx.h          |  687 ++++++++++++++++++++++++
>  arch/arm/mach-omap2/cm33xx.c                   |  313 +++++++++++
>  arch/arm/mach-omap2/cm33xx.h                   |  420 +++++++++++++++
>  arch/arm/mach-omap2/common.h                   |    3 +
>  arch/arm/mach-omap2/control.h                  |   39 +-
>  arch/arm/mach-omap2/include/mach/debug-macro.S |   17 +-
>  arch/arm/mach-omap2/io.c                       |   13 +
>  arch/arm/mach-omap2/irq.c                      |    2 +-
>  arch/arm/mach-omap2/powerdomain.h              |   23 +-
>  arch/arm/mach-omap2/powerdomain33xx.c          |  229 ++++++++
>  arch/arm/mach-omap2/powerdomains33xx_data.c    |  185 +++++++
>  arch/arm/mach-omap2/prm-regbits-33xx.h         |  357 ++++++++++++
>  arch/arm/mach-omap2/prm33xx.c                  |  135 +++++
>  arch/arm/mach-omap2/prm33xx.h                  |  129 +++++
>  arch/arm/mach-omap2/timer.c                    |    5 +
>  arch/arm/mach-omap2/voltage.h                  |    1 +
>  arch/arm/mach-omap2/voltagedomains33xx_data.c  |   43 ++
>  arch/arm/plat-omap/include/plat/serial.h       |    4 +
>  arch/arm/plat-omap/include/plat/uncompress.h   |    6 +
>  24 files changed, 2887 insertions(+), 20 deletions(-)
>  create mode 100644 arch/arm/mach-omap2/clockdomain33xx.c
>  create mode 100644 arch/arm/mach-omap2/clockdomains33xx_data.c
>  create mode 100644 arch/arm/mach-omap2/cm-regbits-33xx.h
>  create mode 100644 arch/arm/mach-omap2/cm33xx.c
>  create mode 100644 arch/arm/mach-omap2/cm33xx.h
>  create mode 100644 arch/arm/mach-omap2/powerdomain33xx.c
>  create mode 100644 arch/arm/mach-omap2/powerdomains33xx_data.c
>  create mode 100644 arch/arm/mach-omap2/prm-regbits-33xx.h
>  create mode 100644 arch/arm/mach-omap2/prm33xx.c
>  create mode 100644 arch/arm/mach-omap2/prm33xx.h
>  create mode 100644 arch/arm/mach-omap2/voltagedomains33xx_data.c
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
> 

       reply	other threads:[~2012-07-03 11:32 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <E1SlGLI-0004Vt-0L@merlin.infradead.org>
2012-07-03 11:32 ` Vaibhav Hiremath [this message]
2012-07-03 11:48   ` [GIT PULL 6/6] am33xx changes for v3.6 merge window Tony Lindgren
2012-07-03 11:55     ` Hiremath, Vaibhav
2012-07-04  6:41       ` Tony Lindgren
2012-07-01  9:01 [GIT PULL 1/6] omap non-critical fixes " Tony Lindgren
2012-07-01  9:01 ` [GIT PULL 6/6] am33xx changes " Tony Lindgren

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4FF2D83C.7060409@ti.com \
    --to=hvaibhav@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).