MAINTAINERS 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101
  1. Descriptions of section entries:
  2. P: Person (obsolete)
  3. M: Mail patches to: FullName <address@domain>
  4. R: Designated reviewer: FullName <address@domain>
  5. These reviewers should be CCed on patches.
  6. L: Mailing list that is relevant to this area
  7. W: Web-page with status/info
  8. Q: Patchwork web based patch tracking system site
  9. T: SCM tree type and location.
  10. Type is one of: git, hg, quilt, stgit, topgit
  11. S: Status, one of the following:
  12. Supported: Someone is actually paid to look after this.
  13. Maintained: Someone actually looks after it.
  14. Orphan: No current maintainer [but maybe you could take the
  15. role as you write your new code].
  16. F: Files and directories with wildcard patterns.
  17. A trailing slash includes all files and subdirectory files.
  18. F: drivers/net/ all files in and below drivers/net
  19. F: drivers/net/* all files in drivers/net, but not below
  20. F: */net/* all files in "any top level directory"/net
  21. One pattern per line. Multiple F: lines acceptable.
  22. N: Files and directories with regex patterns.
  23. N: [^a-z]tegra all files whose path contains the word tegra
  24. One pattern per line. Multiple N: lines acceptable.
  25. scripts/get_maintainer.pl has different behavior for files that
  26. match F: pattern and matches of N: patterns. By default,
  27. get_maintainer will not look at git log history when an F: pattern
  28. match occurs. When an N: match occurs, git log history is used
  29. to also notify the people that have git commit signatures.
  30. X: Files and directories that are NOT maintained, same rules as F:
  31. Files exclusions are tested before file matches.
  32. Can be useful for excluding a specific subdirectory, for instance:
  33. F: net/
  34. X: net/ipv6/
  35. matches all files in and below net excluding net/ipv6/
  36. K: Keyword perl extended regex pattern to match content in a
  37. patch or file. For instance:
  38. K: of_get_profile
  39. matches patches or files that contain "of_get_profile"
  40. K: \b(printk|pr_(info|err))\b
  41. matches patches or files that contain one or more of the words
  42. printk, pr_info or pr_err
  43. One regex pattern per line. Multiple K: lines acceptable.
  44. Note: For the hard of thinking, this list is meant to remain in alphabetical
  45. order. If you could add yourselves to it in alphabetical order that would be
  46. so much easier [Ed]
  47. Maintainers List (try to look for most precise areas first)
  48. -----------------------------------
  49. ANDROID AB
  50. M: Igor Opaniuk <igor.opaniuk@gmail.com>
  51. R: Sam Protsenko <joe.skb7@gmail.com>
  52. S: Maintained
  53. F: cmd/ab_select.c
  54. F: common/android_ab.c
  55. F: doc/android/ab.rst
  56. F: include/android_ab.h
  57. F: test/py/tests/test_android/test_ab.py
  58. ANDROID AVB
  59. M: Igor Opaniuk <igor.opaniuk@gmail.com>
  60. S: Maintained
  61. F: cmd/avb.c
  62. F: common/avb_verify.c
  63. F: doc/android/avb2.rst
  64. F: include/avb_verify.h
  65. F: lib/libavb/
  66. F: test/py/tests/test_android/test_avb.py
  67. ARC
  68. M: Alexey Brodkin <alexey.brodkin@synopsys.com>
  69. M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
  70. S: Maintained
  71. L: uboot-snps-arc@synopsys.com
  72. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-arc.git
  73. F: arch/arc/
  74. F: board/synopsys/
  75. ARC HSDK CGU CLOCK
  76. M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
  77. S: Maintained
  78. L: uboot-snps-arc@synopsys.com
  79. F: drivers/clk/clk-hsdk-cgu.c
  80. F: include/dt-bindings/clock/snps,hsdk-cgu.h
  81. F: doc/device-tree-bindings/clock/snps,hsdk-cgu.txt
  82. ARC HSDK CREG GPIO
  83. M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
  84. S: Maintained
  85. L: uboot-snps-arc@synopsys.com
  86. F: doc/device-tree-bindings/gpio/snps,creg-gpio.txt
  87. F: drivers/gpio/hsdk-creg-gpio.c
  88. ARC HSDK RESET
  89. M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
  90. S: Maintained
  91. L: uboot-snps-arc@synopsys.com
  92. F: include/dt-bindings/reset/snps,hsdk-reset.h
  93. F: drivers/reset/reset-hsdk.c
  94. ARC SYNOPSYS DW MMC EXTENSIONS
  95. M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
  96. S: Maintained
  97. L: uboot-snps-arc@synopsys.com
  98. F: doc/device-tree-bindings/mmc/snps,dw-mmc.txt
  99. F: drivers/mmc/snps_dw_mmc.c
  100. ARM
  101. M: Tom Rini <trini@konsulko.com>
  102. S: Maintained
  103. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-arm.git
  104. F: arch/arm/
  105. F: cmd/arm/
  106. ARM ALTERA SOCFPGA
  107. M: Marek Vasut <marex@denx.de>
  108. M: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
  109. M: Ley Foon Tan <ley.foon.tan@intel.com>
  110. S: Maintainted
  111. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-socfpga.git
  112. F: arch/arm/mach-socfpga/
  113. F: drivers/sysreset/sysreset_socfpga*
  114. ARM AMLOGIC SOC SUPPORT
  115. M: Neil Armstrong <narmstrong@baylibre.com>
  116. S: Maintained
  117. L: u-boot-amlogic@groups.io
  118. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic.git
  119. F: arch/arm/mach-meson/
  120. F: arch/arm/include/asm/arch-meson/
  121. F: drivers/clk/meson/
  122. F: drivers/serial/serial_meson.c
  123. F: drivers/reset/reset-meson.c
  124. F: drivers/i2c/meson_i2c.c
  125. F: drivers/net/phy/meson-gxl.c
  126. F: drivers/adc/meson-saradc.c
  127. F: drivers/phy/meson*
  128. F: drivers/mmc/meson_gx_mmc.c
  129. F: drivers/spi/meson_spifc.c
  130. F: drivers/pinctrl/meson/
  131. F: drivers/power/domain/meson-gx-pwrc-vpu.c
  132. F: drivers/video/meson/
  133. F: include/configs/meson64.h
  134. F: include/configs/meson64_android.h
  135. F: doc/board/amlogic/
  136. N: meson
  137. ARM BROADCOM BCM283X
  138. M: Matthias Brugger <mbrugger@suse.com>
  139. S: Maintained
  140. F: arch/arm/dts/bcm283*
  141. F: arch/arm/mach-bcm283x/
  142. F: board/raspberrypi/
  143. F: drivers/gpio/bcm2835_gpio.c
  144. F: drivers/mmc/bcm2835_sdhci.c
  145. F: drivers/mmc/bcm2835_sdhost.c
  146. F: drivers/serial/serial_bcm283x_mu.c
  147. F: drivers/serial/serial_bcm283x_pl011.c
  148. F: drivers/video/bcm2835.c
  149. F: include/dm/platform_data/serial_bcm283x_mu.h
  150. F: include/dt-bindings/pinctrl/bcm2835.h
  151. F: drivers/pinctrl/broadcom/
  152. ARM BROADCOM BCMSTB
  153. M: Thomas Fitzsimmons <fitzsim@fitzsim.org>
  154. S: Maintained
  155. F: arch/arm/mach-bcmstb/
  156. F: board/broadcom/bcmstb/
  157. F: configs/bcm7*_defconfig
  158. F: doc/README.bcm7xxx
  159. F: drivers/mmc/bcmstb_sdhci.c
  160. F: drivers/spi/bcmstb_spi.c
  161. ARM CORTINA ACCESS CAxxxx
  162. M: Alex Nemirovsky <alex.nemirovsky@cortina-access.com>
  163. S: Supported
  164. F: board/cortina/common/
  165. F: drivers/gpio/cortina_gpio.c
  166. F: drivers/watchdog/cortina_wdt.c
  167. F: drivers/serial/serial_cortina.c
  168. F: drivers/led/led_cortina.c
  169. F: drivers/mmc/ca_dw_mmc.c
  170. F: drivers/i2c/i2c-cortina.c
  171. F: drivers/i2c/i2c-cortina.h
  172. ARM/CZ.NIC TURRIS MOX SUPPORT
  173. M: Marek Behun <marek.behun@nic.cz>
  174. S: Maintained
  175. F: arch/arm/dts/armada-3720-turris-mox.dts
  176. F: board/CZ.NIC/
  177. F: configs/turris_*_defconfig
  178. F: include/configs/turris_*.h
  179. ARM FREESCALE IMX
  180. M: Stefano Babic <sbabic@denx.de>
  181. M: Fabio Estevam <festevam@gmail.com>
  182. R: NXP i.MX U-Boot Team <uboot-imx@nxp.com>
  183. S: Maintained
  184. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git
  185. F: arch/arm/cpu/arm1136/mx*/
  186. F: arch/arm/cpu/arm926ejs/mx*/
  187. F: arch/arm/cpu/armv7/vf610/
  188. F: arch/arm/dts/*imx*
  189. F: arch/arm/mach-imx/
  190. F: arch/arm/include/asm/arch-imx/
  191. F: arch/arm/include/asm/arch-mx*/
  192. F: arch/arm/include/asm/arch-vf610/
  193. F: arch/arm/include/asm/mach-imx/
  194. F: board/freescale/*mx*/
  195. ARM HISILICON
  196. M: Peter Griffin <peter.griffin@linaro.org>
  197. M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
  198. S: Maintained
  199. F: arch/arm/cpu/armv8/hisilicon
  200. F: arch/arm/include/asm/arch-hi6220/
  201. F: arch/arm/include/asm/arch-hi3660/
  202. ARM IPQ40XX
  203. M: Robert Marko <robert.marko@sartura.hr>
  204. M: Luka Kovacic <luka.kovacic@sartura.hr>
  205. M: Luka Perkov <luka.perkov@sartura.hr>
  206. S: Maintained
  207. F: arch/arm/mach-ipq40xx/
  208. ARM MARVELL KIRKWOOD ARMADA-XP ARMADA-38X ARMADA-37XX ARMADA-7K/8K
  209. M: Stefan Roese <sr@denx.de>
  210. S: Maintained
  211. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-marvell.git
  212. F: arch/arm/mach-kirkwood/
  213. F: arch/arm/mach-mvebu/
  214. F: drivers/ata/ahci_mvebu.c
  215. F: drivers/ddr/marvell/
  216. F: drivers/gpio/mvebu_gpio.c
  217. F: drivers/spi/kirkwood_spi.c
  218. F: drivers/pci/pci_mvebu.c
  219. F: drivers/pci/pcie_dw_mvebu.c
  220. F: drivers/watchdog/orion_wdt.c
  221. ARM MARVELL PXA
  222. M: Marek Vasut <marex@denx.de>
  223. S: Maintained
  224. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-pxa.git
  225. F: arch/arm/cpu/pxa/
  226. F: arch/arm/include/asm/arch-pxa/
  227. ARM MEDIATEK
  228. M: Ryder Lee <ryder.lee@mediatek.com>
  229. M: Weijie Gao <weijie.gao@mediatek.com>
  230. R: GSS_MTK_Uboot_upstream <GSS_MTK_Uboot_upstream@mediatek.com>
  231. S: Maintained
  232. F: arch/arm/mach-mediatek/
  233. F: arch/arm/include/asm/arch-mediatek/
  234. F: board/mediatek/
  235. F: doc/device-tree-bindings/phy/phy-mtk-*
  236. F: doc/device-tree-bindings/usb/mediatek,*
  237. F: doc/README.mediatek
  238. F: drivers/clk/mediatek/
  239. F: drivers/mmc/mtk-sd.c
  240. F: drivers/phy/phy-mtk-*
  241. F: drivers/pinctrl/mediatek/
  242. F: drivers/power/domain/mtk-power-domain.c
  243. F: drivers/ram/mediatek/
  244. F: drivers/spi/mtk_snfi_spi.c
  245. F: drivers/timer/mtk_timer.c
  246. F: drivers/watchdog/mtk_wdt.c
  247. F: drivers/net/mtk_eth.c
  248. F: drivers/reset/reset-mediatek.c
  249. F: tools/mtk_image.c
  250. F: tools/mtk_image.h
  251. N: mediatek
  252. ARM MICROCHIP/ATMEL AT91
  253. M: Eugen Hristev <eugen.hristev@microchip.com>
  254. S: Maintained
  255. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-atmel.git
  256. F: arch/arm/mach-at91/
  257. F: board/atmel/
  258. F: drivers/misc/microchip_flexcom.c
  259. ARM NEXELL S5P4418
  260. M: Stefan Bosch <stefan_b@posteo.net>
  261. S: Maintained
  262. F: arch/arm/cpu/armv7/s5p4418/
  263. F: arch/arm/dts/s5p4418*
  264. F: arch/arm/mach-nexell/
  265. F: board/friendlyarm/
  266. F: configs/s5p4418_nanopi2_defconfig
  267. F: doc/README.s5p4418
  268. F: drivers/gpio/nx_gpio.c
  269. F: drivers/i2c/nx_i2c.c
  270. F: drivers/mmc/nexell_dw_mmc_dm.c
  271. F: drivers/pinctrl/nexell/
  272. F: drivers/video/nexell/
  273. F: drivers/video/nexell_display.c
  274. F: include/configs/s5p4418_nanopi2.h
  275. ARM OWL
  276. M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
  277. S: Maintained
  278. F: arch/arm/include/asm/arch-owl/
  279. F: arch/arm/mach-owl/
  280. F: doc/board/actions/
  281. F: drivers/clk/owl/
  282. F: drivers/serial/serial_owl.c
  283. F: include/configs/owl-common.h
  284. F: configs/bubblegum_96_defconfig
  285. F: configs/cubieboard7_defconfig
  286. ARM RENESAS RMOBILE/R-CAR
  287. M: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  288. M: Marek Vasut <marek.vasut+renesas@gmail.com>
  289. S: Maintained
  290. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-sh.git
  291. F: arch/arm/mach-rmobile/
  292. ARM ROCKCHIP
  293. M: Simon Glass <sjg@chromium.org>
  294. M: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
  295. M: Kever Yang <kever.yang@rock-chips.com>
  296. S: Maintained
  297. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip.git
  298. F: arch/arm/include/asm/arch-rockchip/
  299. F: arch/arm/mach-rockchip/
  300. F: board/rockchip/
  301. F: drivers/clk/rockchip/
  302. F: drivers/gpio/rk_gpio.c
  303. F: drivers/misc/rockchip-efuse.c
  304. F: drivers/mmc/rockchip_sdhci.c
  305. F: drivers/mmc/rockchip_dw_mmc.c
  306. F: drivers/pinctrl/rockchip/
  307. F: drivers/ram/rockchip/
  308. F: drivers/sysreset/sysreset_rockchip.c
  309. F: drivers/video/rockchip/
  310. F: tools/rkcommon.c
  311. F: tools/rkcommon.h
  312. F: tools/rkimage.c
  313. F: tools/rksd.c
  314. F: tools/rkspi.c
  315. ARM SAMSUNG
  316. M: Minkyu Kang <mk7.kang@samsung.com>
  317. S: Maintained
  318. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-samsung.git
  319. F: arch/arm/mach-exynos/
  320. F: arch/arm/mach-s5pc1xx/
  321. F: arch/arm/cpu/armv7/s5p-common/
  322. ARM SNAPDRAGON
  323. M: Ramon Fried <rfried.dev@gmail.com>
  324. S: Maintained
  325. F: arch/arm/mach-snapdragon/
  326. F: drivers/gpio/msm_gpio.c
  327. F: drivers/mmc/msm_sdhci.c
  328. F: drivers/phy/msm8916-usbh-phy.c
  329. F: drivers/serial/serial_msm.c
  330. F: drivers/smem/msm_smem.c
  331. F: drivers/usb/host/ehci-msm.c
  332. ARM STI
  333. M: Patrice Chotard <patrice.chotard@st.com>
  334. S: Maintained
  335. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-stm.git
  336. F: arch/arm/mach-sti/
  337. F: arch/arm/include/asm/arch-sti*/
  338. F: drivers/phy/sti_usb_phy.c
  339. F: drivers/pinctrl/pinctrl-sti.c
  340. F: drivers/mmc/sti_sdhci.c
  341. F: drivers/reset/sti-reset.c
  342. F: drivers/serial/serial_sti_asc.c
  343. F: drivers/sysreset/sysreset_sti.c
  344. F: drivers/timer/sti-timer.c
  345. F: drivers/usb/host/dwc3-sti-glue.c
  346. F: include/dwc3-sti-glue.h
  347. F: include/dt-bindings/clock/stih407-clks.h
  348. F: include/dt-bindings/clock/stih410-clks.h
  349. F: include/dt-bindings/reset/stih407-resets.h
  350. ARM STM SPEAR
  351. #M: Vipin Kumar <vipin.kumar@st.com>
  352. S: Orphaned (Since 2016-02)
  353. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-stm.git
  354. F: arch/arm/cpu/arm926ejs/spear/
  355. F: arch/arm/include/asm/arch-spear/
  356. ARM STM STM32MP
  357. M: Patrick Delaunay <patrick.delaunay@st.com>
  358. M: Patrice Chotard <patrice.chotard@st.com>
  359. L: uboot-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
  360. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-stm.git
  361. S: Maintained
  362. F: arch/arm/mach-stm32mp/
  363. F: doc/board/st/
  364. F: drivers/adc/stm32-adc*
  365. F: drivers/clk/clk_stm32mp1.c
  366. F: drivers/gpio/stm32_gpio.c
  367. F: drivers/hwspinlock/stm32_hwspinlock.c
  368. F: drivers/i2c/stm32f7_i2c.c
  369. F: drivers/mailbox/stm32-ipcc.c
  370. F: drivers/misc/stm32mp_fuse.c
  371. F: drivers/misc/stm32_rcc.c
  372. F: drivers/mmc/stm32_sdmmc2.c
  373. F: drivers/mtd/nand/raw/stm32_fmc2_nand.c
  374. F: drivers/phy/phy-stm32-usbphyc.c
  375. F: drivers/pinctrl/pinctrl_stm32.c
  376. F: drivers/power/pmic/stpmic1.c
  377. F: drivers/power/regulator/stm32-vrefbuf.c
  378. F: drivers/power/regulator/stpmic1.c
  379. F: drivers/ram/stm32mp1/
  380. F: drivers/remoteproc/stm32_copro.c
  381. F: drivers/reset/stm32-reset.c
  382. F: drivers/rtc/stm32_rtc.c
  383. F: drivers/serial/serial_stm32.*
  384. F: drivers/spi/stm32_qspi.c
  385. F: drivers/spi/stm32_spi.c
  386. F: drivers/video/stm32/stm32_ltdc.c
  387. F: drivers/watchdog/stm32mp_wdt.c
  388. F: include/dt-bindings/clock/stm32fx-clock.h
  389. F: include/dt-bindings/clock/stm32mp1-clks.h
  390. F: include/dt-bindings/clock/stm32mp1-clksrc.h
  391. F: include/dt-bindings/pinctrl/stm32-pinfunc.h
  392. F: include/dt-bindings/reset/stm32mp1-resets.h
  393. F: include/stm32_rcc.h
  394. F: tools/stm32image.c
  395. ARM STM STV0991
  396. M: Vikas Manocha <vikas.manocha@st.com>
  397. S: Maintained
  398. F: arch/arm/cpu/armv7/stv0991/
  399. F: arch/arm/include/asm/arch-stv0991/
  400. ARM SUNXI
  401. M: Jagan Teki <jagan@amarulasolutions.com>
  402. M: Maxime Ripard <mripard@kernel.org>
  403. S: Maintained
  404. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-sunxi.git
  405. F: arch/arm/cpu/armv7/sunxi/
  406. F: arch/arm/include/asm/arch-sunxi/
  407. F: arch/arm/mach-sunxi/
  408. F: board/sunxi/
  409. ARM TEGRA
  410. M: Tom Warren <twarren@nvidia.com>
  411. S: Maintained
  412. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-tegra.git
  413. F: arch/arm/mach-tegra/
  414. F: arch/arm/include/asm/arch-tegra*/
  415. ARM TI
  416. M: Lokesh Vutla <lokeshvutla@ti.com>
  417. S: Maintained
  418. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-ti.git
  419. F: arch/arm/mach-davinci/
  420. F: arch/arm/mach-k3/
  421. F: arch/arm/mach-keystone/
  422. F: arch/arm/mach-omap2/
  423. F: arch/arm/include/asm/arch-omap*/
  424. F: arch/arm/include/asm/ti-common/
  425. F: board/ti/
  426. F: drivers/dma/ti*
  427. F: drivers/firmware/ti_sci.*
  428. F: drivers/gpio/omap_gpio.c
  429. F: drivers/memory/ti-aemif.c
  430. F: drivers/misc/k3_avs.c
  431. F: drivers/mailbox/k3-sec-procy.c
  432. F: drivers/pci/pcie_dw_ti.c
  433. F: drivers/phy/keystone-usb-phy.c
  434. F: drivers/phy/omap-usb2-phy.c
  435. F: drivers/phy/phy-ti-am654.c
  436. F: drivers/phy/ti-pipe3-phy.c
  437. F: drivers/ram/k3*
  438. F: drivers/remoteproc/k3_system_controller.c
  439. F: drivers/remoteproc/ti*
  440. F: drivers/reset/reset-ti-sci.c
  441. F: drivers/rtc/davinci.c
  442. F: drivers/serial/serial_omap.c
  443. F: drivers/soc/ti/
  444. F: drivers/sysreset/sysreset-ti-sci.c
  445. F: drivers/thermal/ti-bandgap.c
  446. F: drivers/timer/omap-timer.c
  447. F: drivers/watchdog/omap_wdt.c
  448. F: include/linux/soc/ti/
  449. ARM U8500
  450. M: Stephan Gerhold <stephan@gerhold.net>
  451. R: Linus Walleij <linus.walleij@linaro.org>
  452. S: Maintained
  453. F: arch/arm/dts/ste-*
  454. F: arch/arm/mach-u8500/
  455. F: drivers/timer/nomadik-mtu-timer.c
  456. ARM UNIPHIER
  457. M: Masahiro Yamada <yamada.masahiro@socionext.com>
  458. S: Maintained
  459. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-uniphier.git
  460. F: arch/arm/mach-uniphier/
  461. F: configs/uniphier_*_defconfig
  462. N: uniphier
  463. ARM VERSAL
  464. M: Michal Simek <michal.simek@xilinx.com>
  465. S: Maintained
  466. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
  467. F: arch/arm/mach-versal/
  468. F: drivers/watchdog/xilinx_wwdt.c
  469. N: (?<!uni)versal
  470. ARM VERSATILE EXPRESS DRIVERS
  471. M: Liviu Dudau <liviu.dudau@foss.arm.com>
  472. S: Maintained
  473. T: git git://github.com/ARM-software/u-boot.git
  474. F: drivers/misc/vexpress_config.c
  475. N: vexpress
  476. ARM ZYNQ
  477. M: Michal Simek <monstr@monstr.eu>
  478. S: Maintained
  479. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
  480. F: arch/arm/mach-zynq/
  481. F: drivers/clk/clk_zynq.c
  482. F: drivers/fpga/zynqpl.c
  483. F: drivers/gpio/zynq_gpio.c
  484. F: drivers/i2c/i2c-cdns.c
  485. F: drivers/i2c/muxes/pca954x.c
  486. F: drivers/i2c/zynq_i2c.c
  487. F: drivers/mmc/zynq_sdhci.c
  488. F: drivers/mtd/nand/raw/zynq_nand.c
  489. F: drivers/net/phy/xilinx_phy.c
  490. F: drivers/net/zynq_gem.c
  491. F: drivers/serial/serial_zynq.c
  492. F: drivers/spi/zynq_qspi.c
  493. F: drivers/spi/zynq_spi.c
  494. F: drivers/usb/host/ehci-zynq.c
  495. F: drivers/watchdog/cdns_wdt.c
  496. F: include/zynqpl.h
  497. F: tools/zynqimage.c
  498. N: zynq
  499. ARM ZYNQMP
  500. M: Michal Simek <michal.simek@xilinx.com>
  501. S: Maintained
  502. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
  503. F: arch/arm/mach-zynqmp/
  504. F: drivers/clk/clk_zynqmp.c
  505. F: driver/firmware/firmware-zynqmp.c
  506. F: drivers/fpga/zynqpl.c
  507. F: drivers/gpio/zynq_gpio.c
  508. F: drivers/i2c/i2c-cdns.c
  509. F: drivers/i2c/muxes/pca954x.c
  510. F: drivers/i2c/zynq_i2c.c
  511. F: drivers/mailbox/zynqmp-ipi.c
  512. F: drivers/mmc/zynq_sdhci.c
  513. F: drivers/mtd/nand/raw/zynq_nand.c
  514. F: drivers/net/phy/xilinx_phy.c
  515. F: drivers/net/zynq_gem.c
  516. F: drivers/serial/serial_zynq.c
  517. F: drivers/spi/zynq_qspi.c
  518. F: drivers/spi/zynq_spi.c
  519. F: drivers/timer/cadence-ttc.c
  520. F: drivers/usb/host/ehci-zynq.c
  521. F: drivers/watchdog/cdns_wdt.c
  522. F: include/zynqmppl.h
  523. F: include/zynqmp_firmware.h
  524. F: tools/zynqmp*
  525. N: ultra96
  526. N: zynqmp
  527. ARM ZYNQMP R5
  528. M: Michal Simek <michal.simek@xilinx.com>
  529. S: Maintained
  530. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
  531. F: arch/arm/mach-zynqmp-r5/
  532. ARM PHYTIUM
  533. M: liuhao <liuhao@phytium.com.cn>
  534. M: shuyiqi <shuyiqi@phytium.com.cn>
  535. S: Maintained
  536. F: drivers/pci/pcie_phytium.c
  537. F: arch/arm/dts/phytium-durian.dts
  538. BINMAN
  539. M: Simon Glass <sjg@chromium.org>
  540. S: Maintained
  541. F: tools/binman/
  542. BTRFS
  543. M: Marek Behun <marek.behun@nic.cz>
  544. S: Maintained
  545. F: cmd/btrfs.c
  546. F: fs/btrfs/
  547. F: include/btrfs.h
  548. BUILDMAN
  549. M: Simon Glass <sjg@chromium.org>
  550. S: Maintained
  551. F: tools/buildman/
  552. CFI FLASH
  553. M: Stefan Roese <sr@denx.de>
  554. S: Maintained
  555. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-cfi-flash.git
  556. F: drivers/mtd/cfi_flash.c
  557. F: drivers/mtd/jedec_flash.c
  558. CLOCK
  559. M: Lukasz Majewski <lukma@denx.de>
  560. S: Maintained
  561. T: git git://git.denx.de/u-boot-dfu.git
  562. F: drivers/clk/
  563. F: drivers/clk/imx/
  564. COLDFIRE
  565. M: Huan Wang <alison.wang@nxp.com>
  566. M: Angelo Dureghello <angelo@sysam.it>
  567. S: Maintained
  568. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-coldfire.git
  569. F: arch/m68k/
  570. F: doc/arch/m68k.rst
  571. DFU
  572. M: Lukasz Majewski <lukma@denx.de>
  573. S: Maintained
  574. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-dfu.git
  575. F: cmd/dfu.c
  576. F: cmd/usb_*.c
  577. F: common/dfu.c
  578. F: common/update.c
  579. F: common/usb_storage.c
  580. F: doc/api/dfu.rst
  581. F: drivers/dfu/
  582. F: drivers/usb/gadget/
  583. F: include/dfu.h
  584. DRIVER MODEL
  585. M: Simon Glass <sjg@chromium.org>
  586. S: Maintained
  587. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-dm.git
  588. F: doc/driver-model/
  589. F: drivers/core/
  590. F: include/dm/
  591. F: test/dm/
  592. EFI PAYLOAD
  593. M: Heinrich Schuchardt <xypron.glpk@gmx.de>
  594. R: Alexander Graf <agraf@csgraf.de>
  595. S: Maintained
  596. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-efi.git
  597. F: doc/api/efi.rst
  598. F: doc/uefi/*
  599. F: include/capitalization.h
  600. F: include/charset.h
  601. F: include/cp1250.h
  602. F: include/cp437.h
  603. F: include/efi*
  604. F: include/pe.h
  605. F: include/asm-generic/pe.h
  606. F: lib/charset.c
  607. F: lib/efi*/
  608. F: test/lib/efi_*
  609. F: test/py/tests/test_efi*
  610. F: test/py/tests/test_efi*/
  611. F: test/unicode_ut.c
  612. F: cmd/bootefi.c
  613. F: cmd/efidebug.c
  614. F: cmd/nvedit_efi.c
  615. F: tools/file2include.c
  616. EFI VARIABLES VIA OP-TEE
  617. M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
  618. S: Maintained
  619. F: lib/efi_loader/efi_variable_tee.c
  620. F: include/mm_communication.h
  621. ENVIRONMENT
  622. M: Joe Hershberger <joe.hershberger@ni.com>
  623. R: Wolfgang Denk <wd@denx.de>
  624. S: Maintained
  625. F: env/
  626. F: include/env*
  627. F: test/env/
  628. F: tools/env*
  629. F: tools/mkenvimage.c
  630. FPGA
  631. M: Michal Simek <michal.simek@xilinx.com>
  632. S: Maintained
  633. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
  634. F: drivers/fpga/
  635. F: cmd/fpga.c
  636. F: include/fpga.h
  637. FLATTENED DEVICE TREE
  638. M: Simon Glass <sjg@chromium.org>
  639. S: Maintained
  640. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-fdt.git
  641. F: lib/fdtdec*
  642. F: lib/libfdt/
  643. F: include/fdt*
  644. F: include/linux/libfdt*
  645. F: cmd/fdt.c
  646. F: common/fdt_support.c
  647. FREEBSD
  648. M: Rafal Jaworowski <raj@semihalf.com>
  649. S: Maintained
  650. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-freebsd.git
  651. FREESCALE QORIQ
  652. M: Priyanka Jain <priyanka.jain@nxp.com>
  653. S: Maintained
  654. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq.git
  655. F: drivers/watchdog/sp805_wdt.c
  656. F: drivers/watchdog/sbsa_gwdt.c
  657. I2C
  658. M: Heiko Schocher <hs@denx.de>
  659. S: Maintained
  660. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-i2c.git
  661. F: drivers/i2c/
  662. LOGGING
  663. M: Simon Glass <sjg@chromium.org>
  664. S: Maintained
  665. T: git https://gitlab.denx.de/u-boot/u-boot.git
  666. F: common/log*
  667. F: cmd/log.c
  668. F: doc/develop/logging.rst
  669. F: test/log/
  670. F: test/py/tests/test_log.py
  671. MALI DISPLAY PROCESSORS
  672. M: Liviu Dudau <liviu.dudau@foss.arm.com>
  673. S: Supported
  674. T: git git://github.com/ARM-software/u-boot.git
  675. F: drivers/video/mali_dp.c
  676. F: drivers/i2c/i2c-versatile.c
  677. MICROBLAZE
  678. M: Michal Simek <monstr@monstr.eu>
  679. S: Maintained
  680. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
  681. F: arch/microblaze/
  682. F: cmd/mfsl.c
  683. F: drivers/gpio/xilinx_gpio.c
  684. F: drivers/net/xilinx_axi_emac.c
  685. F: drivers/net/xilinx_emaclite.c
  686. F: drivers/serial/serial_xuartlite.c
  687. F: drivers/spi/xilinx_spi.c
  688. F: drivers/sysreset/sysreset_gpio.c
  689. F: drivers/watchdog/xilinx_tb_wdt.c
  690. N: xilinx
  691. MIPS
  692. M: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
  693. S: Maintained
  694. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-mips.git
  695. F: arch/mips/
  696. MIPS CORTINA ACCESS CAxxxx
  697. M: Alex Nemirovsky <alex.nemirovsky@cortina-access.com>
  698. S: Supported
  699. F: board/cortina/common/
  700. F: drivers/gpio/cortina_gpio.c
  701. F: drivers/watchdog/cortina_wdt.c
  702. F: drivers/serial/serial_cortina.c
  703. F: drivers/led/led_cortina.c
  704. F: drivers/mmc/ca_dw_mmc.c
  705. F: drivers/i2c/i2c-cortina.c
  706. F: drivers/i2c/i2c-cortina.h
  707. MIPS MSCC
  708. M: Gregory CLEMENT <gregory.clement@bootlin.com>
  709. M: Lars Povlsen <lars.povlsen@microchip.com>
  710. M: Horatiu Vultur <horatiu.vultur@microchip.com>
  711. S: Maintained
  712. F: arch/mips/mach-mscc/
  713. F: arch/mips/dts/luton*
  714. F: arch/mips/dts/mscc*
  715. F: arch/mips/dts/ocelot*
  716. F: arch/mips/dts/jr2*
  717. F: arch/mips/dts/serval*
  718. F: board/mscc/
  719. F: configs/mscc*
  720. F: drivers/gpio/mscc_sgpio.c
  721. F: drivers/spi/mscc_bb_spi.c
  722. F: include/configs/vcoreiii.h
  723. F: include/dt-bindings/mscc/
  724. F: drivers/pinctrl/mscc/
  725. F: drivers/net/mscc_eswitch/
  726. MIPS JZ4780
  727. M: Ezequiel Garcia <ezequiel@collabora.com>
  728. S: Maintained
  729. F: arch/mips/mach-jz47xx/
  730. MIPS Octeon
  731. M: Aaron Williams <awilliams@marvell.com>
  732. S: Maintained
  733. F: arch/mips/mach-octeon/
  734. F: arch/mips/include/asm/arch-octeon/
  735. F: arch/mips/dts/mrvl,cn73xx.dtsi
  736. MMC
  737. M: Peng Fan <peng.fan@nxp.com>
  738. S: Maintained
  739. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-mmc.git
  740. F: drivers/mmc/
  741. NAND FLASH
  742. #M: Scott Wood <oss@buserror.net>
  743. S: Orphaned (Since 2018-07)
  744. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-nand-flash.git
  745. F: drivers/mtd/nand/raw/
  746. NDS32
  747. M: Rick Chen <rick@andestech.com>
  748. S: Maintained
  749. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-nds32.git
  750. F: arch/nds32/
  751. NETWORK
  752. M: Joe Hershberger <joe.hershberger@ni.com>
  753. S: Maintained
  754. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-net.git
  755. F: drivers/net/
  756. F: include/net.h
  757. F: net/
  758. NIOS
  759. M: Thomas Chou <thomas@wytron.com.tw>
  760. S: Maintained
  761. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-nios.git
  762. F: arch/nios2/
  763. ONENAND
  764. #M: Lukasz Majewski <l.majewski@majess.pl>
  765. S: Orphaned (Since 2017-01)
  766. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-onenand.git
  767. F: drivers/mtd/onenand/
  768. PATMAN
  769. M: Simon Glass <sjg@chromium.org>
  770. S: Maintained
  771. F: tools/patman/
  772. PCI Endpoint
  773. M: Ramon Fried <rfried.dev@gmail.com>
  774. S: Maintained
  775. F: drivers/pci_endpoint/
  776. F: include/pci_ep.h
  777. PCI MPC85xx
  778. M: Heiko Schocher <hs@denx.de>
  779. S: Maintained
  780. F: drivers/pci/pci_mpc85xx.c
  781. POWER
  782. M: Jaehoon Chung <jh80.chung@samsung.com>
  783. S: Maintained
  784. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-pmic.git
  785. F: drivers/power/
  786. POWERPC
  787. M: Wolfgang Denk <wd@denx.de>
  788. S: Maintained
  789. F: arch/powerpc/
  790. POWERPC MPC8XX
  791. M: Christophe Leroy <christophe.leroy@c-s.fr>
  792. S: Maintained
  793. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-mpc8xx.git
  794. F: arch/powerpc/cpu/mpc8xx/
  795. POWERPC MPC83XX
  796. M: Mario Six <mario.six@gdsys.cc>
  797. S: Maintained
  798. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-mpc83xx.git
  799. F: drivers/ram/mpc83xx_sdram.c
  800. F: include/dt-bindings/memory/mpc83xx-sdram.h
  801. F: drivers/sysreset/sysreset_mpc83xx.c
  802. F: drivers/sysreset/sysreset_mpc83xx.h
  803. F: drivers/clk/mpc83xx_clk.c
  804. F: drivers/clk/mpc83xx_clk.h
  805. F: include/dt-bindings/clk/mpc83xx-clk.h
  806. F: drivers/timer/mpc83xx_timer.c
  807. F: drivers/cpu/mpc83xx_cpu.c
  808. F: drivers/cpu/mpc83xx_cpu.h
  809. F: drivers/misc/mpc83xx_serdes.c
  810. F: arch/powerpc/cpu/mpc83xx/
  811. F: arch/powerpc/include/asm/arch-mpc83xx/
  812. POWERPC MPC85XX
  813. M: Priyanka Jain <priyanka.jain@nxp.com>
  814. S: Maintained
  815. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-mpc85xx.git
  816. F: arch/powerpc/cpu/mpc85xx/
  817. POWERPC MPC86XX
  818. M: Priyanka Jain <priyanka.jain@nxp.com>
  819. S: Maintained
  820. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-mpc86xx.git
  821. F: arch/powerpc/cpu/mpc86xx/
  822. RISC-V
  823. M: Rick Chen <rick@andestech.com>
  824. S: Maintained
  825. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-riscv.git
  826. F: arch/riscv/
  827. F: cmd/riscv/
  828. F: tools/prelink-riscv.c
  829. RISC-V KENDRYTE
  830. M: Sean Anderson <seanga2@gmail.com>
  831. S: Maintained
  832. F: doc/device-tree-bindings/mfd/kendryte,k210-sysctl.txt
  833. F: drivers/clk/kendryte/
  834. F: include/kendryte/
  835. RNG
  836. M: Sughosh Ganu <sughosh.ganu@linaro.org>
  837. R: Heinrich Schuchardt <xypron.glpk@gmx.de>
  838. S: Maintained
  839. F: cmd/rng.c
  840. F: doc/api/rng.rst
  841. F: drivers/rng/
  842. F: drivers/virtio/virtio_rng.c
  843. F: include/rng.h
  844. ROCKUSB
  845. M: Eddie Cai <eddie.cai.linux@gmail.com>
  846. S: Maintained
  847. F: drivers/usb/gadget/f_rockusb.c
  848. F: cmd/rockusb.c
  849. F: doc/README.rockusb
  850. SANDBOX
  851. M: Simon Glass <sjg@chromium.org>
  852. S: Maintained
  853. F: arch/sandbox/
  854. SH
  855. M: Marek Vasut <marek.vasut+renesas@gmail.com>
  856. M: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  857. S: Maintained
  858. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-sh.git
  859. F: arch/sh/
  860. SPI
  861. M: Jagan Teki <jagan@amarulasolutions.com>
  862. S: Maintained
  863. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-spi.git
  864. F: drivers/spi/
  865. F: include/spi*
  866. SPI-NOR
  867. M: Jagan Teki <jagan@amarulasolutions.com>
  868. M: Vignesh R <vigneshr@ti.com>
  869. S: Maintained
  870. F: drivers/mtd/spi/
  871. F: include/spi_flash.h
  872. F: include/linux/mtd/cfi.h
  873. F: include/linux/mtd/spi-nor.h
  874. SPMI
  875. M: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
  876. S: Maintained
  877. F: drivers/spmi/
  878. F: include/spmi/
  879. SQUASHFS
  880. M: Joao Marcos Costa <joaomarcos.costa@bootlin.com>
  881. S: Maintained
  882. F: fs/squashfs/
  883. F: include/sqfs.h
  884. F: cmd/sqfs.c
  885. F: test/py/tests/test_fs/test_squashfs/
  886. TARGET_BCMNS3
  887. M: Bharat Gooty <bharat.gooty@broadcom.com>
  888. M: Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com>
  889. S: Maintained
  890. F: board/broadcom/bcmns3/
  891. F: doc/README.bcmns3
  892. F: configs/bcm_ns3_defconfig
  893. F: include/configs/bcm_ns3.h
  894. F: include/dt-bindings/memory/bcm-ns3-mc.h
  895. F: arch/arm/Kconfig
  896. F: arch/arm/dts/ns3-board.dts
  897. F: arch/arm/dts/ns3.dtsi
  898. F: arch/arm/cpu/armv8/bcmns3
  899. F: arch/arm/include/asm/arch-bcmns3/
  900. TDA19988 HDMI ENCODER
  901. M: Liviu Dudau <liviu.dudau@foss.arm.com>
  902. S: Maintained
  903. F: drivers/video/tda19988.c
  904. TI SYSTEM SECURITY
  905. M: Andrew F. Davis <afd@ti.com>
  906. S: Supported
  907. F: arch/arm/mach-omap2/omap5/sec_entry_cpu1.S
  908. F: arch/arm/mach-omap2/sec-common.c
  909. F: arch/arm/mach-omap2/config_secure.mk
  910. F: arch/arm/mach-k3/security.c
  911. F: arch/arm/mach-k3/config_secure.mk
  912. F: configs/am335x_hs_evm_defconfig
  913. F: configs/am335x_hs_evm_uart_defconfig
  914. F: configs/am43xx_hs_evm_defconfig
  915. F: configs/am57xx_hs_evm_defconfig
  916. F: configs/am57xx_hs_evm_usb_defconfig
  917. F: configs/dra7xx_hs_evm_defconfig
  918. F: configs/dra7xx_hs_evm_usb_defconfig
  919. F: configs/k2hk_hs_evm_defconfig
  920. F: configs/k2e_hs_evm_defconfig
  921. F: configs/k2g_hs_evm_defconfig
  922. F: configs/k2l_hs_evm_defconfig
  923. F: configs/am65x_hs_evm_r5_defconfig
  924. F: configs/am65x_hs_evm_a53_defconfig
  925. F: configs/j721e_hs_evm_r5_defconfig
  926. F: configs/j721e_hs_evm_a72_defconfig
  927. TQ GROUP
  928. #M: Martin Krause <martin.krause@tq-systems.de>
  929. S: Orphaned (Since 2016-02)
  930. T: git git://git.denx.de/u-boot-tq-group.git
  931. TEE
  932. M: Jens Wiklander <jens.wiklander@linaro.org>
  933. S: Maintained
  934. F: drivers/tee/
  935. F: include/tee.h
  936. F: include/tee/
  937. TEE-lib
  938. M: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
  939. S: Maintained
  940. F: lib/optee
  941. UBI
  942. M: Kyungmin Park <kmpark@infradead.org>
  943. M: Heiko Schocher <hs@denx.de>
  944. S: Maintained
  945. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-ubi.git
  946. F: drivers/mtd/ubi/
  947. UFS
  948. M: Faiz Abbas <faiz_abbas@ti.com>
  949. S: Maintained
  950. F: drivers/ufs/
  951. USB
  952. M: Marek Vasut <marex@denx.de>
  953. S: Maintained
  954. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-usb.git
  955. F: drivers/usb/
  956. F: common/usb.c
  957. F: common/usb_kbd.c
  958. F: include/usb.h
  959. USB xHCI
  960. M: Bin Meng <bmeng.cn@gmail.com>
  961. S: Maintained
  962. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-usb.git topic-xhci
  963. F: drivers/usb/host/xhci*
  964. F: include/usb/xhci.h
  965. VIDEO
  966. M: Anatolij Gustschin <agust@denx.de>
  967. S: Maintained
  968. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-video.git
  969. F: drivers/video/
  970. F: common/lcd*.c
  971. F: include/lcd*.h
  972. F: include/video*.h
  973. X86
  974. M: Simon Glass <sjg@chromium.org>
  975. M: Bin Meng <bmeng.cn@gmail.com>
  976. S: Maintained
  977. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-x86.git
  978. F: arch/x86/
  979. F: cmd/x86/
  980. XTENSA
  981. M: Max Filippov <jcmvbkbc@gmail.com>
  982. S: Maintained
  983. F: arch/xtensa/
  984. THE REST
  985. M: Tom Rini <trini@konsulko.com>
  986. L: u-boot@lists.denx.de
  987. Q: http://patchwork.ozlabs.org/project/uboot/list/
  988. S: Maintained
  989. T: git https://gitlab.denx.de/u-boot/u-boot.git
  990. F: configs/tools-only_defconfig
  991. F: *
  992. F: */