Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
Descriptions of section entries:

	P: Person (obsolete)
	M: Mail patches to: FullName <address@domain>
	R: Designated reviewer: FullName <address@domain>
	   These reviewers should be CCed on patches.
	L: Mailing list that is relevant to this area
	W: Web-page with status/info
	Q: Patchwork web based patch tracking system site
	T: SCM tree type and location.
	   Type is one of: git, hg, quilt, stgit, topgit
	S: Status, one of the following:
	   Supported:	Someone is actually paid to look after this.
	   Maintained:	Someone actually looks after it.
	   Orphan:	No current maintainer [but maybe you could take the
			role as you write your new code].
	F: Files and directories with wildcard patterns.
	   A trailing slash includes all files and subdirectory files.
	   F:	drivers/net/	all files in and below drivers/net
	   F:	drivers/net/*	all files in drivers/net, but not below
	   F:	*/net/*		all files in "any top level directory"/net
	   One pattern per line.  Multiple F: lines acceptable.
	N: Files and directories with regex patterns.
	   N:	[^a-z]tegra	all files whose path contains the word tegra
	   One pattern per line.  Multiple N: lines acceptable.
	   scripts/get_maintainer.pl has different behavior for files that
	   match F: pattern and matches of N: patterns.  By default,
	   get_maintainer will not look at git log history when an F: pattern
	   match occurs.  When an N: match occurs, git log history is used
	   to also notify the people that have git commit signatures.
	X: Files and directories that are NOT maintained, same rules as F:
	   Files exclusions are tested before file matches.
	   Can be useful for excluding a specific subdirectory, for instance:
	   F:	net/
	   X:	net/ipv6/
	   matches all files in and below net excluding net/ipv6/
	K: Keyword perl extended regex pattern to match content in a
	   patch or file.  For instance:
	   K: of_get_profile
	      matches patches or files that contain "of_get_profile"
	   K: \b(printk|pr_(info|err))\b
	      matches patches or files that contain one or more of the words
	      printk, pr_info or pr_err
	   One regex pattern per line.  Multiple K: lines acceptable.

Note: For the hard of thinking, this list is meant to remain in alphabetical
order. If you could add yourselves to it in alphabetical order that would be
so much easier [Ed]

Maintainers List (try to look for most precise areas first)

		-----------------------------------
ANDROID AB
M:	Igor Opaniuk <igor.opaniuk@gmail.com>
R:	Sam Protsenko <joe.skb7@gmail.com>
S:	Maintained
F:	cmd/ab_select.c
F:	common/android_ab.c
F:	doc/android/ab.rst
F:	include/android_ab.h
F:	test/py/tests/test_android/test_ab.py

ANDROID AVB
M:	Igor Opaniuk <igor.opaniuk@gmail.com>
S:	Maintained
F:	cmd/avb.c
F:	common/avb_verify.c
F:	doc/android/avb2.rst
F:	include/avb_verify.h
F:	lib/libavb/
F:	test/py/tests/test_android/test_avb.py

ARC
M:	Alexey Brodkin <alexey.brodkin@synopsys.com>
M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
S:	Maintained
L:	uboot-snps-arc@synopsys.com
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-arc.git
F:	arch/arc/
F:	board/synopsys/

ARC HSDK CGU CLOCK
M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
S:	Maintained
L:	uboot-snps-arc@synopsys.com
F:	drivers/clk/clk-hsdk-cgu.c
F:	include/dt-bindings/clock/snps,hsdk-cgu.h
F:	doc/device-tree-bindings/clock/snps,hsdk-cgu.txt

ARC HSDK CREG GPIO
M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
S:	Maintained
L:	uboot-snps-arc@synopsys.com
F:	doc/device-tree-bindings/gpio/snps,creg-gpio.txt
F:	drivers/gpio/hsdk-creg-gpio.c

ARC HSDK RESET
M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
S:	Maintained
L:	uboot-snps-arc@synopsys.com
F:	include/dt-bindings/reset/snps,hsdk-reset.h
F:	drivers/reset/reset-hsdk.c

ARC SYNOPSYS DW MMC EXTENSIONS
M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
S:	Maintained
L:	uboot-snps-arc@synopsys.com
F:	doc/device-tree-bindings/mmc/snps,dw-mmc.txt
F:	drivers/mmc/snps_dw_mmc.c

ARM
M:	Tom Rini <trini@konsulko.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-arm.git
F:	arch/arm/
F:	cmd/arm/

ARM ALTERA SOCFPGA
M:	Marek Vasut <marex@denx.de>
M:	Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
M:	Ley Foon Tan <ley.foon.tan@intel.com>
S:	Maintainted
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-socfpga.git
F:	arch/arm/mach-socfpga/
F:	drivers/sysreset/sysreset_socfpga*

ARM AMLOGIC SOC SUPPORT
M:	Neil Armstrong <narmstrong@baylibre.com>
S:	Maintained
L:	u-boot-amlogic@groups.io
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic.git
F:	arch/arm/mach-meson/
F:	arch/arm/include/asm/arch-meson/
F:	drivers/clk/meson/
F:	drivers/serial/serial_meson.c
F:	drivers/reset/reset-meson.c
F:	drivers/i2c/meson_i2c.c
F:	drivers/net/phy/meson-gxl.c
F:	drivers/adc/meson-saradc.c
F:	drivers/phy/meson*
F:	drivers/mmc/meson_gx_mmc.c
F:	drivers/spi/meson_spifc.c
F:	drivers/pinctrl/meson/
F:	drivers/power/domain/meson-gx-pwrc-vpu.c
F:	drivers/video/meson/
F:	include/configs/meson64.h
F:	include/configs/meson64_android.h
F:	doc/board/amlogic/
N:	meson

ARM ASPEED
M:	Ryan Chen <ryan_chen@aspeedtech.com>
M:	Chia-Wei Wang <chiawei_wang@aspeedtech.com>
R:	Aspeed BMC SW team <BMC-SW@aspeedtech.com>
S:	Maintained
F:	arch/arm/mach-aspeed/
F:	arch/arm/include/asm/arch-aspeed/
F:	board/aspeed/
F:	drivers/clk/aspeed/
F:	drivers/pinctrl/aspeed/
N:	aspeed

ARM BROADCOM BCM283X
M:	Matthias Brugger <mbrugger@suse.com>
S:	Maintained
F:	arch/arm/dts/bcm283*
F:	arch/arm/mach-bcm283x/
F:	board/raspberrypi/
F:	drivers/gpio/bcm2835_gpio.c
F:	drivers/mmc/bcm2835_sdhci.c
F:	drivers/mmc/bcm2835_sdhost.c
F:	drivers/serial/serial_bcm283x_mu.c
F:	drivers/serial/serial_bcm283x_pl011.c
F:	drivers/video/bcm2835.c
F:	include/dm/platform_data/serial_bcm283x_mu.h
F:	include/dt-bindings/pinctrl/bcm2835.h
F:	drivers/pinctrl/broadcom/

ARM BROADCOM BCMSTB
M:	Thomas Fitzsimmons <fitzsim@fitzsim.org>
S:	Maintained
F:	arch/arm/mach-bcmstb/
F:	board/broadcom/bcmstb/
F:	configs/bcm7*_defconfig
F:	doc/README.bcm7xxx
F:	drivers/mmc/bcmstb_sdhci.c
F:	drivers/spi/bcmstb_spi.c

ARM CORTINA ACCESS CAxxxx
M:	Alex Nemirovsky <alex.nemirovsky@cortina-access.com>
S:	Supported
F:	board/cortina/common/
F:	drivers/gpio/cortina_gpio.c
F:	drivers/watchdog/cortina_wdt.c
F:	drivers/serial/serial_cortina.c
F:	drivers/led/led_cortina.c
F:	drivers/mmc/ca_dw_mmc.c
F:	drivers/i2c/i2c-cortina.c
F:	drivers/i2c/i2c-cortina.h

ARM/CZ.NIC TURRIS MOX SUPPORT
M:	Marek Behun <marek.behun@nic.cz>
S:	Maintained
F:	arch/arm/dts/armada-3720-turris-mox.dts
F:	board/CZ.NIC/
F:	configs/turris_*_defconfig
F:	include/configs/turris_*.h

ARM FREESCALE IMX
M:	Stefano Babic <sbabic@denx.de>
M:	Fabio Estevam <festevam@gmail.com>
R:	NXP i.MX U-Boot Team <uboot-imx@nxp.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git
F:	arch/arm/cpu/arm1136/mx*/
F:	arch/arm/cpu/arm926ejs/mx*/
F:	arch/arm/cpu/armv7/vf610/
F:	arch/arm/dts/*imx*
F:	arch/arm/mach-imx/
F:	arch/arm/include/asm/arch-imx/
F:	arch/arm/include/asm/arch-mx*/
F:	arch/arm/include/asm/arch-vf610/
F:	arch/arm/include/asm/mach-imx/
F:	board/freescale/*mx*/

