2010-08-03 15:07:43 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; ;;
|
|
|
|
;; Copyright (C) 2010 KolibriOS team. All rights reserved. ;;
|
|
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
|
|
;; ;;
|
2010-11-01 12:30:29 +01:00
|
|
|
;; HT.inc ;; ;;
|
2010-08-03 15:07:43 +02:00
|
|
|
;; ;;
|
|
|
|
;; AMD HyperTransport bus control ;;
|
|
|
|
;; ;;
|
2010-09-02 22:24:07 +02:00
|
|
|
;; art_zh <kolibri@jerdev.co.uk> ;;
|
2010-08-03 15:07:43 +02:00
|
|
|
;; ;;
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2010-08-07 14:38:03 +02:00
|
|
|
$Revision: 1554 $
|
2010-08-03 15:07:43 +02:00
|
|
|
|
2010-09-02 22:24:07 +02:00
|
|
|
NB_MISC_INDEX equ 0xF0000060 ; NB Misc indirect access
|
|
|
|
NB_MISC_DATA equ 0xF0000064
|
|
|
|
PCIEIND_INDEX equ 0xF00000E0 ; PCIe Core indirect config space access
|
|
|
|
HTIU_NB_INDEX equ 0xF0000094 ; HyperTransport indirect config space access
|
2010-08-03 15:07:43 +02:00
|
|
|
|
|
|
|
;=============================================================================
|
|
|
|
;
|
|
|
|
; This code is a part of Kolibri-A and will only work with AMD RS760+ chipsets
|
|
|
|
;
|
|
|
|
;=============================================================================
|
2010-11-01 12:30:29 +01:00
|
|
|
|
|
|
|
org $-OS_BASE ; physical addresses needed at initial stage
|
|
|
|
|
2010-08-07 14:38:03 +02:00
|
|
|
align 4
|
2010-08-03 15:07:43 +02:00
|
|
|
|
|
|
|
;------------------------------------------
|
|
|
|
; params: al = nbconfig register#
|
|
|
|
; returns: eax = register content
|
|
|
|
;
|
|
|
|
rs7xx_nbconfig_read_pci:
|
|
|
|
and eax, 0x0FC ; leave register# only
|
|
|
|
or eax, 0x80000000 ; bdf = 0:0.0
|
|
|
|
mov dx, 0x0CF8 ; write to index reg
|
|
|
|
out dx, eax
|
|
|
|
add dl, 4
|
|
|
|
in eax, dx
|
|
|
|
ret
|
2010-08-07 14:38:03 +02:00
|
|
|
align 4
|
2010-08-03 15:07:43 +02:00
|
|
|
|
|
|
|
rs7xx_nbconfig_flush_pci:
|
|
|
|
mov eax, 0x0B0 ; a scratch reg
|
|
|
|
mov dx, 0xCF8
|
|
|
|
out dx, eax
|
|
|
|
ret
|
|
|
|
|
2010-08-07 14:38:03 +02:00
|
|
|
align 4
|
2010-08-03 15:07:43 +02:00
|
|
|
|
2010-09-02 22:24:07 +02:00
|
|
|
;------------------------------------------
|
|
|
|
; params: al = nbconfig register#
|
|
|
|
; ebx = register content
|
|
|
|
;
|
2010-08-03 15:07:43 +02:00
|
|
|
rs7xx_nbconfig_write_pci:
|
|
|
|
and eax, 0x0FC ; leave register# only
|
|
|
|
or eax, 0x80000000 ; bdf = 0:0.0
|
|
|
|
mov dx, 0x0CF8 ; write to index reg
|
|
|
|
out dx, eax
|
|
|
|
add dl, 4
|
|
|
|
mov eax, ebx
|
|
|
|
out dx, eax
|
|
|
|
ret
|
|
|
|
|
2010-09-02 22:24:07 +02:00
|
|
|
;***************************************************************************
|
|
|
|
; Function
|
|
|
|
; rs7xx_unlock_bar3: unlocks the BAR3 register of nbconfig that
|
|
|
|
; makes pcie config address space visible
|
|
|
|
; -----------------------
|
|
|
|
; in: nothing out: nothing destroys: eax ebx edx
|
|
|
|
;
|
|
|
|
;***************************************************************************
|
|
|
|
align 4
|
|
|
|
rs7xx_unlock_bar3:
|
|
|
|
mov eax, NB_MISC_INDEX
|
2010-11-01 12:30:29 +01:00
|
|
|
mov ebx, 0x080 ; NBMISCIND:0x0; write-enable
|
2010-09-02 22:24:07 +02:00
|
|
|
call rs7xx_nbconfig_write_pci ; set index
|
|
|
|
mov eax, NB_MISC_DATA
|
|
|
|
call rs7xx_nbconfig_read_pci ; read data
|
|
|
|
mov ebx, eax
|
|
|
|
and ebx, 0xFFFFFFF7 ; clear bit3
|
|
|
|
mov eax, NB_MISC_DATA
|
|
|
|
call rs7xx_nbconfig_write_pci ; write it back
|
|
|
|
mov eax, NB_MISC_INDEX
|
|
|
|
xor ebx, ebx ; reg#0; write-locked
|
|
|
|
call rs7xx_nbconfig_write_pci ; set index
|
|
|
|
ret
|
|
|
|
|
2010-11-01 12:30:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
;***************************************************************************
|
|
|
|
; Function
|
|
|
|
; rs7xx_pcie_init:
|
|
|
|
;
|
|
|
|
; Description
|
|
|
|
; PCIe extended (memory-mapped) config space detection
|
|
|
|
;
|
|
|
|
;***************************************************************************
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
|
|
|
rs7xx_pcie_init:
|
|
|
|
call rs7xx_unlock_bar3
|
|
|
|
mov al, 0x7C ; NB_IOC_CFG_CNTL
|
|
|
|
call rs7xx_nbconfig_read_pci
|
|
|
|
mov ebx, eax
|
|
|
|
; call rs7xx_nbconfig_flush_pci
|
|
|
|
test ebx, 0x20000000 ; BAR3 locked?
|
|
|
|
jz $
|
|
|
|
mov al, 0x84 ; NB_PCI_ARB
|
|
|
|
call rs7xx_nbconfig_read_pci
|
|
|
|
shr eax,16
|
|
|
|
and ax, 7 ; the Bus range lays here:
|
|
|
|
jnz @f
|
|
|
|
mov ax, 8 ; 1=2Mb, 2=4MB, 3=8MB, 4=16MB
|
|
|
|
@@:
|
|
|
|
mov word[PCIe_bus_range-OS_BASE], ax ; 5=32Mb, 6=64MB, 7=128Mb, 8=256Mb
|
|
|
|
mov cl, al
|
|
|
|
call rs7xx_nbconfig_flush_pci
|
|
|
|
dec cl ; <4M ?
|
|
|
|
jz @f
|
|
|
|
dec cl ; one PDE needed anyway
|
|
|
|
@@:
|
|
|
|
mov ebx, 1
|
|
|
|
shl ebx, cl
|
|
|
|
mov word[mmio_pcie_cfg_pdes-OS_BASE], bx ; 1..64 PDE(s) needed,
|
|
|
|
shl ebx, 22
|
|
|
|
mov dword[mmio_pcie_cfg_lim-OS_BASE], ebx ; or 4..256Mb space to map
|
|
|
|
dec dword[mmio_pcie_cfg_lim-OS_BASE]
|
|
|
|
|
|
|
|
mov al, 0x1C ; NB_BAR3_PCIEXP_MMCFG
|
|
|
|
call rs7xx_nbconfig_read_pci
|
|
|
|
mov ebx, eax
|
|
|
|
call rs7xx_nbconfig_flush_pci
|
|
|
|
mov eax, ebx
|
|
|
|
and eax, 0xFFE00000 ; valid bits [31..21]
|
2011-05-10 14:43:03 +02:00
|
|
|
jz $ ; invalid map!
|
2010-11-01 12:30:29 +01:00
|
|
|
.addr_found:
|
|
|
|
mov dword[mmio_pcie_cfg_addr-OS_BASE], eax ; physical address (lower 32 bits)
|
|
|
|
add dword[mmio_pcie_cfg_lim-OS_BASE], eax
|
|
|
|
|
2011-05-10 14:43:03 +02:00
|
|
|
; ---- common mapping procedure ----
|
|
|
|
; (eax = phys. address of PCIe conf.space)
|
|
|
|
;
|
|
|
|
map_pcie_pages:
|
2013-05-17 19:17:20 +02:00
|
|
|
or eax, (PG_NOCACHE + PG_SHARED + PG_LARGE + PG_UW) ; UW is unsafe!
|
2010-11-01 12:30:29 +01:00
|
|
|
mov ecx, PCIe_CONFIG_SPACE ; linear address
|
|
|
|
mov ebx, ecx
|
|
|
|
shr ebx, 20
|
|
|
|
add ebx, (sys_pgdir - OS_BASE) ; PgDir entry @
|
|
|
|
mov dl, byte[mmio_pcie_cfg_pdes-OS_BASE] ; 1 page = 4M in address space
|
|
|
|
cmp dl, 0x34 ; =(USER_DMA_BUFFER - PCIe_CONFIG_SPACE) / 4M
|
|
|
|
jb @f
|
|
|
|
mov dl, 0x33
|
|
|
|
mov byte[mmio_pcie_cfg_pdes-OS_BASE], dl
|
|
|
|
@@:
|
|
|
|
xor dx, dx ; PDEs counter
|
|
|
|
.write_pde:
|
|
|
|
mov dword[ebx], eax ; map 4 buses
|
|
|
|
add bx, 4 ; new PDE
|
|
|
|
add eax, 0x400000 ; +4M phys.
|
|
|
|
add ecx, 0x400000 ; +4M lin.
|
|
|
|
cmp dl, byte[mmio_pcie_cfg_pdes-OS_BASE]
|
2013-05-17 19:17:20 +02:00
|
|
|
jae pcie_cfg_mapped
|
2010-11-01 12:30:29 +01:00
|
|
|
inc dl
|
|
|
|
jmp .write_pde
|
|
|
|
|
2011-05-10 14:43:03 +02:00
|
|
|
; ---- stepping 10h CPUs and Fusion APUs: the configspace is stored in MSR_C001_0058 ----
|
|
|
|
align 4
|
|
|
|
fusion_pcie_init:
|
2011-07-23 17:27:18 +02:00
|
|
|
mov ecx, 0xC0010058
|
|
|
|
rdmsr
|
|
|
|
or edx, edx
|
|
|
|
jnz $ ; PCIe is in the upper memory. Stop.
|
|
|
|
xchg dl, al
|
2011-05-10 14:43:03 +02:00
|
|
|
mov dword[mmio_pcie_cfg_addr-OS_BASE], eax ; store the physical address
|
2011-07-23 17:27:18 +02:00
|
|
|
mov ecx, edx
|
|
|
|
and dl, 1
|
|
|
|
jz $ ; bit[0] = 1 means no PCIe mapping allowed. Stop.
|
|
|
|
shr cl, 2 ; ecx = log2(number of buses)
|
|
|
|
mov word[PCIe_bus_range-OS_BASE], cx
|
|
|
|
sub cl, 2
|
|
|
|
jae @f
|
|
|
|
xor cl, cl
|
2011-05-10 14:43:03 +02:00
|
|
|
@@:
|
2011-07-23 17:27:18 +02:00
|
|
|
shl edx, cl ; edx = number of 4M pages to map
|
|
|
|
mov word[mmio_pcie_cfg_pdes-OS_BASE], dx
|
|
|
|
shl edx, 22
|
|
|
|
dec edx
|
|
|
|
add edx, eax ; the upper configspace limit
|
2011-05-10 14:43:03 +02:00
|
|
|
mov dword[mmio_pcie_cfg_lim-OS_BASE], edx
|
|
|
|
|
2013-05-17 19:17:20 +02:00
|
|
|
pcie_cfg_mapped:
|
|
|
|
|
|
|
|
create_mmio_pte:
|
|
|
|
|
|
|
|
mov ecx, mmio_pte ; physical address
|
|
|
|
or ecx, (PG_NOCACHE + PG_SHARED)
|
|
|
|
mov ebx, FUSION_MMIO ; linear address
|
|
|
|
shr ebx, 20
|
|
|
|
add ebx, (sys_pgdir - OS_BASE) ; PgDir entry @
|
|
|
|
mov dword[ebx], ecx ; Fusion MMIO tables
|
|
|
|
|
|
|
|
map_apic_mmio:
|
|
|
|
mov ecx, 0x01B ; APIC BAR
|
|
|
|
rdmsr
|
|
|
|
and eax, 0xFFFFF000 ; physical address
|
|
|
|
or eax, (PG_NOCACHE + PG_SHARED + PG_UW) ; UW is unsafe!
|
|
|
|
mov dword[mmio_pte + 0], eax
|
|
|
|
|
|
|
|
ret ; <<< OK >>>
|
2010-11-01 12:30:29 +01:00
|
|
|
|
|
|
|
; ================================================================================
|
|
|
|
|
|
|
|
org OS_BASE+$ ; back to the linear address space
|
|
|
|
|
2010-09-02 22:24:07 +02:00
|
|
|
;--------------------------------------------------------------
|
|
|
|
align 4
|
|
|
|
rs780_read_misc:
|
|
|
|
; in: eax(al) - reg# out: eax = NBMISCIND data
|
|
|
|
push edx
|
|
|
|
mov edx, NB_MISC_INDEX
|
|
|
|
and eax, 0x07F
|
|
|
|
mov [edx], eax
|
|
|
|
add dl, 4
|
|
|
|
mov eax, [edx]
|
|
|
|
pop edx
|
|
|
|
ret
|
|
|
|
|
|
|
|
;-------------------------------------------
|
|
|
|
align 4
|
|
|
|
rs780_write_misc:
|
|
|
|
; in: eax(al) - reg# ebx = NBMISCIND data
|
|
|
|
push edx
|
|
|
|
mov edx, NB_MISC_INDEX
|
|
|
|
and eax, 0x07F
|
|
|
|
or eax, 0x080 ; set WE
|
|
|
|
mov [edx], eax
|
|
|
|
add dl, 4
|
|
|
|
mov [edx], ebx
|
|
|
|
sub dl, 4
|
|
|
|
xor eax, eax
|
|
|
|
mov [edx], eax ; safety last
|
|
|
|
pop edx
|
|
|
|
ret
|
|
|
|
|
|
|
|
;-------------------------------------------------------------
|
|
|
|
align 4
|
|
|
|
rs780_read_pcieind:
|
|
|
|
; in: ah = bridge#, al = reg# out: eax = PCIEIND data
|
|
|
|
push edx
|
|
|
|
xor edx, edx
|
|
|
|
mov ah, dl ; bridge# : 0 = Core+GFX; 0x10 = Core+SB
|
|
|
|
and dl, 15 ; 0x20 = Core+GPP; 2..12 = a PortBridge
|
|
|
|
shl edx, 15 ; device#
|
|
|
|
add edx, PCIEIND_INDEX ; full bdf-address
|
|
|
|
and eax, 0x30FF
|
|
|
|
or al, al
|
|
|
|
jnz @f
|
|
|
|
shl eax, 4 ; set bits 17..16 for a Core bridge
|
|
|
|
@@:
|
|
|
|
mov [edx], eax
|
|
|
|
add dl, 4
|
|
|
|
mov eax, [edx]
|
|
|
|
pop edx
|
|
|
|
ret
|
|
|
|
|
|
|
|
;-------------------------------------------
|
|
|
|
align 4
|
|
|
|
rs780_write_pcieind:
|
|
|
|
; in: ah = bridge#, al = reg#, ebx = PCIEIND data
|
|
|
|
push edx
|
|
|
|
xor edx, edx
|
|
|
|
mov ah, dl ; bridge# : 0 = Core+GFX; 0x10 = Core+SB
|
|
|
|
and dl, 15 ; 0x20 = Core+GPP; 2..12 = a PortBridge
|
|
|
|
shl edx, 15 ; device#
|
|
|
|
add edx, PCIEIND_INDEX ; full bdf-address
|
|
|
|
and eax, 0x30FF
|
|
|
|
or al, al
|
|
|
|
jnz @f
|
|
|
|
shl eax, 4 ; set bits 17..16 for a Core bridge
|
|
|
|
@@:
|
|
|
|
mov [edx], eax
|
|
|
|
add dl, 4
|
|
|
|
mov [edx], ebx
|
|
|
|
sub dl, 4
|
|
|
|
xor eax, eax
|
|
|
|
mov [edx], eax ; safety last
|
|
|
|
pop edx
|
|
|
|
ret
|
|
|
|
|
|
|
|
;------------------------------------------------
|
|
|
|
align 4
|
|
|
|
rs780_read_htiu:
|
|
|
|
; in: al = reg# | out: eax = HTIU data
|
|
|
|
;------------------------------------------------
|
|
|
|
push edx
|
|
|
|
mov edx, HTIU_NB_INDEX
|
|
|
|
and eax, 0x07F
|
|
|
|
mov [edx], eax
|
|
|
|
add dl, 4
|
|
|
|
mov eax, [edx]
|
|
|
|
pop edx
|
|
|
|
ret
|
|
|
|
;------------------------------------------------
|
|
|
|
align 4
|
|
|
|
rs780_write_htiu:
|
|
|
|
; in: al = reg#; ebx = data
|
|
|
|
;------------------------------------------------
|
|
|
|
push edx
|
|
|
|
mov edx, HTIU_NB_INDEX
|
|
|
|
and eax, 0x07F
|
|
|
|
or eax, 0x100
|
|
|
|
mov [edx], eax
|
|
|
|
add dl, 4
|
|
|
|
mov [edx], ebx
|
|
|
|
sub dl, 4
|
|
|
|
xor eax, eax
|
|
|
|
mov [edx], eax
|
|
|
|
pop edx
|
|
|
|
ret
|
|
|
|
|
2011-05-10 14:43:03 +02:00
|
|
|
;------------------------------------------------
|
|
|
|
align 4
|
|
|
|
sys_rdmsr:
|
|
|
|
; in: [esp+8] = MSR#
|
|
|
|
; out: [esp+8] = MSR[63:32]
|
|
|
|
; [eax] = MSR[31: 0]
|
|
|
|
;------------------------------------------------
|
2011-07-23 17:27:18 +02:00
|
|
|
push ecx edx
|
|
|
|
mov ecx, [esp+16]
|
|
|
|
rdmsr
|
|
|
|
mov [esp+16], edx
|
|
|
|
pop edx ecx
|
|
|
|
ret
|
2010-09-02 22:24:07 +02:00
|
|
|
|
2010-08-03 15:07:43 +02:00
|
|
|
|