summaryrefslogtreecommitdiff
path: root/src/AtomBios/includes/CD_Structs.h
blob: 01fb80ec5b51547cc308cab962e4f49f68fae7b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
/*
 * Copyright 2006-2007 Advanced Micro Devices, Inc.  
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 */

/*++

Module Name:

CD_Struct.h

Abstract:

Defines Script Language commands

Revision History:

NEG:26.08.2002	Initiated.
--*/

#ifndef _CD_STRUCTS_H_
#define _CD_STRUCTS_H_

#include "CD_binding.h"

/* Endaianness should be specified before inclusion,
 * default to little endian
 */
#ifndef ATOM_BIG_ENDIAN
#error Endian not specified
#endif

#ifdef		UEFI_BUILD
typedef	UINT16**	PTABLE_UNIT_TYPE;
typedef	UINTN		TABLE_UNIT_TYPE;
#else
typedef	UINT16*		PTABLE_UNIT_TYPE;
typedef	UINT16		TABLE_UNIT_TYPE;
#endif

#include <regsdef.h> //This important file is dynamically generated based on the ASIC!!!!

#define PARSER_MAJOR_REVISION 5
#define PARSER_MINOR_REVISION 0

//#include "atombios.h"
#if (PARSER_TYPE==DRIVER_TYPE_PARSER)
#ifdef FGL_LINUX
#pragma pack(push,1)
#else
#pragma pack(push)
#pragma pack(1)
#endif
#endif

#include "CD_Common_Types.h"
#include "CD_Opcodes.h"
typedef UINT16				WORK_SPACE_SIZE;
typedef enum _CD_STATUS{
    CD_SUCCESS,
    CD_CALL_TABLE,
    CD_COMPLETED=0x10,
    CD_GENERAL_ERROR=0x80,
    CD_INVALID_OPCODE,
    CD_NOT_IMPLEMENTED,
    CD_EXEC_TABLE_NOT_FOUND,
    CD_EXEC_PARAMETER_ERROR,
    CD_EXEC_PARSER_ERROR,
    CD_INVALID_DESTINATION_TYPE,
    CD_UNEXPECTED_BEHAVIOR,
    CD_INVALID_SWITCH_OPERAND_SIZE
}CD_STATUS;

#define PARSER_STRINGS                  0
#define PARSER_DEC                      1
#define PARSER_HEX                      2

#define DB_CURRENT_COMMAND_TABLE	0xFF

#define TABLE_FORMAT_BIOS		0
#define TABLE_FORMAT_EASF		1

#define EASF_TABLE_INDEX_MASK		0xfc
#define EASF_TABLE_ATTR_MASK		0x03

#define CD_ERROR(a)    (((INTN) (a)) > CD_COMPLETED)
#define CD_ERROR_OR_COMPLETED(a)    (((INTN) (a)) > CD_SUCCESS)


#if (BIOS_PARSER==1)
#ifdef _H2INC
#define STACK_BASED
#else
extern __segment farstack;
#define STACK_BASED __based(farstack)
#endif
#else
#define STACK_BASED
#endif

typedef enum _COMPARE_FLAGS{
    Below,
    Equal,
    Above,
    NotEqual,
    Overflow,
    NoCondition
}COMPARE_FLAGS;

typedef UINT16 IO_BASE_ADDR;

typedef struct _BUS_DEV_FUNC_PCI_ADDR{
    UINT8   Register;
    UINT8   Function;
    UINT8   Device;
    UINT8   Bus;
} BUS_DEV_FUNC_PCI_ADDR;

typedef struct _BUS_DEV_FUNC{
    UINT8   Function : 3;
    UINT8   Device   : 5;
    UINT8   Bus;
} BUS_DEV_FUNC;

#ifndef	UEFI_BUILD
typedef struct _PCI_CONFIG_ACCESS_CF8{
    UINT32  Reg     : 8;
    UINT32  Func    : 3;
    UINT32  Dev     : 5;
    UINT32  Bus     : 8;
    UINT32  Reserved: 7;
    UINT32  Enable  : 1;
} PCI_CONFIG_ACCESS_CF8;
#endif

typedef enum _MEM_RESOURCE {
    Stack_Resource,
    FrameBuffer_Resource,
    BIOS_Image_Resource
}MEM_RESOURCE;

