linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] ARM: OMAP5: Add minimal OMAP5 SOC support for 3.6
@ 2012-07-09 15:02 Santosh Shilimkar
  2012-07-10  8:33 ` Tony Lindgren
  0 siblings, 1 reply; 6+ messages in thread
From: Santosh Shilimkar @ 2012-07-09 15:02 UTC (permalink / raw)
  To: tony; +Cc: linux-arm-kernel, linux-omap, Santosh Shilimkar

Tony,

Please pull below OMAP5 SOC minimal support. It is generated against the
cleanup-part2 branch of yours. As you suggested, I have dropped CK_54XX
flag changes to avoid conflicts.

The following changes since commit fb584511c4664573097ece7df0de06ad00b713a2:

  ARM: OMAP: sdrc: Fix the build break for OMAP4 only builds (2012-07-09 01:44:11 -0700)

are available in the git repository at:

  git://github.com/SantoshShilimkar/linux.git for_3.6/omap5_minimal_support

for you to fetch changes up to 39f47d9f437fa94622bf51d7b18b42b3336ad9ac:

  ARM: Kconfig update to support additional GPIOs in OMAP5 (2012-07-09 19:14:40 +0530)

----------------------------------------------------------------

R Sricharan (11):
  ARM: OMAP2+: Move stubbed secure_sram_reserve function to a common.c
    and call it __weak
  ARM: OMAP: counter-32k: Select the CR register offset using the IP
    scheme
  ARM: OMAP5: id: Add cpu id for ES versions
  ARM: OMAP5: Add minimal support for OMAP5430 SOC
  ARM: OMAP5: timer: Add clocksource, clockevent support
  ARM: OMAP5: gpmc: Update gpmc_init()
  ARM: OMAP5: l3: Add l3 error handler support for omap5
  ARM: omap2+: board-generic: clean up the irq data from board file
  ARM: OMAP5: board-generic: Add device tree support
  arm/dts: OMAP5: Add omap5 dts files
  ARM: OMAP5: Add the build support

Santosh Shilimkar (2):
  ARM: OMAP5: Add the WakeupGen IP updates
  ARM: OMAP5: Add SMP support

Tarun Kanti DebBarma (1):
  ARM: Kconfig update to support additional GPIOs in OMAP5

 .../devicetree/bindings/arm/omap/omap.txt          |    3 +
 arch/arm/Kconfig                                   |    1 +
 arch/arm/boot/dts/omap5-evm.dts                    |   20 +++
 arch/arm/boot/dts/omap5.dtsi                       |  184 ++++++++++++++++++++
 arch/arm/configs/omap2plus_defconfig               |    1 +
 arch/arm/mach-omap2/Kconfig                        |    8 +-
 arch/arm/mach-omap2/Makefile                       |   24 ++-
 arch/arm/mach-omap2/board-generic.c                |   42 +++--
 arch/arm/mach-omap2/common.c                       |   24 +++
 arch/arm/mach-omap2/common.h                       |   19 +-
 arch/arm/mach-omap2/control.h                      |    4 +
 arch/arm/mach-omap2/devices.c                      |    2 +-
 arch/arm/mach-omap2/gpmc.c                         |    3 +-
 arch/arm/mach-omap2/id.c                           |   42 ++++-
 arch/arm/mach-omap2/include/mach/debug-macro.S     |    8 +-
 arch/arm/mach-omap2/include/mach/omap-wakeupgen.h  |    7 +
 arch/arm/mach-omap2/io.c                           |   44 +++++
 arch/arm/mach-omap2/iomap.h                        |   27 +++
 arch/arm/mach-omap2/irq.c                          |   13 +-
 arch/arm/mach-omap2/omap-headsmp.S                 |   21 +++
 arch/arm/mach-omap2/omap-hotplug.c                 |   24 ++-
 arch/arm/mach-omap2/omap-smp.c                     |   52 ++++--
 arch/arm/mach-omap2/omap-wakeupgen.c               |  114 +++++++++---
 arch/arm/mach-omap2/omap4-common.c                 |   14 ++
 arch/arm/mach-omap2/omap4-sar-layout.h             |   12 +-
 arch/arm/mach-omap2/omap_hwmod.c                   |    2 +-
 arch/arm/mach-omap2/omap_l3_noc.h                  |   22 ++-
 arch/arm/mach-omap2/prcm-common.h                  |    2 +-
 arch/arm/mach-omap2/prcm.c                         |    2 +-
 arch/arm/mach-omap2/timer.c                        |    5 +
 arch/arm/plat-omap/Kconfig                         |    4 +-
 arch/arm/plat-omap/common.c                        |    9 +
 arch/arm/plat-omap/counter_32k.c                   |   16 +-
 arch/arm/plat-omap/include/plat/cpu.h              |   22 ++-
 arch/arm/plat-omap/include/plat/hardware.h         |    1 +
 arch/arm/plat-omap/include/plat/multi.h            |    9 +
 arch/arm/plat-omap/include/plat/omap-secure.h      |    5 -
 arch/arm/plat-omap/include/plat/omap54xx.h         |   32 ++++
 arch/arm/plat-omap/include/plat/serial.h           |   10 ++
 arch/arm/plat-omap/include/plat/uncompress.h       |    6 +
 arch/arm/plat-omap/sram.c                          |   11 +-
 41 files changed, 773 insertions(+), 98 deletions(-)
 create mode 100644 arch/arm/boot/dts/omap5-evm.dts
 create mode 100644 arch/arm/boot/dts/omap5.dtsi
 create mode 100644 arch/arm/plat-omap/include/plat/omap54xx.h

-- 
1.7.9.5


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

* Re: [GIT PULL] ARM: OMAP5: Add minimal OMAP5 SOC support for 3.6
  2012-07-09 15:02 [GIT PULL] ARM: OMAP5: Add minimal OMAP5 SOC support for 3.6 Santosh Shilimkar
@ 2012-07-10  8:33 ` Tony Lindgren
  2012-07-10  8:43   ` Shilimkar, Santosh
  2012-07-26  7:22   ` Shilimkar, Santosh
  0 siblings, 2 replies; 6+ messages in thread
