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 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446
|
/* DAT.H (c) Copyright Roger Bowler, 1999-2009 */
/* ESA/390 Dynamic Address Translation */
/* Interpretive Execution - (c) Copyright Jan Jaeger, 1999-2009 */
/* z/Architecture support - (c) Copyright Jan Jaeger, 1999-2009 */
/*-------------------------------------------------------------------*/
/* This module implements the DAT, ALET, and ASN translation */
/* functions of the ESA/390 architecture, described in the manual */
/* SA22-7201-04 ESA/390 Principles of Operation. The numbers in */
/* square brackets in the comments refer to sections in the manual. */
/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
/* Additional credits: */
/* S/370 DAT support by Jay Maynard (as described in */
/* GA22-7000 System/370 Principles of Operation) */
/* Clear remainder of ASTE when ASF=0 - Jan Jaeger */
/* S/370 DAT support when running under SIE - Jan Jaeger */
/* ESAME DAT support by Roger Bowler (SA22-7832) */
/* ESAME ASN authorization and ALET translation - Roger Bowler */
/*-------------------------------------------------------------------*/
#if !defined(OPTION_NO_INLINE_DAT) || defined(_DAT_C)
#if defined(FEATURE_DUAL_ADDRESS_SPACE)
/*-------------------------------------------------------------------*/
/* Translate ASN to produce address-space control parameters */
/* */
/* Input: */
/* asn Address space number to be translated */
/* regs Pointer to the CPU register context */
/* asteo Pointer to a word to receive real address of ASTE */
/* aste Pointer to 16-word area to receive a copy of the */
/* ASN second table entry associated with the ASN */
/* */
/* Output: */
/* If successful, the ASTE corresponding to the ASN value will */
/* be stored into the 16-word area pointed to by aste, and the */
/* return value is zero. Either 4 or 16 words will be stored */
/* depending on the value of the ASF control bit (CR0 bit 15). */
/* The real address of the ASTE will be stored into the word */
/* pointed to by asteo. */
/* */
/* If unsuccessful, the return value is a non-zero exception */
/* code indicating AFX-translation or ASX-translation error */
/* (this is to allow the LASP instruction to handle these */
/* exceptions by setting the condition code). */
/* */
/* A program check may be generated for addressing and ASN */
/* translation specification exceptions, in which case the */
/* function does not return. */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC U16 ARCH_DEP(translate_asn) (U16 asn, REGS *regs,
U32 *asteo, U32 aste[])
{
U32 afte_addr; /* Address of AFTE */
U32 afte; /* ASN first table entry */
U32 aste_addr; /* Address of ASTE */
BYTE *aste_main; /* ASTE mainstor address */
int code; /* Exception code */
int numwords; /* ASTE size (4 or 16 words) */
int i; /* Array subscript */
/* [3.9.3.1] Use the AFX to obtain the real address of the AFTE */
afte_addr = (regs->CR(14) & CR14_AFTO) << 12;
afte_addr += (asn & ASN_AFX) >> 4;
/* Addressing exception if AFTE is outside main storage */
if (afte_addr > regs->mainlim)
goto asn_addr_excp;
/* Load the AFTE from main storage. All four bytes must be
fetched concurrently as observed by other CPUs */
afte_addr = APPLY_PREFIXING (afte_addr, regs->PX);
afte = ARCH_DEP(fetch_fullword_absolute) (afte_addr, regs);
/* AFX translation exception if AFTE invalid bit is set */
if (afte & AFTE_INVALID)
goto asn_afx_tran_excp;
#if !defined(FEATURE_ESAME)
/* ASN translation specification exception if reserved bits set */
if (!ASF_ENABLED(regs)) {
if (afte & AFTE_RESV_0)
goto asn_asn_tran_spec_excp;
} else {
if (afte & AFTE_RESV_1)
goto asn_asn_tran_spec_excp;
}
#endif /*!defined(FEATURE_ESAME)*/
/* [3.9.3.2] Use AFTE and ASX to obtain real address of ASTE */
if (!ASF_ENABLED(regs)) {
aste_addr = afte & AFTE_ASTO_0;
aste_addr += (asn & ASN_ASX) << 4;
numwords = 4;
} else {
aste_addr = afte & AFTE_ASTO_1;
aste_addr += (asn & ASN_ASX) << 6;
numwords = 16;
}
/* Ignore carry into bit position 0 of ASTO */
aste_addr &= 0x7FFFFFFF;
/* Addressing exception if ASTE is outside main storage */
if (aste_addr > regs->mainlim)
goto asn_addr_excp;
/* Return the real address of the ASTE */
*asteo = aste_addr;
/* Fetch the 16- or 64-byte ASN second table entry from real
storage. Each fullword of the ASTE must be fetched
concurrently as observed by other CPUs */
aste_addr = APPLY_PREFIXING (aste_addr, regs->PX);
aste_main = FETCH_MAIN_ABSOLUTE(aste_addr, regs, numwords * 4);
for (i = 0; i < numwords; i++)
{
aste[i] = fetch_fw(aste_main);
aste_main += 4;
}
/* Clear remaining words if fewer than 16 words were loaded */
while (i < 16) aste[i++] = 0;
/* Check the ASX invalid bit in the ASTE */
if (aste[0] & ASTE0_INVALID)
goto asn_asx_tran_excp;
#if !defined(FEATURE_ESAME)
/* Check the reserved bits in first two words of ASTE */
if ((aste[0] & ASTE0_RESV) || (aste[1] & ASTE1_RESV)
|| ((aste[0] & ASTE0_BASE)
#ifdef FEATURE_SUBSPACE_GROUP
&& !ASF_ENABLED(regs)
#endif /*FEATURE_SUBSPACE_GROUP*/
))
goto asn_asn_tran_spec_excp;
#endif /*!defined(FEATURE_ESAME)*/
return 0;
/* Conditions which always cause program check */
asn_addr_excp:
code = PGM_ADDRESSING_EXCEPTION;
goto asn_prog_check;
#if !defined(FEATURE_ESAME)
asn_asn_tran_spec_excp:
code = PGM_ASN_TRANSLATION_SPECIFICATION_EXCEPTION;
goto asn_prog_check;
#endif /*!defined(FEATURE_ESAME)*/
asn_prog_check:
regs->program_interrupt (regs, code);
/* Conditions which the caller may or may not program check */
asn_afx_tran_excp:
regs->TEA = asn;
code = PGM_AFX_TRANSLATION_EXCEPTION;
return code;
asn_asx_tran_excp:
regs->TEA = asn;
code = PGM_ASX_TRANSLATION_EXCEPTION;
return code;
} /* end function translate_asn */
#endif /*defined(FEATURE_DUAL_ADDRESS_SPACE)*/
#if defined(FEATURE_DUAL_ADDRESS_SPACE)
/*-------------------------------------------------------------------*/
/* Perform ASN authorization process */
/* */
/* Input: */
/* ax Authorization index */
/* aste Pointer to 16-word area containing a copy of the */
/* ASN second table entry associated with the ASN */
/* atemask Specifies which authority bit to test in the ATE: */
/* ATE_PRIMARY (for PT instruction) */
/* ATE_SECONDARY (for PR, SSAR, and LASP instructions, */
/* and all access register translations) */
/* regs Pointer to the CPU register context */
/* */
/* Operation: */
/* The AX is used to select an entry in the authority table */
/* pointed to by the ASTE, and an authorization bit in the ATE */
/* is tested. For ATE_PRIMARY (X'80'), the P bit is tested. */
/* For ATE_SECONDARY (X'40'), the S bit is tested. */
/* Authorization is successful if the ATE falls within the */
/* authority table limit and the tested bit value is 1. */
/* */
/* Output: */
/* If authorization is successful, the return value is zero. */
/* If authorization is unsuccessful, the return value is 1. */
/* */
/* A program check may be generated for addressing exception */
/* if the authority table entry address is invalid, and in */
/* this case the function does not return. */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC int ARCH_DEP(authorize_asn) (U16 ax, U32 aste[],
int atemask, REGS *regs)
{
RADR ato; /* Authority table origin */
int atl; /* Authority table length */
BYTE ate; /* Authority table entry */
/* [3.10.3.1] Authority table lookup */
/* Isolate the authority table origin and length */
ato = aste[0] & ASTE0_ATO;
atl = aste[1] & ASTE1_ATL;
/* Authorization fails if AX is outside table */
if ((ax & 0xFFF0) > atl)
return 1;
/* Calculate the address of the byte in the authority
table which contains the 2 bit entry for this AX */
ato += (ax >> 2);
/* Ignore carry into bit position 0 */
ato &= 0x7FFFFFFF;
/* Addressing exception if ATE is outside main storage */
if (ato > regs->mainlim)
goto auth_addr_excp;
/* Load the byte containing the authority table entry
and shift the entry into the leftmost 2 bits */
ato = APPLY_PREFIXING (ato, regs->PX);
SIE_TRANSLATE(&ato, ACCTYPE_SIE, regs);
ate = regs->mainstor[ato];
ate <<= ((ax & 0x03)*2);
/* Set the main storage reference bit */
STORAGE_KEY(ato, regs) |= STORKEY_REF;
/* Authorization fails if the specified bit (either X'80' or
X'40' of the 2 bit authority table entry) is zero */
if ((ate & atemask) == 0)
return 1;
/* Exit with successful return code */
return 0;
/* Conditions which always cause program check */
auth_addr_excp:
regs->program_interrupt (regs, PGM_ADDRESSING_EXCEPTION);
return 1;
} /* end function authorize_asn */
#endif /*defined(FEATURE_DUAL_ADDRESS_SPACE)*/
#if defined(FEATURE_ACCESS_REGISTERS)
/*-------------------------------------------------------------------*/
/* Translate an ALET to produce the corresponding ASTE */
/* */
/* This routine performs both ordinary ART (as used by DAT when */
/* operating in access register mode, and by the TAR instruction), */
/* and special ART (as used by the BSG instruction). The caller */
/* is assumed to have already eliminated the special cases of ALET */
/* values 0 and 1 (which have different meanings depending on */
/* whether the caller is DAT, TAR, or BSG). */
/* */
/* Input: */
/* alet ALET value */
/* eax The authorization index (normally obtained from */
/* CR8; obtained from R2 for TAR; not used for BSG) */
/* acctype Type of access requested: READ, WRITE, instfetch, */
/* TAR, LRA, TPROT, or BSG */
/* regs Pointer to the CPU register context */
/* asteo Pointer to word to receive ASTE origin address */
/* aste Pointer to 16-word area to receive a copy of the */
/* ASN second table entry associated with the ALET */
/* */
/* Output: */
/* If successful, the ASTE is copied into the 16-word area, */
/* the real address of the ASTE is stored into the word pointed */
/* word pointed to by asteop, and the return value is zero; */
/* regs->dat.protect is set to 2 if the fetch-only bit */
/* in the ALE is set, otherwise it is set to zero. */
/* */
/* If unsuccessful, the return value is a non-zero exception */
/* code in the range X'0028' through X'002D' (this is to allow */
/* the TAR, LRA, and TPROT instructions to handle these */
/* exceptions by setting the condition code). */
/* regs->dat.xcode is also set to the exception code. */
/* */
/* A program check may be generated for addressing and ASN */
/* translation specification exceptions, in which case the */
/* function does not return. */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC U16 ARCH_DEP(translate_alet) (U32 alet, U16 eax,
int acctype, REGS *regs, U32 *asteo, U32 aste[])
{
U32 cb; /* DUCT or PASTE address */
U32 ald; /* Access-list designation */
U32 alo; /* Access-list origin */
U32 all; /* Access-list length */
U32 ale[4]; /* Access-list entry */
U32 aste_addr; /* Real address of ASTE */
U32 abs; /* Absolute address */
BYTE *mn; /* Mainstor address */
int i; /* Array subscript */
regs->dat.protect = 0;
/* [5.8.4.3] Check the reserved bits in the ALET */
if ( alet & ALET_RESV )
goto alet_spec_excp;
/* [5.8.4.4] Obtain the effective access-list designation */
/* Obtain the real address of the control block containing
the effective access-list designation. This is either
the Primary ASTE or the DUCT */
cb = (alet & ALET_PRI_LIST) ?
regs->CR(5) & CR5_PASTEO :
regs->CR(2) & CR2_DUCTO;
/* Addressing exception if outside main storage */
if (cb > regs->mainlim)
goto alet_addr_excp;
/* Load the effective access-list designation (ALD) from
offset 16 in the control block. All four bytes must be
fetched concurrently as observed by other CPUs. Note
that the DUCT and the PASTE cannot cross a page boundary */
cb = APPLY_PREFIXING (cb, regs->PX);
ald = ARCH_DEP(fetch_fullword_absolute) (cb+16, regs);
/* [5.8.4.5] Access-list lookup */
/* Isolate the access-list origin and access-list length */
alo = ald & ALD_ALO;
all = ald & ALD_ALL;
/* Check that the ALEN does not exceed the ALL */
if (((alet & ALET_ALEN) >> ALD_ALL_SHIFT) > all)
goto alen_tran_excp;
/* Add the ALEN x 16 to the access list origin */
alo += (alet & ALET_ALEN) << 4;
/* Addressing exception if outside main storage */
if (alo > regs->mainlim)
goto alet_addr_excp;
/* Fetch the 16-byte access list entry from absolute storage.
Each fullword of the ALE must be fetched concurrently as
observed by other CPUs */
alo = APPLY_PREFIXING (alo, regs->PX);
mn = FETCH_MAIN_ABSOLUTE(alo, regs, 16);
for (i = 0; i < 4; i++)
{
ale[i] = fetch_fw (mn);
mn += 4;
}
/* Check the ALEN invalid bit in the ALE */
if (ale[0] & ALE0_INVALID)
goto alen_tran_excp;
/* For ordinary ART (but not for special ART),
compare the ALE sequence number with the ALET */
if (!(acctype & ACC_SPECIAL_ART)
&& (ale[0] & ALE0_ALESN) != (alet & ALET_ALESN))
goto ale_seq_excp;
/* [5.8.4.6] Locate the ASN-second-table entry */
aste_addr = ale[2] & ALE2_ASTE;
/* Addressing exception if ASTE is outside main storage */
abs = APPLY_PREFIXING (aste_addr, regs->PX);
if (abs > regs->mainlim)
goto alet_addr_excp;
mn = FETCH_MAIN_ABSOLUTE(abs, regs, 64);
/* Fetch the 64-byte ASN second table entry from real storage.
Each fullword of the ASTE must be fetched concurrently as
observed by other CPUs. ASTE cannot cross a page boundary */
for (i = 0; i < 16; i++)
{
aste[i] = fetch_fw(mn);
mn += 4;
}
/* Check the ASX invalid bit in the ASTE */
if (aste[0] & ASTE0_INVALID)
goto aste_vald_excp;
/* Compare the ASTE sequence number with the ALE */
if ((aste[5] & ASTE5_ASTESN) != (ale[3] & ALE3_ASTESN))
goto aste_seq_excp;
/* [5.8.4.7] For ordinary ART (but not for special ART),
authorize the use of the access-list entry */
if (!(acctype & ACC_SPECIAL_ART))
{
/* If ALE private bit is zero, or the ALE AX equals the
EAX, then authorization succeeds. Otherwise perform
the extended authorization process. */
if ((ale[0] & ALE0_PRIVATE)
&& (ale[0] & ALE0_ALEAX) != eax)
{
#if !defined(FEATURE_ESAME)
/* Check the reserved bits in first two words of ASTE */
if ((aste[0] & ASTE0_RESV) || (aste[1] & ASTE1_RESV)
|| ((aste[0] & ASTE0_BASE)
#ifdef FEATURE_SUBSPACE_GROUP
&& !ASF_ENABLED(regs)
#endif /*FEATURE_SUBSPACE_GROUP*/
))
goto alet_asn_tran_spec_excp;
#endif /*!defined(FEATURE_ESAME)*/
/* Perform extended authorization */
if (ARCH_DEP(authorize_asn)(eax, aste, ATE_SECONDARY, regs) != 0)
goto ext_auth_excp;
}
} /* end if(!ACCTYPE_BSG) */
/* [5.8.4.8] Check for access-list controlled protection */
if (ale[0] & ALE0_FETCHONLY)
regs->dat.protect = 2;
/* Return the ASTE origin address */
*asteo = aste_addr;
return 0;
/* Conditions which always cause program check, except
when performing translation for the control panel */
alet_addr_excp:
regs->dat.xcode = PGM_ADDRESSING_EXCEPTION;
goto alet_prog_check;
#if !defined(FEATURE_ESAME)
alet_asn_tran_spec_excp:
regs->dat.xcode = PGM_ASN_TRANSLATION_SPECIFICATION_EXCEPTION;
goto alet_prog_check;
#endif /*!defined(FEATURE_ESAME)*/
alet_prog_check:
regs->program_interrupt (regs, regs->dat.xcode);
/* Conditions which the caller may or may not program check */
alet_spec_excp:
regs->dat.xcode = PGM_ALET_SPECIFICATION_EXCEPTION;
return regs->dat.xcode;
alen_tran_excp:
regs->dat.xcode = PGM_ALEN_TRANSLATION_EXCEPTION;
return regs->dat.xcode;
ale_seq_excp:
regs->dat.xcode = PGM_ALE_SEQUENCE_EXCEPTION;
return regs->dat.xcode;
aste_vald_excp:
regs->dat.xcode = PGM_ASTE_VALIDITY_EXCEPTION;
return regs->dat.xcode;
aste_seq_excp:
regs->dat.xcode = PGM_ASTE_SEQUENCE_EXCEPTION;
return regs->dat.xcode;
ext_auth_excp:
regs->dat.xcode = PGM_EXTENDED_AUTHORITY_EXCEPTION;
return regs->dat.xcode;
} /* end function translate_alet */
#endif /*defined(FEATURE_ACCESS_REGISTERS)*/
#if defined(FEATURE_ACCESS_REGISTERS)
/*-------------------------------------------------------------------*/
/* Purge the ART lookaside buffer */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC void ARCH_DEP(purge_alb) (REGS *regs)
{
int i;
for(i = 1; i < 16; i++)
if(regs->aea_ar[i] >= CR_ALB_OFFSET && regs->aea_ar[i] != CR_ASD_REAL)
regs->aea_ar[i] = 0;
if(regs->host && regs->guestregs)
for(i = 1; i < 16; i++)
if(regs->guestregs->aea_ar[i] >= CR_ALB_OFFSET && regs->guestregs->aea_ar[i] != CR_ASD_REAL)
regs->guestregs->aea_ar[i] = 0;
} /* end function purge_alb */
/*-------------------------------------------------------------------*/
/* Purge the ART lookaside buffer for all CPUs */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC void ARCH_DEP(purge_alb_all) ()
{
int i;
for (i = 0; i < MAX_CPU; i++)
if (IS_CPU_ONLINE(i)
&& (sysblk.regs[i]->cpubit & sysblk.started_mask))
ARCH_DEP(purge_alb) (sysblk.regs[i]);
} /* end function purge_alb_all */
#endif /*defined(FEATURE_ACCESS_REGISTERS)*/
/*-------------------------------------------------------------------*/
/* Determine effective ASCE or STD */
/* */
/* This routine returns either an address-space control element */
/* (for ESAME) or a segment table descriptor (for S/370 and ESA/390) */
/* loaded from control register 1, 7, or 13, or computed from the */
/* contents of an address register, together with an indication of */
/* the addressing mode (home, primary, secondary, or AR mode) */
/* which was used to determine the source of the ASCE or STD. */
/* */
/* Input: */
/* arn Access register number (0-15) to be used if the */
/* address-space control (PSW bits 16-17) indicates */
/* that ARMODE is the current translation mode. */
/* An access register number ORed with the special */
/* value USE_ARMODE forces this routine to use ARMODE */
/* regardless of the PSW address-space control setting. */
/* Access register 0 is treated as if it contained 0 */
/* and its actual contents are not examined. */
/* Alternatively the arn parameter may contain one */
/* of these special values (defined in hconsts.h): */
/* USE_PRIMARY_SPACE, USE_SECONDARY_SPACE, */
/* USE_HOME_SPACE, USE_REAL_ADDR to force the use of */
/* a specific translation mode instead of the mode */
/* indicated by the address-space control in the PSW. */
/* regs Pointer to the CPU register context */
/* acctype Type of access requested: READ, WRITE, INSTFETCH, */
/* LRA, IVSK, TPROT, STACK, PTE, LPTEA */
/* */
/* Output: */
/* regs->dat.asd = the selected ASCE or STD */
/* regs->dat.stid = TEA_ST_PRIMARY, TEA_ST_SECNDRY, */
/* TEA_ST_HOME, or TEA_ST_ARMODE indicates which */
/* address space was used to select the ASCE or STD. */
/* regs->dat.protect = 2 if in AR mode and access-list */
/* controlled protection is indicated by the ALE */
/* fetch-only bit; otherwise it remains unchanged. */
/* */
/* If an ALET translation error occurs, the return value */
/* is the exception code; otherwise the return value is zero, */
/* regs->dat.asd field contains the ASCE or STD, and */
/* regs->dat.stid is set to TEA_ST_PRIMARY, TEA_ST_SECNDRY, */
/* TEA_ST_HOME, or TEA_ST_ARMODE. */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC U16 ARCH_DEP(load_address_space_designator) (int arn,
REGS *regs, int acctype)
{
#if defined(FEATURE_ACCESS_REGISTERS)
U32 alet; /* Access list entry token */
U32 asteo; /* Real address of ASTE */
U32 aste[16]; /* ASN second table entry */
U16 eax; /* Authorization index */
#else
UNREFERENCED(acctype);
#endif /*defined(FEATURE_ACCESS_REGISTERS)*/
switch(arn) {
case USE_PRIMARY_SPACE:
regs->dat.stid = TEA_ST_PRIMARY;
regs->dat.asd = regs->CR(1);
break;
case USE_SECONDARY_SPACE:
regs->dat.stid = TEA_ST_SECNDRY;
regs->dat.asd = regs->CR(7);
break;
case USE_HOME_SPACE:
regs->dat.stid = TEA_ST_HOME;
regs->dat.asd = regs->CR(13);
break;
case USE_REAL_ADDR:
regs->dat.stid = 0;
regs->dat.asd = TLB_REAL_ASD;
break;
case USE_INST_SPACE:
switch(regs->aea_ar[USE_INST_SPACE]) {
case 1:
regs->dat.stid = TEA_ST_PRIMARY;
break;
#if defined(FEATURE_LINKAGE_STACK)
case 13:
regs->dat.stid = TEA_ST_HOME;
break;
#endif
default:
regs->dat.stid = 0;
} /* end switch(regs->aea_ar[USE_INST_SPACE]) */
regs->dat.asd = regs->CR(regs->aea_ar[USE_INST_SPACE]);
break;
default:
#if defined(FEATURE_ACCESS_REGISTERS)
if (ACCESS_REGISTER_MODE(®s->psw)
|| (SIE_ACTIVE(regs) && MULTIPLE_CONTROLLED_DATA_SPACE(regs->guestregs))
|| (arn & USE_ARMODE)
)
{
/* Remove flags giving access register number 0-15 */
arn &= 0xF;
/* [5.8.4.1] Select the access-list-entry token */
alet = (arn == 0) ? 0 :
/* Guest ALET if XC guest in AR mode */
(SIE_ACTIVE(regs) && MULTIPLE_CONTROLLED_DATA_SPACE(regs->guestregs))
? regs->guestregs->AR(arn) :
/* If SIE host but not XC guest in AR mode then alet is 0 */
SIE_ACTIVE(regs) ? 0 :
/* Otherwise alet is in the access register */
regs->AR(arn);
/* Use the ALET to determine the segment table origin */
switch (alet) {
case ALET_PRIMARY:
/* [5.8.4.2] Obtain primary segment table designation */
regs->dat.stid = TEA_ST_PRIMARY;
regs->dat.asd = regs->CR(1);
break;
case ALET_SECONDARY:
/* [5.8.4.2] Obtain secondary segment table designation */
regs->dat.stid = TEA_ST_SECNDRY;
regs->dat.asd = regs->CR(7);
break;
default:
/* ALB Lookup */
if(regs->aea_ar[arn] >= CR_ALB_OFFSET && regs->aea_ar[arn] != CR_ASD_REAL)
{
regs->dat.asd = regs->CR(regs->aea_ar[arn]);
regs->dat.protect = regs->aea_aleprot[arn];
regs->dat.stid = TEA_ST_ARMODE;
}
else
{
/* Extract the extended AX from CR8 bits 0-15 (32-47) */
eax = regs->CR_LHH(8);
/* [5.8.4.3] Perform ALET translation to obtain ASTE */
if (ARCH_DEP(translate_alet) (alet, eax, acctype,
regs, &asteo, aste))
/* Exit if ALET translation error */
return regs->dat.xcode;
/* [5.8.4.9] Obtain the STD or ASCE from the ASTE */
regs->dat.asd = ASTE_AS_DESIGNATOR(aste);
regs->dat.stid = TEA_ST_ARMODE;
if(regs->dat.protect & 2)
{
#if defined(FEATURE_ESAME)
regs->dat.asd ^= ASCE_RESV;
regs->dat.asd |= ASCE_P;
#else
regs->dat.asd ^= STD_RESV;
regs->dat.asd |= STD_PRIVATE;
#endif
}
/* Update ALB */
regs->CR(CR_ALB_OFFSET + arn) = regs->dat.asd;
regs->aea_ar[arn] = CR_ALB_OFFSET + arn;
regs->aea_common[CR_ALB_OFFSET + arn] = (regs->dat.asd & ASD_PRIVATE) == 0;
regs->aea_aleprot[arn] = regs->dat.protect & 2;
}
} /* end switch(alet) */
break;
} /* end if(ACCESS_REGISTER_MODE) */
#endif /*defined(FEATURE_ACCESS_REGISTERS)*/
#if defined(FEATURE_DUAL_ADDRESS_SPACE)
if (SECONDARY_SPACE_MODE(®s->psw))
{
regs->dat.stid = TEA_ST_SECNDRY;
regs->dat.asd = regs->CR(7);
break;
}
#endif /* defined(FEATURE_DUAL_ADDRESS_SPACE) */
#if defined(FEATURE_LINKAGE_STACK)
if (HOME_SPACE_MODE(®s->psw))
{
regs->dat.stid = TEA_ST_HOME;
regs->dat.asd = regs->CR(13);
break;
}
#endif /* defined(FEATURE_LINKAGE_STACK) */
/* Primary space mode */
regs->dat.stid = TEA_ST_PRIMARY;
regs->dat.asd = regs->CR(1);
break;
} /* switch(arn) */
return 0;
} /* end function load_address_space_designator */
/*-------------------------------------------------------------------*/
/* Translate a virtual address to a real address */
/* */
/* Input: */
/* vaddr virtual address to be translated */
/* arn Access register number or special value (see */
/* load_address_space_designator function for a */
/* complete description of this parameter) */
/* regs Pointer to the CPU register context */
/* acctype Type of access requested: READ, WRITE, INSTFETCH, */
/* LRA, IVSK, TPROT, STACK, PTE, LPTEA */
/* */
/* Output: */
/* The return value is set to facilitate the setting of the */
/* condition code by the LRA instruction: */
/* 0 = Translation successful; real address field contains */
/* the real address corresponding to the virtual address */
/* supplied by the caller; exception code set to zero. */
/* 1 = Segment table entry invalid; real address field */
/* contains real address of segment table entry; */
/* exception code is set to X'0010'. */
/* 2 = Page table entry invalid; real address field contains */
/* real address of page table entry; exception code */
/* is set to X'0011'. */
/* 3 = Segment or page table length exceeded; real address */
/* field contains the real address of the entry that */
/* would have been fetched if length violation had not */
/* occurred; exception code is set to X'0010' or X'0011'. */
/* 4 = ALET translation error: real address field is not */
/* set; exception code is set to X'0028' through X'002D'. */
/* ASCE-type or region-translation error: real address */
/* is not set; exception code is X'0038' through X'003B'. */
/* The LRA instruction converts this to condition code 3. */
/* 5 = For ACCTYPE_EMC (Enhanced MC access only): */
/* A translation specification exception occured */
/* */
/* For ACCTYPE_LPTEA, the return value is set to facilitate */
/* setting the condition code by the LPTEA instruction: */
/* 0 = Page table entry found, and page protection bit in the */
/* segment table entry is zero; the real address field */
/* contains the real address of the page table entry; */
/* exception code is set to zero. */
/* 1 = Page table entry found, and page protection bit in the */
/* segment table entry is one; the real address field */
/* contains the real address of the page table entry; */
/* exception code is set to zero. */
/* 2 = Region table or segment table entry invalid bit is set; */
/* the real address field contains the real address of the */
/* region table entry or segment table entry, with the */
/* entry type in the low-order two bits of the address. */
/* 3 = Region table or segment table length exceeded; real */
/* address field is not set; exception code is set to */
/* X'0010' or X'0039' through X'003B'. */
/* ALET translation error: real address field is not */
/* set; exception code is set to X'0028' through X'002D'. */
/* ASCE-type error: real address is not set; exception */
/* exception code is X'0038'. */
/* */
/* regs->dat.raddr is set to the real address if translation */
/* was successful; otherwise it may contain the address of */
/* a page or segment table entry as described above. */
/* For ACCTYPE_PTE or ACCTYPE_LPTEA it contains the address of */
/* the page table entry if translation was successful. */
/* */
/* regs->dat.xcode is set to the exception code if translation */
/* was unsuccessful; otherwise it is set to zero. */
/* */
/* regs->dat.private is set to 1 if translation was */
/* successful and the STD indicates a private address space; */
/* otherwise it is set to zero. */
/* */
/* regs->dat.protect is set to 1 if translation was */
/* successful and page protection, segment protection, or */
/* segment controlled page protection is in effect; it is */
/* set to 2 if translation was successful and ALE controlled */
/* protection (but not page protection) is in effect; */
/* otherwise it is set to zero. */
/* */
/* regs->dat.stid is set to one of the following */
/* values TEA_ST_PRIMARY, TEA_ST_SECNDRY, TEA_ST_HOME, or */
/* TEA_ST_ARMODE if the translation was successful. This */
/* indication is used to set bits 30-31 of the translation */
/* exception address in the event of a protection exception */
/* when the suppression on protection facility is used. */
/* */
/* A program check may be generated for addressing and */
/* translation specification exceptions, in which case the */
/* function does not return. */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC int ARCH_DEP(translate_addr) (VADR vaddr, int arn,
REGS *regs, int acctype)
{
RADR sto = 0; /* Segment table origin */
RADR pto = 0; /* Page table origin */
int cc; /* Condition code */
int tlbix = TLBIX(vaddr); /* TLB entry index */
#if !defined(FEATURE_S390_DAT) && !defined(FEATURE_ESAME)
/*-----------------------------------*/
/* S/370 Dynamic Address Translation */
/*-----------------------------------*/
U32 stl; /* Segment table length */
RADR ste; /* Segment table entry */
U16 pte; /* Page table entry */
U32 ptl; /* Page table length */
regs->dat.private = regs->dat.protect = 0;
/* Load the effective segment table descriptor */
if (ARCH_DEP(load_address_space_designator) (arn, regs, acctype))
goto tran_alet_excp;
/* Check the translation format bits in CR0 */
if ((((regs->CR(0) & CR0_PAGE_SIZE) != CR0_PAGE_SZ_2K) &&
((regs->CR(0) & CR0_PAGE_SIZE) != CR0_PAGE_SZ_4K)) ||
(((regs->CR(0) & CR0_SEG_SIZE) != CR0_SEG_SZ_64K) &&
((regs->CR(0) & CR0_SEG_SIZE) != CR0_SEG_SZ_1M)))
goto tran_spec_excp;
/* Look up the address in the TLB */
if ( ((vaddr & TLBID_PAGEMASK) | regs->tlbID) == regs->tlb.TLB_VADDR(tlbix)
&& (regs->tlb.common[tlbix] || regs->dat.asd == regs->tlb.TLB_ASD(tlbix))
&& !(regs->tlb.common[tlbix] && regs->dat.private)
&& !(acctype & ACC_NOTLB) )
{
pte = regs->tlb.TLB_PTE(tlbix);
#ifdef FEATURE_SEGMENT_PROTECTION
/* Set the protection indicator if segment is protected */
if (regs->tlb.protect[tlbix])
regs->dat.protect = regs->tlb.protect[tlbix];
#endif /*FEATURE_SEGMENT_PROTECTION*/
}
else
{
/* S/370 segment table lookup */
/* Calculate the real address of the segment table entry */
sto = regs->dat.asd & STD_370_STO;
stl = regs->dat.asd & STD_370_STL;
sto += ((regs->CR(0) & CR0_SEG_SIZE) == CR0_SEG_SZ_1M) ?
((vaddr & 0x00F00000) >> 18) :
((vaddr & 0x00FF0000) >> 14);
/* Check that virtual address is within the segment table */
if (((regs->CR(0) & CR0_SEG_SIZE) == CR0_SEG_SZ_64K) &&
((vaddr << 4) & STD_370_STL) > stl)
goto seg_tran_length;
/* Generate addressing exception if outside real storage */
if (sto > regs->mainlim)
goto address_excp;
/* Fetch segment table entry from real storage. All bytes
must be fetched concurrently as observed by other CPUs */
sto = APPLY_PREFIXING (sto, regs->PX);
ste = ARCH_DEP(fetch_fullword_absolute) (sto, regs);
/* Generate segment translation exception if segment invalid */
if (ste & SEGTAB_370_INVL)
goto seg_tran_invalid;
/* Check that all the reserved bits in the STE are zero */
if (ste & SEGTAB_370_RSV)
goto tran_spec_excp;
/* Isolate page table origin and length */
pto = ste & SEGTAB_370_PTO;
ptl = ste & SEGTAB_370_PTL;
/* S/370 page table lookup */
/* Calculate the real address of the page table entry */
pto += ((regs->CR(0) & CR0_SEG_SIZE) == CR0_SEG_SZ_1M) ?
(((regs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_4K) ?
((vaddr & 0x000FF000) >> 11) :
((vaddr & 0x000FF800) >> 10)) :
(((regs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_4K) ?
((vaddr & 0x0000F000) >> 11) :
((vaddr & 0x0000F800) >> 10));
/* Generate addressing exception if outside real storage */
if (pto > regs->mainlim)
goto address_excp;
/* Check that the virtual address is within the page table */
if ((((regs->CR(0) & CR0_SEG_SIZE) == CR0_SEG_SZ_1M) &&
(((vaddr & 0x000F0000) >> 16) > ptl)) ||
(((regs->CR(0) & CR0_SEG_SIZE) == CR0_SEG_SZ_64K) &&
(((vaddr & 0x0000F000) >> 12) > ptl)))
goto page_tran_length;
/* Fetch the page table entry from real storage. All bytes
must be fetched concurrently as observed by other CPUs */
pto = APPLY_PREFIXING (pto, regs->PX);
pte = ARCH_DEP(fetch_halfword_absolute) (pto, regs);
/* Generate page translation exception if page invalid */
if ((((regs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_4K) &&
(pte & PAGETAB_INV_4K)) ||
(((regs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_2K) &&
(pte & PAGETAB_INV_2K)))
goto page_tran_invalid;
/* Check that all the reserved bits in the PTE are zero */
if (((regs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_2K) &&
(pte & PAGETAB_RSV_2K))
goto tran_spec_excp;
#ifdef FEATURE_SEGMENT_PROTECTION
/* Set the protection indicator if segment is protected */
if (ste & SEGTAB_370_PROT)
regs->dat.protect |= 1;
#endif /*FEATURE_SEGMENT_PROTECTION*/
/* Place the translated address in the TLB */
if (!(acctype & ACC_NOTLB))
{
regs->tlb.TLB_ASD(tlbix) = regs->dat.asd;
regs->tlb.TLB_VADDR(tlbix) = (vaddr & TLBID_PAGEMASK) | regs->tlbID;
regs->tlb.TLB_PTE(tlbix) = pte;
regs->tlb.common[tlbix] = (ste & SEGTAB_370_CMN) ? 1 : 0;
regs->tlb.protect[tlbix] = regs->dat.protect;
regs->tlb.acc[tlbix] = 0;
regs->tlb.main[tlbix] = NULL;
/* Set adjacent TLB entry if 4K page sizes */
if ((regs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_4K)
{
regs->tlb.TLB_ASD(tlbix^1) = regs->tlb.TLB_ASD(tlbix);
regs->tlb.TLB_VADDR(tlbix^1) = (vaddr & TLBID_PAGEMASK) | regs->tlbID;
regs->tlb.TLB_PTE(tlbix^1) = regs->tlb.TLB_PTE(tlbix);
regs->tlb.common[tlbix^1] = regs->tlb.common[tlbix];
regs->tlb.protect[tlbix^1] = regs->tlb.protect[tlbix];
regs->tlb.acc[tlbix^1] = 0;
regs->tlb.main[tlbix^1] = NULL;
}
}
} /* end if(!TLB) */
/* Combine the page frame real address with the byte
index of the virtual address to form the real address */
regs->dat.raddr = ((regs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_4K) ?
#if defined(FEATURE_S370E_EXTENDED_ADDRESSING)
(((U32)pte & PAGETAB_EA_4K) << 23) |
#endif
(((U32)pte & PAGETAB_PFRA_4K) << 8) | (vaddr & 0xFFF) :
(((U32)pte & PAGETAB_PFRA_2K) << 8) | (vaddr & 0x7FF);
regs->dat.rpfra = regs->dat.raddr & PAGEFRAME_PAGEMASK;
#endif /*!defined(FEATURE_S390_DAT) && !defined(FEATURE_ESAME)*/
#if defined(FEATURE_S390_DAT)
/*-----------------------------------*/
/* S/390 Dynamic Address Translation */
/*-----------------------------------*/
U32 stl; /* Segment table length */
RADR ste; /* Segment table entry */
RADR pte; /* Page table entry */
U32 ptl; /* Page table length */
regs->dat.private = regs->dat.protect = 0;
/* [3.11.3.1] Load the effective segment table descriptor */
if (ARCH_DEP(load_address_space_designator) (arn, regs, acctype))
goto tran_alet_excp;
/* [3.11.3.2] Check the translation format bits in CR0 */
if ((regs->CR(0) & CR0_TRAN_FMT) != CR0_TRAN_ESA390)
goto tran_spec_excp;
/* Extract the private space bit from segment table descriptor */
regs->dat.private = ((regs->dat.asd & STD_PRIVATE) != 0);
/* [3.11.4] Look up the address in the TLB */
if ( ((vaddr & TLBID_PAGEMASK) | regs->tlbID) == regs->tlb.TLB_VADDR(tlbix)
&& (regs->tlb.common[tlbix] || regs->dat.asd == regs->tlb.TLB_ASD(tlbix))
&& !(regs->tlb.common[tlbix] && regs->dat.private)
&& !(acctype & ACC_NOTLB) )
{
pte = regs->tlb.TLB_PTE(tlbix);
if (regs->tlb.protect[tlbix])
regs->dat.protect = regs->tlb.protect[tlbix];
}
else
{
/* [3.11.3.3] Segment table lookup */
/* Calculate the real address of the segment table entry */
sto = regs->dat.asd & STD_STO;
stl = regs->dat.asd & STD_STL;
sto += (vaddr & 0x7FF00000) >> 18;
/* Check that virtual address is within the segment table */
if ((vaddr >> 24) > stl)
goto seg_tran_length;
/* Generate addressing exception if outside real storage */
if (sto > regs->mainlim)
goto address_excp;
/* Fetch segment table entry from real storage. All bytes
must be fetched concurrently as observed by other CPUs */
sto = APPLY_PREFIXING (sto, regs->PX);
ste = ARCH_DEP(fetch_fullword_absolute) (sto, regs);
/* Generate segment translation exception if segment invalid */
if (ste & SEGTAB_INVALID)
goto seg_tran_invalid;
/* Check that all the reserved bits in the STE are zero */
if (ste & SEGTAB_RESV)
goto tran_spec_excp;
/* If the segment table origin register indicates a private
address space then STE must not indicate a common segment */
if (regs->dat.private && (ste & (SEGTAB_COMMON)))
goto tran_spec_excp;
/* Isolate page table origin and length */
pto = ste & SEGTAB_PTO;
ptl = ste & SEGTAB_PTL;
/* [3.11.3.4] Page table lookup */
/* Calculate the real address of the page table entry */
pto += (vaddr & 0x000FF000) >> 10;
/* Check that the virtual address is within the page table */
if (((vaddr & 0x000FF000) >> 16) > ptl)
goto page_tran_length;
/* Generate addressing exception if outside real storage */
if (pto > regs->mainlim)
goto address_excp;
/* Fetch the page table entry from real storage. All bytes
must be fetched concurrently as observed by other CPUs */
pto = APPLY_PREFIXING (pto, regs->PX);
pte = ARCH_DEP(fetch_fullword_absolute) (pto, regs);
/* Generate page translation exception if page invalid */
if (pte & PAGETAB_INVALID)
goto page_tran_invalid;
/* Check that all the reserved bits in the PTE are zero */
if (pte & PAGETAB_RESV)
goto tran_spec_excp;
/* Set the protection indicator if page protection is active */
if (pte & PAGETAB_PROT)
regs->dat.protect |= 1;
/* [3.11.4.2] Place the translated address in the TLB */
if (!(acctype & ACC_NOTLB))
{
regs->tlb.TLB_ASD(tlbix) = regs->dat.asd;
regs->tlb.TLB_VADDR(tlbix) = (vaddr & TLBID_PAGEMASK) | regs->tlbID;
regs->tlb.TLB_PTE(tlbix) = pte;
regs->tlb.common[tlbix] = (ste & SEGTAB_COMMON) ? 1 : 0;
regs->tlb.acc[tlbix] = 0;
regs->tlb.protect[tlbix] = regs->dat.protect;
regs->tlb.main[tlbix] = NULL;
}
} /* end if(!TLB) */
if(!(acctype & ACC_PTE))
{
/* [3.11.3.5] Combine the page frame real address with the byte
index of the virtual address to form the real address */
regs->dat.raddr = (pte & PAGETAB_PFRA) | (vaddr & 0xFFF);
regs->dat.rpfra = (pte & PAGETAB_PFRA);
}
else
/* In the case of lock page, return the address of the
pagetable entry */
regs->dat.raddr = pto;
#endif /*defined(FEATURE_S390_DAT)*/
#if defined(FEATURE_ESAME)
/*-----------------------------------*/
/* ESAME Dynamic Address Translation */
/*-----------------------------------*/
RADR rte; /* Region table entry */
#define rto sto /* Region/seg table origin */
RADR ste = 0; /* Segment table entry */
RADR pte = 0; /* Page table entry */
BYTE tt; /* Table type */
BYTE tl; /* Table length */
BYTE tf; /* Table offset */
U16 rfx, rsx, rtx; /* Region first/second/third
index + 3 low-order zeros */
U16 sx, px; /* Segment and page index,
+ 3 low-order zero bits */
regs->dat.private = regs->dat.protect = 0;
/* Load the address space control element */
if (ARCH_DEP(load_address_space_designator) (arn, regs, acctype))
goto tran_alet_excp;
/* Extract the private space bit from the ASCE */
regs->dat.private = ((regs->dat.asd & (ASCE_P|ASCE_R)) != 0);
// logmsg("asce=%16.16" I64_FMT "X\n",regs->dat.asd);
/* [3.11.4] Look up the address in the TLB */
if ( ((vaddr & TLBID_PAGEMASK) | regs->tlbID) == regs->tlb.TLB_VADDR(tlbix)
&& (regs->tlb.common[tlbix] || regs->dat.asd == regs->tlb.TLB_ASD(tlbix))
&& !(regs->tlb.common[tlbix] && regs->dat.private)
&& !(acctype & ACC_NOTLB) )
{
pte = regs->tlb.TLB_PTE(tlbix);
if (regs->tlb.protect[tlbix])
regs->dat.protect = regs->tlb.protect[tlbix];
}
else
{
/* If ASCE indicates a real-space then real addr = virtual addr */
if (regs->dat.asd & ASCE_R)
{
// logmsg("asce type = real\n");
/* Translation specification exception if LKPG for a real-space */
if(acctype & ACC_PTE)
goto tran_spec_excp;
/* Special operation exception if LPTEA for a real-space */
if(acctype & ACC_LPTEA)
goto spec_oper_excp;
/* Construct a fake page table entry for real = virtual */
pte = vaddr & 0xFFFFFFFFFFFFF000ULL;
}
else
{
/* Extract the table origin, type, and length from the ASCE,
and set the table offset to zero */
rto = regs->dat.asd & ASCE_TO;
tf = 0;
tt = regs->dat.asd & ASCE_DT;
tl = regs->dat.asd & ASCE_TL;
/* Extract the 11-bit region first index, region second index,
and region third index from the virtual address, and shift
each index into bits 2-12 of a 16-bit integer, ready for
addition to the appropriate region table origin */
rfx = (vaddr >> 50) & 0x3FF8;
rsx = (vaddr >> 39) & 0x3FF8;
rtx = (vaddr >> 28) & 0x3FF8;
/* Extract the 11-bit segment index from the virtual address,
and shift it into bits 2-12 of a 16-bit integer, ready
for addition to the segment table origin */
sx = (vaddr >> 17) & 0x3FF8;
/* Extract the 8-bit page index from the virtual address,
and shift it into bits 2-12 of a 16-bit integer, ready
for addition to the page table origin */
px = (vaddr >> 9) & 0x07F8;
/* ASCE-type exception if the virtual address is too large
for the table type designated by the ASCE */
if ((rfx != 0 && tt < TT_R1TABL)
|| (rsx != 0 && tt < TT_R2TABL)
|| (rtx != 0 && tt < TT_R3TABL))
goto asce_type_excp;
/* Perform region translation */
switch (tt) {
/* Perform region-first translation */
case TT_R1TABL:
/* Region-first translation exception if table length is
less than high-order 2 bits of region-first index */
if (tl < (rfx >> 12))
goto reg_first_excp;
/* Add the region-first index (with three low-order zeroes)
to the region-first table origin, giving the address of
the region-first table entry */
rto += rfx;
/* Addressing exception if outside main storage */
if (rto > regs->mainlim)
goto address_excp;
/* Fetch region-first table entry from absolute storage.
All bytes must be fetched concurrently as observed by
other CPUs */
rte = ARCH_DEP(fetch_doubleword_absolute) (rto, regs);
// logmsg("r1te:%16.16" I64_FMT "X=>%16.16" I64_FMT "X\n",rto,rte);
/* Region-first translation exception if the bit 58 of
the region-first table entry is set (region invalid) */
if (rte & REGTAB_I)
goto reg_first_invalid;
/* Translation specification exception if bits 60-61 of
the region-first table entry do not indicate the
correct type of region table */
if ((rte & REGTAB_TT) != TT_R1TABL)
goto tran_spec_excp;
#if defined(FEATURE_ENHANCED_DAT_FACILITY)
if ((regs->CR_L(0) & CR0_ED)
&& (rte & REGTAB_P))
regs->dat.protect |= 1;
#endif /*defined(FEATURE_ENHANCED_DAT_FACILITY)*/
/* Extract the region-second table origin, offset, and
length from the region-first table entry */
rto = rte & REGTAB_TO;
tf = (rte & REGTAB_TF) >> 6;
tl = rte & REGTAB_TL;
/* Fall through to perform region-second translation */
/* Perform region-second translation */
case TT_R2TABL:
/* Region-second translation exception if table offset is
greater than high-order 2 bits of region-second index */
if (tf > (rsx >> 12))
goto reg_second_excp;
/* Region-second translation exception if table length is
less than high-order 2 bits of region-second index */
if (tl < (rsx >> 12))
goto reg_second_excp;
/* Add the region-second index (with three low-order zeroes)
to the region-second table origin, giving the address of
the region-second table entry */
rto += rsx;
/* Addressing exception if outside main storage */
if (rto > regs->mainlim)
goto address_excp;
/* Fetch region-second table entry from absolute storage.
All bytes must be fetched concurrently as observed by
other CPUs */
rte = ARCH_DEP(fetch_doubleword_absolute) (rto, regs);
// logmsg("r2te:%16.16" I64_FMT "X=>%16.16" I64_FMT "X\n",rto,rte);
/* Region-second translation exception if the bit 58 of
the region-second table entry is set (region invalid) */
if (rte & REGTAB_I)
goto reg_second_invalid;
/* Translation specification exception if bits 60-61 of
the region-second table entry do not indicate the
correct type of region table */
if ((rte & REGTAB_TT) != TT_R2TABL)
goto tran_spec_excp;
#if defined(FEATURE_ENHANCED_DAT_FACILITY)
if ((regs->CR_L(0) & CR0_ED)
&& (rte & REGTAB_P))
regs->dat.protect |= 1;
#endif /*defined(FEATURE_ENHANCED_DAT_FACILITY)*/
/* Extract the region-third table origin, offset, and
length from the region-second table entry */
rto = rte & REGTAB_TO;
tf = (rte & REGTAB_TF) >> 6;
tl = rte & REGTAB_TL;
/* Fall through to perform region-third translation */
/* Perform region-third translation */
case TT_R3TABL:
/* Region-third translation exception if table offset is
greater than high-order 2 bits of region-third index */
if (tf > (rtx >> 12))
goto reg_third_excp;
/* Region-third translation exception if table length is
less than high-order 2 bits of region-third index */
if (tl < (rtx >> 12))
goto reg_third_excp;
/* Add the region-third index (with three low-order zeroes)
to the region-third table origin, giving the address of
the region-third table entry */
rto += rtx;
/* Addressing exception if outside main storage */
if (rto > regs->mainlim)
goto address_excp;
/* Fetch region-third table entry from absolute storage.
All bytes must be fetched concurrently as observed by
other CPUs */
rte = ARCH_DEP(fetch_doubleword_absolute) (rto, regs);
// logmsg("r3te:%16.16" I64_FMT "X=>%16.16" I64_FMT "X\n",rto,rte);
/* Region-third translation exception if the bit 58 of
the region-third table entry is set (region invalid) */
if (rte & REGTAB_I)
goto reg_third_invalid;
/* Translation specification exception if bits 60-61 of
the region-third table entry do not indicate the
correct type of region table */
if ((rte & REGTAB_TT) != TT_R3TABL)
goto tran_spec_excp;
#if defined(FEATURE_ENHANCED_DAT_FACILITY_2)
if ((regs->CR_L(0) & CR0_ED))
{
/* Translation specification exception if the ASCE
indicates a private space, and the region third
table entry indicates a common region */
if (regs->dat.private && (rte & REGTAB_CR))
goto tran_spec_excp;
}
#endif /*defined(FEATURE_ENHANCED_DAT_FACILITY_2)*/
#if defined(FEATURE_ENHANCED_DAT_FACILITY)
if ((regs->CR_L(0) & CR0_ED)
&& (rte & REGTAB_P))
regs->dat.protect |= 1;
#endif /*defined(FEATURE_ENHANCED_DAT_FACILITY)*/
#if defined(FEATURE_ENHANCED_DAT_FACILITY_2)
if ((regs->CR_L(0) & CR0_ED)
&& (rte & REGTAB_FC))
{
/* For LPTEA instruction, return the address of the RTTE */
if (unlikely(acctype & ACC_LPTEA))
{
regs->dat.raddr = rto | (regs->dat.protect ? 0x04 : 0);
// logmsg("raddr:%16.16" I64_FMT "X cc=2\n",regs->dat.raddr);
regs->dat.xcode = 0;
cc = 2;
return cc;
} /* end if(ACCTYPE_LPTEA) */
/* Combine the region frame absolute address with the byte index
of the virtual address to form the absolute address */
regs->dat.raddr = (rte & REGTAB_RFAA) | (vaddr & ~REGTAB_RFAA);
/* Fake 4K PFRA for TLB purposes */
regs->dat.rpfra = ((rte & REGTAB_RFAA) | (vaddr & ~REGTAB_RFAA)) & PAGEFRAME_PAGEMASK;
// logmsg("raddr:%16.16" I64_FMT "X cc=0\n",regs->dat.raddr);
/* [3.11.4.2] Place the translated address in the TLB */
if (!(acctype & ACC_NOTLB))
{
regs->tlb.TLB_ASD(tlbix) = regs->dat.asd;
regs->tlb.TLB_VADDR(tlbix) = (vaddr & TLBID_PAGEMASK) | regs->tlbID;
/* Fake 4K PTE for TLB purposes */
regs->tlb.TLB_PTE(tlbix) = ((rte & REGTAB_RFAA) | (vaddr & ~REGTAB_RFAA)) & PAGEFRAME_PAGEMASK;
regs->tlb.common[tlbix] = (rte & REGTAB_CR) ? 1 : 0;
regs->tlb.protect[tlbix] = regs->dat.protect;
regs->tlb.acc[tlbix] = 0;
regs->tlb.main[tlbix] = NULL;
}
/* Clear exception code and return with zero return code */
regs->dat.xcode = 0;
return 0;
}
#endif /*defined(FEATURE_ENHANCED_DAT_FACILITY_2)*/
/* Extract the segment table origin, offset, and
length from the region-third table entry */
sto = rte & REGTAB_TO;
tf = (rte & REGTAB_TF) >> 6;
tl = rte & REGTAB_TL;
/* Fall through to perform segment translation */
} /* end switch(tt) */
/* Perform ESAME segment translation */
/* Add the segment index (with three low-order zeroes)
to the segment table origin, giving the address of
the segment table entry */
sto += sx;
/* Segment translation exception if table offset is
greater than high-order 2 bits of segment index */
if (tf > (sx >> 12))
goto seg_tran_length;
/* Segment translation exception if table length is
less than high-order 2 bits of segment index */
if (tl < (sx >> 12))
goto seg_tran_length;
/* Addressing exception if outside real storage */
if (sto > regs->mainlim)
goto address_excp;
/* Fetch segment table entry from absolute storage. All bytes
must be fetched concurrently as observed by other CPUs */
ste = ARCH_DEP(fetch_doubleword_absolute) (sto, regs);
// logmsg("ste:%16.16" I64_FMT "X=>%16.16" I64_FMT "X\n",sto,ste);
/* Segment translation exception if segment invalid */
if (ste & ZSEGTAB_I)
goto seg_tran_invalid;
/* Translation specification exception if bits 60-61 of
the segment table entry do not indicate segment table */
if ((ste & ZSEGTAB_TT) != TT_SEGTAB)
goto tran_spec_excp;
/* Translation specification exception if the ASCE
indicates a private space, and the segment table
entry indicates a common segment */
if (regs->dat.private && (ste & ZSEGTAB_C))
goto tran_spec_excp;
#if defined(FEATURE_ENHANCED_DAT_FACILITY)
if ((regs->CR_L(0) & CR0_ED)
&& (ste & ZSEGTAB_FC))
{
/* Set protection indicator if page protection is indicated */
if (ste & ZSEGTAB_P)
regs->dat.protect |= 1;
/* For LPTEA instruction, return the address of the STE */
if (unlikely(acctype & ACC_LPTEA))
{
regs->dat.raddr = sto | (regs->dat.protect ? 0x04 : 0);
// logmsg("raddr:%16.16" I64_FMT "X cc=2\n",regs->dat.raddr);
regs->dat.xcode = 0;
cc = 2;
return cc;
} /* end if(ACCTYPE_LPTEA) */
/* Combine the page frame real address with the byte index
of the virtual address to form the real address */
regs->dat.raddr = (ste & ZSEGTAB_SFAA) | (vaddr & ~ZSEGTAB_SFAA);
/* Fake 4K PFRA for TLB purposes */
regs->dat.rpfra = ((ste & ZSEGTAB_SFAA) | (vaddr & ~ZSEGTAB_SFAA)) & PAGEFRAME_PAGEMASK;
// logmsg("raddr:%16.16" I64_FMT "X cc=0\n",regs->dat.raddr);
/* [3.11.4.2] Place the translated address in the TLB */
if (!(acctype & ACC_NOTLB))
{
regs->tlb.TLB_ASD(tlbix) = regs->dat.asd;
regs->tlb.TLB_VADDR(tlbix) = (vaddr & TLBID_PAGEMASK) | regs->tlbID;
/* Fake 4K PTE for TLB purposes */
regs->tlb.TLB_PTE(tlbix) = ((ste & ZSEGTAB_SFAA) | (vaddr & ~ZSEGTAB_SFAA)) & PAGEFRAME_PAGEMASK;
regs->tlb.common[tlbix] = (ste & SEGTAB_COMMON) ? 1 : 0;
regs->tlb.protect[tlbix] = regs->dat.protect;
regs->tlb.acc[tlbix] = 0;
regs->tlb.main[tlbix] = NULL;
}
/* Clear exception code and return with zero return code */
regs->dat.xcode = 0;
return 0;
}
#endif /*defined(FEATURE_ENHANCED_DAT_FACILITY)*/
/* Extract the page table origin from segment table entry */
pto = ste & ZSEGTAB_PTO;
/* Perform ESAME page translation */
/* Add the page index (with three low-order zeroes) to the
page table origin, giving address of page table entry */
pto += px;
/* For LPTEA instruction, return the address of the PTE */
if (acctype & ACC_LPTEA)
{
regs->dat.raddr = pto;
regs->dat.xcode = 0;
cc = (ste & ZSEGTAB_P) ? 1 : 0;
#if defined(FEATURE_ENHANCED_DAT_FACILITY)
if ((regs->CR_L(0) & CR0_ED)
&& regs->dat.protect)
cc = 1;
#endif /*defined(FEATURE_ENHANCED_DAT_FACILITY)*/
return cc;
} /* end if(ACCTYPE_LPTEA) */
/* Addressing exception if outside real storage */
if (pto > regs->mainlim)
goto address_excp;
/* Fetch the page table entry from absolute storage. All bytes
must be fetched concurrently as observed by other CPUs */
pte = ARCH_DEP(fetch_doubleword_absolute) (pto, regs);
// logmsg("pte:%16.16" I64_FMT "X=>%16.16" I64_FMT "X\n",pto,pte);
/* Page translation exception if page invalid */
if (pte & ZPGETAB_I)
goto page_tran_invalid;
/* Check that all the reserved bits in the PTE are zero */
if (pte & ZPGETAB_RESV)
goto tran_spec_excp;
} /* end else(ASCE_R) */
/* Set protection indicator if page protection is indicated
in either the segment table or the page table */
if ((ste & ZSEGTAB_P) || (pte & ZPGETAB_P))
regs->dat.protect |= 1;
/* [3.11.4.2] Place the translated address in the TLB */
if (!(acctype & ACC_NOTLB))
{
regs->tlb.TLB_ASD(tlbix) = regs->dat.asd;
regs->tlb.TLB_VADDR(tlbix) = (vaddr & TLBID_PAGEMASK) | regs->tlbID;
regs->tlb.TLB_PTE(tlbix) = pte;
regs->tlb.common[tlbix] = (ste & SEGTAB_COMMON) ? 1 : 0;
regs->tlb.protect[tlbix] = regs->dat.protect;
regs->tlb.acc[tlbix] = 0;
regs->tlb.main[tlbix] = NULL;
}
}
if(!(acctype & ACC_PTE))
{
/* Combine the page frame real address with the byte index
of the virtual address to form the real address */
regs->dat.raddr = (pte & ZPGETAB_PFRA) | (vaddr & 0xFFF);
regs->dat.rpfra = (pte & ZPGETAB_PFRA);
}
else
regs->dat.raddr = pto;
#endif /*defined(FEATURE_ESAME)*/
/* The following code is common to S/370, ESA/390, and ESAME */
/* Clear exception code and return with zero return code */
regs->dat.xcode = 0;
return 0;
/* Conditions which always cause program check, except
when performing translation for the control panel */
address_excp:
// logmsg("dat.c: addressing exception: %8.8X %8.8X %4.4X %8.8X\n",
// regs->CR(0),regs->dat.asd,pte,vaddr);
regs->dat.xcode = PGM_ADDRESSING_EXCEPTION;
goto tran_prog_check;
tran_spec_excp:
#if defined(FEATURE_ESAME)
// logmsg("dat.c: translation specification exception...\n");
// logmsg(" pte = %16.16" I64_FMT "X, ste = %16.16" I64_FMT "X, rte=%16.16" I64_FMT "X\n",
// pte, ste, rte);
#else
// logmsg("dat.c: translation specification exception...\n");
// logmsg(" cr0=%8.8X ste=%8.8X pte=%4.4X vaddr=%8.8X\n",
// regs->CR(0),ste,pte,vaddr);
#endif
regs->dat.xcode = PGM_TRANSLATION_SPECIFICATION_EXCEPTION;
goto tran_prog_check;
#if defined(FEATURE_ESAME)
spec_oper_excp:
regs->dat.xcode = PGM_SPECIAL_OPERATION_EXCEPTION;
goto tran_prog_check;
#endif /*defined(FEATURE_ESAME)*/
tran_prog_check:
#if defined(FEATURE_ENHANCED_MONITOR_FACILITY)
/* No program interrupt for enhanced MC */
if(acctype & ACC_ENH_MC)
{
cc = 5;
return cc;
}
#endif /*defined(FEATURE_ENHANCED_MONITOR_FACILITY)*/
regs->program_interrupt (regs, regs->dat.xcode);
/* Conditions which the caller may or may not program check */
seg_tran_invalid:
/* For LPTEA, return segment table entry address with cc 2 */
if (acctype & ACC_LPTEA)
{
regs->dat.raddr = sto;
cc = 2;
return cc;
} /* end if(ACCTYPE_LPTEA) */
/* Otherwise set translation exception code */
regs->dat.xcode = PGM_SEGMENT_TRANSLATION_EXCEPTION;
regs->dat.raddr = sto;
cc = 1;
goto tran_excp_addr;
page_tran_invalid:
regs->dat.xcode = PGM_PAGE_TRANSLATION_EXCEPTION;
regs->dat.raddr = pto;
if(acctype & ACC_PTE) return 0;
cc = 2;
goto tran_excp_addr;
#if !defined(FEATURE_ESAME)
page_tran_length:
regs->dat.xcode = PGM_PAGE_TRANSLATION_EXCEPTION;
regs->dat.raddr = pto;
cc = 3;
goto tran_excp_addr;
#endif /*!defined(FEATURE_ESAME)*/
seg_tran_length:
// logmsg("dat.c: segment translation exception due to segment length\n");
// logmsg(" cr0=" F_RADR " sto=" F_RADR "\n",regs->CR(0),sto);
regs->dat.xcode = PGM_SEGMENT_TRANSLATION_EXCEPTION;
regs->dat.raddr = sto;
cc = 3;
goto tran_excp_addr;
tran_alet_excp:
regs->excarid = arn;
cc = (acctype & ACC_LPTEA) ? 3 : 4;
return cc;
#if defined(FEATURE_ESAME)
reg_first_invalid:
/* For LPTEA, return region table entry address with cc 2 */
if (acctype & ACC_LPTEA)
{
regs->dat.raddr = rto | (TT_R1TABL >> 2);
cc = 2;
return cc;
} /* end if(ACCTYPE_LPTEA) */
/* Otherwise set translation exception code */
goto reg_first_excp;
reg_second_invalid:
/* For LPTEA, return region table entry address with cc 2 */
if (acctype & ACC_LPTEA)
{
regs->dat.raddr = rto | (TT_R2TABL >> 2);
cc = 2;
return cc;
} /* end if(ACCTYPE_LPTEA) */
/* Otherwise set translation exception code */
goto reg_second_excp;
reg_third_invalid:
/* For LPTEA, return region table entry address with cc 2 */
if (acctype & ACC_LPTEA)
{
regs->dat.raddr = rto | (TT_R3TABL >> 2);
cc = 2;
return cc;
} /* end if(ACCTYPE_LPTEA) */
/* Otherwise set translation exception code */
goto reg_third_excp;
asce_type_excp:
// logmsg("rfx = %4.4X, rsx %4.4X, rtx = %4.4X, tt = %1.1X\n",
// rfx, rsx, rtx, tt);
regs->dat.xcode = PGM_ASCE_TYPE_EXCEPTION;
cc = 4;
goto tran_excp_addr;
reg_first_excp:
regs->dat.xcode = PGM_REGION_FIRST_TRANSLATION_EXCEPTION;
cc = 4;
goto tran_excp_addr;
reg_second_excp:
regs->dat.xcode = PGM_REGION_SECOND_TRANSLATION_EXCEPTION;
cc = 4;
goto tran_excp_addr;
reg_third_excp:
regs->dat.xcode = PGM_REGION_THIRD_TRANSLATION_EXCEPTION;
cc = 4;
goto tran_excp_addr;
#endif /*defined(FEATURE_ESAME)*/
tran_excp_addr:
/* For LPTEA instruction, return xcode with cc = 3 */
if (acctype & ACC_LPTEA)
return 3;
/* Set the translation exception address */
regs->TEA = vaddr & PAGEFRAME_PAGEMASK;
/* Set the address space indication in the exception address */
#if defined(FEATURE_ESAME)
if(regs->dat.stid == TEA_ST_ARMODE)
{
if ((regs->dat.asd & ASCE_TO) == (regs->CR(1) & ASCE_TO))
regs->TEA |= TEA_ST_PRIMARY;
else if ((regs->dat.asd & ASCE_TO) == (regs->CR(7) & ASCE_TO))
regs->TEA |= TEA_ST_SECNDRY;
else if ((regs->dat.asd & ASCE_TO) == (regs->CR(13) & ASCE_TO))
regs->TEA |= TEA_ST_HOME;
else
regs->TEA |= TEA_ST_ARMODE;
}
else
regs->TEA |= regs->dat.stid;
#else /*!defined(FEATURE_ESAME)*/
if(regs->dat.stid == TEA_ST_ARMODE)
{
if ((regs->dat.asd & STD_STO) == (regs->CR(1) & STD_STO))
regs->TEA |= TEA_ST_PRIMARY;
else if ((regs->dat.asd & STD_STO) == (regs->CR(7) & STD_STO))
regs->TEA |= TEA_ST_SECNDRY;
else if ((regs->dat.asd & STD_STO) == (regs->CR(13) & STD_STO))
regs->TEA |= TEA_ST_HOME;
else
regs->TEA |= TEA_ST_ARMODE;
}
else
if((regs->dat.stid == TEA_ST_SECNDRY)
&& (PRIMARY_SPACE_MODE(®s->psw)
|| SECONDARY_SPACE_MODE(®s->psw)))
regs->TEA |= TEA_ST_SECNDRY | TEA_SECADDR;
else
regs->TEA |= regs->dat.stid;
#endif /*!defined(FEATURE_ESAME)*/
#if defined(FEATURE_ACCESS_EXCEPTION_FETCH_STORE_INDICATION) /*810*/
/* Set the fetch/store indication bits 52-53 in the TEA */
if (acctype & ACC_READ) {
regs->TEA |= TEA_FETCH;
} else if (acctype & (ACC_WRITE|ACC_CHECK)) {
regs->TEA |= TEA_STORE;
}
#endif /*defined(FEATURE_ACCESS_EXCEPTION_FETCH_STORE_INDICATION)*/ /*810*/
/* Set the exception access identification */
if (ACCESS_REGISTER_MODE(®s->psw)
|| (SIE_ACTIVE(regs) && MULTIPLE_CONTROLLED_DATA_SPACE(regs->guestregs))
)
regs->excarid = arn > 15 ? 0 : arn;
/* Return condition code */
return cc;
} /* end function translate_addr */
/*-------------------------------------------------------------------*/
/* Purge the translation lookaside buffer */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC void ARCH_DEP(purge_tlb) (REGS *regs)
{
INVALIDATE_AIA(regs);
if (((++regs->tlbID) & TLBID_BYTEMASK) == 0)
{
memset (®s->tlb.vaddr, 0, TLBN * sizeof(DW));
regs->tlbID = 1;
}
#if defined(_FEATURE_SIE)
/* Also clear the guest registers in the SIE copy */
if(regs->host && regs->guestregs)
{
INVALIDATE_AIA(regs->guestregs);
if (((++regs->guestregs->tlbID) & TLBID_BYTEMASK) == 0)
{
memset (®s->guestregs->tlb.vaddr, 0, TLBN * sizeof(DW));
regs->guestregs->tlbID = 1;
}
}
#endif /*defined(_FEATURE_SIE)*/
} /* end function purge_tlb */
/*-------------------------------------------------------------------*/
/* Purge the translation lookaside buffer for all CPUs */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC void ARCH_DEP(purge_tlb_all) ()
{
int i;
for (i = 0; i < MAX_CPU; i++)
if (IS_CPU_ONLINE(i)
&& (sysblk.regs[i]->cpubit & sysblk.started_mask))
ARCH_DEP(purge_tlb) (sysblk.regs[i]);
} /* end function purge_tlb_all */
/*-------------------------------------------------------------------*/
/* Purge translation lookaside buffer entries */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC void ARCH_DEP(purge_tlbe) (REGS *regs, RADR pfra)
{
int i;
RADR pte;
RADR ptemask;
#if !defined(FEATURE_S390_DAT) && !defined(FEATURE_ESAME)
ptemask = ((regs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_4K) ?
PAGETAB_PFRA_4K : PAGETAB_PFRA_2K;
pte = ((pfra & 0xFFFFFF) >> 8) & ptemask;
#endif
#if defined(FEATURE_S390_DAT)
ptemask = PAGETAB_PFRA;
pte = pfra & ptemask;
#endif /* defined(FEATURE_S390_DAT) */
#if defined(FEATURE_ESAME)
ptemask = (RADR)ZPGETAB_PFRA;
pte = pfra & ptemask;
#endif /* defined(FEATURE_ESAME) */
INVALIDATE_AIA(regs);
for (i = 0; i < TLBN; i++)
if ((regs->tlb.TLB_PTE(i) & ptemask) == pte)
regs->tlb.TLB_VADDR(i) &= TLBID_PAGEMASK;
#if defined(_FEATURE_SIE)
/* Also clear the guest registers in the SIE copy */
if (regs->host && regs->guestregs)
{
INVALIDATE_AIA(regs->guestregs);
for (i = 0; i < TLBN; i++)
/************************************************************************** @PJJ */
/* The guest registers in the SIE copy TLB PTE entries for DAT-OFF guests * @PJJ */
/* like CMS do NOT actually contain the PTE (but rather the host primary * @PJJ */
/* virtual address, both masked with TBLID_PAGEMASK). In order to check * @PJJ */
/* if such guest TLB entry needs to be cleared, one needs to check the * @PJJ */
/* parallel host registers TLB PTE entry. Hence that the if-test that * @PJJ */
/* follows needed to be expanded. Originally it was just : * @PJJ */
/* * @PJJ */
/* if ((regs->guestregs->tlb.TLB_PTE(i) & ptemask) == pte) * @PJJ */
/* * @PJJ */
/* and it is now expanded with the additional test as follows : * @PJJ */
/* * @PJJ */
/* (Peter J. Jansen, 26-Jul-2016) * @PJJ */
/************************************************************************** @PJJ */
if ((regs->guestregs->tlb.TLB_PTE(i) & ptemask) == pte || /* @PJJ */
(regs->hostregs->tlb.TLB_PTE(i) & ptemask) == pte) /* @PJJ */
regs->guestregs->tlb.TLB_VADDR(i) &= TLBID_PAGEMASK;
}
else
/* For guests, clear any host entries */
if (regs->guest)
{
INVALIDATE_AIA(regs->hostregs);
for (i = 0; i < TLBN; i++)
if ((regs->hostregs->tlb.TLB_PTE(i) & ptemask) == pte)
regs->hostregs->tlb.TLB_VADDR(i) &= TLBID_PAGEMASK;
}
#endif /*defined(_FEATURE_SIE)*/
} /* end function purge_tlbe */
/*-------------------------------------------------------------------*/
/* Purge translation lookaside buffer entries for all CPUs */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC void ARCH_DEP(purge_tlbe_all) (RADR pfra)
{
int i;
for (i = 0; i < MAX_CPU; i++)
if (IS_CPU_ONLINE(i)
&& (sysblk.regs[i]->cpubit & sysblk.started_mask))
ARCH_DEP(purge_tlbe) (sysblk.regs[i], pfra);
} /* end function purge_tlbe_all */
/*-------------------------------------------------------------------*/
/* Invalidate all translation lookaside buffer entries */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC void ARCH_DEP(invalidate_tlb) (REGS *regs, BYTE mask)
{
int i;
INVALIDATE_AIA(regs);
if (mask == 0)
memset(®s->tlb.acc, 0, TLBN);
else
for (i = 0; i < TLBN; i++)
if ((regs->tlb.TLB_VADDR(i) & TLBID_BYTEMASK) == regs->tlbID)
regs->tlb.acc[i] &= mask;
#if defined(_FEATURE_SIE)
/* Also invalidate the guest registers in the SIE copy */
if(regs->host && regs->guestregs)
{
INVALIDATE_AIA(regs->guestregs);
if (mask == 0)
memset(®s->guestregs->tlb.acc, 0, TLBN);
else
for (i = 0; i < TLBN; i++)
if ((regs->guestregs->tlb.TLB_VADDR(i) & TLBID_BYTEMASK) == regs->guestregs->tlbID)
regs->guestregs->tlb.acc[i] &= mask;
}
else
/* Also invalidate the guest registers in the SIE copy */
if(regs->guest)
{
INVALIDATE_AIA(regs->hostregs);
if (mask == 0)
memset(®s->hostregs->tlb.acc, 0, TLBN);
else
for (i = 0; i < TLBN; i++)
if ((regs->hostregs->tlb.TLB_VADDR(i) & TLBID_BYTEMASK) == regs->hostregs->tlbID)
regs->hostregs->tlb.acc[i] &= mask;
}
#endif /*defined(_FEATURE_SIE)*/
} /* end function invalidate_tlb */
/*-------------------------------------------------------------------*/
/* Invalidate matching translation lookaside buffer entries */
/* */
/* Input: */
/* main mainstore address to match on. This is mainstore */
/* base plus absolute address (regs->mainstor+aaddr) */
/* */
/* This function is called by the SSK(E) instructions to purge */
/* TLB entries that match the mainstore address. The "main" */
/* field in the TLB contains the mainstore address plus an */
/* XOR hash with effective address (regs->mainstor+aaddr^addr). */
/* Before the compare can happen, the effective address from */
/* the tlb (TLB_VADDR) must be XORed with the "main" field from */
/* the tlb (removing hash). This is done using MAINADDR() macro. */
/* NOTES: */
/* TLB_VADDR does not contain all the effective address bits and */
/* must be created on-the-fly using the tlb index (i << shift). */
/* TLB_VADDR also contains the tlbid, so the regs->tlbid is merged */
/* with the main input variable before the search is begun. */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC void ARCH_DEP(invalidate_tlbe) (REGS *regs, BYTE *main)
{
int i; /* index into TLB */
int shift; /* Number of bits to shift */
BYTE *mainwid; /* mainstore with tlbid */
if (main == NULL)
{
ARCH_DEP(invalidate_tlb)(regs, 0);
return;
}
mainwid = main + regs->tlbID;
INVALIDATE_AIA_MAIN(regs, main);
shift = regs->arch_mode == ARCH_370 ? 11 : 12;
for (i = 0; i < TLBN; i++)
if (MAINADDR(regs->tlb.main[i],
(regs->tlb.TLB_VADDR(i) | (i << shift)))
== mainwid)
{
regs->tlb.acc[i] = 0;
#if !defined(FEATURE_S390_DAT) && !defined(FEATURE_ESAME)
if ((regs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_4K)
regs->tlb.acc[i^1] = 0;
#endif
}
#if defined(_FEATURE_SIE)
/* Also clear the guest registers in the SIE copy */
if (regs->host && regs->guestregs)
{
INVALIDATE_AIA_MAIN(regs->guestregs, main);
shift = regs->guestregs->arch_mode == ARCH_370 ? 11 : 12;
for (i = 0; i < TLBN; i++)
if (MAINADDR(regs->guestregs->tlb.main[i],
(regs->guestregs->tlb.TLB_VADDR(i) | (i << shift)))
== mainwid)
{
regs->guestregs->tlb.acc[i] = 0;
#if !defined(FEATURE_S390_DAT) && !defined(FEATURE_ESAME)
if ((regs->guestregs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_4K)
regs->guestregs->tlb.acc[i^1] = 0;
#endif
}
}
/* Also clear the host registers in the SIE copy */
if (regs->guest)
{
INVALIDATE_AIA_MAIN(regs->hostregs, main);
shift = regs->hostregs->arch_mode == ARCH_370 ? 11 : 12;
for (i = 0; i < TLBN; i++)
if (MAINADDR(regs->hostregs->tlb.main[i],
(regs->hostregs->tlb.TLB_VADDR(i) | (i << shift)))
== mainwid)
{
regs->hostregs->tlb.acc[i] = 0;
#if !defined(FEATURE_S390_DAT) && !defined(FEATURE_ESAME)
if ((regs->hostregs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_4K)
regs->hostregs->tlb.acc[i^1] = 0;
#endif
}
}
#endif /*defined(_FEATURE_SIE)*/
} /* end function invalidate_tlbe */
/*-------------------------------------------------------------------*/
/* Invalidate page table entry */
/* */
/* Input: */
/* ibyte 0x21=IPTE instruction, 0x59=IESBE instruction */
/* r1 First operand register number */
/* r2 Second operand register number */
/* regs CPU register context */
/* */
/* This function is called by the IPTE and IESBE instructions. */
/* It sets the PAGETAB_INVALID bit (for IPTE) or resets the */
/* PAGETAB_ESVALID bit (for IESBE) in the page table entry */
/* addressed by the page table origin in the R1 register and */
/* the page index in the R2 register. It clears the TLB of */
/* all entries whose PFRA matches the page table entry. */
/* */
/* invalidate_pte should be called with the intlock held and */
/* SYNCHRONIZE_CPUS issued while intlock is held. */
/* */
/*-------------------------------------------------------------------*/
_DAT_C_STATIC void ARCH_DEP(invalidate_pte) (BYTE ibyte, RADR op1,
U32 op2, REGS *regs)
{
RADR raddr; /* Addr of page table entry */
RADR pte;
RADR pfra;
UNREFERENCED_370(ibyte);
#if !defined(FEATURE_S390_DAT) && !defined(FEATURE_ESAME)
{
/* Program check if translation format is invalid */
if ((((regs->CR(0) & CR0_PAGE_SIZE) != CR0_PAGE_SZ_2K) &&
((regs->CR(0) & CR0_PAGE_SIZE) != CR0_PAGE_SZ_4K)) ||
(((regs->CR(0) & CR0_SEG_SIZE) != CR0_SEG_SZ_64K) &&
((regs->CR(0) & CR0_SEG_SIZE) != CR0_SEG_SZ_1M)))
regs->program_interrupt (regs,
PGM_TRANSLATION_SPECIFICATION_EXCEPTION);
/* Combine the page table origin in the R1 register with
the page index in the R2 register, ignoring carry, to
form the 31-bit real address of the page table entry */
raddr = (op1 & SEGTAB_370_PTO)
+ (((regs->CR(0) & CR0_SEG_SIZE) == CR0_SEG_SZ_1M) ?
(((regs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_4K) ?
((op2 & 0x000FF000) >> 11) :
((op2 & 0x000FF800) >> 10)) :
(((regs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_4K) ?
((op2 & 0x0000F000) >> 11) :
((op2 & 0x0000F800) >> 10)));
raddr &= 0x00FFFFFF;
/* Fetch the page table entry from real storage, subject
to normal storage protection mechanisms */
pte = ARCH_DEP(vfetch2) ( raddr, USE_REAL_ADDR, regs );
/* Set the page invalid bit in the page table entry,
again subject to storage protection mechansims */
// /*debug*/ logmsg("dat.c: IPTE issued for entry %4.4X at %8.8X...\n"
// " page table %8.8X, page index %8.8X, cr0 %8.8X\n",
// pte, raddr, regs->GR_L(r1), regs->GR_L(r2), regs->CR(0));
if ((regs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_2K)
pte |= PAGETAB_INV_2K;
else
pte |= PAGETAB_INV_4K;
ARCH_DEP(vstore2) ( pte, raddr, USE_REAL_ADDR, regs );
pfra = ((regs->CR(0) & CR0_PAGE_SIZE) == CR0_PAGE_SZ_4K) ?
#if defined(FEATURE_S370E_EXTENDED_ADDRESSING)
(((U32)pte & PAGETAB_EA_4K) << 23) |
#endif
(((U32)pte & PAGETAB_PFRA_4K) << 8) :
(((U32)pte & PAGETAB_PFRA_2K) << 8);
}
#elif defined(FEATURE_S390_DAT)
{
/* Program check if translation format is invalid */
if ((regs->CR(0) & CR0_TRAN_FMT) != CR0_TRAN_ESA390)
regs->program_interrupt (regs,
PGM_TRANSLATION_SPECIFICATION_EXCEPTION);
/* Combine the page table origin in the R1 register with
the page index in the R2 register, ignoring carry, to
form the 31-bit real address of the page table entry */
raddr = (op1 & SEGTAB_PTO)
+ ((op2 & 0x000FF000) >> 10);
raddr &= 0x7FFFFFFF;
/* Fetch the page table entry from real storage, subject
to normal storage protection mechanisms */
pte = ARCH_DEP(vfetch4) ( raddr, USE_REAL_ADDR, regs );
/* Set the page invalid bit in the page table entry,
again subject to storage protection mechansims */
#if defined(FEATURE_MOVE_PAGE_FACILITY_2) && defined(FEATURE_EXPANDED_STORAGE)
if(ibyte == 0x59)
pte &= ~PAGETAB_ESVALID;
else
#endif /*defined(FEATURE_MOVE_PAGE_FACILITY_2)*/
pte |= PAGETAB_INVALID;
ARCH_DEP(vstore4) ( pte, raddr, USE_REAL_ADDR, regs );
pfra = pte & PAGETAB_PFRA;
}
#else /*defined(FEATURE_ESAME)*/
{
/* Combine the page table origin in the R1 register with
the page index in the R2 register, ignoring carry, to
form the 64-bit real address of the page table entry */
raddr = (op1 & ZSEGTAB_PTO)
+ ((op2 & 0x000FF000) >> 9);
#if defined(MODEL_DEPENDENT)
raddr = APPLY_PREFIXING (raddr, regs->PX);
#endif /*defined(MODEL_DEPENDENT)*/
/* Fetch the page table entry from real storage, subject
to normal storage protection mechanisms */
pte = ARCH_DEP(vfetch8) ( raddr, USE_REAL_ADDR, regs );
/* Set the page invalid bit in the page table entry,
again subject to storage protection mechansims */
#if defined(FEATURE_MOVE_PAGE_FACILITY_2) && defined(FEATURE_EXPANDED_STORAGE)
if(ibyte == 0x59)
pte &= ~ZPGETAB_ESVALID;
else
#endif /*defined(FEATURE_MOVE_PAGE_FACILITY_2)*/
pte |= ZPGETAB_I;
ARCH_DEP(vstore8) ( pte, raddr, USE_REAL_ADDR, regs );
pfra = pte & ZPGETAB_PFRA;
}
#endif /*defined(FEATURE_ESAME)*/
/* Invalidate TLB entries */
ARCH_DEP(purge_tlbe_all) (pfra);
} /* end function invalidate_pte */
#endif /*!defined(OPTION_NO_INLINE_DAT) || defined(_DAT_C) */
#if defined(FEATURE_PER2)
/*-------------------------------------------------------------------*/
/* Check for a storage alteration PER2 event */
/* Returns 1 if true, 0 if false */
/*-------------------------------------------------------------------*/
static inline int ARCH_DEP(check_sa_per2) (int arn, int acctype, REGS *regs)
{
UNREFERENCED(acctype);
if((regs->dat.asd & SAEVENT_BIT) || !(regs->CR(9) & CR9_SAC))
{
regs->peraid = arn > 0 && arn < 16 ? arn : 0;
regs->perc |= regs->dat.stid;
return 1;
}
return 0;
} /* end function check_sa_per2 */
#endif /*defined(FEATURE_PER2)*/
#if !defined(OPTION_NO_INLINE_LOGICAL) || defined(_DAT_C)
/*-------------------------------------------------------------------*/
/* Convert logical address to absolute address and check protection */
/* */
/* Input: */
/* addr Logical address to be translated */
/* arn Access register number (or USE_REAL_ADDR, */
/* USE_PRIMARY_SPACE, USE_SECONDARY_SPACE) */
/* regs CPU register context */
/* acctype Type of access requested: READ, WRITE, or instfetch */
/* akey Bits 0-3=access key, 4-7=zeroes */
/* len Length of data access for PER SA purpose */
/* Returns: */
/* Absolute storage address. */
/* */
/* If the PSW indicates DAT-off, or if the access register */
/* number parameter is the special value USE_REAL_ADDR, */
/* then the addr parameter is treated as a real address. */
/* Otherwise addr is a virtual address, so dynamic address */
/* translation is called to convert it to a real address. */
/* Prefixing is then applied to convert the real address to */
/* an absolute address, and then low-address protection, */
/* access-list controlled protection, page protection, and */
/* key controlled protection checks are applied to the address. */
/* If successful, the reference and change bits of the storage */
/* key are updated, and the absolute address is returned. */
/* */
/* If the logical address causes an addressing, protection, */
/* or translation exception then a program check is generated */
/* and the function does not return. */
/*-------------------------------------------------------------------*/
_LOGICAL_C_STATIC BYTE *ARCH_DEP(logical_to_main_l) (VADR addr, int arn,
REGS *regs, int acctype, BYTE akey,
size_t len)
{
RADR aaddr; /* Absolute address */
RADR apfra; /* Abs page frame address */
int ix = TLBIX(addr); /* TLB index */
/* Convert logical address to real address */
if ( (REAL_MODE(®s->psw) || arn == USE_REAL_ADDR)
#if defined(FEATURE_INTERPRETIVE_EXECUTION)
/* Under SIE guest real is always host primary, regardless
of the DAT mode */
&& !(regs->sie_active
#if !defined(_FEATURE_MULTIPLE_CONTROLLED_DATA_SPACE)
&& arn == USE_PRIMARY_SPACE
#else
// && ( (arn == USE_PRIMARY_SPACE)
// || SIE_STATB(regs->guestregs, MX, XC) )
#endif /*defined(_FEATURE_MULTIPLE_CONTROLLED_DATA_SPACE)*/
)
#endif /*defined(FEATURE_INTERPRETIVE_EXECUTION)*/
)
{
regs->dat.private = regs->dat.protect = 0;
regs->dat.raddr = addr;
regs->dat.rpfra = addr & PAGEFRAME_PAGEMASK;
/* Setup `real' TLB entry (for MADDR) */
regs->tlb.TLB_ASD(ix) = TLB_REAL_ASD;
regs->tlb.TLB_VADDR(ix) = (addr & TLBID_PAGEMASK) | regs->tlbID;
regs->tlb.TLB_PTE(ix) = addr & TLBID_PAGEMASK;
regs->tlb.acc[ix] =
regs->tlb.common[ix] =
regs->tlb.protect[ix] = 0;
}
else {
if (ARCH_DEP(translate_addr) (addr, arn, regs, acctype))
goto vabs_prog_check;
}
if (regs->dat.protect
&& (acctype & (ACC_WRITE|ACC_CHECK)))
goto vabs_prot_excp;
/* Convert real address to absolute address */
regs->dat.aaddr = aaddr = APPLY_PREFIXING (regs->dat.raddr, regs->PX);
apfra=APPLY_PREFIXING(regs->dat.rpfra,regs->PX);
/* Program check if absolute address is outside main storage */
if (regs->dat.aaddr > regs->mainlim)
goto vabs_addr_excp;
#if defined(_FEATURE_SIE)
if(SIE_MODE(regs)) regs->hostregs->dat.protect = 0;
if(SIE_MODE(regs) && !regs->sie_pref)
{
if (SIE_TRANSLATE_ADDR (regs->sie_mso + regs->dat.aaddr,
(arn > 0 && arn < 16 && MULTIPLE_CONTROLLED_DATA_SPACE(regs)) ? arn : USE_PRIMARY_SPACE,
regs->hostregs, ACCTYPE_SIE))
(regs->hostregs->program_interrupt) (regs->hostregs, regs->hostregs->dat.xcode);
regs->dat.protect |= regs->hostregs->dat.protect;
regs->tlb.protect[ix] |= regs->hostregs->dat.protect;
if ( REAL_MODE(®s->psw) || (arn == USE_REAL_ADDR) )
regs->tlb.TLB_PTE(ix) = addr & TLBID_PAGEMASK;
/* Indicate a host real space entry for a XC dataspace */
if (arn > 0 && arn < 16 && MULTIPLE_CONTROLLED_DATA_SPACE(regs))
{
regs->tlb.TLB_ASD(ix) = regs->dat.asd;
/* Ensure that the private bit is percolated to the guest such that LAP is applied correctly */
regs->dat.private = regs->hostregs->dat.private;
/* Build tlb entry of XC dataspace */
regs->dat.asd = regs->hostregs->dat.asd ^ TLB_HOST_ASD;
regs->CR(CR_ALB_OFFSET + arn) = regs->dat.asd;
regs->aea_ar[arn] = CR_ALB_OFFSET + arn;
regs->aea_common[CR_ALB_OFFSET + arn] = (regs->dat.asd & ASD_PRIVATE) == 0;
regs->aea_aleprot[arn] = regs->hostregs->dat.protect & 2;
}
/* Convert host real address to host absolute address */
regs->hostregs->dat.aaddr = aaddr =
APPLY_PREFIXING (regs->hostregs->dat.raddr, regs->hostregs->PX);
apfra = APPLY_PREFIXING(regs->hostregs->dat.rpfra, regs->hostregs->PX);
if(regs->hostregs->dat.aaddr > regs->hostregs->mainlim)
goto vabs_addr_excp;
/* Take into account SIE guests with a 2K page scheme
because the SIE host may be operating with a 4K page
system */
#if defined(FEATURE_2K_STORAGE_KEYS)
if((addr & PAGEFRAME_PAGEMASK) & 0x800)
{
apfra|=0x800;
}
#endif
}
#endif /*defined(_FEATURE_SIE)*/
/* Check protection and set reference and change bits */
regs->dat.storkey = &(STORAGE_KEY(aaddr, regs));
#if defined(_FEATURE_SIE)
/* Do not apply host key access when SIE fetches/stores data */
if (unlikely(SIE_ACTIVE(regs)))
return regs->mainstor + aaddr;
#endif /*defined(_FEATURE_SIE)*/
if (likely(acctype & ACC_READ))
{
/* Program check if fetch protected location */
if (unlikely(ARCH_DEP(is_fetch_protected) (addr, *regs->dat.storkey, akey, regs)))
{
if (SIE_MODE(regs)) regs->hostregs->dat.protect = 0;
goto vabs_prot_excp;
}
/* Set the reference bit in the storage key */
*regs->dat.storkey |= STORKEY_REF;
/* Update accelerated lookup TLB fields */
regs->tlb.storkey[ix] = regs->dat.storkey;
regs->tlb.skey[ix] = *regs->dat.storkey & STORKEY_KEY;
regs->tlb.acc[ix] = ACC_READ;
regs->tlb.main[ix] = NEW_MAINADDR (regs, addr, apfra);
}
else /* if(acctype & (ACC_WRITE|ACC_CHECK)) */
{
/* Program check if store protected location */
if (unlikely(ARCH_DEP(is_store_protected) (addr, *regs->dat.storkey, akey, regs)))
{
if (SIE_MODE(regs)) regs->hostregs->dat.protect = 0;
goto vabs_prot_excp;
}
if (SIE_MODE(regs) && regs->hostregs->dat.protect)
goto vabs_prot_excp;
/* Set the reference and change bits in the storage key */
if (acctype & ACC_WRITE)
*regs->dat.storkey |= (STORKEY_REF | STORKEY_CHANGE);
/* Update accelerated lookup TLB fields */
regs->tlb.storkey[ix] = regs->dat.storkey;
regs->tlb.skey[ix] = *regs->dat.storkey & STORKEY_KEY;
regs->tlb.acc[ix] = (addr >= PSA_SIZE || regs->dat.private)
? (ACC_READ|ACC_CHECK|acctype)
: ACC_READ;
regs->tlb.main[ix] = NEW_MAINADDR (regs, addr, apfra);
#if defined(FEATURE_PER)
if (EN_IC_PER_SA(regs))
{
regs->tlb.acc[ix] = ACC_READ;
if (arn != USE_REAL_ADDR
#if defined(FEATURE_PER2)
&& ( REAL_MODE(®s->psw) ||
ARCH_DEP(check_sa_per2) (arn, acctype, regs)
)
#endif /*defined(FEATURE_PER2)*/
/* Check the range altered enters the SA PER range */
&& PER_RANGE_CHECK2(addr,addr+(len-1),regs->CR(10),regs->CR(11))
)
ON_IC_PER_SA(regs);
}
#endif /*defined(FEATURE_PER)*/
} /* acctype & ACC_WRITE|CHECK */
/* Return mainstor address */
return regs->mainstor + aaddr;
vabs_addr_excp:
regs->program_interrupt (regs, PGM_ADDRESSING_EXCEPTION);
vabs_prot_excp:
#ifdef FEATURE_SUPPRESSION_ON_PROTECTION
regs->TEA = addr & STORAGE_KEY_PAGEMASK;
if (regs->dat.protect && (acctype & (ACC_WRITE|ACC_CHECK)) )
{
regs->TEA |= TEA_PROT_AP;
#if defined(FEATURE_ESAME)
if (regs->dat.protect & 2)
regs->TEA |= TEA_PROT_A;
#endif /*defined(FEATURE_ESAME)*/
}
regs->TEA |= regs->dat.stid;
regs->excarid = (arn > 0 && arn < 16 ? arn : 0);
#endif /*FEATURE_SUPPRESSION_ON_PROTECTION*/
#if defined(_FEATURE_PROTECTION_INTERCEPTION_CONTROL)
if(SIE_MODE(regs) && regs->hostregs->dat.protect)
{
#ifdef FEATURE_SUPPRESSION_ON_PROTECTION
regs->hostregs->TEA = regs->TEA;
regs->hostregs->excarid = regs->excarid;
#endif /*FEATURE_SUPPRESSION_ON_PROTECTION*/
(regs->hostregs->program_interrupt) (regs->hostregs, PGM_PROTECTION_EXCEPTION);
}
else
#endif /*defined(_FEATURE_PROTECTION_INTERCEPTION_CONTROL)*/
regs->program_interrupt (regs, PGM_PROTECTION_EXCEPTION);
vabs_prog_check:
regs->program_interrupt (regs, regs->dat.xcode);
return NULL; /* prevent warning from compiler */
} /* end function ARCH_DEP(logical_to_main_l) */
/* Original logical_to_main() for compatiblity purpose */
_LOGICAL_C_STATIC BYTE *ARCH_DEP(logical_to_main) (VADR addr, int arn,
REGS *regs, int acctype, BYTE akey)
{
return ARCH_DEP(logical_to_main_l)(addr,arn,regs,acctype,akey,1);
}
#endif /*!defined(OPTION_NO_INLINE_LOGICAL) || defined(_DAT_C) */
/* end of DAT.H */
|