-
Notifications
You must be signed in to change notification settings - Fork 149
/
MAINTAINERS
1010 lines (671 loc) · 18.6 KB
/
MAINTAINERS
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
#########################################################################
# #
# Regular Maintainers for U-Boot board support: #
# #
# For any board without permanent maintainer, please contact #
# Wolfgang Denk <[email protected]> #
# and Cc: the <[email protected]> mailing list. #
# #
# Note: lists sorted by Maintainer Name #
#########################################################################
#########################################################################
# PowerPC Systems: #
# #
# Maintainer Name, Email Address #
# Board CPU #
#########################################################################
Poonam Aggrwal <[email protected]>
P2020RDB P2020
Greg Allen <[email protected]>
UTX8245 MPC8245
Pantelis Antoniou <[email protected]>
NETVIA MPC8xx
Reinhard Arlt <[email protected]>
cpci5200 MPC5200
mecp5123 MPC5121
mecp5200 MPC5200
pf5200 MPC5200
caddy2 MPC8349
vme8349 MPC8349
CPCI750 PPC750FX/GX
Yuli Barcohen <[email protected]>
Adder MPC87x/MPC852T
ep8248 MPC8248
ISPAN MPC8260
MPC8260ADS MPC826x/MPC827x/MPC8280
Rattler MPC8248
ZPC1900 MPC8265
Michael Barkowski <[email protected]>
MPC8323ERDB MPC8323
Jerry Van Baren <[email protected]>
sacsng MPC8260
Oliver Brown <[email protected]>
gw8260 MPC8260
Conn Clark <[email protected]>
ESTEEM192E MPC8xx
Joe D'Abbraccio <[email protected]>
MPC837xERDB MPC837x
Kári Davíðsson <[email protected]>
FLAGADM MPC823
Torsten Demke <[email protected]>
eXalion MPC824x
Wolfgang Denk <[email protected]>
IceCube_5100 MGT5100
IceCube_5200 MPC5200
ARIA MPC5121e
AMX860 MPC860
ETX094 MPC850
FPS850L MPC850
FPS860L MPC860
ICU862 MPC862
IP860 MPC860
IVML24 MPC860
IVML24_128 MPC860
IVML24_256 MPC860
IVMS8 MPC860
IVMS8_128 MPC860
IVMS8_256 MPC860
LANTEC MPC850
LWMON MPC823
NC650 MPC852
R360MPI MPC823
RMU MPC850
RRvision MPC823
SM850 MPC850
SPD823TS MPC823
TQM823L MPC823
TQM823L_LCD MPC823
TQM850L MPC850
TQM855L MPC855
TQM860L MPC860
TQM860L_FEC MPC860
c2mon MPC855
hermes MPC860
lwmon MPC823
pcu_e MPC855
CU824 MPC8240
Sandpoint8240 MPC8240
ATC MPC8250
PM825 MPC8250
TQM8255 MPC8255
CPU86 MPC8260
PM826 MPC8260
TQM8260 MPC8260
P3G4 MPC7410
PCIPPC2 MPC750
PCIPPC6 MPC750
Jon Diekema <[email protected]>
sbc8260 MPC8260
Dirk Eibach <[email protected]>
devconcenter PPC460EX
dlvision PPC405EP
gdppc440etx PPC440EP/GR
intip PPC460EX
neo PPC405EP
Dave Ellis <[email protected]>
SXNI855T MPC8xx
Fred Fan <[email protected]>
mx51evk i.MX51
Thomas Frieden <[email protected]>
AmigaOneG3SE MPC7xx
Matthias Fuchs <[email protected]>
ADCIOP IOP480 (PPC401)
APC405 PPC405GP
AR405 PPC405GP
ASH405 PPC405EP
CANBT PPC405CR
CPCI2DP PPC405GP
CPCI405 PPC405GP
CPCI4052 PPC405GP
CPCI405AB PPC405GP
CPCI405DT PPC405GP
CPCIISER4 PPC405GP
DASA_SIM IOP480 (PPC401)
DP405 PPC405EP
DU405 PPC405GP
DU440 PPC440EPx
G2000 PPC405EP
HH405 PPC405EP
HUB405 PPC405EP
OCRTC PPC405GP
ORSG PPC405GP
PCI405 PPC405GP
PLU405 PPC405EP
PMC405 PPC405GP
PMC405DE PPC405EP
PMC440 PPC440EPx
VOH405 PPC405EP
VOM405 PPC405EP
WUH405 PPC405EP
CMS700 PPC405EP
Niklaus Giger <[email protected]>
HCU4 PPC405GPr
MCU25 PPC405GPr
HCU5 PPC440EPx
Frank Gottschling <[email protected]>
MHPC MPC8xx
BAB7xx MPC740/MPC750
Wolfgang Grandegger <[email protected]>
ipek01 MPC5200
CCM MPC855
PN62 MPC8240
IPHASE4539 MPC8260
SCM MPC8260
Joe Hamman <[email protected]>
sbc8548 MPC8548
sbc8641d MPC8641D
Klaus Heydeck <[email protected]>
KUP4K MPC855
KUP4X MPC859
Ilko Iliev <[email protected]>
PM9261 AT91SAM9261
PM9263 AT91SAM9263
Gary Jennejohn <[email protected]>
quad100hd PPC405EP
Murray Jensen <[email protected]>
cogent_mpc8xx MPC8xx
cogent_mpc8260 MPC8260
hymod MPC8260
Larry Johnson <[email protected]>
korat PPC440EPx
Feng Kan <[email protected]>
redwood PPC4xx
Brad Kemp <[email protected]>
ppmc8260 MPC8260
Sangmoon Kim <[email protected]>
debris MPC8245
KVME080 MPC8245
Thomas Lange <[email protected]>
GTH MPC860
Robert Lazarski <[email protected]>
ATUM8548 MPC8548
The LEOX team <[email protected]>
ELPT860 MPC860T
Guennadi Liakhovetski <[email protected]>
linkstation MPC8241
Dave Liu <[email protected]>
MPC8315ERDB MPC8315
MPC832XEMDS MPC832x
MPC8360EMDS MPC8360
MPC837XEMDS MPC837x
Nye Liu <[email protected]>
ZUMA MPC7xx_74xx
Kumar Gala <[email protected]>
MPC8540ADS MPC8540
MPC8560ADS MPC8560
MPC8541CDS MPC8541
MPC8555CDS MPC8555
MPC8641HPCN MPC8641D
Ron Madrid <[email protected]>
SIMPC8313 MPC8313
Dan Malek <[email protected]>
stxgp3 MPC85xx
stxssa MPC85xx
stxxtc MPC8xx
Eran Man <[email protected]>
EVB64260_750CX MPC750CX
Andrea "llandre" Marson <[email protected]>
PPChameleonEVB PPC405EP
Reinhard Meyer <[email protected]>
TOP860 MPC860T
TOP5200 MPC5200
Tolunay Orkun <[email protected]>
csb272 PPC405GP
csb472 PPC405GP
John Otken <[email protected]>
luan PPC440SP
taihu PPC405EP
Keith Outwater <[email protected]>
GEN860T MPC860T
GEN860T_SC MPC860T
Frank Panno <[email protected]>
ep8260 MPC8260
Denis Peter <[email protected]>
MIP405 PPC4xx
PIP405 PPC4xx
Kim Phillips <[email protected]>
MPC8349EMDS MPC8349
Daniel Poirot <[email protected]>
sbc8240 MPC8240
sbc405 PPC405GP
Ricardo Ribalda <[email protected]>
ml507 PPC440x5
v5fx30teval PPC440x5
xilinx-ppc405-generic PPC405
xilinx-ppc440-generic PPC440x5
Stefan Roese <[email protected]>
P3M7448 MPC7448
uc100 MPC857
TQM85xx MPC8540/8541/8555/8560
acadia PPC405EZ
alpr PPC440GX
bamboo PPC440EP
bunbinga PPC405EP
canyonlands PPC460EX
ebony PPC440GP
glacier PPC460GT
haleakala PPC405EXr
katmai PPC440SPe
kilauea PPC405EX
lwmon5 PPC440EPx
makalu PPC405EX
ocotea PPC440GX
p3p440 PPC440GP
pcs440ep PPC440EP
rainier PPC440GRx
sequoia PPC440EPx
sycamore PPC405GPr
taishan PPC440GX
walnut PPC405GP
yellowstone PPC440GR
yosemite PPC440EP
zeus PPC405EP
P3M750 PPC750FX/GX/GL
Yusdi Santoso <[email protected]>
HIDDEN_DRAGON MPC8241/MPC8245
Travis Sawyer ([email protected]>
KAREF PPC440GX
METROBOX PPC440GX
Georg Schardt <[email protected]>
fx12mm PPC405
Heiko Schocher <[email protected]>
ids8247 MPC8247
jupiter MPC5200
kmeter1 MPC8360
kmsupx4 MPC852T
mgcoge MPC8247
mgsuvd MPC852
mucmc52 MPC5200
muas3001 MPC8270
municse MPC5200
sc3 PPC405GP
suen3 ARM926EJS (Kirkwood SoC)
uc101 MPC5200
Peter De Schrijver <[email protected]>
ML2 PPC4xx
Andre Schwarz <[email protected]>
mvbc_p MPC5200
mvblm7 MPC8343
Jon Smirl <[email protected]>
pcm030 MPC5200
Timur Tabi <[email protected]>
MPC8349E-mITX MPC8349
MPC8349E-mITX-GP MPC8349
Erik Theisen <[email protected]>
W7OLMC PPC4xx
W7OLMG PPC4xx
Jim Thompson <[email protected]>
MUSENKI MPC8245/8241
Sandpoint8245 MPC8245
Rune Torgersen <[email protected]>
MPC8266ADS MPC8266
Peter Tyser <[email protected]>
XPEDITE1000 PPC440GX
XPEDITE5170 MPC8640
XPEDITE5200 MPC8548
XPEDITE5370 MPC8572
David Updegraff <[email protected]>
CRAYL1 PPC4xx
Anton Vorontsov <[email protected]>
MPC8360ERDK MPC8360
Josef Wagner <[email protected]>
CPC45 MPC8245
PM520 MPC5200
Stephen Williams <[email protected]>
JSE PPC405GPr
Roy Zang <[email protected]>
mpc7448hpc2 MPC7448
John Zhan <[email protected]>
svm_sc8xx MPC8xx
Detlev Zundel <[email protected]>
inka4x0 MPC5200
-------------------------------------------------------------------------
Unknown / orphaned boards:
ADS860 MPC8xx
FADS823 MPC8xx
FADS850SAR MPC8xx
FADS860T MPC8xx
GENIETV MPC8xx
IAD210 MPC8xx
MBX MPC8xx
MBX860T MPC8xx
NX823 MPC8xx
RPXClassic MPC8xx
RPXlite MPC8xx
ERIC PPC4xx
MOUSSE MPC824x
RPXsuper MPC8260
rsdproto MPC8260
EVB64260 MPC7xx_74xx
#########################################################################
# ARM Systems: #
# #
# Maintainer Name, Email Address #
# Board CPU #
#########################################################################
Rowel Atienza <[email protected]>
armadillo ARM720T
Stefano Babic <[email protected]>
polaris xscale
trizepsiv xscale
Dirk Behme <[email protected]>
omap3_beagle ARM CORTEX-A8 (OMAP3530 SoC)
Eric Benard <[email protected]>
cpuat91 ARM920T
cpu9260 ARM926EJS (AT91SAM9260 SoC)
cpu9G20 ARM926EJS (AT91SAM9G20 SoC)
Rishi Bhattacharya <[email protected]>
omap5912osk ARM926EJS
Cliff Brake <[email protected]>
pxa255_idp xscale
Rick Bronson <[email protected]>
AT91RM9200DK at91rm9200
Po-Yu Chuang <[email protected]>
a320evb FA526 (ARM920T-like) (a320 SoC)
George G. Davis <[email protected]>
assabet SA1100
gcplus SA1100
Wolfgang Denk <[email protected]>
imx27lite i.MX27
qong i.MX31
Thomas Elste <[email protected]>
modnet50 ARM720T (NET+50)
Fabio Estevam <[email protected]>
mx31pdk i.MX31
Peter Figuli <[email protected]>
wepep250 xscale
Daniel Gorsulowski <[email protected]>
meesc ARM926EJS (AT91SAM9263 SoC)
otc570 ARM926EJS (AT91SAM9263 SoC)
Sedji Gaouaou<[email protected]>
at91sam9g10ek ARM926EJS (AT91SAM9G10 SoC)
at91sam9m10g45ek ARM926EJS (AT91SAM9G45 SoC)
Marius Gröger <[email protected]>
impa7 ARM720T (EP7211)
ep7312 ARM720T (EP7312)
Kshitij Gupta <[email protected]>
omap1510inn ARM925T
omap1610inn ARM926EJS
Grazvydas Ignotas <[email protected]>
omap3_pandora ARM CORTEX-A8 (OMAP3xx SoC)
Gary Jennejohn <[email protected]>
smdk2400 ARM920T
trab ARM920T
Matthias Kaehlcke <[email protected]>
edb9301 ARM920T (EP9301)
edb9302 ARM920T (EP9302)
edb9302a ARM920T (EP9302)
edb9307 ARM920T (EP9307)
edb9307a ARM920T (EP9307)
edb9312 ARM920T (EP9312)
edb9315 ARM920T (EP9315)
edb9315a ARM920T (EP9315)
Konstantin Kletschke <[email protected]>
scb9328 ARM920T
Simon Kagstrom <[email protected]>
openrd_base ARM926EJS (Kirkwood SoC)
Nishant Kamat <[email protected]>
omap1610h2 ARM926EJS
Frederik Kriewitz <[email protected]>
devkit8000 ARM CORTEX-A8 (OMAP3530 SoC)
Sergey Kubushyn <[email protected]>
DV-EVM ARM926EJS
SONATA ARM926EJS
SCHMOOGIE ARM926EJS
Sandeep Paulraj <[email protected]>
davinci_dm355evm ARM926EJS
davinci_dm355leopard ARM926EJS
davinci_dm365evm ARM926EJS
davinci_dm6467evm ARM926EJS
Prakash Kumar <[email protected]>
cerf250 xscale
Sergey Lapin <[email protected]>
afeb9260 ARM926EJS (AT91SAM9260 SoC)
Guennadi Liakhovetski <[email protected]>
imx31_phycore_eet i.MX31
mx31ads i.MX31
SMDK6400 S3C6400
Nishanth Menon <[email protected]>
omap3_sdp3430 ARM CORTEX-A8 (OMAP3xx SoC)
omap3_zoom1 ARM CORTEX-A8 (OMAP3xx SoC)
David Müller <[email protected]>
smdk2410 ARM920T
VCMA9 ARM920T
Eric Millbrandt <[email protected]>
galaxy5200 mpc5200
Rolf Offermanns <[email protected]>
shannon SA1100
Kyungmin Park <[email protected]>
apollon ARM1136EJS
Peter Pearse <[email protected]>
integratorcp All current ARM supplied & supported core modules
-see http://www.arm.com/products/DevTools/Hardware_Platforms.html
versatile ARM926EJ-S
versatile ARM926EJ-S
Dave Peverley <[email protected]>
omap730p2 ARM926EJS
Manikandan Pillai <[email protected]>
omap3_evm ARM CORTEX-A8 (OMAP3xx SoC)
Stelian Pop <[email protected]>
at91cap9adk ARM926EJS (AT91CAP9 SoC)
at91sam9260ek ARM926EJS (AT91SAM9260 SoC)
at91sam9261ek ARM926EJS (AT91SAM9261 SoC)
at91sam9263ek ARM926EJS (AT91SAM9263 SoC)
at91sam9rlek ARM926EJS (AT91SAM9RL SoC)
Tom Rix <[email protected]>
omap3_zoom2 ARM CORTEX-A8 (OMAP3xx SoC)
John Rigby <[email protected]>
tx25 i.MX25
Stefan Roese <[email protected]>
ixdpg425 xscale
pdnb3 xscale
scpu xscale
Alessandro Rubini <[email protected]>
Nomadik Linux Team <[email protected]>
nhk8815 ARM926EJS (Nomadik 8815 Soc)
Steve Sakoman <[email protected]>
omap3_overo ARM CORTEX-A8 (OMAP3xx SoC)
Jens Scharsig <[email protected]>
eb_cpux9k2 ARM920T (AT91RM9200 SoC)
Robert Schwebel <[email protected]>
csb226 xscale
innokom xscale
Michael Schwingen <[email protected]>
actux1 xscale
actux2 xscale
actux3 xscale
actux4 xscale
Andrea Scian <[email protected]>
B2 ARM7TDMI (S3C44B0X)
Nick Thompson <[email protected]>
da830evm ARM926EJS (DA830/OMAP-L137)
Albin Tonnerre <[email protected]>
sbc35_a9g20 ARM926EJS (AT91SAM9G20 SoC)
tny_a9260 ARM926EJS (AT91SAM9260 SoC)
tny_a9g20 ARM926EJS (AT91SAM9G20 SoC)
Greg Ungerer <[email protected]>
cm4008 ks8695p
cm4116 ks8695p
cm4148 ks8695p
Hugo Villeneuve <[email protected]>
SFFSDR ARM926EJS
Prafulla Wadaskar <[email protected]>
mv88f6281gtw_ge ARM926EJS (Kirkwood SoC)
rd6281a ARM926EJS (Kirkwood SoC)
sheevaplug ARM926EJS (Kirkwood SoC)
Richard Woodruff <[email protected]>
omap2420h4 ARM1136EJS
Alex Züpke <[email protected]>
lart SA1100
dnp1110 SA1110
Minkyu Kang <[email protected]>
SMDKC100 ARM CORTEX-A8 (S5PC100 SoC)
-------------------------------------------------------------------------
Unknown / orphaned boards:
Board CPU Last known maintainer / Comment
.........................................................................
cradle xscale Kyle Harris <[email protected]> / dead address
ixdp425 xscale Kyle Harris <[email protected]> / dead address
lubbock xscale Kyle Harris <[email protected]> / dead address
#########################################################################
# x86 Systems: #
# #
# Maintainer Name, Email Address #
# Board CPU #
#########################################################################
Daniel Engström <[email protected]>
sc520_cdp x86
#########################################################################
# MIPS Systems: #
# #
# Maintainer Name, Email Address #
# Board CPU #
#########################################################################
Wolfgang Denk <[email protected]>
incaip MIPS32 4Kc
purple MIPS64 5Kc
Thomas Lange <[email protected]>
dbau1x00 MIPS32 Au1000
gth2 MIPS32 Au1000
Vlad Lungu <[email protected]>
qemu_mips MIPS32
Stefan Roese <[email protected]>
vct_xxx MIPS32 4Kc
#########################################################################
# Nios-32 Systems: #
# #
# Maintainer Name, Email Address #
# Board CPU #
#########################################################################
Stephan Linz <[email protected]>
DK1S10 Nios-32
ADNPESC1 Nios-32
Scott McNutt <[email protected]>
DK1C20 Nios-32
#########################################################################
# Nios-II Systems: #
# #
# Maintainer Name, Email Address #
# Board CPU #
#########################################################################
Scott McNutt <[email protected]>
PCI5441 Nios-II
PK1C20 Nios-II
EP1C20 Nios-II
EP1S10 Nios-II
EP1S40 Nios-II
#########################################################################
# MicroBlaze Systems: #
# #
# Maintainer Name, Email Address #
# Board CPU #
#########################################################################
Michal Simek <[email protected]>
microblaze-generic MicroBlaze
#########################################################################
# Coldfire Systems: #
# #
# Maintainer Name, Email Address #
# Board CPU #
#########################################################################
Hayden Fraser <[email protected]>
M5253EVBE mcf52x2
Matthias Fuchs <[email protected]>
TASREG MCF5249
TsiChung Liew <[email protected]>
M52277EVB mcf5227x
M5235EVB mcf52x2
M5253DEMO mcf52x2
M53017EVB mcf532x
M5329EVB mcf532x
M5373EVB mcf532x
M54455EVB mcf5445x
M5475EVB mcf547x_8x
M5485EVB mcf547x_8x
#########################################################################
# AVR32 Systems: #
# #
# Maintainer Name, Email Address #
# Board CPU #
#########################################################################
Hans-Christian Egtvedt <[email protected]>
FAVR-32-EZKIT AT32AP7000
Mark Jackson <[email protected]>
MIMC200 AT32AP7000
Alex Raimondi <[email protected]>
Julien May <[email protected]>
HAMMERHEAD AT32AP7000
Haavard Skinnemoen <[email protected]>
ATSTK1000 AT32AP7xxx
ATSTK1002 AT32AP7000
ATSTK1003 AT32AP7001
ATSTK1004 AT32AP7002
ATSTK1006 AT32AP7000
ATNGW100 AT32AP7000
#########################################################################
# SuperH Systems: #
# #
# Maintainer Name, Email Address #
# Board CPU #
#########################################################################
Yusuke Goda <[email protected]>
MIGO-R SH7722
Nobuhiro Iwamatsu <[email protected]>
MS7750SE SH7750
MS7722SE SH7722
R7780MP SH7780
R2DPlus SH7751R
SH7763RDP SH7763
RSK7203 SH7203
AP325RXA SH7723
Mark Jonas <[email protected]>
mpr2 SH7720
Yoshihiro Shimoda <[email protected]>
MS7720SE SH7720
R0P77850011RL SH7785
#########################################################################
# Blackfin Systems: #
# #
# Maintainer Name, Email Address #
# Board CPU #
#########################################################################
Mike Frysinger <[email protected]>
Blackfin Team <[email protected]>
BF518F-EZBRD BF518
BF526-EZBRD BF526
BF527-EZKIT BF527
BF527-EZKIT-V2 BF527
BF533-EZKIT BF533
BF533-STAMP BF533
BF537-PNAV BF537
BF537-STAMP BF537
BF538F-EZKIT BF538
BF548-EZKIT BF548
BF561-EZKIT BF561
Bluetechnix Tinyboards <[email protected]>
Blackfin Team <[email protected]>
CM-BF527 BF527
CM-BF533 BF533
CM-BF537E BF537
CM-BF537U BF537
CM-BF548 BF548
CM-BF561 BF561
TCM-BF518 BF518
TCM-BF537 BF537
Martin Strubel <[email protected]>
Blackfin Team <[email protected]>
BF537-minotaur BF537
BF537-srv1 BF537
Wojtek Skulski <[email protected]>
Benjamin Matthews <[email protected]>
BLACKSTAMP BF532
I-SYST Micromodule <[email protected]>
Blackfin Team <[email protected]>