Subversion Repositories Kolibri OS

Rev

Rev 7121 | Rev 7124 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2288 clevermous 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
5360 serge 3
;; Copyright (C) KolibriOS team 2004-2015. All rights reserved. ;;
2288 clevermous 4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
8
$Revision: 7122 $
9
 
10
 
11
dpl0    equ  10010000b     ; data read       dpl0
12
drw0    equ  10010010b      ; data read/write dpl0
13
drw3    equ  11110010b      ; data read/write dpl3
14
cpl0    equ  10011010b      ; code read dpl0
15
cpl3    equ  11111010b      ; code read dpl3
16
 
17
D32     equ  01000000b      ; 32bit segment
18
G32     equ  10000000b      ; page gran
19
 
20
 
21
;;;;;;;;;;;;cpu_caps flags;;;;;;;;;;;;;;;;
22
 
23
CPU_386        equ 3
24
CPU_486        equ 4
25
CPU_PENTIUM    equ 5
26
CPU_P6         equ 6
27
CPU_PENTIUM4   equ 0x0F
28
 
29
CAPS_FPU       equ    00 ;on-chip x87 floating point unit
30
CAPS_VME       equ    01 ;virtual-mode enhancements
31
CAPS_DE        equ    02 ;debugging extensions
32
CAPS_PSE       equ    03 ;page-size extensions
33
CAPS_TSC       equ    04 ;time stamp counter
34
CAPS_MSR       equ    05 ;model-specific registers
35
CAPS_PAE       equ    06 ;physical-address extensions
36
CAPS_MCE       equ    07 ;machine check exception
37
CAPS_CX8       equ    08 ;CMPXCHG8B instruction
38
CAPS_APIC      equ    09 ;on-chip advanced programmable
39
                         ; interrupt controller
40
;                     10 ;unused
41
CAPS_SEP       equ    11 ;SYSENTER and SYSEXIT instructions
42
CAPS_MTRR      equ    12 ;memory-type range registers
43
CAPS_PGE       equ    13 ;page global extension
44
CAPS_MCA       equ    14 ;machine check architecture
45
CAPS_CMOV      equ    15 ;conditional move instructions
46
CAPS_PAT       equ    16 ;page attribute table
47
 
48
CAPS_PSE36     equ    17 ;page-size extensions
49
CAPS_PSN       equ    18 ;processor serial number
50
CAPS_CLFLUSH   equ    19 ;CLFUSH instruction
51
 
52
CAPS_DS        equ    21 ;debug store
53
CAPS_ACPI      equ    22 ;thermal monitor and software
54
                         ;controlled clock supported
55
CAPS_MMX       equ    23 ;MMX instructions
56
CAPS_FXSR      equ    24 ;FXSAVE and FXRSTOR instructions
57
CAPS_SSE       equ    25 ;SSE instructions
58
CAPS_SSE2      equ    26 ;SSE2 instructions
59
CAPS_SS        equ    27 ;self-snoop
60
CAPS_HTT       equ    28 ;hyper-threading technology
61
CAPS_TM        equ    29 ;thermal monitor supported
62
CAPS_IA64      equ    30 ;IA64 capabilities
63
CAPS_PBE       equ    31 ;pending break enable
64
 
65
;ecx
66
CAPS_SSE3      equ    32 ;SSE3 instructions
67
;                     33
68
;                     34
69
CAPS_MONITOR   equ    35 ;MONITOR/MWAIT instructions
70
CAPS_DS_CPL    equ    36 ;
71
CAPS_VMX       equ    37 ;virtual mode extensions
72
;                     38 ;
73
CAPS_EST       equ    39 ;enhansed speed step
74
CAPS_TM2       equ    40 ;thermal monitor2 supported
75
;                     41
76
CAPS_CID       equ    42 ;
77
;                     43
78
;                     44
79
CAPS_CX16      equ    45 ;CMPXCHG16B instruction
80
CAPS_xTPR      equ    46 ;
81
;
82
;reserved
83
;
84
;ext edx /ecx
85
CAPS_SYSCAL    equ    64 ;
86
CAPS_XD        equ    65 ;execution disable
87
CAPS_FFXSR     equ    66 ;
88
CAPS_RDTSCP    equ    67 ;
89
CAPS_X64       equ    68 ;
90
CAPS_3DNOW     equ    69 ;
91
CAPS_3DNOWEXT  equ    70 ;
92
CAPS_LAHF      equ    71 ;
93
CAPS_CMP_LEG   equ    72 ;
94
CAPS_SVM       equ    73 ;secure virual machine
95
CAPS_ALTMOVCR8 equ    74 ;
96
 
97
; CPU MSR names
98
MSR_SYSENTER_CS         equ     0x174
99
MSR_SYSENTER_ESP        equ     0x175
100
MSR_SYSENTER_EIP        equ     0x176
5360 serge 101
MSR_CR_PAT              equ     0x277
102
MSR_MTRR_DEF_TYPE       equ     0x2FF
103
 
