Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
2288 clevermous 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
2455 mario79 3
;; Copyright (C) KolibriOS team 2004-2012. All rights reserved. ;;
2288 clevermous 4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
8
$Revision: 3606 $
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
101
MSR_AMD_EFER            equ     0xC0000080      ; Extended Feature Enable Register
102
MSR_AMD_STAR            equ     0xC0000081      ; SYSCALL/SYSRET Target Address Register
103
 
104
CR0_PE         equ    0x00000001   ;protected mode
105
CR0_MP         equ    0x00000002   ;monitor fpu
106
CR0_EM         equ    0x00000004   ;fpu emulation
107
CR0_TS         equ    0x00000008   ;task switch
108
CR0_ET         equ    0x00000010   ;extension type hardcoded to 1
109
CR0_NE         equ    0x00000020   ;numeric error
110
CR0_WP         equ    0x00010000   ;write protect
111
CR0_AM         equ    0x00040000   ;alignment check
112
CR0_NW         equ    0x20000000   ;not write-through
113
CR0_CD         equ    0x40000000   ;cache disable
114
CR0_PG         equ    0x80000000   ;paging
115
 
116
 
117
CR4_VME        equ    0x0001
118
CR4_PVI        equ    0x0002
119
CR4_TSD        equ    0x0004
120
CR4_DE         equ    0x0008
121
CR4_PSE        equ    0x0010
122
CR4_PAE        equ    0x0020
123
CR4_MCE        equ    0x0040
124
CR4_PGE        equ    0x0080
125
CR4_PCE        equ    0x0100
126
CR4_OSFXSR     equ    0x0200
127
CR4_OSXMMEXPT  equ    0x0400
128
 
129
SSE_IE         equ    0x0001
130
SSE_DE         equ    0x0002
131
SSE_ZE         equ    0x0004
132
SSE_OE         equ    0x0008
133
SSE_UE         equ    0x0010
134
SSE_PE         equ    0x0020
135
SSE_DAZ        equ    0x0040
136
SSE_IM         equ    0x0080
137
SSE_DM         equ    0x0100
138
SSE_ZM         equ    0x0200
139
SSE_OM         equ    0x0400
140
SSE_UM         equ    0x0800
141
SSE_PM         equ    0x1000
142
SSE_FZ         equ    0x8000
143
 
144
SSE_INIT equ (SSE_IM+SSE_DM+SSE_ZM+SSE_OM+SSE_UM+SSE_PM)
145
 
146
IRQ_PIC        equ    0
147
IRQ_APIC       equ    1
148
 
2381 hidnplayr 149
struct  TSS
150
        _back       rw 2
151
        _esp0       rd 1
152
        _ss0        rw 2
153
        _esp1       rd 1
154
        _ss1        rw 2
155
        _esp2       rd 1
156
        _ss2        rw 2
157
        _cr3        rd 1
158
        _eip        rd 1
159
        _eflags     rd 1
160
        _eax        rd 1
161
        _ecx        rd 1
162
        _edx        rd 1
163
        _ebx        rd 1
164
        _esp        rd 1
165
        _ebp        rd 1
166
        _esi        rd 1
167
        _edi        rd 1
168
        _es         rw 2
169
        _cs         rw 2
170
        _ss         rw 2
171
        _ds         rw 2
172
        _fs         rw 2
173
        _gs         rw 2
174
        _ldt        rw 2
175
        _trap       rw 1
176
        _io         rw 1
177
                    rb 24
178
        _io_map_0   rb 4096
179
        _io_map_1   rb 4096
180
ends
2288 clevermous 181
 
182
OS_BASE             equ 0x80000000
183
 
184
window_data         equ (OS_BASE+0x0001000)
185
 
186
CURRENT_TASK        equ (OS_BASE+0x0003000)
187
TASK_COUNT          equ (OS_BASE+0x0003004)
188
TASK_BASE           equ (OS_BASE+0x0003010)
189
TASK_DATA           equ (OS_BASE+0x0003020)
190
TASK_EVENT          equ (OS_BASE+0x0003020)
191
 
