All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Add support for TI814X processor series
@ 2011-08-04 17:44 ` Hemant Pedanekar
  0 siblings, 0 replies; 8+ messages in thread
From: Hemant Pedanekar @ 2011-08-04 17:44 UTC (permalink / raw)
  To: linux-omap
  Cc: linux-arm-kernel, Tony Lindgren, Kevin Hilman, Paul Walmsley,
	Hemant Pedanekar

This patch set adds support for DM814x, C6A814x and AM387x device series having
Cortex-A8 MPU.

The technical documents are available from following link:

http://focus.ti.com/docs/prod/folders/print/tms320dm8148.html

This series is referred in code as TI814X.

Since these devices share similar architecture as TI816X devices, existing
TI816X code is updated to accomodate TI814X support. The code shared across
TI816X and TI814X devices is updated with TI81XX/ti81xx prefix as applicable,
while maintaining cpu_is_ti816x() and cpu_is_ti814x() to distinguish specific
execution differences.

Hemant Pedanekar (3):
  TI81XX: Prepare for addition of TI814X support
  TI814X: Add cpu type macros and detection support
  TI814X: Create board support and enable build for TI8148 EVM

 arch/arm/mach-omap2/Kconfig                        |   11 +++-
 arch/arm/mach-omap2/Makefile                       |    1 +
 arch/arm/mach-omap2/board-ti8148evm.c              |   57 ++++++++++++++++++++
 arch/arm/mach-omap2/board-ti8168evm.c              |    6 +-
 arch/arm/mach-omap2/clock.c                        |    2 +-
 arch/arm/mach-omap2/clock.h                        |    2 +-
 arch/arm/mach-omap2/clock3xxx_data.c               |    5 ++-
 arch/arm/mach-omap2/common.c                       |   22 ++++----
 arch/arm/mach-omap2/control.h                      |    8 ++--
 arch/arm/mach-omap2/id.c                           |   26 ++++++++--
 arch/arm/mach-omap2/include/mach/debug-macro.S     |   12 ++--
 arch/arm/mach-omap2/include/mach/entry-macro.S     |    4 +-
 arch/arm/mach-omap2/io.c                           |   10 ++--
 arch/arm/mach-omap2/irq.c                          |    2 +-
 arch/arm/mach-omap2/opp2xxx.h                      |    2 +-
 arch/arm/mach-omap2/serial.c                       |    6 +-
 arch/arm/plat-omap/include/plat/clkdev_omap.h      |    1 +
 arch/arm/plat-omap/include/plat/clock.h            |    3 +-
 arch/arm/plat-omap/include/plat/common.h           |    2 +-
 arch/arm/plat-omap/include/plat/cpu.h              |   25 ++++++++-
 arch/arm/plat-omap/include/plat/hardware.h         |    2 +-
 arch/arm/plat-omap/include/plat/io.h               |    6 +-
 arch/arm/plat-omap/include/plat/irqs.h             |    2 +-
 arch/arm/plat-omap/include/plat/serial.h           |   14 +++---
 .../plat-omap/include/plat/{ti816x.h => ti81xx.h}  |   18 +++---
 arch/arm/plat-omap/include/plat/uncompress.h       |   11 +++--
 arch/arm/plat-omap/io.c                            |    2 +-
 27 files changed, 187 insertions(+), 75 deletions(-)
 create mode 100644 arch/arm/mach-omap2/board-ti8148evm.c
 rename arch/arm/plat-omap/include/plat/{ti816x.h => ti81xx.h} (60%)

-- 
1.7.3.5


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

* [PATCH 0/3] Add support for TI814X processor series
@ 2011-08-04 17:44 ` Hemant Pedanekar
  0 siblings, 0 replies; 8+ messages in thread
From: Hemant Pedanekar @ 2011-08-04 17:44 UTC (permalink / raw)
  To: linux-arm-kernel

This patch set adds support for DM814x, C6A814x and AM387x device series having
Cortex-A8 MPU.

The technical documents are available from following link:

http://focus.ti.com/docs/prod/folders/print/tms320dm8148.html

This series is referred in code as TI814X.

Since these devices share similar architecture as TI816X devices, existing
TI816X code is updated to accomodate TI814X support. The code shared across
TI816X and TI814X devices is updated with TI81XX/ti81xx prefix as applicable,
while maintaining cpu_is_ti816x() and cpu_is_ti814x() to distinguish specific
execution differences.