ARM HISILICON
M:	Peter Griffin <peter.griffin@linaro.org>
M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
S:	Maintained
F:	arch/arm/cpu/armv8/hisilicon
F:	arch/arm/include/asm/arch-hi6220/
F:	arch/arm/include/asm/arch-hi3660/

ARM IPQ40XX
M:	Robert Marko <robert.marko@sartura.hr>
M:	Luka Kovacic <luka.kovacic@sartura.hr>
M:	Luka Perkov <luka.perkov@sartura.hr>
S:	Maintained
F:	arch/arm/mach-ipq40xx/

ARM MARVELL KIRKWOOD ARMADA-XP ARMADA-38X ARMADA-37XX ARMADA-7K/8K
M:	Stefan Roese <sr@denx.de>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-marvell.git
F:	arch/arm/mach-kirkwood/
F:	arch/arm/mach-mvebu/
F:	drivers/ata/ahci_mvebu.c
F:	drivers/ddr/marvell/
F:	drivers/gpio/mvebu_gpio.c
F:	drivers/spi/kirkwood_spi.c
F:	drivers/pci/pci_mvebu.c
F:	drivers/pci/pcie_dw_mvebu.c
F:	drivers/watchdog/orion_wdt.c

ARM MARVELL PXA
M:	Marek Vasut <marex@denx.de>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-pxa.git
F:	arch/arm/cpu/pxa/
F:	arch/arm/include/asm/arch-pxa/