192
mouseunder          equ (OS_BASE+0x0006900)
193
CDDataBuf           equ (OS_BASE+0x0007000)
194
FLOPPY_BUFF         equ (OS_BASE+0x0008000)
195
ACTIVE_PROC_STACK   equ (OS_BASE+0x000A400) ;unused
196
idts                equ (OS_BASE+0x000B100)
197
WIN_STACK           equ (OS_BASE+0x000C000)
198
WIN_POS             equ (OS_BASE+0x000C400)
199
FDD_BUFF            equ (OS_BASE+0x000D000)
200
 
201
PUTPIXEL            equ (OS_BASE+0x000E020)
202
GETPIXEL            equ (OS_BASE+0x000E024)
203
 
204
;unused ? only one reference
205
BANK_SWITCH         equ (OS_BASE+0x000E030)
206
 
207
;unused ? store mousepointer
208
MOUSE_PICTURE       equ (OS_BASE+0x000F200)
209
 
2430 mario79 210
;MOUSE_VISIBLE       equ (OS_BASE+0x000F204)
2288 clevermous 211
WIN_TEMP_XY         equ (OS_BASE+0x000F300)
212
KEY_COUNT           equ (OS_BASE+0x000F400)
213
KEY_BUFF            equ (OS_BASE+0x000F401)
214
 
215
BTN_COUNT           equ (OS_BASE+0x000F500)
216
BTN_BUFF            equ (OS_BASE+0x000F501)
217
 
218
 
219
MOUSE_SCROLL_H      equ (OS_BASE+0x000FB08)
220
MOUSE_X             equ (OS_BASE+0x000FB0A)
221
MOUSE_Y             equ (OS_BASE+0x000FB0C)
222
MOUSE_SCROLL_V      equ (OS_BASE+0x000FB0E)
223
 
224
MOUSE_COLOR_MEM     equ (OS_BASE+0x000FB10)
225
COLOR_TEMP          equ (OS_BASE+0x000FB30)
226
BTN_DOWN            equ (OS_BASE+0x000FB40)
227
X_UNDER             equ (OS_BASE+0x000FB4A)
228
Y_UNDER             equ (OS_BASE+0x000FB4C)
229
 
230
;unused ? only one reference
231
MOUSE_BUFF_COUNT    equ (OS_BASE+0x000FCFF)
232
 
233
 
234
LFBAddress          equ (OS_BASE+0x000FE80)
235
BTN_ADDR            equ (OS_BASE+0x000FE88)
236
MEM_AMOUNT          equ (OS_BASE+0x000FE8C)
237
 
238
SYS_SHUTDOWN        equ (OS_BASE+0x000FF00)
239
TASK_ACTIVATE       equ (OS_BASE+0x000FF01)
240
 
241
REDRAW_BACKGROUND   equ (OS_BASE+0x000FFF0)
2513 mario79 242
 
2288 clevermous 243
BANK_RW             equ (OS_BASE+0x000FFF2)
244
 
245
TMP_STACK_TOP       equ 0x006CC00
246
 
247
sys_pgdir           equ (OS_BASE+0x006F000)
248
 
249
DRIVE_DATA          equ (OS_BASE+0x0070000)
250
 
251
SLOT_BASE           equ (OS_BASE+0x0080000)
252
 
253
;unused
254
TMP_BUFF            equ (OS_BASE+0x0090000)
255
 
256
VGABasePtr          equ (OS_BASE+0x00A0000)
257
 
258
RAMDISK             equ (OS_BASE+0x0100000)
259
RAMDISK_FAT         equ (OS_BASE+0x0280000)
260
FLOPPY_FAT          equ (OS_BASE+0x0282000)
261
 
262
CLEAN_ZONE          equ 0x284000
263
IDE_DMA             equ 0x284000
264
 
265
BgrAuxTable         equ (OS_BASE+0x0298000)
266
; unused?
267
SB16Buffer          equ (OS_BASE+0x02A0000)
268
SB16_Status         equ (OS_BASE+0x02B0000)
269
 
2525 mario79 270
BUTTON_INFO         equ (OS_BASE+0x02B3FEE)
2485 mario79 271
 