From: Tony Lindgren @ 2012-07-10  8:33 UTC (permalink / raw)
  To: Santosh Shilimkar; +Cc: linux-arm-kernel, linux-omap

* Santosh Shilimkar <santosh.shilimkar@ti.com> [120709 08:07]:
> Tony,
> 
> Please pull below OMAP5 SOC minimal support. It is generated against the
> cleanup-part2 branch of yours. As you suggested, I have dropped CK_54XX
> flag changes to avoid conflicts.

OK seems to merge fine now, pulled into devel-omap5.

Regards,

Tony
 
> The following changes since commit fb584511c4664573097ece7df0de06ad00b713a2:
> 
>   ARM: OMAP: sdrc: Fix the build break for OMAP4 only builds (2012-07-09 01:44:11 -0700)
> 
> are available in the git repository at:
> 
>   git://github.com/SantoshShilimkar/linux.git for_3.6/omap5_minimal_support
> 
> for you to fetch changes up to 39f47d9f437fa94622bf51d7b18b42b3336ad9ac:
> 
>   ARM: Kconfig update to support additional GPIOs in OMAP5 (2012-07-09 19:14:40 +0530)
> 
> ----------------------------------------------------------------
> 
> R Sricharan (11):
>   ARM: OMAP2+: Move stubbed secure_sram_reserve function to a common.c
>     and call it __weak
>   ARM: OMAP: counter-32k: Select the CR register offset using the IP
>     scheme
>   ARM: OMAP5: id: Add cpu id for ES versions
>   ARM: OMAP5: Add minimal support for OMAP5430 SOC
>   ARM: OMAP5: timer: Add clocksource, clockevent support
>   ARM: OMAP5: gpmc: Update gpmc_init()
>   ARM: OMAP5: l3: Add l3 error handler support for omap5
>   ARM: omap2+: board-generic: clean up the irq data from board file
>   ARM: OMAP5: board-generic: Add device tree support
>   arm/dts: OMAP5: Add omap5 dts files
>   ARM: OMAP5: Add the build support
> 
> Santosh Shilimkar (2):
>   ARM: OMAP5: Add the WakeupGen IP updates
>   ARM: OMAP5: Add SMP support
> 
> Tarun Kanti DebBarma (1):
>   ARM: Kconfig update to support additional GPIOs in OMAP5
> 
>  .../devicetree/bindings/arm/omap/omap.txt          |    3 +
>  arch/arm/Kconfig                                   |    1 +
>  arch/arm/boot/dts/omap5-evm.dts                    |   20 +++
>  arch/arm/boot/dts/omap5.dtsi                       |  184 ++++++++++++++++++++
>  arch/arm/configs/omap2plus_defconfig               |    1 +
>  arch/arm/mach-omap2/Kconfig                        |    8 +-
>  arch/arm/mach-omap2/Makefile                       |   24 ++-
>  arch/arm/mach-omap2/board-generic.c                |   42 +++--
>  arch/arm/mach-omap2/common.c                       |   24 +++
>  arch/arm/mach-omap2/common.h                       |   19 +-
>  arch/arm/mach-omap2/control.h                      |    4 +
>  arch/arm/mach-omap2/devices.c                      |    2 +-
>  arch/arm/mach-omap2/gpmc.c                         |    3 +-
>  arch/arm/mach-omap2/id.c                           |   42 ++++-
>  arch/arm/mach-omap2/include/mach/debug-macro.S     |    8 +-
>  arch/arm/mach-omap2/include/mach/omap-wakeupgen.h  |    7 +
>  arch/arm/mach-omap2/io.c                           |   44 +++++
>  arch/arm/mach-omap2/iomap.h                        |   27 +++
>  arch/arm/mach-omap2/irq.c                          |   13 +-
>  arch/arm/mach-omap2/omap-headsmp.S                 |   21 +++
>  arch/arm/mach-omap2/omap-hotplug.c                 |   24 ++-
>  arch/arm/mach-omap2/omap-smp.c                     |   52 ++++--
>  arch/arm/mach-omap2/omap-wakeupgen.c               |  114 +++++++++---
>  arch/arm/mach-omap2/omap4-common.c                 |   14 ++
>  arch/arm/mach-omap2/omap4-sar-layout.h             |   12 +-
>  arch/arm/mach-omap2/omap_hwmod.c                   |    2 +-
>  arch/arm/mach-omap2/omap_l3_noc.h                  |   22 ++-
>  arch/arm/mach-omap2/prcm-common.h                  |    2 +-
>  arch/arm/mach-omap2/prcm.c                         |    2 +-
>  arch/arm/mach-omap2/timer.c                        |    5 +
>  arch/arm/plat-omap/Kconfig                         |    4 +-
>  arch/arm/plat-omap/common.c                        |    9 +
>  arch/arm/plat-omap/counter_32k.c                   |   16 +-
>  arch/arm/plat-omap/include/plat/cpu.h              |   22 ++-
>  arch/arm/plat-omap/include/plat/hardware.h         |    1 +
>  arch/arm/plat-omap/include/plat/multi.h            |    9 +
>  arch/arm/plat-omap/include/plat/omap-secure.h      |    5 -
>  arch/arm/plat-omap/include/plat/omap54xx.h         |   32 ++++
>  arch/arm/plat-omap/include/plat/serial.h           |   10 ++
>  arch/arm/plat-omap/include/plat/uncompress.h       |    6 +
>  arch/arm/plat-omap/sram.c                          |   11 +-
>  41 files changed, 773 insertions(+), 98 deletions(-)
>  create mode 100644 arch/arm/boot/dts/omap5-evm.dts
>  create mode 100644 arch/arm/boot/dts/omap5.dtsi
>  create mode 100644 arch/arm/plat-omap/include/plat/omap54xx.h
> 
> -- 
> 1.7.9.5
> 

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

