MAINTAINERS 24 KB

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