272
BPSLine_calc_area   equ (OS_BASE+0x02C4000)
273
d_width_calc_area   equ (OS_BASE+0x02CA000)
274
 
2288 clevermous 275
RESERVED_PORTS      equ (OS_BASE+0x02D0000)
276
BOOT_VAR            equ (OS_BASE+0x02E0000)
277
 
278
draw_data           equ (OS_BASE+0x0320000)
279
 
280
sys_pgmap           equ (OS_BASE+0x0324000)
281
 
282
UPPER_KERNEL_PAGES  equ (OS_BASE+0x0400000)
283
 
284
virtual at              (OS_BASE+0x05FFF80)
285
  tss  TSS
286
end virtual
287
 
288
HEAP_BASE           equ (OS_BASE+0x0800000)
289
HEAP_MIN_SIZE       equ 0x01000000
290
 
291
page_tabs           equ 0xFDC00000
292
app_page_tabs       equ 0xFDC00000
293
kernel_tabs         equ (page_tabs+ (OS_BASE shr 10))   ;0xFDE00000
294
master_tab          equ (page_tabs+ (page_tabs shr 10)) ;0xFDFF70000
295
 
296
LFB_BASE            equ 0xFE000000
297
 
298
 
299
new_app_base        equ 0;
300
 
301
twdw                equ 0x2000   ;(CURRENT_TASK-window_data)
302
 
303
std_application_base_address   equ new_app_base
3539 clevermous 304
RING0_STACK_SIZE    equ (0x2000 - 512)    ;512 байт для контекста FPU
2288 clevermous 305
 
306
REG_SS              equ (RING0_STACK_SIZE-4)
307
REG_APP_ESP         equ (RING0_STACK_SIZE-8)
308
REG_EFLAGS          equ (RING0_STACK_SIZE-12)
309
REG_CS              equ (RING0_STACK_SIZE-16)
310
REG_EIP             equ (RING0_STACK_SIZE-20)
311
REG_EAX             equ (RING0_STACK_SIZE-24)
312
REG_ECX             equ (RING0_STACK_SIZE-28)
313
REG_EDX             equ (RING0_STACK_SIZE-32)
314
REG_EBX             equ (RING0_STACK_SIZE-36)
315
REG_ESP             equ (RING0_STACK_SIZE-40)  ;RING0_STACK_SIZE-20
316
REG_EBP             equ (RING0_STACK_SIZE-44)
317
REG_ESI             equ (RING0_STACK_SIZE-48)
318
REG_EDI             equ (RING0_STACK_SIZE-52)
319
REG_RET             equ (RING0_STACK_SIZE-56)  ;irq0.return
320
 
321
 
322
PG_UNMAP            equ 0x000
323
PG_MAP              equ 0x001
324
PG_WRITE            equ 0x002
325
PG_SW               equ 0x003
326
PG_USER             equ 0x005
327
PG_UW               equ 0x007
328
PG_NOCACHE          equ 0x018
329
PG_LARGE            equ 0x080
330
PG_GLOBAL           equ 0x100
331
 
332
PG_SHARED           equ 0x200
333
 
334
;;;;;;;;;;;boot time variables
335
 
2466 Serge 336
BOOT_BPP            equ 0x9000    ;byte   bits per pixel
337
BOOT_PITCH          equ 0x9001    ;word   scanline length
2288 clevermous 338
BOOT_VESA_MODE      equ 0x9008    ;word   vesa video mode
2466 Serge 339
BOOT_X_RES          equ 0x900A    ;word   X res
340
BOOT_Y_RES          equ 0x900C    ;word   Y res
2288 clevermous 341
BOOT_BANK_SW        equ 0x9014    ;dword  Vesa 1.2 pm bank switch
342
BOOT_LFB            equ 0x9018    ;dword  Vesa 2.0 LFB address
343
BOOT_MTRR           equ 0x901C    ;byte   0 or 1 : enable MTRR graphics acceleration
344
BOOT_LOG            equ 0x901D    ;byte   not used anymore (0 or 1 : enable system log display)
2466 Serge 345
;BOOT_DIRECT_LFB     equ 0x901E    ;byte   0 or 1 : enable direct lfb write, paging disabled
346
BOOT_DMA            equ 0x901F    ;
2288 clevermous 347
BOOT_PCI_DATA       equ 0x9020    ;8bytes pci data
348
BOOT_VRR            equ 0x9030    ;byte   VRR start enabled 1, 2-no
349
BOOT_IDE_BASE_ADDR  equ 0x9031   ;word   IDEContrRegsBaseAddr
350
BOOT_MEM_AMOUNT     equ 0x9034    ;dword  memory amount
351
 
