gpu: pvr: pdumpfs: add Kconfig and debugfs pdump mode handling
[sgx.git] / pvr / sgxconfig.h
1 /**********************************************************************
2  *
3  * Copyright(c) 2008 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 __SGXCONFIG_H__
28 #define __SGXCONFIG_H__
29
30 #define DEV_DEVICE_TYPE                                 PVRSRV_DEVICE_TYPE_SGX
31 #define DEV_DEVICE_CLASS                                PVRSRV_DEVICE_CLASS_3D
32
33 #define DEV_MAJOR_VERSION                               1
34 #define DEV_MINOR_VERSION                               0
35
36 #define SGX_GENERAL_HEAP_BASE                           0x01800000
37 #define SGX_GENERAL_HEAP_SIZE                           (0x06C00000-0x00001000)
38
39 #define SGX_3DPARAMETERS_HEAP_BASE                      0x08400000
40 #define SGX_3DPARAMETERS_HEAP_SIZE                      (0x04000000-0x00001000)
41
42 #define SGX_TADATA_HEAP_BASE                            0x0C400000
43 #define SGX_TADATA_HEAP_SIZE                            (0x01000000-0x00001000)
44
45 #define SGX_SYNCINFO_HEAP_BASE                          0x0D400000
46 #define SGX_SYNCINFO_HEAP_SIZE                          (0x00400000-0x00001000)
47
48 #define SGX_PDSPIXEL_CODEDATA_HEAP_BASE                 0x0D800000
49 #define SGX_PDSPIXEL_CODEDATA_HEAP_SIZE                 (0x00800000-0x00001000)
50
51 #define SGX_PDSVERTEX_CODEDATA_HEAP_BASE                0x0E000000
52 #define SGX_PDSVERTEX_CODEDATA_HEAP_SIZE                (0x00800000-0x00001000)
53
54 #define SGX_RESERVED_CODE_HEAP_BASE                     0x0E800000
55 #define SGX_RESERVED_CODE_HEAP_SIZE                     (0x00080000-0x00001000)
56
57 #define SGX_KERNEL_CODE_HEAP_BASE                       0x0EC00000
58 #define SGX_KERNEL_CODE_HEAP_SIZE                       (0x00080000-0x00001000)
59
60 #define SGX_KERNEL_DATA_HEAP_BASE                       0x0F000000
61 #define SGX_KERNEL_DATA_HEAP_SIZE                       (0x00400000-0x00001000)
62
63 #define SGX_PIXELSHADER_HEAP_BASE                       0x0F400000
64 #define SGX_PIXELSHADER_HEAP_SIZE                       (0x00500000-0x00001000)
65
66 #define SGX_VERTEXSHADER_HEAP_BASE                      0x0FC00000
67 #define SGX_VERTEXSHADER_HEAP_SIZE                      (0x00200000-0x00001000)
68
69 #define SGX_CORE_IDENTIFIED
70
71 #if !defined(SGX_CORE_IDENTIFIED)
72 #error "sgxconfig.h: ERROR: unspecified SGX Core version"
73 #endif
74
75 #endif