MAINTAINERS 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258
  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://source.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://source.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: Tien Fong Chee <tien.fong.chee@intel.com>
  110. S: Maintained
  111. T: git https://source.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://source.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 ASPEED
  138. M: Ryan Chen <ryan_chen@aspeedtech.com>
  139. M: Chia-Wei Wang <chiawei_wang@aspeedtech.com>
  140. R: Aspeed BMC SW team <BMC-SW@aspeedtech.com>
  141. S: Maintained
  142. F: arch/arm/mach-aspeed/
  143. F: arch/arm/include/asm/arch-aspeed/
  144. F: board/aspeed/
  145. F: drivers/clk/aspeed/
  146. F: drivers/pinctrl/aspeed/
  147. N: aspeed
  148. ARM BROADCOM BCM283X / BCM27XX
  149. M: Matthias Brugger <mbrugger@suse.com>
  150. S: Maintained
  151. F: arch/arm/dts/bcm283*
  152. F: arch/arm/mach-bcm283x/
  153. F: board/raspberrypi/
  154. F: drivers/gpio/bcm2835_gpio.c
  155. F: drivers/mmc/bcm2835_sdhci.c
  156. F: drivers/mmc/bcm2835_sdhost.c
  157. F: drivers/serial/serial_bcm283x_mu.c
  158. F: drivers/serial/serial_bcm283x_pl011.c
  159. F: drivers/video/bcm2835.c
  160. F: include/dm/platform_data/serial_bcm283x_mu.h
  161. F: include/dt-bindings/pinctrl/bcm2835.h
  162. F: drivers/pinctrl/broadcom/
  163. F: configs/rpi_*
  164. T: git https://source.denx.de/u-boot/custodians/u-boot-arm.git
  165. ARM BROADCOM BCMSTB
  166. M: Thomas Fitzsimmons <fitzsim@fitzsim.org>
  167. S: Maintained
  168. F: arch/arm/mach-bcmstb/
  169. F: board/broadcom/bcmstb/
  170. F: configs/bcm7*_defconfig
  171. F: doc/README.bcm7xxx
  172. F: drivers/mmc/bcmstb_sdhci.c
  173. F: drivers/spi/bcmstb_spi.c
  174. ARM CORTINA ACCESS CAxxxx
  175. M: Alex Nemirovsky <alex.nemirovsky@cortina-access.com>
  176. S: Supported
  177. F: board/cortina/common/
  178. F: drivers/gpio/cortina_gpio.c
  179. F: drivers/watchdog/cortina_wdt.c
  180. F: drivers/serial/serial_cortina.c
  181. F: drivers/led/led_cortina.c
  182. F: drivers/mmc/ca_dw_mmc.c
  183. F: drivers/spi/ca_sflash.c
  184. F: drivers/i2c/i2c-cortina.c
  185. F: drivers/i2c/i2c-cortina.h
  186. F: drivers/mtd/nand/raw/cortina_nand.c
  187. F: drivers/mtd/nand/raw/cortina_nand.h
  188. F: drivers/net/cortina_ni.c
  189. F: drivers/net/cortina_ni.h
  190. F: drivers/net/phy/ca_phy.c
  191. F: configs/cortina_presidio-asic-pnand_defconfig
  192. ARM/CZ.NIC TURRIS MOX SUPPORT
  193. M: Marek Behun <marek.behun@nic.cz>
  194. S: Maintained
  195. F: arch/arm/dts/armada-3720-turris-mox.dts
  196. F: board/CZ.NIC/
  197. F: configs/turris_*_defconfig
  198. F: include/configs/turris_*.h
  199. ARM FREESCALE IMX
  200. M: Stefano Babic <sbabic@denx.de>
  201. M: Fabio Estevam <festevam@gmail.com>
  202. R: NXP i.MX U-Boot Team <uboot-imx@nxp.com>
  203. S: Maintained
  204. T: git https://source.denx.de/u-boot/custodians/u-boot-imx.git
  205. F: arch/arm/cpu/arm1136/mx*/
  206. F: arch/arm/cpu/arm926ejs/mx*/
  207. F: arch/arm/cpu/armv7/vf610/
  208. F: arch/arm/dts/*imx*
  209. F: arch/arm/mach-imx/
  210. F: arch/arm/include/asm/arch-imx/
  211. F: arch/arm/include/asm/arch-mx*/
  212. F: arch/arm/include/asm/arch-vf610/
  213. F: arch/arm/include/asm/mach-imx/
  214. F: board/freescale/*mx*/
  215. ARM HISILICON
  216. M: Peter Griffin <peter.griffin@linaro.org>
  217. M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
  218. S: Maintained
  219. F: arch/arm/cpu/armv8/hisilicon
  220. F: arch/arm/include/asm/arch-hi6220/
  221. F: arch/arm/include/asm/arch-hi3660/
  222. ARM IPQ40XX
  223. M: Robert Marko <robert.marko@sartura.hr>
  224. M: Luka Kovacic <luka.kovacic@sartura.hr>
  225. M: Luka Perkov <luka.perkov@sartura.hr>
  226. S: Maintained
  227. F: arch/arm/mach-ipq40xx/
  228. F: include/dt-bindings/clock/qcom,ipq4019-gcc.h
  229. F: include/dt-bindings/reset/qcom,ipq4019-reset.h
  230. F: drivers/reset/reset-ipq4019.c
  231. F: drivers/phy/phy-qcom-ipq4019-usb.c
  232. F: drivers/spi/spi-qup.c
  233. F: drivers/net/mdio-ipq4019.c
  234. F: drivers/rng/msm_rng.c
  235. ARM MARVELL KIRKWOOD ARMADA-XP ARMADA-38X ARMADA-37XX ARMADA-7K/8K
  236. M: Stefan Roese <sr@denx.de>
  237. S: Maintained
  238. T: git https://source.denx.de/u-boot/custodians/u-boot-marvell.git
  239. F: arch/arm/mach-kirkwood/
  240. F: arch/arm/mach-mvebu/
  241. F: drivers/ata/ahci_mvebu.c
  242. F: drivers/ddr/marvell/
  243. F: drivers/gpio/mvebu_gpio.c
  244. F: drivers/spi/kirkwood_spi.c
  245. F: drivers/pci/pci_mvebu.c
  246. F: drivers/pci/pcie_dw_mvebu.c
  247. F: drivers/watchdog/orion_wdt.c
  248. ARM MARVELL PXA
  249. M: Marek Vasut <marex@denx.de>
  250. S: Maintained
  251. T: git https://source.denx.de/u-boot/custodians/u-boot-pxa.git
  252. F: arch/arm/cpu/pxa/
  253. F: arch/arm/include/asm/arch-pxa/
  254. ARM MEDIATEK
  255. M: Ryder Lee <ryder.lee@mediatek.com>
  256. M: Weijie Gao <weijie.gao@mediatek.com>
  257. M: Chunfeng Yun <chunfeng.yun@mediatek.com>
  258. R: GSS_MTK_Uboot_upstream <GSS_MTK_Uboot_upstream@mediatek.com>
  259. S: Maintained
  260. F: arch/arm/mach-mediatek/
  261. F: arch/arm/include/asm/arch-mediatek/
  262. F: board/mediatek/
  263. F: doc/device-tree-bindings/phy/phy-mtk-*
  264. F: doc/device-tree-bindings/usb/mediatek,*
  265. F: doc/README.mediatek
  266. F: drivers/clk/mediatek/
  267. F: drivers/mmc/mtk-sd.c
  268. F: drivers/phy/phy-mtk-*
  269. F: drivers/pinctrl/mediatek/
  270. F: drivers/power/domain/mtk-power-domain.c
  271. F: drivers/ram/mediatek/
  272. F: drivers/spi/mtk_snfi_spi.c
  273. F: drivers/timer/mtk_timer.c
  274. F: drivers/usb/host/xhci-mtk.c
  275. F: drivers/usb/mtu3/
  276. F: drivers/watchdog/mtk_wdt.c
  277. F: drivers/net/mtk_eth.c
  278. F: drivers/reset/reset-mediatek.c
  279. F: tools/mtk_image.c
  280. F: tools/mtk_image.h
  281. N: mediatek
  282. ARM MICROCHIP/ATMEL AT91
  283. M: Eugen Hristev <eugen.hristev@microchip.com>
  284. S: Maintained
  285. T: git https://source.denx.de/u-boot/custodians/u-boot-atmel.git
  286. F: arch/arm/mach-at91/
  287. F: board/atmel/
  288. F: drivers/cpu/at91_cpu.c
  289. F: drivers/misc/microchip_flexcom.c
  290. F: drivers/timer/mchp-pit64b-timer.c
  291. ARM NEXELL S5P4418
  292. M: Stefan Bosch <stefan_b@posteo.net>
  293. S: Maintained
  294. F: arch/arm/cpu/armv7/s5p4418/
  295. F: arch/arm/dts/s5p4418*
  296. F: arch/arm/mach-nexell/
  297. F: board/friendlyarm/
  298. F: configs/s5p4418_nanopi2_defconfig
  299. F: doc/README.s5p4418
  300. F: drivers/gpio/nx_gpio.c
  301. F: drivers/i2c/nx_i2c.c
  302. F: drivers/mmc/nexell_dw_mmc_dm.c
  303. F: drivers/pinctrl/nexell/
  304. F: drivers/video/nexell/
  305. F: drivers/video/nexell_display.c
  306. F: include/configs/s5p4418_nanopi2.h
  307. ARM OWL
  308. M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
  309. S: Maintained
  310. F: arch/arm/include/asm/arch-owl/
  311. F: arch/arm/mach-owl/
  312. F: doc/board/actions/
  313. F: drivers/clk/owl/
  314. F: drivers/serial/serial_owl.c
  315. F: include/configs/owl-common.h
  316. F: configs/bubblegum_96_defconfig
  317. F: configs/cubieboard7_defconfig
  318. ARM RENESAS RMOBILE/R-CAR
  319. M: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  320. M: Marek Vasut <marek.vasut+renesas@gmail.com>
  321. S: Maintained
  322. T: git https://source.denx.de/u-boot/custodians/u-boot-sh.git
  323. F: arch/arm/mach-rmobile/
  324. ARM ROCKCHIP
  325. M: Simon Glass <sjg@chromium.org>
  326. M: Philipp Tomsich <philipp.tomsich@vrull.eu>
  327. M: Kever Yang <kever.yang@rock-chips.com>
  328. S: Maintained
  329. T: git https://source.denx.de/u-boot/custodians/u-boot-rockchip.git
  330. F: arch/arm/include/asm/arch-rockchip/
  331. F: arch/arm/mach-rockchip/
  332. F: board/rockchip/
  333. F: drivers/clk/rockchip/
  334. F: drivers/gpio/rk_gpio.c
  335. F: drivers/misc/rockchip-efuse.c
  336. F: drivers/mmc/rockchip_sdhci.c
  337. F: drivers/mmc/rockchip_dw_mmc.c
  338. F: drivers/pinctrl/rockchip/
  339. F: drivers/ram/rockchip/
  340. F: drivers/sysreset/sysreset_rockchip.c
  341. F: drivers/video/rockchip/
  342. F: tools/rkcommon.c
  343. F: tools/rkcommon.h
  344. F: tools/rkimage.c
  345. F: tools/rksd.c
  346. F: tools/rkspi.c
  347. ARM SAMSUNG
  348. M: Minkyu Kang <mk7.kang@samsung.com>
  349. S: Maintained
  350. T: git https://source.denx.de/u-boot/custodians/u-boot-samsung.git
  351. F: arch/arm/mach-exynos/
  352. F: arch/arm/mach-s5pc1xx/
  353. F: arch/arm/cpu/armv7/s5p-common/
  354. ARM SNAPDRAGON
  355. M: Ramon Fried <rfried.dev@gmail.com>
  356. S: Maintained
  357. F: arch/arm/mach-snapdragon/
  358. F: drivers/gpio/msm_gpio.c
  359. F: drivers/mmc/msm_sdhci.c
  360. F: drivers/phy/msm8916-usbh-phy.c
  361. F: drivers/serial/serial_msm.c
  362. F: drivers/smem/msm_smem.c
  363. F: drivers/usb/host/ehci-msm.c
  364. ARM STI
  365. M: Patrice Chotard <patrice.chotard@foss.st.com>
  366. S: Maintained
  367. T: git https://source.denx.de/u-boot/custodians/u-boot-stm.git
  368. F: arch/arm/mach-sti/
  369. F: arch/arm/include/asm/arch-sti*/
  370. F: drivers/phy/sti_usb_phy.c
  371. F: drivers/pinctrl/pinctrl-sti.c
  372. F: drivers/mmc/sti_sdhci.c
  373. F: drivers/reset/sti-reset.c
  374. F: drivers/serial/serial_sti_asc.c
  375. F: drivers/sysreset/sysreset_sti.c
  376. F: drivers/timer/sti-timer.c
  377. F: drivers/usb/host/dwc3-sti-glue.c
  378. F: include/dwc3-sti-glue.h
  379. F: include/dt-bindings/clock/stih407-clks.h
  380. F: include/dt-bindings/clock/stih410-clks.h
  381. F: include/dt-bindings/reset/stih407-resets.h
  382. ARM STM SPEAR
  383. #M: Vipin Kumar <vipin.kumar@st.com>
  384. S: Orphaned (Since 2016-02)
  385. T: git https://source.denx.de/u-boot/custodians/u-boot-stm.git
  386. F: arch/arm/cpu/arm926ejs/spear/
  387. F: arch/arm/include/asm/arch-spear/
  388. ARM STM STM32MP
  389. M: Patrick Delaunay <patrick.delaunay@foss.st.com>
  390. M: Patrice Chotard <patrice.chotard@foss.st.com>
  391. L: uboot-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
  392. T: git https://source.denx.de/u-boot/custodians/u-boot-stm.git
  393. S: Maintained
  394. F: arch/arm/mach-stm32mp/
  395. F: doc/board/st/
  396. F: drivers/adc/stm32-adc*
  397. F: drivers/clk/clk_stm32mp1.c
  398. F: drivers/gpio/stm32_gpio.c
  399. F: drivers/hwspinlock/stm32_hwspinlock.c
  400. F: drivers/i2c/stm32f7_i2c.c
  401. F: drivers/mailbox/stm32-ipcc.c
  402. F: drivers/misc/stm32mp_fuse.c
  403. F: drivers/misc/stm32_rcc.c
  404. F: drivers/mmc/stm32_sdmmc2.c
  405. F: drivers/mtd/nand/raw/stm32_fmc2_nand.c
  406. F: drivers/phy/phy-stm32-usbphyc.c
  407. F: drivers/pinctrl/pinctrl_stm32.c
  408. F: drivers/power/pmic/stpmic1.c
  409. F: drivers/power/regulator/stm32-vrefbuf.c
  410. F: drivers/power/regulator/stpmic1.c
  411. F: drivers/ram/stm32mp1/
  412. F: drivers/remoteproc/stm32_copro.c
  413. F: drivers/reset/stm32-reset.c
  414. F: drivers/rng/stm32mp1_rng.c
  415. F: drivers/rtc/stm32_rtc.c
  416. F: drivers/serial/serial_stm32.*
  417. F: drivers/spi/stm32_qspi.c
  418. F: drivers/spi/stm32_spi.c
  419. F: drivers/video/stm32/stm32_ltdc.c
  420. F: drivers/watchdog/stm32mp_wdt.c
  421. F: include/dt-bindings/clock/stm32fx-clock.h
  422. F: include/dt-bindings/clock/stm32mp1-clks.h
  423. F: include/dt-bindings/clock/stm32mp1-clksrc.h
  424. F: include/dt-bindings/pinctrl/stm32-pinfunc.h
  425. F: include/dt-bindings/reset/stm32mp1-resets.h
  426. F: include/stm32_rcc.h
  427. F: tools/stm32image.c
  428. N: stm
  429. N: stm32
  430. ARM STM STV0991
  431. M: Vikas Manocha <vikas.manocha@st.com>
  432. S: Maintained
  433. F: arch/arm/cpu/armv7/stv0991/
  434. F: arch/arm/include/asm/arch-stv0991/
  435. ARM SUNXI
  436. M: Jagan Teki <jagan@amarulasolutions.com>
  437. M: Andre Przywara <andre.przywara@arm.com>
  438. S: Maintained
  439. T: git https://source.denx.de/u-boot/custodians/u-boot-sunxi.git
  440. F: arch/arm/cpu/armv7/sunxi/
  441. F: arch/arm/include/asm/arch-sunxi/
  442. F: arch/arm/mach-sunxi/
  443. F: board/sunxi/
  444. F: drivers/clk/sunxi/
  445. F: drivers/phy/allwinner/
  446. F: drivers/video/sunxi/
  447. ARM TEGRA
  448. M: Tom Warren <twarren@nvidia.com>
  449. S: Maintained
  450. T: git https://source.denx.de/u-boot/custodians/u-boot-tegra.git
  451. F: arch/arm/mach-tegra/
  452. F: arch/arm/include/asm/arch-tegra*/
  453. ARM TI
  454. M: Lokesh Vutla <lokeshvutla@ti.com>
  455. S: Maintained
  456. T: git https://source.denx.de/u-boot/custodians/u-boot-ti.git
  457. F: arch/arm/mach-davinci/
  458. F: arch/arm/mach-k3/
  459. F: arch/arm/mach-keystone/
  460. F: arch/arm/mach-omap2/
  461. F: arch/arm/include/asm/arch-omap*/
  462. F: arch/arm/include/asm/ti-common/
  463. F: board/ti/
  464. F: drivers/dma/ti*
  465. F: drivers/firmware/ti_sci.*
  466. F: drivers/gpio/omap_gpio.c
  467. F: drivers/memory/ti-aemif.c
  468. F: drivers/misc/k3_avs.c
  469. F: drivers/mailbox/k3-sec-procy.c
  470. F: drivers/pci/pcie_dw_ti.c
  471. F: drivers/phy/keystone-usb-phy.c
  472. F: drivers/phy/omap-usb2-phy.c
  473. F: drivers/phy/phy-ti-am654.c
  474. F: drivers/phy/ti-pipe3-phy.c
  475. F: drivers/ram/k3*
  476. F: drivers/remoteproc/k3_system_controller.c
  477. F: drivers/remoteproc/pruc_rpoc.c
  478. F: drivers/remoteproc/ti*
  479. F: drivers/reset/reset-ti-sci.c
  480. F: drivers/rtc/davinci.c
  481. F: drivers/serial/serial_omap.c
  482. F: drivers/soc/ti/
  483. F: drivers/sysreset/sysreset-ti-sci.c
  484. F: drivers/thermal/ti-bandgap.c
  485. F: drivers/timer/omap-timer.c
  486. F: drivers/watchdog/omap_wdt.c
  487. F: include/linux/pruss_driver.h
  488. F: include/linux/soc/ti/
  489. ARM U8500
  490. M: Stephan Gerhold <stephan@gerhold.net>
  491. R: Linus Walleij <linus.walleij@linaro.org>
  492. S: Maintained
  493. F: arch/arm/dts/ste-*
  494. F: arch/arm/mach-u8500/
  495. F: drivers/timer/nomadik-mtu-timer.c
  496. ARM UNIPHIER
  497. S: Orphan (Since 2020-09)
  498. F: arch/arm/mach-uniphier/
  499. F: configs/uniphier_*_defconfig
  500. N: uniphier
  501. ARM VERSAL
  502. M: Michal Simek <michal.simek@xilinx.com>
  503. S: Maintained
  504. T: git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
  505. F: arch/arm/mach-versal/
  506. F: drivers/net/xilinx_axi_mrmac.*
  507. F: drivers/watchdog/xilinx_wwdt.c
  508. N: (?<!uni)versal
  509. ARM VERSATILE EXPRESS DRIVERS
  510. M: Liviu Dudau <liviu.dudau@foss.arm.com>
  511. S: Maintained
  512. T: git git://github.com/ARM-software/u-boot.git
  513. F: drivers/misc/vexpress_config.c
  514. N: vexpress
  515. ARM ZYNQ
  516. M: Michal Simek <monstr@monstr.eu>
  517. S: Maintained
  518. T: git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
  519. F: arch/arm/mach-zynq/
  520. F: doc/board/xilinx/
  521. F: doc/device-tree-bindings/video/syncoam,seps525.txt
  522. F: drivers/clk/clk_zynq.c
  523. F: drivers/fpga/zynqpl.c
  524. F: drivers/gpio/zynq_gpio.c
  525. F: drivers/i2c/i2c-cdns.c
  526. F: drivers/i2c/muxes/pca954x.c
  527. F: drivers/i2c/zynq_i2c.c
  528. F: drivers/mmc/zynq_sdhci.c
  529. F: drivers/mtd/nand/raw/zynq_nand.c
  530. F: drivers/net/phy/xilinx_phy.c
  531. F: drivers/net/zynq_gem.c
  532. F: drivers/serial/serial_zynq.c
  533. F: drivers/spi/zynq_qspi.c
  534. F: drivers/spi/zynq_spi.c
  535. F: drivers/usb/host/ehci-zynq.c
  536. F: drivers/watchdog/cdns_wdt.c
  537. F: include/zynqpl.h
  538. F: tools/zynqimage.c
  539. N: zynq
  540. ARM ZYNQMP
  541. M: Michal Simek <michal.simek@xilinx.com>
  542. S: Maintained
  543. T: git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
  544. F: arch/arm/mach-zynqmp/
  545. F: drivers/clk/clk_zynqmp.c
  546. F: driver/firmware/firmware-zynqmp.c
  547. F: drivers/fpga/zynqpl.c
  548. F: drivers/gpio/zynq_gpio.c
  549. F: drivers/i2c/i2c-cdns.c
  550. F: drivers/i2c/muxes/pca954x.c
  551. F: drivers/i2c/zynq_i2c.c
  552. F: drivers/mailbox/zynqmp-ipi.c
  553. F: drivers/mmc/zynq_sdhci.c
  554. F: drivers/mtd/nand/raw/zynq_nand.c
  555. F: drivers/net/phy/xilinx_phy.c
  556. F: drivers/net/zynq_gem.c
  557. F: drivers/serial/serial_zynq.c
  558. F: drivers/reset/reset-zynqmp.c
  559. F: drivers/rtc/zynqmp_rtc.c
  560. F: drivers/spi/zynq_qspi.c
  561. F: drivers/spi/zynq_spi.c
  562. F: drivers/timer/cadence-ttc.c
  563. F: drivers/usb/host/ehci-zynq.c
  564. F: drivers/video/seps525.c
  565. F: drivers/watchdog/cdns_wdt.c
  566. F: include/zynqmppl.h
  567. F: include/zynqmp_firmware.h
  568. F: tools/zynqmp*
  569. N: ultra96
  570. N: zynqmp
  571. ARM ZYNQMP R5
  572. M: Michal Simek <michal.simek@xilinx.com>
  573. S: Maintained
  574. T: git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
  575. F: arch/arm/mach-zynqmp-r5/
  576. ARM PHYTIUM
  577. M: liuhao <liuhao@phytium.com.cn>
  578. M: shuyiqi <shuyiqi@phytium.com.cn>
  579. S: Maintained
  580. F: drivers/pci/pcie_phytium.c
  581. F: arch/arm/dts/phytium-durian.dts
  582. BINMAN
  583. M: Simon Glass <sjg@chromium.org>
  584. S: Maintained
  585. F: tools/binman/
  586. BTRFS
  587. M: Marek Behun <marek.behun@nic.cz>
  588. R: Qu Wenruo <wqu@suse.com>
  589. L: linux-btrfs@vger.kernel.org
  590. S: Maintained
  591. F: cmd/btrfs.c
  592. F: fs/btrfs/
  593. F: include/btrfs.h
  594. BUILDMAN
  595. M: Simon Glass <sjg@chromium.org>
  596. S: Maintained
  597. F: tools/buildman/
  598. CFI FLASH
  599. M: Stefan Roese <sr@denx.de>
  600. S: Maintained
  601. T: git https://source.denx.de/u-boot/custodians/u-boot-cfi-flash.git
  602. F: drivers/mtd/cfi_flash.c
  603. F: drivers/mtd/jedec_flash.c
  604. CLOCK
  605. M: Lukasz Majewski <lukma@denx.de>
  606. S: Maintained
  607. T: git https://source.denx.de/u-boot/custodians/u-boot-clk.git
  608. F: drivers/clk/
  609. F: drivers/clk/imx/
  610. COLDFIRE
  611. M: Huan Wang <alison.wang@nxp.com>
  612. M: Angelo Dureghello <angelo@sysam.it>
  613. S: Maintained
  614. T: git https://source.denx.de/u-boot/custodians/u-boot-coldfire.git
  615. F: arch/m68k/
  616. F: doc/arch/m68k.rst
  617. DFU
  618. M: Lukasz Majewski <lukma@denx.de>
  619. S: Maintained
  620. T: git https://source.denx.de/u-boot/custodians/u-boot-dfu.git
  621. F: cmd/dfu.c
  622. F: cmd/usb_*.c
  623. F: common/dfu.c
  624. F: common/update.c
  625. F: common/usb_storage.c
  626. F: doc/api/dfu.rst
  627. F: doc/usage/dfu.rst
  628. F: drivers/dfu/
  629. F: drivers/usb/gadget/
  630. F: include/dfu.h
  631. DRIVER MODEL
  632. M: Simon Glass <sjg@chromium.org>
  633. S: Maintained
  634. T: git https://source.denx.de/u-boot/custodians/u-boot-dm.git
  635. F: doc/driver-model/
  636. F: drivers/core/
  637. F: include/dm/
  638. F: test/dm/
  639. EFI PAYLOAD
  640. M: Heinrich Schuchardt <xypron.glpk@gmx.de>
  641. R: Alexander Graf <agraf@csgraf.de>
  642. S: Maintained
  643. T: git https://source.denx.de/u-boot/custodians/u-boot-efi.git
  644. F: doc/api/efi.rst
  645. F: doc/develop/uefi/*
  646. F: doc/usage/bootefi.rst
  647. F: drivers/rtc/emul_rtc.c
  648. F: include/capitalization.h
  649. F: include/charset.h
  650. F: include/cp1250.h
  651. F: include/cp437.h
  652. F: include/efi*
  653. F: include/pe.h
  654. F: include/asm-generic/pe.h
  655. F: lib/charset.c
  656. F: lib/efi*/
  657. F: test/lib/efi_*
  658. F: test/py/tests/test_efi*
  659. F: test/py/tests/test_efi*/
  660. F: test/unicode_ut.c
  661. F: cmd/bootefi.c
  662. F: cmd/efidebug.c
  663. F: cmd/nvedit_efi.c
  664. F: tools/efivar.py
  665. F: tools/file2include.c
  666. F: tools/mkeficapsule.c
  667. EFI VARIABLES VIA OP-TEE
  668. M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
  669. S: Maintained
  670. F: lib/efi_loader/efi_variable_tee.c
  671. F: include/mm_communication.h
  672. ENVIRONMENT
  673. M: Joe Hershberger <joe.hershberger@ni.com>
  674. R: Wolfgang Denk <wd@denx.de>
  675. S: Maintained
  676. F: env/
  677. F: include/env*
  678. F: test/env/
  679. F: tools/env*
  680. F: tools/mkenvimage.c
  681. FPGA
  682. M: Michal Simek <michal.simek@xilinx.com>
  683. S: Maintained
  684. T: git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
  685. F: drivers/fpga/
  686. F: cmd/fpga.c
  687. F: include/fpga.h
  688. FLATTENED DEVICE TREE
  689. M: Simon Glass <sjg@chromium.org>
  690. S: Maintained
  691. T: git https://source.denx.de/u-boot/custodians/u-boot-fdt.git
  692. F: lib/fdtdec*
  693. F: lib/libfdt/
  694. F: include/fdt*
  695. F: include/linux/libfdt*
  696. F: cmd/fdt.c
  697. F: common/fdt_support.c
  698. FREEBSD
  699. M: Rafal Jaworowski <raj@semihalf.com>
  700. S: Maintained
  701. T: git https://source.denx.de/u-boot/custodians/u-boot-freebsd.git
  702. FREESCALE QORIQ
  703. M: Priyanka Jain <priyanka.jain@nxp.com>
  704. S: Maintained
  705. T: git https://source.denx.de/u-boot/custodians/u-boot-fsl-qoriq.git
  706. F: drivers/watchdog/sp805_wdt.c
  707. F: drivers/watchdog/sbsa_gwdt.c
  708. I2C
  709. M: Heiko Schocher <hs@denx.de>
  710. S: Maintained
  711. T: git https://source.denx.de/u-boot/custodians/u-boot-i2c.git
  712. F: drivers/i2c/
  713. LOGGING
  714. M: Simon Glass <sjg@chromium.org>
  715. S: Maintained
  716. T: git https://source.denx.de/u-boot/u-boot.git
  717. F: common/log*
  718. F: cmd/log.c
  719. F: doc/develop/logging.rst
  720. F: include/log.h
  721. F: lib/getopt.c
  722. F: test/log/
  723. F: test/py/tests/test_log.py
  724. MALI DISPLAY PROCESSORS
  725. M: Liviu Dudau <liviu.dudau@foss.arm.com>
  726. S: Supported
  727. T: git git://github.com/ARM-software/u-boot.git
  728. F: drivers/video/mali_dp.c
  729. F: drivers/i2c/i2c-versatile.c
  730. MICROBLAZE
  731. M: Michal Simek <monstr@monstr.eu>
  732. S: Maintained
  733. T: git https://source.denx.de/u-boot/custodians/u-boot-microblaze.git
  734. F: arch/microblaze/
  735. F: cmd/mfsl.c
  736. F: drivers/gpio/xilinx_gpio.c
  737. F: drivers/net/xilinx_axi_emac.c
  738. F: drivers/net/xilinx_emaclite.c
  739. F: drivers/serial/serial_xuartlite.c
  740. F: drivers/spi/xilinx_spi.c
  741. F: drivers/sysreset/sysreset_gpio.c
  742. F: drivers/watchdog/xilinx_tb_wdt.c
  743. N: xilinx
  744. MIPS
  745. M: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
  746. S: Maintained
  747. T: git https://source.denx.de/u-boot/custodians/u-boot-mips.git
  748. F: arch/mips/
  749. MIPS CORTINA ACCESS CAxxxx
  750. M: Alex Nemirovsky <alex.nemirovsky@cortina-access.com>
  751. S: Supported
  752. F: board/cortina/common/
  753. F: drivers/gpio/cortina_gpio.c
  754. F: drivers/watchdog/cortina_wdt.c
  755. F: drivers/serial/serial_cortina.c
  756. F: drivers/led/led_cortina.c
  757. F: drivers/mmc/ca_dw_mmc.c
  758. F: drivers/spi/ca_sflash.c
  759. F: drivers/i2c/i2c-cortina.c
  760. F: drivers/i2c/i2c-cortina.h
  761. F: drivers/net/cortina_ni.c
  762. F: drivers/net/cortina_ni.h
  763. F: drivers/net/phy/ca_phy.c
  764. MIPS MEDIATEK
  765. M: Weijie Gao <weijie.gao@mediatek.com>
  766. R: GSS_MTK_Uboot_upstream <GSS_MTK_Uboot_upstream@mediatek.com>
  767. S: Maintained
  768. F: arch/mips/mach-mtmips/
  769. F: arch/mips/dts/mt7620.dtsi
  770. F: arch/mips/dts/mt7620-u-boot.dtsi
  771. F: include/configs/mt7620.h
  772. F: include/dt-bindings/clock/mt7620-clk.h
  773. F: include/dt-bindings/clock/mt7628-clk.h
  774. F: include/dt-bindings/reset/mt7620-reset.h
  775. F: include/dt-bindings/reset/mt7628-reset.h
  776. F: drivers/clk/mtmips/
  777. F: drivers/pinctrl/mtmips/
  778. F: drivers/gpio/mt7620_gpio.c
  779. F: drivers/net/mt7620-eth.c
  780. F: drivers/phy/mt7620-usb-phy.c
  781. F: drivers/reset/reset-mtmips.c
  782. F: drivers/serial/serial_mt7620.c
  783. F: drivers/spi/mt7620_spi.c
  784. F: drivers/sysreset/sysreset_resetctl.c
  785. F: drivers/watchdog/mt7620_wdt.c
  786. MIPS MSCC
  787. M: Gregory CLEMENT <gregory.clement@bootlin.com>
  788. M: Lars Povlsen <lars.povlsen@microchip.com>
  789. M: Horatiu Vultur <horatiu.vultur@microchip.com>
  790. S: Maintained
  791. F: arch/mips/mach-mscc/
  792. F: arch/mips/dts/luton*
  793. F: arch/mips/dts/mscc*
  794. F: arch/mips/dts/ocelot*
  795. F: arch/mips/dts/jr2*
  796. F: arch/mips/dts/serval*
  797. F: board/mscc/
  798. F: configs/mscc*
  799. F: drivers/gpio/mscc_sgpio.c
  800. F: drivers/spi/mscc_bb_spi.c
  801. F: include/configs/vcoreiii.h
  802. F: include/dt-bindings/mscc/
  803. F: drivers/pinctrl/mscc/
  804. F: drivers/net/mscc_eswitch/
  805. MIPS JZ4780
  806. M: Ezequiel Garcia <ezequiel@collabora.com>
  807. S: Maintained
  808. F: arch/mips/mach-jz47xx/
  809. MIPS Octeon
  810. M: Aaron Williams <awilliams@marvell.com>
  811. S: Maintained
  812. F: arch/mips/mach-octeon/
  813. F: arch/mips/include/asm/arch-octeon/
  814. F: arch/mips/dts/mrvl,cn73xx.dtsi
  815. MMC
  816. M: Peng Fan <peng.fan@nxp.com>
  817. M: Jaehoon Chung <jh80.chung@samsung.com>
  818. S: Maintained
  819. T: git https://source.denx.de/u-boot/custodians/u-boot-mmc.git
  820. F: drivers/mmc/
  821. NAND FLASH
  822. #M: Scott Wood <oss@buserror.net>
  823. S: Orphaned (Since 2018-07)
  824. T: git https://source.denx.de/u-boot/custodians/u-boot-nand-flash.git
  825. F: drivers/mtd/nand/raw/
  826. NDS32
  827. M: Rick Chen <rick@andestech.com>
  828. S: Maintained
  829. T: git https://source.denx.de/u-boot/custodians/u-boot-nds32.git
  830. F: arch/nds32/
  831. NETWORK
  832. M: Joe Hershberger <joe.hershberger@ni.com>
  833. M: Ramon Fried <rfried.dev@gmail.com>
  834. S: Maintained
  835. T: git https://source.denx.de/u-boot/custodians/u-boot-net.git
  836. F: drivers/net/
  837. F: include/net.h
  838. F: net/
  839. NIOS
  840. M: Thomas Chou <thomas@wytron.com.tw>
  841. S: Maintained
  842. T: git https://source.denx.de/u-boot/custodians/u-boot-nios.git
  843. F: arch/nios2/
  844. NVMe
  845. M: Bin Meng <bmeng.cn@gmail.com>
  846. S: Maintained
  847. F: drivers/nvme/
  848. F: cmd/nvme.c
  849. F: include/nvme.h
  850. F: doc/develop/driver-model/nvme.rst
  851. NXP C45 TJA11XX PHY DRIVER
  852. M: Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
  853. S: Maintained
  854. F: drivers/net/phy/nxp-c45-tja11xx.c
  855. ONENAND
  856. #M: Lukasz Majewski <l.majewski@majess.pl>
  857. S: Orphaned (Since 2017-01)
  858. T: git https://source.denx.de/u-boot/custodians/u-boot-onenand.git
  859. F: drivers/mtd/onenand/
  860. OUT4-IMX6ULL-NANO BOARD
  861. M: Oleh Kravchenko <oleg@kaa.org.ua>
  862. S: Maintained
  863. T: git https://github.com/Oleh-Kravchenko/u-boot-out4.git
  864. F: arch/arm/dts/ev-imx280-nano-x-mb.dts
  865. F: arch/arm/dts/o4-imx-nano.dts
  866. F: arch/arm/dts/o4-imx6ull-nano.dtsi
  867. F: board/out4
  868. F: configs/ev-imx280-nano-x-mb_defconfig
  869. F: configs/o4-imx6ull-nano_defconfig
  870. F: include/configs/o4-imx6ull-nano.h
  871. PATMAN
  872. M: Simon Glass <sjg@chromium.org>
  873. S: Maintained
  874. F: tools/patman/
  875. PCI Endpoint
  876. M: Ramon Fried <rfried.dev@gmail.com>
  877. S: Maintained
  878. F: drivers/pci_endpoint/
  879. F: include/pci_ep.h
  880. PCI MPC85xx
  881. M: Heiko Schocher <hs@denx.de>
  882. S: Maintained
  883. F: drivers/pci/pci_mpc85xx.c
  884. POWER
  885. M: Jaehoon Chung <jh80.chung@samsung.com>
  886. S: Maintained
  887. T: git https://source.denx.de/u-boot/custodians/u-boot-pmic.git
  888. F: drivers/power/
  889. POWERPC
  890. M: Wolfgang Denk <wd@denx.de>
  891. S: Maintained
  892. F: arch/powerpc/
  893. POWERPC MPC8XX
  894. M: Christophe Leroy <christophe.leroy@c-s.fr>
  895. S: Maintained
  896. T: git https://source.denx.de/u-boot/custodians/u-boot-mpc8xx.git
  897. F: arch/powerpc/cpu/mpc8xx/
  898. POWERPC MPC83XX
  899. M: Mario Six <mario.six@gdsys.cc>
  900. S: Maintained
  901. T: git https://source.denx.de/u-boot/custodians/u-boot-mpc83xx.git
  902. F: drivers/ram/mpc83xx_sdram.c
  903. F: include/dt-bindings/memory/mpc83xx-sdram.h
  904. F: drivers/sysreset/sysreset_mpc83xx.c
  905. F: drivers/sysreset/sysreset_mpc83xx.h
  906. F: drivers/clk/mpc83xx_clk.c
  907. F: drivers/clk/mpc83xx_clk.h
  908. F: include/dt-bindings/clk/mpc83xx-clk.h
  909. F: drivers/timer/mpc83xx_timer.c
  910. F: drivers/cpu/mpc83xx_cpu.c
  911. F: drivers/cpu/mpc83xx_cpu.h
  912. F: drivers/misc/mpc83xx_serdes.c
  913. F: arch/powerpc/cpu/mpc83xx/
  914. F: arch/powerpc/include/asm/arch-mpc83xx/
  915. POWERPC MPC85XX
  916. M: Priyanka Jain <priyanka.jain@nxp.com>
  917. S: Maintained
  918. T: git https://source.denx.de/u-boot/custodians/u-boot-mpc85xx.git
  919. F: arch/powerpc/cpu/mpc85xx/
  920. RISC-V
  921. M: Rick Chen <rick@andestech.com>
  922. M: Leo <ycliang@andestech.com>
  923. S: Maintained
  924. T: git https://source.denx.de/u-boot/custodians/u-boot-riscv.git
  925. F: arch/riscv/
  926. F: cmd/riscv/
  927. F: doc/usage/sbi.rst
  928. F: drivers/timer/andes_plmt_timer.c
  929. F: drivers/timer/sifive_clint_timer.c
  930. F: tools/prelink-riscv.c
  931. RISC-V KENDRYTE
  932. M: Sean Anderson <seanga2@gmail.com>
  933. S: Maintained
  934. F: doc/device-tree-bindings/mfd/kendryte,k210-sysctl.txt
  935. F: doc/device-tree-bindings/pinctrl/kendryte,k210-fpioa.txt
  936. F: drivers/clk/clk_kendryte.c
  937. F: drivers/pinctrl/pinctrl-kendryte.c
  938. F: include/kendryte/
  939. RNG
  940. M: Sughosh Ganu <sughosh.ganu@linaro.org>
  941. R: Heinrich Schuchardt <xypron.glpk@gmx.de>
  942. S: Maintained
  943. F: cmd/rng.c
  944. F: doc/api/rng.rst
  945. F: drivers/rng/
  946. F: drivers/virtio/virtio_rng.c
  947. F: include/rng.h
  948. ROCKUSB
  949. M: Eddie Cai <eddie.cai.linux@gmail.com>
  950. S: Maintained
  951. F: drivers/usb/gadget/f_rockusb.c
  952. F: cmd/rockusb.c
  953. F: doc/README.rockusb
  954. SANDBOX
  955. M: Simon Glass <sjg@chromium.org>
  956. S: Maintained
  957. F: arch/sandbox/
  958. F: doc/arch/sandbox.rst
  959. F: include/dt-bindings/*/sandbox*.h
  960. SETEXPR
  961. M: Roland Gaudig <roland.gaudig@weidmueller.com>
  962. S: Maintained
  963. F: cmd/printf.c
  964. F: doc/usage/setexpr.rst
  965. SH
  966. M: Marek Vasut <marek.vasut+renesas@gmail.com>
  967. M: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  968. S: Maintained
  969. T: git https://source.denx.de/u-boot/custodians/u-boot-sh.git
  970. F: arch/sh/
  971. SPI
  972. M: Jagan Teki <jagan@amarulasolutions.com>
  973. S: Maintained
  974. T: git https://source.denx.de/u-boot/custodians/u-boot-spi.git
  975. F: drivers/spi/
  976. F: include/spi*
  977. SPI-NOR
  978. M: Jagan Teki <jagan@amarulasolutions.com>
  979. M: Vignesh R <vigneshr@ti.com>
  980. S: Maintained
  981. F: drivers/mtd/spi/
  982. F: include/spi_flash.h
  983. F: include/linux/mtd/cfi.h
  984. F: include/linux/mtd/spi-nor.h
  985. SPMI
  986. M: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
  987. S: Maintained
  988. F: drivers/spmi/
  989. F: include/spmi/
  990. SQUASHFS
  991. M: Joao Marcos Costa <joaomarcos.costa@bootlin.com>
  992. R: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
  993. R: Miquel Raynal <miquel.raynal@bootlin.com>
  994. S: Maintained
  995. F: fs/squashfs/
  996. F: include/sqfs.h
  997. F: cmd/sqfs.c
  998. F: test/py/tests/test_fs/test_squashfs/
  999. STACKPROTECTOR
  1000. M: Joel Peshkin <joel.peshkin@broadcom.com>
  1001. S: Maintained
  1002. F: common/stackprot.c
  1003. F: cmd/stackprot_test.c
  1004. F: test/py/tests/test_stackprotector.py
  1005. TARGET_BCMNS3
  1006. M: Bharat Gooty <bharat.gooty@broadcom.com>
  1007. M: Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com>
  1008. S: Maintained
  1009. F: board/broadcom/bcmns3/
  1010. F: doc/README.bcmns3
  1011. F: configs/bcm_ns3_defconfig
  1012. F: include/configs/bcm_ns3.h
  1013. F: include/dt-bindings/memory/bcm-ns3-mc.h
  1014. F: arch/arm/Kconfig
  1015. F: arch/arm/dts/ns3-board.dts
  1016. F: arch/arm/dts/ns3.dtsi
  1017. F: arch/arm/cpu/armv8/bcmns3
  1018. F: arch/arm/include/asm/arch-bcmns3/
  1019. F: cmd/broadcom/Makefile
  1020. F: cmd/broadcom/chimp_boot.c
  1021. F: cmd/broadcom/nitro_image_load.c
  1022. F: cmd/broadcom/chimp_handshake.c
  1023. TDA19988 HDMI ENCODER
  1024. M: Liviu Dudau <liviu.dudau@foss.arm.com>
  1025. S: Maintained
  1026. F: drivers/video/tda19988.c
  1027. TI SYSTEM SECURITY
  1028. M: Andrew F. Davis <afd@ti.com>
  1029. S: Supported
  1030. F: arch/arm/mach-omap2/omap5/sec_entry_cpu1.S
  1031. F: arch/arm/mach-omap2/sec-common.c
  1032. F: arch/arm/mach-omap2/config_secure.mk
  1033. F: arch/arm/mach-k3/security.c
  1034. F: arch/arm/mach-k3/config_secure.mk
  1035. F: configs/am335x_hs_evm_defconfig
  1036. F: configs/am335x_hs_evm_uart_defconfig
  1037. F: configs/am43xx_hs_evm_defconfig
  1038. F: configs/am57xx_hs_evm_defconfig
  1039. F: configs/am57xx_hs_evm_usb_defconfig
  1040. F: configs/dra7xx_hs_evm_defconfig
  1041. F: configs/dra7xx_hs_evm_usb_defconfig
  1042. F: configs/k2hk_hs_evm_defconfig
  1043. F: configs/k2e_hs_evm_defconfig
  1044. F: configs/k2g_hs_evm_defconfig
  1045. F: configs/k2l_hs_evm_defconfig
  1046. F: configs/am65x_hs_evm_r5_defconfig
  1047. F: configs/am65x_hs_evm_a53_defconfig
  1048. F: configs/j721e_hs_evm_r5_defconfig
  1049. F: configs/j721e_hs_evm_a72_defconfig
  1050. TQ GROUP
  1051. #M: Martin Krause <martin.krause@tq-systems.de>
  1052. S: Orphaned (Since 2016-02)
  1053. T: git git://git.denx.de/u-boot-tq-group.git
  1054. TEE
  1055. M: Jens Wiklander <jens.wiklander@linaro.org>
  1056. S: Maintained
  1057. F: drivers/tee/
  1058. F: include/tee.h
  1059. F: include/tee/
  1060. TEE-lib
  1061. M: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
  1062. S: Maintained
  1063. F: lib/optee
  1064. UBI
  1065. M: Kyungmin Park <kmpark@infradead.org>
  1066. M: Heiko Schocher <hs@denx.de>
  1067. S: Maintained
  1068. T: git https://source.denx.de/u-boot/custodians/u-boot-ubi.git
  1069. F: drivers/mtd/ubi/
  1070. UFS
  1071. M: Faiz Abbas <faiz_abbas@ti.com>
  1072. S: Maintained
  1073. F: drivers/ufs/
  1074. USB
  1075. M: Marek Vasut <marex@denx.de>
  1076. S: Maintained
  1077. T: git https://source.denx.de/u-boot/custodians/u-boot-usb.git
  1078. F: drivers/usb/
  1079. F: common/usb.c
  1080. F: common/usb_kbd.c
  1081. F: include/usb.h
  1082. USB xHCI
  1083. M: Bin Meng <bmeng.cn@gmail.com>
  1084. S: Maintained
  1085. T: git https://source.denx.de/u-boot/custodians/u-boot-usb.git topic-xhci
  1086. F: drivers/usb/host/xhci*
  1087. F: include/usb/xhci.h
  1088. VIDEO
  1089. M: Anatolij Gustschin <agust@denx.de>
  1090. S: Maintained
  1091. T: git https://source.denx.de/u-boot/custodians/u-boot-video.git
  1092. F: drivers/video/
  1093. F: common/lcd*.c
  1094. F: include/lcd*.h
  1095. F: include/video*.h
  1096. VirtIO
  1097. M: Bin Meng <bmeng.cn@gmail.com>
  1098. S: Maintained
  1099. F: drivers/virtio/
  1100. F: cmd/virtio.c
  1101. F: include/config/virtio/
  1102. F: include/config/virtio.h
  1103. F: include/config/cmd/virtio.h
  1104. F: include/virtio*.h
  1105. F: test/dm/virtio.c
  1106. F: doc/develop/driver-model/virtio.rst
  1107. X86
  1108. M: Simon Glass <sjg@chromium.org>
  1109. M: Bin Meng <bmeng.cn@gmail.com>
  1110. S: Maintained
  1111. T: git https://source.denx.de/u-boot/custodians/u-boot-x86.git
  1112. F: arch/x86/
  1113. F: cmd/x86/
  1114. XEN
  1115. M: Anastasiia Lukianenko <anastasiia_lukianenko@epam.com>
  1116. M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
  1117. S: Maintained
  1118. F: arch/arm/cpu/armv8/xen/
  1119. F: arch/arm/include/asm/xen.h
  1120. F: arch/arm/include/asm/xen/
  1121. F: cmd/pvblock.c
  1122. F: drivers/serial/serial_xen.c
  1123. F: drivers/xen/
  1124. F: include/pvblock.h
  1125. F: include/xen/
  1126. F: include/xen.h
  1127. F: lib/sscanf.c
  1128. F: test/lib/sscanf.c
  1129. XTENSA
  1130. M: Max Filippov <jcmvbkbc@gmail.com>
  1131. S: Maintained
  1132. F: arch/xtensa/
  1133. THE REST
  1134. M: Tom Rini <trini@konsulko.com>
  1135. L: u-boot@lists.denx.de
  1136. Q: http://patchwork.ozlabs.org/project/uboot/list/
  1137. S: Maintained
  1138. T: git https://source.denx.de/u-boot/u-boot.git
  1139. F: configs/tools-only_defconfig
  1140. F: *
  1141. F: */