2466 Serge 352
BOOT_APM_ENTRY      equ 0x9040
353
BOOT_APM_VERSION    equ 0x9044
354
BOOT_APM_FLAGS      equ 0x9046    ;unused
355
BOOT_APM_CODE_32    equ 0x9050
356
BOOT_APM_CODE_16    equ 0x9052
357
BOOT_APM_DATA_16    equ 0x9054
358
 
2288 clevermous 359
TMP_FILE_NAME       equ     0
360
TMP_CMD_LINE        equ  1024
361
TMP_ICON_OFFS       equ  1280
362
 
363
 
364
EVENT_REDRAW       equ 0x00000001
365
EVENT_KEY          equ 0x00000002
366
EVENT_BUTTON       equ 0x00000004
367
EVENT_BACKGROUND   equ 0x00000010
368
EVENT_MOUSE        equ 0x00000020
369
EVENT_IPC          equ 0x00000040
370
EVENT_NETWORK      equ 0x00000080
371
EVENT_DEBUG        equ 0x00000100
3545 hidnplayr 372
EVENT_NETWORK2     equ 0x00000200
373
EVENT_EXTENDED     equ 0x00000400
2288 clevermous 374
 
375
EV_INTR            equ 1
376
 
2384 hidnplayr 377
struct  THR_DATA
378
                        rb (8192-512)
379
;       pl0_stack
380
        fpu_state       rb 512
381
        tls_page        rb 4096
382
        pdbr            rb 4096
383
ends
2288 clevermous 384
 
2384 hidnplayr 385
virtual at (OS_BASE-sizeof.THR_DATA)
2288 clevermous 386
  thr_data  THR_DATA
387
end virtual
388
 
2384 hidnplayr 389
struct  SYS_VARS
390
        bpp             dd ?
391
        scanline        dd ?
392
        vesa_mode       dd ?
393
        x_res           dd ?
394
        y_res           dd ?
395
ends
2288 clevermous 396
 
2384 hidnplayr 397
struct  APPOBJ                  ; common object header
398
        magic           dd ?    ;
399
        destroy         dd ?    ; internal destructor
400
        fd              dd ?    ; next object in list
401
        bk              dd ?    ; prev object in list
402
        pid             dd ?    ; owner id
403
ends
2288 clevermous 404
 
405
APP_OBJ_OFFSET  equ 48
406
APP_EV_OFFSET   equ 40
407
 
2384 hidnplayr 408
struct  CURSOR          APPOBJ
409
        base            dd ?   ;allocated memory
410
        hot_x           dd ?   ;hotspot coords
411
        hot_y           dd ?
2288 clevermous 412
 
2384 hidnplayr 413
        list_next       dd ?   ;next cursor in cursor list
414
        list_prev       dd ?   ;prev cursor in cursor list
415
        dev_obj         dd ?   ;device depended data
416
ends
2288 clevermous 417
 
418
 
2384 hidnplayr 419
struct  EVENT           APPOBJ
420
        id              dd ?   ;event uid
421
        state           dd ?   ;internal flags
422
        code            dd ?
423
                        rd 5
424
ends
2288 clevermous 425
 
426
 
2384 hidnplayr 427
struct  SMEM
428
        bk              dd ?
429
        fd              dd ?    ;+4
430
        base            dd ?    ;+8
431
        size            dd ?    ;+12
432
        access          dd ?    ;+16
433
        refcount        dd ?    ;+20
434
        name            rb 32   ;+24
435
ends
2288 clevermous 436
 
2384 hidnplayr 437
struct  SMAP            APPOBJ
438
        base            dd ?   ;mapped base
