VirtualBox

Ignore:
Timestamp:
Nov 16, 2022 10:38:34 PM (2 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
154607
Message:

ValKit/bs3kit: Detect 320KB and 360KB image sizes and pad them too to make sure the FDC doesn't think they are 5.25" floppy images. bugref:9898

Location:
trunk/src/VBox/ValidationKit/bootsectors/bs3kit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/VBoxBs3Linker.cpp

    r96407 r97574  
    330330       the bootsector adjust it's bMaxHeads value when getting a 20h error
    331331       we end up with a garbaged image (seems somewhere in the BIOS/FDC it is
    332        still treated as a double sided floppy and we get half the data we want and
    333        with gaps). */
     332       still treated as a double sided floppy and we get half the data we want
     333       and with gaps).
     334
     335       Similarly, if the size is 320KB or 360KB the FDC detects it as a double
     336       sided 5.25" floppy with 40 tracks, while the BIOS keeps reporting a
     337       1.44MB 3.5" floppy. So, just avoid those sizes too. */
    334338    uint32_t cbOutput = ftell(pOutput);
    335     if (   cbOutput == 512 * 8 * 40 /* 160kB 5"1/4 */
    336         || cbOutput == 512 * 9 * 40 /* 180kB 5"1/4 */)
     339    if (   cbOutput == 512 * 8 * 40 * 1 /* 160kB 5"1/4 SS */
     340        || cbOutput == 512 * 9 * 40 * 1 /* 180kB 5"1/4 SS */
     341        || cbOutput == 512 * 8 * 40 * 2 /* 320kB 5"1/4 DS */
     342        || cbOutput == 512 * 9 * 40 * 2 /* 360kB 5"1/4 DS */ )
    337343    {
    338344        static uint8_t const s_abZeroSector[512] = { 0 };
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-bootsector.asm

    r96407 r97574  
    5858;; Halts on failure location. For debugging.
    5959;%define HLT_ON_FAILURE 1
     60
     61;; Enables saving of initial register state.
     62;; Dropping this is useful for making more room for debugging.
     63%define BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE
    6064
    6165
     
    126130        cli
    127131
     132%ifdef BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE
    128133        ; save the registers.
    129134        mov     [cs:BS3_ADDR_REG_SAVE + BS3REGCTX.rax], ax
    130135        mov     [cs:BS3_ADDR_REG_SAVE + BS3REGCTX.ds], ds
     136%endif
    131137
    132138        ; set up the DS segment reister so we can skip the CS prefix when saving more prefixes..
     
    134140        mov     ds, ax
    135141
     142%ifdef BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE
    136143        mov     [BS3_ADDR_REG_SAVE + BS3REGCTX.rdi], di
    137144        mov     di, BS3_ADDR_REG_SAVE
     
    141148        mov     [di + BS3REGCTX.es], es
    142149        mov     [di + BS3REGCTX.rbp], bp
     150%endif
    143151
    144152        ; set up the stack.
     
    198206.is_80286:
    199207CPU 286
     208%ifdef BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE
    200209        smsw    [di + BS3REGCTX.cr0 - 0x70]
     210%endif
    201211.pre_80286:
    202212CPU 8086
     213%ifdef BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE
    203214        mov     [di - 0x70 + BS3REGCTX.rbx], bx
    204215        mov     [di - 0x70 + BS3REGCTX.rdx], dx
    205216        mov     [di - 0x70 + BS3REGCTX.rsi], si
     217%endif
    206218        jmp     .do_load
    207219
     
    209221CPU 386
    210222.is_386plus:
     223%ifdef BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE
    211224        shr     eax, 16
    212225        mov     [di - 0x70 + BS3REGCTX.rax+2], ax
     
    253266        mov     [di - 0x70 + BS3REGCTX.cr4], eax
    254267.no_cr4:
     268%endif
    255269        ; Make sure caching is enabled and alignment is off.
    256270        mov     eax, cr0
     271%ifdef BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE
    257272        mov     [di - 0x70 + BS3REGCTX.cr0], eax
     273%endif
    258274        and     eax, ~(X86_CR0_NW | X86_CR0_CD | X86_CR0_AM)
    259275        mov     cr0, eax
     
    396412        mov     ax, 0201h               ; al=1 sector; ah=read function
    397413        int     13h
    398 %ifndef HLT_ON_FAILURE
     414 %ifndef HLT_ON_FAILURE
    399415        jc      .failure
    400 %else
     416 %else
    401417        jnc     .read_ok
    402418        cli
    403419        hlt
    404420.read_ok:
    405 %endif
     421 %endif
    406422
    407423        ; advance to the next sector/head/cylinder.
     
    482498        inc     ch
    483499        jmp     .the_load_loop
    484 .read_one
     500.read_one:
     501%elifdef HLT_ON_FAILURE
     502        je      .read_one_ok
     503        cli
     504        hlt
     505.read_one_ok:
    485506%else
    486507        jne     .failure
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette