All of lore.kernel.org
 help / color / mirror / Atom feed
From: Santosh Shilimkar <santosh.shilimkar@ti.com>
To: tony@atomide.com
Cc: linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	R Sricharan <r.sricharan@ti.com>,
	Santosh Shilimkar <santosh.shilimkar@ti.com>
Subject: [PATCH 4/5] ARM: OMAP5: Add the build support
Date: Thu, 5 Jul 2012 17:38:45 +0530	[thread overview]
Message-ID: <1341490136-25901-8-git-send-email-santosh.shilimkar@ti.com> (raw)
In-Reply-To: <1341490136-25901-1-git-send-email-santosh.shilimkar@ti.com>

From: R Sricharan <r.sricharan@ti.com>

Adding the build support required for OMAP5 soc
in to omap2+ config.

Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: R Sricharan <r.sricharan@ti.com>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
---
 arch/arm/configs/omap2plus_defconfig |    1 +
 arch/arm/mach-omap2/Kconfig          |    6 ++++++
 arch/arm/plat-omap/Kconfig           |    4 ++--
 3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index 9854ff4..5c90370 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -236,3 +236,4 @@ CONFIG_CRC_T10DIF=y
 CONFIG_CRC_ITU_T=y
 CONFIG_CRC7=y
 CONFIG_LIBCRC32C=y
+CONFIG_SOC_OMAP5=y
diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
index 042f157..21ef501 100644
--- a/arch/arm/mach-omap2/Kconfig
+++ b/arch/arm/mach-omap2/Kconfig
@@ -56,6 +56,12 @@ config ARCH_OMAP4
 	select USB_ARCH_HAS_EHCI if USB_SUPPORT
 	select ARM_CPU_SUSPEND if PM
 
+config SOC_OMAP5
+	bool "TI OMAP5"
+	select CPU_V7
+	select ARM_GIC
+	select HAVE_SMP
+
 comment "OMAP Core Type"
 	depends on ARCH_OMAP2
 
diff --git a/arch/arm/plat-omap/Kconfig b/arch/arm/plat-omap/Kconfig
index ad95c7a..dcfb506 100644
--- a/arch/arm/plat-omap/Kconfig
+++ b/arch/arm/plat-omap/Kconfig
@@ -29,7 +29,7 @@ config ARCH_OMAP2PLUS
 	select USE_OF
 	select PROC_DEVICETREE if PROC_FS
 	help
-	  "Systems based on OMAP2, OMAP3 or OMAP4"
+	  "Systems based on OMAP2, OMAP3, OMAP4 or OMAP5"
 
 endchoice
 
@@ -150,7 +150,7 @@ config OMAP_32K_TIMER
 	  This timer saves power compared to the OMAP_MPU_TIMER, and has
 	  support for no tick during idle. The 32KHz timer provides less
 	  intra-tick resolution than OMAP_MPU_TIMER. The 32KHz timer is
-	  currently only available for OMAP16XX, 24XX, 34XX and OMAP4.
+	  currently only available for OMAP16XX, 24XX, 34XX and OMAP4/5.
 
 config OMAP3_L2_AUX_SECURE_SAVE_RESTORE
 	bool "OMAP3 HS/EMU save and restore for L2 AUX control register"
-- 
1.7.9.5


WARNING: multiple messages have this Message-ID (diff)
From: santosh.shilimkar@ti.com (Santosh Shilimkar)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 4/5] ARM: OMAP5: Add the build support
Date: Thu, 5 Jul 2012 17:38:45 +0530	[thread overview]
Message-ID: <1341490136-25901-8-git-send-email-santosh.shilimkar@ti.com> (raw)
In-Reply-To: <1341490136-25901-1-git-send-email-santosh.shilimkar@ti.com>

From: R Sricharan <r.sricharan@ti.com>

Adding the build support required for OMAP5 soc
in to omap2+ config.

Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: R Sricharan <r.sricharan@ti.com>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
---
 arch/arm/configs/omap2plus_defconfig |    1 +
 arch/arm/mach-omap2/Kconfig          |    6 ++++++
 arch/arm/plat-omap/Kconfig           |    4 ++--
 3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index 9854ff4..5c90370 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -236,3 +236,4 @@ CONFIG_CRC_T10DIF=y
 CONFIG_CRC_ITU_T=y
 CONFIG_CRC7=y
 CONFIG_LIBCRC32C=y
+CONFIG_SOC_OMAP5=y
diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
index 042f157..21ef501 100644
--- a/arch/arm/mach-omap2/Kconfig
+++ b/arch/arm/mach-omap2/Kconfig
@@ -56,6 +56,12 @@ config ARCH_OMAP4
 	select USB_ARCH_HAS_EHCI if USB_SUPPORT
 	select ARM_CPU_SUSPEND if PM
 