typedef enum _PORTS{
    ATI_RegsPort,
    PCI_Port,
    SystemIO_Port
}PORTS;

typedef enum _OPERAND_TYPE {
    typeRegister,
    typeParamSpace,
    typeWorkSpace,
    typeFrameBuffer,
    typeIndirect,
    typeDirect,
    typePLL,
    typeMC
}OPERAND_TYPE;

typedef enum _DESTINATION_OPERAND_TYPE {
    destRegister,
    destParamSpace,
    destWorkSpace,
    destFrameBuffer,
    destPLL,
    destMC
}DESTINATION_OPERAND_TYPE;

typedef enum _SOURCE_OPERAND_TYPE {
    sourceRegister,
    sourceParamSpace,
    sourceWorkSpace,
    sourceFrameBuffer,
    sourceIndirect,
    sourceDirect,
    sourcePLL,
    sourceMC
}SOURCE_OPERAND_TYPE;

typedef enum _ALIGNMENT_TYPE {
    alignmentDword,
    alignmentLowerWord,
    alignmentMiddleWord,
    alignmentUpperWord,
    alignmentByte0,
    alignmentByte1,
    alignmentByte2,
    alignmentByte3
}ALIGNMENT_TYPE;


#define INDIRECT_IO_READ    0
#define INDIRECT_IO_WRITE   0x80
#define INDIRECT_IO_MM      0
#define INDIRECT_IO_PLL     1
#define INDIRECT_IO_MC      2

typedef struct _PARAMETERS_TYPE{
    UINT8	Destination;
    UINT8	Source;
}PARAMETERS_TYPE;
/* The following structures don't used to allocate any type of objects(variables).
   they are serve the only purpose: Get proper access to data(commands), found in the tables*/
typedef struct _PA_BYTE_BYTE{
    UINT8		PA_Destination;
    UINT8		PA_Source;
    UINT8		PA_Padding[8];
}PA_BYTE_BYTE;
typedef struct _PA_BYTE_WORD{
    UINT8		PA_Destination;
    UINT16		PA_Source;
    UINT8		PA_Padding[7];
}PA_BYTE_WORD;
typedef struct _PA_BYTE_DWORD{
    UINT8		PA_Destination;
    UINT32		PA_Source;
    UINT8		PA_Padding[5];
}PA_BYTE_DWORD;
typedef struct _PA_WORD_BYTE{
    UINT16		PA_Destination;
    UINT8		PA_Source;
    UINT8		PA_Padding[7];
}PA_WORD_BYTE;
typedef struct _PA_WORD_WORD{
    UINT16		PA_Destination;
    UINT16		PA_Source;
    UINT8		PA_Padding[6];
}PA_WORD_WORD;
typedef struct _PA_WORD_DWORD{
    UINT16		PA_Destination;
    UINT32		PA_Source;
    UINT8		PA_Padding[4];
}PA_WORD_DWORD;
typedef struct _PA_WORD_XX{
    UINT16		PA_Destination;
    UINT8		PA_Padding[8];
}PA_WORD_XX;
typedef struct _PA_BYTE_XX{
    UINT8		PA_Destination;
    UINT8		PA_Padding[9];
}PA_BYTE_XX;
/*The following 6 definitions used for Mask operation*/
typedef struct _PA_BYTE_BYTE_BYTE{
    UINT8		PA_Destination;
    UINT8		PA_AndMaskByte;
    UINT8		PA_OrMaskByte;
    UINT8		PA_Padding[7];
}PA_BYTE_BYTE_BYTE;
typedef struct _PA_BYTE_WORD_WORD{
    UINT8		PA_Destination;
    UINT16		PA_AndMaskWord;
    UINT16		PA_OrMaskWord;
    UINT8		PA_Padding[5];
}PA_BYTE_WORD_WORD;
typedef struct _PA_BYTE_DWORD_DWORD{
    UINT8		PA_Destination;
    UINT32		PA_AndMaskDword;
    UINT32		PA_OrMaskDword;
    UINT8		PA_Padding;
}PA_BYTE_DWORD_DWORD;
typedef struct _PA_WORD_BYTE_BYTE{
    UINT16		PA_Destination;
    UINT8		PA_AndMaskByte;
    UINT8		PA_OrMaskByte;
    UINT8		PA_Padding[6];
}PA_WORD_BYTE_BYTE;
typedef struct _PA_WORD_WORD_WORD{
    UINT16		PA_Destination;
    UINT16		PA_AndMaskWord;
    UINT16		PA_OrMaskWord;
    UINT8		PA_Padding[4];
}PA_WORD_WORD_WORD;
typedef struct _PA_WORD_DWORD_DWORD{
    UINT16		PA_Destination;
    UINT32		PA_AndMaskDword;
    UINT32		PA_OrMaskDword;
}PA_WORD_DWORD_DWORD;