ARM MEDIATEK
M:	Ryder Lee <ryder.lee@mediatek.com>
M:	Weijie Gao <weijie.gao@mediatek.com>
R:	GSS_MTK_Uboot_upstream <GSS_MTK_Uboot_upstream@mediatek.com>
S:	Maintained
F:	arch/arm/mach-mediatek/
F:	arch/arm/include/asm/arch-mediatek/
F:	board/mediatek/
F:	doc/device-tree-bindings/phy/phy-mtk-*
F:	doc/device-tree-bindings/usb/mediatek,*
F:	doc/README.mediatek
F:	drivers/clk/mediatek/
F:	drivers/mmc/mtk-sd.c
F:	drivers/phy/phy-mtk-*
F:	drivers/pinctrl/mediatek/
F:	drivers/power/domain/mtk-power-domain.c
F:	drivers/ram/mediatek/
F:	drivers/spi/mtk_snfi_spi.c
F:	drivers/timer/mtk_timer.c
F:	drivers/watchdog/mtk_wdt.c
F:	drivers/net/mtk_eth.c
F:	drivers/reset/reset-mediatek.c
F:	tools/mtk_image.c
F:	tools/mtk_image.h
N:	mediatek

ARM MICROCHIP/ATMEL AT91
M:	Eugen Hristev <eugen.hristev@microchip.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-atmel.git
F:	arch/arm/mach-at91/
F:	board/atmel/
F:	drivers/misc/microchip_flexcom.c

ARM NEXELL S5P4418
M:	Stefan Bosch <stefan_b@posteo.net>
S:	Maintained
F:	arch/arm/cpu/armv7/s5p4418/
F:	arch/arm/dts/s5p4418*
F:	arch/arm/mach-nexell/
F:	board/friendlyarm/
F:	configs/s5p4418_nanopi2_defconfig
F:	doc/README.s5p4418
F:	drivers/gpio/nx_gpio.c
F:	drivers/i2c/nx_i2c.c
F:	drivers/mmc/nexell_dw_mmc_dm.c
F:	drivers/pinctrl/nexell/
F:	drivers/video/nexell/
F:	drivers/video/nexell_display.c
F:	include/configs/s5p4418_nanopi2.h

ARM OWL
M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
S:	Maintained
F:	arch/arm/include/asm/arch-owl/
F:	arch/arm/mach-owl/
F:	doc/board/actions/
F:	drivers/clk/owl/
F:	drivers/serial/serial_owl.c
F:	include/configs/owl-common.h
F:	configs/bubblegum_96_defconfig
F:	configs/cubieboard7_defconfig

ARM RENESAS RMOBILE/R-CAR
M:	Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
M:	Marek Vasut <marek.vasut+renesas@gmail.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-sh.git
F:	arch/arm/mach-rmobile/

ARM ROCKCHIP
M:	Simon Glass <sjg@chromium.org>
M:	Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
M:	Kever Yang <kever.yang@rock-chips.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip.git
F:	arch/arm/include/asm/arch-rockchip/
F:	arch/arm/mach-rockchip/
F:	board/rockchip/
F:	drivers/clk/rockchip/
F:	drivers/gpio/rk_gpio.c
F:	drivers/misc/rockchip-efuse.c
F:	drivers/mmc/rockchip_sdhci.c
F:	drivers/mmc/rockchip_dw_mmc.c
F:	drivers/pinctrl/rockchip/
F:	drivers/ram/rockchip/
F:	drivers/sysreset/sysreset_rockchip.c
F:	drivers/video/rockchip/
F:	tools/rkcommon.c
F:	tools/rkcommon.h
F:	tools/rkimage.c
F:	tools/rksd.c
F:	tools/rkspi.c

ARM SAMSUNG
M:	Minkyu Kang <mk7.kang@samsung.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-samsung.git
F:	arch/arm/mach-exynos/
F:	arch/arm/mach-s5pc1xx/
F:	arch/arm/cpu/armv7/s5p-common/

ARM SNAPDRAGON
M:	Ramon Fried <rfried.dev@gmail.com>
S:	Maintained
F:	arch/arm/mach-snapdragon/
F:	drivers/gpio/msm_gpio.c
F:	drivers/mmc/msm_sdhci.c
F:	drivers/phy/msm8916-usbh-phy.c
F:	drivers/serial/serial_msm.c
F:	drivers/smem/msm_smem.c
F:	drivers/usb/host/ehci-msm.c

