-
Notifications
You must be signed in to change notification settings - Fork 7
/
CHANGELOG
23080 lines (15306 loc) · 756 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 5b464c289ba715d0979b6e1f94947bb8f1068d16
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Sun Mar 9 14:52:11 2008 +0100
SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Signed-off-by: Wolfgang Denk <[email protected]>
commit db695b78515ddb88a2d4f3357c120345efbf59ec
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Sun Mar 9 10:44:01 2008 +0100
scb9328: Fix flash warning: type qualifiers ignored on function return type
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
Author: Wolfgang Denk <[email protected]>
Date: Sun Mar 9 10:50:41 2008 +0100
esd/common/fpga.c: fix indentation.
Signed-off-by: Wolfgang Denk <[email protected]>
commit cc3843e36453e2b8db65d7e56de938ba045016a0
Author: Wolfgang Denk <[email protected]>
Date: Sun Mar 9 10:33:31 2008 +0100
common/kgdb.c: fix 'dereferencing type-punned pointer' warning
and get rid of a couple of unneeded casts.
Signed-off-by: Wolfgang Denk <[email protected]>
commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
Author: Wolfgang Denk <[email protected]>
Date: Sun Mar 9 10:09:53 2008 +0100
esd/common/fpga.c: fix 'assignment of read-only location' error
Signed-off-by: Wolfgang Denk <[email protected]>
commit c6fe4dabac066e8758345d249032768496983a3e
Author: Wolfgang Denk <[email protected]>
Date: Sun Mar 9 02:13:19 2008 +0100
Makefile: make build silently again.
Signed-off-by: Wolfgang Denk <[email protected]>
commit 76babc86576f092573599334c85ec543fdbc6015
Author: Wolfgang Denk <[email protected]>
Date: Sun Mar 9 02:07:49 2008 +0100
m501sk: Fix out of tree building
Signed-off-by: Wolfgang Denk <[email protected]>
commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
Author: Wolfgang Denk <[email protected]>
Date: Sun Mar 9 00:06:09 2008 +0100
ADS5121: fix out of tree build
and simplify Makefile a bit.
Signed-off-by: Wolfgang Denk <[email protected]>
commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
Author: Wolfgang Denk <[email protected]>
Date: Sat Mar 8 22:35:31 2008 +0100
Release v1.3.2
Signed-off-by: Wolfgang Denk <[email protected]>
commit 78a90f827df74520e939c794fc7413dace21c4db
Author: Wolfgang Denk <[email protected]>
Date: Sat Mar 8 22:35:04 2008 +0100
Update CHANGELOG
Signed-off-by: Wolfgang Denk <[email protected]>
commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Sat Mar 8 21:30:04 2008 +0100
esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit d75469d48c05795144f4b8ba76addbb4920a7bba
Author: Nobuhiro Iwamatsu <[email protected]>
Date: Sat Mar 8 09:25:49 2008 +0900
net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
When rtl_recv() of rtl8169 is called, OWNbit of status register
is not enable occasionally.
rtl_recv() doesn't work normally when the driver doesn't do
appropriate processing.
This patch fix this problem.
Signed-off-by: Nobuhiro Iwamatsu <[email protected]>
commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
Author: Heiko Schocher <[email protected]>
Date: Fri Mar 7 08:15:28 2008 +0100
mgsuvd: update board configuration
initialize the UPIOx controller.
Signed-off-by: Heiko Schocher <[email protected]>
commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
Author: Heiko Schocher <[email protected]>
Date: Fri Mar 7 08:13:41 2008 +0100
mgcoge: update board configuration
add support for the config Flash.
initialize the UPIOx controller.
Signed-off-by: Heiko Schocher <[email protected]>
commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
Author: Kim Phillips <[email protected]>
Date: Fri Mar 7 12:27:31 2008 -0600
mpc83xx: make dtb basename file references equal those of linux
the dts file basenames were updated in linux - this helps avoid
inadvertently loading any old dtbs laying around.
Signed-off-by: Kim Phillips <[email protected]>
commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
Author: Kim Phillips <[email protected]>
Date: Wed Feb 27 16:08:22 2008 -0600
net: uec_phy: actually increment the timeout counter
allow u-boot to recover (and, e.g., switch to another interface) in the
case where a PHY does not report autonegotiation is complete within its
two second timeout value.
Signed-off-by: Kim Phillips <[email protected]>
commit 772003e43957ee0c895abed7cd82cbe72820cbb8
Author: Markus Brunner <[email protected]>
Date: Wed Mar 5 21:38:12 2008 +0100
fix taihu soft spi_read
The taihu board used gpio_read_out_bit which reads the output register and not
the pin state.
Signed-off-by: Markus Brunner <[email protected]>
commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
Author: Stefan Roese <[email protected]>
Date: Fri Mar 7 08:01:43 2008 +0100
ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
Signed-off-by: Stefan Roese <[email protected]>
commit bd4458cb47abecabd406b1210457be96c69fc49d
Author: Dave Liu <[email protected]>
Date: Tue Mar 4 16:59:22 2008 +0800
837xEMDS: Improve the system performance
1. Make the CSB bus pipeline depth as 4, and enable
the repeat mode;
2. Raise the eTSEC emergency priority;
3. Use the highest IP blocks clock.
Signed-off-by: Dave Liu <[email protected]>
commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
Author: Detlev Zundel <[email protected]>
Date: Thu Mar 6 16:45:53 2008 +0100
Replace "run load; run update" with conditionalized "run load update".
The latter version stops when "run load" fails for whatever reasons
rendering the combination *a lot* more secure.
Signed-off-by: Detlev Zundel <[email protected]>
commit 6bc113886d7d316df1a4e459bec8baf027518551
Author: Stefan Roese <[email protected]>
Date: Tue Mar 4 17:40:41 2008 +0100
net: Print error message upon net usage when no ethernet-interface is found
This patch fixes a problem seen on PPC4xx boards, when no MAC address is
defined. Then no ethernet interface is available but a simple "tftp"
command will return without any error message which is quite confusing.
Signed-off-by: Stefan Roese <[email protected]>
commit a30a549a3553032d809e0356306b62de0b125901
Author: Jon Loeliger <[email protected]>
Date: Tue Mar 4 10:03:03 2008 -0600
Remove erroneous or extra spd.h #includers.
Many of the spd.h #includers don't need it,
and wanted to have spd_sdram() declared instead.
Since they didn't get that, some also had open
coded extern declarations of it instead or as well.
Fix it all up by using spd_sdram.h where needed.
Signed-off-by: Jon Loeliger <[email protected]>
commit a4475386cef14af3fd88f0518b688e755669486d
Author: Wolfgang Denk <[email protected]>
Date: Tue Mar 4 17:41:28 2008 +0100
PCS440EP: fix build problems (redundant #define)
Signed-off-by: Wolfgang Denk <[email protected]>
commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
Author: Stefan Roese <[email protected]>
Date: Tue Mar 4 17:39:25 2008 +0100
net: Print error message upon net usage when no ethernet-interface is found
This patch fixes a problem seen on PPC4xx boards, when no MAC address is
defined. Then no ethernet interface is available but a simple "tftp"
command will return without any error message which is quite confusing.
Signed-off-by: Stefan Roese <[email protected]>
commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
Author: Wolfgang Denk <[email protected]>
Date: Tue Mar 4 17:38:50 2008 +0100
W7OLMC/W7OLMG: fix build problems (redundant #define)
Signed-off-by: Wolfgang Denk <[email protected]>
commit f9301e1cda296245ba052d7b08321199c3d0af9d
Author: Wolfgang Denk <[email protected]>
Date: Tue Mar 4 14:58:31 2008 +0100
Makefile: fix problem with out-of-tree builds introduced by 5013c09f
Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
problem for out-of-tree builds which caused "make clean" to fail.
Signed-off-by: Wolfgang Denk <[email protected]>
commit dfece9500556bed5d8244b1c15d973cec7c25bfe
Author: Wolfgang Denk <[email protected]>
Date: Tue Mar 4 11:58:26 2008 +0100
examples/Makefile: build "hello_world" on 8xx, too.
Signed-off-by: Wolfgang Denk <[email protected]>
commit 74eb0222594fd23aafdf168e60e872814eea8b62
Author: Mike Nuss <[email protected]>
Date: Mon Mar 3 15:27:05 2008 -0500
PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
Every now and then a Sequoia board (or equivalent hardware) had
problems connecting to a Gigabit capable network interface.
There were differences in the PHY setup between Linux and U-Boot.
This patch fixes the problem. Apparently "remote fault" is being set,
which signals to some devices (on the other end of the cable) that a
fault has occurred, while other devices ignore it. I believe the RF bit
was causing the issue, but I removed T4 also, to match up with Linux.
Signed-off-by: Mike Nuss <[email protected]>
commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
Author: Timur Tabi <[email protected]>
Date: Mon Mar 3 09:58:52 2008 -0600
fix QE firmware uploading limit
Fix a typo in qe_upload_firmware() that prevented uploading firmware on
systems with more than one RISC core.
Signed-off-by: Timur Tabi <[email protected]>
commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
Author: Bernhard Nemec <[email protected]>
Date: Mon Mar 3 11:57:23 2008 +0000
Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
Originally pointed out by Laurent Pinchart <[email protected]>,
see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
Author: Kim B. Heino <[email protected]>
Date: Mon Mar 3 10:39:13 2008 +0200
fix copy from ram to dataflash
If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
routines instead of dataflash. This is because it checks "if source
address is not dataflash" instead of target address.
Signed-off-by: Kim B. Heino <[email protected]>
commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
Author: Wolfgang Denk <[email protected]>
Date: Mon Mar 3 12:16:44 2008 +0100
Fix quoting problem (preboot setting) in many board config files.
Signed-off-by: Wolfgang Denk <[email protected]>
commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
Author: Wolfgang Denk <[email protected]>
Date: Mon Mar 3 12:36:49 2008 +0100
ADS5121: Fix default environment.
Signed-off-by: Wolfgang Denk <[email protected]>
commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Sun Mar 2 16:12:31 2008 +0100
Makefile: Fix missing unconfig and mkconfig use
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
Author: michael <[email protected]>
Date: Sun Mar 2 23:33:46 2008 +0100
Fix checking fat32 cluster size.
This fixes the cluster size tests in the FAT32 file system.
The current implementation of VFAT support doesn't work if the
referred cluster has an offset > 16bit representation, causing
"fatload" and "fatls" commands etc. to fail.
Signed-off-by: michael trimarchi <[email protected]>
commit 661bad63a076a96c39c64f136915f146725af92b
Author: Wolfgang Denk <[email protected]>
Date: Sun Mar 2 22:57:23 2008 +0100
Prepare v1.3.2-rc2 release candidate
Signed-off-by: Wolfgang Denk <[email protected]>
commit 76957cb3d621bf664311908e5962e151c633c285
Author: Stefan Roese <[email protected]>
Date: Sat Mar 1 12:11:40 2008 +0100
ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
currently 4k/2k is configured. This patch fixes this issue.
Thanks to Thomas Kindler <[email protected]> for pointing this out.
Signed-off-by: Stefan Roese <[email protected]>
commit 118978c8eb43803e2794233922df4249fa278b83
Author: Woodruff, Richard <[email protected]>
Date: Fri Feb 29 17:34:35 2008 -0600
Fix alignment error on ARM for modules
Fix alignment fault on ARM when running modules. With out an explicit
linker file gcc4.2.1 will half word align __bss_start's value. The word
dereference will crash hello_world.
signed-off-by Richard Woodruff <[email protected]>
commit ce1120dd703e6f12c59e4eba9962356a0300b832
Author: Dave Liu <[email protected]>
Date: Fri Feb 29 17:45:31 2008 +0800
fs: Fix ext2 read issue
The ext2 aligned process will corrupt the key
data struct, the patch fix this.
Signed-off-by: Dave Liu <[email protected]>
commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
Author: Wolfgang Denk <[email protected]>
Date: Sun Mar 2 22:45:33 2008 +0100
Makefile: cleanup "clean" target
Make sure CDPATH settings cannot interfere.
Update CHANGELOG.
Signed-off-by: Wolfgang Denk <[email protected]>
commit ffda586fc1373243c9794babde69500f6293a8d8
Author: Li Yang <[email protected]>
Date: Fri Feb 29 11:46:05 2008 +0800
add cscope build target
Add cscope build target to generate cscope database for code browsing.
Signed-off-by: Li Yang <[email protected]>
commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
Author: Kim Phillips <[email protected]>
Date: Wed Feb 27 15:06:39 2008 -0600
net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
erratum 5.6 states the autoneg completion bit is functional only if the
autoneg bit is asserted.
This fixes any secondarily-issued networking commands on non-gigabit
links on the mpc8360 mds board.
Signed-off-by: Kim Phillips <[email protected]>
commit 5f91db7f582ca17b1f19f10189c025696f333d2e
Author: John Rigby <[email protected]>
Date: Tue Feb 26 09:38:14 2008 -0700
MPC5121e ADS PCI support take 3
Adds PCI support for MPC5121
Tested with drivers/net/rtl8139.c
Support is conditional since PCI on old silicon does not work.
ads5121_PCI_config turns on PCI
In this version, condition compilation of PCI code has been moved
from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
suggested by Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: John Rigby <[email protected]>
commit 44b4dbed4133f657705b7c5193209da9978243a7
Author: Anatolij Gustschin <[email protected]>
Date: Mon Feb 25 23:53:07 2008 +0100
Fix warnings while compilation of post/drivers/memory.c
Fix warnings while compilation with new gcc in eldk-4.2
Signed-off-by: Anatolij Gustschin <[email protected]>
commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
Author: Anatolij Gustschin <[email protected]>
Date: Mon Feb 25 20:54:04 2008 +0100
ppc4xx: Fix problem in 4xx_enet.c driver
U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
enabled. To reproduce the problem ensure that 'ethrotate'
environment variable isn't set to "no" and then run
"tftp 200000 not_existent_file".
This patch tries to fix the issue.
Signed-off-by: Anatolij Gustschin <[email protected]>
commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
Author: Anatolij Gustschin <[email protected]>
Date: Mon Feb 25 20:04:20 2008 +0100
POST: Disable cache while SPR POST
Currently (since commit b2e2142c) u-boot crashes on
sequoia board while SPR test if CONFIG_4xx_DCACHE is
enabled. This patch disables the cache while SPR test.
Signed-off-by: Anatolij Gustschin <[email protected]>
commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
Author: Martin Krause <[email protected]>
Date: Mon Feb 25 17:52:40 2008 +0100
TQM5200: use automatic fdt memory fixup (part 2)
Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
TB5200 and TB5200_B to fixup the /memory node with the memory values
detected by U-Boot.
Signed-off-by: Martin Krause <[email protected]>
commit 44ceec253ea941b301abf4b079d52324def69d92
Author: Martin Krause <[email protected]>
Date: Mon Feb 25 15:17:05 2008 +0100
TQM5200: use automatic fdt memory fixup
Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
TB5200 and TB5200_B to fixup the /memory node with the memory values
detected by U-Boot.
Signed-off-by: Martin Krause <[email protected]>
commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
Author: Martin Krause <[email protected]>
Date: Mon Feb 25 13:27:52 2008 +0100
TQM5200: fix bug in SDRAM initialization code
This patch fixes a bug in the SDRAM initialization code for the
TQM5200. The hi_addr bit is now set correctly. Without this patch
the hi_addr bit is always set to 1, if the second SDRAM bank is
not populated.
For other MPC5200 boards a correspondig patch has already been applied
some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
Signed-off-by: Martin Krause <[email protected]>
--
Forget the first patch please. I confused flash with SDRAM in
the comment ...
commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Mon Feb 25 00:03:12 2008 +0100
mx1fs2/flash: Fix multiple compiler warnings
"pointer targets in assignment differ in signedness"
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Mon Feb 25 00:03:11 2008 +0100
arm-imx: Fix register definitions
Sync register definitions with linux
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Mon Feb 25 00:03:10 2008 +0100
actua1/actua2/actua3: Fix multiple unused variable warnings
- actua1:
actux1.c: In function 'checkboard':
actux1.c:92: warning: unused variable 'revision'
- actua2:
actux2.c: In function 'checkboard':
actux2.c:100: warning: unused variable 's'
actux2.c:99: warning: unused variable 'revision'
actux2.c: In function 'reset_phy':
actux2.c:130: warning: unused variable 'i'
- actua3:
actux3.c: In function 'checkboard':
actux3.c:114: warning: unused variable 'revision'
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
Author: Shinya Kuribayashi <[email protected]>
Date: Sun Feb 24 11:44:29 2008 +0900
Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
The previous patch was lacking of i386, microblaze, nios and nios2. This
patch tries to fix them.
Signed-off-by: Shinya Kuribayashi <[email protected]>
commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
Author: Kumar Gala <[email protected]>
Date: Wed Feb 27 16:30:47 2008 -0600
85xx: Don't icbi when unlocking the cache
There is no reason to icbi when invalidating the temporary stack in
the d-cache. Its impossible on e500 to have the i-cache contain
any addresses in the temp stack and it can be problematic in generating
transactions on the bus to non-valid addresses.
Signed-off-by: Kumar Gala <[email protected]>
commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
Author: Andy Fleming <[email protected]>
Date: Wed Feb 27 15:50:50 2008 -0600
Fix source for ECM error IVPR
The source vector for the ECM was being set to 2,
but that's what the source vector for DDR was being
set to. Change it to 1.
Signed-off-by: Andy Fleming <[email protected]>
commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
Author: Andy Fleming <[email protected]>
Date: Wed Feb 27 14:29:58 2008 -0600
Invalidate INIT_RAM TLB mappings
Commit 0db37dc... (and some others) changed the INIT_RAM TLB
mappings to be unguarded. This collided with an existing "bug"
where the mappings for the INIT_RAM were being kept around.
This meant that speculative loads to those addresses were
succeeding in the TLB, and going out to the bus, where they
were causing an exception (there's nothing at that address). The
Flash code was coincidentally causing such a speculative load.
Rather than go back to mapping the INIT RAM as guarded, we fix
it so that the entries for the INIT_RAM are invalidated. Thus
the speculative loads will fail in the TLB, and have no effect.
Signed-off-by: Andy Fleming <[email protected]>
commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Sun Feb 17 22:56:17 2008 +0100
sbc8548: Fix Revision reading and unused variable 'path'
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit 495d162374c472f46454453553382ad0735dc725
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Sun Feb 17 22:56:16 2008 +0100
sbc8548: Fix cfi flash bank declaration
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
Author: Jon Loeliger <[email protected]>
Date: Mon Feb 25 13:13:37 2008 -0600
86xx: Fix renamed GUR symbols in sbc8641d board.
Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
(86xx: Fix GUR PCI config registers properly), we should have
changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
symbols in the sbc8641d board as well. Fix this oversight.
Signed-off-by: Jon Loeliger <[email protected]>
commit 64cd594e623c39f73964d18787763e4533f791f7
Author: Stefan Roese <[email protected]>
Date: Mon Feb 25 16:50:48 2008 +0100
ppc4xx: Fix acadia_nand build problem
Don't include testdram() on NAND-booting target acadia_nand. This saves
a few bytes and makes the target build clean again.
Signed-off-by: Stefan Roese <[email protected]>
commit 14e099e698d41e8179d05c2b2dbcf704a236f748
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Sun Feb 24 23:03:12 2008 +0000
mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit 724902c8464e610642b3a170278b99710325888e
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Sun Feb 24 23:03:11 2008 +0000
arm-imx: Fix registers definition
Sync registers definition with linux
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit 4cd288b589ea1178947c6e364453c32b3dede6b7
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Sun Feb 24 23:03:10 2008 +0000
actua1/actua2/actua3: Fix multipleunused variable
- actua1:
actux1.c: In function 'checkboard':
actux1.c:92: warning: unused variable 'revision'
- actua2:
actux2.c: In function 'checkboard':
actux2.c:100: warning: unused variable 's'
actux2.c:99: warning: unused variable 'revision'
actux2.c: In function 'reset_phy':
actux2.c:130: warning: unused variable 'i'
- actua3:
actux3.c: In function 'checkboard':
actux3.c:114: warning: unused variable 'revision'
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit b29661fc1151077776454288051bc9a488351ce8
Author: Wolfgang Denk <[email protected]>
Date: Sun Feb 24 15:21:36 2008 +0100
Coding style cleanup. Prepare v1.3.2-rc2 release candidate
Signed-off-by: Wolfgang Denk <[email protected]>
commit 00b48a48424894daa589d166d73277830b1c6ac4
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Sat Feb 23 12:15:56 2008 +0100
ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit b075d74efb70ff68c49a2532f26b56d6703b69c1
Author: Shinya Kuribayashi <[email protected]>
Date: Sat Feb 23 17:24:16 2008 +0900
Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
----------------------------------------------------------------
Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
32bit targets.
GCC can be made to warn about usage of long long types with ISO C90
(-ansi), but only with -pedantic. You can write this in a way that even
then it doesn't cause warnings, namely by:
#ifdef __GNUC__
__extension__ typedef __signed__ long long __s64;
__extension__ typedef unsigned long long __u64;
#endif
The __extension__ keyword in front of this switches off any pedantic
warnings for this expression.
Signed-off-by: Olaf Hering <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
----------------------------------------------------------------
Signed-off-by: Shinya Kuribayashi <[email protected]>
commit 208acd112e6517b21fc30c420396902b103563ac
Author: Shinya Kuribayashi <[email protected]>
Date: Sat Feb 23 17:07:57 2008 +0900
cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
This will reduce the build time.
Signed-off-by: Shinya Kuribayashi <[email protected]>
commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
Author: Shinya Kuribayashi <[email protected]>
Date: Sat Feb 23 17:05:00 2008 +0900
cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
This will reduce the build time.
Signed-off-by: Shinya Kuribayashi <[email protected]>
commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
Author: Shinya Kuribayashi <[email protected]>
Date: Sat Feb 23 16:58:41 2008 +0900
cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
This reduces the build time by ~10%. Here's the gth2_config example.
BEFORE AFTER
real 0m31.441s 0m27.833s
user 0m24.766s 0m23.045s
sys 0m10.425s 0m7.468s
Signed-off-by: Shinya Kuribayashi <[email protected]>
commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
Author: Marcel Moolenaar <[email protected]>
Date: Fri Feb 22 10:48:07 2008 -0800
make define2mk.sed work on FreeBSD
In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
the define2mk.sed script was identified as the source of the link
failure on FreeBSD. The problem is that sed(1) does not always support
the '+' operator. It isn't on FreeBSD. The attach patch implements the
equivalent, using the '*' operator instead and should work everywhere.
Signed-off-by: Marcel Moolenaar <[email protected]>
commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
Author: Detlev Zundel <[email protected]>
Date: Fri Feb 22 17:21:32 2008 +0100
Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
final traces of long-deprecated "ramdisk" kernel parm") makes these
changes neccessary.
Signed-off-by: Detlev Zundel <[email protected]>
commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
Author: Larry Johnson <[email protected]>
Date: Thu Feb 21 13:58:16 2008 -0500
LM75 bug fix for negative temperatures
When the LM75 temperature sensor measures a temperature below 0 C, the
current driver does not perform sign extension, so the result returned is
256 C too high. This patch fixes the problem.
Signed-off-by: Larry Johnson <[email protected]>
commit 5a910c224b13e413bda41922379add6d75c32da3
Author: Heiko Schocher <[email protected]>
Date: Thu Feb 21 18:33:45 2008 +0100
IDS8247: update MAINTAINER entry.
Signed-off-by: Heiko Schocher <[email protected]>
commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
Author: Heiko Schocher <[email protected]>
Date: Thu Feb 21 18:31:15 2008 +0100
Fix device tree for mgsuvd board.
Rename the "scc" node in "ethernet" for the mgsuvd board.
Signed-off-by: Heiko Schocher <[email protected]>
commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
Author: Yuri Tikhonov <[email protected]>
Date: Thu Feb 21 14:23:42 2008 +0100
lwmon5: enable hardware watchdog
Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
causing it to reboot the board if U-Boot does a long busy-wait with
udelay(). Thus, for these boards we have to restart WD more
frequently.
This patch splits the busy-wait udelay() into smaller, predefined,
intervals, so that the watchdog timer may be resetted with the
configurable (CONFIG_WD_PERIOD) interval.
Signed-off-by: Yuri Tikhonov <[email protected]>
commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
Author: Anatolij Gustschin <[email protected]>
Date: Thu Feb 21 12:52:29 2008 +0100
ppc4xx: Support for ATI Radeon 9200 card on sequoia
Adds configuration option for ATI Radeon 9200 card
support to sequoia config file. If CONFIG_VIDEO
is enabled, TEXT_BASE should be changed to 0xFFF80000.
Signed-off-by: Anatolij Gustschin <[email protected]>
commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
Author: Kumar Gala <[email protected]>
Date: Mon Feb 18 08:18:07 2008 -0600
Remove duplicate defines for ARRAY_SIZE
A few duplicate of the ARRAY_SIZE macro sneaked in since we put
the define in common.h.
Signed-off-by: Kumar Gala <[email protected]>
commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
Author: Kumar Gala <[email protected]>
Date: Mon Feb 18 08:09:37 2008 -0600
ppc: Allow boards to specify effective amount of memory
For historical reasons we limited the stack to 256M because some boards
could only map that much via BATS. However newer boards are capable of
mapping more memory (for example 85xx is capable of doing up to 2G).
Signed-off-by: Kumar Gala <[email protected]>
commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
Author: Mike Frysinger <[email protected]>
Date: Mon Feb 18 05:24:13 2008 -0500
include autoconf.mk before any other .mk files
This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
those .mk files can have make if statements based on the current config.
Signed-off-by: Mike Frysinger <[email protected]>
commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
Author: Mike Frysinger <[email protected]>
Date: Mon Feb 18 05:10:07 2008 -0500
error check autoconf.mk generation
If any of the steps for generating autoconf.mk fail currently, they go
unnoticed. To fix, we can simply add 'set -e' to the long list of commands.
This is simpler and more robust than placing '|| exit $$?' after every line.
Signed-off-by: Mike Frysinger <[email protected]>
commit 019895a8dee71a9f00da05c03e379f45d581b0fe
Author: Stefano Babic <[email protected]>
Date: Mon Feb 18 08:03:51 2008 +0100
Fix bug in dependency checking
By adding VERSION_FILE to the PHONY targets the script
/tools/setlocalversion is always called and version_autogenerated.h
is replaced only if the script find a modified source file.
Signed-off-by: Stefano Babic <[email protected]>
commit 98ba144ccc912eee90dd42699f023c497ce774c6
Author: Kyungmin Park <[email protected]>
Date: Mon Feb 18 14:35:43 2008 +0900
Fix GPMC CS2 memory setup at apollon
It disables the current map first
Signed-off-by: Kyungmin Park <[email protected]>
commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Sun Feb 17 23:52:46 2008 +0100
uli526x: Fix multiple differ in signedness and parentheses around comparison
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
Author: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Date: Sun Feb 17 16:58:04 2008 +0100
MIPS: Fix CFG_NO_FLASH support
- Fix flash_init call when CFG_NO_FLASH is used
- Remove no more needed flash.c for qemu-mips
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
Author: Mike Frysinger <[email protected]>
Date: Sat Feb 16 02:40:18 2008 -0500
easylogo: clean up some more and add -r (rgb) support
Michael Hennerich added support for outputting an image in RGB format rather
than forcing YUYV all the time. This makes obvious sense if the display you
have takes RGB input rather than YUYV.
Rather than hack in support for options, I've converted it to use getopt and
cleaned up the argument parsing in the process.
Signed-off-by: Michael Hennerich <[email protected]>
Signed-off-by: Mike Frysinger <[email protected]>
commit f65c98129ccada3f7caf97d80395a95b84e911de
Author: Mike Frysinger <[email protected]>
Date: Sat Feb 16 02:12:37 2008 -0500
Makefile: add target for $(LDSCRIPT)
If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
then change into the board directory and try and create it. This allows you
to generate the linker script on the fly based upon board defines (like the
Blackfin boards do).
There should be no regressions due to this change as the normal case is to
already have a u-boot.lds file. If that's the case, then there's nothing to
generate, and so make will always exit. The fix here is that if the linker
script does not exist, the implicit rules take over and attempt to guess how
to generate the file.