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 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750
|
2008-06-08 Michael.Kang
* DBCT is disabled in current version sinece we have not detect the build environment for DBCT in configure.
* Changed files:
skyeye-1.2.5/autom4te.cache/output.0
skyeye-1.2.5/autom4te.cache/output.1
skyeye-1.2.5/configure
skyeye-1.2.5/configure.in
2008-05-13 Michael.Kang
* Fix some build error on solaris platform
* Changed files:
arch/bfin/mach/bf533_io.c
arch/mips/mach/skyeye_mach_nedved.c
device/net/skyeye_net_tuntap.c
device/net/skyeye_net_vnet.c
2008-05-03 Michael.kang
* fix bfd dependency issues on the platforms without bfd library.
* Changed files:
utils/profile/symbol.[ch]
utils/Makefile.am
utils/main/skyeye.c
Makefile.am
2008-05-03 Michael.Kang
* move symbol.[ch] from utils/main to utili/profile directory
* moved files:
utils/main/symbol.[ch] to utils/profile/symbol.[ch]
2008-05-02 Michael.kang
* merge code coverage profile patch to trunk
* Changed files:
Makefile.am
arch/arm/Makefile.am
arch/arm/common/armmem.c
arch/arm/common/armvirt.c
utils/Makefile.am
utils/config/skyeye_config.h
utils/config/skyeye_options.c
utils/config/skyeye_options.h
utils/main/skyeye.c
* Added files and directory:
utils/profile
utils/profile/code_cov.c
utils/profile/code_cov.h
2008-05-02 Michael.Kang
* Add load_addr option, so we can relocate elf image file to another
address
* Changed files:
utils/config/skyeye_config.h
utils/config/skyeye_options.c
utils/main/skyeye.c
2008-05-02 Michael.Kang
* fix lcd crash. The patch provided by Anthony Lee
* Changed files:
device/lcd/skyeye_lcd_gtk.c
2008-05-01 Michael.Kang
* merge the mips simulation code from mips_branch
* Now linux can run on mips simulator , but not stable
2008-05-01 Michael.kang
* Fix next command during gdb remote debug
* Changed files:
utils/debugger/gdbserver.c
2008-05-01 Michael.Kang
* merge autoconf_branch to trunk
* added files:
configure.in configure Makefile.am
arch/arm/Makefile.am arch/bfin/Makefile.am arch/coldfire/Makefile.am
arch/mips/Makefile.am arch/ppc/Makefile.am
utils/Makefile.am
device/Makefile.am
2008-02-01 Michael.Kang
* Add cs8900a driver of linux, so that is convince for us to use it test
our netcard simulation
* Added directory and file:
cs8900a
cs8900a/linux_2_6_14_cs8900.diff
2008-02-01 Michael.Kang
* Fix the bug. Now cs8900a netcard can run on SkyEye. We can use ftp to transfer file by netcard driver
* Changed files:
net/dev_net_cs8900a.c
2007-11-15 Michael.Kang
* Merge the patch from anthony.lee to support cygwin , BeOS, MacOS
* Changed files:
skyeye-1.2.4/utils/main/skyeye.h
skyeye-1.2.4/arch/arm/mach/skyeye_mach_at91rm92.c
skyeye-1.2.4/arch/ppc/common/ppc_mmu.c
skyeye-1.2.4/arch/ppc/common/types.h
skyeye-1.2.4/arch/coldfire/mach/skyeye_mach_mcf5272.c
skyeye-1.2.4/Makefile
2007-11-08 Michael.Kang
* Merge the patch from anthony.Lee to support MacOS on x86.
* Changed files:
arch/arm/dbct/arm2x86.c
arch/arm/dbct/arm2x86.h
arch/arm/dbct/arm2x86_mem.c
arch/arm/dbct/tb.c
device/net/skyeye_net_tuntap.c
device/net/skyeye_net_vnet.c
2007-11-07 Michael.Kang
* Merge the patch from Marc Hoffman to support MACOS
* Changed files:
arch/arm/dbct/tb.c
device/net/skyeye_net_tuntap.c
device/net/skyeye_net_vnet.c
2007-11-06 Michael.Kang
* Fix a bug in x86_64, we should always define 32bit variable to "int" type, but not "long" type.
* Changed files:
arch/ppc/common/ppc_boot.h
2007-11-03 Michael.Kang
* Fix a bug of timer write.Now ticker.exe of rtems csb350 BSP can run on SkyEye.
* Changed files:
arch/coldfire/mach/skyeye_mach_mcf5272.c
arch/coldfire/mach/mcf5272.h
2007-11-03 Michael.Kang
* Fix a bug in DBGU of at91rm9200, now uboot can receive some char
* Changed files:
arch/arm/mach/skyeye_mach_at91rm92.c
2007-11-02 Michael.Kang
* workaound for round-robin replace of TLB0 entry, not same with the replacement algorithms described in e500 manual, need to be fixed later.
* Changed files:
arch/ppc/common/ppc_mmu.c
arch/ppc/common/ppc_e500_exc.c
2007-10-31 Michael.Kang
* Add some function of bootloader, now we can boot unmodified linux without u-boot
* UART recv interrupt simulation is completed.
* Add SCC2 support and some register of PIC
* Changed files:
arch/ppc/common/ppc_mmu.c
arch/ppc/common/ppc_cpu.h
arch/ppc/common/ppc_arch_interface.c
arch/ppc/common/ppc_e500_exc.c
Makefile
* Added files:
arch/ppc/common/ppc_boot.c
arch/ppc/common/ppc_boot.h
2007-10-29 Michael.Kang
* CPM uart interrupt is implemented.Now ppc simulator can receive some
characers and exceute the command from uart.But not stable.
* A isel instruction is added
* Changed files:
ppc/common/ppc_mmu.c
ppc/common/ppc_dec.c
ppc/common/ppc_cpu.h
ppc/common/ppc_arch_interface.c
ppc/common/ppc_e500_exc.c
ppc/mach/skyeye_mach_mpc8560.c
* Added files:
ppc/common/ppc_irq.h
2007-10-28 Michael.Kang
* some important improvement for ppc simulation.Now ppc simulation is near
to its success. Sash can run correctly ,but cpm_uart receive function is
not implement.
* Fix the bug in TLB entry update
* Fix the bug in cpm uart, there is a data that have not been type-tran
* Implement dbcz, that solves some critical bug during run linux
* Workaround permission check in mtspr and mfspr
* Changed files:
ppc/common/ppc_arch_interface.c
ppc/common/ppc_mmu.c
ppc/common/ppc_e500_exc.c
ppc/common/ppc_opc.c
ppc/common/ppc_dec.c
2007-10-10 Michael.Kang
* Commit the patch provided by Anthony Lee, that can solve some compilation issues under MingW environment.
* Changed files:
skyeye-v1/trunk/Makefile
skyeye-v1/trunk/arch/arm/mach/skyeye_mach_ep7312.c
skyeye-v1/trunk/arch/arm/mach/skyeye_mach_s3c44b0x.c
skyeye-v1/trunk/arch/ppc/common/types.h
skyeye-v1/trunk/device/nandflash/nandflash_smallblock.c
skyeye-v1/trunk/device/nandflash/nandflash_smallblock.h
skyeye-v1/trunk/device/net/skyeye_net_tap_win32.c
skyeye-v1/trunk/device/uart/skyeye_uart_pipe.c
skyeye-v1/trunk/device/uart/skyeye_uart_stdio.c
skyeye-v1/trunk/utils/debugger/gdbserver.c
skyeye-v1/trunk/utils/main/skyeye.c
2007-10-10 Michael.Kang
* Add sram defination and uart initialization for csb360 BSP of RTEMS
* Now csb360 of RTEMS can run on SkyEye
* Changed files:
arch/coldfire/common/cf_arch_interface.c
arch/coldfire/common/memory.c
arch/coldfire/mach/skyeye_mach_mcf5272.c
2007-10-07 Michael.Kang
* More improvements for ppc simulation
* Changed files:
arch/ppc/common/io.h
arch/ppc/common/ppc_alu.c
arch/ppc/common/ppc_arch_interface.c
arch/ppc/common/ppc_cpu.c
arch/ppc/common/ppc_e500_exc.c
arch/ppc/common/ppc_memory.h
arch/ppc/common/ppc_mmu.c
arch/ppc/common/ppc_opc.c
2007-10-07 Michael.Kang
* commit the patch provided by rayx, that fix some bugs in lpc simulation
* Now rtl22xx BSP of RTEMS can run on SkyEye.
* Changed files:
arch/arm/mach/skyeye_mach_lpc2210.c
2007-09-07 Michael.Kang
* A lot of improvement for ppc simualtion
* timer interrupt seems work normally
* Uart seems work normally
* Add system call exception
* Fix the bug in implementation of wrtee and wrteei instruction
* Add some register defination for some peripherals
* Changed files:
ppc/common/ppc_cpu.h
ppc/common/ppc_arch_interface.c
ppc/common/ppc_mmu.c
ppc/common/types.h
ppc/common/ppc_e500_exc.c
ppc/common/ppc_alu.c
ppc/common/ppc_opc.c
ppc/mach/skyeye_mach_mpc8560.c
ppc/mach/skyeye_mach_mpc823.c
2007-08-27 Michael.Kang
* Implement remap function for LPC, now uClinux can run on SkyEye.
* Changed files:
common/arminit.c
common/armmem.c
common/armdefs.h
common/arm_arch_interface.c
2007-08-26 Michael.Kang
* Add more register defination for MPC8560.
* Fix the bug of TLB update.
* Changed files:
ppc/common/ppc_cpu.h
ppc/common/ppc_arch_interface.c
ppc/common/ppc_mmu.c
ppc/common/ppc_e500_exc.c
ppc/common/ppc_alu.c
ppc/mach/skyeye_mach_mpc8560.c
2007-08-26 Michael.Kang
* improved by Stano. Now rtl8019 netcard simulation can run stable.
* Changed files:
dev_net_rtl8019.c
2007-08-26 Michael.Kang
* Add more timer support. Now redboot can run on AT91 simulation
* Workaround for 8019 driver of linux-2.4.x in uClinux-dist
* Changed files:
skyeye_mach_at91.c
2007-08-26 Michael.Kang
* Add linux_driver directory to contains some driver source for linux OS
* Add rtl8019.[ch] to our source repository. Originally provided by
Anthony Lee, emhanced by Stanislav Meduna.
* Add file and directory:
misc/linux_driver
misc/linux_driver/rtl8019
misc/linux_driver/rtl8019/rtl8019.c
misc/linux_driver/rtl8019/rtl8019.h
misc/linux_driver/rtl8019/README
2007-07-26 Michael.Kang
* add NV implementation to auto update TLB
* Changed files:
arch/ppc/common/ppc_mmu.c
arch/ppc/common/ppc_mmu.h
arch/ppc/common/ppc_e500_exc.c
2007-07-26 Michael.Kang
* workaround ICE_read of wrong address for the
* ppc debugger. That is a
* bug that need to be fixed in the future.
* Changed files:
arch/ppc/common/ppc_arch_interface.c
2007-07-26 Michael.Kang
* Add isel instruction implementation
* Changed files:
arch/ppc/common/ppc_dec.c
arch/ppc/common/ppc_alu.c
arch/ppc/common/ppc_alu.h
2007-07-24 Michael.Kang
* Fix the compilation issue for "Make No_BFD". That is reported by Anthony Lee
* Changed files:
Makefile
utils/main/skyeye.c
2007-07-24 Michael.Kang
* Fix the bug cuased by register defination. I can not find useful info in GDBSOURCE/gdb/regformats/reg-ppc.dat for register layout of ppc
* Changed files:
utils/debugger/ppc_regdefs.c
2007-07-24 Michael.Kang
* We setup the initial tlb entry to map 0x0 to 0xc0000 before linux boot for convience.
* Since mmu always enbaled in ppc architecture, we read/write virual address in the current ICE_read/write_byte function of ppc arch.
* Changed files:
ppc/common/ppc_arch_interface.c
ppc/common/ppc_mmu.c
ppc/common/ppc_mmu.h
ppc/common/ppc_e500_exc.c
ppc/common/ppc_opc.c
2007-07-23 Michael.Kang
* More improvement for mips simulation.Now we can output something by uart in the linux boot stage.
* Changed files:
mips/common/exception.c
mips/common/emul.c
mips/common/decoder.c
mips/common/cp0.c
mips/common/mips_arch_interface.c
mips/mach/skyeye_mach_au1100.c
2007-07-20 Michael.Kang
* Fix the bug in mips debugger. Now we can debug mips program by gdb
* Changed files:
debugger/gdbserver.c
debugger/mips_regdefs.c
2007-07-19 Michael.Kang
* Fix the bug in free_bootmem_core of linux source.Due to incorrect sign extend for 32bit
* add more register simulation for au1100
* Changed files:
arch/mips/common/decoder.c
arch/mips/common/exception.c
arch/mips/common/instr.h
arch/mips/common/mips_arch_interface.c
arch/mips/mach/skyeye_mach_au1100.c
* Added files:
arch/mips/mach/au1000.h
2007-07-19 Michael.Kang
* Fix the bug caused by uart read/write, add more register support
* Changed files:
skyeye_mach_at91rm92.c
at91rm92.h
2007-07-19 Michael.Kang
* add more timer support for at91 simulation
* Changed files:
arch/arm/mach/skyeye_mach_at91.c
2007-07-07 Michael.Kang
* Big improvement for mips simulation, add more register and instruction
* Changed files:
mips/common/mipsio.c
mips/common/emul.c
mips/common/instr.h
mips/common/decoder.c
mips/common/mipsmem.c
mips/common/dcache.c
mips/common/emul.h
mips/common/tlb.c
mips/common/cp0.c
mips/common/mips_arch_interface.c
mips/mach/skyeye_mach_au1100.c
2007-07-07 Michael.Kang
* add file dependency for ppc_cpu.h. A big bug fixed.
* Changed files:
Makefile
2007-07-07 Michael.Kang
* add more register defination for ppc cpu struct
* Changed files:
arch/ppc/common/ppc_arch_interface.c
arch/ppc/common/ppc_cpu.c
arch/ppc/common/ppc_cpu.h
arch/ppc/common/ppc_dec.c
arch/ppc/common/ppc_exc.c
arch/ppc/common/ppc_mmu.c
arch/ppc/common/ppc_opc.c
2007-07-03 Michael.Kang
* commit patch from Anthony Lee <don.anthony.lee@gmail.com> to fix the
* compilation issue on BeOS
* Changed files:
arch/ppc/common/types.h
utils/main/elf32.h
utils/main/skyeye.c
2007-07-03 Michael.Kang
* Add kseg0,kseg1 support, but not sure if it is correct...
* Changed files:
arch/mips/common/mips_arch_interface.c
arch/mips/common/mipsmem.c
arch/mips/common/tlb.c
2007-07-03 Michael.Kang
* add isram_read_long function and clean some useless code.
* Changed files:
bfin/common/iomem.c
bfin/common/bfin-sim.h
bfin/common/bfin-dis.c
bfin/common/bfin_arch_interface.c
bfin/mach/bf533_io.c
2007-07-03 Michael.Kang
* Add symbol print support in debug log
* Added files:
utils/main/symbol.c
utils/main/symbol.h
* Changed files:
utils/main/skyeye.c
2007-07-03 Michael.Kang
* Add simulation for imx processor of freescale, not complete...
* Changed files:
Makefile
* Added files:
arch/arm/mach/skyeye_mach_9238imx.c
arch/arm/mach/imx-regs.h
2007-07-03 Michael.kang
* Add some new instructions implementation,such as isel.
* Add some initial tlb map for booting linux
* Changed files:
ppc/common/ppc_cpu.h
ppc/common/ppc_arch_interface.c
ppc/common/ppc_mmu.c
ppc/common/ppc_mmu.h
ppc/common/ppc_memory.h
ppc/common/ppc_alu.c
ppc/common/ppc_opc.c
ppc/common/ppc_alu.h
ppc/common/ppc_dec.c
2007-06-15 Michael.Kang
* add remap support for lpc simulation, but lpc simulation seems still not work.
* modified files:
common/armdefs.h
common/arminit.c
mach/skyeye_mach_lpc.c
2007-06-15 Michael.Kang
* add some register defination for 2410 simulation
* Changed files:
skyeye_mach_s3c2410x.c
2007-06-15 Michael.Kang
* add some error handler for mips simulation
* Changed files:
arch/mips/common/mips_arch_interface.c
arch/mips/common/mipsmem.c
2007-06-15 Michael.Kang
* add ppc simulation to SkyEye
* Added files:
arch/ppc/*
2007-06-12 Michael.Kang
* modify the timer prescale value of bf533 simulation. The patch is provided by Alain Schaefer.
* Changed files:
arch/bfin/mach/bf533_io.c
2007-06-06 Michael.Kang
* add dbgu and more uart support for at91rm9200 platform
* Changed files:
arch/arm/mach/skyeye_mach_at91rm92.c
arch/arm/mach/at91rm92.h
2007-04-14 anthonylee
* Speed-up lookup-table dependable LCD simulation.
* Clean-up LCD device framework.
* Implemented native mmap/munmap() for BeOS/Windows.
* Changed files:
arch/arm/common/armio.c
device/skyeye_device.c[h]
device/lcd/dev_lcd_s3c44b0x.c
device/lcd/skyeye_lcd.c[h]
device/lcd/skyeye_lcd_beos.c[cpp, h]
device/lcd/skyeye_lcd_gtk.c
device/lcd/skyeye_lcd_win32.c
utils/portable/mman.c
* Added files:
utils/portable/beos/mman.c
utils/portable/win32/mman.c
2007-04-11 anthonylee
* Implemented UART_PIPE for Windows, test on HyperTerminal.
* Fixed RTL8019AS for polling mode, test on RedBoot.
* Changed files:
device/uart/skyeye_uart_pipe.c
device/net/dev_net_rtl8019.c
2007-04-08 anthonylee
* Pick up the original works: S3C3410X simulation.
* Changed files:
Makefile
arch/arm/common/arm_arch_interface.c
* Added files:
arch/arm/mach/s3c3410x.h
arch/arm/mach/skyeye_mach_s3c3410x.c
2007-04-05 anthonylee
* Fixed Timer/BDMA of S3C44B0X simulation.
* Added Am29LV160,Am29LV800 flash simulation.
* Added "dump" option for flash simulation.
* Fixed UART/TIMER of S3C2410X simulation, now it can run RedBoot.
* Fixed open mode for MinGW, now "make NO_BFD=1" on MinGW OK.
* Fixed write overflow of RTL8019AS simulation.
* Changed files:
Makefile
README
arch/arm/mach/skyeye_mach_s3c2410x.c
arch/arm/mach/skyeye_mach_s3c44b0x.c
device/flash/dev_flash_sst39lvf160.c
device/flash/skyeye_flash.c[h]
device/net/dev_net_rtl8019.c
utils/config/skyeye_options.c[h]
utils/main/skyeye.c
utils/portable/mman.c
* Added files:
device/flash/dev_flash_am29.c[h]
2007-04-03 anthonylee
* Added SST39LF/VF160 flash simulation:
skyeye.conf example:
mem_bank: map=F, type=RW, addr=0x00000000, size=0x00020000, file=./u-boot.bin
mem_bank: map=F, type=RW, addr=0x00020000, size=0x001e0000, file=./uImage
flash: type=SST39VF160, base=0x00000000, size=0x00200000
* Changed files:
Makefile
device/flash/skyeye_flash.c[h]
* Added files:
device/flash/dev_flash_sst39lvf160.c[h]
2007-04-01 anthonylee
* Added 16-bits mode of RTL8019AS device:
skyeye.conf example:
net: type=rtl8019_16, ethmod=tuntap, hostip=10.0.0.1
* Added simple JTAG DCC Terminal simulation:
skyeye.conf example:
uart: mod=stdio, converter=dcc
* Changed files:
Makefile
device/net/dev_net_rtl8019.c[h]
device/uart/skyeye_uart.c[h]
utils/config/skyeye_options.c[h]
utils/main/skyeye.c
* Added files:
device/uart/skyeye_uart_cvt_dcc.c
2007-03-30 anthonylee
* Added NO_CHECK option to Makefile
* Added skyeye_convert_color_from_lcd_dma() helper function.
* Fixed LCD of S3C44B0X simualtion to support big-endian.
* Fixed for running Blackfin/Coldfire/MIPS simulation as non bfd library.
* Changed files:
Makefile
device/lcd/dev_lcd_s3c44b0x.c
device/lcd/skyeye_lcd.c[h]
device/lcd/skyeye_lcd_gtk.c
device/lcd/skyeye_lcd_win32.c
device/lcd/skyeye_lcd_beos.cpp[h]
utils/main/elf32.h
utils/main/skyeye.c
2007-03-28 anthonylee
* Added check scripts for Makefile
* Added a "-b" option to specify big endian when non "-e" option.
* Fixed for big endian, now it seems OK.
* Changed files:
Makefile
arch/arm/common/arm_arch_interface.c
arch/arm/mach/skyeye_mach_s3c44b0x.c
arch/arm/mach/s3c44b0.h
utils/main/skyeye.c
* Added files:
utils/scripts/check-bfd.sh
utils/scripts/check-bigendian.sh
utils/scripts/check-gcc.sh
utils/scripts/check-x86-asm.sh
2007-03-27 Michael.Kang
* merge zied's patch for support tracepoint.
* Changed files:
arch/arm/common/arm_arch_interface.c
arch/arm/common/armemu.c
Makefile
utils/debugger/gdbserver.c
utils/debugger/skyeye2gdb.h
utils/main/skyeye.c
* Added files:
utils/debugger/gdb_tracepoint.c
utils/debugger/gdb_tracepoint.h
2007-03-27 anthonylee
* Added sound device framework,
the pcm module of sound simulation uncompleted yet.
* Changed files:
Makefile
README
arch/arm/mach/s3c44b0.h
arch/arm/mach/skyeye_mach_s3c44b0x.c
device/skyeye_device.[ch]
device/sound/dev_sound_s3c44b0x.c
utils/config/skyeye_config.h
utils/config/skyeye_options.[ch]
* Added files:
device/sound/skyeye_sound.[ch]
device/sound/skyeye_sound_pcm.c
2007-03-25 anthonylee
* Added DMA, IIS of S3C44B0X simulation.
* Added IIS Sound of S3C44B0X simulation (just for Windows):
$ make EXTRA_CFLAGS="-DS3C44B0X_SOUND" EXTRA_LIBS="-lwinmm"
* Changed files:
arch/arm/mach/skyeye_mach_s3c44b0x.c
arch/arm/mach/s3c44b0.h
* Added files:
device/sound/dev_sound_s3c44b0x.c
2007-03-22 anthonylee
* WARNING: Revision 136, if anybody want to revert it.
* Added additional options for cross-compile to Makefile.
* Added touchscreen device framework without changing any
existing files, see "README" for more about configuration.
* Removed the oldest s3c44b0 simulation.
* Changed files:
Makefile
README
arch/arm/common/arm_arch_interface.c
device/lcd/skyeye_lcd.c
device/skyeye_device.c
device/skyeye_device.h
utils/config/skyeye_config.h
utils/config/skyeye_options.c
utils/config/skyeye_options.h
* Added files:
device/touchscreen/dev_touchscreen_skyeye.c
device/touchscreen/skyeye_touchscreen.c
device/touchscreen/skyeye_touchscreen.h
* Removed files:
arch/arm/mach/skyeye_mach_s3c44b0.c
2007-03-20 anthonylee
* Cleanup Makefile system.
* Fixed for compiling with gcc-3.x on BeOS,
now DBCT and MIPS can compile on BeOS without
any modification.
* Changed files:
Makefile
arch/coldfire/Makefile
arch/coldfire/common/Makefile
arch/coldfire/i_5206/Makefile
arch/coldfire/tracer/Makefile
arch/ppc/Makefile
arch/ppc/common/Makefile
arch/ppc/mach/Makefile
utils/portable/beos/tap_driver/Makefile
arch/coldfire/mach/skyeye_mach_mcf5249.c
arch/coldfire/mach/skyeye_mach_mcf5272.c
arch/mips/common/decoder.c
arch/mips/common/emul.h
arch/mips/common/inttypes.h
utils/debugger/cf_regdefs.c
utils/portable/beos/stdint.h
* Removed files:
arch/coldfire/i_5206/Makefile.in
arch/coldfire/tracer/Makefile.in
2007-03-20 anthonylee
* Disabled gcc-2.x support.
It means skyeye won't support generic BeOS any more
except that you have a modified gcc-3.x.
* Fixed skyeye_find_lcd_dma() for support mips architecture.
* Added au1100 LCD support, but uncompleted yet
until ksh finished the au1100 simulation.
* Changed files:
Makefile
device/lcd/skyeye_lcd.[ch]
utils/config/skyeye_arch.c
* Added files:
device/lcd/dev_lcd_au1100.[ch]
2007-03-19 anthonylee
* Replaced the codes based on sigaction with portable functions in net device.
* Cleanup the useless codes of "device/net/dev_net_s3c4510b.c".
* Changed files:
device/net/dev_net_rtl8019.[ch]
device/net/dev_net_cs8900a.[ch]
device/net/dev_net_s3c4510b.c
2007-03-17 anthonylee
* Changed ARM dependent codes for write more LCD drivers.
Now it's suitable to write drivers more than ARM, such as au1100 LCD.
* Disabled closable action of GTK_LCD's window.
* Completed WATCHDOG/RTC of S3C44B0X simulation.
* Improved timer of S3C44B0X simulation to make it more near realtime.
* Improved UART Rx FIFO of S3C44B0X simulation for speed.
* Removed useless codes for MinGW from "skyeye.c".
* Changed files:
arch/arm/mach/skyeye_mach_s3c44b0x.c
device/lcd/skyeye_lcd.c
device/lcd/skyeye_lcd.h
device/lcd/skyeye_lcd_beos.c
device/lcd/skyeye_lcd_gtk.c
device/lcd/skyeye_lcd_win32.c
utils/main/skyeye.c
utils/portable/gettimeofday.h
2007-03-16 ksh
* some structure is redesigned to contain more machine simulation.
* 5272 simulation is finished.uClinux can run on our SkyEye.But some bugs still exist.
* Added files:
arch/coldfire/i_5206/i_div.c
arch/coldfire/mach/skyeye_mach_mcf5272.c
arch/coldfire/mach/mcf5272.h
* Changed files:
Makefile
arch/coldfire/i_5206/Makefile.in
arch/coldfire/i_5206/Makefile
arch/coldfire/common/cf_arch_interface.c
arch/coldfire/common/i.c
arch/coldfire/common/memory.c
arch/coldfire/common/memory.h
arch/coldfire/mach/skyeye_mach_mcf5249.c
2007-03-14 ksh
* directory structure is adapted.I move some tools or some code not compiled by make command to misc directory. I think that maybe more clear for our source tree. These include utils/conf, utils/tools/ etc.
* Changed dir:
utils/tools/auto_test
utils/conf
utils/tools/dev-cpp_support
* added dir:
misc
misc/gdb
2007-03-14 ksh
* add teawater's gdb support.Now you can use gdb to debug the code run on
SkyEye.
* Added files:
misc/gdb/README
misc/gdb/skyeye_1.2_for_gdb_6.4.diff
2007-03-14 anthonylee
* Fixed S3C44B0X simulation for UART, NET.
Now our S3C44B0X simulation finished Interrupt, UART, Timer, LCD, NET.
* Fixed "hostip" option support for TAP_Win32 (just NT/2K/XP works).
* Fixed RTL8019AS ether card simulation.
* Changed files:
arch/arm/mach/skyeye_mach_s3c44b0x.c
device/net/skyeye_net_tap_win32.c
device/net/dev_net_rtl8019.c
2007-03-07 ksh
* workaround for "call _real_start" in bf537 boot code.You can get more info by the URL:
http://blackfin.uclinux.org/gf/project/uclinux-dist/tracker/?action=TrackerItemEdit&tracker_id=141&tracker_item_id=2781
* Changed files:
arch/bfin/common/bfin-dis.c
2007-03-07 ksh
* Change some io functions to functions of machine_config_t structure
* Changed files:
common/mipsio.c
2007-03-07 ksh
* add some peripherals define for integrator machine
* Changed files:
skyeye_mach_integrator.c
2007-03-07 ksh
* improve implementation of au1100 and nedved machine
* added files:
arch/mips/mach/skyeye_mach_au1100.c
arch/mips/mach/skyeye_mach_nedved.c
* Changed files:
Makefile
2007-03-07 ksh
* fix a bug by update interrupt mode of uart
* Changed files:
arch/coldfire/mach/skyeye_mach_mcf5249.c
2007-03-07 ksh
* improve bf537 simulation for different irq number comparing to bf533
* Changed files:
arch/bfin/mach/bf537_io.c
2007-03-06 anthonylee
* Rewrite S3C44B0X implementation,
now the old version can replace with it,
but something still has to be improved.
Please replace "s3c44b0" with "s3c44b0x" in "skyeye.conf"
to try the new implementation.
* Changed files:
Makefile
arch/arm/common/arm_arch_interface.c
device/lcd/dev_lcd_s3c44b0x.c
* Added files:
arch/arm/mach/skyeye_mach_s3c44b0x.c
2007-03-03 anthonylee
* Just enable DBCT on gcc-3.x
* Added BONE headers path to "Makefile" for modified gcc-3.x on BeOS
* Added "stdint.h" for BeOS
* Fixed for uart framework
* Added some portable functions
* Reformated some files
* Changed files:
Makefile
arch/arm/common/armdefs.h
arch/bfin/mach/bf533_io.c
arch/bfin/mach/bf537_io.c
arch/coldfire/common/memory.c
arch/codefire/mach/skyeye_mach_mcf5249.c
arch/ppc/common/bus.c
arch/ppc/common/bus.h
arch/ppc/common/cpu_ppc.h
arch/ppc/common/idecode_ppc.h
arch/ppc/common/instructions_ppc.c
arch/ppc/common/Makefile
arch/ppc/common/mmu_ppc.c
device/net/skyeye_net_tap_beos.c
device/net/skyeye_net_tuntap.c
device/uart/skyeye_uart.c
device/uart/skyeye_uart.h
device/uart/skyeye_uart_stdio.c
utils/config/skyeye_arch.c
utils/config/skyeye_defs.h
utils/config/skyeye_types.h
utils/debugger/skyeye2gdb.c
utils/portable/mman.c
* Added files:
utils/portable/gettimeofday.c
utils/portable/gettimeofday.h
utils/portable/usleep.c
utils/portable/usleep.h
utils/portable/beos/stdint.h
utils/portable/beos/usleep.c
utils/portable/win32/gettimeofday.c
utils/portable/win32/usleep.c
2007-03-02 ksh
* add integrator support, not complete..
* added files:
skyeye_mach_integrator.c
2007-03-02 ksh
* fix bug in coldfire debugger and add endian flag
* Changed files:
debugger/arm_regdefs.c
debugger/ppc_regdefs.c
debugger/cf_regdefs.c
debugger/skyeye2gdb.c
debugger/arch_regdefs.c
2007-03-02 ksh
* add armv6 support
* Changed files:
arm/common/arminit.c
arm/common/armemu.c
arm/common/armdefs.h
arm/common/arm_arch_interface.c
arm/mach/skyeye_mach_at91rm92.c
arm/mach/skyeye_mach_ns9750.c
arm/mach/s3c2410x.h
2007-03-02 ksh
* add bf537 support
* Added files:
bfin/mach/bf537_io.c
2007-03-02 ksh
* The framework of blackfin simulation is adapted for add new blackfin mach
* Changed files:
common/dma.h
common/iomem.c
common/bfin-sim.h
common/types.h
common/sysname.h
common/bfin-dis.c
common/bfin_arch_interface.c
mach/bf533_io.h
mach/bf533_irq.h
mach/bf533_io.c
2007-03-02 ksh
* improve coldfire simulation, now uclinux kernel can run on SkyEye
* Changed files:
arch/coldfire/common/cf_arch_interface.c
arch/coldfire/common/exception.c
arch/coldfire/common/memory.c
arch/coldfire/common/memory.h
arch/coldfire/i_5206/i_movec.c
2007-03-02 ksh
* add coldfire 5249 support
* added directories and files:
arch/coldfire/mach
arch/coldfire/mach/mcf5249.h
arch/coldfire/mach/skyeye_mach_mcf5249.c
2007-02-09 anthonylee
* Fixed s3c2410x for running linux-2.6.20,
it contains:
Corrected GPIO for CPU ID.
Corrected UFSTAT for length of URXH.
* Changed files:
arch/arm/mach/skyeye_mach_s3c2410x.c
2007-02-05 ksh
* fix two bug in bf533 interrupt implementation
* add a new vector instruction for blackfin simulation
* Changed files:
arch/bfin/mach/bf533_io.c
bfin/common/bfin-dis.c
2007-02-05 ksh
* fix a bug related to the timing issue of raise instruction,
we should execute the instruction after raise instruction,
then we trigger interrupt caused by raise.
* Changed files:
arch/bfin/common/bfin-dis.c
arch/bfin/common/bfin_arch_interface.c
2007-02-03 anthonylee
* Added another auto_test script for bash.
* Changed files:
utils/tools/auto_test/exec_skyeye.sh
utils/tools/auto_test/exec_skyeye_dbct.sh
* Added files:
utils/tools/auto_test/another_auto_test
2007-02-02 anthonylee
* Added TAP driver for SkyEye on BeOS,
see "utils/portable/beos/tap_driver/README" for more detail.
* Added net and lcd simulation for BeOS, tested on R5/BONE.
* Disabled setjmp/longjmp in "utils/main/skyeye.c" on BeOS
for multi-thread safe.
* Renamed files:
device/net/skyeye_net_tap.c => device/net/skyeye_net_tap_win32.c
* Changed files:
Makefile
arch/ppc/common/byteorder.h
device/lcd/skyeye_lcd.h
device/lcd/skyeye_lcd.c
device/net/skyeye_net_tuntap.c
device/uart/skyeye_uart.c
device/uart/skyeye_uart_pipe.c
device/uart/skyeye_uart_stdio.c
utils/config/skyeye_options.c
utils/debugger/gdbserver.c
utils/main/skyeye.c
utils/portable/mman.c
* Added files:
device/lcd/skyeye_lcd_beos.c
device/lcd/skyeye_lcd_beos.cpp
device/lcd/skyeye_lcd_beos.h
device/net/skyeye_net_tap_beos.c
utils/portable/beos/tap_driver/Makefile
utils/portable/beos/tap_driver/README
utils/portable/beos/tap_driver/skyeye_tap.c
utils/portable/beos/tap_driver/skyeye_tap.h
2007-01-30 anthonylee
* A little step for BeOS port, the BeOS port just for my favorite,
but both net and lcd simulation not available on BeOS.
* BeOS port just work on BONE version, test OK on MinGW/CygWin.
* The gcc on BeOS don't support the code style of current MIPS simulation,
so I turn off the MIPS simulation on BeOS.
* Fixed for CygWin
* Added portable function
* Changed files:
Makefile
arch/arm/common/armdefs.h
arch/arm/common/armmem.c
arch/arm/dbct/tb.c
arch/bfin/mach/bf533_io.c
arch/mips/common/dcache.c
arch/ppc/common/bus.c
arch/ppc/common/bus.h
arch/ppc/common/byteorder.h
arch/ppc/common/cpu_ppc.c
arch/ppc/common/cpu_ppc.h
arch/ppc/common/idecode_ppc.c
arch/ppc/common/idecode_ppc.h
arch/ppc/common/instructions_ppc.c
arch/ppc/common/mmu_ppc.c
device/lcd/skyeye_lcd_win32.c
device/net/dev_net_cs8900a.c
device/net/dev_net_rtl8019.c
device/net/dev_net_s3c4510b.c
device/net/skyeye_net_tuntap.c
device/net/skyeye_net_vnet.c
utils/config/skyeye_arch.c
utils/config/skyeye_defs.h
utils/config/skyeye_types.h
utils/debugger/arch_regdefs.c
utils/debugger/gdbserver.c
utils/debugger/skyeye2gdb.c
utils/main/skyeye.c
* Added files:
utils/portable/mman.c
utils/portable/mman.h
2007-01-29 anthonylee
* Fixed LCD_GTK model to support "lcd_lookup_color()"
* Cleanup LCD_WIN32 and LCD_S3C44B0X
* Changed files:
device/lcd/dev_lcd_ep7312.c
device/lcd/dev_lcd_s3c44b0x.c
device/lcd/skyeye_lcd_gtk.c
device/lcd/skyeye_lcd_win32.c
2007-01-29 ksh
* fix a bug about gpio address range in 2410 simulation
* Changed files:
arch/arm/mach/skyeye_mach_at91.c
arch/arm/mach/skyeye_mach_s3c2410x.c
2007-01-29 ksh
* coldfire simulation is improved.
* Changed files:
arch/coldfire/common/cf_arch_interface.c
arch/coldfire/common/memory.c
2007-01-29 ksh
* powerpc simulation is improved. but still a lot of thing to do.
* Changed files:
arch/ppc/common/bus.c
arch/ppc/common/ppc_arch_interface.c
2007-01-29 ksh
* some code is re-formated
* Changed files:
utils/config/skyeye_arch.h
utils/config/skyeye_config.h
utils/config/skyeye_types.h
utils/main/skyeye.c
2007-01-29 ksh
* coldfire debug function is improved
* Changed files:
utils/debugger/cf_regdefs.c
2007-01-29 ksh
* some improved for blackfin simualtion
* Changed files:
arch/bfin/common/bfin-dis.c
arch/bfin/common/bfin_arch_interface.c
arch/bfin/common/iomem.c
arch/bfin/common/mem_map.h
arch/bfin/mach/bf533_io.c
2007-01-28 anthonylee
* TODO: support virtual screen
* Added lcd_lookup_color() function to "struct lcd_device",
but just LCD_WIN32 model worked, LCD_GTK model need to be changed yet.
* Fixed for s3c44b0x lcd simulation, now it seems OK.
* Changed files:
arch/arm/mach/skyeye_mach_s3c44b0.c
device/lcd/dev_lcd_s3c44b0x.c
device/lcd/skyeye_lcd.h
device/lcd/skyeye_lcd_gtk.c
device/lcd/skyeye_lcd_win32.c
2007-01-27 anthonylee
* Try s3c44b0x lcd simulation
* Fixed maximum number of uart devices
* Changed files:
Makefile
utils/config/skyeye_config.h
device/lcd/skyeye_lcd.c
* Added files:
device/lcd/dev_lcd_s3c44b0x.c
device/lcd/dev_lcd_s3c44b0x.h
2007-01-24 anthonylee
* The revision is 19, Merged from the NG branch
* Added new uart device frame
UART_SIM_STDIO
UART_SIM_PIPE(except MinGW)
UART_SIM_NET(not yet)
At default, SkyEye try UART_SIM_STDIO, and you can add the line
like below to "skyeye.conf"
uart: mod=pipe, desc_in=/dev/ttyS1, desc_out=/dev/ttyS1
or
uart: mod=pipe, desc=/dev/ttyS1
or
uart: fd_in=/dev/ttyS1, fd_out=/dev/ttyS1
* Fixed uart of sa1100 implementation
* Fixed lcd_setup() --- memset's sizeof argument
* Minor cleanup for uart device and MinGW
* Moved SKYEYE4ECLIPSE from "skyeye_options.c" to "skyeye_config.c"
* Added warning when user uses rxvt shell on MinGW
* Fixed Makefile for cleanup the objects of ppc simulation.
* Removed "-mthreads" from Makefile on CygWin platform.
* Changed files:
Makefile
arch/arm/common/arm_arch_interface.c
arch/arm/common/armdefs.h
arch/arm/common/arminit.c
arch/arm/common/mmu/arm7100_mmu.c
arch/arm/common/mmu/arm920t_mmu.c
arch/arm/common/mmu/arm926ejs_mmu.c
arch/arm/common/mmu/cache.c
arch/arm/common/mmu/maverick.c
arch/arm/common/mmu/rb.c
arch/arm/common/mmu/sa_mmu.c
arch/arm/common/mmu/tlb.c
arch/arm/common/mmu/wb.c
arch/arm/common/mmu/xscale_copro.c
arch/arm/mach/skyeye_mach_*.c
arch/bfin/mach/bf533_io.c
arch/coldfire/common/Makefile
arch/coldfire/i_5206/Makefile
arch/codefire/tracer/Makefile
arch/mips/mach/nedeved.c
arch/ppc/common/Makefile
arch/ppc/mach/Makefile
device/flash/armflash.c
device/flash/dev_flash_intel.c
device/flash/skyeye_flash.c
device/flash/skyeye_flash.h
device/net/if_vnet.h
device/net/skyeye_net_tap.c
utils/config/syeye_arch.c
utils/config/skyeye_config.c
utils/config/skyeye_config.h
utils/config/skyeye_options.c
utils/config/skyeye_options.h
utils/debugger/arch_regdefs.c
utils/debugger/skyeye2gdb.c
utils/main/skyeye.c
* Removed files:
utils/stub/skyeye_win32_stdio.c
* Added files:
device/uart/skyeye_uart.c
device/uart/skyeye_uart.h
device/uart/skyeye_uart_net.c
device/uart/skyeye_uart_pipe.c
device/uart/skyeye_uart_stdio.c
2007-01-14 anthonylee
* Removed multi-threaded codes from "skyeye_net_tap.c" and "skyeye_lcd_win32.c".
* Added net_wait_packet() function to "skyeye-v1/device/skyeye_net.h".
* Added GTK+ detection for "skyeye-v1/Makefile".
* Now the net simulation worked on MinGW/CygWin by OpenVPN's TAP-Win32
driver, and you must set the IP address of the virtual adapter
to be 10.0.0.1 and net mask to be 255.255.255.0 manually.
* Fixed Makefile for Win32 platform
* Added byte order macro to "skyeye-v1/arch/ppc/common/byteorder.h" for Win32
* Changed files:
skyeye-v1/Makefile
skyeye-v1/arch/arm/mach/skyeye_mach_ps7500.c
skyeye-v1/arch/coldfire/common/Makefile
skyeye-v1/arch/coldfire/i_5206/Makefile
skyeye-v1/arch/coldfire/tracer/Makefile
skyeye-v1/arch/ppc/mach/Makefile
skyeye-v1/arch/ppc/common/Makefile
skyeye-v1/arch/ppc/common/byteorder.h
skyeye-v1/device/lcd/dev_lcd_ep7312.c
skyeye-v1/device/lcd/dev_lcd_pxa.c
skyeye-v1/device/lcd/dev_lcd_s3c2410.c
skyeye-v1/device/lcd/skyeye_lcd.c
skyeye-v1/device/lcd/skyeye_lcd.h
skyeye-v1/device/lcd/skyeye_lcd_gtk.c
skyeye-v1/device/lcd/skyeye_lcd_win32.c
skyeye-v1/device/net/dev_net_cs8900a.c
skyeye-v1/device/net/dev_net_rtl8019.c
skyeye-v1/device/net/dev_net_s3c4510b.c
skyeye-v1/device/net/skyeye_net.c
skyeye-v1/device/net/skyeye_net.h
skyeye-v1/device/net/skyeye_net_tap.c
skyeye-v1/device/net/skyeye_net_tuntap.c
skyeye-v1/device/net/skyeye_net_vnet.c
skyeye-v1/utils/config/skyeye_options.c
skyeye-v1/utils/debugger/gdbserver.c
* Removed files:
skyeye-v1/Makefile.MinGW32
skyeye-v1/Makefile.win
skyeye-v1/Makefile_gcc-3.3_with_DBCT_X86_32
skyeye-v1/utils/stub/mingw_help.c
skyeye-v1/utils/stub/mingw_help.h
skyeye-v1/utils/stub/skyeye_stub_win32.c
2007-01-13 ksh
* add gpio control register R/W to avoid some error message
* Changed files:
arch/arm/mach/skyeye_mach_s3c2410x.c
arch/arm/mach/s3c2410x.h
2006-12-31 ksh
* Improve blackfin debug a lot.Now we can set breakpoint,step run, view disassemle and register info when we debug blackfin program by remote debug.
* Changed files:
utils/main/skyeye.c
utils/debugger/bfin_regdefs.c
arch/bfin/bfin_arch_interface.c
2006-12-29 ksh
* add "-l option" to load elf image to another address not its entry
* Changed file:
utils/main/skyeye.c
2006-12-26 ksh
* add mips debug code for gdbserver, but it seems not work now
2006-12-22 ksh
* import initial ppc simulation code.
* add ppc debug function.Now you can step run ppc code and see some values
* of register.Breakpoint is not implemented.
2006-12-17 ksh
* improve the simulation of blackfin DMA
* add some new instruction in blackfin simulation
2006-12-17 ksh
* rewrite the framework of gdbserver
* two bugs is fixed
arch/arm/common/armvirt.c
utils/debugger/*
2006-12-11 benno
* Changed arch/arm/common/armdefs.h arch/arm/common/armemu.c
arch/arm/common/thumbemu.c arch/arm/common/mmu/xscale_copro.c
* Updated support for Thumb mode. Patch supplied by carl@ok-labs.com
2006-12-11 benno
* Change Makefile
Enable -O2 level optimisation.
Enable >2GB tracefiles on Linux by adding "-D_FILE_OFFSET_BITS=64"
2006-12-11 benno
* Changed arch/arm/common/arm_arch_interface.c, utils/main/skyeye.c
This patch correctly fixes cleaning up the terminal setting on
exit, including exit due to Ctrl-C by the user. There is still
some fixup required as the console is put into raw mode in the
main code and also within the simulator itself.
(patch provided by malcolmp@ok-labs.com)
2006-12-11 benno
* Changed skyeye2gdb.c to enable compiling on MacOSX
* Changed Makefile to create binary directory when needed.
* Changed utils/main/skyeye.c to fix bug in non-BFD loaded.
(patch provided by malcolmp@ok-labs.com)
2006-11-29 ksh
* fix a bug in dma simulation in blackfin 533 architecture
* Changed file:
arch/bfin/mach/bf533_io.c
2006-11-29 ksh
* workaround for 2410 code in linux-2.6.x.Now linux-2.6 can run on 2410 simulation
* Changed file:
arch/arm/mach/skyeye_mach_s3c2410x.c
2006-10-27 ksh
* commit the patch provided by alain
* Changed file:
arch/bfin/common/iomem.c
arch/bfin/common/mem_map.h
arch/bfin/mach/bf533_io.c
2006-10-05: ksh
* a bug caused by null pointer in dev_lcd_ep7312.c is fixed!
* Changed file:
device/lcd/dev_lcd_ep7312.c
2006-09-19: ksh
* add pf peripheral support in blackfin simulation
* Changed file:
arch/bfin/mach/bf533_io.c
2006-09-19: ksh
* add "@" in the commmand of make to prevent some useless info in the screen
* Changed file:
Makefile
2006-09-19: ksh
* commit the patch contributed by Anthony Lee.
* Changed files:
Makefile
Makefile.MinGW32
Makefile.win
README.win32.cn
arch/arm/common/arm_arch_interface.c
arch/arm/common/armcopro.c
arch/arm/common/armdefs.h
arch/arm/dbct/arm2x86.c
arch/arm/dbct/arm2x86.h
arch/arm/dbct/arm2x86_coproc.c
arch/arm/dbct/arm2x86_dp.c
arch/arm/dbct/arm2x86_mem.c
arch/arm/dbct/arm2x86_movl.c
arch/arm/dbct/arm2x86_mul.c
arch/arm/dbct/arm2x86_other.c
arch/arm/dbct/arm2x86_psr.c
arch/arm/dbct/arm2x86_shift.c
arch/arm/dbct/arm2x86_test.c
arch/arm/dbct/tb.c
arch/arm/mach/skyeye_mach_at91.c
arch/arm/mach/skyeye_mach_at91rm92.c
arch/arm/mach/skyeye_mach_cs89712.c
arch/arm/mach/skyeye_mach_ep7312.c
arch/arm/mach/skyeye_mach_ep9312.c
arch/arm/mach/skyeye_mach_ep9315.c
arch/arm/mach/skyeye_mach_lh79520.c
arch/arm/mach/skyeye_mach_lpc.c
arch/arm/mach/skyeye_mach_lpc2210.c
arch/arm/mach/skyeye_mach_ns9750.c
arch/arm/mach/skyeye_mach_ps7500.c
arch/arm/mach/skyeye_mach_pxa250.c
arch/arm/mach/skyeye_mach_pxa270.c
arch/arm/mach/skyeye_mach_s3c2410x.c
arch/arm/mach/skyeye_mach_s3c2440.c
arch/arm/mach/skyeye_mach_s3c44b0.c
arch/arm/mach/skyeye_mach_s3c4510b.c
arch/arm/mach/skyeye_mach_sa.c
arch/arm/mach/skyeye_mach_sharp.c
arch/bfin/common/bfin_arch_interface.c
arch/bfin/mach/bf533_io.c
arch/coldfire/common/Makefile
arch/coldfire/i_5206/Makefile
arch/coldfire/tracer/Makefile
arch/mips/common/decoder.c
arch/mips/common/mipsmem.c
arch/mips/common/types.h
arch/mips/mach/nedved.c
device/lcd/skyeye_lcd.c
device/lcd/skyeye_lcd.h
device/lcd/skyeye_lcd_gtk.c
device/lcd/skyeye_lcd_win32.c
device/net/dev_net_s3c4510b.c
utils/config/skyeye_config.h
utils/config/skyeye_options.c
utils/config/skyeye_options.h
utils/debugger/skyeye2gdb.c
utils/main/skyeye.c
utils/stub/mingw_help.c
utils/stub/skyeye_stub_win32.c
utils/stub/skyeye_win32_stdio.c
2006-09-08: ksh
* add mips simulation developed by shiyang(shy828301@126.com). A great work!
* added files:
arch/mips/*
* Changed files:
utils/config/skyeye_arch.c
Makefile
2006-09-04: ksh
* add two dimensional dma support
* Changed files:
arch/bfin/mach/bf533_io.c
arch/bfin/common/dma.h
2006-08-27: ksh
* commit a patch to support win32 API written by Li DongSheng.Thanks!
* Added files:
Makefile.MinGW32
utils/stub/skyeye_win32_stdio.c
device/lcd/skyeye_lcd_win32.c
* Changed files:
arch/arm/mach/skyeye_mach_at91.c
arch/arm/mach/skyeye_mach_at91rm92.c
arch/arm/mach/skyeye_mach_cs89712.c
arch/arm/mach/skyeye_mach_ep7312.c
arch/arm/mach/skyeye_mach_ep9312.c
arch/arm/mach/skyeye_mach_ep9315.c
arch/arm/mach/skyeye_mach_lh79520.c
arch/arm/mach/skyeye_mach_lpc.c
arch/arm/mach/skyeye_mach_lpc2210.c
arch/arm/mach/skyeye_mach_ns9750.c
arch/arm/mach/skyeye_mach_ps7500.c
arch/arm/mach/skyeye_mach_pxa250.c
arch/arm/mach/skyeye_mach_pxa270.c
arch/arm/mach/skyeye_mach_s3c2410x.c
arch/arm/mach/skyeye_mach_s3c2440.c
arch/arm/mach/skyeye_mach_s3c44b0.c
arch/arm/mach/skyeye_mach_s3c4510b.c
arch/arm/mach/skyeye_mach_sa.c
arch/arm/mach/skyeye_mach_sharp.c
2006-08-13:2 chy
* Fix yet another bug in Flash simulation. now flash WRITE simulation seems OK!
* Changed files:
device/flash/dev_flash_intel.c
2006-08-13 chy
* Fix another bug in Flash simulation. now flash WRITE simulation seems OK!
* Changed files:
device/flash/dev_flash_intel.c
2006-08-12 chy
* Fix a big bug in Flash simulation: didn't care the global_mpb=bank_ptr(address) when read/write things
* BUT flash WRITE simulation still have BUGS!!!!
* Changed files:
device/flash/dev_flash_intel.c
2006-08-09 benno
* Fix Xscale MMU operations to return ARMul_DONE, not the value.
(patch provided by Matthew.Warton@nicta.com.au)
* Changed files:
arch/arm/common/mmu/xscale_copro.c
2006-08-09 benno
* Fix pxa250 serial device interrupt enable acorrding to Xscale spec.
(patch provided by Carl.vanSchaik@nicta.com.au)
* Changed files:
arch/arm/mach/skyeye_mach_pxa250.c
2006-08-08 ksh
* fixed a bug by tomei.ningen@yahoo.com
* Changed files:
utils/debugger/arch_reg.c
2006-08-05 chy
* gcc-2.95/3.3/3.4/4.0/4.1 can compile skyeye
* add amd64 support, update autotest,
* in 64bit system, long=64 bit int=32bit, long long =64 bit, long int=64bit;
* in 32bit system, long = 32 bit, int=32bit, long long =64 bit, long int=32bit
* so I do: long ---> int
* Changed files:
*.[ch] which has long --->int , long int ---> int
Makefile
utils/tools/auto_test/daily_test.sh
* added files:
Makefile_gcc-3.3_with_DBCT_X86_32
2006-07-04 ksh
* add a patch provided by Phil Wilshire that add trace buffer simulation of blackfin
* Changed files:
arch/bfin/mach/bf533_io.c
arch/bfin/mach/bf533_io.c
2006-06-17 ksh
* add a patch provided by Phil Wilshire that add scrachpad memory simulation of blackfin
* Changed files:
arch/bfin/common/bfin-sim.h
arch/bfin/common/mem_map.h
arch/bfin/common/bfin_arch_interface.c
arch/bfin/common/iomem.c
2006-06-11 ksh
* add ps7500 simulation patch provided by acassis@gmail.com
* added files:
arch/arm/mach/skyeye_mach_ps7500.c
arch/arm/mach/ps7500.h
* Changed files:
arch/arm/common/arm_arch_interface.c
Makefile
2006-05-27 ksh
* add a menuconfig-like system to select various config options and generate skyeye.conf by the selected result.
* added files:
utils/conf/makefile
utils/conf/configs/Configure.help
utils/conf/configs/Makefile.am
utils/conf/configs/Makefile.in
utils/conf/configs/config.in
utils/conf/configs/defconfig
utils/conf/configs/feature.in
utils/conf/configs/mkdefconfig
utils/conf/scripts/Makefile.am
utils/conf/scripts/Makefile.in
utils/conf/scripts/Menuconfig
utils/conf/scripts/mkconfig
utils/conf/scripts/lxdialog/Makefile.am
utils/conf/scripts/lxdialog/Makefile.in
utils/conf/scripts/lxdialog/checklist.c
utils/conf/scripts/lxdialog/colors.h
utils/conf/scripts/lxdialog/dialog.h
utils/conf/scripts/lxdialog/inputbox.c
utils/conf/scripts/lxdialog/lxdialog.c
utils/conf/scripts/lxdialog/makefile.lx
utils/conf/scripts/lxdialog/menubox.c
utils/conf/scripts/lxdialog/msgbox.c
utils/conf/scripts/lxdialog/textbox.c
utils/conf/scripts/lxdialog/util.c
utils/conf/scripts/lxdialog/yesno.c
2006-05-23 chy
* fix a bug only exist in MingW (for OS--elastos 2 ).
* in order to support elastos 2, I will change skyeye-mach-pxa*.c ... in the future. Makefile.win also need change.
* Changed files:
arch/arm/common/armmem.[ch]
2006-04-24 chy (REL_1_2_RC7_3)
* for more stable and useable, change exit FUN to skyeye_exit FUN and change display_all_support FUN
* In the future, if you want to use exit() FUN in skyeye, please use skyeye_exit() instead.
* Changed files:
arch/arm/common/arm_arch_interface.c
arch/arm/common/armengr.c
arch/arm/common/arminit.c
arch/arm/common/armmem.c
arch/arm/common/armmmu.c
arch/arm/common/armsupp.c
arch/arm/common/armsym.c
arch/arm/common/mmu/arm7100_mmu.c
arch/arm/common/mmu/arm920t_mmu.c
arch/arm/common/mmu/arm926ejs_mmu.c
arch/arm/common/mmu/maverick.c
arch/arm/common/mmu/sa_mmu.c
arch/arm/common/mmu/xscale_copro.c
arch/arm/dbct/tb.c
arch/arm/mach/skyeye_mach_cs89712.c
arch/arm/mach/skyeye_mach_ep7312.c
arch/arm/mach/skyeye_mach_lh79520.c
arch/arm/mach/skyeye_mach_s3c44b0.c
arch/arm/mach/skyeye_mach_sa.c
arch/arm/mach/skyeye_mach_sharp.c
arch/bfin/common/bfin-dis.c
arch/bfin/common/bfin_arch_interface.c
arch/bfin/mach/bf533_io.c
arch/coldfire/common/i.c
arch/coldfire/common/memory.c
device/net/skyeye_net_vnet.c
utils/config/skyeye_config.c
utils/config/skyeye_options.c
utils/debugger/skyeye2gdb.c
utils/main/skyeye.c
utils/main/skyeye.h
2006-04-15 chy (REL_1_2_RC7_2)
* fix remote debug for READ and WRITE byte
* Changed files:
utils/main/skyeye.c
utils/debugger/skyeye2gdb.c
utils/debugger/arch_reg.c
utils/config/skyeye_types.h
utils/config/skyeye_config.h
arch/coldfire/common/cf_arch_interface.c
arch/bfin/common/bfin_arch_interface.c
arch/arm/common/armvirt.c
arch/arm/common/arm_arch_interface.c
Makefile
2006-04-12 chy (REL_1_2_RC7_1)
* fix remote_interrupt test bug: put this test from
ARMul_DoProg::arminit.c to ARMul_EMulate32::armemu.c, and test one time between 2000 instrs. should set 2000 in skyeye.conf. I will do it in the future
* Changed files:
arch/arm/common/armemu.c
arch/arm/common/arminit.c
2006-04-12 chy (REL_1_2_RC7)
* add ICE breakpoint debug function for SkyEye interpretting execution.
* can support other 32bit cpu, now tested on ARM cpus.
* changed files:
Makefile
arch/arm/common/armdefs.h
arch/arm/common/armemu.c
utils/debugger/arch_reg.c
utils/debugger/skyeye2gdb.c
utils/debugger/skyeye2gdb.h
* NOTICE!
benno changed skyeye_mach_pxa250.c, we also should change
skyeye_mach_pxa270.c for the same bug
2006-04-12 chy
* fix bug for debuging arm with mmu (REL_1_2_RC6_3)
* Changed files:
utils/debugger/arch_reg.c
2006-04-04 chy
* now, ecos for s3c2410 can run on skyeye(mmu disable).
* for eCos on s3c2410. SRCPND will change the INTPND, INTOFFSET,
* so when write SRCPND, the interrupt should be updated
* (Thank Zhao Tan!)
* Changed files:
arch/arm/mach/skyeye_mach_s3c2410x.c
2006-03-22 benno
* Fix timer interrupt acknowledgement bug on pxa25x target.
* Removed dead code in skyeye_mach_pxa250.c
* changed files:
arch/arm/mach/skyeye_mach_pxa250.c
2006-03-20 ksh
* add some friendly exit code.
* modified files:
utils/config/skyeye_config.c
utils/config/skyeye_config.h
utils/main/skyeye.c
2006-03-18 ksh
* add a TODO file to indicate our development plan. I list some features, feel free to add or modify.
* added files:
TODO
2006-02-26 chy
* update arch/coldfire/common/Makefile, now when you make CC=gcc-x.x,
all src are compiled by gcc-x.x
* changed files:
arch/coldfire/common/Makefile
2006-02-22 chy
* fix a bug about remote_debug
* add strongarm,blackfin testsuit in auto_test
* changed files:
arch/arm/common/arminit.c
utils/tools/auto_test/auto_test
2006-02-18 ksh
* enable uClinux kernel for blackfin platform.
* correct the read/write of memory of blackfin
* reverse the previous bfd load. change lma load to vma load in utils/main/skyeye.c for run blackfin.This issue needs to be dig into......
* changed files:
utils/main/skyeye.c
arch/blackfin/commom/iomem.c
arch/blackfin/mach/bf533_io.c
2006-02-16 chy
* change in 2006-02-15 is not correct.
* according p35 in ARMARM book, we should consider SYSTEMMODE as
privileged mode. Add SYSTEM32MODE and fix MSR instr (include translate and DBCT) simulation
* update skyeye.c to allow binary image kernel can run
* update auto_test tools, add cs89712 auto test
* changed files
utils/main/skyeye.c
utils/tools/auto_test/auto_test
arch/arm/common/{armemu.c, armcopro.c, armdefs.h, armsupp.c,mmu/tlb.c}
arch/arm/dbct/arm2x86_psr.c
NOTICE: compared with skyeye 2006-02-14, just changed armemu.c:: case
TRAP_SET_CPSR (about 4120 line)
CHANGE "if (state->Bank > 0) {"
TO "if (state->Mode != USER26MODE && state->Mode !=USER32MODE){"
2006-02-15 chy
* change in 2006-02-14 is not correct.
* according p165 in ARMARM book, we should consider SYSTEMMODE. Add SYSTEM32MODE and fix MSR instr (include translate and DBCT) simulation
* changed files
arch/arm/common/{armemu.c, armcopro.c, armdefs.h, armsupp.c, mmu/tlb.c}
arch/arm/dbct/arm2x86_psr.c
2006-02-14 chy
* fix a DBCT bug. when cpu is in user or system mode, can exec change cpsr instr
* update auto_test tools: add pxa27x auto test
* changed files:
arch/arm/common/armemu.c
utils/tools/auto_test/auto_test
2006-02-13 chy
* update auto-test tools
* changed files:
utils/tools/auto_test/{README, daily_test.sh, auto_test}
2006-02-12 chy
* fix DBCT bug for CLZ instruction translation in arm2x86_dp.c
* chage logical NOT to bit NOT in SUB instrs translation in arm2x86_dp.c
* change a little in Makefile
* change auto text tools
* modifed files:
arch/arm/dbct/arm2x86_dp.c
Makefile
utils/tools/auto_test/{daily_test.sh, auto_test}
*added file
utils/tools/auto_test/exec_skyeye_dbct.sh
2006-1-27 dwon
* remove "state->Exception" variable (from ARMul_State), which is unnecessary and could introduce bugs
* modified files:
arch/arm/common/armcopro.c
arch/arm/common/armdefs.h
arch/arm/common/armemu.c
arch/arm/common/arminit.c
arch/arm/common/armsupp.c
arch/arm/dbct/arm2x86.h
arch/arm/mach/skyeye_mach_at91.c
arch/arm/mach/skyeye_mach_cs89712.c
arch/arm/mach/skyeye_mach_ep7312.c
arch/arm/mach/skyeye_mach_lpc.c
arch/arm/mach/skyeye_mach_lpc2210.c
2006-1-26 dwon
* rewrite lh79520-irqs.h so that it can be distributed under GPLv2 "or any later version"
* added files:
arch/arm/mach/lh79520_irq.h
* deleted files:
arch/arm/mach/lh79520-irqs.h
* modified files:
arch/arm/mach/skyeye_mach_lh79520.c
Makefile
2006-1-25 dwon
* add support for LH79520 Chip ID register (in RCPC)
* modified files:
arch/arm/mach/lh79520.h
arch/arm/mach/skyeye_mach_lh79520.c
2006-1-21 ksh
* add a more friendly hint when missing the image option
* motified files:
utils/main/skyeye.c
2006-1-9 chy
* add a patch from Dwayne C. Litzenberger <dlitz5321@dlitz.net> to
* support small/tiny pagetable
* modified files:
arch/arm/common/mmu/tlb.c
arch/arm/common/mmu/tlb.h
2006-1-8 ksh
* add INTMR3 and INTMR2 defination in skyeye_mach_ep7312.c,so rtems can run without workaround code
* modified files:
arch/arm/mach/skyeye_mach_ep7312.c
arch/arm/mach/clps7110.h
2006-1-5 ksh
* add a patch from Dwayne C. Litzenberger <dlitz5321@dlitz.net> to fix rom initialization
* modified files:
utils/main/skyeye.c
2006-1-5 ksh
* fix a bug that make xscale testcase can not run normally.
* modified files:
arch/arm/common/arm_arch_interface.c
2005-12-29 ksh
* get rid of some debugging message printed by remote debug .If you need these message , you can get it by define macro in skyeye2gdb.c
* modified files:
utils/debugger/skyeye2gdb.c
arch/arm/common/armos.c
2005-12-28 ksh
* add linxz's patch that we can stop skyeye by press Ctrl+C in the gdb side, but now only arm simulation is supported.
* modified files:
utils/debugger/skyeye2gdb.c
arch/arm/common/arminit.c
2005-12-28 ksh
* fix a bug that can not stop on arm breakpoint instruction
* modified files:
utils/debugger/skyeye2gdb.c
utils/debugger/arch_reg.c
arch/arm/common/armos.c
2005-12-25 ksh
* add a simple script to support daily build and test skyeye source in the cvs
* added files:
utils/tools/auto_test/daily_test.sh
utils.tools/auto_test/README.daily
* add an option in skyeye.c for list all the supported arch and cpu information
* changed files:
utils/main/skyeye.c
2005-12-20 koodailar
* add support for mingw on windows, including tap-win32 and gtk
* changed files:
arm/mach/*.c
arm/common/armcoproc.c
arm/common/armdefs.h
arm/common/arminit.c
arm/common/armmem.c
arm/common/arm_arch_interface.c
arm/common/mmu/arm7100_mmu.c
arm/common/mmu/arm920t_mmu.c
arm/common/mmu/arm926ejs_mmu.c
arm/common/mmu/cache.c
arm/common/mmu/sa_mmu.c
arm/common/mmu/tlb.c
arm/common/mmu/wb.c
arm/common/mmu/xscale_copro.c
arm/dbct/arm2x86.c
arm/dbct/arm2x86.h
arm/dbct/arm2x86_coproc.c
arm/dbct/arm2x86_dp.c
arm/dbct/arm2x86_mem.c
arm/dbct/tb.c
arm/dbct/arm2x86_movl.c
arm/dbct/arm2x86_mul.c
arm/dbct/arm2x86_other.c
arm/dbct/arm2x86_psr.c
arm/dbct/arm2x86_shift.c
arm/dbct/arm2x86_test.c
bfin/mach/bf533_io.c
device/flash/armflash.c
device/flash/skyeye_flash.c
device/flash/skyeye_flash.h
device/lcd/dev_lcd_ep7312.c
device/lcd/dev_lcd_pxa.c
device/lcd/dev_lcd_s3c2410.c
device/lcd/skyeye_lcd.c
device/net/dev_net_cs8900a.c
device/net/dev_net_rtl8019.c
device/net/dev_net_s3c4510b.c
device/net/skyeye_net.c
device/net/skyeye_net_tuntap.c
device/net/skyeye_net_vnet.c
utils/config/skyeye_arch.c
utils/config/skyeye_config.h
utils/config/skyeye_options.h
utils/debugger/arch_reg.c
utils/debugger/skyeye2gdb.c
* added files:
utils/tool/dev-cpp_support/skyeye-win.dev
utils/tool/dev-cpp_support/skyeye-win.layout
device/net/skyeye_net_tap.c
utils/main/ide.py
utils/main/setup.py
utils/stub/mingw_help.c
utils/stub/mingw_help.h
* comment
1. Build SDL
the default SDL implementation disabled stdin and stdout, i enabled them
You can do the same thing by modifying \SDL-1.2.9\src\main\macos\SDL_main.c
and uncomment *fclose(stdout)* in static void cleanup_output(void)
then
./configure --prefix=/mingw/
make
make install
2. Build skyeye
quite normal. But devcpp(mingw) does not know `pkg-config gtk+-2.0 --cflags --libs`,
so I insert the result by hand. You have to make some change to the default
path. On my machine it is "-LD:/Dev-cpp....". I think you understand what i mean
3. Build python
actually *.py script is satisfiable. But someone says that .exe is more suitable for
windows, because not everyone have python installed. So i make an exe file. You can do
it too, by
python setup.py py2exe
In order to make python look beautiful, i use Tix package. However the default
implementation of py2exe ignored the Tix tarball. So i modified a setup.py to
direct its action.
4. For gtk
after install GTK-Development-Environment-2.2.4-3.exe, modify include/glib-2.0/glib/gwin32.h,
and comment line 72 and 73
5. For tap-win32
1. install tap-win32 in openvpn
2. original net adapter->properties->advanced
choose "allow other network users to ..."
3. by default, the new tap adapter will have the address 191.168.0.1
do not change it.
2005-12-4 ksh
* add some reg definition for blackfin and coldfire, So we can remote debug on these platform
* changed files:
utils/debugger/skyeye2gdb.c
utils/debugger/skyeye2gdb.h
* added files:
utils/debugger/arch_reg.c
utils/debugger/arm_regdefs.h
utils/debugger/cf_regdefs.h
2005-12-3 ksh
* modify skyeye2gdb.c to support remote debug on mutilple architectures
* changed files:
arch/bfin/common/bfin_arch_interface.c
arch/bfin/common/iomem.h
utils/config/skyeye_arch.c
utils/config/skyeye_config.h
utils/config/skyeye_types.h
utils/debugger/skyeye2gdb.c
utils/main/skyeye.c
2005-12-3 ksh
* Added coldfire simulation,now coldfire can not run linux,just execute some instructions.
* added file:
arch/coldfire/
* changed files:
Makefile
utils/config/skyeye_config.h
utils/config/skyeye_config.c
utils/config/skyeye_options.h
utils/config/skyeye_options.c
utils/main/skyeye.c
2005-11-29 benno
* Added option to allow compilation of a static binary
* Changed files:
README
Makefile
2005-11-29 benno
* Wrote ELF loader so that libbfd is not required. Enabled by NO_BFD compile option.
* Changed files:
README
Makefile
utils/main/skyeye.c
* Added files:
utils/main/elf32.h
2005-11-16 chenyu
fix some bug when compiling on cygwin
* changed file:
arch/arm/mach/skyeye_mach_lpc2210.c
Makefile
2005-11-15 ksh
* commit linxz's code for lpc2210 simulation, lots of thanks to him.
* Added file:
arch/arm/mach/skyeye_mach_lpc2210.c
* Changed files:
arch/arm/common/arm_arch_architecture.c
Makefile
2005-11-15 ksh
* fix the bug in bfin simualation that will error under gcc4 compilation
* Changed file:
arch/bfin/common/iomem.c
2005-10-24 teawater
* Add DBCT_TEST_SPEED function. (To use this function, open "#define DBCT_TEST_SPEED" in arch/arm/common/armdefs.h & recompile skyeye. Set "dbct_test_speed_sec:20" in config file to set test sec.)
* Correct a little bug in dbct.
* Add cache all tb address in dbct.
* Change TB_LEN to 1024.
* Add tb last use addr function.
* Add DBCT local tb branch directly jump function.
* Add compile switch for DBCT GDB RSP function. (To use this function, open "#define DBCT_GDBRSP" in arch/arm/common/armdefs.h & recompile skyeye.)
* remove "tb_translate_find".
* Changed files:
arch/arm/common/armdefs.h
arch/arm/common/arminit.c
arch/arm/common/armio.c
arch/arm/dbct/arm2x86.c
arch/arm/dbct/arm2x86.h
arch/arm/dbct/arm2x86_dp.h
arch/arm/dbct/arm2x86_movl.h
arch/arm/dbct/arm2x86_other.c
arch/arm/dbct/arm2x86_other.h
arch/arm/dbct/arm2x86_shift.c
arch/arm/dbct/arm2x86_shift.h
arch/arm/dbct/arm2x86_test.h
arch/arm/dbct/tb.c
arch/arm/dbct/tb.h
arch/arm/mach/skyeye_mach_at91.c
arch/arm/mach/skyeye_mach_at91rm92.c
arch/arm/mach/skyeye_mach_cs89712.c
arch/arm/mach/skyeye_mach_ep7312.c
arch/arm/mach/skyeye_mach_ep9312.c
arch/arm/mach/skyeye_mach_ep9315.c
arch/arm/mach/skyeye_mach_lh79520.c
arch/arm/mach/skyeye_mach_lpc.c
arch/arm/mach/skyeye_mach_ns9750.c
arch/arm/mach/skyeye_mach_s3c2410x.c
arch/arm/mach/skyeye_mach_s3c2440.c
arch/arm/mach/skyeye_mach_s3c44b0.c
arch/arm/mach/skyeye_mach_s3c4510b.c
utils/config/skyeye_config.h
utils/config/skyeye_options.c
2005-10-10 walimis
* Use "indent -i8 -bli8 -bls -br -ts8" to reformat all codes.
* Use dos2unix to convert some dos format
* Changed files:
all files
2005-10-08 walimis
* Combine ksh's patches to cvs
* Now skyeye can support blackfin architecture.
* Changed files:
utils/config/skyeye_options.c
2005-10-1 ksh
* add BlackFin architecture, You can download its datasheet from www.Analog.com and get its
* toolchain and uclinux source code from blackfin.uclinux.org
* add support for mutil architecture. Get rid of arm related code from utils.
* Added directory and files:
arch/bfin/
arch/arm/common/arm_arch_interface.c
utils/config/skyeye_defs.h
utils/config/skyeye_types.h
utils/config/skyeye_arch.c
utils/config/skyeye_arch.h
* changed files:
Makefile
utils/config/skyeye_config.h
utils/config/skyeye_config.c
utils/config/skyeye_options.h
utils/config/skyeye_options.c
utils/main/skyeye.c
arch/arm/common/armdefs.h
arch/arm/common/arminit.c
arch/arm/common/armmem.c
arch/arm/common/armmmu.c
arch/arm/common/mmu/arm7100_mmu.c
arch/arm/common/mmu/arm920t_mmu.c
arch/arm/common/mmu/arm926ejs_mmu.c
arch/arm/common/mmu/sa_mmu.c
arch/arm/common/mmu/xscale_copro.c
arch/arm/dbct/tb.c
device/lcd/skyeye_lcd_gtk.c
2005-09-28 walimis
* Rewrite pxa simulation to support new framework.
* Changed files:
utils/config/skyeye_options.c
arch/arm/common/armio.c
arch/arm/common/armio.c
arch/arm/mach/skyeye_mach_pxa250.c
arch/arm/mach/skyeye_mach_pxa270.c
2005-09-26-2 teawater
* fix bug , 64bit multply:
arch/arm/common/tb.c
arch/arm/dbct/arm2x86_other.h
2005-09-26 teawater
* Add some instructions in DBCT to support armv5(include XScale). Changed files:
arch/arm/common/armemu.c
arch/arm/dbct/arm2x86.c
arch/arm/dbct/arm2x86.h
arch/arm/dbct/arm2x86_dp.c
arch/arm/dbct/arm2x86_dp.h
arch/arm/dbct/arm2x86_movl.c
arch/arm/dbct/arm2x86_movl.h
arch/arm/dbct/arm2x86_other.c
arch/arm/dbct/arm2x86_other.h
arch/arm/dbct/arm2x86_test.c
arch/arm/dbct/arm2x86_test.h
arch/arm/dbct/arm2x86_coproc.c
arch/arm/dbct/arm2x86_coproc.h
arch/arm/dbct/arm2x86_mem.c
arch/arm/dbct/arm2x86_mem.h
arch/arm/dbct/arm2x86_mul.c
arch/arm/dbct/arm2x86_mul.h
arch/arm/dbct/arm2x86_psr.c
arch/arm/dbct/arm2x86_psr.h
arch/arm/dbct/arm2x86_shift.c
arch/arm/dbct/arm2x86_shift.h
arch/arm/dbct/tb.c
arch/arm/dbct/tb.h
arch/arm/dbct/arm2x86_self.h
arch/arm/dbct/list.h
2005-09-22 walimis
* Rewrite flash simulation. Changed files:
Makefile
arch/arm/common/armmem.c
arch/arm/common/armsupp.c
arch/arm/mach/skyeye_mach_pxa250.c
arch/arm/mach/skyeye_mach_pxa270.c
device/skyeye_device.c
device/flash/armflash.c
device/flash/skyeye_flash.c
device/flash/skyeye_flash.h
utils/config/skyeye_config.h
utils/config/skyeye_options.c
utils/config/skyeye_options.h
*Added files:
device/flash/dev_flash_intel.c
device/flash/dev_flash_intel.h
2005-9-20 benno
* Prived a NO_NET option, to disable compiling network device files
* Changes files:
Makefile
README
device/skyeye_device.c
2005-9-20 benno
* Provided a NO_DBCT option, to disable compiling DBCT files.
* Changed file:
Makefile
README
arch/arm/common/armemu.c
arch/arm/common/arminit.c
arch/arm/common/armmem.c
arch/arm/common/mmu/wb.c
utils/config/skyeye_options.c
2005-9-19 chy
* pxa27x CP6 simualtion over. now linux needn't be changed.
* Changed file:
arch/arm/common/armcopro.c
arch/arm/common/armdefs.h
arch/arm/common/arminit.c
arch/arm/common/mmu/xscale_copro.c
arch/arm/mach/pxa.h
arch/arm/mach/skyeye_mach_pxa250.c
arch/arm/mach/skyeye_mach_pxa270.c
2005-09-15 walimis
* Remove some include files. Changed files:
device/net/dev_net_cs8900a.c
device/net/dev_net_rtl8019.c
device/net/dev_net_s3c4510b.c
* Modify for freebsd platform. Changed files:
Makefile
utils/main/skyeye.c
device/net/skyeye_net_tuntap.c
device/net/skyeye_net_vnet.c
README
2005-09-14-2 chy
* linux for pxa27x can run on skyeye, I changed linux code :(
* mainstone LCD can show now, but size isn't correct. :(
*
* changed file:
arch/arm/mach/skyeye_mach_pxa270.c
device/lcd/dev_lcd_pxa.c
2005-09-14 walimis
* Make skyeye can be compiled without lcd support.
* If you want to compile skyeye without lcd, just type:
* make NO_LCD=1 all
* Changed files:
Makefile
device/skyeye_device.c
arch/arm/mach/skyeye_mach_ep7312.c
arch/arm/mach/skyeye_mach_at91.c
arch/arm/mach/skyeye_mach_pxa250.c
arch/arm/mach/skyeye_mach_pxa270.c
2005-09-14 chy
* SkyEye-V1.0 released!
* cvs import to gro.clinux.org, using skyeye-v1 module
* add PXA27x initial simulation. PXA TouchScreen still has problem.
* added file
arch/arm/mach/skyeye_mach_pxa270.c
* changed file:
arch/arm/mach/skyeye_mach_pxa.c ---> skyeye_mach_pxa250.c
utils/config/skyeye_options.c
utils/config/skyeye_config.h
utils/main/skyeye.c (change the command option ("-f" to "-c")for skyeye configure)
arch/arm/common/armmmu.c
arch/arm/dbct/tb.c (for gcc-3.3.x compiling)
Makefile
* NOTICE: skyeye.conf for PXA has changed
if is PXA25x based Lubbock board
cpu: pxa25x
mach: pxa_lubbock
......
if is PXA27x based MainStone board
cpu: pxa27x
mach: pxa_mainstone
......
2005-09-12 chy
* SkyEye-v1.0-RC2 released!
* now SkyEye is a standalone software, which can use RSP protocol to talk with GDB.
* skyeye is changed a lot(especially the directory), But we didn't change the internal of skyeye.
* little changed files from skyeye-2005-08-03, check chy-2005-09-12 comment:
utils/debugger/skyeye2gdb.c
arch/arm/common/armos.c
arch/arm/common/armvirt.c
arch/arm/dbct/tb.c (teawater found)
2005-08-15 walimis
* Add a simple device framework to skyeye. It should be rewrited and impoved in 2.x.
* Add net controller simulation: rtl8019, cs8900a, s3c4510b.
* Add lcd controller simulation: ep7312, s3c2410, pxa.
* Flash simulation should be added into this framework in the future.
* Added files:
device/skyeye_device.c
device/skyeye_device.h
device/lcd/dev_lcd_ep7312.c
device/lcd/dev_lcd_ep7312.h
device/lcd/dev_lcd_pxa.c
device/lcd/dev_lcd_pxa.h
device/lcd/dev_lcd_s3c2410.c
device/lcd/dev_lcd_s3c2410.h
device/net/dev_net_cs8900a.c
device/net/dev_net_cs8900a.h
device/net/dev_net_rtl8019.c
device/net/dev_net_rtl8019.h
device/net/dev_net_s3c4510b.c
device/net/dev_net_s3c4510b.h
2005-07-26 Teawater
* Add simple debug function to DBCT (Such as break, step, stepi, next, nexti).
* Change DBCT that if current running TB is wrotten, it will return & translate again.
* Change insn_bank_ptr to bank_ptr in tb_setdirty.
* Add "sim reg file" command to help DBCT debug.
* Add dynamic TBT & TBP function in DBCT to make it can be used in small memory PC. The
default options of DBCT are static TBT & dynamic TBP (64M) & they can be set in config
file.
* Add for tb_setdirty fflash cache function.
* Add bx instruction support.
* Debug for cs89712.
* Change align in tb_find & tb_setdirty to make speed up.
* Change DBCT that translate stop if the code must return.
* Rewrite tb_find & tb_setdirty to make code clear & speed up.
* changed files:
sim/arm/armdefs.h
sim/arm/armemu.c
sim/arm/skyeye_config.h
sim/arm/skyeye_mach_cs89712.c
sim/arm/skyeye_options.c
sim/arm/wrapper.c
sim/arm/dbct/arm2x86.c
sim/arm/dbct/arm2x86.h
sim/arm/dbct/arm2x86_other.c
sim/arm/dbct/arm2x86_other.h
sim/arm/dbct/arm2x86_shift.c
sim/arm/dbct/arm2x86_test.c
sim/arm/dbct/arm2x86_test.h
sim/arm/dbct/tb.c
sim/arm/dbct/tb.h
sim/arm/mmu/wb.c
2005-07-06 Teawater
* DBCT for all of the CPU with MMU.
* change some write back code of DBCT. (according to arm_arm A2-18)
* debug for CYGWIN function call of DBCT.
* add auto set the console to default state function.
* change gcc optimize flag of DBCT code that to make it can compile with the newest gcc.
* changed files:
sim/arm/dbct/arm2x86.h
sim/arm/dbct/arm2x86_dp.c
sim/arm/dbct/arm2x86_mem.c
sim/arm/dbct/arm2x86_movl.c
sim/arm/dbct/arm2x86_movl.h
sim/arm/dbct/arm2x86_other.c
sim/arm/dbct/arm2x86_other.h
sim/arm/dbct/arm2x86_shift.c
sim/arm/dbct/arm2x86_shift.h
sim/arm/dbct/tb.h
sim/arm/Makefile.in
sim/arm/arm7100_mmu.c
sim/arm/arm920t_mmu.c
sim/arm/armdefs.h
sim/arm/sa_mmu.c
sim/arm/skyeye_mach_ep7312.c
sim/arm/wrapper.c
sim/arm/xscale_copro.c
2005-06-14 TeaWater
* DBCT for CPU with MMU. now skyeye-0.9.6
* debug for init of sbc instruction
* add sim command for debug (see it in the bottom of wrapper.c)
* change some write back code of dbct (according to arm_arm A2-17)
* changed file:
sim/arm/dbct/arm2x86_*.[ch]
sim/arm/dbct/tb.[ch]
sim/arm/arm7100_mmu.c
sim/arm/armdefs.h
sim/arm/armemu.c
sim/arm/arminit.c
sim/arm/armmmu.[ch]
sim/arm/wrapper.c
2005-05-11 Chy
* make the skyeye-0.9.4 run on cygwin. now skyeye-0.9.5 released!
* changed file:
sim/arm/armdefs.h
sim/arm/dbct/arm2x86.[ch]
sim/arm/dbct/arm2x86_mem.c
2005-04-22 Yin Wen Chao
* open teawater's code in bank_ptr, and add insn_bank_ptr for dbct
* add a global variable to store the bank_ptr result in mem_*_*. The
coresponding real_*_* just use the result directly, no need to call bank_ptr again
* move tb_setdirty from mem_write_* to real_write_*
* changed file:
sim/arm/dbct/tb.c
sim/arm/armmem.c
2005-04-12 walimis
* add s3c2440 simulation
* add files: add s3c2440 mach.
sim/arm/skyeye_mach_s3c2440.c
sim/arm/s3c2440.h
* changed files: add s3c2440 mach.
sim/arm/skyeye_options.c
sim/arm/Makefile.in
sim/arm/Makefile.in.gtk-1.2
sim/arm/Makefile.in.gtk-2.0
2005-04-07 Yin Wen Chao
* fix little bug for dbct init
* changed file:
sim/arm/arminit.c
2005-04-01 teawater Yin Wenchao
* version 0.9.2
* add dynamic binary code translation, thanks for teawater's great work .
* fix a bug in flash simulation
* add directory:
sim/arm/dbct
* add files:
sim/arm/dbct/arm2x86.[ch]
sim/arm/dbct/arm2x86_dp.[ch]
sim/arm/dbct/arm2x86_mem.[ch]
sim/arm/dbct/arm2x86_movl.[ch]
sim/arm/dbct/arm2x86_mul.[ch]
sim/arm/dbct/arm2x86_other.[ch]
sim/arm/dbct/arm2x86_psr.[ch]
sim/arm/dbct/arm2x86_shift.[ch]
sim/arm/dbct/arm2x86_test.[ch]
sim/arm/dbct/tb.[ch]
sim/arm/dbct/arm2x86_self.h
sim/arm/dbct/list.h
* changed files:
sim/arm/armdefs.h
sim/arm/armemu.c
sim/arm/arminit.c
sim/arm/armmem.[ch]
sim/arm/skyeye_options.c
sim/arm/wrapper.c
sim/arm/Makefile.in
sim/arm/skyeye_mach_lpc.c
sim/arm/skyeye_config.h
sim/arm/skyeye_flash.c
2005-03-30 YIN Wenchao Ye Wen(wenye@cs.ucsb.edu)
* version 0.9.0
* add flash simulation, many thanks to Ye Wen .
* add files:
sim/arm/armflash.[ch]
sim/arm/skyeye_flash.[ch]
* changed files:
sim/arm/skyeye_config.h
sim/arm/skyeye_options.c
sim/arm/armmem.c
sim/arm/skyeye_mach_pxa.c
sim/arm/Makefile.in
2005-02-25 zhangzhichao(zhang_zhichao@hotmail.com)
watercloud(watercloud@xfocus.org)
* base on version 0.8.7
* integrate insight with skyeye, many thanks to watercloud.
* port skyeye to cygwin.
1) temporary disable network simulation on win32.
2) lcd simulation on win32 need gtk support.There are many way to run gtk
on win32.
we had test the following two methods.
a)using Xserver(XWin) which delivered with cygwin
b)using GTK binary release for cygwin on
http://web.sfc.keio.ac.jp/~s01397ms/cygwin/index.html.en
* fix some bugs in makefile, let skyeye can compile in separate path
* Known bug: currently skyeye+insight on cygwin can not corrently deal with
console input&output.
Any comments about this issue,pls share with us.thanks.
* added file:
sim\arm\skyeye_stub_win32.c
* changed files:
gdb\Makefile.in
sim\Makefile.in
sim\common\Make-common.in
sim\common\Makefile.in
sim\arm\Makefile.in
sim\arm\skyeye_mach_at91.c
sim\arm\skyeye_mach_at91rm92.c
sim\arm\skyeye_mach_cs89712.c
sim\arm\skyeye_mach_ep7312.c
sim\arm\skyeye_mach_ep9312.c
sim\arm\skyeye_mach_lh79520.c
sim\arm\skyeye_mach_lpc.c
sim\arm\skyeye_mach_s3c2410x.c
sim\arm\skyeye_mach_s3c44b0.c
sim\arm\skyeye_mach_s3c4510b.c
sim\arm\skyeye_net_tuntap.c
sim\arm\skyeye_net_vnet.c
sim\arm\skyeye-ne2k.c
2005-01-19 walimis shiyang
* add s3c2410x simulation, many thanks to shiyang.
* add files: add s3c2410x mach. now it can boot 2.4.18 kernel.
sim/arm/skyeye_mach_s3c2410x.c
sim/arm/s3c2410x.h
* changed files: add s3c2410x mach.
sim/arm/skyeye_options.c
sim/arm/Makefile.in
2005-01-07 chenyu
* version 0.8.6
* make gcc-2.95 can compile skyeye
* add and commit teawater' codes for armmem.c
* add -O2 compile option for Make
* changed file
sim/arm/arm7100_mmu.c
sim/arm/arm920t_mmu.c
sim/arm/armsym.c
sim/arm/sa_mmu.c
sim/arm/skyeye_mach_at91.c
sim/arm/skyeye_mach_cs89712.c
sim/arm/xscale_copro.c
sim/arm/mmu/cache.c
sim/arm/mmu/tlb.c
sim/arm/mmu/wb.c
sim/arm/armmem.c
gdb/top.c
./Makefile.in
sim/arm/Makefile.in
./README
2004-12-23 walimis <wlm@student.dlut.edu.cn>
* skyeye_mach_s3c4510b.c: modify mach_init
2004-12-5 chenyu
* change skyeye_options.c for eclipse,only for test
2004-12-2 chenyu
* make the gcc-3.4 can compile skyeye
* changed file:
sim/arm/skyeye_mach_at91rm92.c
sim/arm/skyeye_mach_cs89712.c
sim/arm/skyeye_mach_lh79520.c
sim/arm/skyeye_mach_lpc.c
gdb/arm-tdep.c
2004-11-30 YinWenChao
* update LCD simulation on ep7312(add support to depth 12 )
* add LCD simulation on pxa (successfully ported minigui )
* add LCD simulation on at91 (framebuffer works,but minigui has
error)
* changed files: skyeye_lcd.c
skyeye_mach_ep7312.c
skyeye_mach_pxa.c pxa.h xscale-copro.c
skyeye_math_at91.c at91.h
2004-11-29 Cai Qiang <caiqiang@ustc.edu>
* add simulation of LH79520
* changed files: skyeye_options.c Makefile.in
* add files: skyeye_mach_lh79520.c, lh79520-hardware.h,
lh79520-irqs.h, serial_amba_pl011.h, lh79520.h
2004-11-26 ksh
* add energy profile function,now only support pxa
* changed file in sim/arm:
Makefile.in
armdefs.h
armemu.c
armengr.c
armengr.h
armsym.c
armsym.h
skyeye_config.h
skyeye_options.c
wrapper.c
skyeye_mach_pxa.c /*not completed*/
2004-11-24 Benno <benjl@cse.unsw.edu.au>, chenyu
* Thanks Benno, etc who developed L4 OS found bugs
* The bug is in the LoadMult function: (sim/arm/armemu.c). Basically
the value should not be updated on an abort. Without this fix data is
corrupted while running the L4 operating system. With this fix we are
able to run L4 and Linux server on top of L4.
* changed file: skyeye/sim/arm/armemu.c
2004-11-12 teawater,oyangjian
* modify ~/sim/arm/wrapper.c,skyeye_config.h,skyeye_option.c,armdefs.h
* if add below option in skyeye.conf
* step_disassemble:on[off]
* then after each step command, the skyeye will show the next instrument *
2004-11-6 Cai Qiang, walimis <wlm@student.dlut.edu.cn>
* add files for simulation of EP9312
* add EP9312 simulation, changed files: skyeye_options.c Makefile.in
* add files: skyeye_mach_ep9312.c, clps9312.h ep9312.h serial_amba.h
2004-11-4 walimis <wlm@student.dlut.edu.cn>
* clean at91rm9200 simulation code: at91rm92.h skyeye_mach_at91rm92.c
2004-11-3 walimis <wlm@student.dlut.edu.cn>
* modified at91rm9200 uart simulation. now it can boot ARMLinux.
* clean some codes of s3c4510b
* changed file: skyeye_mach_at91rm92.c, at91rm92.h,
skyeye_mach_s3c4510b.c
2004-10-30 walimis <wlm@student.dlut.edu.cn>
* add ethernet support for s3c4510b. thanks to
telpro2003@yahoo.com.cn
* add files: dev_net_s3c4510b.h
* changed files: skyeye_mach_s3c4510b.c
2004-09-29 chy
* fix some no used code for lcd address test in armmem.c
* fix some files for gtk-2.0 using pkg-config
* changed files: gdb/Makefile.in sim/arm/Makefile.in sim/arm/configure
2004-08-07 chy
* provide more info when open log file error
* add ringbuffer log function, using log:length Option
* changed files: skyeye_options.c skyeye_config.[ch] armemu.c
2004-8-7 Ksh, YinWenChao
* update LCD simulation on ep7312 (minigui can run on skyeye) (by
YiWenChao)
* add Philips LPC2xxxx CPU simulation (by Kang Suo)
* added files: lpc.h skyeye_mach_lpc.c
* changed files: skyeye_lcd.c skyeye_options.c skyeye_mach_ep7312.c
Makefile.in
2004-8-1 walimis <wlm@student.dlut.edu.cn>
* add at91rm9200 simulation and mmu for arm920t. but it isn't completed.
* correct s3c4510b interrupt simulation. thanks to
telpro2003@yahoo.com.cn
* add files: skyeye_mach_at91rm92.c, at91rm92.h,arm920t_mmu.c,
arm920t_mmu.h.
* changed files: armemu.c, armemu.h, mmu/cache.ch, skyeye_options.c
2004-07-21 LuZeTao
* luzetao make the pxa uart simulation more perfect!
* Change file:
skyeye_mach_pxa.c
2004-07-19 LianZhuLing
* add sharp lh7a400 (arm922t) CPU simulation from lianzhuling, now have not
arm922t mmu cache support
* add file:
sharp.h skyeye_mach_sharp.c
* changed file:
skyeye_option.c Makefile.in
2004-07-19 LuZeTao, chenyu
* luzetao find a solution to make linux-2.6.x output correctly
through serail: if (pxa_io.ffier&0x2){ irq |= FFUART_IRQ; } ,then
linux-2.6.x can run correctly!
* add support of xscale MMU_CacheDisabled option control in cache read or
write
* fix skyeye_mach_pxa.c refresh_irq FUN
* commit some info about xscale simulation not realized,so maybe fix in the
future. Notice 2004-07-19
* change file:
skyeye_mach_pxa.c armsupp.c xscale_copro.c
2004-06-23 chenyu
* fix skyeye_mach_pxa.c refresh_irq FUN, FFIER TIE or RAVIE, so
shoud be 3, FFIIR 0x4 or 0x2=0x6
* change file:
skyeye_mach_pxa.c
2004-06-06 chenyu, lyh
* set version 0.7.4
* fix bugs found by wenye@cs.ucsb.edu. rb_masks error in rb.c ,
malloc wb->data error in mmu_wb_init FUN in wb.c
* mmu_rb_load FUN in rb.c, mmu_rb_search FUN in rb.c, mcr MMU_PID process
in sa_mmu.c
* Change file:
mmu/rb.c mmu/wb.c sa_mmu.c
* fix bugs in LoadSMult function in armemu.c, read line 4615 for more info
* add log level, 0--no log info, 1-- pc instr, 2-- pc, instr
state->Reg[0-15], 3 --pc, instr state->Reg state->RegBank
* Change file:
armemu.c
* improve the simulation speed of SA11xx and PXAxxx
* Change file:
skyeye_mach_sa.c skyeye_mach_pxa.c
2004-05-25 chenyu
* set version 0.7.3
* fix bug provided by Carl van Schaik <cvansch@cse.unsw.EDU.AU> ,
ARMul_Emulate32 FUN in armemu.c
* fix bug that LDC STC process dataabort. ARMul_LDC ARMul_STC FUNs
in armsupp.c
* fix bug that use/system code use mrc/mcr coprocessor1, stc/ldc
coprocessor2 instr, cause underfinedinstr error. ARMul_CoProInit FUN in
armcopro.c
* Changed file:
armemu.c armsupp.c armcopro.c skyeye/gdb/top.c (for version number)
2004-05-23 chenyu, Xie Jun, Jiao Zhenqiang
* fix a bug for strongarm, xscale, just like 2004-05-09 bug,
* include LoadMult LoadSMult StoreMult StoreSMult functins.
* now, the application using dynamic lib can run correctly.
* NOTICE, not take care LDC STC intructions,look armsupp.c ARMul_LDC
ARMul_STC !!!!
* Changed files:
armemu.c armsupp.c
2004-05-09 Kang Shuo, Xie Jun, Jiao Zhenqiang,chenyu
* fix a bug for xscale,added ESP(extend small page) support in tlb.You can
refer to xscle development menual(XJ, Ksh)
* added ffuart read support in xscale(Ksh)
* Changed files:
tlb.c,tlb.h,skyeye_mach_pxa.c
2004-05-09 chenyu, Xie Jun, Jiao Zhenqiang, Kang Shuo
* fix a HUGE BUG. When skyeye simulates strongarm, xscale and other
with MMU cpus (not include ARM720T, such as ep7312), the user program uses
instruction with WriteBack Attr. to accesses a nonexist page(data abort will
happen), then the REGbase will be changed. This is a error.
* if state->lateabtSig=1, then it means Late Abort Model(Base
Updated Abort Model)
* if state->lateabtSig=0, then it means Base Restored Abort Model
* read armdefs.h for more info
* Changed files:
armcopro.c armdefs.h arminit.c skyeye_mach_at91.c skyeye_mach_cs89712.c
skyeye_mach_ep7312.c skyeye_mach_ep7312.c skyeye_mach_pxa.c
skyeye_mach_s3c44b0.c skyeye_mach_s3c4510b.c skyeye_mach_sa.c
2004-04-24 Ying Wenchao, Zeng Yi, chenyu
* optimize LCD simulation
* add Touch Screen on ep7312 simulation
* Changed files:
armdefs.h clps7110.h skyeye_lcd.c skyeye_mach_ep7312.c
2004-03-14 chenyu, Ying Wenchao, Xie Jun
* fix a printf bug
* changed file :
skyeye_lcd.c
2004-03-13 chenyu, Ying Wenchao, Xie Jun
* add LCD on ep7312 simulation
* Changed files:
deleted file:
armlcd.c
* added file:
skyeye_lcd.c
* changed file:
gdb/Makefile.in sim/arm/Makefile.in
armdefs.h armem.c skyeye_config.h skyeye_optin.c skyeye_mach_ep7312.c
2004-03-11 Kang Shuo, chenyu
* add ne2k chip on ep7312 simulation
* Important: add struct ARMul_io io in ARMul_State for more scalable
Device support
* changed files:
armdefs.h clps7110.h skyeye_mach_at91.c skyeye_mach_ep7312.c
skyeye-ne2k.[ch]
2004-01-14 Trilok Soni<trilok_soni@yahoo.co.in>, chenyu
* Trilok Soni added simulation codes for cs89712.
* new files:
ep7212.h cs89712.h skyeye_mach_cs89712.c
* changed files:
skyeye_option.c
2003-10-06 walimis <wlm@student.dlut.edu.cn>
* skyeye_mach_s3c4510b.c: clean some codes, modify interrupt routine,
now successfully support booting uclinux.
2003-09-29 aleph <aleph@develer.com>
* skyeye_options.c (split_param): put parameter name in param argument even
when no "=" is found and error
is returned.
2003-09-21 chenyu
* :don't malloc space for io addr (so skyeye couldn't eat more
mem),and process mem type in skyeye_options.c
* : add type field in mem_bank_t struct, mem_type: MEMTYPE_IO,
MEMTYPE_RAM, MEMTYPE_ROM
* : fix bug: process boot parameter :do_mem_bank_option
funtion:skyeye_options:224
* changed file: armmem.c armmem.h skyeye_config.h skyeye_options.c
2003-09-12 simoz
* changed file: sa_mmu.c
Fixed bug: Next and Step doesn't work when mmu wasn't enabled
2003-09-12 chenyu
* cancel the limit that only support one io bank in skyeye.conf,
now support more io_banks in skyeye.conf
* changed file: skyeye_config.h skyeye_options.c
*-------
* add judgement after malloc, so when malloc failed, skyeye will
exit.
* changed file: arminit.c armmem.c armsupp.c skyeye_config.c
wrapper.c mmu/rb.c
2003-09-10 simoz
* changed file: armmem.c
More checks on pointers
2003-09-10 simoz,chenyu
* changed file: armmem.c
recover clean up code from simoz: v1.4 v1.5
2003-09-10 simoz
* changed file: sa_mmu.c
checked the instruction cache in function sa_mmu_write. This will
prevent the instruction cache to differ from memory. This patch fix
the
bug #1. It's now possible to use 'step' and 'next' command in gdb
enviroment.
2003-09-03 chenyu
* add xscale simulation, and change a lot of files:
Important changes are in armemu.c(based on armemu.c in
gdb+dejagnu-20030726.tar.bz2), which support ARMv5 instructions; armcopro.c,
which support more coporcessors; armsupp.c&arminit.c, which change some init
functions.
Important added files are skyeye_mach_pxa.c, pxa.h, xscale_copro.c
please notice important comments wich strings: '2003-08-' or '2003-09-'or
'????'. Try command 'grep 2003-08- *.[ch]
2003-08-26 simoz, chenyu
* fix bugs in skyeye_mach_sa.c skyeye_options.c:
skyeye_mach_sa.c - Changed constant fd with parameter
skyeye_config.uart.fd_in.
- change fun select(1,....) to
select(skyeye_config.uart.fd_in+1,...)
skyeye_options.c - Fixed bug checking a return value.
2003-08-21 chenyu
* changed file:
* add function to log skyeye state info to a log file:
skyeye_config.h: modify macro: SKYEYE_OUTREGS, SKYEYE_OUTMOREREGS, add
log_config_t define... all for log_config_t
skyeye_config.c: disable old skyeye_logfd process,the process now is in
do_log_option::skyeye_option.c
skyeye_options.c: add fun do_log_option to log skyeye info to a log file
in skyeye.conf, could add a line like below:
log: logon=0, logfile=/tmp/sk1.log, start=100000, end=200000
logon = 0 or 1 0:doesn't log, 1 do log
logfile: the filename which have the log info
start: the start point of instruction flow to log, should >=0
end: the end point of instruction flow to log
* fix bug:
skyeye_config.c::line 79: error :: only malloc string_i byte!
from
params[num_params] = malloc(string_i);
to
params[num_params] = malloc((string_i+16)&0xfffffff0);
2003-8-09 walimis <wlm@student.dlut.edu.cn>
* changed file:
skyeye_config.h skyeye_options.c :
add boot parameter to mem_bankoption.
add start_address to skyeye_config_t struct. this member is the start
address of program.
if a mem_bank has this parameter, the addr of this mem_bank should
should be the start address of the program. e.g.
mem_bank: map=M, type=RW, addr=0x10000000, size=0x00000800,
file=./loader.bin, boot=yes
then 0x10000000 should be the start address.
wrapper.c: before program is running, set the PC of CPU to the
start_address.
2003-8-08 walimis <wlm@student.dlut.edu.cn>
* changed file:
skyeye_config.h, skyeye_options.c:add uart option, which has fd_in
and fd_out. now you can use them to connect real serial port.
you can add an option to skyeye.conf as below:
uart: fd_in=/dev/ttyS0, fd_out=/dev/ttyS0.
then use a terminal connect host's COM1, you can see the output in
the terminal.
skyeye_mach_ep7312.c, skyeye_mach_at91.c: replace stdin and stdout
with new uart option, fd_in and fd_out.
wrapper.c: add skyeye_option_init function before skyeye_read_config.
2003-8-01 simoz
* changed file:
armmem.c
cleanup code
2003-8-01 chenyu
* changed file:
skyeye_mach_at91.c :more strict exam in io_write_word and
io_read_word when os access unknown addr
armmem.c : use SKYEYE_OUTREGS in some place
armemu.c : use SKYEYE_OUTREGS in line379
skyeye_config.h : add a info function macro: SKYEYE_OUTREGS
2003-7-21 walimis <wlm@student.dlut.edu.cn>
* add files:skyeye_mach_s3c44b0.c and s3c44b0.h to support s3c44b0.
but it's not completed.
* change files: skyeye_options.c and Makefile.in to support s3c44b0.
* change files: skyeye_mach_s3c4510b.c. correct timer support.now it
can boot uclinux for s3c4510b.
2003-7-17 walimis <wlm@student.dlut.edu.cn>
* change file:skyeye_config.h, add "mach_io_reset" and "mach_update_int"
members to machine_config_t. now every machine has its
io_reset and update_int functions. then we can remove update_int
from armio.c.
* change file:armio.c, clean some routines. later we should move the lcd
routine somewhere.
* change file:armio.h, remove struct io_state_t.
* change file:armdefs.h, remove io_state_t from ARMul_State struct.
* change file:arminit.c, remove io_reset.
* change file:armmem.c, clean codes.
* change file:wrapper.c, move io_reset here.
* change file:skyeye_mach_*.c, add io_state struct to every machine.
* add file:at91.h for skyeye_mach_at91.c
* :s3c4510b.h.
* change file:skyeye-ne2k.c, change state->io.intsr to state->interrupt.
update_int to mach_update_int
2003-07-11 lyh chenyu
* : skyeye-v0.3.0 is released.
* : merge strongarm simulation from lyh based on skyeye-v0.2.6 with
skyeye-v0.2.9
* : change the simulation of read/write byte/halfword process. the changed
files include armvirt.[ch] armmmu.[ch]
* : armem.[ch] skyeye_mach_*.* *_mmu.*
* : change the simulation of write buffer process. the access size be
changed from word to byte. the changed files
* : include mmu/wb.*
2003-06-06 chenyu
* :support vnet driver ver0.2, now host OS <----> many guest OSes ok!
* add file:if_vnet.h, should be same as vnet/if_vnet.h
* change file: sim/arm/skyeye_net_vnet.c,
sim/arm/skyeye_net_tuntap.c(little change)
* notice: only one skyeye file config hostip=x.x.x.x, other skyeye file
config hosip=0.x.x.x, then
* : skyeye know only open dev file for hostif one time.
2003-05-31 chenyu
* :move to gdb-5.3
* change file: gdb/main.c gdb/Makefile.in sim/common/run.c
sim/common/Make-common.in sim/arm/*
2003-05-26 chenyu
* fixed bugs: the 8019's BNRY is been changed when xmit packet in driver,
because when outb(NE_DMA), the skyeye will read the content of NE_DMA, so
the BNRY changed.
* change file:
armvirt.c : fix bug: when wirte byte or halfword in io addr
space, shoud not read it first.
skyeye_config.h: add: add ioaddr_config struct and field in
skyeye_config global variable
skyeye_options.c: add: get options and set them to ioaddr_config
struct in skyeye_config global variable
2003-04-27 chenyu
* aim: change skyeye to support vnet or tuntap net device at the same
time
* add file: skyeye_net.c skyeye_net_tuntap.c skyeye_net_vnet.c
* change file: skyeye_config.[ch] skyeye_options.c skyeye-ne2k.c
Makefile.in ...
2003-4-2 walimis <walimi@peoplemail.com.cn>
* add skyeye.h,include some macros for debug.and replace DEB_PRINT in
skyeye_mach_ep7312.c.add include file skyeye.h to armdef.h
* add files below to support samsung s3c4510b.but now it hasn't been
completed:
skyeye_mach_s3c4510b.c
s3c4510b.h
* modify skyeye_armmach.h to support samsung s3c4510b.
add mach "s3c4510b".
* modify Makefile.in to add skyeye_mach_s3c4510b.c.
* add our skyeye's ChangeLog file.
rename original ChangeLog to ChangeLog.old.
* add net option.
2003-01-31: yangye,chenyu
* skyeye-v0.2
* support NIC simulation
2002-12-14: chenyu
* skyeye-v0.1
* add function to parse skyeye.conf, support ucosii and uclinux
2002-12-01: chenyu
SkyEye Project initialized.
|