MAINTAINERS 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039
  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/py/tests/test_efi*
  584. F: test/py/tests/test_efi*/
  585. F: test/unicode_ut.c
  586. F: cmd/bootefi.c
  587. F: cmd/efidebug.c
  588. F: cmd/nvedit_efi.c
  589. F: tools/file2include.c
  590. EFI VARIABLES VIA OP-TEE
  591. M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
  592. S: Maintained
  593. F: lib/efi_loader/efi_variable_tee.c
  594. F: include/mm_communication.h
  595. ENVIRONMENT
  596. M: Joe Hershberger <joe.hershberger@ni.com>
  597. R: Wolfgang Denk <wd@denx.de>
  598. S: Maintained
  599. F: env/
  600. F: include/env*
  601. F: test/env/
  602. F: tools/env*
  603. F: tools/mkenvimage.c
  604. FPGA
  605. M: Michal Simek <michal.simek@xilinx.com>
  606. S: Maintained
  607. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
  608. F: drivers/fpga/
  609. F: cmd/fpga.c
  610. F: include/fpga.h
  611. FLATTENED DEVICE TREE
  612. M: Simon Glass <sjg@chromium.org>
  613. S: Maintained
  614. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-fdt.git
  615. F: lib/fdtdec*
  616. F: lib/libfdt/
  617. F: include/fdt*
  618. F: include/linux/libfdt*
  619. F: cmd/fdt.c
  620. F: common/fdt_support.c
  621. FREEBSD
  622. M: Rafal Jaworowski <raj@semihalf.com>
  623. S: Maintained
  624. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-freebsd.git
  625. FREESCALE QORIQ
  626. M: Priyanka Jain <priyanka.jain@nxp.com>
  627. S: Maintained
  628. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq.git
  629. F: drivers/watchdog/sp805_wdt.c
  630. I2C
  631. M: Heiko Schocher <hs@denx.de>
  632. S: Maintained
  633. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-i2c.git
  634. F: drivers/i2c/
  635. LOGGING
  636. M: Simon Glass <sjg@chromium.org>
  637. S: Maintained
  638. T: git https://gitlab.denx.de/u-boot/u-boot.git
  639. F: common/log*
  640. F: cmd/log.c
  641. F: doc/develop/logging.rst
  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. RISC-V KENDRYTE
  794. M: Sean Anderson <seanga2@gmail.com>
  795. S: Maintained
  796. F: doc/device-tree-bindings/mfd/kendryte,k210-sysctl.txt
  797. F: drivers/clk/kendryte/
  798. F: include/kendryte/
  799. RNG
  800. M: Sughosh Ganu <sughosh.ganu@linaro.org>
  801. R: Heinrich Schuchardt <xypron.glpk@gmx.de>
  802. S: Maintained
  803. F: cmd/rng.c
  804. F: doc/api/rng.rst
  805. F: drivers/rng/
  806. F: drivers/virtio/virtio_rng.c
  807. F: include/rng.h
  808. ROCKUSB
  809. M: Eddie Cai <eddie.cai.linux@gmail.com>
  810. S: Maintained
  811. F: drivers/usb/gadget/f_rockusb.c
  812. F: cmd/rockusb.c
  813. F: doc/README.rockusb
  814. SANDBOX
  815. M: Simon Glass <sjg@chromium.org>
  816. S: Maintained
  817. F: arch/sandbox/
  818. SH
  819. M: Marek Vasut <marek.vasut+renesas@gmail.com>
  820. M: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  821. S: Maintained
  822. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-sh.git
  823. F: arch/sh/
  824. SPI
  825. M: Jagan Teki <jagan@amarulasolutions.com>
  826. S: Maintained
  827. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-spi.git
  828. F: drivers/spi/
  829. F: include/spi*
  830. SPI-NOR
  831. M: Jagan Teki <jagan@amarulasolutions.com>
  832. M: Vignesh R <vigneshr@ti.com>
  833. S: Maintained
  834. F: drivers/mtd/spi/
  835. F: include/spi_flash.h
  836. F: include/linux/mtd/cfi.h
  837. F: include/linux/mtd/spi-nor.h
  838. SPMI
  839. M: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
  840. S: Maintained
  841. F: drivers/spmi/
  842. F: include/spmi/
  843. TDA19988 HDMI ENCODER
  844. M: Liviu Dudau <liviu.dudau@foss.arm.com>
  845. S: Maintained
  846. F: drivers/video/tda19988.c
  847. TI SYSTEM SECURITY
  848. M: Andrew F. Davis <afd@ti.com>
  849. S: Supported
  850. F: arch/arm/mach-omap2/omap5/sec_entry_cpu1.S
  851. F: arch/arm/mach-omap2/sec-common.c
  852. F: arch/arm/mach-omap2/config_secure.mk
  853. F: arch/arm/mach-k3/security.c
  854. F: arch/arm/mach-k3/config_secure.mk
  855. F: configs/am335x_hs_evm_defconfig
  856. F: configs/am335x_hs_evm_uart_defconfig
  857. F: configs/am43xx_hs_evm_defconfig
  858. F: configs/am57xx_hs_evm_defconfig
  859. F: configs/am57xx_hs_evm_usb_defconfig
  860. F: configs/dra7xx_hs_evm_defconfig
  861. F: configs/dra7xx_hs_evm_usb_defconfig
  862. F: configs/k2hk_hs_evm_defconfig
  863. F: configs/k2e_hs_evm_defconfig
  864. F: configs/k2g_hs_evm_defconfig
  865. F: configs/k2l_hs_evm_defconfig
  866. F: configs/am65x_hs_evm_r5_defconfig
  867. F: configs/am65x_hs_evm_a53_defconfig
  868. F: configs/j721e_hs_evm_r5_defconfig
  869. F: configs/j721e_hs_evm_a72_defconfig
  870. TQ GROUP
  871. #M: Martin Krause <martin.krause@tq-systems.de>
  872. S: Orphaned (Since 2016-02)
  873. T: git git://git.denx.de/u-boot-tq-group.git
  874. TEE
  875. M: Jens Wiklander <jens.wiklander@linaro.org>
  876. S: Maintained
  877. F: drivers/tee/
  878. F: include/tee.h
  879. F: include/tee/
  880. TEE-lib
  881. M: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
  882. S: Maintained
  883. F: lib/optee
  884. UBI
  885. M: Kyungmin Park <kmpark@infradead.org>
  886. M: Heiko Schocher <hs@denx.de>
  887. S: Maintained
  888. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-ubi.git
  889. F: drivers/mtd/ubi/
  890. UFS
  891. M: Faiz Abbas <faiz_abbas@ti.com>
  892. S: Maintained
  893. F: drivers/ufs/
  894. USB
  895. M: Marek Vasut <marex@denx.de>
  896. S: Maintained
  897. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-usb.git
  898. F: drivers/usb/
  899. F: common/usb.c
  900. F: common/usb_kbd.c
  901. F: include/usb.h
  902. USB xHCI
  903. M: Bin Meng <bmeng.cn@gmail.com>
  904. S: Maintained
  905. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-usb.git topic-xhci
  906. F: drivers/usb/host/xhci*
  907. F: include/usb/xhci.h
  908. VIDEO
  909. M: Anatolij Gustschin <agust@denx.de>
  910. S: Maintained
  911. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-video.git
  912. F: drivers/video/
  913. F: common/lcd*.c
  914. F: include/lcd*.h
  915. F: include/video*.h
  916. X86
  917. M: Simon Glass <sjg@chromium.org>
  918. M: Bin Meng <bmeng.cn@gmail.com>
  919. S: Maintained
  920. T: git https://gitlab.denx.de/u-boot/custodians/u-boot-x86.git
  921. F: arch/x86/
  922. F: cmd/x86/
  923. XTENSA
  924. M: Max Filippov <jcmvbkbc@gmail.com>
  925. S: Maintained
  926. F: arch/xtensa/
  927. THE REST
  928. M: Tom Rini <trini@konsulko.com>
  929. L: u-boot@lists.denx.de
  930. Q: http://patchwork.ozlabs.org/project/uboot/list/
  931. S: Maintained
  932. T: git https://gitlab.denx.de/u-boot/u-boot.git
  933. F: configs/tools-only_defconfig
  934. F: *
  935. F: */