Loading...
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 | /* uislib.c * * Copyright � 2010 - 2013 UNISYS CORPORATION * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or * NON INFRINGEMENT. See the GNU General Public License for more * details. */ /* @ALL_INSPECTED */ #define EXPORT_SYMTAB #include <linux/kernel.h> #include <linux/highmem.h> #ifdef CONFIG_MODVERSIONS #include <config/modversions.h> #endif #include <linux/module.h> #include "commontypes.h" #include <linux/version.h> #include "uniklog.h" #include "diagnostics/appos_subsystems.h" #include "uisutils.h" #include "vbuschannel.h" #include <linux/proc_fs.h> #include <linux/uaccess.h> /* for copy_from_user */ #include <linux/ctype.h> /* for toupper */ #include <linux/list.h> #include "sparstop.h" #include "visorchipset.h" #include "chanstub.h" #include "version.h" #include "guestlinuxdebug.h" #define SET_PROC_OWNER(x, y) #define UISLIB_TEST_PROC #define POLLJIFFIES_NORMAL 1 /* Choose whether or not you want to wakeup the request-polling thread * after an IO termination: * this is shorter than using __FILE__ (full path name) in * debug/info/error messages */ #define CURRENT_FILE_PC UISLIB_PC_uislib_c #define __MYFILE__ "uislib.c" /* global function pointers that act as callback functions into virtpcimod */ int (*VirtControlChanFunc)(struct guest_msgs *); static int ProcReadBufferValid; static char *ProcReadBuffer; /* Note this MUST be global, * because the contents must */ static unsigned int chipset_inited; #define WAIT_ON_CALLBACK(handle) \ do { \ if (handle) \ break; \ UIS_THREAD_WAIT; \ } while (1) static struct bus_info *BusListHead; static rwlock_t BusListLock; static int BusListCount; /* number of buses in the list */ static int MaxBusCount; /* maximum number of buses expected */ static U64 PhysicalDataChan; static int PlatformNumber; static struct uisthread_info Incoming_ThreadInfo; static BOOL Incoming_Thread_Started = FALSE; static LIST_HEAD(List_Polling_Device_Channels); static unsigned long long tot_moved_to_tail_cnt; static unsigned long long tot_wait_cnt; static unsigned long long tot_wakeup_cnt; static unsigned long long tot_schedule_cnt; static int en_smart_wakeup = 1; static DEFINE_SEMAPHORE(Lock_Polling_Device_Channels); /* unlocked */ static DECLARE_WAIT_QUEUE_HEAD(Wakeup_Polling_Device_Channels); static int Go_Polling_Device_Channels; static struct proc_dir_entry *uislib_proc_dir; static struct proc_dir_entry *uislib_proc_vbus_dir; static struct proc_dir_entry *vnic_proc_entry; /* Used to be "datachan" */ static struct proc_dir_entry *ctrlchan_proc_entry; static struct proc_dir_entry *pmem_proc_entry; static struct proc_dir_entry *info_proc_entry; static struct proc_dir_entry *switch_proc_entry; static struct proc_dir_entry *extport_proc_entry; static struct proc_dir_entry *platformnumber_proc_entry; static struct proc_dir_entry *bus_proc_entry; static struct proc_dir_entry *dev_proc_entry; static struct proc_dir_entry *chipset_proc_entry; static struct proc_dir_entry *cycles_before_wait_proc_entry; static struct proc_dir_entry *reset_counts_proc_entry; static struct proc_dir_entry *smart_wakeup_proc_entry; static struct proc_dir_entry *disable_proc_entry; #define DIR_PROC_ENTRY "uislib" #define DIR_VBUS_PROC_ENTRY "vbus" #define VNIC_PROC_ENTRY_FN "vnic" /* Used to be "datachan" */ #define CTRLCHAN_PROC_ENTRY_FN "ctrlchan" #define PMEM_PROC_ENTRY_FN "phys_to_virt" #define INFO_PROC_ENTRY_FN "info" #define SWITCH_PROC_ENTRY_FN "switch" #define SWITCH_COUNT_PROC_ENTRY_FN "switch_count" #define EXTPORT_PROC_ENTRY_FN "extport" #define PLATFORMNUMBER_PROC_ENTRY_FN "platform" #define BUS_PROC_ENTRY_FN "bus" #define DEV_PROC_ENTRY_FN "device" #define CHIPSET_PROC_ENTRY_FN "chipset" #define CYCLES_BEFORE_WAIT_PROC_ENTRY_FN "cycles_before_wait" #define RESET_COUNTS_PROC_ENTRY_FN "reset_counts" #define SMART_WAKEUP_PROC_ENTRY_FN "smart_wakeup" #define CALLHOME_PROC_ENTRY_FN "callhome" #define CALLHOME_THROTTLED_PROC_ENTRY_FN "callhome_throttled" #define DISABLE_PROC_ENTRY_FN "switch_state" #ifdef UISLIB_TEST_PROC static struct proc_dir_entry *test_proc_entry; #define TEST_PROC_ENTRY_FN "test" #endif static unsigned long long cycles_before_wait, wait_cycles; /*****************************************************/ /* local functions */ /*****************************************************/ static int proc_info_vbus_show(struct seq_file *m, void *v); static int proc_info_vbus_open(struct inode *inode, struct file *filp) { /* proc_info_vbus_show will grab this from seq_file.private: */ struct bus_info *bus = PDE_DATA(inode); return single_open(filp, proc_info_vbus_show, bus); } static const struct file_operations proc_info_vbus_fops = { .open = proc_info_vbus_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; static ssize_t uislib_proc_read_writeonly(struct file *file, char __user *buffer, size_t count, loff_t *ppos); static ssize_t vnic_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos); static const struct file_operations proc_vnic_fops = { .read = uislib_proc_read_writeonly, .write = vnic_proc_write, }; static ssize_t chipset_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos); static const struct file_operations proc_chipset_fops = { .read = uislib_proc_read_writeonly, .write = chipset_proc_write, }; static ssize_t info_proc_read(struct file *file, char __user *buf, size_t len, loff_t *offset); static const struct file_operations proc_info_fops = { .read = info_proc_read, }; static ssize_t platformnumber_proc_read(struct file *file, char __user *buf, size_t len, loff_t *offset); static const struct file_operations proc_platformnumber_fops = { .read = platformnumber_proc_read, }; static ssize_t cycles_before_wait_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos); static const struct file_operations proc_cycles_before_wait_fops = { .read = uislib_proc_read_writeonly, .write = cycles_before_wait_proc_write, }; static ssize_t reset_counts_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos); static const struct file_operations proc_reset_counts_fops = { .read = uislib_proc_read_writeonly, .write = reset_counts_proc_write, }; static ssize_t smart_wakeup_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos); static const struct file_operations proc_smart_wakeup_fops = { .read = uislib_proc_read_writeonly, .write = smart_wakeup_proc_write, }; static ssize_t test_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos); static const struct file_operations proc_test_fops = { .read = uislib_proc_read_writeonly, .write = test_proc_write, }; static ssize_t bus_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos); static const struct file_operations proc_bus_fops = { .read = uislib_proc_read_writeonly, .write = bus_proc_write, }; static ssize_t dev_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos); static const struct file_operations proc_dev_fops = { .read = uislib_proc_read_writeonly, .write = dev_proc_write, }; static void init_msg_header(CONTROLVM_MESSAGE *msg, U32 id, uint rsp, uint svr) { memset(msg, 0, sizeof(CONTROLVM_MESSAGE)); msg->hdr.Id = id; msg->hdr.Flags.responseExpected = rsp; msg->hdr.Flags.server = svr; } static void create_bus_proc_entries(struct bus_info *bus) { bus->proc_dir = proc_mkdir(bus->name, uislib_proc_vbus_dir); if (!bus->proc_dir) { LOGERR("failed to create /proc/uislib/vbus/%s directory", bus->name); return; } bus->proc_info = proc_create_data("info", 0, bus->proc_dir, &proc_info_vbus_fops, bus); if (!bus->proc_info) { LOGERR("failed to create /proc/uislib/vbus/%s/info", bus->name); remove_proc_entry(bus->name, uislib_proc_vbus_dir); bus->proc_dir = NULL; return; } SET_PROC_OWNER(bus->proc_info, THIS_MODULE); } static __iomem void * init_vbus_channel(U64 channelAddr, U32 channelBytes, int isServer) { void *rc = NULL; void __iomem *pChan = uislib_ioremap_cache(channelAddr, channelBytes); if (!pChan) { LOGERR("CONTROLVM_BUS_CREATE error: ioremap_cache of channelAddr:%Lx for channelBytes:%llu failed", (unsigned long long) channelAddr, (unsigned long long) channelBytes); rc = NULL; goto Away; } if (isServer) { memset_io(pChan, 0, channelBytes); if (!ULTRA_VBUS_CHANNEL_OK_SERVER(channelBytes, NULL)) { ERRDRV("%s channel cannot be used", __func__); uislib_iounmap(pChan); rc = NULL; goto Away; } ULTRA_VBUS_init_channel(pChan, channelBytes); } else { if (!ULTRA_VBUS_CHANNEL_OK_CLIENT(pChan, NULL)) { ERRDRV("%s channel cannot be used", __func__); uislib_iounmap(pChan); rc = NULL; goto Away; } } rc = pChan; Away: return rc; } static int create_bus(CONTROLVM_MESSAGE *msg, char *buf) { U32 busNo, deviceCount; struct bus_info *tmp, *bus; size_t size; if (MaxBusCount == BusListCount) { LOGERR("CONTROLVM_BUS_CREATE Failed: max buses:%d already created\n", MaxBusCount); POSTCODE_LINUX_3(BUS_CREATE_FAILURE_PC, MaxBusCount, POSTCODE_SEVERITY_ERR); return CONTROLVM_RESP_ERROR_MAX_BUSES; } busNo = msg->cmd.createBus.busNo; deviceCount = msg->cmd.createBus.deviceCount; POSTCODE_LINUX_4(BUS_CREATE_ENTRY_PC, busNo, deviceCount, POSTCODE_SEVERITY_INFO); size = sizeof(struct bus_info) + (deviceCount * sizeof(struct device_info *)); bus = kzalloc(size, GFP_ATOMIC); if (!bus) { LOGERR("CONTROLVM_BUS_CREATE Failed: kmalloc for bus failed.\n"); POSTCODE_LINUX_3(BUS_CREATE_FAILURE_PC, busNo, POSTCODE_SEVERITY_ERR); return CONTROLVM_RESP_ERROR_KMALLOC_FAILED; } /* Currently by default, the bus Number is the GuestHandle. * Configure Bus message can override this. */ if (msg->hdr.Flags.testMessage) { /* This implies we're the IOVM so set guest handle to 0... */ bus->guestHandle = 0; bus->busNo = busNo; bus->localVnic = 1; } else bus->busNo = bus->guestHandle = busNo; sprintf(bus->name, "%d", (int) bus->busNo); bus->deviceCount = deviceCount; bus->device = (struct device_info **) ((char *) bus + sizeof(struct bus_info)); bus->busInstGuid = msg->cmd.createBus.busInstGuid; bus->busChannelBytes = 0; bus->pBusChannel = NULL; /* add bus to our bus list - but check for duplicates first */ read_lock(&BusListLock); for (tmp = BusListHead; tmp; tmp = tmp->next) { if (tmp->busNo == bus->busNo) break; } read_unlock(&BusListLock); if (tmp) { /* found a bus already in the list with same busNo - * reject add */ LOGERR("CONTROLVM_BUS_CREATE Failed: bus %d already exists.\n", bus->busNo); POSTCODE_LINUX_3(BUS_CREATE_FAILURE_PC, bus->busNo, POSTCODE_SEVERITY_ERR); kfree(bus); return CONTROLVM_RESP_ERROR_ALREADY_DONE; } if ((msg->cmd.createBus.channelAddr != 0) && (msg->cmd.createBus.channelBytes != 0)) { bus->busChannelBytes = msg->cmd.createBus.channelBytes; bus->pBusChannel = init_vbus_channel(msg->cmd.createBus.channelAddr, msg->cmd.createBus.channelBytes, msg->hdr.Flags.server); } /* the msg is bound for virtpci; send guest_msgs struct to callback */ if (!msg->hdr.Flags.server) { struct guest_msgs cmd; cmd.msgtype = GUEST_ADD_VBUS; cmd.add_vbus.busNo = busNo; cmd.add_vbus.chanptr = bus->pBusChannel; cmd.add_vbus.deviceCount = deviceCount; cmd.add_vbus.busTypeGuid = msg->cmd.createBus.busDataTypeGuid; cmd.add_vbus.busInstGuid = msg->cmd.createBus.busInstGuid; if (!VirtControlChanFunc) { LOGERR("CONTROLVM_BUS_CREATE Failed: virtpci callback not registered."); POSTCODE_LINUX_3(BUS_CREATE_FAILURE_PC, bus->busNo, POSTCODE_SEVERITY_ERR); kfree(bus); return CONTROLVM_RESP_ERROR_VIRTPCI_DRIVER_FAILURE; } if (!VirtControlChanFunc(&cmd)) { LOGERR("CONTROLVM_BUS_CREATE Failed: virtpci GUEST_ADD_VBUS returned error."); POSTCODE_LINUX_3(BUS_CREATE_FAILURE_PC, bus->busNo, POSTCODE_SEVERITY_ERR); kfree(bus); return CONTROLVM_RESP_ERROR_VIRTPCI_DRIVER_CALLBACK_ERROR; } } create_bus_proc_entries(bus); /* add bus at the head of our list */ write_lock(&BusListLock); if (!BusListHead) BusListHead = bus; else { bus->next = BusListHead; BusListHead = bus; } BusListCount++; write_unlock(&BusListLock); POSTCODE_LINUX_3(BUS_CREATE_EXIT_PC, bus->busNo, POSTCODE_SEVERITY_INFO); return CONTROLVM_RESP_SUCCESS; } static int destroy_bus(CONTROLVM_MESSAGE *msg, char *buf) { int i; struct bus_info *bus, *prev = NULL; U32 busNo; busNo = msg->cmd.destroyBus.busNo; /* find and delete the bus */ read_lock(&BusListLock); for (bus = BusListHead; bus; prev = bus, bus = bus->next) { if (bus->busNo == busNo) { /* found the bus - ensure that all device * slots are NULL */ for (i = 0; i < bus->deviceCount; i++) { if (bus->device[i] != NULL) { LOGERR("CONTROLVM_BUS_DESTROY Failed: device %i attached to bus %d.", i, busNo); read_unlock(&BusListLock); return CONTROLVM_RESP_ERROR_BUS_DEVICE_ATTACHED; } } read_unlock(&BusListLock); /* the msg is bound for virtpci; send * guest_msgs struct to callback */ if (!msg->hdr.Flags.server) { struct guest_msgs cmd; cmd.msgtype = GUEST_DEL_VBUS; cmd.del_vbus.busNo = busNo; if (!VirtControlChanFunc) { LOGERR("CONTROLVM_BUS_DESTROY Failed: virtpci callback not registered."); return CONTROLVM_RESP_ERROR_VIRTPCI_DRIVER_FAILURE; } if (!VirtControlChanFunc(&cmd)) { LOGERR("CONTROLVM_BUS_DESTROY Failed: virtpci GUEST_DEL_VBUS returned error."); return CONTROLVM_RESP_ERROR_VIRTPCI_DRIVER_CALLBACK_ERROR; } } /* remove the bus from the list */ write_lock(&BusListLock); if (prev) /* not at head */ prev->next = bus->next; else BusListHead = bus->next; BusListCount--; write_unlock(&BusListLock); break; } } if (!bus) { LOGERR("CONTROLVM_BUS_DESTROY Failed: failed to find bus %d.\n", busNo); read_unlock(&BusListLock); return CONTROLVM_RESP_ERROR_ALREADY_DONE; } if (bus->proc_info) { remove_proc_entry("info", bus->proc_dir); bus->proc_info = NULL; } if (bus->proc_dir) { remove_proc_entry(bus->name, uislib_proc_vbus_dir); bus->proc_dir = NULL; } if (bus->pBusChannel) { uislib_iounmap(bus->pBusChannel); bus->pBusChannel = NULL; } kfree(bus); return CONTROLVM_RESP_SUCCESS; } static int create_device(CONTROLVM_MESSAGE *msg, char *buf) { struct device_info *dev; struct bus_info *bus; U32 busNo, devNo; int result = CONTROLVM_RESP_SUCCESS; U64 minSize = MIN_IO_CHANNEL_SIZE; ReqHandlerInfo_t *pReqHandler; busNo = msg->cmd.createDevice.busNo; devNo = msg->cmd.createDevice.devNo; POSTCODE_LINUX_4(DEVICE_CREATE_ENTRY_PC, devNo, busNo, POSTCODE_SEVERITY_INFO); dev = kzalloc(sizeof(struct device_info), GFP_ATOMIC); if (!dev) { LOGERR("CONTROLVM_DEVICE_CREATE Failed: kmalloc for dev failed.\n"); POSTCODE_LINUX_4(DEVICE_CREATE_FAILURE_PC, devNo, busNo, POSTCODE_SEVERITY_ERR); return CONTROLVM_RESP_ERROR_KMALLOC_FAILED; } dev->channelTypeGuid = msg->cmd.createDevice.dataTypeGuid; dev->intr = msg->cmd.createDevice.intr; dev->channelAddr = msg->cmd.createDevice.channelAddr; dev->busNo = busNo; dev->devNo = devNo; sema_init(&dev->interrupt_callback_lock, 1); /* unlocked */ sprintf(dev->devid, "vbus%u:dev%u", (unsigned) busNo, (unsigned) devNo); /* map the channel memory for the device. */ if (msg->hdr.Flags.testMessage) dev->chanptr = (void __iomem *)__va(dev->channelAddr); else { pReqHandler = ReqHandlerFind(dev->channelTypeGuid); if (pReqHandler) /* generic service handler registered for this * channel */ minSize = pReqHandler->min_channel_bytes; if (minSize > msg->cmd.createDevice.channelBytes) { LOGERR("CONTROLVM_DEVICE_CREATE Failed: channel size is too small, channel size:0x%lx, required size:0x%lx", (ulong) msg->cmd.createDevice.channelBytes, (ulong) minSize); POSTCODE_LINUX_4(DEVICE_CREATE_FAILURE_PC, devNo, busNo, POSTCODE_SEVERITY_ERR); result = CONTROLVM_RESP_ERROR_CHANNEL_SIZE_TOO_SMALL; goto Away; } dev->chanptr = uislib_ioremap_cache(dev->channelAddr, msg->cmd.createDevice.channelBytes); if (!dev->chanptr) { LOGERR("CONTROLVM_DEVICE_CREATE Failed: ioremap_cache of channelAddr:%Lx for channelBytes:%llu failed", dev->channelAddr, msg->cmd.createDevice.channelBytes); result = CONTROLVM_RESP_ERROR_IOREMAP_FAILED; POSTCODE_LINUX_4(DEVICE_CREATE_FAILURE_PC, devNo, busNo, POSTCODE_SEVERITY_ERR); goto Away; } } dev->devInstGuid = msg->cmd.createDevice.devInstGuid; dev->channelBytes = msg->cmd.createDevice.channelBytes; read_lock(&BusListLock); for (bus = BusListHead; bus; bus = bus->next) { if (bus->busNo == busNo) { /* make sure the device number is valid */ if (devNo >= bus->deviceCount) { LOGERR("CONTROLVM_DEVICE_CREATE Failed: device (%d) >= deviceCount (%d).", devNo, bus->deviceCount); result = CONTROLVM_RESP_ERROR_MAX_DEVICES; POSTCODE_LINUX_4(DEVICE_CREATE_FAILURE_PC, devNo, busNo, POSTCODE_SEVERITY_ERR); read_unlock(&BusListLock); goto Away; } /* make sure this device is not already set */ if (bus->device[devNo]) { LOGERR("CONTROLVM_DEVICE_CREATE Failed: device %d is already exists.", devNo); POSTCODE_LINUX_4(DEVICE_CREATE_FAILURE_PC, devNo, busNo, POSTCODE_SEVERITY_ERR); result = CONTROLVM_RESP_ERROR_ALREADY_DONE; read_unlock(&BusListLock); goto Away; } read_unlock(&BusListLock); /* the msg is bound for virtpci; send * guest_msgs struct to callback */ if (!msg->hdr.Flags.server) { struct guest_msgs cmd; if (!memcmp (&dev->channelTypeGuid, &UltraVhbaChannelProtocolGuid, sizeof(GUID))) { WAIT_FOR_VALID_GUID(((CHANNEL_HEADER __iomem *) (dev-> chanptr))-> Type); if (!ULTRA_VHBA_CHANNEL_OK_CLIENT (dev->chanptr, NULL)) { LOGERR("CONTROLVM_DEVICE_CREATE Failed:[CLIENT]VHBA dev %d chan invalid.", devNo); POSTCODE_LINUX_4 (DEVICE_CREATE_FAILURE_PC, devNo, busNo, POSTCODE_SEVERITY_ERR); result = CONTROLVM_RESP_ERROR_CHANNEL_INVALID; goto Away; } cmd.msgtype = GUEST_ADD_VHBA; cmd.add_vhba.chanptr = dev->chanptr; cmd.add_vhba.busNo = busNo; cmd.add_vhba.deviceNo = devNo; cmd.add_vhba.devInstGuid = dev->devInstGuid; cmd.add_vhba.intr = dev->intr; } else if (!memcmp (&dev->channelTypeGuid, &UltraVnicChannelProtocolGuid, sizeof(GUID))) { WAIT_FOR_VALID_GUID(((CHANNEL_HEADER __iomem *) (dev-> chanptr))-> Type); if (!ULTRA_VNIC_CHANNEL_OK_CLIENT (dev->chanptr, NULL)) { LOGERR("CONTROLVM_DEVICE_CREATE Failed: VNIC[CLIENT] dev %d chan invalid.", devNo); POSTCODE_LINUX_4 (DEVICE_CREATE_FAILURE_PC, devNo, busNo, POSTCODE_SEVERITY_ERR); result = CONTROLVM_RESP_ERROR_CHANNEL_INVALID; goto Away; } cmd.msgtype = GUEST_ADD_VNIC; cmd.add_vnic.chanptr = dev->chanptr; cmd.add_vnic.busNo = busNo; cmd.add_vnic.deviceNo = devNo; cmd.add_vnic.devInstGuid = dev->devInstGuid; cmd.add_vhba.intr = dev->intr; } else { LOGERR("CONTROLVM_DEVICE_CREATE Failed: unknown channelTypeGuid.\n"); POSTCODE_LINUX_4 (DEVICE_CREATE_FAILURE_PC, devNo, busNo, POSTCODE_SEVERITY_ERR); result = CONTROLVM_RESP_ERROR_CHANNEL_TYPE_UNKNOWN; goto Away; } if (!VirtControlChanFunc) { LOGERR("CONTROLVM_DEVICE_CREATE Failed: virtpci callback not registered."); POSTCODE_LINUX_4 (DEVICE_CREATE_FAILURE_PC, devNo, busNo, POSTCODE_SEVERITY_ERR); result = CONTROLVM_RESP_ERROR_VIRTPCI_DRIVER_FAILURE; goto Away; } if (!VirtControlChanFunc(&cmd)) { LOGERR("CONTROLVM_DEVICE_CREATE Failed: virtpci GUEST_ADD_[VHBA||VNIC] returned error."); POSTCODE_LINUX_4 (DEVICE_CREATE_FAILURE_PC, devNo, busNo, POSTCODE_SEVERITY_ERR); result = CONTROLVM_RESP_ERROR_VIRTPCI_DRIVER_CALLBACK_ERROR; goto Away; } } bus->device[devNo] = dev; POSTCODE_LINUX_4(DEVICE_CREATE_SUCCESS_PC, devNo, busNo, POSTCODE_SEVERITY_INFO); return CONTROLVM_RESP_SUCCESS; } } read_unlock(&BusListLock); LOGERR("CONTROLVM_DEVICE_CREATE Failed: failed to find bus %d.", busNo); POSTCODE_LINUX_4(DEVICE_CREATE_FAILURE_PC, devNo, busNo, POSTCODE_SEVERITY_ERR); result = CONTROLVM_RESP_ERROR_BUS_INVALID; Away: if (!msg->hdr.Flags.testMessage) { uislib_iounmap(dev->chanptr); dev->chanptr = NULL; } kfree(dev); return result; } static int pause_device(CONTROLVM_MESSAGE *msg) { U32 busNo, devNo; struct bus_info *bus; struct device_info *dev; struct guest_msgs cmd; busNo = msg->cmd.deviceChangeState.busNo; devNo = msg->cmd.deviceChangeState.devNo; read_lock(&BusListLock); for (bus = BusListHead; bus; bus = bus->next) { if (bus->busNo == busNo) { /* make sure the device number is valid */ if (devNo >= bus->deviceCount) { LOGERR("CONTROLVM_DEVICE_CHANGESTATE:pause Failed: device(%d) >= deviceCount(%d).", devNo, bus->deviceCount); read_unlock(&BusListLock); return CONTROLVM_RESP_ERROR_DEVICE_INVALID; } /* make sure this device exists */ dev = bus->device[devNo]; if (!dev) { LOGERR("CONTROLVM_DEVICE_CHANGESTATE:pause Failed: device %d does not exist.", devNo); read_unlock(&BusListLock); return CONTROLVM_RESP_ERROR_ALREADY_DONE; } read_unlock(&BusListLock); /* the msg is bound for virtpci; send * guest_msgs struct to callback */ if (!memcmp (&dev->channelTypeGuid, &UltraVhbaChannelProtocolGuid, sizeof(GUID))) { cmd.msgtype = GUEST_PAUSE_VHBA; cmd.pause_vhba.chanptr = dev->chanptr; } else if (!memcmp (&dev->channelTypeGuid, &UltraVnicChannelProtocolGuid, sizeof(GUID))) { cmd.msgtype = GUEST_PAUSE_VNIC; cmd.pause_vnic.chanptr = dev->chanptr; } else { LOGERR("CONTROLVM_DEVICE_CHANGESTATE:pause Failed: unknown channelTypeGuid.\n"); return CONTROLVM_RESP_ERROR_CHANNEL_TYPE_UNKNOWN; } if (!VirtControlChanFunc) { LOGERR("CONTROLVM_DEVICE_CHANGESTATE Failed: virtpci callback not registered."); return CONTROLVM_RESP_ERROR_VIRTPCI_DRIVER_FAILURE; } if (!VirtControlChanFunc(&cmd)) { LOGERR("CONTROLVM_DEVICE_CHANGESTATE:pause Failed: virtpci GUEST_PAUSE_[VHBA||VNIC] returned error."); return CONTROLVM_RESP_ERROR_VIRTPCI_DRIVER_CALLBACK_ERROR; } break; } } if (!bus) { LOGERR("CONTROLVM_DEVICE_CHANGESTATE:pause Failed: bus %d does not exist", busNo); read_unlock(&BusListLock); return CONTROLVM_RESP_ERROR_BUS_INVALID; } return CONTROLVM_RESP_SUCCESS; } static int resume_device(CONTROLVM_MESSAGE *msg) { U32 busNo, devNo; struct bus_info *bus; struct device_info *dev; struct guest_msgs cmd; busNo = msg->cmd.deviceChangeState.busNo; devNo = msg->cmd.deviceChangeState.devNo; read_lock(&BusListLock); for (bus = BusListHead; bus; bus = bus->next) { if (bus->busNo == busNo) { /* make sure the device number is valid */ if (devNo >= bus->deviceCount) { LOGERR("CONTROLVM_DEVICE_CHANGESTATE:resume Failed: device(%d) >= deviceCount(%d).", devNo, bus->deviceCount); read_unlock(&BusListLock); return CONTROLVM_RESP_ERROR_DEVICE_INVALID; } /* make sure this device exists */ dev = bus->device[devNo]; if (!dev) { LOGERR("CONTROLVM_DEVICE_CHANGESTATE:resume Failed: device %d does not exist.", devNo); read_unlock(&BusListLock); return CONTROLVM_RESP_ERROR_ALREADY_DONE; } read_unlock(&BusListLock); /* the msg is bound for virtpci; send * guest_msgs struct to callback */ if (!memcmp(&dev->channelTypeGuid, &UltraVhbaChannelProtocolGuid, sizeof(GUID))) { cmd.msgtype = GUEST_RESUME_VHBA; cmd.resume_vhba.chanptr = dev->chanptr; } else if (!memcmp(&dev->channelTypeGuid, &UltraVnicChannelProtocolGuid, sizeof(GUID))) { cmd.msgtype = GUEST_RESUME_VNIC; cmd.resume_vnic.chanptr = dev->chanptr; } else { LOGERR("CONTROLVM_DEVICE_CHANGESTATE:resume Failed: unknown channelTypeGuid.\n"); return CONTROLVM_RESP_ERROR_CHANNEL_TYPE_UNKNOWN; } if (!VirtControlChanFunc) { LOGERR("CONTROLVM_DEVICE_CHANGESTATE Failed: virtpci callback not registered."); return CONTROLVM_RESP_ERROR_VIRTPCI_DRIVER_FAILURE; } if (!VirtControlChanFunc(&cmd)) { LOGERR("CONTROLVM_DEVICE_CHANGESTATE:resume Failed: virtpci GUEST_RESUME_[VHBA||VNIC] returned error."); return CONTROLVM_RESP_ERROR_VIRTPCI_DRIVER_CALLBACK_ERROR; } break; } } if (!bus) { LOGERR("CONTROLVM_DEVICE_CHANGESTATE:resume Failed: bus %d does not exist", busNo); read_unlock(&BusListLock); return CONTROLVM_RESP_ERROR_BUS_INVALID; } return CONTROLVM_RESP_SUCCESS; } static int destroy_device(CONTROLVM_MESSAGE *msg, char *buf) { U32 busNo, devNo; struct bus_info *bus; struct device_info *dev; struct guest_msgs cmd; busNo = msg->cmd.destroyDevice.busNo; devNo = msg->cmd.destroyDevice.devNo; read_lock(&BusListLock); LOGINF("destroy_device called for busNo=%u, devNo=%u", busNo, devNo); for (bus = BusListHead; bus; bus = bus->next) { if (bus->busNo == busNo) { /* make sure the device number is valid */ if (devNo >= bus->deviceCount) { LOGERR("CONTROLVM_DEVICE_DESTORY Failed: device(%d) >= deviceCount(%d).", devNo, bus->deviceCount); read_unlock(&BusListLock); return CONTROLVM_RESP_ERROR_DEVICE_INVALID; } /* make sure this device exists */ dev = bus->device[devNo]; if (!dev) { LOGERR("CONTROLVM_DEVICE_DESTROY Failed: device %d does not exist.", devNo); read_unlock(&BusListLock); return CONTROLVM_RESP_ERROR_ALREADY_DONE; } read_unlock(&BusListLock); /* the msg is bound for virtpci; send * guest_msgs struct to callback */ if (!memcmp (&dev->channelTypeGuid, &UltraVhbaChannelProtocolGuid, sizeof(GUID))) { cmd.msgtype = GUEST_DEL_VHBA; cmd.del_vhba.chanptr = dev->chanptr; } else if (!memcmp (&dev->channelTypeGuid, &UltraVnicChannelProtocolGuid, sizeof(GUID))) { cmd.msgtype = GUEST_DEL_VNIC; cmd.del_vnic.chanptr = dev->chanptr; } else { LOGERR("CONTROLVM_DEVICE_DESTROY Failed: unknown channelTypeGuid.\n"); return CONTROLVM_RESP_ERROR_CHANNEL_TYPE_UNKNOWN; } if (!VirtControlChanFunc) { LOGERR("CONTROLVM_DEVICE_DESTORY Failed: virtpci callback not registered."); return CONTROLVM_RESP_ERROR_VIRTPCI_DRIVER_FAILURE; } if (!VirtControlChanFunc(&cmd)) { LOGERR("CONTROLVM_DEVICE_DESTROY Failed: virtpci GUEST_DEL_[VHBA||VNIC] returned error."); return CONTROLVM_RESP_ERROR_VIRTPCI_DRIVER_CALLBACK_ERROR; } /* you must disable channel interrupts BEFORE you unmap the channel, * because if you unmap first, there may still be some activity going * on which accesses the channel and you will get a "unable to handle * kernel paging request" */ if (dev->polling) { LOGINF("calling uislib_disable_channel_interrupts"); uislib_disable_channel_interrupts(busNo, devNo); } /* unmap the channel memory for the device. */ if (!msg->hdr.Flags.testMessage) { LOGINF("destroy_device, doing iounmap"); uislib_iounmap(dev->chanptr); } kfree(dev); bus->device[devNo] = NULL; break; } } if (!bus) { LOGERR("CONTROLVM_DEVICE_DESTROY Failed: bus %d does not exist", busNo); read_unlock(&BusListLock); return CONTROLVM_RESP_ERROR_BUS_INVALID; } return CONTROLVM_RESP_SUCCESS; } static int init_chipset(CONTROLVM_MESSAGE *msg, char *buf) { POSTCODE_LINUX_2(CHIPSET_INIT_ENTRY_PC, POSTCODE_SEVERITY_INFO); MaxBusCount = msg->cmd.initChipset.busCount; PlatformNumber = msg->cmd.initChipset.platformNumber; PhysicalDataChan = 0; /* We need to make sure we have our functions registered * before processing messages. If we are a test vehicle the * testMessage for init_chipset will be set. We can ignore the * waits for the callbacks, since this will be manually entered * from a user. If no testMessage is set, we will wait for the * functions. */ if (!msg->hdr.Flags.testMessage) WAIT_ON_CALLBACK(VirtControlChanFunc); chipset_inited = 1; POSTCODE_LINUX_2(CHIPSET_INIT_EXIT_PC, POSTCODE_SEVERITY_INFO); return CONTROLVM_RESP_SUCCESS; } static int stop_chipset(CONTROLVM_MESSAGE *msg, char *buf) { /* Check that all buses and switches have been torn down and * destroyed. */ if (BusListHead) { /* Buses still exist. */ LOGERR("CONTROLVM_CHIPSET_STOP: BusListHead is not NULL"); return CONTROLVM_RESP_ERROR_CHIPSET_STOP_FAILED_BUS; } if (BusListCount) { /* BusListHead is NULL, but BusListCount != 0 */ LOGERR("CONTROLVM_CHIPSET_STOP: BusListCount != 0"); return CONTROLVM_RESP_ERROR_CHIPSET_STOP_FAILED_BUS; } /* Buses are shut down. */ return visorchipset_chipset_notready(); } static int delete_bus_glue(U32 busNo) { CONTROLVM_MESSAGE msg; init_msg_header(&msg, CONTROLVM_BUS_DESTROY, 0, 0); msg.cmd.destroyBus.busNo = busNo; if (destroy_bus(&msg, NULL) != CONTROLVM_RESP_SUCCESS) { LOGERR("destroy_bus failed. busNo=0x%x\n", busNo); return 0; } return 1; } static int delete_device_glue(U32 busNo, U32 devNo) { CONTROLVM_MESSAGE msg; init_msg_header(&msg, CONTROLVM_DEVICE_DESTROY, 0, 0); msg.cmd.destroyDevice.busNo = busNo; msg.cmd.destroyDevice.devNo = devNo; if (destroy_device(&msg, NULL) != CONTROLVM_RESP_SUCCESS) { LOGERR("destroy_device failed. busNo=0x%x devNo=0x%x\n", busNo, devNo); return 0; } return 1; } int uislib_client_inject_add_bus(U32 busNo, GUID instGuid, U64 channelAddr, ulong nChannelBytes) { CONTROLVM_MESSAGE msg; LOGINF("enter busNo=0x%x\n", busNo); /* step 0: init the chipset */ POSTCODE_LINUX_3(CHIPSET_INIT_ENTRY_PC, busNo, POSTCODE_SEVERITY_INFO); if (!chipset_inited) { /* step: initialize the chipset */ init_msg_header(&msg, CONTROLVM_CHIPSET_INIT, 0, 0); /* this change is needed so that console will come up * OK even when the bus 0 create comes in late. If the * bus 0 create is the first create, then the add_vnic * will work fine, but if the bus 0 create arrives * after number 4, then the add_vnic will fail, and the * ultraboot will fail. */ msg.cmd.initChipset.busCount = 23; msg.cmd.initChipset.switchCount = 0; if (init_chipset(&msg, NULL) != CONTROLVM_RESP_SUCCESS) { LOGERR("init_chipset failed.\n"); return 0; } LOGINF("chipset initialized\n"); POSTCODE_LINUX_3(CHIPSET_INIT_EXIT_PC, busNo, POSTCODE_SEVERITY_INFO); } /* step 1: create a bus */ POSTCODE_LINUX_3(BUS_CREATE_ENTRY_PC, busNo, POSTCODE_SEVERITY_WARNING); init_msg_header(&msg, CONTROLVM_BUS_CREATE, 0, 0); msg.cmd.createBus.busNo = busNo; msg.cmd.createBus.deviceCount = 23; /* devNo+1; */ msg.cmd.createBus.channelAddr = channelAddr; msg.cmd.createBus.channelBytes = nChannelBytes; if (create_bus(&msg, NULL) != CONTROLVM_RESP_SUCCESS) { LOGERR("create_bus failed.\n"); POSTCODE_LINUX_3(BUS_CREATE_FAILURE_PC, busNo, POSTCODE_SEVERITY_ERR); return 0; } POSTCODE_LINUX_3(BUS_CREATE_EXIT_PC, busNo, POSTCODE_SEVERITY_INFO); return 1; } EXPORT_SYMBOL_GPL(uislib_client_inject_add_bus); int uislib_client_inject_del_bus(U32 busNo) { return delete_bus_glue(busNo); } EXPORT_SYMBOL_GPL(uislib_client_inject_del_bus); int uislib_client_inject_pause_vhba(U32 busNo, U32 devNo) { CONTROLVM_MESSAGE msg; int rc; init_msg_header(&msg, CONTROLVM_DEVICE_CHANGESTATE, 0, 0); msg.cmd.deviceChangeState.busNo = busNo; msg.cmd.deviceChangeState.devNo = devNo; msg.cmd.deviceChangeState.state = SegmentStateStandby; rc = pause_device(&msg); if (rc != CONTROLVM_RESP_SUCCESS) { LOGERR("VHBA pause_device failed. busNo=0x%x devNo=0x%x\n", busNo, devNo); return rc; } return 0; } EXPORT_SYMBOL_GPL(uislib_client_inject_pause_vhba); int uislib_client_inject_resume_vhba(U32 busNo, U32 devNo) { CONTROLVM_MESSAGE msg; int rc; init_msg_header(&msg, CONTROLVM_DEVICE_CHANGESTATE, 0, 0); msg.cmd.deviceChangeState.busNo = busNo; msg.cmd.deviceChangeState.devNo = devNo; msg.cmd.deviceChangeState.state = SegmentStateRunning; rc = resume_device(&msg); if (rc != CONTROLVM_RESP_SUCCESS) { LOGERR("VHBA resume_device failed. busNo=0x%x devNo=0x%x\n", busNo, devNo); return rc; } return 0; } EXPORT_SYMBOL_GPL(uislib_client_inject_resume_vhba); int uislib_client_inject_add_vhba(U32 busNo, U32 devNo, U64 phys_chan_addr, U32 chan_bytes, int is_test_addr, GUID instGuid, struct InterruptInfo *intr) { CONTROLVM_MESSAGE msg; LOGINF(" enter busNo=0x%x devNo=0x%x\n", busNo, devNo); /* chipset init'ed with bus bus has been previously created - * Verify it still exists step 2: create the VHBA device on the * bus */ POSTCODE_LINUX_4(VHBA_CREATE_ENTRY_PC, devNo, busNo, POSTCODE_SEVERITY_INFO); init_msg_header(&msg, CONTROLVM_DEVICE_CREATE, 0, 0); if (is_test_addr) /* signify that the physical channel address does NOT * need to be ioremap()ed */ msg.hdr.Flags.testMessage = 1; msg.cmd.createDevice.busNo = busNo; msg.cmd.createDevice.devNo = devNo; msg.cmd.createDevice.devInstGuid = instGuid; if (intr) msg.cmd.createDevice.intr = *intr; else memset(&msg.cmd.createDevice.intr, 0, sizeof(struct InterruptInfo)); msg.cmd.createDevice.channelAddr = phys_chan_addr; if (chan_bytes < MIN_IO_CHANNEL_SIZE) { LOGERR("wrong channel size.chan_bytes = 0x%x IO_CHANNEL_SIZE= 0x%x\n", chan_bytes, (unsigned int) MIN_IO_CHANNEL_SIZE); POSTCODE_LINUX_4(VHBA_CREATE_FAILURE_PC, chan_bytes, MIN_IO_CHANNEL_SIZE, POSTCODE_SEVERITY_ERR); return 0; } msg.cmd.createDevice.channelBytes = chan_bytes; msg.cmd.createDevice.dataTypeGuid = UltraVhbaChannelProtocolGuid; if (create_device(&msg, NULL) != CONTROLVM_RESP_SUCCESS) { LOGERR("VHBA create_device failed.\n"); POSTCODE_LINUX_4(VHBA_CREATE_FAILURE_PC, devNo, busNo, POSTCODE_SEVERITY_ERR); return 0; } POSTCODE_LINUX_4(VHBA_CREATE_SUCCESS_PC, devNo, busNo, POSTCODE_SEVERITY_INFO); return 1; } EXPORT_SYMBOL_GPL(uislib_client_inject_add_vhba); int uislib_client_inject_del_vhba(U32 busNo, U32 devNo) { return delete_device_glue(busNo, devNo); } EXPORT_SYMBOL_GPL(uislib_client_inject_del_vhba); int uislib_client_inject_add_vnic(U32 busNo, U32 devNo, U64 phys_chan_addr, U32 chan_bytes, int is_test_addr, GUID instGuid, struct InterruptInfo *intr) { CONTROLVM_MESSAGE msg; LOGINF(" enter busNo=0x%x devNo=0x%x\n", busNo, devNo); /* chipset init'ed with bus bus has been previously created - * Verify it still exists step 2: create the VNIC device on the * bus */ POSTCODE_LINUX_4(VNIC_CREATE_ENTRY_PC, devNo, busNo, POSTCODE_SEVERITY_INFO); init_msg_header(&msg, CONTROLVM_DEVICE_CREATE, 0, 0); if (is_test_addr) /* signify that the physical channel address does NOT * need to be ioremap()ed */ msg.hdr.Flags.testMessage = 1; msg.cmd.createDevice.busNo = busNo; msg.cmd.createDevice.devNo = devNo; msg.cmd.createDevice.devInstGuid = instGuid; if (intr) msg.cmd.createDevice.intr = *intr; else memset(&msg.cmd.createDevice.intr, 0, sizeof(struct InterruptInfo)); msg.cmd.createDevice.channelAddr = phys_chan_addr; if (chan_bytes < MIN_IO_CHANNEL_SIZE) { LOGERR("wrong channel size.chan_bytes = 0x%x IO_CHANNEL_SIZE= 0x%x\n", chan_bytes, (unsigned int) MIN_IO_CHANNEL_SIZE); POSTCODE_LINUX_4(VNIC_CREATE_FAILURE_PC, chan_bytes, MIN_IO_CHANNEL_SIZE, POSTCODE_SEVERITY_ERR); return 0; } msg.cmd.createDevice.channelBytes = chan_bytes; msg.cmd.createDevice.dataTypeGuid = UltraVnicChannelProtocolGuid; if (create_device(&msg, NULL) != CONTROLVM_RESP_SUCCESS) { LOGERR("VNIC create_device failed.\n"); POSTCODE_LINUX_4(VNIC_CREATE_FAILURE_PC, devNo, busNo, POSTCODE_SEVERITY_ERR); return 0; } POSTCODE_LINUX_4(VNIC_CREATE_SUCCESS_PC, devNo, busNo, POSTCODE_SEVERITY_INFO); return 1; } EXPORT_SYMBOL_GPL(uislib_client_inject_add_vnic); int uislib_client_inject_pause_vnic(U32 busNo, U32 devNo) { CONTROLVM_MESSAGE msg; int rc; init_msg_header(&msg, CONTROLVM_DEVICE_CHANGESTATE, 0, 0); msg.cmd.deviceChangeState.busNo = busNo; msg.cmd.deviceChangeState.devNo = devNo; msg.cmd.deviceChangeState.state = SegmentStateStandby; rc = pause_device(&msg); if (rc != CONTROLVM_RESP_SUCCESS) { LOGERR("VNIC pause_device failed. busNo=0x%x devNo=0x%x\n", busNo, devNo); return -1; } return 0; } EXPORT_SYMBOL_GPL(uislib_client_inject_pause_vnic); int uislib_client_inject_resume_vnic(U32 busNo, U32 devNo) { CONTROLVM_MESSAGE msg; int rc; init_msg_header(&msg, CONTROLVM_DEVICE_CHANGESTATE, 0, 0); msg.cmd.deviceChangeState.busNo = busNo; msg.cmd.deviceChangeState.devNo = devNo; msg.cmd.deviceChangeState.state = SegmentStateRunning; rc = resume_device(&msg); if (rc != CONTROLVM_RESP_SUCCESS) { LOGERR("VNIC resume_device failed. busNo=0x%x devNo=0x%x\n", busNo, devNo); return -1; } return 0; } EXPORT_SYMBOL_GPL(uislib_client_inject_resume_vnic); int uislib_client_inject_del_vnic(U32 busNo, U32 devNo) { return delete_device_glue(busNo, devNo); } EXPORT_SYMBOL_GPL(uislib_client_inject_del_vnic); static int uislib_client_add_vnic(U32 busNo) { BOOL busCreated = FALSE; int devNo = 0; /* Default to 0, since only one device * will be created for this bus... */ GUID dummyGuid = GUID0; CONTROLVM_MESSAGE msg; init_msg_header(&msg, CONTROLVM_BUS_CREATE, 0, 0); msg.hdr.Flags.testMessage = 1; msg.cmd.createBus.busNo = busNo; msg.cmd.createBus.deviceCount = 4; msg.cmd.createBus.channelAddr = 0; msg.cmd.createBus.channelBytes = 0; if (create_bus(&msg, NULL) != CONTROLVM_RESP_SUCCESS) { LOGERR("client create_bus failed"); return 0; } busCreated = TRUE; init_msg_header(&msg, CONTROLVM_DEVICE_CREATE, 0, 0); msg.hdr.Flags.testMessage = 1; msg.cmd.createDevice.busNo = busNo; msg.cmd.createDevice.devNo = devNo; msg.cmd.createDevice.devInstGuid = dummyGuid; memset(&msg.cmd.createDevice.intr, 0, sizeof(struct InterruptInfo)); msg.cmd.createDevice.channelAddr = PhysicalDataChan; msg.cmd.createDevice.channelBytes = MIN_IO_CHANNEL_SIZE; msg.cmd.createDevice.dataTypeGuid = UltraVnicChannelProtocolGuid; if (create_device(&msg, NULL) != CONTROLVM_RESP_SUCCESS) { LOGERR("client create_device failed"); goto AwayCleanup; } return 1; AwayCleanup: if (busCreated) { init_msg_header(&msg, CONTROLVM_BUS_DESTROY, 0, 0); msg.hdr.Flags.testMessage = 1; msg.cmd.destroyBus.busNo = busNo; if (destroy_bus(&msg, NULL) != CONTROLVM_RESP_SUCCESS) LOGERR("client destroy_bus failed.\n"); } return 0; } /* end uislib_client_add_vnic */ EXPORT_SYMBOL_GPL(uislib_client_add_vnic); static int uislib_client_delete_vnic(U32 busNo) { int devNo = 0; /* Default to 0, since only one device * will be created for this bus... */ CONTROLVM_MESSAGE msg; init_msg_header(&msg, CONTROLVM_DEVICE_DESTROY, 0, 0); msg.hdr.Flags.testMessage = 1; msg.cmd.destroyDevice.busNo = busNo; msg.cmd.destroyDevice.devNo = devNo; if (destroy_device(&msg, NULL) != CONTROLVM_RESP_SUCCESS) { /* Don't error exit - try to see if bus can be destroyed... */ LOGERR("client destroy_device failed.\n"); } init_msg_header(&msg, CONTROLVM_BUS_DESTROY, 0, 0); msg.hdr.Flags.testMessage = 1; msg.cmd.destroyBus.busNo = busNo; if (destroy_bus(&msg, NULL) != CONTROLVM_RESP_SUCCESS) LOGERR("client destroy_bus failed.\n"); return 1; } EXPORT_SYMBOL_GPL(uislib_client_delete_vnic); /* end client_delete_vnic */ void * uislib_cache_alloc(struct kmem_cache *cur_pool, char *fn, int ln) { /* __GFP_NORETRY means "ok to fail", meaning kmalloc() can * return NULL. If you do NOT specify __GFP_NORETRY, Linux * will go to extreme measures to get memory for you (like, * invoke oom killer), which will probably cripple the system. */ void *p = kmem_cache_alloc(cur_pool, GFP_ATOMIC | __GFP_NORETRY); if (p == NULL) { LOGERR("uislib_malloc failed to alloc uiscmdrsp @%s:%d", fn, ln); return NULL; } return p; } EXPORT_SYMBOL_GPL(uislib_cache_alloc); void uislib_cache_free(struct kmem_cache *cur_pool, void *p, char *fn, int ln) { if (p == NULL) { LOGERR("uislib_free NULL pointer @%s:%d", fn, ln); return; } kmem_cache_free(cur_pool, p); } EXPORT_SYMBOL_GPL(uislib_cache_free); /*****************************************************/ /* proc filesystem callback functions */ /*****************************************************/ static ssize_t vnic_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) { int action = 0xffff, busNo = 0, i, result = 0; char buf[4]; char direction; /* GUID guid; */ if (count >= ARRAY_SIZE(buf)) return -EINVAL; if (copy_from_user(buf, buffer, count)) { LOGERR("echo > /proc/uislib/vnic copy_from_user ****FAILED.\n"); return -EFAULT; } i = sscanf(buf, "%d%c", &action, &direction); if (i != 2) { LOGERR("unable to parse vnic proc parameters.\n"); return -EFAULT; } if ((direction != '-') && (direction != '+')) { LOGERR("unable to determine whether to add or delete vnic\n"); return -EFAULT; } /* if (i < 1), i.e., if we didn't even read the action field, * then action will default to 0xffff and the code below will * fall through the switch and print usage. */ switch (action) { case 0: /* call client method... */ busNo = 0; /* All client drivers use bus value of 0... */ if (direction == '+') result = uislib_client_add_vnic(busNo); else result = uislib_client_delete_vnic(busNo); if (!result) { LOGERR("echo 0%c > /proc/uislib/vnic failed (client end)", direction); return -EFAULT; } return count; default: break; } LOGERR("USAGE: echo <action><direction (up/down)> > /proc/uislib/vnic"); LOGERR(" "); LOGERR("Client Syntax"); LOGERR("-------------"); LOGERR("0+ ==> add vnic"); LOGERR("0- ==> delete vnic"); LOGERR(" "); return count; } /* end vnic_proc_write */ static ssize_t chipset_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) { int i, action = 0xffff; char buf[4]; CONTROLVM_MESSAGE msg; if (count >= ARRAY_SIZE(buf)) return -EINVAL; memset(&msg, 0, sizeof(CONTROLVM_MESSAGE)); if (copy_from_user(buf, buffer, count)) { LOGERR("copy_from_user ****FAILED.\n"); return -EFAULT; } if (chipset_inited) { LOGINF("Chipset already initialized\n"); return -EFAULT; } i = sscanf(buf, "%x", &action); /* if (i < 1), i.e., if we didn't even read the action field, * then action will default to 0xffff and the code below will * fall through the switch and print usage. */ switch (action) { case 1: /* GUEST */ /* step: initialize the chipset */ init_msg_header(&msg, CONTROLVM_CHIPSET_INIT, 0, 0); msg.hdr.Flags.testMessage = 0; msg.cmd.initChipset.busCount = 23; msg.cmd.initChipset.switchCount = 23; if (init_chipset(&msg, NULL) != CONTROLVM_RESP_SUCCESS) { LOGERR("init_chipset failed.\n"); return 0; } return 1; case 2: /* BOTH */ init_msg_header(&msg, CONTROLVM_CHIPSET_INIT, 0, 0); msg.hdr.Flags.testMessage = 1; msg.cmd.initChipset.busCount = 23; msg.cmd.initChipset.switchCount = 23; if (init_chipset(&msg, NULL) != CONTROLVM_RESP_SUCCESS) { LOGERR("init_chipset failed.\n"); return 0; } return 1; default: break; } LOGERR("usage: 1 ==> init_chipset client\n"); LOGERR("usage: 2 ==> init_chipset test\n"); return -EFAULT; } #define PLINE(...) uisutil_add_proc_line_ex(&tot, buff, \ buff_len, __VA_ARGS__) static int info_proc_read_helper(char **buff, int *buff_len) { int i, tot = 0; struct bus_info *bus; if (PLINE("\nBuses:\n") < 0) goto err_done; read_lock(&BusListLock); for (bus = BusListHead; bus; bus = bus->next) { if (PLINE(" bus=0x%p, busNo=%d, deviceCount=%d\n", bus, bus->busNo, bus->deviceCount) < 0) goto err_done_unlock; if (PLINE(" Devices:\n") < 0) goto err_done_unlock; for (i = 0; i < bus->deviceCount; i++) { if (bus->device[i]) { if (PLINE(" busNo %d, device[%i]: 0x%p, chanptr=0x%p, swtch=0x%p\n", bus->busNo, i, bus->device[i], bus->device[i]->chanptr, bus->device[i]->swtch) < 0) goto err_done_unlock; if (PLINE(" first_busy_cnt=%llu, moved_to_tail_cnt=%llu, last_on_list_cnt=%llu\n", bus->device[i]->first_busy_cnt, bus->device[i]->moved_to_tail_cnt, bus->device[i]->last_on_list_cnt) < 0) goto err_done_unlock; } } } read_unlock(&BusListLock); if (PLINE("UisUtils_Registered_Services: %d\n", atomic_read(&UisUtils_Registered_Services)) < 0) goto err_done; if (PLINE("cycles_before_wait %llu wait_cycles:%llu\n", cycles_before_wait, wait_cycles) < 0) goto err_done; if (PLINE("tot_wakeup_cnt %llu:tot_wait_cnt %llu:tot_schedule_cnt %llu\n", tot_wakeup_cnt, tot_wait_cnt, tot_schedule_cnt) < 0) goto err_done; if (PLINE("en_smart_wakeup %d\n", en_smart_wakeup) < 0) goto err_done; if (PLINE("tot_moved_to_tail_cnt %llu\n", tot_moved_to_tail_cnt) < 0) goto err_done; return tot; err_done_unlock: read_unlock(&BusListLock); err_done: return -1; } static ssize_t info_proc_read(struct file *file, char __user *buf, size_t len, loff_t *offset) { char *temp; int totalBytes = 0; int remaining_bytes = PROC_READ_BUFFER_SIZE; /* *start = buf; */ if (ProcReadBuffer == NULL) { DBGINF("ProcReadBuffer == NULL; allocating buffer.\n."); ProcReadBuffer = vmalloc(PROC_READ_BUFFER_SIZE); if (ProcReadBuffer == NULL) { LOGERR("failed to allocate buffer to provide proc data.\n"); return -ENOMEM; } } temp = ProcReadBuffer; if ((*offset == 0) || (!ProcReadBufferValid)) { DBGINF("calling info_proc_read_helper.\n"); /* if the read fails, then -1 will be returned */ totalBytes = info_proc_read_helper(&temp, &remaining_bytes); ProcReadBufferValid = 1; } else totalBytes = strlen(ProcReadBuffer); return simple_read_from_buffer(buf, len, offset, ProcReadBuffer, totalBytes); } static ssize_t platformnumber_proc_read(struct file *file, char __user *buf, size_t len, loff_t *offset) { int length = 0; char *vbuf; loff_t pos = *offset; if (pos < 0) return -EINVAL; if (pos > 0 || !len) return 0; vbuf = kzalloc(len, GFP_KERNEL); if (!vbuf) return -ENOMEM; length = sprintf(vbuf, "%d\n", PlatformNumber); if (copy_to_user(buf, vbuf, length)) { kfree(vbuf); return -EFAULT; } kfree(vbuf); *offset += length; return length; } #ifdef UISLIB_TEST_PROC /* proc/uislib/vbus/<x>/info */ static int proc_info_vbus_show(struct seq_file *m, void *v) { struct bus_info *bus = m->private; int i, devInfoCount, x; char buf[999]; if (bus == NULL) return 0; seq_printf(m, "Client device / client driver info for %s partition (vbus #%d):\n", bus->partitionName, bus->busNo); if ((bus->busChannelBytes == 0) || (bus->pBusChannel == NULL)) return 0; devInfoCount = (bus->busChannelBytes - sizeof(ULTRA_VBUS_CHANNEL_PROTOCOL)) / sizeof(ULTRA_VBUS_DEVICEINFO); x = VBUSCHANNEL_devInfoToStringBuffer(&bus->pBusChannel->ChpInfo, buf, sizeof(buf) - 1, -1); buf[x] = '\0'; seq_printf(m, "%s", buf); x = VBUSCHANNEL_devInfoToStringBuffer(&bus->pBusChannel->BusInfo, buf, sizeof(buf) - 1, -1); buf[x] = '\0'; seq_printf(m, "%s", buf); for (i = 0; i < devInfoCount; i++) { x = VBUSCHANNEL_devInfoToStringBuffer(&bus->pBusChannel-> DevInfo[i], buf, sizeof(buf) - 1, i); if (x > 0) { buf[x] = '\0'; seq_printf(m, "%s", buf); } } return 0; } static ssize_t bus_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) { int server_flag = 0; int i, action = 0xffff, result; char buf[16]; CONTROLVM_MESSAGE msg; U32 busNo, deviceCount; if (count >= ARRAY_SIZE(buf)) return -EINVAL; memset(&msg, 0, sizeof(CONTROLVM_MESSAGE)); if (copy_from_user(buf, buffer, count)) { LOGERR("echo > /proc/uislib/bus: copy_from_user ****FAILED."); return -EFAULT; } i = sscanf(buf, "%x-%d-%d", &action, &busNo, &deviceCount); /* if (i < 1), i.e., if we didn't even read the action field, * then action will default to 0xffff and the code below will * fall through the switch and print usage. */ switch (action) { case 0: /* destroy a bus */ if (i != 2) break; init_msg_header(&msg, CONTROLVM_BUS_DESTROY, 0, server_flag); msg.cmd.destroyBus.busNo = busNo; result = destroy_bus(&msg, NULL); if (result != CONTROLVM_RESP_SUCCESS) { LOGERR("echo 0-%d > /proc/uislib/bus {CONTROLVM_BUS_DESTROY Failed} Result(%d)", busNo, result); return -EFAULT; } return count; case 1: /* create a bus */ if (i != 3) break; init_msg_header(&msg, CONTROLVM_BUS_CREATE, 0, server_flag); msg.cmd.createBus.busNo = busNo; msg.cmd.createBus.deviceCount = deviceCount; result = create_bus(&msg, NULL); if (result != CONTROLVM_RESP_SUCCESS) { LOGERR("echo 1-%d-%d > /proc/uislib/bus {CONTROLVM_BUS_CREATE Failed} Result(%d)", busNo, deviceCount, result); return -EFAULT; } return count; default: break; } LOGERR("USAGE: echo <action>-<busNo>... > /proc/uislib/bus"); LOGERR(" "); LOGERR("Destruct Syntax ControlVM Message Id"); LOGERR("--------------- ---------------------"); LOGERR("0-<busNo> ==> CONTROLVM_BUS_DESTROY"); LOGERR(" "); LOGERR("Construct Syntax ControlVM Message Id"); LOGERR("----------------------- -------------------- "); LOGERR("1-<busNo>-<deviceCount> ==> CONTROLVM_BUS_CREATE"); return -EFAULT; } static ssize_t uislib_proc_read_writeonly(struct file *file, char __user *buffer, size_t count, loff_t *ppos) { return 0; } static ssize_t dev_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) { int server_flag = 0; CONTROLVM_MESSAGE msg; U32 busNo, devNo; char buf[32]; unsigned int chanptr; int type, i, action = 0xffff, result; if (count >= ARRAY_SIZE(buf)) return -EINVAL; if (copy_from_user(buf, buffer, count)) { LOGERR("echo > /proc/uislib/device: copy_from_user ****FAILED."); return -EFAULT; } i = sscanf(buf, "%x-%d-%d-%x-%d", &action, &busNo, &devNo, &chanptr, &type); switch (action) { case 0: if (i != 3) break; /* destroy a device */ init_msg_header(&msg, CONTROLVM_DEVICE_DESTROY, 0, server_flag); msg.cmd.destroyDevice.busNo = busNo; msg.cmd.destroyDevice.devNo = devNo; result = destroy_device(&msg, NULL); if (result != CONTROLVM_RESP_SUCCESS) { LOGERR("echo 0-%d-%d > /proc/uislib/device {CONTROLVM_DEVICE_DESTROY Failed} Result(%d)", busNo, devNo, result); return -EFAULT; } return count; case 1: if (i != 5) break; /* create a device */ init_msg_header(&msg, CONTROLVM_DEVICE_CREATE, 0, server_flag); msg.cmd.createDevice.busNo = busNo; msg.cmd.createDevice.devNo = devNo; msg.cmd.createDevice.channelAddr = __pa(chanptr); msg.cmd.createDevice.channelBytes = MIN_IO_CHANNEL_SIZE; if (type == 0) msg.cmd.createDevice.dataTypeGuid = UltraVhbaChannelProtocolGuid; else if (type == 1) msg.cmd.createDevice.dataTypeGuid = UltraVnicChannelProtocolGuid; else { LOGERR("echo 1-%d-%d-%x-<type> > /proc/uislib/devce failed: invalid device type %d.", busNo, devNo, chanptr, type); return -EFAULT; } result = create_device(&msg, NULL); if (result != CONTROLVM_RESP_SUCCESS) { if (type == 0) LOGERR("echo 1-%d-%d-%x-0 > /proc/uislib/device {CONTROLVM_DEVICE_CREATE[vHBA] Failed} Result(%d)", busNo, devNo, chanptr, result); else LOGERR("echo 1-%d-%d-%x-1 > /proc/uislib/device {CONTROLVM_DEVICE_CREATE[vNIC] Failed} Result(%d)", busNo, devNo, chanptr, result); return -EFAULT; } default: break; } LOGERR("USAGE: echo <action>-<busNo>-<devNo>... > /proc/uislib/device"); LOGERR(" "); LOGERR("Destruct Syntax ControlVM Message Id"); LOGERR("----------------- ------------------------"); LOGERR("0-<busNo>-<devNo> ==> CONTROLVM_DEVICE_DESTROY"); LOGERR(" "); LOGERR("Construct Syntax ControlVM Message Id"); LOGERR ("---------------------------------- ----------------------- "); LOGERR ("1-<busNo>-<devNo>-<chanptr>-<type> ==> CONTROLVM_DEVICE_CREATE"); LOGERR(" <type = 0>: vHBA"); LOGERR(" <type = 1>: vNIC"); LOGERR(" "); return -EFAULT; } static ssize_t cycles_before_wait_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) { char buf[16]; #define CYCLES_BEFORE_WAIT_USE_ERROR { \ LOGERR("Incorrect Call Home Input.\n"); \ pr_info("Please pass Call Home Event Parameters in the form:\n"); \ pr_info("EventID Category Type[parameter1][parameter2][parameter3][parameter4][parameter5][parameter6]\n"); \ return -EFAULT; \ } if (count >= ARRAY_SIZE(buf)) return -EINVAL; if (count == 0) CYCLES_BEFORE_WAIT_USE_ERROR; if (copy_from_user(buf, buffer, count)) { LOGERR("copy_from_user failed.\n"); return -EFAULT; } buf[count - 1] = '\0'; /* Replace the LF at the end of the * input with a NULL */ /* Pull out the cycles_before_wait must be decimal integer */ if (sscanf(buf, "%lld", &cycles_before_wait) != 1) CYCLES_BEFORE_WAIT_USE_ERROR; return count; } static ssize_t reset_counts_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) { char buf[16]; unsigned long long new_value; struct bus_info *bus; int i; #define RESET_COUNTS_USE_ERROR { \ LOGERR("Incorrect reset_counts Input.\n"); \ pr_info("Please pass the new value for the counters:\n"); \ pr_info("e.g. echo 0 > reset_counts\n"); \ return -EFAULT; \ } if (count >= ARRAY_SIZE(buf)) return -EINVAL; if (count == 0) RESET_COUNTS_USE_ERROR; if (copy_from_user(buf, buffer, count)) { LOGERR("copy_from_user failed.\n"); return -EFAULT; } buf[count - 1] = '\0'; /* Replace the LF at the end of the * input with a NULL */ /* Pull out the reset_counts must be decimal integer */ if (sscanf(buf, "%llu", &new_value) != 1) RESET_COUNTS_USE_ERROR; read_lock(&BusListLock); for (bus = BusListHead; bus; bus = bus->next) { for (i = 0; i < bus->deviceCount; i++) { if (bus->device[i]) { bus->device[i]->first_busy_cnt = new_value; bus->device[i]->moved_to_tail_cnt = new_value; bus->device[i]->last_on_list_cnt = new_value; } } } read_unlock(&BusListLock); tot_moved_to_tail_cnt = new_value; tot_wait_cnt = new_value; tot_wakeup_cnt = new_value; tot_schedule_cnt = new_value; return count; } static ssize_t smart_wakeup_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) { char buf[16]; int new_value; #define SMART_WAKEUP_USE_ERROR { \ LOGERR("Incorrect smart_wakeup Input 0 disables smart_wakeup, and 1 enables smart_wakeup.\n"); \ pr_info("echo 0 > smart_wakeup\n"); \ pr_info("echo 1 > smart_wakeup\n"); \ return -EFAULT; \ } if (count >= ARRAY_SIZE(buf)) return -EINVAL; if (count == 0) SMART_WAKEUP_USE_ERROR; if (copy_from_user(buf, buffer, count)) { LOGERR("copy_from_user failed.\n"); return -EFAULT; } buf[count - 1] = '\0'; /* Replace the LF at the end of the * input with a NULL */ /* Pull out the smart_wakeup must be decimal integer */ if (sscanf(buf, "%d", &new_value) != 1) SMART_WAKEUP_USE_ERROR; en_smart_wakeup = new_value; return count; } static ssize_t test_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) { int i, action = 0xffff; char buf[16]; CONTROLVM_MESSAGE msg; S64 vrtc_offset; if (count >= ARRAY_SIZE(buf)) return -EINVAL; memset(&msg, 0, sizeof(CONTROLVM_MESSAGE)); if (copy_from_user(buf, buffer, count)) { LOGERR("copy_from_user ****FAILED.\n"); return -EFAULT; } i = sscanf(buf, "%x", &action); /* if (i < 1), i.e., if we didn't even read the action field, * then action will default to 0xffff and the code below will * fall through the switch and print usage. */ switch (action) { case 6: msg.hdr.Id = CONTROLVM_CHIPSET_STOP; msg.hdr.Flags.responseExpected = 1; stop_chipset(&msg, NULL); break; case 7: vrtc_offset = 0; LOGERR("about to issue QUERY vrtc_offset=%LX", vrtc_offset); vrtc_offset = Issue_VMCALL_QUERY_GUEST_VIRTUAL_TIME_OFFSET(); LOGERR("result is vrtc_offset=%LX", vrtc_offset); break; case 8: vrtc_offset = 60; LOGERR("about to increase physical time by 0x%LX seconds", vrtc_offset); vrtc_offset = Issue_VMCALL_UPDATE_PHYSICAL_TIME(vrtc_offset); break; case 9: vrtc_offset = -60; LOGERR("about to decrease physical time by 0x%LX seconds", vrtc_offset); vrtc_offset = Issue_VMCALL_UPDATE_PHYSICAL_TIME(vrtc_offset); break; default: LOGERR("usage: 6 for CHIPSET_STOP\n"); LOGERR(" 7 for VMCALL_QUERY_GUEST_VIRTUAL_TIME_OFFSET()\n"); LOGERR(" 8 for VMCALL_UPDATE_PHYSICAL_TIME(60)\n"); LOGERR(" 9 for VMCALL_UPDATE_PHYSICAL_TIME(-60)\n"); return -EFAULT; break; } return count; } #endif /* UISLIB_TEST_PROC */ static struct device_info * find_dev(U32 busNo, U32 devNo) { struct bus_info *bus; struct device_info *dev = NULL; read_lock(&BusListLock); for (bus = BusListHead; bus; bus = bus->next) { if (bus->busNo == busNo) { /* make sure the device number is valid */ if (devNo >= bus->deviceCount) { LOGERR("%s bad busNo, devNo=%d,%d", __func__, (int) (busNo), (int) (devNo)); goto Away; } dev = bus->device[devNo]; if (!dev) LOGERR("%s bad busNo, devNo=%d,%d", __func__, (int) (busNo), (int) (devNo)); goto Away; } } Away: read_unlock(&BusListLock); return dev; } /* This thread calls the "interrupt" function for each device that has * enabled such using uislib_enable_channel_interrupts(). The "interrupt" * function typically reads and processes the devices's channel input * queue. This thread repeatedly does this, until the thread is told to stop * (via uisthread_stop()). Sleeping rules: * - If we have called the "interrupt" function for all devices, and all of * them have reported "nothing processed" (returned 0), then we will go to * sleep for a maximum of POLLJIFFIES_NORMAL jiffies. * - If anyone calls uislib_force_channel_interrupt(), the above jiffy * sleep will be interrupted, and we will resume calling the "interrupt" * function for all devices. * - The list of devices is dynamically re-ordered in order to * attempt to preserve fairness. Whenever we spin thru the list of * devices and call the dev->interrupt() function, if we find * devices which report that there is still more work to do, the * the first such device we find is moved to the end of the device * list. This ensures that extremely busy devices don't starve out * less-busy ones. * */ static int Process_Incoming(void *v) { unsigned long long cur_cycles, old_cycles, idle_cycles, delta_cycles; struct list_head *new_tail = NULL; int i; UIS_DAEMONIZE("dev_incoming"); for (i = 0; i < 16; i++) { old_cycles = get_cycles(); wait_event_timeout(Wakeup_Polling_Device_Channels, 0, POLLJIFFIES_NORMAL); cur_cycles = get_cycles(); if (wait_cycles == 0) { wait_cycles = (cur_cycles - old_cycles); } else { if (wait_cycles < (cur_cycles - old_cycles)) wait_cycles = (cur_cycles - old_cycles); } } LOGINF("wait_cycles=%llu", wait_cycles); cycles_before_wait = wait_cycles; idle_cycles = 0; Go_Polling_Device_Channels = 0; while (1) { struct list_head *lelt, *tmp; struct device_info *dev = NULL; /* poll each channel for input */ LOCKSEM_UNINTERRUPTIBLE(&Lock_Polling_Device_Channels); new_tail = NULL; list_for_each_safe(lelt, tmp, &List_Polling_Device_Channels) { int rc = 0; dev = list_entry(lelt, struct device_info, list_polling_device_channels); LOCKSEM_UNINTERRUPTIBLE(&dev->interrupt_callback_lock); if (dev->interrupt) rc = dev->interrupt(dev->interrupt_context); else continue; UNLOCKSEM(&dev->interrupt_callback_lock); if (rc) { /* dev->interrupt returned, but there * is still more work to do. * Reschedule work to occur as soon as * possible. */ idle_cycles = 0; if (new_tail == NULL) { dev->first_busy_cnt++; if (! (list_is_last (lelt, &List_Polling_Device_Channels))) { new_tail = lelt; dev->moved_to_tail_cnt++; } else dev->last_on_list_cnt++; } } if (Incoming_ThreadInfo.should_stop) break; } if (new_tail != NULL) { tot_moved_to_tail_cnt++; list_move_tail(new_tail, &List_Polling_Device_Channels); } UNLOCKSEM(&Lock_Polling_Device_Channels); cur_cycles = get_cycles(); delta_cycles = cur_cycles - old_cycles; old_cycles = cur_cycles; /* At this point, we have scanned thru all of the * channels, and at least one of the following is true: * - there is no input waiting on any of the channels * - we have received a signal to stop this thread */ if (Incoming_ThreadInfo.should_stop) break; if (en_smart_wakeup == 0xFF) { LOGINF("en_smart_wakeup set to 0xff, to force exiting process_incoming"); break; } /* wait for POLLJIFFIES_NORMAL jiffies, or until * someone wakes up Wakeup_Polling_Device_Channels, * whichever comes first only do a wait when we have * been idle for cycles_before_wait cycles. */ if (idle_cycles > cycles_before_wait) { Go_Polling_Device_Channels = 0; tot_wait_cnt++; wait_event_timeout(Wakeup_Polling_Device_Channels, Go_Polling_Device_Channels, POLLJIFFIES_NORMAL); Go_Polling_Device_Channels = 1; } else { tot_schedule_cnt++; schedule(); idle_cycles = idle_cycles + delta_cycles; } } DBGINF("exiting.\n"); complete_and_exit(&Incoming_ThreadInfo.has_stopped, 0); } static BOOL Initialize_incoming_thread(void) { if (Incoming_Thread_Started) return TRUE; if (!uisthread_start(&Incoming_ThreadInfo, &Process_Incoming, NULL, "dev_incoming")) { LOGERR("uisthread_start Initialize_incoming_thread ****FAILED"); return FALSE; } Incoming_Thread_Started = TRUE; return TRUE; } /* Add a new device/channel to the list being processed by * Process_Incoming(). * <interrupt> - indicates the function to call periodically. * <interrupt_context> - indicates the data to pass to the <interrupt> * function. */ void uislib_enable_channel_interrupts(U32 busNo, U32 devNo, int (*interrupt)(void *), void *interrupt_context) { struct device_info *dev; dev = find_dev(busNo, devNo); if (!dev) { LOGERR("%s busNo=%d, devNo=%d", __func__, (int) (busNo), (int) (devNo)); return; } LOCKSEM_UNINTERRUPTIBLE(&Lock_Polling_Device_Channels); Initialize_incoming_thread(); dev->interrupt = interrupt; dev->interrupt_context = interrupt_context; dev->polling = TRUE; list_add_tail(&(dev->list_polling_device_channels), &List_Polling_Device_Channels); UNLOCKSEM(&Lock_Polling_Device_Channels); } EXPORT_SYMBOL_GPL(uislib_enable_channel_interrupts); /* Remove a device/channel from the list being processed by * Process_Incoming(). */ void uislib_disable_channel_interrupts(U32 busNo, U32 devNo) { struct device_info *dev; dev = find_dev(busNo, devNo); if (!dev) { LOGERR("%s busNo=%d, devNo=%d", __func__, (int) (busNo), (int) (devNo)); return; } LOCKSEM_UNINTERRUPTIBLE(&Lock_Polling_Device_Channels); list_del(&dev->list_polling_device_channels); dev->polling = FALSE; dev->interrupt = NULL; UNLOCKSEM(&Lock_Polling_Device_Channels); } EXPORT_SYMBOL_GPL(uislib_disable_channel_interrupts); static void do_wakeup_polling_device_channels(struct work_struct *dummy) { if (!Go_Polling_Device_Channels) { Go_Polling_Device_Channels = 1; wake_up(&Wakeup_Polling_Device_Channels); } } static DECLARE_WORK(Work_wakeup_polling_device_channels, do_wakeup_polling_device_channels); /* Call this function when you want to send a hint to Process_Incoming() that * your device might have more requests. */ void uislib_force_channel_interrupt(U32 busNo, U32 devNo) { if (en_smart_wakeup == 0) return; if (Go_Polling_Device_Channels) return; /* The point of using schedule_work() instead of just doing * the work inline is to force a slight delay before waking up * the Process_Incoming() thread. */ tot_wakeup_cnt++; schedule_work(&Work_wakeup_polling_device_channels); } EXPORT_SYMBOL_GPL(uislib_force_channel_interrupt); /*****************************************************/ /* Module Init & Exit functions */ /*****************************************************/ static int __init uislib_mod_init(void) { LOGINF("MONITORAPIS"); LOGINF("sizeof(struct uiscmdrsp):%lu bytes\n", (ulong) sizeof(struct uiscmdrsp)); LOGINF("sizeof(struct phys_info):%lu\n", (ulong) sizeof(struct phys_info)); LOGINF("sizeof(uiscmdrsp_scsi):%lu\n", (ulong) sizeof(struct uiscmdrsp_scsi)); LOGINF("sizeof(uiscmdrsp_net):%lu\n", (ulong) sizeof(struct uiscmdrsp_net)); LOGINF("sizeof(CONTROLVM_MESSAGE):%lu bytes\n", (ulong) sizeof(CONTROLVM_MESSAGE)); LOGINF("sizeof(ULTRA_CONTROLVM_CHANNEL_PROTOCOL):%lu bytes\n", (ulong) sizeof(ULTRA_CONTROLVM_CHANNEL_PROTOCOL)); LOGINF("sizeof(CHANNEL_HEADER):%lu bytes\n", (ulong) sizeof(CHANNEL_HEADER)); LOGINF("sizeof(ULTRA_IO_CHANNEL_PROTOCOL):%lu bytes\n", (ulong) sizeof(ULTRA_IO_CHANNEL_PROTOCOL)); LOGINF("SIZEOF_CMDRSP:%lu bytes\n", SIZEOF_CMDRSP); LOGINF("SIZEOF_PROTOCOL:%lu bytes\n", SIZEOF_PROTOCOL); /* initialize global pointers to NULL */ BusListHead = NULL; BusListCount = MaxBusCount = 0; rwlock_init(&BusListLock); VirtControlChanFunc = NULL; /* Issue VMCALL_GET_CONTROLVM_ADDR to get CtrlChanPhysAddr and * then map this physical address to a virtual address. */ POSTCODE_LINUX_2(DRIVER_ENTRY_PC, POSTCODE_SEVERITY_INFO); /* create the proc entries for the channels */ uislib_proc_dir = proc_mkdir(DIR_PROC_ENTRY, NULL); /* (e.g., for /proc/uislib/vbus/<x>/info) */ uislib_proc_vbus_dir = proc_mkdir(DIR_VBUS_PROC_ENTRY, uislib_proc_dir); vnic_proc_entry = proc_create(VNIC_PROC_ENTRY_FN, 0, uislib_proc_dir, &proc_vnic_fops); SET_PROC_OWNER(vnic_proc_entry, THIS_MODULE); /* for testing purposes only, create the proc entries for * enqueuing Control Channel messages */ chipset_proc_entry = proc_create(CHIPSET_PROC_ENTRY_FN, 0, uislib_proc_dir, &proc_chipset_fops); SET_PROC_OWNER(chipset_proc_entry, THIS_MODULE); info_proc_entry = proc_create(INFO_PROC_ENTRY_FN, 0, uislib_proc_dir, &proc_info_fops); SET_PROC_OWNER(info_proc_entry, THIS_MODULE); platformnumber_proc_entry = proc_create(PLATFORMNUMBER_PROC_ENTRY_FN, 0, uislib_proc_dir, &proc_platformnumber_fops); SET_PROC_OWNER(platformnumberinfo_proc_entry, THIS_MODULE); cycles_before_wait_proc_entry = proc_create(CYCLES_BEFORE_WAIT_PROC_ENTRY_FN, 0, uislib_proc_dir, &proc_cycles_before_wait_fops); SET_PROC_OWNER(cycles_before_wait_proc_entry, THIS_MODULE); reset_counts_proc_entry = proc_create(RESET_COUNTS_PROC_ENTRY_FN, 0, uislib_proc_dir, &proc_reset_counts_fops); SET_PROC_OWNER(reset_counts_proc_entry, THIS_MODULE); smart_wakeup_proc_entry = proc_create(SMART_WAKEUP_PROC_ENTRY_FN, 0, uislib_proc_dir, &proc_smart_wakeup_fops); SET_PROC_OWNER(smart_wakeup_proc_entry, THIS_MODULE); #ifdef UISLIB_TEST_PROC test_proc_entry = proc_create(TEST_PROC_ENTRY_FN, 0, uislib_proc_dir, &proc_test_fops); SET_PROC_OWNER(test_proc_entry, THIS_MODULE); bus_proc_entry = proc_create(BUS_PROC_ENTRY_FN, 0, uislib_proc_dir, &proc_bus_fops); SET_PROC_OWNER(bus_proc_entry, THIS_MODULE); dev_proc_entry = proc_create(DEV_PROC_ENTRY_FN, 0, uislib_proc_dir, &proc_dev_fops); SET_PROC_OWNER(dev_proc_entry, THIS_MODULE); #endif /* UISLIB_TEST_PROC */ POSTCODE_LINUX_3(DRIVER_EXIT_PC, 0, POSTCODE_SEVERITY_INFO); return 0; } static void __exit uislib_mod_exit(void) { if (disable_proc_entry) remove_proc_entry(DISABLE_PROC_ENTRY_FN, uislib_proc_dir); if (cycles_before_wait_proc_entry) remove_proc_entry(CYCLES_BEFORE_WAIT_PROC_ENTRY_FN, uislib_proc_dir); if (reset_counts_proc_entry) remove_proc_entry(RESET_COUNTS_PROC_ENTRY_FN, uislib_proc_dir); if (smart_wakeup_proc_entry) remove_proc_entry(SMART_WAKEUP_PROC_ENTRY_FN, uislib_proc_dir); if (ctrlchan_proc_entry) remove_proc_entry(CTRLCHAN_PROC_ENTRY_FN, uislib_proc_dir); if (pmem_proc_entry) remove_proc_entry(PMEM_PROC_ENTRY_FN, uislib_proc_dir); if (info_proc_entry) remove_proc_entry(INFO_PROC_ENTRY_FN, uislib_proc_dir); if (switch_proc_entry) remove_proc_entry(SWITCH_PROC_ENTRY_FN, uislib_proc_dir); if (extport_proc_entry) remove_proc_entry(EXTPORT_PROC_ENTRY_FN, uislib_proc_dir); if (platformnumber_proc_entry) remove_proc_entry(PLATFORMNUMBER_PROC_ENTRY_FN, uislib_proc_dir); if (bus_proc_entry) remove_proc_entry(BUS_PROC_ENTRY_FN, uislib_proc_dir); if (dev_proc_entry) remove_proc_entry(DEV_PROC_ENTRY_FN, uislib_proc_dir); if (vnic_proc_entry) remove_proc_entry(VNIC_PROC_ENTRY_FN, uislib_proc_dir); if (chipset_proc_entry) remove_proc_entry(CHIPSET_PROC_ENTRY_FN, uislib_proc_dir); if (uislib_proc_vbus_dir) remove_proc_entry(DIR_VBUS_PROC_ENTRY, uislib_proc_dir); if (uislib_proc_dir) remove_proc_entry(DIR_PROC_ENTRY, NULL); if (ProcReadBuffer) { vfree(ProcReadBuffer); ProcReadBuffer = NULL; } DBGINF("goodbye.\n"); return; } module_init(uislib_mod_init); module_exit(uislib_mod_exit); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Usha Srinivasan"); MODULE_ALIAS("uislib"); /* this is extracted during depmod and kept in modules.dep */ |