Hemant Pedanekar (3):
  TI81XX: Prepare for addition of TI814X support
  TI814X: Add cpu type macros and detection support
  TI814X: Create board support and enable build for TI8148 EVM

 arch/arm/mach-omap2/Kconfig                        |   11 +++-
 arch/arm/mach-omap2/Makefile                       |    1 +
 arch/arm/mach-omap2/board-ti8148evm.c              |   57 ++++++++++++++++++++
 arch/arm/mach-omap2/board-ti8168evm.c              |    6 +-
 arch/arm/mach-omap2/clock.c                        |    2 +-
 arch/arm/mach-omap2/clock.h                        |    2 +-
 arch/arm/mach-omap2/clock3xxx_data.c               |    5 ++-
 arch/arm/mach-omap2/common.c                       |   22 ++++----
 arch/arm/mach-omap2/control.h                      |    8 ++--
 arch/arm/mach-omap2/id.c                           |   26 ++++++++--
 arch/arm/mach-omap2/include/mach/debug-macro.S     |   12 ++--
 arch/arm/mach-omap2/include/mach/entry-macro.S     |    4 +-
 arch/arm/mach-omap2/io.c                           |   10 ++--
 arch/arm/mach-omap2/irq.c                          |    2 +-
 arch/arm/mach-omap2/opp2xxx.h                      |    2 +-
 arch/arm/mach-omap2/serial.c                       |    6 +-
 arch/arm/plat-omap/include/plat/clkdev_omap.h      |    1 +
 arch/arm/plat-omap/include/plat/clock.h            |    3 +-
 arch/arm/plat-omap/include/plat/common.h           |    2 +-
 arch/arm/plat-omap/include/plat/cpu.h              |   25 ++++++++-
 arch/arm/plat-omap/include/plat/hardware.h         |    2 +-
 arch/arm/plat-omap/include/plat/io.h               |    6 +-
 arch/arm/plat-omap/include/plat/irqs.h             |    2 +-
 arch/arm/plat-omap/include/plat/serial.h           |   14 +++---
 .../plat-omap/include/plat/{ti816x.h => ti81xx.h}  |   18 +++---
 arch/arm/plat-omap/include/plat/uncompress.h       |   11 +++--
 arch/arm/plat-omap/io.c                            |    2 +-
 27 files changed, 187 insertions(+), 75 deletions(-)
 create mode 100644 arch/arm/mach-omap2/board-ti8148evm.c
 rename arch/arm/plat-omap/include/plat/{ti816x.h => ti81xx.h} (60%)

-- 
1.7.3.5

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

* RE: [PATCH 0/3] Add support for TI814X processor series
  2011-08-04 17:44 ` Hemant Pedanekar
@ 2011-08-09 18:22   ` Pedanekar, Hemant
  -1 siblings, 0 replies; 8+ messages in thread
From: Pedanekar, Hemant @ 2011-08-09 18:22 UTC (permalink / raw)
  To: linux-omap; +Cc: linux-arm-kernel, Tony Lindgren, Hilman, Kevin, Paul Walmsley

Hello,

Pedanekar, Hemant wrote on Thursday, August 04, 2011 11:14 PM:

> This patch set adds support for DM814x, C6A814x and AM387x
> device series having
> Cortex-A8 MPU.
> 
> The technical documents are available from following link:
> 
> http://focus.ti.com/docs/prod/folders/print/tms320dm8148.html
> 
> This series is referred in code as TI814X.
> 
> Since these devices share similar architecture as TI816X
> devices, existing
> TI816X code is updated to accomodate TI814X support. The code
> shared across
> TI816X and TI814X devices is updated with TI81XX/ti81xx
> prefix as applicable,
> while maintaining cpu_is_ti816x() and cpu_is_ti814x() to
> distinguish specific
> execution differences.
> 
> Hemant Pedanekar (3):
>   TI81XX: Prepare for addition of TI814X support
>   TI814X: Add cpu type macros and detection support
>   TI814X: Create board support and enable build for TI8148 EVM
> 
[...]

Any comments on this patch set?
Thanks.

   Hemant

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