439
        parent          dd ?   ;SMEM
440
ends
2288 clevermous 441
 
2384 hidnplayr 442
struct  DLLDESCR
443
        bk              dd ?
444
        fd              dd ?    ;+4
445
        data            dd ?    ;+8
446
        size            dd ?    ;+12
447
        timestamp       dq ?
448
        refcount        dd ?
449
        defaultbase     dd ?
450
        coff_hdr        dd ?
451
        symbols_ptr     dd ?
452
        symbols_num     dd ?
453
        symbols_lim     dd ?
454
        exports         dd ?   ;export table
455
        name            rb 260
456
ends
2288 clevermous 457
 
2384 hidnplayr 458
struct  HDLL
459
        fd              dd ?   ;next object in list
460
        bk              dd ?   ;prev object in list
461
        pid             dd ?   ;owner id
2288 clevermous 462
 
2384 hidnplayr 463
        base            dd ?   ;mapped base
464
        size            dd ?   ;mapped size
465
        refcount        dd ?   ;reference counter for this process and this lib
466
        parent          dd ?   ;DLLDESCR
467
ends
2288 clevermous 468
 
2384 hidnplayr 469
struct  display_t
470
        x               dd ?
471
        y               dd ?
472
        width           dd ?
473
        height          dd ?
474
        bpp             dd ?
475
        vrefresh        dd ?
476
        pitch           dd ?
477
        lfb             dd ?
2288 clevermous 478
 
2384 hidnplayr 479
        modes           dd ?
480
        ddev            dd ?
481
        connector       dd ?
482
        crtc            dd ?
2288 clevermous 483
 
2384 hidnplayr 484
        cr_list.next    dd ?
485
        cr_list.prev    dd ?
2288 clevermous 486
 
2384 hidnplayr 487
        cursor          dd ?
2288 clevermous 488
 
2384 hidnplayr 489
        init_cursor     dd ?
490
        select_cursor   dd ?
491
        show_cursor     dd ?
492
        move_cursor     dd ?
493
        restore_cursor  dd ?
2445 Serge 494
        disable_mouse   dd ?
2414 Serge 495
        mask_seqno      dd ?
2430 mario79 496
        check_mouse     dd ?
497
        check_m_pixel   dd ?
2384 hidnplayr 498
ends
2288 clevermous 499
 
2384 hidnplayr 500
struct  BOOT_DATA
501
        bpp             dd ?
502
        scanline        dd ?
503
        vesa_mode       dd ?
504
        x_res           dd ?
505
        y_res           dd ?
506
        mouse_port      dd ?
507
        bank_switch     dd ?
508
        lfb             dd ?
509
        vesa_mem        dd ?
510
        log             dd ?
511
        direct_lfb      dd ?
512
        pci_data        dd ?
513
                        dd ?
514
        vrr             dd ?
515
        ide_base        dd ?
516
        mem_amount      dd ?
517
        pages_count     dd ?
518
        pagemap_size    dd ?
519
        kernel_max      dd ?
520
        kernel_pages    dd ?
521
        kernel_tables   dd ?
2288 clevermous 522
 
2384 hidnplayr 523
        cpu_vendor      dd ?
524
                        dd ?
525
                        dd ?
526
        cpu_sign        dd ?
527
        cpu_info        dd ?
528
        cpu_caps        dd ?
529
                        dd ?
530
                        dd ?
531
ends
2288 clevermous 532
 
2384 hidnplayr 533
struct  LHEAD
534
        next            dd ?   ;next object in list
535
        prev            dd ?   ;prev object in list
536
ends
2288 clevermous 537
 
2384 hidnplayr 538
struct  MUTEX
539
        lhead   LHEAD
540
        count   dd ?
541
ends
2288 clevermous 542
 
3393 clevermous 543
struct  PCIDEV
544
        bk              dd ?
545
        fd              dd ?
546
        vendor_device_id dd ?
547
        class           dd ?
548
        devfn           db ?
549
        bus             db ?
550
ends
551
 