* Re: [GIT PULL] ARM: OMAP5: Add minimal OMAP5 SOC support for 3.6
  2012-07-10  8:33 ` Tony Lindgren
@ 2012-07-10  8:43   ` Shilimkar, Santosh
  2012-07-26  7:22   ` Shilimkar, Santosh
  1 sibling, 0 replies; 6+ messages in thread
From: Shilimkar, Santosh @ 2012-07-10  8:43 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: linux-arm-kernel, linux-omap

On Tue, Jul 10, 2012 at 2:03 PM, Tony Lindgren <tony@atomide.com> wrote:
> * Santosh Shilimkar <santosh.shilimkar@ti.com> [120709 08:07]:
>> Tony,
>>
>> Please pull below OMAP5 SOC minimal support. It is generated against the
>> cleanup-part2 branch of yours. As you suggested, I have dropped CK_54XX
>> flag changes to avoid conflicts.
>
> OK seems to merge fine now, pulled into devel-omap5.
>
Thanks Tony.

Regards
Santosh

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

* Re: [GIT PULL] ARM: OMAP5: Add minimal OMAP5 SOC support for 3.6
  2012-07-10  8:33 ` Tony Lindgren
  2012-07-10  8:43   ` Shilimkar, Santosh
@ 2012-07-26  7:22   ` Shilimkar, Santosh
  2012-08-07  7:00     ` Tony Lindgren
  1 sibling, 1 reply; 6+ messages in thread
From: Shilimkar, Santosh @ 2012-07-26  7:22 UTC (permalink / raw)
  To: linux-omap

On Tue, Jul 10, 2012 at 10:33 AM, Tony Lindgren <tony@atomide.com> wrote:
> * Santosh Shilimkar <santosh.shilimkar@ti.com> [120709 08:07]:
>> Tony,
>>
>> Please pull below OMAP5 SOC minimal support. It is generated against the
>> cleanup-part2 branch of yours. As you suggested, I have dropped CK_54XX
>> flag changes to avoid conflicts.
>
> OK seems to merge fine now, pulled into devel-omap5.
>
Now OMAP5 support appearing in mainline. In case you would like
to boot mainline on your OMAP5 board, you need to merge a
OMAP5 SOC hwmod/clock data which is out of tree. I have
put that on a branch and same is available [1]. Please note
that the only DT boot supported.

Regards
Santosh

[1] git://github.com/SantoshShilimkar/linux.git
out-of-tree/omap5-data

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

* Re: [GIT PULL] ARM: OMAP5: Add minimal OMAP5 SOC support for 3.6
  2012-07-26  7:22   ` Shilimkar, Santosh