ARM STI
M:	Patrice Chotard <patrice.chotard@st.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-stm.git
F:	arch/arm/mach-sti/
F:	arch/arm/include/asm/arch-sti*/
F:	drivers/phy/sti_usb_phy.c
F:	drivers/pinctrl/pinctrl-sti.c
F:	drivers/mmc/sti_sdhci.c
F:	drivers/reset/sti-reset.c
F:	drivers/serial/serial_sti_asc.c
F:	drivers/sysreset/sysreset_sti.c
F:	drivers/timer/sti-timer.c
F:	drivers/usb/host/dwc3-sti-glue.c
F:	include/dwc3-sti-glue.h
F:	include/dt-bindings/clock/stih407-clks.h
F:	include/dt-bindings/clock/stih410-clks.h
F:	include/dt-bindings/reset/stih407-resets.h

ARM STM SPEAR
#M:	Vipin Kumar <vipin.kumar@st.com>
S:	Orphaned (Since 2016-02)
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-stm.git
F:	arch/arm/cpu/arm926ejs/spear/
F:	arch/arm/include/asm/arch-spear/

ARM STM STM32MP
M:	Patrick Delaunay <patrick.delaunay@st.com>
M:	Patrice Chotard <patrice.chotard@st.com>
L:	uboot-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-stm.git
S:	Maintained
F:	arch/arm/mach-stm32mp/
F:	doc/board/st/
F:	drivers/adc/stm32-adc*
F:	drivers/clk/clk_stm32mp1.c
F:	drivers/gpio/stm32_gpio.c
F:	drivers/hwspinlock/stm32_hwspinlock.c
F:	drivers/i2c/stm32f7_i2c.c
F:	drivers/mailbox/stm32-ipcc.c
F:	drivers/misc/stm32mp_fuse.c
F:	drivers/misc/stm32_rcc.c
F:	drivers/mmc/stm32_sdmmc2.c
F:	drivers/mtd/nand/raw/stm32_fmc2_nand.c
F:	drivers/phy/phy-stm32-usbphyc.c
F:	drivers/pinctrl/pinctrl_stm32.c
F:	drivers/power/pmic/stpmic1.c
F:	drivers/power/regulator/stm32-vrefbuf.c
F:	drivers/power/regulator/stpmic1.c
F:	drivers/ram/stm32mp1/
F:	drivers/remoteproc/stm32_copro.c
F:	drivers/reset/stm32-reset.c
F:	drivers/rtc/stm32_rtc.c
F:	drivers/serial/serial_stm32.*
F:	drivers/spi/stm32_qspi.c
F:	drivers/spi/stm32_spi.c
F:	drivers/video/stm32/stm32_ltdc.c
F:	drivers/watchdog/stm32mp_wdt.c
F:	include/dt-bindings/clock/stm32fx-clock.h
F:	include/dt-bindings/clock/stm32mp1-clks.h
F:	include/dt-bindings/clock/stm32mp1-clksrc.h
F:	include/dt-bindings/pinctrl/stm32-pinfunc.h
F:	include/dt-bindings/reset/stm32mp1-resets.h
F:	include/stm32_rcc.h
F:	tools/stm32image.c


ARM STM STV0991
M:	Vikas Manocha <vikas.manocha@st.com>
S:	Maintained
F:	arch/arm/cpu/armv7/stv0991/
F:	arch/arm/include/asm/arch-stv0991/

ARM SUNXI
M:	Jagan Teki <jagan@amarulasolutions.com>
M:	Maxime Ripard <mripard@kernel.org>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-sunxi.git
F:	arch/arm/cpu/armv7/sunxi/
F:	arch/arm/include/asm/arch-sunxi/
F:	arch/arm/mach-sunxi/
F:	board/sunxi/

ARM TEGRA
M:	Tom Warren <twarren@nvidia.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-tegra.git
F:	arch/arm/mach-tegra/
F:	arch/arm/include/asm/arch-tegra*/

ARM TI
M:	Lokesh Vutla <lokeshvutla@ti.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-ti.git
F:	arch/arm/mach-davinci/
F:	arch/arm/mach-k3/
F:	arch/arm/mach-keystone/
F:	arch/arm/mach-omap2/
F:	arch/arm/include/asm/arch-omap*/
F:	arch/arm/include/asm/ti-common/
F:	board/ti/
F:	drivers/dma/ti*
F:	drivers/firmware/ti_sci.*
F:	drivers/gpio/omap_gpio.c
F:	drivers/memory/ti-aemif.c
F:	drivers/misc/k3_avs.c
F:	drivers/mailbox/k3-sec-procy.c
F:	drivers/pci/pcie_dw_ti.c
F:	drivers/phy/keystone-usb-phy.c
F:	drivers/phy/omap-usb2-phy.c
F:	drivers/phy/phy-ti-am654.c
F:	drivers/phy/ti-pipe3-phy.c
F:	drivers/ram/k3*
F:	drivers/remoteproc/k3_system_controller.c
F:	drivers/remoteproc/ti*
F:	drivers/reset/reset-ti-sci.c
F:	drivers/rtc/davinci.c
F:	drivers/serial/serial_omap.c
F:	drivers/soc/ti/
F:	drivers/sysreset/sysreset-ti-sci.c
F:	drivers/thermal/ti-bandgap.c
F:	drivers/timer/omap-timer.c
F:	drivers/watchdog/omap_wdt.c
F:	include/linux/soc/ti/

