~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to drivers/gpu/pvr/sgxdefs.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**********************************************************************
 
2
 *
 
3
 * Copyright (C) Imagination Technologies Ltd. All rights reserved.
 
4
 * 
 
5
 * This program is free software; you can redistribute it and/or modify it
 
6
 * under the terms and conditions of the GNU General Public License,
 
7
 * version 2, as published by the Free Software Foundation.
 
8
 * 
 
9
 * This program is distributed in the hope it will be useful but, except 
 
10
 * as otherwise stated in writing, without any warranty; without even the 
 
11
 * implied warranty of merchantability or fitness for a particular purpose. 
 
12
 * See the GNU General Public License for more details.
 
13
 * 
 
14
 * You should have received a copy of the GNU General Public License along with
 
15
 * this program; if not, write to the Free Software Foundation, Inc.,
 
16
 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
 
17
 * 
 
18
 * The full GNU General Public License is included in this distribution in
 
19
 * the file called "COPYING".
 
20
 *
 
21
 * Contact Information:
 
22
 * Imagination Technologies Ltd. <gpl-support@imgtec.com>
 
23
 * Home Park Estate, Kings Langley, Herts, WD4 8LZ, UK 
 
24
 *
 
25
 ******************************************************************************/
 
26
 
 
27
#ifndef _SGXDEFS_H_
 
28
#define _SGXDEFS_H_
 
29
 
 
30
#include "sgxerrata.h"
 
31
#include "sgxfeaturedefs.h"
 
32
 
 
33
#if defined(SGX520)
 
34
#include "sgx520defs.h"
 
35
#else
 
36
#if defined(SGX530)
 
37
#include "sgx530defs.h"
 
38
#else
 
39
#if defined(SGX535)
 
40
#include "sgx535defs.h"
 
41
#else
 
42
#if defined(SGX535_V1_1)
 
43
#include "sgx535defs.h"
 
44
#else
 
45
#if defined(SGX540)
 
46
#include "sgx540defs.h"
 
47
#else
 
48
#if defined(SGX543)
 
49
#if defined(FIX_HW_BRN_29954)
 
50
#include "sgx543_v1.164defs.h"
 
51
#else
 
52
#include "sgx543defs.h"
 
53
#endif
 
54
#else
 
55
#if defined(SGX544)
 
56
#include "sgx544defs.h"
 
57
#else
 
58
#if defined(SGX545)
 
59
#include "sgx545defs.h"
 
60
#else
 
61
#if defined(SGX531)
 
62
#include "sgx531defs.h"
 
63
#else
 
64
#if defined(SGX554)
 
65
#include "sgx554defs.h"
 
66
#endif
 
67
#endif
 
68
#endif
 
69
#endif
 
70
#endif
 
71
#endif
 
72
#endif
 
73
#endif
 
74
#endif
 
75
#endif
 
76
 
 
77
#if defined(SGX_FEATURE_MP)
 
78
#if defined(SGX554)
 
79
#include "sgxmpplusdefs.h"
 
80
#else
 
81
#include "sgxmpdefs.h"
 
82
#endif 
 
83
#else 
 
84
#if defined(SGX_FEATURE_SYSTEM_CACHE)
 
85
#include "mnemedefs.h"
 
86
#endif
 
87
#endif 
 
88
 
 
89
#endif 
 
90