1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896
|
; asmsyntax=nasm
;
; CD-ROM Boot Extension v 1.1 for Smart Boot Manager
;
; Copyright (C) 2000, Christopher Li <chrisl@gnuchina.org>.
; Copyright (C) 2000, James Su <suzhe@gnuchina.org>
;
; This is free software, you can redistribute it and/or modify it
; under the terms of the GNU General Public License version 2 or above.
;
; The ATAPI driver is based on the source code of atadrv written by
; Hale Landis <hlandis@ibm.net>, Thanks him a lot!
;
; Without his great program, we could not implement the CD-ROM Boot feature
; so quickly.
;
%include "helptool.h"
%include "macros.h"
%include "hd_io.h"
%include "atapi.h"
%undef DEBUG
%ifdef DEBUG
%include "debug.h"
%endif
%define DELAY_MSECS 55 ; about 1 millisecond
;%define EDD_3_0
%define CDSECTOR_SIZE 0x800
%define sane_check
%define check_extra_fail
%define MIN_CDROM_ID 0xE0
%define REG_ATAPI_MAX_BYTES 32768
%ifndef DISABLE_CDBOOT
%define EDD30_SIG1 'BM'
%define EDD30_SIG2 'CB'
%else
%define EDD30_SIG1 'BM'
%define EDD30_SIG2 'SD'
%endif
org 0
section .text
jmp edd30_main
nop
copyright_msg db 'CD-ROM Booting Module V1.2 for Smart BootManager, http://btmgr.sourceforge.net',0x0d,0x0a
db 'Copyright (C) 2000 Christopher Li, James Su',0x0d,0x0a,0x0a,
db 'Booting from CD-ROM...',0x0d,0x0a,0
edd30_main:
;input ah = 0, install my int 13h
; ah = 1, uninstall my int 13h
; ah = 2, initialize atapi
; ah = 3, set drive map
; bx , cx , drive map
; ah = 4, set atapi io ports
; bx , cx , atapi io ports
pusha
push es
push ds
push cs
pop ds
cld
xor dx, dx
mov es, dx
xor al, al
or ah, ah
je .inst_int13h
cmp ah, 1
je .uninst_int13h
%ifndef DISABLE_CDBOOT
cmp ah, 2
je .init_atapi
cmp ah, 4
je .set_io_ports
%endif
cmp ah, 3
je .set_drvmap
jmp .end
.inst_int13h:
cmp word [es:0x13*4], new_int13h
je .end
push es
push cs
pop es
mov di, start_of_emu_data
mov cx, end_of_emu_data - start_of_emu_data
rep stosb
pop es
cli
mov ax, new_int13h
xchg ax, [es:0x13*4]
mov [int13h_old_off], ax
mov ax, cs
xchg ax, [es:0x13*4+2]
mov [int13h_old_seg], ax
sti
jmp short .end
.uninst_int13h:
cmp word [es:0x13*4], new_int13h
jne .end
%ifndef DISABLE_CDBOOT
call reset_atapi_cdroms
%endif
cli
mov ax, [int13h_old_off]
mov [es:0x13*4], ax
mov ax, [int13h_old_seg]
mov [es:0x13*4+2], ax
sti
jmp short .end
.set_drvmap:
mov [drive_map], bx
mov [drive_map+2], cx
xor ax, ax
mov [drive_map+4], ax
jmp short .end
%ifndef DISABLE_CDBOOT
.set_io_ports:
mov [reg_base_addr_append], bx
mov [reg_base_addr_append+2], cx
.init_atapi:
push cs
pop es
mov di, start_of_atapi_data
mov cx, end_of_atapi_data - start_of_atapi_data
rep stosb
dec word [atapi_cur_dev]
%ifdef SLOW_ATAPI_DEVICE
call init_timer
%endif
call init_atapi_cdroms
%endif
.end:
pop ds
pop es
popa
retf
;=============================================================================
; My New INT 13h handler starts here!
;=============================================================================
new_int13h:
cmp ax, 0x6666
jne .common_func
cmp bx, EDD30_SIG1
jne .common_func
cmp cx, EDD30_SIG2
jne .common_func
xchg bx, cx
iret
.common_func:
;=============================================================================
cld ; clear direction, only need one time
push ax ; save AX (contains function code in AH)
push bp ; need BP to mess with stack
mov bp, sp
; Stack layout:
;
; +8 INT flags
; +6 INT CS
; +4 INT IP
; +2 AX
; BP+0 BP
%ifndef DISABLE_CDBOOT
cmp byte [cs:atapi_dev_count], 0
jz .no_cdrom
cmp dl, MIN_CDROM_ID
jb .not_cdrom_drv
push dx
sub dl, MIN_CDROM_ID
cmp dl, [cs:atapi_dev_count]
pop dx
jae .not_cdrom_drv
jmp edd30_for_cdrom
.not_cdrom_drv:
cmp byte [cs:emu_disk_type], 0
je .not_emu_drv
cmp dl,[cs:edd30_cdemu_spec + struc_cdemu_spec.emu_drvid]
je cdemu_int13h
.not_emu_drv:
.no_cdrom:
%endif
pushf ; push flags (to act like interrupt)
push si
mov si, drive_map
.mapfl: mov ax, [cs:si] ; get next entry
inc si
inc si
or ax, ax ; at end ?
jz .nomap ; yes -> do not map
cmp dl, al ; match ?
jne .mapfl ; no -> continue
mov dl, ah ; map drive
.nomap: pop si ; restore SI
mov [bp+8], ax ; overwrite old flags (to remember mapping)
mov ax, [bp+2] ; restore AX
mov bp, [bp] ; restore BP
db 0x9a ; CALL FAR
int13h_old_off dw 0
int13h_old_seg dw 0
push bp ; save BP again
mov bp,sp
; New stack layout:
;
; +10 mapping (was flags)
; +8 INT CS
; +6 INT IP
; +4 AX
; +2 obsolete BP
; BP+0 BP
xchg ax, [bp+4] ; save AX and get command
pushf ; fix driver number, if necessary
cmp ah, 8 ; do not fix
je done_int13
mov ax, [bp+10] ; no mapping ?
or ax, ax
jz done_int13
mov dl, al ; fix mapping
done_int13:
mov ax, [bp+4] ; restore AX
pop word [bp+10] ; restore flags
pop bp ; get BP
add sp, 4 ; fix SP
iret ; done
%ifndef DISABLE_CDBOOT
;=============================================================================
cdemu_int13h:
; Stack layout:
; +8 INT flags
; +6 INT CS
; +4 INT IP
; +2 AX
; BP+0 BP
; -2 ax
; -4 cx
; -6 dx
; -8 bx
; -10 sp
; -12 bp
; -14 si
; -16 di
; -18 ds
; -20 es
; -24 edx
pusha
push ds
push es
push edx
push cs
pop ds
push ax
movzx ax, byte [cs:emu_cdrom_id]
sub al, MIN_CDROM_ID
call select_atapi
pop ax
jnc .sel_atapi_ok
mov ah, 0xaa
jmp edd30_for_cdrom.fail_out
.sel_atapi_ok:
mov cx, (cdemu_act_table.end_of_table - cdemu_act_table)
xor di, di
.loop_search:
cmp [cdemu_act_table + di], ah
je .found_act
inc di
loop .loop_search
jmp edd30_for_cdrom.invalid_cmd
.found_act:
mov cx, [bp-4] ; restore cx
shl di, 1
jmp [cdemu_jmp_table + di]
;=============================================================================
.stop_disk_emu:
mov di, si
push word [bp-18]
pop es
mov si, edd30_cdemu_spec
mov cx, SIZE_OF_CDEMU_SPEC
rep movsb
or al, al
jnz near edd30_for_cdrom.success_out
.terminate_emu:
mov byte [emu_disk_type], al
jmp edd30_for_cdrom.success_out
.emu_get_param:
mov ah, [emu_disk_type]
mov [bp-8], ah ; bl = drive type
mov cx, [edd30_cdemu_spec + struc_cdemu_spec.cylinders]
xchg ch, cl
dec ch
and cl, 0x3f
mov dh, [edd30_cdemu_spec + struc_cdemu_spec.heads]
dec dh
mov dl, 0x02
mov [bp-4], cx
mov [bp-6], dx
xor ax, ax
jmp edd30_for_cdrom.success_out
.emu_get_type:
mov ah, 0x02
jmp edd30_for_cdrom.success_out_no_ah
.emu_read:
or al, al
jmpz .emu_read_fail
cmp dh, [emu_head]
jmpnb .emu_read_fail
mov dl, cl ; dl = sector number
and dl, 63
or dl, dl
jmpz .emu_read_fail
dec dl
cmp dl, [emu_sec]
jmpnb .emu_read_fail
movzx cx, ch
cmp cx, [emu_cyl]
jmpnb .emu_read_fail
mov ax, cx ; ax = cylinder
mul byte [emu_head] ; (cylinder*head
mov cl, dh
add ax, cx ; (cylinder*head + head)
mov cl, dl ; cl = sector
mul word [emu_sec] ; (cylinder*head + head)*sect_per_track
add ax, cx ; (cyl*head + head)*sect_p_t + sector
mov cl, [bp+2] ; number of sectors
mov di, [emu_buf_off]
xor edx, edx
mov dword [emu_last_read], edx
.emu_loop_read:
push ax
push bx
push cx
push di
movzx edx, ax
shr edx, 2
add edx, [edd30_cdemu_spec + struc_cdemu_spec.image_lba]
cmp edx, [emu_last_read]
je .emu_have_read
mov [emu_last_read], edx
mov cx, 1
push es
push word [emu_buf_seg]
pop es
call read_atapi
pop es
jc .emu_atapi_fail
.emu_have_read:
and ax, byte 3 ; sector = sector % 4
shl ax, byte 9 ; sector = sector * 512
mov si, [emu_buf_off]
add si, ax
mov di, bx
push ds
push word [emu_buf_seg]
pop ds
mov cx, 512
rep movsb
pop ds
pop di
pop cx
pop bx
pop ax
add bx, 512
inc ax
loop .emu_loop_read
jmp edd30_for_cdrom.success_out
.emu_atapi_fail:
pop di
pop cx
pop bx
pop ax
.emu_read_fail:
mov ah, 0x04
jmp edd30_for_cdrom.fail_out
;=============================================================================
edd30_for_cdrom:
; Stack layout:
; +8 INT flags
; +6 INT CS
; +4 INT IP
; +2 AX
; BP+0 BP
; -2 ax
; -4 cx
; -6 dx
; -8 bx
; -10 sp
; -12 bp
; -14 si
; -16 di
; -18 ds
; -20 es
; -24 edx
pusha
push ds
push es
push edx
push cs
pop ds
push ax
movzx ax, dl
sub al, MIN_CDROM_ID
call select_atapi
pop ax
jnc .sel_atapi_ok
mov ah, 0xaa
jmp .fail_out
.sel_atapi_ok:
mov cx, (edd30_act_table.end_of_table - edd30_act_table)
xor bx, bx
.loop_search:
cmp [edd30_act_table + bx], ah
je .found_act
inc bx
loop .loop_search
jmp .invalid_cmd
.found_act:
shl bx, byte 1
jmp [edd30_jmp_table + bx]
;==================================
.init_disk_emu_and_boot:
call edd30_init_disk_emu
jc near .fail_out
mov ax, [edd30_cdemu_spec + struc_cdemu_spec.load_seg]
mov es, ax
xor di, di
mov cx, [edd30_cdemu_spec + struc_cdemu_spec.sect_count]
add cx, 3 ; convert virtual sect count
shr cx, 2 ; to cdrom sect count
mov edx, [edd30_cdemu_spec + struc_cdemu_spec.image_lba]
call read_atapi
jnc .emu_boot_read_ok
mov ah, 0x04
jmp .fail_out
.emu_boot_read_ok:
mov si, copyright_msg
call draw_string_tty
call read_bios_time
mov dx, ax
add dx, byte 18*2
sti
.loop_delay:
call read_bios_time
cmp dx, ax
ja .loop_delay
cli
mov dl, [edd30_cdemu_spec + struc_cdemu_spec.emu_drvid]
mov [bp-6], dl ; set the driver id to dl
mov ax, es
shl ax, byte 4
mov [bp+4], ax ; set new ip
xor ax, ax
mov [bp+6], ax ; set new cs
mov [bp], ax ; clear bp
mov ax, 0xaa55
mov [bp+2], ax
jmp short .success_out_no_ah
.init_disk_emu:
call edd30_init_disk_emu
jnc .success_out
jmp short .fail_out
.return_boot_catalog:
call edd30_return_boot_catalog
jnc .success_out
jmp short .fail_out
.get_drv_param:
call edd30_get_cdrom_param
jnc .success_out
jmp short .invalid_cmd
.ext_write:
mov ah, 0x03
jmp short .fail_out
.ext_read:
call edd30_read_cdrom
jnc .success_out
jmp short .fail_out
.install_check:
mov word [bp-8], 0xaa55 ; bx=0xaa55
%ifdef EDD_3_0
mov ah, 0x30 ; ax=0x30 edd-3.0
%else
mov ah, 0x21 ; ax=0x21 edd-2.1
%endif
mov byte [bp-4], 0x07 ; cx= 0x01 | 0x04, ext disk access and edd ok
jmp short .success_out_no_ah
.get_disk_type:
mov ah, 0x02
jmp short .success_out_no_ah
.get_last_stat:
mov ah, [int13_last_stat]
jmp short .success_out_no_ah
.reset:
call reg_reset
mov ax, [atapi_cur_dev]
call select_atapi_force
.success_out:
xor ah,ah
.success_out_no_ah:
and byte [bp+8],0xfe
jmp short .done
.invalid_cmd:
mov ah, 0x01
.fail_out:
or byte [bp+8],1
.done:
mov [int13_last_stat],ah
mov [bp+3], ah
pop edx
pop es
pop ds
popa
pop bp
pop ax
iret
;=============================================================================
edd30_read_cdrom:
;return cf=0 success, cf=1 fail, ah = fail code
call test_atapi_ready
jnc .atapi_ok
mov ah, 0xaa
jmp short .fail_out
.atapi_ok:
push ds
mov ax, [bp-18] ; restore ds
mov ds, ax
cmp byte [si], 16
je short .packet_ok
pop ds
setne ah
.fail_out:
stc
ret
.packet_ok:
mov bx, [si + struc_int13ext.buf_addr_seg]
mov cx, [si + struc_int13ext.blk_count]
mov edx, [si + struc_int13ext.blk_num_low1]
mov di, [si + struc_int13ext.buf_addr_off]
pop ds
mov es, bx
call read_atapi
jc .read_fail
ret
.read_fail:
mov ah, 0x0c
stc
ret
;=============================================================================
edd30_get_cdrom_param:
;return cf =0 ok, cf =1 fail
push ds
mov ax, [bp-18] ; restore ds
mov ds, ax
mov ax, [si]
cmp ax, byte 26
jae .packet_ok
pop ds
setb ah
.fail_out:
stc
ret
.packet_ok:
%ifdef EDD_3_0
cmp ax, byte 66
jb .below_3_0
mov ax, 66
jmp .set_packet_size
.below_3_0:
%endif
cmp ax, byte 30
jb .below_2_0
mov ax, 30
jmp .set_packet_size
.below_2_0:
mov ax, 26
.set_packet_size:
mov [si], ax
mov word [si+ struc_extparam.flags], 0x74 ; removable, lock, chg line
mov word [si+ struc_extparam.bytes_per_sect], CDSECTOR_SIZE
xor bx, bx
dec bx
mov [si+ struc_extparam.cylinders], bx
mov [si+ struc_extparam.heads], bx
mov [si+ struc_extparam.sectors], bx
%ifdef EDD_3_0
cmp ax, byte 66
jb .no_dpi
mov word [si+ struc_extparam.dpi_key], 0xBEDD ; dpi signature
mov word [si+ struc_extparam.dpi_length], 0x24 ; dpi length
mov dword [si+ struc_extparam.host_bus_type], 'ISA'
mov dword [si+ struc_extparam.interface_type], 'ATAP'
mov word [si+ struc_extparam.interface_type+4], 'I'
mov ax, [cs:atapi_cur_dev]
call get_atapi_base_io
mov [si+ struc_extparam.device_path], cx
mov [si+ struc_extparam.interface_path], bx
push si
add si, struc_extparam.dpi_key
mov cx, struc_extparam.checksum - struc_extparam.dpi_key
call edd30_checksum
mov [si], ah
pop si
.no_dpi:
%endif
cmp ax, byte 30
jb .no_dpte
mov word [si+ struc_extparam.dpte_addr], atapi_dpte_buffer
mov word [si+ struc_extparam.dpte_addr+2], cs
.no_dpte:
pop ds
mov ax, [atapi_cur_dev]
call get_atapi_base_io
mov si, atapi_dpte_buffer
mov [si], bx
mov [si+2], dx
mov al, 0xe0
shl cl, 4
or al, cl
mov [si+struc_dpte.flags], al ; LBA enable, bit 4 = slave drv
mov byte [si+struc_dpte.bios_spec], 0x60 ;ATAPI and removable
mov cx, struc_dpte.checksum
call edd30_checksum
mov [si], ah
clc
ret
edd30_checksum:
xor ah, ah
.loop_checksum:
lodsb
add ah, al
loop .loop_checksum
neg ah
ret
;=============================================================================
edd30_return_boot_catalog:
;return cf =0 ok, cf =1 fail
call test_atapi_ready
jnc .atapi_ok
mov ah, 0xaa
jmp short .fail_out
.atapi_ok:
push ds
mov ax, [bp-18] ; restore ds
mov ds, ax
cmp byte [si], 8
pop ds
jae .packet_ok
setb ah
.fail_out:
stc
ret
.packet_ok:
push cs
pop es
mov di, edd30_disk_buffer
xor cx, cx
inc cx
mov dx, 0x11
movzx edx,dx
call read_atapi ; read boot record volume descriptor
jc .read_fail
cmp byte [di], 0
jne .non_bootable
cmp dword [di+7], 'EL T'
jne .non_bootable
cmp dword [di+11], 'ORIT'
jne .non_bootable
mov edx, [di+0x47]
or edx, edx
jz .non_bootable
push ds
mov ax, [bp-18] ; restore ds
mov ds, ax
movzx eax, word [si + struc_cdbc_cmd.begnning_sect] ; begnning sector
add edx, eax
mov cl, [si + struc_cdbc_cmd.sector_count]
mov bx, [si + struc_cdbc_cmd.buf_addr_seg]
mov di, [si + struc_cdbc_cmd.buf_addr_off]
pop ds
mov es, bx
call read_atapi
jc .read_fail
ret
.non_bootable:
.read_fail:
mov ah, 0x0c
stc
ret
;=============================================================================
edd30_init_disk_emu:
call test_atapi_ready
jnc .atapi_ok
mov ah, 0xaa
jmp short .fail_out
.atapi_ok:
push ds
mov ax, [bp-18] ; restore ds
mov ds, ax
cmp byte [si], SIZE_OF_CDEMU_SPEC
jae .packet_ok
pop ds
.invalid_cmd:
setb ah
.fail_out:
stc
ret
.packet_ok:
push es
push cs
pop es
mov di, edd30_cdemu_spec
push di
mov cx, SIZE_OF_CDEMU_SPEC
rep movsb
pop si
pop es
pop ds
mov [emu_cdrom_id], dl
mov al, [si + struc_cdemu_spec.emu_drvid]
mov al, [si + struc_cdemu_spec.media_type]
and al, 0x0f
cmp al, 4
jae .invalid_cmd
shl al, 1
mov [emu_disk_type], al
mov ax, [si + struc_cdemu_spec.user_bufseg]
or ax, ax
jnz .has_user_buf
mov [emu_buf_seg], cs
mov ax, edd30_disk_buffer
mov [emu_buf_off], ax
jmp short .cont
.has_user_buf:
mov [emu_buf_seg], ax
xor ax, ax
mov [emu_buf_off], ax
.cont:
mov ax, [si + struc_cdemu_spec.load_seg]
or ax, ax
jnz .has_load_seg
mov word [si + struc_cdemu_spec.load_seg], 0x07c0
.has_load_seg:
mov ah, [si + struc_cdemu_spec.sectors]
mov bl, ah
shl ah, byte 6
mov al, [si + struc_cdemu_spec.cylinders]
mov [emu_cyl], ax
and bx, byte 63
mov [emu_sec], bx
mov bl, [si + struc_cdemu_spec.heads]
mov [emu_head], bx
%if 1
cmp byte [emu_disk_type], 0
jz .no_disk_swap
cmp byte [si + struc_cdemu_spec.emu_drvid], 0
jnz .no_disk_swap
xor ax, ax
mov [drive_map+2], ax
inc al
mov [drive_map], ax ; install the swap drive map
;increase the floppy number
push es
push word 0x0040
pop es
mov bx, 0x0010
or byte [es:bx], 0x41
pop es
%endif
.no_disk_swap:
clc
ret
;=============================================================================
;draw_string_tty ---- Draw a string ending by zero ( tty mode )
;input:
; ds:si -> string
;output:
; none
;=============================================================================
draw_string_tty:
.draw1:
lodsb
or al, al
jz .end
mov bx,7
mov ah,0x0e
int 0x10
jmp short .draw1
.end:
ret
cdemu_act_table:
db 0x0, 0x1, 0x2, 0x4, 0x8, 0x15, 0x16, 0x4b
.end_of_table
cdemu_jmp_table:
dw edd30_for_cdrom.success_out ; 0 reset
dw edd30_for_cdrom.get_last_stat ; 1 get last state
dw cdemu_int13h.emu_read ; 2 read
dw cdemu_int13h.emu_read ; 4 verify
dw cdemu_int13h.emu_get_param ; 8 get param
dw cdemu_int13h.emu_get_type ; 0x15 get type
dw edd30_for_cdrom.success_out ; 0x16 detect disk change
dw cdemu_int13h.stop_disk_emu ; 0x4b stop disk emu
.end_of_table
edd30_act_table:
db 0x0, 0x1, 0x15, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4D, 0x4A, 0x4C, 0x4E, 0x4B
.end_of_table
edd30_jmp_table:
dw edd30_for_cdrom.reset
dw edd30_for_cdrom.get_last_stat
dw edd30_for_cdrom.get_disk_type
dw edd30_for_cdrom.install_check
dw edd30_for_cdrom.ext_read
dw edd30_for_cdrom.ext_write
dw edd30_for_cdrom.ext_read
dw edd30_for_cdrom.success_out ; lock / unlock
dw edd30_for_cdrom.success_out ; eject
dw edd30_for_cdrom.success_out ; extended seek
dw edd30_for_cdrom.get_drv_param
dw edd30_for_cdrom.success_out ; check media change
dw edd30_for_cdrom.return_boot_catalog
dw edd30_for_cdrom.init_disk_emu
dw edd30_for_cdrom.init_disk_emu_and_boot
dw edd30_for_cdrom.success_out ;set hardware configuration
dw cdemu_int13h.stop_disk_emu ; 0x4b stop disk emu
.end_of_table
;=============================================================================
; IDE ATAPI driver
;=============================================================================
;*************************************
;timer relate functions
;*************************************
%ifdef SLOW_ATAPI_DEVICE
proc init_timer
call read_bios_time
mov bx, ax
xor ecx, ecx
repeat
call read_bios_time
inc ecx
until {cmp bx, ax}, ne
mov eax, ecx
xor edx, edx
xor ecx, ecx
mov cx, DELAY_MSECS
div ecx
mov [delay_repeat_num], eax
endp
%endif
proc read_bios_time
; return dx:ax as the long time
save ds
sub ax,ax
mov ds,ax
repeat
mov eax,[0x46c]
until {cmp eax,[0x46c]}, e
endp
proc set_timeout
save eax
call read_bios_time
add ax, 5*18 ; 20 seconds
; FIXME: Midnight overflow
mov [time_out],ax
endp
proc check_timeout
; you need to setup the timeout first
%define is_timeout a
%define cc_nottimeout na
call read_bios_time
cmp ax,[time_out]
%ifdef DEBUG
if is_timeout
debug_print "timeout accord!!!"
endif
%endif
endp
proc sub_xfer_delay
%ifdef SLOW_ATAPI_DEVICE
save ecx
pushf
sti
mov ecx, [delay_repeat_num]
repeat
call read_bios_time
dec ecx
until {or ecx, ecx}, z
popf
%endif
endp
proc sub_atapi_delay
%ifdef SLOW_ATAPI_DEVICE
; delay a few clicks
; save ecx
if {cmp byte [atapi_delay_flag],0},nz
; pushf
; sti
; mov ecx, [delay_repeat_num]
; repeat
; call read_bios_time
; dec ecx
; until {or ecx, ecx}, z
; popf
call sub_xfer_delay
endif
%endif
endp
proc delay400ns
inbyte CB_ASTAT
%rep 3
in al,dx
%endrep
endp
proc reg_poll_busy
; need to setup the timeout first
;return ax=0 ok
; ax = 1 timeout
while {inbyte CB_STAT},{and al,CB_STAT_BSY},nz
call check_timeout
return if,is_timeout
endwhile
endp
proc __reg_select_dev
; ax = dev
; simpile version of the select dev
save bx
mov bx,ax
outbyte CB_DH,[bx+cmd_select_dev]
call delay400ns
endp
proc reg_select_dev
; ax = dev
; set_timeout first
save bx
mov bx,ax
if {cmp byte[reg_dev_info+bx], REG_CONFIG_TYPE_ATA},ae
call reg_poll_busy
return if,{or ax,ax},nz
mov ax,bx
call __reg_select_dev
%ifndef USE_ATA
call reg_poll_busy
%else
while
inbyte CB_STAT
if {cmp byte[reg_dev_info+bx],REG_CONFIG_TYPE_ATA},e
and al, CB_STAT_BSY | CB_STAT_RDY | CB_STAT_SKC
return if,{cmp al,CB_STAT_RDY|CB_STAT_SKC},e
else
return if,{test al,CB_STAT_BSY},z
endif
endwhile
%endif
else
call __reg_select_dev
endif
endp
proc reg_packet,withlocal,dir,packet_seg,packet_off,packet_len
; input:
; return ax = 0 noerror, ah = error code al= error bit
; cx = len
local status,1,reason,1,bcnt,2,pre_fail_bit7,1
save all
%define NON_DATA 0x80
%define cmd_buff atapi_cmd_buffer
%define cmd_buff_len 12
%define cmd_DC CB_DC_HD15
%define cmd_DC_ni CB_DC_HD15 | CB_DC_NIEN
call set_timeout
mov byte [.pre_fail_bit7],0
; outbytes CB_DC,cmd_DC_ni,CB_FR,0,CB_SC,0,CB_SN,0,
outbytes CB_DC,cmd_DC,CB_FR,0,CB_SC,0,CB_SN,0,
outbytes CB_CL,[.packet_len],CB_CH,[.packet_len+1]
outbyte CB_DH,[reg_cur_dev]
outbyte CB_CMD,CMD_PACKET
call delay400ns
call sub_atapi_delay
sub bx,bx
; while {inbyte CB_ASTAT},{test al,CB_STAT_BSY|CB_STAT_ERR|CB_STAT_DRQ},z
while {inbyte CB_ASTAT},{test al,CB_STAT_BSY},z
if
orblock
condiction {test al, CB_STAT_DRQ}, nz
condiction {test al, CB_STAT_ERR}, nz
endblock then
break
endif
or bl,FAILBIT0
break if, {call check_timeout},is_timeout
endwhile
while {inbyte CB_ASTAT},{test al, CB_STAT_BSY}, nz
; inbyte CB_ASTAT
; break if, {test al,CB_STAT_BSY},z
if {call check_timeout},is_timeout
mov word [.dir],-1
mov bh, 51
break
endif
endwhile
goton .skip_out,if,{cmp bh,0},nz
inbyte CB_STAT,[.status]
inbyte CB_SC, [.reason]
inbyte CB_CL, [.bcnt]
inbyte CB_CH, [.bcnt+1]
mov al,[.status]
and al,CB_STAT_BSY | CB_STAT_DRQ
if {cmp al,CB_STAT_DRQ},nz
mov bh,52
%ifdef DEBUG
print_stat [.status],"%b %s check BSY=0 DRQ=1 now\n",bx,STAT_BUF
%endif
goto .skip_out
endif
%ifdef sane_check
mov al,[.reason]
if
orblock
condiction {test al,CB_SC_P_TAG | CB_SC_P_REL | CB_SC_P_IO},nz
condiction {test al,CB_SC_P_CD},z
endblock then
or bl,FAILBIT2
%ifdef DEBUG
print_stat [.status],"%b %s %b check reason\n",bx,STAT_BUF,[.reason]
%endif
endif
mov ax,[.bcnt]
if {cmp ax,[.packet_len]},nz
or bl,FAILBIT3
%ifdef DEBUG
print_stat [.status],"%b %s 0x%x check packet_len\n",bx,STAT_BUF,[.bcnt]
%endif
endif
%endif
%ifdef DEBUG
debug_print "sending cmd buffer"
%endif
mov si,cmd_buff
mov cx,cmd_buff_len
shr cx,1
mov dx,[reg_addr+CB_DATA]
cld
rep outsw
call delay400ns
sub cx,cx
while
%ifdef DEBUG
debug_print " data transfer ----------------------------\n"
%endif
call sub_atapi_delay
while {inbyte CB_ASTAT},{test al,CB_STAT_BSY},nz
call check_timeout
if is_timeout
mov bh,54
goto .skip_out
endif
endwhile
%ifdef DEBUG
print_stat al,"%b %s wait ASTAT BSY=0\n",bx,STAT_BUF
%endif
; Data transfer loop
; read the primary state register
inbyte CB_STAT, [.status]
inbyte CB_SC, [.reason]
inbyte CB_CL, [.bcnt]
inbyte CB_CH, [.bcnt+1]
%ifdef DEBUG
print_stat [.status],"%b %s pre-data reason=%b len=%d\n",bx,STAT_BUF,[.reason],[.bcnt]
print_stat [.status]," stat "
debug_print " check the device said end of command"
%endif
if {test byte[.status],CB_STAT_BSY | CB_STAT_DRQ},z
or byte[.dir], NON_DATA
goto .skip_out
endif
%ifdef DEBUG
debug_print " device want transfer data BSY = 0 DRQ =1"
%endif
if {mov al,[.status]},{and al,CB_STAT_BSY|CB_STAT_DRQ},{cmp al,CB_STAT_DRQ},nz
mov bh,55
goto .skip_out
endif
%ifdef sane_check
%ifdef DEBUG
print_stat al," stat "
debug_print " check: C/nD=0, IO=1 (read) or IO=0 (write)"
%endif
if {test byte[.reason],CB_SC_P_TAG|CB_SC_P_REL|CB_SC_P_CD},nz
or bl,FAILBIT4
%ifdef DEBUG
print_stat al, " FAIL:%b %s reason=%b C/nD=0, IO=1 (read) or IO=0 (write)\n",bx,STAT_BUF,[.reason],
%endif
endif
if {test byte[.reason],CB_SC_P_IO},nz
if {cmp byte[.dir],0},nz
or bl,FAILBIT5
%ifdef DEBUG
print_stat al, " FAIL:%b %s reason=%b dir=%d\n",bx,STAT_BUF,[.reason],[.dir]
%endif
endif
endif
%endif
; do the slow data transfer
%ifdef DEBUG
debug_print " do slow delay"
%endif
if {cmp byte[reg_slow_xfer_flag],0},nz
call sub_xfer_delay
endif
%ifdef DEBUG
debug_print " check data len zero"
%endif
mov ax,[.bcnt]
if {or ax,ax},z
mov bh,60
or byte[.dir],NON_DATA
goto .skip_out
endif
%ifdef DEBUG
debug_print " check the buffer len"
%endif
%ifdef sane_check
if {cmp ax,REG_ATAPI_MAX_BYTES},a
or bl,FAILBIT6
endif
%endif
mov dl,[.pre_fail_bit7]
or bl,dl
test al, 1
setnz [.pre_fail_bit7]
mov dx,cx
add dx,ax
if {cmp dx,[.packet_len]},a
mov bh,59
or byte[.dir],NON_DATA
goto .skip_out
endif
push dx
mov cx,ax
inc cx
shr cx,1
mov dx,[reg_addr+CB_DATA*2]
cld
if {cmp byte[.dir],0},nz
push ds
push word [.packet_seg]
pop ds
mov si,[.packet_off]
rep outsw
pop ds
else
push es
push word [.packet_seg]
pop es
mov di,[.packet_off]
rep insw
pop es
endif
pop cx
add [.packet_off],ax
call delay400ns
endwhile
if {test byte [.dir], NON_DATA},z
call sub_atapi_delay
if is_timeout
mov bh,57
%ifdef DEBUG
debug_print " end of command, wait for BSY=0\n"
%endif
goto .skip_out
endif
endif
inbyte CB_STAT, ; [.status]
if {test al,CB_STAT_BSY|CB_STAT_DRQ|CB_STAT_ERR},nz
mov bh,58
%ifdef DEBUG
debug_print "Error: final check for stat al\n"
%endif
goto .skip_out
endif
inbyte CB_SC, [.reason]
.skip_out:
%ifdef check_extra_fail
mov al,[.reason]
if
orblock
condiction {test al,CB_SC_P_TAG|CB_SC_P_REL},nz
condiction {test al,CB_SC_P_IO },z
condiction {test al,CB_SC_P_CD},z
endblock then
or bx, FAILBIT8
%ifdef DEBUG
debug_print "FAIL:final check for protocol failures C/nD=1 IO=1\n"
%endif
endif
%endif
; outbyte CB_DC,cmd_DC
%ifdef DEBUG
debug_print " end of command, ec:failbit=%x, %d bytes data\n",bx,cx
%endif
mov [__AX],bx
mov [__CX],cx
endp
proc reg_setup_base_addr
; input: bx = base addr pointer
save all
cld
mov di,reg_addr
mov ax, [bx]
forcx 8
stosw
inc ax
endforcx
mov ax, [bx+2]
stosw
inc ax
stosw
endp
proc reg_probe_dev_exist
; input ax=dev
; return ax = 1: exist
call __reg_select_dev
outbytes CB_SC,0x55,CB_SN,0xaa,CB_SC,0xaa,CB_SN,0x55,CB_SC,0x55
outbyte CB_SN ,0xaa
inbyte CB_SC,ah
inbyte CB_SN
cmp ax, 0x55aa
sete al
endp
proc reg_probe_exist
; new fixed
outbyte CB_DC, cmd_DC
mov_ax 0
call reg_probe_dev_exist
mov [reg_dev_info],al
mov ax,1
call reg_probe_dev_exist
mov [reg_dev_info+1],al
endp
proc reg_check_dev_type
; input ax=dev
; call after a reset
call __reg_select_dev
inbyte CB_SC, ah
inbyte CB_SN
if {cmp ax, 0x0101}, ne
mov ax, 1
return
endif
inbyte CB_CL,ah
inbyte CB_CH
if {cmp ax, 0x14eb}, e
mov ax, REG_CONFIG_TYPE_ATAPI
return
endif
if {or al,al},z
inbyte CB_STAT
if {or al, al}, nz
mov ax, REG_CONFIG_TYPE_ATA
return
endif
endif
mov ax, REG_CONFIG_TYPE_UNKN
endp
proc reg_reset
; call after reg_probe_exist
save all
; mov_ax 0
; call __reg_select_dev
mov al,cmd_DC
or al,CB_DC_SRST
outbyte CB_DC
call delay400ns
outbyte CB_DC, cmd_DC
call delay400ns
call set_timeout
if {cmp byte [reg_dev_info],REG_CONFIG_TYPE_NONE},ne
call sub_atapi_delay
call reg_poll_busy
endif
if {cmp byte [reg_dev_info+1],REG_CONFIG_TYPE_NONE},ne
call sub_atapi_delay
while
mov ax,1
call __reg_select_dev
call delay400ns
inbyte CB_SC,ah
inbyte CB_SN
break if,{cmp ax,0x0101},e
call check_timeout
break if,is_timeout
endwhile
endif
endp
proc reg_probe
; return cx = number of atapi devices
save ax, bx, si, di
cld
mov word [atapi_dev_count], 0
mov bx,reg_base_addr
mov di,atapi_dev_base
while {cmp word [bx], byte 0},nz
call reg_setup_base_addr
call reg_probe_exist
call reg_reset
xor si,si
while {cmp si, byte 2}, b
if {cmp byte[reg_dev_info+si],0},ne
mov ax,si
call reg_check_dev_type
mov [reg_dev_info],al
if {cmp al,REG_CONFIG_TYPE_ATAPI},e
; Add it to the list
inc word [atapi_dev_count]
mov ax,bx
stosw
mov ax,si
stosw
endif
endif
inc si
endwhile
inc bx
inc bx
endwhile
mov cx, [atapi_dev_count]
endp
select_atapi:
cmp ax, [atapi_cur_dev]
jne select_atapi_force
clc
ret
proc select_atapi_force
; input: ax = dev number
; return: cf =0 success, cf =1 failed
save all
push es
push cs
pop es
cmp ax, [atapi_dev_count]
jb .continue
stc
jmp short .end
.continue:
mov [atapi_cur_dev], ax
mov si, atapi_dev_base
shl ax, 2
add si, ax
mov bx, [si]
call reg_setup_base_addr
mov bx,[si+2]
mov ax,bx
call set_timeout
call reg_select_dev
mov ah,byte [bx+cmd_select_dev]
mov [reg_cur_dev],ah
.ok:
clc
.end:
pop es
endp
proc clear_atapi_buffer
save all
cld
push es
push cs
pop es
mov di, atapi_tmp_buffer
mov cx, 128
xor al, al
stosb
mov di, atapi_cmd_buffer
mov cx, 16
stosb
pop es
endp
proc get_atapi_sense
; return: cf =0 success, al = sense key, bl = asc, bh = ascq
; cf =1 failed
call clear_atapi_buffer
mov byte [atapi_cmd_buffer], 0x03
mov byte [atapi_cmd_buffer+4], 32
invoke reg_packet,byte,0,cs, atapi_tmp_buffer, 128
or ax, ax
jnz .fail
mov al, [atapi_tmp_buffer]
and al, 0x7f
if
orblock
condiction {cmp al, 0x70}, e
condiction {cmp al, 0x71}, e
endblock then
mov al, [atapi_tmp_buffer+2] ; get sense key
and al, 0x0f
xor bx, bx
if {cmp byte [atapi_tmp_buffer+7], 0x06}, ae
mov bx, [atapi_tmp_buffer+12]
endif
clc
return
endif
.fail:
stc
endp
proc test_atapi_ready
; return: cf =0 ready, cf =1 not ready
save all
mov cx, 2
.loop_try:
push cx
call clear_atapi_buffer
invoke reg_packet,byte,0,cs, atapi_tmp_buffer, 128
or ax, ax
jnz .try_again
call get_atapi_sense
jc .try_again
or al, al
jnz .try_again
pop cx
clc
jmp short .end
.try_again:
pop cx
loop .loop_try
stc
.end:
endp
%if 1
proc inquiry_atapi
;input: es:di -> atapi_devinfo
;return: cf =0 success, al = device type,
; cf =1 fail
; save si, di, cx
call clear_atapi_buffer
mov byte [atapi_cmd_buffer], 0x12
mov byte [atapi_cmd_buffer+4], 128
invoke reg_packet,byte,0,cs, atapi_tmp_buffer, 128
or ax, ax
jnz .fail
mov al, [atapi_tmp_buffer]
test al, 0xe0
jnz .fail
and al, 0x1f
%if 0
mov [es:di + struc_atapi_devinfo.dev_type], al
mov ah, [atapi_tmp_buffer+7]
mov [es:di + struc_atapi_devinfo.dev_flags], ah
add di, struc_atapi_devinfo.vender_id
mov si, atapi_tmp_buffer + 8
mov cx, 24
cld
rep movsb
%endif
clc
; jmp short .end
return
.fail:
stc
.end:
endp
proc check_atapi_cdrom
;return: cf =0 is cdrom, cf =1 not cdrom
save all
; push es
; push cs
; pop es
; mov di, atapi_devinfo
call inquiry_atapi
jc .end
clc
cmp al, ATATYPE_CD
je .end
cmp al, ATATYPE_CDR
je .end
stc
.end:
; pop es
endp
%endif
proc get_atapi_base_io
;input: ax = dev
;return: bx = base io 1, dx = base io 2, cx = device number
save si, ax
shl ax, byte 2
mov si, atapi_dev_base
add si, ax
mov bx, [cs:si]
mov cx, [cs:si+2]
mov dx, [cs:bx+2]
mov bx, [cs:bx]
endp
proc read_atapi
;input: es:di -> buffer, cx = sector count, edx = lba address
;return: cf =0 success, cx = number of bytes actually read
save all
or cx, cx
jz .no_data
.loop_read:
push cx
push edx
call clear_atapi_buffer
mov byte [atapi_cmd_buffer], 0x28
bswap edx
mov [atapi_cmd_buffer+2], edx
mov byte [atapi_cmd_buffer+8], 1
invoke reg_packet,byte, 0, es, di, REG_ATAPI_MAX_BYTES
or ax, ax
jnz .fail
cmp cx, CDSECTOR_SIZE
jne .fail
pop edx
inc edx
add di, cx
pop cx
loop .loop_read
clc
jmp short .end
.fail:
pop edx
pop cx
.no_data:
stc
.end:
endp
proc init_atapi_cdroms
; return: cf =0 success, cx =number of cdroms
; cf =1 failed, no cdrom found
; push cs
; pop es
call reg_probe
or cx, cx
jnz .find_cdrom
call reg_probe
or cx, cx
jz .nocdrom
.find_cdrom:
%if 1
mov si, atapi_dev_base
mov di, atapi_dev_base_bak
cld
push si
push di
xor ax, ax
xor bx, bx
forcx
call select_atapi_force
jc .chk_next
call check_atapi_cdrom
jc .chk_next
inc bx
movsw
movsw
jmp short .loop_next
.chk_next:
add si, 4
.loop_next:
inc ax
endforcx
pop si
pop di
mov cx, 64
rep movsb
mov [atapi_dev_count], bx
mov cx, bx
%endif
clc
return
.nocdrom:
stc
endp
proc reset_atapi_cdroms
mov cx, [atapi_dev_count]
xor ax, ax
if {or cx, cx}, z
return
endif
forcx
call select_atapi
call reg_reset
inc ax
endforcx
endp
section .data
%ifdef SLOW_ATAPI_DEVICE
atapi_delay_flag db 1
reg_slow_xfer_flag db 1
%else
atapi_delay_flag db 0
reg_slow_xfer_flag db 0
%endif
cmd_select_dev db CB_DH_DEV0,CB_DH_DEV1
reg_base_addr dw 0x1f0,0x3f6, 0x170,0x376
dw 0x180,0x386, 0x6b00,0x6f00
dw 0x7300,0x7700
reg_base_addr_append dw 0,0,0,0
%endif ; DISABLE_CDBOOT
section .bss
%ifndef DISABLE_CDBOOT
start_of_atapi_data:
atapi_cur_dev resw 1
reg_cur_dev resb 1
time_out resw 1
reg_dev_info resb 2
atapi_dev_count resw 1
atapi_dev_base resw 2*16 ; first word is the base pointer,
; second word is the device
atapi_dev_base_bak resw 2*16 ; first word is the base pointer,
; second word is the device
reg_addr resw 10
atapi_cmd_buffer resb 16
atapi_tmp_buffer resb 256
atapi_devinfo resb SIZE_OF_ATAPI_DEVINFO
delay_repeat_num resd 1
end_of_atapi_data:
%endif
start_of_emu_data:
drive_map resw 3
%ifndef DISABLE_CDBOOT
emu_buf_off resw 1
emu_buf_seg resw 1
emu_cdrom_id resb 1
emu_disk_type resb 1 ;1=360 2=1.2 3=720 4=1.44 6=2.88 10h=atapi
emu_cyl resw 1
emu_sec resw 1
emu_head resw 1
emu_last_read resd 1
int13_last_stat resb 1
edd30_cdemu_spec resb SIZE_OF_CDEMU_SPEC
atapi_dpte_buffer resb SIZE_OF_DPTE
edd30_disk_buffer resb 0x800
%endif
end_of_emu_data:
|