typedef union _PARAMETER_ACCESS {
    PA_BYTE_XX			ByteXX;
    PA_BYTE_BYTE		ByteByte;
    PA_BYTE_WORD		ByteWord;
    PA_BYTE_DWORD		ByteDword;
    PA_WORD_BYTE		WordByte;
    PA_WORD_WORD		WordWord;
    PA_WORD_DWORD		WordDword;
    PA_WORD_XX			WordXX;
/*The following 6 definitions used for Mask operation*/
    PA_BYTE_BYTE_BYTE	ByteByteAndByteOr;
    PA_BYTE_WORD_WORD	ByteWordAndWordOr;
    PA_BYTE_DWORD_DWORD	ByteDwordAndDwordOr;
    PA_WORD_BYTE_BYTE	WordByteAndByteOr;
    PA_WORD_WORD_WORD	WordWordAndWordOr;
    PA_WORD_DWORD_DWORD	WordDwordAndDwordOr;
}PARAMETER_ACCESS;

typedef	struct _COMMAND_ATTRIBUTE {
#if ATOM_BIG_ENDIAN
    UINT8		DestinationAlignment:2;
    UINT8		SourceAlignment:3;
    UINT8		Source:3;
#else
    UINT8		Source:3;
    UINT8		SourceAlignment:3;
    UINT8		DestinationAlignment:2;
#endif
}COMMAND_ATTRIBUTE;

typedef struct _SOURCE_DESTINATION_ALIGNMENT{
    UINT8					DestAlignment;
    UINT8					SrcAlignment;
}SOURCE_DESTINATION_ALIGNMENT;
typedef struct _MULTIPLICATION_RESULT{
    UINT32									Low32Bit;
    UINT32									High32Bit;
}MULTIPLICATION_RESULT;
typedef struct _DIVISION_RESULT{
    UINT32									Quotient32;
    UINT32									Reminder32;
}DIVISION_RESULT;
typedef union _DIVISION_MULTIPLICATION_RESULT{
    MULTIPLICATION_RESULT		Multiplication;
    DIVISION_RESULT					Division;
}DIVISION_MULTIPLICATION_RESULT;
typedef struct _COMMAND_HEADER {
    UINT8					Opcode;
    COMMAND_ATTRIBUTE		Attribute;
}COMMAND_HEADER;

typedef struct _GENERIC_ATTRIBUTE_COMMAND{
    COMMAND_HEADER			Header;
    PARAMETER_ACCESS		Parameters;
} GENERIC_ATTRIBUTE_COMMAND;

typedef struct	_COMMAND_TYPE_1{
    UINT8					Opcode;
    PARAMETER_ACCESS		Parameters;
} COMMAND_TYPE_1;

typedef struct	_COMMAND_TYPE_OPCODE_OFFSET16{
    UINT8					Opcode;
    UINT16					CD_Offset16;
} COMMAND_TYPE_OPCODE_OFFSET16;

typedef struct	_COMMAND_TYPE_OPCODE_OFFSET32{
    UINT8					Opcode;
    UINT32					CD_Offset32;
} COMMAND_TYPE_OPCODE_OFFSET32;

typedef struct	_COMMAND_TYPE_OPCODE_VALUE_BYTE{
    UINT8					Opcode;
    UINT8					Value;
} COMMAND_TYPE_OPCODE_VALUE_BYTE;

typedef union  _COMMAND_SPECIFIC_UNION{
    UINT8	ContinueSwitch;
    UINT8	ControlOperandSourcePosition;
    UINT8	IndexInMasterTable;
} COMMAND_SPECIFIC_UNION;