+config SOC_OMAP5
+	bool "TI OMAP5"
+	select CPU_V7
+	select ARM_GIC
+	select HAVE_SMP
+
 comment "OMAP Core Type"
 	depends on ARCH_OMAP2
 
diff --git a/arch/arm/plat-omap/Kconfig b/arch/arm/plat-omap/Kconfig
index ad95c7a..dcfb506 100644
--- a/arch/arm/plat-omap/Kconfig
+++ b/arch/arm/plat-omap/Kconfig
@@ -29,7 +29,7 @@ config ARCH_OMAP2PLUS
 	select USE_OF
 	select PROC_DEVICETREE if PROC_FS
 	help
-	  "Systems based on OMAP2, OMAP3 or OMAP4"
+	  "Systems based on OMAP2, OMAP3, OMAP4 or OMAP5"
 
 endchoice
 
@@ -150,7 +150,7 @@ config OMAP_32K_TIMER
 	  This timer saves power compared to the OMAP_MPU_TIMER, and has
 	  support for no tick during idle. The 32KHz timer provides less
 	  intra-tick resolution than OMAP_MPU_TIMER. The 32KHz timer is
-	  currently only available for OMAP16XX, 24XX, 34XX and OMAP4.
+	  currently only available for OMAP16XX, 24XX, 34XX and OMAP4/5.
 
 config OMAP3_L2_AUX_SECURE_SAVE_RESTORE
 	bool "OMAP3 HS/EMU save and restore for L2 AUX control register"
-- 
1.7.9.5

  parent reply	other threads:[~2012-07-05 12:09 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-05 12:08 [PATCH v1 00/14] ARM: OMAP5: Add minimal OMAP5 SOC support Santosh Shilimkar
2012-07-05 12:08 ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH v1 01/14] ARM: OMAP2+: Move stubbed secure_sram_reserve function to a common.c and call it __weak Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH 2/5] ARM: OMAP5: board-generic: Add device tree support Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH v1 02/14] ARM: OMAP: counter-32k: Select the CR register offset using the IP scheme Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH 3/5] arm/dts: OMAP5: Add omap5 dts files Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH v1 03/14] ARM: OMAP5: id: Add cpu id for ES versions Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 14:26   ` Tony Lindgren
2012-07-05 14:26     ` Tony Lindgren
2012-07-05 14:29     ` Shilimkar, Santosh
2012-07-05 14:29       ` Shilimkar, Santosh
2012-07-05 12:08 ` [PATCH v1 04/14] ARM: OMAP5: Add minimal support for OMAP5430 SOC Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 14:33   ` Tony Lindgren
2012-07-05 14:33     ` Tony Lindgren
2012-07-05 14:36     ` Shilimkar, Santosh
2012-07-05 14:36       ` Shilimkar, Santosh
2012-07-05 16:02       ` Tony Lindgren
2012-07-05 16:02         ` Tony Lindgren
2012-07-05 12:08 ` Santosh Shilimkar [this message]
2012-07-05 12:08   ` [PATCH 4/5] ARM: OMAP5: Add the build support Santosh Shilimkar
2012-07-05 12:08 ` [PATCH 5/5] ARM: Kconfig update to support additional GPIOs in OMAP5 Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH v1 05/14] ARM: OMAP5: timer: Add clocksource, clockevent support Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH v1 06/14] ARM: OMAP5: gpmc: Update gpmc_init() Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH v1 07/14] ARM: OMAP5: l3: Add l3 error handler support for omap5 Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH v1 08/14] ARM: OMAP5: Add the WakeupGen IP updates Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH v1 09/14] ARM: OMAP5: Add SMP support Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH v1 10/14] ARM: omap2+: board-generic: clean up the irq data from board file Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH v1 11/14] ARM: OMAP5: board-generic: Add device tree support Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH v1 12/14] arm/dts: OMAP5: Add omap5 dts files Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH v1 13/14] ARM: OMAP5: Add the build support Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:08 ` [PATCH v1 14/14] ARM: Kconfig update to support additional GPIOs in OMAP5 Santosh Shilimkar
2012-07-05 12:08   ` Santosh Shilimkar
2012-07-05 12:22 ` [PATCH v1 00/14] ARM: OMAP5: Add minimal OMAP5 SOC support Shilimkar, Santosh
2012-07-05 12:22   ` Shilimkar, Santosh

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=1341490136-25901-8-git-send-email-santosh.shilimkar@ti.com \
    --to=santosh.shilimkar@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=r.sricharan@ti.com \
    --cc=tony@atomide.com \
    /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 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.