[90] | 1 | ; Project name : XTIDE Universal BIOS
|
---|
[3] | 2 | ; Description : Defines for ROMVARS struct containing variables stored
|
---|
| 3 | ; in BIOS ROM.
|
---|
| 4 | %ifndef ROMVARS_INC
|
---|
| 5 | %define ROMVARS_INC
|
---|
| 6 |
|
---|
[181] | 7 | ; ROM Variables. Written to the ROM image before flashing.
|
---|
[3] | 8 | struc ROMVARS
|
---|
[181] | 9 | .wRomSign resb 2 ; ROM Signature (AA55h)
|
---|
| 10 | .bRomSize resb 1 ; ROM size in 512 byte blocks
|
---|
| 11 | .rgbJump resb 3 ; First instruction to ROM init (jmp)
|
---|
[90] | 12 |
|
---|
[181] | 13 | .rgbSign resb 8 ; Signature for XTIDE Configurator Program
|
---|
| 14 | .szTitle resb 31 ; BIOS title string
|
---|
| 15 | .szVersion resb 25 ; BIOS version string
|
---|
[90] | 16 |
|
---|
[181] | 17 | .wFlags resb 2 ; Word for ROM flags
|
---|
| 18 | .wDisplayMode resb 2 ; Display mode for boot menu
|
---|
[243] | 19 | .wfDisplayBootMenu: ; Zero = no Boot Menu, non-zero = Boot Menu timeout
|
---|
[181] | 20 | .wBootTimeout resb 2 ; Boot Menu selection timeout in system timer ticks
|
---|
| 21 | .bIdeCnt resb 1 ; Number of available IDE controllers
|
---|
| 22 | .bBootDrv resb 1 ; Boot Menu default drive
|
---|
| 23 | .bMinFddCnt resb 1 ; Minimum number of Floppy Drives
|
---|
| 24 | .bStealSize resb 1 ; Number of 1kB blocks stolen from 640kB base RAM
|
---|
[90] | 25 |
|
---|
[316] | 26 | .ideVarsBegin:
|
---|
[181] | 27 | .ideVars0 resb IDEVARS_size
|
---|
| 28 | .ideVars1 resb IDEVARS_size
|
---|
| 29 | .ideVars2 resb IDEVARS_size
|
---|
| 30 | .ideVars3 resb IDEVARS_size
|
---|
[175] | 31 |
|
---|
[176] | 32 | %ifdef MODULE_SERIAL
|
---|
[175] | 33 | .ideVarsSerialAuto resb IDEVARS_size
|
---|
[176] | 34 | %endif
|
---|
[316] | 35 |
|
---|
| 36 | .ideVarsEnd:
|
---|
[3] | 37 | endstruc
|
---|
| 38 |
|
---|
[316] | 39 | %ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
|
---|
| 40 | %if ROMVARS.ideVarsEnd & 0xff00 <> 0
|
---|
| 41 | %error ".ideVars structures must fit within the first 256 bytes of the ROM image"
|
---|
| 42 | %endif
|
---|
| 43 | %if (ROMVARS.ideVarsEnd - ROMVARS.ideVarsBegin) = 0
|
---|
| 44 | %error "there must be at lesat one .ideVars structure, it would be bizarre if this were not true, but it is assumed in the ah0h reset code."
|
---|
| 45 | %endif
|
---|
| 46 | %endif
|
---|
| 47 |
|
---|
[3] | 48 | ; Bit defines for ROMVARS.wFlags
|
---|
[199] | 49 | FLG_ROMVARS_FULLMODE EQU (1<<0) ; Full operating mode (steals base RAM, supports EBIOS etc.)
|
---|
| 50 | FLG_ROMVARS_DRVXLAT EQU (1<<2) ; Enable drive number translation
|
---|
| 51 | FLG_ROMVARS_SERIAL_SCANDETECT EQU (1<<3) ; Scan COM ports at the end of drive detection. Can also be invoked
|
---|
| 52 | ; by holding down the ALT key at the end of drive detection.
|
---|
| 53 | ; (Conveniently, this is 8, a fact we exploit when testing the bit)
|
---|
[243] | 54 | FLG_ROMVARS_MODULE_JRIDE EQU (1<<5) ; Here in case the configuration needs to know functionality is present
|
---|
[199] | 55 | FLG_ROMVARS_MODULE_SERIAL EQU (1<<6) ; Here in case the configuration needs to know functionality is present
|
---|
| 56 | FLG_ROMVARS_MODULE_EBIOS EQU (1<<7) ; Here in case the configuration needs to know functionality is present
|
---|
[176] | 57 |
|
---|
[143] | 58 | ; Boot Menu Display Modes (see Assembly Library Display.inc for standard modes)
|
---|
| 59 | DEFAULT_TEXT_MODE EQU 4
|
---|
[3] | 60 |
|
---|
[143] | 61 |
|
---|
[3] | 62 | ; Controller specific variables
|
---|
| 63 | struc IDEVARS
|
---|
[233] | 64 | ;;; Word 0
|
---|
| 65 | .wSerialPortAndBaud: ; Serial connection port (low, divided by 4) and baud rate divisor (high)
|
---|
[196] | 66 | .wPort: ; IDE Base Port for Command Block (usual) Registers
|
---|
[233] | 67 | .bSerialPort resb 1
|
---|
| 68 | .bSerialBaud resb 1
|
---|
[196] | 69 |
|
---|
[233] | 70 | ;;; Word 1
|
---|
| 71 | .wPortCtrl:
|
---|
| 72 | .bSerialUnused resb 1 ; IDE Base Port for Control Block Registers
|
---|
[196] | 73 |
|
---|
[233] | 74 | .wSerialCOMPortCharAndDevice: ; In DetectPrint, we grab the COM Port char and Device at the same time
|
---|
| 75 | .bSerialCOMPortChar resb 1 ; Serial connection COM port number/letter
|
---|
| 76 |
|
---|
| 77 | ;;; Word 2
|
---|
[196] | 78 | .bDevice resb 1 ; Device type
|
---|
[233] | 79 |
|
---|
[196] | 80 | .bIRQ resb 1 ; Interrupt Request Number
|
---|
[233] | 81 |
|
---|
| 82 | ;;; And more...
|
---|
[196] | 83 | .drvParamsMaster resb DRVPARAMS_size
|
---|
| 84 | .drvParamsSlave resb DRVPARAMS_size
|
---|
[3] | 85 | endstruc
|
---|
| 86 |
|
---|
[261] | 87 | %ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
|
---|
| 88 | %if IDEVARS.bSerialCOMPortChar+1 != IDEVARS.bDevice
|
---|
| 89 | %error "IDEVARS.bSerialCOMPortChar needs to come immediately before IDEVARS.bDevice so that both bytes can be fetched at the same time inside DetectPrint.asm"
|
---|
| 90 | %endif
|
---|
[233] | 91 | %endif
|
---|
| 92 |
|
---|
[199] | 93 | ; Default values for Port and PortCtrl, shared with the configurator
|
---|
| 94 | ;
|
---|
| 95 | DEVICE_XTIDE_DEFAULT_PORT EQU 300h
|
---|
| 96 | DEVICE_XTIDE_DEFAULT_PORTCTRL EQU 308h
|
---|
| 97 | DEVICE_ATA_DEFAULT_PORT EQU 1F0h
|
---|
| 98 | DEVICE_ATA_DEFAULT_PORTCTRL EQU 3F0h
|
---|
| 99 |
|
---|
[175] | 100 | ; Device types for IDEVARS.bDevice
|
---|
[199] | 101 | ;
|
---|
[150] | 102 | DEVICE_8BIT_DUAL_PORT_XTIDE EQU (0<<1)
|
---|
| 103 | DEVICE_XTIDE_WITH_REVERSED_A3_AND_A0 EQU (1<<1)
|
---|
| 104 | DEVICE_8BIT_SINGLE_PORT EQU (2<<1)
|
---|
| 105 | DEVICE_16BIT_ATA EQU (3<<1)
|
---|
| 106 | DEVICE_32BIT_ATA EQU (4<<1)
|
---|
[244] | 107 | DEVICE_SERIAL_PORT EQU (5<<1)
|
---|
[238] | 108 | DEVICE_JRIDE_ISA EQU (6<<1)
|
---|
[3] | 109 |
|
---|
[199] | 110 |
|
---|
[3] | 111 | ; Master/Slave drive specific parameters
|
---|
| 112 | struc DRVPARAMS
|
---|
| 113 | .wFlags resb 2 ; Drive flags
|
---|
[227] | 114 | .dwMaximumLBA: ; User specified maximum number of sectors
|
---|
[3] | 115 | .wCylinders resb 2 ; User specified cylinders (1...16383)
|
---|
[99] | 116 | .wHeadsAndSectors:
|
---|
| 117 | .bHeads resb 1 ; User specified Heads (1...16)
|
---|
[3] | 118 | .bSect resb 1 ; User specified Sectors per track (1...63)
|
---|
| 119 | endstruc
|
---|
| 120 |
|
---|
| 121 | ; Bit defines for DRVPARAMS.wFlags
|
---|
[276] | 122 | MASK_DRVPARAMS_WRITECACHE EQU (3<<0) ; Drive internal write cache settings (must start at bit 0)
|
---|
| 123 | FLG_DRVPARAMS_BLOCKMODE EQU (1<<2) ; Enable Block mode transfers
|
---|
| 124 | FLG_DRVPARAMS_USERCHS EQU (1<<3) ; User specified P-CHS values
|
---|
| 125 | FLG_DRVPARAMS_USERLBA EQU (1<<4) ; User specified LBA values
|
---|
[3] | 126 |
|
---|
[276] | 127 | ; Drive Write Cache values for DRVPARAMS.wFlags.MASK_DRVPARAMS_WRITECACHE
|
---|
| 128 | DEFAULT_WRITE_CACHE EQU 0 ; Must be 0
|
---|
| 129 | DISABLE_WRITE_CACHE EQU 1
|
---|
| 130 | ENABLE_WRITE_CACHE EQU 2
|
---|
| 131 |
|
---|
[3] | 132 | %endif ; ROMVARS_INC
|
---|