* [PATCH 0/3] Add support for TI814X processor series
@ 2011-08-09 18:22   ` Pedanekar, Hemant
  0 siblings, 0 replies; 8+ messages in thread
From: Pedanekar, Hemant @ 2011-08-09 18:22 UTC (permalink / raw)
  To: linux-arm-kernel

Hello,

Pedanekar, Hemant wrote on Thursday, August 04, 2011 11:14 PM:

> This patch set adds support for DM814x, C6A814x and AM387x
> device series having
> Cortex-A8 MPU.
> 
> The technical documents are available from following link:
> 
> http://focus.ti.com/docs/prod/folders/print/tms320dm8148.html
> 
> This series is referred in code as TI814X.
> 
> Since these devices share similar architecture as TI816X
> devices, existing
> TI816X code is updated to accomodate TI814X support. The code
> shared across
> TI816X and TI814X devices is updated with TI81XX/ti81xx
> prefix as applicable,
> while maintaining cpu_is_ti816x() and cpu_is_ti814x() to
> distinguish specific
> execution differences.
> 
> Hemant Pedanekar (3):
>   TI81XX: Prepare for addition of TI814X support
>   TI814X: Add cpu type macros and detection support
>   TI814X: Create board support and enable build for TI8148 EVM
> 
[...]

Any comments on this patch set?
Thanks.

   Hemant

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

* RE: [PATCH 0/3] Add support for TI814X processor series
  2011-08-09 18:22   ` Pedanekar, Hemant
@ 2011-08-19  0:20     ` Pedanekar, Hemant
  -1 siblings, 0 replies; 8+ messages in thread
From: Pedanekar, Hemant @ 2011-08-19  0:20 UTC (permalink / raw)
  To: linux-omap; +Cc: Tony Lindgren, Hilman, Kevin, Paul Walmsley, linux-arm-kernel

linux-arm-kernel-bounces@lists.infradead.org wrote on :

> Hello,
> 
> Pedanekar, Hemant wrote on Thursday, August 04, 2011 11:14 PM:
> 
>> This patch set adds support for DM814x, C6A814x and AM387x device series
>> having Cortex-A8 MPU.
>> 
>> The technical documents are available from following link:
>> 
>> http://focus.ti.com/docs/prod/folders/print/tms320dm8148.html
>> 
>> This series is referred in code as TI814X.
>> 
>> Since these devices share similar architecture as TI816X devices, existing
>> TI816X code is updated to accomodate TI814X support. The code shared across
>> TI816X and TI814X devices is updated with TI81XX/ti81xx prefix as
>> applicable, while maintaining cpu_is_ti816x() and cpu_is_ti814x() to
>> distinguish specific execution differences.
>> 
>> Hemant Pedanekar (3):
>>   TI81XX: Prepare for addition of TI814X support
>>   TI814X: Add cpu type macros and detection support
>>   TI814X: Create board support and enable build for TI8148 EVM
>> 
> [...]
> 
> Any comments on this patch set?
> Thanks.
> 
>    Hemant
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

Hello,
Can you please provide comments on these patches?
Thanks.
   Hemant

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

* [PATCH 0/3] Add support for TI814X processor series
@ 2011-08-19  0:20     ` Pedanekar, Hemant
  0 siblings, 0 replies; 8+ messages in thread
From: Pedanekar, Hemant @ 2011-08-19  0:20 UTC (permalink / raw)
  To: linux-arm-kernel

linux-arm-kernel-bounces at lists.infradead.org wrote on :

> Hello,
> 
> Pedanekar, Hemant wrote on Thursday, August 04, 2011 11:14 PM:
> 
>> This patch set adds support for DM814x, C6A814x and AM387x device series
>> having Cortex-A8 MPU.
>> 
>> The technical documents are available from following link:
>> 
>> http://focus.ti.com/docs/prod/folders/print/tms320dm8148.html
>> 
>> This series is referred in code as TI814X.
>> 
>> Since these devices share similar architecture as TI816X devices, existing
>> TI816X code is updated to accomodate TI814X support. The code shared across
>> TI816X and TI814X devices is updated with TI81XX/ti81xx prefix as
>> applicable, while maintaining cpu_is_ti816x() and cpu_is_ti814x() to
>> distinguish specific execution differences.
>> 
>> Hemant Pedanekar (3):
>>   TI81XX: Prepare for addition of TI814X support
>>   TI814X: Add cpu type macros and detection support
>>   TI814X: Create board support and enable build for TI8148 EVM
>> 
> [...]
> 
> Any comments on this patch set?
> Thanks.
> 
>    Hemant
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