ARM U8500
M:	Stephan Gerhold <stephan@gerhold.net>
R:	Linus Walleij <linus.walleij@linaro.org>
S:	Maintained
F:	arch/arm/dts/ste-*
F:	arch/arm/mach-u8500/
F:	drivers/timer/nomadik-mtu-timer.c

ARM UNIPHIER
M:	Masahiro Yamada <yamada.masahiro@socionext.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-uniphier.git
F:	arch/arm/mach-uniphier/
F:	configs/uniphier_*_defconfig
N:	uniphier

ARM VERSAL
M:	Michal Simek <michal.simek@xilinx.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
F:	arch/arm/mach-versal/
F:	drivers/watchdog/xilinx_wwdt.c
N:	(?<!uni)versal

ARM VERSATILE EXPRESS DRIVERS
M:	Liviu Dudau <liviu.dudau@foss.arm.com>
S:	Maintained
T:	git git://github.com/ARM-software/u-boot.git
F:	drivers/misc/vexpress_config.c
N:	vexpress

ARM ZYNQ
M:	Michal Simek <monstr@monstr.eu>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
F:	arch/arm/mach-zynq/
F:	drivers/clk/clk_zynq.c
F:	drivers/fpga/zynqpl.c
F:	drivers/gpio/zynq_gpio.c
F:	drivers/i2c/i2c-cdns.c
F:	drivers/i2c/muxes/pca954x.c
F:	drivers/i2c/zynq_i2c.c
F:	drivers/mmc/zynq_sdhci.c
F:	drivers/mtd/nand/raw/zynq_nand.c
F:	drivers/net/phy/xilinx_phy.c
F:	drivers/net/zynq_gem.c
F:	drivers/serial/serial_zynq.c
F:	drivers/spi/zynq_qspi.c
F:	drivers/spi/zynq_spi.c
F:	drivers/usb/host/ehci-zynq.c
F:	drivers/watchdog/cdns_wdt.c
F:	include/zynqpl.h
F:	tools/zynqimage.c
N:	zynq

ARM ZYNQMP
M:	Michal Simek <michal.simek@xilinx.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
F:	arch/arm/mach-zynqmp/
F:	drivers/clk/clk_zynqmp.c
F:	driver/firmware/firmware-zynqmp.c
F:	drivers/fpga/zynqpl.c
F:	drivers/gpio/zynq_gpio.c
F:	drivers/i2c/i2c-cdns.c
F:	drivers/i2c/muxes/pca954x.c
F:	drivers/i2c/zynq_i2c.c
F:	drivers/mailbox/zynqmp-ipi.c
F:	drivers/mmc/zynq_sdhci.c
F:	drivers/mtd/nand/raw/zynq_nand.c
F:	drivers/net/phy/xilinx_phy.c
F:	drivers/net/zynq_gem.c
F:	drivers/serial/serial_zynq.c
F:	drivers/spi/zynq_qspi.c
F:	drivers/spi/zynq_spi.c
F:	drivers/timer/cadence-ttc.c
F:	drivers/usb/host/ehci-zynq.c
F:	drivers/watchdog/cdns_wdt.c
F:	include/zynqmppl.h
F:	include/zynqmp_firmware.h
F:	tools/zynqmp*
N:	ultra96
N:	zynqmp

ARM ZYNQMP R5
M:	Michal Simek <michal.simek@xilinx.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
F:	arch/arm/mach-zynqmp-r5/

ARM PHYTIUM
M:	liuhao <liuhao@phytium.com.cn>
M:	shuyiqi <shuyiqi@phytium.com.cn>
S:	Maintained
F:	drivers/pci/pcie_phytium.c
F:	arch/arm/dts/phytium-durian.dts

BINMAN
M:	Simon Glass <sjg@chromium.org>
S:	Maintained
F:	tools/binman/

BTRFS
M:	Marek Behun <marek.behun@nic.cz>
S:	Maintained
F:	cmd/btrfs.c
F:	fs/btrfs/
F:	include/btrfs.h

BUILDMAN
M:	Simon Glass <sjg@chromium.org>
S:	Maintained
F:	tools/buildman/

CFI FLASH
M:	Stefan Roese <sr@denx.de>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-cfi-flash.git
F:	drivers/mtd/cfi_flash.c
F:	drivers/mtd/jedec_flash.c

CLOCK
M:	Lukasz Majewski <lukma@denx.de>
S:	Maintained
T:	git git://git.denx.de/u-boot-dfu.git
F:	drivers/clk/
F:	drivers/clk/imx/

COLDFIRE
M:	Huan Wang <alison.wang@nxp.com>
M:	Angelo Dureghello <angelo@sysam.it>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-coldfire.git
F:	arch/m68k/
F:	doc/arch/m68k.rst

DFU
M:	Lukasz Majewski <lukma@denx.de>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-dfu.git
F:	cmd/dfu.c
F:	cmd/usb_*.c
F:	common/dfu.c
F:	common/update.c
F:	common/usb_storage.c
F:	doc/api/dfu.rst
F:	drivers/dfu/
F:	drivers/usb/gadget/
F:	include/dfu.h