3395 clevermous 552
; The following macro assume that we are on uniprocessor machine.
553
; Serious work is needed for multiprocessor machines.
554
macro spin_lock_irqsave spinlock
555
{
556
        pushf
557
        cli
558
}
559
macro spin_unlock_irqrestore spinlock
560
{
561
        popf
562
}
563
macro spin_lock_irq spinlock
564
{
565
        cli
566
}
567
macro spin_unlock_irq spinlock
568
{
569
        sti
570
}
571
 
2384 hidnplayr 572
struct  MEM_STATE
573
        mutex           MUTEX
574
        smallmap        dd ?
575
        treemap         dd ?
576
        topsize         dd ?
577
        top             dd ?
578
        smallbins       rd 4*32
579
        treebins        rd 32
580
ends
2288 clevermous 581
 
2384 hidnplayr 582
struct  PG_DATA
583
        mem_amount      dd ?
584
        vesa_mem        dd ?
585
        pages_count     dd ?
586
        pages_free      dd ?
587
        pages_faults    dd ?
588
        pagemap_size    dd ?
589
        kernel_pages    dd ?
590
        kernel_tables   dd ?
591
        sys_page_dir    dd ?
592
        mutex           MUTEX
593
ends
2288 clevermous 594
 
2384 hidnplayr 595
struct  SRV
596
        srv_name        rb 16    ;ASCIIZ string
597
        magic           dd ?     ;+0x10 ;'SRV '
598
        size            dd ?     ;+0x14 ;size of structure SRV
599
        fd              dd ?     ;+0x18 ;next SRV descriptor
600
        bk              dd ?     ;+0x1C ;prev SRV descriptor
601
        base            dd ?     ;+0x20 ;service base address
602
        entry           dd ?     ;+0x24 ;service START function
603
        srv_proc        dd ?     ;+0x28 ;user mode service handler
604
        srv_proc_ex     dd ?     ;+0x2C ;kernel mode service handler
605
ends
2288 clevermous 606
 
3520 clevermous 607
struct USBSRV
608
        srv             SRV
609
        usb_func        dd ?
610
ends
611
 
612
struct USBFUNC
613
        strucsize       dd ?
614
        add_device      dd ?
615
        device_disconnect dd ?
616
ends
617
 
2288 clevermous 618
DRV_ENTRY    equ  1
619
DRV_EXIT     equ -1
620
 
2384 hidnplayr 621
struct  COFF_HEADER
622
        machine         dw ?
623
        nSections       dw ?
624
        DataTime        dd ?
625
        pSymTable       dd ?
626
        nSymbols        dd ?
627
        optHeader       dw ?
628
        flags           dw ?
629
ends
2288 clevermous 630
 
2384 hidnplayr 631
struct  COFF_SECTION
632
        Name            rb 8
633
        VirtualSize     dd ?
634
        VirtualAddress  dd ?
635
        SizeOfRawData   dd ?
636
        PtrRawData      dd ?
637
        PtrReloc        dd ?
638
        PtrLinenumbers  dd ?
639
        NumReloc        dw ?
640
        NumLinenum      dw ?
641
        Characteristics dd ?
642
ends
2288 clevermous 643
 
2384 hidnplayr 644
struct  COFF_RELOC
645
        VirtualAddress  dd ?
646
        SymIndex        dd ?
647
        Type            dw ?
648
ends
2288 clevermous 649
 
2384 hidnplayr 650
struct  COFF_SYM
651
        Name            rb 8
652
        Value           dd ?
653
        SectionNumber   dw ?
654
        Type            dw ?
655
        StorageClass    db ?
656
        NumAuxSymbols   db ?
657
ends
2288 clevermous 658
 
2384 hidnplayr 659
struct  IOCTL
660
        handle          dd ?
661
        io_code         dd ?
662
        input           dd ?
663
        inp_size        dd ?
664
        output          dd ?
665
        out_size        dd ?
666
ends
2288 clevermous 667
 
2384 hidnplayr 668
struct  IRQH
669
        list            LHEAD
670
        handler         dd ?   ;handler roututine
671
        data            dd ?   ;user-specific data
3506 clevermous 672
        num_ints        dd ?   ;how many times handled
2414 Serge 673
ends