blob: 0a3e3c7b0ada01648e075d864162fb12e7d054d0 [file] [log] [blame]
Alan Hourihane18ce40c2001-05-17 15:20:40 +00001/* sis_ds.h -- Private header for Direct Rendering Manager -*- linux-c -*-
2 * Created: Mon Jan 4 10:05:05 1999 by sclin@sis.com.tw
Eric Anholtc6344e82005-11-28 23:10:41 +00003 */
4/*
Alan Hourihane18ce40c2001-05-17 15:20:40 +00005 * Copyright 2000 Silicon Integrated Systems Corp, Inc., HsinChu, Taiwan.
6 * All rights reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
Jon Smirl9f9a8f12004-09-30 21:12:10 +000014 *
Alan Hourihane18ce40c2001-05-17 15:20:40 +000015 * The above copyright notice and this permission notice (including the next
16 * paragraph) shall be included in all copies or substantial portions of the
17 * Software.
Jon Smirl9f9a8f12004-09-30 21:12:10 +000018 *
Alan Hourihane18ce40c2001-05-17 15:20:40 +000019 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
23 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25 * DEALINGS IN THE SOFTWARE.
Jon Smirl9f9a8f12004-09-30 21:12:10 +000026 *
Alan Hourihane18ce40c2001-05-17 15:20:40 +000027 * Authors:
28 * Sung-Ching Lin <sclin@sis.com.tw>
Jon Smirl9f9a8f12004-09-30 21:12:10 +000029 *
Alan Hourihane18ce40c2001-05-17 15:20:40 +000030 */
31
Eric Anholtfabc64d2003-08-29 19:24:36 +000032#ifndef __SIS_DS_H__
33#define __SIS_DS_H__
Alan Hourihane18ce40c2001-05-17 15:20:40 +000034
35/* Set Data Structure */
36
37#define SET_SIZE 5000
Alan Hourihane18ce40c2001-05-17 15:20:40 +000038
Eric Anholt853adb82004-05-11 04:43:43 +000039typedef unsigned long ITEM_TYPE;
Alan Hourihane18ce40c2001-05-17 15:20:40 +000040
41typedef struct {
Eric Anholtfabc64d2003-08-29 19:24:36 +000042 ITEM_TYPE val;
43 int alloc_next, free_next;
Alan Hourihane18ce40c2001-05-17 15:20:40 +000044} list_item_t;
45
46typedef struct {
Eric Anholtfabc64d2003-08-29 19:24:36 +000047 int alloc;
48 int free;
49 int trace;
50 list_item_t list[SET_SIZE];
Alan Hourihane18ce40c2001-05-17 15:20:40 +000051} set_t;
52
53set_t *setInit(void);
Jon Smirl9f9a8f12004-09-30 21:12:10 +000054int setAdd(set_t * set, ITEM_TYPE item);
55int setDel(set_t * set, ITEM_TYPE item);
56int setFirst(set_t * set, ITEM_TYPE * item);
57int setNext(set_t * set, ITEM_TYPE * item);
58int setDestroy(set_t * set);
Alan Hourihane18ce40c2001-05-17 15:20:40 +000059
Alan Hourihane18ce40c2001-05-17 15:20:40 +000060/*
61 * GLX Hardware Device Driver common code
Keith Whitwell08758b22004-11-01 10:52:18 +000062 * Copyright (C) 1999 Wittawat Yamwong
Alan Hourihane18ce40c2001-05-17 15:20:40 +000063 *
64 * Permission is hereby granted, free of charge, to any person obtaining a
65 * copy of this software and associated documentation files (the "Software"),
66 * to deal in the Software without restriction, including without limitation
67 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
68 * and/or sell copies of the Software, and to permit persons to whom the
69 * Software is furnished to do so, subject to the following conditions:
70 *
71 * The above copyright notice and this permission notice shall be included
72 * in all copies or substantial portions of the Software.
73 *
74 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
75 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
76 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
Dave Airlieb2be72c2006-01-02 03:44:23 +000077 * WITTAWAT YAMWONG, OR ANY OTHER CONTRIBUTORS BE LIABLE FOR ANY CLAIM,
Jon Smirl9f9a8f12004-09-30 21:12:10 +000078 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
79 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
Alan Hourihane18ce40c2001-05-17 15:20:40 +000080 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
81 *
82 */
83
Alan Hourihane18ce40c2001-05-17 15:20:40 +000084struct mem_block_t {
Eric Anholtfabc64d2003-08-29 19:24:36 +000085 struct mem_block_t *next;
86 struct mem_block_t *heap;
Jon Smirl9f9a8f12004-09-30 21:12:10 +000087 int ofs, size;
Eric Anholtfabc64d2003-08-29 19:24:36 +000088 int align;
Dave Airlief1971102004-12-03 10:22:15 +000089 unsigned int free:1;
90 unsigned int reserved:1;
Alan Hourihane18ce40c2001-05-17 15:20:40 +000091};
92typedef struct mem_block_t TMemBlock;
93typedef struct mem_block_t *PMemBlock;
94
95/* a heap is just the first block in a chain */
96typedef struct mem_block_t memHeap_t;
97
98static __inline__ int mmBlockSize(PMemBlock b)
Eric Anholtfabc64d2003-08-29 19:24:36 +000099{
100 return b->size;
101}
Alan Hourihane18ce40c2001-05-17 15:20:40 +0000102
103static __inline__ int mmOffset(PMemBlock b)
Eric Anholtfabc64d2003-08-29 19:24:36 +0000104{
105 return b->ofs;
106}
Alan Hourihane18ce40c2001-05-17 15:20:40 +0000107
108static __inline__ void mmMarkReserved(PMemBlock b)
Eric Anholtfabc64d2003-08-29 19:24:36 +0000109{
110 b->reserved = 1;
111}
Alan Hourihane18ce40c2001-05-17 15:20:40 +0000112
Jon Smirl9f9a8f12004-09-30 21:12:10 +0000113/*
Alan Hourihane18ce40c2001-05-17 15:20:40 +0000114 * input: total size in bytes
115 * return: a heap pointer if OK, NULL if error
116 */
Jon Smirl9f9a8f12004-09-30 21:12:10 +0000117memHeap_t *mmInit(int ofs, int size);
Alan Hourihane18ce40c2001-05-17 15:20:40 +0000118
Alan Hourihane18ce40c2001-05-17 15:20:40 +0000119/*
120 * Allocate 'size' bytes with 2^align2 bytes alignment,
121 * restrict the search to free memory after 'startSearch'
122 * depth and back buffers should be in different 4mb banks
123 * to get better page hits if possible
124 * input: size = size of block
125 * align2 = 2^align2 bytes alignment
126 * startSearch = linear offset from start of heap to begin search
127 * return: pointer to the allocated block, 0 if error
128 */
Jon Smirl9f9a8f12004-09-30 21:12:10 +0000129PMemBlock mmAllocMem(memHeap_t * heap, int size, int align2, int startSearch);
Eric Anholtfabc64d2003-08-29 19:24:36 +0000130
131/*
132 * Returns 1 if the block 'b' is part of the heap 'heap'
133 */
Jon Smirl9f9a8f12004-09-30 21:12:10 +0000134int mmBlockInHeap(PMemBlock heap, PMemBlock b);
Alan Hourihane18ce40c2001-05-17 15:20:40 +0000135
136/*
137 * Free block starts at offset
138 * input: pointer to a block
139 * return: 0 if OK, -1 if error
140 */
Jon Smirl9f9a8f12004-09-30 21:12:10 +0000141int mmFreeMem(PMemBlock b);
Alan Hourihane18ce40c2001-05-17 15:20:40 +0000142
Alan Hourihane18ce40c2001-05-17 15:20:40 +0000143/* For debuging purpose. */
Jon Smirl9f9a8f12004-09-30 21:12:10 +0000144void mmDumpMemInfo(memHeap_t * mmInit);
Alan Hourihane18ce40c2001-05-17 15:20:40 +0000145
Jon Smirl9f9a8f12004-09-30 21:12:10 +0000146#endif /* __SIS_DS_H__ */