DRIVER MODEL
M:	Simon Glass <sjg@chromium.org>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-dm.git
F:	doc/driver-model/
F:	drivers/core/
F:	include/dm/
F:	test/dm/

EFI PAYLOAD
M:	Heinrich Schuchardt <xypron.glpk@gmx.de>
R:	Alexander Graf <agraf@csgraf.de>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-efi.git
F:	doc/api/efi.rst
F:	doc/uefi/*
F:	include/capitalization.h
F:	include/charset.h
F:	include/cp1250.h
F:	include/cp437.h
F:	include/efi*
F:	include/pe.h
F:	include/asm-generic/pe.h
F:	lib/charset.c
F:	lib/efi*/
F:	test/lib/efi_*
F:	test/py/tests/test_efi*
F:	test/py/tests/test_efi*/
F:	test/unicode_ut.c
F:	cmd/bootefi.c
F:	cmd/efidebug.c
F:	cmd/nvedit_efi.c
F:	tools/file2include.c

EFI VARIABLES VIA OP-TEE
M:	Ilias Apalodimas <ilias.apalodimas@linaro.org>
S:	Maintained
F:	lib/efi_loader/efi_variable_tee.c
F:	include/mm_communication.h

ENVIRONMENT
M:	Joe Hershberger <joe.hershberger@ni.com>
R:	Wolfgang Denk <wd@denx.de>
S:	Maintained
F:	env/
F:	include/env*
F:	test/env/
F:	tools/env*
F:	tools/mkenvimage.c

FPGA
M:	Michal Simek <michal.simek@xilinx.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
F:	drivers/fpga/
F:	cmd/fpga.c
F:	include/fpga.h

FLATTENED DEVICE TREE
M:	Simon Glass <sjg@chromium.org>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-fdt.git
F:	lib/fdtdec*
F:	lib/libfdt/
F:	include/fdt*
F:	include/linux/libfdt*
F:	cmd/fdt.c
F:	common/fdt_support.c

FREEBSD
M:	Rafal Jaworowski <raj@semihalf.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-freebsd.git

FREESCALE QORIQ
M:	Priyanka Jain <priyanka.jain@nxp.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq.git
F:	drivers/watchdog/sp805_wdt.c
F:	drivers/watchdog/sbsa_gwdt.c

I2C
M:	Heiko Schocher <hs@denx.de>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-i2c.git
F:	drivers/i2c/

LOGGING
M:	Simon Glass <sjg@chromium.org>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/u-boot.git
F:	common/log*
F:	cmd/log.c
F:	doc/develop/logging.rst
F:	test/log/
F:	test/py/tests/test_log.py

MALI DISPLAY PROCESSORS
M:	Liviu Dudau <liviu.dudau@foss.arm.com>
S:	Supported
T:	git git://github.com/ARM-software/u-boot.git
F:	drivers/video/mali_dp.c
F:	drivers/i2c/i2c-versatile.c

MICROBLAZE
M:	Michal Simek <monstr@monstr.eu>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
F:	arch/microblaze/
F:	cmd/mfsl.c
F:	drivers/gpio/xilinx_gpio.c
F:	drivers/net/xilinx_axi_emac.c
F:	drivers/net/xilinx_emaclite.c
F:	drivers/serial/serial_xuartlite.c
F:	drivers/spi/xilinx_spi.c
F:	drivers/sysreset/sysreset_gpio.c
F:	drivers/watchdog/xilinx_tb_wdt.c
N:	xilinx

MIPS
M:	Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-mips.git
F:	arch/mips/

MIPS CORTINA ACCESS CAxxxx
M:	Alex Nemirovsky <alex.nemirovsky@cortina-access.com>
S:	Supported
F:	board/cortina/common/
F:	drivers/gpio/cortina_gpio.c
F:	drivers/watchdog/cortina_wdt.c
F:	drivers/serial/serial_cortina.c
F:	drivers/led/led_cortina.c
F:	drivers/mmc/ca_dw_mmc.c
F:	drivers/i2c/i2c-cortina.c
F:	drivers/i2c/i2c-cortina.h

MIPS MSCC
M:	Gregory CLEMENT <gregory.clement@bootlin.com>
M:	Lars Povlsen <lars.povlsen@microchip.com>
M:	Horatiu Vultur <horatiu.vultur@microchip.com>
S:	Maintained
F:	arch/mips/mach-mscc/
F:	arch/mips/dts/luton*
F:	arch/mips/dts/mscc*
F:	arch/mips/dts/ocelot*
F:	arch/mips/dts/jr2*
F:	arch/mips/dts/serval*
F:	board/mscc/
F:	configs/mscc*
F:	drivers/gpio/mscc_sgpio.c
F:	drivers/spi/mscc_bb_spi.c
F:	include/configs/vcoreiii.h
F:	include/dt-bindings/mscc/
F:	drivers/pinctrl/mscc/
F:	drivers/net/mscc_eswitch/

