Subversion Repositories Kolibri OS

Rev

Rev 5360 | Rev 5595 | 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: 5569 $
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
3777 yogev_ezra 316
;BOOT_LOG            equ 0x901D    ;byte   not used anymore (0 or 1 : enable system log display)
317
BOOT_LAUNCHER_START equ 0x901D    ;byte  (0 or 1) start the first app (right now it's LAUNCHER) after kernel is loaded?
2466 Serge 318
;BOOT_DIRECT_LFB     equ 0x901E    ;byte   0 or 1 : enable direct lfb write, paging disabled
3777 yogev_ezra 319
BOOT_DEBUG_PRINT    equ 0x901E    ;byte   If nonzero, duplicates debug output to the screen.
2466 Serge 320
BOOT_DMA            equ 0x901F    ;
2288 clevermous 321
BOOT_PCI_DATA       equ 0x9020    ;8bytes pci data
322
BOOT_VRR            equ 0x9030    ;byte   VRR start enabled 1, 2-no
4624 mario79 323
;BOOT_IDE_BASE_ADDR  equ 0x9031   ;word   IDEContrRegsBaseAddr ; now free and is not used
2288 clevermous 324
BOOT_MEM_AMOUNT     equ 0x9034    ;dword  memory amount
325
 
2466 Serge 326
BOOT_APM_ENTRY      equ 0x9040
327
BOOT_APM_VERSION    equ 0x9044
328
BOOT_APM_FLAGS      equ 0x9046    ;unused
329
BOOT_APM_CODE_32    equ 0x9050
330
BOOT_APM_CODE_16    equ 0x9052
331
BOOT_APM_DATA_16    equ 0x9054
4624 mario79 332
;BOOT_IDE_BAR0_16    equ 0x9056 ; now free and is not used
333
;BOOT_IDE_BAR1_16    equ 0x9058 ; now free and is not used
334
;BOOT_IDE_BAR2_16    equ 0x905A ; now free and is not used
335
;BOOT_IDE_BAR3_16    equ 0x905C ; now free and is not used
336
;BOOT_IDE_PI_16      equ 0x905E ; now free and is not used
337
;BOOT_IDE_INTERR_16  equ 0x9060 ; now free and is not used
2466 Serge 338
 
2288 clevermous 339
TMP_FILE_NAME       equ     0
340
TMP_CMD_LINE        equ  1024
341
TMP_ICON_OFFS       equ  1280
342
 
343
 
344
EVENT_REDRAW       equ 0x00000001
345
EVENT_KEY          equ 0x00000002
346
EVENT_BUTTON       equ 0x00000004
347
EVENT_BACKGROUND   equ 0x00000010
348
EVENT_MOUSE        equ 0x00000020
349
EVENT_IPC          equ 0x00000040
350
EVENT_NETWORK      equ 0x00000080
351
EVENT_DEBUG        equ 0x00000100
3545 hidnplayr 352
EVENT_NETWORK2     equ 0x00000200
353
EVENT_EXTENDED     equ 0x00000400
2288 clevermous 354
 
355
EV_INTR            equ 1
356
 
2384 hidnplayr 357
struct  THR_DATA
358
                        rb (8192-512)
359
;       pl0_stack
360
        fpu_state       rb 512
361
        tls_page        rb 4096
362
        pdbr            rb 4096
363
ends
2288 clevermous 364
 
2384 hidnplayr 365
virtual at (OS_BASE-sizeof.THR_DATA)
2288 clevermous 366
  thr_data  THR_DATA
367
end virtual
368
 
2384 hidnplayr 369
struct  SYS_VARS
370
        bpp             dd ?
371
        scanline        dd ?
372
        vesa_mode       dd ?
373
        x_res           dd ?
374
        y_res           dd ?
375
ends
2288 clevermous 376
 
2384 hidnplayr 377
struct  APPOBJ                  ; common object header
378
        magic           dd ?    ;
379
        destroy         dd ?    ; internal destructor
380
        fd              dd ?    ; next object in list
381
        bk              dd ?    ; prev object in list
382
        pid             dd ?    ; owner id
383
ends
2288 clevermous 384
 
385
APP_OBJ_OFFSET  equ 48
386
APP_EV_OFFSET   equ 40
387
 
2384 hidnplayr 388
struct  CURSOR          APPOBJ
389
        base            dd ?   ;allocated memory
390
        hot_x           dd ?   ;hotspot coords
391
        hot_y           dd ?
2288 clevermous 392
 
2384 hidnplayr 393
        list_next       dd ?   ;next cursor in cursor list
394
        list_prev       dd ?   ;prev cursor in cursor list
395
        dev_obj         dd ?   ;device depended data
396
ends
2288 clevermous 397
 
398
 
2384 hidnplayr 399
struct  EVENT           APPOBJ
400
        id              dd ?   ;event uid
401
        state           dd ?   ;internal flags
402
        code            dd ?
403
                        rd 5
404
ends
2288 clevermous 405
 
406
 
2384 hidnplayr 407
struct  SMEM
408
        bk              dd ?
409
        fd              dd ?    ;+4
410
        base            dd ?    ;+8
411
        size            dd ?    ;+12
412
        access          dd ?    ;+16
413
        refcount        dd ?    ;+20
414
        name            rb 32   ;+24
415
ends
2288 clevermous 416
 
2384 hidnplayr 417
struct  SMAP            APPOBJ
418
        base            dd ?   ;mapped base
419
        parent          dd ?   ;SMEM
420
ends
2288 clevermous 421
 
2384 hidnplayr 422
struct  DLLDESCR
423
        bk              dd ?
424
        fd              dd ?    ;+4
425
        data            dd ?    ;+8
426
        size            dd ?    ;+12
427
        timestamp       dq ?
428
        refcount        dd ?
429
        defaultbase     dd ?
430
        coff_hdr        dd ?
431
        symbols_ptr     dd ?
432
        symbols_num     dd ?
433
        symbols_lim     dd ?
434
        exports         dd ?   ;export table
435
        name            rb 260
436
ends
2288 clevermous 437
 
2384 hidnplayr 438
struct  HDLL
439
        fd              dd ?   ;next object in list
440
        bk              dd ?   ;prev object in list
441
        pid             dd ?   ;owner id
2288 clevermous 442
 
2384 hidnplayr 443
        base            dd ?   ;mapped base
444
        size            dd ?   ;mapped size
445
        refcount        dd ?   ;reference counter for this process and this lib
446
        parent          dd ?   ;DLLDESCR
447
ends
2288 clevermous 448
 
449
 
2384 hidnplayr 450
struct  BOOT_DATA
451
        bpp             dd ?
452
        scanline        dd ?
453
        vesa_mode       dd ?
454
        x_res           dd ?
455
        y_res           dd ?
456
        mouse_port      dd ?
457
        bank_switch     dd ?
458
        lfb             dd ?
459
        vesa_mem        dd ?
460
        log             dd ?
461
        direct_lfb      dd ?
462
        pci_data        dd ?
463
                        dd ?
464
        vrr             dd ?
465
        ide_base        dd ?
466
        mem_amount      dd ?
467
        pages_count     dd ?
468
        pagemap_size    dd ?
469
        kernel_max      dd ?
470
        kernel_pages    dd ?
471
        kernel_tables   dd ?
2288 clevermous 472
 
2384 hidnplayr 473
        cpu_vendor      dd ?
474
                        dd ?
475
                        dd ?
476
        cpu_sign        dd ?
477
        cpu_info        dd ?
478
        cpu_caps        dd ?
479
                        dd ?
480
                        dd ?
481
ends
2288 clevermous 482
 
2384 hidnplayr 483
struct  LHEAD
484
        next            dd ?   ;next object in list
485
        prev            dd ?   ;prev object in list
486
ends
2288 clevermous 487
 
2384 hidnplayr 488
struct  MUTEX
5343 serge 489
        wait_list       LHEAD
490
        count           dd ?
2384 hidnplayr 491
ends
2288 clevermous 492
 
5343 serge 493
struct  RWSEM
494
        wait_list       LHEAD
495
        count           dd ?
496
ends
497
 
5351 serge 498
struct  display_t
499
        x               dd ?
500
        y               dd ?
501
        width           dd ?
502
        height          dd ?
503
        bits_per_pixel  dd ?
504
        vrefresh        dd ?
505
        lfb             dd ?
506
        lfb_pitch       dd ?
507
 
508
        win_map_lock    RWSEM
509
        win_map         dd ?
510
        win_map_pitch   dd ?
511
        win_map_size    dd ?
512
 
513
        modes           dd ?
514
        ddev            dd ?
515
        connector       dd ?
516
        crtc            dd ?
517
 
518
        cr_list.next    dd ?
519
        cr_list.prev    dd ?
520
 
521
        cursor          dd ?
522
 
523
        init_cursor     dd ?
524
        select_cursor   dd ?
525
        show_cursor     dd ?
526
        move_cursor     dd ?
527
        restore_cursor  dd ?
528
        disable_mouse   dd ?
529
        mask_seqno      dd ?
530
        check_mouse     dd ?
531
        check_m_pixel   dd ?
532
 
533
        bytes_per_pixel dd ?
534
ends
535
 
536
 
3393 clevermous 537
struct  PCIDEV
538
        bk              dd ?
539
        fd              dd ?
540
        vendor_device_id dd ?
541
        class           dd ?
542
        devfn           db ?
543
        bus             db ?
4418 clevermous 544
                        rb 2
545
        owner           dd ? ; pointer to SRV or 0
3393 clevermous 546
ends
547
 
3395 clevermous 548
; The following macro assume that we are on uniprocessor machine.
549
; Serious work is needed for multiprocessor machines.
550
macro spin_lock_irqsave spinlock
551
{
552
        pushf
553
        cli
554
}
555
macro spin_unlock_irqrestore spinlock
556
{
557
        popf
558
}
559
macro spin_lock_irq spinlock
560
{
561
        cli
562
}
563
macro spin_unlock_irq spinlock
564
{
565
        sti
566
}
567
 
2384 hidnplayr 568
struct  MEM_STATE
569
        mutex           MUTEX
570
        smallmap        dd ?
571
        treemap         dd ?
572
        topsize         dd ?
573
        top             dd ?
574
        smallbins       rd 4*32
575
        treebins        rd 32
576
ends
2288 clevermous 577
 
2384 hidnplayr 578
struct  PG_DATA
579
        mem_amount      dd ?
580
        vesa_mem        dd ?
581
        pages_count     dd ?
582
        pages_free      dd ?
583
        pages_faults    dd ?
584
        pagemap_size    dd ?
585
        kernel_pages    dd ?
586
        kernel_tables   dd ?
587
        sys_page_dir    dd ?
588
        mutex           MUTEX
589
ends
2288 clevermous 590
 
2384 hidnplayr 591
struct  SRV
592
        srv_name        rb 16    ;ASCIIZ string
593
        magic           dd ?     ;+0x10 ;'SRV '
594
        size            dd ?     ;+0x14 ;size of structure SRV
595
        fd              dd ?     ;+0x18 ;next SRV descriptor
596
        bk              dd ?     ;+0x1C ;prev SRV descriptor
597
        base            dd ?     ;+0x20 ;service base address
598
        entry           dd ?     ;+0x24 ;service START function
599
        srv_proc        dd ?     ;+0x28 ;user mode service handler
600
        srv_proc_ex     dd ?     ;+0x2C ;kernel mode service handler
601
ends
2288 clevermous 602
 
3520 clevermous 603
struct USBSRV
604
        srv             SRV
605
        usb_func        dd ?
606
ends
607
 
608
struct USBFUNC
609
        strucsize       dd ?
610
        add_device      dd ?
611
        device_disconnect dd ?
612
ends
613
 
2288 clevermous 614
DRV_ENTRY    equ  1
615
DRV_EXIT     equ -1
616
 
2384 hidnplayr 617
struct  COFF_HEADER
618
        machine         dw ?
619
        nSections       dw ?
620
        DataTime        dd ?
621
        pSymTable       dd ?
622
        nSymbols        dd ?
623
        optHeader       dw ?
624
        flags           dw ?
625
ends
2288 clevermous 626
 
2384 hidnplayr 627
struct  COFF_SECTION
628
        Name            rb 8
629
        VirtualSize     dd ?
630
        VirtualAddress  dd ?
631
        SizeOfRawData   dd ?
632
        PtrRawData      dd ?
633
        PtrReloc        dd ?
634
        PtrLinenumbers  dd ?
635
        NumReloc        dw ?
636
        NumLinenum      dw ?
637
        Characteristics dd ?
638
ends
2288 clevermous 639
 
2384 hidnplayr 640
struct  COFF_RELOC
641
        VirtualAddress  dd ?
642
        SymIndex        dd ?
643
        Type            dw ?
644
ends
2288 clevermous 645
 
2384 hidnplayr 646
struct  COFF_SYM
647
        Name            rb 8
648
        Value           dd ?
649
        SectionNumber   dw ?
650
        Type            dw ?
651
        StorageClass    db ?
652
        NumAuxSymbols   db ?
653
ends
2288 clevermous 654
 
5039 clevermous 655
struct  STRIPPED_PE_HEADER
656
        Signature           dw ?
657
        Characteristics     dw ?
658
        AddressOfEntryPoint dd ?
659
        ImageBase           dd ?
660
        SectionAlignmentLog db ?
661
        FileAlignmentLog    db ?
662
        MajorOSVersion      db ?
663
        MinorOSVersion      db ?
664
        SizeOfImage         dd ?
665
        SizeOfStackReserve  dd ?
666
        SizeOfHeapReserve   dd ?
667
        SizeOfHeaders       dd ?
668
        Subsystem           db ?
669
        NumberOfRvaAndSizes db ?
670
        NumberOfSections    dw ?
671
ends
672
STRIPPED_PE_SIGNATURE = 0x4503 ; 'PE' xor 'S'
673
SPE_DIRECTORY_IMPORT    = 0
674
SPE_DIRECTORY_EXPORT    = 1
675
SPE_DIRECTORY_BASERELOC = 2
676
 
2384 hidnplayr 677
struct  IOCTL
678
        handle          dd ?
679
        io_code         dd ?
680
        input           dd ?
681
        inp_size        dd ?
682
        output          dd ?
683
        out_size        dd ?
684
ends
2288 clevermous 685
 
2384 hidnplayr 686
struct  IRQH
687
        list            LHEAD
688
        handler         dd ?   ;handler roututine
689
        data            dd ?   ;user-specific data
3506 clevermous 690
        num_ints        dd ?   ;how many times handled
2414 Serge 691
ends