MAINTAINERS: add Mattijs for Android AB
[pandora-u-boot.git] / MAINTAINERS
1 Descriptions of section entries:
2
3         P: Person (obsolete)
4         M: Mail patches to: FullName <address@domain>
5         R: Designated reviewer: FullName <address@domain>
6            These reviewers should be CCed on patches.
7         L: Mailing list that is relevant to this area
8         W: Web-page with status/info
9         Q: Patchwork web based patch tracking system site
10         T: SCM tree type and location.
11            Type is one of: git, hg, quilt, stgit, topgit
12         S: Status, one of the following:
13            Supported:   Someone is actually paid to look after this.
14            Maintained:  Someone actually looks after it.
15            Orphan:      No current maintainer [but maybe you could take the
16                         role as you write your new code].
17         F: Files and directories with wildcard patterns.
18            A trailing slash includes all files and subdirectory files.
19            F:   drivers/net/    all files in and below drivers/net
20            F:   drivers/net/*   all files in drivers/net, but not below
21            F:   */net/*         all files in "any top level directory"/net
22            One pattern per line.  Multiple F: lines acceptable.
23         N: Files and directories with regex patterns.
24            N:   [^a-z]tegra     all files whose path contains the word tegra
25            One pattern per line.  Multiple N: lines acceptable.
26            scripts/get_maintainer.pl has different behavior for files that
27            match F: pattern and matches of N: patterns.  By default,
28            get_maintainer will not look at git log history when an F: pattern
29            match occurs.  When an N: match occurs, git log history is used
30            to also notify the people that have git commit signatures.
31         X: Files and directories that are NOT maintained, same rules as F:
32            Files exclusions are tested before file matches.
33            Can be useful for excluding a specific subdirectory, for instance:
34            F:   net/
35            X:   net/ipv6/
36            matches all files in and below net excluding net/ipv6/
37         K: Keyword perl extended regex pattern to match content in a
38            patch or file.  For instance:
39            K: of_get_profile
40               matches patches or files that contain "of_get_profile"
41            K: \b(printk|pr_(info|err))\b
42               matches patches or files that contain one or more of the words
43               printk, pr_info or pr_err
44            One regex pattern per line.  Multiple K: lines acceptable.
45
46 Note: For the hard of thinking, this list is meant to remain in alphabetical
47 order. If you could add yourselves to it in alphabetical order that would be
48 so much easier [Ed]
49
50 Maintainers List (try to look for most precise areas first)
51
52                 -----------------------------------
53 ACPI:
54 M:      Simon Glass <sjg@chromium.org>
55 S:      Maintained
56 F:      board/emulation/configs/acpi.config
57 F:      cmd/acpi.c
58 F:      lib/acpi/
59
60 ANDROID AB
61 M:      Igor Opaniuk <igor.opaniuk@gmail.com>
62 M:      Mattijs Korpershoek <mkorpershoek@baylibre.com>
63 R:      Sam Protsenko <semen.protsenko@linaro.org>
64 S:      Maintained
65 F:      boot/android_ab.c
66 F:      cmd/ab_select.c
67 F:      doc/android/ab.rst
68 F:      include/android_ab.h
69 F:      test/py/tests/test_android/test_ab.py
70
71 ANDROID AVB
72 M:      Igor Opaniuk <igor.opaniuk@gmail.com>
73 S:      Maintained
74 F:      cmd/avb.c
75 F:      common/avb_verify.c
76 F:      doc/android/avb2.rst
77 F:      include/avb_verify.h
78 F:      lib/libavb/
79 F:      test/py/tests/test_android/test_avb.py
80
81 ARC
82 M:      Alexey Brodkin <alexey.brodkin@synopsys.com>
83 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
84 S:      Maintained
85 L:      uboot-snps-arc@synopsys.com
86 T:      git https://source.denx.de/u-boot/custodians/u-boot-arc.git
87 F:      arch/arc/
88 F:      board/synopsys/
89
90 ARC HSDK CGU CLOCK
91 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
92 S:      Maintained
93 L:      uboot-snps-arc@synopsys.com
94 F:      drivers/clk/clk-hsdk-cgu.c
95 F:      include/dt-bindings/clock/snps,hsdk-cgu.h
96 F:      doc/device-tree-bindings/clock/snps,hsdk-cgu.txt
97
98 ARC HSDK CREG GPIO
99 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
100 S:      Maintained
101 L:      uboot-snps-arc@synopsys.com
102 F:      doc/device-tree-bindings/gpio/snps,creg-gpio.txt
103 F:      drivers/gpio/hsdk-creg-gpio.c
104
105 ARC HSDK RESET
106 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
107 S:      Maintained
108 L:      uboot-snps-arc@synopsys.com
109 F:      include/dt-bindings/reset/snps,hsdk-reset.h
110 F:      drivers/reset/reset-hsdk.c
111
112 ARC SYNOPSYS DW MMC EXTENSIONS
113 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
114 S:      Maintained
115 L:      uboot-snps-arc@synopsys.com
116 F:      doc/device-tree-bindings/mmc/snps,dw-mmc.txt
117 F:      drivers/mmc/snps_dw_mmc.c
118
119 APPLE M1 SOC SUPPORT
120 M:      Mark Kettenis <kettenis@openbsd.org>
121 S:      Maintained
122 F:      arch/arm/include/asm/arch-apple/
123 F:      arch/arm/mach-apple/
124 F:      configs/apple_m1_defconfig
125 F:      drivers/iommu/apple_dart.c
126 F:      drivers/nvme/nvme_apple.c
127 F:      drivers/pci/pcie_apple.c
128 F:      drivers/phy/phy-apple-atc.c
129 F:      drivers/pinctrl/pinctrl-apple.c
130 F:      drivers/watchdog/apple_wdt.c
131 F:      include/configs/apple.h
132
133 ARM
134 M:      Tom Rini <trini@konsulko.com>
135 S:      Maintained
136 T:      git https://source.denx.de/u-boot/custodians/u-boot-arm.git
137 F:      arch/arm/
138 F:      arch/arm/dts/Makefile
139 F:      cmd/arm/
140
141 ARM ALTERA SOCFPGA
142 M:      Marek Vasut <marex@denx.de>
143 M:      Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
144 M:      Tien Fong Chee <tien.fong.chee@intel.com>
145 S:      Maintained
146 T:      git https://source.denx.de/u-boot/custodians/u-boot-socfpga.git
147 F:      arch/arm/mach-socfpga/
148 F:      drivers/sysreset/sysreset_socfpga*
149
150 ARM AMLOGIC SOC SUPPORT
151 M:      Neil Armstrong <neil.armstrong@linaro.org>
152 S:      Maintained
153 L:      u-boot-amlogic@groups.io
154 T:      git https://source.denx.de/u-boot/custodians/u-boot-amlogic.git
155 F:      arch/arm/mach-meson/
156 F:      arch/arm/include/asm/arch-meson/
157 F:      cmd/meson/
158 F:      drivers/clk/meson/
159 F:      drivers/serial/serial_meson.c
160 F:      drivers/reset/reset-meson.c
161 F:      drivers/i2c/meson_i2c.c
162 F:      drivers/net/phy/meson-gxl.c
163 F:      drivers/adc/meson-saradc.c
164 F:      drivers/phy/meson*
165 F:      drivers/mmc/meson_gx_mmc.c
166 F:      drivers/sm/meson-sm.c
167 F:      drivers/spi/meson_spifc.c
168 F:      drivers/pinctrl/meson/
169 F:      drivers/power/domain/meson-gx-pwrc-vpu.c
170 F:      drivers/video/meson/
171 F:      drivers/watchdog/meson_gxbb_wdt.c
172 F:      include/configs/meson64.h
173 F:      include/configs/meson64_android.h
174 F:      doc/board/amlogic/
175 N:      meson
176
177 ARM ASPEED
178 M:      Ryan Chen <ryan_chen@aspeedtech.com>
179 M:      Chia-Wei Wang <chiawei_wang@aspeedtech.com>
180 R:      Aspeed BMC SW team <BMC-SW@aspeedtech.com>
181 R:      Joel Stanley <joel@jms.id.au>
182 S:      Maintained
183 F:      arch/arm/mach-aspeed/
184 F:      arch/arm/include/asm/arch-aspeed/
185 F:      board/aspeed/
186 F:      drivers/clk/aspeed/
187 F:      drivers/crypto/aspeed/
188 F:      drivers/gpio/gpio-aspeed.c
189 F:      drivers/i2c/ast_i2c.[ch]
190 F:      drivers/mmc/aspeed_sdhci.c
191 F:      drivers/net/aspeed_mdio.c
192 F:      drivers/net/ftgmac100.[ch]
193 F:      drivers/pinctrl/aspeed/
194 F:      drivers/pwm/pwm-aspeed.c
195 F:      drivers/ram/aspeed/
196 F:      drivers/reset/reset-ast2500.c
197 F:      drivers/watchdog/ast_wdt.c
198 N:      aspeed
199
200 ARM BROADCOM BCM283X / BCM27XX
201 M:      Matthias Brugger <mbrugger@suse.com>
202 M:      Peter Robinson <pbrobinson@gmail.com>
203 S:      Maintained
204 F:      arch/arm/dts/bcm283*
205 F:      arch/arm/mach-bcm283x/
206 F:      board/raspberrypi/
207 F:      drivers/gpio/bcm2835_gpio.c
208 F:      drivers/mmc/bcm2835_sdhci.c
209 F:      drivers/mmc/bcm2835_sdhost.c
210 F:      drivers/serial/serial_bcm283x_mu.c
211 F:      drivers/serial/serial_bcm283x_pl011.c
212 F:      drivers/video/bcm2835.c
213 F:      include/dm/platform_data/serial_bcm283x_mu.h
214 F:      include/dt-bindings/pinctrl/bcm2835.h
215 F:      drivers/pinctrl/broadcom/
216 F:      configs/rpi_*
217 T:      git https://source.denx.de/u-boot/custodians/u-boot-arm.git
218
219 ARM BROADCOM BCMBCA
220 M:      Anand Gore <anand.gore@broadcom.com>
221 M:      William Zhang <william.zhang@broadcom.com>
222 M:      Kursad Oney <kursad.oney@broadcom.com>
223 M:      Joel Peshkin <joel.peshkin@broadcom.com>
224 M:      Philippe Reynes <philippe.reynes@softathome.com>
225 S:      Maintained
226 F:      arch/arm/mach-bcmbca/
227 F:      board/broadcom/bcmbca/
228 N:      bcmbca
229 N:      bcm[9]?47622
230 N:      bcm[9]?4908
231 N:      bcm[9]?4912
232 N:      bcm[9]?63138
233 N:      bcm[9]?63146
234 N:      bcm[9]?63148
235 N:      bcm[9]?63158
236 N:      bcm[9]?63178
237 N:      bcm[9]?6756
238 N:      bcm[9]?6813
239 N:      bcm[9]?6846
240 N:      bcm[9]?6855
241 N:      bcm[9]?6856
242 N:      bcm[9]?6858
243 N:      bcm[9]?6878
244
245 ARM BROADCOM BCMSTB
246 M:      Thomas Fitzsimmons <fitzsim@fitzsim.org>
247 S:      Maintained
248 F:      arch/arm/mach-bcmstb/
249 F:      board/broadcom/bcmstb/
250 F:      configs/bcm7*_defconfig
251 F:      doc/README.bcm7xxx
252 F:      drivers/mmc/bcmstb_sdhci.c
253 F:      drivers/spi/bcmstb_spi.c
254
255 ARM CORTINA ACCESS CAxxxx
256 M:      Alex Nemirovsky <alex.nemirovsky@cortina-access.com>
257 S:      Supported
258 F:      board/cortina/common/
259 F:      drivers/gpio/cortina_gpio.c
260 F:      drivers/watchdog/cortina_wdt.c
261 F:      drivers/serial/serial_cortina.c
262 F:      drivers/led/led_cortina.c
263 F:      drivers/mmc/ca_dw_mmc.c
264 F:      drivers/spi/ca_sflash.c
265 F:      drivers/i2c/i2c-cortina.c
266 F:      drivers/i2c/i2c-cortina.h
267 F:      drivers/mtd/nand/raw/cortina_nand.c
268 F:      drivers/mtd/nand/raw/cortina_nand.h
269 F:      drivers/net/cortina_ni.c
270 F:      drivers/net/cortina_ni.h
271 F:      drivers/net/phy/ca_phy.c
272 F:      configs/cortina_presidio-asic-pnand_defconfig
273
274 ARM FF-A
275 M:      Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com>
276 S:      Maintained
277 F:      arch/sandbox/include/asm/sandbox_arm_ffa.h
278 F:      arch/sandbox/include/asm/sandbox_arm_ffa_priv.h
279 F:      cmd/armffa.c
280 F:      doc/arch/arm64.ffa.rst
281 F:      doc/usage/cmd/armffa.rst
282 F:      drivers/firmware/arm-ffa/
283 F:      include/arm_ffa.h
284 F:      test/cmd/armffa.c
285 F:      test/dm/ffa.c
286
287 ARM FREESCALE IMX
288 M:      Stefano Babic <sbabic@denx.de>
289 M:      Fabio Estevam <festevam@gmail.com>
290 R:      NXP i.MX U-Boot Team <uboot-imx@nxp.com>
291 S:      Maintained
292 T:      git https://source.denx.de/u-boot/custodians/u-boot-imx.git
293 F:      arch/Kconfig.nxp
294 F:      arch/arm/cpu/arm1136/mx*/
295 F:      arch/arm/cpu/arm926ejs/mx*/
296 F:      arch/arm/cpu/armv7/vf610/
297 F:      arch/arm/dts/*imx*
298 F:      arch/arm/mach-imx/
299 F:      arch/arm/include/asm/arch-imx*/
300 F:      arch/arm/include/asm/arch-mx*/
301 F:      arch/arm/include/asm/arch-vf610/
302 F:      arch/arm/include/asm/mach-imx/
303 F:      board/freescale/*mx*/
304 F:      board/freescale/common/
305 F:      common/spl/spl_imx_container.c
306 F:      drivers/serial/serial_mxc.c
307 F:      include/imx_container.h
308
309 ARM HISILICON
310 M:      Peter Griffin <peter.griffin@linaro.org>
311 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
312 S:      Maintained
313 F:      arch/arm/cpu/armv8/hisilicon
314 F:      arch/arm/include/asm/arch-hi6220/
315 F:      arch/arm/include/asm/arch-hi3660/
316 F:      arch/arm/mach-histb
317
318 ARM HPE GXP ARCHITECTURE
319 M:      Jean-Marie Verdun <verdun@hpe.com>
320 M:      Nick Hawkins <nick.hawkins@hpe.com>
321 S:      Maintained
322 F:      arch/arm/dts/hpe-bmc*
323 F:      arch/arm/dts/hpe-gxp*
324 F:      arch/arm/mach-hpe/
325 F:      board/hpe/
326 F:      configs/gxp_defconfig
327 F:      doc/device-tree-bindings/spi/hpe,gxp-spi.yaml
328 F:      drivers/timer/gxp-timer.c
329 F:      drivers/spi/gxp_spi.c
330
331 ARM IPQ40XX
332 M:      Robert Marko <robert.marko@sartura.hr>
333 M:      Luka Kovacic <luka.kovacic@sartura.hr>
334 M:      Luka Perkov <luka.perkov@sartura.hr>
335 S:      Maintained
336 F:      arch/arm/mach-ipq40xx/
337 F:      include/dt-bindings/clock/qcom,ipq4019-gcc.h
338 F:      include/dt-bindings/reset/qcom,ipq4019-reset.h
339 F:      drivers/reset/reset-ipq4019.c
340 F:      drivers/phy/phy-qcom-ipq4019-usb.c
341 F:      drivers/spi/spi-qup.c
342 F:      drivers/net/mdio-ipq4019.c
343 F:      drivers/rng/msm_rng.c
344
345 ARM LAYERSCAPE SFP
346 M:      Sean Anderson <sean.anderson@seco.com>
347 S:      Maintained
348 F:      drivers/misc/ls2_sfp.c
349
350 ARM MARVELL KIRKWOOD ARMADA-XP ARMADA-38X ARMADA-37XX ARMADA-7K/8K
351 M:      Stefan Roese <sr@denx.de>
352 S:      Maintained
353 T:      git https://source.denx.de/u-boot/custodians/u-boot-marvell.git
354 F:      arch/arm/mach-kirkwood/
355 F:      arch/arm/mach-mvebu/
356 F:      drivers/ata/ahci_mvebu.c
357 F:      drivers/clk/mvebu/
358 F:      drivers/ddr/marvell/
359 F:      drivers/gpio/mvebu_gpio.c
360 F:      drivers/i2c/mvtwsi.c
361 F:      drivers/mmc/xenon_sdhci.c
362 F:      drivers/phy/marvell/
363 F:      drivers/pinctrl/mvebu/
364 F:      drivers/rtc/armada38x.c
365 F:      drivers/spi/kirkwood_spi.c
366 F:      drivers/spi/mvebu_a3700_spi.c
367 F:      drivers/pci/pcie_dw_mvebu.c
368 F:      drivers/pci/pcie-xilinx-nwl.c
369 F:      drivers/watchdog/armada-37xx-wdt.c
370 F:      drivers/watchdog/orion_wdt.c
371 F:      include/configs/mv-common.h
372
373 ARM MARVELL PCIE CONTROLLER DRIVERS
374 M:      Stefan Roese <sr@denx.de>
375 S:      Maintained
376 T:      git https://source.denx.de/u-boot/custodians/u-boot-marvell.git
377 F:      drivers/pci/pci-aardvark.c
378 F:      drivers/pci/pci_mvebu.c
379
380 ARM MARVELL SERIAL DRIVERS
381 M:      Pali Rohár <pali@kernel.org>
382 M:      Stefan Roese <sr@denx.de>
383 S:      Maintained
384 T:      git https://source.denx.de/u-boot/custodians/u-boot-marvell.git
385 F:      drivers/serial/serial_mvebu_a3700.c
386
387 ARM MEDIATEK
388 M:      Ryder Lee <ryder.lee@mediatek.com>
389 M:      Weijie Gao <weijie.gao@mediatek.com>
390 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
391 R:      GSS_MTK_Uboot_upstream <GSS_MTK_Uboot_upstream@mediatek.com>
392 S:      Maintained
393 F:      arch/arm/mach-mediatek/
394 F:      arch/arm/include/asm/arch-mediatek/
395 F:      board/mediatek/
396 F:      doc/device-tree-bindings/phy/phy-mtk-*
397 F:      doc/device-tree-bindings/usb/mediatek,*
398 F:      doc/README.mediatek
399 F:      drivers/clk/mediatek/
400 F:      drivers/cpu/mtk_cpu.c
401 F:      drivers/i2c/mtk_i2c.c
402 F:      drivers/mmc/mtk-sd.c
403 F:      drivers/phy/phy-mtk-*
404 F:      drivers/pinctrl/mediatek/
405 F:      drivers/power/domain/mtk-power-domain.c
406 F:      drivers/ram/mediatek/
407 F:      drivers/spi/mtk_snfi_spi.c
408 F:      drivers/spi/mtk_spim.c
409 F:      drivers/timer/mtk_timer.c
410 F:      drivers/usb/host/xhci-mtk.c
411 F:      drivers/usb/mtu3/
412 F:      drivers/watchdog/mtk_wdt.c
413 F:      drivers/net/mtk_eth.c
414 F:      drivers/net/mtk_eth.h
415 F:      drivers/reset/reset-mediatek.c
416 F:      include/dt-bindings/clock/mediatek,*
417 F:      include/dt-bindings/power/mediatek,*
418 F:      tools/mtk_image.c
419 F:      tools/mtk_image.h
420 F:      tools/mtk_nand_headers.c
421 F:      tools/mtk_nand_headers.h
422 N:      mediatek
423
424 ARM METHODE SUPPORT
425 M:      Robert Marko <robert.marko@sartura.hr>
426 S:      Maintained
427 F:      arch/arm/dts/armada-3720-eDPU*
428 F:      arch/arm/dts/armada-3720-uDPU*
429 F:      configs/eDPU_defconfig
430 F:      configs/uDPU_defconfig
431
432 ARM MICROCHIP/ATMEL AT91
433 M:      Eugen Hristev <eugen.hristev@microchip.com>
434 S:      Maintained
435 T:      git https://source.denx.de/u-boot/custodians/u-boot-at91.git
436 F:      arch/arm/dts/at91*
437 F:      arch/arm/dts/sam*
438 F:      arch/arm/mach-at91/
439 F:      board/atmel/
440 F:      drivers/cpu/at91_cpu.c
441 F:      drivers/memory/atmel-ebi.c
442 F:      drivers/misc/microchip_flexcom.c
443 F:      drivers/timer/atmel_tcb_timer.c
444 F:      include/dt-bindings/clk/at91.h
445 F:      include/dt-bindings/clock/at91.h
446 F:      include/dt-bindings/dma/at91.h
447 F:      include/dt-bindings/mfd/at91-usart.h
448 F:      include/dt-bindings/mfd/atmel-flexcom.h
449 F:      include/dt-bindings/pinctrl/at91.h
450 F:      include/dt-bindings/sound/microchip,pdmc.h
451 F:      drivers/timer/mchp-pit64b-timer.c
452
453 ARM MSC SM2S IMX8MP SOM
454 M:      Martyn Welch <martyn.welch@collabora.com>
455 M:      Ian Ray <ian.ray@ge.com>
456 S:      Maintained
457 F:      arch/arm/dts/imx8mp-msc-sm2s*
458 F:      board/msc/sm2s_imx8mp/
459 F:      configs/msc_sm2s_imx8mp_defconfig
460 F:      include/configs/msc_sm2s_imx8mp.h
461
462 ARM NEXELL S5P4418
463 M:      Stefan Bosch <stefan_b@posteo.net>
464 S:      Maintained
465 F:      arch/arm/cpu/armv7/s5p4418/
466 F:      arch/arm/dts/s5p4418*
467 F:      arch/arm/mach-nexell/
468 F:      board/friendlyarm/
469 F:      configs/s5p4418_nanopi2_defconfig
470 F:      doc/README.s5p4418
471 F:      drivers/gpio/nx_gpio.c
472 F:      drivers/i2c/nx_i2c.c
473 F:      drivers/mmc/nexell_dw_mmc_dm.c
474 F:      drivers/pinctrl/nexell/
475 F:      drivers/serial/serial_s5p4418_pl011.c
476 F:      drivers/video/nexell/
477 F:      drivers/video/nexell_display.c
478 F:      include/configs/s5p4418_nanopi2.h
479
480 ARM OWL
481 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
482 S:      Maintained
483 F:      arch/arm/include/asm/arch-owl/
484 F:      arch/arm/mach-owl/
485 F:      doc/board/actions/
486 F:      drivers/clk/owl/
487 F:      drivers/serial/serial_owl.c
488 F:      include/configs/owl-common.h
489 F:      configs/bubblegum_96_defconfig
490 F:      configs/cubieboard7_defconfig
491
492 ARM RENESAS RMOBILE/R-CAR
493 M:      Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
494 M:      Marek Vasut <marek.vasut+renesas@mailbox.org>
495 S:      Maintained
496 T:      git https://source.denx.de/u-boot/custodians/u-boot-sh.git
497 F:      arch/arm/mach-rmobile/
498 F:      drivers/clk/renesas/
499 F:      drivers/gpio/gpio-rcar.c
500 F:      drivers/i2c/rcar_*
501 F:      drivers/i2c/sh_i2c.c
502 F:      drivers/mmc/renesas-sdhi.c
503 F:      drivers/mmc/sh_mmcif*
504 F:      drivers/mmc/tmio-common*
505 F:      drivers/mtd/renesas_rpc_hf.c
506 F:      drivers/net/ravb.c
507 F:      drivers/net/rswitch.c
508 F:      drivers/net/sh_eth*
509 F:      drivers/pci/pci-rcar-*
510 F:      drivers/phy/phy-rcar-*
511 F:      drivers/phy/renesas/
512 F:      drivers/pinctrl/renesas/
513 F:      drivers/serial/serial_sh*
514 F:      drivers/spi/renesas_rpc_spi.c
515 F:      drivers/spi/sh_qspi.c
516 F:      drivers/sysinfo/rcar3.c
517 F:      drivers/usb/host/xhci-rcar*
518
519 ARM ROCKCHIP
520 M:      Simon Glass <sjg@chromium.org>
521 M:      Philipp Tomsich <philipp.tomsich@vrull.eu>
522 M:      Kever Yang <kever.yang@rock-chips.com>
523 S:      Maintained
524 T:      git https://source.denx.de/u-boot/custodians/u-boot-rockchip.git
525 F:      arch/arm/dts/px30*
526 F:      arch/arm/dts/rk3*
527 F:      arch/arm/dts/rockchip*
528 F:      arch/arm/dts/rv11*
529 F:      arch/arm/include/asm/arch-rockchip/
530 F:      arch/arm/mach-rockchip/
531 F:      board/amarula/vyasa-rk3288/
532 F:      board/anbernic/rgxx3_rk3566/
533 F:      board/chipspark/popmetal_rk3288
534 F:      board/engicam/px30_core/
535 F:      board/firefly/
536 F:      board/mqmaker/miqi_rk3288/
537 F:      board/phytec/phycore_rk3288
538 F:      board/pine64
539 F:      board/radxa/
540 F:      board/rockchip/
541 F:      board/theobroma-systems
542 F:      board/vamrs/rock960_rk3399/
543 F:      drivers/clk/rockchip/
544 F:      drivers/gpio/rk_gpio.c
545 F:      drivers/misc/rockchip-efuse.c
546 F:      drivers/mmc/rockchip_sdhci.c
547 F:      drivers/mmc/rockchip_dw_mmc.c
548 F:      drivers/pinctrl/rockchip/
549 F:      drivers/ram/rockchip/
550 F:      drivers/sysreset/sysreset_rockchip.c
551 F:      drivers/video/rockchip/
552 F:      tools/rkcommon.c
553 F:      tools/rkcommon.h
554 F:      tools/rkimage.c
555 F:      tools/rksd.c
556 F:      tools/rkspi.c
557 N:      rockchip
558
559 ARM SAMSUNG
560 M:      Minkyu Kang <mk7.kang@samsung.com>
561 S:      Maintained
562 T:      git https://source.denx.de/u-boot/custodians/u-boot-samsung.git
563 F:      arch/arm/mach-exynos/
564 F:      arch/arm/mach-s5pc1xx/
565 F:      arch/arm/cpu/armv7/s5p-common/
566
567 ARM SANCLOUD
568 M:      Paul Barker <paul.barker@sancloud.com>
569 R:      Marc Murphy <marc.murphy@sancloud.com>
570 S:      Supported
571 F:      arch/arm/dts/am335x-sancloud*
572
573 ARM SNAPDRAGON
574 M:      Caleb Connolly <caleb.connolly@linaro.org>
575 M:      Neil Armstrong <neil.armstrong@linaro.org>
576 R:      Sumit Garg <sumit.garg@linaro.org>
577 S:      Maintained
578 F:      arch/arm/mach-snapdragon/
579 F:      drivers/button/button-qcom-pmic.c
580 F:      drivers/clk/qcom/
581 F:      drivers/gpio/msm_gpio.c
582 F:      drivers/mmc/msm_sdhci.c
583 F:      drivers/phy/msm8916-usbh-phy.c
584 F:      drivers/pinctrl/qcom/
585 F:      drivers/serial/serial_msm.c
586 F:      drivers/serial/serial_msm_geni.c
587 F:      drivers/smem/msm_smem.c
588 F:      drivers/spmi/spmi-msm.c
589 F:      drivers/usb/host/ehci-msm.c
590
591 ARM STI
592 M:      Patrice Chotard <patrice.chotard@foss.st.com>
593 S:      Maintained
594 T:      git https://source.denx.de/u-boot/custodians/u-boot-stm.git
595 F:      arch/arm/mach-sti/
596 F:      arch/arm/include/asm/arch-sti*/
597 F:      drivers/phy/sti_usb_phy.c
598 F:      drivers/pinctrl/pinctrl-sti.c
599 F:      drivers/mmc/sti_sdhci.c
600 F:      drivers/reset/sti-reset.c
601 F:      drivers/serial/serial_sti_asc.c
602 F:      drivers/sysreset/sysreset_sti.c
603 F:      drivers/timer/arm_global_timer.c
604 F:      drivers/usb/host/dwc3-sti-glue.c
605 F:      include/dwc3-sti-glue.h
606 F:      include/dt-bindings/clock/stih407-clks.h
607 F:      include/dt-bindings/clock/stih410-clks.h
608 F:      include/dt-bindings/reset/stih407-resets.h
609
610 ARM STM STM32MP
611 M:      Patrick Delaunay <patrick.delaunay@foss.st.com>
612 M:      Patrice Chotard <patrice.chotard@foss.st.com>
613 L:      uboot-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
614 T:      git https://source.denx.de/u-boot/custodians/u-boot-stm.git
615 S:      Maintained
616 F:      arch/arm/mach-stm32mp/
617 F:      doc/board/st/
618 F:      drivers/adc/stm32-adc*
619 F:      drivers/clk/stm32/
620 F:      drivers/gpio/stm32_gpio.c
621 F:      drivers/hwspinlock/stm32_hwspinlock.c
622 F:      drivers/i2c/stm32f7_i2c.c
623 F:      drivers/mailbox/stm32-ipcc.c
624 F:      drivers/misc/stm32mp_fuse.c
625 F:      drivers/misc/stm32_rcc.c
626 F:      drivers/mmc/stm32_sdmmc2.c
627 F:      drivers/mtd/nand/raw/stm32_fmc2_nand.c
628 F:      drivers/phy/phy-stm32-usbphyc.c
629 F:      drivers/pinctrl/pinctrl_stm32.c
630 F:      drivers/power/pmic/stpmic1.c
631 F:      drivers/power/regulator/stm32-vrefbuf.c
632 F:      drivers/power/regulator/stpmic1.c
633 F:      drivers/ram/stm32mp1/
634 F:      drivers/remoteproc/stm32_copro.c
635 F:      drivers/reset/stm32-reset.c
636 F:      drivers/rng/optee_rng.c
637 F:      drivers/rng/stm32_rng.c
638 F:      drivers/rtc/stm32_rtc.c
639 F:      drivers/serial/serial_stm32.*
640 F:      drivers/spi/stm32_qspi.c
641 F:      drivers/spi/stm32_spi.c
642 F:      drivers/video/stm32/stm32_ltdc.c
643 F:      drivers/watchdog/stm32mp_wdt.c
644 F:      include/dt-bindings/clock/stm32fx-clock.h
645 F:      include/dt-bindings/clock/stm32mp*
646 F:      include/dt-bindings/pinctrl/stm32-pinfunc.h
647 F:      include/dt-bindings/reset/stm32mp*
648 F:      include/stm32_rcc.h
649 F:      tools/logos/st.bmp
650 F:      tools/stm32image.c
651 N:      stm
652 N:      stm32
653
654
655 ARM STM STV0991
656 M:      Vikas Manocha <vikas.manocha@st.com>
657 S:      Maintained
658 F:      arch/arm/cpu/armv7/stv0991/
659 F:      arch/arm/include/asm/arch-stv0991/
660
661 ARM SUNXI
662 M:      Jagan Teki <jagan@amarulasolutions.com>
663 M:      Andre Przywara <andre.przywara@arm.com>
664 S:      Maintained
665 T:      git https://source.denx.de/u-boot/custodians/u-boot-sunxi.git
666 F:      arch/arm/cpu/armv7/sunxi/
667 F:      arch/arm/include/asm/arch-sunxi/
668 F:      arch/arm/mach-sunxi/
669 F:      board/sunxi/
670 F:      drivers/clk/sunxi/
671 F:      drivers/phy/allwinner/
672 F:      drivers/pinctrl/sunxi/
673 F:      drivers/video/sunxi/
674 F:      tools/sunxi*
675
676 ARM TEGRA
677 M:      Thierry Reding <treding@nvidia.com>
678 M:      Svyatoslav Ryhel <clamor95@gmail.com>
679 S:      Maintained
680 T:      git https://source.denx.de/u-boot/custodians/u-boot-tegra.git
681 F:      arch/arm/dts/tegra*
682 F:      arch/arm/include/asm/arch-tegra*/
683 F:      arch/arm/mach-tegra/
684 F:      drivers/*/tegra*
685 F:      drivers/*/tegra*/
686
687 ARM TI
688 M:      Tom Rini <trini@konsulko.com>
689 S:      Maintained
690 T:      git https://source.denx.de/u-boot/custodians/u-boot-ti.git
691 F:      arch/arm/dts/am57xx*
692 F:      arch/arm/dts/dra7*
693 F:      arch/arm/mach-davinci/
694 F:      arch/arm/mach-k3/
695 F:      arch/arm/mach-keystone/
696 F:      arch/arm/mach-omap2/
697 F:      arch/arm/include/asm/arch-omap*/
698 F:      arch/arm/include/asm/ti-common/
699 F:      board/ti/
700 F:      drivers/dma/ti*
701 F:      drivers/dma/ti*/
702 F:      drivers/firmware/ti_sci.*
703 F:      drivers/gpio/omap_gpio.c
704 F:      drivers/memory/ti-aemif.c
705 F:      drivers/misc/k3_avs.c
706 F:      drivers/mailbox/k3-sec-procy.c
707 F:      drivers/pci/pcie_dw_ti.c
708 F:      drivers/phy/keystone-usb-phy.c
709 F:      drivers/phy/omap-usb2-phy.c
710 F:      drivers/phy/phy-ti-am654.c
711 F:      drivers/phy/ti-pipe3-phy.c
712 F:      drivers/ram/k3*
713 F:      drivers/ram/k3*/
714 F:      drivers/remoteproc/ipu_rproc.c
715 F:      drivers/remoteproc/k3_system_controller.c
716 F:      drivers/remoteproc/pruc_rpoc.c
717 F:      drivers/remoteproc/ti*
718 F:      drivers/reset/reset-dra7.c
719 F:      drivers/reset/reset-ti-sci.c
720 F:      drivers/rtc/davinci.c
721 F:      drivers/serial/serial_omap.c
722 F:      drivers/soc/ti/
723 F:      drivers/sysreset/sysreset-ti-sci.c
724 F:      drivers/thermal/ti-bandgap.c
725 F:      drivers/timer/omap-timer.c
726 F:      drivers/video/tidss/
727 F:      drivers/watchdog/omap_wdt.c
728 F:      include/linux/pruss_driver.h
729 F:      include/linux/soc/ti/
730
731 ARM U8500
732 M:      Stephan Gerhold <stephan@gerhold.net>
733 R:      Linus Walleij <linus.walleij@linaro.org>
734 S:      Maintained
735 F:      arch/arm/dts/ste-*
736 F:      arch/arm/mach-u8500/
737 F:      drivers/gpio/nmk_gpio.c
738 F:      drivers/phy/phy-ab8500-usb.c
739 F:      drivers/power/pmic/ab8500.c
740 F:      drivers/timer/nomadik-mtu-timer.c
741 F:      drivers/usb/musb-new/ux500.c
742 F:      drivers/video/mcde_simple.c
743
744 ARM UNIPHIER
745 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
746 R:      Dai Okamura <okamura.dai@socionext.com>
747 S:      Maintained
748 F:      arch/arm/dts/uniphier-*
749 F:      arch/arm/mach-uniphier/
750 F:      configs/uniphier_*_defconfig
751 N:      uniphier
752
753 ARM VERSAL NET
754 M:      Michal Simek <michal.simek@amd.com>
755 S:      Maintained
756 T:      git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
757 F:      arch/arm/mach-versal-net/
758 F:      drivers/soc/soc_xilinx_versal_net.c
759 N:      (?<!uni)versal-net
760
761 ARM VERSAL
762 M:      Michal Simek <michal.simek@amd.com>
763 S:      Maintained
764 T:      git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
765 F:      arch/arm/mach-versal/
766 F:      drivers/net/xilinx_axi_mrmac.*
767 F:      drivers/soc/soc_xilinx_versal.c
768 F:      drivers/spi/cadence_ospi_versal.c
769 F:      drivers/watchdog/xilinx_wwdt.c
770 N:      (?<!uni)versal
771
772 ARM VERSATILE EXPRESS DRIVERS
773 M:      Liviu Dudau <liviu.dudau@foss.arm.com>
774 S:      Maintained
775 T:      git git://github.com/ARM-software/u-boot.git
776 F:      drivers/misc/vexpress_config.c
777 N:      vexpress
778
779 ARM ZYNQ
780 M:      Michal Simek <monstr@monstr.eu>
781 S:      Maintained
782 T:      git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
783 F:      arch/arm/mach-zynq/
784 F:      doc/board/xilinx/
785 F:      doc/device-tree-bindings/video/syncoam,seps525.txt
786 F:      drivers/clk/clk_zynq.c
787 F:      drivers/fpga/zynqpl.c
788 F:      drivers/gpio/zynq_gpio.c
789 F:      drivers/i2c/i2c-cdns.c
790 F:      drivers/i2c/muxes/pca954x.c
791 F:      drivers/i2c/zynq_i2c.c
792 F:      drivers/mmc/zynq_sdhci.c
793 F:      drivers/mtd/nand/raw/zynq_nand.c
794 F:      drivers/net/phy/ethernet_id.c
795 F:      drivers/net/phy/xilinx_phy.c
796 F:      drivers/net/zynq_gem.c
797 F:      drivers/pinctrl/pinctrl-zynqmp.c
798 F:      drivers/serial/serial_zynq.c
799 F:      drivers/spi/zynq_qspi.c
800 F:      drivers/spi/zynq_spi.c
801 F:      drivers/usb/host/ehci-zynq.c
802 F:      drivers/watchdog/cdns_wdt.c
803 F:      include/zynqpl.h
804 F:      tools/zynqimage.c
805 N:      zynq
806
807 ARM ZYNQMP
808 M:      Michal Simek <michal.simek@amd.com>
809 S:      Maintained
810 T:      git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
811 F:      arch/arm/mach-zynqmp/
812 F:      drivers/clk/clk_zynqmp.c
813 F:      driver/firmware/firmware-zynqmp.c
814 F:      drivers/fpga/zynqpl.c
815 F:      drivers/gpio/gpio_slg7xl45106.c
816 F:      drivers/gpio/zynq_gpio.c
817 F:      drivers/gpio/zynqmp_gpio_modepin.c
818 F:      drivers/i2c/i2c-cdns.c
819 F:      drivers/i2c/muxes/pca954x.c
820 F:      drivers/i2c/zynq_i2c.c
821 F:      drivers/mailbox/zynqmp-ipi.c
822 F:      drivers/mmc/zynq_sdhci.c
823 F:      drivers/mtd/nand/raw/zynq_nand.c
824 F:      drivers/net/phy/xilinx_phy.c
825 F:      drivers/net/zynq_gem.c
826 F:      drivers/phy/phy-zynqmp.c
827 F:      drivers/power/domain/zynqmp-power-domain.c
828 F:      drivers/pwm/pwm-cadence-ttc.c
829 F:      drivers/serial/serial_zynq.c
830 F:      drivers/reset/reset-zynqmp.c
831 F:      drivers/rtc/zynqmp_rtc.c
832 F:      drivers/soc/soc_xilinx_zynqmp.c
833 F:      drivers/spi/zynq_qspi.c
834 F:      drivers/spi/zynq_spi.c
835 F:      drivers/timer/cadence-ttc.c
836 F:      drivers/video/seps525.c
837 F:      drivers/video/zynqmp/
838 F:      drivers/watchdog/cdns_wdt.c
839 F:      include/zynqmppl.h
840 F:      include/zynqmp_firmware.h
841 F:      tools/zynqmp*
842 N:      ultra96
843 N:      zynqmp
844
845 ARM ZYNQMP R5
846 M:      Michal Simek <michal.simek@amd.com>
847 S:      Maintained
848 T:      git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
849 F:      arch/arm/mach-zynqmp-r5/
850
851 ARM PHYTIUM
852 M:      liuhao <liuhao@phytium.com.cn>
853 M:      shuyiqi <shuyiqi@phytium.com.cn>
854 S:      Maintained
855 F:      drivers/pci/pcie_phytium.c
856 F:      arch/arm/dts/phytium-durian.dts
857
858 ASPEED AST2600 I2C DRIVER
859 M:      Ryan Chen <ryan_chen@aspeedtech.com>
860 R:      Aspeed BMC SW team <BMC-SW@aspeedtech.com>
861 S:      Maintained
862 F:      drivers/i2c/ast2600_i2c.c
863
864 ASPEED FMC SPI DRIVER
865 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
866 M:      Cédric Le Goater <clg@kaod.org>
867 R:      Aspeed BMC SW team <BMC-SW@aspeedtech.com>
868 S:      Maintained
869 F:      drivers/spi/spi-aspeed-smc.c
870
871 BINMAN
872 M:      Simon Glass <sjg@chromium.org>
873 M:      Alper Nebi Yasak <alpernebiyasak@gmail.com>
874 S:      Maintained
875 F:      tools/binman/
876
877 BLKMAP
878 M:      Tobias Waldekranz <tobias@waldekranz.com>
879 S:      Maintained
880 F:      cmd/blkmap.c
881 F:      doc/usage/blkmap.rst
882 F:      drivers/block/blkmap.c
883 F:      include/blkmap.h
884 F:      test/dm/blkmap.c
885
886 BOOTDEVICE
887 M:      Simon Glass <sjg@chromium.org>
888 S:      Maintained
889 F:      boot/bootdev*.c
890 F:      boot/bootflow.c
891 F:      boot/bootmeth*.c
892 F:      boot/bootstd.c
893 F:      cmd/bootdev.c
894 F:      cmd/bootflow.c
895 F:      doc/develop/bootstd.rst
896 F:      doc/usage/bootdev.rst
897 F:      doc/usage/bootflow.rst
898 F:      doc/usage/bootmeth.rst
899 F:      drivers/mmc/mmc_bootdev.c
900 F:      include/bootdev.h
901 F:      include/bootflow.h
902 F:      include/bootmeth.h
903 F:      include/bootstd.h
904 F:      net/eth_bootdevice.c
905 F:      test/boot/
906
907 BTRFS
908 M:      Marek Behún <kabel@kernel.org>
909 R:      Qu Wenruo <wqu@suse.com>
910 L:      linux-btrfs@vger.kernel.org
911 S:      Maintained
912 F:      cmd/btrfs.c
913 F:      fs/btrfs/
914 F:      include/btrfs.h
915
916 BUILDMAN
917 M:      Simon Glass <sjg@chromium.org>
918 S:      Maintained
919 F:      tools/buildman/
920
921 CAAM
922 M:      Gaurav Jain <gaurav.jain@nxp.com>
923 S:      Maintained
924 F:      arch/arm/dts/ls1021a-twr-u-boot.dtsi
925 F:      drivers/crypto/fsl/
926 F:      include/fsl_sec.h
927
928 CAT
929 M:      Roger Knecht <rknecht@pm.me>
930 S:      Maintained
931 F:      cmd/cat.c
932
933 CFI FLASH
934 M:      Stefan Roese <sr@denx.de>
935 S:      Maintained
936 T:      git https://source.denx.de/u-boot/custodians/u-boot-cfi-flash.git
937 F:      drivers/mtd/cfi_flash.c
938 F:      drivers/mtd/jedec_flash.c
939
940 CLOCK
941 M:      Lukasz Majewski <lukma@denx.de>
942 M:      Sean Anderson <seanga2@gmail.com>
943 S:      Maintained
944 T:      git https://source.denx.de/u-boot/custodians/u-boot-clk.git
945 F:      drivers/clk/
946 F:      drivers/clk/imx/
947
948 COLDFIRE
949 M:      Huan Wang <alison.wang@nxp.com>
950 M:      Angelo Dureghello <angelo@kernel-space.org>
951 S:      Maintained
952 T:      git https://source.denx.de/u-boot/custodians/u-boot-coldfire.git
953 F:      arch/m68k/
954 F:      doc/arch/m68k.rst
955 F:      drivers/watchdog/mcf_wdt.c
956
957 CYCLIC
958 M:      Stefan Roese <sr@denx.de>
959 S:      Maintained
960 F:      cmd/cyclic.c
961 F:      common/cyclic.c
962 F:      include/cyclic.h
963
964 DFU
965 M:      Lukasz Majewski <lukma@denx.de>
966 M:      Mattijs Korpershoek <mkorpershoek@baylibre.com>
967 S:      Maintained
968 T:      git https://source.denx.de/u-boot/custodians/u-boot-dfu.git
969 F:      cmd/dfu.c
970 F:      cmd/usb_*.c
971 F:      common/dfu.c
972 F:      common/update.c
973 F:      doc/api/dfu.rst
974 F:      doc/usage/dfu.rst
975 F:      drivers/dfu/
976 F:      drivers/usb/gadget/
977 F:      include/dfu.h
978
979 DRIVER MODEL
980 M:      Simon Glass <sjg@chromium.org>
981 S:      Maintained
982 T:      git https://source.denx.de/u-boot/custodians/u-boot-dm.git
983 F:      doc/driver-model/
984 F:      drivers/core/
985 F:      include/dm/
986 F:      test/dm/
987
988 EFI APP
989 M:      Simon Glass <sjg@chromium.org>
990 M:      Heinrich Schuchardt <xypron.glpk@gmx.de>
991 S:      Maintained
992 W:      https://docs.u-boot.org/en/latest/develop/uefi/u-boot_on_efi.html
993 F:      board/efi/efi-x86_app
994 F:      configs/efi-x86_app*
995 F:      doc/develop/uefi/u-boot_on_efi.rst
996 F:      drivers/block/efi-media-uclass.c
997 F:      drivers/block/sb_efi_media.c
998 F:      lib/efi/efi_app.c
999 F:      scripts/build-efi.sh
1000 F:      test/dm/efi_media.c
1001
1002 EFI PAYLOAD
1003 M:      Heinrich Schuchardt <xypron.glpk@gmx.de>
1004 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
1005 S:      Maintained
1006 T:      git https://source.denx.de/u-boot/custodians/u-boot-efi.git
1007 F:      arch/arm/lib/*_efi.*
1008 F:      cmd/bootefi.c
1009 F:      cmd/eficonfig.c
1010 F:      cmd/efidebug.c
1011 F:      cmd/nvedit_efi.c
1012 F:      doc/api/efi.rst
1013 F:      doc/develop/uefi/*
1014 F:      doc/mkeficapsule.1
1015 F:      doc/usage/bootefi.rst
1016 F:      drivers/rtc/emul_rtc.c
1017 F:      include/capitalization.h
1018 F:      include/charset.h
1019 F:      include/cp1250.h
1020 F:      include/cp437.h
1021 F:      include/efi*
1022 F:      include/pe.h
1023 F:      include/asm-generic/pe.h
1024 F:      include/mm_communication.h
1025 F:      lib/charset.c
1026 F:      lib/efi*/
1027 F:      test/lib/efi_*
1028 F:      test/py/tests/test_efi*
1029 F:      test/py/tests/test_efi*/
1030 F:      test/unicode_ut.c
1031 F:      cmd/bootefi.c
1032 F:      cmd/efidebug.c
1033 F:      cmd/nvedit_efi.c
1034 F:      tools/efivar.py
1035 F:      tools/file2include.c
1036 F:      tools/mkeficapsule.c
1037
1038 ENVIRONMENT
1039 M:      Joe Hershberger <joe.hershberger@ni.com>
1040 S:      Maintained
1041 F:      env/
1042 F:      include/env/
1043 F:      include/env*
1044 F:      test/env/
1045 F:      tools/env/
1046 F:      tools/env*
1047 F:      tools/mkenvimage.c
1048
1049 ENVIRONMENT AS TEXT
1050 M:      Simon Glass <sjg@chromium.org>
1051 S:      Maintained
1052 F:      doc/usage/environment.rst
1053 F:      scripts/env2string.awk
1054
1055 EROFS
1056 M:      Huang Jianan <jnhuang95@gmail.com>
1057 L:      linux-erofs@lists.ozlabs.org
1058 S:      Maintained
1059 F:      cmd/erofs.c
1060 F:      fs/erofs/
1061 F:      include/erofs.h
1062 F:      test/py/tests/test_fs/test_erofs.py
1063
1064 EVENTS
1065 M:      Simon Glass <sjg@chromium.org>
1066 S:      Maintained
1067 F:      cmd/event.c
1068 F:      common/event.c
1069 F:      include/event.h
1070 F:      scripts/event_dump.py
1071 F:      test/common/event.c
1072 F:      test/py/tests/test_event_dump.py
1073
1074 FASTBOOT
1075 M:      Mattijs Korpershoek <mkorpershoek@baylibre.com>
1076 S:      Maintained
1077 F:      cmd/fastboot.c
1078 F:      doc/android/fastboot*.rst
1079 F:      include/fastboot.h
1080 F:      include/fastboot-internal.h
1081 F:      include/net/fastboot_tcp.h
1082 F:      include/net/fastboot_udp.h
1083 F:      drivers/fastboot/
1084 F:      drivers/usb/gadget/f_fastboot.c
1085 F:      net/fastboot_tcp.c
1086 F:      net/fastboot_udp.c
1087 F:      test/dm/fastboot.c
1088
1089 FPGA
1090 M:      Michal Simek <michal.simek@amd.com>
1091 S:      Maintained
1092 T:      git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
1093 F:      drivers/fpga/
1094 F:      cmd/fpga.c
1095 F:      include/fpga.h
1096 F:      test/dm/fpga.c
1097
1098 FLATTENED DEVICE TREE
1099 M:      Simon Glass <sjg@chromium.org>
1100 S:      Maintained
1101 T:      git https://source.denx.de/u-boot/custodians/u-boot-fdt.git
1102 F:      lib/fdtdec*
1103 F:      lib/libfdt/
1104 F:      include/fdt*
1105 F:      include/linux/libfdt*
1106 F:      cmd/fdt.c
1107 F:      common/fdt_support.c
1108 F:      scripts/dtc-version.sh
1109
1110 FREEBSD
1111 M:      Rafal Jaworowski <raj@semihalf.com>
1112 S:      Maintained
1113 T:      git https://source.denx.de/u-boot/custodians/u-boot-freebsd.git
1114
1115 FREESCALE QORIQ
1116 M:      Priyanka Jain <priyanka.jain@nxp.com>
1117 S:      Maintained
1118 T:      git https://source.denx.de/u-boot/custodians/u-boot-fsl-qoriq.git
1119 F:      drivers/watchdog/sp805_wdt.c
1120 F:      drivers/watchdog/sbsa_gwdt.c
1121
1122 GATEWORKS_SC
1123 M:      Tim Harvey <tharvey@gateworks.com>
1124 S:      Maintained
1125 F:      drivers/misc/gsc.c
1126 F:      include/gsc.h
1127
1128 I2C
1129 M:      Heiko Schocher <hs@denx.de>
1130 S:      Maintained
1131 T:      git https://source.denx.de/u-boot/custodians/u-boot-i2c.git
1132 F:      drivers/i2c/
1133
1134 KWBIMAGE / KWBOOT TOOLS
1135 M:      Pali Rohár <pali@kernel.org>
1136 M:      Marek Behún <kabel@kernel.org>
1137 M:      Stefan Roese <sr@denx.de>
1138 S:      Maintained
1139 T:      git https://source.denx.de/u-boot/custodians/u-boot-marvell.git
1140 F:      doc/README.kwbimage
1141 F:      doc/kwboot.1
1142 F:      tools/kwb*
1143
1144 LED
1145 M:      Ivan Vozvakhov <i.vozvakhov@vk.team>
1146 S:      Supported
1147 F:      doc/device-tree-bindings/leds/leds-pwm.txt
1148 F:      drivers/led/led_pwm.c
1149
1150 LOGGING
1151 M:      Simon Glass <sjg@chromium.org>
1152 S:      Maintained
1153 T:      git https://source.denx.de/u-boot/u-boot.git
1154 F:      common/log*
1155 F:      cmd/log.c
1156 F:      doc/develop/logging.rst
1157 F:      include/log.h
1158 F:      lib/getopt.c
1159 F:      test/log/
1160 F:      test/py/tests/test_log.py
1161
1162 MALI DISPLAY PROCESSORS
1163 M:      Liviu Dudau <liviu.dudau@foss.arm.com>
1164 S:      Supported
1165 T:      git git://github.com/ARM-software/u-boot.git
1166 F:      drivers/video/mali_dp.c
1167 F:      drivers/i2c/i2c-versatile.c
1168
1169 MICROBLAZE
1170 M:      Michal Simek <monstr@monstr.eu>
1171 S:      Maintained
1172 T:      git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
1173 F:      arch/microblaze/
1174 F:      cmd/mfsl.c
1175 F:      drivers/gpio/xilinx_gpio.c
1176 F:      drivers/net/xilinx_axi_emac.c
1177 F:      drivers/net/xilinx_emaclite.c
1178 F:      drivers/serial/serial_xuartlite.c
1179 F:      drivers/spi/xilinx_spi.c
1180 F:      drivers/sysreset/sysreset_gpio.c
1181 F:      drivers/timer/xilinx-timer.c
1182 F:      drivers/watchdog/xilinx_tb_wdt.c
1183 N:      xilinx
1184
1185 MIPS
1186 M:      Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
1187 S:      Maintained
1188 T:      git https://source.denx.de/u-boot/custodians/u-boot-mips.git
1189 F:      arch/mips/
1190
1191 MIPS CORTINA ACCESS CAxxxx
1192 M:      Alex Nemirovsky <alex.nemirovsky@cortina-access.com>
1193 S:      Supported
1194 F:      board/cortina/common/
1195 F:      drivers/gpio/cortina_gpio.c
1196 F:      drivers/watchdog/cortina_wdt.c
1197 F:      drivers/serial/serial_cortina.c
1198 F:      drivers/led/led_cortina.c
1199 F:      drivers/mmc/ca_dw_mmc.c
1200 F:      drivers/spi/ca_sflash.c
1201 F:      drivers/i2c/i2c-cortina.c
1202 F:      drivers/i2c/i2c-cortina.h
1203 F:      drivers/net/cortina_ni.c
1204 F:      drivers/net/cortina_ni.h
1205 F:      drivers/net/phy/ca_phy.c
1206
1207 MIPS MEDIATEK
1208 M:      Weijie Gao <weijie.gao@mediatek.com>
1209 R:      GSS_MTK_Uboot_upstream <GSS_MTK_Uboot_upstream@mediatek.com>
1210 S:      Maintained
1211 F:      arch/mips/mach-mtmips/
1212 F:      arch/mips/dts/mt7620.dtsi
1213 F:      arch/mips/dts/mt7621.dtsi
1214 F:      arch/mips/dts/mt7620-u-boot.dtsi
1215 F:      arch/mips/dts/mt7621-u-boot.dtsi
1216 F:      include/configs/mt7620.h
1217 F:      include/configs/mt7621.h
1218 F:      include/dt-bindings/clock/mt7620-clk.h
1219 F:      include/dt-bindings/clock/mt7621-clk.h
1220 F:      include/dt-bindings/clock/mt7628-clk.h
1221 F:      include/dt-bindings/reset/mt7620-reset.h
1222 F:      include/dt-bindings/reset/mt7621-reset.h
1223 F:      include/dt-bindings/reset/mt7628-reset.h
1224 F:      drivers/clk/mtmips/
1225 F:      drivers/pinctrl/mtmips/
1226 F:      drivers/gpio/mt7620_gpio.c
1227 F:      drivers/mtd/nand/raw/mt7621_nand.c
1228 F:      drivers/mtd/nand/raw/mt7621_nand.h
1229 F:      drivers/mtd/nand/raw/mt7621_nand_spl.c
1230 F:      drivers/net/mt7620-eth.c
1231 F:      drivers/phy/mt7620-usb-phy.c
1232 F:      drivers/reset/reset-mtmips.c
1233 F:      drivers/serial/serial_mt7620.c
1234 F:      drivers/spi/mt7620_spi.c
1235 F:      drivers/sysreset/sysreset_resetctl.c
1236 F:      drivers/watchdog/mt7620_wdt.c
1237
1238 MIPS MSCC
1239 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
1240 M:      Lars Povlsen <lars.povlsen@microchip.com>
1241 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
1242 S:      Maintained
1243 F:      arch/mips/mach-mscc/
1244 F:      arch/mips/dts/luton*
1245 F:      arch/mips/dts/mscc*
1246 F:      arch/mips/dts/ocelot*
1247 F:      arch/mips/dts/jr2*
1248 F:      arch/mips/dts/serval*
1249 F:      board/mscc/
1250 F:      configs/mscc*
1251 F:      drivers/gpio/mscc_sgpio.c
1252 F:      drivers/spi/mscc_bb_spi.c
1253 F:      include/configs/vcoreiii.h
1254 F:      include/dt-bindings/mscc/
1255 F:      drivers/pinctrl/mscc/
1256 F:      drivers/net/mscc_eswitch/
1257
1258 MIPS JZ4780
1259 M:      Ezequiel Garcia <ezequiel@collabora.com>
1260 S:      Maintained
1261 F:      arch/mips/mach-jz47xx/
1262
1263 MIPS Octeon
1264 M:      Aaron Williams <awilliams@marvell.com>
1265 S:      Maintained
1266 F:      arch/mips/mach-octeon/
1267 F:      arch/mips/include/asm/arch-octeon/
1268 F:      arch/mips/dts/mrvl,cn73xx.dtsi
1269
1270 MMC
1271 M:      Peng Fan <peng.fan@nxp.com>
1272 M:      Jaehoon Chung <jh80.chung@samsung.com>
1273 S:      Maintained
1274 T:      git https://source.denx.de/u-boot/custodians/u-boot-mmc.git
1275 F:      drivers/mmc/
1276
1277 NETWORK
1278 M:      Joe Hershberger <joe.hershberger@ni.com>
1279 M:      Ramon Fried <rfried.dev@gmail.com>
1280 S:      Maintained
1281 T:      git https://source.denx.de/u-boot/custodians/u-boot-net.git
1282 F:      drivers/net/
1283 F:      include/net.h
1284 F:      net/
1285
1286 NIOS
1287 M:      Thomas Chou <thomas@wytron.com.tw>
1288 S:      Maintained
1289 T:      git https://source.denx.de/u-boot/custodians/u-boot-nios.git
1290 F:      arch/nios2/
1291
1292 NVMe
1293 M:      Bin Meng <bmeng.cn@gmail.com>
1294 S:      Maintained
1295 F:      drivers/nvme/
1296 F:      cmd/nvme.c
1297 F:      include/nvme.h
1298 F:      doc/develop/driver-model/nvme.rst
1299
1300 NVMXIP
1301 M:      Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com>
1302 S:      Maintained
1303 F:      doc/develop/driver-model/nvmxip.rst
1304 F:      doc/device-tree-bindings/nvmxip/nvmxip_qspi.txt
1305 F:      drivers/mtd/nvmxip/
1306 F:      test/dm/nvmxip.c
1307
1308 NVMEM
1309 M:      Sean Anderson <seanga2@gmail.com>
1310 S:      Maintained
1311 F:      doc/api/nvmem.rst
1312 F:      drivers/misc/nvmem.c
1313 F:      drivers/reboot-mode/reboot-mode-nvmem.c
1314 F:      include/nvmem.h
1315
1316 NXP C45 TJA11XX PHY DRIVER
1317 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
1318 S:      Maintained
1319 F:      drivers/net/phy/nxp-c45-tja11xx.c
1320
1321 ONENAND
1322 #M:     Lukasz Majewski <l.majewski@majess.pl>
1323 S:      Orphaned (Since 2017-01)
1324 T:      git https://source.denx.de/u-boot/custodians/u-boot-onenand.git
1325 F:      drivers/mtd/onenand/
1326
1327 OUT4-IMX6ULL-NANO BOARD
1328 M:      Oleh Kravchenko <oleg@kaa.org.ua>
1329 S:      Maintained
1330 T:      git https://github.com/Oleh-Kravchenko/u-boot-out4.git
1331 F:      arch/arm/dts/ev-imx280-nano-x-mb.dts
1332 F:      arch/arm/dts/o4-imx-nano.dts
1333 F:      arch/arm/dts/o4-imx6ull-nano.dtsi
1334 F:      board/out4
1335 F:      configs/ev-imx280-nano-x-mb_defconfig
1336 F:      configs/o4-imx6ull-nano_defconfig
1337 F:      include/configs/o4-imx6ull-nano.h
1338
1339 PATMAN
1340 M:      Simon Glass <sjg@chromium.org>
1341 S:      Maintained
1342 F:      tools/patman/
1343
1344 PCI Endpoint
1345 M:      Ramon Fried <rfried.dev@gmail.com>
1346 S:      Maintained
1347 F:      drivers/pci_endpoint/
1348 F:  include/pci_ep.h
1349
1350 PCI MPC85xx
1351 M:      Heiko Schocher <hs@denx.de>
1352 S:      Maintained
1353 F:      drivers/pci/pci_mpc85xx.c
1354
1355 PCI MPS
1356 M:      Stephen Carlson <stcarlso@linux.microsoft.com>
1357 S:      Maintained
1358 F:      cmd/pci_mps.c
1359 F:      test/cmd/pci_mps.c
1360
1361 POWER
1362 M:      Jaehoon Chung <jh80.chung@samsung.com>
1363 S:      Maintained
1364 T:      git https://source.denx.de/u-boot/custodians/u-boot-pmic.git
1365 F:      drivers/power/
1366 F:      include/power/
1367
1368 POWERPC
1369 S:      Orphan (Since 2022-10-21)
1370 F:      arch/powerpc/
1371
1372 POWERPC MPC8XX
1373 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
1374 S:      Maintained
1375 T:      git https://source.denx.de/u-boot/custodians/u-boot-mpc8xx.git
1376 F:      arch/powerpc/cpu/mpc8xx/
1377
1378 POWERPC MPC83XX
1379 M:      Mario Six <mario.six@gdsys.cc>
1380 S:      Maintained
1381 T:      git https://source.denx.de/u-boot/custodians/u-boot-mpc83xx.git
1382 F:      drivers/ram/mpc83xx_sdram.c
1383 F:      include/dt-bindings/memory/mpc83xx-sdram.h
1384 F:      drivers/sysreset/sysreset_mpc83xx.c
1385 F:      drivers/sysreset/sysreset_mpc83xx.h
1386 F:      drivers/clk/mpc83xx_clk.c
1387 F:      drivers/clk/mpc83xx_clk.h
1388 F:      include/dt-bindings/clk/mpc83xx-clk.h
1389 F:      drivers/timer/mpc83xx_timer.c
1390 F:      drivers/cpu/mpc83xx_cpu.c
1391 F:      drivers/cpu/mpc83xx_cpu.h
1392 F:      drivers/misc/mpc83xx_serdes.c
1393 F:      arch/powerpc/cpu/mpc83xx/
1394 F:      arch/powerpc/include/asm/arch-mpc83xx/
1395
1396 POWERPC MPC85XX
1397 M:      Marek Behún <kabel@kernel.org>
1398 S:      Maintained
1399 T:      git https://source.denx.de/u-boot/custodians/u-boot-mpc85xx.git
1400 F:      arch/powerpc/cpu/mpc85xx/
1401
1402 RAW NAND
1403 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
1404 M:      Michael Trimarchi <michael@amarulasolutions.com>
1405 S:      Maintained
1406 T:      git https://source.denx.de/u-boot/custodians/u-boot-nand-flash.git
1407 F:      drivers/mtd/nand/raw/
1408
1409 RISC-V
1410 M:      Rick Chen <rick@andestech.com>
1411 M:      Leo <ycliang@andestech.com>
1412 S:      Maintained
1413 T:      git https://source.denx.de/u-boot/custodians/u-boot-riscv.git
1414 F:      arch/riscv/
1415 F:      cmd/riscv/
1416 F:      doc/arch/riscv.rst
1417 F:      doc/usage/sbi.rst
1418 F:      drivers/sysreset/sysreset_sbi.c
1419 F:      drivers/timer/andes_plmt_timer.c
1420 F:      drivers/timer/riscv_aclint_timer.c
1421 F:      tools/prelink-riscv.c
1422
1423 RISC-V CANAAN KENDRYTE K210
1424 M:      Sean Anderson <seanga2@gmail.com>
1425 S:      Maintained
1426 F:      doc/device-tree-bindings/mfd/canaan,k210-sysctl.txt
1427 F:      doc/device-tree-bindings/pinctrl/canaan,k210-fpioa.txt
1428 F:      drivers/clk/clk_k210.c
1429 F:      drivers/pinctrl/pinctrl-k210.c
1430 F:      include/k210/
1431
1432 RNG
1433 M:      Sughosh Ganu <sughosh.ganu@linaro.org>
1434 R:      Heinrich Schuchardt <xypron.glpk@gmx.de>
1435 S:      Maintained
1436 F:      cmd/rng.c
1437 F:      doc/api/rng.rst
1438 F:      drivers/rng/
1439 F:      drivers/virtio/virtio_rng.c
1440 F:      include/rng.h
1441
1442 ROCKUSB
1443 M:      Eddie Cai <eddie.cai.linux@gmail.com>
1444 S:      Maintained
1445 F:      drivers/usb/gadget/f_rockusb.c
1446 F:      cmd/rockusb.c
1447 F:      doc/README.rockusb
1448
1449 SANDBOX
1450 M:      Simon Glass <sjg@chromium.org>
1451 S:      Maintained
1452 F:      arch/sandbox/
1453 F:      doc/arch/sandbox.rst
1454 F:      drivers/*/*sandbox*.c
1455 F:      include/dt-bindings/*/sandbox*.h
1456 F:      include/os.h
1457
1458 SEAMA
1459 M:      Linus Walleij <linus.walleij@linaro.org>
1460 S:      Maintained
1461 F:      cmd/seama.c
1462 F:      doc/usage/cmd/seama.rst
1463 F:      test/cmd/seama.c
1464
1465 SEMIHOSTING
1466 R:      Sean Anderson <sean.anderson@seco.com>
1467 S:      Orphaned
1468 N:      semihosting
1469
1470 SETEXPR
1471 M:      Roland Gaudig <roland.gaudig@weidmueller.com>
1472 S:      Maintained
1473 F:      cmd/printf.c
1474 F:      doc/usage/setexpr.rst
1475
1476 SH
1477 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
1478 M:      Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1479 S:      Maintained
1480 T:      git https://source.denx.de/u-boot/custodians/u-boot-sh.git
1481 F:      arch/sh/
1482
1483 SL28CLPD
1484 M:      Michael Walle <michael@walle.cc>
1485 S:      Maintained
1486 F:      drivers/gpio/sl28cpld-gpio.c
1487 F:      drivers/misc/sl28cpld.c
1488 F:      drivers/watchdog/sl28cpld-wdt.c
1489
1490 SMCCC TRNG
1491 M:      Etienne Carriere <etienne.carriere@linaro.org>
1492 S:      Maintained
1493 F:      drivers/rng/smccc_trng.c
1494
1495 SPI
1496 M:      Jagan Teki <jagan@amarulasolutions.com>
1497 S:      Maintained
1498 T:      git https://source.denx.de/u-boot/custodians/u-boot-spi.git
1499 F:      drivers/spi/
1500 F:      include/spi*
1501
1502 SPI NAND
1503 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
1504 M:      Michael Trimarchi <michael@amarulasolutions.com>
1505 R:      Frieder Schrempf <frieder.schrempf@kontron.de>
1506 S:      Maintained
1507 T:      git https://source.denx.de/u-boot/custodians/u-boot-nand-flash.git
1508 F:      drivers/mtd/nand/spi/
1509
1510 SPI-NOR
1511 M:      Jagan Teki <jagan@amarulasolutions.com>
1512 M:      Vignesh R <vigneshr@ti.com>
1513 S:      Maintained
1514 F:      drivers/mtd/spi/
1515 F:      include/spi_flash.h
1516 F:      include/linux/mtd/cfi.h
1517 F:      include/linux/mtd/spi-nor.h
1518
1519 SPMI
1520 M:      Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
1521 S:      Maintained
1522 F:      drivers/spmi/
1523 F:      include/spmi/
1524
1525 SQUASHFS
1526 M:      Joao Marcos Costa <jmcosta944@gmail.com>
1527 R:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
1528 R:      Miquel Raynal <miquel.raynal@bootlin.com>
1529 S:      Maintained
1530 F:      fs/squashfs/
1531 F:      include/sqfs.h
1532 F:      cmd/sqfs.c
1533 F:      test/py/tests/test_fs/test_squashfs/
1534
1535 STACKPROTECTOR
1536 M:      Joel Peshkin <joel.peshkin@broadcom.com>
1537 S:      Maintained
1538 F:      common/stackprot.c
1539 F:      cmd/stackprot_test.c
1540 F:      test/py/tests/test_stackprotector.py
1541
1542 TARGET_BCMNS3
1543 M:      Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com>
1544 S:      Maintained
1545 F:      board/broadcom/bcmns3/
1546 F:      doc/README.bcmns3
1547 F:      configs/bcm_ns3_defconfig
1548 F:      include/configs/bcm_ns3.h
1549 F:      include/dt-bindings/memory/bcm-ns3-mc.h
1550 F:      arch/arm/Kconfig
1551 F:      arch/arm/dts/ns3-board.dts
1552 F:      arch/arm/dts/ns3.dtsi
1553 F:      arch/arm/cpu/armv8/bcmns3
1554 F:      arch/arm/include/asm/arch-bcmns3/
1555 F:      cmd/broadcom/Makefile
1556 F:      cmd/broadcom/chimp_boot.c
1557 F:      cmd/broadcom/nitro_image_load.c
1558 F:      cmd/broadcom/chimp_handshake.c
1559
1560 TDA19988 HDMI ENCODER
1561 M:      Liviu Dudau <liviu.dudau@foss.arm.com>
1562 S:      Maintained
1563 F:      drivers/video/tda19988.c
1564
1565 TI LP5562 LED DRIVER
1566 M:      Rasmus Villemoes <rasmus.villemoes@prevas.dk>
1567 S:      Supported
1568 F:      drivers/led/led_lp5562.c
1569
1570 TI SYSTEM SECURITY
1571 M:      Andrew F. Davis <afd@ti.com>
1572 S:      Supported
1573 F:      arch/arm/mach-omap2/omap5/sec_entry_cpu1.S
1574 F:      arch/arm/mach-omap2/sec-common.c
1575 F:      arch/arm/mach-omap2/config_secure.mk
1576 F:      arch/arm/mach-k3/security.c
1577 F:      configs/am335x_hs_evm_defconfig
1578 F:      configs/am335x_hs_evm_uart_defconfig
1579 F:      configs/am43xx_hs_evm_defconfig
1580 F:      configs/am43xx_hs_evm_qspi_defconfig
1581 F:      configs/am57xx_hs_evm_defconfig
1582 F:      configs/am57xx_hs_evm_usb_defconfig
1583 F:      configs/dra7xx_hs_evm_defconfig
1584 F:      configs/dra7xx_hs_evm_usb_defconfig
1585 F:      configs/k2hk_hs_evm_defconfig
1586 F:      configs/k2e_hs_evm_defconfig
1587 F:      configs/k2g_hs_evm_defconfig
1588 F:      configs/k2l_hs_evm_defconfig
1589
1590 TPM DRIVERS
1591 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
1592 S:      Maintained
1593 T:      git https://source.denx.de/u-boot/custodians/u-boot-tpm.git
1594 F:      cmd/tpm*
1595 F:      drivers/tpm/
1596 F:      include/tpm*
1597
1598 TQ GROUP
1599 #M:     Martin Krause <martin.krause@tq-systems.de>
1600 S:      Orphaned (Since 2016-02)
1601 T:      git git://git.denx.de/u-boot-tq-group.git
1602
1603 TEE
1604 M:      Jens Wiklander <jens.wiklander@linaro.org>
1605 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
1606 T:      git https://source.denx.de/u-boot/custodians/u-boot-tpm.git
1607 S:      Maintained
1608 F:      drivers/tee/
1609 F:      include/tee.h
1610 F:      include/tee/
1611
1612 TEE-lib
1613 M:      Bryan O'Donoghue <bryan.odonoghue@linaro.org>
1614 S:      Maintained
1615 F:      lib/optee
1616
1617 UBI
1618 M:      Kyungmin Park <kmpark@infradead.org>
1619 M:      Heiko Schocher <hs@denx.de>
1620 S:      Maintained
1621 T:      git https://source.denx.de/u-boot/custodians/u-boot-ubi.git
1622 F:      drivers/mtd/ubi/
1623
1624 UFS
1625 M:      Bhupesh Sharma <bhupesh.linux@gmail.com>
1626 M:      Neha Malcom Francis <n-francis@ti.com>
1627 S:      Maintained
1628 F:      drivers/ufs/
1629
1630 USB
1631 M:      Marek Vasut <marex@denx.de>
1632 S:      Maintained
1633 T:      git https://source.denx.de/u-boot/custodians/u-boot-usb.git
1634 F:      drivers/usb/
1635 F:      common/usb.c
1636 F:      common/usb_kbd.c
1637 F:      common/usb_storage.c
1638 F:      include/usb.h
1639
1640 USB xHCI
1641 M:      Bin Meng <bmeng.cn@gmail.com>
1642 S:      Maintained
1643 T:      git https://source.denx.de/u-boot/custodians/u-boot-usb.git topic-xhci
1644 F:      drivers/usb/host/xhci*
1645 F:      include/usb/xhci.h
1646
1647 UUID testing
1648 M:      Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com>
1649 S:      Maintained
1650 F:      test/lib/uuid.c
1651
1652 VIDEO
1653 M:      Anatolij Gustschin <agust@denx.de>
1654 S:      Maintained
1655 T:      git https://source.denx.de/u-boot/custodians/u-boot-video.git
1656 F:      drivers/video/
1657 F:      include/video*.h
1658
1659 VirtIO
1660 M:      Bin Meng <bmeng.cn@gmail.com>
1661 S:      Maintained
1662 F:      drivers/virtio/
1663 F:      cmd/virtio.c
1664 F:      include/config/virtio/
1665 F:      include/config/virtio.h
1666 F:      include/config/cmd/virtio.h
1667 F:      include/virtio*.h
1668 F:      test/dm/virtio.c
1669 F:      doc/develop/driver-model/virtio.rst
1670
1671 WATCHDOG
1672 M:      Stefan Roese <sr@denx.de>
1673 S:      Maintained
1674 T:      git https://source.denx.de/u-boot/custodians/u-boot-watchdog.git
1675 F:      cmd/wdt.c
1676 F:      drivers/watchdog/
1677 F:      include/watchdog*.h
1678
1679 X86
1680 M:      Simon Glass <sjg@chromium.org>
1681 M:      Bin Meng <bmeng.cn@gmail.com>
1682 S:      Maintained
1683 T:      git https://source.denx.de/u-boot/custodians/u-boot-x86.git
1684 F:      arch/x86/
1685 F:      cmd/x86/
1686
1687 XEN
1688 M:      Anastasiia Lukianenko <vicooodin@gmail.com>
1689 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
1690 S:      Maintained
1691 F:      arch/arm/cpu/armv8/xen/
1692 F:      arch/arm/include/asm/xen.h
1693 F:      arch/arm/include/asm/xen/
1694 F:      cmd/pvblock.c
1695 F:      drivers/serial/serial_xen.c
1696 F:      drivers/xen/
1697 F:      include/pvblock.h
1698 F:      include/xen/
1699 F:      include/xen.h
1700 F:      lib/sscanf.c
1701 F:      test/lib/sscanf.c
1702
1703 XTENSA
1704 M:      Max Filippov <jcmvbkbc@gmail.com>
1705 S:      Maintained
1706 F:      arch/xtensa/
1707
1708 XXD
1709 M:      Roger Knecht <rknecht@pm.me>
1710 S:      Maintained
1711 F:      cmd/xxd.c
1712 F:      doc/usage/cmd/xxd.rst
1713 F:      test/py/tests/test_xxd/
1714
1715 THE REST
1716 M:      Tom Rini <trini@konsulko.com>
1717 L:      u-boot@lists.denx.de
1718 Q:      http://patchwork.ozlabs.org/project/uboot/list/
1719 S:      Maintained
1720 T:      git https://source.denx.de/u-boot/u-boot.git
1721 F:      configs/tools-only_defconfig
1722 F:      *
1723 F:      */