MIPS JZ4780
M:	Ezequiel Garcia <ezequiel@collabora.com>
S:	Maintained
F:	arch/mips/mach-jz47xx/

MIPS Octeon
M:	Aaron Williams <awilliams@marvell.com>
S:	Maintained
F:	arch/mips/mach-octeon/
F:	arch/mips/include/asm/arch-octeon/
F:	arch/mips/dts/mrvl,cn73xx.dtsi

MMC
M:	Peng Fan <peng.fan@nxp.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-mmc.git
F:	drivers/mmc/

NAND FLASH
#M:	Scott Wood <oss@buserror.net>
S:	Orphaned (Since 2018-07)
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-nand-flash.git
F:	drivers/mtd/nand/raw/

NDS32
M:	Rick Chen <rick@andestech.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-nds32.git
F:	arch/nds32/

NETWORK
M:	Joe Hershberger <joe.hershberger@ni.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-net.git
F:	drivers/net/
F:	include/net.h
F:	net/

NIOS
M:	Thomas Chou <thomas@wytron.com.tw>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-nios.git
F:	arch/nios2/

ONENAND
#M:	Lukasz Majewski <l.majewski@majess.pl>
S:	Orphaned (Since 2017-01)
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-onenand.git
F:	drivers/mtd/onenand/

PATMAN
M:	Simon Glass <sjg@chromium.org>
S:	Maintained
F:	tools/patman/

PCI Endpoint
M:	Ramon Fried <rfried.dev@gmail.com>
S:	Maintained
F:	drivers/pci_endpoint/
F:  include/pci_ep.h

PCI MPC85xx
M:	Heiko Schocher <hs@denx.de>
S:	Maintained
F:	drivers/pci/pci_mpc85xx.c

POWER
M:	Jaehoon Chung <jh80.chung@samsung.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-pmic.git
F:	drivers/power/

POWERPC
M:	Wolfgang Denk <wd@denx.de>
S:	Maintained
F:	arch/powerpc/

POWERPC MPC8XX
M:	Christophe Leroy <christophe.leroy@c-s.fr>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-mpc8xx.git
F:	arch/powerpc/cpu/mpc8xx/

POWERPC MPC83XX
M:	Mario Six <mario.six@gdsys.cc>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-mpc83xx.git
F:	drivers/ram/mpc83xx_sdram.c
F:	include/dt-bindings/memory/mpc83xx-sdram.h
F:	drivers/sysreset/sysreset_mpc83xx.c
F:	drivers/sysreset/sysreset_mpc83xx.h
F:	drivers/clk/mpc83xx_clk.c
F:	drivers/clk/mpc83xx_clk.h
F:	include/dt-bindings/clk/mpc83xx-clk.h
F:	drivers/timer/mpc83xx_timer.c
F:	drivers/cpu/mpc83xx_cpu.c
F:	drivers/cpu/mpc83xx_cpu.h
F:	drivers/misc/mpc83xx_serdes.c
F:	arch/powerpc/cpu/mpc83xx/
F:	arch/powerpc/include/asm/arch-mpc83xx/

POWERPC MPC85XX
M:	Priyanka Jain <priyanka.jain@nxp.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-mpc85xx.git
F:	arch/powerpc/cpu/mpc85xx/

POWERPC MPC86XX
M:	Priyanka Jain <priyanka.jain@nxp.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-mpc86xx.git
F:	arch/powerpc/cpu/mpc86xx/

RISC-V
M:	Rick Chen <rick@andestech.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-riscv.git
F:	arch/riscv/
F:	cmd/riscv/
F:	tools/prelink-riscv.c

RISC-V KENDRYTE
M:	Sean Anderson <seanga2@gmail.com>
S:	Maintained
F:	doc/device-tree-bindings/mfd/kendryte,k210-sysctl.txt
F:	drivers/clk/kendryte/
F:	include/kendryte/

RNG
M:	Sughosh Ganu <sughosh.ganu@linaro.org>
R:	Heinrich Schuchardt <xypron.glpk@gmx.de>
S:	Maintained
F:	cmd/rng.c
F:	doc/api/rng.rst
F:	drivers/rng/
F:	drivers/virtio/virtio_rng.c
F:	include/rng.h

ROCKUSB
M:	Eddie Cai <eddie.cai.linux@gmail.com>
S:	Maintained
F:	drivers/usb/gadget/f_rockusb.c
F:	cmd/rockusb.c
F:	doc/README.rockusb

SANDBOX
M:	Simon Glass <sjg@chromium.org>
S:	Maintained
F:	arch/sandbox/

SH
M:	Marek Vasut <marek.vasut+renesas@gmail.com>
M:	Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-sh.git
F:	arch/sh/

SPI
M:	Jagan Teki <jagan@amarulasolutions.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-spi.git
F:	drivers/spi/
F:	include/spi*

SPI-NOR
M:	Jagan Teki <jagan@amarulasolutions.com>
M:	Vignesh R <vigneshr@ti.com>
S:	Maintained
F:	drivers/mtd/spi/
F:	include/spi_flash.h
F:	include/linux/mtd/cfi.h
F:	include/linux/mtd/spi-nor.h

