MAINTAINERS 27 KB

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