MAINTAINERS 27 KB

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