2288 clevermous 104
MSR_AMD_EFER            equ     0xC0000080      ; Extended Feature Enable Register
105
MSR_AMD_STAR            equ     0xC0000081      ; SYSCALL/SYSRET Target Address Register
106
 
107
CR0_PE         equ    0x00000001   ;protected mode
108
CR0_MP         equ    0x00000002   ;monitor fpu
109
CR0_EM         equ    0x00000004   ;fpu emulation
110
CR0_TS         equ    0x00000008   ;task switch
111
CR0_ET         equ    0x00000010   ;extension type hardcoded to 1
112
CR0_NE         equ    0x00000020   ;numeric error
113
CR0_WP         equ    0x00010000   ;write protect
114
CR0_AM         equ    0x00040000   ;alignment check
115
CR0_NW         equ    0x20000000   ;not write-through
116
CR0_CD         equ    0x40000000   ;cache disable
117
CR0_PG         equ    0x80000000   ;paging
118
 
119
 
120
CR4_VME        equ    0x0001
121
CR4_PVI        equ    0x0002
122
CR4_TSD        equ    0x0004
123
CR4_DE         equ    0x0008
124
CR4_PSE        equ    0x0010
125
CR4_PAE        equ    0x0020
126
CR4_MCE        equ    0x0040
127
CR4_PGE        equ    0x0080
128
CR4_PCE        equ    0x0100
129
CR4_OSFXSR     equ    0x0200
130
CR4_OSXMMEXPT  equ    0x0400
131
 
132
SSE_IE         equ    0x0001
133
SSE_DE         equ    0x0002
134
SSE_ZE         equ    0x0004
135
SSE_OE         equ    0x0008
136
SSE_UE         equ    0x0010
137
SSE_PE         equ    0x0020
138
SSE_DAZ        equ    0x0040
139
SSE_IM         equ    0x0080
140
SSE_DM         equ    0x0100
141
SSE_ZM         equ    0x0200
142
SSE_OM         equ    0x0400
143
SSE_UM         equ    0x0800
144
SSE_PM         equ    0x1000
145
SSE_FZ         equ    0x8000
146
 
147
SSE_INIT equ (SSE_IM+SSE_DM+SSE_ZM+SSE_OM+SSE_UM+SSE_PM)
148
 
149
IRQ_PIC        equ    0
150
IRQ_APIC       equ    1
151
 
2381 hidnplayr 152
struct  TSS
153
        _back       rw 2
154
        _esp0       rd 1
155
        _ss0        rw 2
156
        _esp1       rd 1
157
        _ss1        rw 2
158
        _esp2       rd 1
159
        _ss2        rw 2
160
        _cr3        rd 1
161
        _eip        rd 1
162
        _eflags     rd 1
163
        _eax        rd 1
164
        _ecx        rd 1
165
        _edx        rd 1
166
        _ebx        rd 1
167
        _esp        rd 1
168
        _ebp        rd 1
169
        _esi        rd 1
170
        _edi        rd 1
171
        _es         rw 2
172
        _cs         rw 2
173
        _ss         rw 2
174
        _ds         rw 2
175
        _fs         rw 2
176
        _gs         rw 2
177
        _ldt        rw 2
178
        _trap       rw 1
179
        _io         rw 1
180
                    rb 24
181
        _io_map_0   rb 4096
182
        _io_map_1   rb 4096
183
ends
2288 clevermous 184
 
4700 mario79 185
DRIVE_DATA_SIZE     equ 16
3627 Serge 186
 
2288 clevermous 187
OS_BASE             equ 0x80000000
188
 
189
window_data         equ (OS_BASE+0x0001000)
190
 
191
CURRENT_TASK        equ (OS_BASE+0x0003000)
192
TASK_COUNT          equ (OS_BASE+0x0003004)
193
TASK_BASE           equ (OS_BASE+0x0003010)
194
TASK_DATA           equ (OS_BASE+0x0003020)
195
TASK_EVENT          equ (OS_BASE+0x0003020)
196
 
3732 Serge 197
CDDataBuf           equ (OS_BASE+0x0005000)
198
 
199
;unused                 0x6000 - 0x8fff
200
 
201
BOOT_VARS           equ (OS_BASE)               ;0x9000
202
 
2288 clevermous 203
idts                equ (OS_BASE+0x000B100)
204
WIN_STACK           equ (OS_BASE+0x000C000)
205
WIN_POS             equ (OS_BASE+0x000C400)
3727 Serge 206
FDD_BUFF            equ (OS_BASE+0x000D000)     ;512
2288 clevermous 207
 
208
WIN_TEMP_XY         equ (OS_BASE+0x000F300)
209
KEY_COUNT           equ (OS_BASE+0x000F400)
4588 mario79 210
KEY_BUFF            equ (OS_BASE+0x000F401) ; 120*2 + 2*2 = 244 bytes, actually 255 bytes
2288 clevermous 211
 
