2010-06-25 18:47:51 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; ;;
|
|
|
|
;; Copyright (C) 2010 KolibriOS team. All rights reserved. ;;
|
|
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
|
|
;; ;;
|
|
|
|
;; ;;
|
|
|
|
;; PCIe.INC ;;
|
|
|
|
;; ;;
|
|
|
|
;; Extended PCI express services ;;
|
|
|
|
;; ;;
|
|
|
|
;; art_zh <artem@jerdev.co.uk> ;;
|
|
|
|
;; ;;
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
$Revision: 1463 $
|
|
|
|
|
|
|
|
;***************************************************************************
|
|
|
|
; Function
|
|
|
|
; pci_ext_config:
|
|
|
|
;
|
|
|
|
; Description
|
|
|
|
; PCIe extended (memory-mapped) config space detection
|
|
|
|
;
|
|
|
|
; WARNINGs:
|
|
|
|
; 1) Very Experimental!
|
|
|
|
; 2) direct HT-detection (no ACPI or BIOS service used)
|
|
|
|
; 3) Only AMD/HT processors currently supported
|
|
|
|
;
|
|
|
|
;***************************************************************************
|
|
|
|
|
2010-08-03 15:07:43 +02:00
|
|
|
align 4
|
2010-06-28 13:46:11 +02:00
|
|
|
mmio_pcie_cfg_addr dd 0x00000000 ; pcie space may be defined here
|
|
|
|
mmio_pcie_cfg_lim dd 0x000FFFFF ; upper pcie space address
|
2010-08-03 15:07:43 +02:00
|
|
|
mmio_pcie_cfg_pdes dw 0 ; number of PDEs to map the space
|
|
|
|
PCIe_bus_range dw 0 ; the Bus range: power-of-2 Megabytes
|
2010-06-25 18:47:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
pci_ext_config:
|
|
|
|
mov ebx, [mmio_pcie_cfg_addr]
|
|
|
|
or ebx,ebx
|
|
|
|
jz @f
|
|
|
|
or ebx, 0x7FFFFFFF ; required by PCI-SIG standards
|
|
|
|
jnz .pcie_failed
|
|
|
|
add ebx, 0x0FFFFC
|
|
|
|
cmp ebx, [mmio_pcie_cfg_lim]; is the space limit correct?
|
|
|
|
ja .pcie_failed
|
|
|
|
jmp .pcie_cfg_mapped
|
|
|
|
@@:
|
|
|
|
mov ebx, [cpu_vendor]
|
|
|
|
cmp ebx, dword [AMD_str]
|
|
|
|
jne .pcie_failed
|
|
|
|
mov bx, 0xC184 ; dev = 24, fn = 01, reg = 84h
|
|
|
|
|
|
|
|
.check_HT_mmio:
|
|
|
|
mov cx, bx
|
|
|
|
mov ax, 0x0002 ; bus = 0, 1dword to read
|
|
|
|
call pci_read_reg
|
|
|
|
mov bx, cx
|
|
|
|
sub bl, 4
|
|
|
|
and al, 0x80 ; check the NP bit
|
|
|
|
jz .no_pcie_cfg
|
|
|
|
shl eax, 8 ; bus:[27..20], dev:[19:15]
|
|
|
|
or eax, 0x00007FFC ; fun:[14..12], reg:[11:2]
|
2010-08-03 15:07:43 +02:00
|
|
|
; mov [mmio_pcie_cfg_lim], eax
|
2010-06-25 18:47:51 +02:00
|
|
|
mov cl, bl
|
|
|
|
mov ax, 0x0002 ; bus = 0, 1dword to read
|
|
|
|
call pci_read_reg
|
|
|
|
mov bx, cx
|
|
|
|
test al, 0x03 ; MMIO Base RW enabled?
|
|
|
|
jz .no_pcie_cfg
|
|
|
|
test al, 0x0C ; MMIO Base locked?
|
|
|
|
jnz .no_pcie_cfg
|
|
|
|
xor al, al
|
|
|
|
shl eax, 8
|
|
|
|
test eax, 0x000F0000 ; MMIO Base must be bus0-aligned
|
|
|
|
jnz .no_pcie_cfg
|
|
|
|
mov [mmio_pcie_cfg_addr], eax
|
2010-08-03 15:07:43 +02:00
|
|
|
; add eax, 0x000FFFFC
|
|
|
|
; sub eax,[mmio_pcie_cfg_lim] ; MMIO must cover at least one bus
|
|
|
|
; ja .no_pcie_cfg
|
2010-06-25 18:47:51 +02:00
|
|
|
|
|
|
|
; -- it looks like a true PCIe config space;
|
|
|
|
|
|
|
|
.pcie_cfg_mapped:
|
|
|
|
|
2010-06-28 13:46:11 +02:00
|
|
|
mov esi, boot_pcie_ok
|
|
|
|
call boot_log
|
2010-06-25 18:47:51 +02:00
|
|
|
ret ; <<<<<<<<<<< OK >>>>>>>>>>>
|
|
|
|
|
|
|
|
.no_pcie_cfg:
|
|
|
|
|
|
|
|
xor eax, eax
|
|
|
|
mov [mmio_pcie_cfg_addr], eax
|
|
|
|
mov [mmio_pcie_cfg_lim], eax
|
|
|
|
add bl, 12
|
|
|
|
cmp bl, 0xC0 ; MMIO regs lay below this offset
|
|
|
|
jb .check_HT_mmio
|
|
|
|
.pcie_failed:
|
2010-06-28 13:46:11 +02:00
|
|
|
mov esi, boot_pcie_fail
|
|
|
|
call boot_log
|
2010-06-25 18:47:51 +02:00
|
|
|
ret ; <<<<<<<<< FAILURE >>>>>>>>>
|
|
|
|
|