Hello,
Can you please provide comments on these patches?
Thanks.
   Hemant

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

* RE: [PATCH 0/3] Add support for TI814X processor series
  2011-08-19  0:20     ` Pedanekar, Hemant
@ 2011-08-19  4:28       ` Pedanekar, Hemant
  -1 siblings, 0 replies; 8+ messages in thread
From: Pedanekar, Hemant @ 2011-08-19  4:28 UTC (permalink / raw)
  To: linux-omap; +Cc: Tony Lindgren, Hilman, Kevin, Paul Walmsley, linux-arm-kernel

linux-arm-kernel-bounces@lists.infradead.org wrote on :

> linux-arm-kernel-bounces@lists.infradead.org wrote on :
> 
>> Hello,
>> 
>> Pedanekar, Hemant wrote on Thursday, August 04, 2011 11:14 PM:
>> 
>>> This patch set adds support for DM814x, C6A814x and AM387x device series
>>> having Cortex-A8 MPU. 
>>> 
>>> The technical documents are available from following link:
>>> 
>>> http://focus.ti.com/docs/prod/folders/print/tms320dm8148.html
>>> 
>>> This series is referred in code as TI814X.
>>> 
>>> Since these devices share similar architecture as TI816X devices, existing
>>> TI816X code is updated to accomodate TI814X support. The code shared
>>> across TI816X and TI814X devices is updated with TI81XX/ti81xx prefix as
>>> applicable, while maintaining cpu_is_ti816x() and cpu_is_ti814x() to
>>> distinguish specific execution differences.
>>> 
>>> Hemant Pedanekar (3):
>>>   TI81XX: Prepare for addition of TI814X support
>>>   TI814X: Add cpu type macros and detection support
>>>   TI814X: Create board support and enable build for TI8148 EVM
>>> 
>> [...]
>> 
> Hello,
> Can you please provide comments on these patches?
> Thanks.
>    Hemant

Please disregard, I had missed Tony's comments.		

   Hemant

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

* [PATCH 0/3] Add support for TI814X processor series
@ 2011-08-19  4:28       ` Pedanekar, Hemant
  0 siblings, 0 replies; 8+ messages in thread
From: Pedanekar, Hemant @ 2011-08-19  4:28 UTC (permalink / raw)
  To: linux-arm-kernel

linux-arm-kernel-bounces at lists.infradead.org wrote on :

> linux-arm-kernel-bounces at lists.infradead.org wrote on :
> 
>> Hello,
>> 
>> Pedanekar, Hemant wrote on Thursday, August 04, 2011 11:14 PM:
>> 
>>> This patch set adds support for DM814x, C6A814x and AM387x device series
>>> having Cortex-A8 MPU. 
>>> 
>>> The technical documents are available from following link:
>>> 
>>> http://focus.ti.com/docs/prod/folders/print/tms320dm8148.html
>>> 
>>> This series is referred in code as TI814X.
>>> 
>>> Since these devices share similar architecture as TI816X devices, existing
>>> TI816X code is updated to accomodate TI814X support. The code shared
>>> across TI816X and TI814X devices is updated with TI81XX/ti81xx prefix as
>>> applicable, while maintaining cpu_is_ti816x() and cpu_is_ti814x() to
>>> distinguish specific execution differences.
>>> 
>>> Hemant Pedanekar (3):
>>>   TI81XX: Prepare for addition of TI814X support
>>>   TI814X: Add cpu type macros and detection support
>>>   TI814X: Create board support and enable build for TI8148 EVM
>>> 
>> [...]
>> 
> Hello,
> Can you please provide comments on these patches?
> Thanks.
>    Hemant

Please disregard, I had missed Tony's comments.		

   Hemant

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

end of thread, other threads:[~2011-08-19  4:28 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-04 17:44 [PATCH 0/3] Add support for TI814X processor series Hemant Pedanekar
2011-08-04 17:44 ` Hemant Pedanekar
2011-08-09 18:22 ` Pedanekar, Hemant
2011-08-09 18:22   ` Pedanekar, Hemant
2011-08-19  0:20   ` Pedanekar, Hemant
2011-08-19  0:20     ` Pedanekar, Hemant
2011-08-19  4:28     ` Pedanekar, Hemant
2011-08-19  4:28       ` Pedanekar, Hemant

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.