Changeset 59239 in vbox for trunk/src/VBox/ValidationKit/bootsectors
- Timestamp:
- Jan 1, 2016 1:49:33 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104867
- Location:
- trunk/src/VBox/ValidationKit/bootsectors/bs3kit
- Files:
-
- 5 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/Makefile.kmk
r59237 r59239 465 465 # 466 466 VBOX_BS3KIT_COMMON_SOURCES = \ 467 bs3-cmn-A20Disable.asm \ 468 bs3-cmn-A20Enable.asm \ 469 bs3-cmn-KbdRead.asm \ 470 bs3-cmn-KbdWait.asm \ 471 bs3-cmn-KbdWrite.asm \ 467 472 bs3-cmn-Shutdown.asm \ 468 473 bs3-cmn-Panic.asm \ -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PagingInitRootForPP.c
r59237 r59239 44 44 * using 4 GB pages. So, we only really need one page directory, 45 45 * that's all. 46 * 47 * ASSUMES page size extension available, i.e. pentium+. 46 48 */ 47 pPgDir = ( PX86PD)Bs3MemAlloc(BS3MEMKIND_TILED, _4K);49 pPgDir = (X86PD BS3_FAR *)Bs3MemAlloc(BS3MEMKIND_TILED, _4K); 48 50 if (pPgDir) 49 51 { -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-mode-SwitchToPP16.asm
r59237 r59239 65 65 66 66 push eax 67 push ecx 67 68 pushfd 68 69 69 70 ; 70 ; Make sure PAE is really off. 71 ; Make sure PAE is really off and that PSE is enabled. 72 ; ASSUMES PSE supported (pentium+). 71 73 ; 72 74 mov eax, cr4 73 test eax, X86_CR4_PAE 74 jz .cr4_is_fine 75 mov ecx, eax 75 76 and eax, ~X86_CR4_PAE 77 or eax, X86_CR4_PSE 78 cmp eax, ecx 79 je .cr4_is_fine 76 80 mov cr4, eax 77 81 .cr4_is_fine: … … 109 113 110 114 popfd 115 pop ecx 111 116 pop eax 112 117 ret -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-mode-SwitchToPP32.asm
r59237 r59239 69 69 70 70 push eax 71 push ecx 71 72 pushfd 72 73 … … 75 76 ; 76 77 mov eax, cr4 77 test eax, X86_CR4_PAE 78 jz .cr4_is_fine 78 mov ecx, eax 79 79 and eax, ~X86_CR4_PAE 80 or eax, X86_CR4_PSE 81 cmp eax, ecx 82 je .cr4_is_fine 80 83 mov cr4, eax 81 84 .cr4_is_fine: … … 114 117 115 118 ; 116 ; Restore e ax and flags (IF).119 ; Restore ecx, eax and flags (IF). 117 120 ; 118 121 %if TMPL_BITS < 32 … … 122 125 mov [esp + 8], eax ; Store it in the place right for 32-bit returns. 123 126 %endif 124 pop esp 127 pop ecx 128 pop eax 125 129 popfd 126 130 ret -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-rm-InitMemory.c
r58789 r59239 159 159 160 160 /* 161 * Enable the A20 gate. 162 */ 163 Bs3A20Enable(); 164 165 /* 161 166 * Low memory (4K chunks). 162 167 * - 0x00000 to 0x004ff - Interrupt Vector table, BIOS data area. … … 287 292 Bs3SlabListInit(&g_aBs3UpperTiledSlabLists[i], g_acbBs3SlabLists[i]); 288 293 } 294 289 295 } 290 296 -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3kit.h
r59237 r59239 896 896 { \ 897 897 (a_Name).XPtr.u.uLow = BS3_FP_OFF(pTypeCheck); \ 898 (a_Name).XPtr.u.uHigh = ( BS3_FP_SEG(pTypeCheck) & UINT16_C(0xfff8)) - BS3_SEL_TILED; \898 (a_Name).XPtr.u.uHigh = ((BS3_FP_SEG(pTypeCheck) & UINT16_C(0xfff8)) - BS3_SEL_TILED) >> 3; \ 899 899 } \ 900 900 else \ … … 1440 1440 1441 1441 /** 1442 * Enables the A20 gate. 1443 */ 1444 BS3_DECL(void) Bs3A20Enable_c16(void); 1445 BS3_DECL(void) Bs3A20Enable_c32(void); /**< @copydoc Bs3A20Enable_c16 */ 1446 BS3_DECL(void) Bs3A20Enable_c64(void); /**< @copydoc Bs3A20Enable_c16 */ 1447 #define Bs3A20Enable BS3_CMN_NM(Bs3A20Enable) /**< Selects #Bs3A20Enable_c16, #Bs3A20Enable_c32 or #Bs3A20Enable_c64. */ 1448 1449 /** 1450 * Enables the A20 gate via the keyboard controller 1451 */ 1452 BS3_DECL(void) Bs3A20EnableViaKbd_c16(void); 1453 BS3_DECL(void) Bs3A20EnableViaKbd_c32(void); /**< @copydoc Bs3A20EnableViaKbd_c16 */ 1454 BS3_DECL(void) Bs3A20EnableViaKbd_c64(void); /**< @copydoc Bs3A20EnableViaKbd_c16 */ 1455 #define Bs3A20EnableViaKbd BS3_CMN_NM(Bs3A20EnableViaKbd) /**< Selects #Bs3A20EnableViaKbd_c16, #Bs3A20EnableViaKbd_c32 or #Bs3A20EnableViaKbd_c64. */ 1456 1457 /** 1458 * Enables the A20 gate via the PS/2 control port A. 1459 */ 1460 BS3_DECL(void) Bs3A20EnableViaPortA_c16(void); 1461 BS3_DECL(void) Bs3A20EnableViaPortA_c32(void); /**< @copydoc Bs3A20EnableViaPortA_c16 */ 1462 BS3_DECL(void) Bs3A20EnableViaPortA_c64(void); /**< @copydoc Bs3A20EnableViaPortA_c16 */ 1463 #define Bs3A20EnableViaPortA BS3_CMN_NM(Bs3A20EnableViaPortA) /**< Selects #Bs3A20EnableViaPortA_c16, #Bs3A20EnableViaPortA_c32 or #Bs3A20EnableViaPortA_c64. */ 1464 1465 /** 1466 * Disables the A20 gate. 1467 */ 1468 BS3_DECL(void) Bs3A20Disable_c16(void); 1469 BS3_DECL(void) Bs3A20Disable_c32(void); /**< @copydoc Bs3A20Disable_c16 */ 1470 BS3_DECL(void) Bs3A20Disable_c64(void); /**< @copydoc Bs3A20Disable_c16 */ 1471 #define Bs3A20Disable BS3_CMN_NM(Bs3A20Disable) /**< Selects #Bs3A20Disable_c16, #Bs3A20Disable_c32 or #Bs3A20Disable_c64. */ 1472 1473 /** 1474 * Disables the A20 gate via the keyboard controller 1475 */ 1476 BS3_DECL(void) Bs3A20DisableViaKbd_c16(void); 1477 BS3_DECL(void) Bs3A20DisableViaKbd_c32(void); /**< @copydoc Bs3A20DisableViaKbd_c16 */ 1478 BS3_DECL(void) Bs3A20DisableViaKbd_c64(void); /**< @copydoc Bs3A20DisableViaKbd_c16 */ 1479 #define Bs3A20DisableViaKbd BS3_CMN_NM(Bs3A20DisableViaKbd) /**< Selects #Bs3A20DisableViaKbd_c16, #Bs3A20DisableViaKbd_c32 or #Bs3A20DisableViaKbd_c64. */ 1480 1481 /** 1482 * Disables the A20 gate via the PS/2 control port A. 1483 */ 1484 BS3_DECL(void) Bs3A20DisableViaPortA_c16(void); 1485 BS3_DECL(void) Bs3A20DisableViaPortA_c32(void); /**< @copydoc Bs3A20DisableViaPortA_c16 */ 1486 BS3_DECL(void) Bs3A20DisableViaPortA_c64(void); /**< @copydoc Bs3A20DisableViaPortA_c16 */ 1487 #define Bs3A20DisableViaPortA BS3_CMN_NM(Bs3A20DisableViaPortA) /**< Selects #Bs3A20DisableViaPortA_c16, #Bs3A20DisableViaPortA_c32 or #Bs3A20DisableViaPortA_c64. */ 1488 1489 1490 /** 1442 1491 * Initializes root page tables for page protected mode (PP16, PP32). 1443 1492 * … … 1450 1499 1451 1500 1501 /** 1502 * Waits for the keyboard controller to become ready. 1503 */ 1504 BS3_DECL(void) Bs3KbdWait_c16(void); 1505 BS3_DECL(void) Bs3KbdWait_c32(void); /**< @copydoc Bs3KbdWait_c16 */ 1506 BS3_DECL(void) Bs3KbdWait_c64(void); /**< @copydoc Bs3KbdWait_c16 */ 1507 #define Bs3KbdWait BS3_CMN_NM(Bs3KbdWait) /**< Selects #Bs3KbdWait_c16, #Bs3KbdWait_c32 or #Bs3KbdWait_c64. */ 1508 1509 /** 1510 * Sends a read command to the keyboard controller and gets the result. 1511 * 1512 * The caller is responsible for making sure the keyboard controller is ready 1513 * for a command (call #Bs3KbdWait if unsure). 1514 * 1515 * @returns The value read is returned (in al). 1516 * @param bCmd The read command. 1517 */ 1518 BS3_DECL(uint8_t) Bs3KbdRead_c16(uint8_t bCmd); 1519 BS3_DECL(uint8_t) Bs3KbdRead_c32(uint8_t bCmd); /**< @copydoc Bs3KbdRead_c16 */ 1520 BS3_DECL(uint8_t) Bs3KbdRead_c64(uint8_t bCmd); /**< @copydoc Bs3KbdRead_c16 */ 1521 #define Bs3KbdRead BS3_CMN_NM(Bs3KbdRead) /**< Selects #Bs3KbdRead_c16, #Bs3KbdRead_c32 or #Bs3KbdRead_c64. */ 1522 1523 /** 1524 * Sends a write command to the keyboard controller and then sends the data. 1525 * 1526 * The caller is responsible for making sure the keyboard controller is ready 1527 * for a command (call #Bs3KbdWait if unsure). 1528 * 1529 * @param bCmd The write command. 1530 * @param bData The data to write. 1531 */ 1532 BS3_DECL(void) Bs3KbdWrite_c16(uint8_t bCmd, uint8_t bData); 1533 BS3_DECL(void) Bs3KbdWrite_c32(uint8_t bCmd, uint8_t bData); /**< @copydoc Bs3KbdWrite_c16 */ 1534 BS3_DECL(void) Bs3KbdWrite_c64(uint8_t bCmd, uint8_t bData); /**< @copydoc Bs3KbdWrite_c16 */ 1535 #define Bs3KbdWrite BS3_CMN_NM(Bs3KbdWrite) /**< Selects #Bs3KbdWrite_c16, #Bs3KbdWrite_c32 or #Bs3KbdWrite_c64. */ 1536 1452 1537 /** @} */ 1453 1538
Note:
See TracChangeset
for help on using the changeset viewer.