212
BTN_COUNT           equ (OS_BASE+0x000F500)
213
BTN_BUFF            equ (OS_BASE+0x000F501)
214
 
215
 
216
BTN_ADDR            equ (OS_BASE+0x000FE88)
217
MEM_AMOUNT          equ (OS_BASE+0x000FE8C)
218
 
219
SYS_SHUTDOWN        equ (OS_BASE+0x000FF00)
220
TASK_ACTIVATE       equ (OS_BASE+0x000FF01)
221
 
2513 mario79 222
 
2288 clevermous 223
TMP_STACK_TOP       equ 0x006CC00
224
 
5130 serge 225
sys_proc            equ (OS_BASE+0x006F000)
2288 clevermous 226
 
227
SLOT_BASE           equ (OS_BASE+0x0080000)
228
 
229
VGABasePtr          equ (OS_BASE+0x00A0000)
230
 
3727 Serge 231
CLEAN_ZONE          equ (_CLEAN_ZONE-OS_BASE)
232
 
2288 clevermous 233
UPPER_KERNEL_PAGES  equ (OS_BASE+0x0400000)
234
 
235
virtual at              (OS_BASE+0x05FFF80)
236
  tss  TSS
237
end virtual
238
 
239
HEAP_BASE           equ (OS_BASE+0x0800000)
240
HEAP_MIN_SIZE       equ 0x01000000
241
 
242
page_tabs           equ 0xFDC00000
243
app_page_tabs       equ 0xFDC00000
244
kernel_tabs         equ (page_tabs+ (OS_BASE shr 10))   ;0xFDE00000
245
master_tab          equ (page_tabs+ (page_tabs shr 10)) ;0xFDFF70000
246
 
247
LFB_BASE            equ 0xFE000000
248
 
249
 
250
new_app_base        equ 0;
251
 
252
twdw                equ 0x2000   ;(CURRENT_TASK-window_data)
253
 
254
std_application_base_address   equ new_app_base
3539 clevermous 255
RING0_STACK_SIZE    equ (0x2000 - 512)    ;512 байт для контекста FPU
2288 clevermous 256
 
257
REG_SS              equ (RING0_STACK_SIZE-4)
258
REG_APP_ESP         equ (RING0_STACK_SIZE-8)
259
REG_EFLAGS          equ (RING0_STACK_SIZE-12)
260
REG_CS              equ (RING0_STACK_SIZE-16)
261
REG_EIP             equ (RING0_STACK_SIZE-20)
262
REG_EAX             equ (RING0_STACK_SIZE-24)
263
REG_ECX             equ (RING0_STACK_SIZE-28)
264
REG_EDX             equ (RING0_STACK_SIZE-32)
265
REG_EBX             equ (RING0_STACK_SIZE-36)
266
REG_ESP             equ (RING0_STACK_SIZE-40)  ;RING0_STACK_SIZE-20
267
REG_EBP             equ (RING0_STACK_SIZE-44)
268
REG_ESI             equ (RING0_STACK_SIZE-48)
269
REG_EDI             equ (RING0_STACK_SIZE-52)
270
REG_RET             equ (RING0_STACK_SIZE-56)  ;irq0.return
271
 
272
 
5130 serge 273
PAGE_SIZE           equ 4096
274
 
2288 clevermous 275
PG_UNMAP            equ 0x000
5356 serge 276
PG_READ             equ 0x001
2288 clevermous 277
PG_WRITE            equ 0x002
5356 serge 278
PG_USER             equ 0x004
279
PG_PCD              equ 0x008
280
PG_PWT              equ 0x010
5360 serge 281
PG_ACCESSED         equ 0x020
282
PG_DIRTY            equ 0x040
283
PG_PAT              equ 0x080
2288 clevermous 284
PG_GLOBAL           equ 0x100
285
PG_SHARED           equ 0x200
286
 
5356 serge 287
PG_SWR              equ 0x003 ; (PG_WRITE+PG_READ)
288
PG_UR               equ 0x005 ; (PG_USER+PG_READ)
289
PG_UWR              equ 0x007 ; (PG_USER+PG_WRITE+PG_READ)
290
PG_NOCACHE          equ 0x018 ; (PG_PCD+PG_PWT)
291
 
292
PDE_LARGE           equ 0x080
293
 
5360 serge 294
PAT_WB              equ 0x000
295
PAT_WC              equ 0x008
296
PAT_UCM             equ 0x010
297
PAT_UC              equ 0x018
298
 
299
PAT_TYPE_UC         equ 0
300
PAT_TYPE_WC         equ 1
301
PAT_TYPE_WB         equ 6
302
PAT_TYPE_UCM        equ 7
303
 
