Subversion Repositories Kolibri OS

Rev

Rev 6942 | Rev 7733 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6942 Rev 7136
Line 3... Line 3...
3
;; Copyright (C) KolibriOS team 2004-2015. All rights reserved. ;;
3
;; Copyright (C) KolibriOS team 2004-2015. All rights reserved. ;;
4
;; Distributed under terms of the GNU General Public License    ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 7... Line 7...
7
 
7
 
Line 8... Line 8...
8
$Revision: 6942 $
8
$Revision: 7136 $
9
 
9
 
10
 
10
 
Line 16... Line 16...
16
irq_mode     rd  1
16
irq_mode     rd  1
17
IOAPIC_base  rd  1
17
IOAPIC_base  rd  1
18
LAPIC_BASE   rd  1
18
LAPIC_BASE   rd  1
19
endg
19
endg
Line 20... Line 20...
20
 
20
 
21
APIC_ID         equ 0x20
21
APIC_ID         = 0x20
22
APIC_TPR        equ 0x80
22
APIC_TPR        = 0x80
23
APIC_EOI        equ 0xb0
23
APIC_EOI        = 0xb0
24
APIC_LDR        equ 0xd0
24
APIC_LDR        = 0xd0
25
APIC_DFR        equ 0xe0
25
APIC_DFR        = 0xe0
26
APIC_SVR        equ 0xf0
26
APIC_SVR        = 0xf0
27
APIC_ISR        equ 0x100
27
APIC_ISR        = 0x100
28
APIC_ESR        equ 0x280
28
APIC_ESR        = 0x280
29
APIC_ICRL       equ 0x300
29
APIC_ICRL       = 0x300
30
APIC_ICRH       equ 0x310
30
APIC_ICRH       = 0x310
31
APIC_LVT_LINT0  equ 0x350
31
APIC_LVT_LINT0  = 0x350
32
APIC_LVT_LINT1  equ 0x360
32
APIC_LVT_LINT1  = 0x360
Line 33... Line 33...
33
APIC_LVT_err    equ 0x370
33
APIC_LVT_err    = 0x370
34
 
34
 
35
; APIC timer
35
; APIC timer
36
APIC_LVT_timer  equ 0x320
36
APIC_LVT_timer  = 0x320
37
APIC_timer_div  equ 0x3e0
37
APIC_timer_div  = 0x3e0
38
APIC_timer_init equ 0x380
38
APIC_timer_init = 0x380
39
APIC_timer_cur  equ 0x390
39
APIC_timer_cur  = 0x390
40
; IOAPIC
40
; IOAPIC
41
IOAPIC_ID       equ 0x0
41
IOAPIC_ID       = 0x0
42
IOAPIC_VER      equ 0x1
42
IOAPIC_VER      = 0x1
Line 43... Line 43...
43
IOAPIC_ARB      equ 0x2
43
IOAPIC_ARB      = 0x2
44
IOAPIC_REDTBL   equ 0x10
44
IOAPIC_REDTBL   = 0x10
45
 
45