MAINTAINERS 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987
  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. N: meson
  136. ARM BROADCOM BCM283X
  137. M: Matthias Brugger <mbrugger@suse.com>
  138. S: Maintained
  139. F: arch/arm/dts/bcm283*
  140. F: arch/arm/mach-bcm283x/
  141. F: board/raspberrypi/
  142. F: drivers/gpio/bcm2835_gpio.c
  143. F: drivers/mmc/bcm2835_sdhci.c
  144. F: drivers/mmc/bcm2835_sdhost.c
  145. F: drivers/serial/serial_bcm283x_mu.c
  146. F: drivers/serial/serial_bcm283x_pl011.c
  147. F: drivers/video/bcm2835.c
  148. F: include/dm/platform_data/serial_bcm283x_mu.h
  149. F: include/dt-bindings/pinctrl/bcm2835.h
  150. F: drivers/pinctrl/broadcom/
  151. ARM BROADCOM BCMSTB
  152. M: Thomas Fitzsimmons <fitzsim@fitzsim.org>
  153. S: Maintained
  154. F: arch/arm/mach-bcmstb/
  155. F: board/broadcom/bcmstb/
  156. F: configs/bcm7*_defconfig
  157. F: doc/README.bcm7xxx
  158. F: drivers/mmc/bcmstb_sdhci.c
  159. F: drivers/spi/bcmstb_spi.c
  160. ARM CORTINA ACCESS CAxxxx
  161. M: Alex Nemirovsky <alex.nemirovsky@cortina-access.com>
  162. S: Supported
  163. F: board/cortina/common/
  164. F: drivers/gpio/cortina_gpio.c
  165. F: drivers/watchdog/cortina_wdt.c
  166. F: drivers/serial/serial_cortina.c
  167. F: drivers/mmc/ca_dw_mmc.c
  168. ARM/CZ.NIC TURRIS MOX SUPPORT
  169. M: Marek Behun <marek.behun@nic.cz>
  170. S: Maintained
  171. F: arch/arm/dts/armada-3720-turris-mox.dts
  172. F: board/CZ.NIC/
  173. F: configs/turris_*_defconfig
  174. F: include/configs/turris_*.h
  175. ARM FREESCALE IMX
  176. M: Stefano Babic <sbabic@denx.de>
  177. M: Fabio Estevam <festevam@gmail.com>
  178. R: NXP i.MX U-Boot Team <uboot-imx@nxp.com>
  179. S: Maintained
  180. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-imx.git
  181. F: arch/arm/cpu/arm1136/mx*/
  182. F: arch/arm/cpu/arm926ejs/mx*/
  183. F: arch/arm/cpu/armv7/vf610/
  184. F: arch/arm/dts/*imx*
  185. F: arch/arm/mach-imx/
  186. F: arch/arm/include/asm/arch-imx/
  187. F: arch/arm/include/asm/arch-mx*/
  188. F: arch/arm/include/asm/arch-vf610/
  189. F: arch/arm/include/asm/mach-imx/
  190. F: board/freescale/*mx*/
  191. ARM HISILICON
  192. M: Peter Griffin <peter.griffin@linaro.org>
  193. M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
  194. S: Maintained
  195. F: arch/arm/cpu/armv8/hisilicon
  196. F: arch/arm/include/asm/arch-hi6220/
  197. F: arch/arm/include/asm/arch-hi3660/
  198. ARM MARVELL KIRKWOOD ARMADA-XP ARMADA-38X ARMADA-37XX ARMADA-7K/8K
  199. M: Stefan Roese <sr@denx.de>
  200. S: Maintained
  201. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-marvell.git
  202. F: arch/arm/mach-kirkwood/
  203. F: arch/arm/mach-mvebu/
  204. F: drivers/ata/ahci_mvebu.c
  205. F: drivers/ddr/marvell/
  206. F: drivers/gpio/mvebu_gpio.c
  207. F: drivers/spi/kirkwood_spi.c
  208. F: drivers/pci/pci_mvebu.c
  209. F: drivers/pci/pcie_dw_mvebu.c
  210. F: drivers/watchdog/orion_wdt.c
  211. ARM MARVELL PXA
  212. M: Marek Vasut <marex@denx.de>
  213. S: Maintained
  214. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-pxa.git
  215. F: arch/arm/cpu/pxa/
  216. F: arch/arm/include/asm/arch-pxa/
  217. ARM MEDIATEK
  218. M: Ryder Lee <ryder.lee@mediatek.com>
  219. M: Weijie Gao <weijie.gao@mediatek.com>
  220. R: GSS_MTK_Uboot_upstream <GSS_MTK_Uboot_upstream@mediatek.com>
  221. S: Maintained
  222. F: arch/arm/mach-mediatek/
  223. F: arch/arm/include/asm/arch-mediatek/
  224. F: board/mediatek/
  225. F: doc/README.mediatek
  226. F: drivers/clk/mediatek/
  227. F: drivers/mmc/mtk-sd.c
  228. F: drivers/pinctrl/mediatek/
  229. F: drivers/power/domain/mtk-power-domain.c
  230. F: drivers/ram/mediatek/
  231. F: drivers/spi/mtk_snfi_spi.c
  232. F: drivers/timer/mtk_timer.c
  233. F: drivers/watchdog/mtk_wdt.c
  234. F: drivers/net/mtk_eth.c
  235. F: drivers/reset/reset-mediatek.c
  236. F: tools/mtk_image.c
  237. F: tools/mtk_image.h
  238. N: mediatek
  239. ARM MICROCHIP/ATMEL AT91
  240. M: Eugen Hristev <eugen.hristev@microchip.com>
  241. S: Maintained
  242. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-atmel.git
  243. F: arch/arm/mach-at91/
  244. F: board/atmel/
  245. F: drivers/misc/microchip_flexcom.c
  246. ARM OWL
  247. M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
  248. S: Maintained
  249. F: arch/arm/include/asm/arch-owl/
  250. F: arch/arm/mach-owl/
  251. F: board/ucRobotics/
  252. F: drivers/clk/owl/
  253. F: drivers/serial/serial_owl.c
  254. ARM RENESAS RMOBILE/R-CAR
  255. M: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  256. M: Marek Vasut <marek.vasut+renesas@gmail.com>
  257. S: Maintained
  258. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-sh.git
  259. F: arch/arm/mach-rmobile/
  260. ARM ROCKCHIP
  261. M: Simon Glass <sjg@chromium.org>
  262. M: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
  263. M: Kever Yang <kever.yang@rock-chips.com>
  264. S: Maintained
  265. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip.git
  266. F: arch/arm/include/asm/arch-rockchip/
  267. F: arch/arm/mach-rockchip/
  268. F: board/rockchip/
  269. F: drivers/clk/rockchip/
  270. F: drivers/gpio/rk_gpio.c
  271. F: drivers/misc/rockchip-efuse.c
  272. F: drivers/mmc/rockchip_sdhci.c
  273. F: drivers/mmc/rockchip_dw_mmc.c
  274. F: drivers/pinctrl/rockchip/
  275. F: drivers/ram/rockchip/
  276. F: drivers/sysreset/sysreset_rockchip.c
  277. F: drivers/video/rockchip/
  278. F: tools/rkcommon.c
  279. F: tools/rkcommon.h
  280. F: tools/rkimage.c
  281. F: tools/rksd.c
  282. F: tools/rkspi.c
  283. ARM SAMSUNG
  284. M: Minkyu Kang <mk7.kang@samsung.com>
  285. S: Maintained
  286. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-samsung.git
  287. F: arch/arm/mach-exynos/
  288. F: arch/arm/mach-s5pc1xx/
  289. F: arch/arm/cpu/armv7/s5p-common/
  290. ARM SNAPDRAGON
  291. M: Ramon Fried <rfried.dev@gmail.com>
  292. S: Maintained
  293. F: arch/arm/mach-snapdragon/
  294. F: drivers/gpio/msm_gpio.c
  295. F: drivers/mmc/msm_sdhci.c
  296. F: drivers/phy/msm8916-usbh-phy.c
  297. F: drivers/serial/serial_msm.c
  298. F: drivers/smem/msm_smem.c
  299. F: drivers/usb/host/ehci-msm.c
  300. ARM STI
  301. M: Patrice Chotard <patrice.chotard@st.com>
  302. S: Maintained
  303. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-stm.git
  304. F: arch/arm/mach-sti/
  305. F: arch/arm/include/asm/arch-sti*/
  306. F: drivers/phy/sti_usb_phy.c
  307. F: drivers/pinctrl/pinctrl-sti.c
  308. F: drivers/mmc/sti_sdhci.c
  309. F: drivers/reset/sti-reset.c
  310. F: drivers/serial/serial_sti_asc.c
  311. F: drivers/sysreset/sysreset_sti.c
  312. F: drivers/timer/sti-timer.c
  313. F: drivers/usb/host/dwc3-sti-glue.c
  314. F: include/dwc3-sti-glue.h
  315. F: include/dt-bindings/clock/stih407-clks.h
  316. F: include/dt-bindings/clock/stih410-clks.h
  317. F: include/dt-bindings/reset/stih407-resets.h
  318. ARM STM SPEAR
  319. #M: Vipin Kumar <vipin.kumar@st.com>
  320. S: Orphaned (Since 2016-02)
  321. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-stm.git
  322. F: arch/arm/cpu/arm926ejs/spear/
  323. F: arch/arm/include/asm/arch-spear/
  324. ARM STM STM32MP
  325. M: Patrick Delaunay <patrick.delaunay@st.com>
  326. M: Patrice Chotard <patrice.chotard@st.com>
  327. L: uboot-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
  328. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-stm.git
  329. S: Maintained
  330. F: arch/arm/mach-stm32mp/
  331. F: doc/board/st/
  332. F: drivers/adc/stm32-adc*
  333. F: drivers/clk/clk_stm32mp1.c
  334. F: drivers/gpio/stm32_gpio.c
  335. F: drivers/hwspinlock/stm32_hwspinlock.c
  336. F: drivers/i2c/stm32f7_i2c.c
  337. F: drivers/mailbox/stm32-ipcc.c
  338. F: drivers/misc/stm32mp_fuse.c
  339. F: drivers/misc/stm32_rcc.c
  340. F: drivers/mmc/stm32_sdmmc2.c
  341. F: drivers/mtd/nand/raw/stm32_fmc2_nand.c
  342. F: drivers/phy/phy-stm32-usbphyc.c
  343. F: drivers/pinctrl/pinctrl_stm32.c
  344. F: drivers/power/pmic/stpmic1.c
  345. F: drivers/power/regulator/stm32-vrefbuf.c
  346. F: drivers/power/regulator/stpmic1.c
  347. F: drivers/ram/stm32mp1/
  348. F: drivers/remoteproc/stm32_copro.c
  349. F: drivers/reset/stm32-reset.c
  350. F: drivers/rtc/stm32_rtc.c
  351. F: drivers/serial/serial_stm32.*
  352. F: drivers/spi/stm32_qspi.c
  353. F: drivers/spi/stm32_spi.c
  354. F: drivers/video/stm32/stm32_ltdc.c
  355. F: drivers/watchdog/stm32mp_wdt.c
  356. F: include/dt-bindings/clock/stm32fx-clock.h
  357. F: include/dt-bindings/clock/stm32mp1-clks.h
  358. F: include/dt-bindings/clock/stm32mp1-clksrc.h
  359. F: include/dt-bindings/pinctrl/stm32-pinfunc.h
  360. F: include/dt-bindings/reset/stm32mp1-resets.h
  361. F: include/stm32_rcc.h
  362. F: tools/stm32image.c
  363. ARM STM STV0991
  364. M: Vikas Manocha <vikas.manocha@st.com>
  365. S: Maintained
  366. F: arch/arm/cpu/armv7/stv0991/
  367. F: arch/arm/include/asm/arch-stv0991/
  368. ARM SUNXI
  369. M: Jagan Teki <jagan@amarulasolutions.com>
  370. M: Maxime Ripard <mripard@kernel.org>
  371. S: Maintained
  372. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-sunxi.git
  373. F: arch/arm/cpu/armv7/sunxi/
  374. F: arch/arm/include/asm/arch-sunxi/
  375. F: arch/arm/mach-sunxi/
  376. F: board/sunxi/
  377. ARM TEGRA
  378. M: Tom Warren <twarren@nvidia.com>
  379. S: Maintained
  380. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-tegra.git
  381. F: arch/arm/mach-tegra/
  382. F: arch/arm/include/asm/arch-tegra*/
  383. ARM TI
  384. M: Lokesh Vutla <lokeshvutla@ti.com>
  385. S: Maintained
  386. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-ti.git
  387. F: arch/arm/mach-davinci/
  388. F: arch/arm/mach-k3/
  389. F: arch/arm/mach-keystone/
  390. F: arch/arm/include/asm/arch-omap*/
  391. F: arch/arm/include/asm/ti-common/
  392. ARM U8500
  393. M: Stephan Gerhold <stephan@gerhold.net>
  394. R: Linus Walleij <linus.walleij@linaro.org>
  395. S: Maintained
  396. F: arch/arm/dts/ste-*
  397. F: arch/arm/mach-u8500/
  398. F: drivers/timer/nomadik-mtu-timer.c
  399. ARM UNIPHIER
  400. M: Masahiro Yamada <yamada.masahiro@socionext.com>
  401. S: Maintained
  402. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-uniphier.git
  403. F: arch/arm/mach-uniphier/
  404. F: configs/uniphier_*_defconfig
  405. N: uniphier
  406. ARM VERSAL
  407. M: Michal Simek <michal.simek@xilinx.com>
  408. S: Maintained
  409. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
  410. F: arch/arm/mach-versal/
  411. F: drivers/watchdog/xilinx_wwdt.c
  412. N: (?<!uni)versal
  413. ARM VERSATILE EXPRESS DRIVERS
  414. M: Liviu Dudau <liviu.dudau@foss.arm.com>
  415. S: Maintained
  416. T: git git://github.com/ARM-software/u-boot.git
  417. F: drivers/misc/vexpress_config.c
  418. N: vexpress
  419. ARM ZYNQ
  420. M: Michal Simek <monstr@monstr.eu>
  421. S: Maintained
  422. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
  423. F: arch/arm/mach-zynq/
  424. F: drivers/clk/clk_zynq.c
  425. F: drivers/fpga/zynqpl.c
  426. F: drivers/gpio/zynq_gpio.c
  427. F: drivers/i2c/i2c-cdns.c
  428. F: drivers/i2c/muxes/pca954x.c
  429. F: drivers/i2c/zynq_i2c.c
  430. F: drivers/mmc/zynq_sdhci.c
  431. F: drivers/mtd/nand/raw/zynq_nand.c
  432. F: drivers/net/phy/xilinx_phy.c
  433. F: drivers/net/zynq_gem.c
  434. F: drivers/serial/serial_zynq.c
  435. F: drivers/spi/zynq_qspi.c
  436. F: drivers/spi/zynq_spi.c
  437. F: drivers/usb/host/ehci-zynq.c
  438. F: drivers/watchdog/cdns_wdt.c
  439. F: include/zynqpl.h
  440. F: tools/zynqimage.c
  441. N: zynq
  442. ARM ZYNQMP
  443. M: Michal Simek <michal.simek@xilinx.com>
  444. S: Maintained
  445. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
  446. F: arch/arm/mach-zynqmp/
  447. F: drivers/clk/clk_zynqmp.c
  448. F: driver/firmware/firmware-zynqmp.c
  449. F: drivers/fpga/zynqpl.c
  450. F: drivers/gpio/zynq_gpio.c
  451. F: drivers/i2c/i2c-cdns.c
  452. F: drivers/i2c/muxes/pca954x.c
  453. F: drivers/i2c/zynq_i2c.c
  454. F: drivers/mailbox/zynqmp-ipi.c
  455. F: drivers/mmc/zynq_sdhci.c
  456. F: drivers/mtd/nand/raw/zynq_nand.c
  457. F: drivers/net/phy/xilinx_phy.c
  458. F: drivers/net/zynq_gem.c
  459. F: drivers/serial/serial_zynq.c
  460. F: drivers/spi/zynq_qspi.c
  461. F: drivers/spi/zynq_spi.c
  462. F: drivers/timer/cadence-ttc.c
  463. F: drivers/usb/host/ehci-zynq.c
  464. F: drivers/watchdog/cdns_wdt.c
  465. F: include/zynqmppl.h
  466. F: include/zynqmp_firmware.h
  467. F: tools/zynqmp*
  468. N: ultra96
  469. N: zynqmp
  470. ARM ZYNQMP R5
  471. M: Michal Simek <michal.simek@xilinx.com>
  472. S: Maintained
  473. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
  474. F: arch/arm/mach-zynqmp-r5/
  475. ARM PHYTIUM
  476. M: liuhao <liuhao@phytium.com.cn>
  477. M: shuyiqi <shuyiqi@phytium.com.cn>
  478. S: Maintained
  479. F: drivers/pci/pcie_phytium.c
  480. F: arch/arm/dts/phytium-durian.dts
  481. BINMAN
  482. M: Simon Glass <sjg@chromium.org>
  483. S: Maintained
  484. F: tools/binman/
  485. BTRFS
  486. M: Marek Behun <marek.behun@nic.cz>
  487. S: Maintained
  488. F: cmd/btrfs.c
  489. F: fs/btrfs/
  490. F: include/btrfs.h
  491. BUILDMAN
  492. M: Simon Glass <sjg@chromium.org>
  493. S: Maintained
  494. F: tools/buildman/
  495. CFI FLASH
  496. M: Stefan Roese <sr@denx.de>
  497. S: Maintained
  498. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-cfi-flash.git
  499. F: drivers/mtd/cfi_flash.c
  500. F: drivers/mtd/jedec_flash.c
  501. CLOCK
  502. M: Lukasz Majewski <lukma@denx.de>
  503. S: Maintained
  504. T: git git://git.denx.de/u-boot-dfu.git
  505. F: drivers/clk/
  506. F: drivers/clk/imx/
  507. COLDFIRE
  508. M: Huan Wang <alison.wang@nxp.com>
  509. M: Angelo Dureghello <angelo@sysam.it>
  510. S: Maintained
  511. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-coldfire.git
  512. F: arch/m68k/
  513. DFU
  514. M: Lukasz Majewski <lukma@denx.de>
  515. S: Maintained
  516. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-dfu.git
  517. F: cmd/dfu.c
  518. F: cmd/usb_*.c
  519. F: common/dfu.c
  520. F: common/update.c
  521. F: common/usb_storage.c
  522. F: drivers/dfu/
  523. F: drivers/usb/gadget/
  524. DRIVER MODEL
  525. M: Simon Glass <sjg@chromium.org>
  526. S: Maintained
  527. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-dm.git
  528. F: drivers/core/
  529. F: include/dm/
  530. F: test/dm/
  531. EFI PAYLOAD
  532. M: Heinrich Schuchardt <xypron.glpk@gmx.de>
  533. R: Alexander Graf <agraf@csgraf.de>
  534. S: Maintained
  535. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-efi.git
  536. F: doc/api/efi.rst
  537. F: doc/uefi/*
  538. F: include/capitalization.h
  539. F: include/charset.h
  540. F: include/cp1250.h
  541. F: include/cp437.h
  542. F: include/efi*
  543. F: include/pe.h
  544. F: include/asm-generic/pe.h
  545. F: lib/charset.c
  546. F: lib/efi*/
  547. F: test/py/tests/test_efi*
  548. F: test/unicode_ut.c
  549. F: cmd/bootefi.c
  550. F: cmd/efidebug.c
  551. F: cmd/nvedit_efi.c
  552. F: tools/file2include.c
  553. ENVIRONMENT
  554. M: Joe Hershberger <joe.hershberger@ni.com>
  555. R: Wolfgang Denk <wd@denx.de>
  556. S: Maintained
  557. F: env/
  558. F: include/env*
  559. F: test/env/
  560. F: tools/env*
  561. F: tools/mkenvimage.c
  562. FPGA
  563. M: Michal Simek <michal.simek@xilinx.com>
  564. S: Maintained
  565. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
  566. F: drivers/fpga/
  567. F: cmd/fpga.c
  568. F: include/fpga.h
  569. FLATTENED DEVICE TREE
  570. M: Simon Glass <sjg@chromium.org>
  571. S: Maintained
  572. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-fdt.git
  573. F: lib/fdtdec*
  574. F: lib/libfdt/
  575. F: include/fdt*
  576. F: include/linux/libfdt*
  577. F: cmd/fdt.c
  578. F: common/fdt_support.c
  579. FREEBSD
  580. M: Rafal Jaworowski <raj@semihalf.com>
  581. S: Maintained
  582. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-freebsd.git
  583. FREESCALE QORIQ
  584. M: Priyanka Jain <priyanka.jain@nxp.com>
  585. S: Maintained
  586. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq.git
  587. F: drivers/watchdog/sp805_wdt.c
  588. I2C
  589. M: Heiko Schocher <hs@denx.de>
  590. S: Maintained
  591. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-i2c.git
  592. F: drivers/i2c/
  593. LOGGING
  594. M: Simon Glass <sjg@chromium.org>
  595. S: Maintained
  596. T: git https://gitlab.denx.de/u-boot/u-boot.git
  597. F: common/log.c
  598. F: cmd/log.c
  599. F: test/log/log_test.c
  600. F: test/py/tests/test_log.py
  601. MALI DISPLAY PROCESSORS
  602. M: Liviu Dudau <liviu.dudau@foss.arm.com>
  603. S: Supported
  604. T: git git://github.com/ARM-software/u-boot.git
  605. F: drivers/video/mali_dp.c
  606. F: drivers/i2c/i2c-versatile.c
  607. MICROBLAZE
  608. M: Michal Simek <monstr@monstr.eu>
  609. S: Maintained
  610. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
  611. F: arch/microblaze/
  612. F: cmd/mfsl.c
  613. F: drivers/gpio/xilinx_gpio.c
  614. F: drivers/net/xilinx_axi_emac.c
  615. F: drivers/net/xilinx_emaclite.c
  616. F: drivers/serial/serial_xuartlite.c
  617. F: drivers/spi/xilinx_spi.c
  618. F: drivers/sysreset/sysreset_gpio.c
  619. F: drivers/watchdog/xilinx_tb_wdt.c
  620. N: xilinx
  621. MIPS
  622. M: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
  623. S: Maintained
  624. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-mips.git
  625. F: arch/mips/
  626. MIPS CORTINA ACCESS CAxxxx
  627. M: Alex Nemirovsky <alex.nemirovsky@cortina-access.com>
  628. S: Supported
  629. F: board/cortina/common/
  630. F: drivers/gpio/cortina_gpio.c
  631. F: drivers/watchdog/cortina_wdt.c
  632. F: drivers/serial/serial_cortina.c
  633. F: drivers/mmc/ca_dw_mmc.c
  634. MIPS MSCC
  635. M: Gregory CLEMENT <gregory.clement@bootlin.com>
  636. M: Lars Povlsen <lars.povlsen@microchip.com>
  637. M: Horatiu Vultur <horatiu.vultur@microchip.com>
  638. S: Maintained
  639. F: arch/mips/mach-mscc/
  640. F: arch/mips/dts/luton*
  641. F: arch/mips/dts/mscc*
  642. F: arch/mips/dts/ocelot*
  643. F: arch/mips/dts/jr2*
  644. F: arch/mips/dts/serval*
  645. F: board/mscc/
  646. F: configs/mscc*
  647. F: drivers/gpio/mscc_sgpio.c
  648. F: drivers/spi/mscc_bb_spi.c
  649. F: include/configs/vcoreiii.h
  650. F: include/dt-bindings/mscc/
  651. F: drivers/pinctrl/mscc/
  652. F: drivers/net/mscc_eswitch/
  653. MIPS JZ4780
  654. M: Ezequiel Garcia <ezequiel@collabora.com>
  655. S: Maintained
  656. F: arch/mips/mach-jz47xx/
  657. MMC
  658. M: Peng Fan <peng.fan@nxp.com>
  659. S: Maintained
  660. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-mmc.git
  661. F: drivers/mmc/
  662. NAND FLASH
  663. #M: Scott Wood <oss@buserror.net>
  664. S: Orphaned (Since 2018-07)
  665. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-nand-flash.git
  666. F: drivers/mtd/nand/raw/
  667. NDS32
  668. M: Rick Chen <rick@andestech.com>
  669. S: Maintained
  670. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-nds32.git
  671. F: arch/nds32/
  672. NETWORK
  673. M: Joe Hershberger <joe.hershberger@ni.com>
  674. S: Maintained
  675. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-net.git
  676. F: drivers/net/
  677. F: include/net.h
  678. F: net/
  679. NIOS
  680. M: Thomas Chou <thomas@wytron.com.tw>
  681. S: Maintained
  682. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-nios.git
  683. F: arch/nios2/
  684. ONENAND
  685. #M: Lukasz Majewski <l.majewski@majess.pl>
  686. S: Orphaned (Since 2017-01)
  687. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-onenand.git
  688. F: drivers/mtd/onenand/
  689. PATMAN
  690. M: Simon Glass <sjg@chromium.org>
  691. S: Maintained
  692. F: tools/patman/
  693. PCI Endpoint
  694. M: Ramon Fried <rfried.dev@gmail.com>
  695. S: Maintained
  696. F: drivers/pci_endpoint/
  697. F: include/pci_ep.h
  698. PCI MPC85xx
  699. M: Heiko Schocher <hs@denx.de>
  700. S: Maintained
  701. F: drivers/pci/pci_mpc85xx.c
  702. POWER
  703. M: Jaehoon Chung <jh80.chung@samsung.com>
  704. S: Maintained
  705. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-pmic.git
  706. F: drivers/power/
  707. POWERPC
  708. M: Wolfgang Denk <wd@denx.de>
  709. S: Maintained
  710. F: arch/powerpc/
  711. POWERPC MPC8XX
  712. M: Christophe Leroy <christophe.leroy@c-s.fr>
  713. S: Maintained
  714. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-mpc8xx.git
  715. F: arch/powerpc/cpu/mpc8xx/
  716. POWERPC MPC83XX
  717. M: Mario Six <mario.six@gdsys.cc>
  718. S: Maintained
  719. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-mpc83xx.git
  720. F: drivers/ram/mpc83xx_sdram.c
  721. F: include/dt-bindings/memory/mpc83xx-sdram.h
  722. F: drivers/sysreset/sysreset_mpc83xx.c
  723. F: drivers/sysreset/sysreset_mpc83xx.h
  724. F: drivers/clk/mpc83xx_clk.c
  725. F: drivers/clk/mpc83xx_clk.h
  726. F: include/dt-bindings/clk/mpc83xx-clk.h
  727. F: drivers/timer/mpc83xx_timer.c
  728. F: drivers/cpu/mpc83xx_cpu.c
  729. F: drivers/cpu/mpc83xx_cpu.h
  730. F: drivers/misc/mpc83xx_serdes.c
  731. F: arch/powerpc/cpu/mpc83xx/
  732. F: arch/powerpc/include/asm/arch-mpc83xx/
  733. POWERPC MPC85XX
  734. M: Priyanka Jain <priyanka.jain@nxp.com>
  735. S: Maintained
  736. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-mpc85xx.git
  737. F: arch/powerpc/cpu/mpc85xx/
  738. POWERPC MPC86XX
  739. M: Priyanka Jain <priyanka.jain@nxp.com>
  740. S: Maintained
  741. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-mpc86xx.git
  742. F: arch/powerpc/cpu/mpc86xx/
  743. RISC-V
  744. M: Rick Chen <rick@andestech.com>
  745. S: Maintained
  746. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-riscv.git
  747. F: arch/riscv/
  748. F: cmd/riscv/
  749. F: tools/prelink-riscv.c
  750. RNG
  751. M: Sughosh Ganu <sughosh.ganu@linaro.org>
  752. R: Heinrich Schuchardt <xypron.glpk@gmx.de>
  753. S: Maintained
  754. F: cmd/rng.c
  755. F: drivers/rng/
  756. F: drivers/virtio/virtio_rng.c
  757. F: include/rng.h
  758. ROCKUSB
  759. M: Eddie Cai <eddie.cai.linux@gmail.com>
  760. S: Maintained
  761. F: drivers/usb/gadget/f_rockusb.c
  762. F: cmd/rockusb.c
  763. F: doc/README.rockusb
  764. SANDBOX
  765. M: Simon Glass <sjg@chromium.org>
  766. S: Maintained
  767. F: arch/sandbox/
  768. SH
  769. M: Marek Vasut <marek.vasut+renesas@gmail.com>
  770. M: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  771. S: Maintained
  772. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-sh.git
  773. F: arch/sh/
  774. SPI
  775. M: Jagan Teki <jagan@amarulasolutions.com>
  776. S: Maintained
  777. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-spi.git
  778. F: drivers/spi/
  779. F: include/spi*
  780. SPI-NOR
  781. M: Jagan Teki <jagan@amarulasolutions.com>
  782. M: Vignesh R <vigneshr@ti.com>
  783. S: Maintained
  784. F: drivers/mtd/spi/
  785. F: include/spi_flash.h
  786. F: include/linux/mtd/cfi.h
  787. F: include/linux/mtd/spi-nor.h
  788. SPMI
  789. M: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
  790. S: Maintained
  791. F: drivers/spmi/
  792. F: include/spmi/
  793. TDA19988 HDMI ENCODER
  794. M: Liviu Dudau <liviu.dudau@foss.arm.com>
  795. S: Maintained
  796. F: drivers/video/tda19988.c
  797. TI SYSTEM SECURITY
  798. M: Andrew F. Davis <afd@ti.com>
  799. S: Supported
  800. F: arch/arm/mach-omap2/omap5/sec_entry_cpu1.S
  801. F: arch/arm/mach-omap2/sec-common.c
  802. F: arch/arm/mach-omap2/config_secure.mk
  803. F: arch/arm/mach-k3/security.c
  804. F: arch/arm/mach-k3/config_secure.mk
  805. F: configs/am335x_hs_evm_defconfig
  806. F: configs/am335x_hs_evm_uart_defconfig
  807. F: configs/am43xx_hs_evm_defconfig
  808. F: configs/am57xx_hs_evm_defconfig
  809. F: configs/am57xx_hs_evm_usb_defconfig
  810. F: configs/dra7xx_hs_evm_defconfig
  811. F: configs/dra7xx_hs_evm_usb_defconfig
  812. F: configs/k2hk_hs_evm_defconfig
  813. F: configs/k2e_hs_evm_defconfig
  814. F: configs/k2g_hs_evm_defconfig
  815. F: configs/k2l_hs_evm_defconfig
  816. F: configs/am65x_hs_evm_r5_defconfig
  817. F: configs/am65x_hs_evm_a53_defconfig
  818. F: configs/j721e_hs_evm_r5_defconfig
  819. F: configs/j721e_hs_evm_a72_defconfig
  820. TQ GROUP
  821. #M: Martin Krause <martin.krause@tq-systems.de>
  822. S: Orphaned (Since 2016-02)
  823. T: git git://git.denx.de/u-boot-tq-group.git
  824. TEE
  825. M: Jens Wiklander <jens.wiklander@linaro.org>
  826. S: Maintained
  827. F: drivers/tee/
  828. F: include/tee.h
  829. F: include/tee/
  830. TEE-lib
  831. M: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
  832. S: Maintained
  833. F: lib/optee
  834. UBI
  835. M: Kyungmin Park <kmpark@infradead.org>
  836. M: Heiko Schocher <hs@denx.de>
  837. S: Maintained
  838. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-ubi.git
  839. F: drivers/mtd/ubi/
  840. UFS
  841. M: Faiz Abbas <faiz_abbas@ti.com>
  842. S: Maintained
  843. F: drivers/ufs/
  844. USB
  845. M: Marek Vasut <marex@denx.de>
  846. S: Maintained
  847. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-usb.git
  848. F: drivers/usb/
  849. F: common/usb.c
  850. F: common/usb_kbd.c
  851. F: include/usb.h
  852. USB xHCI
  853. M: Bin Meng <bmeng.cn@gmail.com>
  854. S: Maintained
  855. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-usb.git topic-xhci
  856. F: drivers/usb/host/xhci*
  857. F: include/usb/xhci.h
  858. VIDEO
  859. M: Anatolij Gustschin <agust@denx.de>
  860. S: Maintained
  861. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-video.git
  862. F: drivers/video/
  863. F: common/lcd*.c
  864. F: include/lcd*.h
  865. F: include/video*.h
  866. X86
  867. M: Simon Glass <sjg@chromium.org>
  868. M: Bin Meng <bmeng.cn@gmail.com>
  869. S: Maintained
  870. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-x86.git
  871. F: arch/x86/
  872. F: cmd/x86/
  873. XTENSA
  874. M: Max Filippov <jcmvbkbc@gmail.com>
  875. S: Maintained
  876. F: arch/xtensa/
  877. THE REST
  878. M: Tom Rini <trini@konsulko.com>
  879. L: u-boot@lists.denx.de
  880. Q: http://patchwork.ozlabs.org/project/uboot/list/
  881. S: Maintained
  882. T: git https://gitlab.denx.de/u-boot/u-boot.git
  883. F: configs/tools-only_defconfig
  884. F: *
  885. F: */