From patchwork Fri May 21 05:56:20 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: manjugk manjugk X-Patchwork-Id: 101294 X-Patchwork-Delegate: tony@atomide.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o4L5v9et024097 for ; Fri, 21 May 2010 05:57:09 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754878Ab0EUF5F (ORCPT ); Fri, 21 May 2010 01:57:05 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:54938 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754870Ab0EUF5D (ORCPT ); Fri, 21 May 2010 01:57:03 -0400 Received: from dbdp31.itg.ti.com ([172.24.170.98]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id o4L5uw2V017307 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 21 May 2010 00:57:00 -0500 Received: from localhost.localdomain (localhost [127.0.0.1]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id o4L5uqQX018463; Fri, 21 May 2010 11:26:53 +0530 (IST) From: Manjunatha GK To: linux-omap@vger.kernel.org Cc: Preshit Agarwal , Tony Lindgren , Kevin Hilman , Mike Turquette , Hemanth V Subject: [PATCH v5] OMAP3: Registering sgx device and it's platform data Date: Fri, 21 May 2010 11:26:20 +0530 Message-Id: <1274421380-27654-1-git-send-email-manjugk@ti.com> X-Mailer: git-send-email 1.7.0.4 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]); Fri, 21 May 2010 05:57:09 +0000 (UTC) diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 3d30f22..c46cfb3 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c @@ -26,6 +26,7 @@ #include #include #include +#include #include "mux.h" @@ -797,6 +798,23 @@ static inline void omap_hdq_init(void) {} /*---------------------------------------------------------------------------*/ +struct sgx_platform_data omap_sgx_data = { + .set_min_bus_tput = omap_pm_set_min_bus_tput, +}; + +static struct platform_device powervr_device = { + .name = "pvrsrvkm", + .id = -1, + .dev = { + .platform_data = &omap_sgx_data, + } +}; + +static void omap_init_sgx(void) +{ + (void) platform_device_register(&powervr_device); +} + #if defined(CONFIG_VIDEO_OMAP2_VOUT) || \ defined(CONFIG_VIDEO_OMAP2_VOUT_MODULE) #if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE) @@ -837,6 +855,8 @@ static int __init omap2_init_devices(void) omap_init_sti(); omap_init_sha1_md5(); omap_init_vout(); + if (omap3_has_sgx) + omap_init_sgx(); return 0; } diff --git a/arch/arm/mach-omap2/include/mach/omap_sgxdef.h b/arch/arm/mach-omap2/include/mach/omap_sgxdef.h new file mode 100644 index 0000000..5d90a6a --- /dev/null +++ b/arch/arm/mach-omap2/include/mach/omap_sgxdef.h @@ -0,0 +1,11 @@ +#ifndef OMAP_SGXDEF_H +#define OMAP_SGXDEF_H + +#include + +struct sgx_platform_data { + void(*set_min_bus_tput)(struct device *dev, u8 agent_id, + unsigned long r); +}; + +#endif