typedef struct _CD_GENERIC_BYTE{
#if ATOM_BIG_ENDIAN
    UINT16					PS_SizeInDwordsUsedByCallingTable:5;
    UINT16					CurrentPort:2;
    UINT16					CommandAccessType:3;
    UINT16					CurrentParameterSize:3;
    UINT16					CommandType:3;
#else
    UINT16					CommandType:3;
    UINT16					CurrentParameterSize:3;
    UINT16					CommandAccessType:3;
    UINT16					CurrentPort:2;
    UINT16					PS_SizeInDwordsUsedByCallingTable:5;
#endif
}CD_GENERIC_BYTE;

typedef UINT8	COMMAND_TYPE_OPCODE_ONLY;

typedef UINT8  COMMAND_HEADER_POINTER;


#if (PARSER_TYPE==BIOS_TYPE_PARSER)

typedef struct _DEVICE_DATA	{
    UINT32	STACK_BASED		*pParameterSpace;
    UINT8									*pBIOS_Image;
    UINT8							format;
#if (IO_INTERFACE==PARSER_INTERFACE)
    IO_BASE_ADDR					IOBase;
#endif
}  DEVICE_DATA;

#else

typedef struct _DEVICE_DATA	{
    UINT32							*pParameterSpace;
    VOID								*CAIL;
    UINT8 							*pBIOS_Image;
    UINT32							format;
} DEVICE_DATA;

#endif

struct _PARSER_TEMP_DATA;
typedef UINT32 WORKSPACE_POINTER;

struct	_WORKING_TABLE_DATA{
    UINT8																		* pTableHead;
    COMMAND_HEADER_POINTER									* IP;			// Commands pointer
    WORKSPACE_POINTER	STACK_BASED						* pWorkSpace;
    struct _WORKING_TABLE_DATA STACK_BASED  * prevWorkingTableData;
};



typedef struct	_PARSER_TEMP_DATA{
    DEVICE_DATA	STACK_BASED							*pDeviceData;
    struct _WORKING_TABLE_DATA STACK_BASED		*pWorkingTableData;
    UINT32															SourceData32;
    UINT32															DestData32;
    DIVISION_MULTIPLICATION_RESULT			MultiplicationOrDivision;
    UINT32															Index;
    UINT32					                    CurrentFB_Window;
    UINT32					                    IndirectData;
    UINT16															CurrentRegBlock;
    TABLE_UNIT_TYPE													CurrentDataBlock;
    UINT16                              AttributesData;
//  UINT8                               *IndirectIOTable;
    UINT8                               *IndirectIOTablePointer;
    GENERIC_ATTRIBUTE_COMMAND						*pCmd;			//CurrentCommand;
    SOURCE_DESTINATION_ALIGNMENT  			CD_Mask;
    PARAMETERS_TYPE											ParametersType;
    CD_GENERIC_BYTE											Multipurpose;
    UINT8																CompareFlags;
    COMMAND_SPECIFIC_UNION							CommandSpecific;
    CD_STATUS														Status;
    UINT8                               Shift2MaskConverter;
    UINT8															  CurrentPortID;
} PARSER_TEMP_DATA;


typedef struct _WORKING_TABLE_DATA  WORKING_TABLE_DATA;



typedef VOID (*COMMANDS_DECODER)(PARSER_TEMP_DATA STACK_BASED * pParserTempData);
typedef VOID (*WRITE_IO_FUNCTION)(PARSER_TEMP_DATA STACK_BASED * pParserTempData);
typedef UINT32 (*READ_IO_FUNCTION)(PARSER_TEMP_DATA STACK_BASED * pParserTempData);
typedef UINT32 (*CD_GET_PARAMETERS)(PARSER_TEMP_DATA STACK_BASED * pParserTempData);

typedef struct _COMMANDS_PROPERTIES
{
    COMMANDS_DECODER  function;
    UINT8             destination;
    UINT8             headersize;
} COMMANDS_PROPERTIES;

typedef struct _INDIRECT_IO_PARSER_COMMANDS
{
    COMMANDS_DECODER  func;
    UINT8             csize;
} INDIRECT_IO_PARSER_COMMANDS;

#if (PARSER_TYPE==DRIVER_TYPE_PARSER)
#pragma pack(pop)
#endif

#endif