2011-10-14 23:38:50 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; ;;
|
2013-07-01 18:29:16 +02:00
|
|
|
;; Copyright (C) KolibriOS team 2004-2013. All rights reserved. ;;
|
2011-10-14 23:38:50 +02:00
|
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
|
|
;; ;;
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
$Revision$
|
|
|
|
|
2013-07-01 18:29:16 +02:00
|
|
|
search_partitions:
|
|
|
|
; 1. Fill missing parameters in HD_DATA structures.
|
2013-06-27 01:35:43 +02:00
|
|
|
mov eax, [hd_address_table]
|
2013-07-01 18:29:16 +02:00
|
|
|
mov [hd0_data.hdbase], eax ;0x1f0
|
|
|
|
mov [hd1_data.hdbase], eax
|
2013-06-27 01:35:43 +02:00
|
|
|
mov eax, [hd_address_table+16]
|
2013-07-01 18:29:16 +02:00
|
|
|
mov [hd2_data.hdbase], eax
|
|
|
|
mov [hd3_data.hdbase], eax
|
|
|
|
; 2. Notify the system about /hd* disks.
|
|
|
|
; For every existing disk, call ide_disk_add with correct parameters.
|
|
|
|
; Generate name "hdN" on the stack; this is 4 bytes including terminating zero.
|
|
|
|
; 2a. /hd0: exists if mask 0x40 in [DRIVE_DATA+1] is set,
|
|
|
|
; data: hd0_data,
|
|
|
|
; number of partitions: [DRIVE_DATA+2]
|
|
|
|
test [DRIVE_DATA+1], byte 0x40
|
|
|
|
jz @f
|
|
|
|
push 'hd0'
|
|
|
|
mov eax, esp ; name
|
|
|
|
mov edx, hd0_data
|
|
|
|
call ide_disk_add
|
|
|
|
mov [DRIVE_DATA+2], al
|
|
|
|
pop ecx ; restore the stack
|
|
|
|
@@:
|
|
|
|
; 2b. /hd1: exists if mask 0x10 in [DRIVE_DATA+1] is set,
|
|
|
|
; data: hd1_data,
|
|
|
|
; number of partitions: [DRIVE_DATA+3]
|
|
|
|
test [DRIVE_DATA+1], byte 0x10
|
|
|
|
jz @f
|
|
|
|
push 'hd1'
|
|
|
|
mov eax, esp
|
|
|
|
mov edx, hd1_data
|
|
|
|
call ide_disk_add
|
|
|
|
mov [DRIVE_DATA+3], al
|
|
|
|
pop ecx
|
|
|
|
@@:
|
|
|
|
; 2c. /hd2: exists if mask 4 in [DRIVE_DATA+1] is set,
|
|
|
|
; data: hd2_data,
|
|
|
|
; number of partitions: [DRIVE_DATA+4]
|
|
|
|
test [DRIVE_DATA+1], byte 4
|
|
|
|
jz @f
|
|
|
|
push 'hd2'
|
|
|
|
mov eax, esp
|
|
|
|
mov edx, hd2_data
|
|
|
|
call ide_disk_add
|
|
|
|
mov [DRIVE_DATA+4], al
|
2011-10-14 23:38:50 +02:00
|
|
|
pop ecx
|
2013-07-01 18:29:16 +02:00
|
|
|
@@:
|
|
|
|
; 2d. /hd3: exists if mask 1 in [DRIVE_DATA+1] is set,
|
|
|
|
; data: hd3_data,
|
|
|
|
; number of partitions: [DRIVE_DATA+5]
|
|
|
|
test [DRIVE_DATA+1], byte 1
|
|
|
|
jz @f
|
|
|
|
push 'hd3'
|
|
|
|
mov eax, esp
|
|
|
|
mov edx, hd3_data
|
|
|
|
call ide_disk_add
|
|
|
|
mov [DRIVE_DATA+5], al
|
|
|
|
pop ecx
|
|
|
|
@@:
|
|
|
|
; 3. Notify the system about /bd* disks.
|
|
|
|
; 3a. Check whether there are BIOS disks. If no, skip step 3.
|
|
|
|
xor esi, esi
|
|
|
|
cmp esi, [NumBiosDisks]
|
|
|
|
jz .nobd
|
|
|
|
; Loop over all disks.
|
|
|
|
push 0
|
|
|
|
push 'bd'
|
|
|
|
.bdloop:
|
|
|
|
; 3b. Get the drive number for using in /bd* name.
|
|
|
|
movzx eax, byte [BiosDisksData+esi*4]
|
|
|
|
sub al, 80h
|
|
|
|
; 3c. Convert eax to decimal and store starting with [esp+3].
|
|
|
|
; First 2 bytes in [esp] are "bd".
|
|
|
|
lea edi, [esp+2]
|
|
|
|
; store digits in the stack, ending with -'0'
|
|
|
|
push -'0'
|
|
|
|
@@:
|
|
|
|
xor edx, edx
|
|
|
|
iglobal
|
|
|
|
align 4
|
|
|
|
_10 dd 10
|
|
|
|
endg
|
|
|
|
div [_10]
|
|
|
|
push edx
|
|
|
|
test eax, eax
|
|
|
|
jnz @b
|
|
|
|
; restore digits from the stack, this reverses the order;
|
|
|
|
; add '0', stop, when zero is reached
|
|
|
|
@@:
|
|
|
|
pop eax
|
|
|
|
add al, '0'
|
|
|
|
stosb
|
|
|
|
jnz @b
|
|
|
|
; 3e. Call the API with userdata = 80h + ecx.
|
|
|
|
mov eax, esp
|
|
|
|
lea edx, [esi+80h]
|
|
|
|
stdcall disk_add, bd_callbacks, eax, edx, 0
|
|
|
|
test eax, eax
|
|
|
|
jz @f
|
|
|
|
stdcall disk_media_changed, eax, 1
|
|
|
|
@@:
|
|
|
|
; 3f. Continue the loop.
|
|
|
|
inc esi
|
|
|
|
cmp esi, [NumBiosDisks]
|
|
|
|
jnz .bdloop
|
|
|
|
pop ecx ecx ; restore stack after name
|
|
|
|
.nobd:
|
2011-10-14 23:38:50 +02:00
|
|
|
jmp end_search_partitions
|
|
|
|
|
2013-07-01 18:29:16 +02:00
|
|
|
; Helper procedure for search_partitions, adds one IDE disk.
|
|
|
|
; For compatibility, number of partitions for IDE disks is kept in a separate variable,
|
|
|
|
; so the procedure returns number of partitions.
|
|
|
|
; eax -> name, edx -> disk data
|
|
|
|
proc ide_disk_add
|
|
|
|
stdcall disk_add, ide_callbacks, eax, edx, 0
|
|
|
|
test eax, eax
|
|
|
|
jz @f
|
|
|
|
push eax
|
|
|
|
stdcall disk_media_changed, eax, 1
|
|
|
|
pop eax
|
|
|
|
mov eax, [eax+DISK.NumPartitions]
|
|
|
|
cmp eax, 255
|
|
|
|
jbe @f
|
|
|
|
mov eax, 255
|
|
|
|
@@:
|
2011-10-14 23:38:50 +02:00
|
|
|
ret
|
2013-07-01 18:29:16 +02:00
|
|
|
endp
|
2011-10-14 23:38:50 +02:00
|
|
|
|
2010-02-13 14:34:41 +01:00
|
|
|
end_search_partitions:
|
|
|
|
|