-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
3001 lines (2809 loc) · 93.7 KB
/
ChangeLog
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
2009-12-04 Michael.kang
* Fix the bug of missing template in config.h.in. I add the necessary symbol detect in configure.in and Will give a valid value for bochs_config.h by the macro in config.h
* Changed files:
configure.in
config.h.in
bochs_config.h.in
arch/x86/common/osdep.h
2009-11-29 Michael.Kang
* Fix the bug of touchscreen in skyeye-1.2.9. Now touchscreen can work in several testcases.
* Changed files:
common/device/pen_buffer.c
arch/arm/mach/skyeye_mach_pxa250.c
arch/arm/mach/skyeye_mach_pxa270.c
arch/arm/mach/skyeye_mach_at91.c
arch/arm/mach/skyeye_mach_ep7312.c
device/touchscreen/skyeye_touchscreen.c
device/touchscreen/ts_module.c
2009-11-23 Michael.Kang
* Fix a bug that will cause the module can not be loaded on suse 10.3 with x86_64 platform. The variable have not
* been initialized before used.
* Changed files:
common/module/skyeye_module.c
2009-11-22 Michael.Kang
* Fix the bug of ram read. The u-boot of at91rm9200 can not run correctly without the fix. The bug report can be
* found at: http://sourceforge.net/tracker/?func=detail&aid=2901991&group_id=85554&atid=576533
* Changed files:
common/bus/ram.c
2009-11-22 Michael.Kang
* Add WIN32 variable in configure.in. Do not use the readline library in
* third-party for win32 compilation.
* Changed files:
configure.in
Makefile.am
common/Makefile.am
2009-11-19 Michael.Kang
* Add pthread.h in utils/perf_monitor/pmon.c, or we can not build the file pmon.c under MingW environment.
* Changd files:
utils/perf_monitor/pmon.c
2009-11-17 Michael.kang
* Update the files with libtool.Now we use ltdl as a wrapper of shared
* library generation.
* Changed files:
configure.in
Makefile.am
common/Makefile.am
common/module/skyeye_module.c
2009-11-16 Michae.Kang
* Add the header file for flash_module.c. Or module_init can not be executed when module loading.
* Add endian convert in flash_intel_read_byte.Now we can run
* pxa testcase successfully.
* Correct some printf error due to missing argument.
* Changed files:
flash/flash_module.c
flash/dev_flash_intel.c
flash/skyeye_flash.c
2009-11-15 Michael.kang
* Add mach_io_reset implementation for machine 5272 and 5249. But still
* can not run testcase successfully.
* Changed files:
coldfire/mach/skyeye_mach_mcf5272.c
coldfire/mach/skyeye_mach_mcf5249.c
2009-11-14 Michael.Kang
* Correct the CPSR value for register reading.
* Changed files:
arm/common/arm_arch_interface.c
2009-11-02 Michael.Kang
* Port the old gdb server code into the new framework. Not really work
* currently. Need to further fix some code.
* Added files:
debugger/arm_regdefs.c
debugger/ppc_regdefs.c
debugger/cf_regdefs.c
debugger/mips_regdefs.c
debugger/sparc_regdefs.c
debugger/bfin_regdefs.c
debugger/skyeye2gdb.h
* Changed files:
debugger/gdbserver_module.c
debugger/gdb_tracepoint.h
debugger/arch_regdefs.c
debugger/gdbserver.c
debugger/gdb_tracepoint.c
Makefile.am
2009-02-28 Michael.kang
* To avoid the type conflict with solaris library. Rename boolean_t
* to skyeye_boolean_t.
* Modified files:
mach/leon2_timer_unit.c
common/types.h
2009-02-25 Michael.kang
* import bfd library into third-party directory.So that we do not bear the pain with bfd library
* added files:
trunk/ltmain.sh
* Changed files:
trunk/configure.in
trunk/Makefile.am
2009-02-24 Michael.Kang
* Merge sparc_branch to trunk.Thanks to aitor's work
* Changed files:
trunk/configure.in
trunk/ChangeLog
trunk/utils/profile/code_cov.h
trunk/utils/debugger/arch_regdefs.c
trunk/utils/config/skyeye_arch.c
trunk/utils/Makefile.am
trunk/Makefile.am
* Add files:
utils/debugger/sparc_regdefs.c
arch/sparc/*
2009-02-21 Michael.Kang
* fix a lcd bug caused by memory module. Now a clean get_dma_addr
function is added for lcd memory writting. More detail can find
at [device/lcd/skyeye_lcd.c:114]
* Changed files:
memory/ram.c
device/lcd/skyeye_lcd.c
2009-02-21 Michael.Kang
* add pio_pdsr register for at91rm9200 machine
* Changed files:
mach/skyeye_mach_at91rm92.c
mach/at91rm92.h
2009-02-21 Michael.Kang
* two minor corrections from joel for running RTEMS BSP
* Changed files:
arch/coldfire/instruction/i_dc.c
arch/coldfire/mach/skyeye_mach_mcf5272.c
2009-02-21 Michael.Kang
* add the patch from joel that give a graceful implementation for display all the supported arch and machines.
* Changed files:
arch/arm/common/arm_arch_interface.c
arch/bfin/common/bfin_arch_interface.c
arch/coldfire/common/cf_arch_interface.c
arch/mips/common/mips_arch_interface.c
arch/ppc/common/ppc_arch_interface.c
utils/main/skyeye.c
2009-01-05 Michae.Kang
* Add TEQ instruction in mips simulation
* Changed file:
arch/mips/common/decoder.c
2009-01-04 Michael.Kang
* Add initial version of vr41xx simulation
* Added files:
arch/mips/mach/skyeye_mach_vr41xx.c
2008-11-25 Michael.kang
* Merge memory module patch into source tree.Test the pach against skyeye-1.2.5 testsuite and flash simulation still have some issues.
* Changed files:
configure
Makefile.in
configure.in
device/lcd/skyeye_lcd.c
device/skyeye_device.c
device/flash/dev_flash_sst39lvf160.c
device/flash/dev_flash_am29.c
device/flash/dev_flash_intel.c
device/flash/skyeye_flash.c
config.h.in
utils/main/skyeye.c
utils/config/skyeye_types.h
utils/config/skyeye_options.c
Makefile.am
arch/arm/Makefile.in
arch/arm/common/arminit.c
arch/arm/common/armio.c
arch/arm/common/mmu/arm926ejs_mmu.c
arch/arm/common/mmu/cache.c
arch/arm/common/mmu/rb.c
arch/arm/common/mmu/arm7100_mmu.c
arch/arm/common/mmu/wb.c
arch/arm/common/mmu/arm920t_mmu.c
arch/arm/common/mmu/xscale_copro.c
arch/arm/common/mmu/sa_mmu.c
arch/arm/common/mmu/tlb.c
arch/arm/common/armmem.c
arch/arm/common/armmem.h
arch/arm/common/armvirt.c
arch/arm/common/armdefs.h
arch/arm/common/arm_arch_interface.c
arch/arm/mach/skyeye_mach_cs89712.c
arch/arm/mach/skyeye_mach_at91rm92.c
arch/arm/mach/skyeye_mach_at91.c
arch/arm/mach/skyeye_mach_ep7312.c
arch/arm/mach/skyeye_mach_ep9312.c
arch/arm/mach/skyeye_mach_s3c2410x.c
arch/arm/mach/skyeye_mach_s3c3410x.c
arch/arm/mach/skyeye_mach_ps7500.c
arch/arm/mach/skyeye_mach_s3c4510b.c
arch/arm/Makefile.am
arch/mips/common/mips_arch_interface.c
arch/mips/mach/skyeye_mach_au1100.c
2008-09-16 Michael.kang
* Merge LPC patch of Thomas to skyeye-1.2.7 branch.
* Changed files:
arch/arm/mach/skyeye_mach_lpc.c
2008-09-13 Michael.Kang
* Fix a bug in LoadInstr function[arch/arm/common/armvirt.c:140], it missed return value.
* Changed files:
arch/arm/common/armvirt.c
2008-09-11 Michael.Kang
* Fix build issue of solaris platform. Add socket library checking in configure.in file.
* Changed files:
configure.in
2008-08-19 Michael.Kang
* Fix getopt issue on cygwin platform
* Changed files:
Makefile.am
2008-08-14 Michael.Kang
* Add DIVISOR to mach structure. The patch is provided by Thomas Giesel.
* Fix the bug in lpc timer implement. The patch is provided by Thomas Giesel.
* Changed files:
arch/arm/common/arm_arch_interface.c
arch/arm/common/armio.c
arch/arm/mach/skyeye_mach_lpc.c
utils/config/skyeye_config.h
2008-08-06 Michael.Kang
* Fix LCD bug in skyeye-1.2.5, the patch is provided by anthony
* Changed files:
configure.in
device/Makefile.am
Makefile.am
utils/Makefile.am
2008-07-31 Michael.Kang
* Fix timer handling bug provided by stano.
* Changed files:
arch/arm/mach/skyeye_mach_at91.c
2008-07-31 Michael.kang
* commit the patch of stano.add support for MingW.
* Changed files:
Makefile.am
arch/arm/Makefile.am
utils/Makefile.am
2008-07-27 Michael.Kang
* commit the patch of at91 uart provided by Stanislav. Now redboot running on SkyEye can get some input.
* Changed files:
arch/arm/mach/skyeye_mach_at91.c
2008-07-20 Michael.Kang
* commit the patch of don.anthony, fix a bug caused by wrong read/write argument
* Changed files:
device/flash/skyeye_flash.c
2008-06-11 Michael.Kang
* commit the patch of don.anthony
* Changed files:
2008-06-11 Michael.Kang
* Fix cygwin compilation issue
* Changed files:
ppc_arch_interface.c
2008-06-07 Michael.Kang
* fix the last workaround for linux running.Now unmodified linux can run on ppc simulation.
* Changed files:
ppc/common/ppc_mmu.c
ppc/common/ppc_io.c
ppc/common/ppc_opc.c
ppc/common/ppc_dec.c
ppc/common/ppc_cpu.h
ppc/common/ppc_arch_interface.c
ppc/common/ppc_e500_exc.c
2008-06-07 Michael.Kang
* add omap5912 machine implementation by [email protected], now uart simulation still has some issues.
* Added files:
arch/arm/mach/omap5912.h
arch/arm/mach/skyeye_mach_omap5912.c
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 <[email protected]> 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