[88] | 1 | ; Project name : XTIDE Universal BIOS
|
---|
[3] | 2 | ; Description : Functions for generating and accessing drive
|
---|
| 3 | ; information to be displayed on boot menu.
|
---|
| 4 |
|
---|
| 5 | ; Section containing code
|
---|
| 6 | SECTION .text
|
---|
| 7 |
|
---|
| 8 | ;--------------------------------------------------------------------
|
---|
| 9 | ; Creates new BOOTNFO struct for detected hard disk.
|
---|
| 10 | ;
|
---|
| 11 | ; BootInfo_CreateForHardDisk
|
---|
| 12 | ; Parameters:
|
---|
| 13 | ; DL: Drive number
|
---|
| 14 | ; DS:DI: Ptr to Disk Parameter Table
|
---|
| 15 | ; ES:SI: Ptr to 512-byte ATA information read from the drive
|
---|
| 16 | ; Returns:
|
---|
| 17 | ; ES:BX: Ptr to BOOTNFO (if successful)
|
---|
| 18 | ; Corrupts registers:
|
---|
[241] | 19 | ; AX, BX, CX, DX, DI, SI
|
---|
[3] | 20 | ;--------------------------------------------------------------------
|
---|
| 21 | BootInfo_CreateForHardDisk:
|
---|
[241] | 22 | call BootInfo_ConvertDPTtoBX ; ES:BX now points to new BOOTNFO
|
---|
| 23 | push bx ; Preserve for return
|
---|
[3] | 24 |
|
---|
[241] | 25 | mov di, bx ; Starting pointer at beginning of structure
|
---|
[3] | 26 |
|
---|
[241] | 27 | ;
|
---|
| 28 | ; Store Drive Name
|
---|
| 29 | ;
|
---|
| 30 | push ds ; Preserve RAMVARS
|
---|
| 31 | push si ; Preserve SI for call to GetTotalSectorCount...
|
---|
[3] | 32 |
|
---|
[241] | 33 | push es ; ES copied to DS
|
---|
[3] | 34 | pop ds
|
---|
[241] | 35 |
|
---|
[100] | 36 | add si, BYTE ATA1.strModel ; DS:SI now points drive name
|
---|
| 37 | lea di, [bx+BOOTNFO.szDrvName] ; ES:DI now points to name destination
|
---|
[121] | 38 | mov cx, LEN_BOOTNFO_DRV / 2 ; Max number of WORDs allowed
|
---|
| 39 | .CopyNextWord:
|
---|
| 40 | lodsw
|
---|
| 41 | xchg al, ah ; Change endianness
|
---|
| 42 | stosw
|
---|
| 43 | loop .CopyNextWord
|
---|
[128] | 44 | xor ax, ax ; Zero AX and clear CF
|
---|
[241] | 45 | stosw ; Terminate with NULL
|
---|
[3] | 46 |
|
---|
| 47 | pop si
|
---|
| 48 | pop ds
|
---|
[241] | 49 | pop bx
|
---|
| 50 |
|
---|
[3] | 51 | ret
|
---|
| 52 |
|
---|
[252] | 53 |
|
---|
[3] | 54 | ;--------------------------------------------------------------------
|
---|
| 55 | ; BootInfo_GetTotalSectorCount
|
---|
| 56 | ; Parameters:
|
---|
[241] | 57 | ; DS:DI: DPT Pointer
|
---|
[3] | 58 | ; Returns:
|
---|
| 59 | ; BX:DX:AX: 48-bit sector count
|
---|
| 60 | ; Corrupts registers:
|
---|
[252] | 61 | ; CX
|
---|
[128] | 62 | ;--------------------------------------------------------------------
|
---|
[3] | 63 | ALIGN JUMP_ALIGN
|
---|
| 64 | BootInfo_GetTotalSectorCount:
|
---|
[252] | 65 | test BYTE [di+DPT.bFlagsLow], FLG_DRVNHEAD_LBA
|
---|
| 66 | jnz SHORT .ReturnFullCapacity
|
---|
| 67 | jmp AH15h_GetSectorCountToBXDXAX
|
---|
| 68 | .ReturnFullCapacity:
|
---|
| 69 | jmp AccessDPT_GetLbaSectorCountToBXDXAX
|
---|
[100] | 70 |
|
---|
| 71 |
|
---|
| 72 | ;--------------------------------------------------------------------
|
---|
[241] | 73 | ; Returns offset to BOOTNFO based on DPT pointer.
|
---|
[100] | 74 | ;
|
---|
[241] | 75 | ; BootInfo_ConvertDPTtoBX
|
---|
[100] | 76 | ; Parameters:
|
---|
[241] | 77 | ; DS:DI: DPT Pointer
|
---|
[100] | 78 | ; Returns:
|
---|
| 79 | ; BX: Offset to BOOTNFO struct
|
---|
| 80 | ; Corrupts registers:
|
---|
| 81 | ; AX
|
---|
| 82 | ;--------------------------------------------------------------------
|
---|
| 83 | ALIGN JUMP_ALIGN
|
---|
[241] | 84 | BootInfo_ConvertDPTtoBX:
|
---|
| 85 | mov ax, di
|
---|
| 86 | sub ax, RAMVARS_size ; subtract off base of DPTs
|
---|
| 87 | mov bl, DPT_BOOTNFO_SIZE_MULTIPLIER ; BOOTNFO's are a whole number multiple of DPT size
|
---|
| 88 | mul bl
|
---|
| 89 | add ax, BOOTVARS.rgBootNfo ; add base of BOOTNFO
|
---|
| 90 | xchg ax, bx
|
---|
| 91 | ret
|
---|