SPMI
M:	Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
S:	Maintained
F:	drivers/spmi/
F:	include/spmi/

SQUASHFS
M:	Joao Marcos Costa <joaomarcos.costa@bootlin.com>
S:	Maintained
F:	fs/squashfs/
F:	include/sqfs.h
F:	cmd/sqfs.c
F:	test/py/tests/test_fs/test_squashfs/

TARGET_BCMNS3
M:	Bharat Gooty <bharat.gooty@broadcom.com>
M:	Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com>
S:	Maintained
F:	board/broadcom/bcmns3/
F:	doc/README.bcmns3
F:	configs/bcm_ns3_defconfig
F:	include/configs/bcm_ns3.h
F:	include/dt-bindings/memory/bcm-ns3-mc.h
F:	arch/arm/Kconfig
F:	arch/arm/dts/ns3-board.dts
F:	arch/arm/dts/ns3.dtsi
F:	arch/arm/cpu/armv8/bcmns3
F:	arch/arm/include/asm/arch-bcmns3/

TDA19988 HDMI ENCODER
M:	Liviu Dudau <liviu.dudau@foss.arm.com>
S:	Maintained
F:	drivers/video/tda19988.c

TI SYSTEM SECURITY
M:	Andrew F. Davis <afd@ti.com>
S:	Supported
F:	arch/arm/mach-omap2/omap5/sec_entry_cpu1.S
F:	arch/arm/mach-omap2/sec-common.c
F:	arch/arm/mach-omap2/config_secure.mk
F:	arch/arm/mach-k3/security.c
F:	arch/arm/mach-k3/config_secure.mk
F:	configs/am335x_hs_evm_defconfig
F:	configs/am335x_hs_evm_uart_defconfig
F:	configs/am43xx_hs_evm_defconfig
F:	configs/am57xx_hs_evm_defconfig
F:	configs/am57xx_hs_evm_usb_defconfig
F:	configs/dra7xx_hs_evm_defconfig
F:	configs/dra7xx_hs_evm_usb_defconfig
F:	configs/k2hk_hs_evm_defconfig
F:	configs/k2e_hs_evm_defconfig
F:	configs/k2g_hs_evm_defconfig
F:	configs/k2l_hs_evm_defconfig
F:	configs/am65x_hs_evm_r5_defconfig
F:	configs/am65x_hs_evm_a53_defconfig
F:	configs/j721e_hs_evm_r5_defconfig
F:	configs/j721e_hs_evm_a72_defconfig

TQ GROUP
#M:	Martin Krause <martin.krause@tq-systems.de>
S:	Orphaned (Since 2016-02)
T:	git git://git.denx.de/u-boot-tq-group.git

TEE
M:	Jens Wiklander <jens.wiklander@linaro.org>
S:	Maintained
F:	drivers/tee/
F:	include/tee.h
F:	include/tee/

TEE-lib
M:	Bryan O'Donoghue <bryan.odonoghue@linaro.org>
S:	Maintained
F:	lib/optee

UBI
M:	Kyungmin Park <kmpark@infradead.org>
M:	Heiko Schocher <hs@denx.de>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-ubi.git
F:	drivers/mtd/ubi/

UFS
M:	Faiz Abbas <faiz_abbas@ti.com>
S:	Maintained
F:	drivers/ufs/

USB
M:	Marek Vasut <marex@denx.de>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-usb.git
F:	drivers/usb/
F:	common/usb.c
F:	common/usb_kbd.c
F:	include/usb.h

USB xHCI
M:	Bin Meng <bmeng.cn@gmail.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-usb.git topic-xhci
F:	drivers/usb/host/xhci*
F:	include/usb/xhci.h

VIDEO
M:	Anatolij Gustschin <agust@denx.de>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-video.git
F:	drivers/video/
F:	common/lcd*.c
F:	include/lcd*.h
F:	include/video*.h

X86
M:	Simon Glass <sjg@chromium.org>
M:	Bin Meng <bmeng.cn@gmail.com>
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/custodians/u-boot-x86.git
F:	arch/x86/
F:	cmd/x86/

XEN
M:	Anastasiia Lukianenko <anastasiia_lukianenko@epam.com>
M:	Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
S:	Maintained
F:	arch/arm/cpu/armv8/xen/
F:	arch/arm/include/asm/xen.h
F:	arch/arm/include/asm/xen/
F:	cmd/pvblock.c
F:	drivers/serial/serial_xen.c
F:	drivers/xen/
F:	include/pvblock.h
F:	include/xen/
F:	include/xen.h
F:	lib/sscanf.c
F:	test/lib/sscanf.c

XTENSA
M:	Max Filippov <jcmvbkbc@gmail.com>
S:	Maintained
F:	arch/xtensa/

THE REST
M:	Tom Rini <trini@konsulko.com>
L:	u-boot@lists.denx.de
Q:	http://patchwork.ozlabs.org/project/uboot/list/
S:	Maintained
T:	git https://gitlab.denx.de/u-boot/u-boot.git
F:	configs/tools-only_defconfig
F:	*
F:	*/