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
|
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
* 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 blacfin 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 KangSuo, 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 straongarm, 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:
changed file:
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.
* : murge 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.
|