@ 2012-08-07  7:00     ` Tony Lindgren
  2012-08-07  7:16       ` Shilimkar, Santosh
  0 siblings, 1 reply; 6+ messages in thread
From: Tony Lindgren @ 2012-08-07  7:00 UTC (permalink / raw)
  To: Shilimkar, Santosh; +Cc: linux-omap

* Shilimkar, Santosh <santosh.shilimkar@ti.com> [120726 00:27]:
> On Tue, Jul 10, 2012 at 10:33 AM, Tony Lindgren <tony@atomide.com> wrote:
> > * Santosh Shilimkar <santosh.shilimkar@ti.com> [120709 08:07]:
> >> Tony,
> >>
> >> Please pull below OMAP5 SOC minimal support. It is generated against the
> >> cleanup-part2 branch of yours. As you suggested, I have dropped CK_54XX
> >> flag changes to avoid conflicts.
> >
> > OK seems to merge fine now, pulled into devel-omap5.
> >
> Now OMAP5 support appearing in mainline. In case you would like
> to boot mainline on your OMAP5 board, you need to merge a
> OMAP5 SOC hwmod/clock data which is out of tree. I have
> put that on a branch and same is available [1]. Please note
> that the only DT boot supported.

Nice to see it being a small set :) Have these changes been
posted to the mailing lists for review?

Regards,

Tony

 
> [1] git://github.com/SantoshShilimkar/linux.git out-of-tree/omap5-data

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

* Re: [GIT PULL] ARM: OMAP5: Add minimal OMAP5 SOC support for 3.6
  2012-08-07  7:00     ` Tony Lindgren
@ 2012-08-07  7:16       ` Shilimkar, Santosh
  0 siblings, 0 replies; 6+ messages in thread
From: Shilimkar, Santosh @ 2012-08-07  7:16 UTC (permalink / raw)
  To: Tony Lindgren, Benoit Cousson; +Cc: linux-omap

On Tue, Aug 7, 2012 at 12:30 PM, Tony Lindgren <tony@atomide.com> wrote:
> * Shilimkar, Santosh <santosh.shilimkar@ti.com> [120726 00:27]:
>> On Tue, Jul 10, 2012 at 10:33 AM, Tony Lindgren <tony@atomide.com> wrote:
>> > * Santosh Shilimkar <santosh.shilimkar@ti.com> [120709 08:07]:
>> >> Tony,
>> >>
>> >> Please pull below OMAP5 SOC minimal support. It is generated against the
>> >> cleanup-part2 branch of yours. As you suggested, I have dropped CK_54XX
>> >> flag changes to avoid conflicts.
>> >
>> > OK seems to merge fine now, pulled into devel-omap5.
>> >
>> Now OMAP5 support appearing in mainline. In case you would like
>> to boot mainline on your OMAP5 board, you need to merge a
>> OMAP5 SOC hwmod/clock data which is out of tree. I have
>> put that on a branch and same is available [1]. Please note
>> that the only DT boot supported.
>
> Nice to see it being a small set :) Have these changes been
> posted to the mailing lists for review?
>
Not yet. Benoit was looking into the database difference between
the current and next version of the silicon. Since there is a difference
between the data, the idea was to submit the final version of data to
avoid potential huge patching.

Regards
santosh

>
>
>> [1] git://github.com/SantoshShilimkar/linux.git out-of-tree/omap5-data

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

end of thread, other threads:[~2012-08-07  7:16 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-09 15:02 [GIT PULL] ARM: OMAP5: Add minimal OMAP5 SOC support for 3.6 Santosh Shilimkar
2012-07-10  8:33 ` Tony Lindgren
2012-07-10  8:43   ` Shilimkar, Santosh
2012-07-26  7:22   ` Shilimkar, Santosh
2012-08-07  7:00     ` Tony Lindgren
2012-08-07  7:16       ` Shilimkar, Santosh

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).