-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
20631 lines (13704 loc) · 676 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
commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
Author: Wolfgang Denk <[email protected]>
Date: Wed Jan 23 14:31:17 2008 +0100
Coding Style Cleanup; update CHANGELOG
Signed-off-by: Wolfgang Denk <[email protected]>
commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
Author: Dave Liu <[email protected]>
Date: Fri Jan 18 10:07:04 2008 +0800
mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
cause the 83xx immap broken, so the DMA and PCI will
be failed.
The patch fix the struct spi8xxx and rm struct spi83xx.
Signed-off-by: Dave Liu <[email protected]>
Signed-off-by: Kim Phillips <[email protected]>
commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
Author: Haavard Skinnemoen <[email protected]>
Date: Sat Apr 14 17:11:49 2007 +0200
AVR32: ATNGW100 board support
Add support for the ATNGW100 Network Gateway reference design,
including flash, ethernet and MMC support.
Signed-off-by: Haavard Skinnemoen <[email protected]>
commit e006927a0b9a54e8ee7685d8ac748aaad6801862
Author: Haavard Skinnemoen <[email protected]>
Date: Sat Nov 24 18:15:31 2007 +0100
AVR32: Initialize ipaddr, loadaddr and bootfile at startup
I don't know why the relevant layers can't do this by itself, but this
is what ppc does.
Signed-off-by: Haavard Skinnemoen <[email protected]>
commit 799891ef7b1b3432032ec23466df6b665a797fa4
Author: Michael Schwingen <[email protected]>
Date: Fri Jan 18 00:04:28 2008 +0100
Add AcTux board support
Hi,
The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
files that
contain changes for multiple boards, the board-specific files follow as
separate patches.
Signed-off-by: Michael Schwingen <[email protected]>
commit 66a4344a4d910a11125df7768899ad529719855e
Author: Michael Schwingen <[email protected]>
Date: Wed Jan 16 19:53:23 2008 +0100
add AcTux-4 board support
Signed-off-by: Michael Schwingen <[email protected]>
commit bc24345e4101a5c996d6b48ce497b09c53025dc6
Author: Michael Schwingen <[email protected]>
Date: Wed Jan 16 19:51:55 2008 +0100
add AcTux-3 board support
Signed-off-by: Michael Schwingen <[email protected]>
commit aebf00fc4d1343b24715373893f7b20bf462d1e9
Author: Michael Schwingen <[email protected]>
Date: Wed Jan 16 19:51:14 2008 +0100
add AcTux-2 board support
Signed-off-by: Michael Schwingen <[email protected]>
commit ea99e8f05b7240fd657739e286664664ae160abe
Author: Michael Schwingen <[email protected]>
Date: Wed Jan 16 19:50:37 2008 +0100
add AcTux-1 board support
Signed-off-by: Michael Schwingen <[email protected]>
commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Mon Jan 14 19:20:08 2008 +0100
ARM: remove useless function board_post_init
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit 96bd462942022e4569b582c072a0ed26de1cd19b
Author: Michael Schwingen <[email protected]>
Date: Thu Jan 10 14:59:46 2008 +0100
IXP: enable RTS
enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
No handshaking is done, but the active RTS signal allows to
connect to the target using a PC which is using RTS/CTS
handshake, and does no harm if the PC is set to ignore RTS.
Signed-off-by: Michael Schwingen <[email protected]>
commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Mon Jan 7 08:41:34 2008 +0100
IXP: add dynamic microcode addr
allow to load the microde from flash or ram by download it through
the serial or other.
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Acked-by: Stefan Roese <[email protected]>
commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
Author: Michael Schwingen <[email protected]>
Date: Sat Nov 10 15:44:12 2007 +0100
load ixp42x NPE firmware from separate flash block, remove dead code
Hi,
the following patch adds support to move the IXP42X NPE firmware to a
separate flash block, whose start address is defined in
CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
NPE-enabled u-boot without copyright problems due to the NPE firmware.
I hope the patch applies, I get whitespace-related differences in the NPE
files due to trailing whitespace in the original versions.
Signed-off-by: Michael Schwingen <[email protected]>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
Author: TsiChungLiew <[email protected]>
Date: Tue Jan 15 14:15:46 2008 -0600
ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
Author: TsiChungLiew <[email protected]>
Date: Tue Jan 15 14:02:49 2008 -0600
ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit 777d1abd9796f1c2e148417cc10657e847d318ce
Author: TsiChungLiew <[email protected]>
Date: Tue Jan 15 14:00:25 2008 -0600
ColdFire: Add MCF547x_8x FEC driver
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off-by: Ben Warren <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
Author: TsiChungLiew <[email protected]>
Date: Tue Jan 15 13:54:09 2008 -0600
ColdFire: Add MCF547x_8x dma code and header files
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
Author: TsiChungLiew <[email protected]>
Date: Tue Jan 15 13:52:03 2008 -0600
ColdFire: Add MCF547x_8x dma code - 2
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
Author: TsiChungLiew <[email protected]>
Date: Tue Jan 15 13:48:52 2008 -0600
ColdFire: Add MCF547x_8x dma code - 1
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
Author: TsiChungLiew <[email protected]>
Date: Tue Jan 15 13:39:44 2008 -0600
ColdFire: Add MCF547x_8x related header files
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off-by: Ben Warren <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
Author: TsiChungLiew <[email protected]>
Date: Tue Jan 15 13:37:34 2008 -0600
ColdFire: Add MCF547x_8x cpu arch
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit e2756f4b54aba0e0523b81dd145666829cf7fd59
Author: TsiChungLiew <[email protected]>
Date: Mon Jan 14 17:47:23 2008 -0600
ColdFire: Add MCF5227x cpu and M52277EVB support-3
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit c87581027994c148131b2f11aa75501f782ec19a
Author: TsiChungLiew <[email protected]>
Date: Mon Jan 14 17:46:19 2008 -0600
ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
Author: TsiChungLiew <[email protected]>
Date: Mon Jan 14 17:43:33 2008 -0600
ColdFire: Add MCF5227x cpu and M52277EVB support-1
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
Author: TsiChungLiew <[email protected]>
Date: Mon Jan 14 17:35:44 2008 -0600
ColdFire: Fix CFI Flash low level Read/Write macro
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
Author: TsiChungLiew <[email protected]>
Date: Mon Jan 14 17:23:08 2008 -0600
ColdFire: Add M5373EVB platform support - 2
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
Author: TsiChungLiew <[email protected]>
Date: Mon Jan 14 17:19:54 2008 -0600
ColdFire: Add M5373EVB platform support - 1
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
Author: TsiChungLiew <[email protected]>
Date: Mon Jan 14 17:17:03 2008 -0600
ColdFire: Update FlexBus CS for MCF532x
Definition update and change from 16bit to 32bit
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
Author: TsiChungLiew <[email protected]>
Date: Mon Jan 14 17:11:47 2008 -0600
ColdFire: PCI and misc updates for MCF5445x
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
Author: TsiChungLiew <[email protected]>
Date: Mon Jan 14 17:06:55 2008 -0600
ColdFire: MCF5445x header files cleanup
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
Author: TsiChungLiew <[email protected]>
Date: Mon Jan 14 16:59:42 2008 -0600
ColdFire: MCF532x header files cleanup
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
commit 7af7751d047e74b2ec58400f97b879c56446b3e8
Author: TsiChungLiew <[email protected]>
Date: Mon Jan 14 15:30:15 2008 -0600
ColdFire: Add modules header files
Add CF specific modules header files
Signed-off-by: TsiChung Liew <[email protected]>
Signed-off-by: John Rigby <[email protected]>
commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
Author: Kim Phillips <[email protected]>
Date: Thu Jan 17 12:48:00 2008 -0600
codingstyle cleanup for spi driver
..and rm unused CONFIG_FSL_SPI define
Signed-off-by: Kim Phillips <[email protected]>
commit d59feffb42c9f174116db7a82a311df98983dfce
Author: Haiying Wang <[email protected]>
Date: Wed Jan 16 17:12:12 2008 -0500
FSL: Fix common EEPROM_data structure definition
- Fix EEPROM_data structure definition according to System EEPROM Data Format.
- Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
bd->bi_ethaddr.
Signed-off-by: Haiying Wang <[email protected]>
commit 6bee764bd6da510a4aad614880300c968bc7318d
Author: Timur Tabi <[email protected]>
Date: Wed Jan 16 15:48:12 2008 -0600
86xx: enable command-line editing
Enable command-line editing for all MPC86xx boards.
Signed-off-by: Timur Tabi <[email protected]>
commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
Author: Ben Warren <[email protected]>
Date: Wed Jan 16 22:37:42 2008 -0500
Implement hard SPI driver on MPC8349EMDS
This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
This board has an ST M25P40 4Mbit EEPROM on its SPI bus
Signed-off-by: Ben Warren <[email protected]>
Signed-off-by: Kim Phillips <[email protected]>
commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
Author: Ben Warren <[email protected]>
Date: Wed Jan 16 22:37:35 2008 -0500
Add support for a Freescale non-CPM SPI controller
This patch adds support for the SPI controller found on Freescale PowerPC
processors such as the MCP834x family. Additionally, a new config option,
CONFIG_HARD_SPI, is added for general purpose SPI controller use.
Signed-off-by: Ben Warren <[email protected]>
Signed-off-by: Kim Phillips <[email protected]>
commit a8cb43a89be6cfd283257a603dd9841503ccce0f
Author: Dave Liu <[email protected]>
Date: Thu Jan 17 18:23:19 2008 +0800
mpc83xx: Fix the fatal conflict of merge
The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
will cause the mpc8315erdb board can't boot up.
The patch fix that bug, and remove the duplicated #ifdef
CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
MPC8313E processor.
Signed-off-by: Dave Liu <[email protected]>
Signed-off-by: Kim Phillips <[email protected]>
commit 3259eeaa4148125a81417477f62c05bd67f60587
Author: Larry Johnson <[email protected]>
Date: Thu Jan 17 08:50:09 2008 -0500
Merge Sequoia beautification into Korat code
Signed-off-by: Larry Johnson <[email protected]>
commit e16925773211291b562e77187061e9dd1d757217
Author: Matthias Fuchs <[email protected]>
Date: Thu Jan 17 07:45:05 2008 +0100
net: add 'ethrotate' environment variable
[PATCH] net: add 'ethrotate' environment variable
This patch replaces the buildtime configuration option
CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
configuration veriable. See README.
Signed-off-by: Matthias Fuchs <[email protected]>
Signed-off-by: Ben Warren <[email protected]>
commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
Author: Stefan Roese <[email protected]>
Date: Thu Jan 17 14:29:04 2008 +0100
ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
Signed-off-by: Stefan Roese <[email protected]>
commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
Author: Nobuhiro Iwamatsu <[email protected]>
Date: Thu Jan 17 18:07:32 2008 +0900
sh: Remove CONFIG_COMMANDS from MS7720SE config file
Signed-off-by: Nobuhiro Iwamatsu <[email protected]>
commit 055606bd25e88c0cd04ad348a679a04b1b616bee
Author: Niklaus Giger <[email protected]>
Date: Wed Jan 16 18:39:20 2008 +0100
ppc4xx: Netstal HCU4 board: added various fixes and POST
- Moved some common code to netstal/common/nm_bsp.c.
- sdram initialisation goes go netstal/common/fixed_sdram.c.
- Added support for POST.
- Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
Signed-off-by: Niklaus Giger <[email protected]>
commit 69b0634a4ee98c9791815600d43b99f626a952f3
Author: Niklaus Giger <[email protected]>
Date: Thu Jan 17 12:53:56 2008 +0100
ppc4xx: netstal/common define routines used by all boards
Added some routines used by all Netstal boards:
- nm_bsp.c: - nm_show_print and
- common_misc_init_r
- set_params_for_sw_install. Very specific code to handle our SW
installation procedure
- fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
to handle sdram initialization.
- nm.h: Common header
Signed-off-by: Niklaus Giger <[email protected]>
commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
Author: Niklaus Giger <[email protected]>
Date: Wed Jan 16 18:39:18 2008 +0100
ppc4xx: Netstal HCU5 board: added various fixes and POST
- Moved some common code to nestal/common/nm_bsp.c.
- Added support for the vxWorks EDR.
- Enable trace for Lauterbach, if present.
- Added support for POST.
- Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
Signed-off-by: Niklaus Giger <[email protected]>
commit 4371090e5da77edc7bf9f296364db4801639d9c4
Author: Niklaus Giger <[email protected]>
Date: Wed Jan 16 18:39:08 2008 +0100
ppc4xx: Netstal HCU5 board. Added POST. Various fixes
- Various fixes
- Reduced rom_size from 384 to 320 kB
- Environment is now in flash
- Added POST
- Support for OF
Signed-off-by: Niklaus Giger <[email protected]>
commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
Author: Niklaus Giger <[email protected]>
Date: Wed Jan 16 18:37:50 2008 +0100
ppc4xx: Netstal HCU4 board. Added POST. Various fixes
- Various fixes
- Reduced rom_size from 384 to 320 kB
- Environment is now in flash
- Added POST
- Support for OF
Signed-off-by: Niklaus Giger <[email protected]>
commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
Author: Matthias Fuchs <[email protected]>
Date: Thu Jan 17 10:53:08 2008 +0100
ppc4xx: Complete DU440 board support
Signed-off-by: Matthias Fuchs <[email protected]>
commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
Author: Matthias Fuchs <[email protected]>
Date: Thu Jan 17 10:52:30 2008 +0100
ppc4xx: Add DU440 board support
Signed-off-by: Matthias Fuchs <[email protected]>
commit ac331da07db3860f11fa1d0fd3db7c810bce1198
Author: Nobuhiro Iwamatsu <[email protected]>
Date: Thu Jan 17 15:53:52 2008 +0900
sh: Update SuperH SCIF driver
This patch fixed wrong SH7720 CPU macro and changed macro that
calculated value of SCBRR register.
Signed-off-by: Nobuhiro Iwamatsu <[email protected]>
commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
Author: Grzegorz Bernacki <[email protected]>
Date: Wed Jan 16 15:12:47 2008 +0100
Set ips dividor to 1/4 of csb clock.
Previous setting cause ips clock to be out of spec. This bug was found by John
Rigby from Freescale.
Signed-off-by: Grzegorz Bernacki <[email protected]>
commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
Author: Kumar Gala <[email protected]>
Date: Thu Jan 17 02:19:18 2008 -0600
85xx: Get ride of old TLB setup code
Now that all boards have been converted, remove old config code and the
config option for the new style.
Signed-off-by: Kumar Gala <[email protected]>
commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
Author: Kumar Gala <[email protected]>
Date: Thu Jan 17 02:02:10 2008 -0600
85xx: Convert TQM85xx to new TLB setup
Signed-off-by: Kumar Gala <[email protected]>
commit 74121b470c14f7eaf284ee838bffca6f9521069e
Author: Kumar Gala <[email protected]>
Date: Thu Jan 17 01:56:32 2008 -0600
85xx: Convert STXGP3 & STXSSA to new TLB setup
Signed-off-by: Kumar Gala <[email protected]>
commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
Author: Kumar Gala <[email protected]>
Date: Thu Jan 17 01:44:34 2008 -0600
85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
Signed-off-by: Kumar Gala <[email protected]>
commit 818218bac6a11591e2542c344d2330e0f4e1968b
Author: Kumar Gala <[email protected]>
Date: Thu Jan 17 01:31:34 2008 -0600
85xx: Convert PM854/PM856 to new TLB setup
Signed-off-by: Kumar Gala <[email protected]>
commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
Author: Kumar Gala <[email protected]>
Date: Thu Jan 17 01:25:33 2008 -0600
85xx: Convert MPC8540EVAL to new TLB setup
Signed-off-by: Kumar Gala <[email protected]>
commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
Author: Kumar Gala <[email protected]>
Date: Thu Jan 17 01:12:22 2008 -0600
85xx: Convert MPC8568 MDS to new TLB setup
Signed-off-by: Kumar Gala <[email protected]>
commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
Author: Kumar Gala <[email protected]>
Date: Thu Jan 17 01:01:09 2008 -0600
85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
Signed-off-by: Kumar Gala <[email protected]>
commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
Author: Kumar Gala <[email protected]>
Date: Thu Jan 17 00:52:29 2008 -0600
85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
Signed-off-by: Kumar Gala <[email protected]>
commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
Author: Kumar Gala <[email protected]>
Date: Thu Jan 17 00:32:17 2008 -0600
85xx: Convert ATUM8548 to new TLB setup
Signed-off-by: Kumar Gala <[email protected]>
commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
Author: Kumar Gala <[email protected]>
Date: Wed Jan 16 23:11:57 2008 -0600
85xx: Convert MPC8544 DS to new TLB setup
Signed-off-by: Kumar Gala <[email protected]>
commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
Author: Kumar Gala <[email protected]>
Date: Wed Jan 16 22:38:34 2008 -0600
85xx: Reworked initial processor init
Reworked the initial processor initialzation sequence:
* introduced cpu_early_init_f that is run in address space 1 (AS=1)
* Moved TLB/LAW and CCSR init into cpu_early_init_f()
* Reworked initial asm code to do most of the core init before TLBs
The main reasons for these changes are to allow handling of 36-bit phys
addresses in the future and some of the issues that will exist when we
do that.
There are a few caveats on what can be initialized via the LAW and TLB
static tables:
* TLB entry 14/15 can't be initialized via the TLB table
* any LAW that covers the implicit boot window (4G-8M to 4G) must map to
the code that is currently executing.
Signed-off-by: Kumar Gala <[email protected]>
commit 44a23cfd6360a68eaa41f945190618a55519eac3
Author: Kumar Gala <[email protected]>
Date: Wed Jan 16 22:33:22 2008 -0600
85xx: Introduce new tlb API
Add a set of functions to manipulate TLB entries:
* set_tlb() - write a tlb entry
* invalidate_tlb() - invalidate a tlb array
* disable_tlb() - disable a variable size tlb entry
* init_tlbs() - setup initial tlbs based on static table
Signed-off-by: Kumar Gala <[email protected]>
commit be88b1699863c262818f3af7f60173b4d48df8fc
Author: Stefan Roese <[email protected]>
Date: Thu Jan 17 07:50:17 2008 +0100
ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
Signed-off-by: Stefan Roese <[email protected]>
commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
Author: Kumar Gala <[email protected]>
Date: Wed Jan 16 10:04:42 2008 -0600
85xx: Use proper defines for PCI addresses
We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
be used for configuring the PCI ATMU.
Signed-off-by: Kumar Gala <[email protected]>
commit 54a5070115eff38e9b324b78abdfa0b4520580b9
Author: Kumar Gala <[email protected]>
Date: Wed Jan 16 09:22:29 2008 -0600
85xx: Remove old style of LAW init
All boards are now using the new fsl_law code so we can drop the old version.
Signed-off-by: Kumar Gala <[email protected]>
commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
Author: Kumar Gala <[email protected]>
Date: Wed Jan 16 09:15:29 2008 -0600
85xx: convert remaining 85xx boards over to use new LAW init code
Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
to use new LAW init code.
Signed-off-by: Kumar Gala <[email protected]>
commit 572b13afc42710f2957c382a710360429c0e099b
Author: Kumar Gala <[email protected]>
Date: Wed Jan 16 09:11:53 2008 -0600
85xx: convert STXGP3/STXSSA over to use new LAW init code
Signed-off-by: Kumar Gala <[email protected]>
commit 45f2166ac0233a9263058378f39612bd11f61196
Author: Kumar Gala <[email protected]>
Date: Wed Jan 16 09:06:48 2008 -0600
85xx: convert PM854/PM856 over to use new LAW init code
Signed-off-by: Kumar Gala <[email protected]>
commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
Author: Kumar Gala <[email protected]>
Date: Wed Jan 16 09:05:27 2008 -0600
85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
Signed-off-by: Kumar Gala <[email protected]>
commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
Author: Kumar Gala <[email protected]>
Date: Wed Jan 16 01:45:10 2008 -0600
85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
Signed-off-by: Kumar Gala <[email protected]>
commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
Author: Kumar Gala <[email protected]>
Date: Wed Jan 16 01:32:06 2008 -0600
85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
Signed-off-by: Kumar Gala <[email protected]>
commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
Author: Kumar Gala <[email protected]>
Date: Wed Jan 16 01:16:16 2008 -0600
85xx: convert MPC8544 DS over to use new LAW init code
Signed-off-by: Kumar Gala <[email protected]>
commit 83d40dfd79fe868796275802f60116d84b9e4395
Author: Kumar Gala <[email protected]>
Date: Wed Jan 16 01:13:58 2008 -0600
85xx: Move LAW init code into C
Move the initialization of the LAWs into C code and provide an API
to allow modification of LAWs after init.
Board code is responsible to provide a law_table and num_law_entries.
We should be able to use the same code on 86xx as well.
Signed-off-by: Kumar Gala <[email protected]>
commit bed8ce838a609aaab136d43b25e6df2a520bc854
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Sat Dec 22 15:03:12 2007 +0100
qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit 0764c164fed6277d359cf132d55187ea34290114
Author: Vlad Lungu <[email protected]>
Date: Wed Jan 16 19:27:51 2008 +0200
MIPS:Target support for qemu -M mips
With serial, NE2000, IDE support. Tested in big-endian mode.
Memory size hard-coded to 128M for now, so don't play with
the -m option.
Signed-off-by: Vlad Lungu <[email protected]>
commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Fri Jan 11 00:01:37 2008 +0100
Fix nfs command help to reflect that the serverip is optional
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Signed-off-by: Ben Warren <[email protected]>
commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Mon Dec 10 22:32:14 2007 +0100
bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
and move is_valid_ether_addr board file
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Signed-off-by: Ben Warren <[email protected]>
commit c2f896b8fc4722e36915903e1942e138e68ce804
Author: Shinya Kuribayashi <[email protected]>
Date: Wed Jan 16 16:13:31 2008 +0900
drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
rx_status on the memory is basically in LE, but needs to be handled in CPU
endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
it'll work fine.
Signed-off-by: Shinya Kuribayashi <[email protected]>
Cc: Masami Komiya <[email protected]>
Cc: Lucas Jin <[email protected]>
Signed-off-by: Ben Warren <[email protected]>
commit 96a236746fe6a7b84802afb4ed31536696d34812
Author: Shinya Kuribayashi <[email protected]>
Date: Wed Jan 16 16:12:26 2008 +0900
drivers/net/rtl8139.c: Fix cache coherency issues
Current driver is meant for cache coherent systems. This patch adds
flush_cache() routines to support cache non-coherent systems.
Signed-off-by: Shinya Kuribayashi <[email protected]>
Cc: Masami Komiya <[email protected]>
Cc: Lucas Jin <[email protected]>
Signed-off-by: Ben Warren <[email protected]>
commit d1276c76c1e2b5035296689280ba1acb2c425104
Author: Shinya Kuribayashi <[email protected]>
Date: Wed Jan 16 16:11:14 2008 +0900
drivers/net/rtl8139.c: Fix tx timeout
"to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
does, the condition "(currticks() < to)" becomes invalid and immediately
leads to tx timeout error. This patch introduces the fine-graded udely(10)
loops to ease the impact of wrapping around.
Signed-off-by: Shinya Kuribayashi <[email protected]>
Cc: Masami Komiya <[email protected]>
Cc: Lucas Jin <[email protected]>
Signed-off-by: Ben Warren <[email protected]>
commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
Author: Dave Liu <[email protected]>
Date: Fri Jan 11 18:45:28 2008 +0800
TSEC: Add the support for RealTek RTL8211B PHY
Add the support of RealTek RTL8211B PHY, the RTL8211B
PHY only supports RGMII and MII mode.
Signed-off-by: Dave Liu <[email protected]>
Signed-off-by: Ben Warren <[email protected]>
commit 84a3047b72b70e862b0b7a8e2058077457f89a32
Author: Joakim Tjernlund <[email protected]>
Date: Wed Jan 16 09:40:41 2008 +0100
Remove annoying debug printout for PHY less boards.
PHY less board prints out lots of "read wrong ...":
read wrong value : mii_id 3,mii_reg 2, base e0102320
read wrong value : mii_id 3,mii_reg 3, base e0102320
UEC: PHY is Generic MII (ffffffff)
read wrong value : mii_id 3,mii_reg 4, base e0102320
read wrong value : mii_id 3,mii_reg 0, base e0102320
read wrong value : mii_id 3,mii_reg 1, base e0102320
read wrong value : mii_id 3,mii_reg 1, base e0102320
read wrong value : mii_id 3,mii_reg 5, base e0102320
read wrong value : mii_id 3,mii_reg 1, base e0102320
read wrong value : mii_id 3,mii_reg 1, base e0102320
read wrong value : mii_id 3,mii_reg 5, base e0102320
FSL UEC0: Full Duplex
FSL UEC0: Speed 100BT
FSL UEC0: Link is up
Using FSL UEC0 device
Make this printout depend on UEC_VERBOSE_DEBUG and
remove its definition in uec_phy.c
Signed-off-by: Joakim Tjernlund <[email protected]>
Signed-off-by: Ben Warren <[email protected]>
commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
Author: Kim Phillips <[email protected]>
Date: Tue Jan 15 14:11:00 2008 -0600
net: reduce boot latency on QE UEC based boards
actually polling for PHY autonegotiation to finish enables us to remove the
5 second boot prompt latency present on QE based boards.
call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
code shamelessly stolen from tsec driver.
also rm unused CONFIG_RMII_MODE code.
Signed-off-by: Kim Phillips <[email protected]>
Signed-off-by: Joakim Tjernlund <[email protected]>
Signed-off-by: Ben Warren <[email protected]>
commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
Author: [email protected] <[email protected]>
Date: Wed Jan 16 11:40:51 2008 +0000
TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
The current TSEC driver limits MDIO access to the devices that have been configured as attached
to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
Signed-off-by: Michael Firth <[email protected]>
Acked-by: Andy Fleming <[email protected]>
Signed-off-by: Ben Warren <[email protected]>
commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
Author: Kim Phillips <[email protected]>
Date: Wed Jan 16 00:38:05 2008 -0600
Add support for the MPC837xERDB
MPC837xERDB board support includes:
* DDR2 330MHz hardcoded (soldered on the board)
* Local Bus NOR Flash
* I2C, UART and RTC
* eTSEC RGMII (TSEC0 - RTL8211B with MII;
* TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
* load)
Signed-off-by: Kevin Lam <[email protected]>
Signed-off-by: Joe D'Abbraccio <joe.d'[email protected]>
Signed-off-by: Kim Phillips <[email protected]>
commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
Author: Kim Phillips <[email protected]>
Date: Wed Jan 16 12:06:16 2008 -0600
mpc83xx: add support for more system clock performance controls
System registers that are modified are the Arbiter Configuration
Register (ACR), the System Priority Control Register (SPCR), and the
System Clock Configuration Register (SCCR).
Signed-off by: Michael F. Reiss <[email protected]>
Signed-off by: Joe D'Abbraccio <[email protected]>
Signed-off-by: Kim Phillips <[email protected]>
commit 16c3cde050e2d243e62b37486f1558570787beb8
Author: James Yang <[email protected]>
Date: Wed Jan 16 11:58:08 2008 -0600
FSL: Generalize PIXIS reset command parsing.
Before, the order of arguments to the pixis_reset
command needed to be supplied in a hard-coded order.
Generalize the command parsing to allow any order.
Signed-off-by: James Yang <[email protected]>
Acked-by: Jon Loeliger <[email protected]>
commit ad8f8687b78c3e917b173f038926695383c55555
Author: Jon Loeliger <[email protected]>
Date: Tue Jan 15 13:42:41 2008 -0600
FSL: Convert board/freescale/common/Makefile to use CONFIG_
Convert the board/freescale/common/Makefile to use
CONFIG_* options to select which files to conditionally
compile into the board/freescale/common library rather
than conditionally compiling entire files.
Now handles::
CONFIG_FSL_PIXIS
CONFIG_FSL_DIU_FB
CONFIG_PQ_MDS_PIB
CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
Signed-off-by: Jon Loeliger <[email protected]>
commit 7c2221eb230372a9e537c4f6636b147b0909325f
Author: Roy Zang <[email protected]>