From patchwork Thu Jul 8 09:37:55 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Lindgren X-Patchwork-Id: 110805 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.4/8.14.3) with ESMTP id o689bxVV005056 for ; Thu, 8 Jul 2010 09:37:59 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755609Ab0GHJh6 (ORCPT ); Thu, 8 Jul 2010 05:37:58 -0400 Received: from mho-02-ewr.mailhop.org ([204.13.248.72]:56660 "EHLO mho-02-ewr.mailhop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754592Ab0GHJh5 (ORCPT ); Thu, 8 Jul 2010 05:37:57 -0400 Received: from muru.com ([72.249.23.125] helo=baageli.muru.com) by mho-02-ewr.mailhop.org with esmtpa (Exim 4.68) (envelope-from ) id 1OWnYK-0009VR-D9; Thu, 08 Jul 2010 09:37:56 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 72.249.23.125 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/mailhop/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX18qL4HvnKyk5/ECoOq0qxeS Subject: [PATCH 2/5] omap: Implement common omap_has_feature To: linux-omap@vger.kernel.org From: Tony Lindgren Cc: nm@ti.com Date: Thu, 08 Jul 2010 12:37:55 +0300 Message-ID: <20100708093755.16352.75290.stgit@baageli.muru.com> In-Reply-To: <20100708093405.16352.11814.stgit@baageli.muru.com> References: <20100708093405.16352.11814.stgit@baageli.muru.com> User-Agent: StGit/0.15 MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Thu, 08 Jul 2010 09:37:59 +0000 (UTC) diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index fd1904b..a2e5965 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c @@ -29,7 +29,9 @@ static struct omap_chip_id omap_chip; static unsigned int omap_revision; +static u32 omap_features; +/* REVISIT: Get rid of omap3_features */ u32 omap3_features; unsigned int omap_rev(void) @@ -112,6 +114,12 @@ void omap_get_die_id(struct omap_die_id *odi) odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_3); } +u32 omap2_has_feature(u32 feat_mask) +{ + /* REVISIT: Add necessary omap2 feature tests here */ + return ((feat_mask & omap_features) == feat_mask); +} + static void __init omap24xx_check_revision(void) { int i, j; @@ -164,6 +172,15 @@ static void __init omap24xx_check_revision(void) if ((omap_rev() >> 8) & 0x0f) pr_info("ES%x", (omap_rev() >> 12) & 0xf); pr_info("\n"); + + omap_features = 0; + omap_init_features(omap2_has_feature); +} + +u32 omap3_has_feature(u32 feat_mask) +{ + /* REVISIT: Add necessary omap3 feature tests here */ + return ((feat_mask & omap_features) == feat_mask); } #define OMAP3_CHECK_FEATURE(status,feat) \ @@ -194,6 +211,11 @@ static void __init omap3_check_features(void) * TODO: Get additional info (where applicable) * e.g. Size of L2 cache. */ + + /* REVISIT: Get rid of omap3_features */ + omap_features = omap3_features; + + omap_init_features(omap3_has_feature); } static void __init omap3_check_revision(void) @@ -277,6 +299,12 @@ static void __init omap3_check_revision(void) } } +u32 omap4_has_feature(u32 feat_mask) +{ + /* REVISIT: Add necessary omap4 feature tests here */ + return ((feat_mask & omap_features) == feat_mask); +} + static void __init omap4_check_revision(void) { u32 idcode; @@ -297,6 +325,10 @@ static void __init omap4_check_revision(void) omap_revision = OMAP4430_REV_ES1_0; omap_chip.oc |= CHIP_IS_OMAP4430ES1; pr_info("OMAP%04x %s\n", omap_rev() >> 16, rev_name); + + omap_features = 0; + omap_init_features(omap4_has_feature); + return; } diff --git a/arch/arm/plat-omap/common.c b/arch/arm/plat-omap/common.c index 893a53a..d00b242 100644 --- a/arch/arm/plat-omap/common.c +++ b/arch/arm/plat-omap/common.c @@ -89,6 +89,21 @@ void __init omap_reserve(void) omap_vram_reserve_sdram_lmb(); } +static int (*_omap_check_feature)(u32 feat_mask); + +u32 omap_has_feature(u32 feat_mask) +{ + if (!_omap_check_feature) + return 0; + + return _omap_check_feature(feat_mask); +} + +void __init omap_init_features(u32 (*check_feature)(u32 feat)) +{ + _omap_check_feature = check_feature; +} + /* * 32KHz clocksource ... always available, on pretty most chips except * OMAP 730 and 1510. Other timers could be used as clocksources, with diff --git a/arch/arm/plat-omap/include/plat/cpu.h b/arch/arm/plat-omap/include/plat/cpu.h index aa2f4f0..127df06 100644 --- a/arch/arm/plat-omap/include/plat/cpu.h +++ b/arch/arm/plat-omap/include/plat/cpu.h @@ -49,6 +49,9 @@ struct omap_chip_id { u8 type; }; +u32 omap_has_feature(u32 feat_mask); +void omap_init_features(u32 (*check_feature)(u32 feat)); + #define OMAP_CHIP_INIT(x) { .oc = x } /*