304
PAT_VALUE           equ 0x00070106; (UC<<24)|(UCM<<16)|(WC<<8)|WB
305
 
2288 clevermous 306
;;;;;;;;;;;boot time variables
307
 
2466 Serge 308
BOOT_BPP            equ 0x9000    ;byte   bits per pixel
309
BOOT_PITCH          equ 0x9001    ;word   scanline length
2288 clevermous 310
BOOT_VESA_MODE      equ 0x9008    ;word   vesa video mode
2466 Serge 311
BOOT_X_RES          equ 0x900A    ;word   X res
312
BOOT_Y_RES          equ 0x900C    ;word   Y res
2288 clevermous 313
BOOT_BANK_SW        equ 0x9014    ;dword  Vesa 1.2 pm bank switch
314
BOOT_LFB            equ 0x9018    ;dword  Vesa 2.0 LFB address
315
BOOT_MTRR           equ 0x901C    ;byte   0 or 1 : enable MTRR graphics acceleration
7122 dunkaist 316
BOOT_LAUNCHER_START equ 0x901D    ;byte   (0 or 1) start the first app (right now it's LAUNCHER) after kernel is loaded?
3777 yogev_ezra 317
BOOT_DEBUG_PRINT    equ 0x901E    ;byte   If nonzero, duplicates debug output to the screen.
7122 dunkaist 318
BOOT_DMA            equ 0x901F    ;byte   DMA write : 1=yes, 2=no
2288 clevermous 319
BOOT_PCI_DATA       equ 0x9020    ;8bytes pci data
7121 dunkaist 320
BOOT_SHUTDOWN_TYPE  equ 0x9030    ;byte   shutdown type (see sysfn 18.9)
2288 clevermous 321
BOOT_MEM_AMOUNT     equ 0x9034    ;dword  memory amount
322
 
2466 Serge 323
BOOT_APM_ENTRY      equ 0x9040
324
BOOT_APM_VERSION    equ 0x9044
7122 dunkaist 325
BOOT_APM_FLAGS      equ 0x9046
2466 Serge 326
BOOT_APM_CODE_32    equ 0x9050
327
BOOT_APM_CODE_16    equ 0x9052
328
BOOT_APM_DATA_16    equ 0x9054
329
 
7122 dunkaist 330
BOOT_BIOS_HD_CNT     equ 0x907F   ; byte   number of BIOS hard disks
331
BOOT_BIOS_HD         equ 0x9080   ; Nbytes BIOS hard disks
332
BOOT_MEMMAP_BLOCK_CNT equ 0x9100  ; word   available physical memory map: number of blocks
333
BOOT_MEMMAP_BLOCKS   equ 0x9104   ; available physical memory map: blocks, i.e. e820entry structs
334
MAX_MEMMAP_BLOCKS   equ 32
335
 
2288 clevermous 336
TMP_FILE_NAME       equ     0
337
TMP_CMD_LINE        equ  1024
338
TMP_ICON_OFFS       equ  1280
339
 
340
 
341
EVENT_REDRAW       equ 0x00000001
342
EVENT_KEY          equ 0x00000002
343
EVENT_BUTTON       equ 0x00000004
344
EVENT_BACKGROUND   equ 0x00000010
345
EVENT_MOUSE        equ 0x00000020
346
EVENT_IPC          equ 0x00000040
347
EVENT_NETWORK      equ 0x00000080
348
EVENT_DEBUG        equ 0x00000100
3545 hidnplayr 349
EVENT_NETWORK2     equ 0x00000200
350
EVENT_EXTENDED     equ 0x00000400
2288 clevermous 351
 
352
EV_INTR            equ 1
353
 
6244 serge 354
STDIN_FILENO       equ 0
355
STDOUT_FILENO      equ 1
356
STDERR_FILENO      equ 2
6079 serge 357
 
6244 serge 358
SYSTEM_SHUTDOWN    equ 2
359
SYSTEM_REBOOT      equ 3
360
SYSTEM_RESTART     equ 4
361
 
6790 0CodErr 362
BLIT_CLIENT_RELATIVE equ 0x20000000
363
 
6079 serge 364
struct SYSCALL_STACK
365
        _eip            dd ?
366
        _edi            dd ?    ;  +4
367
        _esi            dd ?    ;  +8
368
        _ebp            dd ?    ; +12
369
        _esp            dd ?    ; +16
370
        _ebx            dd ?    ; +20
371
        _edx            dd ?    ; +24
372
        _ecx            dd ?    ; +28
373
        _eax            dd ?    ; +32
2384 hidnplayr 374
ends
2288 clevermous 375
 
6079 serge 376
struct  LHEAD
377
        next            dd ?   ;next object in list
378
        prev            dd ?   ;prev object in list
379
ends
2288 clevermous 380
 
6079 serge 381
struct  MUTEX_WAITER
382
        list    LHEAD
383
        task    dd ?
384
        type    dd ?
385
ends
386
 
387
struct  MUTEX
388
        wait_list       LHEAD
389
        count           dd ?
390
ends
391
 
392
struct  RWSEM
393
        wait_list       LHEAD
394
        count           dd ?
395
ends
396
 
397
struct  FUTEX
398
        list            LHEAD
399
        magic           dd ?
400
        handle          dd ?
401
        destroy         dd ?
402
 
403
        wait_list       LHEAD
404
        pointer         dd ?
405
        flags           dd ?
406
ends
407
 
408
FUTEX_INIT      equ 0
409
FUTEX_DESTROY   equ 1
410
FUTEX_WAIT      equ 2
411
FUTEX_WAKE      equ 3
412
 
6926 serge 413
struct  FILED
414
        list            LHEAD
415
        magic           rd 1
416
        handle          rd 1
417
        destroy         rd 1
6929 serge 418
        mode            rd 1
6926 serge 419
        file            rd 1
420
ends
421
 
422
struct  PIPE
423
        pipe_ops        rd 1
424
        buffer          rd 1
425
        readers         rd 1
426
        writers         rd 1
427
 
428
        pipe_lock       MUTEX
429
        count           rd 1
430
 
431
        read_end        rd 1
432
        write_end       rd 1
433
        rlist           LHEAD
434
        wlist           LHEAD
435
ends
436
 
6079 serge 437
struct  PROC
438
        list            LHEAD
439
        thr_list        LHEAD
440
        heap_lock       MUTEX
441
        heap_base       rd 1
442
        heap_top        rd 1
443
        mem_used        rd 1
444
        dlls_list_ptr   rd 1
445
        pdt_0_phys      rd 1
446
        pdt_1_phys      rd 1
447
        io_map_0        rd 1
448
        io_map_1        rd 1
449
 
450
        ht_lock         rd 1
6802 pathoswith 451
        ht_free         rd 1                ;htab[0] stdin
452
        ht_next         rd 1                ;htab[1] stdout
453
        htab            rd 1024-PROC.htab/4 ;htab[2] stderr
6079 serge 454
        pdt_0           rd 1024
455
ends
456
 
457
struct  DBG_REGS
458
        dr0             dd ?
459
        dr1             dd ?
460
        dr2             dd ?
461
        dr3             dd ?
462
        dr7             dd ?
463
ends
464
 
465
struct  POINT
466
        x       dd ?
467
        y       dd ?
468
ends
469
 
470
struct  RECT
471
        left    dd ?
472
        top     dd ?
473
        right   dd ?
474
        bottom  dd ?
475
ends
476
 
477
struct  BOX
478
        left    dd ?
479
        top     dd ?
480
        width   dd ?
481
        height  dd ?
482
ends
483
 
484
struct  APPDATA
485
        app_name        rb 11
486
                        rb 5
487
 
488
        list            LHEAD           ;+16
489
        process         dd ?            ;+24
490
        fpu_state       dd ?            ;+28
491
        exc_handler     dd ?            ;+32
492
        except_mask     dd ?            ;+36
493
        pl0_stack       dd ?            ;+40
494
        cursor          dd ?            ;+44
495
        fd_ev           dd ?            ;+48
496
        bk_ev           dd ?            ;+52
497
        fd_obj          dd ?            ;+56
498
        bk_obj          dd ?            ;+60
499
        saved_esp       dd ?            ;+64
500
        io_map          rd 2            ;+68
501
        dbg_state       dd ?            ;+76
502
        cur_dir         dd ?            ;+80
503
        wait_timeout    dd ?            ;+84
504
        saved_esp0      dd ?            ;+88
505
        wait_begin      dd ?            ;+92   +++
506
        wait_test       dd ?            ;+96   +++
507
        wait_param      dd ?            ;+100  +++
508
        tls_base        dd ?            ;+104
509
                        dd ?            ;+108
510
        event_filter    dd ?            ;+112
511
        draw_bgr_x      dd ?            ;+116
512
        draw_bgr_y      dd ?            ;+120
513
                        dd ?            ;+124
514
        wnd_shape       dd ?            ;+128
515
        wnd_shape_scale dd ?            ;+132
516
                        dd ?            ;+136
517
                        dd ?            ;+140
518
        saved_box       BOX             ;+144
519
        ipc_start       dd ?            ;+160
520
        ipc_size        dd ?            ;+164
521
        event_mask      dd ?            ;+168
522
        debugger_slot   dd ?            ;+172
523
        terminate_protection dd ?       ;+176
524
        keyboard_mode   db ?            ;+180
6802 pathoswith 525
        captionEncoding db ?
526
                        rb 2
6318 serge 527
        exec_params     dd ?            ;+184
6079 serge 528
        dbg_event_mem   dd ?            ;+188
529
        dbg_regs        DBG_REGS        ;+192
530
        wnd_caption     dd ?            ;+212
531
        wnd_clientbox   BOX             ;+216
532
        priority        dd ?            ;+232
533
        in_schedule     LHEAD           ;+236
534
ends
535
 
536
APP_OBJ_OFFSET  equ 48
537
APP_EV_OFFSET   equ 40
538
 
539
struct  TASKDATA
540
        event_mask      dd ?
541
        pid             dd ?
542
                        dw ?
543
        state           db ?
544
                        db ?
545
                        dw ?
546
        wnd_number      db ?
547
                        db ?
548
        mem_start       dd ?
549
        counter_sum     dd ?
550
        counter_add     dd ?
551
        cpu_usage       dd ?
552
ends
553
 
554
TSTATE_RUNNING        = 0
555
TSTATE_RUN_SUSPENDED  = 1
556
TSTATE_WAIT_SUSPENDED = 2
557
TSTATE_ZOMBIE         = 3
558
TSTATE_TERMINATING    = 4
559
TSTATE_WAITING        = 5
560
TSTATE_FREE           = 9
561
 
562
; constants definition
563
WSTATE_NORMAL    = 00000000b
564
WSTATE_MAXIMIZED = 00000001b
565
WSTATE_MINIMIZED = 00000010b
566
WSTATE_ROLLEDUP  = 00000100b
567
 
568
WSTATE_REDRAW    = 00000001b
569
WSTATE_WNDDRAWN  = 00000010b
570
 
571
WSTYLE_HASCAPTION     = 00010000b
572
WSTYLE_CLIENTRELATIVE = 00100000b
573
 
574
ZPOS_DESKTOP            = -2
575
ZPOS_ALWAYS_BACK        = -1
576
ZPOS_NORMAL             = 0
577
ZPOS_ALWAYS_TOP         = 1     ;ZPOS_ALWAYS_TOP is always last and has max number!
578
; structures definition
579
struct  WDATA
580
        box             BOX
581
        cl_workarea     dd ?
582
        cl_titlebar     dd ?
583
        cl_frames       dd ?
584
        z_modif         db ?
585
        fl_wstate       db ?
586
        fl_wdrawn       db ?
587
        fl_redraw       db ?
588
ends
589
 
590
label WDATA.fl_wstyle byte at WDATA.cl_workarea + 3
591
 
592
 
2384 hidnplayr 593
struct  SYS_VARS
594
        bpp             dd ?
595
        scanline        dd ?
596
        vesa_mode       dd ?
597
        x_res           dd ?
598
        y_res           dd ?
599
ends
2288 clevermous 600
 
2384 hidnplayr 601
struct  APPOBJ                  ; common object header
602
        magic           dd ?    ;
603
        destroy         dd ?    ; internal destructor
604
        fd              dd ?    ; next object in list
605
        bk              dd ?    ; prev object in list
606
        pid             dd ?    ; owner id
607
ends
2288 clevermous 608
 
2384 hidnplayr 609
struct  CURSOR          APPOBJ
610
        base            dd ?   ;allocated memory
611
        hot_x           dd ?   ;hotspot coords
612
        hot_y           dd ?
2288 clevermous 613
 
2384 hidnplayr 614
        list_next       dd ?   ;next cursor in cursor list
615
        list_prev       dd ?   ;prev cursor in cursor list
616
        dev_obj         dd ?   ;device depended data
617
ends
2288 clevermous 618
 
619
 
2384 hidnplayr 620
struct  EVENT           APPOBJ
621
        id              dd ?   ;event uid
622
        state           dd ?   ;internal flags
623
        code            dd ?
624
                        rd 5
625
ends
2288 clevermous 626
 
627
 
2384 hidnplayr 628
struct  SMEM
629
        bk              dd ?
630
        fd              dd ?    ;+4
631
        base            dd ?    ;+8
632
        size            dd ?    ;+12
633
        access          dd ?    ;+16
634
        refcount        dd ?    ;+20
635
        name            rb 32   ;+24
636
ends
2288 clevermous 637
 
2384 hidnplayr 638
struct  SMAP            APPOBJ
639
        base            dd ?   ;mapped base
640
        parent          dd ?   ;SMEM
641
ends
2288 clevermous 642
 
2384 hidnplayr 643
struct  DLLDESCR
644
        bk              dd ?
645
        fd              dd ?    ;+4
646
        data            dd ?    ;+8
647
        size            dd ?    ;+12
648
        timestamp       dq ?
649
        refcount        dd ?
650
        defaultbase     dd ?
651
        coff_hdr        dd ?
652
        symbols_ptr     dd ?
653
        symbols_num     dd ?
654
        symbols_lim     dd ?
655
        exports         dd ?   ;export table
656
        name            rb 260
657
ends
2288 clevermous 658
 
2384 hidnplayr 659
struct  HDLL
660
        fd              dd ?   ;next object in list
661
        bk              dd ?   ;prev object in list
662
        pid             dd ?   ;owner id
2288 clevermous 663
 
2384 hidnplayr 664
        base            dd ?   ;mapped base
665
        size            dd ?   ;mapped size
666
        refcount        dd ?   ;reference counter for this process and this lib
667
        parent          dd ?   ;DLLDESCR
668
ends
2288 clevermous 669
 
670
 
2384 hidnplayr 671
struct  BOOT_DATA
672
        bpp             dd ?
673
        scanline        dd ?
674
        vesa_mode       dd ?
675
        x_res           dd ?
676
        y_res           dd ?
677
        mouse_port      dd ?
678
        bank_switch     dd ?
679
        lfb             dd ?
680
        vesa_mem        dd ?
681
        log             dd ?
682
        direct_lfb      dd ?
683
        pci_data        dd ?
684
                        dd ?
685
        ide_base        dd ?
686
        mem_amount      dd ?
687
        pages_count     dd ?
688
        pagemap_size    dd ?
689
        kernel_max      dd ?
690
        kernel_pages    dd ?
691
        kernel_tables   dd ?
2288 clevermous 692
 
2384 hidnplayr 693
        cpu_vendor      dd ?
694
                        dd ?
695
                        dd ?
696
        cpu_sign        dd ?
697
        cpu_info        dd ?
698
        cpu_caps        dd ?
699
                        dd ?
700
                        dd ?
701
ends
2288 clevermous 702
 
5351 serge 703
struct  display_t
704
        x               dd ?
705
        y               dd ?
706
        width           dd ?
707
        height          dd ?
708
        bits_per_pixel  dd ?
709
        vrefresh        dd ?
6263 serge 710
        current_lfb     dd ?
5351 serge 711
        lfb_pitch       dd ?
712
 
713
        win_map_lock    RWSEM
714
        win_map         dd ?
715
        win_map_pitch   dd ?
716
        win_map_size    dd ?
717
 
718
        modes           dd ?
719
        ddev            dd ?
720
        connector       dd ?
721
        crtc            dd ?
722
 
723
        cr_list.next    dd ?
724
        cr_list.prev    dd ?
725
 
726
        cursor          dd ?
727
 
728
        init_cursor     dd ?
729
        select_cursor   dd ?
730
        show_cursor     dd ?
731
        move_cursor     dd ?
732
        restore_cursor  dd ?
733
        disable_mouse   dd ?
734
        mask_seqno      dd ?
735
        check_mouse     dd ?
736
        check_m_pixel   dd ?
737
 
738
        bytes_per_pixel dd ?
739
ends
740
 
6079 serge 741
struct  DISPMODE
742
        width   dw ?
743
        height  dw ?
744
        bpp     dw ?
745
        freq    dw ?
746
ends
5351 serge 747
 
6079 serge 748
 
3393 clevermous 749
struct  PCIDEV
750
        bk              dd ?
751
        fd              dd ?
752
        vendor_device_id dd ?
753
        class           dd ?
754
        devfn           db ?
755
        bus             db ?
4418 clevermous 756
                        rb 2
757
        owner           dd ? ; pointer to SRV or 0
3393 clevermous 758
ends
759
 
6079 serge 760
struct  IDE_DATA
761
        ProgrammingInterface dd ?
762
        Interrupt            dw ?
763
        RegsBaseAddres       dw ?
764
        BAR0_val             dw ?
765
        BAR1_val             dw ?
766
        BAR2_val             dw ?
767
        BAR3_val             dw ?
768
        dma_hdd_channel_1    db ?
769
        dma_hdd_channel_2    db ?
6816 dunkaist 770
        pcidev               dd ?       ; pointer to corresponding PCIDEV structure
6079 serge 771
ends
772
 
773
struct  IDE_CACHE
774
        pointer              dd ?
775
        size                 dd ?   ; not use
776
        data_pointer         dd ?
777
        system_data_size     dd ?   ; not use
778
        appl_data_size       dd ?   ; not use
779
        system_data          dd ?
780
        appl_data            dd ?
781
        system_sad_size      dd ?
782
        appl_sad_size        dd ?
783
        search_start         dd ?
784
        appl_search_start    dd ?
785
ends
786
 
787
struct  IDE_DEVICE
788
        UDMA_possible_modes  db ?
789
        UDMA_set_mode        db ?
790
ends
791
 
3395 clevermous 792
; The following macro assume that we are on uniprocessor machine.
793
; Serious work is needed for multiprocessor machines.
794
macro spin_lock_irqsave spinlock
795
{
796
        pushf
797
        cli
798
}
799
macro spin_unlock_irqrestore spinlock
800
{
801
        popf
802
}
803
macro spin_lock_irq spinlock
804
{
805
        cli
806
}
807
macro spin_unlock_irq spinlock
808
{
809
        sti
810
}
811
 
2384 hidnplayr 812
struct  MEM_STATE
813
        mutex           MUTEX
814
        smallmap        dd ?
815
        treemap         dd ?
816
        topsize         dd ?
817
        top             dd ?
818
        smallbins       rd 4*32
819
        treebins        rd 32
820
ends
2288 clevermous 821
 
2384 hidnplayr 822
struct  PG_DATA
823
        mem_amount      dd ?
824
        vesa_mem        dd ?
825
        pages_count     dd ?
826
        pages_free      dd ?
827
        pages_faults    dd ?
828
        pagemap_size    dd ?
829
        kernel_pages    dd ?
830
        kernel_tables   dd ?
831
        sys_page_dir    dd ?
832
        mutex           MUTEX
833
ends
2288 clevermous 834
 
2384 hidnplayr 835
struct  SRV
836
        srv_name        rb 16    ;ASCIIZ string
837
        magic           dd ?     ;+0x10 ;'SRV '
838
        size            dd ?     ;+0x14 ;size of structure SRV
839
        fd              dd ?     ;+0x18 ;next SRV descriptor
840
        bk              dd ?     ;+0x1C ;prev SRV descriptor
841
        base            dd ?     ;+0x20 ;service base address
842
        entry           dd ?     ;+0x24 ;service START function
843
        srv_proc        dd ?     ;+0x28 ;user mode service handler
844
        srv_proc_ex     dd ?     ;+0x2C ;kernel mode service handler
845
ends
2288 clevermous 846
 
3520 clevermous 847
struct USBSRV
848
        srv             SRV
849
        usb_func        dd ?
850
ends
851
 
852
struct USBFUNC
853
        strucsize       dd ?
854
        add_device      dd ?
855
        device_disconnect dd ?
856
ends
857
 
2288 clevermous 858
DRV_ENTRY    equ  1
859
DRV_EXIT     equ -1
860
 
2384 hidnplayr 861
struct  COFF_HEADER
862
        machine         dw ?
863
        nSections       dw ?
864
        DataTime        dd ?
865
        pSymTable       dd ?
866
        nSymbols        dd ?
867
        optHeader       dw ?
868
        flags           dw ?
869
ends
2288 clevermous 870
 
2384 hidnplayr 871
struct  COFF_SECTION
872
        Name            rb 8
873
        VirtualSize     dd ?
874
        VirtualAddress  dd ?
875
        SizeOfRawData   dd ?
876
        PtrRawData      dd ?
877
        PtrReloc        dd ?
878
        PtrLinenumbers  dd ?
879
        NumReloc        dw ?
880
        NumLinenum      dw ?
881
        Characteristics dd ?
882
ends
2288 clevermous 883
 
2384 hidnplayr 884
struct  COFF_RELOC
885
        VirtualAddress  dd ?
886
        SymIndex        dd ?
887
        Type            dw ?
888
ends
2288 clevermous 889
 
2384 hidnplayr 890
struct  COFF_SYM
891
        Name            rb 8
892
        Value           dd ?
893
        SectionNumber   dw ?
894
        Type            dw ?
895
        StorageClass    db ?
896
        NumAuxSymbols   db ?
897
ends
2288 clevermous 898
 
5039 clevermous 899
struct  STRIPPED_PE_HEADER
900
        Signature           dw ?
901
        Characteristics     dw ?
902
        AddressOfEntryPoint dd ?
903
        ImageBase           dd ?
904
        SectionAlignmentLog db ?
905
        FileAlignmentLog    db ?
906
        MajorOSVersion      db ?
907
        MinorOSVersion      db ?
908
        SizeOfImage         dd ?
909
        SizeOfStackReserve  dd ?
910
        SizeOfHeapReserve   dd ?
911
        SizeOfHeaders       dd ?
912
        Subsystem           db ?
913
        NumberOfRvaAndSizes db ?
914
        NumberOfSections    dw ?
915
ends
916
STRIPPED_PE_SIGNATURE = 0x4503 ; 'PE' xor 'S'
917
SPE_DIRECTORY_IMPORT    = 0
918
SPE_DIRECTORY_EXPORT    = 1
919
SPE_DIRECTORY_BASERELOC = 2
920
 
2384 hidnplayr 921
struct  IOCTL
922
        handle          dd ?
923
        io_code         dd ?
924
        input           dd ?
925
        inp_size        dd ?
926
        output          dd ?
927
        out_size        dd ?
928
ends
2288 clevermous 929
 
2384 hidnplayr 930
struct  IRQH
931
        list            LHEAD
932
        handler         dd ?   ;handler roututine
933
        data            dd ?   ;user-specific data
3506 clevermous 934
        num_ints        dd ?   ;how many times handled
2414 Serge 935
ends
7122 dunkaist 936
 
937
struct DQ
938
        lo dd ?
939
        hi dd ?
940
ends
941
 
942
struct e820entry
943
        addr DQ ?
944
        size DQ ?
945
        type dd ?
946
ends
947