xref: /openbmc/linux/MAINTAINERS (revision 32a2e6ab)
1List of maintainers and how to submit kernel changes
2====================================================
3
4Please try to follow the guidelines below.  This will make things
5easier on the maintainers.  Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
8Tips for patch submitters
9-------------------------
10
111.	Always *test* your changes, however small, on at least 4 or
12	5 people, preferably many more.
13
142.	Try to release a few ALPHA test versions to the net. Announce
15	them onto the kernel channel and await results. This is especially
16	important for device drivers, because often that's the only way
17	you will find things like the fact version 3 firmware needs
18	a magic fix you didn't know about, or some clown changed the
19	chips on a board and not its name.  (Don't laugh!  Look at the
20	SMC etherpower for that.)
21
223.	Make sure your changes compile correctly in multiple
23	configurations. In particular check that changes work both as a
24	module and built into the kernel.
25
264.	When you are happy with a change make it generally available for
27	testing and await feedback.
28
295.	Make a patch available to the relevant maintainer in the list. Use
30	``diff -u`` to make the patch easy to merge. Be prepared to get your
31	changes sent back with seemingly silly requests about formatting
32	and variable names.  These aren't as silly as they seem. One
33	job the maintainers (and especially Linus) do is to keep things
34	looking the same. Sometimes this means that the clever hack in
35	your driver to get around a problem actually needs to become a
36	generalized kernel feature ready for next time.
37
38	PLEASE check your patch with the automated style checker
39	(scripts/checkpatch.pl) to catch trivial style violations.
40	See Documentation/process/coding-style.rst for guidance here.
41
42	PLEASE CC: the maintainers and mailing lists that are generated
43	by ``scripts/get_maintainer.pl.`` The results returned by the
44	script will be best if you have git installed and are making
45	your changes in a branch derived from Linus' latest git tree.
46	See Documentation/process/submitting-patches.rst for details.
47
48	PLEASE try to include any credit lines you want added with the
49	patch. It avoids people being missed off by mistake and makes
50	it easier to know who wants adding and who doesn't.
51
52	PLEASE document known bugs. If it doesn't work for everything
53	or does something very odd once a month document it.
54
55	PLEASE remember that submissions must be made under the terms
56	of the Linux Foundation certificate of contribution and should
57	include a Signed-off-by: line.  The current version of this
58	"Developer's Certificate of Origin" (DCO) is listed in the file
59	Documentation/process/submitting-patches.rst.
60
616.	Make sure you have the right to send any changes you make. If you
62	do changes at work you may find your employer owns the patch
63	not you.
64
657.	When sending security related changes or reports to a maintainer
66	please Cc: security@kernel.org, especially if the maintainer
67	does not respond. Please keep in mind that the security team is
68	a small set of people who can be efficient only when working on
69	verified bugs. Please only Cc: this list when you have identified
70	that the bug would present a short-term risk to other users if it
71	were publicly disclosed. For example, reports of address leaks do
72	not represent an immediate threat and are better handled publicly,
73	and ideally, should come with a patch proposal. Please do not send
74	automated reports to this list either. Such bugs will be handled
75	better and faster in the usual public places. See
76	Documentation/process/security-bugs.rst for details.
77
788.	Happy hacking.
79
80Descriptions of section entries and preferred order
81---------------------------------------------------
82
83	M: *Mail* patches to: FullName <address@domain>
84	R: Designated *Reviewer*: FullName <address@domain>
85	   These reviewers should be CCed on patches.
86	L: *Mailing list* that is relevant to this area
87	S: *Status*, one of the following:
88	   Supported:	Someone is actually paid to look after this.
89	   Maintained:	Someone actually looks after it.
90	   Odd Fixes:	It has a maintainer but they don't have time to do
91			much other than throw the odd patch in. See below..
92	   Orphan:	No current maintainer [but maybe you could take the
93			role as you write your new code].
94	   Obsolete:	Old code. Something tagged obsolete generally means
95			it has been replaced by a better system and you
96			should be using that.
97	W: *Web-page* with status/info
98	Q: *Patchwork* web based patch tracking system site
99	B: URI for where to file *bugs*. A web-page with detailed bug
100	   filing info, a direct bug tracker link, or a mailto: URI.
101	C: URI for *chat* protocol, server and channel where developers
102	   usually hang out, for example irc://server/channel.
103	P: Subsystem Profile document for more details submitting
104	   patches to the given subsystem. This is either an in-tree file,
105	   or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106	   for details.
107	T: *SCM* tree type and location.
108	   Type is one of: git, hg, quilt, stgit, topgit
109	F: *Files* and directories wildcard patterns.
110	   A trailing slash includes all files and subdirectory files.
111	   F:	drivers/net/	all files in and below drivers/net
112	   F:	drivers/net/*	all files in drivers/net, but not below
113	   F:	*/net/*		all files in "any top level directory"/net
114	   One pattern per line.  Multiple F: lines acceptable.
115	X: *Excluded* files and directories that are NOT maintained, same
116	   rules as F:. Files exclusions are tested before file matches.
117	   Can be useful for excluding a specific subdirectory, for instance:
118	   F:	net/
119	   X:	net/ipv6/
120	   matches all files in and below net excluding net/ipv6/
121	N: Files and directories *Regex* patterns.
122	   N:	[^a-z]tegra	all files whose path contains tegra
123	                        (not including files like integrator)
124	   One pattern per line.  Multiple N: lines acceptable.
125	   scripts/get_maintainer.pl has different behavior for files that
126	   match F: pattern and matches of N: patterns.  By default,
127	   get_maintainer will not look at git log history when an F: pattern
128	   match occurs.  When an N: match occurs, git log history is used
129	   to also notify the people that have git commit signatures.
130	K: *Content regex* (perl extended) pattern match in a patch or file.
131	   For instance:
132	   K: of_get_profile
133	      matches patches or files that contain "of_get_profile"
134	   K: \b(printk|pr_(info|err))\b
135	      matches patches or files that contain one or more of the words
136	      printk, pr_info or pr_err
137	   One regex pattern per line.  Multiple K: lines acceptable.
138
139Maintainers List
140----------------
141
142.. note:: When reading this list, please look for the most precise areas
143          first. When adding to this list, please keep the entries in
144          alphabetical order.
145
1463C59X NETWORK DRIVER
147M:	Steffen Klassert <klassert@kernel.org>
148L:	netdev@vger.kernel.org
149S:	Odd Fixes
150F:	Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151F:	drivers/net/ethernet/3com/3c59x.c
152
1533CR990 NETWORK DRIVER
154M:	David Dillow <dave@thedillows.org>
155L:	netdev@vger.kernel.org
156S:	Maintained
157F:	drivers/net/ethernet/3com/typhoon*
158
1593WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160M:	Adam Radford <aradford@gmail.com>
161L:	linux-scsi@vger.kernel.org
162S:	Supported
163W:	http://www.lsi.com
164F:	drivers/scsi/3w-*
165
16653C700 AND 53C700-66 SCSI DRIVER
167M:	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168L:	linux-scsi@vger.kernel.org
169S:	Maintained
170F:	drivers/scsi/53c700*
171
1726LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173M:	Alexander Aring <alex.aring@gmail.com>
174L:	linux-bluetooth@vger.kernel.org
175L:	linux-wpan@vger.kernel.org
176S:	Maintained
177F:	Documentation/networking/6lowpan.rst
178F:	include/net/6lowpan.h
179F:	net/6lowpan/
180
1816PACK NETWORK DRIVER FOR AX.25
182M:	Andreas Koensgen <ajk@comnets.uni-bremen.de>
183L:	linux-hams@vger.kernel.org
184S:	Maintained
185F:	drivers/net/hamradio/6pack.c
186
187802.11 (including CFG80211/NL80211)
188M:	Johannes Berg <johannes@sipsolutions.net>
189L:	linux-wireless@vger.kernel.org
190S:	Maintained
191W:	https://wireless.wiki.kernel.org/
192Q:	https://patchwork.kernel.org/project/linux-wireless/list/
193T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
194T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
195F:	Documentation/driver-api/80211/cfg80211.rst
196F:	Documentation/networking/regulatory.rst
197F:	include/linux/ieee80211.h
198F:	include/net/cfg80211.h
199F:	include/net/ieee80211_radiotap.h
200F:	include/net/iw_handler.h
201F:	include/net/wext.h
202F:	include/uapi/linux/nl80211.h
203F:	include/uapi/linux/wireless.h
204F:	net/wireless/
205
2068169 10/100/1000 GIGABIT ETHERNET DRIVER
207M:	Heiner Kallweit <hkallweit1@gmail.com>
208M:	nic_swsd@realtek.com
209L:	netdev@vger.kernel.org
210S:	Maintained
211F:	drivers/net/ethernet/realtek/r8169*
212
2138250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
215L:	linux-serial@vger.kernel.org
216S:	Maintained
217T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218F:	drivers/tty/serial/8250*
219F:	include/linux/serial_8250.h
220
2218390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222L:	netdev@vger.kernel.org
223S:	Orphan / Obsolete
224F:	drivers/net/ethernet/8390/
225
2269P FILE SYSTEM
227M:	Eric Van Hensbergen <ericvh@kernel.org>
228M:	Latchesar Ionkov <lucho@ionkov.net>
229M:	Dominique Martinet <asmadeus@codewreck.org>
230R:	Christian Schoenebeck <linux_oss@crudebyte.com>
231L:	v9fs@lists.linux.dev
232S:	Maintained
233W:	http://github.com/v9fs
234Q:	http://patchwork.kernel.org/project/v9fs-devel/list/
235T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236T:	git git://github.com/martinetd/linux.git
237F:	Documentation/filesystems/9p.rst
238F:	fs/9p/
239F:	include/net/9p/
240F:	include/trace/events/9p.h
241F:	include/uapi/linux/virtio_9p.h
242F:	net/9p/
243
244A64FX DIAG DRIVER
245M:	Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
246S:	Supported
247F:	drivers/soc/fujitsu/a64fx-diag.c
248
249A8293 MEDIA DRIVER
250M:	Antti Palosaari <crope@iki.fi>
251L:	linux-media@vger.kernel.org
252S:	Maintained
253W:	https://linuxtv.org
254W:	http://palosaari.fi/linux/
255Q:	http://patchwork.linuxtv.org/project/linux-media/list/
256T:	git git://linuxtv.org/anttip/media_tree.git
257F:	drivers/media/dvb-frontends/a8293*
258
259AACRAID SCSI RAID DRIVER
260M:	Adaptec OEM Raid Solutions <aacraid@microsemi.com>
261L:	linux-scsi@vger.kernel.org
262S:	Supported
263W:	http://www.adaptec.com/
264F:	Documentation/scsi/aacraid.rst
265F:	drivers/scsi/aacraid/
266
267AB8500 BATTERY AND CHARGER DRIVERS
268M:	Linus Walleij <linus.walleij@linaro.org>
269F:	Documentation/devicetree/bindings/power/supply/*ab8500*
270F:	drivers/power/supply/*ab8500*
271
272ABI/API
273L:	linux-api@vger.kernel.org
274F:	include/linux/syscalls.h
275F:	kernel/sys_ni.c
276X:	include/uapi/
277X:	arch/*/include/uapi/
278
279ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
280M:	Hans de Goede <hdegoede@redhat.com>
281L:	linux-hwmon@vger.kernel.org
282S:	Maintained
283F:	drivers/hwmon/abituguru.c
284
285ABIT UGURU 3 HARDWARE MONITOR DRIVER
286M:	Alistair John Strachan <alistair@devzero.co.uk>
287L:	linux-hwmon@vger.kernel.org
288S:	Maintained
289F:	drivers/hwmon/abituguru3.c
290
291ACCES 104-DIO-48E GPIO DRIVER
292M:	William Breathitt Gray <william.gray@linaro.org>
293L:	linux-gpio@vger.kernel.org
294S:	Maintained
295F:	drivers/gpio/gpio-104-dio-48e.c
296
297ACCES 104-IDI-48 GPIO DRIVER
298M:	William Breathitt Gray <william.gray@linaro.org>
299L:	linux-gpio@vger.kernel.org
300S:	Maintained
301F:	drivers/gpio/gpio-104-idi-48.c
302
303ACCES 104-IDIO-16 GPIO DRIVER
304M:	William Breathitt Gray <william.gray@linaro.org>
305L:	linux-gpio@vger.kernel.org
306S:	Maintained
307F:	drivers/gpio/gpio-104-idio-16.c
308
309ACCES 104-QUAD-8 DRIVER
310M:	William Breathitt Gray <william.gray@linaro.org>
311L:	linux-iio@vger.kernel.org
312S:	Maintained
313F:	drivers/counter/104-quad-8.c
314
315ACCES IDIO-16 GPIO LIBRARY
316M:	William Breathitt Gray <william.gray@linaro.org>
317L:	linux-gpio@vger.kernel.org
318S:	Maintained
319F:	drivers/gpio/gpio-idio-16.c
320F:	drivers/gpio/gpio-idio-16.h
321
322ACCES PCI-IDIO-16 GPIO DRIVER
323M:	William Breathitt Gray <william.gray@linaro.org>
324L:	linux-gpio@vger.kernel.org
325S:	Maintained
326F:	drivers/gpio/gpio-pci-idio-16.c
327
328ACCES PCIe-IDIO-24 GPIO DRIVER
329M:	William Breathitt Gray <william.gray@linaro.org>
330L:	linux-gpio@vger.kernel.org
331S:	Maintained
332F:	drivers/gpio/gpio-pcie-idio-24.c
333
334ACENIC DRIVER
335M:	Jes Sorensen <jes@trained-monkey.org>
336L:	linux-acenic@sunsite.dk
337S:	Maintained
338F:	drivers/net/ethernet/alteon/acenic*
339
340ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
341M:	Peter Kaestle <peter@piie.net>
342L:	platform-driver-x86@vger.kernel.org
343S:	Maintained
344W:	http://piie.net/?section=acerhdf
345F:	drivers/platform/x86/acerhdf.c
346
347ACER WMI LAPTOP EXTRAS
348M:	"Lee, Chun-Yi" <jlee@suse.com>
349L:	platform-driver-x86@vger.kernel.org
350S:	Maintained
351F:	drivers/platform/x86/acer-wmi.c
352
353ACPI
354M:	"Rafael J. Wysocki" <rafael@kernel.org>
355R:	Len Brown <lenb@kernel.org>
356L:	linux-acpi@vger.kernel.org
357S:	Supported
358Q:	https://patchwork.kernel.org/project/linux-acpi/list/
359B:	https://bugzilla.kernel.org
360T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
361F:	Documentation/ABI/testing/configfs-acpi
362F:	Documentation/ABI/testing/sysfs-bus-acpi
363F:	Documentation/firmware-guide/acpi/
364F:	arch/x86/kernel/acpi/
365F:	arch/x86/pci/acpi.c
366F:	drivers/acpi/
367F:	drivers/pci/*/*acpi*
368F:	drivers/pci/*acpi*
369F:	drivers/pnp/pnpacpi/
370F:	include/acpi/
371F:	include/linux/acpi.h
372F:	include/linux/fwnode.h
373F:	tools/power/acpi/
374
375ACPI APEI
376M:	"Rafael J. Wysocki" <rafael@kernel.org>
377R:	Len Brown <lenb@kernel.org>
378R:	James Morse <james.morse@arm.com>
379R:	Tony Luck <tony.luck@intel.com>
380R:	Borislav Petkov <bp@alien8.de>
381L:	linux-acpi@vger.kernel.org
382F:	drivers/acpi/apei/
383
384ACPI COMPONENT ARCHITECTURE (ACPICA)
385M:	Robert Moore <robert.moore@intel.com>
386M:	"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
387L:	linux-acpi@vger.kernel.org
388L:	acpica-devel@lists.linuxfoundation.org
389S:	Supported
390W:	https://acpica.org/
391W:	https://github.com/acpica/acpica/
392Q:	https://patchwork.kernel.org/project/linux-acpi/list/
393B:	https://bugzilla.kernel.org
394B:	https://bugs.acpica.org
395T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
396F:	drivers/acpi/acpica/
397F:	include/acpi/
398F:	tools/power/acpi/
399
400ACPI FOR ARM64 (ACPI/arm64)
401M:	Lorenzo Pieralisi <lpieralisi@kernel.org>
402M:	Hanjun Guo <guohanjun@huawei.com>
403M:	Sudeep Holla <sudeep.holla@arm.com>
404L:	linux-acpi@vger.kernel.org
405L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
406S:	Maintained
407F:	drivers/acpi/arm64
408
409ACPI SERIAL MULTI INSTANTIATE DRIVER
410M:	Hans de Goede <hdegoede@redhat.com>
411L:	platform-driver-x86@vger.kernel.org
412S:	Maintained
413F:	drivers/platform/x86/serial-multi-instantiate.c
414
415ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
416M:	Sudeep Holla <sudeep.holla@arm.com>
417L:	linux-acpi@vger.kernel.org
418S:	Supported
419F:	drivers/mailbox/pcc.c
420
421ACPI PMIC DRIVERS
422M:	"Rafael J. Wysocki" <rafael@kernel.org>
423M:	Len Brown <lenb@kernel.org>
424R:	Andy Shevchenko <andy@kernel.org>
425R:	Mika Westerberg <mika.westerberg@linux.intel.com>
426L:	linux-acpi@vger.kernel.org
427S:	Supported
428Q:	https://patchwork.kernel.org/project/linux-acpi/list/
429B:	https://bugzilla.kernel.org
430T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
431F:	drivers/acpi/pmic/
432
433ACPI THERMAL DRIVER
434M:	Rafael J. Wysocki <rafael@kernel.org>
435R:	Zhang Rui <rui.zhang@intel.com>
436L:	linux-acpi@vger.kernel.org
437S:	Supported
438B:	https://bugzilla.kernel.org
439F:	drivers/acpi/*thermal*
440
441ACPI VIOT DRIVER
442M:	Jean-Philippe Brucker <jean-philippe@linaro.org>
443L:	linux-acpi@vger.kernel.org
444L:	iommu@lists.linux.dev
445S:	Maintained
446F:	drivers/acpi/viot.c
447F:	include/linux/acpi_viot.h
448
449ACPI WMI DRIVER
450L:	platform-driver-x86@vger.kernel.org
451S:	Orphan
452F:	drivers/platform/x86/wmi.c
453F:	include/uapi/linux/wmi.h
454
455ACRN HYPERVISOR SERVICE MODULE
456M:	Fei Li <fei1.li@intel.com>
457L:	acrn-dev@lists.projectacrn.org (subscribers-only)
458S:	Supported
459W:	https://projectacrn.org
460F:	Documentation/virt/acrn/
461F:	drivers/virt/acrn/
462F:	include/uapi/linux/acrn.h
463
464AD1889 ALSA SOUND DRIVER
465L:	linux-parisc@vger.kernel.org
466S:	Maintained
467W:	https://parisc.wiki.kernel.org/index.php/AD1889
468F:	sound/pci/ad1889.*
469
470AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
471M:	Mugilraj Dhavachelvan <dmugil2000@gmail.com>
472L:	linux-iio@vger.kernel.org
473S:	Supported
474F:	drivers/iio/potentiometer/ad5110.c
475
476AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
477M:	Michael Hennerich <michael.hennerich@analog.com>
478S:	Supported
479W:	http://wiki.analog.com/AD5254
480W:	https://ez.analog.com/linux-software-drivers
481F:	drivers/misc/ad525x_dpot.c
482
483AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
484M:	Michael Hennerich <michael.hennerich@analog.com>
485S:	Supported
486W:	http://wiki.analog.com/AD5398
487W:	https://ez.analog.com/linux-software-drivers
488F:	drivers/regulator/ad5398.c
489
490AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
491M:	Michael Hennerich <michael.hennerich@analog.com>
492S:	Supported
493W:	http://wiki.analog.com/AD7142
494W:	https://ez.analog.com/linux-software-drivers
495F:	drivers/input/misc/ad714x.c
496
497AD7877 TOUCHSCREEN DRIVER
498M:	Michael Hennerich <michael.hennerich@analog.com>
499S:	Supported
500W:	http://wiki.analog.com/AD7877
501W:	https://ez.analog.com/linux-software-drivers
502F:	drivers/input/touchscreen/ad7877.c
503
504AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
505M:	Michael Hennerich <michael.hennerich@analog.com>
506S:	Supported
507W:	http://wiki.analog.com/AD7879
508W:	https://ez.analog.com/linux-software-drivers
509F:	drivers/input/touchscreen/ad7879.c
510
511ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
512M:	Jiri Kosina <jikos@kernel.org>
513S:	Maintained
514
515ADF7242 IEEE 802.15.4 RADIO DRIVER
516M:	Michael Hennerich <michael.hennerich@analog.com>
517L:	linux-wpan@vger.kernel.org
518S:	Supported
519W:	https://wiki.analog.com/ADF7242
520W:	https://ez.analog.com/linux-software-drivers
521F:	Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
522F:	drivers/net/ieee802154/adf7242.c
523
524ADM1025 HARDWARE MONITOR DRIVER
525M:	Jean Delvare <jdelvare@suse.com>
526L:	linux-hwmon@vger.kernel.org
527S:	Maintained
528F:	Documentation/hwmon/adm1025.rst
529F:	drivers/hwmon/adm1025.c
530
531ADM1029 HARDWARE MONITOR DRIVER
532M:	Corentin Labbe <clabbe.montjoie@gmail.com>
533L:	linux-hwmon@vger.kernel.org
534S:	Maintained
535F:	drivers/hwmon/adm1029.c
536
537ADM8211 WIRELESS DRIVER
538L:	linux-wireless@vger.kernel.org
539S:	Orphan
540W:	https://wireless.wiki.kernel.org/
541F:	drivers/net/wireless/admtek/adm8211.*
542
543ADP1653 FLASH CONTROLLER DRIVER
544M:	Sakari Ailus <sakari.ailus@iki.fi>
545L:	linux-media@vger.kernel.org
546S:	Maintained
547F:	drivers/media/i2c/adp1653.c
548F:	include/media/i2c/adp1653.h
549
550ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
551M:	Michael Hennerich <michael.hennerich@analog.com>
552S:	Supported
553W:	http://wiki.analog.com/ADP5520
554W:	https://ez.analog.com/linux-software-drivers
555F:	drivers/gpio/gpio-adp5520.c
556F:	drivers/input/keyboard/adp5520-keys.c
557F:	drivers/leds/leds-adp5520.c
558F:	drivers/mfd/adp5520.c
559F:	drivers/video/backlight/adp5520_bl.c
560
561ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
562M:	Michael Hennerich <michael.hennerich@analog.com>
563S:	Supported
564W:	http://wiki.analog.com/ADP5588
565W:	https://ez.analog.com/linux-software-drivers
566F:	Documentation/devicetree/bindings/input/adi,adp5588.yaml
567F:	drivers/input/keyboard/adp5588-keys.c
568
569ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
570M:	Michael Hennerich <michael.hennerich@analog.com>
571S:	Supported
572W:	http://wiki.analog.com/ADP8860
573W:	https://ez.analog.com/linux-software-drivers
574F:	drivers/video/backlight/adp8860_bl.c
575
576ADT746X FAN DRIVER
577M:	Colin Leroy <colin@colino.net>
578S:	Maintained
579F:	drivers/macintosh/therm_adt746x.c
580
581ADT7475 HARDWARE MONITOR DRIVER
582M:	Jean Delvare <jdelvare@suse.com>
583L:	linux-hwmon@vger.kernel.org
584S:	Maintained
585F:	Documentation/hwmon/adt7475.rst
586F:	drivers/hwmon/adt7475.c
587
588ADVANSYS SCSI DRIVER
589M:	Matthew Wilcox <willy@infradead.org>
590M:	Hannes Reinecke <hare@suse.com>
591L:	linux-scsi@vger.kernel.org
592S:	Maintained
593F:	Documentation/scsi/advansys.rst
594F:	drivers/scsi/advansys.c
595
596ADVANTECH SWBTN DRIVER
597M:	Andrea Ho <Andrea.Ho@advantech.com.tw>
598L:	platform-driver-x86@vger.kernel.org
599S:	Maintained
600F:	drivers/platform/x86/adv_swbutton.c
601
602ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
603M:	Lucas Stankus <lucas.p.stankus@gmail.com>
604S:	Supported
605F:	Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
606F:	drivers/iio/accel/adxl313*
607
608ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
609M:	Michael Hennerich <michael.hennerich@analog.com>
610S:	Supported
611W:	http://wiki.analog.com/ADXL345
612W:	https://ez.analog.com/linux-software-drivers
613F:	Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
614F:	drivers/input/misc/adxl34x.c
615
616ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
617M:	Puranjay Mohan <puranjay12@gmail.com>
618L:	linux-iio@vger.kernel.org
619S:	Supported
620F:	Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
621F:	drivers/iio/accel/adxl355.h
622F:	drivers/iio/accel/adxl355_core.c
623F:	drivers/iio/accel/adxl355_i2c.c
624F:	drivers/iio/accel/adxl355_spi.c
625
626ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
627M:	Cosmin Tanislav <cosmin.tanislav@analog.com>
628L:	linux-iio@vger.kernel.org
629S:	Supported
630W:	https://ez.analog.com/linux-software-drivers
631F:	Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
632F:	drivers/iio/accel/adxl367*
633
634ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
635M:	Michael Hennerich <michael.hennerich@analog.com>
636S:	Supported
637W:	https://ez.analog.com/linux-software-drivers
638F:	Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
639F:	drivers/iio/accel/adxl372.c
640F:	drivers/iio/accel/adxl372_i2c.c
641F:	drivers/iio/accel/adxl372_spi.c
642
643AF9013 MEDIA DRIVER
644M:	Antti Palosaari <crope@iki.fi>
645L:	linux-media@vger.kernel.org
646S:	Maintained
647W:	https://linuxtv.org
648W:	http://palosaari.fi/linux/
649Q:	http://patchwork.linuxtv.org/project/linux-media/list/
650T:	git git://linuxtv.org/anttip/media_tree.git
651F:	drivers/media/dvb-frontends/af9013*
652
653AF9033 MEDIA DRIVER
654M:	Antti Palosaari <crope@iki.fi>
655L:	linux-media@vger.kernel.org
656S:	Maintained
657W:	https://linuxtv.org
658W:	http://palosaari.fi/linux/
659Q:	http://patchwork.linuxtv.org/project/linux-media/list/
660T:	git git://linuxtv.org/anttip/media_tree.git
661F:	drivers/media/dvb-frontends/af9033*
662
663AFFS FILE SYSTEM
664M:	David Sterba <dsterba@suse.com>
665L:	linux-fsdevel@vger.kernel.org
666S:	Odd Fixes
667F:	Documentation/filesystems/affs.rst
668F:	fs/affs/
669
670AFS FILESYSTEM
671M:	David Howells <dhowells@redhat.com>
672M:	Marc Dionne <marc.dionne@auristor.com>
673L:	linux-afs@lists.infradead.org
674S:	Supported
675W:	https://www.infradead.org/~dhowells/kafs/
676F:	Documentation/filesystems/afs.rst
677F:	fs/afs/
678F:	include/trace/events/afs.h
679
680AGPGART DRIVER
681M:	David Airlie <airlied@redhat.com>
682L:	dri-devel@lists.freedesktop.org
683S:	Maintained
684T:	git git://anongit.freedesktop.org/drm/drm
685F:	drivers/char/agp/
686F:	include/linux/agp*
687F:	include/uapi/linux/agp*
688
689AHA152X SCSI DRIVER
690M:	"Juergen E. Fischer" <fischer@norbit.de>
691L:	linux-scsi@vger.kernel.org
692S:	Maintained
693F:	drivers/scsi/aha152x*
694F:	drivers/scsi/pcmcia/aha152x*
695
696AIC7XXX / AIC79XX SCSI DRIVER
697M:	Hannes Reinecke <hare@suse.com>
698L:	linux-scsi@vger.kernel.org
699S:	Maintained
700F:	drivers/scsi/aic7xxx/
701
702AIMSLAB FM RADIO RECEIVER DRIVER
703M:	Hans Verkuil <hverkuil@xs4all.nl>
704L:	linux-media@vger.kernel.org
705S:	Maintained
706W:	https://linuxtv.org
707T:	git git://linuxtv.org/media_tree.git
708F:	drivers/media/radio/radio-aimslab*
709
710AIO
711M:	Benjamin LaHaise <bcrl@kvack.org>
712L:	linux-aio@kvack.org
713S:	Supported
714F:	fs/aio.c
715F:	include/linux/*aio*.h
716
717AIRSPY MEDIA DRIVER
718M:	Antti Palosaari <crope@iki.fi>
719L:	linux-media@vger.kernel.org
720S:	Maintained
721W:	https://linuxtv.org
722W:	http://palosaari.fi/linux/
723Q:	http://patchwork.linuxtv.org/project/linux-media/list/
724T:	git git://linuxtv.org/anttip/media_tree.git
725F:	drivers/media/usb/airspy/
726
727ALACRITECH GIGABIT ETHERNET DRIVER
728M:	Lino Sanfilippo <LinoSanfilippo@gmx.de>
729S:	Maintained
730F:	drivers/net/ethernet/alacritech/*
731
732ALCATEL SPEEDTOUCH USB DRIVER
733M:	Duncan Sands <duncan.sands@free.fr>
734L:	linux-usb@vger.kernel.org
735S:	Maintained
736W:	http://www.linux-usb.org/SpeedTouch/
737F:	drivers/usb/atm/speedtch.c
738F:	drivers/usb/atm/usbatm.c
739
740ALCHEMY AU1XX0 MMC DRIVER
741M:	Manuel Lauss <manuel.lauss@gmail.com>
742S:	Maintained
743F:	drivers/mmc/host/au1xmmc.c
744
745ALI1563 I2C DRIVER
746M:	Rudolf Marek <r.marek@assembler.cz>
747L:	linux-i2c@vger.kernel.org
748S:	Maintained
749F:	Documentation/i2c/busses/i2c-ali1563.rst
750F:	drivers/i2c/busses/i2c-ali1563.c
751
752ALIBABA ELASTIC RDMA DRIVER
753M:	Cheng Xu <chengyou@linux.alibaba.com>
754M:	Kai Shen <kaishen@linux.alibaba.com>
755L:	linux-rdma@vger.kernel.org
756S:	Supported
757F:	drivers/infiniband/hw/erdma
758F:	include/uapi/rdma/erdma-abi.h
759
760ALIBABA PMU DRIVER
761M:	Shuai Xue <xueshuai@linux.alibaba.com>
762S:	Supported
763F:	Documentation/admin-guide/perf/alibaba_pmu.rst
764F:	drivers/perf/alibaba_uncore_drw_pmu.c
765
766ALIENWARE WMI DRIVER
767L:	Dell.Client.Kernel@dell.com
768S:	Maintained
769F:	drivers/platform/x86/dell/alienware-wmi.c
770
771ALLEGRO DVT VIDEO IP CORE DRIVER
772M:	Michael Tretter <m.tretter@pengutronix.de>
773R:	Pengutronix Kernel Team <kernel@pengutronix.de>
774L:	linux-media@vger.kernel.org
775S:	Maintained
776F:	Documentation/devicetree/bindings/media/allegro,al5e.yaml
777F:	drivers/media/platform/allegro-dvt/
778
779ALLWINNER A10 CSI DRIVER
780M:	Maxime Ripard <mripard@kernel.org>
781L:	linux-media@vger.kernel.org
782S:	Maintained
783T:	git git://linuxtv.org/media_tree.git
784F:	Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
785F:	drivers/media/platform/sunxi/sun4i-csi/
786
787ALLWINNER A31 CSI DRIVER
788M:	Yong Deng <yong.deng@magewell.com>
789M:	Paul Kocialkowski <paul.kocialkowski@bootlin.com>
790L:	linux-media@vger.kernel.org
791S:	Maintained
792T:	git git://linuxtv.org/media_tree.git
793F:	Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
794F:	drivers/media/platform/sunxi/sun6i-csi/
795
796ALLWINNER A31 ISP DRIVER
797M:	Paul Kocialkowski <paul.kocialkowski@bootlin.com>
798L:	linux-media@vger.kernel.org
799S:	Maintained
800T:	git git://linuxtv.org/media_tree.git
801F:	Documentation/devicetree/bindings/media/allwinner,sun6i-a31-isp.yaml
802F:	drivers/staging/media/sunxi/sun6i-isp/
803F:	drivers/staging/media/sunxi/sun6i-isp/uapi/sun6i-isp-config.h
804
805ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
806M:	Paul Kocialkowski <paul.kocialkowski@bootlin.com>
807L:	linux-media@vger.kernel.org
808S:	Maintained
809T:	git git://linuxtv.org/media_tree.git
810F:	Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
811F:	drivers/media/platform/sunxi/sun6i-mipi-csi2/
812
813ALLWINNER CPUFREQ DRIVER
814M:	Yangtao Li <tiny.windzz@gmail.com>
815L:	linux-pm@vger.kernel.org
816S:	Maintained
817F:	Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
818F:	drivers/cpufreq/sun50i-cpufreq-nvmem.c
819
820ALLWINNER CRYPTO DRIVERS
821M:	Corentin Labbe <clabbe.montjoie@gmail.com>
822L:	linux-crypto@vger.kernel.org
823S:	Maintained
824F:	drivers/crypto/allwinner/
825
826ALLWINNER HARDWARE SPINLOCK SUPPORT
827M:	Wilken Gottwalt <wilken.gottwalt@posteo.net>
828S:	Maintained
829F:	Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
830F:	drivers/hwspinlock/sun6i_hwspinlock.c
831
832ALLWINNER THERMAL DRIVER
833M:	Vasily Khoruzhick <anarsoul@gmail.com>
834M:	Yangtao Li <tiny.windzz@gmail.com>
835L:	linux-pm@vger.kernel.org
836S:	Maintained
837F:	Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
838F:	drivers/thermal/sun8i_thermal.c
839
840ALLWINNER VPU DRIVER
841M:	Maxime Ripard <mripard@kernel.org>
842M:	Paul Kocialkowski <paul.kocialkowski@bootlin.com>
843L:	linux-media@vger.kernel.org
844S:	Maintained
845F:	drivers/staging/media/sunxi/cedrus/
846
847ALLWINNER DMIC DRIVERS
848M:	Ban Tao <fengzheng923@gmail.com>
849L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
850S:	Maintained
851F:	Documentation/devicetree/bindings/sound/allwinner,sun50i-h6-dmic.yaml
852F:	sound/soc/sunxi/sun50i-dmic.c
853
854ALPHA PORT
855M:	Richard Henderson <richard.henderson@linaro.org>
856M:	Ivan Kokshaysky <ink@jurassic.park.msu.ru>
857M:	Matt Turner <mattst88@gmail.com>
858L:	linux-alpha@vger.kernel.org
859S:	Odd Fixes
860F:	arch/alpha/
861
862ALPS PS/2 TOUCHPAD DRIVER
863R:	Pali Rohár <pali@kernel.org>
864F:	drivers/input/mouse/alps.*
865
866ALTERA I2C CONTROLLER DRIVER
867M:	Thor Thayer <thor.thayer@linux.intel.com>
868S:	Maintained
869F:	Documentation/devicetree/bindings/i2c/i2c-altera.txt
870F:	drivers/i2c/busses/i2c-altera.c
871
872ALTERA MAILBOX DRIVER
873M:	Mun Yew Tham <mun.yew.tham@intel.com>
874S:	Maintained
875F:	drivers/mailbox/mailbox-altera.c
876
877ALTERA MSGDMA IP CORE DRIVER
878M:	Olivier Dautricourt <olivierdautricourt@gmail.com>
879R:	Stefan Roese <sr@denx.de>
880L:	dmaengine@vger.kernel.org
881S:	Odd Fixes
882F:	Documentation/devicetree/bindings/dma/altr,msgdma.yaml
883F:	drivers/dma/altera-msgdma.c
884
885ALTERA PIO DRIVER
886M:	Mun Yew Tham <mun.yew.tham@intel.com>
887L:	linux-gpio@vger.kernel.org
888S:	Maintained
889F:	drivers/gpio/gpio-altera.c
890
891ALTERA SYSTEM MANAGER DRIVER
892M:	Thor Thayer <thor.thayer@linux.intel.com>
893S:	Maintained
894F:	drivers/mfd/altera-sysmgr.c
895F:	include/linux/mfd/altera-sysmgr.h
896
897ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
898M:	Thor Thayer <thor.thayer@linux.intel.com>
899S:	Maintained
900F:	drivers/gpio/gpio-altera-a10sr.c
901F:	drivers/mfd/altera-a10sr.c
902F:	drivers/reset/reset-a10sr.c
903F:	include/dt-bindings/reset/altr,rst-mgr-a10sr.h
904F:	include/linux/mfd/altera-a10sr.h
905
906ALTERA TRIPLE SPEED ETHERNET DRIVER
907M:	Joyce Ooi <joyce.ooi@intel.com>
908L:	netdev@vger.kernel.org
909S:	Maintained
910F:	drivers/net/ethernet/altera/
911
912ALTERA TSE PCS
913M:	Maxime Chevallier <maxime.chevallier@bootlin.com>
914L:	netdev@vger.kernel.org
915S:	Supported
916F:	drivers/net/pcs/pcs-altera-tse.c
917F:	include/linux/pcs-altera-tse.h
918
919ALTERA UART/JTAG UART SERIAL DRIVERS
920M:	Tobias Klauser <tklauser@distanz.ch>
921L:	linux-serial@vger.kernel.org
922S:	Maintained
923F:	drivers/tty/serial/altera_jtaguart.c
924F:	drivers/tty/serial/altera_uart.c
925F:	include/linux/altera_jtaguart.h
926F:	include/linux/altera_uart.h
927
928AMAZON ANNAPURNA LABS FIC DRIVER
929M:	Talel Shenhar <talel@amazon.com>
930S:	Maintained
931F:	Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
932F:	drivers/irqchip/irq-al-fic.c
933
934AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
935M:	Talel Shenhar <talel@amazon.com>
936M:	Talel Shenhar <talelshenhar@gmail.com>
937S:	Maintained
938F:	Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
939F:	drivers/edac/al_mc_edac.c
940
941AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
942M:	Talel Shenhar <talel@amazon.com>
943S:	Maintained
944F:	Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
945F:	drivers/thermal/thermal_mmio.c
946
947AMAZON ETHERNET DRIVERS
948M:	Shay Agroskin <shayagr@amazon.com>
949M:	Arthur Kiyanovski <akiyano@amazon.com>
950R:	David Arinzon <darinzon@amazon.com>
951R:	Noam Dagan <ndagan@amazon.com>
952R:	Saeed Bishara <saeedb@amazon.com>
953L:	netdev@vger.kernel.org
954S:	Supported
955F:	Documentation/networking/device_drivers/ethernet/amazon/ena.rst
956F:	drivers/net/ethernet/amazon/
957
958AMAZON RDMA EFA DRIVER
959M:	Gal Pressman <galpress@amazon.com>
960R:	Yossi Leybovich <sleybo@amazon.com>
961L:	linux-rdma@vger.kernel.org
962S:	Supported
963Q:	https://patchwork.kernel.org/project/linux-rdma/list/
964F:	drivers/infiniband/hw/efa/
965F:	include/uapi/rdma/efa-abi.h
966
967AMD CDX BUS DRIVER
968M:	Nipun Gupta <nipun.gupta@amd.com>
969M:	Nikhil Agarwal <nikhil.agarwal@amd.com>
970S:	Maintained
971F:	Documentation/devicetree/bindings/bus/xlnx,versal-net-cdx.yaml
972F:	drivers/cdx/*
973F:	include/linux/cdx/*
974
975AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
976M:	Tom Lendacky <thomas.lendacky@amd.com>
977M:	John Allen <john.allen@amd.com>
978L:	linux-crypto@vger.kernel.org
979S:	Supported
980F:	drivers/crypto/ccp/
981F:	include/linux/ccp.h
982
983AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
984M:	Brijesh Singh <brijesh.singh@amd.com>
985M:	Tom Lendacky <thomas.lendacky@amd.com>
986L:	linux-crypto@vger.kernel.org
987S:	Supported
988F:	drivers/crypto/ccp/sev*
989F:	include/uapi/linux/psp-sev.h
990
991AMD DISPLAY CORE
992M:	Harry Wentland <harry.wentland@amd.com>
993M:	Leo Li <sunpeng.li@amd.com>
994M:	Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
995L:	amd-gfx@lists.freedesktop.org
996S:	Supported
997T:	git https://gitlab.freedesktop.org/agd5f/linux.git
998F:	drivers/gpu/drm/amd/display/
999
1000AMD FAM15H PROCESSOR POWER MONITORING DRIVER
1001M:	Huang Rui <ray.huang@amd.com>
1002L:	linux-hwmon@vger.kernel.org
1003S:	Supported
1004F:	Documentation/hwmon/fam15h_power.rst
1005F:	drivers/hwmon/fam15h_power.c
1006
1007AMD FCH GPIO DRIVER
1008M:	Enrico Weigelt, metux IT consult <info@metux.net>
1009L:	linux-gpio@vger.kernel.org
1010S:	Maintained
1011F:	drivers/gpio/gpio-amd-fch.c
1012F:	include/linux/platform_data/gpio/gpio-amd-fch.h
1013
1014AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
1015L:	linux-geode@lists.infradead.org (moderated for non-subscribers)
1016S:	Orphan
1017F:	drivers/usb/gadget/udc/amd5536udc.*
1018
1019AMD GEODE PROCESSOR/CHIPSET SUPPORT
1020M:	Andres Salomon <dilinger@queued.net>
1021L:	linux-geode@lists.infradead.org (moderated for non-subscribers)
1022S:	Supported
1023W:	http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
1024F:	arch/x86/include/asm/geode.h
1025F:	drivers/char/hw_random/geode-rng.c
1026F:	drivers/crypto/geode*
1027F:	drivers/video/fbdev/geode/
1028
1029AMD IOMMU (AMD-VI)
1030M:	Joerg Roedel <joro@8bytes.org>
1031R:	Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1032L:	iommu@lists.linux.dev
1033S:	Maintained
1034T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
1035F:	drivers/iommu/amd/
1036F:	include/linux/amd-iommu.h
1037
1038AMD KFD
1039M:	Felix Kuehling <Felix.Kuehling@amd.com>
1040L:	amd-gfx@lists.freedesktop.org
1041S:	Supported
1042T:	git https://gitlab.freedesktop.org/agd5f/linux.git
1043F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
1044F:	drivers/gpu/drm/amd/amdkfd/
1045F:	drivers/gpu/drm/amd/include/cik_structs.h
1046F:	drivers/gpu/drm/amd/include/kgd_kfd_interface.h
1047F:	drivers/gpu/drm/amd/include/v9_structs.h
1048F:	drivers/gpu/drm/amd/include/vi_structs.h
1049F:	include/uapi/linux/kfd_ioctl.h
1050F:	include/uapi/linux/kfd_sysfs.h
1051
1052AMD PDS CORE DRIVER
1053M:	Shannon Nelson <shannon.nelson@amd.com>
1054M:	Brett Creeley <brett.creeley@amd.com>
1055L:	netdev@vger.kernel.org
1056S:	Supported
1057F:	Documentation/networking/device_drivers/ethernet/amd/pds_core.rst
1058F:	drivers/net/ethernet/amd/pds_core/
1059F:	include/linux/pds/
1060
1061AMD SPI DRIVER
1062M:	Sanjay R Mehta <sanju.mehta@amd.com>
1063S:	Maintained
1064F:	drivers/spi/spi-amd.c
1065
1066AMD MP2 I2C DRIVER
1067M:	Elie Morisse <syniurge@gmail.com>
1068M:	Shyam Sundar S K <shyam-sundar.s-k@amd.com>
1069L:	linux-i2c@vger.kernel.org
1070S:	Maintained
1071F:	drivers/i2c/busses/i2c-amd-mp2*
1072
1073AMD PMC DRIVER
1074M:	Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1075L:	platform-driver-x86@vger.kernel.org
1076S:	Maintained
1077F:	drivers/platform/x86/amd/pmc.c
1078
1079AMD PMF DRIVER
1080M:	Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1081L:	platform-driver-x86@vger.kernel.org
1082S:	Maintained
1083F:	Documentation/ABI/testing/sysfs-amd-pmf
1084F:	drivers/platform/x86/amd/pmf/
1085
1086AMD HSMP DRIVER
1087M:	Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1088R:	Carlos Bilbao <carlos.bilbao@amd.com>
1089L:	platform-driver-x86@vger.kernel.org
1090S:	Maintained
1091F:	Documentation/arch/x86/amd_hsmp.rst
1092F:	arch/x86/include/asm/amd_hsmp.h
1093F:	arch/x86/include/uapi/asm/amd_hsmp.h
1094F:	drivers/platform/x86/amd/hsmp.c
1095
1096AMD POWERPLAY AND SWSMU
1097M:	Evan Quan <evan.quan@amd.com>
1098L:	amd-gfx@lists.freedesktop.org
1099S:	Supported
1100T:	git https://gitlab.freedesktop.org/agd5f/linux.git
1101F:	drivers/gpu/drm/amd/pm/
1102
1103AMD PSTATE DRIVER
1104M:	Huang Rui <ray.huang@amd.com>
1105L:	linux-pm@vger.kernel.org
1106S:	Supported
1107F:	Documentation/admin-guide/pm/amd-pstate.rst
1108F:	drivers/cpufreq/amd-pstate*
1109F:	include/linux/amd-pstate.h
1110F:	tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1111
1112AMD PTDMA DRIVER
1113M:	Sanjay R Mehta <sanju.mehta@amd.com>
1114L:	dmaengine@vger.kernel.org
1115S:	Maintained
1116F:	drivers/dma/ptdma/
1117
1118AMD SEATTLE DEVICE TREE SUPPORT
1119M:	Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1120M:	Tom Lendacky <thomas.lendacky@amd.com>
1121S:	Supported
1122F:	arch/arm64/boot/dts/amd/
1123
1124AMD XGBE DRIVER
1125M:	"Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>
1126L:	netdev@vger.kernel.org
1127S:	Supported
1128F:	arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1129F:	drivers/net/ethernet/amd/xgbe/
1130
1131AMD SENSOR FUSION HUB DRIVER
1132M:	Basavaraj Natikar <basavaraj.natikar@amd.com>
1133L:	linux-input@vger.kernel.org
1134S:	Maintained
1135F:	Documentation/hid/amd-sfh*
1136F:	drivers/hid/amd-sfh-hid/
1137
1138AMLOGIC DDR PMU DRIVER
1139M:	Jiucheng Xu <jiucheng.xu@amlogic.com>
1140L:	linux-amlogic@lists.infradead.org
1141S:	Supported
1142W:	http://www.amlogic.com
1143F:	Documentation/admin-guide/perf/meson-ddr-pmu.rst
1144F:	Documentation/devicetree/bindings/perf/amlogic,g12-ddr-pmu.yaml
1145F:	drivers/perf/amlogic/
1146F:	include/soc/amlogic/
1147
1148AMPHION VPU CODEC V4L2 DRIVER
1149M:	Ming Qian <ming.qian@nxp.com>
1150M:	Shijie Qin <shijie.qin@nxp.com>
1151M:	Zhou Peng <eagle.zhou@nxp.com>
1152L:	linux-media@vger.kernel.org
1153S:	Maintained
1154F:	Documentation/devicetree/bindings/media/amphion,vpu.yaml
1155F:	drivers/media/platform/amphion/
1156
1157AMS AS73211 DRIVER
1158M:	Christian Eggers <ceggers@arri.de>
1159L:	linux-iio@vger.kernel.org
1160S:	Maintained
1161F:	Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1162F:	drivers/iio/light/as73211.c
1163
1164AMT (Automatic Multicast Tunneling)
1165M:	Taehee Yoo <ap420073@gmail.com>
1166L:	netdev@vger.kernel.org
1167S:	Maintained
1168T:	git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1169T:	git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1170F:	drivers/net/amt.c
1171
1172ANALOG DEVICES INC AD4130 DRIVER
1173M:	Cosmin Tanislav <cosmin.tanislav@analog.com>
1174L:	linux-iio@vger.kernel.org
1175S:	Supported
1176W:	http://ez.analog.com/community/linux-device-drivers
1177F:	Documentation/ABI/testing/sysfs-bus-iio-adc-ad4130
1178F:	Documentation/devicetree/bindings/iio/adc/adi,ad4130.yaml
1179F:	drivers/iio/adc/ad4130.c
1180
1181ANALOG DEVICES INC AD7192 DRIVER
1182M:	Alexandru Tachici <alexandru.tachici@analog.com>
1183L:	linux-iio@vger.kernel.org
1184S:	Supported
1185W:	https://ez.analog.com/linux-software-drivers
1186F:	Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1187F:	drivers/iio/adc/ad7192.c
1188
1189ANALOG DEVICES INC AD7292 DRIVER
1190M:	Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1191L:	linux-iio@vger.kernel.org
1192S:	Supported
1193W:	https://ez.analog.com/linux-software-drivers
1194F:	Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1195F:	drivers/iio/adc/ad7292.c
1196
1197ANALOG DEVICES INC AD3552R DRIVER
1198M:	Nuno Sá <nuno.sa@analog.com>
1199L:	linux-iio@vger.kernel.org
1200S:	Supported
1201W:	https://ez.analog.com/linux-software-drivers
1202F:	Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1203F:	drivers/iio/dac/ad3552r.c
1204
1205ANALOG DEVICES INC AD7293 DRIVER
1206M:	Antoniu Miclaus <antoniu.miclaus@analog.com>
1207L:	linux-iio@vger.kernel.org
1208S:	Supported
1209W:	https://ez.analog.com/linux-software-drivers
1210F:	Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1211F:	drivers/iio/dac/ad7293.c
1212
1213ANALOG DEVICES INC AD7768-1 DRIVER
1214M:	Michael Hennerich <Michael.Hennerich@analog.com>
1215L:	linux-iio@vger.kernel.org
1216S:	Supported
1217W:	https://ez.analog.com/linux-software-drivers
1218F:	Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1219F:	drivers/iio/adc/ad7768-1.c
1220
1221ANALOG DEVICES INC AD7780 DRIVER
1222M:	Michael Hennerich <Michael.Hennerich@analog.com>
1223M:	Renato Lui Geh <renatogeh@gmail.com>
1224L:	linux-iio@vger.kernel.org
1225S:	Supported
1226W:	https://ez.analog.com/linux-software-drivers
1227F:	Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1228F:	drivers/iio/adc/ad7780.c
1229
1230ANALOG DEVICES INC AD74115 DRIVER
1231M:	Cosmin Tanislav <cosmin.tanislav@analog.com>
1232L:	linux-iio@vger.kernel.org
1233S:	Supported
1234W:	http://ez.analog.com/community/linux-device-drivers
1235F:	Documentation/devicetree/bindings/iio/addac/adi,ad74115.yaml
1236F:	drivers/iio/addac/ad74115.c
1237
1238ANALOG DEVICES INC AD74413R DRIVER
1239M:	Cosmin Tanislav <cosmin.tanislav@analog.com>
1240L:	linux-iio@vger.kernel.org
1241S:	Supported
1242W:	https://ez.analog.com/linux-software-drivers
1243F:	Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1244F:	drivers/iio/addac/ad74413r.c
1245F:	include/dt-bindings/iio/addac/adi,ad74413r.h
1246
1247ANALOG DEVICES INC ADA4250 DRIVER
1248M:	Antoniu Miclaus <antoniu.miclaus@analog.com>
1249L:	linux-iio@vger.kernel.org
1250S:	Supported
1251W:	https://ez.analog.com/linux-software-drivers
1252F:	Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1253F:	drivers/iio/amplifiers/ada4250.c
1254
1255ANALOG DEVICES INC ADF4377 DRIVER
1256M:	Antoniu Miclaus <antoniu.miclaus@analog.com>
1257L:	linux-iio@vger.kernel.org
1258S:	Supported
1259W:	https://ez.analog.com/linux-software-drivers
1260F:	Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml
1261F:	drivers/iio/frequency/adf4377.c
1262
1263ANALOG DEVICES INC ADGS1408 DRIVER
1264M:	Mircea Caprioru <mircea.caprioru@analog.com>
1265S:	Supported
1266F:	Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1267F:	drivers/mux/adgs1408.c
1268
1269ANALOG DEVICES INC ADIN DRIVER
1270M:	Michael Hennerich <michael.hennerich@analog.com>
1271L:	netdev@vger.kernel.org
1272S:	Supported
1273W:	https://ez.analog.com/linux-software-drivers
1274F:	Documentation/devicetree/bindings/net/adi,adin.yaml
1275F:	drivers/net/phy/adin.c
1276
1277ANALOG DEVICES INC ADIS DRIVER LIBRARY
1278M:	Nuno Sa <nuno.sa@analog.com>
1279L:	linux-iio@vger.kernel.org
1280S:	Supported
1281F:	drivers/iio/imu/adis.c
1282F:	drivers/iio/imu/adis_buffer.c
1283F:	drivers/iio/imu/adis_trigger.c
1284F:	include/linux/iio/imu/adis.h
1285
1286ANALOG DEVICES INC ADIS16460 DRIVER
1287M:	Dragos Bogdan <dragos.bogdan@analog.com>
1288L:	linux-iio@vger.kernel.org
1289S:	Supported
1290W:	https://ez.analog.com/linux-software-drivers
1291F:	Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1292F:	drivers/iio/imu/adis16460.c
1293
1294ANALOG DEVICES INC ADIS16475 DRIVER
1295M:	Nuno Sa <nuno.sa@analog.com>
1296L:	linux-iio@vger.kernel.org
1297W:	https://ez.analog.com/linux-software-drivers
1298S:	Supported
1299F:	drivers/iio/imu/adis16475.c
1300F:	Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1301
1302ANALOG DEVICES INC ADM1177 DRIVER
1303M:	Michael Hennerich <Michael.Hennerich@analog.com>
1304L:	linux-hwmon@vger.kernel.org
1305S:	Supported
1306W:	https://ez.analog.com/linux-software-drivers
1307F:	Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1308F:	drivers/hwmon/adm1177.c
1309
1310ANALOG DEVICES INC ADMV1013 DRIVER
1311M:	Antoniu Miclaus <antoniu.miclaus@analog.com>
1312L:	linux-iio@vger.kernel.org
1313S:	Supported
1314W:	https://ez.analog.com/linux-software-drivers
1315F:	Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1316F:	drivers/iio/frequency/admv1013.c
1317
1318ANALOG DEVICES INC ADMV8818 DRIVER
1319M:	Antoniu Miclaus <antoniu.miclaus@analog.com>
1320L:	linux-iio@vger.kernel.org
1321S:	Supported
1322W:	https://ez.analog.com/linux-software-drivers
1323F:	Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1324F:	drivers/iio/filter/admv8818.c
1325
1326ANALOG DEVICES INC ADMV1014 DRIVER
1327M:	Antoniu Miclaus <antoniu.miclaus@analog.com>
1328L:	linux-iio@vger.kernel.org
1329S:	Supported
1330W:	https://ez.analog.com/linux-software-drivers
1331F:	Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1332F:	drivers/iio/frequency/admv1014.c
1333
1334ANALOG DEVICES INC ADP5061 DRIVER
1335M:	Michael Hennerich <Michael.Hennerich@analog.com>
1336L:	linux-pm@vger.kernel.org
1337S:	Supported
1338W:	https://ez.analog.com/linux-software-drivers
1339F:	drivers/power/supply/adp5061.c
1340
1341ANALOG DEVICES INC ADRF6780 DRIVER
1342M:	Antoniu Miclaus <antoniu.miclaus@analog.com>
1343L:	linux-iio@vger.kernel.org
1344S:	Supported
1345W:	https://ez.analog.com/linux-software-drivers
1346F:	Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1347F:	drivers/iio/frequency/adrf6780.c
1348
1349ANALOG DEVICES INC ADV7180 DRIVER
1350M:	Lars-Peter Clausen <lars@metafoo.de>
1351L:	linux-media@vger.kernel.org
1352S:	Supported
1353W:	https://ez.analog.com/linux-software-drivers
1354F:	drivers/media/i2c/adv7180.c
1355F:	Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1356
1357ANALOG DEVICES INC ADV748X DRIVER
1358M:	Kieran Bingham <kieran.bingham@ideasonboard.com>
1359L:	linux-media@vger.kernel.org
1360S:	Maintained
1361F:	Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1362F:	drivers/media/i2c/adv748x/*
1363
1364ANALOG DEVICES INC ADV7511 DRIVER
1365M:	Hans Verkuil <hverkuil-cisco@xs4all.nl>
1366L:	linux-media@vger.kernel.org
1367S:	Maintained
1368F:	drivers/media/i2c/adv7511*
1369
1370ANALOG DEVICES INC ADV7604 DRIVER
1371M:	Hans Verkuil <hverkuil-cisco@xs4all.nl>
1372L:	linux-media@vger.kernel.org
1373S:	Maintained
1374F:	drivers/media/i2c/adv7604*
1375F:	Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1376
1377ANALOG DEVICES INC ADV7842 DRIVER
1378M:	Hans Verkuil <hverkuil-cisco@xs4all.nl>
1379L:	linux-media@vger.kernel.org
1380S:	Maintained
1381F:	drivers/media/i2c/adv7842*
1382
1383ANALOG DEVICES INC ADXRS290 DRIVER
1384M:	Nishant Malpani <nish.malpani25@gmail.com>
1385L:	linux-iio@vger.kernel.org
1386S:	Supported
1387F:	drivers/iio/gyro/adxrs290.c
1388F:	Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1389
1390ANALOG DEVICES INC ASOC CODEC DRIVERS
1391M:	Lars-Peter Clausen <lars@metafoo.de>
1392M:	Nuno Sá <nuno.sa@analog.com>
1393L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
1394S:	Supported
1395W:	http://wiki.analog.com/
1396W:	https://ez.analog.com/linux-software-drivers
1397F:	sound/soc/codecs/ad1*
1398F:	sound/soc/codecs/ad7*
1399F:	sound/soc/codecs/adau*
1400F:	sound/soc/codecs/adav*
1401F:	sound/soc/codecs/sigmadsp.*
1402F:	sound/soc/codecs/ssm*
1403
1404ANALOG DEVICES INC DMA DRIVERS
1405M:	Lars-Peter Clausen <lars@metafoo.de>
1406S:	Supported
1407W:	https://ez.analog.com/linux-software-drivers
1408F:	drivers/dma/dma-axi-dmac.c
1409
1410ANALOG DEVICES INC IIO DRIVERS
1411M:	Lars-Peter Clausen <lars@metafoo.de>
1412M:	Michael Hennerich <Michael.Hennerich@analog.com>
1413S:	Supported
1414W:	http://wiki.analog.com/
1415W:	https://ez.analog.com/linux-software-drivers
1416F:	Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1417F:	Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1418F:	Documentation/devicetree/bindings/iio/*/adi,*
1419F:	Documentation/devicetree/bindings/iio/adc/lltc,ltc2496.yaml
1420F:	Documentation/devicetree/bindings/iio/adc/lltc,ltc2497.yaml
1421F:	drivers/iio/*/ad*
1422F:	drivers/iio/adc/ltc249*
1423F:	drivers/iio/amplifiers/hmc425a.c
1424F:	drivers/staging/iio/*/ad*
1425X:	drivers/iio/*/adjd*
1426
1427ANALOG DEVICES INC MAX31760 DRIVER
1428M:	Ibrahim Tilki <Ibrahim.Tilki@analog.com>
1429S:	Maintained
1430W:	http://wiki.analog.com/
1431W:	https://ez.analog.com/linux-software-drivers
1432F:	Documentation/devicetree/bindings/hwmon/adi,max31760.yaml
1433F:	Documentation/hwmon/max31760.rst
1434F:	drivers/hwmon/max31760.c
1435
1436ANALOGBITS PLL LIBRARIES
1437M:	Paul Walmsley <paul.walmsley@sifive.com>
1438S:	Supported
1439F:	drivers/clk/analogbits/*
1440F:	include/linux/clk/analogbits*
1441
1442ANDROID DRIVERS
1443M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1444M:	Arve Hjønnevåg <arve@android.com>
1445M:	Todd Kjos <tkjos@android.com>
1446M:	Martijn Coenen <maco@android.com>
1447M:	Joel Fernandes <joel@joelfernandes.org>
1448M:	Christian Brauner <christian@brauner.io>
1449M:	Carlos Llamas <cmllamas@google.com>
1450M:	Suren Baghdasaryan <surenb@google.com>
1451L:	linux-kernel@vger.kernel.org
1452S:	Supported
1453T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1454F:	drivers/android/
1455
1456ANDROID GOLDFISH PIC DRIVER
1457M:	Miodrag Dinic <miodrag.dinic@mips.com>
1458S:	Supported
1459F:	Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1460F:	drivers/irqchip/irq-goldfish-pic.c
1461
1462ANDROID GOLDFISH RTC DRIVER
1463M:	Jiaxun Yang <jiaxun.yang@flygoat.com>
1464S:	Supported
1465F:	Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1466F:	drivers/rtc/rtc-goldfish.c
1467
1468AOA (Apple Onboard Audio) ALSA DRIVER
1469M:	Johannes Berg <johannes@sipsolutions.net>
1470L:	linuxppc-dev@lists.ozlabs.org
1471L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
1472S:	Maintained
1473F:	sound/aoa/
1474
1475APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1476M:	William Breathitt Gray <william.gray@linaro.org>
1477L:	linux-iio@vger.kernel.org
1478S:	Maintained
1479F:	drivers/iio/addac/stx104.c
1480
1481APM DRIVER
1482M:	Jiri Kosina <jikos@kernel.org>
1483S:	Odd fixes
1484T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1485F:	arch/x86/kernel/apm_32.c
1486F:	drivers/char/apm-emulation.c
1487F:	include/linux/apm_bios.h
1488F:	include/uapi/linux/apm_bios.h
1489
1490APPARMOR SECURITY MODULE
1491M:	John Johansen <john.johansen@canonical.com>
1492M:	John Johansen <john@apparmor.net>
1493L:	apparmor@lists.ubuntu.com (moderated for non-subscribers)
1494S:	Supported
1495W:	apparmor.net
1496B:	https://gitlab.com/apparmor/apparmor-kernel
1497C:	irc://irc.oftc.net/apparmor
1498T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1499T:	https://gitlab.com/apparmor/apparmor-kernel.git
1500F:	Documentation/admin-guide/LSM/apparmor.rst
1501F:	security/apparmor/
1502
1503APPLE BCM5974 MULTITOUCH DRIVER
1504M:	Henrik Rydberg <rydberg@bitmath.org>
1505L:	linux-input@vger.kernel.org
1506S:	Odd fixes
1507F:	drivers/input/mouse/bcm5974.c
1508
1509APPLE PCIE CONTROLLER DRIVER
1510M:	Alyssa Rosenzweig <alyssa@rosenzweig.io>
1511M:	Marc Zyngier <maz@kernel.org>
1512L:	linux-pci@vger.kernel.org
1513S:	Maintained
1514F:	drivers/pci/controller/pcie-apple.c
1515
1516APPLE SMC DRIVER
1517M:	Henrik Rydberg <rydberg@bitmath.org>
1518L:	linux-hwmon@vger.kernel.org
1519S:	Odd fixes
1520F:	drivers/hwmon/applesmc.c
1521
1522APPLETALK NETWORK LAYER
1523L:	netdev@vger.kernel.org
1524S:	Odd fixes
1525F:	drivers/net/appletalk/
1526F:	include/linux/atalk.h
1527F:	include/uapi/linux/atalk.h
1528F:	net/appletalk/
1529
1530APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1531M:	Khuong Dinh <khuong@os.amperecomputing.com>
1532S:	Supported
1533F:	arch/arm64/boot/dts/apm/
1534
1535APPLIED MICRO (APM) X-GENE SOC EDAC
1536M:	Khuong Dinh <khuong@os.amperecomputing.com>
1537S:	Supported
1538F:	Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1539F:	drivers/edac/xgene_edac.c
1540
1541APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1542M:	Iyappan Subramanian <iyappan@os.amperecomputing.com>
1543M:	Keyur Chudgar <keyur@os.amperecomputing.com>
1544S:	Supported
1545F:	drivers/net/ethernet/apm/xgene-v2/
1546
1547APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1548M:	Iyappan Subramanian <iyappan@os.amperecomputing.com>
1549M:	Keyur Chudgar <keyur@os.amperecomputing.com>
1550M:	Quan Nguyen <quan@os.amperecomputing.com>
1551S:	Supported
1552F:	Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1553F:	Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1554F:	drivers/net/ethernet/apm/xgene/
1555F:	drivers/net/mdio/mdio-xgene.c
1556
1557APPLIED MICRO (APM) X-GENE SOC PMU
1558M:	Khuong Dinh <khuong@os.amperecomputing.com>
1559S:	Supported
1560F:	Documentation/admin-guide/perf/xgene-pmu.rst
1561F:	Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1562F:	drivers/perf/xgene_pmu.c
1563
1564APTINA CAMERA SENSOR PLL
1565M:	Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1566L:	linux-media@vger.kernel.org
1567S:	Maintained
1568F:	drivers/media/i2c/aptina-pll.*
1569
1570AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1571M:	Aleksa Savic <savicaleksa83@gmail.com>
1572M:	Jack Doan <me@jackdoan.com>
1573L:	linux-hwmon@vger.kernel.org
1574S:	Maintained
1575F:	Documentation/hwmon/aquacomputer_d5next.rst
1576F:	drivers/hwmon/aquacomputer_d5next.c
1577
1578AQUANTIA ETHERNET DRIVER (atlantic)
1579M:	Igor Russkikh <irusskikh@marvell.com>
1580L:	netdev@vger.kernel.org
1581S:	Supported
1582W:	https://www.marvell.com/
1583Q:	https://patchwork.kernel.org/project/netdevbpf/list/
1584F:	Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1585F:	drivers/net/ethernet/aquantia/atlantic/
1586
1587AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1588M:	Egor Pomozov <epomozov@marvell.com>
1589L:	netdev@vger.kernel.org
1590S:	Supported
1591W:	http://www.aquantia.com
1592F:	drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1593
1594AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1595M:	Krzysztof Hałasa <khalasa@piap.pl>
1596L:	linux-media@vger.kernel.org
1597S:	Maintained
1598F:	Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1599F:	drivers/media/i2c/ar0521.c
1600
1601ARASAN NAND CONTROLLER DRIVER
1602M:	Miquel Raynal <miquel.raynal@bootlin.com>
1603M:	Naga Sureshkumar Relli <nagasure@xilinx.com>
1604L:	linux-mtd@lists.infradead.org
1605S:	Maintained
1606F:	Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1607F:	drivers/mtd/nand/raw/arasan-nand-controller.c
1608
1609ARC FRAMEBUFFER DRIVER
1610M:	Jaya Kumar <jayalk@intworks.biz>
1611S:	Maintained
1612F:	drivers/video/fbdev/arcfb.c
1613F:	drivers/video/fbdev/core/fb_defio.c
1614
1615ARC PGU DRM DRIVER
1616M:	Alexey Brodkin <abrodkin@synopsys.com>
1617S:	Supported
1618F:	Documentation/devicetree/bindings/display/snps,arcpgu.txt
1619F:	drivers/gpu/drm/tiny/arcpgu.c
1620
1621ARCNET NETWORK LAYER
1622M:	Michael Grzeschik <m.grzeschik@pengutronix.de>
1623L:	netdev@vger.kernel.org
1624S:	Maintained
1625F:	drivers/net/arcnet/
1626F:	include/uapi/linux/if_arcnet.h
1627
1628ARM ARCHITECTED TIMER DRIVER
1629M:	Mark Rutland <mark.rutland@arm.com>
1630M:	Marc Zyngier <maz@kernel.org>
1631L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1632S:	Maintained
1633F:	arch/arm/include/asm/arch_timer.h
1634F:	arch/arm64/include/asm/arch_timer.h
1635F:	drivers/clocksource/arm_arch_timer.c
1636
1637ARM HDLCD DRM DRIVER
1638M:	Liviu Dudau <liviu.dudau@arm.com>
1639S:	Supported
1640F:	Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1641F:	drivers/gpu/drm/arm/hdlcd_*
1642
1643ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1644M:	Linus Walleij <linus.walleij@linaro.org>
1645L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1646S:	Maintained
1647F:	Documentation/devicetree/bindings/arm/arm,integrator.yaml
1648F:	Documentation/devicetree/bindings/arm/arm,realview.yaml
1649F:	Documentation/devicetree/bindings/arm/arm,versatile.yaml
1650F:	Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1651F:	Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1652F:	Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1653F:	Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1654F:	Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1655F:	Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1656F:	arch/arm/boot/dts/arm-realview-*
1657F:	arch/arm/boot/dts/integrator*
1658F:	arch/arm/boot/dts/versatile*
1659F:	arch/arm/mach-versatile/
1660F:	drivers/bus/arm-integrator-lm.c
1661F:	drivers/clk/versatile/
1662F:	drivers/i2c/busses/i2c-versatile.c
1663F:	drivers/irqchip/irq-versatile-fpga.c
1664F:	drivers/mtd/maps/physmap-versatile.*
1665F:	drivers/power/reset/arm-versatile-reboot.c
1666F:	drivers/soc/versatile/
1667
1668ARM KOMEDA DRM-KMS DRIVER
1669M:	James (Qian) Wang <james.qian.wang@arm.com>
1670M:	Liviu Dudau <liviu.dudau@arm.com>
1671M:	Mihail Atanassov <mihail.atanassov@arm.com>
1672L:	Mali DP Maintainers <malidp@foss.arm.com>
1673S:	Supported
1674T:	git git://anongit.freedesktop.org/drm/drm-misc
1675F:	Documentation/devicetree/bindings/display/arm,komeda.yaml
1676F:	Documentation/gpu/komeda-kms.rst
1677F:	drivers/gpu/drm/arm/display/include/
1678F:	drivers/gpu/drm/arm/display/komeda/
1679
1680ARM MALI PANFROST DRM DRIVER
1681M:	Rob Herring <robh@kernel.org>
1682M:	Tomeu Vizoso <tomeu.vizoso@collabora.com>
1683R:	Steven Price <steven.price@arm.com>
1684R:	Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1685L:	dri-devel@lists.freedesktop.org
1686S:	Supported
1687T:	git git://anongit.freedesktop.org/drm/drm-misc
1688F:	drivers/gpu/drm/panfrost/
1689F:	include/uapi/drm/panfrost_drm.h
1690
1691ARM MALI-DP DRM DRIVER
1692M:	Liviu Dudau <liviu.dudau@arm.com>
1693M:	Brian Starkey <brian.starkey@arm.com>
1694L:	Mali DP Maintainers <malidp@foss.arm.com>
1695S:	Supported
1696T:	git git://anongit.freedesktop.org/drm/drm-misc
1697F:	Documentation/devicetree/bindings/display/arm,malidp.yaml
1698F:	Documentation/gpu/afbc.rst
1699F:	drivers/gpu/drm/arm/
1700
1701ARM MFM AND FLOPPY DRIVERS
1702M:	Ian Molton <spyro@f2s.com>
1703S:	Maintained
1704F:	arch/arm/include/asm/floppy.h
1705F:	arch/arm/mach-rpc/floppydma.S
1706
1707ARM PMU PROFILING AND DEBUGGING
1708M:	Will Deacon <will@kernel.org>
1709M:	Mark Rutland <mark.rutland@arm.com>
1710L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1711S:	Maintained
1712F:	Documentation/devicetree/bindings/arm/pmu.yaml
1713F:	Documentation/devicetree/bindings/perf/
1714F:	arch/arm*/include/asm/hw_breakpoint.h
1715F:	arch/arm*/include/asm/perf_event.h
1716F:	arch/arm*/kernel/hw_breakpoint.c
1717F:	arch/arm*/kernel/perf_*
1718F:	drivers/perf/
1719F:	include/linux/perf/arm_pmu.h
1720
1721ARM PORT
1722M:	Russell King <linux@armlinux.org.uk>
1723L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724S:	Odd Fixes
1725W:	http://www.armlinux.org.uk/
1726T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git
1727F:	arch/arm/
1728X:	arch/arm/boot/dts/
1729
1730ARM PRIMECELL AACI PL041 DRIVER
1731M:	Russell King <linux@armlinux.org.uk>
1732S:	Odd Fixes
1733F:	sound/arm/aaci.*
1734
1735ARM PRIMECELL BUS SUPPORT
1736M:	Russell King <linux@armlinux.org.uk>
1737S:	Odd Fixes
1738F:	drivers/amba/
1739F:	include/linux/amba/bus.h
1740
1741ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1742M:	Miquel Raynal <miquel.raynal@bootlin.com>
1743M:	Naga Sureshkumar Relli <nagasure@xilinx.com>
1744L:	linux-mtd@lists.infradead.org
1745S:	Maintained
1746F:	Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1747F:	drivers/mtd/nand/raw/pl35x-nand-controller.c
1748
1749ARM PRIMECELL PL35X SMC DRIVER
1750M:	Miquel Raynal <miquel.raynal@bootlin.com>
1751M:	Naga Sureshkumar Relli <nagasure@xilinx.com>
1752L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1753S:	Maintained
1754F:	Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
1755F:	drivers/memory/pl353-smc.c
1756
1757ARM PRIMECELL CLCD PL110 DRIVER
1758M:	Russell King <linux@armlinux.org.uk>
1759S:	Odd Fixes
1760F:	drivers/video/fbdev/amba-clcd.*
1761
1762ARM PRIMECELL KMI PL050 DRIVER
1763M:	Russell King <linux@armlinux.org.uk>
1764S:	Odd Fixes
1765F:	drivers/input/serio/ambakmi.*
1766F:	include/linux/amba/kmi.h
1767
1768ARM PRIMECELL MMCI PL180/1 DRIVER
1769M:	Russell King <linux@armlinux.org.uk>
1770S:	Odd Fixes
1771F:	drivers/mmc/host/mmci.*
1772F:	include/linux/amba/mmci.h
1773
1774ARM PRIMECELL SSP PL022 SPI DRIVER
1775M:	Linus Walleij <linus.walleij@linaro.org>
1776L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1777S:	Maintained
1778F:	Documentation/devicetree/bindings/spi/spi-pl022.yaml
1779F:	drivers/spi/spi-pl022.c
1780
1781ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1782M:	Russell King <linux@armlinux.org.uk>
1783S:	Odd Fixes
1784F:	drivers/tty/serial/amba-pl01*.c
1785F:	include/linux/amba/serial.h
1786
1787ARM PRIMECELL VIC PL190/PL192 DRIVER
1788M:	Linus Walleij <linus.walleij@linaro.org>
1789L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1790S:	Maintained
1791F:	Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1792F:	drivers/irqchip/irq-vic.c
1793
1794ARM SMC WATCHDOG DRIVER
1795M:	Julius Werner <jwerner@chromium.org>
1796R:	Evan Benn <evanbenn@chromium.org>
1797S:	Maintained
1798F:	Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1799F:	drivers/watchdog/arm_smc_wdt.c
1800
1801ARM SMMU DRIVERS
1802M:	Will Deacon <will@kernel.org>
1803R:	Robin Murphy <robin.murphy@arm.com>
1804L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805S:	Maintained
1806F:	Documentation/devicetree/bindings/iommu/arm,smmu*
1807F:	drivers/iommu/arm/
1808F:	drivers/iommu/io-pgtable-arm*
1809
1810ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1811M:	Arnd Bergmann <arnd@arndb.de>
1812M:	Olof Johansson <olof@lixom.net>
1813M:	soc@kernel.org
1814L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815S:	Maintained
1816C:	irc://irc.libera.chat/armlinux
1817T:	git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1818F:	arch/arm/boot/dts/Makefile
1819F:	arch/arm64/boot/dts/Makefile
1820
1821ARM SUB-ARCHITECTURES
1822L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1823S:	Maintained
1824C:	irc://irc.libera.chat/armlinux
1825T:	git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1826F:	arch/arm/mach-*/
1827F:	arch/arm/plat-*/
1828
1829ARM/ACTIONS SEMI ARCHITECTURE
1830M:	Andreas Färber <afaerber@suse.de>
1831M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1832L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1833L:	linux-actions@lists.infradead.org (moderated for non-subscribers)
1834S:	Maintained
1835F:	Documentation/devicetree/bindings/arm/actions.yaml
1836F:	Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1837F:	Documentation/devicetree/bindings/dma/owl-dma.yaml
1838F:	Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1839F:	Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1840F:	Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1841F:	Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1842F:	Documentation/devicetree/bindings/pinctrl/actions,*
1843F:	Documentation/devicetree/bindings/power/actions,owl-sps.txt
1844F:	Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1845F:	arch/arm/boot/dts/owl-*
1846F:	arch/arm/mach-actions/
1847F:	arch/arm64/boot/dts/actions/
1848F:	drivers/clk/actions/
1849F:	drivers/clocksource/timer-owl*
1850F:	drivers/dma/owl-dma.c
1851F:	drivers/i2c/busses/i2c-owl.c
1852F:	drivers/irqchip/irq-owl-sirq.c
1853F:	drivers/mmc/host/owl-mmc.c
1854F:	drivers/net/ethernet/actions/
1855F:	drivers/pinctrl/actions/*
1856F:	drivers/soc/actions/
1857F:	include/dt-bindings/power/owl-*
1858F:	include/dt-bindings/reset/actions,*
1859F:	include/linux/soc/actions/
1860N:	owl
1861
1862ARM/Allwinner SoC Clock Support
1863M:	Emilio López <emilio@elopez.com.ar>
1864S:	Maintained
1865F:	drivers/clk/sunxi/
1866
1867ARM/Allwinner sunXi SoC support
1868M:	Chen-Yu Tsai <wens@csie.org>
1869M:	Jernej Skrabec <jernej.skrabec@gmail.com>
1870M:	Samuel Holland <samuel@sholland.org>
1871L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1872S:	Maintained
1873T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1874L:	linux-sunxi@lists.linux.dev
1875F:	arch/arm/mach-sunxi/
1876F:	arch/arm64/boot/dts/allwinner/
1877F:	drivers/clk/sunxi-ng/
1878F:	drivers/pinctrl/sunxi/
1879F:	drivers/soc/sunxi/
1880N:	allwinner
1881N:	sun[x456789]i
1882N:	sun[25]0i
1883
1884ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1885M:	Neil Armstrong <neil.armstrong@linaro.org>
1886M:	Jerome Brunet <jbrunet@baylibre.com>
1887L:	linux-amlogic@lists.infradead.org
1888S:	Maintained
1889F:	Documentation/devicetree/bindings/clock/amlogic*
1890F:	drivers/clk/meson/
1891F:	include/dt-bindings/clock/gxbb*
1892F:	include/dt-bindings/clock/meson*
1893
1894ARM/Amlogic Meson SoC Crypto Drivers
1895M:	Corentin Labbe <clabbe@baylibre.com>
1896L:	linux-crypto@vger.kernel.org
1897L:	linux-amlogic@lists.infradead.org
1898S:	Maintained
1899F:	Documentation/devicetree/bindings/crypto/amlogic*
1900F:	drivers/crypto/amlogic/
1901
1902ARM/Amlogic Meson SoC Sound Drivers
1903M:	Jerome Brunet <jbrunet@baylibre.com>
1904L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
1905S:	Maintained
1906F:	Documentation/devicetree/bindings/sound/amlogic*
1907F:	sound/soc/meson/
1908
1909ARM/Amlogic Meson SoC support
1910M:	Neil Armstrong <neil.armstrong@linaro.org>
1911M:	Kevin Hilman <khilman@baylibre.com>
1912R:	Jerome Brunet <jbrunet@baylibre.com>
1913R:	Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1914L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1915L:	linux-amlogic@lists.infradead.org
1916S:	Maintained
1917W:	http://linux-meson.com/
1918F:	arch/arm/boot/dts/meson*
1919F:	arch/arm/mach-meson/
1920F:	arch/arm64/boot/dts/amlogic/
1921F:	drivers/mmc/host/meson*
1922F:	drivers/pinctrl/meson/
1923F:	drivers/rtc/rtc-meson*
1924F:	drivers/soc/amlogic/
1925N:	meson
1926
1927ARM/Annapurna Labs ALPINE ARCHITECTURE
1928M:	Tsahee Zidenberg <tsahee@annapurnalabs.com>
1929M:	Antoine Tenart <atenart@kernel.org>
1930L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1931S:	Maintained
1932F:	arch/arm/boot/dts/alpine*
1933F:	arch/arm/mach-alpine/
1934F:	arch/arm64/boot/dts/amazon/
1935F:	drivers/*/*alpine*
1936
1937ARM/APPLE MACHINE SUPPORT
1938M:	Hector Martin <marcan@marcan.st>
1939M:	Sven Peter <sven@svenpeter.dev>
1940R:	Alyssa Rosenzweig <alyssa@rosenzweig.io>
1941L:	asahi@lists.linux.dev
1942L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1943S:	Maintained
1944W:	https://asahilinux.org
1945B:	https://github.com/AsahiLinux/linux/issues
1946C:	irc://irc.oftc.net/asahi-dev
1947T:	git https://github.com/AsahiLinux/linux.git
1948F:	Documentation/devicetree/bindings/arm/apple.yaml
1949F:	Documentation/devicetree/bindings/arm/apple/*
1950F:	Documentation/devicetree/bindings/clock/apple,nco.yaml
1951F:	Documentation/devicetree/bindings/cpufreq/apple,cluster-cpufreq.yaml
1952F:	Documentation/devicetree/bindings/dma/apple,admac.yaml
1953F:	Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1954F:	Documentation/devicetree/bindings/interrupt-controller/apple,*
1955F:	Documentation/devicetree/bindings/iommu/apple,dart.yaml
1956F:	Documentation/devicetree/bindings/iommu/apple,sart.yaml
1957F:	Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1958F:	Documentation/devicetree/bindings/net/bluetooth/brcm,bcm4377-bluetooth.yaml
1959F:	Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1960F:	Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1961F:	Documentation/devicetree/bindings/pci/apple,pcie.yaml
1962F:	Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1963F:	Documentation/devicetree/bindings/power/apple*
1964F:	Documentation/devicetree/bindings/pwm/pwm-apple.yaml
1965F:	Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1966F:	arch/arm64/boot/dts/apple/
1967F:	drivers/bluetooth/hci_bcm4377.c
1968F:	drivers/clk/clk-apple-nco.c
1969F:	drivers/cpufreq/apple-soc-cpufreq.c
1970F:	drivers/dma/apple-admac.c
1971F:	drivers/i2c/busses/i2c-pasemi-core.c
1972F:	drivers/i2c/busses/i2c-pasemi-platform.c
1973F:	drivers/iommu/apple-dart.c
1974F:	drivers/iommu/io-pgtable-dart.c
1975F:	drivers/irqchip/irq-apple-aic.c
1976F:	drivers/mailbox/apple-mailbox.c
1977F:	drivers/nvme/host/apple.c
1978F:	drivers/nvmem/apple-efuses.c
1979F:	drivers/pinctrl/pinctrl-apple-gpio.c
1980F:	drivers/pwm/pwm-apple.c
1981F:	drivers/soc/apple/*
1982F:	drivers/watchdog/apple_wdt.c
1983F:	include/dt-bindings/interrupt-controller/apple-aic.h
1984F:	include/dt-bindings/pinctrl/apple.h
1985F:	include/linux/apple-mailbox.h
1986F:	include/linux/soc/apple/*
1987
1988ARM/APPLE MACHINE SOUND DRIVERS
1989M:	Martin Povišer <povik+lin@cutebit.org>
1990L:	asahi@lists.linux.dev
1991L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
1992S:	Maintained
1993F:	Documentation/devicetree/bindings/sound/apple,*
1994F:	sound/soc/apple/*
1995F:	sound/soc/codecs/cs42l83-i2c.c
1996
1997ARM/ARTPEC MACHINE SUPPORT
1998M:	Jesper Nilsson <jesper.nilsson@axis.com>
1999M:	Lars Persson <lars.persson@axis.com>
2000L:	linux-arm-kernel@axis.com
2001S:	Maintained
2002F:	Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
2003F:	arch/arm/boot/dts/artpec6*
2004F:	arch/arm/mach-artpec
2005F:	drivers/clk/axis
2006F:	drivers/crypto/axis
2007F:	drivers/mmc/host/usdhi6rol0.c
2008F:	drivers/pinctrl/pinctrl-artpec*
2009
2010ARM/ASPEED I2C DRIVER
2011M:	Brendan Higgins <brendanhiggins@google.com>
2012R:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
2013R:	Joel Stanley <joel@jms.id.au>
2014L:	linux-i2c@vger.kernel.org
2015L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
2016S:	Maintained
2017F:	Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
2018F:	Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
2019F:	drivers/i2c/busses/i2c-aspeed.c
2020F:	drivers/irqchip/irq-aspeed-i2c-ic.c
2021
2022ARM/ASPEED MACHINE SUPPORT
2023M:	Joel Stanley <joel@jms.id.au>
2024R:	Andrew Jeffery <andrew@aj.id.au>
2025L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2026L:	linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2027S:	Supported
2028Q:	https://patchwork.ozlabs.org/project/linux-aspeed/list/
2029T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
2030F:	Documentation/devicetree/bindings/arm/aspeed/
2031F:	arch/arm/boot/dts/aspeed-*
2032F:	arch/arm/mach-aspeed/
2033N:	aspeed
2034
2035ARM/BITMAIN ARCHITECTURE
2036M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2037L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2038S:	Maintained
2039F:	Documentation/devicetree/bindings/arm/bitmain.yaml
2040F:	Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
2041F:	Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
2042F:	arch/arm64/boot/dts/bitmain/
2043F:	drivers/clk/clk-bm1880.c
2044F:	drivers/pinctrl/pinctrl-bm1880.c
2045
2046ARM/CALXEDA HIGHBANK ARCHITECTURE
2047M:	Andre Przywara <andre.przywara@arm.com>
2048L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2049S:	Maintained
2050F:	arch/arm/boot/dts/ecx-*.dts*
2051F:	arch/arm/boot/dts/highbank.dts
2052F:	arch/arm/mach-highbank/
2053
2054ARM/CAVIUM THUNDER NETWORK DRIVER
2055M:	Sunil Goutham <sgoutham@marvell.com>
2056L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2057S:	Supported
2058F:	drivers/net/ethernet/cavium/thunder/
2059
2060ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
2061M:	Lukasz Majewski <lukma@denx.de>
2062L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2063S:	Maintained
2064F:	arch/arm/mach-ep93xx/ts72xx.c
2065
2066ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
2067M:	Alexander Shiyan <shc_work@mail.ru>
2068L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2069S:	Odd Fixes
2070N:	clps711x
2071
2072ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
2073M:	Lennert Buytenhek <kernel@wantstofly.org>
2074L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2075S:	Maintained
2076
2077ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
2078M:	Hartley Sweeten <hsweeten@visionengravers.com>
2079M:	Alexander Sverdlin <alexander.sverdlin@gmail.com>
2080L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2081S:	Maintained
2082F:	Documentation/devicetree/bindings/iio/adc/cirrus,ep9301-adc.yaml
2083F:	Documentation/devicetree/bindings/sound/cirrus,ep9301-*
2084F:	arch/arm/boot/compressed/misc-ep93xx.h
2085F:	arch/arm/mach-ep93xx/
2086F:	drivers/iio/adc/ep93xx_adc.c
2087
2088ARM/CLKDEV SUPPORT
2089M:	Russell King <linux@armlinux.org.uk>
2090L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2091S:	Maintained
2092T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
2093F:	drivers/clk/clkdev.c
2094
2095ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
2096M:	Baruch Siach <baruch@tkos.co.il>
2097L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2098S:	Maintained
2099F:	arch/arm/boot/dts/cx92755*
2100N:	digicolor
2101
2102ARM/CORESIGHT FRAMEWORK AND DRIVERS
2103M:	Suzuki K Poulose <suzuki.poulose@arm.com>
2104R:	Mike Leach <mike.leach@linaro.org>
2105R:	Leo Yan <leo.yan@linaro.org>
2106L:	coresight@lists.linaro.org (moderated for non-subscribers)
2107L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2108S:	Maintained
2109T:	git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2110F:	Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2111F:	Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2112F:	Documentation/devicetree/bindings/arm/qcom,coresight-*.yaml
2113F:	Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2114F:	Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2115F:	Documentation/trace/coresight/*
2116F:	drivers/hwtracing/coresight/*
2117F:	include/dt-bindings/arm/coresight-cti-dt.h
2118F:	include/linux/coresight*
2119F:	samples/coresight/*
2120F:	tools/perf/tests/shell/coresight/*
2121F:	tools/perf/arch/arm/util/auxtrace.c
2122F:	tools/perf/arch/arm/util/cs-etm.c
2123F:	tools/perf/arch/arm/util/cs-etm.h
2124F:	tools/perf/arch/arm/util/pmu.c
2125F:	tools/perf/util/cs-etm-decoder/*
2126F:	tools/perf/util/cs-etm.*
2127
2128ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2129M:	Hans Ulli Kroll <ulli.kroll@googlemail.com>
2130M:	Linus Walleij <linus.walleij@linaro.org>
2131L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2132S:	Maintained
2133T:	git git://github.com/ulli-kroll/linux.git
2134F:	Documentation/devicetree/bindings/arm/gemini.yaml
2135F:	Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2136F:	Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2137F:	Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2138F:	arch/arm/boot/dts/gemini*
2139F:	arch/arm/mach-gemini/
2140F:	drivers/crypto/gemini/
2141F:	drivers/net/ethernet/cortina/
2142F:	drivers/pinctrl/pinctrl-gemini.c
2143F:	drivers/rtc/rtc-ftrtc010.c
2144
2145ARM/CZ.NIC TURRIS SUPPORT
2146M:	Marek Behún <kabel@kernel.org>
2147S:	Maintained
2148W:	https://www.turris.cz/
2149F:	Documentation/ABI/testing/debugfs-moxtet
2150F:	Documentation/ABI/testing/sysfs-bus-moxtet-devices
2151F:	Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2152F:	Documentation/devicetree/bindings/bus/moxtet.txt
2153F:	Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2154F:	Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2155F:	Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2156F:	Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2157F:	drivers/bus/moxtet.c
2158F:	drivers/firmware/turris-mox-rwtm.c
2159F:	drivers/leds/leds-turris-omnia.c
2160F:	drivers/mailbox/armada-37xx-rwtm-mailbox.c
2161F:	drivers/gpio/gpio-moxtet.c
2162F:	drivers/watchdog/armada_37xx_wdt.c
2163F:	include/dt-bindings/bus/moxtet.h
2164F:	include/linux/armada-37xx-rwtm-mailbox.h
2165F:	include/linux/moxtet.h
2166
2167ARM/FARADAY FA526 PORT
2168M:	Hans Ulli Kroll <ulli.kroll@googlemail.com>
2169L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2170S:	Maintained
2171T:	git git://git.berlios.de/gemini-board
2172F:	arch/arm/mm/*-fa*
2173
2174ARM/FOOTBRIDGE ARCHITECTURE
2175M:	Russell King <linux@armlinux.org.uk>
2176L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2177S:	Maintained
2178W:	http://www.armlinux.org.uk/
2179F:	arch/arm/include/asm/hardware/dec21285.h
2180F:	arch/arm/mach-footbridge/
2181
2182ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2183M:	Shawn Guo <shawnguo@kernel.org>
2184M:	Sascha Hauer <s.hauer@pengutronix.de>
2185R:	Pengutronix Kernel Team <kernel@pengutronix.de>
2186R:	Fabio Estevam <festevam@gmail.com>
2187R:	NXP Linux Team <linux-imx@nxp.com>
2188L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2189S:	Maintained
2190T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2191X:	drivers/media/i2c/
2192F:	arch/arm64/boot/dts/freescale/
2193X:	arch/arm64/boot/dts/freescale/fsl-*
2194X:	arch/arm64/boot/dts/freescale/qoriq-*
2195N:	imx
2196N:	mxs
2197
2198ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2199M:	Shawn Guo <shawnguo@kernel.org>
2200M:	Li Yang <leoyang.li@nxp.com>
2201L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2202S:	Maintained
2203T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2204F:	arch/arm/boot/dts/ls1021a*
2205F:	arch/arm64/boot/dts/freescale/fsl-*
2206F:	arch/arm64/boot/dts/freescale/qoriq-*
2207
2208ARM/FREESCALE VYBRID ARM ARCHITECTURE
2209M:	Shawn Guo <shawnguo@kernel.org>
2210M:	Sascha Hauer <s.hauer@pengutronix.de>
2211R:	Pengutronix Kernel Team <kernel@pengutronix.de>
2212R:	Stefan Agner <stefan@agner.ch>
2213L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2214S:	Maintained
2215T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2216F:	arch/arm/boot/dts/vf*
2217F:	arch/arm/mach-imx/*vf610*
2218
2219ARM/GUMSTIX MACHINE SUPPORT
2220M:	Steve Sakoman <sakoman@gmail.com>
2221L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2222S:	Maintained
2223
2224ARM/HISILICON SOC SUPPORT
2225M:	Wei Xu <xuwei5@hisilicon.com>
2226L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2227S:	Supported
2228W:	http://www.hisilicon.com
2229T:	git https://github.com/hisilicon/linux-hisi.git
2230F:	arch/arm/boot/dts/hi3*
2231F:	arch/arm/boot/dts/hip*
2232F:	arch/arm/boot/dts/hisi*
2233F:	arch/arm/mach-hisi/
2234F:	arch/arm64/boot/dts/hisilicon/
2235
2236ARM/HP JORNADA 7XX MACHINE SUPPORT
2237M:	Kristoffer Ericson <kristoffer.ericson@gmail.com>
2238S:	Maintained
2239W:	www.jlime.com
2240T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2241F:	arch/arm/mach-sa1100/include/mach/jornada720.h
2242F:	arch/arm/mach-sa1100/jornada720.c
2243
2244ARM/HPE GXP ARCHITECTURE
2245M:	Jean-Marie Verdun <verdun@hpe.com>
2246M:	Nick Hawkins <nick.hawkins@hpe.com>
2247S:	Maintained
2248F:	Documentation/hwmon/gxp-fan-ctrl.rst
2249F:	Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2250F:	Documentation/devicetree/bindings/hwmon/hpe,gxp-fan-ctrl.yaml
2251F:	Documentation/devicetree/bindings/i2c/hpe,gxp-i2c.yaml
2252F:	Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2253F:	Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2254F:	arch/arm/boot/dts/hpe-bmc*
2255F:	arch/arm/boot/dts/hpe-gxp*
2256F:	arch/arm/mach-hpe/
2257F:	drivers/clocksource/timer-gxp.c
2258F:	drivers/hwmon/gxp-fan-ctrl.c
2259F:	drivers/i2c/busses/i2c-gxp.c
2260F:	drivers/spi/spi-gxp.c
2261F:	drivers/watchdog/gxp-wdt.c
2262
2263ARM/IGEP MACHINE SUPPORT
2264M:	Enric Balletbo i Serra <eballetbo@gmail.com>
2265M:	Javier Martinez Canillas <javier@dowhile0.org>
2266L:	linux-omap@vger.kernel.org
2267L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2268S:	Maintained
2269F:	arch/arm/boot/dts/omap3-igep*
2270
2271ARM/INTEL IXP4XX ARM ARCHITECTURE
2272M:	Linus Walleij <linusw@kernel.org>
2273M:	Imre Kaloz <kaloz@openwrt.org>
2274M:	Krzysztof Halasa <khalasa@piap.pl>
2275L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2276S:	Maintained
2277F:	Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2278F:	Documentation/devicetree/bindings/memory-controllers/intel,ixp4xx-expansion*
2279F:	Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2280F:	Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2281F:	Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2282F:	arch/arm/boot/dts/intel-ixp*
2283F:	arch/arm/mach-ixp4xx/
2284F:	drivers/bus/intel-ixp4xx-eb.c
2285F:	drivers/clocksource/timer-ixp4xx.c
2286F:	drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c
2287F:	drivers/gpio/gpio-ixp4xx.c
2288F:	drivers/irqchip/irq-ixp4xx.c
2289
2290ARM/INTEL KEEMBAY ARCHITECTURE
2291M:	Paul J. Murphy <paul.j.murphy@intel.com>
2292M:	Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2293S:	Maintained
2294F:	Documentation/devicetree/bindings/arm/intel,keembay.yaml
2295F:	arch/arm64/boot/dts/intel/keembay-evm.dts
2296F:	arch/arm64/boot/dts/intel/keembay-soc.dtsi
2297
2298ARM/INTEL XSC3 (MANZANO) ARM CORE
2299M:	Lennert Buytenhek <kernel@wantstofly.org>
2300L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2301S:	Maintained
2302
2303ARM/LG1K ARCHITECTURE
2304M:	Chanho Min <chanho.min@lge.com>
2305L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2306S:	Maintained
2307F:	arch/arm64/boot/dts/lg/
2308
2309ARM/LPC18XX ARCHITECTURE
2310M:	Vladimir Zapolskiy <vz@mleia.com>
2311L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2312S:	Maintained
2313F:	Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2314F:	arch/arm/boot/dts/lpc43*
2315F:	drivers/i2c/busses/i2c-lpc2k.c
2316F:	drivers/memory/pl172.c
2317F:	drivers/mtd/spi-nor/controllers/nxp-spifi.c
2318F:	drivers/rtc/rtc-lpc24xx.c
2319N:	lpc18xx
2320
2321ARM/LPC32XX SOC SUPPORT
2322M:	Vladimir Zapolskiy <vz@mleia.com>
2323L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2324S:	Maintained
2325T:	git git://github.com/vzapolskiy/linux-lpc32xx.git
2326F:	Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2327F:	arch/arm/boot/dts/lpc32*
2328F:	arch/arm/mach-lpc32xx/
2329F:	drivers/i2c/busses/i2c-pnx.c
2330F:	drivers/net/ethernet/nxp/lpc_eth.c
2331F:	drivers/usb/host/ohci-nxp.c
2332F:	drivers/watchdog/pnx4008_wdt.c
2333N:	lpc32xx
2334
2335ARM/Marvell Dove/MV78xx0/Orion SOC support
2336M:	Andrew Lunn <andrew@lunn.ch>
2337M:	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2338M:	Gregory Clement <gregory.clement@bootlin.com>
2339L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2340S:	Maintained
2341T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2342F:	Documentation/devicetree/bindings/arm/marvell/marvell,dove.txt
2343F:	Documentation/devicetree/bindings/arm/marvell/marvell,orion5x.txt
2344F:	Documentation/devicetree/bindings/soc/dove/
2345F:	arch/arm/boot/dts/dove*
2346F:	arch/arm/boot/dts/orion5x*
2347F:	arch/arm/mach-dove/
2348F:	arch/arm/mach-mv78xx0/
2349F:	arch/arm/mach-orion5x/
2350F:	arch/arm/plat-orion/
2351F:	drivers/soc/dove/
2352
2353ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2354M:	Andrew Lunn <andrew@lunn.ch>
2355M:	Gregory Clement <gregory.clement@bootlin.com>
2356M:	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2357L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2358S:	Maintained
2359T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2360F:	Documentation/devicetree/bindings/arm/marvell/
2361F:	arch/arm/boot/dts/armada*
2362F:	arch/arm/boot/dts/kirkwood*
2363F:	arch/arm/configs/mvebu_*_defconfig
2364F:	arch/arm/mach-mvebu/
2365F:	arch/arm64/boot/dts/marvell/armada*
2366F:	arch/arm64/boot/dts/marvell/cn913*
2367F:	drivers/cpufreq/armada-37xx-cpufreq.c
2368F:	drivers/cpufreq/armada-8k-cpufreq.c
2369F:	drivers/cpufreq/mvebu-cpufreq.c
2370F:	drivers/irqchip/irq-armada-370-xp.c
2371F:	drivers/irqchip/irq-mvebu-*
2372F:	drivers/pinctrl/mvebu/
2373F:	drivers/rtc/rtc-armada38x.c
2374
2375ARM/Mediatek RTC DRIVER
2376M:	Eddie Huang <eddie.huang@mediatek.com>
2377M:	Sean Wang <sean.wang@mediatek.com>
2378L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2379L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2380S:	Maintained
2381F:	Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2382F:	Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2383F:	drivers/rtc/rtc-mt2712.c
2384F:	drivers/rtc/rtc-mt6397.c
2385F:	drivers/rtc/rtc-mt7622.c
2386
2387ARM/Mediatek SoC support
2388M:	Matthias Brugger <matthias.bgg@gmail.com>
2389R:	AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
2390L:	linux-kernel@vger.kernel.org
2391L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2392L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2393S:	Maintained
2394W:	https://mtk.wiki.kernel.org/
2395C:	irc://irc.libera.chat/linux-mediatek
2396F:	arch/arm/boot/dts/mt2*
2397F:	arch/arm/boot/dts/mt6*
2398F:	arch/arm/boot/dts/mt7*
2399F:	arch/arm/boot/dts/mt8*
2400F:	arch/arm/mach-mediatek/
2401F:	arch/arm64/boot/dts/mediatek/
2402F:	drivers/soc/mediatek/
2403N:	mtk
2404N:	mt[2678]
2405K:	mediatek
2406
2407ARM/Mediatek USB3 PHY DRIVER
2408M:	Chunfeng Yun <chunfeng.yun@mediatek.com>
2409L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2410L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2411S:	Maintained
2412F:	Documentation/devicetree/bindings/phy/mediatek,*
2413F:	drivers/phy/mediatek/
2414
2415ARM/Microchip (AT91) SoC support
2416M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2417M:	Alexandre Belloni <alexandre.belloni@bootlin.com>
2418M:	Claudiu Beznea <claudiu.beznea@microchip.com>
2419L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2420S:	Supported
2421W:	http://www.linux4sam.org
2422T:	git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2423F:	arch/arm/boot/dts/at91*.dts
2424F:	arch/arm/boot/dts/at91*.dtsi
2425F:	arch/arm/boot/dts/sama*.dts
2426F:	arch/arm/boot/dts/sama*.dtsi
2427F:	arch/arm/include/debug/at91.S
2428F:	arch/arm/mach-at91/
2429F:	drivers/memory/atmel*
2430F:	drivers/watchdog/sama5d4_wdt.c
2431F:	include/soc/at91/
2432X:	drivers/input/touchscreen/atmel_mxt_ts.c
2433X:	drivers/net/wireless/atmel/
2434N:	at91
2435N:	atmel
2436
2437ARM/Microchip Sparx5 SoC support
2438M:	Lars Povlsen <lars.povlsen@microchip.com>
2439M:	Steen Hegelund <Steen.Hegelund@microchip.com>
2440M:	Daniel Machon <daniel.machon@microchip.com>
2441M:	UNGLinuxDriver@microchip.com
2442L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2443S:	Supported
2444T:	git git://github.com/microchip-ung/linux-upstream.git
2445F:	arch/arm64/boot/dts/microchip/
2446F:	drivers/net/ethernet/microchip/vcap/
2447F:	drivers/pinctrl/pinctrl-microchip-sgpio.c
2448N:	sparx5
2449
2450Microchip Timer Counter Block (TCB) Capture Driver
2451M:	Kamel Bouhara <kamel.bouhara@bootlin.com>
2452L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2453L:	linux-iio@vger.kernel.org
2454S:	Maintained
2455F:	drivers/counter/microchip-tcb-capture.c
2456
2457ARM/MILBEAUT ARCHITECTURE
2458M:	Taichi Sugaya <sugaya.taichi@socionext.com>
2459M:	Takao Orito <orito.takao@socionext.com>
2460L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2461S:	Maintained
2462F:	arch/arm/boot/dts/milbeaut*
2463F:	arch/arm/mach-milbeaut/
2464N:	milbeaut
2465
2466ARM/MStar/Sigmastar Armv7 SoC support
2467M:	Daniel Palmer <daniel@thingy.jp>
2468M:	Romain Perier <romain.perier@gmail.com>
2469L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2470S:	Maintained
2471W:	http://linux-chenxing.org/
2472T:	git git://github.com/linux-chenxing/linux.git
2473F:	Documentation/devicetree/bindings/arm/mstar/*
2474F:	Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2475F:	Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2476F:	arch/arm/boot/dts/mstar-*
2477F:	arch/arm/mach-mstar/
2478F:	drivers/clk/mstar/
2479F:	drivers/clocksource/timer-msc313e.c
2480F:	drivers/gpio/gpio-msc313.c
2481F:	drivers/rtc/rtc-msc313.c
2482F:	drivers/watchdog/msc313e_wdt.c
2483F:	include/dt-bindings/clock/mstar-*
2484F:	include/dt-bindings/gpio/msc313-gpio.h
2485
2486ARM/NOMADIK/Ux500 ARCHITECTURES
2487M:	Linus Walleij <linus.walleij@linaro.org>
2488L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2489S:	Maintained
2490T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2491F:	Documentation/devicetree/bindings/arm/ste-*
2492F:	Documentation/devicetree/bindings/arm/ux500.yaml
2493F:	Documentation/devicetree/bindings/arm/ux500/
2494F:	Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2495F:	arch/arm/boot/dts/ste-*
2496F:	arch/arm/mach-nomadik/
2497F:	arch/arm/mach-ux500/
2498F:	drivers/clk/clk-nomadik.c
2499F:	drivers/clocksource/clksrc-dbx500-prcmu.c
2500F:	drivers/dma/ste_dma40*
2501F:	drivers/hwspinlock/u8500_hsem.c
2502F:	drivers/i2c/busses/i2c-nomadik.c
2503F:	drivers/iio/adc/ab8500-gpadc.c
2504F:	drivers/mfd/ab8500*
2505F:	drivers/mfd/abx500*
2506F:	drivers/mfd/db8500*
2507F:	drivers/pinctrl/nomadik/
2508F:	drivers/rtc/rtc-ab8500.c
2509F:	drivers/rtc/rtc-pl031.c
2510F:	drivers/soc/ux500/
2511
2512ARM/NUVOTON NPCM ARCHITECTURE
2513M:	Avi Fishman <avifishman70@gmail.com>
2514M:	Tomer Maimon <tmaimon77@gmail.com>
2515M:	Tali Perry <tali.perry1@gmail.com>
2516R:	Patrick Venture <venture@google.com>
2517R:	Nancy Yuen <yuenn@google.com>
2518R:	Benjamin Fair <benjaminfair@google.com>
2519L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
2520S:	Supported
2521F:	Documentation/devicetree/bindings/*/*/*npcm*
2522F:	Documentation/devicetree/bindings/*/*npcm*
2523F:	Documentation/devicetree/bindings/arm/npcm/*
2524F:	Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2525F:	arch/arm/boot/dts/nuvoton-npcm*
2526F:	arch/arm/mach-npcm/
2527F:	arch/arm64/boot/dts/nuvoton/
2528F:	drivers/*/*npcm*
2529F:	drivers/*/*/*npcm*
2530F:	drivers/rtc/rtc-nct3018y.c
2531F:	include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2532F:	include/dt-bindings/clock/nuvoton,npcm845-clk.h
2533
2534ARM/NUVOTON WPCM450 ARCHITECTURE
2535M:	Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2536L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
2537S:	Maintained
2538W:	https://github.com/neuschaefer/wpcm450/wiki
2539F:	Documentation/devicetree/bindings/*/*wpcm*
2540F:	arch/arm/boot/dts/nuvoton-wpcm450*
2541F:	arch/arm/configs/wpcm450_defconfig
2542F:	arch/arm/mach-npcm/wpcm450.c
2543F:	drivers/*/*/*wpcm*
2544F:	drivers/*/*wpcm*
2545
2546ARM/NXP S32G ARCHITECTURE
2547M:	Chester Lin <clin@suse.com>
2548R:	Andreas Färber <afaerber@suse.de>
2549R:	Matthias Brugger <mbrugger@suse.com>
2550R:	NXP S32 Linux Team <s32@nxp.com>
2551L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2552S:	Maintained
2553F:	arch/arm64/boot/dts/freescale/s32g*.dts*
2554
2555ARM/Orion SoC/Technologic Systems TS-78xx platform support
2556M:	Alexander Clouter <alex@digriz.org.uk>
2557L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2558S:	Maintained
2559W:	http://www.digriz.org.uk/ts78xx/kernel
2560F:	arch/arm/mach-orion5x/ts78xx-*
2561
2562ARM/OXNAS platform support
2563M:	Neil Armstrong <neil.armstrong@linaro.org>
2564L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2565L:	linux-oxnas@groups.io (moderated for non-subscribers)
2566S:	Maintained
2567F:	arch/arm/boot/dts/ox8*.dts*
2568F:	arch/arm/mach-oxnas/
2569F:	drivers/power/reset/oxnas-restart.c
2570N:	oxnas
2571
2572ARM/QUALCOMM SUPPORT
2573M:	Andy Gross <agross@kernel.org>
2574M:	Bjorn Andersson <andersson@kernel.org>
2575R:	Konrad Dybcio <konrad.dybcio@linaro.org>
2576L:	linux-arm-msm@vger.kernel.org
2577S:	Maintained
2578T:	git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2579F:	Documentation/devicetree/bindings/*/qcom*
2580F:	Documentation/devicetree/bindings/soc/qcom/
2581F:	arch/arm/boot/dts/qcom-*.dts
2582F:	arch/arm/boot/dts/qcom-*.dtsi
2583F:	arch/arm/configs/qcom_defconfig
2584F:	arch/arm/mach-qcom/
2585F:	arch/arm64/boot/dts/qcom/
2586F:	drivers/*/*/qcom*
2587F:	drivers/*/*/qcom/
2588F:	drivers/*/pm8???-*
2589F:	drivers/*/qcom*
2590F:	drivers/*/qcom/
2591F:	drivers/bluetooth/btqcomsmd.c
2592F:	drivers/clocksource/timer-qcom.c
2593F:	drivers/cpuidle/cpuidle-qcom-spm.c
2594F:	drivers/extcon/extcon-qcom*
2595F:	drivers/i2c/busses/i2c-qcom-geni.c
2596F:	drivers/i2c/busses/i2c-qup.c
2597F:	drivers/iommu/msm*
2598F:	drivers/mfd/ssbi.c
2599F:	drivers/mmc/host/mmci_qcom*
2600F:	drivers/mmc/host/sdhci-msm.c
2601F:	drivers/pci/controller/dwc/pcie-qcom.c
2602F:	drivers/phy/qualcomm/
2603F:	drivers/power/*/msm*
2604F:	drivers/reset/reset-qcom-*
2605F:	drivers/ufs/host/ufs-qcom*
2606F:	drivers/spi/spi-geni-qcom.c
2607F:	drivers/spi/spi-qcom-qspi.c
2608F:	drivers/spi/spi-qup.c
2609F:	drivers/tty/serial/msm_serial.c
2610F:	drivers/usb/dwc3/dwc3-qcom.c
2611F:	include/dt-bindings/*/qcom*
2612F:	include/linux/*/qcom*
2613F:	include/linux/soc/qcom/
2614
2615ARM/QUALCOMM CHROMEBOOK SUPPORT
2616R:	cros-qcom-dts-watchers@chromium.org
2617F:	arch/arm64/boot/dts/qcom/sc7180*
2618F:	arch/arm64/boot/dts/qcom/sc7280*
2619F:	arch/arm64/boot/dts/qcom/sdm845-cheza*
2620
2621ARM/RDA MICRO ARCHITECTURE
2622M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2623L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2624L:	linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2625S:	Maintained
2626F:	Documentation/devicetree/bindings/arm/rda.yaml
2627F:	Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2628F:	Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2629F:	Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2630F:	Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2631F:	arch/arm/boot/dts/rda8810pl-*
2632F:	drivers/clocksource/timer-rda.c
2633F:	drivers/gpio/gpio-rda.c
2634F:	drivers/irqchip/irq-rda-intc.c
2635F:	drivers/tty/serial/rda-uart.c
2636
2637ARM/REALTEK ARCHITECTURE
2638M:	Andreas Färber <afaerber@suse.de>
2639L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2640L:	linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2641S:	Maintained
2642F:	Documentation/devicetree/bindings/arm/realtek.yaml
2643F:	arch/arm/boot/dts/rtd*
2644F:	arch/arm/mach-realtek/
2645F:	arch/arm64/boot/dts/realtek/
2646
2647ARM/RISC-V/RENESAS ARCHITECTURE
2648M:	Geert Uytterhoeven <geert+renesas@glider.be>
2649M:	Magnus Damm <magnus.damm@gmail.com>
2650L:	linux-renesas-soc@vger.kernel.org
2651S:	Supported
2652Q:	http://patchwork.kernel.org/project/linux-renesas-soc/list/
2653C:	irc://irc.libera.chat/renesas-soc
2654T:	git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2655F:	Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2656F:	Documentation/devicetree/bindings/soc/renesas/
2657F:	arch/arm/boot/dts/emev2*
2658F:	arch/arm/boot/dts/gr-peach*
2659F:	arch/arm/boot/dts/iwg20d-q7*
2660F:	arch/arm/boot/dts/r7s*
2661F:	arch/arm/boot/dts/r8a*
2662F:	arch/arm/boot/dts/r9a*
2663F:	arch/arm/boot/dts/sh*
2664F:	arch/arm/configs/shmobile_defconfig
2665F:	arch/arm/include/debug/renesas-scif.S
2666F:	arch/arm/mach-shmobile/
2667F:	arch/arm64/boot/dts/renesas/
2668F:	arch/riscv/boot/dts/renesas/
2669F:	drivers/soc/renesas/
2670F:	include/linux/soc/renesas/
2671K:	\brenesas,
2672
2673ARM/RISCPC ARCHITECTURE
2674M:	Russell King <linux@armlinux.org.uk>
2675L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2676S:	Maintained
2677W:	http://www.armlinux.org.uk/
2678F:	arch/arm/include/asm/hardware/ioc.h
2679F:	arch/arm/include/asm/hardware/iomd.h
2680F:	arch/arm/include/asm/hardware/memc.h
2681F:	arch/arm/mach-rpc/
2682F:	drivers/net/ethernet/8390/etherh.c
2683F:	drivers/net/ethernet/i825xx/ether1*
2684F:	drivers/net/ethernet/seeq/ether3*
2685F:	drivers/scsi/arm/
2686
2687ARM/Rockchip SoC support
2688M:	Heiko Stuebner <heiko@sntech.de>
2689L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2690L:	linux-rockchip@lists.infradead.org
2691S:	Maintained
2692T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2693F:	Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2694F:	Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2695F:	Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2696F:	arch/arm/boot/dts/rk3*
2697F:	arch/arm/boot/dts/rv11*
2698F:	arch/arm/mach-rockchip/
2699F:	drivers/*/*/*rockchip*
2700F:	drivers/*/*rockchip*
2701F:	drivers/clk/rockchip/
2702F:	drivers/i2c/busses/i2c-rk3x.c
2703F:	sound/soc/rockchip/
2704N:	rockchip
2705
2706ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2707M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2708R:	Alim Akhtar <alim.akhtar@samsung.com>
2709L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2710L:	linux-samsung-soc@vger.kernel.org
2711S:	Maintained
2712C:	irc://irc.libera.chat/linux-exynos
2713Q:	https://patchwork.kernel.org/project/linux-samsung-soc/list/
2714B:	mailto:linux-samsung-soc@vger.kernel.org
2715T:	git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2716F:	Documentation/arm/samsung/
2717F:	Documentation/devicetree/bindings/arm/samsung/
2718F:	Documentation/devicetree/bindings/hwinfo/samsung,*
2719F:	Documentation/devicetree/bindings/power/pd-samsung.yaml
2720F:	Documentation/devicetree/bindings/soc/samsung/
2721F:	arch/arm/boot/dts/exynos*
2722F:	arch/arm/boot/dts/s3c*
2723F:	arch/arm/boot/dts/s5p*
2724F:	arch/arm/mach-exynos*/
2725F:	arch/arm/mach-s3c/
2726F:	arch/arm/mach-s5p*/
2727F:	arch/arm64/boot/dts/exynos/
2728F:	drivers/*/*/*s3c24*
2729F:	drivers/*/*s3c24*
2730F:	drivers/*/*s3c64xx*
2731F:	drivers/*/*s5pv210*
2732F:	drivers/clocksource/samsung_pwm_timer.c
2733F:	drivers/memory/samsung/
2734F:	drivers/pwm/pwm-samsung.c
2735F:	drivers/soc/samsung/
2736F:	drivers/tty/serial/samsung*
2737F:	include/clocksource/samsung_pwm.h
2738F:	include/linux/platform_data/*s3c*
2739F:	include/linux/serial_s3c.h
2740F:	include/linux/soc/samsung/
2741N:	exynos
2742N:	s3c64xx
2743N:	s5pv210
2744
2745ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2746M:	Łukasz Stelmach <l.stelmach@samsung.com>
2747L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2748L:	linux-media@vger.kernel.org
2749S:	Maintained
2750F:	drivers/media/platform/samsung/s5p-g2d/
2751
2752ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2753M:	Marek Szyprowski <m.szyprowski@samsung.com>
2754L:	linux-samsung-soc@vger.kernel.org
2755L:	linux-media@vger.kernel.org
2756S:	Maintained
2757F:	Documentation/devicetree/bindings/media/cec/samsung,s5p-cec.yaml
2758F:	drivers/media/cec/platform/s5p/
2759
2760ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2761M:	Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2762M:	Jacek Anaszewski <jacek.anaszewski@gmail.com>
2763M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
2764L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2765L:	linux-media@vger.kernel.org
2766S:	Maintained
2767F:	Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2768F:	drivers/media/platform/samsung/s5p-jpeg/
2769
2770ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2771M:	Marek Szyprowski <m.szyprowski@samsung.com>
2772M:	Andrzej Hajda <andrzej.hajda@intel.com>
2773L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2774L:	linux-media@vger.kernel.org
2775S:	Maintained
2776F:	drivers/media/platform/samsung/s5p-mfc/
2777
2778ARM/SOCFPGA ARCHITECTURE
2779M:	Dinh Nguyen <dinguyen@kernel.org>
2780S:	Maintained
2781W:	http://www.rocketboards.org
2782T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2783F:	arch/arm/boot/dts/socfpga*
2784F:	arch/arm/configs/socfpga_defconfig
2785F:	arch/arm/mach-socfpga/
2786F:	arch/arm64/boot/dts/altera/
2787F:	arch/arm64/boot/dts/intel/
2788
2789ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2790M:	Dinh Nguyen <dinguyen@kernel.org>
2791S:	Maintained
2792F:	drivers/clk/socfpga/
2793
2794ARM/SOCFPGA EDAC SUPPORT
2795M:	Dinh Nguyen <dinguyen@kernel.org>
2796S:	Maintained
2797F:	drivers/edac/altera_edac.[ch]
2798
2799ARM/SPREADTRUM SoC SUPPORT
2800M:	Orson Zhai <orsonzhai@gmail.com>
2801M:	Baolin Wang <baolin.wang7@gmail.com>
2802M:	Chunyan Zhang <zhang.lyra@gmail.com>
2803S:	Maintained
2804F:	arch/arm64/boot/dts/sprd
2805N:	sprd
2806N:	sc27xx
2807N:	sc2731
2808
2809ARM/STI ARCHITECTURE
2810M:	Patrice Chotard <patrice.chotard@foss.st.com>
2811L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2812S:	Maintained
2813W:	http://www.stlinux.com
2814F:	Documentation/devicetree/bindings/spi/st,ssc-spi.yaml
2815F:	Documentation/devicetree/bindings/i2c/st,sti-i2c.yaml
2816F:	arch/arm/boot/dts/sti*
2817F:	arch/arm/mach-sti/
2818F:	drivers/ata/ahci_st.c
2819F:	drivers/char/hw_random/st-rng.c
2820F:	drivers/clocksource/arm_global_timer.c
2821F:	drivers/clocksource/clksrc_st_lpc.c
2822F:	drivers/cpufreq/sti-cpufreq.c
2823F:	drivers/dma/st_fdma*
2824F:	drivers/i2c/busses/i2c-st.c
2825F:	drivers/media/platform/st/sti/c8sectpfe/
2826F:	drivers/media/rc/st_rc.c
2827F:	drivers/mmc/host/sdhci-st.c
2828F:	drivers/phy/st/phy-miphy28lp.c
2829F:	drivers/phy/st/phy-stih407-usb.c
2830F:	drivers/pinctrl/pinctrl-st.c
2831F:	drivers/remoteproc/st_remoteproc.c
2832F:	drivers/remoteproc/st_slim_rproc.c
2833F:	drivers/reset/sti/
2834F:	drivers/rtc/rtc-st-lpc.c
2835F:	drivers/tty/serial/st-asc.c
2836F:	drivers/usb/dwc3/dwc3-st.c
2837F:	drivers/usb/host/ehci-st.c
2838F:	drivers/usb/host/ohci-st.c
2839F:	drivers/watchdog/st_lpc_wdt.c
2840F:	include/linux/remoteproc/st_slim_rproc.h
2841
2842ARM/STM32 ARCHITECTURE
2843M:	Maxime Coquelin <mcoquelin.stm32@gmail.com>
2844M:	Alexandre Torgue <alexandre.torgue@foss.st.com>
2845L:	linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2846L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2847S:	Maintained
2848T:	git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2849F:	arch/arm/boot/dts/stm32*
2850F:	arch/arm/mach-stm32/
2851F:	drivers/clocksource/armv7m_systick.c
2852N:	stm32
2853N:	stm
2854
2855ARM/SUNPLUS SP7021 SOC SUPPORT
2856M:	Qin Jian <qinjian@cqplus1.com>
2857L:	linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2858S:	Maintained
2859W:	https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2860F:	Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2861F:	Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2862F:	Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2863F:	Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2864F:	arch/arm/boot/dts/sunplus-sp7021*.dts*
2865F:	arch/arm/configs/sp7021_*defconfig
2866F:	arch/arm/mach-sunplus/
2867F:	drivers/clk/clk-sp7021.c
2868F:	drivers/irqchip/irq-sp7021-intc.c
2869F:	drivers/reset/reset-sunplus.c
2870F:	include/dt-bindings/clock/sunplus,sp7021-clkc.h
2871F:	include/dt-bindings/reset/sunplus,sp7021-reset.h
2872
2873ARM/Synaptics SoC support
2874M:	Jisheng Zhang <jszhang@kernel.org>
2875M:	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2876L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2877S:	Maintained
2878F:	arch/arm/boot/dts/berlin*
2879F:	arch/arm/mach-berlin/
2880F:	arch/arm64/boot/dts/synaptics/
2881
2882ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2883M:	Lennert Buytenhek <kernel@wantstofly.org>
2884L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2885S:	Maintained
2886
2887ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2888M:	Hans Verkuil <hverkuil-cisco@xs4all.nl>
2889L:	linux-tegra@vger.kernel.org
2890L:	linux-media@vger.kernel.org
2891S:	Maintained
2892F:	Documentation/devicetree/bindings/media/cec/nvidia,tegra114-cec.yaml
2893F:	drivers/media/cec/platform/tegra/
2894
2895ARM/TESLA FSD SoC SUPPORT
2896M:	Alim Akhtar <alim.akhtar@samsung.com>
2897M:	linux-fsd@tesla.com
2898L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2899L:	linux-samsung-soc@vger.kernel.org
2900S:	Maintained
2901F:	arch/arm64/boot/dts/tesla/
2902
2903ARM/TETON BGA MACHINE SUPPORT
2904M:	"Mark F. Brown" <mark.brown314@gmail.com>
2905L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2906S:	Maintained
2907
2908ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2909M:	Santosh Shilimkar <ssantosh@kernel.org>
2910L:	linux-kernel@vger.kernel.org
2911S:	Maintained
2912F:	drivers/memory/*emif*
2913
2914ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2915M:	Nishanth Menon <nm@ti.com>
2916M:	Santosh Shilimkar <ssantosh@kernel.org>
2917L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2918S:	Maintained
2919T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2920F:	arch/arm/boot/dts/keystone-*
2921F:	arch/arm/mach-keystone/
2922
2923ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2924M:	Santosh Shilimkar <ssantosh@kernel.org>
2925L:	linux-kernel@vger.kernel.org
2926S:	Maintained
2927F:	drivers/clk/keystone/
2928
2929ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2930M:	Santosh Shilimkar <ssantosh@kernel.org>
2931L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2932L:	linux-kernel@vger.kernel.org
2933S:	Maintained
2934F:	drivers/clocksource/timer-keystone.c
2935
2936ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2937M:	Santosh Shilimkar <ssantosh@kernel.org>
2938L:	linux-kernel@vger.kernel.org
2939S:	Maintained
2940F:	drivers/power/reset/keystone-reset.c
2941
2942ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2943M:	Nishanth Menon <nm@ti.com>
2944M:	Vignesh Raghavendra <vigneshr@ti.com>
2945M:	Tero Kristo <kristo@kernel.org>
2946L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2947S:	Supported
2948F:	Documentation/devicetree/bindings/arm/ti/k3.yaml
2949F:	Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2950F:	arch/arm64/boot/dts/ti/Makefile
2951F:	arch/arm64/boot/dts/ti/k3-*
2952
2953ARM/TOSHIBA VISCONTI ARCHITECTURE
2954M:	Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2955L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2956S:	Supported
2957T:	git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2958F:	Documentation/devicetree/bindings/arm/toshiba.yaml
2959F:	Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2960F:	Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2961F:	Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2962F:	Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2963F:	Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2964F:	Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2965F:	Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2966F:	arch/arm64/boot/dts/toshiba/
2967F:	drivers/clk/visconti/
2968F:	drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2969F:	drivers/gpio/gpio-visconti.c
2970F:	drivers/pci/controller/dwc/pcie-visconti.c
2971F:	drivers/pinctrl/visconti/
2972F:	drivers/watchdog/visconti_wdt.c
2973N:	visconti
2974
2975ARM/UNIPHIER ARCHITECTURE
2976M:	Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2977M:	Masami Hiramatsu <mhiramat@kernel.org>
2978L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2979S:	Maintained
2980F:	Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2981F:	Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2982F:	Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2983F:	Documentation/devicetree/bindings/soc/socionext/socionext,uniphier*.yaml
2984F:	arch/arm/boot/dts/uniphier*
2985F:	arch/arm/include/asm/hardware/cache-uniphier.h
2986F:	arch/arm/mach-uniphier/
2987F:	arch/arm/mm/cache-uniphier.c
2988F:	arch/arm64/boot/dts/socionext/uniphier*
2989F:	drivers/bus/uniphier-system-bus.c
2990F:	drivers/clk/uniphier/
2991F:	drivers/dma/uniphier-mdmac.c
2992F:	drivers/gpio/gpio-uniphier.c
2993F:	drivers/i2c/busses/i2c-uniphier*
2994F:	drivers/irqchip/irq-uniphier-aidet.c
2995F:	drivers/mmc/host/uniphier-sd.c
2996F:	drivers/pinctrl/uniphier/
2997F:	drivers/reset/reset-uniphier.c
2998F:	drivers/tty/serial/8250/8250_uniphier.c
2999N:	uniphier
3000
3001ARM/VERSATILE EXPRESS PLATFORM
3002M:	Liviu Dudau <liviu.dudau@arm.com>
3003M:	Sudeep Holla <sudeep.holla@arm.com>
3004M:	Lorenzo Pieralisi <lpieralisi@kernel.org>
3005L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3006S:	Maintained
3007F:	*/*/*/vexpress*
3008F:	*/*/vexpress*
3009F:	arch/arm/boot/dts/vexpress*
3010F:	arch/arm/mach-versatile/
3011F:	arch/arm64/boot/dts/arm/
3012F:	drivers/clk/versatile/clk-vexpress-osc.c
3013F:	drivers/clocksource/timer-versatile.c
3014N:	mps2
3015
3016ARM/VFP SUPPORT
3017M:	Russell King <linux@armlinux.org.uk>
3018L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3019S:	Maintained
3020W:	http://www.armlinux.org.uk/
3021F:	arch/arm/vfp/
3022
3023ARM/VT8500 ARM ARCHITECTURE
3024L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3025S:	Orphan
3026F:	Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3027F:	arch/arm/mach-vt8500/
3028F:	drivers/clocksource/timer-vt8500.c
3029F:	drivers/i2c/busses/i2c-wmt.c
3030F:	drivers/mmc/host/wmt-sdmmc.c
3031F:	drivers/pwm/pwm-vt8500.c
3032F:	drivers/rtc/rtc-vt8500.c
3033F:	drivers/tty/serial/vt8500_serial.c
3034F:	drivers/usb/host/ehci-platform.c
3035F:	drivers/usb/host/uhci-platform.c
3036F:	drivers/video/fbdev/vt8500lcdfb.*
3037F:	drivers/video/fbdev/wm8505fb*
3038F:	drivers/video/fbdev/wmt_ge_rops.*
3039
3040ARM/ZYNQ ARCHITECTURE
3041M:	Michal Simek <michal.simek@amd.com>
3042L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3043S:	Supported
3044W:	http://wiki.xilinx.com
3045T:	git https://github.com/Xilinx/linux-xlnx.git
3046F:	Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3047F:	Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3048F:	Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3049F:	Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3050F:	Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3051F:	arch/arm/mach-zynq/
3052F:	drivers/clocksource/timer-cadence-ttc.c
3053F:	drivers/cpuidle/cpuidle-zynq.c
3054F:	drivers/edac/synopsys_edac.c
3055F:	drivers/i2c/busses/i2c-cadence.c
3056F:	drivers/i2c/busses/i2c-xiic.c
3057F:	drivers/mmc/host/sdhci-of-arasan.c
3058N:	zynq
3059N:	xilinx
3060
3061ARM64 PORT (AARCH64 ARCHITECTURE)
3062M:	Catalin Marinas <catalin.marinas@arm.com>
3063M:	Will Deacon <will@kernel.org>
3064L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3065S:	Maintained
3066T:	git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3067F:	Documentation/arm64/
3068F:	arch/arm64/
3069F:	tools/testing/selftests/arm64/
3070X:	arch/arm64/boot/dts/
3071
3072ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3073M:	George McCollister <george.mccollister@gmail.com>
3074L:	netdev@vger.kernel.org
3075S:	Maintained
3076F:	Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3077F:	drivers/net/dsa/xrs700x/*
3078F:	net/dsa/tag_xrs700x.c
3079
3080AS3645A LED FLASH CONTROLLER DRIVER
3081M:	Sakari Ailus <sakari.ailus@iki.fi>
3082L:	linux-leds@vger.kernel.org
3083S:	Maintained
3084F:	drivers/leds/flash/leds-as3645a.c
3085
3086ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3087M:	Tianshu Qiu <tian.shu.qiu@intel.com>
3088L:	linux-media@vger.kernel.org
3089S:	Maintained
3090T:	git git://linuxtv.org/media_tree.git
3091F:	Documentation/devicetree/bindings/media/i2c/asahi-kasei,ak7375.yaml
3092F:	drivers/media/i2c/ak7375.c
3093
3094ASAHI KASEI AK8974 DRIVER
3095M:	Linus Walleij <linus.walleij@linaro.org>
3096L:	linux-iio@vger.kernel.org
3097S:	Supported
3098W:	http://www.akm.com/
3099F:	drivers/iio/magnetometer/ak8974.c
3100
3101ASC7621 HARDWARE MONITOR DRIVER
3102M:	George Joseph <george.joseph@fairview5.com>
3103L:	linux-hwmon@vger.kernel.org
3104S:	Maintained
3105F:	Documentation/hwmon/asc7621.rst
3106F:	drivers/hwmon/asc7621.c
3107
3108ASIX AX88796C SPI ETHERNET ADAPTER
3109M:	Łukasz Stelmach <l.stelmach@samsung.com>
3110S:	Maintained
3111F:	Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3112F:	drivers/net/ethernet/asix/ax88796c_*
3113
3114ASPEED PECI CONTROLLER
3115M:	Iwona Winiarska <iwona.winiarska@intel.com>
3116L:	linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3117L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
3118S:	Supported
3119F:	Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3120F:	drivers/peci/controller/peci-aspeed.c
3121
3122ASPEED PINCTRL DRIVERS
3123M:	Andrew Jeffery <andrew@aj.id.au>
3124L:	linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3125L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
3126L:	linux-gpio@vger.kernel.org
3127S:	Maintained
3128F:	Documentation/devicetree/bindings/pinctrl/aspeed,*
3129F:	drivers/pinctrl/aspeed/
3130
3131ASPEED SCU INTERRUPT CONTROLLER DRIVER
3132M:	Eddie James <eajames@linux.ibm.com>
3133L:	linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3134S:	Maintained
3135F:	Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3136F:	drivers/irqchip/irq-aspeed-scu-ic.c
3137F:	include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3138
3139ASPEED SD/MMC DRIVER
3140M:	Andrew Jeffery <andrew@aj.id.au>
3141L:	linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3142L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
3143L:	linux-mmc@vger.kernel.org
3144S:	Maintained
3145F:	Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3146F:	drivers/mmc/host/sdhci-of-aspeed*
3147
3148ASPEED SMC SPI DRIVER
3149M:	Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3150M:	Cédric Le Goater <clg@kaod.org>
3151L:	linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3152L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
3153L:	linux-spi@vger.kernel.org
3154S:	Maintained
3155F:	Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3156F:	drivers/spi/spi-aspeed-smc.c
3157
3158ASPEED VIDEO ENGINE DRIVER
3159M:	Eddie James <eajames@linux.ibm.com>
3160L:	linux-media@vger.kernel.org
3161L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
3162S:	Maintained
3163F:	Documentation/devicetree/bindings/media/aspeed-video.txt
3164F:	drivers/media/platform/aspeed/
3165
3166ASPEED USB UDC DRIVER
3167M:	Neal Liu <neal_liu@aspeedtech.com>
3168L:	linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3169S:	Maintained
3170F:	Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3171F:	drivers/usb/gadget/udc/aspeed_udc.c
3172
3173ASPEED CRYPTO DRIVER
3174M:	Neal Liu <neal_liu@aspeedtech.com>
3175L:	linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3176S:	Maintained
3177F:	Documentation/devicetree/bindings/crypto/aspeed,*
3178F:	drivers/crypto/aspeed/
3179
3180ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3181M:	Corentin Chary <corentin.chary@gmail.com>
3182L:	acpi4asus-user@lists.sourceforge.net
3183L:	platform-driver-x86@vger.kernel.org
3184S:	Maintained
3185W:	http://acpi4asus.sf.net
3186F:	drivers/platform/x86/asus*.c
3187F:	drivers/platform/x86/eeepc*.c
3188
3189ASUS TF103C DOCK DRIVER
3190M:	Hans de Goede <hdegoede@redhat.com>
3191L:	platform-driver-x86@vger.kernel.org
3192S:	Maintained
3193T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3194F:	drivers/platform/x86/asus-tf103c-dock.c
3195
3196ASUS WMI HARDWARE MONITOR DRIVER
3197M:	Ed Brindley <kernel@maidavale.org>
3198M:	Denis Pauk <pauk.denis@gmail.com>
3199L:	linux-hwmon@vger.kernel.org
3200S:	Maintained
3201F:	drivers/hwmon/asus_wmi_sensors.c
3202
3203ASUS EC HARDWARE MONITOR DRIVER
3204M:	Eugene Shalygin <eugene.shalygin@gmail.com>
3205L:	linux-hwmon@vger.kernel.org
3206S:	Maintained
3207F:	drivers/hwmon/asus-ec-sensors.c
3208
3209ASUS WIRELESS RADIO CONTROL DRIVER
3210M:	João Paulo Rechi Vita <jprvita@gmail.com>
3211L:	platform-driver-x86@vger.kernel.org
3212S:	Maintained
3213F:	drivers/platform/x86/asus-wireless.c
3214
3215ASYMMETRIC KEYS
3216M:	David Howells <dhowells@redhat.com>
3217L:	keyrings@vger.kernel.org
3218S:	Maintained
3219F:	Documentation/crypto/asymmetric-keys.rst
3220F:	crypto/asymmetric_keys/
3221F:	include/crypto/pkcs7.h
3222F:	include/crypto/public_key.h
3223F:	include/linux/verification.h
3224
3225ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3226R:	Dan Williams <dan.j.williams@intel.com>
3227S:	Odd fixes
3228W:	http://sourceforge.net/projects/xscaleiop
3229F:	Documentation/crypto/async-tx-api.rst
3230F:	crypto/async_tx/
3231F:	include/linux/async_tx.h
3232
3233AT24 EEPROM DRIVER
3234M:	Bartosz Golaszewski <brgl@bgdev.pl>
3235L:	linux-i2c@vger.kernel.org
3236S:	Maintained
3237T:	git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3238F:	Documentation/devicetree/bindings/eeprom/at24.yaml
3239F:	drivers/misc/eeprom/at24.c
3240
3241ATA OVER ETHERNET (AOE) DRIVER
3242M:	"Justin Sanders" <justin@coraid.com>
3243S:	Supported
3244W:	http://www.openaoe.org/
3245F:	Documentation/admin-guide/aoe/
3246F:	drivers/block/aoe/
3247
3248ATC260X PMIC MFD DRIVER
3249M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3250M:	Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3251L:	linux-actions@lists.infradead.org
3252S:	Maintained
3253F:	Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3254F:	drivers/input/misc/atc260x-onkey.c
3255F:	drivers/mfd/atc260*
3256F:	drivers/power/reset/atc260x-poweroff.c
3257F:	drivers/regulator/atc260x-regulator.c
3258F:	include/linux/mfd/atc260x/*
3259
3260ATHEROS 71XX/9XXX GPIO DRIVER
3261M:	Alban Bedel <albeu@free.fr>
3262S:	Maintained
3263W:	https://github.com/AlbanBedel/linux
3264T:	git git://github.com/AlbanBedel/linux
3265F:	Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3266F:	drivers/gpio/gpio-ath79.c
3267
3268ATHEROS 71XX/9XXX USB PHY DRIVER
3269M:	Alban Bedel <albeu@free.fr>
3270S:	Maintained
3271W:	https://github.com/AlbanBedel/linux
3272T:	git git://github.com/AlbanBedel/linux
3273F:	Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3274F:	drivers/phy/qualcomm/phy-ath79-usb.c
3275
3276ATHEROS ATH GENERIC UTILITIES
3277M:	Kalle Valo <kvalo@kernel.org>
3278L:	linux-wireless@vger.kernel.org
3279S:	Supported
3280F:	drivers/net/wireless/ath/*
3281
3282ATHEROS ATH5K WIRELESS DRIVER
3283M:	Jiri Slaby <jirislaby@kernel.org>
3284M:	Nick Kossifidis <mickflemm@gmail.com>
3285M:	Luis Chamberlain <mcgrof@kernel.org>
3286L:	linux-wireless@vger.kernel.org
3287S:	Maintained
3288W:	https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3289F:	drivers/net/wireless/ath/ath5k/
3290
3291ATHEROS ATH6KL WIRELESS DRIVER
3292L:	linux-wireless@vger.kernel.org
3293S:	Orphan
3294W:	https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3295F:	drivers/net/wireless/ath/ath6kl/
3296
3297ATI_REMOTE2 DRIVER
3298M:	Ville Syrjala <syrjala@sci.fi>
3299S:	Maintained
3300F:	drivers/input/misc/ati_remote2.c
3301
3302ATK0110 HWMON DRIVER
3303M:	Luca Tettamanti <kronos.it@gmail.com>
3304L:	linux-hwmon@vger.kernel.org
3305S:	Maintained
3306F:	drivers/hwmon/asus_atk0110.c
3307
3308ATLX ETHERNET DRIVERS
3309M:	Chris Snook <chris.snook@gmail.com>
3310L:	netdev@vger.kernel.org
3311S:	Maintained
3312W:	http://sourceforge.net/projects/atl1
3313W:	http://atl1.sourceforge.net
3314F:	drivers/net/ethernet/atheros/
3315
3316ATM
3317M:	Chas Williams <3chas3@gmail.com>
3318L:	linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3319L:	netdev@vger.kernel.org
3320S:	Maintained
3321W:	http://linux-atm.sourceforge.net
3322F:	drivers/atm/
3323F:	include/linux/atm*
3324F:	include/uapi/linux/atm*
3325
3326ATMEL MACB ETHERNET DRIVER
3327M:	Nicolas Ferre <nicolas.ferre@microchip.com>
3328M:	Claudiu Beznea <claudiu.beznea@microchip.com>
3329S:	Supported
3330F:	drivers/net/ethernet/cadence/
3331
3332ATMEL MAXTOUCH DRIVER
3333M:	Nick Dyer <nick@shmanahar.org>
3334S:	Maintained
3335T:	git git://github.com/ndyer/linux.git
3336F:	Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3337F:	drivers/input/touchscreen/atmel_mxt_ts.c
3338
3339ATMEL WIRELESS DRIVER
3340M:	Simon Kelley <simon@thekelleys.org.uk>
3341L:	linux-wireless@vger.kernel.org
3342S:	Maintained
3343W:	http://www.thekelleys.org.uk/atmel
3344W:	http://atmelwlandriver.sourceforge.net/
3345F:	drivers/net/wireless/atmel/atmel*
3346
3347ATOMIC INFRASTRUCTURE
3348M:	Will Deacon <will@kernel.org>
3349M:	Peter Zijlstra <peterz@infradead.org>
3350R:	Boqun Feng <boqun.feng@gmail.com>
3351R:	Mark Rutland <mark.rutland@arm.com>
3352L:	linux-kernel@vger.kernel.org
3353S:	Maintained
3354F:	arch/*/include/asm/atomic*.h
3355F:	include/*/atomic*.h
3356F:	include/linux/refcount.h
3357F:	Documentation/atomic_*.txt
3358F:	scripts/atomic/
3359
3360ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3361M:	Bradley Grove <linuxdrivers@attotech.com>
3362L:	linux-scsi@vger.kernel.org
3363S:	Supported
3364W:	http://www.attotech.com
3365F:	drivers/scsi/esas2r
3366
3367ATUSB IEEE 802.15.4 RADIO DRIVER
3368M:	Stefan Schmidt <stefan@datenfreihafen.org>
3369L:	linux-wpan@vger.kernel.org
3370S:	Maintained
3371F:	drivers/net/ieee802154/at86rf230.h
3372F:	drivers/net/ieee802154/atusb.c
3373F:	drivers/net/ieee802154/atusb.h
3374
3375AUDIT SUBSYSTEM
3376M:	Paul Moore <paul@paul-moore.com>
3377M:	Eric Paris <eparis@redhat.com>
3378L:	audit@vger.kernel.org
3379S:	Supported
3380W:	https://github.com/linux-audit
3381T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3382F:	include/asm-generic/audit_*.h
3383F:	include/linux/audit.h
3384F:	include/linux/audit_arch.h
3385F:	include/uapi/linux/audit.h
3386F:	kernel/audit*
3387F:	lib/*audit.c
3388
3389AUXILIARY DISPLAY DRIVERS
3390M:	Miguel Ojeda <ojeda@kernel.org>
3391S:	Maintained
3392F:	Documentation/devicetree/bindings/auxdisplay/
3393F:	drivers/auxdisplay/
3394F:	include/linux/cfag12864b.h
3395
3396AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3397M:	Andreas Klinger <ak@it-klinger.de>
3398L:	linux-iio@vger.kernel.org
3399S:	Maintained
3400F:	Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3401F:	drivers/iio/adc/hx711.c
3402
3403AX.25 NETWORK LAYER
3404M:	Ralf Baechle <ralf@linux-mips.org>
3405L:	linux-hams@vger.kernel.org
3406S:	Maintained
3407W:	http://www.linux-ax25.org/
3408F:	include/net/ax25.h
3409F:	include/uapi/linux/ax25.h
3410F:	net/ax25/
3411
3412AXENTIA ARM DEVICES
3413M:	Peter Rosin <peda@axentia.se>
3414L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3415S:	Maintained
3416F:	arch/arm/boot/dts/at91-linea.dtsi
3417F:	arch/arm/boot/dts/at91-natte.dtsi
3418F:	arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3419F:	arch/arm/boot/dts/at91-tse850-3.dts
3420
3421AXENTIA ASOC DRIVERS
3422M:	Peter Rosin <peda@axentia.se>
3423L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
3424S:	Maintained
3425F:	Documentation/devicetree/bindings/sound/axentia,*
3426F:	sound/soc/atmel/tse850-pcm5142.c
3427
3428AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3429M:	Nuno Sá <nuno.sa@analog.com>
3430L:	linux-hwmon@vger.kernel.org
3431S:	Supported
3432W:	https://ez.analog.com/linux-software-drivers
3433F:	Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3434F:	drivers/hwmon/axi-fan-control.c
3435
3436AXXIA I2C CONTROLLER
3437M:	Krzysztof Adamski <krzysztof.adamski@nokia.com>
3438L:	linux-i2c@vger.kernel.org
3439S:	Maintained
3440F:	Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3441F:	drivers/i2c/busses/i2c-axxia.c
3442
3443AZ6007 DVB DRIVER
3444M:	Mauro Carvalho Chehab <mchehab@kernel.org>
3445L:	linux-media@vger.kernel.org
3446S:	Maintained
3447W:	https://linuxtv.org
3448T:	git git://linuxtv.org/media_tree.git
3449F:	drivers/media/usb/dvb-usb-v2/az6007.c
3450
3451AZTECH FM RADIO RECEIVER DRIVER
3452M:	Hans Verkuil <hverkuil@xs4all.nl>
3453L:	linux-media@vger.kernel.org
3454S:	Maintained
3455W:	https://linuxtv.org
3456T:	git git://linuxtv.org/media_tree.git
3457F:	drivers/media/radio/radio-aztech*
3458
3459B43 WIRELESS DRIVER
3460L:	linux-wireless@vger.kernel.org
3461L:	b43-dev@lists.infradead.org
3462S:	Odd Fixes
3463W:	https://wireless.wiki.kernel.org/en/users/Drivers/b43
3464F:	drivers/net/wireless/broadcom/b43/
3465
3466B43LEGACY WIRELESS DRIVER
3467M:	Larry Finger <Larry.Finger@lwfinger.net>
3468L:	linux-wireless@vger.kernel.org
3469L:	b43-dev@lists.infradead.org
3470S:	Maintained
3471W:	https://wireless.wiki.kernel.org/en/users/Drivers/b43
3472F:	drivers/net/wireless/broadcom/b43legacy/
3473
3474BACKLIGHT CLASS/SUBSYSTEM
3475M:	Lee Jones <lee@kernel.org>
3476M:	Daniel Thompson <daniel.thompson@linaro.org>
3477M:	Jingoo Han <jingoohan1@gmail.com>
3478L:	dri-devel@lists.freedesktop.org
3479S:	Maintained
3480T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3481F:	Documentation/ABI/stable/sysfs-class-backlight
3482F:	Documentation/ABI/testing/sysfs-class-backlight
3483F:	Documentation/devicetree/bindings/leds/backlight
3484F:	drivers/video/backlight/
3485F:	include/linux/backlight.h
3486F:	include/linux/pwm_backlight.h
3487
3488BARCO P50 GPIO DRIVER
3489M:	Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3490M:	Peter Korsgaard <peter.korsgaard@barco.com>
3491S:	Maintained
3492F:	drivers/platform/x86/barco-p50-gpio.c
3493
3494BATMAN ADVANCED
3495M:	Marek Lindner <mareklindner@neomailbox.ch>
3496M:	Simon Wunderlich <sw@simonwunderlich.de>
3497M:	Antonio Quartulli <a@unstable.cc>
3498M:	Sven Eckelmann <sven@narfation.org>
3499L:	b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3500S:	Maintained
3501W:	https://www.open-mesh.org/
3502Q:	https://patchwork.open-mesh.org/project/batman/list/
3503B:	https://www.open-mesh.org/projects/batman-adv/issues
3504C:	ircs://irc.hackint.org/batadv
3505T:	git https://git.open-mesh.org/linux-merge.git
3506F:	Documentation/networking/batman-adv.rst
3507F:	include/uapi/linux/batadv_packet.h
3508F:	include/uapi/linux/batman_adv.h
3509F:	net/batman-adv/
3510
3511BAYCOM/HDLCDRV DRIVERS FOR AX.25
3512M:	Thomas Sailer <t.sailer@alumni.ethz.ch>
3513L:	linux-hams@vger.kernel.org
3514S:	Maintained
3515W:	http://www.baycom.org/~tom/ham/ham.html
3516F:	drivers/net/hamradio/baycom*
3517
3518BCACHE (BLOCK LAYER CACHE)
3519M:	Coly Li <colyli@suse.de>
3520M:	Kent Overstreet <kent.overstreet@gmail.com>
3521L:	linux-bcache@vger.kernel.org
3522S:	Maintained
3523W:	http://bcache.evilpiepirate.org
3524C:	irc://irc.oftc.net/bcache
3525F:	drivers/md/bcache/
3526
3527BDISP ST MEDIA DRIVER
3528M:	Fabien Dessenne <fabien.dessenne@foss.st.com>
3529L:	linux-media@vger.kernel.org
3530S:	Supported
3531W:	https://linuxtv.org
3532T:	git git://linuxtv.org/media_tree.git
3533F:	drivers/media/platform/st/sti/bdisp
3534
3535BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3536M:	Dariusz Marcinkiewicz <reksio@newterm.pl>
3537L:	netdev@vger.kernel.org
3538S:	Maintained
3539F:	drivers/net/ethernet/ec_bhf.c
3540
3541BEFS FILE SYSTEM
3542M:	Luis de Bethencourt <luisbg@kernel.org>
3543M:	Salah Triki <salah.triki@gmail.com>
3544S:	Maintained
3545T:	git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3546F:	Documentation/filesystems/befs.rst
3547F:	fs/befs/
3548
3549BFQ I/O SCHEDULER
3550M:	Paolo Valente <paolo.valente@linaro.org>
3551M:	Jens Axboe <axboe@kernel.dk>
3552L:	linux-block@vger.kernel.org
3553S:	Maintained
3554F:	Documentation/block/bfq-iosched.rst
3555F:	block/bfq-*
3556
3557BFS FILE SYSTEM
3558M:	"Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3559S:	Maintained
3560F:	Documentation/filesystems/bfs.rst
3561F:	fs/bfs/
3562F:	include/uapi/linux/bfs_fs.h
3563
3564BITMAP API
3565M:	Yury Norov <yury.norov@gmail.com>
3566R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3567R:	Rasmus Villemoes <linux@rasmusvillemoes.dk>
3568S:	Maintained
3569F:	include/linux/bitmap.h
3570F:	include/linux/cpumask.h
3571F:	include/linux/find.h
3572F:	include/linux/nodemask.h
3573F:	lib/bitmap.c
3574F:	lib/cpumask.c
3575F:	lib/cpumask_kunit.c
3576F:	lib/find_bit.c
3577F:	lib/find_bit_benchmark.c
3578F:	lib/test_bitmap.c
3579F:	tools/include/linux/bitmap.h
3580F:	tools/include/linux/find.h
3581F:	tools/lib/bitmap.c
3582F:	tools/lib/find_bit.c
3583
3584BLINKM RGB LED DRIVER
3585M:	Jan-Simon Moeller <jansimon.moeller@gmx.de>
3586S:	Maintained
3587F:	drivers/leds/leds-blinkm.c
3588
3589BLOCK LAYER
3590M:	Jens Axboe <axboe@kernel.dk>
3591L:	linux-block@vger.kernel.org
3592S:	Maintained
3593T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3594F:	Documentation/ABI/stable/sysfs-block
3595F:	Documentation/block/
3596F:	block/
3597F:	drivers/block/
3598F:	include/linux/bio.h
3599F:	include/linux/blk*
3600F:	kernel/trace/blktrace.c
3601F:	lib/sbitmap.c
3602
3603BLOCK2MTD DRIVER
3604M:	Joern Engel <joern@lazybastard.org>
3605L:	linux-mtd@lists.infradead.org
3606S:	Maintained
3607F:	drivers/mtd/devices/block2mtd.c
3608
3609BLUETOOTH DRIVERS
3610M:	Marcel Holtmann <marcel@holtmann.org>
3611M:	Johan Hedberg <johan.hedberg@gmail.com>
3612M:	Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3613L:	linux-bluetooth@vger.kernel.org
3614S:	Supported
3615W:	http://www.bluez.org/
3616T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3617T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3618F:	drivers/bluetooth/
3619
3620BLUETOOTH SUBSYSTEM
3621M:	Marcel Holtmann <marcel@holtmann.org>
3622M:	Johan Hedberg <johan.hedberg@gmail.com>
3623M:	Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3624L:	linux-bluetooth@vger.kernel.org
3625S:	Supported
3626W:	http://www.bluez.org/
3627T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3628T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3629F:	include/net/bluetooth/
3630F:	net/bluetooth/
3631
3632BONDING DRIVER
3633M:	Jay Vosburgh <j.vosburgh@gmail.com>
3634M:	Andy Gospodarek <andy@greyhouse.net>
3635L:	netdev@vger.kernel.org
3636S:	Supported
3637W:	http://sourceforge.net/projects/bonding/
3638F:	Documentation/networking/bonding.rst
3639F:	drivers/net/bonding/
3640F:	include/net/bond*
3641F:	include/uapi/linux/if_bonding.h
3642F:	tools/testing/selftests/drivers/net/bonding/
3643
3644BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3645M:	Dan Robertson <dan@dlrobertson.com>
3646L:	linux-iio@vger.kernel.org
3647S:	Maintained
3648F:	Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3649F:	drivers/iio/accel/bma400*
3650
3651BPF [GENERAL] (Safe Dynamic Programs and Tools)
3652M:	Alexei Starovoitov <ast@kernel.org>
3653M:	Daniel Borkmann <daniel@iogearbox.net>
3654M:	Andrii Nakryiko <andrii@kernel.org>
3655R:	Martin KaFai Lau <martin.lau@linux.dev>
3656R:	Song Liu <song@kernel.org>
3657R:	Yonghong Song <yhs@fb.com>
3658R:	John Fastabend <john.fastabend@gmail.com>
3659R:	KP Singh <kpsingh@kernel.org>
3660R:	Stanislav Fomichev <sdf@google.com>
3661R:	Hao Luo <haoluo@google.com>
3662R:	Jiri Olsa <jolsa@kernel.org>
3663L:	bpf@vger.kernel.org
3664S:	Supported
3665W:	https://bpf.io/
3666Q:	https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3667T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3668T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3669F:	Documentation/bpf/
3670F:	Documentation/networking/filter.rst
3671F:	Documentation/userspace-api/ebpf/
3672F:	arch/*/net/*
3673F:	include/linux/bpf*
3674F:	include/linux/btf*
3675F:	include/linux/filter.h
3676F:	include/trace/events/xdp.h
3677F:	include/uapi/linux/bpf*
3678F:	include/uapi/linux/btf*
3679F:	include/uapi/linux/filter.h
3680F:	kernel/bpf/
3681F:	kernel/trace/bpf_trace.c
3682F:	lib/test_bpf.c
3683F:	net/bpf/
3684F:	net/core/filter.c
3685F:	net/sched/act_bpf.c
3686F:	net/sched/cls_bpf.c
3687F:	samples/bpf/
3688F:	scripts/bpf_doc.py
3689F:	scripts/pahole-flags.sh
3690F:	scripts/pahole-version.sh
3691F:	tools/bpf/
3692F:	tools/lib/bpf/
3693F:	tools/testing/selftests/bpf/
3694
3695BPF JIT for ARM
3696M:	Shubham Bansal <illusionist.neo@gmail.com>
3697L:	bpf@vger.kernel.org
3698S:	Odd Fixes
3699F:	arch/arm/net/
3700
3701BPF JIT for ARM64
3702M:	Daniel Borkmann <daniel@iogearbox.net>
3703M:	Alexei Starovoitov <ast@kernel.org>
3704M:	Zi Shen Lim <zlim.lnx@gmail.com>
3705L:	bpf@vger.kernel.org
3706S:	Supported
3707F:	arch/arm64/net/
3708
3709BPF JIT for MIPS (32-BIT AND 64-BIT)
3710M:	Johan Almbladh <johan.almbladh@anyfinetworks.com>
3711M:	Paul Burton <paulburton@kernel.org>
3712L:	bpf@vger.kernel.org
3713S:	Maintained
3714F:	arch/mips/net/
3715
3716BPF JIT for NFP NICs
3717M:	Jakub Kicinski <kuba@kernel.org>
3718L:	bpf@vger.kernel.org
3719S:	Odd Fixes
3720F:	drivers/net/ethernet/netronome/nfp/bpf/
3721
3722BPF JIT for POWERPC (32-BIT AND 64-BIT)
3723M:	Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3724M:	Michael Ellerman <mpe@ellerman.id.au>
3725L:	bpf@vger.kernel.org
3726S:	Supported
3727F:	arch/powerpc/net/
3728
3729BPF JIT for RISC-V (32-bit)
3730M:	Luke Nelson <luke.r.nels@gmail.com>
3731M:	Xi Wang <xi.wang@gmail.com>
3732L:	bpf@vger.kernel.org
3733S:	Maintained
3734F:	arch/riscv/net/
3735X:	arch/riscv/net/bpf_jit_comp64.c
3736
3737BPF JIT for RISC-V (64-bit)
3738M:	Björn Töpel <bjorn@kernel.org>
3739L:	bpf@vger.kernel.org
3740S:	Maintained
3741F:	arch/riscv/net/
3742X:	arch/riscv/net/bpf_jit_comp32.c
3743
3744BPF JIT for S390
3745M:	Ilya Leoshkevich <iii@linux.ibm.com>
3746M:	Heiko Carstens <hca@linux.ibm.com>
3747M:	Vasily Gorbik <gor@linux.ibm.com>
3748L:	bpf@vger.kernel.org
3749S:	Supported
3750F:	arch/s390/net/
3751X:	arch/s390/net/pnet.c
3752
3753BPF JIT for SPARC (32-BIT AND 64-BIT)
3754M:	David S. Miller <davem@davemloft.net>
3755L:	bpf@vger.kernel.org
3756S:	Odd Fixes
3757F:	arch/sparc/net/
3758
3759BPF JIT for X86 32-BIT
3760M:	Wang YanQing <udknight@gmail.com>
3761L:	bpf@vger.kernel.org
3762S:	Odd Fixes
3763F:	arch/x86/net/bpf_jit_comp32.c
3764
3765BPF JIT for X86 64-BIT
3766M:	Alexei Starovoitov <ast@kernel.org>
3767M:	Daniel Borkmann <daniel@iogearbox.net>
3768L:	bpf@vger.kernel.org
3769S:	Supported
3770F:	arch/x86/net/
3771X:	arch/x86/net/bpf_jit_comp32.c
3772
3773BPF [CORE]
3774M:	Alexei Starovoitov <ast@kernel.org>
3775M:	Daniel Borkmann <daniel@iogearbox.net>
3776R:	John Fastabend <john.fastabend@gmail.com>
3777L:	bpf@vger.kernel.org
3778S:	Maintained
3779F:	kernel/bpf/verifier.c
3780F:	kernel/bpf/tnum.c
3781F:	kernel/bpf/core.c
3782F:	kernel/bpf/syscall.c
3783F:	kernel/bpf/dispatcher.c
3784F:	kernel/bpf/trampoline.c
3785F:	include/linux/bpf*
3786F:	include/linux/filter.h
3787F:	include/linux/tnum.h
3788
3789BPF [BTF]
3790M:	Martin KaFai Lau <martin.lau@linux.dev>
3791L:	bpf@vger.kernel.org
3792S:	Maintained
3793F:	kernel/bpf/btf.c
3794F:	include/linux/btf*
3795
3796BPF [TRACING]
3797M:	Song Liu <song@kernel.org>
3798R:	Jiri Olsa <jolsa@kernel.org>
3799L:	bpf@vger.kernel.org
3800S:	Maintained
3801F:	kernel/trace/bpf_trace.c
3802F:	kernel/bpf/stackmap.c
3803
3804BPF [NETWORKING] (tc BPF, sock_addr)
3805M:	Martin KaFai Lau <martin.lau@linux.dev>
3806M:	Daniel Borkmann <daniel@iogearbox.net>
3807R:	John Fastabend <john.fastabend@gmail.com>
3808L:	bpf@vger.kernel.org
3809L:	netdev@vger.kernel.org
3810S:	Maintained
3811F:	net/core/filter.c
3812F:	net/sched/act_bpf.c
3813F:	net/sched/cls_bpf.c
3814
3815BPF [NETWORKING] (struct_ops, reuseport)
3816M:	Martin KaFai Lau <martin.lau@linux.dev>
3817L:	bpf@vger.kernel.org
3818L:	netdev@vger.kernel.org
3819S:	Maintained
3820F:	kernel/bpf/bpf_struct*
3821
3822BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3823M:	KP Singh <kpsingh@kernel.org>
3824R:	Florent Revest <revest@chromium.org>
3825R:	Brendan Jackman <jackmanb@chromium.org>
3826L:	bpf@vger.kernel.org
3827S:	Maintained
3828F:	Documentation/bpf/prog_lsm.rst
3829F:	include/linux/bpf_lsm.h
3830F:	kernel/bpf/bpf_lsm.c
3831F:	security/bpf/
3832
3833BPF [STORAGE & CGROUPS]
3834M:	Martin KaFai Lau <martin.lau@linux.dev>
3835L:	bpf@vger.kernel.org
3836S:	Maintained
3837F:	kernel/bpf/cgroup.c
3838F:	kernel/bpf/*storage.c
3839F:	kernel/bpf/bpf_lru*
3840
3841BPF [RINGBUF]
3842M:	Andrii Nakryiko <andrii@kernel.org>
3843L:	bpf@vger.kernel.org
3844S:	Maintained
3845F:	kernel/bpf/ringbuf.c
3846
3847BPF [ITERATOR]
3848M:	Yonghong Song <yhs@fb.com>
3849L:	bpf@vger.kernel.org
3850S:	Maintained
3851F:	kernel/bpf/*iter.c
3852
3853BPF [L7 FRAMEWORK] (sockmap)
3854M:	John Fastabend <john.fastabend@gmail.com>
3855M:	Jakub Sitnicki <jakub@cloudflare.com>
3856L:	netdev@vger.kernel.org
3857L:	bpf@vger.kernel.org
3858S:	Maintained
3859F:	include/linux/skmsg.h
3860F:	net/core/skmsg.c
3861F:	net/core/sock_map.c
3862F:	net/ipv4/tcp_bpf.c
3863F:	net/ipv4/udp_bpf.c
3864F:	net/unix/unix_bpf.c
3865
3866BPF [LIBRARY] (libbpf)
3867M:	Andrii Nakryiko <andrii@kernel.org>
3868L:	bpf@vger.kernel.org
3869S:	Maintained
3870F:	tools/lib/bpf/
3871
3872BPF [TOOLING] (bpftool)
3873M:	Quentin Monnet <quentin@isovalent.com>
3874L:	bpf@vger.kernel.org
3875S:	Maintained
3876F:	kernel/bpf/disasm.*
3877F:	tools/bpf/bpftool/
3878
3879BPF [SELFTESTS] (Test Runners & Infrastructure)
3880M:	Andrii Nakryiko <andrii@kernel.org>
3881R:	Mykola Lysenko <mykolal@fb.com>
3882L:	bpf@vger.kernel.org
3883S:	Maintained
3884F:	tools/testing/selftests/bpf/
3885
3886BPF [DOCUMENTATION] (Related to Standardization)
3887R:	David Vernet <void@manifault.com>
3888L:	bpf@vger.kernel.org
3889L:	bpf@ietf.org
3890S:	Maintained
3891F:	Documentation/bpf/instruction-set.rst
3892
3893BPF [MISC]
3894L:	bpf@vger.kernel.org
3895S:	Odd Fixes
3896K:	(?:\b|_)bpf(?:\b|_)
3897
3898BROADCOM B44 10/100 ETHERNET DRIVER
3899M:	Michael Chan <michael.chan@broadcom.com>
3900L:	netdev@vger.kernel.org
3901S:	Supported
3902F:	drivers/net/ethernet/broadcom/b44.*
3903
3904BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3905M:	Florian Fainelli <f.fainelli@gmail.com>
3906L:	netdev@vger.kernel.org
3907L:	openwrt-devel@lists.openwrt.org (subscribers-only)
3908S:	Supported
3909F:	Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3910F:	drivers/net/dsa/b53/*
3911F:	drivers/net/dsa/bcm_sf2*
3912F:	include/linux/dsa/brcm.h
3913F:	include/linux/platform_data/b53.h
3914
3915BROADCOM BCMBCA ARM ARCHITECTURE
3916M:	William Zhang <william.zhang@broadcom.com>
3917M:	Anand Gore <anand.gore@broadcom.com>
3918M:	Kursad Oney <kursad.oney@broadcom.com>
3919M:	Florian Fainelli <f.fainelli@gmail.com>
3920M:	Rafał Miłecki <rafal@milecki.pl>
3921R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3922L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3923S:	Maintained
3924T:	git https://github.com/broadcom/stblinux.git
3925F:	Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3926F:	arch/arm64/boot/dts/broadcom/bcmbca/*
3927N:	bcmbca
3928N:	bcm[9]?47622
3929N:	bcm[9]?4912
3930N:	bcm[9]?63138
3931N:	bcm[9]?63146
3932N:	bcm[9]?63148
3933N:	bcm[9]?63158
3934N:	bcm[9]?63178
3935N:	bcm[9]?6756
3936N:	bcm[9]?6813
3937N:	bcm[9]?6846
3938N:	bcm[9]?6855
3939N:	bcm[9]?6856
3940N:	bcm[9]?6858
3941N:	bcm[9]?6878
3942
3943BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3944M:	Florian Fainelli <f.fainelli@gmail.com>
3945R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3946L:	linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3947L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3948S:	Maintained
3949T:	git https://github.com/broadcom/stblinux.git
3950F:	Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3951F:	drivers/pci/controller/pcie-brcmstb.c
3952F:	drivers/staging/vc04_services
3953N:	bcm2711
3954N:	bcm283*
3955N:	raspberrypi
3956
3957BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3958M:	Florian Fainelli <f.fainelli@gmail.com>
3959M:	Ray Jui <rjui@broadcom.com>
3960M:	Scott Branden <sbranden@broadcom.com>
3961R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3962S:	Maintained
3963T:	git https://github.com/broadcom/mach-bcm
3964F:	arch/arm/mach-bcm/
3965N:	bcm281*
3966N:	bcm113*
3967N:	bcm216*
3968N:	kona
3969
3970BROADCOM BCM47XX MIPS ARCHITECTURE
3971M:	Hauke Mehrtens <hauke@hauke-m.de>
3972M:	Rafał Miłecki <zajec5@gmail.com>
3973L:	linux-mips@vger.kernel.org
3974S:	Maintained
3975F:	Documentation/devicetree/bindings/mips/brcm/
3976F:	arch/mips/bcm47xx/*
3977F:	arch/mips/include/asm/mach-bcm47xx/*
3978
3979BROADCOM BCM4908 ETHERNET DRIVER
3980M:	Rafał Miłecki <rafal@milecki.pl>
3981R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3982L:	netdev@vger.kernel.org
3983S:	Maintained
3984F:	Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3985F:	drivers/net/ethernet/broadcom/bcm4908_enet.*
3986F:	drivers/net/ethernet/broadcom/unimac.h
3987
3988BROADCOM BCM4908 PINMUX DRIVER
3989M:	Rafał Miłecki <rafal@milecki.pl>
3990R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3991L:	linux-gpio@vger.kernel.org
3992S:	Maintained
3993F:	Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3994F:	drivers/pinctrl/bcm/pinctrl-bcm4908.c
3995
3996BROADCOM BCM5301X ARM ARCHITECTURE
3997M:	Florian Fainelli <f.fainelli@gmail.com>
3998M:	Hauke Mehrtens <hauke@hauke-m.de>
3999M:	Rafał Miłecki <zajec5@gmail.com>
4000R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4001L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4002S:	Maintained
4003F:	arch/arm/boot/dts/bcm470*
4004F:	arch/arm/boot/dts/bcm5301*
4005F:	arch/arm/boot/dts/bcm953012*
4006F:	arch/arm/mach-bcm/bcm_5301x.c
4007
4008BROADCOM BCM53573 ARM ARCHITECTURE
4009M:	Florian Fainelli <f.fainelli@gmail.com>
4010M:	Rafał Miłecki <rafal@milecki.pl>
4011R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4012L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4013S:	Maintained
4014F:	arch/arm/boot/dts/bcm47189*
4015F:	arch/arm/boot/dts/bcm53573*
4016
4017BROADCOM BCM63XX/BCM33XX UDC DRIVER
4018M:	Kevin Cernekee <cernekee@gmail.com>
4019L:	linux-usb@vger.kernel.org
4020S:	Maintained
4021F:	drivers/usb/gadget/udc/bcm63xx_udc.*
4022
4023BROADCOM BCM7XXX ARM ARCHITECTURE
4024M:	Florian Fainelli <f.fainelli@gmail.com>
4025R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4026L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4027S:	Maintained
4028T:	git https://github.com/broadcom/stblinux.git
4029F:	Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4030F:	arch/arm/boot/dts/bcm7*.dts*
4031F:	arch/arm/include/asm/hardware/cache-b15-rac.h
4032F:	arch/arm/mach-bcm/*brcmstb*
4033F:	arch/arm/mm/cache-b15-rac.c
4034F:	drivers/bus/brcmstb_gisb.c
4035F:	drivers/pci/controller/pcie-brcmstb.c
4036N:	brcmstb
4037N:	bcm7038
4038N:	bcm7120
4039
4040BROADCOM BDC DRIVER
4041M:	Justin Chen <justinpopo6@gmail.com>
4042M:	Al Cooper <alcooperx@gmail.com>
4043L:	linux-usb@vger.kernel.org
4044R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4045S:	Maintained
4046F:	Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4047F:	drivers/usb/gadget/udc/bdc/
4048
4049BROADCOM BMIPS CPUFREQ DRIVER
4050M:	Markus Mayer <mmayer@broadcom.com>
4051R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4052L:	linux-pm@vger.kernel.org
4053S:	Maintained
4054F:	drivers/cpufreq/bmips-cpufreq.c
4055
4056BROADCOM BMIPS MIPS ARCHITECTURE
4057M:	Florian Fainelli <f.fainelli@gmail.com>
4058R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4059L:	linux-mips@vger.kernel.org
4060S:	Maintained
4061T:	git https://github.com/broadcom/stblinux.git
4062F:	arch/mips/bmips/*
4063F:	arch/mips/boot/dts/brcm/bcm*.dts*
4064F:	arch/mips/include/asm/mach-bmips/*
4065F:	arch/mips/kernel/*bmips*
4066F:	drivers/soc/bcm/bcm63xx
4067F:	drivers/irqchip/irq-bcm63*
4068F:	drivers/irqchip/irq-bcm7*
4069F:	drivers/irqchip/irq-brcmstb*
4070F:	include/linux/bcm963xx_nvram.h
4071F:	include/linux/bcm963xx_tag.h
4072
4073BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4074M:	Rasesh Mody <rmody@marvell.com>
4075M:	GR-Linux-NIC-Dev@marvell.com
4076L:	netdev@vger.kernel.org
4077S:	Supported
4078F:	drivers/net/ethernet/broadcom/bnx2.*
4079F:	drivers/net/ethernet/broadcom/bnx2_*
4080
4081BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4082M:	Saurav Kashyap <skashyap@marvell.com>
4083M:	Javed Hasan <jhasan@marvell.com>
4084M:	GR-QLogic-Storage-Upstream@marvell.com
4085L:	linux-scsi@vger.kernel.org
4086S:	Supported
4087F:	drivers/scsi/bnx2fc/
4088
4089BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4090M:	Nilesh Javali <njavali@marvell.com>
4091M:	Manish Rangankar <mrangankar@marvell.com>
4092M:	GR-QLogic-Storage-Upstream@marvell.com
4093L:	linux-scsi@vger.kernel.org
4094S:	Supported
4095F:	drivers/scsi/bnx2i/
4096
4097BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4098M:	Ariel Elior <aelior@marvell.com>
4099M:	Sudarsana Kalluru <skalluru@marvell.com>
4100M:	Manish Chopra <manishc@marvell.com>
4101L:	netdev@vger.kernel.org
4102S:	Supported
4103F:	drivers/net/ethernet/broadcom/bnx2x/
4104
4105BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4106M:	Michael Chan <michael.chan@broadcom.com>
4107L:	netdev@vger.kernel.org
4108S:	Supported
4109F:	drivers/firmware/broadcom/tee_bnxt_fw.c
4110F:	drivers/net/ethernet/broadcom/bnxt/
4111F:	include/linux/firmware/broadcom/tee_bnxt_fw.h
4112
4113BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4114M:	Arend van Spriel <aspriel@gmail.com>
4115M:	Franky Lin <franky.lin@broadcom.com>
4116M:	Hante Meuleman <hante.meuleman@broadcom.com>
4117L:	linux-wireless@vger.kernel.org
4118L:	brcm80211-dev-list.pdl@broadcom.com
4119L:	SHA-cyfmac-dev-list@infineon.com
4120S:	Supported
4121F:	drivers/net/wireless/broadcom/brcm80211/
4122
4123BROADCOM BRCMSTB GPIO DRIVER
4124M:	Doug Berger <opendmb@gmail.com>
4125M:	Florian Fainelli <f.fainelli@gmail.com>
4126R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4127S:	Supported
4128F:	Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4129F:	drivers/gpio/gpio-brcmstb.c
4130
4131BROADCOM BRCMSTB I2C DRIVER
4132M:	Kamal Dasu <kdasu.kdev@gmail.com>
4133R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4134L:	linux-i2c@vger.kernel.org
4135S:	Supported
4136F:	Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4137F:	drivers/i2c/busses/i2c-brcmstb.c
4138
4139BROADCOM BRCMSTB UART DRIVER
4140M:	Al Cooper <alcooperx@gmail.com>
4141R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4142L:	linux-serial@vger.kernel.org
4143S:	Maintained
4144F:	Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4145F:	drivers/tty/serial/8250/8250_bcm7271.c
4146
4147BROADCOM BRCMSTB USB EHCI DRIVER
4148M:	Justin Chen <justinpopo6@gmail.com>
4149M:	Al Cooper <alcooperx@gmail.com>
4150R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4151L:	linux-usb@vger.kernel.org
4152S:	Maintained
4153F:	Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4154F:	drivers/usb/host/ehci-brcm.*
4155
4156BROADCOM BRCMSTB USB PIN MAP DRIVER
4157M:	Al Cooper <alcooperx@gmail.com>
4158R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4159L:	linux-usb@vger.kernel.org
4160S:	Maintained
4161F:	Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4162F:	drivers/usb/misc/brcmstb-usb-pinmap.c
4163
4164BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4165M:	Justin Chen <justinpopo6@gmail.com>
4166M:	Al Cooper <alcooperx@gmail.com>
4167R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4168L:	linux-kernel@vger.kernel.org
4169S:	Maintained
4170F:	drivers/phy/broadcom/phy-brcm-usb*
4171
4172BROADCOM Broadband SoC High Speed SPI Controller DRIVER
4173M:	William Zhang <william.zhang@broadcom.com>
4174M:	Kursad Oney <kursad.oney@broadcom.com>
4175M:	Jonas Gorski <jonas.gorski@gmail.com>
4176R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4177L:	linux-spi@vger.kernel.org
4178S:	Maintained
4179F:	Documentation/devicetree/bindings/spi/brcm,bcm63xx-hsspi.yaml
4180F:	drivers/spi/spi-bcm63xx-hsspi.c
4181F:	drivers/spi/spi-bcmbca-hsspi.c
4182
4183BROADCOM ETHERNET PHY DRIVERS
4184M:	Florian Fainelli <f.fainelli@gmail.com>
4185R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4186L:	netdev@vger.kernel.org
4187S:	Supported
4188F:	Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4189F:	drivers/net/phy/bcm*.[ch]
4190F:	drivers/net/phy/broadcom.c
4191F:	include/linux/brcmphy.h
4192
4193BROADCOM GENET ETHERNET DRIVER
4194M:	Doug Berger <opendmb@gmail.com>
4195M:	Florian Fainelli <f.fainelli@gmail.com>
4196R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4197L:	netdev@vger.kernel.org
4198S:	Supported
4199F:	Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4200F:	Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4201F:	drivers/net/ethernet/broadcom/genet/
4202F:	drivers/net/ethernet/broadcom/unimac.h
4203F:	drivers/net/mdio/mdio-bcm-unimac.c
4204F:	include/linux/platform_data/bcmgenet.h
4205F:	include/linux/platform_data/mdio-bcm-unimac.h
4206
4207BROADCOM IPROC ARM ARCHITECTURE
4208M:	Ray Jui <rjui@broadcom.com>
4209M:	Scott Branden <sbranden@broadcom.com>
4210R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4211L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4212S:	Maintained
4213T:	git https://github.com/broadcom/stblinux.git
4214F:	arch/arm64/boot/dts/broadcom/northstar2/*
4215F:	arch/arm64/boot/dts/broadcom/stingray/*
4216F:	drivers/clk/bcm/clk-ns*
4217F:	drivers/clk/bcm/clk-sr*
4218F:	drivers/pinctrl/bcm/pinctrl-ns*
4219F:	include/dt-bindings/clock/bcm-sr*
4220N:	iproc
4221N:	cygnus
4222N:	bcm[-_]nsp
4223N:	bcm9113*
4224N:	bcm9583*
4225N:	bcm9585*
4226N:	bcm9586*
4227N:	bcm988312
4228N:	bcm113*
4229N:	bcm583*
4230N:	bcm585*
4231N:	bcm586*
4232N:	bcm88312
4233N:	hr2
4234N:	stingray
4235
4236BROADCOM IPROC GBIT ETHERNET DRIVER
4237M:	Rafał Miłecki <rafal@milecki.pl>
4238R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4239L:	netdev@vger.kernel.org
4240S:	Maintained
4241F:	Documentation/devicetree/bindings/net/brcm,amac.yaml
4242F:	drivers/net/ethernet/broadcom/bgmac*
4243F:	drivers/net/ethernet/broadcom/unimac.h
4244
4245BROADCOM KONA GPIO DRIVER
4246M:	Ray Jui <rjui@broadcom.com>
4247R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4248S:	Supported
4249F:	Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4250F:	drivers/gpio/gpio-bcm-kona.c
4251
4252BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4253M:	Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4254M:	Kashyap Desai <kashyap.desai@broadcom.com>
4255M:	Sumit Saxena <sumit.saxena@broadcom.com>
4256M:	Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4257L:	mpi3mr-linuxdrv.pdl@broadcom.com
4258L:	linux-scsi@vger.kernel.org
4259S:	Supported
4260W:	https://www.broadcom.com/support/storage
4261F:	drivers/scsi/mpi3mr/
4262
4263BROADCOM NETXTREME-E ROCE DRIVER
4264M:	Selvin Xavier <selvin.xavier@broadcom.com>
4265L:	linux-rdma@vger.kernel.org
4266S:	Supported
4267W:	http://www.broadcom.com
4268F:	drivers/infiniband/hw/bnxt_re/
4269F:	include/uapi/rdma/bnxt_re-abi.h
4270
4271BROADCOM NVRAM DRIVER
4272M:	Rafał Miłecki <zajec5@gmail.com>
4273L:	linux-mips@vger.kernel.org
4274S:	Maintained
4275F:	drivers/firmware/broadcom/*
4276
4277BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4278M:	Rafał Miłecki <rafal@milecki.pl>
4279M:	Florian Fainelli <f.fainelli@gmail.com>
4280R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4281L:	linux-pm@vger.kernel.org
4282S:	Maintained
4283T:	git https://github.com/broadcom/stblinux.git
4284F:	drivers/soc/bcm/bcm63xx/bcm-pmb.c
4285F:	include/dt-bindings/soc/bcm-pmb.h
4286
4287BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4288M:	Rafał Miłecki <zajec5@gmail.com>
4289L:	linux-wireless@vger.kernel.org
4290S:	Maintained
4291F:	drivers/bcma/
4292F:	include/linux/bcma/
4293
4294BROADCOM SPI DRIVER
4295M:	Kamal Dasu <kdasu.kdev@gmail.com>
4296R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4297S:	Maintained
4298F:	Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4299F:	drivers/spi/spi-bcm-qspi.*
4300F:	drivers/spi/spi-brcmstb-qspi.c
4301F:	drivers/spi/spi-iproc-qspi.c
4302
4303BROADCOM STB AVS CPUFREQ DRIVER
4304M:	Markus Mayer <mmayer@broadcom.com>
4305R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4306L:	linux-pm@vger.kernel.org
4307S:	Maintained
4308F:	Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4309F:	drivers/cpufreq/brcmstb*
4310
4311BROADCOM STB AVS TMON DRIVER
4312M:	Markus Mayer <mmayer@broadcom.com>
4313R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4314L:	linux-pm@vger.kernel.org
4315S:	Maintained
4316F:	Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4317F:	drivers/thermal/broadcom/brcmstb*
4318
4319BROADCOM STB DPFE DRIVER
4320M:	Markus Mayer <mmayer@broadcom.com>
4321R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4322L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4323S:	Maintained
4324F:	Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4325F:	drivers/memory/brcmstb_dpfe.c
4326
4327BROADCOM STB NAND FLASH DRIVER
4328M:	Brian Norris <computersforpeace@gmail.com>
4329M:	Kamal Dasu <kdasu.kdev@gmail.com>
4330R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4331L:	linux-mtd@lists.infradead.org
4332S:	Maintained
4333F:	drivers/mtd/nand/raw/brcmnand/
4334F:	include/linux/platform_data/brcmnand.h
4335
4336BROADCOM STB PCIE DRIVER
4337M:	Jim Quinlan <jim2101024@gmail.com>
4338M:	Nicolas Saenz Julienne <nsaenz@kernel.org>
4339M:	Florian Fainelli <f.fainelli@gmail.com>
4340R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4341L:	linux-pci@vger.kernel.org
4342S:	Maintained
4343F:	Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4344F:	drivers/pci/controller/pcie-brcmstb.c
4345
4346BROADCOM SYSTEMPORT ETHERNET DRIVER
4347M:	Florian Fainelli <f.fainelli@gmail.com>
4348R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4349L:	netdev@vger.kernel.org
4350S:	Supported
4351F:	drivers/net/ethernet/broadcom/bcmsysport.*
4352F:	drivers/net/ethernet/broadcom/unimac.h
4353F:	Documentation/devicetree/bindings/net/brcm,systemport.yaml
4354
4355BROADCOM TG3 GIGABIT ETHERNET DRIVER
4356M:	Siva Reddy Kallam <siva.kallam@broadcom.com>
4357M:	Prashant Sreedharan <prashant@broadcom.com>
4358M:	Michael Chan <mchan@broadcom.com>
4359L:	netdev@vger.kernel.org
4360S:	Supported
4361F:	drivers/net/ethernet/broadcom/tg3.*
4362
4363BROADCOM VK DRIVER
4364M:	Scott Branden <scott.branden@broadcom.com>
4365R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4366S:	Supported
4367F:	drivers/misc/bcm-vk/
4368F:	include/uapi/linux/misc/bcm_vk.h
4369
4370BROCADE BFA FC SCSI DRIVER
4371M:	Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4372M:	Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4373L:	linux-scsi@vger.kernel.org
4374S:	Supported
4375F:	drivers/scsi/bfa/
4376
4377BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4378M:	Rasesh Mody <rmody@marvell.com>
4379M:	Sudarsana Kalluru <skalluru@marvell.com>
4380M:	GR-Linux-NIC-Dev@marvell.com
4381L:	netdev@vger.kernel.org
4382S:	Supported
4383F:	drivers/net/ethernet/brocade/bna/
4384
4385BSG (block layer generic sg v4 driver)
4386M:	FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4387L:	linux-scsi@vger.kernel.org
4388S:	Supported
4389F:	block/bsg.c
4390F:	include/linux/bsg.h
4391F:	include/uapi/linux/bsg.h
4392
4393BT87X AUDIO DRIVER
4394M:	Clemens Ladisch <clemens@ladisch.de>
4395L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
4396S:	Maintained
4397T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4398F:	Documentation/sound/cards/bt87x.rst
4399F:	sound/pci/bt87x.c
4400
4401BT8XXGPIO DRIVER
4402M:	Michael Buesch <m@bues.ch>
4403S:	Maintained
4404W:	http://bu3sch.de/btgpio.php
4405F:	drivers/gpio/gpio-bt8xx.c
4406
4407BTRFS FILE SYSTEM
4408M:	Chris Mason <clm@fb.com>
4409M:	Josef Bacik <josef@toxicpanda.com>
4410M:	David Sterba <dsterba@suse.com>
4411L:	linux-btrfs@vger.kernel.org
4412S:	Maintained
4413W:	https://btrfs.readthedocs.io
4414W:	https://btrfs.wiki.kernel.org/
4415Q:	https://patchwork.kernel.org/project/linux-btrfs/list/
4416C:	irc://irc.libera.chat/btrfs
4417T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4418F:	Documentation/filesystems/btrfs.rst
4419F:	fs/btrfs/
4420F:	include/linux/btrfs*
4421F:	include/trace/events/btrfs.h
4422F:	include/uapi/linux/btrfs*
4423
4424BTTV VIDEO4LINUX DRIVER
4425M:	Mauro Carvalho Chehab <mchehab@kernel.org>
4426L:	linux-media@vger.kernel.org
4427S:	Odd fixes
4428W:	https://linuxtv.org
4429T:	git git://linuxtv.org/media_tree.git
4430F:	Documentation/driver-api/media/drivers/bttv*
4431F:	drivers/media/pci/bt8xx/bttv*
4432
4433BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4434M:	Chanwoo Choi <cw00.choi@samsung.com>
4435L:	linux-pm@vger.kernel.org
4436L:	linux-samsung-soc@vger.kernel.org
4437S:	Maintained
4438T:	git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4439F:	Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4440F:	drivers/devfreq/exynos-bus.c
4441
4442BUSLOGIC SCSI DRIVER
4443M:	Khalid Aziz <khalid@gonehiking.org>
4444L:	linux-scsi@vger.kernel.org
4445S:	Maintained
4446F:	drivers/scsi/BusLogic.*
4447F:	drivers/scsi/FlashPoint.*
4448
4449BXCAN CAN NETWORK DRIVER
4450M:	Dario Binacchi <dario.binacchi@amarulasolutions.com>
4451L:	linux-can@vger.kernel.org
4452S:	Maintained
4453F:	Documentation/devicetree/bindings/net/can/st,stm32-bxcan.yaml
4454F:	drivers/net/can/bxcan.c
4455
4456C-MEDIA CMI8788 DRIVER
4457M:	Clemens Ladisch <clemens@ladisch.de>
4458L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
4459S:	Maintained
4460T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4461F:	sound/pci/oxygen/
4462
4463C-SKY ARCHITECTURE
4464M:	Guo Ren <guoren@kernel.org>
4465L:	linux-csky@vger.kernel.org
4466S:	Supported
4467T:	git https://github.com/c-sky/csky-linux.git
4468F:	Documentation/devicetree/bindings/csky/
4469F:	Documentation/devicetree/bindings/interrupt-controller/csky,*
4470F:	Documentation/devicetree/bindings/timer/csky,*
4471F:	arch/csky/
4472F:	drivers/clocksource/timer-gx6605s.c
4473F:	drivers/clocksource/timer-mp-csky.c
4474F:	drivers/irqchip/irq-csky-*
4475N:	csky
4476K:	csky
4477
4478CA8210 IEEE-802.15.4 RADIO DRIVER
4479L:	linux-wpan@vger.kernel.org
4480S:	Orphan
4481W:	https://github.com/Cascoda/ca8210-linux.git
4482F:	Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4483F:	drivers/net/ieee802154/ca8210.c
4484
4485CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4486M:	Damien Le Moal <dlemoal@kernel.org>
4487L:	linux-riscv@lists.infradead.org
4488L:	linux-gpio@vger.kernel.org (pinctrl driver)
4489F:	Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4490F:	drivers/pinctrl/pinctrl-k210.c
4491
4492CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4493M:	Damien Le Moal <dlemoal@kernel.org>
4494L:	linux-kernel@vger.kernel.org
4495L:	linux-riscv@lists.infradead.org
4496S:	Maintained
4497F:	Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4498F:	drivers/reset/reset-k210.c
4499
4500CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4501M:	Damien Le Moal <dlemoal@kernel.org>
4502L:	linux-riscv@lists.infradead.org
4503S:	Maintained
4504F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4505F:	drivers/soc/canaan/
4506F:	include/soc/canaan/
4507
4508CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4509M:	David Howells <dhowells@redhat.com>
4510L:	linux-cachefs@redhat.com (moderated for non-subscribers)
4511S:	Supported
4512F:	Documentation/filesystems/caching/cachefiles.rst
4513F:	fs/cachefiles/
4514
4515CADENCE MIPI-CSI2 BRIDGES
4516M:	Maxime Ripard <mripard@kernel.org>
4517L:	linux-media@vger.kernel.org
4518S:	Maintained
4519F:	Documentation/devicetree/bindings/media/cdns,*.txt
4520F:	drivers/media/platform/cadence/cdns-csi2*
4521
4522CADENCE NAND DRIVER
4523L:	linux-mtd@lists.infradead.org
4524S:	Orphan
4525F:	Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4526F:	drivers/mtd/nand/raw/cadence-nand-controller.c
4527
4528CADENCE USB3 DRD IP DRIVER
4529M:	Peter Chen <peter.chen@kernel.org>
4530M:	Pawel Laszczak <pawell@cadence.com>
4531R:	Roger Quadros <rogerq@kernel.org>
4532R:	Aswath Govindraju <a-govindraju@ti.com>
4533L:	linux-usb@vger.kernel.org
4534S:	Maintained
4535T:	git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4536F:	Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4537F:	drivers/usb/cdns3/
4538X:	drivers/usb/cdns3/cdnsp*
4539
4540CADENCE USBSSP DRD IP DRIVER
4541M:	Pawel Laszczak <pawell@cadence.com>
4542L:	linux-usb@vger.kernel.org
4543S:	Maintained
4544T:	git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4545F:	drivers/usb/cdns3/
4546X:	drivers/usb/cdns3/cdns3*
4547
4548CADET FM/AM RADIO RECEIVER DRIVER
4549M:	Hans Verkuil <hverkuil@xs4all.nl>
4550L:	linux-media@vger.kernel.org
4551S:	Maintained
4552W:	https://linuxtv.org
4553T:	git git://linuxtv.org/media_tree.git
4554F:	drivers/media/radio/radio-cadet*
4555
4556CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4557L:	linux-media@vger.kernel.org
4558S:	Orphan
4559T:	git git://linuxtv.org/media_tree.git
4560F:	Documentation/admin-guide/media/cafe_ccic*
4561F:	drivers/media/platform/marvell/
4562
4563CAIF NETWORK LAYER
4564L:	netdev@vger.kernel.org
4565S:	Orphan
4566F:	Documentation/networking/caif/
4567F:	drivers/net/caif/
4568F:	include/net/caif/
4569F:	include/uapi/linux/caif/
4570F:	net/caif/
4571
4572CAKE QDISC
4573M:	Toke Høiland-Jørgensen <toke@toke.dk>
4574L:	cake@lists.bufferbloat.net (moderated for non-subscribers)
4575S:	Maintained
4576F:	net/sched/sch_cake.c
4577
4578CAN NETWORK DRIVERS
4579M:	Wolfgang Grandegger <wg@grandegger.com>
4580M:	Marc Kleine-Budde <mkl@pengutronix.de>
4581L:	linux-can@vger.kernel.org
4582S:	Maintained
4583W:	https://github.com/linux-can
4584T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4585T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4586F:	Documentation/devicetree/bindings/net/can/
4587F:	Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4588F:	drivers/net/can/
4589F:	drivers/phy/phy-can-transceiver.c
4590F:	include/linux/can/bittiming.h
4591F:	include/linux/can/dev.h
4592F:	include/linux/can/length.h
4593F:	include/linux/can/platform/
4594F:	include/linux/can/rx-offload.h
4595F:	include/uapi/linux/can/error.h
4596F:	include/uapi/linux/can/netlink.h
4597F:	include/uapi/linux/can/vxcan.h
4598
4599CAN NETWORK LAYER
4600M:	Oliver Hartkopp <socketcan@hartkopp.net>
4601M:	Marc Kleine-Budde <mkl@pengutronix.de>
4602L:	linux-can@vger.kernel.org
4603S:	Maintained
4604W:	https://github.com/linux-can
4605T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4606T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4607F:	Documentation/networking/can.rst
4608F:	include/linux/can/can-ml.h
4609F:	include/linux/can/core.h
4610F:	include/linux/can/skb.h
4611F:	include/net/netns/can.h
4612F:	include/uapi/linux/can.h
4613F:	include/uapi/linux/can/bcm.h
4614F:	include/uapi/linux/can/gw.h
4615F:	include/uapi/linux/can/isotp.h
4616F:	include/uapi/linux/can/raw.h
4617F:	net/can/
4618
4619CAN-J1939 NETWORK LAYER
4620M:	Robin van der Gracht <robin@protonic.nl>
4621M:	Oleksij Rempel <o.rempel@pengutronix.de>
4622R:	kernel@pengutronix.de
4623L:	linux-can@vger.kernel.org
4624S:	Maintained
4625F:	Documentation/networking/j1939.rst
4626F:	include/uapi/linux/can/j1939.h
4627F:	net/can/j1939/
4628
4629CAPABILITIES
4630M:	Serge Hallyn <serge@hallyn.com>
4631L:	linux-security-module@vger.kernel.org
4632S:	Supported
4633F:	include/linux/capability.h
4634F:	include/uapi/linux/capability.h
4635F:	kernel/capability.c
4636F:	security/commoncap.c
4637
4638CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4639M:	Kevin Tsai <ktsai@capellamicro.com>
4640S:	Maintained
4641F:	drivers/iio/light/cm*
4642
4643CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4644M:	Christian Lamparter <chunkeey@googlemail.com>
4645L:	linux-wireless@vger.kernel.org
4646S:	Maintained
4647W:	https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4648F:	drivers/net/wireless/ath/carl9170/
4649
4650CAVIUM I2C DRIVER
4651M:	Robert Richter <rric@kernel.org>
4652S:	Odd Fixes
4653W:	http://www.marvell.com
4654F:	drivers/i2c/busses/i2c-octeon*
4655F:	drivers/i2c/busses/i2c-thunderx*
4656
4657CAVIUM LIQUIDIO NETWORK DRIVER
4658M:	Derek Chickles <dchickles@marvell.com>
4659M:	Satanand Burla <sburla@marvell.com>
4660M:	Felix Manlunas <fmanlunas@marvell.com>
4661L:	netdev@vger.kernel.org
4662S:	Supported
4663W:	http://www.marvell.com
4664F:	drivers/net/ethernet/cavium/liquidio/
4665
4666CAVIUM MMC DRIVER
4667M:	Robert Richter <rric@kernel.org>
4668S:	Odd Fixes
4669W:	http://www.marvell.com
4670F:	drivers/mmc/host/cavium*
4671
4672CAVIUM OCTEON-TX CRYPTO DRIVER
4673M:	George Cherian <gcherian@marvell.com>
4674L:	linux-crypto@vger.kernel.org
4675S:	Supported
4676W:	http://www.marvell.com
4677F:	drivers/crypto/cavium/cpt/
4678
4679CAVIUM THUNDERX2 ARM64 SOC
4680M:	Robert Richter <rric@kernel.org>
4681L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4682S:	Odd Fixes
4683F:	Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4684F:	arch/arm64/boot/dts/cavium/thunder2-99xx*
4685
4686CBS/ETF/TAPRIO QDISCS
4687M:	Vinicius Costa Gomes <vinicius.gomes@intel.com>
4688S:	Maintained
4689L:	netdev@vger.kernel.org
4690F:	net/sched/sch_cbs.c
4691F:	net/sched/sch_etf.c
4692F:	net/sched/sch_taprio.c
4693
4694CC2520 IEEE-802.15.4 RADIO DRIVER
4695M:	Stefan Schmidt <stefan@datenfreihafen.org>
4696L:	linux-wpan@vger.kernel.org
4697S:	Odd Fixes
4698F:	Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4699F:	drivers/net/ieee802154/cc2520.c
4700
4701CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4702M:	Gilad Ben-Yossef <gilad@benyossef.com>
4703L:	linux-crypto@vger.kernel.org
4704S:	Supported
4705W:	https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4706F:	drivers/crypto/ccree/
4707
4708CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4709M:	Hadar Gat <hadar.gat@arm.com>
4710L:	linux-crypto@vger.kernel.org
4711S:	Supported
4712F:	drivers/char/hw_random/cctrng.c
4713F:	drivers/char/hw_random/cctrng.h
4714F:	Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4715W:	https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4716
4717CEC FRAMEWORK
4718M:	Hans Verkuil <hverkuil-cisco@xs4all.nl>
4719L:	linux-media@vger.kernel.org
4720S:	Supported
4721W:	http://linuxtv.org
4722T:	git git://linuxtv.org/media_tree.git
4723F:	Documentation/ABI/testing/debugfs-cec-error-inj
4724F:	Documentation/devicetree/bindings/media/cec/cec-common.yaml
4725F:	Documentation/driver-api/media/cec-core.rst
4726F:	Documentation/userspace-api/media/cec
4727F:	drivers/media/cec/
4728F:	drivers/media/rc/keymaps/rc-cec.c
4729F:	include/media/cec-notifier.h
4730F:	include/media/cec.h
4731F:	include/uapi/linux/cec-funcs.h
4732F:	include/uapi/linux/cec.h
4733
4734CEC GPIO DRIVER
4735M:	Hans Verkuil <hverkuil-cisco@xs4all.nl>
4736L:	linux-media@vger.kernel.org
4737S:	Supported
4738W:	http://linuxtv.org
4739T:	git git://linuxtv.org/media_tree.git
4740F:	Documentation/devicetree/bindings/media/cec/cec-gpio.yaml
4741F:	drivers/media/cec/platform/cec-gpio/
4742
4743CELL BROADBAND ENGINE ARCHITECTURE
4744M:	Arnd Bergmann <arnd@arndb.de>
4745L:	linuxppc-dev@lists.ozlabs.org
4746S:	Supported
4747W:	http://www.ibm.com/developerworks/power/cell/
4748F:	arch/powerpc/include/asm/cell*.h
4749F:	arch/powerpc/include/asm/spu*.h
4750F:	arch/powerpc/include/uapi/asm/spu*.h
4751F:	arch/powerpc/platforms/cell/
4752
4753CELLWISE CW2015 BATTERY DRIVER
4754M:	Tobias Schrammm <t.schramm@manjaro.org>
4755S:	Maintained
4756F:	Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4757F:	drivers/power/supply/cw2015_battery.c
4758
4759CEPH COMMON CODE (LIBCEPH)
4760M:	Ilya Dryomov <idryomov@gmail.com>
4761M:	Xiubo Li <xiubli@redhat.com>
4762R:	Jeff Layton <jlayton@kernel.org>
4763L:	ceph-devel@vger.kernel.org
4764S:	Supported
4765W:	http://ceph.com/
4766T:	git https://github.com/ceph/ceph-client.git
4767F:	include/linux/ceph/
4768F:	include/linux/crush/
4769F:	net/ceph/
4770
4771CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4772M:	Xiubo Li <xiubli@redhat.com>
4773M:	Ilya Dryomov <idryomov@gmail.com>
4774R:	Jeff Layton <jlayton@kernel.org>
4775L:	ceph-devel@vger.kernel.org
4776S:	Supported
4777W:	http://ceph.com/
4778T:	git https://github.com/ceph/ceph-client.git
4779F:	Documentation/filesystems/ceph.rst
4780F:	fs/ceph/
4781
4782CERTIFICATE HANDLING
4783M:	David Howells <dhowells@redhat.com>
4784M:	David Woodhouse <dwmw2@infradead.org>
4785L:	keyrings@vger.kernel.org
4786S:	Maintained
4787F:	Documentation/admin-guide/module-signing.rst
4788F:	certs/
4789F:	scripts/sign-file.c
4790F:	tools/certs/
4791
4792CFAG12864B LCD DRIVER
4793M:	Miguel Ojeda <ojeda@kernel.org>
4794S:	Maintained
4795F:	drivers/auxdisplay/cfag12864b.c
4796F:	include/linux/cfag12864b.h
4797
4798CFAG12864BFB LCD FRAMEBUFFER DRIVER
4799M:	Miguel Ojeda <ojeda@kernel.org>
4800S:	Maintained
4801F:	drivers/auxdisplay/cfag12864bfb.c
4802F:	include/linux/cfag12864b.h
4803
4804CHAR and MISC DRIVERS
4805M:	Arnd Bergmann <arnd@arndb.de>
4806M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4807S:	Supported
4808T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4809F:	drivers/char/
4810F:	drivers/misc/
4811F:	include/linux/miscdevice.h
4812X:	drivers/char/agp/
4813X:	drivers/char/hw_random/
4814X:	drivers/char/ipmi/
4815X:	drivers/char/random.c
4816X:	drivers/char/tpm/
4817
4818CHECKPATCH
4819M:	Andy Whitcroft <apw@canonical.com>
4820M:	Joe Perches <joe@perches.com>
4821R:	Dwaipayan Ray <dwaipayanray1@gmail.com>
4822R:	Lukas Bulwahn <lukas.bulwahn@gmail.com>
4823S:	Maintained
4824F:	scripts/checkpatch.pl
4825
4826CHECKPATCH DOCUMENTATION
4827M:	Dwaipayan Ray <dwaipayanray1@gmail.com>
4828M:	Lukas Bulwahn <lukas.bulwahn@gmail.com>
4829R:	Joe Perches <joe@perches.com>
4830S:	Maintained
4831F:	Documentation/dev-tools/checkpatch.rst
4832
4833CHINESE DOCUMENTATION
4834M:	Alex Shi <alexs@kernel.org>
4835M:	Yanteng Si <siyanteng@loongson.cn>
4836S:	Maintained
4837F:	Documentation/translations/zh_CN/
4838
4839CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4840M:	Peter Chen <peter.chen@kernel.org>
4841L:	linux-usb@vger.kernel.org
4842S:	Maintained
4843T:	git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4844F:	drivers/usb/chipidea/
4845
4846CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4847M:	Hans de Goede <hdegoede@redhat.com>
4848L:	linux-input@vger.kernel.org
4849S:	Maintained
4850F:	Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4851F:	drivers/input/touchscreen/chipone_icn8318.c
4852
4853CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4854M:	Hans de Goede <hdegoede@redhat.com>
4855L:	linux-input@vger.kernel.org
4856S:	Maintained
4857F:	drivers/input/touchscreen/chipone_icn8505.c
4858
4859CHROME HARDWARE PLATFORM SUPPORT
4860M:	Benson Leung <bleung@chromium.org>
4861L:	chrome-platform@lists.linux.dev
4862S:	Maintained
4863T:	git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4864F:	drivers/platform/chrome/
4865
4866CHROMEOS EC CODEC DRIVER
4867M:	Cheng-Yi Chiang <cychiang@chromium.org>
4868M:	Tzung-Bi Shih <tzungbi@kernel.org>
4869R:	Guenter Roeck <groeck@chromium.org>
4870L:	chrome-platform@lists.linux.dev
4871S:	Maintained
4872F:	Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4873F:	sound/soc/codecs/cros_ec_codec.*
4874
4875CHROMEOS EC UART DRIVER
4876M:	Bhanu Prakash Maiya <bhanumaiya@chromium.org>
4877R:	Benson Leung <bleung@chromium.org>
4878R:	Tzung-Bi Shih <tzungbi@kernel.org>
4879S:	Maintained
4880F:	drivers/platform/chrome/cros_ec_uart.c
4881
4882CHROMEOS EC SUBDRIVERS
4883M:	Benson Leung <bleung@chromium.org>
4884R:	Guenter Roeck <groeck@chromium.org>
4885L:	chrome-platform@lists.linux.dev
4886S:	Maintained
4887F:	drivers/power/supply/cros_usbpd-charger.c
4888N:	cros_ec
4889N:	cros-ec
4890
4891CHROMEOS EC USB TYPE-C DRIVER
4892M:	Prashant Malani <pmalani@chromium.org>
4893L:	chrome-platform@lists.linux.dev
4894S:	Maintained
4895F:	drivers/platform/chrome/cros_ec_typec.*
4896F:	drivers/platform/chrome/cros_typec_switch.c
4897F:	drivers/platform/chrome/cros_typec_vdm.*
4898
4899CHROMEOS EC USB PD NOTIFY DRIVER
4900M:	Prashant Malani <pmalani@chromium.org>
4901L:	chrome-platform@lists.linux.dev
4902S:	Maintained
4903F:	drivers/platform/chrome/cros_usbpd_notify.c
4904F:	include/linux/platform_data/cros_usbpd_notify.h
4905
4906CHROMEOS HPS DRIVER
4907M:	Dan Callaghan <dcallagh@chromium.org>
4908R:	Sami Kyöstilä <skyostil@chromium.org>
4909S:	Maintained
4910F:	drivers/platform/chrome/cros_hps_i2c.c
4911
4912CHRONTEL CH7322 CEC DRIVER
4913M:	Joe Tessler <jrt@google.com>
4914L:	linux-media@vger.kernel.org
4915S:	Maintained
4916T:	git git://linuxtv.org/media_tree.git
4917F:	Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4918F:	drivers/media/cec/i2c/ch7322.c
4919
4920CIRRUS LOGIC AUDIO CODEC DRIVERS
4921M:	James Schulman <james.schulman@cirrus.com>
4922M:	David Rhodes <david.rhodes@cirrus.com>
4923M:	Lucas Tanure <tanureal@opensource.cirrus.com>
4924M:	Richard Fitzgerald <rf@opensource.cirrus.com>
4925L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
4926L:	patches@opensource.cirrus.com
4927S:	Maintained
4928F:	Documentation/devicetree/bindings/sound/cirrus,cs*
4929F:	include/dt-bindings/sound/cs*
4930F:	include/sound/cs*
4931F:	sound/pci/hda/cs*
4932F:	sound/pci/hda/hda_cs_dsp_ctl.*
4933F:	sound/soc/codecs/cs*
4934
4935CIRRUS LOGIC DSP FIRMWARE DRIVER
4936M:	Simon Trimmer <simont@opensource.cirrus.com>
4937M:	Charles Keepax <ckeepax@opensource.cirrus.com>
4938M:	Richard Fitzgerald <rf@opensource.cirrus.com>
4939L:	patches@opensource.cirrus.com
4940S:	Supported
4941W:	https://github.com/CirrusLogic/linux-drivers/wiki
4942T:	git https://github.com/CirrusLogic/linux-drivers.git
4943F:	drivers/firmware/cirrus/*
4944F:	include/linux/firmware/cirrus/*
4945
4946CIRRUS LOGIC EP93XX ETHERNET DRIVER
4947M:	Hartley Sweeten <hsweeten@visionengravers.com>
4948L:	netdev@vger.kernel.org
4949S:	Maintained
4950F:	drivers/net/ethernet/cirrus/ep93xx_eth.c
4951
4952CIRRUS LOGIC LOCHNAGAR DRIVER
4953M:	Charles Keepax <ckeepax@opensource.cirrus.com>
4954M:	Richard Fitzgerald <rf@opensource.cirrus.com>
4955L:	patches@opensource.cirrus.com
4956S:	Supported
4957F:	Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4958F:	Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4959F:	Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4960F:	Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4961F:	Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4962F:	Documentation/hwmon/lochnagar.rst
4963F:	drivers/clk/clk-lochnagar.c
4964F:	drivers/hwmon/lochnagar-hwmon.c
4965F:	drivers/mfd/lochnagar-i2c.c
4966F:	drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4967F:	drivers/regulator/lochnagar-regulator.c
4968F:	include/dt-bindings/clock/lochnagar.h
4969F:	include/dt-bindings/pinctrl/lochnagar.h
4970F:	include/linux/mfd/lochnagar*
4971F:	sound/soc/codecs/lochnagar-sc.c
4972
4973CIRRUS LOGIC MADERA CODEC DRIVERS
4974M:	Charles Keepax <ckeepax@opensource.cirrus.com>
4975M:	Richard Fitzgerald <rf@opensource.cirrus.com>
4976L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
4977L:	patches@opensource.cirrus.com
4978S:	Supported
4979W:	https://github.com/CirrusLogic/linux-drivers/wiki
4980T:	git https://github.com/CirrusLogic/linux-drivers.git
4981F:	Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4982F:	Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4983F:	Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4984F:	drivers/gpio/gpio-madera*
4985F:	drivers/irqchip/irq-madera*
4986F:	drivers/mfd/cs47l*
4987F:	drivers/mfd/madera*
4988F:	drivers/pinctrl/cirrus/*
4989F:	include/dt-bindings/sound/madera*
4990F:	include/linux/irqchip/irq-madera*
4991F:	include/linux/mfd/madera/*
4992F:	include/sound/madera*
4993F:	sound/soc/codecs/cs47l*
4994F:	sound/soc/codecs/madera*
4995
4996CISCO FCOE HBA DRIVER
4997M:	Satish Kharat <satishkh@cisco.com>
4998M:	Sesidhar Baddela <sebaddel@cisco.com>
4999M:	Karan Tilak Kumar <kartilak@cisco.com>
5000L:	linux-scsi@vger.kernel.org
5001S:	Supported
5002F:	drivers/scsi/fnic/
5003
5004CISCO SCSI HBA DRIVER
5005M:	Karan Tilak Kumar <kartilak@cisco.com>
5006M:	Sesidhar Baddela <sebaddel@cisco.com>
5007L:	linux-scsi@vger.kernel.org
5008S:	Supported
5009F:	drivers/scsi/snic/
5010
5011CISCO VIC ETHERNET NIC DRIVER
5012M:	Christian Benvenuti <benve@cisco.com>
5013M:	Satish Kharat <satishkh@cisco.com>
5014S:	Supported
5015F:	drivers/net/ethernet/cisco/enic/
5016
5017CISCO VIC LOW LATENCY NIC DRIVER
5018M:	Christian Benvenuti <benve@cisco.com>
5019M:	Nelson Escobar <neescoba@cisco.com>
5020S:	Supported
5021F:	drivers/infiniband/hw/usnic/
5022
5023CLANG-FORMAT FILE
5024M:	Miguel Ojeda <ojeda@kernel.org>
5025S:	Maintained
5026F:	.clang-format
5027
5028CLANG/LLVM BUILD SUPPORT
5029M:	Nathan Chancellor <nathan@kernel.org>
5030M:	Nick Desaulniers <ndesaulniers@google.com>
5031R:	Tom Rix <trix@redhat.com>
5032L:	llvm@lists.linux.dev
5033S:	Supported
5034W:	https://clangbuiltlinux.github.io/
5035B:	https://github.com/ClangBuiltLinux/linux/issues
5036C:	irc://irc.libera.chat/clangbuiltlinux
5037F:	Documentation/kbuild/llvm.rst
5038F:	include/linux/compiler-clang.h
5039F:	scripts/Makefile.clang
5040F:	scripts/clang-tools/
5041K:	\b(?i:clang|llvm)\b
5042
5043CLANG CONTROL FLOW INTEGRITY SUPPORT
5044M:	Sami Tolvanen <samitolvanen@google.com>
5045M:	Kees Cook <keescook@chromium.org>
5046R:	Nathan Chancellor <nathan@kernel.org>
5047R:	Nick Desaulniers <ndesaulniers@google.com>
5048L:	llvm@lists.linux.dev
5049S:	Supported
5050B:	https://github.com/ClangBuiltLinux/linux/issues
5051T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5052F:	include/linux/cfi.h
5053F:	kernel/cfi.c
5054
5055CLK API
5056M:	Russell King <linux@armlinux.org.uk>
5057L:	linux-clk@vger.kernel.org
5058S:	Maintained
5059F:	include/linux/clk.h
5060
5061CLOCKSOURCE, CLOCKEVENT DRIVERS
5062M:	Daniel Lezcano <daniel.lezcano@linaro.org>
5063M:	Thomas Gleixner <tglx@linutronix.de>
5064L:	linux-kernel@vger.kernel.org
5065S:	Supported
5066T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5067F:	Documentation/devicetree/bindings/timer/
5068F:	drivers/clocksource/
5069
5070CMPC ACPI DRIVER
5071M:	Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5072M:	Daniel Oliveira Nascimento <don@syst.com.br>
5073L:	platform-driver-x86@vger.kernel.org
5074S:	Supported
5075F:	drivers/platform/x86/classmate-laptop.c
5076
5077COBALT MEDIA DRIVER
5078M:	Hans Verkuil <hverkuil-cisco@xs4all.nl>
5079L:	linux-media@vger.kernel.org
5080S:	Supported
5081W:	https://linuxtv.org
5082T:	git git://linuxtv.org/media_tree.git
5083F:	drivers/media/pci/cobalt/
5084
5085COCCINELLE/Semantic Patches (SmPL)
5086M:	Julia Lawall <Julia.Lawall@inria.fr>
5087M:	Nicolas Palix <nicolas.palix@imag.fr>
5088L:	cocci@inria.fr (moderated for non-subscribers)
5089S:	Supported
5090W:	https://coccinelle.gitlabpages.inria.fr/website/
5091T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5092F:	Documentation/dev-tools/coccinelle.rst
5093F:	scripts/coccicheck
5094F:	scripts/coccinelle/
5095
5096CODA FILE SYSTEM
5097M:	Jan Harkes <jaharkes@cs.cmu.edu>
5098M:	coda@cs.cmu.edu
5099L:	codalist@coda.cs.cmu.edu
5100S:	Maintained
5101W:	http://www.coda.cs.cmu.edu/
5102F:	Documentation/filesystems/coda.rst
5103F:	fs/coda/
5104F:	include/linux/coda*.h
5105F:	include/uapi/linux/coda*.h
5106
5107CODA V4L2 MEM2MEM DRIVER
5108M:	Philipp Zabel <p.zabel@pengutronix.de>
5109L:	linux-media@vger.kernel.org
5110S:	Maintained
5111F:	Documentation/devicetree/bindings/media/coda.yaml
5112F:	drivers/media/platform/chips-media/
5113
5114CODE OF CONDUCT
5115M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5116S:	Supported
5117F:	Documentation/process/code-of-conduct-interpretation.rst
5118F:	Documentation/process/code-of-conduct.rst
5119
5120COMEDI DRIVERS
5121M:	Ian Abbott <abbotti@mev.co.uk>
5122M:	H Hartley Sweeten <hsweeten@visionengravers.com>
5123S:	Odd Fixes
5124F:	drivers/comedi/
5125F:	include/linux/comedi/
5126F:	include/uapi/linux/comedi.h
5127
5128COMMON CLK FRAMEWORK
5129M:	Michael Turquette <mturquette@baylibre.com>
5130M:	Stephen Boyd <sboyd@kernel.org>
5131L:	linux-clk@vger.kernel.org
5132S:	Maintained
5133Q:	http://patchwork.kernel.org/project/linux-clk/list/
5134T:	git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5135F:	Documentation/devicetree/bindings/clock/
5136F:	drivers/clk/
5137F:	include/dt-bindings/clock/
5138F:	include/linux/clk-pr*
5139F:	include/linux/clk/
5140F:	include/linux/of_clk.h
5141X:	drivers/clk/clkdev.c
5142
5143COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5144M:	Steve French <sfrench@samba.org>
5145R:	Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
5146R:	Ronnie Sahlberg <lsahlber@redhat.com> (directory leases, sparse files)
5147R:	Shyam Prasad N <sprasad@microsoft.com> (multichannel)
5148R:	Tom Talpey <tom@talpey.com> (RDMA, smbdirect)
5149L:	linux-cifs@vger.kernel.org
5150L:	samba-technical@lists.samba.org (moderated for non-subscribers)
5151S:	Supported
5152W:	https://wiki.samba.org/index.php/LinuxCIFS
5153T:	git git://git.samba.org/sfrench/cifs-2.6.git
5154F:	Documentation/admin-guide/cifs/
5155F:	fs/cifs/
5156F:	fs/smbfs_common/
5157F:	include/uapi/linux/cifs
5158
5159COMPACTPCI HOTPLUG CORE
5160M:	Scott Murray <scott@spiteful.org>
5161L:	linux-pci@vger.kernel.org
5162S:	Maintained
5163F:	drivers/pci/hotplug/cpci_hotplug*
5164
5165COMPACTPCI HOTPLUG GENERIC DRIVER
5166M:	Scott Murray <scott@spiteful.org>
5167L:	linux-pci@vger.kernel.org
5168S:	Maintained
5169F:	drivers/pci/hotplug/cpcihp_generic.c
5170
5171COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5172M:	Scott Murray <scott@spiteful.org>
5173L:	linux-pci@vger.kernel.org
5174S:	Maintained
5175F:	drivers/pci/hotplug/cpcihp_zt5550.*
5176
5177COMPAL LAPTOP SUPPORT
5178M:	Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5179L:	platform-driver-x86@vger.kernel.org
5180S:	Maintained
5181F:	drivers/platform/x86/compal-laptop.c
5182
5183COMPILER ATTRIBUTES
5184M:	Miguel Ojeda <ojeda@kernel.org>
5185R:	Nick Desaulniers <ndesaulniers@google.com>
5186S:	Maintained
5187F:	include/linux/compiler_attributes.h
5188
5189COMPUTE EXPRESS LINK (CXL)
5190M:	Alison Schofield <alison.schofield@intel.com>
5191M:	Vishal Verma <vishal.l.verma@intel.com>
5192M:	Ira Weiny <ira.weiny@intel.com>
5193M:	Ben Widawsky <bwidawsk@kernel.org>
5194M:	Dan Williams <dan.j.williams@intel.com>
5195L:	linux-cxl@vger.kernel.org
5196S:	Maintained
5197F:	drivers/cxl/
5198F:	include/uapi/linux/cxl_mem.h
5199
5200CONEXANT ACCESSRUNNER USB DRIVER
5201L:	accessrunner-general@lists.sourceforge.net
5202S:	Orphan
5203W:	http://accessrunner.sourceforge.net/
5204F:	drivers/usb/atm/cxacru.c
5205
5206CONFIGFS
5207M:	Joel Becker <jlbec@evilplan.org>
5208M:	Christoph Hellwig <hch@lst.de>
5209S:	Supported
5210T:	git git://git.infradead.org/users/hch/configfs.git
5211F:	fs/configfs/
5212F:	include/linux/configfs.h
5213F:	samples/configfs/
5214
5215CONSOLE SUBSYSTEM
5216M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5217S:	Supported
5218F:	drivers/video/console/
5219F:	include/linux/console*
5220
5221CONTEXT TRACKING
5222M:	Frederic Weisbecker <frederic@kernel.org>
5223M:	"Paul E. McKenney" <paulmck@kernel.org>
5224S:	Maintained
5225F:	kernel/context_tracking.c
5226F:	include/linux/context_tracking*
5227
5228CONTROL GROUP (CGROUP)
5229M:	Tejun Heo <tj@kernel.org>
5230M:	Zefan Li <lizefan.x@bytedance.com>
5231M:	Johannes Weiner <hannes@cmpxchg.org>
5232L:	cgroups@vger.kernel.org
5233S:	Maintained
5234T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5235F:	Documentation/admin-guide/cgroup-v1/
5236F:	Documentation/admin-guide/cgroup-v2.rst
5237F:	include/linux/cgroup*
5238F:	kernel/cgroup/
5239F:	tools/testing/selftests/cgroup/
5240
5241CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5242M:	Tejun Heo <tj@kernel.org>
5243M:	Josef Bacik <josef@toxicpanda.com>
5244M:	Jens Axboe <axboe@kernel.dk>
5245L:	cgroups@vger.kernel.org
5246L:	linux-block@vger.kernel.org
5247T:	git git://git.kernel.dk/linux-block
5248F:	Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5249F:	block/bfq-cgroup.c
5250F:	block/blk-cgroup.c
5251F:	block/blk-iocost.c
5252F:	block/blk-iolatency.c
5253F:	block/blk-throttle.c
5254F:	include/linux/blk-cgroup.h
5255
5256CONTROL GROUP - CPUSET
5257M:	Waiman Long <longman@redhat.com>
5258M:	Zefan Li <lizefan.x@bytedance.com>
5259L:	cgroups@vger.kernel.org
5260S:	Maintained
5261T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5262F:	Documentation/admin-guide/cgroup-v1/cpusets.rst
5263F:	include/linux/cpuset.h
5264F:	kernel/cgroup/cpuset.c
5265
5266CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5267M:	Johannes Weiner <hannes@cmpxchg.org>
5268M:	Michal Hocko <mhocko@kernel.org>
5269M:	Roman Gushchin <roman.gushchin@linux.dev>
5270M:	Shakeel Butt <shakeelb@google.com>
5271R:	Muchun Song <muchun.song@linux.dev>
5272L:	cgroups@vger.kernel.org
5273L:	linux-mm@kvack.org
5274S:	Maintained
5275F:	mm/memcontrol.c
5276F:	mm/swap_cgroup.c
5277F:	tools/testing/selftests/cgroup/memcg_protection.m
5278F:	tools/testing/selftests/cgroup/test_kmem.c
5279F:	tools/testing/selftests/cgroup/test_memcontrol.c
5280
5281CORETEMP HARDWARE MONITORING DRIVER
5282M:	Fenghua Yu <fenghua.yu@intel.com>
5283L:	linux-hwmon@vger.kernel.org
5284S:	Maintained
5285F:	Documentation/hwmon/coretemp.rst
5286F:	drivers/hwmon/coretemp.c
5287
5288CORSAIR-CPRO HARDWARE MONITOR DRIVER
5289M:	Marius Zachmann <mail@mariuszachmann.de>
5290L:	linux-hwmon@vger.kernel.org
5291S:	Maintained
5292F:	drivers/hwmon/corsair-cpro.c
5293
5294CORSAIR-PSU HARDWARE MONITOR DRIVER
5295M:	Wilken Gottwalt <wilken.gottwalt@posteo.net>
5296L:	linux-hwmon@vger.kernel.org
5297S:	Maintained
5298F:	Documentation/hwmon/corsair-psu.rst
5299F:	drivers/hwmon/corsair-psu.c
5300
5301COUNTER SUBSYSTEM
5302M:	William Breathitt Gray <william.gray@linaro.org>
5303L:	linux-iio@vger.kernel.org
5304S:	Maintained
5305T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git
5306F:	Documentation/ABI/testing/sysfs-bus-counter
5307F:	Documentation/driver-api/generic-counter.rst
5308F:	drivers/counter/
5309F:	include/linux/counter.h
5310F:	include/uapi/linux/counter.h
5311F:	tools/counter/
5312
5313CP2615 I2C DRIVER
5314M:	Bence Csókás <bence98@sch.bme.hu>
5315S:	Maintained
5316F:	drivers/i2c/busses/i2c-cp2615.c
5317
5318CPMAC ETHERNET DRIVER
5319M:	Florian Fainelli <f.fainelli@gmail.com>
5320L:	netdev@vger.kernel.org
5321S:	Maintained
5322F:	drivers/net/ethernet/ti/cpmac.c
5323
5324CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5325M:	Viresh Kumar <viresh.kumar@linaro.org>
5326M:	Sudeep Holla <sudeep.holla@arm.com>
5327L:	linux-pm@vger.kernel.org
5328S:	Maintained
5329W:	http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5330F:	drivers/cpufreq/vexpress-spc-cpufreq.c
5331
5332CPU FREQUENCY SCALING FRAMEWORK
5333M:	"Rafael J. Wysocki" <rafael@kernel.org>
5334M:	Viresh Kumar <viresh.kumar@linaro.org>
5335L:	linux-pm@vger.kernel.org
5336S:	Maintained
5337B:	https://bugzilla.kernel.org
5338T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5339T:	git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5340F:	Documentation/admin-guide/pm/cpufreq.rst
5341F:	Documentation/admin-guide/pm/intel_pstate.rst
5342F:	Documentation/cpu-freq/
5343F:	Documentation/devicetree/bindings/cpufreq/
5344F:	drivers/cpufreq/
5345F:	include/linux/cpufreq.h
5346F:	include/linux/sched/cpufreq.h
5347F:	kernel/sched/cpufreq*.c
5348F:	tools/testing/selftests/cpufreq/
5349
5350CPU IDLE TIME MANAGEMENT FRAMEWORK
5351M:	"Rafael J. Wysocki" <rafael@kernel.org>
5352M:	Daniel Lezcano <daniel.lezcano@linaro.org>
5353L:	linux-pm@vger.kernel.org
5354S:	Maintained
5355B:	https://bugzilla.kernel.org
5356T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5357F:	Documentation/admin-guide/pm/cpuidle.rst
5358F:	Documentation/driver-api/pm/cpuidle.rst
5359F:	drivers/cpuidle/
5360F:	include/linux/cpuidle.h
5361
5362CPU POWER MONITORING SUBSYSTEM
5363M:	Thomas Renninger <trenn@suse.com>
5364M:	Shuah Khan <shuah@kernel.org>
5365M:	Shuah Khan <skhan@linuxfoundation.org>
5366L:	linux-pm@vger.kernel.org
5367S:	Maintained
5368F:	tools/power/cpupower/
5369
5370CPUID/MSR DRIVER
5371M:	"H. Peter Anvin" <hpa@zytor.com>
5372S:	Maintained
5373F:	arch/x86/kernel/cpuid.c
5374F:	arch/x86/kernel/msr.c
5375
5376CPUIDLE DRIVER - ARM BIG LITTLE
5377M:	Lorenzo Pieralisi <lpieralisi@kernel.org>
5378M:	Daniel Lezcano <daniel.lezcano@linaro.org>
5379L:	linux-pm@vger.kernel.org
5380L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5381S:	Maintained
5382T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5383F:	drivers/cpuidle/cpuidle-big_little.c
5384
5385CPUIDLE DRIVER - ARM EXYNOS
5386M:	Daniel Lezcano <daniel.lezcano@linaro.org>
5387R:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
5388M:	Kukjin Kim <kgene@kernel.org>
5389L:	linux-pm@vger.kernel.org
5390L:	linux-samsung-soc@vger.kernel.org
5391S:	Supported
5392F:	arch/arm/mach-exynos/pm.c
5393F:	drivers/cpuidle/cpuidle-exynos.c
5394F:	include/linux/platform_data/cpuidle-exynos.h
5395
5396CPUIDLE DRIVER - ARM PSCI
5397M:	Lorenzo Pieralisi <lpieralisi@kernel.org>
5398M:	Sudeep Holla <sudeep.holla@arm.com>
5399L:	linux-pm@vger.kernel.org
5400L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5401S:	Supported
5402F:	drivers/cpuidle/cpuidle-psci.c
5403
5404CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5405M:	Ulf Hansson <ulf.hansson@linaro.org>
5406L:	linux-pm@vger.kernel.org
5407L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5408S:	Supported
5409F:	drivers/cpuidle/cpuidle-psci.h
5410F:	drivers/cpuidle/cpuidle-psci-domain.c
5411
5412CPUIDLE DRIVER - DT IDLE PM DOMAIN
5413M:	Ulf Hansson <ulf.hansson@linaro.org>
5414L:	linux-pm@vger.kernel.org
5415S:	Supported
5416F:	drivers/cpuidle/dt_idle_genpd.c
5417F:	drivers/cpuidle/dt_idle_genpd.h
5418
5419CPUIDLE DRIVER - RISC-V SBI
5420M:	Anup Patel <anup@brainfault.org>
5421L:	linux-pm@vger.kernel.org
5422L:	linux-riscv@lists.infradead.org
5423S:	Maintained
5424F:	drivers/cpuidle/cpuidle-riscv-sbi.c
5425
5426CRAMFS FILESYSTEM
5427M:	Nicolas Pitre <nico@fluxnic.net>
5428S:	Maintained
5429F:	Documentation/filesystems/cramfs.rst
5430F:	fs/cramfs/
5431
5432CREATIVE SB0540
5433M:	Bastien Nocera <hadess@hadess.net>
5434L:	linux-input@vger.kernel.org
5435S:	Maintained
5436F:	drivers/hid/hid-creative-sb0540.c
5437
5438CRYPTO API
5439M:	Herbert Xu <herbert@gondor.apana.org.au>
5440M:	"David S. Miller" <davem@davemloft.net>
5441L:	linux-crypto@vger.kernel.org
5442S:	Maintained
5443T:	git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5444T:	git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5445F:	Documentation/crypto/
5446F:	Documentation/devicetree/bindings/crypto/
5447F:	arch/*/crypto/
5448F:	crypto/
5449F:	drivers/crypto/
5450F:	include/crypto/
5451F:	include/linux/crypto*
5452F:	lib/crypto/
5453
5454CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5455M:	Neil Horman <nhorman@tuxdriver.com>
5456L:	linux-crypto@vger.kernel.org
5457S:	Maintained
5458F:	crypto/ansi_cprng.c
5459F:	crypto/rng.c
5460
5461CS3308 MEDIA DRIVER
5462M:	Hans Verkuil <hverkuil@xs4all.nl>
5463L:	linux-media@vger.kernel.org
5464S:	Odd Fixes
5465W:	http://linuxtv.org
5466T:	git git://linuxtv.org/media_tree.git
5467F:	drivers/media/i2c/cs3308.c
5468
5469CS5535 Audio ALSA driver
5470M:	Jaya Kumar <jayakumar.alsa@gmail.com>
5471S:	Maintained
5472F:	sound/pci/cs5535audio/
5473
5474CTU CAN FD DRIVER
5475M:	Pavel Pisa <pisa@cmp.felk.cvut.cz>
5476M:	Ondrej Ille <ondrej.ille@gmail.com>
5477L:	linux-can@vger.kernel.org
5478S:	Maintained
5479F:	Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5480F:	drivers/net/can/ctucanfd/
5481
5482CW1200 WLAN driver
5483M:	Solomon Peachy <pizza@shaftnet.org>
5484S:	Maintained
5485F:	drivers/net/wireless/st/cw1200/
5486
5487CX18 VIDEO4LINUX DRIVER
5488M:	Andy Walls <awalls@md.metrocast.net>
5489L:	linux-media@vger.kernel.org
5490S:	Maintained
5491W:	https://linuxtv.org
5492T:	git git://linuxtv.org/media_tree.git
5493F:	drivers/media/pci/cx18/
5494F:	include/uapi/linux/ivtv*
5495
5496CX2341X MPEG ENCODER HELPER MODULE
5497M:	Hans Verkuil <hverkuil@xs4all.nl>
5498L:	linux-media@vger.kernel.org
5499S:	Maintained
5500W:	https://linuxtv.org
5501T:	git git://linuxtv.org/media_tree.git
5502F:	drivers/media/common/cx2341x*
5503F:	include/media/drv-intf/cx2341x.h
5504
5505CX24120 MEDIA DRIVER
5506M:	Jemma Denson <jdenson@gmail.com>
5507M:	Patrick Boettcher <patrick.boettcher@posteo.de>
5508L:	linux-media@vger.kernel.org
5509S:	Maintained
5510W:	https://linuxtv.org
5511Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5512F:	drivers/media/dvb-frontends/cx24120*
5513
5514CX88 VIDEO4LINUX DRIVER
5515M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5516L:	linux-media@vger.kernel.org
5517S:	Odd fixes
5518W:	https://linuxtv.org
5519T:	git git://linuxtv.org/media_tree.git
5520F:	Documentation/driver-api/media/drivers/cx88*
5521F:	drivers/media/pci/cx88/
5522
5523CXD2820R MEDIA DRIVER
5524M:	Antti Palosaari <crope@iki.fi>
5525L:	linux-media@vger.kernel.org
5526S:	Maintained
5527W:	https://linuxtv.org
5528W:	http://palosaari.fi/linux/
5529Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5530T:	git git://linuxtv.org/anttip/media_tree.git
5531F:	drivers/media/dvb-frontends/cxd2820r*
5532
5533CXGB3 ETHERNET DRIVER (CXGB3)
5534M:	Raju Rangoju <rajur@chelsio.com>
5535L:	netdev@vger.kernel.org
5536S:	Supported
5537W:	http://www.chelsio.com
5538F:	drivers/net/ethernet/chelsio/cxgb3/
5539
5540CXGB3 ISCSI DRIVER (CXGB3I)
5541M:	Varun Prakash <varun@chelsio.com>
5542L:	linux-scsi@vger.kernel.org
5543S:	Supported
5544W:	http://www.chelsio.com
5545F:	drivers/scsi/cxgbi/cxgb3i
5546
5547CXGB4 CRYPTO DRIVER (chcr)
5548M:	Ayush Sawal <ayush.sawal@chelsio.com>
5549L:	linux-crypto@vger.kernel.org
5550S:	Supported
5551W:	http://www.chelsio.com
5552F:	drivers/crypto/chelsio
5553
5554CXGB4 INLINE CRYPTO DRIVER
5555M:	Ayush Sawal <ayush.sawal@chelsio.com>
5556L:	netdev@vger.kernel.org
5557S:	Supported
5558W:	http://www.chelsio.com
5559F:	drivers/net/ethernet/chelsio/inline_crypto/
5560
5561CXGB4 ETHERNET DRIVER (CXGB4)
5562M:	Raju Rangoju <rajur@chelsio.com>
5563L:	netdev@vger.kernel.org
5564S:	Supported
5565W:	http://www.chelsio.com
5566F:	drivers/net/ethernet/chelsio/cxgb4/
5567
5568CXGB4 ISCSI DRIVER (CXGB4I)
5569M:	Varun Prakash <varun@chelsio.com>
5570L:	linux-scsi@vger.kernel.org
5571S:	Supported
5572W:	http://www.chelsio.com
5573F:	drivers/scsi/cxgbi/cxgb4i
5574
5575CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5576M:	Potnuri Bharat Teja <bharat@chelsio.com>
5577L:	linux-rdma@vger.kernel.org
5578S:	Supported
5579W:	http://www.openfabrics.org
5580F:	drivers/infiniband/hw/cxgb4/
5581F:	include/uapi/rdma/cxgb4-abi.h
5582
5583CXGB4VF ETHERNET DRIVER (CXGB4VF)
5584M:	Raju Rangoju <rajur@chelsio.com>
5585L:	netdev@vger.kernel.org
5586S:	Supported
5587W:	http://www.chelsio.com
5588F:	drivers/net/ethernet/chelsio/cxgb4vf/
5589
5590CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5591M:	Frederic Barrat <fbarrat@linux.ibm.com>
5592M:	Andrew Donnellan <ajd@linux.ibm.com>
5593L:	linuxppc-dev@lists.ozlabs.org
5594S:	Supported
5595F:	Documentation/ABI/testing/sysfs-class-cxl
5596F:	Documentation/powerpc/cxl.rst
5597F:	arch/powerpc/platforms/powernv/pci-cxl.c
5598F:	drivers/misc/cxl/
5599F:	include/misc/cxl*
5600F:	include/uapi/misc/cxl.h
5601
5602CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5603M:	Manoj N. Kumar <manoj@linux.ibm.com>
5604M:	Matthew R. Ochs <mrochs@linux.ibm.com>
5605M:	Uma Krishnan <ukrishn@linux.ibm.com>
5606L:	linux-scsi@vger.kernel.org
5607S:	Supported
5608F:	Documentation/powerpc/cxlflash.rst
5609F:	drivers/scsi/cxlflash/
5610F:	include/uapi/scsi/cxlflash_ioctl.h
5611
5612CYBERPRO FB DRIVER
5613M:	Russell King <linux@armlinux.org.uk>
5614L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5615S:	Maintained
5616W:	http://www.armlinux.org.uk/
5617F:	drivers/video/fbdev/cyber2000fb.*
5618
5619CYCLADES PC300 DRIVER
5620S:	Orphan
5621F:	drivers/net/wan/pc300*
5622
5623CYPRESS_FIRMWARE MEDIA DRIVER
5624M:	Antti Palosaari <crope@iki.fi>
5625L:	linux-media@vger.kernel.org
5626S:	Maintained
5627W:	https://linuxtv.org
5628W:	http://palosaari.fi/linux/
5629Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5630T:	git git://linuxtv.org/anttip/media_tree.git
5631F:	drivers/media/common/cypress_firmware*
5632
5633CYPRESS CY8C95X0 PINCTRL DRIVER
5634M:	Patrick Rudolph <patrick.rudolph@9elements.com>
5635L:	linux-gpio@vger.kernel.org
5636S:	Maintained
5637F:	drivers/pinctrl/pinctrl-cy8c95x0.c
5638
5639CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5640M:	Linus Walleij <linus.walleij@linaro.org>
5641L:	linux-input@vger.kernel.org
5642S:	Maintained
5643F:	drivers/input/touchscreen/cy8ctma140.c
5644
5645CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5646M:	Yassine Oudjana <y.oudjana@protonmail.com>
5647L:	linux-input@vger.kernel.org
5648S:	Maintained
5649F:	Documentation/devicetree/bindings/input/cypress-sf.yaml
5650F:	drivers/input/keyboard/cypress-sf.c
5651
5652CYTTSP TOUCHSCREEN DRIVER
5653M:	Linus Walleij <linus.walleij@linaro.org>
5654L:	linux-input@vger.kernel.org
5655S:	Maintained
5656F:	drivers/input/touchscreen/cyttsp*
5657
5658D-LINK DIR-685 TOUCHKEYS DRIVER
5659M:	Linus Walleij <linus.walleij@linaro.org>
5660L:	linux-input@vger.kernel.org
5661S:	Supported
5662F:	drivers/input/keyboard/dlink-dir685-touchkeys.c
5663
5664DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5665M:	Joshua Kinard <kumba@gentoo.org>
5666S:	Maintained
5667F:	drivers/rtc/rtc-ds1685.c
5668F:	include/linux/rtc/ds1685.h
5669
5670DAMA SLAVE for AX.25
5671M:	Joerg Reuter <jreuter@yaina.de>
5672L:	linux-hams@vger.kernel.org
5673S:	Maintained
5674W:	http://yaina.de/jreuter/
5675W:	http://www.qsl.net/dl1bke/
5676F:	net/ax25/af_ax25.c
5677F:	net/ax25/ax25_dev.c
5678F:	net/ax25/ax25_ds_*
5679F:	net/ax25/ax25_in.c
5680F:	net/ax25/ax25_out.c
5681F:	net/ax25/ax25_timer.c
5682F:	net/ax25/sysctl_net_ax25.c
5683
5684DATA ACCESS MONITOR
5685M:	SeongJae Park <sj@kernel.org>
5686L:	damon@lists.linux.dev
5687L:	linux-mm@kvack.org
5688S:	Maintained
5689W:	https://damonitor.github.io
5690P:	Documentation/mm/damon/maintainer-profile.rst
5691T:	git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
5692T:	quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
5693T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sj/linux.git damon/next
5694F:	Documentation/ABI/testing/sysfs-kernel-mm-damon
5695F:	Documentation/admin-guide/mm/damon/
5696F:	Documentation/mm/damon/
5697F:	include/linux/damon.h
5698F:	include/trace/events/damon.h
5699F:	mm/damon/
5700F:	tools/testing/selftests/damon/
5701
5702DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5703L:	netdev@vger.kernel.org
5704S:	Orphan
5705F:	Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5706F:	drivers/net/ethernet/dec/tulip/dmfe.c
5707
5708DC390/AM53C974 SCSI driver
5709M:	Hannes Reinecke <hare@suse.com>
5710L:	linux-scsi@vger.kernel.org
5711S:	Maintained
5712F:	drivers/scsi/am53c974.c
5713
5714DC395x SCSI driver
5715M:	Oliver Neukum <oliver@neukum.org>
5716M:	Ali Akcaagac <aliakc@web.de>
5717M:	Jamie Lenehan <lenehan@twibble.org>
5718L:	dc395x@twibble.org
5719S:	Maintained
5720W:	http://twibble.org/dist/dc395x/
5721W:	http://lists.twibble.org/mailman/listinfo/dc395x/
5722F:	Documentation/scsi/dc395x.rst
5723F:	drivers/scsi/dc395x.*
5724
5725DCCP PROTOCOL
5726L:	dccp@vger.kernel.org
5727S:	Orphan
5728W:	http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5729F:	include/linux/dccp.h
5730F:	include/linux/tfrc.h
5731F:	include/uapi/linux/dccp.h
5732F:	net/dccp/
5733
5734DECSTATION PLATFORM SUPPORT
5735M:	"Maciej W. Rozycki" <macro@orcam.me.uk>
5736L:	linux-mips@vger.kernel.org
5737S:	Maintained
5738W:	http://www.linux-mips.org/wiki/DECstation
5739F:	arch/mips/dec/
5740F:	arch/mips/include/asm/dec/
5741F:	arch/mips/include/asm/mach-dec/
5742
5743DEFXX FDDI NETWORK DRIVER
5744M:	"Maciej W. Rozycki" <macro@orcam.me.uk>
5745S:	Maintained
5746F:	drivers/net/fddi/defxx.*
5747
5748DEFZA FDDI NETWORK DRIVER
5749M:	"Maciej W. Rozycki" <macro@orcam.me.uk>
5750S:	Maintained
5751F:	drivers/net/fddi/defza.*
5752
5753DEINTERLACE DRIVERS FOR ALLWINNER H3
5754M:	Jernej Skrabec <jernej.skrabec@gmail.com>
5755L:	linux-media@vger.kernel.org
5756S:	Maintained
5757T:	git git://linuxtv.org/media_tree.git
5758F:	Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5759F:	drivers/media/platform/sunxi/sun8i-di/
5760
5761DELL LAPTOP DRIVER
5762M:	Matthew Garrett <mjg59@srcf.ucam.org>
5763M:	Pali Rohár <pali@kernel.org>
5764L:	platform-driver-x86@vger.kernel.org
5765S:	Maintained
5766F:	drivers/platform/x86/dell/dell-laptop.c
5767
5768DELL LAPTOP FREEFALL DRIVER
5769M:	Pali Rohár <pali@kernel.org>
5770S:	Maintained
5771F:	drivers/platform/x86/dell/dell-smo8800.c
5772
5773DELL LAPTOP RBTN DRIVER
5774M:	Pali Rohár <pali@kernel.org>
5775S:	Maintained
5776F:	drivers/platform/x86/dell/dell-rbtn.*
5777
5778DELL LAPTOP SMM DRIVER
5779M:	Pali Rohár <pali@kernel.org>
5780S:	Maintained
5781F:	Documentation/ABI/obsolete/procfs-i8k
5782F:	drivers/hwmon/dell-smm-hwmon.c
5783F:	include/uapi/linux/i8k.h
5784
5785DELL REMOTE BIOS UPDATE DRIVER
5786M:	Stuart Hayes <stuart.w.hayes@gmail.com>
5787L:	platform-driver-x86@vger.kernel.org
5788S:	Maintained
5789F:	drivers/platform/x86/dell/dell_rbu.c
5790
5791DELL SMBIOS DRIVER
5792M:	Pali Rohár <pali@kernel.org>
5793L:	Dell.Client.Kernel@dell.com
5794L:	platform-driver-x86@vger.kernel.org
5795S:	Maintained
5796F:	drivers/platform/x86/dell/dell-smbios.*
5797
5798DELL SMBIOS SMM DRIVER
5799L:	Dell.Client.Kernel@dell.com
5800L:	platform-driver-x86@vger.kernel.org
5801S:	Maintained
5802F:	drivers/platform/x86/dell/dell-smbios-smm.c
5803
5804DELL SMBIOS WMI DRIVER
5805L:	Dell.Client.Kernel@dell.com
5806L:	platform-driver-x86@vger.kernel.org
5807S:	Maintained
5808F:	drivers/platform/x86/dell/dell-smbios-wmi.c
5809F:	tools/wmi/dell-smbios-example.c
5810
5811DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5812M:	Stuart Hayes <stuart.w.hayes@gmail.com>
5813L:	platform-driver-x86@vger.kernel.org
5814S:	Maintained
5815F:	Documentation/driver-api/dcdbas.rst
5816F:	drivers/platform/x86/dell/dcdbas.*
5817
5818DELL WMI DESCRIPTOR DRIVER
5819L:	Dell.Client.Kernel@dell.com
5820S:	Maintained
5821F:	drivers/platform/x86/dell/dell-wmi-descriptor.c
5822
5823DELL WMI DDV DRIVER
5824M:	Armin Wolf <W_Armin@gmx.de>
5825S:	Maintained
5826F:	Documentation/ABI/testing/debugfs-dell-wmi-ddv
5827F:	Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
5828F:	drivers/platform/x86/dell/dell-wmi-ddv.c
5829
5830DELL WMI SYSMAN DRIVER
5831M:	Prasanth Ksr <prasanth.ksr@dell.com>
5832L:	Dell.Client.Kernel@dell.com
5833L:	platform-driver-x86@vger.kernel.org
5834S:	Maintained
5835F:	Documentation/ABI/testing/sysfs-class-firmware-attributes
5836F:	drivers/platform/x86/dell/dell-wmi-sysman/
5837
5838DELL WMI NOTIFICATIONS DRIVER
5839M:	Matthew Garrett <mjg59@srcf.ucam.org>
5840M:	Pali Rohár <pali@kernel.org>
5841S:	Maintained
5842F:	drivers/platform/x86/dell/dell-wmi-base.c
5843
5844DELL WMI HARDWARE PRIVACY SUPPORT
5845M:	Perry Yuan <Perry.Yuan@dell.com>
5846L:	Dell.Client.Kernel@dell.com
5847L:	platform-driver-x86@vger.kernel.org
5848S:	Maintained
5849F:	drivers/platform/x86/dell/dell-wmi-privacy.c
5850
5851DELTA ST MEDIA DRIVER
5852M:	Hugues Fruchet <hugues.fruchet@foss.st.com>
5853L:	linux-media@vger.kernel.org
5854S:	Supported
5855W:	https://linuxtv.org
5856T:	git git://linuxtv.org/media_tree.git
5857F:	drivers/media/platform/st/sti/delta
5858
5859DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5860M:	Zev Weiss <zev@bewilderbeest.net>
5861L:	linux-hwmon@vger.kernel.org
5862S:	Maintained
5863F:	drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5864
5865DELTA DPS920AB PSU DRIVER
5866M:	Robert Marko <robert.marko@sartura.hr>
5867L:	linux-hwmon@vger.kernel.org
5868S:	Maintained
5869F:	Documentation/hwmon/dps920ab.rst
5870F:	drivers/hwmon/pmbus/dps920ab.c
5871
5872DELTA NETWORKS TN48M CPLD DRIVERS
5873M:	Robert Marko <robert.marko@sartura.hr>
5874S:	Maintained
5875F:	Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5876F:	Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5877F:	Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5878F:	drivers/gpio/gpio-tn48m.c
5879F:	include/dt-bindings/reset/delta,tn48m-reset.h
5880
5881DENALI NAND DRIVER
5882L:	linux-mtd@lists.infradead.org
5883S:	Orphan
5884F:	drivers/mtd/nand/raw/denali*
5885
5886DESIGNWARE EDMA CORE IP DRIVER
5887M:	Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5888L:	dmaengine@vger.kernel.org
5889S:	Maintained
5890F:	drivers/dma/dw-edma/
5891F:	include/linux/dma/edma.h
5892
5893DESIGNWARE XDATA IP DRIVER
5894M:	Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5895L:	linux-pci@vger.kernel.org
5896S:	Maintained
5897F:	Documentation/misc-devices/dw-xdata-pcie.rst
5898F:	drivers/misc/dw-xdata-pcie.c
5899
5900DESIGNWARE USB2 DRD IP DRIVER
5901M:	Minas Harutyunyan <hminas@synopsys.com>
5902L:	linux-usb@vger.kernel.org
5903S:	Maintained
5904T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5905F:	drivers/usb/dwc2/
5906
5907DESIGNWARE USB3 DRD IP DRIVER
5908M:	Thinh Nguyen <Thinh.Nguyen@synopsys.com>
5909L:	linux-usb@vger.kernel.org
5910S:	Maintained
5911F:	drivers/usb/dwc3/
5912
5913DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5914M:	Andreas Klinger <ak@it-klinger.de>
5915L:	linux-iio@vger.kernel.org
5916S:	Maintained
5917F:	Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5918F:	drivers/iio/proximity/srf*.c
5919
5920DEVICE COREDUMP (DEV_COREDUMP)
5921M:	Johannes Berg <johannes@sipsolutions.net>
5922L:	linux-kernel@vger.kernel.org
5923S:	Maintained
5924F:	drivers/base/devcoredump.c
5925F:	include/linux/devcoredump.h
5926
5927DEVICE DEPENDENCY HELPER SCRIPT
5928M:	Saravana Kannan <saravanak@google.com>
5929L:	linux-kernel@vger.kernel.org
5930S:	Maintained
5931F:	scripts/dev-needs.sh
5932
5933DEVICE DIRECT ACCESS (DAX)
5934M:	Dan Williams <dan.j.williams@intel.com>
5935M:	Vishal Verma <vishal.l.verma@intel.com>
5936M:	Dave Jiang <dave.jiang@intel.com>
5937L:	nvdimm@lists.linux.dev
5938L:	linux-cxl@vger.kernel.org
5939S:	Supported
5940F:	drivers/dax/
5941
5942DEVICE FREQUENCY (DEVFREQ)
5943M:	MyungJoo Ham <myungjoo.ham@samsung.com>
5944M:	Kyungmin Park <kyungmin.park@samsung.com>
5945M:	Chanwoo Choi <cw00.choi@samsung.com>
5946L:	linux-pm@vger.kernel.org
5947S:	Maintained
5948T:	git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5949F:	Documentation/devicetree/bindings/devfreq/
5950F:	Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5951F:	drivers/devfreq/
5952F:	include/linux/devfreq.h
5953F:	include/trace/events/devfreq.h
5954
5955DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5956M:	Chanwoo Choi <cw00.choi@samsung.com>
5957L:	linux-pm@vger.kernel.org
5958S:	Supported
5959T:	git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5960F:	Documentation/devicetree/bindings/devfreq/event/
5961F:	drivers/devfreq/devfreq-event.c
5962F:	drivers/devfreq/event/
5963F:	include/dt-bindings/pmu/exynos_ppmu.h
5964F:	include/linux/devfreq-event.h
5965
5966DEVICE RESOURCE MANAGEMENT HELPERS
5967M:	Hans de Goede <hdegoede@redhat.com>
5968R:	Matti Vaittinen <mazziesaccount@gmail.com>
5969S:	Maintained
5970F:	include/linux/devm-helpers.h
5971
5972DEVICE-MAPPER  (LVM)
5973M:	Alasdair Kergon <agk@redhat.com>
5974M:	Mike Snitzer <snitzer@kernel.org>
5975M:	dm-devel@redhat.com
5976L:	dm-devel@redhat.com
5977S:	Maintained
5978W:	http://sources.redhat.com/dm
5979Q:	http://patchwork.kernel.org/project/dm-devel/list/
5980T:	git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5981T:	quilt http://people.redhat.com/agk/patches/linux/editing/
5982F:	Documentation/admin-guide/device-mapper/
5983F:	drivers/md/Kconfig
5984F:	drivers/md/Makefile
5985F:	drivers/md/dm*
5986F:	drivers/md/persistent-data/
5987F:	include/linux/device-mapper.h
5988F:	include/linux/dm-*.h
5989F:	include/uapi/linux/dm-*.h
5990
5991DEVLINK
5992M:	Jiri Pirko <jiri@resnulli.us>
5993L:	netdev@vger.kernel.org
5994S:	Supported
5995F:	Documentation/networking/devlink
5996F:	include/net/devlink.h
5997F:	include/uapi/linux/devlink.h
5998F:	net/devlink/
5999
6000DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD SUPPORT
6001M:	Christoph Niedermaier <cniedermaier@dh-electronics.com>
6002L:	kernel@dh-electronics.com
6003S:	Maintained
6004F:	arch/arm/boot/dts/imx6*-dhcom-*
6005F:	arch/arm/boot/dts/imx6*-dhcor-*
6006
6007DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
6008M:	Marek Vasut <marex@denx.de>
6009L:	kernel@dh-electronics.com
6010S:	Maintained
6011F:	arch/arm/boot/dts/stm32mp1*-dhcom-*
6012F:	arch/arm/boot/dts/stm32mp1*-dhcor-*
6013
6014DIALOG SEMICONDUCTOR DRIVERS
6015M:	Support Opensource <support.opensource@diasemi.com>
6016S:	Supported
6017W:	http://www.dialog-semiconductor.com/products
6018F:	Documentation/devicetree/bindings/input/da90??-onkey.txt
6019F:	Documentation/devicetree/bindings/input/dlg,da72??.txt
6020F:	Documentation/devicetree/bindings/mfd/da90*.txt
6021F:	Documentation/devicetree/bindings/mfd/da90*.yaml
6022F:	Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
6023F:	Documentation/devicetree/bindings/regulator/da92*.txt
6024F:	Documentation/devicetree/bindings/regulator/slg51000.txt
6025F:	Documentation/devicetree/bindings/sound/da[79]*.txt
6026F:	Documentation/devicetree/bindings/thermal/da90??-thermal.txt
6027F:	Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
6028F:	Documentation/hwmon/da90??.rst
6029F:	drivers/gpio/gpio-da90??.c
6030F:	drivers/hwmon/da90??-hwmon.c
6031F:	drivers/iio/adc/da91??-*.c
6032F:	drivers/input/misc/da72??.[ch]
6033F:	drivers/input/misc/da90??_onkey.c
6034F:	drivers/input/touchscreen/da9052_tsi.c
6035F:	drivers/leds/leds-da90??.c
6036F:	drivers/mfd/da903x.c
6037F:	drivers/mfd/da90??-*.c
6038F:	drivers/mfd/da91??-*.c
6039F:	drivers/pinctrl/pinctrl-da90??.c
6040F:	drivers/power/supply/da9052-battery.c
6041F:	drivers/power/supply/da91??-*.c
6042F:	drivers/regulator/da9???-regulator.[ch]
6043F:	drivers/regulator/slg51000-regulator.[ch]
6044F:	drivers/rtc/rtc-da90??.c
6045F:	drivers/thermal/da90??-thermal.c
6046F:	drivers/video/backlight/da90??_bl.c
6047F:	drivers/watchdog/da90??_wdt.c
6048F:	include/dt-bindings/regulator/dlg,da9*-regulator.h
6049F:	include/linux/mfd/da903x.h
6050F:	include/linux/mfd/da9052/
6051F:	include/linux/mfd/da9055/
6052F:	include/linux/mfd/da9062/
6053F:	include/linux/mfd/da9063/
6054F:	include/linux/mfd/da9150/
6055F:	include/linux/regulator/da9211.h
6056F:	include/sound/da[79]*.h
6057F:	sound/soc/codecs/da[79]*.[ch]
6058
6059DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6060M:	William Breathitt Gray <william.gray@linaro.org>
6061L:	linux-gpio@vger.kernel.org
6062S:	Maintained
6063F:	drivers/gpio/gpio-gpio-mm.c
6064
6065DIOLAN U2C-12 I2C DRIVER
6066M:	Guenter Roeck <linux@roeck-us.net>
6067L:	linux-i2c@vger.kernel.org
6068S:	Maintained
6069F:	drivers/i2c/busses/i2c-diolan-u2c.c
6070
6071DIRECTORY NOTIFICATION (DNOTIFY)
6072M:	Jan Kara <jack@suse.cz>
6073R:	Amir Goldstein <amir73il@gmail.com>
6074L:	linux-fsdevel@vger.kernel.org
6075S:	Maintained
6076F:	Documentation/filesystems/dnotify.rst
6077F:	fs/notify/dnotify/
6078F:	include/linux/dnotify.h
6079
6080DISK GEOMETRY AND PARTITION HANDLING
6081M:	Andries Brouwer <aeb@cwi.nl>
6082S:	Maintained
6083W:	http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6084W:	http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6085W:	http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6086
6087DISKQUOTA
6088M:	Jan Kara <jack@suse.com>
6089S:	Maintained
6090F:	Documentation/filesystems/quota.rst
6091F:	fs/quota/
6092F:	include/linux/quota*.h
6093F:	include/uapi/linux/quota*.h
6094
6095DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6096M:	Bernie Thompson <bernie@plugable.com>
6097L:	linux-fbdev@vger.kernel.org
6098S:	Maintained
6099W:	http://plugable.com/category/projects/udlfb/
6100F:	Documentation/fb/udlfb.rst
6101F:	drivers/video/fbdev/udlfb.c
6102F:	include/video/udlfb.h
6103
6104DISTRIBUTED LOCK MANAGER (DLM)
6105M:	Christine Caulfield <ccaulfie@redhat.com>
6106M:	David Teigland <teigland@redhat.com>
6107L:	cluster-devel@redhat.com
6108S:	Supported
6109W:	http://sources.redhat.com/cluster/
6110T:	git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6111F:	fs/dlm/
6112
6113DMA BUFFER SHARING FRAMEWORK
6114M:	Sumit Semwal <sumit.semwal@linaro.org>
6115M:	Christian König <christian.koenig@amd.com>
6116L:	linux-media@vger.kernel.org
6117L:	dri-devel@lists.freedesktop.org
6118L:	linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6119S:	Maintained
6120T:	git git://anongit.freedesktop.org/drm/drm-misc
6121F:	Documentation/driver-api/dma-buf.rst
6122F:	drivers/dma-buf/
6123F:	include/linux/*fence.h
6124F:	include/linux/dma-buf.h
6125F:	include/linux/dma-resv.h
6126K:	\bdma_(?:buf|fence|resv)\b
6127
6128DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6129M:	Vinod Koul <vkoul@kernel.org>
6130L:	dmaengine@vger.kernel.org
6131S:	Maintained
6132Q:	https://patchwork.kernel.org/project/linux-dmaengine/list/
6133T:	git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6134F:	Documentation/devicetree/bindings/dma/
6135F:	Documentation/driver-api/dmaengine/
6136F:	drivers/dma/
6137F:	include/dt-bindings/dma/
6138F:	include/linux/dma/
6139F:	include/linux/dmaengine.h
6140F:	include/linux/of_dma.h
6141
6142DMA MAPPING HELPERS
6143M:	Christoph Hellwig <hch@lst.de>
6144M:	Marek Szyprowski <m.szyprowski@samsung.com>
6145R:	Robin Murphy <robin.murphy@arm.com>
6146L:	iommu@lists.linux.dev
6147S:	Supported
6148W:	http://git.infradead.org/users/hch/dma-mapping.git
6149T:	git git://git.infradead.org/users/hch/dma-mapping.git
6150F:	include/asm-generic/dma-mapping.h
6151F:	include/linux/dma-direct.h
6152F:	include/linux/dma-mapping.h
6153F:	include/linux/dma-map-ops.h
6154F:	include/linux/swiotlb.h
6155F:	kernel/dma/
6156
6157DMA MAPPING BENCHMARK
6158M:	Xiang Chen <chenxiang66@hisilicon.com>
6159L:	iommu@lists.linux.dev
6160F:	kernel/dma/map_benchmark.c
6161F:	tools/testing/selftests/dma/
6162
6163DMA-BUF HEAPS FRAMEWORK
6164M:	Sumit Semwal <sumit.semwal@linaro.org>
6165R:	Benjamin Gaignard <benjamin.gaignard@collabora.com>
6166R:	Liam Mark <lmark@codeaurora.org>
6167R:	Laura Abbott <labbott@redhat.com>
6168R:	Brian Starkey <Brian.Starkey@arm.com>
6169R:	John Stultz <jstultz@google.com>
6170L:	linux-media@vger.kernel.org
6171L:	dri-devel@lists.freedesktop.org
6172L:	linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6173S:	Maintained
6174T:	git git://anongit.freedesktop.org/drm/drm-misc
6175F:	drivers/dma-buf/dma-heap.c
6176F:	drivers/dma-buf/heaps/*
6177F:	include/linux/dma-heap.h
6178F:	include/uapi/linux/dma-heap.h
6179
6180DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6181M:	Lukasz Luba <lukasz.luba@arm.com>
6182L:	linux-pm@vger.kernel.org
6183L:	linux-samsung-soc@vger.kernel.org
6184S:	Maintained
6185F:	Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6186F:	drivers/memory/samsung/exynos5422-dmc.c
6187
6188DME1737 HARDWARE MONITOR DRIVER
6189M:	Juerg Haefliger <juergh@proton.me>
6190L:	linux-hwmon@vger.kernel.org
6191S:	Maintained
6192F:	Documentation/hwmon/dme1737.rst
6193F:	drivers/hwmon/dme1737.c
6194
6195DMI/SMBIOS SUPPORT
6196M:	Jean Delvare <jdelvare@suse.com>
6197S:	Maintained
6198T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6199F:	Documentation/ABI/testing/sysfs-firmware-dmi-tables
6200F:	drivers/firmware/dmi-id.c
6201F:	drivers/firmware/dmi_scan.c
6202F:	include/linux/dmi.h
6203
6204DOCUMENTATION
6205M:	Jonathan Corbet <corbet@lwn.net>
6206L:	linux-doc@vger.kernel.org
6207S:	Maintained
6208P:	Documentation/doc-guide/maintainer-profile.rst
6209T:	git git://git.lwn.net/linux.git docs-next
6210F:	Documentation/
6211F:	scripts/documentation-file-ref-check
6212F:	scripts/kernel-doc
6213F:	scripts/sphinx-pre-install
6214X:	Documentation/ABI/
6215X:	Documentation/admin-guide/media/
6216X:	Documentation/devicetree/
6217X:	Documentation/driver-api/media/
6218X:	Documentation/firmware-guide/acpi/
6219X:	Documentation/i2c/
6220X:	Documentation/power/
6221X:	Documentation/spi/
6222X:	Documentation/userspace-api/media/
6223
6224DOCUMENTATION REPORTING ISSUES
6225M:	Thorsten Leemhuis <linux@leemhuis.info>
6226L:	linux-doc@vger.kernel.org
6227S:	Maintained
6228F:	Documentation/admin-guide/quickly-build-trimmed-linux.rst
6229F:	Documentation/admin-guide/reporting-issues.rst
6230
6231DOCUMENTATION SCRIPTS
6232M:	Mauro Carvalho Chehab <mchehab@kernel.org>
6233L:	linux-doc@vger.kernel.org
6234S:	Maintained
6235F:	Documentation/sphinx/parse-headers.pl
6236F:	scripts/documentation-file-ref-check
6237F:	scripts/sphinx-pre-install
6238
6239DOCUMENTATION/ITALIAN
6240M:	Federico Vaga <federico.vaga@vaga.pv.it>
6241L:	linux-doc@vger.kernel.org
6242S:	Maintained
6243F:	Documentation/translations/it_IT
6244
6245DOCUMENTATION/JAPANESE
6246R:	Akira Yokosawa <akiyks@gmail.com>
6247L:	linux-doc@vger.kernel.org
6248S:	Maintained
6249F:	Documentation/translations/ja_JP
6250
6251DONGWOON DW9714 LENS VOICE COIL DRIVER
6252M:	Sakari Ailus <sakari.ailus@linux.intel.com>
6253L:	linux-media@vger.kernel.org
6254S:	Maintained
6255T:	git git://linuxtv.org/media_tree.git
6256F:	Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
6257F:	drivers/media/i2c/dw9714.c
6258
6259DONGWOON DW9768 LENS VOICE COIL DRIVER
6260M:	Dongchun Zhu <dongchun.zhu@mediatek.com>
6261L:	linux-media@vger.kernel.org
6262S:	Maintained
6263T:	git git://linuxtv.org/media_tree.git
6264F:	Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6265F:	drivers/media/i2c/dw9768.c
6266
6267DONGWOON DW9807 LENS VOICE COIL DRIVER
6268M:	Sakari Ailus <sakari.ailus@linux.intel.com>
6269L:	linux-media@vger.kernel.org
6270S:	Maintained
6271T:	git git://linuxtv.org/media_tree.git
6272F:	Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6273F:	drivers/media/i2c/dw9807-vcm.c
6274
6275DOUBLETALK DRIVER
6276M:	"James R. Van Zandt" <jrv@vanzandt.mv.com>
6277L:	blinux-list@redhat.com
6278S:	Maintained
6279F:	drivers/char/dtlk.c
6280F:	include/linux/dtlk.h
6281
6282DPAA2 DATAPATH I/O (DPIO) DRIVER
6283M:	Roy Pledge <Roy.Pledge@nxp.com>
6284L:	linux-kernel@vger.kernel.org
6285S:	Maintained
6286F:	drivers/soc/fsl/dpio
6287
6288DPAA2 ETHERNET DRIVER
6289M:	Ioana Ciornei <ioana.ciornei@nxp.com>
6290L:	netdev@vger.kernel.org
6291S:	Maintained
6292F:	Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6293F:	Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6294F:	drivers/net/ethernet/freescale/dpaa2/Kconfig
6295F:	drivers/net/ethernet/freescale/dpaa2/Makefile
6296F:	drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6297F:	drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6298F:	drivers/net/ethernet/freescale/dpaa2/dpaa2-xsk*
6299F:	drivers/net/ethernet/freescale/dpaa2/dpkg.h
6300F:	drivers/net/ethernet/freescale/dpaa2/dpmac*
6301F:	drivers/net/ethernet/freescale/dpaa2/dpni*
6302
6303DPAA2 ETHERNET SWITCH DRIVER
6304M:	Ioana Ciornei <ioana.ciornei@nxp.com>
6305L:	netdev@vger.kernel.org
6306S:	Maintained
6307F:	Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6308F:	drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6309F:	drivers/net/ethernet/freescale/dpaa2/dpsw*
6310
6311DRBD DRIVER
6312M:	Philipp Reisner <philipp.reisner@linbit.com>
6313M:	Lars Ellenberg <lars.ellenberg@linbit.com>
6314M:	Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6315L:	drbd-dev@lists.linbit.com
6316S:	Supported
6317W:	http://www.drbd.org
6318T:	git git://git.linbit.com/linux-drbd.git
6319T:	git git://git.linbit.com/drbd-8.4.git
6320F:	Documentation/admin-guide/blockdev/
6321F:	drivers/block/drbd/
6322F:	include/linux/drbd*
6323F:	lib/lru_cache.c
6324
6325DRIVER COMPONENT FRAMEWORK
6326L:	dri-devel@lists.freedesktop.org
6327F:	drivers/base/component.c
6328F:	include/linux/component.h
6329
6330DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6331M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6332R:	"Rafael J. Wysocki" <rafael@kernel.org>
6333S:	Supported
6334T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6335F:	Documentation/core-api/kobject.rst
6336F:	drivers/base/
6337F:	fs/debugfs/
6338F:	fs/sysfs/
6339F:	include/linux/debugfs.h
6340F:	include/linux/fwnode.h
6341F:	include/linux/kobj*
6342F:	include/linux/property.h
6343F:	lib/kobj*
6344
6345DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6346M:	Nishanth Menon <nm@ti.com>
6347L:	linux-pm@vger.kernel.org
6348S:	Maintained
6349F:	drivers/soc/ti/smartreflex.c
6350F:	include/linux/power/smartreflex.h
6351
6352DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6353M:	Maxime Ripard <mripard@kernel.org>
6354M:	Chen-Yu Tsai <wens@csie.org>
6355R:	Jernej Skrabec <jernej.skrabec@gmail.com>
6356L:	dri-devel@lists.freedesktop.org
6357S:	Supported
6358T:	git git://anongit.freedesktop.org/drm/drm-misc
6359F:	drivers/gpu/drm/sun4i/sun8i*
6360
6361DRM DRIVER FOR ARM PL111 CLCD
6362M:	Emma Anholt <emma@anholt.net>
6363S:	Supported
6364T:	git git://anongit.freedesktop.org/drm/drm-misc
6365F:	drivers/gpu/drm/pl111/
6366
6367DRM DRIVER FOR ARM VERSATILE TFT PANELS
6368M:	Linus Walleij <linus.walleij@linaro.org>
6369S:	Maintained
6370T:	git git://anongit.freedesktop.org/drm/drm-misc
6371F:	Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6372F:	drivers/gpu/drm/panel/panel-arm-versatile.c
6373
6374DRM DRIVER FOR ASPEED BMC GFX
6375M:	Joel Stanley <joel@jms.id.au>
6376L:	linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6377S:	Supported
6378T:	git git://anongit.freedesktop.org/drm/drm-misc
6379F:	Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6380F:	drivers/gpu/drm/aspeed/
6381
6382DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6383M:	Dave Airlie <airlied@redhat.com>
6384R:	Thomas Zimmermann <tzimmermann@suse.de>
6385L:	dri-devel@lists.freedesktop.org
6386S:	Supported
6387T:	git git://anongit.freedesktop.org/drm/drm-misc
6388F:	drivers/gpu/drm/ast/
6389
6390DRM DRIVER FOR BOCHS VIRTUAL GPU
6391M:	Gerd Hoffmann <kraxel@redhat.com>
6392L:	virtualization@lists.linux-foundation.org
6393S:	Maintained
6394T:	git git://anongit.freedesktop.org/drm/drm-misc
6395F:	drivers/gpu/drm/tiny/bochs.c
6396
6397DRM DRIVER FOR BOE HIMAX8279D PANELS
6398M:	Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6399S:	Maintained
6400F:	Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6401F:	drivers/gpu/drm/panel/panel-boe-himax8279d.c
6402
6403DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6404M:	Jagan Teki <jagan@amarulasolutions.com>
6405S:	Maintained
6406F:	Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6407F:	drivers/gpu/drm/bridge/chipone-icn6211.c
6408
6409DRM DRIVER FOR EBBG FT8719 PANEL
6410M:	Joel Selvaraj <jo@jsfamily.in>
6411S:	Maintained
6412T:	git git://anongit.freedesktop.org/drm/drm-misc
6413F:	Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6414F:	drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6415
6416DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6417M:	Linus Walleij <linus.walleij@linaro.org>
6418S:	Maintained
6419T:	git git://anongit.freedesktop.org/drm/drm-misc
6420F:	drivers/gpu/drm/tve200/
6421
6422DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6423M:	Icenowy Zheng <icenowy@aosc.io>
6424S:	Maintained
6425F:	Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6426F:	drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6427
6428DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6429M:	Jagan Teki <jagan@amarulasolutions.com>
6430S:	Maintained
6431F:	Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6432F:	drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6433
6434DRM DRIVER FOR GENERIC EDP PANELS
6435R:	Douglas Anderson <dianders@chromium.org>
6436F:	Documentation/devicetree/bindings/display/panel/panel-edp.yaml
6437F:	drivers/gpu/drm/panel/panel-edp.c
6438
6439DRM DRIVER FOR GENERIC USB DISPLAY
6440M:	Noralf Trønnes <noralf@tronnes.org>
6441S:	Maintained
6442W:	https://github.com/notro/gud/wiki
6443T:	git git://anongit.freedesktop.org/drm/drm-misc
6444F:	drivers/gpu/drm/gud/
6445F:	include/drm/gud.h
6446
6447DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6448M:	Hans de Goede <hdegoede@redhat.com>
6449S:	Maintained
6450T:	git git://anongit.freedesktop.org/drm/drm-misc
6451F:	drivers/gpu/drm/tiny/gm12u320.c
6452
6453DRM DRIVER FOR HIMAX HX8394 MIPI-DSI LCD panels
6454M:	Ondrej Jirman <megi@xff.cz>
6455M:	Javier Martinez Canillas <javierm@redhat.com>
6456S:	Maintained
6457T:	git git://anongit.freedesktop.org/drm/drm-misc
6458F:	Documentation/devicetree/bindings/display/panel/himax,hx8394.yaml
6459F:	drivers/gpu/drm/panel/panel-himax-hx8394.c
6460
6461DRM DRIVER FOR HX8357D PANELS
6462M:	Emma Anholt <emma@anholt.net>
6463S:	Maintained
6464T:	git git://anongit.freedesktop.org/drm/drm-misc
6465F:	Documentation/devicetree/bindings/display/himax,hx8357d.txt
6466F:	drivers/gpu/drm/tiny/hx8357d.c
6467
6468DRM DRIVER FOR ILITEK ILI9225 PANELS
6469M:	David Lechner <david@lechnology.com>
6470S:	Maintained
6471T:	git git://anongit.freedesktop.org/drm/drm-misc
6472F:	Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6473F:	drivers/gpu/drm/tiny/ili9225.c
6474
6475DRM DRIVER FOR ILITEK ILI9486 PANELS
6476M:	Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6477S:	Maintained
6478T:	git git://anongit.freedesktop.org/drm/drm-misc
6479F:	Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6480F:	drivers/gpu/drm/tiny/ili9486.c
6481
6482DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
6483M:	Jagan Teki <jagan@edgeble.ai>
6484S:	Maintained
6485F:	Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
6486F:	drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
6487
6488DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6489M:	Paul Kocialkowski <paul.kocialkowski@bootlin.com>
6490S:	Supported
6491T:	git git://anongit.freedesktop.org/drm/drm-misc
6492F:	drivers/gpu/drm/logicvc/
6493
6494DRM DRIVER FOR LVDS PANELS
6495M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6496L:	dri-devel@lists.freedesktop.org
6497T:	git git://anongit.freedesktop.org/drm/drm-misc
6498S:	Maintained
6499F:	drivers/gpu/drm/panel/panel-lvds.c
6500F:	Documentation/devicetree/bindings/display/lvds.yaml
6501F:	Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6502
6503DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6504M:	Guido Günther <agx@sigxcpu.org>
6505R:	Purism Kernel Team <kernel@puri.sm>
6506S:	Maintained
6507F:	Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6508F:	drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6509
6510DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6511M:	Dave Airlie <airlied@redhat.com>
6512R:	Thomas Zimmermann <tzimmermann@suse.de>
6513L:	dri-devel@lists.freedesktop.org
6514S:	Supported
6515T:	git git://anongit.freedesktop.org/drm/drm-misc
6516F:	drivers/gpu/drm/mgag200/
6517
6518DRM DRIVER FOR MI0283QT
6519M:	Noralf Trønnes <noralf@tronnes.org>
6520S:	Maintained
6521T:	git git://anongit.freedesktop.org/drm/drm-misc
6522F:	Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6523F:	drivers/gpu/drm/tiny/mi0283qt.c
6524
6525DRM DRIVER FOR MIPI DBI compatible panels
6526M:	Noralf Trønnes <noralf@tronnes.org>
6527S:	Maintained
6528W:	https://github.com/notro/panel-mipi-dbi/wiki
6529T:	git git://anongit.freedesktop.org/drm/drm-misc
6530F:	Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6531F:	drivers/gpu/drm/tiny/panel-mipi-dbi.c
6532
6533DRM DRIVER FOR MSM ADRENO GPU
6534M:	Rob Clark <robdclark@gmail.com>
6535M:	Abhinav Kumar <quic_abhinavk@quicinc.com>
6536M:	Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6537R:	Sean Paul <sean@poorly.run>
6538L:	linux-arm-msm@vger.kernel.org
6539L:	dri-devel@lists.freedesktop.org
6540L:	freedreno@lists.freedesktop.org
6541S:	Maintained
6542B:	https://gitlab.freedesktop.org/drm/msm/-/issues
6543T:	git https://gitlab.freedesktop.org/drm/msm.git
6544F:	Documentation/devicetree/bindings/display/msm/
6545F:	drivers/gpu/drm/msm/
6546F:	include/uapi/drm/msm_drm.h
6547
6548DRM DRIVER FOR NOVATEK NT35510 PANELS
6549M:	Linus Walleij <linus.walleij@linaro.org>
6550S:	Maintained
6551T:	git git://anongit.freedesktop.org/drm/drm-misc
6552F:	Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6553F:	drivers/gpu/drm/panel/panel-novatek-nt35510.c
6554
6555DRM DRIVER FOR NOVATEK NT35560 PANELS
6556M:	Linus Walleij <linus.walleij@linaro.org>
6557S:	Maintained
6558T:	git git://anongit.freedesktop.org/drm/drm-misc
6559F:	Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6560F:	drivers/gpu/drm/panel/panel-novatek-nt35560.c
6561
6562DRM DRIVER FOR NOVATEK NT36523 PANELS
6563M:	Jianhua Lu <lujianhua000@gmail.com>
6564S:	Maintained
6565T:	git git://anongit.freedesktop.org/drm/drm-misc
6566F:	Documentation/devicetree/bindings/display/panel/novatek,nt36523.yaml
6567F:	drivers/gpu/drm/panel/panel-novatek-nt36523.c
6568
6569DRM DRIVER FOR NOVATEK NT36672A PANELS
6570M:	Sumit Semwal <sumit.semwal@linaro.org>
6571S:	Maintained
6572T:	git git://anongit.freedesktop.org/drm/drm-misc
6573F:	Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6574F:	drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6575
6576DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6577M:	Ben Skeggs <bskeggs@redhat.com>
6578M:	Karol Herbst <kherbst@redhat.com>
6579M:	Lyude Paul <lyude@redhat.com>
6580L:	dri-devel@lists.freedesktop.org
6581L:	nouveau@lists.freedesktop.org
6582S:	Supported
6583W:	https://nouveau.freedesktop.org/
6584Q:	https://patchwork.freedesktop.org/project/nouveau/
6585Q:	https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6586B:	https://gitlab.freedesktop.org/drm/nouveau/-/issues
6587C:	irc://irc.oftc.net/nouveau
6588T:	git https://gitlab.freedesktop.org/drm/nouveau.git
6589F:	drivers/gpu/drm/nouveau/
6590F:	include/uapi/drm/nouveau_drm.h
6591
6592DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6593M:	Stefan Mavrodiev <stefan@olimex.com>
6594S:	Maintained
6595F:	Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6596F:	drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6597
6598DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6599R:	Douglas Anderson <dianders@chromium.org>
6600F:	Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6601F:	drivers/gpu/drm/bridge/parade-ps8640.c
6602
6603DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6604M:	Noralf Trønnes <noralf@tronnes.org>
6605S:	Maintained
6606T:	git git://anongit.freedesktop.org/drm/drm-misc
6607F:	Documentation/devicetree/bindings/display/repaper.txt
6608F:	drivers/gpu/drm/tiny/repaper.c
6609
6610DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6611M:	Javier Martinez Canillas <javierm@redhat.com>
6612S:	Maintained
6613T:	git git://anongit.freedesktop.org/drm/drm-misc
6614F:	Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6615F:	drivers/gpu/drm/solomon/ssd130x*
6616
6617DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6618M:	Dave Airlie <airlied@redhat.com>
6619M:	Gerd Hoffmann <kraxel@redhat.com>
6620L:	virtualization@lists.linux-foundation.org
6621S:	Obsolete
6622W:	https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6623T:	git git://anongit.freedesktop.org/drm/drm-misc
6624F:	drivers/gpu/drm/tiny/cirrus.c
6625
6626DRM DRIVER FOR QXL VIRTUAL GPU
6627M:	Dave Airlie <airlied@redhat.com>
6628M:	Gerd Hoffmann <kraxel@redhat.com>
6629L:	virtualization@lists.linux-foundation.org
6630L:	spice-devel@lists.freedesktop.org
6631S:	Maintained
6632T:	git git://anongit.freedesktop.org/drm/drm-misc
6633F:	drivers/gpu/drm/qxl/
6634F:	include/uapi/drm/qxl_drm.h
6635
6636DRM DRIVER FOR RAYDIUM RM67191 PANELS
6637M:	Robert Chiras <robert.chiras@nxp.com>
6638S:	Maintained
6639F:	Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6640F:	drivers/gpu/drm/panel/panel-raydium-rm67191.c
6641
6642DRM DRIVER FOR SAMSUNG DB7430 PANELS
6643M:	Linus Walleij <linus.walleij@linaro.org>
6644S:	Maintained
6645T:	git git://anongit.freedesktop.org/drm/drm-misc
6646F:	Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6647F:	drivers/gpu/drm/panel/panel-samsung-db7430.c
6648
6649DRM DRIVER FOR SAMSUNG MIPI DSIM BRIDGE
6650M:	Inki Dae <inki.dae@samsung.com>
6651M:	Jagan Teki <jagan@amarulasolutions.com>
6652M:	Marek Szyprowski <m.szyprowski@samsung.com>
6653S:	Maintained
6654T:	git git://anongit.freedesktop.org/drm/drm-misc
6655F:	Documentation/devicetree/bindings/display/bridge/samsung,mipi-dsim.yaml
6656F:	drivers/gpu/drm/bridge/samsung-dsim.c
6657F:	include/drm/bridge/samsung-dsim.h
6658
6659DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6660M:	Markuss Broks <markuss.broks@gmail.com>
6661S:	Maintained
6662F:	Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6663F:	drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6664
6665DRM DRIVER FOR SITRONIX ST7703 PANELS
6666M:	Guido Günther <agx@sigxcpu.org>
6667R:	Purism Kernel Team <kernel@puri.sm>
6668R:	Ondrej Jirman <megous@megous.com>
6669S:	Maintained
6670F:	Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6671F:	drivers/gpu/drm/panel/panel-sitronix-st7703.c
6672
6673DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6674M:	Thomas Zimmermann <tzimmermann@suse.de>
6675M:	Javier Martinez Canillas <javierm@redhat.com>
6676L:	dri-devel@lists.freedesktop.org
6677S:	Maintained
6678T:	git git://anongit.freedesktop.org/drm/drm-misc
6679F:	drivers/gpu/drm/drm_aperture.c
6680F:	drivers/gpu/drm/tiny/ofdrm.c
6681F:	drivers/gpu/drm/tiny/simpledrm.c
6682F:	drivers/video/aperture.c
6683F:	drivers/video/nomodeset.c
6684F:	include/drm/drm_aperture.h
6685F:	include/linux/aperture.h
6686F:	include/video/nomodeset.h
6687
6688DRM DRIVER FOR SITRONIX ST7586 PANELS
6689M:	David Lechner <david@lechnology.com>
6690S:	Maintained
6691T:	git git://anongit.freedesktop.org/drm/drm-misc
6692F:	Documentation/devicetree/bindings/display/sitronix,st7586.txt
6693F:	drivers/gpu/drm/tiny/st7586.c
6694
6695DRM DRIVER FOR SITRONIX ST7701 PANELS
6696M:	Jagan Teki <jagan@amarulasolutions.com>
6697S:	Maintained
6698F:	Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6699F:	drivers/gpu/drm/panel/panel-sitronix-st7701.c
6700
6701DRM DRIVER FOR SITRONIX ST7735R PANELS
6702M:	David Lechner <david@lechnology.com>
6703S:	Maintained
6704T:	git git://anongit.freedesktop.org/drm/drm-misc
6705F:	Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6706F:	drivers/gpu/drm/tiny/st7735r.c
6707
6708DRM DRIVER FOR ST-ERICSSON MCDE
6709M:	Linus Walleij <linus.walleij@linaro.org>
6710S:	Maintained
6711T:	git git://anongit.freedesktop.org/drm/drm-misc
6712F:	Documentation/devicetree/bindings/display/ste,mcde.yaml
6713F:	drivers/gpu/drm/mcde/
6714
6715DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6716M:	Jagan Teki <jagan@amarulasolutions.com>
6717S:	Maintained
6718F:	Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6719F:	drivers/gpu/drm/bridge/ti-dlpc3433.c
6720
6721DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6722R:	Douglas Anderson <dianders@chromium.org>
6723F:	Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6724F:	drivers/gpu/drm/bridge/ti-sn65dsi86.c
6725
6726DRM DRIVER FOR TPO TPG110 PANELS
6727M:	Linus Walleij <linus.walleij@linaro.org>
6728S:	Maintained
6729T:	git git://anongit.freedesktop.org/drm/drm-misc
6730F:	Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6731F:	drivers/gpu/drm/panel/panel-tpo-tpg110.c
6732
6733DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6734M:	Dave Airlie <airlied@redhat.com>
6735R:	Sean Paul <sean@poorly.run>
6736R:	Thomas Zimmermann <tzimmermann@suse.de>
6737L:	dri-devel@lists.freedesktop.org
6738S:	Supported
6739T:	git git://anongit.freedesktop.org/drm/drm-misc
6740F:	drivers/gpu/drm/udl/
6741
6742DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6743M:	Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6744M:	Melissa Wen <melissa.srw@gmail.com>
6745R:	Haneen Mohammed <hamohammed.sa@gmail.com>
6746R:	Daniel Vetter <daniel@ffwll.ch>
6747L:	dri-devel@lists.freedesktop.org
6748S:	Maintained
6749T:	git git://anongit.freedesktop.org/drm/drm-misc
6750F:	Documentation/gpu/vkms.rst
6751F:	drivers/gpu/drm/vkms/
6752
6753DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6754M:	Hans de Goede <hdegoede@redhat.com>
6755L:	dri-devel@lists.freedesktop.org
6756S:	Maintained
6757T:	git git://anongit.freedesktop.org/drm/drm-misc
6758F:	drivers/gpu/drm/vboxvideo/
6759
6760DRM DRIVER FOR VMWARE VIRTUAL GPU
6761M:	Zack Rusin <zackr@vmware.com>
6762R:	VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6763L:	dri-devel@lists.freedesktop.org
6764S:	Supported
6765T:	git git://anongit.freedesktop.org/drm/drm-misc
6766F:	drivers/gpu/drm/vmwgfx/
6767F:	include/uapi/drm/vmwgfx_drm.h
6768
6769DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6770M:	Linus Walleij <linus.walleij@linaro.org>
6771S:	Maintained
6772T:	git git://anongit.freedesktop.org/drm/drm-misc
6773F:	Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6774F:	drivers/gpu/drm/panel/panel-widechips-ws2401.c
6775
6776DRM DRIVERS
6777M:	David Airlie <airlied@gmail.com>
6778M:	Daniel Vetter <daniel@ffwll.ch>
6779L:	dri-devel@lists.freedesktop.org
6780S:	Maintained
6781B:	https://gitlab.freedesktop.org/drm
6782C:	irc://irc.oftc.net/dri-devel
6783T:	git git://anongit.freedesktop.org/drm/drm
6784F:	Documentation/devicetree/bindings/display/
6785F:	Documentation/devicetree/bindings/gpu/
6786F:	Documentation/gpu/
6787F:	drivers/gpu/
6788F:	include/drm/
6789F:	include/linux/vga*
6790F:	include/uapi/drm/
6791
6792DRM DRIVERS AND MISC GPU PATCHES
6793M:	Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6794M:	Maxime Ripard <mripard@kernel.org>
6795M:	Thomas Zimmermann <tzimmermann@suse.de>
6796S:	Maintained
6797W:	https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6798T:	git git://anongit.freedesktop.org/drm/drm-misc
6799F:	Documentation/gpu/
6800F:	drivers/gpu/drm/*
6801F:	drivers/gpu/vga/
6802F:	include/drm/drm*
6803F:	include/linux/vga*
6804F:	include/uapi/drm/drm*
6805
6806DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
6807M:	Oded Gabbay <ogabbay@kernel.org>
6808L:	dri-devel@lists.freedesktop.org
6809S:	Maintained
6810C:	irc://irc.oftc.net/dri-devel
6811T:	git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
6812F:	Documentation/accel/
6813F:	drivers/accel/
6814F:	include/drm/drm_accel.h
6815
6816DRM ACCEL DRIVERS FOR INTEL VPU
6817M:	Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com>
6818M:	Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
6819L:	dri-devel@lists.freedesktop.org
6820S:	Supported
6821T:	git git://anongit.freedesktop.org/drm/drm-misc
6822F:	drivers/accel/ivpu/
6823F:	include/uapi/drm/ivpu_accel.h
6824
6825DRM DRIVERS FOR ALLWINNER A10
6826M:	Maxime Ripard <mripard@kernel.org>
6827M:	Chen-Yu Tsai <wens@csie.org>
6828L:	dri-devel@lists.freedesktop.org
6829S:	Supported
6830T:	git git://anongit.freedesktop.org/drm/drm-misc
6831F:	Documentation/devicetree/bindings/display/allwinner*
6832F:	drivers/gpu/drm/sun4i/
6833
6834DRM DRIVERS FOR AMLOGIC SOCS
6835M:	Neil Armstrong <neil.armstrong@linaro.org>
6836L:	dri-devel@lists.freedesktop.org
6837L:	linux-amlogic@lists.infradead.org
6838S:	Supported
6839W:	http://linux-meson.com/
6840T:	git git://anongit.freedesktop.org/drm/drm-misc
6841F:	Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6842F:	Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6843F:	Documentation/gpu/meson.rst
6844F:	drivers/gpu/drm/meson/
6845
6846DRM DRIVERS FOR ATMEL HLCDC
6847M:	Sam Ravnborg <sam@ravnborg.org>
6848M:	Boris Brezillon <bbrezillon@kernel.org>
6849L:	dri-devel@lists.freedesktop.org
6850S:	Supported
6851T:	git git://anongit.freedesktop.org/drm/drm-misc
6852F:	Documentation/devicetree/bindings/display/atmel/
6853F:	drivers/gpu/drm/atmel-hlcdc/
6854
6855DRM DRIVERS FOR BRIDGE CHIPS
6856M:	Andrzej Hajda <andrzej.hajda@intel.com>
6857M:	Neil Armstrong <neil.armstrong@linaro.org>
6858M:	Robert Foss <rfoss@kernel.org>
6859R:	Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6860R:	Jonas Karlman <jonas@kwiboo.se>
6861R:	Jernej Skrabec <jernej.skrabec@gmail.com>
6862S:	Maintained
6863T:	git git://anongit.freedesktop.org/drm/drm-misc
6864F:	Documentation/devicetree/bindings/display/bridge/
6865F:	drivers/gpu/drm/bridge/
6866F:	include/drm/drm_bridge.h
6867
6868DRM DRIVERS FOR EXYNOS
6869M:	Inki Dae <inki.dae@samsung.com>
6870M:	Seung-Woo Kim <sw0312.kim@samsung.com>
6871M:	Kyungmin Park <kyungmin.park@samsung.com>
6872L:	dri-devel@lists.freedesktop.org
6873S:	Supported
6874T:	git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6875F:	Documentation/devicetree/bindings/display/exynos/
6876F:	Documentation/devicetree/bindings/display/samsung/
6877F:	drivers/gpu/drm/exynos/
6878F:	include/uapi/drm/exynos_drm.h
6879
6880DRM DRIVERS FOR FREESCALE DCU
6881M:	Stefan Agner <stefan@agner.ch>
6882M:	Alison Wang <alison.wang@nxp.com>
6883L:	dri-devel@lists.freedesktop.org
6884S:	Supported
6885T:	git git://anongit.freedesktop.org/drm/drm-misc
6886F:	Documentation/devicetree/bindings/display/fsl,dcu.txt
6887F:	Documentation/devicetree/bindings/display/fsl,tcon.txt
6888F:	drivers/gpu/drm/fsl-dcu/
6889
6890DRM DRIVERS FOR FREESCALE IMX
6891M:	Philipp Zabel <p.zabel@pengutronix.de>
6892L:	dri-devel@lists.freedesktop.org
6893S:	Maintained
6894F:	Documentation/devicetree/bindings/display/imx/
6895F:	drivers/gpu/drm/imx/ipuv3/
6896F:	drivers/gpu/ipu-v3/
6897
6898DRM DRIVERS FOR FREESCALE IMX BRIDGE
6899M:	Liu Ying <victor.liu@nxp.com>
6900L:	dri-devel@lists.freedesktop.org
6901S:	Maintained
6902F:	Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6903F:	Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6904F:	Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6905F:	Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6906F:	drivers/gpu/drm/bridge/imx/
6907
6908DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6909M:	Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6910L:	dri-devel@lists.freedesktop.org
6911S:	Maintained
6912T:	git git://github.com/patjak/drm-gma500
6913F:	drivers/gpu/drm/gma500/
6914
6915DRM DRIVERS FOR HISILICON
6916M:	Xinliang Liu <xinliang.liu@linaro.org>
6917M:	Tian Tao  <tiantao6@hisilicon.com>
6918R:	Xinwei Kong <kong.kongxinwei@hisilicon.com>
6919R:	Sumit Semwal <sumit.semwal@linaro.org>
6920R:	Yongqin Liu <yongqin.liu@linaro.org>
6921R:	John Stultz <jstultz@google.com>
6922L:	dri-devel@lists.freedesktop.org
6923S:	Maintained
6924T:	git git://anongit.freedesktop.org/drm/drm-misc
6925F:	Documentation/devicetree/bindings/display/hisilicon/
6926F:	drivers/gpu/drm/hisilicon/
6927
6928DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6929M:	Deepak Rawat <drawat.floss@gmail.com>
6930L:	linux-hyperv@vger.kernel.org
6931L:	dri-devel@lists.freedesktop.org
6932S:	Maintained
6933T:	git git://anongit.freedesktop.org/drm/drm-misc
6934F:	drivers/gpu/drm/hyperv
6935
6936DRM DRIVERS FOR LIMA
6937M:	Qiang Yu <yuq825@gmail.com>
6938L:	dri-devel@lists.freedesktop.org
6939L:	lima@lists.freedesktop.org (moderated for non-subscribers)
6940S:	Maintained
6941T:	git git://anongit.freedesktop.org/drm/drm-misc
6942F:	drivers/gpu/drm/lima/
6943F:	include/uapi/drm/lima_drm.h
6944
6945DRM DRIVERS FOR MEDIATEK
6946M:	Chun-Kuang Hu <chunkuang.hu@kernel.org>
6947M:	Philipp Zabel <p.zabel@pengutronix.de>
6948L:	dri-devel@lists.freedesktop.org
6949L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6950S:	Supported
6951F:	Documentation/devicetree/bindings/display/mediatek/
6952F:	drivers/gpu/drm/mediatek/
6953F:	drivers/phy/mediatek/phy-mtk-dp.c
6954F:	drivers/phy/mediatek/phy-mtk-hdmi*
6955F:	drivers/phy/mediatek/phy-mtk-mipi*
6956
6957DRM DRIVERS FOR NVIDIA TEGRA
6958M:	Thierry Reding <thierry.reding@gmail.com>
6959M:	Mikko Perttunen <mperttunen@nvidia.com>
6960L:	dri-devel@lists.freedesktop.org
6961L:	linux-tegra@vger.kernel.org
6962S:	Supported
6963T:	git https://gitlab.freedesktop.org/drm/tegra.git
6964F:	Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6965F:	Documentation/devicetree/bindings/gpu/host1x/
6966F:	drivers/gpu/drm/tegra/
6967F:	drivers/gpu/host1x/
6968F:	include/linux/host1x.h
6969F:	include/uapi/drm/tegra_drm.h
6970
6971DRM DRIVERS FOR RENESAS
6972M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6973M:	Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6974L:	dri-devel@lists.freedesktop.org
6975L:	linux-renesas-soc@vger.kernel.org
6976S:	Supported
6977T:	git git://linuxtv.org/pinchartl/media drm/du/next
6978F:	Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6979F:	Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6980F:	Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6981F:	Documentation/devicetree/bindings/display/renesas,du.yaml
6982F:	drivers/gpu/drm/rcar-du/
6983F:	drivers/gpu/drm/shmobile/
6984F:	include/linux/platform_data/shmob_drm.h
6985
6986DRM DRIVERS FOR ROCKCHIP
6987M:	Sandy Huang <hjc@rock-chips.com>
6988M:	Heiko Stübner <heiko@sntech.de>
6989L:	dri-devel@lists.freedesktop.org
6990S:	Maintained
6991T:	git git://anongit.freedesktop.org/drm/drm-misc
6992F:	Documentation/devicetree/bindings/display/rockchip/
6993F:	drivers/gpu/drm/rockchip/
6994
6995DRM DRIVERS FOR STI
6996M:	Alain Volmat <alain.volmat@foss.st.com>
6997L:	dri-devel@lists.freedesktop.org
6998S:	Maintained
6999T:	git git://anongit.freedesktop.org/drm/drm-misc
7000F:	Documentation/devicetree/bindings/display/st,stih4xx.txt
7001F:	drivers/gpu/drm/sti
7002
7003DRM DRIVERS FOR STM
7004M:	Yannick Fertre <yannick.fertre@foss.st.com>
7005M:	Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
7006M:	Philippe Cornu <philippe.cornu@foss.st.com>
7007L:	dri-devel@lists.freedesktop.org
7008S:	Maintained
7009T:	git git://anongit.freedesktop.org/drm/drm-misc
7010F:	Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
7011F:	drivers/gpu/drm/stm
7012
7013DRM DRIVERS FOR TI KEYSTONE
7014M:	Jyri Sarha <jyri.sarha@iki.fi>
7015M:	Tomi Valkeinen <tomba@kernel.org>
7016L:	dri-devel@lists.freedesktop.org
7017S:	Maintained
7018T:	git git://anongit.freedesktop.org/drm/drm-misc
7019F:	Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
7020F:	Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
7021F:	Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
7022F:	drivers/gpu/drm/tidss/
7023
7024DRM DRIVERS FOR TI LCDC
7025M:	Jyri Sarha <jyri.sarha@iki.fi>
7026R:	Tomi Valkeinen <tomba@kernel.org>
7027L:	dri-devel@lists.freedesktop.org
7028S:	Maintained
7029F:	Documentation/devicetree/bindings/display/tilcdc/
7030F:	drivers/gpu/drm/tilcdc/
7031
7032DRM DRIVERS FOR TI OMAP
7033M:	Tomi Valkeinen <tomba@kernel.org>
7034L:	dri-devel@lists.freedesktop.org
7035S:	Maintained
7036F:	Documentation/devicetree/bindings/display/ti/
7037F:	drivers/gpu/drm/omapdrm/
7038
7039DRM DRIVERS FOR V3D
7040M:	Emma Anholt <emma@anholt.net>
7041M:	Melissa Wen <mwen@igalia.com>
7042S:	Supported
7043T:	git git://anongit.freedesktop.org/drm/drm-misc
7044F:	Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
7045F:	drivers/gpu/drm/v3d/
7046F:	include/uapi/drm/v3d_drm.h
7047
7048DRM DRIVERS FOR VC4
7049M:	Emma Anholt <emma@anholt.net>
7050M:	Maxime Ripard <mripard@kernel.org>
7051S:	Supported
7052T:	git git://github.com/anholt/linux
7053T:	git git://anongit.freedesktop.org/drm/drm-misc
7054F:	Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
7055F:	drivers/gpu/drm/vc4/
7056F:	include/uapi/drm/vc4_drm.h
7057
7058DRM DRIVERS FOR VIVANTE GPU IP
7059M:	Lucas Stach <l.stach@pengutronix.de>
7060R:	Russell King <linux+etnaviv@armlinux.org.uk>
7061R:	Christian Gmeiner <christian.gmeiner@gmail.com>
7062L:	etnaviv@lists.freedesktop.org (moderated for non-subscribers)
7063L:	dri-devel@lists.freedesktop.org
7064S:	Maintained
7065F:	Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7066F:	drivers/gpu/drm/etnaviv/
7067F:	include/uapi/drm/etnaviv_drm.h
7068
7069DRM DRIVERS FOR XEN
7070M:	Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
7071L:	dri-devel@lists.freedesktop.org
7072L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
7073S:	Supported
7074T:	git git://anongit.freedesktop.org/drm/drm-misc
7075F:	Documentation/gpu/xen-front.rst
7076F:	drivers/gpu/drm/xen/
7077
7078DRM DRIVERS FOR XILINX
7079M:	Hyun Kwon <hyun.kwon@xilinx.com>
7080M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7081L:	dri-devel@lists.freedesktop.org
7082S:	Maintained
7083T:	git git://anongit.freedesktop.org/drm/drm-misc
7084F:	Documentation/devicetree/bindings/display/xlnx/
7085F:	drivers/gpu/drm/xlnx/
7086
7087DRM PANEL DRIVERS
7088M:	Neil Armstrong <neil.armstrong@linaro.org>
7089R:	Sam Ravnborg <sam@ravnborg.org>
7090L:	dri-devel@lists.freedesktop.org
7091S:	Maintained
7092T:	git git://anongit.freedesktop.org/drm/drm-misc
7093F:	Documentation/devicetree/bindings/display/panel/
7094F:	drivers/gpu/drm/drm_panel.c
7095F:	drivers/gpu/drm/panel/
7096F:	include/drm/drm_panel.h
7097
7098DRM PRIVACY-SCREEN CLASS
7099M:	Hans de Goede <hdegoede@redhat.com>
7100L:	dri-devel@lists.freedesktop.org
7101S:	Maintained
7102T:	git git://anongit.freedesktop.org/drm/drm-misc
7103F:	drivers/gpu/drm/drm_privacy_screen*
7104F:	include/drm/drm_privacy_screen*
7105
7106DRM TTM SUBSYSTEM
7107M:	Christian Koenig <christian.koenig@amd.com>
7108M:	Huang Rui <ray.huang@amd.com>
7109L:	dri-devel@lists.freedesktop.org
7110S:	Maintained
7111T:	git git://anongit.freedesktop.org/drm/drm-misc
7112F:	drivers/gpu/drm/ttm/
7113F:	include/drm/ttm/
7114
7115DRM GPU SCHEDULER
7116M:	Luben Tuikov <luben.tuikov@amd.com>
7117L:	dri-devel@lists.freedesktop.org
7118S:	Maintained
7119T:	git git://anongit.freedesktop.org/drm/drm-misc
7120F:	drivers/gpu/drm/scheduler/
7121F:	include/drm/gpu_scheduler.h
7122
7123DSBR100 USB FM RADIO DRIVER
7124M:	Alexey Klimov <klimov.linux@gmail.com>
7125L:	linux-media@vger.kernel.org
7126S:	Maintained
7127T:	git git://linuxtv.org/media_tree.git
7128F:	drivers/media/radio/dsbr100.c
7129
7130DT3155 MEDIA DRIVER
7131M:	Hans Verkuil <hverkuil@xs4all.nl>
7132L:	linux-media@vger.kernel.org
7133S:	Odd Fixes
7134W:	https://linuxtv.org
7135T:	git git://linuxtv.org/media_tree.git
7136F:	drivers/media/pci/dt3155/
7137
7138DVB_USB_AF9015 MEDIA DRIVER
7139M:	Antti Palosaari <crope@iki.fi>
7140L:	linux-media@vger.kernel.org
7141S:	Maintained
7142W:	https://linuxtv.org
7143W:	http://palosaari.fi/linux/
7144Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7145T:	git git://linuxtv.org/anttip/media_tree.git
7146F:	drivers/media/usb/dvb-usb-v2/af9015*
7147
7148DVB_USB_AF9035 MEDIA DRIVER
7149M:	Antti Palosaari <crope@iki.fi>
7150L:	linux-media@vger.kernel.org
7151S:	Maintained
7152W:	https://linuxtv.org
7153W:	http://palosaari.fi/linux/
7154Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7155T:	git git://linuxtv.org/anttip/media_tree.git
7156F:	drivers/media/usb/dvb-usb-v2/af9035*
7157
7158DVB_USB_ANYSEE MEDIA DRIVER
7159M:	Antti Palosaari <crope@iki.fi>
7160L:	linux-media@vger.kernel.org
7161S:	Maintained
7162W:	https://linuxtv.org
7163W:	http://palosaari.fi/linux/
7164Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7165T:	git git://linuxtv.org/anttip/media_tree.git
7166F:	drivers/media/usb/dvb-usb-v2/anysee*
7167
7168DVB_USB_AU6610 MEDIA DRIVER
7169M:	Antti Palosaari <crope@iki.fi>
7170L:	linux-media@vger.kernel.org
7171S:	Maintained
7172W:	https://linuxtv.org
7173W:	http://palosaari.fi/linux/
7174Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7175T:	git git://linuxtv.org/anttip/media_tree.git
7176F:	drivers/media/usb/dvb-usb-v2/au6610*
7177
7178DVB_USB_CE6230 MEDIA DRIVER
7179M:	Antti Palosaari <crope@iki.fi>
7180L:	linux-media@vger.kernel.org
7181S:	Maintained
7182W:	https://linuxtv.org
7183W:	http://palosaari.fi/linux/
7184Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7185T:	git git://linuxtv.org/anttip/media_tree.git
7186F:	drivers/media/usb/dvb-usb-v2/ce6230*
7187
7188DVB_USB_CXUSB MEDIA DRIVER
7189M:	Michael Krufky <mkrufky@linuxtv.org>
7190L:	linux-media@vger.kernel.org
7191S:	Maintained
7192W:	https://linuxtv.org
7193W:	http://github.com/mkrufky
7194Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7195T:	git git://linuxtv.org/media_tree.git
7196F:	drivers/media/usb/dvb-usb/cxusb*
7197
7198DVB_USB_EC168 MEDIA DRIVER
7199M:	Antti Palosaari <crope@iki.fi>
7200L:	linux-media@vger.kernel.org
7201S:	Maintained
7202W:	https://linuxtv.org
7203W:	http://palosaari.fi/linux/
7204Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7205T:	git git://linuxtv.org/anttip/media_tree.git
7206F:	drivers/media/usb/dvb-usb-v2/ec168*
7207
7208DVB_USB_GL861 MEDIA DRIVER
7209M:	Antti Palosaari <crope@iki.fi>
7210L:	linux-media@vger.kernel.org
7211S:	Maintained
7212W:	https://linuxtv.org
7213Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7214T:	git git://linuxtv.org/anttip/media_tree.git
7215F:	drivers/media/usb/dvb-usb-v2/gl861*
7216
7217DVB_USB_MXL111SF MEDIA DRIVER
7218M:	Michael Krufky <mkrufky@linuxtv.org>
7219L:	linux-media@vger.kernel.org
7220S:	Maintained
7221W:	https://linuxtv.org
7222W:	http://github.com/mkrufky
7223Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7224T:	git git://linuxtv.org/mkrufky/mxl111sf.git
7225F:	drivers/media/usb/dvb-usb-v2/mxl111sf*
7226
7227DVB_USB_RTL28XXU MEDIA DRIVER
7228M:	Antti Palosaari <crope@iki.fi>
7229L:	linux-media@vger.kernel.org
7230S:	Maintained
7231W:	https://linuxtv.org
7232W:	http://palosaari.fi/linux/
7233Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7234T:	git git://linuxtv.org/anttip/media_tree.git
7235F:	drivers/media/usb/dvb-usb-v2/rtl28xxu*
7236
7237DVB_USB_V2 MEDIA DRIVER
7238M:	Antti Palosaari <crope@iki.fi>
7239L:	linux-media@vger.kernel.org
7240S:	Maintained
7241W:	https://linuxtv.org
7242W:	http://palosaari.fi/linux/
7243Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7244T:	git git://linuxtv.org/anttip/media_tree.git
7245F:	drivers/media/usb/dvb-usb-v2/dvb_usb*
7246F:	drivers/media/usb/dvb-usb-v2/usb_urb.c
7247
7248DYNAMIC DEBUG
7249M:	Jason Baron <jbaron@akamai.com>
7250S:	Maintained
7251F:	include/linux/dynamic_debug.h
7252F:	lib/dynamic_debug.c
7253M:	Jim Cromie <jim.cromie@gmail.com>
7254F:	lib/test_dynamic_debug.c
7255
7256DYNAMIC INTERRUPT MODERATION
7257M:	Tal Gilboa <talgi@nvidia.com>
7258S:	Maintained
7259F:	Documentation/networking/net_dim.rst
7260F:	include/linux/dim.h
7261F:	lib/dim/
7262
7263DZ DECSTATION DZ11 SERIAL DRIVER
7264M:	"Maciej W. Rozycki" <macro@orcam.me.uk>
7265S:	Maintained
7266F:	drivers/tty/serial/dz.*
7267
7268E3X0 POWER BUTTON DRIVER
7269M:	Moritz Fischer <moritz.fischer@ettus.com>
7270L:	usrp-users@lists.ettus.com
7271S:	Supported
7272W:	http://www.ettus.com
7273F:	Documentation/devicetree/bindings/input/e3x0-button.txt
7274F:	drivers/input/misc/e3x0-button.c
7275
7276E4000 MEDIA DRIVER
7277M:	Antti Palosaari <crope@iki.fi>
7278L:	linux-media@vger.kernel.org
7279S:	Maintained
7280W:	https://linuxtv.org
7281W:	http://palosaari.fi/linux/
7282Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7283T:	git git://linuxtv.org/anttip/media_tree.git
7284F:	drivers/media/tuners/e4000*
7285
7286EARTH_PT1 MEDIA DRIVER
7287M:	Akihiro Tsukada <tskd08@gmail.com>
7288L:	linux-media@vger.kernel.org
7289S:	Odd Fixes
7290F:	drivers/media/pci/pt1/
7291
7292EARTH_PT3 MEDIA DRIVER
7293M:	Akihiro Tsukada <tskd08@gmail.com>
7294L:	linux-media@vger.kernel.org
7295S:	Odd Fixes
7296F:	drivers/media/pci/pt3/
7297
7298EC100 MEDIA DRIVER
7299M:	Antti Palosaari <crope@iki.fi>
7300L:	linux-media@vger.kernel.org
7301S:	Maintained
7302W:	https://linuxtv.org
7303W:	http://palosaari.fi/linux/
7304Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7305T:	git git://linuxtv.org/anttip/media_tree.git
7306F:	drivers/media/dvb-frontends/ec100*
7307
7308ECRYPT FILE SYSTEM
7309M:	Tyler Hicks <code@tyhicks.com>
7310L:	ecryptfs@vger.kernel.org
7311S:	Odd Fixes
7312W:	http://ecryptfs.org
7313W:	https://launchpad.net/ecryptfs
7314T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7315F:	Documentation/filesystems/ecryptfs.rst
7316F:	fs/ecryptfs/
7317
7318EDAC-AMD64
7319M:	Yazen Ghannam <yazen.ghannam@amd.com>
7320L:	linux-edac@vger.kernel.org
7321S:	Supported
7322F:	drivers/edac/amd64_edac*
7323F:	drivers/edac/mce_amd*
7324
7325EDAC-ARMADA
7326M:	Jan Luebbe <jlu@pengutronix.de>
7327L:	linux-edac@vger.kernel.org
7328S:	Maintained
7329F:	Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7330F:	drivers/edac/armada_xp_*
7331
7332EDAC-AST2500
7333M:	Stefan Schaeckeler <sschaeck@cisco.com>
7334S:	Supported
7335F:	Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7336F:	drivers/edac/aspeed_edac.c
7337
7338EDAC-BLUEFIELD
7339M:	Shravan Kumar Ramani <shravankr@nvidia.com>
7340S:	Supported
7341F:	drivers/edac/bluefield_edac.c
7342
7343EDAC-CALXEDA
7344M:	Andre Przywara <andre.przywara@arm.com>
7345L:	linux-edac@vger.kernel.org
7346S:	Maintained
7347F:	drivers/edac/highbank*
7348
7349EDAC-CAVIUM OCTEON
7350M:	Ralf Baechle <ralf@linux-mips.org>
7351L:	linux-edac@vger.kernel.org
7352L:	linux-mips@vger.kernel.org
7353S:	Supported
7354F:	drivers/edac/octeon_edac*
7355
7356EDAC-CAVIUM THUNDERX
7357M:	Robert Richter <rric@kernel.org>
7358L:	linux-edac@vger.kernel.org
7359S:	Odd Fixes
7360F:	drivers/edac/thunderx_edac*
7361
7362EDAC-CORE
7363M:	Borislav Petkov <bp@alien8.de>
7364M:	Tony Luck <tony.luck@intel.com>
7365R:	James Morse <james.morse@arm.com>
7366R:	Mauro Carvalho Chehab <mchehab@kernel.org>
7367R:	Robert Richter <rric@kernel.org>
7368L:	linux-edac@vger.kernel.org
7369S:	Supported
7370T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7371F:	Documentation/admin-guide/ras.rst
7372F:	Documentation/driver-api/edac.rst
7373F:	drivers/edac/
7374F:	include/linux/edac.h
7375
7376EDAC-DMC520
7377M:	Lei Wang <lewan@microsoft.com>
7378L:	linux-edac@vger.kernel.org
7379S:	Supported
7380F:	drivers/edac/dmc520_edac.c
7381
7382EDAC-E752X
7383M:	Mark Gross <markgross@kernel.org>
7384L:	linux-edac@vger.kernel.org
7385S:	Maintained
7386F:	drivers/edac/e752x_edac.c
7387
7388EDAC-E7XXX
7389L:	linux-edac@vger.kernel.org
7390S:	Maintained
7391F:	drivers/edac/e7xxx_edac.c
7392
7393EDAC-FSL_DDR
7394M:	York Sun <york.sun@nxp.com>
7395L:	linux-edac@vger.kernel.org
7396S:	Maintained
7397F:	drivers/edac/fsl_ddr_edac.*
7398
7399EDAC-GHES
7400M:	Mauro Carvalho Chehab <mchehab@kernel.org>
7401L:	linux-edac@vger.kernel.org
7402S:	Maintained
7403F:	drivers/edac/ghes_edac.c
7404
7405EDAC-I10NM
7406M:	Tony Luck <tony.luck@intel.com>
7407L:	linux-edac@vger.kernel.org
7408S:	Maintained
7409F:	drivers/edac/i10nm_base.c
7410
7411EDAC-I3000
7412L:	linux-edac@vger.kernel.org
7413S:	Orphan
7414F:	drivers/edac/i3000_edac.c
7415
7416EDAC-I5000
7417L:	linux-edac@vger.kernel.org
7418S:	Maintained
7419F:	drivers/edac/i5000_edac.c
7420
7421EDAC-I5400
7422M:	Mauro Carvalho Chehab <mchehab@kernel.org>
7423L:	linux-edac@vger.kernel.org
7424S:	Maintained
7425F:	drivers/edac/i5400_edac.c
7426
7427EDAC-I7300
7428M:	Mauro Carvalho Chehab <mchehab@kernel.org>
7429L:	linux-edac@vger.kernel.org
7430S:	Maintained
7431F:	drivers/edac/i7300_edac.c
7432
7433EDAC-I7CORE
7434M:	Mauro Carvalho Chehab <mchehab@kernel.org>
7435L:	linux-edac@vger.kernel.org
7436S:	Maintained
7437F:	drivers/edac/i7core_edac.c
7438
7439EDAC-I82443BXGX
7440M:	Tim Small <tim@buttersideup.com>
7441L:	linux-edac@vger.kernel.org
7442S:	Maintained
7443F:	drivers/edac/i82443bxgx_edac.c
7444
7445EDAC-I82975X
7446M:	"Arvind R." <arvino55@gmail.com>
7447L:	linux-edac@vger.kernel.org
7448S:	Maintained
7449F:	drivers/edac/i82975x_edac.c
7450
7451EDAC-IE31200
7452M:	Jason Baron <jbaron@akamai.com>
7453L:	linux-edac@vger.kernel.org
7454S:	Maintained
7455F:	drivers/edac/ie31200_edac.c
7456
7457EDAC-IGEN6
7458M:	Tony Luck <tony.luck@intel.com>
7459R:	Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7460L:	linux-edac@vger.kernel.org
7461S:	Maintained
7462F:	drivers/edac/igen6_edac.c
7463
7464EDAC-MPC85XX
7465M:	Johannes Thumshirn <morbidrsa@gmail.com>
7466L:	linux-edac@vger.kernel.org
7467S:	Maintained
7468F:	drivers/edac/mpc85xx_edac.[ch]
7469
7470EDAC-PASEMI
7471M:	Egor Martovetsky <egor@pasemi.com>
7472L:	linux-edac@vger.kernel.org
7473S:	Maintained
7474F:	drivers/edac/pasemi_edac.c
7475
7476EDAC-PND2
7477M:	Tony Luck <tony.luck@intel.com>
7478L:	linux-edac@vger.kernel.org
7479S:	Maintained
7480F:	drivers/edac/pnd2_edac.[ch]
7481
7482EDAC-QCOM
7483M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
7484L:	linux-arm-msm@vger.kernel.org
7485L:	linux-edac@vger.kernel.org
7486S:	Maintained
7487F:	drivers/edac/qcom_edac.c
7488
7489EDAC-R82600
7490M:	Tim Small <tim@buttersideup.com>
7491L:	linux-edac@vger.kernel.org
7492S:	Maintained
7493F:	drivers/edac/r82600_edac.c
7494
7495EDAC-SBRIDGE
7496M:	Tony Luck <tony.luck@intel.com>
7497R:	Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7498L:	linux-edac@vger.kernel.org
7499S:	Maintained
7500F:	drivers/edac/sb_edac.c
7501
7502EDAC-SKYLAKE
7503M:	Tony Luck <tony.luck@intel.com>
7504L:	linux-edac@vger.kernel.org
7505S:	Maintained
7506F:	drivers/edac/skx_*.[ch]
7507
7508EDAC-TI
7509M:	Tero Kristo <kristo@kernel.org>
7510L:	linux-edac@vger.kernel.org
7511S:	Odd Fixes
7512F:	drivers/edac/ti_edac.c
7513
7514EDIROL UA-101/UA-1000 DRIVER
7515M:	Clemens Ladisch <clemens@ladisch.de>
7516L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
7517S:	Maintained
7518T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7519F:	sound/usb/misc/ua101.c
7520
7521EFI TEST DRIVER
7522M:	Ivan Hu <ivan.hu@canonical.com>
7523M:	Ard Biesheuvel <ardb@kernel.org>
7524L:	linux-efi@vger.kernel.org
7525S:	Maintained
7526F:	drivers/firmware/efi/test/
7527
7528EFI VARIABLE FILESYSTEM
7529M:	Jeremy Kerr <jk@ozlabs.org>
7530M:	Ard Biesheuvel <ardb@kernel.org>
7531L:	linux-efi@vger.kernel.org
7532S:	Maintained
7533T:	git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7534F:	fs/efivarfs/
7535
7536EFIFB FRAMEBUFFER DRIVER
7537M:	Peter Jones <pjones@redhat.com>
7538L:	linux-fbdev@vger.kernel.org
7539S:	Maintained
7540F:	drivers/video/fbdev/efifb.c
7541
7542EFS FILESYSTEM
7543S:	Orphan
7544W:	http://aeschi.ch.eu.org/efs/
7545F:	fs/efs/
7546
7547EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7548M:	Douglas Miller <dougmill@linux.ibm.com>
7549L:	netdev@vger.kernel.org
7550S:	Maintained
7551F:	drivers/net/ethernet/ibm/ehea/
7552
7553ELM327 CAN NETWORK DRIVER
7554M:	Max Staudt <max@enpas.org>
7555L:	linux-can@vger.kernel.org
7556S:	Maintained
7557F:	Documentation/networking/device_drivers/can/can327.rst
7558F:	drivers/net/can/can327.c
7559
7560EM28XX VIDEO4LINUX DRIVER
7561M:	Mauro Carvalho Chehab <mchehab@kernel.org>
7562L:	linux-media@vger.kernel.org
7563S:	Maintained
7564W:	https://linuxtv.org
7565T:	git git://linuxtv.org/media_tree.git
7566F:	Documentation/admin-guide/media/em28xx*
7567F:	drivers/media/usb/em28xx/
7568
7569EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7570M:	Adrian Hunter <adrian.hunter@intel.com>
7571M:	Ritesh Harjani <riteshh@codeaurora.org>
7572M:	Asutosh Das <asutoshd@codeaurora.org>
7573L:	linux-mmc@vger.kernel.org
7574S:	Supported
7575F:	drivers/mmc/host/cqhci*
7576
7577EMULEX 10Gbps iSCSI - OneConnect DRIVER
7578M:	Ketan Mukadam <ketan.mukadam@broadcom.com>
7579L:	linux-scsi@vger.kernel.org
7580S:	Supported
7581W:	http://www.broadcom.com
7582F:	drivers/scsi/be2iscsi/
7583
7584EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7585M:	Ajit Khaparde <ajit.khaparde@broadcom.com>
7586M:	Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7587M:	Somnath Kotur <somnath.kotur@broadcom.com>
7588L:	netdev@vger.kernel.org
7589S:	Supported
7590W:	http://www.emulex.com
7591F:	drivers/net/ethernet/emulex/benet/
7592
7593EMULEX ONECONNECT ROCE DRIVER
7594M:	Selvin Xavier <selvin.xavier@broadcom.com>
7595L:	linux-rdma@vger.kernel.org
7596S:	Odd Fixes
7597W:	http://www.broadcom.com
7598F:	drivers/infiniband/hw/ocrdma/
7599F:	include/uapi/rdma/ocrdma-abi.h
7600
7601EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7602M:	James Smart <james.smart@broadcom.com>
7603M:	Dick Kennedy <dick.kennedy@broadcom.com>
7604L:	linux-scsi@vger.kernel.org
7605S:	Supported
7606W:	http://www.broadcom.com
7607F:	drivers/scsi/lpfc/
7608
7609EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7610M:	James Smart <james.smart@broadcom.com>
7611M:	Ram Vegesna <ram.vegesna@broadcom.com>
7612L:	linux-scsi@vger.kernel.org
7613L:	target-devel@vger.kernel.org
7614S:	Supported
7615W:	http://www.broadcom.com
7616F:	drivers/scsi/elx/
7617
7618ENE CB710 FLASH CARD READER DRIVER
7619M:	Michał Mirosław <mirq-linux@rere.qmqm.pl>
7620S:	Maintained
7621F:	drivers/misc/cb710/
7622F:	drivers/mmc/host/cb710-mmc.*
7623F:	include/linux/cb710.h
7624
7625ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7626M:	Maxim Levitsky <maximlevitsky@gmail.com>
7627S:	Maintained
7628F:	drivers/media/rc/ene_ir.*
7629
7630EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7631M:	Laurentiu Tudor <laurentiu.tudor@nxp.com>
7632L:	linuxppc-dev@lists.ozlabs.org
7633S:	Maintained
7634F:	drivers/tty/ehv_bytechan.c
7635
7636EPSON S1D13XXX FRAMEBUFFER DRIVER
7637M:	Kristoffer Ericson <kristoffer.ericson@gmail.com>
7638S:	Maintained
7639T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7640F:	drivers/video/fbdev/s1d13xxxfb.c
7641F:	include/video/s1d13xxxfb.h
7642
7643EROFS FILE SYSTEM
7644M:	Gao Xiang <xiang@kernel.org>
7645M:	Chao Yu <chao@kernel.org>
7646R:	Yue Hu <huyue2@coolpad.com>
7647R:	Jeffle Xu <jefflexu@linux.alibaba.com>
7648L:	linux-erofs@lists.ozlabs.org
7649S:	Maintained
7650T:	git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7651F:	Documentation/ABI/testing/sysfs-fs-erofs
7652F:	Documentation/filesystems/erofs.rst
7653F:	fs/erofs/
7654F:	include/trace/events/erofs.h
7655
7656ERRSEQ ERROR TRACKING INFRASTRUCTURE
7657M:	Jeff Layton <jlayton@kernel.org>
7658S:	Maintained
7659F:	include/linux/errseq.h
7660F:	lib/errseq.c
7661
7662ESD CAN/USB DRIVERS
7663M:	Frank Jungclaus <frank.jungclaus@esd.eu>
7664R:	socketcan@esd.eu
7665L:	linux-can@vger.kernel.org
7666S:	Maintained
7667F:	drivers/net/can/usb/esd_usb.c
7668
7669ET131X NETWORK DRIVER
7670M:	Mark Einon <mark.einon@gmail.com>
7671S:	Odd Fixes
7672F:	drivers/net/ethernet/agere/
7673
7674ETAS ES58X CAN/USB DRIVER
7675M:	Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7676L:	linux-can@vger.kernel.org
7677S:	Maintained
7678F:	Documentation/networking/devlink/etas_es58x.rst
7679F:	drivers/net/can/usb/etas_es58x/
7680
7681ETHERNET BRIDGE
7682M:	Roopa Prabhu <roopa@nvidia.com>
7683M:	Nikolay Aleksandrov <razor@blackwall.org>
7684L:	bridge@lists.linux-foundation.org (moderated for non-subscribers)
7685L:	netdev@vger.kernel.org
7686S:	Maintained
7687W:	http://www.linuxfoundation.org/en/Net:Bridge
7688F:	include/linux/netfilter_bridge/
7689F:	net/bridge/
7690
7691ETHERNET PHY LIBRARY
7692M:	Andrew Lunn <andrew@lunn.ch>
7693M:	Heiner Kallweit <hkallweit1@gmail.com>
7694R:	Russell King <linux@armlinux.org.uk>
7695L:	netdev@vger.kernel.org
7696S:	Maintained
7697F:	Documentation/ABI/testing/sysfs-class-net-phydev
7698F:	Documentation/devicetree/bindings/net/ethernet-phy.yaml
7699F:	Documentation/devicetree/bindings/net/mdio*
7700F:	Documentation/devicetree/bindings/net/qca,ar803x.yaml
7701F:	Documentation/networking/phy.rst
7702F:	drivers/net/mdio/
7703F:	drivers/net/mdio/acpi_mdio.c
7704F:	drivers/net/mdio/fwnode_mdio.c
7705F:	drivers/net/mdio/of_mdio.c
7706F:	drivers/net/pcs/
7707F:	drivers/net/phy/
7708F:	include/dt-bindings/net/qca-ar803x.h
7709F:	include/linux/linkmode.h
7710F:	include/linux/*mdio*.h
7711F:	include/linux/mdio/*.h
7712F:	include/linux/mii.h
7713F:	include/linux/of_net.h
7714F:	include/linux/phy.h
7715F:	include/linux/phy_fixed.h
7716F:	include/linux/platform_data/mdio-bcm-unimac.h
7717F:	include/linux/platform_data/mdio-gpio.h
7718F:	include/trace/events/mdio.h
7719F:	include/uapi/linux/mdio.h
7720F:	include/uapi/linux/mii.h
7721F:	net/core/of_net.c
7722
7723EXEC & BINFMT API
7724R:	Eric Biederman <ebiederm@xmission.com>
7725R:	Kees Cook <keescook@chromium.org>
7726L:	linux-mm@kvack.org
7727S:	Supported
7728T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7729F:	fs/*binfmt_*.c
7730F:	fs/exec.c
7731F:	include/linux/binfmts.h
7732F:	include/linux/elf.h
7733F:	include/uapi/linux/binfmts.h
7734F:	include/uapi/linux/elf.h
7735F:	tools/testing/selftests/exec/
7736N:	asm/elf.h
7737N:	binfmt
7738
7739EXFAT FILE SYSTEM
7740M:	Namjae Jeon <linkinjeon@kernel.org>
7741M:	Sungjong Seo <sj1557.seo@samsung.com>
7742L:	linux-fsdevel@vger.kernel.org
7743S:	Maintained
7744T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7745F:	fs/exfat/
7746
7747EXT2 FILE SYSTEM
7748M:	Jan Kara <jack@suse.com>
7749L:	linux-ext4@vger.kernel.org
7750S:	Maintained
7751F:	Documentation/filesystems/ext2.rst
7752F:	fs/ext2/
7753F:	include/linux/ext2*
7754
7755EXT4 FILE SYSTEM
7756M:	"Theodore Ts'o" <tytso@mit.edu>
7757M:	Andreas Dilger <adilger.kernel@dilger.ca>
7758L:	linux-ext4@vger.kernel.org
7759S:	Maintained
7760W:	http://ext4.wiki.kernel.org
7761Q:	http://patchwork.ozlabs.org/project/linux-ext4/list/
7762T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7763F:	Documentation/filesystems/ext4/
7764F:	fs/ext4/
7765F:	include/trace/events/ext4.h
7766F:	include/uapi/linux/ext4.h
7767
7768Extended Verification Module (EVM)
7769M:	Mimi Zohar <zohar@linux.ibm.com>
7770L:	linux-integrity@vger.kernel.org
7771S:	Supported
7772T:	git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7773F:	security/integrity/evm/
7774F:	security/integrity/
7775
7776EXTENSIBLE FIRMWARE INTERFACE (EFI)
7777M:	Ard Biesheuvel <ardb@kernel.org>
7778L:	linux-efi@vger.kernel.org
7779S:	Maintained
7780T:	git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7781F:	Documentation/admin-guide/efi-stub.rst
7782F:	arch/*/include/asm/efi.h
7783F:	arch/*/kernel/efi.c
7784F:	arch/arm/boot/compressed/efi-header.S
7785F:	arch/x86/platform/efi/
7786F:	drivers/firmware/efi/
7787F:	include/linux/efi*.h
7788
7789EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7790M:	MyungJoo Ham <myungjoo.ham@samsung.com>
7791M:	Chanwoo Choi <cw00.choi@samsung.com>
7792L:	linux-kernel@vger.kernel.org
7793S:	Maintained
7794T:	git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7795F:	Documentation/devicetree/bindings/extcon/
7796F:	Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7797F:	drivers/extcon/
7798F:	include/linux/extcon.h
7799F:	include/linux/extcon/
7800
7801EXTRA BOOT CONFIG
7802M:	Masami Hiramatsu <mhiramat@kernel.org>
7803L:	linux-kernel@vger.kernel.org
7804L:	linux-trace-kernel@vger.kernel.org
7805Q:	https://patchwork.kernel.org/project/linux-trace-kernel/list/
7806S:	Maintained
7807T:	git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
7808F:	Documentation/admin-guide/bootconfig.rst
7809F:	fs/proc/bootconfig.c
7810F:	include/linux/bootconfig.h
7811F:	lib/bootconfig-data.S
7812F:	lib/bootconfig.c
7813F:	tools/bootconfig/*
7814F:	tools/bootconfig/scripts/*
7815
7816EXYNOS DP DRIVER
7817M:	Jingoo Han <jingoohan1@gmail.com>
7818L:	dri-devel@lists.freedesktop.org
7819S:	Maintained
7820F:	drivers/gpu/drm/exynos/exynos_dp*
7821
7822EXYNOS SYSMMU (IOMMU) driver
7823M:	Marek Szyprowski <m.szyprowski@samsung.com>
7824L:	iommu@lists.linux.dev
7825S:	Maintained
7826F:	drivers/iommu/exynos-iommu.c
7827
7828F2FS FILE SYSTEM
7829M:	Jaegeuk Kim <jaegeuk@kernel.org>
7830M:	Chao Yu <chao@kernel.org>
7831L:	linux-f2fs-devel@lists.sourceforge.net
7832S:	Maintained
7833W:	https://f2fs.wiki.kernel.org/
7834Q:	https://patchwork.kernel.org/project/f2fs/list/
7835B:	https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=f2fs
7836T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7837F:	Documentation/ABI/testing/sysfs-fs-f2fs
7838F:	Documentation/filesystems/f2fs.rst
7839F:	fs/f2fs/
7840F:	include/linux/f2fs_fs.h
7841F:	include/trace/events/f2fs.h
7842F:	include/uapi/linux/f2fs.h
7843
7844F71805F HARDWARE MONITORING DRIVER
7845M:	Jean Delvare <jdelvare@suse.com>
7846L:	linux-hwmon@vger.kernel.org
7847S:	Maintained
7848F:	Documentation/hwmon/f71805f.rst
7849F:	drivers/hwmon/f71805f.c
7850
7851FADDR2LINE
7852M:	Josh Poimboeuf <jpoimboe@kernel.org>
7853S:	Maintained
7854F:	scripts/faddr2line
7855
7856FAILOVER MODULE
7857M:	Sridhar Samudrala <sridhar.samudrala@intel.com>
7858L:	netdev@vger.kernel.org
7859S:	Supported
7860F:	Documentation/networking/failover.rst
7861F:	include/net/failover.h
7862F:	net/core/failover.c
7863
7864FANOTIFY
7865M:	Jan Kara <jack@suse.cz>
7866R:	Amir Goldstein <amir73il@gmail.com>
7867R:	Matthew Bobrowski <repnop@google.com>
7868L:	linux-fsdevel@vger.kernel.org
7869S:	Maintained
7870F:	fs/notify/fanotify/
7871F:	include/linux/fanotify.h
7872F:	include/uapi/linux/fanotify.h
7873
7874FARADAY FOTG210 USB2 DUAL-ROLE CONTROLLER
7875M:	Linus Walleij <linus.walleij@linaro.org>
7876L:	linux-usb@vger.kernel.org
7877S:	Maintained
7878F:	drivers/usb/fotg210/
7879
7880FARSYNC SYNCHRONOUS DRIVER
7881M:	Kevin Curtis <kevin.curtis@farsite.co.uk>
7882S:	Supported
7883W:	http://www.farsite.co.uk/
7884F:	drivers/net/wan/farsync.*
7885
7886FAULT INJECTION SUPPORT
7887M:	Akinobu Mita <akinobu.mita@gmail.com>
7888S:	Supported
7889F:	Documentation/fault-injection/
7890F:	lib/fault-inject.c
7891
7892FBTFT Framebuffer drivers
7893L:	dri-devel@lists.freedesktop.org
7894L:	linux-fbdev@vger.kernel.org
7895S:	Orphan
7896F:	drivers/staging/fbtft/
7897
7898FC0011 TUNER DRIVER
7899M:	Michael Buesch <m@bues.ch>
7900L:	linux-media@vger.kernel.org
7901S:	Maintained
7902F:	drivers/media/tuners/fc0011.c
7903F:	drivers/media/tuners/fc0011.h
7904
7905FC2580 MEDIA DRIVER
7906M:	Antti Palosaari <crope@iki.fi>
7907L:	linux-media@vger.kernel.org
7908S:	Maintained
7909W:	https://linuxtv.org
7910W:	http://palosaari.fi/linux/
7911Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7912T:	git git://linuxtv.org/anttip/media_tree.git
7913F:	drivers/media/tuners/fc2580*
7914
7915FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7916M:	Hannes Reinecke <hare@suse.de>
7917L:	linux-scsi@vger.kernel.org
7918S:	Supported
7919W:	www.Open-FCoE.org
7920F:	drivers/scsi/fcoe/
7921F:	drivers/scsi/libfc/
7922F:	include/scsi/fc/
7923F:	include/scsi/libfc.h
7924F:	include/scsi/libfcoe.h
7925F:	include/uapi/scsi/fc/
7926
7927FILE LOCKING (flock() and fcntl()/lockf())
7928M:	Jeff Layton <jlayton@kernel.org>
7929M:	Chuck Lever <chuck.lever@oracle.com>
7930L:	linux-fsdevel@vger.kernel.org
7931S:	Maintained
7932F:	fs/fcntl.c
7933F:	fs/locks.c
7934F:	include/linux/fcntl.h
7935F:	include/uapi/linux/fcntl.h
7936
7937FILESYSTEM DIRECT ACCESS (DAX)
7938M:	Dan Williams <dan.j.williams@intel.com>
7939R:	Matthew Wilcox <willy@infradead.org>
7940R:	Jan Kara <jack@suse.cz>
7941L:	linux-fsdevel@vger.kernel.org
7942L:	nvdimm@lists.linux.dev
7943S:	Supported
7944F:	fs/dax.c
7945F:	include/linux/dax.h
7946F:	include/trace/events/fs_dax.h
7947
7948FILESYSTEMS (VFS and infrastructure)
7949M:	Alexander Viro <viro@zeniv.linux.org.uk>
7950M:	Christian Brauner <brauner@kernel.org>
7951L:	linux-fsdevel@vger.kernel.org
7952S:	Maintained
7953F:	fs/*
7954F:	include/linux/fs.h
7955F:	include/linux/fs_types.h
7956F:	include/uapi/linux/fs.h
7957F:	include/uapi/linux/openat2.h
7958
7959FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7960M:	Riku Voipio <riku.voipio@iki.fi>
7961L:	linux-hwmon@vger.kernel.org
7962S:	Maintained
7963F:	drivers/hwmon/f75375s.c
7964F:	include/linux/f75375s.h
7965
7966FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7967M:	Clemens Ladisch <clemens@ladisch.de>
7968M:	Takashi Sakamoto <o-takashi@sakamocchi.jp>
7969L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
7970S:	Maintained
7971T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7972F:	include/uapi/sound/firewire.h
7973F:	sound/firewire/
7974
7975FIREWIRE MEDIA DRIVERS (firedtv)
7976M:	Stefan Richter <stefanr@s5r6.in-berlin.de>
7977L:	linux-media@vger.kernel.org
7978L:	linux1394-devel@lists.sourceforge.net
7979S:	Maintained
7980T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7981F:	drivers/media/firewire/
7982
7983FIREWIRE SBP-2 TARGET
7984M:	Chris Boot <bootc@bootc.net>
7985L:	linux-scsi@vger.kernel.org
7986L:	target-devel@vger.kernel.org
7987L:	linux1394-devel@lists.sourceforge.net
7988S:	Maintained
7989T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7990F:	drivers/target/sbp/
7991
7992FIREWIRE SUBSYSTEM
7993M:	Takashi Sakamoto <o-takashi@sakamocchi.jp>
7994M:	Takashi Sakamoto <takaswie@kernel.org>
7995L:	linux1394-devel@lists.sourceforge.net
7996S:	Maintained
7997W:	http://ieee1394.docs.kernel.org/
7998T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7999F:	drivers/firewire/
8000F:	include/linux/firewire.h
8001F:	include/uapi/linux/firewire*.h
8002F:	tools/firewire/
8003
8004FIRMWARE FRAMEWORK FOR ARMV8-A
8005M:	Sudeep Holla <sudeep.holla@arm.com>
8006L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8007S:	Maintained
8008F:	drivers/firmware/arm_ffa/
8009F:	include/linux/arm_ffa.h
8010
8011FIRMWARE LOADER (request_firmware)
8012M:	Luis Chamberlain <mcgrof@kernel.org>
8013M:	Russ Weight <russell.h.weight@intel.com>
8014L:	linux-kernel@vger.kernel.org
8015S:	Maintained
8016F:	Documentation/firmware_class/
8017F:	drivers/base/firmware_loader/
8018F:	include/linux/firmware.h
8019
8020FLEXTIMER FTM-QUADDEC DRIVER
8021M:	Patrick Havelange <patrick.havelange@essensium.com>
8022L:	linux-iio@vger.kernel.org
8023S:	Maintained
8024F:	Documentation/devicetree/bindings/counter/ftm-quaddec.txt
8025F:	drivers/counter/ftm-quaddec.c
8026
8027FLOPPY DRIVER
8028M:	Denis Efremov <efremov@linux.com>
8029L:	linux-block@vger.kernel.org
8030S:	Odd Fixes
8031F:	drivers/block/floppy.c
8032
8033FLYSKY FSIA6B RC RECEIVER
8034M:	Markus Koch <markus@notsyncing.net>
8035L:	linux-input@vger.kernel.org
8036S:	Maintained
8037F:	drivers/input/joystick/fsia6b.c
8038
8039FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
8040M:	Geoffrey D. Bennett <g@b4.vu>
8041L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
8042S:	Maintained
8043T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8044F:	sound/usb/mixer_scarlett_gen2.c
8045
8046FORCEDETH GIGABIT ETHERNET DRIVER
8047M:	Rain River <rain.1986.08.12@gmail.com>
8048M:	Zhu Yanjun <zyjzyj2000@gmail.com>
8049L:	netdev@vger.kernel.org
8050S:	Maintained
8051F:	drivers/net/ethernet/nvidia/*
8052
8053FORTIFY_SOURCE
8054M:	Kees Cook <keescook@chromium.org>
8055L:	linux-hardening@vger.kernel.org
8056S:	Supported
8057T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8058F:	include/linux/fortify-string.h
8059F:	lib/fortify_kunit.c
8060F:	lib/memcpy_kunit.c
8061F:	lib/strscpy_kunit.c
8062F:	lib/test_fortify/*
8063F:	scripts/test_fortify.sh
8064K:	\b__NO_FORTIFY\b
8065
8066FPGA DFL DRIVERS
8067M:	Wu Hao <hao.wu@intel.com>
8068R:	Tom Rix <trix@redhat.com>
8069L:	linux-fpga@vger.kernel.org
8070S:	Maintained
8071F:	Documentation/ABI/testing/sysfs-bus-dfl*
8072F:	Documentation/fpga/dfl.rst
8073F:	drivers/fpga/dfl*
8074F:	drivers/uio/uio_dfl.c
8075F:	include/linux/dfl.h
8076F:	include/uapi/linux/fpga-dfl.h
8077
8078FPGA MANAGER FRAMEWORK
8079M:	Moritz Fischer <mdf@kernel.org>
8080M:	Wu Hao <hao.wu@intel.com>
8081M:	Xu Yilun <yilun.xu@intel.com>
8082R:	Tom Rix <trix@redhat.com>
8083L:	linux-fpga@vger.kernel.org
8084S:	Maintained
8085Q:	http://patchwork.kernel.org/project/linux-fpga/list/
8086T:	git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8087F:	Documentation/devicetree/bindings/fpga/
8088F:	Documentation/driver-api/fpga/
8089F:	Documentation/fpga/
8090F:	drivers/fpga/
8091F:	include/linux/fpga/
8092
8093INTEL MAX10 BMC SECURE UPDATES
8094M:	Russ Weight <russell.h.weight@intel.com>
8095L:	linux-fpga@vger.kernel.org
8096S:	Maintained
8097F:	Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8098F:	drivers/fpga/intel-m10-bmc-sec-update.c
8099
8100MICROCHIP POLARFIRE FPGA DRIVERS
8101M:	Conor Dooley <conor.dooley@microchip.com>
8102R:	Ivan Bornyakov <i.bornyakov@metrotek.ru>
8103L:	linux-fpga@vger.kernel.org
8104S:	Supported
8105F:	Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8106F:	drivers/fpga/microchip-spi.c
8107
8108FPU EMULATOR
8109M:	Bill Metzenthen <billm@melbpc.org.au>
8110S:	Maintained
8111W:	https://floatingpoint.billm.au/
8112F:	arch/x86/math-emu/
8113
8114FRAMEBUFFER CORE
8115M:	Daniel Vetter <daniel@ffwll.ch>
8116F:	drivers/video/fbdev/core/
8117S:	Odd Fixes
8118T:	git git://anongit.freedesktop.org/drm/drm-misc
8119
8120FRAMEBUFFER LAYER
8121M:	Helge Deller <deller@gmx.de>
8122L:	linux-fbdev@vger.kernel.org
8123L:	dri-devel@lists.freedesktop.org
8124S:	Maintained
8125Q:	http://patchwork.kernel.org/project/linux-fbdev/list/
8126T:	git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8127F:	Documentation/fb/
8128F:	drivers/video/
8129F:	include/linux/fb.h
8130F:	include/uapi/linux/fb.h
8131F:	include/uapi/video/
8132F:	include/video/
8133
8134FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8135M:	Horia Geantă <horia.geanta@nxp.com>
8136M:	Pankaj Gupta <pankaj.gupta@nxp.com>
8137M:	Gaurav Jain <gaurav.jain@nxp.com>
8138L:	linux-crypto@vger.kernel.org
8139S:	Maintained
8140F:	Documentation/devicetree/bindings/crypto/fsl,sec-v4.0*
8141F:	drivers/crypto/caam/
8142
8143FREESCALE COLDFIRE M5441X MMC DRIVER
8144M:	Angelo Dureghello <angelo.dureghello@timesys.com>
8145L:	linux-mmc@vger.kernel.org
8146S:	Maintained
8147F:	drivers/mmc/host/sdhci-esdhc-mcf.c
8148F:	include/linux/platform_data/mmc-esdhc-mcf.h
8149
8150FREESCALE DIU FRAMEBUFFER DRIVER
8151M:	Timur Tabi <timur@kernel.org>
8152L:	linux-fbdev@vger.kernel.org
8153S:	Maintained
8154F:	drivers/video/fbdev/fsl-diu-fb.*
8155
8156FREESCALE DMA DRIVER
8157M:	Li Yang <leoyang.li@nxp.com>
8158M:	Zhang Wei <zw@zh-kernel.org>
8159L:	linuxppc-dev@lists.ozlabs.org
8160S:	Maintained
8161F:	drivers/dma/fsldma.*
8162
8163FREESCALE DSPI DRIVER
8164M:	Vladimir Oltean <olteanv@gmail.com>
8165L:	linux-spi@vger.kernel.org
8166S:	Maintained
8167F:	Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8168F:	drivers/spi/spi-fsl-dspi.c
8169F:	include/linux/spi/spi-fsl-dspi.h
8170
8171FREESCALE ENETC ETHERNET DRIVERS
8172M:	Claudiu Manoil <claudiu.manoil@nxp.com>
8173L:	netdev@vger.kernel.org
8174S:	Maintained
8175F:	drivers/net/ethernet/freescale/enetc/
8176
8177FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8178M:	Claudiu Manoil <claudiu.manoil@nxp.com>
8179L:	netdev@vger.kernel.org
8180S:	Maintained
8181F:	Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8182F:	drivers/net/ethernet/freescale/gianfar*
8183
8184FREESCALE GPMI NAND DRIVER
8185M:	Han Xu <han.xu@nxp.com>
8186L:	linux-mtd@lists.infradead.org
8187S:	Maintained
8188F:	drivers/mtd/nand/raw/gpmi-nand/*
8189
8190FREESCALE I2C CPM DRIVER
8191M:	Jochen Friedrich <jochen@scram.de>
8192L:	linuxppc-dev@lists.ozlabs.org
8193L:	linux-i2c@vger.kernel.org
8194S:	Maintained
8195F:	drivers/i2c/busses/i2c-cpm.c
8196
8197FREESCALE IMX / MXC FEC DRIVER
8198M:	Wei Fang <wei.fang@nxp.com>
8199R:	Shenwei Wang <shenwei.wang@nxp.com>
8200R:	Clark Wang <xiaoning.wang@nxp.com>
8201R:	NXP Linux Team <linux-imx@nxp.com>
8202L:	netdev@vger.kernel.org
8203S:	Maintained
8204F:	Documentation/devicetree/bindings/net/fsl,fec.yaml
8205F:	drivers/net/ethernet/freescale/fec.h
8206F:	drivers/net/ethernet/freescale/fec_main.c
8207F:	drivers/net/ethernet/freescale/fec_ptp.c
8208
8209FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8210M:	Sascha Hauer <s.hauer@pengutronix.de>
8211R:	Pengutronix Kernel Team <kernel@pengutronix.de>
8212L:	linux-fbdev@vger.kernel.org
8213L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8214S:	Maintained
8215F:	drivers/video/fbdev/imxfb.c
8216
8217FREESCALE IMX DDR PMU DRIVER
8218M:	Frank Li <Frank.li@nxp.com>
8219L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8220S:	Maintained
8221F:	Documentation/admin-guide/perf/imx-ddr.rst
8222F:	Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8223F:	drivers/perf/fsl_imx8_ddr_perf.c
8224
8225FREESCALE IMX I2C DRIVER
8226M:	Oleksij Rempel <o.rempel@pengutronix.de>
8227R:	Pengutronix Kernel Team <kernel@pengutronix.de>
8228L:	linux-i2c@vger.kernel.org
8229S:	Maintained
8230F:	Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8231F:	drivers/i2c/busses/i2c-imx.c
8232
8233FREESCALE IMX LPI2C DRIVER
8234M:	Dong Aisheng <aisheng.dong@nxp.com>
8235L:	linux-i2c@vger.kernel.org
8236L:	linux-imx@nxp.com
8237S:	Maintained
8238F:	Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8239F:	drivers/i2c/busses/i2c-imx-lpi2c.c
8240
8241FREESCALE MPC I2C DRIVER
8242M:	Chris Packham <chris.packham@alliedtelesis.co.nz>
8243L:	linux-i2c@vger.kernel.org
8244S:	Maintained
8245F:	Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8246F:	drivers/i2c/busses/i2c-mpc.c
8247
8248FREESCALE QORIQ DPAA ETHERNET DRIVER
8249M:	Madalin Bucur <madalin.bucur@nxp.com>
8250L:	netdev@vger.kernel.org
8251S:	Maintained
8252F:	drivers/net/ethernet/freescale/dpaa
8253
8254FREESCALE QORIQ DPAA FMAN DRIVER
8255M:	Madalin Bucur <madalin.bucur@nxp.com>
8256R:	Sean Anderson <sean.anderson@seco.com>
8257L:	netdev@vger.kernel.org
8258S:	Maintained
8259F:	Documentation/devicetree/bindings/net/fsl-fman.txt
8260F:	drivers/net/ethernet/freescale/fman
8261
8262FREESCALE QORIQ PTP CLOCK DRIVER
8263M:	Yangbo Lu <yangbo.lu@nxp.com>
8264L:	netdev@vger.kernel.org
8265S:	Maintained
8266F:	Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8267F:	drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8268F:	drivers/net/ethernet/freescale/dpaa2/dprtc*
8269F:	drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8270F:	drivers/ptp/ptp_qoriq.c
8271F:	drivers/ptp/ptp_qoriq_debugfs.c
8272F:	include/linux/fsl/ptp_qoriq.h
8273
8274FREESCALE QUAD SPI DRIVER
8275M:	Han Xu <han.xu@nxp.com>
8276L:	linux-spi@vger.kernel.org
8277S:	Maintained
8278F:	Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8279F:	drivers/spi/spi-fsl-qspi.c
8280
8281FREESCALE QUICC ENGINE LIBRARY
8282M:	Qiang Zhao <qiang.zhao@nxp.com>
8283L:	linuxppc-dev@lists.ozlabs.org
8284S:	Maintained
8285F:	drivers/soc/fsl/qe/
8286F:	include/soc/fsl/qe/
8287
8288FREESCALE QUICC ENGINE QMC DRIVER
8289M:	Herve Codina <herve.codina@bootlin.com>
8290L:	linuxppc-dev@lists.ozlabs.org
8291S:	Maintained
8292F:	Documentation/devicetree/bindings/soc/fsl/cpm_qe/fsl,cpm1-scc-qmc.yaml
8293F:	drivers/soc/fsl/qe/qmc.c
8294F:	include/soc/fsl/qe/qmc.h
8295
8296FREESCALE QUICC ENGINE TSA DRIVER
8297M:	Herve Codina <herve.codina@bootlin.com>
8298L:	linuxppc-dev@lists.ozlabs.org
8299S:	Maintained
8300F:	Documentation/devicetree/bindings/soc/fsl/cpm_qe/fsl,cpm1-tsa.yaml
8301F:	drivers/soc/fsl/qe/tsa.c
8302F:	drivers/soc/fsl/qe/tsa.h
8303F:	include/dt-bindings/soc/cpm1-fsl,tsa.h
8304
8305FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8306M:	Li Yang <leoyang.li@nxp.com>
8307L:	netdev@vger.kernel.org
8308L:	linuxppc-dev@lists.ozlabs.org
8309S:	Maintained
8310F:	drivers/net/ethernet/freescale/ucc_geth*
8311
8312FREESCALE QUICC ENGINE UCC HDLC DRIVER
8313M:	Zhao Qiang <qiang.zhao@nxp.com>
8314L:	netdev@vger.kernel.org
8315L:	linuxppc-dev@lists.ozlabs.org
8316S:	Maintained
8317F:	drivers/net/wan/fsl_ucc_hdlc*
8318
8319FREESCALE QUICC ENGINE UCC UART DRIVER
8320M:	Timur Tabi <timur@kernel.org>
8321L:	linuxppc-dev@lists.ozlabs.org
8322S:	Maintained
8323F:	drivers/tty/serial/ucc_uart.c
8324
8325FREESCALE SOC DRIVERS
8326M:	Li Yang <leoyang.li@nxp.com>
8327L:	linuxppc-dev@lists.ozlabs.org
8328L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8329S:	Maintained
8330F:	Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8331F:	Documentation/devicetree/bindings/soc/fsl/
8332F:	drivers/soc/fsl/
8333F:	include/linux/fsl/
8334F:	include/soc/fsl/
8335
8336FREESCALE SOC FS_ENET DRIVER
8337M:	Pantelis Antoniou <pantelis.antoniou@gmail.com>
8338L:	linuxppc-dev@lists.ozlabs.org
8339L:	netdev@vger.kernel.org
8340S:	Maintained
8341F:	drivers/net/ethernet/freescale/fs_enet/
8342F:	include/linux/fs_enet_pd.h
8343
8344FREESCALE SOC SOUND DRIVERS
8345M:	Shengjiu Wang <shengjiu.wang@gmail.com>
8346M:	Xiubo Li <Xiubo.Lee@gmail.com>
8347R:	Fabio Estevam <festevam@gmail.com>
8348R:	Nicolin Chen <nicoleotsuka@gmail.com>
8349L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
8350L:	linuxppc-dev@lists.ozlabs.org
8351S:	Maintained
8352F:	sound/soc/fsl/fsl*
8353F:	sound/soc/fsl/imx*
8354F:	sound/soc/fsl/mpc8610_hpcd.c
8355
8356FREESCALE SOC SOUND QMC DRIVER
8357M:	Herve Codina <herve.codina@bootlin.com>
8358L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
8359L:	linuxppc-dev@lists.ozlabs.org
8360S:	Maintained
8361F:	Documentation/devicetree/bindings/sound/fsl,qmc-audio.yaml
8362F:	sound/soc/fsl/fsl_qmc_audio.c
8363
8364FREESCALE USB PERIPHERAL DRIVERS
8365M:	Li Yang <leoyang.li@nxp.com>
8366L:	linux-usb@vger.kernel.org
8367L:	linuxppc-dev@lists.ozlabs.org
8368S:	Maintained
8369F:	drivers/usb/gadget/udc/fsl*
8370
8371FREESCALE USB PHY DRIVER
8372M:	Ran Wang <ran.wang_1@nxp.com>
8373L:	linux-usb@vger.kernel.org
8374L:	linuxppc-dev@lists.ozlabs.org
8375S:	Maintained
8376F:	drivers/usb/phy/phy-fsl-usb*
8377
8378FREEVXFS FILESYSTEM
8379M:	Christoph Hellwig <hch@infradead.org>
8380S:	Maintained
8381W:	ftp://ftp.openlinux.org/pub/people/hch/vxfs
8382F:	fs/freevxfs/
8383
8384FREEZER
8385M:	"Rafael J. Wysocki" <rafael@kernel.org>
8386M:	Pavel Machek <pavel@ucw.cz>
8387L:	linux-pm@vger.kernel.org
8388S:	Supported
8389F:	Documentation/power/freezing-of-tasks.rst
8390F:	include/linux/freezer.h
8391F:	kernel/freezer.c
8392
8393FRONTSWAP API
8394M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8395L:	linux-kernel@vger.kernel.org
8396S:	Maintained
8397F:	include/linux/frontswap.h
8398F:	mm/frontswap.c
8399
8400FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8401M:	David Howells <dhowells@redhat.com>
8402L:	linux-cachefs@redhat.com (moderated for non-subscribers)
8403S:	Supported
8404F:	Documentation/filesystems/caching/
8405F:	fs/fscache/
8406F:	include/linux/fscache*.h
8407
8408FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8409M:	Eric Biggers <ebiggers@kernel.org>
8410M:	Theodore Y. Ts'o <tytso@mit.edu>
8411M:	Jaegeuk Kim <jaegeuk@kernel.org>
8412L:	linux-fscrypt@vger.kernel.org
8413S:	Supported
8414Q:	https://patchwork.kernel.org/project/linux-fscrypt/list/
8415T:	git https://git.kernel.org/pub/scm/fs/fscrypt/linux.git
8416F:	Documentation/filesystems/fscrypt.rst
8417F:	fs/crypto/
8418F:	include/linux/fscrypt.h
8419F:	include/uapi/linux/fscrypt.h
8420
8421FSI SUBSYSTEM
8422M:	Jeremy Kerr <jk@ozlabs.org>
8423M:	Joel Stanley <joel@jms.id.au>
8424R:	Alistar Popple <alistair@popple.id.au>
8425R:	Eddie James <eajames@linux.ibm.com>
8426L:	linux-fsi@lists.ozlabs.org
8427S:	Supported
8428Q:	http://patchwork.ozlabs.org/project/linux-fsi/list/
8429T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8430F:	drivers/fsi/
8431F:	include/linux/fsi*.h
8432F:	include/trace/events/fsi*.h
8433
8434FSI-ATTACHED I2C DRIVER
8435M:	Eddie James <eajames@linux.ibm.com>
8436L:	linux-i2c@vger.kernel.org
8437L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
8438S:	Maintained
8439F:	Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8440F:	drivers/i2c/busses/i2c-fsi.c
8441
8442FSI-ATTACHED SPI DRIVER
8443M:	Eddie James <eajames@linux.ibm.com>
8444L:	linux-spi@vger.kernel.org
8445S:	Maintained
8446F:	Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8447F:	drivers/spi/spi-fsi.c
8448
8449FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8450M:	Jan Kara <jack@suse.cz>
8451R:	Amir Goldstein <amir73il@gmail.com>
8452L:	linux-fsdevel@vger.kernel.org
8453S:	Maintained
8454T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8455F:	fs/notify/
8456F:	include/linux/fsnotify*.h
8457
8458FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8459M:	Eric Biggers <ebiggers@kernel.org>
8460M:	Theodore Y. Ts'o <tytso@mit.edu>
8461L:	fsverity@lists.linux.dev
8462S:	Supported
8463Q:	https://patchwork.kernel.org/project/fsverity/list/
8464T:	git https://git.kernel.org/pub/scm/fs/fsverity/linux.git
8465F:	Documentation/filesystems/fsverity.rst
8466F:	fs/verity/
8467F:	include/linux/fsverity.h
8468F:	include/uapi/linux/fsverity.h
8469
8470FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8471M:	Michael Zaidman <michael.zaidman@gmail.com>
8472L:	linux-i2c@vger.kernel.org
8473L:	linux-input@vger.kernel.org
8474S:	Maintained
8475F:	drivers/hid/hid-ft260.c
8476
8477FUJITSU LAPTOP EXTRAS
8478M:	Jonathan Woithe <jwoithe@just42.net>
8479L:	platform-driver-x86@vger.kernel.org
8480S:	Maintained
8481F:	drivers/platform/x86/fujitsu-laptop.c
8482
8483FUJITSU TABLET EXTRAS
8484M:	Robert Gerlach <khnz@gmx.de>
8485L:	platform-driver-x86@vger.kernel.org
8486S:	Maintained
8487F:	drivers/platform/x86/fujitsu-tablet.c
8488
8489FUNCTION HOOKS (FTRACE)
8490M:	Steven Rostedt <rostedt@goodmis.org>
8491M:	Masami Hiramatsu <mhiramat@kernel.org>
8492R:	Mark Rutland <mark.rutland@arm.com>
8493L:	linux-kernel@vger.kernel.org
8494L:	linux-trace-kernel@vger.kernel.org
8495Q:	https://patchwork.kernel.org/project/linux-trace-kernel/list/
8496S:	Maintained
8497T:	git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
8498F:	Documentation/trace/ftrace*
8499F:	kernel/trace/ftrace*
8500F:	kernel/trace/fgraph.c
8501F:	arch/*/*/*/*ftrace*
8502F:	arch/*/*/*ftrace*
8503F:	include/*/ftrace.h
8504F:	samples/ftrace
8505
8506FUNGIBLE ETHERNET DRIVERS
8507M:	Dimitris Michailidis <dmichail@fungible.com>
8508L:	netdev@vger.kernel.org
8509S:	Supported
8510F:	drivers/net/ethernet/fungible/
8511
8512FUSE: FILESYSTEM IN USERSPACE
8513M:	Miklos Szeredi <miklos@szeredi.hu>
8514L:	linux-fsdevel@vger.kernel.org
8515S:	Maintained
8516W:	https://github.com/libfuse/
8517T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8518F:	Documentation/filesystems/fuse.rst
8519F:	fs/fuse/
8520F:	include/uapi/linux/fuse.h
8521
8522FUTEX SUBSYSTEM
8523M:	Thomas Gleixner <tglx@linutronix.de>
8524M:	Ingo Molnar <mingo@redhat.com>
8525R:	Peter Zijlstra <peterz@infradead.org>
8526R:	Darren Hart <dvhart@infradead.org>
8527R:	Davidlohr Bueso <dave@stgolabs.net>
8528R:	André Almeida <andrealmeid@igalia.com>
8529L:	linux-kernel@vger.kernel.org
8530S:	Maintained
8531T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8532F:	Documentation/locking/*futex*
8533F:	include/asm-generic/futex.h
8534F:	include/linux/futex.h
8535F:	include/uapi/linux/futex.h
8536F:	kernel/futex/*
8537F:	tools/perf/bench/futex*
8538F:	tools/testing/selftests/futex/
8539
8540GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8541M:	Tim Harvey <tharvey@gateworks.com>
8542S:	Maintained
8543F:	Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8544F:	drivers/mfd/gateworks-gsc.c
8545F:	include/linux/mfd/gsc.h
8546F:	Documentation/hwmon/gsc-hwmon.rst
8547F:	drivers/hwmon/gsc-hwmon.c
8548F:	include/linux/platform_data/gsc_hwmon.h
8549
8550GCC PLUGINS
8551M:	Kees Cook <keescook@chromium.org>
8552L:	linux-hardening@vger.kernel.org
8553S:	Maintained
8554T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8555F:	Documentation/kbuild/gcc-plugins.rst
8556F:	scripts/Makefile.gcc-plugins
8557F:	scripts/gcc-plugins/
8558
8559GCOV BASED KERNEL PROFILING
8560M:	Peter Oberparleiter <oberpar@linux.ibm.com>
8561S:	Maintained
8562F:	Documentation/dev-tools/gcov.rst
8563F:	kernel/gcov/
8564
8565GDB KERNEL DEBUGGING HELPER SCRIPTS
8566M:	Jan Kiszka <jan.kiszka@siemens.com>
8567M:	Kieran Bingham <kbingham@kernel.org>
8568S:	Supported
8569F:	scripts/gdb/
8570
8571GEMINI CRYPTO DRIVER
8572M:	Corentin Labbe <clabbe@baylibre.com>
8573L:	linux-crypto@vger.kernel.org
8574S:	Maintained
8575F:	drivers/crypto/gemini/
8576
8577GEMTEK FM RADIO RECEIVER DRIVER
8578M:	Hans Verkuil <hverkuil@xs4all.nl>
8579L:	linux-media@vger.kernel.org
8580S:	Maintained
8581W:	https://linuxtv.org
8582T:	git git://linuxtv.org/media_tree.git
8583F:	drivers/media/radio/radio-gemtek*
8584
8585GENERIC ARCHITECTURE TOPOLOGY
8586M:	Sudeep Holla <sudeep.holla@arm.com>
8587L:	linux-kernel@vger.kernel.org
8588S:	Maintained
8589F:	drivers/base/arch_topology.c
8590F:	include/linux/arch_topology.h
8591
8592GENERIC ENTRY CODE
8593M:	Thomas Gleixner <tglx@linutronix.de>
8594M:	Peter Zijlstra <peterz@infradead.org>
8595M:	Andy Lutomirski <luto@kernel.org>
8596L:	linux-kernel@vger.kernel.org
8597S:	Maintained
8598T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8599F:	include/linux/entry-common.h
8600F:	include/linux/entry-kvm.h
8601F:	kernel/entry/
8602
8603GENERIC GPIO I2C DRIVER
8604M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
8605S:	Supported
8606F:	drivers/i2c/busses/i2c-gpio.c
8607F:	include/linux/platform_data/i2c-gpio.h
8608
8609GENERIC GPIO I2C MULTIPLEXER DRIVER
8610M:	Peter Korsgaard <peter.korsgaard@barco.com>
8611L:	linux-i2c@vger.kernel.org
8612S:	Supported
8613F:	Documentation/i2c/muxes/i2c-mux-gpio.rst
8614F:	drivers/i2c/muxes/i2c-mux-gpio.c
8615F:	include/linux/platform_data/i2c-mux-gpio.h
8616
8617GENERIC HDLC (WAN) DRIVERS
8618M:	Krzysztof Halasa <khc@pm.waw.pl>
8619S:	Maintained
8620W:	http://www.kernel.org/pub/linux/utils/net/hdlc/
8621F:	drivers/net/wan/c101.c
8622F:	drivers/net/wan/hd6457*
8623F:	drivers/net/wan/hdlc*
8624F:	drivers/net/wan/n2.c
8625F:	drivers/net/wan/pc300too.c
8626F:	drivers/net/wan/pci200syn.c
8627F:	drivers/net/wan/wanxl*
8628
8629GENERIC INCLUDE/ASM HEADER FILES
8630M:	Arnd Bergmann <arnd@arndb.de>
8631L:	linux-arch@vger.kernel.org
8632S:	Maintained
8633T:	git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8634F:	include/asm-generic/
8635F:	include/uapi/asm-generic/
8636
8637GENERIC PHY FRAMEWORK
8638M:	Vinod Koul <vkoul@kernel.org>
8639M:	Kishon Vijay Abraham I <kishon@kernel.org>
8640L:	linux-phy@lists.infradead.org
8641S:	Supported
8642Q:	https://patchwork.kernel.org/project/linux-phy/list/
8643T:	git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8644F:	Documentation/devicetree/bindings/phy/
8645F:	drivers/phy/
8646F:	include/dt-bindings/phy/
8647F:	include/linux/phy/
8648
8649GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8650M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
8651S:	Supported
8652F:	drivers/i2c/muxes/i2c-demux-pinctrl.c
8653
8654GENERIC PM DOMAINS
8655M:	"Rafael J. Wysocki" <rafael@kernel.org>
8656M:	Kevin Hilman <khilman@kernel.org>
8657M:	Ulf Hansson <ulf.hansson@linaro.org>
8658L:	linux-pm@vger.kernel.org
8659S:	Supported
8660F:	Documentation/devicetree/bindings/power/power?domain*
8661F:	drivers/base/power/domain*.c
8662F:	include/linux/pm_domain.h
8663
8664GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8665M:	Eugen Hristev <eugen.hristev@microchip.com>
8666L:	linux-input@vger.kernel.org
8667S:	Maintained
8668F:	drivers/input/touchscreen/resistive-adc-touch.c
8669
8670GENERIC STRING LIBRARY
8671R:	Andy Shevchenko <andy@kernel.org>
8672S:	Maintained
8673F:	lib/string.c
8674F:	lib/string_helpers.c
8675F:	lib/test_string.c
8676F:	lib/test-string_helpers.c
8677
8678GENERIC UIO DRIVER FOR PCI DEVICES
8679M:	"Michael S. Tsirkin" <mst@redhat.com>
8680L:	kvm@vger.kernel.org
8681S:	Supported
8682F:	drivers/uio/uio_pci_generic.c
8683
8684GENERIC VDSO LIBRARY
8685M:	Andy Lutomirski <luto@kernel.org>
8686M:	Thomas Gleixner <tglx@linutronix.de>
8687M:	Vincenzo Frascino <vincenzo.frascino@arm.com>
8688L:	linux-kernel@vger.kernel.org
8689S:	Maintained
8690T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8691F:	include/asm-generic/vdso/vsyscall.h
8692F:	include/vdso/
8693F:	kernel/time/vsyscall.c
8694F:	lib/vdso/
8695
8696GENWQE (IBM Generic Workqueue Card)
8697M:	Frank Haverkamp <haver@linux.ibm.com>
8698S:	Supported
8699F:	drivers/misc/genwqe/
8700
8701GET_MAINTAINER SCRIPT
8702M:	Joe Perches <joe@perches.com>
8703S:	Maintained
8704F:	scripts/get_maintainer.pl
8705
8706GFS2 FILE SYSTEM
8707M:	Bob Peterson <rpeterso@redhat.com>
8708M:	Andreas Gruenbacher <agruenba@redhat.com>
8709L:	cluster-devel@redhat.com
8710S:	Supported
8711B:	https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8712T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8713F:	Documentation/filesystems/gfs2*
8714F:	fs/gfs2/
8715F:	include/uapi/linux/gfs2_ondisk.h
8716
8717GIGABYTE WMI DRIVER
8718M:	Thomas Weißschuh <thomas@weissschuh.net>
8719L:	platform-driver-x86@vger.kernel.org
8720S:	Maintained
8721F:	drivers/platform/x86/gigabyte-wmi.c
8722
8723GNSS SUBSYSTEM
8724M:	Johan Hovold <johan@kernel.org>
8725S:	Maintained
8726T:	git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8727F:	Documentation/ABI/testing/sysfs-class-gnss
8728F:	Documentation/devicetree/bindings/gnss/
8729F:	drivers/gnss/
8730F:	include/linux/gnss.h
8731
8732GO7007 MPEG CODEC
8733M:	Hans Verkuil <hverkuil-cisco@xs4all.nl>
8734L:	linux-media@vger.kernel.org
8735S:	Maintained
8736F:	drivers/media/usb/go7007/
8737
8738GOODIX TOUCHSCREEN
8739M:	Bastien Nocera <hadess@hadess.net>
8740M:	Hans de Goede <hdegoede@redhat.com>
8741L:	linux-input@vger.kernel.org
8742S:	Maintained
8743F:	drivers/input/touchscreen/goodix*
8744
8745GOOGLE ETHERNET DRIVERS
8746M:	Jeroen de Borst <jeroendb@google.com>
8747M:	Praveen Kaligineedi <pkaligineedi@google.com>
8748R:	Shailend Chand <shailend@google.com>
8749L:	netdev@vger.kernel.org
8750S:	Supported
8751F:	Documentation/networking/device_drivers/ethernet/google/gve.rst
8752F:	drivers/net/ethernet/google
8753
8754GPD POCKET FAN DRIVER
8755M:	Hans de Goede <hdegoede@redhat.com>
8756L:	platform-driver-x86@vger.kernel.org
8757S:	Maintained
8758F:	drivers/platform/x86/gpd-pocket-fan.c
8759
8760GPIO ACPI SUPPORT
8761M:	Mika Westerberg <mika.westerberg@linux.intel.com>
8762M:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8763L:	linux-gpio@vger.kernel.org
8764L:	linux-acpi@vger.kernel.org
8765S:	Supported
8766T:	git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8767F:	Documentation/firmware-guide/acpi/gpio-properties.rst
8768F:	drivers/gpio/gpiolib-acpi.c
8769F:	drivers/gpio/gpiolib-acpi.h
8770
8771GPIO AGGREGATOR
8772M:	Geert Uytterhoeven <geert+renesas@glider.be>
8773L:	linux-gpio@vger.kernel.org
8774S:	Supported
8775F:	Documentation/admin-guide/gpio/gpio-aggregator.rst
8776F:	drivers/gpio/gpio-aggregator.c
8777
8778GPIO IR Transmitter
8779M:	Sean Young <sean@mess.org>
8780L:	linux-media@vger.kernel.org
8781S:	Maintained
8782F:	Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.yaml
8783F:	drivers/media/rc/gpio-ir-tx.c
8784
8785GPIO MOCKUP DRIVER
8786M:	Bamvor Jian Zhang <bamv2005@gmail.com>
8787L:	linux-gpio@vger.kernel.org
8788S:	Maintained
8789F:	drivers/gpio/gpio-mockup.c
8790F:	tools/testing/selftests/gpio/
8791
8792GPIO REGMAP
8793R:	Michael Walle <michael@walle.cc>
8794S:	Maintained
8795F:	drivers/gpio/gpio-regmap.c
8796F:	include/linux/gpio/regmap.h
8797
8798GPIO SUBSYSTEM
8799M:	Linus Walleij <linus.walleij@linaro.org>
8800M:	Bartosz Golaszewski <brgl@bgdev.pl>
8801L:	linux-gpio@vger.kernel.org
8802S:	Maintained
8803T:	git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8804F:	Documentation/ABI/obsolete/sysfs-gpio
8805F:	Documentation/ABI/testing/gpio-cdev
8806F:	Documentation/admin-guide/gpio/
8807F:	Documentation/devicetree/bindings/gpio/
8808F:	Documentation/driver-api/gpio/
8809F:	drivers/gpio/
8810F:	include/dt-bindings/gpio/
8811F:	include/linux/gpio.h
8812F:	include/linux/gpio/
8813F:	include/linux/of_gpio.h
8814F:	include/uapi/linux/gpio.h
8815F:	tools/gpio/
8816
8817GRE DEMULTIPLEXER DRIVER
8818M:	Dmitry Kozlov <xeb@mail.ru>
8819L:	netdev@vger.kernel.org
8820S:	Maintained
8821F:	include/net/gre.h
8822F:	net/ipv4/gre_demux.c
8823F:	net/ipv4/gre_offload.c
8824
8825GRETH 10/100/1G Ethernet MAC device driver
8826M:	Andreas Larsson <andreas@gaisler.com>
8827L:	netdev@vger.kernel.org
8828S:	Maintained
8829F:	drivers/net/ethernet/aeroflex/
8830
8831GREYBUS AUDIO PROTOCOLS DRIVERS
8832M:	Vaibhav Agarwal <vaibhav.sr@gmail.com>
8833M:	Mark Greer <mgreer@animalcreek.com>
8834S:	Maintained
8835F:	drivers/staging/greybus/audio_apbridgea.c
8836F:	drivers/staging/greybus/audio_apbridgea.h
8837F:	drivers/staging/greybus/audio_codec.c
8838F:	drivers/staging/greybus/audio_codec.h
8839F:	drivers/staging/greybus/audio_gb.c
8840F:	drivers/staging/greybus/audio_manager.c
8841F:	drivers/staging/greybus/audio_manager.h
8842F:	drivers/staging/greybus/audio_manager_module.c
8843F:	drivers/staging/greybus/audio_manager_private.h
8844F:	drivers/staging/greybus/audio_manager_sysfs.c
8845F:	drivers/staging/greybus/audio_module.c
8846F:	drivers/staging/greybus/audio_topology.c
8847
8848GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8849M:	Viresh Kumar <vireshk@kernel.org>
8850S:	Maintained
8851F:	drivers/staging/greybus/authentication.c
8852F:	drivers/staging/greybus/bootrom.c
8853F:	drivers/staging/greybus/firmware.h
8854F:	drivers/staging/greybus/fw-core.c
8855F:	drivers/staging/greybus/fw-download.c
8856F:	drivers/staging/greybus/fw-management.c
8857F:	drivers/staging/greybus/greybus_authentication.h
8858F:	drivers/staging/greybus/greybus_firmware.h
8859F:	drivers/staging/greybus/hid.c
8860F:	drivers/staging/greybus/i2c.c
8861F:	drivers/staging/greybus/spi.c
8862F:	drivers/staging/greybus/spilib.c
8863F:	drivers/staging/greybus/spilib.h
8864
8865GREYBUS LOOPBACK DRIVER
8866M:	Bryan O'Donoghue <pure.logic@nexus-software.ie>
8867S:	Maintained
8868F:	drivers/staging/greybus/loopback.c
8869
8870GREYBUS PLATFORM DRIVERS
8871M:	Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8872S:	Maintained
8873F:	drivers/staging/greybus/arche-apb-ctrl.c
8874F:	drivers/staging/greybus/arche-platform.c
8875F:	drivers/staging/greybus/arche_platform.h
8876
8877GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8878M:	Rui Miguel Silva <rmfrfs@gmail.com>
8879S:	Maintained
8880F:	drivers/staging/greybus/gpio.c
8881F:	drivers/staging/greybus/light.c
8882F:	drivers/staging/greybus/power_supply.c
8883F:	drivers/staging/greybus/sdio.c
8884F:	drivers/staging/greybus/spi.c
8885F:	drivers/staging/greybus/spilib.c
8886
8887GREYBUS SUBSYSTEM
8888M:	Johan Hovold <johan@kernel.org>
8889M:	Alex Elder <elder@kernel.org>
8890M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8891L:	greybus-dev@lists.linaro.org (moderated for non-subscribers)
8892S:	Maintained
8893F:	drivers/greybus/
8894F:	drivers/staging/greybus/
8895F:	include/linux/greybus.h
8896F:	include/linux/greybus/
8897
8898GREYBUS UART PROTOCOLS DRIVERS
8899M:	David Lin <dtwlin@gmail.com>
8900S:	Maintained
8901F:	drivers/staging/greybus/log.c
8902F:	drivers/staging/greybus/uart.c
8903
8904GS1662 VIDEO SERIALIZER
8905M:	Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8906L:	linux-media@vger.kernel.org
8907S:	Maintained
8908T:	git git://linuxtv.org/media_tree.git
8909F:	drivers/media/spi/gs1662.c
8910
8911GSPCA FINEPIX SUBDRIVER
8912M:	Frank Zago <frank@zago.net>
8913L:	linux-media@vger.kernel.org
8914S:	Maintained
8915T:	git git://linuxtv.org/media_tree.git
8916F:	drivers/media/usb/gspca/finepix.c
8917
8918GSPCA GL860 SUBDRIVER
8919M:	Olivier Lorin <o.lorin@laposte.net>
8920L:	linux-media@vger.kernel.org
8921S:	Maintained
8922T:	git git://linuxtv.org/media_tree.git
8923F:	drivers/media/usb/gspca/gl860/
8924
8925GSPCA M5602 SUBDRIVER
8926M:	Erik Andren <erik.andren@gmail.com>
8927L:	linux-media@vger.kernel.org
8928S:	Maintained
8929T:	git git://linuxtv.org/media_tree.git
8930F:	drivers/media/usb/gspca/m5602/
8931
8932GSPCA PAC207 SONIXB SUBDRIVER
8933M:	Hans Verkuil <hverkuil@xs4all.nl>
8934L:	linux-media@vger.kernel.org
8935S:	Odd Fixes
8936T:	git git://linuxtv.org/media_tree.git
8937F:	drivers/media/usb/gspca/pac207.c
8938
8939GSPCA SN9C20X SUBDRIVER
8940M:	Brian Johnson <brijohn@gmail.com>
8941L:	linux-media@vger.kernel.org
8942S:	Maintained
8943T:	git git://linuxtv.org/media_tree.git
8944F:	drivers/media/usb/gspca/sn9c20x.c
8945
8946GSPCA T613 SUBDRIVER
8947M:	Leandro Costantino <lcostantino@gmail.com>
8948L:	linux-media@vger.kernel.org
8949S:	Maintained
8950T:	git git://linuxtv.org/media_tree.git
8951F:	drivers/media/usb/gspca/t613.c
8952
8953GSPCA USB WEBCAM DRIVER
8954M:	Hans Verkuil <hverkuil@xs4all.nl>
8955L:	linux-media@vger.kernel.org
8956S:	Odd Fixes
8957T:	git git://linuxtv.org/media_tree.git
8958F:	drivers/media/usb/gspca/
8959
8960GTP (GPRS Tunneling Protocol)
8961M:	Pablo Neira Ayuso <pablo@netfilter.org>
8962M:	Harald Welte <laforge@gnumonks.org>
8963L:	osmocom-net-gprs@lists.osmocom.org
8964S:	Maintained
8965T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8966F:	drivers/net/gtp.c
8967
8968GUID PARTITION TABLE (GPT)
8969M:	Davidlohr Bueso <dave@stgolabs.net>
8970L:	linux-efi@vger.kernel.org
8971S:	Maintained
8972F:	block/partitions/efi.*
8973
8974HABANALABS PCI DRIVER
8975M:	Oded Gabbay <ogabbay@kernel.org>
8976L:	dri-devel@lists.freedesktop.org
8977S:	Supported
8978C:	irc://irc.oftc.net/dri-devel
8979T:	git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8980F:	Documentation/ABI/testing/debugfs-driver-habanalabs
8981F:	Documentation/ABI/testing/sysfs-driver-habanalabs
8982F:	drivers/accel/habanalabs/
8983F:	include/trace/events/habanalabs.h
8984F:	include/uapi/drm/habanalabs_accel.h
8985
8986HACKRF MEDIA DRIVER
8987M:	Antti Palosaari <crope@iki.fi>
8988L:	linux-media@vger.kernel.org
8989S:	Maintained
8990W:	https://linuxtv.org
8991W:	http://palosaari.fi/linux/
8992Q:	http://patchwork.linuxtv.org/project/linux-media/list/
8993T:	git git://linuxtv.org/anttip/media_tree.git
8994F:	drivers/media/usb/hackrf/
8995
8996HANDSHAKE UPCALL FOR TRANSPORT LAYER SECURITY
8997M:	Chuck Lever <chuck.lever@oracle.com>
8998L:	kernel-tls-handshake@lists.linux.dev
8999L:	netdev@vger.kernel.org
9000S:	Maintained
9001F:	Documentation/netlink/specs/handshake.yaml
9002F:	Documentation/networking/tls-handshake.rst
9003F:	include/net/handshake.h
9004F:	include/trace/events/handshake.h
9005F:	net/handshake/
9006
9007HANTRO VPU CODEC DRIVER
9008M:	Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
9009M:	Philipp Zabel <p.zabel@pengutronix.de>
9010L:	linux-media@vger.kernel.org
9011L:	linux-rockchip@lists.infradead.org
9012S:	Maintained
9013F:	Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
9014F:	Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
9015F:	Documentation/devicetree/bindings/media/rockchip-vpu.yaml
9016F:	drivers/media/platform/verisilicon/
9017
9018HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
9019M:	Frank Seidel <frank@f-seidel.de>
9020L:	platform-driver-x86@vger.kernel.org
9021S:	Maintained
9022W:	http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
9023F:	drivers/platform/x86/hdaps.c
9024
9025HARDWARE MONITORING
9026M:	Jean Delvare <jdelvare@suse.com>
9027M:	Guenter Roeck <linux@roeck-us.net>
9028L:	linux-hwmon@vger.kernel.org
9029S:	Maintained
9030W:	http://hwmon.wiki.kernel.org/
9031T:	git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
9032F:	Documentation/ABI/testing/sysfs-class-hwmon
9033F:	Documentation/devicetree/bindings/hwmon/
9034F:	Documentation/hwmon/
9035F:	drivers/hwmon/
9036F:	include/linux/hwmon*.h
9037F:	include/trace/events/hwmon*.h
9038K:	(devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
9039
9040HARDWARE RANDOM NUMBER GENERATOR CORE
9041M:	Olivia Mackall <olivia@selenic.com>
9042M:	Herbert Xu <herbert@gondor.apana.org.au>
9043L:	linux-crypto@vger.kernel.org
9044S:	Odd fixes
9045F:	Documentation/admin-guide/hw_random.rst
9046F:	Documentation/devicetree/bindings/rng/
9047F:	drivers/char/hw_random/
9048F:	include/linux/hw_random.h
9049
9050HARDWARE SPINLOCK CORE
9051M:	Ohad Ben-Cohen <ohad@wizery.com>
9052M:	Bjorn Andersson <andersson@kernel.org>
9053R:	Baolin Wang <baolin.wang7@gmail.com>
9054L:	linux-remoteproc@vger.kernel.org
9055S:	Maintained
9056T:	git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
9057F:	Documentation/devicetree/bindings/hwlock/
9058F:	Documentation/locking/hwspinlock.rst
9059F:	drivers/hwspinlock/
9060F:	include/linux/hwspinlock.h
9061
9062HARDWARE TRACING FACILITIES
9063M:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
9064S:	Maintained
9065F:	drivers/hwtracing/
9066
9067HARMONY SOUND DRIVER
9068L:	linux-parisc@vger.kernel.org
9069S:	Maintained
9070F:	sound/parisc/harmony.*
9071
9072HDPVR USB VIDEO ENCODER DRIVER
9073M:	Hans Verkuil <hverkuil@xs4all.nl>
9074L:	linux-media@vger.kernel.org
9075S:	Odd Fixes
9076W:	https://linuxtv.org
9077T:	git git://linuxtv.org/media_tree.git
9078F:	drivers/media/usb/hdpvr/
9079
9080HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
9081M:	Matt Hsiao <matt.hsiao@hpe.com>
9082S:	Supported
9083F:	drivers/misc/hpilo.[ch]
9084
9085HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
9086M:	Jerry Hoemann <jerry.hoemann@hpe.com>
9087S:	Supported
9088F:	Documentation/watchdog/hpwdt.rst
9089F:	drivers/watchdog/hpwdt.c
9090
9091HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
9092M:	Don Brace <don.brace@microchip.com>
9093L:	storagedev@microchip.com
9094L:	linux-scsi@vger.kernel.org
9095S:	Supported
9096F:	Documentation/scsi/hpsa.rst
9097F:	drivers/scsi/hpsa*.[ch]
9098F:	include/linux/cciss*.h
9099F:	include/uapi/linux/cciss*.h
9100
9101HFI1 DRIVER
9102M:	Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
9103L:	linux-rdma@vger.kernel.org
9104S:	Supported
9105F:	drivers/infiniband/hw/hfi1
9106
9107HFS FILESYSTEM
9108L:	linux-fsdevel@vger.kernel.org
9109S:	Orphan
9110F:	Documentation/filesystems/hfs.rst
9111F:	fs/hfs/
9112
9113HFSPLUS FILESYSTEM
9114L:	linux-fsdevel@vger.kernel.org
9115S:	Orphan
9116F:	Documentation/filesystems/hfsplus.rst
9117F:	fs/hfsplus/
9118
9119HGA FRAMEBUFFER DRIVER
9120M:	Ferenc Bakonyi <fero@drama.obuda.kando.hu>
9121L:	linux-nvidia@lists.surfsouth.com
9122S:	Maintained
9123W:	http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9124F:	drivers/video/fbdev/hgafb.c
9125
9126HIBERNATION (aka Software Suspend, aka swsusp)
9127M:	"Rafael J. Wysocki" <rafael@kernel.org>
9128M:	Pavel Machek <pavel@ucw.cz>
9129L:	linux-pm@vger.kernel.org
9130S:	Supported
9131B:	https://bugzilla.kernel.org
9132F:	arch/*/include/asm/suspend*.h
9133F:	arch/x86/power/
9134F:	drivers/base/power/
9135F:	include/linux/freezer.h
9136F:	include/linux/pm.h
9137F:	include/linux/suspend.h
9138F:	kernel/power/
9139
9140HID CORE LAYER
9141M:	Jiri Kosina <jikos@kernel.org>
9142M:	Benjamin Tissoires <benjamin.tissoires@redhat.com>
9143L:	linux-input@vger.kernel.org
9144S:	Maintained
9145T:	git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9146F:	Documentation/hid/
9147F:	drivers/hid/
9148F:	include/linux/hid*
9149F:	include/uapi/linux/hid*
9150F:	samples/hid/
9151F:	tools/testing/selftests/hid/
9152
9153HID LOGITECH DRIVERS
9154R:	Filipe Laíns <lains@riseup.net>
9155L:	linux-input@vger.kernel.org
9156S:	Maintained
9157F:	drivers/hid/hid-logitech-*
9158
9159HID++ LOGITECH DRIVERS
9160R:	Filipe Laíns <lains@riseup.net>
9161R:	Bastien Nocera <hadess@hadess.net>
9162L:	linux-input@vger.kernel.org
9163S:	Maintained
9164F:	drivers/hid/hid-logitech-hidpp.c
9165
9166HID PLAYSTATION DRIVER
9167M:	Roderick Colenbrander <roderick.colenbrander@sony.com>
9168L:	linux-input@vger.kernel.org
9169S:	Supported
9170F:	drivers/hid/hid-playstation.c
9171
9172HID PHOENIX RC FLIGHT CONTROLLER
9173M:	Marcus Folkesson <marcus.folkesson@gmail.com>
9174L:	linux-input@vger.kernel.org
9175S:	Maintained
9176F:	drivers/hid/hid-pxrc.c
9177
9178HID SENSOR HUB DRIVERS
9179M:	Jiri Kosina <jikos@kernel.org>
9180M:	Jonathan Cameron <jic23@kernel.org>
9181M:	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9182L:	linux-input@vger.kernel.org
9183L:	linux-iio@vger.kernel.org
9184S:	Maintained
9185F:	Documentation/hid/hid-sensor*
9186F:	drivers/hid/hid-sensor-*
9187F:	drivers/iio/*/hid-*
9188F:	include/linux/hid-sensor-*
9189
9190HID VRC-2 CAR CONTROLLER DRIVER
9191M:	Marcus Folkesson <marcus.folkesson@gmail.com>
9192L:	linux-input@vger.kernel.org
9193S:	Maintained
9194F:	drivers/hid/hid-vrc2.c
9195
9196HID WACOM DRIVER
9197M:	Ping Cheng <ping.cheng@wacom.com>
9198M:	Jason Gerecke  <jason.gerecke@wacom.com>
9199L:	linux-input@vger.kernel.org
9200S:	Maintained
9201F:	drivers/hid/wacom.h
9202F:	drivers/hid/wacom_*
9203
9204HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9205M:	Thomas Gleixner <tglx@linutronix.de>
9206L:	linux-kernel@vger.kernel.org
9207S:	Maintained
9208T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9209F:	Documentation/timers/
9210F:	include/linux/clockchips.h
9211F:	include/linux/hrtimer.h
9212F:	kernel/time/clockevents.c
9213F:	kernel/time/hrtimer.c
9214F:	kernel/time/timer_*.c
9215
9216HIGH-SPEED SCC DRIVER FOR AX.25
9217L:	linux-hams@vger.kernel.org
9218S:	Orphan
9219F:	drivers/net/hamradio/scc.c
9220
9221HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9222M:	HighPoint Linux Team <linux@highpoint-tech.com>
9223S:	Supported
9224W:	http://www.highpoint-tech.com
9225F:	Documentation/scsi/hptiop.rst
9226F:	drivers/scsi/hptiop.c
9227
9228HIMAX HX83112B TOUCHSCREEN SUPPORT
9229M:	Job Noorman <job@noorman.info>
9230L:	linux-input@vger.kernel.org
9231S:	Maintained
9232F:	Documentation/devicetree/bindings/input/touchscreen/himax,hx83112b.yaml
9233F:	drivers/input/touchscreen/himax_hx83112b.c
9234
9235HIPPI
9236M:	Jes Sorensen <jes@trained-monkey.org>
9237L:	linux-hippi@sunsite.dk
9238S:	Maintained
9239F:	drivers/net/hippi/
9240F:	include/linux/hippidevice.h
9241F:	include/uapi/linux/if_hippi.h
9242F:	net/802/hippi.c
9243
9244HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9245M:	Kurt Kanzenbach <kurt@linutronix.de>
9246L:	netdev@vger.kernel.org
9247S:	Maintained
9248F:	Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9249F:	drivers/net/dsa/hirschmann/*
9250F:	include/linux/platform_data/hirschmann-hellcreek.h
9251F:	net/dsa/tag_hellcreek.c
9252
9253HISILICON DMA DRIVER
9254M:	Zhou Wang <wangzhou1@hisilicon.com>
9255M:	Jie Hai <haijie1@huawei.com>
9256L:	dmaengine@vger.kernel.org
9257S:	Maintained
9258F:	drivers/dma/hisi_dma.c
9259
9260HISILICON GPIO DRIVER
9261M:	Jay Fang <f.fangjian@huawei.com>
9262L:	linux-gpio@vger.kernel.org
9263S:	Maintained
9264F:	Documentation/devicetree/bindings/gpio/hisilicon,ascend910-gpio.yaml
9265F:	drivers/gpio/gpio-hisi.c
9266
9267HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9268M:	Longfang Liu <liulongfang@huawei.com>
9269L:	linux-crypto@vger.kernel.org
9270S:	Maintained
9271F:	Documentation/ABI/testing/debugfs-hisi-hpre
9272F:	drivers/crypto/hisilicon/hpre/hpre.h
9273F:	drivers/crypto/hisilicon/hpre/hpre_crypto.c
9274F:	drivers/crypto/hisilicon/hpre/hpre_main.c
9275
9276HISILICON I2C CONTROLLER DRIVER
9277M:	Yicong Yang <yangyicong@hisilicon.com>
9278L:	linux-i2c@vger.kernel.org
9279S:	Maintained
9280W:	https://www.hisilicon.com
9281F:	Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
9282F:	drivers/i2c/busses/i2c-hisi.c
9283
9284HISILICON LPC BUS DRIVER
9285M:	Jay Fang <f.fangjian@huawei.com>
9286S:	Maintained
9287W:	http://www.hisilicon.com
9288F:	Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9289F:	drivers/bus/hisi_lpc.c
9290
9291HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9292M:	Yisen Zhuang <yisen.zhuang@huawei.com>
9293M:	Salil Mehta <salil.mehta@huawei.com>
9294L:	netdev@vger.kernel.org
9295S:	Maintained
9296W:	http://www.hisilicon.com
9297F:	drivers/net/ethernet/hisilicon/hns3/
9298
9299HISILICON NETWORK SUBSYSTEM DRIVER
9300M:	Yisen Zhuang <yisen.zhuang@huawei.com>
9301M:	Salil Mehta <salil.mehta@huawei.com>
9302L:	netdev@vger.kernel.org
9303S:	Maintained
9304W:	http://www.hisilicon.com
9305F:	Documentation/devicetree/bindings/net/hisilicon*.txt
9306F:	drivers/net/ethernet/hisilicon/
9307
9308HIKEY960 ONBOARD USB GPIO HUB DRIVER
9309M:	John Stultz <jstultz@google.com>
9310L:	linux-kernel@vger.kernel.org
9311S:	Maintained
9312F:	drivers/misc/hisi_hikey_usb.c
9313
9314HISILICON PMU DRIVER
9315M:	Shaokun Zhang <zhangshaokun@hisilicon.com>
9316M:	Jonathan Cameron <jonathan.cameron@huawei.com>
9317S:	Supported
9318W:	http://www.hisilicon.com
9319F:	Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9320F:	Documentation/admin-guide/perf/hisi-pmu.rst
9321F:	drivers/perf/hisilicon
9322
9323HISILICON HNS3 PMU DRIVER
9324M:	Guangbin Huang <huangguangbin2@huawei.com>
9325S:	Supported
9326F:	Documentation/admin-guide/perf/hns3-pmu.rst
9327F:	drivers/perf/hisilicon/hns3_pmu.c
9328
9329HISILICON PTT DRIVER
9330M:	Yicong Yang <yangyicong@hisilicon.com>
9331M:	Jonathan Cameron <jonathan.cameron@huawei.com>
9332L:	linux-kernel@vger.kernel.org
9333S:	Maintained
9334F:	Documentation/ABI/testing/sysfs-devices-hisi_ptt
9335F:	Documentation/trace/hisi-ptt.rst
9336F:	drivers/hwtracing/ptt/
9337F:	tools/perf/arch/arm64/util/hisi-ptt.c
9338F:	tools/perf/util/hisi-ptt*
9339F:	tools/perf/util/hisi-ptt-decoder/*
9340
9341HISILICON QM DRIVER
9342M:	Weili Qian <qianweili@huawei.com>
9343M:	Zhou Wang <wangzhou1@hisilicon.com>
9344L:	linux-crypto@vger.kernel.org
9345S:	Maintained
9346F:	drivers/crypto/hisilicon/Kconfig
9347F:	drivers/crypto/hisilicon/Makefile
9348F:	drivers/crypto/hisilicon/qm.c
9349F:	drivers/crypto/hisilicon/sgl.c
9350F:	include/linux/hisi_acc_qm.h
9351
9352HISILICON ZIP Controller DRIVER
9353M:	Yang Shen <shenyang39@huawei.com>
9354M:	Zhou Wang <wangzhou1@hisilicon.com>
9355L:	linux-crypto@vger.kernel.org
9356S:	Maintained
9357F:	Documentation/ABI/testing/debugfs-hisi-zip
9358F:	drivers/crypto/hisilicon/zip/
9359
9360HISILICON ROCE DRIVER
9361M:	Haoyue Xu <xuhaoyue1@hisilicon.com>
9362M:	Wenpeng Liang <liangwenpeng@huawei.com>
9363L:	linux-rdma@vger.kernel.org
9364S:	Maintained
9365F:	Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9366F:	drivers/infiniband/hw/hns/
9367
9368HISILICON SAS Controller
9369M:	Xiang Chen <chenxiang66@hisilicon.com>
9370S:	Supported
9371W:	http://www.hisilicon.com
9372F:	Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9373F:	drivers/scsi/hisi_sas/
9374
9375HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9376M:	Kai Ye <yekai13@huawei.com>
9377M:	Longfang Liu <liulongfang@huawei.com>
9378L:	linux-crypto@vger.kernel.org
9379S:	Maintained
9380F:	Documentation/ABI/testing/debugfs-hisi-sec
9381F:	drivers/crypto/hisilicon/sec2/sec.h
9382F:	drivers/crypto/hisilicon/sec2/sec_crypto.c
9383F:	drivers/crypto/hisilicon/sec2/sec_crypto.h
9384F:	drivers/crypto/hisilicon/sec2/sec_main.c
9385
9386HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9387M:	Jay Fang <f.fangjian@huawei.com>
9388L:	linux-spi@vger.kernel.org
9389S:	Maintained
9390W:	http://www.hisilicon.com
9391F:	drivers/spi/spi-hisi-kunpeng.c
9392
9393HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9394M:	Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9395L:	linux-kernel@vger.kernel.org
9396S:	Maintained
9397F:	Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9398F:	drivers/spmi/hisi-spmi-controller.c
9399
9400HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9401M:	Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9402L:	linux-kernel@vger.kernel.org
9403S:	Maintained
9404F:	Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9405F:	drivers/mfd/hi6421-spmi-pmic.c
9406
9407HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9408M:	Weili Qian <qianweili@huawei.com>
9409S:	Maintained
9410F:	drivers/crypto/hisilicon/trng/trng.c
9411
9412HISILICON V3XX SPI NOR FLASH Controller Driver
9413M:	Jay Fang <f.fangjian@huawei.com>
9414S:	Maintained
9415W:	http://www.hisilicon.com
9416F:	drivers/spi/spi-hisi-sfc-v3xx.c
9417
9418HMM - Heterogeneous Memory Management
9419M:	Jérôme Glisse <jglisse@redhat.com>
9420L:	linux-mm@kvack.org
9421S:	Maintained
9422F:	Documentation/mm/hmm.rst
9423F:	include/linux/hmm*
9424F:	lib/test_hmm*
9425F:	mm/hmm*
9426F:	tools/testing/selftests/mm/*hmm*
9427
9428HOST AP DRIVER
9429M:	Jouni Malinen <j@w1.fi>
9430L:	linux-wireless@vger.kernel.org
9431S:	Obsolete
9432W:	http://w1.fi/hostap-driver.html
9433F:	drivers/net/wireless/intersil/hostap/
9434
9435HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9436L:	platform-driver-x86@vger.kernel.org
9437S:	Orphan
9438F:	drivers/platform/x86/hp/tc1100-wmi.c
9439
9440HPET:	High Precision Event Timers driver
9441M:	Clemens Ladisch <clemens@ladisch.de>
9442S:	Maintained
9443F:	Documentation/timers/hpet.rst
9444F:	drivers/char/hpet.c
9445F:	include/linux/hpet.h
9446F:	include/uapi/linux/hpet.h
9447
9448HPET:	x86
9449S:	Orphan
9450F:	arch/x86/include/asm/hpet.h
9451F:	arch/x86/kernel/hpet.c
9452
9453HPFS FILESYSTEM
9454M:	Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9455S:	Maintained
9456W:	http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9457F:	fs/hpfs/
9458
9459HSI SUBSYSTEM
9460M:	Sebastian Reichel <sre@kernel.org>
9461S:	Maintained
9462T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9463F:	Documentation/ABI/testing/sysfs-bus-hsi
9464F:	Documentation/driver-api/hsi.rst
9465F:	drivers/hsi/
9466F:	include/linux/hsi/
9467F:	include/uapi/linux/hsi/
9468
9469HSO 3G MODEM DRIVER
9470L:	linux-usb@vger.kernel.org
9471S:	Orphan
9472F:	drivers/net/usb/hso.c
9473
9474HSR NETWORK PROTOCOL
9475L:	netdev@vger.kernel.org
9476S:	Orphan
9477F:	net/hsr/
9478
9479HT16K33 LED CONTROLLER DRIVER
9480M:	Robin van der Gracht <robin@protonic.nl>
9481S:	Maintained
9482F:	Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9483F:	drivers/auxdisplay/ht16k33.c
9484
9485HTCPEN TOUCHSCREEN DRIVER
9486M:	Pau Oliva Fora <pof@eslack.org>
9487L:	linux-input@vger.kernel.org
9488S:	Maintained
9489F:	drivers/input/touchscreen/htcpen.c
9490
9491HTE SUBSYSTEM
9492M:	Dipen Patel <dipenp@nvidia.com>
9493L:	timestamp@lists.linux.dev
9494T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pateldipen1984/linux.git
9495Q:	https://patchwork.kernel.org/project/timestamp/list/
9496S:	Maintained
9497F:	Documentation/devicetree/bindings/timestamp/
9498F:	Documentation/driver-api/hte/
9499F:	drivers/hte/
9500F:	include/linux/hte.h
9501
9502HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9503M:	Lorenzo Bianconi <lorenzo@kernel.org>
9504L:	linux-iio@vger.kernel.org
9505S:	Maintained
9506W:	http://www.st.com/
9507F:	Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9508F:	drivers/iio/humidity/hts221*
9509
9510HUAWEI ETHERNET DRIVER
9511M:	Cai Huoqing <cai.huoqing@linux.dev>
9512L:	netdev@vger.kernel.org
9513S:	Maintained
9514F:	Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9515F:	drivers/net/ethernet/huawei/hinic/
9516
9517HUGETLB SUBSYSTEM
9518M:	Mike Kravetz <mike.kravetz@oracle.com>
9519M:	Muchun Song <muchun.song@linux.dev>
9520L:	linux-mm@kvack.org
9521S:	Maintained
9522F:	Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9523F:	Documentation/admin-guide/mm/hugetlbpage.rst
9524F:	Documentation/mm/hugetlbfs_reserv.rst
9525F:	Documentation/mm/vmemmap_dedup.rst
9526F:	fs/hugetlbfs/
9527F:	include/linux/hugetlb.h
9528F:	mm/hugetlb.c
9529F:	mm/hugetlb_vmemmap.c
9530F:	mm/hugetlb_vmemmap.h
9531
9532HVA ST MEDIA DRIVER
9533M:	Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9534L:	linux-media@vger.kernel.org
9535S:	Supported
9536W:	https://linuxtv.org
9537T:	git git://linuxtv.org/media_tree.git
9538F:	drivers/media/platform/st/sti/hva
9539
9540HWPOISON MEMORY FAILURE HANDLING
9541M:	Naoya Horiguchi <naoya.horiguchi@nec.com>
9542R:	Miaohe Lin <linmiaohe@huawei.com>
9543L:	linux-mm@kvack.org
9544S:	Maintained
9545F:	mm/hwpoison-inject.c
9546F:	mm/memory-failure.c
9547
9548HYCON HY46XX TOUCHSCREEN SUPPORT
9549M:	Giulio Benetti <giulio.benetti@benettiengineering.com>
9550L:	linux-input@vger.kernel.org
9551S:	Maintained
9552F:	Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9553F:	drivers/input/touchscreen/hycon-hy46xx.c
9554
9555HYGON PROCESSOR SUPPORT
9556M:	Pu Wen <puwen@hygon.cn>
9557L:	linux-kernel@vger.kernel.org
9558S:	Maintained
9559F:	arch/x86/kernel/cpu/hygon.c
9560
9561HYNIX HI556 SENSOR DRIVER
9562M:	Shawn Tu <shawnx.tu@intel.com>
9563L:	linux-media@vger.kernel.org
9564S:	Maintained
9565T:	git git://linuxtv.org/media_tree.git
9566F:	drivers/media/i2c/hi556.c
9567
9568HYNIX HI846 SENSOR DRIVER
9569M:	Martin Kepplinger <martin.kepplinger@puri.sm>
9570L:	linux-media@vger.kernel.org
9571S:	Maintained
9572F:	drivers/media/i2c/hi846.c
9573
9574HYNIX HI847 SENSOR DRIVER
9575M:	Shawn Tu <shawnx.tu@intel.com>
9576L:	linux-media@vger.kernel.org
9577S:	Maintained
9578F:	drivers/media/i2c/hi847.c
9579
9580Hyper-V/Azure CORE AND DRIVERS
9581M:	"K. Y. Srinivasan" <kys@microsoft.com>
9582M:	Haiyang Zhang <haiyangz@microsoft.com>
9583M:	Wei Liu <wei.liu@kernel.org>
9584M:	Dexuan Cui <decui@microsoft.com>
9585L:	linux-hyperv@vger.kernel.org
9586S:	Supported
9587T:	git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9588F:	Documentation/ABI/stable/sysfs-bus-vmbus
9589F:	Documentation/ABI/testing/debugfs-hyperv
9590F:	Documentation/devicetree/bindings/bus/microsoft,vmbus.yaml
9591F:	Documentation/virt/hyperv
9592F:	Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9593F:	arch/arm64/hyperv
9594F:	arch/arm64/include/asm/hyperv-tlfs.h
9595F:	arch/arm64/include/asm/mshyperv.h
9596F:	arch/x86/hyperv
9597F:	arch/x86/include/asm/hyperv-tlfs.h
9598F:	arch/x86/include/asm/mshyperv.h
9599F:	arch/x86/include/asm/trace/hyperv.h
9600F:	arch/x86/kernel/cpu/mshyperv.c
9601F:	drivers/clocksource/hyperv_timer.c
9602F:	drivers/hid/hid-hyperv.c
9603F:	drivers/hv/
9604F:	drivers/input/serio/hyperv-keyboard.c
9605F:	drivers/iommu/hyperv-iommu.c
9606F:	drivers/net/ethernet/microsoft/
9607F:	drivers/net/hyperv/
9608F:	drivers/pci/controller/pci-hyperv-intf.c
9609F:	drivers/pci/controller/pci-hyperv.c
9610F:	drivers/scsi/storvsc_drv.c
9611F:	drivers/uio/uio_hv_generic.c
9612F:	drivers/video/fbdev/hyperv_fb.c
9613F:	include/asm-generic/hyperv-tlfs.h
9614F:	include/asm-generic/mshyperv.h
9615F:	include/clocksource/hyperv_timer.h
9616F:	include/linux/hyperv.h
9617F:	include/net/mana
9618F:	include/uapi/linux/hyperv.h
9619F:	net/vmw_vsock/hyperv_transport.c
9620F:	tools/hv/
9621
9622HYPERBUS SUPPORT
9623M:	Vignesh Raghavendra <vigneshr@ti.com>
9624L:	linux-mtd@lists.infradead.org
9625S:	Supported
9626Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
9627C:	irc://irc.oftc.net/mtd
9628T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9629F:	Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9630F:	drivers/mtd/hyperbus/
9631F:	include/linux/mtd/hyperbus.h
9632
9633HYPERVISOR VIRTUAL CONSOLE DRIVER
9634L:	linuxppc-dev@lists.ozlabs.org
9635S:	Odd Fixes
9636F:	drivers/tty/hvc/
9637
9638I2C ACPI SUPPORT
9639M:	Mika Westerberg <mika.westerberg@linux.intel.com>
9640L:	linux-i2c@vger.kernel.org
9641L:	linux-acpi@vger.kernel.org
9642S:	Maintained
9643F:	drivers/i2c/i2c-core-acpi.c
9644
9645I2C CONTROLLER DRIVER FOR NVIDIA GPU
9646M:	Ajay Gupta <ajayg@nvidia.com>
9647L:	linux-i2c@vger.kernel.org
9648S:	Maintained
9649F:	Documentation/i2c/busses/i2c-nvidia-gpu.rst
9650F:	drivers/i2c/busses/i2c-nvidia-gpu.c
9651
9652I2C MUXES
9653M:	Peter Rosin <peda@axentia.se>
9654L:	linux-i2c@vger.kernel.org
9655S:	Maintained
9656F:	Documentation/devicetree/bindings/i2c/i2c-arb*
9657F:	Documentation/devicetree/bindings/i2c/i2c-gate*
9658F:	Documentation/devicetree/bindings/i2c/i2c-mux*
9659F:	Documentation/i2c/i2c-topology.rst
9660F:	Documentation/i2c/muxes/
9661F:	drivers/i2c/i2c-mux.c
9662F:	drivers/i2c/muxes/
9663F:	include/linux/i2c-mux.h
9664
9665I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9666M:	Gregory CLEMENT <gregory.clement@bootlin.com>
9667L:	linux-i2c@vger.kernel.org
9668S:	Maintained
9669F:	Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9670F:	drivers/i2c/busses/i2c-mv64xxx.c
9671
9672I2C OVER PARALLEL PORT
9673M:	Jean Delvare <jdelvare@suse.com>
9674L:	linux-i2c@vger.kernel.org
9675S:	Maintained
9676F:	Documentation/i2c/busses/i2c-parport.rst
9677F:	drivers/i2c/busses/i2c-parport.c
9678
9679I2C SUBSYSTEM
9680M:	Wolfram Sang <wsa@kernel.org>
9681L:	linux-i2c@vger.kernel.org
9682S:	Maintained
9683W:	https://i2c.wiki.kernel.org/
9684Q:	https://patchwork.ozlabs.org/project/linux-i2c/list/
9685T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9686F:	Documentation/devicetree/bindings/i2c/i2c.txt
9687F:	Documentation/i2c/
9688F:	drivers/i2c/*
9689F:	include/dt-bindings/i2c/i2c.h
9690F:	include/linux/i2c-dev.h
9691F:	include/linux/i2c-smbus.h
9692F:	include/linux/i2c.h
9693F:	include/uapi/linux/i2c-*.h
9694F:	include/uapi/linux/i2c.h
9695
9696I2C SUBSYSTEM HOST DRIVERS
9697L:	linux-i2c@vger.kernel.org
9698S:	Odd Fixes
9699W:	https://i2c.wiki.kernel.org/
9700Q:	https://patchwork.ozlabs.org/project/linux-i2c/list/
9701T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9702F:	Documentation/devicetree/bindings/i2c/
9703F:	drivers/i2c/algos/
9704F:	drivers/i2c/busses/
9705F:	include/dt-bindings/i2c/
9706
9707I2C-TAOS-EVM DRIVER
9708M:	Jean Delvare <jdelvare@suse.com>
9709L:	linux-i2c@vger.kernel.org
9710S:	Maintained
9711F:	Documentation/i2c/busses/i2c-taos-evm.rst
9712F:	drivers/i2c/busses/i2c-taos-evm.c
9713
9714I2C-TINY-USB DRIVER
9715M:	Till Harbaum <till@harbaum.org>
9716L:	linux-i2c@vger.kernel.org
9717S:	Maintained
9718W:	http://www.harbaum.org/till/i2c_tiny_usb
9719F:	drivers/i2c/busses/i2c-tiny-usb.c
9720
9721I2C/SMBUS CONTROLLER DRIVERS FOR PC
9722M:	Jean Delvare <jdelvare@suse.com>
9723L:	linux-i2c@vger.kernel.org
9724S:	Maintained
9725F:	Documentation/i2c/busses/i2c-ali1535.rst
9726F:	Documentation/i2c/busses/i2c-ali1563.rst
9727F:	Documentation/i2c/busses/i2c-ali15x3.rst
9728F:	Documentation/i2c/busses/i2c-amd756.rst
9729F:	Documentation/i2c/busses/i2c-amd8111.rst
9730F:	Documentation/i2c/busses/i2c-i801.rst
9731F:	Documentation/i2c/busses/i2c-nforce2.rst
9732F:	Documentation/i2c/busses/i2c-piix4.rst
9733F:	Documentation/i2c/busses/i2c-sis5595.rst
9734F:	Documentation/i2c/busses/i2c-sis630.rst
9735F:	Documentation/i2c/busses/i2c-sis96x.rst
9736F:	Documentation/i2c/busses/i2c-via.rst
9737F:	Documentation/i2c/busses/i2c-viapro.rst
9738F:	drivers/i2c/busses/i2c-ali1535.c
9739F:	drivers/i2c/busses/i2c-ali1563.c
9740F:	drivers/i2c/busses/i2c-ali15x3.c
9741F:	drivers/i2c/busses/i2c-amd756-s4882.c
9742F:	drivers/i2c/busses/i2c-amd756.c
9743F:	drivers/i2c/busses/i2c-amd8111.c
9744F:	drivers/i2c/busses/i2c-i801.c
9745F:	drivers/i2c/busses/i2c-isch.c
9746F:	drivers/i2c/busses/i2c-nforce2-s4985.c
9747F:	drivers/i2c/busses/i2c-nforce2.c
9748F:	drivers/i2c/busses/i2c-piix4.c
9749F:	drivers/i2c/busses/i2c-sis5595.c
9750F:	drivers/i2c/busses/i2c-sis630.c
9751F:	drivers/i2c/busses/i2c-sis96x.c
9752F:	drivers/i2c/busses/i2c-via.c
9753F:	drivers/i2c/busses/i2c-viapro.c
9754
9755I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9756M:	Hans de Goede <hdegoede@redhat.com>
9757L:	linux-i2c@vger.kernel.org
9758S:	Maintained
9759F:	drivers/i2c/busses/i2c-cht-wc.c
9760
9761I2C/SMBUS ISMT DRIVER
9762M:	Seth Heasley <seth.heasley@intel.com>
9763M:	Neil Horman <nhorman@tuxdriver.com>
9764L:	linux-i2c@vger.kernel.org
9765F:	Documentation/i2c/busses/i2c-ismt.rst
9766F:	drivers/i2c/busses/i2c-ismt.c
9767
9768I2C/SMBUS STUB DRIVER
9769M:	Jean Delvare <jdelvare@suse.com>
9770L:	linux-i2c@vger.kernel.org
9771S:	Maintained
9772F:	drivers/i2c/i2c-stub.c
9773
9774I3C DRIVER FOR CADENCE I3C MASTER IP
9775M:	Przemysław Gaj <pgaj@cadence.com>
9776S:	Maintained
9777F:	Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9778F:	drivers/i3c/master/i3c-master-cdns.c
9779
9780I3C DRIVER FOR SYNOPSYS DESIGNWARE
9781S:	Orphan
9782F:	Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9783F:	drivers/i3c/master/dw*
9784
9785I3C DRIVER FOR ASPEED AST2600
9786M:	Jeremy Kerr <jk@codeconstruct.com.au>
9787S:	Maintained
9788F:	Documentation/devicetree/bindings/i3c/aspeed,ast2600-i3c.yaml
9789F:	drivers/i3c/master/ast2600-i3c-master.c
9790
9791I3C SUBSYSTEM
9792M:	Alexandre Belloni <alexandre.belloni@bootlin.com>
9793L:	linux-i3c@lists.infradead.org (moderated for non-subscribers)
9794S:	Maintained
9795C:	irc://chat.freenode.net/linux-i3c
9796T:	git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9797F:	Documentation/ABI/testing/sysfs-bus-i3c
9798F:	Documentation/devicetree/bindings/i3c/
9799F:	Documentation/driver-api/i3c
9800F:	drivers/i3c/
9801F:	include/linux/i3c/
9802
9803IA64 (Itanium) PLATFORM
9804L:	linux-ia64@vger.kernel.org
9805S:	Orphan
9806F:	Documentation/arch/ia64/
9807F:	arch/ia64/
9808
9809IBM Operation Panel Input Driver
9810M:	Eddie James <eajames@linux.ibm.com>
9811L:	linux-input@vger.kernel.org
9812S:	Maintained
9813F:	Documentation/devicetree/bindings/input/ibm,op-panel.yaml
9814F:	drivers/input/misc/ibm-panel.c
9815
9816IBM Power 842 compression accelerator
9817M:	Haren Myneni <haren@us.ibm.com>
9818S:	Supported
9819F:	crypto/842.c
9820F:	drivers/crypto/nx/Kconfig
9821F:	drivers/crypto/nx/Makefile
9822F:	drivers/crypto/nx/nx-842*
9823F:	include/linux/sw842.h
9824F:	lib/842/
9825
9826IBM Power in-Nest Crypto Acceleration
9827M:	Breno Leitão <leitao@debian.org>
9828M:	Nayna Jain <nayna@linux.ibm.com>
9829M:	Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9830L:	linux-crypto@vger.kernel.org
9831S:	Supported
9832F:	drivers/crypto/nx/Kconfig
9833F:	drivers/crypto/nx/Makefile
9834F:	drivers/crypto/nx/nx-aes*
9835F:	drivers/crypto/nx/nx-sha*
9836F:	drivers/crypto/nx/nx.*
9837F:	drivers/crypto/nx/nx_csbcpb.h
9838F:	drivers/crypto/nx/nx_debugfs.c
9839
9840IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9841M:	Tyrel Datwyler <tyreld@linux.ibm.com>
9842L:	linux-pci@vger.kernel.org
9843L:	linuxppc-dev@lists.ozlabs.org
9844S:	Supported
9845F:	drivers/pci/hotplug/rpadlpar*
9846
9847IBM Power Linux RAID adapter
9848M:	Brian King <brking@us.ibm.com>
9849S:	Supported
9850F:	drivers/scsi/ipr.*
9851
9852IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9853M:	Tyrel Datwyler <tyreld@linux.ibm.com>
9854L:	linux-pci@vger.kernel.org
9855L:	linuxppc-dev@lists.ozlabs.org
9856S:	Supported
9857F:	drivers/pci/hotplug/rpaphp*
9858
9859IBM Power SRIOV Virtual NIC Device Driver
9860M:	Haren Myneni <haren@linux.ibm.com>
9861M:	Rick Lindsley <ricklind@linux.ibm.com>
9862R:	Nick Child <nnac123@linux.ibm.com>
9863R:	Dany Madden <danymadden@us.ibm.com>
9864R:	Thomas Falcon <tlfalcon@linux.ibm.com>
9865L:	netdev@vger.kernel.org
9866S:	Supported
9867F:	drivers/net/ethernet/ibm/ibmvnic.*
9868
9869IBM Power Virtual Ethernet Device Driver
9870M:	Nick Child <nnac123@linux.ibm.com>
9871L:	netdev@vger.kernel.org
9872S:	Supported
9873F:	drivers/net/ethernet/ibm/ibmveth.*
9874
9875IBM Power Virtual FC Device Drivers
9876M:	Tyrel Datwyler <tyreld@linux.ibm.com>
9877L:	linux-scsi@vger.kernel.org
9878S:	Supported
9879F:	drivers/scsi/ibmvscsi/ibmvfc*
9880
9881IBM Power Virtual Management Channel Driver
9882M:	Brad Warrum <bwarrum@linux.ibm.com>
9883M:	Ritu Agarwal <rituagar@linux.ibm.com>
9884S:	Supported
9885F:	drivers/misc/ibmvmc.*
9886
9887IBM Power Virtual SCSI Device Drivers
9888M:	Tyrel Datwyler <tyreld@linux.ibm.com>
9889L:	linux-scsi@vger.kernel.org
9890S:	Supported
9891F:	drivers/scsi/ibmvscsi/ibmvscsi*
9892F:	include/scsi/viosrp.h
9893
9894IBM Power Virtual SCSI Device Target Driver
9895M:	Michael Cyr <mikecyr@linux.ibm.com>
9896L:	linux-scsi@vger.kernel.org
9897L:	target-devel@vger.kernel.org
9898S:	Supported
9899F:	drivers/scsi/ibmvscsi_tgt/
9900
9901IBM Power VMX Cryptographic instructions
9902M:	Breno Leitão <leitao@debian.org>
9903M:	Nayna Jain <nayna@linux.ibm.com>
9904M:	Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9905L:	linux-crypto@vger.kernel.org
9906S:	Supported
9907F:	drivers/crypto/vmx/Kconfig
9908F:	drivers/crypto/vmx/Makefile
9909F:	drivers/crypto/vmx/aes*
9910F:	drivers/crypto/vmx/ghash*
9911F:	drivers/crypto/vmx/ppc-xlate.pl
9912F:	drivers/crypto/vmx/vmx.c
9913
9914IBM Power VFIO Support
9915M:	Timothy Pearson <tpearson@raptorengineering.com>
9916S:	Supported
9917F:	drivers/vfio/vfio_iommu_spapr_tce.c
9918
9919IBM ServeRAID RAID DRIVER
9920S:	Orphan
9921F:	drivers/scsi/ips.*
9922
9923ICH LPC AND GPIO DRIVER
9924M:	Peter Tyser <ptyser@xes-inc.com>
9925S:	Maintained
9926F:	drivers/gpio/gpio-ich.c
9927F:	drivers/mfd/lpc_ich.c
9928
9929ICY I2C DRIVER
9930M:	Max Staudt <max@enpas.org>
9931L:	linux-i2c@vger.kernel.org
9932S:	Maintained
9933F:	drivers/i2c/busses/i2c-icy.c
9934
9935IDEAPAD LAPTOP EXTRAS DRIVER
9936M:	Ike Panhc <ike.pan@canonical.com>
9937L:	platform-driver-x86@vger.kernel.org
9938S:	Maintained
9939W:	http://launchpad.net/ideapad-laptop
9940F:	drivers/platform/x86/ideapad-laptop.c
9941
9942IDEAPAD LAPTOP SLIDEBAR DRIVER
9943M:	Andrey Moiseev <o2g.org.ru@gmail.com>
9944L:	linux-input@vger.kernel.org
9945S:	Maintained
9946W:	https://github.com/o2genum/ideapad-slidebar
9947F:	drivers/input/misc/ideapad_slidebar.c
9948
9949IDMAPPED MOUNTS
9950M:	Christian Brauner <brauner@kernel.org>
9951M:	Seth Forshee <sforshee@kernel.org>
9952L:	linux-fsdevel@vger.kernel.org
9953S:	Maintained
9954T:	git git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9955F:	Documentation/filesystems/idmappings.rst
9956F:	include/linux/mnt_idmapping.*
9957F:	tools/testing/selftests/mount_setattr/
9958
9959IDT VersaClock 5 CLOCK DRIVER
9960M:	Luca Ceresoli <luca@lucaceresoli.net>
9961S:	Maintained
9962F:	Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9963F:	drivers/clk/clk-versaclock5.c
9964
9965IEEE 802.15.4 SUBSYSTEM
9966M:	Alexander Aring <alex.aring@gmail.com>
9967M:	Stefan Schmidt <stefan@datenfreihafen.org>
9968M:	Miquel Raynal <miquel.raynal@bootlin.com>
9969L:	linux-wpan@vger.kernel.org
9970S:	Maintained
9971W:	https://linux-wpan.org/
9972T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9973T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9974F:	Documentation/networking/ieee802154.rst
9975F:	drivers/net/ieee802154/
9976F:	include/linux/ieee802154.h
9977F:	include/linux/nl802154.h
9978F:	include/net/af_ieee802154.h
9979F:	include/net/cfg802154.h
9980F:	include/net/ieee802154_netdev.h
9981F:	include/net/mac802154.h
9982F:	include/net/nl802154.h
9983F:	net/ieee802154/
9984F:	net/mac802154/
9985
9986IFE PROTOCOL
9987M:	Yotam Gigi <yotam.gi@gmail.com>
9988M:	Jamal Hadi Salim <jhs@mojatatu.com>
9989F:	include/net/ife.h
9990F:	include/uapi/linux/ife.h
9991F:	net/ife
9992
9993IGORPLUG-USB IR RECEIVER
9994M:	Sean Young <sean@mess.org>
9995L:	linux-media@vger.kernel.org
9996S:	Maintained
9997F:	drivers/media/rc/igorplugusb.c
9998
9999IGUANAWORKS USB IR TRANSCEIVER
10000M:	Sean Young <sean@mess.org>
10001L:	linux-media@vger.kernel.org
10002S:	Maintained
10003F:	drivers/media/rc/iguanair.c
10004
10005IIO DIGITAL POTENTIOMETER DAC
10006M:	Peter Rosin <peda@axentia.se>
10007L:	linux-iio@vger.kernel.org
10008S:	Maintained
10009F:	Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
10010F:	Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
10011F:	drivers/iio/dac/dpot-dac.c
10012
10013IIO ENVELOPE DETECTOR
10014M:	Peter Rosin <peda@axentia.se>
10015L:	linux-iio@vger.kernel.org
10016S:	Maintained
10017F:	Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
10018F:	Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
10019F:	drivers/iio/adc/envelope-detector.c
10020
10021IIO LIGHT SENSOR GAIN-TIME-SCALE HELPERS
10022M:	Matti Vaittinen <mazziesaccount@gmail.com>
10023L:	linux-iio@vger.kernel.org
10024S:	Maintained
10025F:	drivers/iio/light/gain-time-scale-helper.c
10026F:	drivers/iio/light/gain-time-scale-helper.h
10027
10028IIO MULTIPLEXER
10029M:	Peter Rosin <peda@axentia.se>
10030L:	linux-iio@vger.kernel.org
10031S:	Maintained
10032F:	Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
10033F:	drivers/iio/multiplexer/iio-mux.c
10034
10035IIO SCMI BASED DRIVER
10036M:	Jyoti Bhayana <jbhayana@google.com>
10037L:	linux-iio@vger.kernel.org
10038S:	Maintained
10039F:	drivers/iio/common/scmi_sensors/scmi_iio.c
10040
10041IIO SUBSYSTEM AND DRIVERS
10042M:	Jonathan Cameron <jic23@kernel.org>
10043R:	Lars-Peter Clausen <lars@metafoo.de>
10044L:	linux-iio@vger.kernel.org
10045S:	Maintained
10046T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
10047F:	Documentation/ABI/testing/configfs-iio*
10048F:	Documentation/ABI/testing/sysfs-bus-iio*
10049F:	Documentation/devicetree/bindings/iio/
10050F:	drivers/iio/
10051F:	drivers/staging/iio/
10052F:	include/dt-bindings/iio/
10053F:	include/linux/iio/
10054F:	tools/iio/
10055
10056IIO UNIT CONVERTER
10057M:	Peter Rosin <peda@axentia.se>
10058L:	linux-iio@vger.kernel.org
10059S:	Maintained
10060F:	Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
10061F:	Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
10062F:	Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
10063F:	drivers/iio/afe/iio-rescale.c
10064
10065IKANOS/ADI EAGLE ADSL USB DRIVER
10066M:	Matthieu Castet <castet.matthieu@free.fr>
10067M:	Stanislaw Gruszka <stf_xl@wp.pl>
10068S:	Maintained
10069F:	drivers/usb/atm/ueagle-atm.c
10070
10071IMAGIS TOUCHSCREEN DRIVER
10072M:	Markuss Broks <markuss.broks@gmail.com>
10073S:	Maintained
10074F:	Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
10075F:	drivers/input/touchscreen/imagis.c
10076
10077IMGTEC ASCII LCD DRIVER
10078M:	Paul Burton <paulburton@kernel.org>
10079S:	Maintained
10080F:	Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
10081F:	drivers/auxdisplay/img-ascii-lcd.c
10082
10083IMGTEC IR DECODER DRIVER
10084S:	Orphan
10085F:	drivers/media/rc/img-ir/
10086
10087IMON SOUNDGRAPH USB IR RECEIVER
10088M:	Sean Young <sean@mess.org>
10089L:	linux-media@vger.kernel.org
10090S:	Maintained
10091F:	drivers/media/rc/imon.c
10092F:	drivers/media/rc/imon_raw.c
10093
10094IMS TWINTURBO FRAMEBUFFER DRIVER
10095L:	linux-fbdev@vger.kernel.org
10096S:	Orphan
10097F:	drivers/video/fbdev/imsttfb.c
10098
10099INA209 HARDWARE MONITOR DRIVER
10100M:	Guenter Roeck <linux@roeck-us.net>
10101L:	linux-hwmon@vger.kernel.org
10102S:	Maintained
10103F:	Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
10104F:	Documentation/hwmon/ina209.rst
10105F:	drivers/hwmon/ina209.c
10106
10107INA2XX HARDWARE MONITOR DRIVER
10108M:	Guenter Roeck <linux@roeck-us.net>
10109L:	linux-hwmon@vger.kernel.org
10110S:	Maintained
10111F:	Documentation/hwmon/ina2xx.rst
10112F:	drivers/hwmon/ina2xx.c
10113F:	include/linux/platform_data/ina2xx.h
10114
10115INDEX OF FURTHER KERNEL DOCUMENTATION
10116M:	Carlos Bilbao <carlos.bilbao@amd.com>
10117S:	Maintained
10118F:	Documentation/process/kernel-docs.rst
10119
10120INDUSTRY PACK SUBSYSTEM (IPACK)
10121M:	Samuel Iglesias Gonsalvez <siglesias@igalia.com>
10122M:	Jens Taprogge <jens.taprogge@taprogge.org>
10123M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10124L:	industrypack-devel@lists.sourceforge.net
10125S:	Maintained
10126W:	http://industrypack.sourceforge.net
10127F:	drivers/ipack/
10128
10129INFINEON DPS310 Driver
10130M:	Eddie James <eajames@linux.ibm.com>
10131L:	linux-iio@vger.kernel.org
10132S:	Maintained
10133F:	drivers/iio/pressure/dps310.c
10134
10135INFINEON PEB2466 ASoC CODEC
10136M:	Herve Codina <herve.codina@bootlin.com>
10137L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
10138S:	Maintained
10139F:	Documentation/devicetree/bindings/sound/infineon,peb2466.yaml
10140F:	sound/soc/codecs/peb2466.c
10141
10142INFINIBAND SUBSYSTEM
10143M:	Jason Gunthorpe <jgg@nvidia.com>
10144M:	Leon Romanovsky <leonro@nvidia.com>
10145L:	linux-rdma@vger.kernel.org
10146S:	Supported
10147W:	https://github.com/linux-rdma/rdma-core
10148Q:	http://patchwork.kernel.org/project/linux-rdma/list/
10149T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
10150F:	Documentation/devicetree/bindings/infiniband/
10151F:	Documentation/infiniband/
10152F:	drivers/infiniband/
10153F:	include/rdma/
10154F:	include/trace/events/ib_mad.h
10155F:	include/trace/events/ib_umad.h
10156F:	include/trace/misc/rdma.h
10157F:	include/uapi/linux/if_infiniband.h
10158F:	include/uapi/rdma/
10159F:	samples/bpf/ibumad_kern.c
10160F:	samples/bpf/ibumad_user.c
10161
10162INGENIC JZ4780 NAND DRIVER
10163M:	Harvey Hunt <harveyhuntnexus@gmail.com>
10164L:	linux-mtd@lists.infradead.org
10165L:	linux-mips@vger.kernel.org
10166S:	Maintained
10167F:	drivers/mtd/nand/raw/ingenic/
10168
10169INGENIC JZ47xx SoCs
10170M:	Paul Cercueil <paul@crapouillou.net>
10171L:	linux-mips@vger.kernel.org
10172S:	Maintained
10173F:	arch/mips/boot/dts/ingenic/
10174F:	arch/mips/generic/board-ingenic.c
10175F:	arch/mips/include/asm/mach-ingenic/
10176F:	arch/mips/ingenic/Kconfig
10177F:	drivers/clk/ingenic/
10178F:	drivers/dma/dma-jz4780.c
10179F:	drivers/gpu/drm/ingenic/
10180F:	drivers/i2c/busses/i2c-jz4780.c
10181F:	drivers/iio/adc/ingenic-adc.c
10182F:	drivers/irqchip/irq-ingenic.c
10183F:	drivers/memory/jz4780-nemc.c
10184F:	drivers/mmc/host/jz4740_mmc.c
10185F:	drivers/mtd/nand/raw/ingenic/
10186F:	drivers/pinctrl/pinctrl-ingenic.c
10187F:	drivers/power/supply/ingenic-battery.c
10188F:	drivers/pwm/pwm-jz4740.c
10189F:	drivers/remoteproc/ingenic_rproc.c
10190F:	drivers/rtc/rtc-jz4740.c
10191F:	drivers/tty/serial/8250/8250_ingenic.c
10192F:	drivers/usb/musb/jz4740.c
10193F:	drivers/watchdog/jz4740_wdt.c
10194F:	include/dt-bindings/iio/adc/ingenic,adc.h
10195F:	include/linux/mfd/ingenic-tcu.h
10196F:	sound/soc/codecs/jz47*
10197F:	sound/soc/jz4740/
10198
10199INJOINIC IP5xxx POWER BANK IC DRIVER
10200M:	Samuel Holland <samuel@sholland.org>
10201S:	Maintained
10202F:	drivers/power/supply/ip5xxx_power.c
10203
10204INOTIFY
10205M:	Jan Kara <jack@suse.cz>
10206R:	Amir Goldstein <amir73il@gmail.com>
10207L:	linux-fsdevel@vger.kernel.org
10208S:	Maintained
10209F:	Documentation/filesystems/inotify.rst
10210F:	fs/notify/inotify/
10211F:	include/linux/inotify.h
10212F:	include/uapi/linux/inotify.h
10213
10214INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10215M:	Dmitry Torokhov <dmitry.torokhov@gmail.com>
10216L:	linux-input@vger.kernel.org
10217S:	Maintained
10218Q:	http://patchwork.kernel.org/project/linux-input/list/
10219T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10220F:	Documentation/devicetree/bindings/input/
10221F:	Documentation/devicetree/bindings/serio/
10222F:	Documentation/input/
10223F:	drivers/input/
10224F:	include/dt-bindings/input/
10225F:	include/linux/input.h
10226F:	include/linux/input/
10227F:	include/uapi/linux/input-event-codes.h
10228F:	include/uapi/linux/input.h
10229
10230INPUT MULTITOUCH (MT) PROTOCOL
10231M:	Henrik Rydberg <rydberg@bitmath.org>
10232L:	linux-input@vger.kernel.org
10233S:	Odd fixes
10234F:	Documentation/input/multi-touch-protocol.rst
10235F:	drivers/input/input-mt.c
10236K:	\b(ABS|SYN)_MT_
10237
10238INSIDE SECURE CRYPTO DRIVER
10239M:	Antoine Tenart <atenart@kernel.org>
10240L:	linux-crypto@vger.kernel.org
10241S:	Maintained
10242F:	drivers/crypto/inside-secure/
10243
10244INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10245M:	Mimi Zohar <zohar@linux.ibm.com>
10246M:	Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
10247L:	linux-integrity@vger.kernel.org
10248S:	Supported
10249T:	git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10250F:	security/integrity/ima/
10251F:	security/integrity/
10252
10253INTEL 810/815 FRAMEBUFFER DRIVER
10254M:	Antonino Daplas <adaplas@gmail.com>
10255L:	linux-fbdev@vger.kernel.org
10256S:	Maintained
10257F:	drivers/video/fbdev/i810/
10258
10259INTEL 8255 GPIO DRIVER
10260M:	William Breathitt Gray <william.gray@linaro.org>
10261L:	linux-gpio@vger.kernel.org
10262S:	Maintained
10263F:	drivers/gpio/gpio-i8255.c
10264F:	drivers/gpio/gpio-i8255.h
10265
10266INTEL ASoC DRIVERS
10267M:	Cezary Rojewski <cezary.rojewski@intel.com>
10268M:	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
10269M:	Liam Girdwood <liam.r.girdwood@linux.intel.com>
10270M:	Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
10271M:	Bard Liao <yung-chuan.liao@linux.intel.com>
10272M:	Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10273M:	Kai Vehmanen <kai.vehmanen@linux.intel.com>
10274L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
10275S:	Supported
10276F:	sound/soc/intel/
10277
10278INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10279M:	Hans de Goede <hdegoede@redhat.com>
10280L:	platform-driver-x86@vger.kernel.org
10281S:	Maintained
10282F:	drivers/platform/x86/intel/atomisp2/pm.c
10283
10284INTEL ATOMISP2 LED DRIVER
10285M:	Hans de Goede <hdegoede@redhat.com>
10286L:	platform-driver-x86@vger.kernel.org
10287S:	Maintained
10288F:	drivers/platform/x86/intel/atomisp2/led.c
10289
10290INTEL BIOS SAR INT1092 DRIVER
10291M:	Shravan Sudhakar <s.shravan@intel.com>
10292M:	Intel Corporation <linuxwwan@intel.com>
10293L:	platform-driver-x86@vger.kernel.org
10294S:	Maintained
10295F:	drivers/platform/x86/intel/int1092/
10296
10297INTEL BROXTON PMC DRIVER
10298M:	Mika Westerberg <mika.westerberg@linux.intel.com>
10299M:	Zha Qipeng <qipeng.zha@intel.com>
10300S:	Maintained
10301F:	drivers/mfd/intel_pmc_bxt.c
10302F:	include/linux/mfd/intel_pmc_bxt.h
10303
10304INTEL C600 SERIES SAS CONTROLLER DRIVER
10305M:	Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10306L:	linux-scsi@vger.kernel.org
10307S:	Supported
10308T:	git git://git.code.sf.net/p/intel-sas/isci
10309F:	drivers/scsi/isci/
10310
10311INTEL CPU family model numbers
10312M:	Tony Luck <tony.luck@intel.com>
10313M:	x86@kernel.org
10314L:	linux-kernel@vger.kernel.org
10315S:	Supported
10316F:	arch/x86/include/asm/intel-family.h
10317
10318INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10319M:	Jani Nikula <jani.nikula@linux.intel.com>
10320M:	Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10321M:	Rodrigo Vivi <rodrigo.vivi@intel.com>
10322M:	Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10323L:	intel-gfx@lists.freedesktop.org
10324S:	Supported
10325W:	https://01.org/linuxgraphics/
10326Q:	http://patchwork.freedesktop.org/project/intel-gfx/
10327B:	https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10328C:	irc://irc.oftc.net/intel-gfx
10329T:	git git://anongit.freedesktop.org/drm-intel
10330F:	Documentation/ABI/testing/sysfs-driver-intel-i915-hwmon
10331F:	Documentation/gpu/i915.rst
10332F:	drivers/gpu/drm/i915/
10333F:	include/drm/i915*
10334F:	include/uapi/drm/i915_drm.h
10335
10336INTEL ETHERNET DRIVERS
10337M:	Jesse Brandeburg <jesse.brandeburg@intel.com>
10338M:	Tony Nguyen <anthony.l.nguyen@intel.com>
10339L:	intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10340S:	Supported
10341W:	http://www.intel.com/support/feedback.htm
10342W:	http://e1000.sourceforge.net/
10343Q:	http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10344T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10345T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10346F:	Documentation/networking/device_drivers/ethernet/intel/
10347F:	drivers/net/ethernet/intel/
10348F:	drivers/net/ethernet/intel/*/
10349F:	include/linux/avf/virtchnl.h
10350F:	include/linux/net/intel/iidc.h
10351
10352INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10353M:	Mustafa Ismail <mustafa.ismail@intel.com>
10354M:	Shiraz Saleem <shiraz.saleem@intel.com>
10355L:	linux-rdma@vger.kernel.org
10356S:	Supported
10357F:	drivers/infiniband/hw/irdma/
10358F:	include/uapi/rdma/irdma-abi.h
10359
10360INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10361M:	Maik Broemme <mbroemme@libmpq.org>
10362L:	linux-fbdev@vger.kernel.org
10363S:	Maintained
10364F:	Documentation/fb/intelfb.rst
10365F:	drivers/video/fbdev/intelfb/
10366
10367INTEL GPIO DRIVERS
10368M:	Andy Shevchenko <andy@kernel.org>
10369L:	linux-gpio@vger.kernel.org
10370S:	Supported
10371T:	git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10372F:	drivers/gpio/gpio-elkhartlake.c
10373F:	drivers/gpio/gpio-ich.c
10374F:	drivers/gpio/gpio-merrifield.c
10375F:	drivers/gpio/gpio-ml-ioh.c
10376F:	drivers/gpio/gpio-pch.c
10377F:	drivers/gpio/gpio-sch.c
10378F:	drivers/gpio/gpio-sodaville.c
10379F:	drivers/gpio/gpio-tangier.c
10380
10381INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10382M:	Zhenyu Wang <zhenyuw@linux.intel.com>
10383M:	Zhi Wang <zhi.a.wang@intel.com>
10384L:	intel-gvt-dev@lists.freedesktop.org
10385L:	intel-gfx@lists.freedesktop.org
10386S:	Supported
10387W:	https://01.org/igvt-g
10388T:	git https://github.com/intel/gvt-linux.git
10389F:	drivers/gpu/drm/i915/gvt/
10390
10391INTEL HID EVENT DRIVER
10392M:	Alex Hung <alexhung@gmail.com>
10393L:	platform-driver-x86@vger.kernel.org
10394S:	Maintained
10395F:	drivers/platform/x86/intel/hid.c
10396
10397INTEL I/OAT DMA DRIVER
10398M:	Dave Jiang <dave.jiang@intel.com>
10399R:	Dan Williams <dan.j.williams@intel.com>
10400L:	dmaengine@vger.kernel.org
10401S:	Supported
10402Q:	https://patchwork.kernel.org/project/linux-dmaengine/list/
10403F:	drivers/dma/ioat*
10404
10405INTEL IDXD DRIVER
10406M:	Fenghua Yu <fenghua.yu@intel.com>
10407M:	Dave Jiang <dave.jiang@intel.com>
10408L:	dmaengine@vger.kernel.org
10409S:	Supported
10410F:	drivers/dma/idxd/*
10411F:	include/uapi/linux/idxd.h
10412
10413INTEL IDLE DRIVER
10414M:	Jacob Pan <jacob.jun.pan@linux.intel.com>
10415M:	Len Brown <lenb@kernel.org>
10416L:	linux-pm@vger.kernel.org
10417S:	Supported
10418B:	https://bugzilla.kernel.org
10419T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10420F:	drivers/idle/intel_idle.c
10421
10422INTEL IN FIELD SCAN (IFS) DEVICE
10423M:	Jithu Joseph <jithu.joseph@intel.com>
10424R:	Ashok Raj <ashok.raj@intel.com>
10425R:	Tony Luck <tony.luck@intel.com>
10426S:	Maintained
10427F:	drivers/platform/x86/intel/ifs
10428F:	include/trace/events/intel_ifs.h
10429
10430INTEL INTEGRATED SENSOR HUB DRIVER
10431M:	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10432M:	Jiri Kosina <jikos@kernel.org>
10433L:	linux-input@vger.kernel.org
10434S:	Maintained
10435F:	drivers/hid/intel-ish-hid/
10436
10437INTEL IOMMU (VT-d)
10438M:	David Woodhouse <dwmw2@infradead.org>
10439M:	Lu Baolu <baolu.lu@linux.intel.com>
10440L:	iommu@lists.linux.dev
10441S:	Supported
10442T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10443F:	drivers/iommu/intel/
10444
10445INTEL IPU3 CSI-2 CIO2 DRIVER
10446M:	Yong Zhi <yong.zhi@intel.com>
10447M:	Sakari Ailus <sakari.ailus@linux.intel.com>
10448M:	Bingbu Cao <bingbu.cao@intel.com>
10449M:	Dan Scally <djrscally@gmail.com>
10450R:	Tianshu Qiu <tian.shu.qiu@intel.com>
10451L:	linux-media@vger.kernel.org
10452S:	Maintained
10453T:	git git://linuxtv.org/media_tree.git
10454F:	Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10455F:	drivers/media/pci/intel/ipu3/
10456
10457INTEL IPU3 CSI-2 IMGU DRIVER
10458M:	Sakari Ailus <sakari.ailus@linux.intel.com>
10459R:	Bingbu Cao <bingbu.cao@intel.com>
10460R:	Tianshu Qiu <tian.shu.qiu@intel.com>
10461L:	linux-media@vger.kernel.org
10462S:	Maintained
10463F:	Documentation/admin-guide/media/ipu3.rst
10464F:	Documentation/admin-guide/media/ipu3_rcb.svg
10465F:	Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10466F:	drivers/staging/media/ipu3/
10467
10468INTEL IXP4XX CRYPTO SUPPORT
10469M:	Corentin Labbe <clabbe@baylibre.com>
10470L:	linux-crypto@vger.kernel.org
10471S:	Maintained
10472F:	drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c
10473
10474INTEL ISHTP ECLITE DRIVER
10475M:	Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10476L:	platform-driver-x86@vger.kernel.org
10477S:	Supported
10478F:	drivers/platform/x86/intel/ishtp_eclite.c
10479
10480INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10481M:	Krzysztof Halasa <khalasa@piap.pl>
10482S:	Maintained
10483F:	drivers/net/ethernet/xscale/ixp4xx_eth.c
10484F:	drivers/net/wan/ixp4xx_hss.c
10485F:	drivers/soc/ixp4xx/ixp4xx-npe.c
10486F:	drivers/soc/ixp4xx/ixp4xx-qmgr.c
10487F:	include/linux/soc/ixp4xx/npe.h
10488F:	include/linux/soc/ixp4xx/qmgr.h
10489
10490INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10491M:	Deepak Saxena <dsaxena@plexity.net>
10492S:	Maintained
10493F:	Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10494F:	drivers/char/hw_random/ixp4xx-rng.c
10495
10496INTEL KEEM BAY DRM DRIVER
10497M:	Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10498M:	Edmund Dea <edmund.j.dea@intel.com>
10499S:	Maintained
10500F:	Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10501F:	drivers/gpu/drm/kmb/
10502
10503INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10504M:	Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10505S:	Maintained
10506F:	Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10507F:	drivers/crypto/intel/keembay/Kconfig
10508F:	drivers/crypto/intel/keembay/Makefile
10509F:	drivers/crypto/intel/keembay/keembay-ocs-aes-core.c
10510F:	drivers/crypto/intel/keembay/ocs-aes.c
10511F:	drivers/crypto/intel/keembay/ocs-aes.h
10512
10513INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10514M:	Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10515M:	Prabhjot Khurana <prabhjot.khurana@intel.com>
10516M:	Mark Gross <mgross@linux.intel.com>
10517S:	Maintained
10518F:	Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10519F:	drivers/crypto/intel/keembay/Kconfig
10520F:	drivers/crypto/intel/keembay/Makefile
10521F:	drivers/crypto/intel/keembay/keembay-ocs-ecc.c
10522
10523INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10524M:	Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10525M:	Declan Murphy <declan.murphy@intel.com>
10526S:	Maintained
10527F:	Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10528F:	drivers/crypto/intel/keembay/Kconfig
10529F:	drivers/crypto/intel/keembay/Makefile
10530F:	drivers/crypto/intel/keembay/keembay-ocs-hcu-core.c
10531F:	drivers/crypto/intel/keembay/ocs-hcu.c
10532F:	drivers/crypto/intel/keembay/ocs-hcu.h
10533
10534INTEL MANAGEMENT ENGINE (mei)
10535M:	Tomas Winkler <tomas.winkler@intel.com>
10536L:	linux-kernel@vger.kernel.org
10537S:	Supported
10538F:	Documentation/driver-api/mei/*
10539F:	drivers/misc/mei/
10540F:	drivers/watchdog/mei_wdt.c
10541F:	include/linux/mei_aux.h
10542F:	include/linux/mei_cl_bus.h
10543F:	include/uapi/linux/mei.h
10544F:	include/uapi/linux/mei_uuid.h
10545F:	include/uapi/linux/uuid.h
10546F:	samples/mei/*
10547
10548INTEL MAX 10 BMC MFD DRIVER
10549M:	Xu Yilun <yilun.xu@intel.com>
10550R:	Tom Rix <trix@redhat.com>
10551S:	Maintained
10552F:	Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10553F:	Documentation/hwmon/intel-m10-bmc-hwmon.rst
10554F:	drivers/hwmon/intel-m10-bmc-hwmon.c
10555F:	drivers/mfd/intel-m10-bmc*
10556F:	include/linux/mfd/intel-m10-bmc.h
10557
10558INTEL P-Unit IPC DRIVER
10559M:	Zha Qipeng <qipeng.zha@intel.com>
10560L:	platform-driver-x86@vger.kernel.org
10561S:	Maintained
10562F:	arch/x86/include/asm/intel_punit_ipc.h
10563F:	drivers/platform/x86/intel/punit_ipc.c
10564
10565INTEL PMC CORE DRIVER
10566M:	Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10567M:	David E Box <david.e.box@intel.com>
10568L:	platform-driver-x86@vger.kernel.org
10569S:	Maintained
10570F:	Documentation/ABI/testing/sysfs-platform-intel-pmc
10571F:	drivers/platform/x86/intel/pmc/
10572
10573INTEL PMIC GPIO DRIVERS
10574M:	Andy Shevchenko <andy@kernel.org>
10575S:	Supported
10576T:	git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10577F:	drivers/gpio/gpio-*cove.c
10578
10579INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10580M:	Andy Shevchenko <andy@kernel.org>
10581S:	Supported
10582F:	drivers/mfd/intel_soc_pmic*
10583F:	include/linux/mfd/intel_soc_pmic*
10584
10585INTEL PMT DRIVERS
10586M:	David E. Box <david.e.box@linux.intel.com>
10587S:	Supported
10588F:	drivers/platform/x86/intel/pmt/
10589
10590INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10591M:	Stanislav Yakovlev <stas.yakovlev@gmail.com>
10592L:	linux-wireless@vger.kernel.org
10593S:	Maintained
10594F:	Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10595F:	Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10596F:	drivers/net/wireless/intel/ipw2x00/
10597
10598INTEL PSTATE DRIVER
10599M:	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10600M:	Len Brown <lenb@kernel.org>
10601L:	linux-pm@vger.kernel.org
10602S:	Supported
10603F:	drivers/cpufreq/intel_pstate.c
10604
10605INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10606M:	Jarkko Nikula <jarkko.nikula@linux.intel.com>
10607L:	linux-iio@vger.kernel.org
10608F:	drivers/counter/intel-qep.c
10609
10610INTEL SCU DRIVERS
10611M:	Mika Westerberg <mika.westerberg@linux.intel.com>
10612S:	Maintained
10613F:	arch/x86/include/asm/intel_scu_ipc.h
10614F:	drivers/platform/x86/intel_scu_*
10615
10616INTEL SDSI DRIVER
10617M:	David E. Box <david.e.box@linux.intel.com>
10618S:	Supported
10619F:	drivers/platform/x86/intel/sdsi.c
10620F:	tools/arch/x86/intel_sdsi/
10621F:	tools/testing/selftests/drivers/sdsi/
10622
10623INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10624M:	Daniel Scally <djrscally@gmail.com>
10625S:	Maintained
10626F:	drivers/platform/x86/intel/int3472/
10627
10628INTEL SPEED SELECT TECHNOLOGY
10629M:	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10630L:	platform-driver-x86@vger.kernel.org
10631S:	Maintained
10632F:	drivers/platform/x86/intel/speed_select_if/
10633F:	include/uapi/linux/isst_if.h
10634F:	tools/power/x86/intel-speed-select/
10635
10636INTEL STRATIX10 FIRMWARE DRIVERS
10637M:	Dinh Nguyen <dinguyen@kernel.org>
10638L:	linux-kernel@vger.kernel.org
10639S:	Maintained
10640F:	Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10641F:	Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10642F:	drivers/firmware/stratix10-rsu.c
10643F:	drivers/firmware/stratix10-svc.c
10644F:	include/linux/firmware/intel/stratix10-smc.h
10645F:	include/linux/firmware/intel/stratix10-svc-client.h
10646T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10647
10648INTEL TELEMETRY DRIVER
10649M:	Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10650M:	"David E. Box" <david.e.box@linux.intel.com>
10651L:	platform-driver-x86@vger.kernel.org
10652S:	Maintained
10653F:	arch/x86/include/asm/intel_telemetry.h
10654F:	drivers/platform/x86/intel/telemetry/
10655
10656INTEL TPMI DRIVER
10657M:	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10658L:	platform-driver-x86@vger.kernel.org
10659S:	Maintained
10660F:	drivers/platform/x86/intel/tpmi.c
10661F:	include/linux/intel_tpmi.h
10662
10663INTEL UNCORE FREQUENCY CONTROL
10664M:	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10665L:	platform-driver-x86@vger.kernel.org
10666S:	Maintained
10667F:	Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10668F:	drivers/platform/x86/intel/uncore-frequency/
10669
10670INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10671M:	David E. Box <david.e.box@linux.intel.com>
10672S:	Supported
10673F:	drivers/platform/x86/intel/vsec.*
10674
10675INTEL VIRTUAL BUTTON DRIVER
10676M:	AceLan Kao <acelan.kao@canonical.com>
10677L:	platform-driver-x86@vger.kernel.org
10678S:	Maintained
10679F:	drivers/platform/x86/intel/vbtn.c
10680
10681INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10682M:	Stanislaw Gruszka <stf_xl@wp.pl>
10683L:	linux-wireless@vger.kernel.org
10684S:	Supported
10685F:	drivers/net/wireless/intel/iwlegacy/
10686
10687INTEL WIRELESS WIFI LINK (iwlwifi)
10688M:	Gregory Greenman <gregory.greenman@intel.com>
10689L:	linux-wireless@vger.kernel.org
10690S:	Supported
10691W:	https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10692T:	git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10693F:	drivers/net/wireless/intel/iwlwifi/
10694
10695INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10696M:	Jithu Joseph <jithu.joseph@intel.com>
10697R:	Maurice Ma <maurice.ma@intel.com>
10698S:	Maintained
10699W:	https://slimbootloader.github.io/security/firmware-update.html
10700F:	drivers/platform/x86/intel/wmi/sbl-fw-update.c
10701
10702INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10703L:	Dell.Client.Kernel@dell.com
10704S:	Maintained
10705F:	drivers/platform/x86/intel/wmi/thunderbolt.c
10706
10707INTEL WWAN IOSM DRIVER
10708M:	M Chetan Kumar <m.chetan.kumar@intel.com>
10709M:	Intel Corporation <linuxwwan@intel.com>
10710L:	netdev@vger.kernel.org
10711S:	Maintained
10712F:	drivers/net/wwan/iosm/
10713
10714INTEL(R) TRACE HUB
10715M:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
10716S:	Supported
10717F:	Documentation/trace/intel_th.rst
10718F:	drivers/hwtracing/intel_th/
10719F:	include/linux/intel_th.h
10720
10721INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10722M:	Ning Sun <ning.sun@intel.com>
10723L:	tboot-devel@lists.sourceforge.net
10724S:	Supported
10725W:	http://tboot.sourceforge.net
10726T:	hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10727F:	Documentation/arch/x86/intel_txt.rst
10728F:	arch/x86/kernel/tboot.c
10729F:	include/linux/tboot.h
10730
10731INTEL SGX
10732M:	Jarkko Sakkinen <jarkko@kernel.org>
10733R:	Dave Hansen <dave.hansen@linux.intel.com>
10734L:	linux-sgx@vger.kernel.org
10735S:	Supported
10736Q:	https://patchwork.kernel.org/project/intel-sgx/list/
10737T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10738F:	Documentation/arch/x86/sgx.rst
10739F:	arch/x86/entry/vdso/vsgx.S
10740F:	arch/x86/include/asm/sgx.h
10741F:	arch/x86/include/uapi/asm/sgx.h
10742F:	arch/x86/kernel/cpu/sgx/*
10743F:	tools/testing/selftests/sgx/*
10744K:	\bSGX_
10745
10746INTERCONNECT API
10747M:	Georgi Djakov <djakov@kernel.org>
10748L:	linux-pm@vger.kernel.org
10749S:	Maintained
10750T:	git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10751F:	Documentation/devicetree/bindings/interconnect/
10752F:	Documentation/driver-api/interconnect.rst
10753F:	drivers/interconnect/
10754F:	include/dt-bindings/interconnect/
10755F:	include/linux/interconnect-provider.h
10756F:	include/linux/interconnect.h
10757
10758INTERRUPT COUNTER DRIVER
10759M:	Oleksij Rempel <o.rempel@pengutronix.de>
10760R:	Pengutronix Kernel Team <kernel@pengutronix.de>
10761L:	linux-iio@vger.kernel.org
10762F:	Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10763F:	drivers/counter/interrupt-cnt.c
10764
10765INTERSIL ISL7998X VIDEO DECODER DRIVER
10766M:	Michael Tretter <m.tretter@pengutronix.de>
10767R:	Pengutronix Kernel Team <kernel@pengutronix.de>
10768L:	linux-media@vger.kernel.org
10769S:	Maintained
10770F:	Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10771F:	drivers/media/i2c/isl7998x.c
10772
10773INVENSENSE ICM-426xx IMU DRIVER
10774M:	Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10775L:	linux-iio@vger.kernel.org
10776S:	Maintained
10777W:	https://invensense.tdk.com/
10778F:	Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10779F:	drivers/iio/imu/inv_icm42600/
10780
10781INVENSENSE MPU-3050 GYROSCOPE DRIVER
10782M:	Linus Walleij <linus.walleij@linaro.org>
10783L:	linux-iio@vger.kernel.org
10784S:	Maintained
10785F:	Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10786F:	drivers/iio/gyro/mpu3050*
10787
10788IOC3 ETHERNET DRIVER
10789M:	Ralf Baechle <ralf@linux-mips.org>
10790L:	linux-mips@vger.kernel.org
10791S:	Maintained
10792F:	drivers/net/ethernet/sgi/ioc3-eth.c
10793
10794IOMAP FILESYSTEM LIBRARY
10795M:	Christoph Hellwig <hch@infradead.org>
10796M:	Darrick J. Wong <djwong@kernel.org>
10797L:	linux-xfs@vger.kernel.org
10798L:	linux-fsdevel@vger.kernel.org
10799S:	Supported
10800T:	git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10801F:	fs/iomap/
10802F:	include/linux/iomap.h
10803
10804IOMMU DMA-API LAYER
10805M:	Robin Murphy <robin.murphy@arm.com>
10806L:	iommu@lists.linux.dev
10807S:	Maintained
10808T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10809F:	drivers/iommu/dma-iommu.c
10810F:	drivers/iommu/dma-iommu.h
10811F:	drivers/iommu/iova.c
10812F:	include/linux/iova.h
10813
10814IOMMUFD
10815M:	Jason Gunthorpe <jgg@nvidia.com>
10816M:	Kevin Tian <kevin.tian@intel.com>
10817L:	iommu@lists.linux.dev
10818S:	Maintained
10819T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
10820F:	Documentation/userspace-api/iommufd.rst
10821F:	drivers/iommu/iommufd/
10822F:	include/linux/iommufd.h
10823F:	include/uapi/linux/iommufd.h
10824F:	tools/testing/selftests/iommu/
10825
10826IOMMU SUBSYSTEM
10827M:	Joerg Roedel <joro@8bytes.org>
10828M:	Will Deacon <will@kernel.org>
10829R:	Robin Murphy <robin.murphy@arm.com>
10830L:	iommu@lists.linux.dev
10831S:	Maintained
10832T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10833F:	Documentation/devicetree/bindings/iommu/
10834F:	Documentation/userspace-api/iommu.rst
10835F:	drivers/iommu/
10836F:	include/linux/iommu.h
10837F:	include/linux/iova.h
10838F:	include/linux/of_iommu.h
10839F:	include/uapi/linux/iommu.h
10840
10841IOSYS-MAP HELPERS
10842M:	Thomas Zimmermann <tzimmermann@suse.de>
10843L:	dri-devel@lists.freedesktop.org
10844S:	Maintained
10845T:	git git://anongit.freedesktop.org/drm/drm-misc
10846F:	include/linux/iosys-map.h
10847
10848IO_URING
10849M:	Jens Axboe <axboe@kernel.dk>
10850R:	Pavel Begunkov <asml.silence@gmail.com>
10851L:	io-uring@vger.kernel.org
10852S:	Maintained
10853T:	git git://git.kernel.dk/linux-block
10854T:	git git://git.kernel.dk/liburing
10855F:	io_uring/
10856F:	include/linux/io_uring.h
10857F:	include/linux/io_uring_types.h
10858F:	include/trace/events/io_uring.h
10859F:	include/uapi/linux/io_uring.h
10860F:	tools/io_uring/
10861
10862IPMI SUBSYSTEM
10863M:	Corey Minyard <minyard@acm.org>
10864L:	openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10865S:	Supported
10866W:	http://openipmi.sourceforge.net/
10867T:	git https://github.com/cminyard/linux-ipmi.git for-next
10868F:	Documentation/driver-api/ipmi.rst
10869F:	Documentation/devicetree/bindings/ipmi/
10870F:	drivers/char/ipmi/
10871F:	include/linux/ipmi*
10872F:	include/uapi/linux/ipmi*
10873
10874IPS SCSI RAID DRIVER
10875M:	Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10876L:	linux-scsi@vger.kernel.org
10877S:	Maintained
10878W:	http://www.adaptec.com/
10879F:	drivers/scsi/ips*
10880
10881IPVS
10882M:	Simon Horman <horms@verge.net.au>
10883M:	Julian Anastasov <ja@ssi.bg>
10884L:	netdev@vger.kernel.org
10885L:	lvs-devel@vger.kernel.org
10886S:	Maintained
10887T:	git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10888T:	git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10889F:	Documentation/networking/ipvs-sysctl.rst
10890F:	include/net/ip_vs.h
10891F:	include/uapi/linux/ip_vs.h
10892F:	net/netfilter/ipvs/
10893
10894IPWIRELESS DRIVER
10895M:	Jiri Kosina <jikos@kernel.org>
10896M:	David Sterba <dsterba@suse.com>
10897S:	Odd Fixes
10898F:	drivers/tty/ipwireless/
10899
10900IRON DEVICE AUDIO CODEC DRIVERS
10901M:	Kiseok Jo <kiseok.jo@irondevice.com>
10902L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
10903S:	Maintained
10904F:	Documentation/devicetree/bindings/sound/irondevice,*
10905F:	sound/soc/codecs/sma*
10906
10907IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10908M:	Marc Zyngier <maz@kernel.org>
10909S:	Maintained
10910T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10911F:	Documentation/core-api/irq/irq-domain.rst
10912F:	include/linux/irqdomain.h
10913F:	kernel/irq/irqdomain.c
10914F:	kernel/irq/msi.c
10915
10916IRQ SUBSYSTEM
10917M:	Thomas Gleixner <tglx@linutronix.de>
10918L:	linux-kernel@vger.kernel.org
10919S:	Maintained
10920T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10921F:	kernel/irq/
10922F:	include/linux/group_cpus.h
10923F:	lib/group_cpus.c
10924
10925IRQCHIP DRIVERS
10926M:	Thomas Gleixner <tglx@linutronix.de>
10927M:	Marc Zyngier <maz@kernel.org>
10928L:	linux-kernel@vger.kernel.org
10929S:	Maintained
10930T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10931F:	Documentation/devicetree/bindings/interrupt-controller/
10932F:	drivers/irqchip/
10933
10934ISA
10935M:	William Breathitt Gray <william.gray@linaro.org>
10936S:	Maintained
10937F:	Documentation/driver-api/isa.rst
10938F:	drivers/base/isa.c
10939F:	include/linux/isa.h
10940
10941ISA RADIO MODULE
10942M:	Hans Verkuil <hverkuil@xs4all.nl>
10943L:	linux-media@vger.kernel.org
10944S:	Maintained
10945W:	https://linuxtv.org
10946T:	git git://linuxtv.org/media_tree.git
10947F:	drivers/media/radio/radio-isa*
10948
10949ISAPNP
10950M:	Jaroslav Kysela <perex@perex.cz>
10951S:	Maintained
10952F:	Documentation/driver-api/isapnp.rst
10953F:	drivers/pnp/isapnp/
10954F:	include/linux/isapnp.h
10955
10956ISCSI
10957M:	Lee Duncan <lduncan@suse.com>
10958M:	Chris Leech <cleech@redhat.com>
10959M:	Mike Christie <michael.christie@oracle.com>
10960L:	open-iscsi@googlegroups.com
10961L:	linux-scsi@vger.kernel.org
10962S:	Maintained
10963W:	www.open-iscsi.com
10964F:	drivers/scsi/*iscsi*
10965F:	include/scsi/*iscsi*
10966
10967iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10968M:	Peter Jones <pjones@redhat.com>
10969M:	Konrad Rzeszutek Wilk <konrad@kernel.org>
10970S:	Maintained
10971F:	drivers/firmware/iscsi_ibft*
10972
10973ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10974M:	Sagi Grimberg <sagi@grimberg.me>
10975M:	Max Gurtovoy <mgurtovoy@nvidia.com>
10976L:	linux-rdma@vger.kernel.org
10977S:	Supported
10978W:	http://www.openfabrics.org
10979W:	www.open-iscsi.org
10980Q:	http://patchwork.kernel.org/project/linux-rdma/list/
10981F:	drivers/infiniband/ulp/iser/
10982
10983ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10984M:	Sagi Grimberg <sagi@grimberg.me>
10985L:	linux-rdma@vger.kernel.org
10986L:	target-devel@vger.kernel.org
10987S:	Supported
10988W:	http://www.linux-iscsi.org
10989T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10990F:	drivers/infiniband/ulp/isert
10991
10992ISDN/CMTP OVER BLUETOOTH
10993M:	Karsten Keil <isdn@linux-pingi.de>
10994L:	isdn4linux@listserv.isdn4linux.de (subscribers-only)
10995L:	netdev@vger.kernel.org
10996S:	Odd Fixes
10997W:	http://www.isdn4linux.de
10998F:	Documentation/isdn/
10999F:	drivers/isdn/capi/
11000F:	include/linux/isdn/
11001F:	include/uapi/linux/isdn/
11002F:	net/bluetooth/cmtp/
11003
11004ISDN/mISDN SUBSYSTEM
11005M:	Karsten Keil <isdn@linux-pingi.de>
11006L:	isdn4linux@listserv.isdn4linux.de (subscribers-only)
11007L:	netdev@vger.kernel.org
11008S:	Maintained
11009W:	http://www.isdn4linux.de
11010F:	drivers/isdn/Kconfig
11011F:	drivers/isdn/Makefile
11012F:	drivers/isdn/hardware/
11013F:	drivers/isdn/mISDN/
11014
11015ISOFS FILESYSTEM
11016M:	Jan Kara <jack@suse.cz>
11017L:	linux-fsdevel@vger.kernel.org
11018S:	Maintained
11019F:	Documentation/filesystems/isofs.rst
11020F:	fs/isofs/
11021
11022IT87 HARDWARE MONITORING DRIVER
11023M:	Jean Delvare <jdelvare@suse.com>
11024L:	linux-hwmon@vger.kernel.org
11025S:	Maintained
11026F:	Documentation/hwmon/it87.rst
11027F:	drivers/hwmon/it87.c
11028
11029IT913X MEDIA DRIVER
11030M:	Antti Palosaari <crope@iki.fi>
11031L:	linux-media@vger.kernel.org
11032S:	Maintained
11033W:	https://linuxtv.org
11034W:	http://palosaari.fi/linux/
11035Q:	http://patchwork.linuxtv.org/project/linux-media/list/
11036T:	git git://linuxtv.org/anttip/media_tree.git
11037F:	drivers/media/tuners/it913x*
11038
11039ITE IT66121 HDMI BRIDGE DRIVER
11040M:	Phong LE <ple@baylibre.com>
11041M:	Neil Armstrong <neil.armstrong@linaro.org>
11042S:	Maintained
11043T:	git git://anongit.freedesktop.org/drm/drm-misc
11044F:	Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
11045F:	drivers/gpu/drm/bridge/ite-it66121.c
11046
11047IVTV VIDEO4LINUX DRIVER
11048M:	Andy Walls <awalls@md.metrocast.net>
11049L:	linux-media@vger.kernel.org
11050S:	Maintained
11051W:	https://linuxtv.org
11052T:	git git://linuxtv.org/media_tree.git
11053F:	Documentation/admin-guide/media/ivtv*
11054F:	drivers/media/pci/ivtv/
11055F:	include/uapi/linux/ivtv*
11056
11057IX2505V MEDIA DRIVER
11058M:	Malcolm Priestley <tvboxspy@gmail.com>
11059L:	linux-media@vger.kernel.org
11060S:	Maintained
11061W:	https://linuxtv.org
11062Q:	http://patchwork.linuxtv.org/project/linux-media/list/
11063F:	drivers/media/dvb-frontends/ix2505v*
11064
11065JAILHOUSE HYPERVISOR INTERFACE
11066M:	Jan Kiszka <jan.kiszka@siemens.com>
11067L:	jailhouse-dev@googlegroups.com
11068S:	Maintained
11069F:	arch/x86/include/asm/jailhouse_para.h
11070F:	arch/x86/kernel/jailhouse.c
11071
11072JC42.4 TEMPERATURE SENSOR DRIVER
11073M:	Guenter Roeck <linux@roeck-us.net>
11074L:	linux-hwmon@vger.kernel.org
11075S:	Maintained
11076F:	Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
11077F:	Documentation/hwmon/jc42.rst
11078F:	drivers/hwmon/jc42.c
11079
11080JFS FILESYSTEM
11081M:	Dave Kleikamp <shaggy@kernel.org>
11082L:	jfs-discussion@lists.sourceforge.net
11083S:	Odd Fixes
11084W:	http://jfs.sourceforge.net/
11085T:	git https://github.com/kleikamp/linux-shaggy.git
11086F:	Documentation/admin-guide/jfs.rst
11087F:	fs/jfs/
11088
11089JME NETWORK DRIVER
11090M:	Guo-Fu Tseng <cooldavid@cooldavid.org>
11091L:	netdev@vger.kernel.org
11092S:	Maintained
11093F:	drivers/net/ethernet/jme.*
11094
11095JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
11096M:	David Woodhouse <dwmw2@infradead.org>
11097M:	Richard Weinberger <richard@nod.at>
11098L:	linux-mtd@lists.infradead.org
11099S:	Odd Fixes
11100W:	http://www.linux-mtd.infradead.org/doc/jffs2.html
11101T:	git git://git.infradead.org/ubifs-2.6.git
11102F:	fs/jffs2/
11103F:	include/uapi/linux/jffs2.h
11104
11105JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
11106M:	"Theodore Ts'o" <tytso@mit.edu>
11107M:	Jan Kara <jack@suse.com>
11108L:	linux-ext4@vger.kernel.org
11109S:	Maintained
11110F:	fs/jbd2/
11111F:	include/linux/jbd2.h
11112
11113JPU V4L2 MEM2MEM DRIVER FOR RENESAS
11114M:	Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
11115L:	linux-media@vger.kernel.org
11116L:	linux-renesas-soc@vger.kernel.org
11117S:	Maintained
11118F:	drivers/media/platform/renesas/rcar_jpu.c
11119
11120JSM Neo PCI based serial card
11121L:	linux-serial@vger.kernel.org
11122S:	Orphan
11123F:	drivers/tty/serial/jsm/
11124
11125K10TEMP HARDWARE MONITORING DRIVER
11126M:	Clemens Ladisch <clemens@ladisch.de>
11127L:	linux-hwmon@vger.kernel.org
11128S:	Maintained
11129F:	Documentation/hwmon/k10temp.rst
11130F:	drivers/hwmon/k10temp.c
11131
11132K8TEMP HARDWARE MONITORING DRIVER
11133M:	Rudolf Marek <r.marek@assembler.cz>
11134L:	linux-hwmon@vger.kernel.org
11135S:	Maintained
11136F:	Documentation/hwmon/k8temp.rst
11137F:	drivers/hwmon/k8temp.c
11138
11139KASAN
11140M:	Andrey Ryabinin <ryabinin.a.a@gmail.com>
11141R:	Alexander Potapenko <glider@google.com>
11142R:	Andrey Konovalov <andreyknvl@gmail.com>
11143R:	Dmitry Vyukov <dvyukov@google.com>
11144R:	Vincenzo Frascino <vincenzo.frascino@arm.com>
11145L:	kasan-dev@googlegroups.com
11146S:	Maintained
11147F:	Documentation/dev-tools/kasan.rst
11148F:	arch/*/include/asm/*kasan.h
11149F:	arch/*/mm/kasan_init*
11150F:	include/linux/kasan*.h
11151F:	lib/Kconfig.kasan
11152F:	mm/kasan/
11153F:	scripts/Makefile.kasan
11154
11155KCONFIG
11156M:	Masahiro Yamada <masahiroy@kernel.org>
11157L:	linux-kbuild@vger.kernel.org
11158S:	Maintained
11159Q:	https://patchwork.kernel.org/project/linux-kbuild/list/
11160T:	git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kbuild
11161F:	Documentation/kbuild/kconfig*
11162F:	scripts/Kconfig.include
11163F:	scripts/kconfig/
11164
11165KCOV
11166R:	Dmitry Vyukov <dvyukov@google.com>
11167R:	Andrey Konovalov <andreyknvl@gmail.com>
11168L:	kasan-dev@googlegroups.com
11169S:	Maintained
11170F:	Documentation/dev-tools/kcov.rst
11171F:	include/linux/kcov.h
11172F:	include/uapi/linux/kcov.h
11173F:	kernel/kcov.c
11174F:	scripts/Makefile.kcov
11175
11176KCSAN
11177M:	Marco Elver <elver@google.com>
11178R:	Dmitry Vyukov <dvyukov@google.com>
11179L:	kasan-dev@googlegroups.com
11180S:	Maintained
11181F:	Documentation/dev-tools/kcsan.rst
11182F:	include/linux/kcsan*.h
11183F:	kernel/kcsan/
11184F:	lib/Kconfig.kcsan
11185F:	scripts/Makefile.kcsan
11186
11187KDUMP
11188M:	Baoquan He <bhe@redhat.com>
11189R:	Vivek Goyal <vgoyal@redhat.com>
11190R:	Dave Young <dyoung@redhat.com>
11191L:	kexec@lists.infradead.org
11192S:	Maintained
11193W:	http://lse.sourceforge.net/kdump/
11194F:	Documentation/admin-guide/kdump/
11195F:	fs/proc/vmcore.c
11196F:	include/linux/crash_core.h
11197F:	include/linux/crash_dump.h
11198F:	include/uapi/linux/vmcore.h
11199F:	kernel/crash_*.c
11200
11201KEENE FM RADIO TRANSMITTER DRIVER
11202M:	Hans Verkuil <hverkuil@xs4all.nl>
11203L:	linux-media@vger.kernel.org
11204S:	Maintained
11205W:	https://linuxtv.org
11206T:	git git://linuxtv.org/media_tree.git
11207F:	drivers/media/radio/radio-keene*
11208
11209KERNEL AUTOMOUNTER
11210M:	Ian Kent <raven@themaw.net>
11211L:	autofs@vger.kernel.org
11212S:	Maintained
11213F:	fs/autofs/
11214
11215KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11216M:	Masahiro Yamada <masahiroy@kernel.org>
11217R:	Nathan Chancellor <nathan@kernel.org>
11218R:	Nick Desaulniers <ndesaulniers@google.com>
11219R:	Nicolas Schier <nicolas@fjasle.eu>
11220L:	linux-kbuild@vger.kernel.org
11221S:	Maintained
11222Q:	https://patchwork.kernel.org/project/linux-kbuild/list/
11223T:	git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11224F:	Documentation/kbuild/
11225F:	Makefile
11226F:	scripts/*vmlinux*
11227F:	scripts/Kbuild*
11228F:	scripts/Makefile*
11229F:	scripts/basic/
11230F:	scripts/dummy-tools/
11231F:	scripts/mk*
11232F:	scripts/mod/
11233F:	scripts/package/
11234
11235KERNEL HARDENING (not covered by other areas)
11236M:	Kees Cook <keescook@chromium.org>
11237L:	linux-hardening@vger.kernel.org
11238S:	Supported
11239T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11240F:	Documentation/ABI/testing/sysfs-kernel-oops_count
11241F:	Documentation/ABI/testing/sysfs-kernel-warn_count
11242F:	include/linux/overflow.h
11243F:	include/linux/randomize_kstack.h
11244F:	mm/usercopy.c
11245K:	\b(add|choose)_random_kstack_offset\b
11246K:	\b__check_(object_size|heap_object)\b
11247
11248KERNEL JANITORS
11249L:	kernel-janitors@vger.kernel.org
11250S:	Odd Fixes
11251W:	http://kernelnewbies.org/KernelJanitors
11252
11253KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11254M:	Chuck Lever <chuck.lever@oracle.com>
11255M:	Jeff Layton <jlayton@kernel.org>
11256L:	linux-nfs@vger.kernel.org
11257S:	Supported
11258W:	http://nfs.sourceforge.net/
11259T:	git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11260F:	fs/exportfs/
11261F:	fs/lockd/
11262F:	fs/nfs_common/
11263F:	fs/nfsd/
11264F:	include/linux/lockd/
11265F:	include/linux/sunrpc/
11266F:	include/trace/events/rpcgss.h
11267F:	include/trace/events/rpcrdma.h
11268F:	include/trace/events/sunrpc.h
11269F:	include/trace/misc/fs.h
11270F:	include/trace/misc/nfs.h
11271F:	include/trace/misc/sunrpc.h
11272F:	include/uapi/linux/nfsd/
11273F:	include/uapi/linux/sunrpc/
11274F:	net/sunrpc/
11275F:	Documentation/filesystems/nfs/
11276
11277KERNEL REGRESSIONS
11278M:	Thorsten Leemhuis <linux@leemhuis.info>
11279L:	regressions@lists.linux.dev
11280S:	Supported
11281F:	Documentation/admin-guide/reporting-regressions.rst
11282F:	Documentation/process/handling-regressions.rst
11283
11284KERNEL SELFTEST FRAMEWORK
11285M:	Shuah Khan <shuah@kernel.org>
11286M:	Shuah Khan <skhan@linuxfoundation.org>
11287L:	linux-kselftest@vger.kernel.org
11288S:	Maintained
11289Q:	https://patchwork.kernel.org/project/linux-kselftest/list/
11290T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11291F:	Documentation/dev-tools/kselftest*
11292F:	tools/testing/selftests/
11293
11294KERNEL SMB3 SERVER (KSMBD)
11295M:	Namjae Jeon <linkinjeon@kernel.org>
11296M:	Steve French <sfrench@samba.org>
11297R:	Sergey Senozhatsky <senozhatsky@chromium.org>
11298R:	Tom Talpey <tom@talpey.com>
11299L:	linux-cifs@vger.kernel.org
11300S:	Maintained
11301T:	git git://git.samba.org/ksmbd.git
11302F:	Documentation/filesystems/cifs/ksmbd.rst
11303F:	fs/ksmbd/
11304F:	fs/smbfs_common/
11305
11306KERNEL UNIT TESTING FRAMEWORK (KUnit)
11307M:	Brendan Higgins <brendanhiggins@google.com>
11308M:	David Gow <davidgow@google.com>
11309L:	linux-kselftest@vger.kernel.org
11310L:	kunit-dev@googlegroups.com
11311S:	Maintained
11312W:	https://google.github.io/kunit-docs/third_party/kernel/docs/
11313F:	Documentation/dev-tools/kunit/
11314F:	include/kunit/
11315F:	lib/kunit/
11316F:	tools/testing/kunit/
11317
11318KERNEL USERMODE HELPER
11319M:	Luis Chamberlain <mcgrof@kernel.org>
11320L:	linux-kernel@vger.kernel.org
11321S:	Maintained
11322F:	include/linux/umh.h
11323F:	kernel/umh.c
11324
11325KERNEL VIRTUAL MACHINE (KVM)
11326M:	Paolo Bonzini <pbonzini@redhat.com>
11327L:	kvm@vger.kernel.org
11328S:	Supported
11329W:	http://www.linux-kvm.org
11330T:	git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11331F:	Documentation/virt/kvm/
11332F:	include/asm-generic/kvm*
11333F:	include/kvm/iodev.h
11334F:	include/linux/kvm*
11335F:	include/trace/events/kvm.h
11336F:	include/uapi/asm-generic/kvm*
11337F:	include/uapi/linux/kvm*
11338F:	tools/kvm/
11339F:	tools/testing/selftests/kvm/
11340F:	virt/kvm/*
11341
11342KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11343M:	Marc Zyngier <maz@kernel.org>
11344M:	Oliver Upton <oliver.upton@linux.dev>
11345R:	James Morse <james.morse@arm.com>
11346R:	Suzuki K Poulose <suzuki.poulose@arm.com>
11347R:	Zenghui Yu <yuzenghui@huawei.com>
11348L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11349L:	kvmarm@lists.linux.dev
11350S:	Maintained
11351T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11352F:	arch/arm64/include/asm/kvm*
11353F:	arch/arm64/include/uapi/asm/kvm*
11354F:	arch/arm64/kvm/
11355F:	include/kvm/arm_*
11356F:	tools/testing/selftests/kvm/*/aarch64/
11357F:	tools/testing/selftests/kvm/aarch64/
11358
11359KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11360M:	Huacai Chen <chenhuacai@kernel.org>
11361M:	Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11362L:	linux-mips@vger.kernel.org
11363L:	kvm@vger.kernel.org
11364S:	Maintained
11365T:	git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11366F:	arch/mips/include/asm/kvm*
11367F:	arch/mips/include/uapi/asm/kvm*
11368F:	arch/mips/kvm/
11369
11370KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11371L:	linuxppc-dev@lists.ozlabs.org
11372T:	git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11373F:	arch/powerpc/include/asm/kvm*
11374F:	arch/powerpc/include/uapi/asm/kvm*
11375F:	arch/powerpc/kernel/kvm*
11376F:	arch/powerpc/kvm/
11377
11378KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11379M:	Anup Patel <anup@brainfault.org>
11380R:	Atish Patra <atishp@atishpatra.org>
11381L:	kvm@vger.kernel.org
11382L:	kvm-riscv@lists.infradead.org
11383L:	linux-riscv@lists.infradead.org
11384S:	Maintained
11385T:	git https://github.com/kvm-riscv/linux.git
11386F:	arch/riscv/include/asm/kvm*
11387F:	arch/riscv/include/uapi/asm/kvm*
11388F:	arch/riscv/kvm/
11389F:	tools/testing/selftests/kvm/*/riscv/
11390
11391KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11392M:	Christian Borntraeger <borntraeger@linux.ibm.com>
11393M:	Janosch Frank <frankja@linux.ibm.com>
11394M:	Claudio Imbrenda <imbrenda@linux.ibm.com>
11395R:	David Hildenbrand <david@redhat.com>
11396L:	kvm@vger.kernel.org
11397S:	Supported
11398T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11399F:	Documentation/virt/kvm/s390*
11400F:	arch/s390/include/asm/gmap.h
11401F:	arch/s390/include/asm/kvm*
11402F:	arch/s390/include/uapi/asm/kvm*
11403F:	arch/s390/include/uapi/asm/uvdevice.h
11404F:	arch/s390/kernel/uv.c
11405F:	arch/s390/kvm/
11406F:	arch/s390/mm/gmap.c
11407F:	drivers/s390/char/uvdevice.c
11408F:	tools/testing/selftests/drivers/s390x/uvdevice/
11409F:	tools/testing/selftests/kvm/*/s390x/
11410F:	tools/testing/selftests/kvm/s390x/
11411
11412KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11413M:	Sean Christopherson <seanjc@google.com>
11414M:	Paolo Bonzini <pbonzini@redhat.com>
11415L:	kvm@vger.kernel.org
11416S:	Supported
11417T:	git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11418F:	arch/x86/include/asm/kvm*
11419F:	arch/x86/include/asm/svm.h
11420F:	arch/x86/include/asm/vmx*.h
11421F:	arch/x86/include/uapi/asm/kvm*
11422F:	arch/x86/include/uapi/asm/svm.h
11423F:	arch/x86/include/uapi/asm/vmx.h
11424F:	arch/x86/kvm/
11425F:	arch/x86/kvm/*/
11426
11427KVM PARAVIRT (KVM/paravirt)
11428M:	Paolo Bonzini <pbonzini@redhat.com>
11429R:	Wanpeng Li <wanpengli@tencent.com>
11430R:	Vitaly Kuznetsov <vkuznets@redhat.com>
11431L:	kvm@vger.kernel.org
11432S:	Supported
11433T:	git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11434F:	arch/x86/kernel/kvm.c
11435F:	arch/x86/kernel/kvmclock.c
11436F:	arch/x86/include/asm/pvclock-abi.h
11437F:	include/linux/kvm_para.h
11438F:	include/uapi/linux/kvm_para.h
11439F:	include/uapi/asm-generic/kvm_para.h
11440F:	include/asm-generic/kvm_para.h
11441F:	arch/um/include/asm/kvm_para.h
11442F:	arch/x86/include/asm/kvm_para.h
11443F:	arch/x86/include/uapi/asm/kvm_para.h
11444
11445KVM X86 HYPER-V (KVM/hyper-v)
11446M:	Vitaly Kuznetsov <vkuznets@redhat.com>
11447M:	Sean Christopherson <seanjc@google.com>
11448M:	Paolo Bonzini <pbonzini@redhat.com>
11449L:	kvm@vger.kernel.org
11450S:	Supported
11451T:	git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11452F:	arch/x86/kvm/hyperv.*
11453F:	arch/x86/kvm/kvm_onhyperv.*
11454F:	arch/x86/kvm/svm/hyperv.*
11455F:	arch/x86/kvm/svm/svm_onhyperv.*
11456F:	arch/x86/kvm/vmx/hyperv.*
11457
11458KVM X86 Xen (KVM/Xen)
11459M:	David Woodhouse <dwmw2@infradead.org>
11460M:	Paul Durrant <paul@xen.org>
11461M:	Sean Christopherson <seanjc@google.com>
11462M:	Paolo Bonzini <pbonzini@redhat.com>
11463L:	kvm@vger.kernel.org
11464S:	Supported
11465T:	git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11466F:	arch/x86/kvm/xen.*
11467
11468KERNFS
11469M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11470M:	Tejun Heo <tj@kernel.org>
11471S:	Supported
11472T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11473F:	fs/kernfs/
11474F:	include/linux/kernfs.h
11475
11476KEXEC
11477M:	Eric Biederman <ebiederm@xmission.com>
11478L:	kexec@lists.infradead.org
11479S:	Maintained
11480W:	http://kernel.org/pub/linux/utils/kernel/kexec/
11481F:	include/linux/kexec.h
11482F:	include/uapi/linux/kexec.h
11483F:	kernel/kexec*
11484
11485KEYS-ENCRYPTED
11486M:	Mimi Zohar <zohar@linux.ibm.com>
11487L:	linux-integrity@vger.kernel.org
11488L:	keyrings@vger.kernel.org
11489S:	Supported
11490F:	Documentation/security/keys/trusted-encrypted.rst
11491F:	include/keys/encrypted-type.h
11492F:	security/keys/encrypted-keys/
11493
11494KEYS-TRUSTED
11495M:	James Bottomley <jejb@linux.ibm.com>
11496M:	Jarkko Sakkinen <jarkko@kernel.org>
11497M:	Mimi Zohar <zohar@linux.ibm.com>
11498L:	linux-integrity@vger.kernel.org
11499L:	keyrings@vger.kernel.org
11500S:	Supported
11501F:	Documentation/security/keys/trusted-encrypted.rst
11502F:	include/keys/trusted-type.h
11503F:	include/keys/trusted_tpm.h
11504F:	security/keys/trusted-keys/
11505
11506KEYS-TRUSTED-TEE
11507M:	Sumit Garg <sumit.garg@linaro.org>
11508L:	linux-integrity@vger.kernel.org
11509L:	keyrings@vger.kernel.org
11510S:	Supported
11511F:	include/keys/trusted_tee.h
11512F:	security/keys/trusted-keys/trusted_tee.c
11513
11514KEYS-TRUSTED-CAAM
11515M:	Ahmad Fatoum <a.fatoum@pengutronix.de>
11516R:	Pengutronix Kernel Team <kernel@pengutronix.de>
11517L:	linux-integrity@vger.kernel.org
11518L:	keyrings@vger.kernel.org
11519S:	Maintained
11520F:	include/keys/trusted_caam.h
11521F:	security/keys/trusted-keys/trusted_caam.c
11522
11523KEYS/KEYRINGS
11524M:	David Howells <dhowells@redhat.com>
11525M:	Jarkko Sakkinen <jarkko@kernel.org>
11526L:	keyrings@vger.kernel.org
11527S:	Maintained
11528F:	Documentation/security/keys/core.rst
11529F:	include/keys/
11530F:	include/linux/key-type.h
11531F:	include/linux/key.h
11532F:	include/linux/keyctl.h
11533F:	include/uapi/linux/keyctl.h
11534F:	security/keys/
11535
11536KEYS/KEYRINGS_INTEGRITY
11537M:	Jarkko Sakkinen <jarkko@kernel.org>
11538M:	Mimi Zohar <zohar@linux.ibm.com>
11539L:	linux-integrity@vger.kernel.org
11540L:	keyrings@vger.kernel.org
11541S:	Supported
11542F:	security/integrity/platform_certs
11543
11544KFENCE
11545M:	Alexander Potapenko <glider@google.com>
11546M:	Marco Elver <elver@google.com>
11547R:	Dmitry Vyukov <dvyukov@google.com>
11548L:	kasan-dev@googlegroups.com
11549S:	Maintained
11550F:	Documentation/dev-tools/kfence.rst
11551F:	arch/*/include/asm/kfence.h
11552F:	include/linux/kfence.h
11553F:	lib/Kconfig.kfence
11554F:	mm/kfence/
11555
11556KFIFO
11557M:	Stefani Seibold <stefani@seibold.net>
11558S:	Maintained
11559F:	include/linux/kfifo.h
11560F:	lib/kfifo.c
11561F:	samples/kfifo/
11562
11563KGDB / KDB /debug_core
11564M:	Jason Wessel <jason.wessel@windriver.com>
11565M:	Daniel Thompson <daniel.thompson@linaro.org>
11566R:	Douglas Anderson <dianders@chromium.org>
11567L:	kgdb-bugreport@lists.sourceforge.net
11568S:	Maintained
11569W:	http://kgdb.wiki.kernel.org/
11570T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11571F:	Documentation/dev-tools/kgdb.rst
11572F:	drivers/misc/kgdbts.c
11573F:	drivers/tty/serial/kgdboc.c
11574F:	include/linux/kdb.h
11575F:	include/linux/kgdb.h
11576F:	kernel/debug/
11577F:	kernel/module/kdb.c
11578
11579KHADAS MCU MFD DRIVER
11580M:	Neil Armstrong <neil.armstrong@linaro.org>
11581L:	linux-amlogic@lists.infradead.org
11582S:	Maintained
11583F:	Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11584F:	drivers/mfd/khadas-mcu.c
11585F:	include/linux/mfd/khadas-mcu.h
11586F:	drivers/thermal/khadas_mcu_fan.c
11587
11588KIONIX/ROHM KX022A ACCELEROMETER
11589M:	Matti Vaittinen <mazziesaccount@gmail.com>
11590L:	linux-iio@vger.kernel.org
11591S:	Supported
11592F:	drivers/iio/accel/kionix-kx022a*
11593
11594KMEMLEAK
11595M:	Catalin Marinas <catalin.marinas@arm.com>
11596S:	Maintained
11597F:	Documentation/dev-tools/kmemleak.rst
11598F:	include/linux/kmemleak.h
11599F:	mm/kmemleak.c
11600F:	samples/kmemleak/kmemleak-test.c
11601
11602KMSAN
11603M:	Alexander Potapenko <glider@google.com>
11604R:	Marco Elver <elver@google.com>
11605R:	Dmitry Vyukov <dvyukov@google.com>
11606L:	kasan-dev@googlegroups.com
11607S:	Maintained
11608F:	Documentation/dev-tools/kmsan.rst
11609F:	arch/*/include/asm/kmsan.h
11610F:	arch/*/mm/kmsan_*
11611F:	include/linux/kmsan*.h
11612F:	lib/Kconfig.kmsan
11613F:	mm/kmsan/
11614F:	scripts/Makefile.kmsan
11615
11616KPROBES
11617M:	Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11618M:	Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11619M:	"David S. Miller" <davem@davemloft.net>
11620M:	Masami Hiramatsu <mhiramat@kernel.org>
11621L:	linux-kernel@vger.kernel.org
11622L:	linux-trace-kernel@vger.kernel.org
11623Q:	https://patchwork.kernel.org/project/linux-trace-kernel/list/
11624S:	Maintained
11625T:	git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
11626F:	Documentation/trace/kprobes.rst
11627F:	include/asm-generic/kprobes.h
11628F:	include/linux/kprobes.h
11629F:	kernel/kprobes.c
11630F:	lib/test_kprobes.c
11631F:	samples/kprobes
11632
11633KS0108 LCD CONTROLLER DRIVER
11634M:	Miguel Ojeda <ojeda@kernel.org>
11635S:	Maintained
11636F:	Documentation/admin-guide/auxdisplay/ks0108.rst
11637F:	drivers/auxdisplay/ks0108.c
11638F:	include/linux/ks0108.h
11639
11640KTD253 BACKLIGHT DRIVER
11641M:	Linus Walleij <linus.walleij@linaro.org>
11642S:	Maintained
11643F:	Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11644F:	drivers/video/backlight/ktd253-backlight.c
11645
11646KTEST
11647M:	Steven Rostedt <rostedt@goodmis.org>
11648M:	John Hawley <warthog9@eaglescrag.net>
11649S:	Maintained
11650F:	tools/testing/ktest
11651
11652KTZ8866 BACKLIGHT DRIVER
11653M:	Jianhua Lu <lujianhua000@gmail.com>
11654S:	Maintained
11655F:	Documentation/devicetree/bindings/leds/backlight/kinetic,ktz8866.yaml
11656F:	drivers/video/backlight/ktz8866.c
11657
11658L3MDEV
11659M:	David Ahern <dsahern@kernel.org>
11660L:	netdev@vger.kernel.org
11661S:	Maintained
11662F:	include/net/l3mdev.h
11663F:	net/l3mdev
11664
11665LANDLOCK SECURITY MODULE
11666M:	Mickaël Salaün <mic@digikod.net>
11667L:	linux-security-module@vger.kernel.org
11668S:	Supported
11669W:	https://landlock.io
11670T:	git https://git.kernel.org/pub/scm/linux/kernel/git/mic/linux.git
11671F:	Documentation/security/landlock.rst
11672F:	Documentation/userspace-api/landlock.rst
11673F:	include/uapi/linux/landlock.h
11674F:	samples/landlock/
11675F:	security/landlock/
11676F:	tools/testing/selftests/landlock/
11677K:	landlock
11678K:	LANDLOCK
11679
11680LANTIQ / INTEL Ethernet drivers
11681M:	Hauke Mehrtens <hauke@hauke-m.de>
11682L:	netdev@vger.kernel.org
11683S:	Maintained
11684F:	drivers/net/dsa/lantiq_gswip.c
11685F:	drivers/net/dsa/lantiq_pce.h
11686F:	drivers/net/ethernet/lantiq_xrx200.c
11687F:	net/dsa/tag_gswip.c
11688
11689LANTIQ MIPS ARCHITECTURE
11690M:	John Crispin <john@phrozen.org>
11691L:	linux-mips@vger.kernel.org
11692S:	Maintained
11693F:	arch/mips/lantiq
11694F:	drivers/soc/lantiq
11695
11696LASI 53c700 driver for PARISC
11697M:	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11698L:	linux-scsi@vger.kernel.org
11699S:	Maintained
11700F:	Documentation/scsi/53c700.rst
11701F:	drivers/scsi/53c700*
11702
11703LEAKING_ADDRESSES
11704M:	Tobin C. Harding <me@tobin.cc>
11705M:	Tycho Andersen <tycho@tycho.pizza>
11706L:	linux-hardening@vger.kernel.org
11707S:	Maintained
11708T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11709F:	scripts/leaking_addresses.pl
11710
11711LED SUBSYSTEM
11712M:	Pavel Machek <pavel@ucw.cz>
11713M:	Lee Jones <lee@kernel.org>
11714L:	linux-leds@vger.kernel.org
11715S:	Maintained
11716T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11717F:	Documentation/devicetree/bindings/leds/
11718F:	Documentation/leds/
11719F:	drivers/leds/
11720F:	include/dt-bindings/leds/
11721F:	include/linux/leds.h
11722
11723LEGACY EEPROM DRIVER
11724M:	Jean Delvare <jdelvare@suse.com>
11725S:	Maintained
11726F:	Documentation/misc-devices/eeprom.rst
11727F:	drivers/misc/eeprom/eeprom.c
11728
11729LEGO MINDSTORMS EV3
11730R:	David Lechner <david@lechnology.com>
11731S:	Maintained
11732F:	Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11733F:	arch/arm/boot/dts/da850-lego-ev3.dts
11734F:	drivers/power/supply/lego_ev3_battery.c
11735
11736LEGO USB Tower driver
11737M:	Juergen Stuber <starblue@users.sourceforge.net>
11738L:	legousb-devel@lists.sourceforge.net
11739S:	Maintained
11740W:	http://legousb.sourceforge.net/
11741F:	drivers/usb/misc/legousbtower.c
11742
11743LETSKETCH HID TABLET DRIVER
11744M:	Hans de Goede <hdegoede@redhat.com>
11745L:	linux-input@vger.kernel.org
11746S:	Maintained
11747T:	git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11748F:	drivers/hid/hid-letsketch.c
11749
11750LG LAPTOP EXTRAS
11751M:	Matan Ziv-Av <matan@svgalib.org>
11752L:	platform-driver-x86@vger.kernel.org
11753S:	Maintained
11754F:	Documentation/ABI/testing/sysfs-platform-lg-laptop
11755F:	Documentation/admin-guide/laptops/lg-laptop.rst
11756F:	drivers/platform/x86/lg-laptop.c
11757
11758LG2160 MEDIA DRIVER
11759M:	Michael Krufky <mkrufky@linuxtv.org>
11760L:	linux-media@vger.kernel.org
11761S:	Maintained
11762W:	https://linuxtv.org
11763W:	http://github.com/mkrufky
11764Q:	http://patchwork.linuxtv.org/project/linux-media/list/
11765T:	git git://linuxtv.org/mkrufky/tuners.git
11766F:	drivers/media/dvb-frontends/lg2160.*
11767
11768LGDT3305 MEDIA DRIVER
11769M:	Michael Krufky <mkrufky@linuxtv.org>
11770L:	linux-media@vger.kernel.org
11771S:	Maintained
11772W:	https://linuxtv.org
11773W:	http://github.com/mkrufky
11774Q:	http://patchwork.linuxtv.org/project/linux-media/list/
11775T:	git git://linuxtv.org/mkrufky/tuners.git
11776F:	drivers/media/dvb-frontends/lgdt3305.*
11777
11778LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11779M:	Viresh Kumar <vireshk@kernel.org>
11780L:	linux-ide@vger.kernel.org
11781S:	Maintained
11782T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11783F:	drivers/ata/pata_arasan_cf.c
11784F:	include/linux/pata_arasan_cf_data.h
11785
11786LIBATA PATA DRIVERS
11787R:	Sergey Shtylyov <s.shtylyov@omp.ru>
11788L:	linux-ide@vger.kernel.org
11789F:	drivers/ata/ata_*.c
11790F:	drivers/ata/pata_*.c
11791
11792LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11793M:	Linus Walleij <linus.walleij@linaro.org>
11794L:	linux-ide@vger.kernel.org
11795S:	Maintained
11796T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11797F:	drivers/ata/pata_ftide010.c
11798F:	drivers/ata/sata_gemini.c
11799F:	drivers/ata/sata_gemini.h
11800
11801LIBATA SATA AHCI PLATFORM devices support
11802M:	Hans de Goede <hdegoede@redhat.com>
11803M:	Jens Axboe <axboe@kernel.dk>
11804L:	linux-ide@vger.kernel.org
11805S:	Maintained
11806T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11807F:	drivers/ata/ahci_platform.c
11808F:	drivers/ata/libahci_platform.c
11809F:	include/linux/ahci_platform.h
11810
11811LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
11812M:	Serge Semin <fancer.lancer@gmail.com>
11813L:	linux-ide@vger.kernel.org
11814S:	Maintained
11815T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11816F:	Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
11817F:	Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
11818F:	drivers/ata/ahci_dwc.c
11819
11820LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11821M:	Mikael Pettersson <mikpelinux@gmail.com>
11822L:	linux-ide@vger.kernel.org
11823S:	Maintained
11824T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11825F:	drivers/ata/sata_promise.*
11826
11827LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11828M:	Damien Le Moal <dlemoal@kernel.org>
11829L:	linux-ide@vger.kernel.org
11830S:	Maintained
11831T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11832F:	Documentation/ABI/testing/sysfs-ata
11833F:	Documentation/devicetree/bindings/ata/
11834F:	drivers/ata/
11835F:	include/linux/ata.h
11836F:	include/linux/libata.h
11837
11838LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11839M:	Vishal Verma <vishal.l.verma@intel.com>
11840M:	Dan Williams <dan.j.williams@intel.com>
11841M:	Dave Jiang <dave.jiang@intel.com>
11842L:	nvdimm@lists.linux.dev
11843S:	Supported
11844Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
11845P:	Documentation/nvdimm/maintainer-entry-profile.rst
11846F:	drivers/nvdimm/btt*
11847
11848LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11849M:	Dan Williams <dan.j.williams@intel.com>
11850M:	Vishal Verma <vishal.l.verma@intel.com>
11851M:	Dave Jiang <dave.jiang@intel.com>
11852L:	nvdimm@lists.linux.dev
11853S:	Supported
11854Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
11855P:	Documentation/nvdimm/maintainer-entry-profile.rst
11856F:	drivers/nvdimm/pmem*
11857
11858LIBNVDIMM: DEVICETREE BINDINGS
11859M:	Oliver O'Halloran <oohall@gmail.com>
11860L:	nvdimm@lists.linux.dev
11861S:	Supported
11862Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
11863F:	Documentation/devicetree/bindings/pmem/pmem-region.txt
11864F:	drivers/nvdimm/of_pmem.c
11865
11866LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11867M:	Dan Williams <dan.j.williams@intel.com>
11868M:	Vishal Verma <vishal.l.verma@intel.com>
11869M:	Dave Jiang <dave.jiang@intel.com>
11870M:	Ira Weiny <ira.weiny@intel.com>
11871L:	nvdimm@lists.linux.dev
11872S:	Supported
11873Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
11874P:	Documentation/nvdimm/maintainer-entry-profile.rst
11875T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11876F:	drivers/acpi/nfit/*
11877F:	drivers/nvdimm/*
11878F:	include/linux/libnvdimm.h
11879F:	include/linux/nd.h
11880F:	include/uapi/linux/ndctl.h
11881F:	tools/testing/nvdimm/
11882
11883LICENSES and SPDX stuff
11884M:	Thomas Gleixner <tglx@linutronix.de>
11885M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11886L:	linux-spdx@vger.kernel.org
11887S:	Maintained
11888T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11889F:	COPYING
11890F:	Documentation/process/license-rules.rst
11891F:	LICENSES/
11892F:	scripts/spdxcheck-test.sh
11893F:	scripts/spdxcheck.py
11894F:	scripts/spdxexclude
11895
11896LINEAR RANGES HELPERS
11897M:	Mark Brown <broonie@kernel.org>
11898R:	Matti Vaittinen <mazziesaccount@gmail.com>
11899F:	lib/linear_ranges.c
11900F:	lib/test_linear_ranges.c
11901F:	include/linux/linear_range.h
11902
11903LINUX FOR POWER MACINTOSH
11904M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
11905L:	linuxppc-dev@lists.ozlabs.org
11906S:	Odd Fixes
11907F:	arch/powerpc/platforms/powermac/
11908F:	drivers/macintosh/
11909
11910LINUX FOR POWERPC (32-BIT AND 64-BIT)
11911M:	Michael Ellerman <mpe@ellerman.id.au>
11912R:	Nicholas Piggin <npiggin@gmail.com>
11913R:	Christophe Leroy <christophe.leroy@csgroup.eu>
11914L:	linuxppc-dev@lists.ozlabs.org
11915S:	Supported
11916W:	https://github.com/linuxppc/wiki/wiki
11917Q:	http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11918T:	git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11919F:	Documentation/ABI/stable/sysfs-firmware-opal-*
11920F:	Documentation/devicetree/bindings/i2c/i2c-opal.txt
11921F:	Documentation/devicetree/bindings/powerpc/
11922F:	Documentation/devicetree/bindings/rtc/rtc-opal.txt
11923F:	Documentation/powerpc/
11924F:	arch/powerpc/
11925F:	drivers/*/*/*pasemi*
11926F:	drivers/*/*pasemi*
11927F:	drivers/char/tpm/tpm_ibmvtpm*
11928F:	drivers/crypto/nx/
11929F:	drivers/crypto/vmx/
11930F:	drivers/i2c/busses/i2c-opal.c
11931F:	drivers/net/ethernet/ibm/ibmveth.*
11932F:	drivers/net/ethernet/ibm/ibmvnic.*
11933F:	drivers/pci/hotplug/pnv_php.c
11934F:	drivers/pci/hotplug/rpa*
11935F:	drivers/rtc/rtc-opal.c
11936F:	drivers/scsi/ibmvscsi/
11937F:	drivers/tty/hvc/hvc_opal.c
11938F:	drivers/watchdog/wdrtas.c
11939F:	tools/testing/selftests/powerpc
11940N:	/pmac
11941N:	powermac
11942N:	powernv
11943N:	[^a-z0-9]ps3
11944N:	pseries
11945
11946LINUX FOR POWERPC EMBEDDED MPC5XXX
11947M:	Anatolij Gustschin <agust@denx.de>
11948L:	linuxppc-dev@lists.ozlabs.org
11949S:	Odd Fixes
11950F:	arch/powerpc/platforms/512x/
11951F:	arch/powerpc/platforms/52xx/
11952
11953LINUX FOR POWERPC EMBEDDED PPC4XX
11954L:	linuxppc-dev@lists.ozlabs.org
11955S:	Orphan
11956F:	arch/powerpc/platforms/40x/
11957F:	arch/powerpc/platforms/44x/
11958
11959LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11960M:	Scott Wood <oss@buserror.net>
11961L:	linuxppc-dev@lists.ozlabs.org
11962S:	Odd fixes
11963T:	git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11964F:	Documentation/devicetree/bindings/cache/freescale-l2cache.txt
11965F:	Documentation/devicetree/bindings/powerpc/fsl/
11966F:	arch/powerpc/platforms/83xx/
11967F:	arch/powerpc/platforms/85xx/
11968
11969LINUX FOR POWERPC EMBEDDED PPC8XX
11970M:	Christophe Leroy <christophe.leroy@csgroup.eu>
11971L:	linuxppc-dev@lists.ozlabs.org
11972S:	Maintained
11973F:	arch/powerpc/platforms/8xx/
11974
11975LINUX KERNEL DUMP TEST MODULE (LKDTM)
11976M:	Kees Cook <keescook@chromium.org>
11977S:	Maintained
11978F:	drivers/misc/lkdtm/*
11979F:	tools/testing/selftests/lkdtm/*
11980
11981LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11982M:	Alan Stern <stern@rowland.harvard.edu>
11983M:	Andrea Parri <parri.andrea@gmail.com>
11984M:	Will Deacon <will@kernel.org>
11985M:	Peter Zijlstra <peterz@infradead.org>
11986M:	Boqun Feng <boqun.feng@gmail.com>
11987M:	Nicholas Piggin <npiggin@gmail.com>
11988M:	David Howells <dhowells@redhat.com>
11989M:	Jade Alglave <j.alglave@ucl.ac.uk>
11990M:	Luc Maranget <luc.maranget@inria.fr>
11991M:	"Paul E. McKenney" <paulmck@kernel.org>
11992R:	Akira Yokosawa <akiyks@gmail.com>
11993R:	Daniel Lustig <dlustig@nvidia.com>
11994R:	Joel Fernandes <joel@joelfernandes.org>
11995L:	linux-kernel@vger.kernel.org
11996L:	linux-arch@vger.kernel.org
11997S:	Supported
11998T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11999F:	Documentation/atomic_bitops.txt
12000F:	Documentation/atomic_t.txt
12001F:	Documentation/core-api/refcount-vs-atomic.rst
12002F:	Documentation/litmus-tests/
12003F:	Documentation/memory-barriers.txt
12004F:	tools/memory-model/
12005
12006LIS3LV02D ACCELEROMETER DRIVER
12007M:	Eric Piel <eric.piel@tremplin-utc.net>
12008S:	Maintained
12009F:	Documentation/misc-devices/lis3lv02d.rst
12010F:	drivers/misc/lis3lv02d/
12011F:	drivers/platform/x86/hp/hp_accel.c
12012
12013LIST KUNIT TEST
12014M:	David Gow <davidgow@google.com>
12015L:	linux-kselftest@vger.kernel.org
12016L:	kunit-dev@googlegroups.com
12017S:	Maintained
12018F:	lib/list-test.c
12019
12020LITEX PLATFORM
12021M:	Karol Gugala <kgugala@antmicro.com>
12022M:	Mateusz Holenko <mholenko@antmicro.com>
12023M:	Gabriel Somlo <gsomlo@gmail.com>
12024M:	Joel Stanley <joel@jms.id.au>
12025S:	Maintained
12026F:	Documentation/devicetree/bindings/*/litex,*.yaml
12027F:	arch/openrisc/boot/dts/or1klitex.dts
12028F:	include/linux/litex.h
12029F:	drivers/tty/serial/liteuart.c
12030F:	drivers/soc/litex/*
12031F:	drivers/net/ethernet/litex/*
12032F:	drivers/mmc/host/litex_mmc.c
12033N:	litex
12034
12035LIVE PATCHING
12036M:	Josh Poimboeuf <jpoimboe@kernel.org>
12037M:	Jiri Kosina <jikos@kernel.org>
12038M:	Miroslav Benes <mbenes@suse.cz>
12039M:	Petr Mladek <pmladek@suse.com>
12040R:	Joe Lawrence <joe.lawrence@redhat.com>
12041L:	live-patching@vger.kernel.org
12042S:	Maintained
12043T:	git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
12044F:	Documentation/ABI/testing/sysfs-kernel-livepatch
12045F:	Documentation/livepatch/
12046F:	arch/powerpc/include/asm/livepatch.h
12047F:	include/linux/livepatch.h
12048F:	kernel/livepatch/
12049F:	kernel/module/livepatch.c
12050F:	lib/livepatch/
12051F:	samples/livepatch/
12052F:	tools/testing/selftests/livepatch/
12053
12054LLC (802.2)
12055L:	netdev@vger.kernel.org
12056S:	Odd fixes
12057F:	include/linux/llc.h
12058F:	include/net/llc*
12059F:	include/uapi/linux/llc.h
12060F:	net/llc/
12061
12062LM73 HARDWARE MONITOR DRIVER
12063M:	Guillaume Ligneul <guillaume.ligneul@gmail.com>
12064L:	linux-hwmon@vger.kernel.org
12065S:	Maintained
12066F:	drivers/hwmon/lm73.c
12067
12068LM78 HARDWARE MONITOR DRIVER
12069M:	Jean Delvare <jdelvare@suse.com>
12070L:	linux-hwmon@vger.kernel.org
12071S:	Maintained
12072F:	Documentation/hwmon/lm78.rst
12073F:	drivers/hwmon/lm78.c
12074
12075LM83 HARDWARE MONITOR DRIVER
12076M:	Jean Delvare <jdelvare@suse.com>
12077L:	linux-hwmon@vger.kernel.org
12078S:	Maintained
12079F:	Documentation/hwmon/lm83.rst
12080F:	drivers/hwmon/lm83.c
12081
12082LM90 HARDWARE MONITOR DRIVER
12083M:	Jean Delvare <jdelvare@suse.com>
12084L:	linux-hwmon@vger.kernel.org
12085S:	Maintained
12086F:	Documentation/devicetree/bindings/hwmon/national,lm90.yaml
12087F:	Documentation/hwmon/lm90.rst
12088F:	drivers/hwmon/lm90.c
12089F:	include/dt-bindings/thermal/lm90.h
12090
12091LM95234 HARDWARE MONITOR DRIVER
12092M:	Guenter Roeck <linux@roeck-us.net>
12093L:	linux-hwmon@vger.kernel.org
12094S:	Maintained
12095F:	Documentation/hwmon/lm95234.rst
12096F:	drivers/hwmon/lm95234.c
12097
12098LME2510 MEDIA DRIVER
12099M:	Malcolm Priestley <tvboxspy@gmail.com>
12100L:	linux-media@vger.kernel.org
12101S:	Maintained
12102W:	https://linuxtv.org
12103Q:	http://patchwork.linuxtv.org/project/linux-media/list/
12104F:	drivers/media/usb/dvb-usb-v2/lmedm04*
12105
12106LOADPIN SECURITY MODULE
12107M:	Kees Cook <keescook@chromium.org>
12108S:	Supported
12109T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
12110F:	Documentation/admin-guide/LSM/LoadPin.rst
12111F:	security/loadpin/
12112
12113LOCKING PRIMITIVES
12114M:	Peter Zijlstra <peterz@infradead.org>
12115M:	Ingo Molnar <mingo@redhat.com>
12116M:	Will Deacon <will@kernel.org>
12117R:	Waiman Long <longman@redhat.com>
12118R:	Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
12119L:	linux-kernel@vger.kernel.org
12120S:	Maintained
12121T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
12122F:	Documentation/locking/
12123F:	arch/*/include/asm/spinlock*.h
12124F:	include/linux/lockdep.h
12125F:	include/linux/mutex*.h
12126F:	include/linux/rwlock*.h
12127F:	include/linux/rwsem*.h
12128F:	include/linux/seqlock.h
12129F:	include/linux/spinlock*.h
12130F:	kernel/locking/
12131F:	lib/locking*.[ch]
12132X:	kernel/locking/locktorture.c
12133
12134LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
12135M:	"Richard Russon (FlatCap)" <ldm@flatcap.org>
12136L:	linux-ntfs-dev@lists.sourceforge.net
12137S:	Maintained
12138W:	http://www.linux-ntfs.org/content/view/19/37/
12139F:	Documentation/admin-guide/ldm.rst
12140F:	block/partitions/ldm.*
12141
12142LOGITECH HID GAMING KEYBOARDS
12143M:	Hans de Goede <hdegoede@redhat.com>
12144L:	linux-input@vger.kernel.org
12145S:	Maintained
12146T:	git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12147F:	drivers/hid/hid-lg-g15.c
12148
12149LONTIUM LT8912B MIPI TO HDMI BRIDGE
12150M:	Adrien Grassein <adrien.grassein@gmail.com>
12151S:	Maintained
12152F:	Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
12153F:	drivers/gpu/drm/bridge/lontium-lt8912b.c
12154
12155LOONGARCH
12156M:	Huacai Chen <chenhuacai@kernel.org>
12157R:	WANG Xuerui <kernel@xen0n.name>
12158L:	loongarch@lists.linux.dev
12159S:	Maintained
12160T:	git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
12161F:	arch/loongarch/
12162F:	drivers/*/*loongarch*
12163F:	Documentation/loongarch/
12164F:	Documentation/translations/zh_CN/loongarch/
12165
12166LOONGSON LS2X I2C DRIVER
12167M:	Binbin Zhou <zhoubinbin@loongson.cn>
12168L:	linux-i2c@vger.kernel.org
12169S:	Maintained
12170F:	Documentation/devicetree/bindings/i2c/loongson,ls2x-i2c.yaml
12171F:	drivers/i2c/busses/i2c-ls2x.c
12172
12173LOONGSON-2 SOC SERIES GUTS DRIVER
12174M:	Yinbo Zhu <zhuyinbo@loongson.cn>
12175L:	loongarch@lists.linux.dev
12176S:	Maintained
12177F:	Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
12178F:	drivers/soc/loongson/loongson2_guts.c
12179
12180LOONGSON-2 SOC SERIES PINCTRL DRIVER
12181M:	zhanghongchen <zhanghongchen@loongson.cn>
12182M:	Yinbo Zhu <zhuyinbo@loongson.cn>
12183L:	linux-gpio@vger.kernel.org
12184S:	Maintained
12185F:	Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
12186F:	drivers/pinctrl/pinctrl-loongson2.c
12187
12188LOONGSON GPIO DRIVER
12189M:	Yinbo Zhu <zhuyinbo@loongson.cn>
12190L:	linux-gpio@vger.kernel.org
12191S:	Maintained
12192F:	Documentation/devicetree/bindings/gpio/loongson,ls-gpio.yaml
12193F:	drivers/gpio/gpio-loongson-64bit.c
12194
12195LOONGSON-2 SOC SERIES CLOCK DRIVER
12196M:	Yinbo Zhu <zhuyinbo@loongson.cn>
12197L:	linux-clk@vger.kernel.org
12198S:	Maintained
12199F:	Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml
12200F:	drivers/clk/clk-loongson2.c
12201F:	include/dt-bindings/clock/loongson,ls2k-clk.h
12202
12203LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
12204M:	Sathya Prakash <sathya.prakash@broadcom.com>
12205M:	Sreekanth Reddy <sreekanth.reddy@broadcom.com>
12206M:	Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
12207L:	MPT-FusionLinux.pdl@broadcom.com
12208L:	linux-scsi@vger.kernel.org
12209S:	Supported
12210W:	http://www.avagotech.com/support/
12211F:	drivers/message/fusion/
12212F:	drivers/scsi/mpt3sas/
12213
12214LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
12215M:	Matthew Wilcox <willy@infradead.org>
12216L:	linux-scsi@vger.kernel.org
12217S:	Maintained
12218F:	drivers/scsi/sym53c8xx_2/
12219
12220LTC1660 DAC DRIVER
12221M:	Marcus Folkesson <marcus.folkesson@gmail.com>
12222L:	linux-iio@vger.kernel.org
12223S:	Maintained
12224F:	Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
12225F:	drivers/iio/dac/ltc1660.c
12226
12227LTC2688 IIO DAC DRIVER
12228M:	Nuno Sá <nuno.sa@analog.com>
12229L:	linux-iio@vger.kernel.org
12230S:	Supported
12231W:	https://ez.analog.com/linux-software-drivers
12232F:	Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
12233F:	Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
12234F:	drivers/iio/dac/ltc2688.c
12235
12236LTC2947 HARDWARE MONITOR DRIVER
12237M:	Nuno Sá <nuno.sa@analog.com>
12238L:	linux-hwmon@vger.kernel.org
12239S:	Supported
12240W:	https://ez.analog.com/linux-software-drivers
12241F:	Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
12242F:	drivers/hwmon/ltc2947-core.c
12243F:	drivers/hwmon/ltc2947-i2c.c
12244F:	drivers/hwmon/ltc2947-spi.c
12245F:	drivers/hwmon/ltc2947.h
12246
12247LTC2983 IIO TEMPERATURE DRIVER
12248M:	Nuno Sá <nuno.sa@analog.com>
12249L:	linux-iio@vger.kernel.org
12250S:	Supported
12251W:	https://ez.analog.com/linux-software-drivers
12252F:	Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
12253F:	drivers/iio/temperature/ltc2983.c
12254
12255LTC4261 HARDWARE MONITOR DRIVER
12256M:	Guenter Roeck <linux@roeck-us.net>
12257L:	linux-hwmon@vger.kernel.org
12258S:	Maintained
12259F:	Documentation/hwmon/ltc4261.rst
12260F:	drivers/hwmon/ltc4261.c
12261
12262LTC4306 I2C MULTIPLEXER DRIVER
12263M:	Michael Hennerich <michael.hennerich@analog.com>
12264L:	linux-i2c@vger.kernel.org
12265S:	Supported
12266W:	https://ez.analog.com/linux-software-drivers
12267F:	Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
12268F:	drivers/i2c/muxes/i2c-mux-ltc4306.c
12269
12270LTP (Linux Test Project)
12271M:	Mike Frysinger <vapier@gentoo.org>
12272M:	Cyril Hrubis <chrubis@suse.cz>
12273M:	Wanlong Gao <wanlong.gao@gmail.com>
12274M:	Jan Stancek <jstancek@redhat.com>
12275M:	Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
12276M:	Alexey Kodanev <alexey.kodanev@oracle.com>
12277L:	ltp@lists.linux.it (subscribers-only)
12278S:	Maintained
12279W:	http://linux-test-project.github.io/
12280T:	git https://github.com/linux-test-project/ltp.git
12281
12282LYNX 28G SERDES PHY DRIVER
12283M:	Ioana Ciornei <ioana.ciornei@nxp.com>
12284L:	netdev@vger.kernel.org
12285S:	Supported
12286F:	Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12287F:	drivers/phy/freescale/phy-fsl-lynx-28g.c
12288
12289LYNX PCS MODULE
12290M:	Ioana Ciornei <ioana.ciornei@nxp.com>
12291L:	netdev@vger.kernel.org
12292S:	Supported
12293F:	drivers/net/pcs/pcs-lynx.c
12294F:	include/linux/pcs-lynx.h
12295
12296M68K ARCHITECTURE
12297M:	Geert Uytterhoeven <geert@linux-m68k.org>
12298L:	linux-m68k@lists.linux-m68k.org
12299S:	Maintained
12300W:	http://www.linux-m68k.org/
12301T:	git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12302F:	arch/m68k/
12303F:	drivers/zorro/
12304
12305M68K ON APPLE MACINTOSH
12306M:	Joshua Thompson <funaho@jurai.org>
12307L:	linux-m68k@lists.linux-m68k.org
12308S:	Maintained
12309W:	http://www.mac.linux-m68k.org/
12310F:	arch/m68k/mac/
12311F:	drivers/macintosh/adb-iop.c
12312F:	drivers/macintosh/via-macii.c
12313
12314M68K ON HP9000/300
12315M:	Philip Blundell <philb@gnu.org>
12316S:	Maintained
12317W:	http://www.tazenda.demon.co.uk/phil/linux-hp
12318F:	arch/m68k/hp300/
12319
12320M88DS3103 MEDIA DRIVER
12321M:	Antti Palosaari <crope@iki.fi>
12322L:	linux-media@vger.kernel.org
12323S:	Maintained
12324W:	https://linuxtv.org
12325W:	http://palosaari.fi/linux/
12326Q:	http://patchwork.linuxtv.org/project/linux-media/list/
12327T:	git git://linuxtv.org/anttip/media_tree.git
12328F:	drivers/media/dvb-frontends/m88ds3103*
12329
12330M88RS2000 MEDIA DRIVER
12331M:	Malcolm Priestley <tvboxspy@gmail.com>
12332L:	linux-media@vger.kernel.org
12333S:	Maintained
12334W:	https://linuxtv.org
12335Q:	http://patchwork.linuxtv.org/project/linux-media/list/
12336F:	drivers/media/dvb-frontends/m88rs2000*
12337
12338MA901 MASTERKIT USB FM RADIO DRIVER
12339M:	Alexey Klimov <klimov.linux@gmail.com>
12340L:	linux-media@vger.kernel.org
12341S:	Maintained
12342T:	git git://linuxtv.org/media_tree.git
12343F:	drivers/media/radio/radio-ma901.c
12344
12345MAC80211
12346M:	Johannes Berg <johannes@sipsolutions.net>
12347L:	linux-wireless@vger.kernel.org
12348S:	Maintained
12349W:	https://wireless.wiki.kernel.org/
12350Q:	https://patchwork.kernel.org/project/linux-wireless/list/
12351T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12352T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12353F:	Documentation/networking/mac80211-injection.rst
12354F:	Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12355F:	drivers/net/wireless/virtual/mac80211_hwsim.[ch]
12356F:	include/net/mac80211.h
12357F:	net/mac80211/
12358
12359MAILBOX API
12360M:	Jassi Brar <jassisinghbrar@gmail.com>
12361L:	linux-kernel@vger.kernel.org
12362S:	Maintained
12363F:	drivers/mailbox/
12364F:	include/linux/mailbox_client.h
12365F:	include/linux/mailbox_controller.h
12366F:	include/dt-bindings/mailbox/
12367F:	Documentation/devicetree/bindings/mailbox/
12368
12369MAILBOX ARM MHUv2
12370M:	Viresh Kumar <viresh.kumar@linaro.org>
12371M:	Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12372L:	linux-kernel@vger.kernel.org
12373S:	Maintained
12374F:	drivers/mailbox/arm_mhuv2.c
12375F:	include/linux/mailbox/arm_mhuv2_message.h
12376F:	Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12377
12378MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12379M:	Jeremy Kerr <jk@codeconstruct.com.au>
12380M:	Matt Johnston <matt@codeconstruct.com.au>
12381L:	netdev@vger.kernel.org
12382S:	Maintained
12383F:	Documentation/networking/mctp.rst
12384F:	drivers/net/mctp/
12385F:	include/net/mctp.h
12386F:	include/net/mctpdevice.h
12387F:	include/net/netns/mctp.h
12388F:	net/mctp/
12389
12390MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12391M:	Michael Kerrisk <mtk.manpages@gmail.com>
12392L:	linux-man@vger.kernel.org
12393S:	Maintained
12394W:	http://www.kernel.org/doc/man-pages
12395
12396MAPLE TREE
12397M:	Liam R. Howlett <Liam.Howlett@oracle.com>
12398L:	linux-mm@kvack.org
12399S:	Supported
12400F:	Documentation/core-api/maple_tree.rst
12401F:	include/linux/maple_tree.h
12402F:	include/trace/events/maple_tree.h
12403F:	lib/maple_tree.c
12404F:	lib/test_maple_tree.c
12405F:	tools/testing/radix-tree/linux/maple_tree.h
12406F:	tools/testing/radix-tree/maple.c
12407
12408MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12409M:	Rahul Bedarkar <rahulbedarkar89@gmail.com>
12410L:	linux-mips@vger.kernel.org
12411S:	Maintained
12412F:	arch/mips/boot/dts/img/pistachio*
12413
12414MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12415M:	Andrew Lunn <andrew@lunn.ch>
12416L:	netdev@vger.kernel.org
12417S:	Maintained
12418F:	Documentation/devicetree/bindings/net/dsa/marvell.txt
12419F:	Documentation/networking/devlink/mv88e6xxx.rst
12420F:	drivers/net/dsa/mv88e6xxx/
12421F:	include/linux/dsa/mv88e6xxx.h
12422F:	include/linux/platform_data/mv88e6xxx.h
12423
12424MARVELL ARMADA 3700 PHY DRIVERS
12425M:	Miquel Raynal <miquel.raynal@bootlin.com>
12426S:	Maintained
12427F:	Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12428F:	Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12429F:	drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12430F:	drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12431
12432MARVELL ARMADA 3700 SERIAL DRIVER
12433M:	Pali Rohár <pali@kernel.org>
12434S:	Maintained
12435F:	Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12436F:	Documentation/devicetree/bindings/serial/mvebu-uart.txt
12437F:	drivers/tty/serial/mvebu-uart.c
12438
12439MARVELL ARMADA DRM SUPPORT
12440M:	Russell King <linux@armlinux.org.uk>
12441S:	Maintained
12442T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12443T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12444F:	Documentation/devicetree/bindings/display/armada/
12445F:	drivers/gpu/drm/armada/
12446F:	include/uapi/drm/armada_drm.h
12447
12448MARVELL CRYPTO DRIVER
12449M:	Boris Brezillon <bbrezillon@kernel.org>
12450M:	Arnaud Ebalard <arno@natisbad.org>
12451M:	Srujana Challa <schalla@marvell.com>
12452L:	linux-crypto@vger.kernel.org
12453S:	Maintained
12454F:	drivers/crypto/marvell/
12455F:	include/linux/soc/marvell/octeontx2/
12456
12457MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12458M:	Mirko Lindner <mlindner@marvell.com>
12459M:	Stephen Hemminger <stephen@networkplumber.org>
12460L:	netdev@vger.kernel.org
12461S:	Maintained
12462F:	drivers/net/ethernet/marvell/sk*
12463
12464MARVELL LIBERTAS WIRELESS DRIVER
12465L:	libertas-dev@lists.infradead.org
12466S:	Orphan
12467F:	drivers/net/wireless/marvell/libertas/
12468
12469MARVELL MACCHIATOBIN SUPPORT
12470M:	Russell King <linux@armlinux.org.uk>
12471L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12472S:	Maintained
12473F:	arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12474
12475MARVELL MV643XX ETHERNET DRIVER
12476M:	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12477L:	netdev@vger.kernel.org
12478S:	Maintained
12479F:	drivers/net/ethernet/marvell/mv643xx_eth.*
12480F:	include/linux/mv643xx.h
12481
12482MARVELL MV88X3310 PHY DRIVER
12483M:	Russell King <linux@armlinux.org.uk>
12484M:	Marek Behún <kabel@kernel.org>
12485L:	netdev@vger.kernel.org
12486S:	Maintained
12487F:	drivers/net/phy/marvell10g.c
12488
12489MARVELL MVEBU THERMAL DRIVER
12490M:	Miquel Raynal <miquel.raynal@bootlin.com>
12491S:	Maintained
12492F:	drivers/thermal/armada_thermal.c
12493
12494MARVELL MVNETA ETHERNET DRIVER
12495M:	Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12496L:	netdev@vger.kernel.org
12497S:	Maintained
12498F:	drivers/net/ethernet/marvell/mvneta.*
12499
12500MARVELL MVPP2 ETHERNET DRIVER
12501M:	Marcin Wojtas <mw@semihalf.com>
12502M:	Russell King <linux@armlinux.org.uk>
12503L:	netdev@vger.kernel.org
12504S:	Maintained
12505F:	Documentation/devicetree/bindings/net/marvell,pp2.yaml
12506F:	drivers/net/ethernet/marvell/mvpp2/
12507
12508MARVELL MWIFIEX WIRELESS DRIVER
12509M:	Amitkumar Karwar <amitkarwar@gmail.com>
12510M:	Ganapathi Bhat <ganapathi017@gmail.com>
12511M:	Sharvari Harisangam <sharvari.harisangam@nxp.com>
12512M:	Xinming Hu <huxinming820@gmail.com>
12513L:	linux-wireless@vger.kernel.org
12514S:	Maintained
12515F:	drivers/net/wireless/marvell/mwifiex/
12516
12517MARVELL MWL8K WIRELESS DRIVER
12518M:	Lennert Buytenhek <buytenh@wantstofly.org>
12519L:	linux-wireless@vger.kernel.org
12520S:	Odd Fixes
12521F:	drivers/net/wireless/marvell/mwl8k.c
12522
12523MARVELL NAND CONTROLLER DRIVER
12524M:	Miquel Raynal <miquel.raynal@bootlin.com>
12525L:	linux-mtd@lists.infradead.org
12526S:	Maintained
12527F:	Documentation/devicetree/bindings/mtd/marvell-nand.txt
12528F:	drivers/mtd/nand/raw/marvell_nand.c
12529
12530MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12531M:	Sunil Goutham <sgoutham@marvell.com>
12532M:	Geetha sowjanya <gakula@marvell.com>
12533M:	Subbaraya Sundeep <sbhatta@marvell.com>
12534M:	hariprasad <hkelam@marvell.com>
12535L:	netdev@vger.kernel.org
12536S:	Supported
12537F:	drivers/net/ethernet/marvell/octeontx2/nic/
12538F:	include/linux/soc/marvell/octeontx2/
12539
12540MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12541M:	Sunil Goutham <sgoutham@marvell.com>
12542M:	Linu Cherian <lcherian@marvell.com>
12543M:	Geetha sowjanya <gakula@marvell.com>
12544M:	Jerin Jacob <jerinj@marvell.com>
12545M:	hariprasad <hkelam@marvell.com>
12546M:	Subbaraya Sundeep <sbhatta@marvell.com>
12547L:	netdev@vger.kernel.org
12548S:	Supported
12549F:	Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12550F:	drivers/net/ethernet/marvell/octeontx2/af/
12551
12552MARVELL PRESTERA ETHERNET SWITCH DRIVER
12553M:	Taras Chornyi <taras.chornyi@plvision.eu>
12554S:	Supported
12555W:	https://github.com/Marvell-switching/switchdev-prestera
12556F:	drivers/net/ethernet/marvell/prestera/
12557
12558MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12559M:	Nicolas Pitre <nico@fluxnic.net>
12560S:	Odd Fixes
12561F:	drivers/mmc/host/mvsdio.*
12562
12563MARVELL USB MDIO CONTROLLER DRIVER
12564M:	Tobias Waldekranz <tobias@waldekranz.com>
12565L:	netdev@vger.kernel.org
12566S:	Maintained
12567F:	Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12568F:	drivers/net/mdio/mdio-mvusb.c
12569
12570MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12571M:	Hu Ziji <huziji@marvell.com>
12572L:	linux-mmc@vger.kernel.org
12573S:	Supported
12574F:	Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12575F:	drivers/mmc/host/sdhci-xenon*
12576
12577MARVELL OCTEON ENDPOINT DRIVER
12578M:	Veerasenareddy Burru <vburru@marvell.com>
12579M:	Abhijit Ayarekar <aayarekar@marvell.com>
12580L:	netdev@vger.kernel.org
12581S:	Supported
12582F:	drivers/net/ethernet/marvell/octeon_ep
12583
12584MATROX FRAMEBUFFER DRIVER
12585L:	linux-fbdev@vger.kernel.org
12586S:	Orphan
12587F:	drivers/video/fbdev/matrox/matroxfb_*
12588F:	include/uapi/linux/matroxfb.h
12589
12590MAX15301 DRIVER
12591M:	Daniel Nilsson <daniel.nilsson@flex.com>
12592L:	linux-hwmon@vger.kernel.org
12593S:	Maintained
12594F:	Documentation/hwmon/max15301.rst
12595F:	drivers/hwmon/pmbus/max15301.c
12596
12597MAX16065 HARDWARE MONITOR DRIVER
12598M:	Guenter Roeck <linux@roeck-us.net>
12599L:	linux-hwmon@vger.kernel.org
12600S:	Maintained
12601F:	Documentation/hwmon/max16065.rst
12602F:	drivers/hwmon/max16065.c
12603
12604MAX2175 SDR TUNER DRIVER
12605M:	Ramesh Shanmugasundaram <rashanmu@gmail.com>
12606L:	linux-media@vger.kernel.org
12607S:	Maintained
12608T:	git git://linuxtv.org/media_tree.git
12609F:	Documentation/devicetree/bindings/media/i2c/max2175.txt
12610F:	Documentation/userspace-api/media/drivers/max2175.rst
12611F:	drivers/media/i2c/max2175*
12612F:	include/uapi/linux/max2175.h
12613
12614MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12615L:	linux-hwmon@vger.kernel.org
12616S:	Orphan
12617F:	Documentation/hwmon/max6650.rst
12618F:	drivers/hwmon/max6650.c
12619
12620MAX6697 HARDWARE MONITOR DRIVER
12621M:	Guenter Roeck <linux@roeck-us.net>
12622L:	linux-hwmon@vger.kernel.org
12623S:	Maintained
12624F:	Documentation/devicetree/bindings/hwmon/max6697.txt
12625F:	Documentation/hwmon/max6697.rst
12626F:	drivers/hwmon/max6697.c
12627F:	include/linux/platform_data/max6697.h
12628
12629MAX9286 QUAD GMSL DESERIALIZER DRIVER
12630M:	Jacopo Mondi <jacopo+renesas@jmondi.org>
12631M:	Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12632M:	Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12633M:	Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12634L:	linux-media@vger.kernel.org
12635S:	Maintained
12636F:	Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12637F:	drivers/media/i2c/max9286.c
12638
12639MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12640M:	Niklas Söderlund <niklas.soderlund@ragnatech.se>
12641L:	linux-media@vger.kernel.org
12642S:	Maintained
12643F:	drivers/staging/media/max96712/max96712.c
12644
12645MAX9860 MONO AUDIO VOICE CODEC DRIVER
12646M:	Peter Rosin <peda@axentia.se>
12647L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
12648S:	Maintained
12649F:	Documentation/devicetree/bindings/sound/max9860.txt
12650F:	sound/soc/codecs/max9860.*
12651
12652MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12653M:	Andreas Klinger <ak@it-klinger.de>
12654L:	linux-iio@vger.kernel.org
12655S:	Maintained
12656F:	Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12657F:	drivers/iio/proximity/mb1232.c
12658
12659MAXIM MAX11205 DRIVER
12660M:	Ramona Bolboaca <ramona.bolboaca@analog.com>
12661L:	linux-iio@vger.kernel.org
12662S:	Supported
12663W:	https://ez.analog.com/linux-software-drivers
12664F:	Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12665F:	drivers/iio/adc/max11205.c
12666
12667MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12668R:	Iskren Chernev <iskren.chernev@gmail.com>
12669R:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12670R:	Marek Szyprowski <m.szyprowski@samsung.com>
12671R:	Matheus Castello <matheus@castello.eng.br>
12672L:	linux-pm@vger.kernel.org
12673S:	Maintained
12674F:	Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12675F:	drivers/power/supply/max17040_battery.c
12676
12677MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12678R:	Hans de Goede <hdegoede@redhat.com>
12679R:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12680R:	Marek Szyprowski <m.szyprowski@samsung.com>
12681R:	Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12682R:	Purism Kernel Team <kernel@puri.sm>
12683L:	linux-pm@vger.kernel.org
12684S:	Maintained
12685F:	Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12686F:	drivers/power/supply/max17042_battery.c
12687
12688MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12689M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12690L:	linux-kernel@vger.kernel.org
12691S:	Maintained
12692F:	Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12693F:	drivers/regulator/max20086-regulator.c
12694
12695MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
12696M:	Rajat Khandelwal <rajat.khandelwal@linux.intel.com>
12697L:	linux-iio@vger.kernel.org
12698S:	Maintained
12699F:	drivers/iio/temperature/max30208.c
12700
12701MAXIM MAX77650 PMIC MFD DRIVER
12702M:	Bartosz Golaszewski <brgl@bgdev.pl>
12703L:	linux-kernel@vger.kernel.org
12704S:	Maintained
12705F:	Documentation/devicetree/bindings/*/*max77650.yaml
12706F:	Documentation/devicetree/bindings/*/max77650*.yaml
12707F:	drivers/gpio/gpio-max77650.c
12708F:	drivers/input/misc/max77650-onkey.c
12709F:	drivers/leds/leds-max77650.c
12710F:	drivers/mfd/max77650.c
12711F:	drivers/power/supply/max77650-charger.c
12712F:	drivers/regulator/max77650-regulator.c
12713F:	include/linux/mfd/max77650.h
12714
12715MAXIM MAX77714 PMIC MFD DRIVER
12716M:	Luca Ceresoli <luca@lucaceresoli.net>
12717S:	Maintained
12718F:	Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12719F:	drivers/mfd/max77714.c
12720F:	include/linux/mfd/max77714.h
12721
12722MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12723M:	Javier Martinez Canillas <javier@dowhile0.org>
12724L:	linux-kernel@vger.kernel.org
12725S:	Supported
12726F:	Documentation/devicetree/bindings/*/*max77802.yaml
12727F:	drivers/regulator/max77802-regulator.c
12728F:	include/dt-bindings/*/*max77802.h
12729
12730MAXIM MAX77976 BATTERY CHARGER
12731M:	Luca Ceresoli <luca@lucaceresoli.net>
12732S:	Supported
12733F:	Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12734F:	drivers/power/supply/max77976_charger.c
12735
12736MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12737M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12738L:	linux-pm@vger.kernel.org
12739S:	Supported
12740B:	mailto:linux-samsung-soc@vger.kernel.org
12741F:	Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12742F:	Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12743F:	drivers/power/supply/max14577_charger.c
12744F:	drivers/power/supply/max77693_charger.c
12745
12746MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12747M:	Chanwoo Choi <cw00.choi@samsung.com>
12748M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12749L:	linux-kernel@vger.kernel.org
12750S:	Supported
12751B:	mailto:linux-samsung-soc@vger.kernel.org
12752F:	Documentation/devicetree/bindings/*/maxim,max14577.yaml
12753F:	Documentation/devicetree/bindings/*/maxim,max77686.yaml
12754F:	Documentation/devicetree/bindings/*/maxim,max77693.yaml
12755F:	Documentation/devicetree/bindings/*/maxim,max77843.yaml
12756F:	Documentation/devicetree/bindings/clock/maxim,max77686.txt
12757F:	drivers/*/*max77843.c
12758F:	drivers/*/max14577*.c
12759F:	drivers/*/max77686*.c
12760F:	drivers/*/max77693*.c
12761F:	drivers/clk/clk-max77686.c
12762F:	drivers/extcon/extcon-max14577.c
12763F:	drivers/extcon/extcon-max77693.c
12764F:	drivers/rtc/rtc-max77686.c
12765F:	include/linux/mfd/max14577*.h
12766F:	include/linux/mfd/max77686*.h
12767F:	include/linux/mfd/max77693*.h
12768
12769MAXIRADIO FM RADIO RECEIVER DRIVER
12770M:	Hans Verkuil <hverkuil@xs4all.nl>
12771L:	linux-media@vger.kernel.org
12772S:	Maintained
12773W:	https://linuxtv.org
12774T:	git git://linuxtv.org/media_tree.git
12775F:	drivers/media/radio/radio-maxiradio*
12776
12777MAXLINEAR ETHERNET PHY DRIVER
12778M:	Xu Liang <lxu@maxlinear.com>
12779L:	netdev@vger.kernel.org
12780S:	Supported
12781F:	drivers/net/phy/mxl-gpy.c
12782
12783MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12784R:	Yasushi SHOJI <yashi@spacecubics.com>
12785L:	linux-can@vger.kernel.org
12786S:	Maintained
12787F:	drivers/net/can/usb/mcba_usb.c
12788
12789MCAN MMIO DEVICE DRIVER
12790M:	Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12791L:	linux-can@vger.kernel.org
12792S:	Maintained
12793F:	Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12794F:	drivers/net/can/m_can/m_can.c
12795F:	drivers/net/can/m_can/m_can.h
12796F:	drivers/net/can/m_can/m_can_platform.c
12797
12798MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12799M:	Rishi Gupta <gupt21@gmail.com>
12800L:	linux-i2c@vger.kernel.org
12801L:	linux-input@vger.kernel.org
12802S:	Maintained
12803F:	drivers/hid/hid-mcp2221.c
12804
12805MCP251XFD SPI-CAN NETWORK DRIVER
12806M:	Marc Kleine-Budde <mkl@pengutronix.de>
12807M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12808R:	Thomas Kopp <thomas.kopp@microchip.com>
12809L:	linux-can@vger.kernel.org
12810S:	Maintained
12811F:	Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12812F:	drivers/net/can/spi/mcp251xfd/
12813
12814MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12815M:	Peter Rosin <peda@axentia.se>
12816L:	linux-iio@vger.kernel.org
12817S:	Maintained
12818F:	Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12819F:	drivers/iio/potentiometer/mcp4018.c
12820F:	drivers/iio/potentiometer/mcp4531.c
12821
12822MCR20A IEEE-802.15.4 RADIO DRIVER
12823M:	Stefan Schmidt <stefan@datenfreihafen.org>
12824L:	linux-wpan@vger.kernel.org
12825S:	Odd Fixes
12826W:	https://github.com/xueliu/mcr20a-linux
12827F:	Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12828F:	drivers/net/ieee802154/mcr20a.c
12829F:	drivers/net/ieee802154/mcr20a.h
12830
12831MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12832M:	William Breathitt Gray <william.gray@linaro.org>
12833L:	linux-iio@vger.kernel.org
12834S:	Maintained
12835F:	drivers/iio/dac/cio-dac.c
12836
12837MEDIA CONTROLLER FRAMEWORK
12838M:	Sakari Ailus <sakari.ailus@linux.intel.com>
12839M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12840L:	linux-media@vger.kernel.org
12841S:	Supported
12842W:	https://www.linuxtv.org
12843T:	git git://linuxtv.org/media_tree.git
12844F:	drivers/media/mc/
12845F:	include/media/media-*.h
12846F:	include/uapi/linux/media.h
12847
12848MEDIA DRIVER FOR FREESCALE IMX PXP
12849M:	Philipp Zabel <p.zabel@pengutronix.de>
12850L:	linux-media@vger.kernel.org
12851S:	Maintained
12852T:	git git://linuxtv.org/media_tree.git
12853F:	drivers/media/platform/nxp/imx-pxp.[ch]
12854
12855MEDIA DRIVERS FOR ASCOT2E
12856M:	Sergey Kozlov <serjk@netup.ru>
12857M:	Abylay Ospan <aospan@netup.ru>
12858L:	linux-media@vger.kernel.org
12859S:	Supported
12860W:	https://linuxtv.org
12861W:	http://netup.tv/
12862T:	git git://linuxtv.org/media_tree.git
12863F:	drivers/media/dvb-frontends/ascot2e*
12864
12865MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12866M:	Jasmin Jessich <jasmin@anw.at>
12867L:	linux-media@vger.kernel.org
12868S:	Maintained
12869W:	https://linuxtv.org
12870T:	git git://linuxtv.org/media_tree.git
12871F:	drivers/media/dvb-frontends/cxd2099*
12872
12873MEDIA DRIVERS FOR CXD2841ER
12874M:	Sergey Kozlov <serjk@netup.ru>
12875M:	Abylay Ospan <aospan@netup.ru>
12876L:	linux-media@vger.kernel.org
12877S:	Supported
12878W:	https://linuxtv.org
12879W:	http://netup.tv/
12880T:	git git://linuxtv.org/media_tree.git
12881F:	drivers/media/dvb-frontends/cxd2841er*
12882
12883MEDIA DRIVERS FOR CXD2880
12884M:	Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12885L:	linux-media@vger.kernel.org
12886S:	Supported
12887W:	http://linuxtv.org/
12888T:	git git://linuxtv.org/media_tree.git
12889F:	drivers/media/dvb-frontends/cxd2880/*
12890F:	drivers/media/spi/cxd2880*
12891
12892MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12893L:	linux-media@vger.kernel.org
12894S:	Orphan
12895W:	https://linuxtv.org
12896T:	git git://linuxtv.org/media_tree.git
12897F:	drivers/media/pci/ddbridge/*
12898
12899MEDIA DRIVERS FOR FREESCALE IMX
12900M:	Steve Longerbeam <slongerbeam@gmail.com>
12901M:	Philipp Zabel <p.zabel@pengutronix.de>
12902L:	linux-media@vger.kernel.org
12903S:	Maintained
12904T:	git git://linuxtv.org/media_tree.git
12905F:	Documentation/admin-guide/media/imx.rst
12906F:	Documentation/devicetree/bindings/media/imx.txt
12907F:	drivers/staging/media/imx/
12908F:	include/linux/imx-media.h
12909F:	include/media/imx.h
12910
12911MEDIA DRIVERS FOR FREESCALE IMX7
12912M:	Rui Miguel Silva <rmfrfs@gmail.com>
12913M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12914L:	linux-media@vger.kernel.org
12915S:	Maintained
12916T:	git git://linuxtv.org/media_tree.git
12917F:	Documentation/admin-guide/media/imx7.rst
12918F:	Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12919F:	Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12920F:	drivers/media/platform/nxp/imx-mipi-csis.c
12921F:	drivers/media/platform/nxp/imx7-media-csi.c
12922
12923MEDIA DRIVERS FOR HELENE
12924M:	Abylay Ospan <aospan@netup.ru>
12925L:	linux-media@vger.kernel.org
12926S:	Supported
12927W:	https://linuxtv.org
12928W:	http://netup.tv/
12929T:	git git://linuxtv.org/media_tree.git
12930F:	drivers/media/dvb-frontends/helene*
12931
12932MEDIA DRIVERS FOR HORUS3A
12933M:	Sergey Kozlov <serjk@netup.ru>
12934M:	Abylay Ospan <aospan@netup.ru>
12935L:	linux-media@vger.kernel.org
12936S:	Supported
12937W:	https://linuxtv.org
12938W:	http://netup.tv/
12939T:	git git://linuxtv.org/media_tree.git
12940F:	drivers/media/dvb-frontends/horus3a*
12941
12942MEDIA DRIVERS FOR LNBH25
12943M:	Sergey Kozlov <serjk@netup.ru>
12944M:	Abylay Ospan <aospan@netup.ru>
12945L:	linux-media@vger.kernel.org
12946S:	Supported
12947W:	https://linuxtv.org
12948W:	http://netup.tv/
12949T:	git git://linuxtv.org/media_tree.git
12950F:	drivers/media/dvb-frontends/lnbh25*
12951
12952MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12953L:	linux-media@vger.kernel.org
12954S:	Orphan
12955W:	https://linuxtv.org
12956T:	git git://linuxtv.org/media_tree.git
12957F:	drivers/media/dvb-frontends/mxl5xx*
12958
12959MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12960M:	Sergey Kozlov <serjk@netup.ru>
12961M:	Abylay Ospan <aospan@netup.ru>
12962L:	linux-media@vger.kernel.org
12963S:	Supported
12964W:	https://linuxtv.org
12965W:	http://netup.tv/
12966T:	git git://linuxtv.org/media_tree.git
12967F:	drivers/media/pci/netup_unidvb/*
12968
12969MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12970M:	Dmitry Osipenko <digetx@gmail.com>
12971L:	linux-media@vger.kernel.org
12972L:	linux-tegra@vger.kernel.org
12973S:	Maintained
12974T:	git git://linuxtv.org/media_tree.git
12975F:	Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12976F:	drivers/media/platform/nvidia/tegra-vde/
12977
12978MEDIA DRIVERS FOR RENESAS - CEU
12979M:	Jacopo Mondi <jacopo@jmondi.org>
12980L:	linux-media@vger.kernel.org
12981L:	linux-renesas-soc@vger.kernel.org
12982S:	Supported
12983T:	git git://linuxtv.org/media_tree.git
12984F:	Documentation/devicetree/bindings/media/renesas,ceu.yaml
12985F:	drivers/media/platform/renesas/renesas-ceu.c
12986F:	include/media/drv-intf/renesas-ceu.h
12987
12988MEDIA DRIVERS FOR RENESAS - DRIF
12989M:	Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12990L:	linux-media@vger.kernel.org
12991L:	linux-renesas-soc@vger.kernel.org
12992S:	Supported
12993T:	git git://linuxtv.org/media_tree.git
12994F:	Documentation/devicetree/bindings/media/renesas,drif.yaml
12995F:	drivers/media/platform/renesas/rcar_drif.c
12996
12997MEDIA DRIVERS FOR RENESAS - FCP
12998M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12999L:	linux-media@vger.kernel.org
13000L:	linux-renesas-soc@vger.kernel.org
13001S:	Supported
13002T:	git git://linuxtv.org/media_tree.git
13003F:	Documentation/devicetree/bindings/media/renesas,fcp.yaml
13004F:	drivers/media/platform/renesas/rcar-fcp.c
13005F:	include/media/rcar-fcp.h
13006
13007MEDIA DRIVERS FOR RENESAS - FDP1
13008M:	Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
13009L:	linux-media@vger.kernel.org
13010L:	linux-renesas-soc@vger.kernel.org
13011S:	Supported
13012T:	git git://linuxtv.org/media_tree.git
13013F:	Documentation/devicetree/bindings/media/renesas,fdp1.yaml
13014F:	drivers/media/platform/renesas/rcar_fdp1.c
13015
13016MEDIA DRIVERS FOR RENESAS - VIN
13017M:	Niklas Söderlund <niklas.soderlund@ragnatech.se>
13018L:	linux-media@vger.kernel.org
13019L:	linux-renesas-soc@vger.kernel.org
13020S:	Supported
13021T:	git git://linuxtv.org/media_tree.git
13022F:	Documentation/devicetree/bindings/media/renesas,csi2.yaml
13023F:	Documentation/devicetree/bindings/media/renesas,isp.yaml
13024F:	Documentation/devicetree/bindings/media/renesas,vin.yaml
13025F:	drivers/media/platform/renesas/rcar-isp.c
13026F:	drivers/media/platform/renesas/rcar-vin/
13027
13028MEDIA DRIVERS FOR RENESAS - VSP1
13029M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13030M:	Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
13031L:	linux-media@vger.kernel.org
13032L:	linux-renesas-soc@vger.kernel.org
13033S:	Supported
13034T:	git git://linuxtv.org/media_tree.git
13035F:	Documentation/devicetree/bindings/media/renesas,vsp1.yaml
13036F:	drivers/media/platform/renesas/vsp1/
13037
13038MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
13039L:	linux-media@vger.kernel.org
13040S:	Orphan
13041W:	https://linuxtv.org
13042T:	git git://linuxtv.org/media_tree.git
13043F:	drivers/media/dvb-frontends/stv0910*
13044
13045MEDIA DRIVERS FOR ST STV6111 TUNER ICs
13046L:	linux-media@vger.kernel.org
13047S:	Orphan
13048W:	https://linuxtv.org
13049T:	git git://linuxtv.org/media_tree.git
13050F:	drivers/media/dvb-frontends/stv6111*
13051
13052MEDIA DRIVERS FOR STM32 - DCMI
13053M:	Hugues Fruchet <hugues.fruchet@foss.st.com>
13054L:	linux-media@vger.kernel.org
13055S:	Supported
13056T:	git git://linuxtv.org/media_tree.git
13057F:	Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
13058F:	drivers/media/platform/st/stm32/stm32-dcmi.c
13059
13060MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
13061M:	Mauro Carvalho Chehab <mchehab@kernel.org>
13062L:	linux-media@vger.kernel.org
13063S:	Maintained
13064W:	https://linuxtv.org
13065Q:	http://patchwork.kernel.org/project/linux-media/list/
13066T:	git git://linuxtv.org/media_tree.git
13067F:	Documentation/admin-guide/media/
13068F:	Documentation/devicetree/bindings/media/
13069F:	Documentation/driver-api/media/
13070F:	Documentation/userspace-api/media/
13071F:	drivers/media/
13072F:	drivers/staging/media/
13073F:	include/dt-bindings/media/
13074F:	include/linux/platform_data/media/
13075F:	include/media/
13076F:	include/uapi/linux/dvb/
13077F:	include/uapi/linux/ivtv*
13078F:	include/uapi/linux/media.h
13079F:	include/uapi/linux/uvcvideo.h
13080F:	include/uapi/linux/v4l2-*
13081F:	include/uapi/linux/videodev2.h
13082
13083MEDIATEK BLUETOOTH DRIVER
13084M:	Sean Wang <sean.wang@mediatek.com>
13085L:	linux-bluetooth@vger.kernel.org
13086L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13087S:	Maintained
13088F:	Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
13089F:	drivers/bluetooth/btmtkuart.c
13090
13091MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
13092M:	Sean Wang <sean.wang@mediatek.com>
13093L:	linux-pm@vger.kernel.org
13094S:	Maintained
13095F:	Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
13096F:	drivers/power/reset/mt6323-poweroff.c
13097
13098MEDIATEK CIR DRIVER
13099M:	Sean Wang <sean.wang@mediatek.com>
13100S:	Maintained
13101F:	drivers/media/rc/mtk-cir.c
13102
13103MEDIATEK DMA DRIVER
13104M:	Sean Wang <sean.wang@mediatek.com>
13105L:	dmaengine@vger.kernel.org
13106L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13107L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13108S:	Maintained
13109F:	Documentation/devicetree/bindings/dma/mtk-*
13110F:	drivers/dma/mediatek/
13111
13112MEDIATEK ETHERNET DRIVER
13113M:	Felix Fietkau <nbd@nbd.name>
13114M:	John Crispin <john@phrozen.org>
13115M:	Sean Wang <sean.wang@mediatek.com>
13116M:	Mark Lee <Mark-MC.Lee@mediatek.com>
13117M:	Lorenzo Bianconi <lorenzo@kernel.org>
13118L:	netdev@vger.kernel.org
13119S:	Maintained
13120F:	drivers/net/ethernet/mediatek/
13121
13122MEDIATEK ETHERNET PCS DRIVER
13123M:	Alexander Couzens <lynxis@fe80.eu>
13124M:	Daniel Golle <daniel@makrotopia.org>
13125L:	netdev@vger.kernel.org
13126S:	Maintained
13127F:	drivers/net/pcs/pcs-mtk-lynxi.c
13128F:	include/linux/pcs/pcs-mtk-lynxi.h
13129
13130MEDIATEK I2C CONTROLLER DRIVER
13131M:	Qii Wang <qii.wang@mediatek.com>
13132L:	linux-i2c@vger.kernel.org
13133S:	Maintained
13134F:	Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
13135F:	drivers/i2c/busses/i2c-mt65xx.c
13136
13137MEDIATEK IOMMU DRIVER
13138M:	Yong Wu <yong.wu@mediatek.com>
13139L:	iommu@lists.linux.dev
13140L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13141S:	Supported
13142F:	Documentation/devicetree/bindings/iommu/mediatek*
13143F:	drivers/iommu/mtk_iommu*
13144F:	include/dt-bindings/memory/mt*-port.h
13145
13146MEDIATEK JPEG DRIVER
13147M:	Bin Liu <bin.liu@mediatek.com>
13148S:	Supported
13149F:	Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
13150F:	drivers/media/platform/mediatek/jpeg/
13151
13152MEDIATEK KEYPAD DRIVER
13153M:	Mattijs Korpershoek <mkorpershoek@baylibre.com>
13154S:	Supported
13155F:	Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
13156F:	drivers/input/keyboard/mt6779-keypad.c
13157
13158MEDIATEK MDP DRIVER
13159M:	Minghsiu Tsai <minghsiu.tsai@mediatek.com>
13160M:	Houlong Wei <houlong.wei@mediatek.com>
13161M:	Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13162S:	Supported
13163F:	Documentation/devicetree/bindings/media/mediatek-mdp.txt
13164F:	drivers/media/platform/mediatek/mdp/
13165F:	drivers/media/platform/mediatek/vpu/
13166
13167MEDIATEK MEDIA DRIVER
13168M:	Tiffany Lin <tiffany.lin@mediatek.com>
13169M:	Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13170M:	Yunfei Dong <yunfei.dong@mediatek.com>
13171S:	Supported
13172F:	Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
13173F:	Documentation/devicetree/bindings/media/mediatek-vpu.txt
13174F:	drivers/media/platform/mediatek/vcodec/
13175F:	drivers/media/platform/mediatek/vpu/
13176
13177MEDIATEK MMC/SD/SDIO DRIVER
13178M:	Chaotian Jing <chaotian.jing@mediatek.com>
13179S:	Maintained
13180F:	Documentation/devicetree/bindings/mmc/mtk-sd.yaml
13181F:	drivers/mmc/host/mtk-sd.c
13182
13183MEDIATEK MT76 WIRELESS LAN DRIVER
13184M:	Felix Fietkau <nbd@nbd.name>
13185M:	Lorenzo Bianconi <lorenzo@kernel.org>
13186M:	Ryder Lee <ryder.lee@mediatek.com>
13187R:	Shayne Chen <shayne.chen@mediatek.com>
13188R:	Sean Wang <sean.wang@mediatek.com>
13189L:	linux-wireless@vger.kernel.org
13190S:	Maintained
13191F:	Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
13192F:	drivers/net/wireless/mediatek/mt76/
13193
13194MEDIATEK MT7601U WIRELESS LAN DRIVER
13195M:	Jakub Kicinski <kuba@kernel.org>
13196L:	linux-wireless@vger.kernel.org
13197S:	Maintained
13198F:	drivers/net/wireless/mediatek/mt7601u/
13199
13200MEDIATEK MT7621 CLOCK DRIVER
13201M:	Sergio Paracuellos <sergio.paracuellos@gmail.com>
13202S:	Maintained
13203F:	Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
13204F:	drivers/clk/ralink/clk-mt7621.c
13205
13206MEDIATEK MT7621/28/88 I2C DRIVER
13207M:	Stefan Roese <sr@denx.de>
13208L:	linux-i2c@vger.kernel.org
13209S:	Maintained
13210F:	Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
13211F:	drivers/i2c/busses/i2c-mt7621.c
13212
13213MEDIATEK MT7621 PCIE CONTROLLER DRIVER
13214M:	Sergio Paracuellos <sergio.paracuellos@gmail.com>
13215S:	Maintained
13216F:	Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
13217F:	drivers/pci/controller/pcie-mt7621.c
13218
13219MEDIATEK MT7621 PHY PCI DRIVER
13220M:	Sergio Paracuellos <sergio.paracuellos@gmail.com>
13221S:	Maintained
13222F:	Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
13223F:	drivers/phy/ralink/phy-mt7621-pci.c
13224
13225MEDIATEK NAND CONTROLLER DRIVER
13226L:	linux-mtd@lists.infradead.org
13227S:	Orphan
13228F:	Documentation/devicetree/bindings/mtd/mediatek,mtk-nfc.yaml
13229F:	drivers/mtd/nand/raw/mtk_*
13230
13231MEDIATEK PMIC LED DRIVER
13232M:	Sean Wang <sean.wang@mediatek.com>
13233S:	Maintained
13234F:	Documentation/devicetree/bindings/leds/leds-mt6323.txt
13235F:	drivers/leds/leds-mt6323.c
13236
13237MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
13238M:	Sean Wang <sean.wang@mediatek.com>
13239S:	Maintained
13240F:	drivers/char/hw_random/mtk-rng.c
13241
13242MEDIATEK SMI DRIVER
13243M:	Yong Wu <yong.wu@mediatek.com>
13244L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13245S:	Supported
13246F:	Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
13247F:	drivers/memory/mtk-smi.c
13248F:	include/soc/mediatek/smi.h
13249
13250MEDIATEK SWITCH DRIVER
13251M:	Sean Wang <sean.wang@mediatek.com>
13252M:	Landen Chao <Landen.Chao@mediatek.com>
13253M:	DENG Qingfang <dqfext@gmail.com>
13254M:	Daniel Golle <daniel@makrotopia.org>
13255L:	netdev@vger.kernel.org
13256S:	Maintained
13257F:	drivers/net/dsa/mt7530-mdio.c
13258F:	drivers/net/dsa/mt7530-mmio.c
13259F:	drivers/net/dsa/mt7530.*
13260F:	net/dsa/tag_mtk.c
13261
13262MEDIATEK T7XX 5G WWAN MODEM DRIVER
13263M:	Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
13264M:	Intel Corporation <linuxwwan@intel.com>
13265R:	Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
13266R:	Liu Haijun <haijun.liu@mediatek.com>
13267R:	M Chetan Kumar <m.chetan.kumar@linux.intel.com>
13268R:	Ricardo Martinez <ricardo.martinez@linux.intel.com>
13269L:	netdev@vger.kernel.org
13270S:	Supported
13271F:	drivers/net/wwan/t7xx/
13272
13273MEDIATEK USB3 DRD IP DRIVER
13274M:	Chunfeng Yun <chunfeng.yun@mediatek.com>
13275L:	linux-usb@vger.kernel.org
13276L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13277L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13278S:	Maintained
13279F:	Documentation/devicetree/bindings/usb/mediatek,*
13280F:	drivers/usb/host/xhci-mtk*
13281F:	drivers/usb/mtu3/
13282
13283MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
13284M:	Peter Senna Tschudin <peter.senna@gmail.com>
13285M:	Martin Donnelly <martin.donnelly@ge.com>
13286M:	Martyn Welch <martyn.welch@collabora.co.uk>
13287S:	Maintained
13288F:	Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
13289F:	drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
13290
13291MEGARAID SCSI/SAS DRIVERS
13292M:	Kashyap Desai <kashyap.desai@broadcom.com>
13293M:	Sumit Saxena <sumit.saxena@broadcom.com>
13294M:	Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
13295L:	megaraidlinux.pdl@broadcom.com
13296L:	linux-scsi@vger.kernel.org
13297S:	Maintained
13298W:	http://www.avagotech.com/support/
13299F:	Documentation/scsi/megaraid.rst
13300F:	drivers/scsi/megaraid.*
13301F:	drivers/scsi/megaraid/
13302
13303MELEXIS MLX90614 DRIVER
13304M:	Crt Mori <cmo@melexis.com>
13305L:	linux-iio@vger.kernel.org
13306S:	Supported
13307W:	http://www.melexis.com
13308F:	drivers/iio/temperature/mlx90614.c
13309
13310MELEXIS MLX90632 DRIVER
13311M:	Crt Mori <cmo@melexis.com>
13312L:	linux-iio@vger.kernel.org
13313S:	Supported
13314W:	http://www.melexis.com
13315F:	drivers/iio/temperature/mlx90632.c
13316
13317MELFAS MIP4 TOUCHSCREEN DRIVER
13318M:	Sangwon Jee <jeesw@melfas.com>
13319S:	Supported
13320W:	http://www.melfas.com
13321F:	Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13322F:	drivers/input/touchscreen/melfas_mip4.c
13323
13324MELLANOX BLUEFIELD I2C DRIVER
13325M:	Khalil Blaiech <kblaiech@nvidia.com>
13326M:	Asmaa Mnebhi <asmaa@nvidia.com>
13327L:	linux-i2c@vger.kernel.org
13328S:	Supported
13329F:	drivers/i2c/busses/i2c-mlxbf.c
13330
13331MELLANOX ETHERNET DRIVER (mlx4_en)
13332M:	Tariq Toukan <tariqt@nvidia.com>
13333L:	netdev@vger.kernel.org
13334S:	Supported
13335W:	http://www.mellanox.com
13336Q:	https://patchwork.kernel.org/project/netdevbpf/list/
13337F:	drivers/net/ethernet/mellanox/mlx4/en_*
13338
13339MELLANOX ETHERNET DRIVER (mlx5e)
13340M:	Saeed Mahameed <saeedm@nvidia.com>
13341L:	netdev@vger.kernel.org
13342S:	Supported
13343W:	http://www.mellanox.com
13344Q:	https://patchwork.kernel.org/project/netdevbpf/list/
13345F:	drivers/net/ethernet/mellanox/mlx5/core/en_*
13346
13347MELLANOX ETHERNET INNOVA DRIVERS
13348R:	Boris Pismenny <borisp@nvidia.com>
13349L:	netdev@vger.kernel.org
13350S:	Supported
13351W:	http://www.mellanox.com
13352Q:	https://patchwork.kernel.org/project/netdevbpf/list/
13353F:	drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13354F:	drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13355F:	include/linux/mlx5/mlx5_ifc_fpga.h
13356
13357MELLANOX ETHERNET SWITCH DRIVERS
13358M:	Ido Schimmel <idosch@nvidia.com>
13359M:	Petr Machata <petrm@nvidia.com>
13360L:	netdev@vger.kernel.org
13361S:	Supported
13362W:	http://www.mellanox.com
13363Q:	https://patchwork.kernel.org/project/netdevbpf/list/
13364F:	drivers/net/ethernet/mellanox/mlxsw/
13365F:	tools/testing/selftests/drivers/net/mlxsw/
13366
13367MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13368M:	mlxsw@nvidia.com
13369L:	netdev@vger.kernel.org
13370S:	Supported
13371W:	http://www.mellanox.com
13372Q:	https://patchwork.kernel.org/project/netdevbpf/list/
13373F:	drivers/net/ethernet/mellanox/mlxfw/
13374
13375MELLANOX HARDWARE PLATFORM SUPPORT
13376M:	Hans de Goede <hdegoede@redhat.com>
13377M:	Mark Gross <markgross@kernel.org>
13378M:	Vadim Pasternak <vadimp@nvidia.com>
13379L:	platform-driver-x86@vger.kernel.org
13380S:	Supported
13381F:	Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13382F:	drivers/platform/mellanox/
13383F:	include/linux/platform_data/mlxreg.h
13384
13385MELLANOX MLX4 core VPI driver
13386M:	Tariq Toukan <tariqt@nvidia.com>
13387L:	netdev@vger.kernel.org
13388L:	linux-rdma@vger.kernel.org
13389S:	Supported
13390W:	http://www.mellanox.com
13391Q:	https://patchwork.kernel.org/project/netdevbpf/list/
13392F:	drivers/net/ethernet/mellanox/mlx4/
13393F:	include/linux/mlx4/
13394
13395MELLANOX MLX4 IB driver
13396M:	Yishai Hadas <yishaih@nvidia.com>
13397L:	linux-rdma@vger.kernel.org
13398S:	Supported
13399W:	http://www.mellanox.com
13400Q:	http://patchwork.kernel.org/project/linux-rdma/list/
13401F:	drivers/infiniband/hw/mlx4/
13402F:	include/linux/mlx4/
13403F:	include/uapi/rdma/mlx4-abi.h
13404
13405MELLANOX MLX5 core VPI driver
13406M:	Saeed Mahameed <saeedm@nvidia.com>
13407M:	Leon Romanovsky <leonro@nvidia.com>
13408L:	netdev@vger.kernel.org
13409L:	linux-rdma@vger.kernel.org
13410S:	Supported
13411W:	http://www.mellanox.com
13412Q:	https://patchwork.kernel.org/project/netdevbpf/list/
13413F:	Documentation/networking/device_drivers/ethernet/mellanox/
13414F:	drivers/net/ethernet/mellanox/mlx5/core/
13415F:	include/linux/mlx5/
13416
13417MELLANOX MLX5 IB driver
13418M:	Leon Romanovsky <leonro@nvidia.com>
13419L:	linux-rdma@vger.kernel.org
13420S:	Supported
13421W:	http://www.mellanox.com
13422Q:	http://patchwork.kernel.org/project/linux-rdma/list/
13423F:	drivers/infiniband/hw/mlx5/
13424F:	include/linux/mlx5/
13425F:	include/uapi/rdma/mlx5-abi.h
13426
13427MELLANOX MLXCPLD I2C AND MUX DRIVER
13428M:	Vadim Pasternak <vadimp@nvidia.com>
13429M:	Michael Shych <michaelsh@nvidia.com>
13430L:	linux-i2c@vger.kernel.org
13431S:	Supported
13432F:	Documentation/i2c/busses/i2c-mlxcpld.rst
13433F:	drivers/i2c/busses/i2c-mlxcpld.c
13434F:	drivers/i2c/muxes/i2c-mux-mlxcpld.c
13435
13436MELLANOX MLXCPLD LED DRIVER
13437M:	Vadim Pasternak <vadimp@nvidia.com>
13438L:	linux-leds@vger.kernel.org
13439S:	Supported
13440F:	Documentation/leds/leds-mlxcpld.rst
13441F:	drivers/leds/leds-mlxcpld.c
13442F:	drivers/leds/leds-mlxreg.c
13443
13444MELLANOX PLATFORM DRIVER
13445M:	Vadim Pasternak <vadimp@nvidia.com>
13446L:	platform-driver-x86@vger.kernel.org
13447S:	Supported
13448F:	drivers/platform/x86/mlx-platform.c
13449
13450MEMBARRIER SUPPORT
13451M:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13452M:	"Paul E. McKenney" <paulmck@kernel.org>
13453L:	linux-kernel@vger.kernel.org
13454S:	Supported
13455F:	arch/powerpc/include/asm/membarrier.h
13456F:	include/uapi/linux/membarrier.h
13457F:	kernel/sched/membarrier.c
13458
13459MEMBLOCK AND MEMORY MANAGEMENT INITIALIZATION
13460M:	Mike Rapoport <rppt@kernel.org>
13461L:	linux-mm@kvack.org
13462S:	Maintained
13463F:	Documentation/core-api/boot-time-mm.rst
13464F:	include/linux/memblock.h
13465F:	mm/memblock.c
13466F:	mm/mm_init.c
13467F:	tools/testing/memblock/
13468
13469MEMORY CONTROLLER DRIVERS
13470M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13471L:	linux-kernel@vger.kernel.org
13472S:	Maintained
13473B:	mailto:krzysztof.kozlowski@linaro.org
13474T:	git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13475F:	Documentation/devicetree/bindings/memory-controllers/
13476F:	drivers/memory/
13477F:	include/dt-bindings/memory/
13478F:	include/memory/
13479
13480MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13481M:	Dmitry Osipenko <digetx@gmail.com>
13482L:	linux-pm@vger.kernel.org
13483L:	linux-tegra@vger.kernel.org
13484T:	git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13485S:	Maintained
13486F:	drivers/devfreq/tegra30-devfreq.c
13487
13488MEMORY MANAGEMENT
13489M:	Andrew Morton <akpm@linux-foundation.org>
13490L:	linux-mm@kvack.org
13491S:	Maintained
13492W:	http://www.linux-mm.org
13493T:	git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13494T:	quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13495F:	include/linux/gfp.h
13496F:	include/linux/gfp_types.h
13497F:	include/linux/memory_hotplug.h
13498F:	include/linux/mm.h
13499F:	include/linux/mmzone.h
13500F:	include/linux/pagewalk.h
13501F:	include/trace/events/ksm.h
13502F:	mm/
13503F:	tools/mm/
13504F:	tools/testing/selftests/mm/
13505
13506VMALLOC
13507M:	Andrew Morton <akpm@linux-foundation.org>
13508R:	Uladzislau Rezki <urezki@gmail.com>
13509R:	Christoph Hellwig <hch@infradead.org>
13510R:	Lorenzo Stoakes <lstoakes@gmail.com>
13511L:	linux-mm@kvack.org
13512S:	Maintained
13513W:	http://www.linux-mm.org
13514T:	git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13515F:	include/linux/vmalloc.h
13516F:	mm/vmalloc.c
13517
13518MEMORY HOT(UN)PLUG
13519M:	David Hildenbrand <david@redhat.com>
13520M:	Oscar Salvador <osalvador@suse.de>
13521L:	linux-mm@kvack.org
13522S:	Maintained
13523F:	Documentation/admin-guide/mm/memory-hotplug.rst
13524F:	Documentation/core-api/memory-hotplug.rst
13525F:	drivers/base/memory.c
13526F:	include/linux/memory_hotplug.h
13527F:	mm/memory_hotplug.c
13528F:	tools/testing/selftests/memory-hotplug/
13529
13530MEMORY TECHNOLOGY DEVICES (MTD)
13531M:	Miquel Raynal <miquel.raynal@bootlin.com>
13532M:	Richard Weinberger <richard@nod.at>
13533M:	Vignesh Raghavendra <vigneshr@ti.com>
13534L:	linux-mtd@lists.infradead.org
13535S:	Maintained
13536W:	http://www.linux-mtd.infradead.org/
13537Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
13538C:	irc://irc.oftc.net/mtd
13539T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13540T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13541F:	Documentation/devicetree/bindings/mtd/
13542F:	drivers/mtd/
13543F:	include/linux/mtd/
13544F:	include/uapi/mtd/
13545
13546MEMSENSING MICROSYSTEMS MSA311 DRIVER
13547M:	Dmitry Rokosov <ddrokosov@sberdevices.ru>
13548L:	linux-iio@vger.kernel.org
13549S:	Maintained
13550F:	Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13551F:	drivers/iio/accel/msa311.c
13552
13553MEN A21 WATCHDOG DRIVER
13554M:	Johannes Thumshirn <morbidrsa@gmail.com>
13555L:	linux-watchdog@vger.kernel.org
13556S:	Maintained
13557F:	drivers/watchdog/mena21_wdt.c
13558
13559MEN CHAMELEON BUS (mcb)
13560M:	Johannes Thumshirn <morbidrsa@gmail.com>
13561S:	Maintained
13562F:	Documentation/driver-api/men-chameleon-bus.rst
13563F:	drivers/mcb/
13564F:	include/linux/mcb.h
13565
13566MEN F21BMC (Board Management Controller)
13567M:	Andreas Werner <andreas.werner@men.de>
13568S:	Supported
13569F:	Documentation/hwmon/menf21bmc.rst
13570F:	drivers/hwmon/menf21bmc_hwmon.c
13571F:	drivers/leds/leds-menf21bmc.c
13572F:	drivers/mfd/menf21bmc.c
13573F:	drivers/watchdog/menf21bmc_wdt.c
13574
13575MEN Z069 WATCHDOG DRIVER
13576M:	Johannes Thumshirn <jth@kernel.org>
13577L:	linux-watchdog@vger.kernel.org
13578S:	Maintained
13579F:	drivers/watchdog/menz69_wdt.c
13580
13581MESON AO CEC DRIVER FOR AMLOGIC SOCS
13582M:	Neil Armstrong <neil.armstrong@linaro.org>
13583L:	linux-media@vger.kernel.org
13584L:	linux-amlogic@lists.infradead.org
13585S:	Supported
13586W:	http://linux-meson.com/
13587T:	git git://linuxtv.org/media_tree.git
13588F:	Documentation/devicetree/bindings/media/cec/amlogic,meson-gx-ao-cec.yaml
13589F:	drivers/media/cec/platform/meson/ao-cec-g12a.c
13590F:	drivers/media/cec/platform/meson/ao-cec.c
13591
13592MESON GE2D DRIVER FOR AMLOGIC SOCS
13593M:	Neil Armstrong <neil.armstrong@linaro.org>
13594L:	linux-media@vger.kernel.org
13595L:	linux-amlogic@lists.infradead.org
13596S:	Supported
13597T:	git git://linuxtv.org/media_tree.git
13598F:	Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13599F:	drivers/media/platform/amlogic/meson-ge2d/
13600
13601MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13602M:	Liang Yang <liang.yang@amlogic.com>
13603L:	linux-mtd@lists.infradead.org
13604S:	Maintained
13605F:	Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
13606F:	drivers/mtd/nand/raw/meson_*
13607
13608MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13609M:	Neil Armstrong <neil.armstrong@linaro.org>
13610L:	linux-media@vger.kernel.org
13611L:	linux-amlogic@lists.infradead.org
13612S:	Supported
13613T:	git git://linuxtv.org/media_tree.git
13614F:	Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13615F:	drivers/staging/media/meson/vdec/
13616
13617METHODE UDPU SUPPORT
13618M:	Vladimir Vid <vladimir.vid@sartura.hr>
13619S:	Maintained
13620F:	arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13621
13622MHI BUS
13623M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13624L:	mhi@lists.linux.dev
13625L:	linux-arm-msm@vger.kernel.org
13626S:	Maintained
13627T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13628F:	Documentation/ABI/stable/sysfs-bus-mhi
13629F:	Documentation/mhi/
13630F:	drivers/bus/mhi/
13631F:	include/linux/mhi.h
13632
13633MICROBLAZE ARCHITECTURE
13634M:	Michal Simek <monstr@monstr.eu>
13635S:	Supported
13636W:	http://www.monstr.eu/fdt/
13637T:	git git://git.monstr.eu/linux-2.6-microblaze.git
13638F:	arch/microblaze/
13639
13640MICROBLAZE TMR MANAGER
13641M:	Appana Durga Kedareswara rao <appana.durga.kedareswara.rao@amd.com>
13642S:	Supported
13643F:	Documentation/ABI/testing/sysfs-driver-xilinx-tmr-manager
13644F:	Documentation/devicetree/bindings/misc/xlnx,tmr-manager.yaml
13645F:	drivers/misc/xilinx_tmr_manager.c
13646
13647MICROBLAZE TMR INJECT
13648M:	Appana Durga Kedareswara rao <appana.durga.kedareswara.rao@amd.com>
13649S:	Supported
13650F:	Documentation/devicetree/bindings/misc/xlnx,tmr-inject.yaml
13651F:	drivers/misc/xilinx_tmr_inject.c
13652
13653MICROCHIP AT91 DMA DRIVERS
13654M:	Ludovic Desroches <ludovic.desroches@microchip.com>
13655M:	Tudor Ambarus <tudor.ambarus@linaro.org>
13656L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13657L:	dmaengine@vger.kernel.org
13658S:	Supported
13659F:	Documentation/devicetree/bindings/dma/atmel-dma.txt
13660F:	drivers/dma/at_hdmac.c
13661F:	drivers/dma/at_xdmac.c
13662F:	include/dt-bindings/dma/at91.h
13663
13664MICROCHIP AT91 SERIAL DRIVER
13665M:	Richard Genoud <richard.genoud@gmail.com>
13666S:	Maintained
13667F:	Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13668F:	drivers/tty/serial/atmel_serial.c
13669F:	drivers/tty/serial/atmel_serial.h
13670
13671MICROCHIP AT91 USART MFD DRIVER
13672M:	Radu Pirea <radu_nicolae.pirea@upb.ro>
13673L:	linux-kernel@vger.kernel.org
13674S:	Supported
13675F:	Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13676F:	drivers/mfd/at91-usart.c
13677F:	include/dt-bindings/mfd/at91-usart.h
13678
13679MICROCHIP AT91 USART SPI DRIVER
13680M:	Radu Pirea <radu_nicolae.pirea@upb.ro>
13681L:	linux-spi@vger.kernel.org
13682S:	Supported
13683F:	Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13684F:	drivers/spi/spi-at91-usart.c
13685
13686MICROCHIP AUDIO ASOC DRIVERS
13687M:	Claudiu Beznea <claudiu.beznea@microchip.com>
13688L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13689S:	Supported
13690F:	Documentation/devicetree/bindings/sound/atmel*
13691F:	Documentation/devicetree/bindings/sound/axentia,tse850-pcm5142.txt
13692F:	Documentation/devicetree/bindings/sound/microchip,sama7g5-*
13693F:	Documentation/devicetree/bindings/sound/mikroe,mikroe-proto.txt
13694F:	sound/soc/atmel
13695
13696MICROCHIP CSI2DC DRIVER
13697M:	Eugen Hristev <eugen.hristev@microchip.com>
13698L:	linux-media@vger.kernel.org
13699S:	Supported
13700F:	Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13701F:	drivers/media/platform/microchip/microchip-csi2dc.c
13702
13703MICROCHIP ECC DRIVER
13704M:	Tudor Ambarus <tudor.ambarus@linaro.org>
13705L:	linux-crypto@vger.kernel.org
13706S:	Maintained
13707F:	drivers/crypto/atmel-ecc.*
13708
13709MICROCHIP EIC DRIVER
13710M:	Claudiu Beznea <claudiu.beznea@microchip.com>
13711L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13712S:	Supported
13713F:	drivers/irqchip/irq-mchp-eic.c
13714
13715MICROCHIP I2C DRIVER
13716M:	Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13717L:	linux-i2c@vger.kernel.org
13718S:	Supported
13719F:	drivers/i2c/busses/i2c-at91-*.c
13720F:	drivers/i2c/busses/i2c-at91.h
13721
13722MICROCHIP ISC DRIVER
13723M:	Eugen Hristev <eugen.hristev@microchip.com>
13724L:	linux-media@vger.kernel.org
13725S:	Supported
13726F:	Documentation/devicetree/bindings/media/atmel,isc.yaml
13727F:	Documentation/devicetree/bindings/media/microchip,xisc.yaml
13728F:	drivers/staging/media/deprecated/atmel/atmel-isc*
13729F:	drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
13730F:	drivers/media/platform/microchip/microchip-isc*
13731F:	drivers/media/platform/microchip/microchip-sama*-isc*
13732F:	include/linux/atmel-isc-media.h
13733
13734MICROCHIP ISI DRIVER
13735M:	Eugen Hristev <eugen.hristev@microchip.com>
13736L:	linux-media@vger.kernel.org
13737S:	Supported
13738F:	drivers/media/platform/atmel/atmel-isi.c
13739F:	drivers/media/platform/atmel/atmel-isi.h
13740
13741MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13742M:	Woojung Huh <woojung.huh@microchip.com>
13743M:	UNGLinuxDriver@microchip.com
13744L:	netdev@vger.kernel.org
13745S:	Maintained
13746F:	Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13747F:	Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13748F:	drivers/net/dsa/microchip/*
13749F:	include/linux/dsa/ksz_common.h
13750F:	include/linux/platform_data/microchip-ksz.h
13751F:	net/dsa/tag_ksz.c
13752
13753MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13754M:	Arun Ramadoss <arun.ramadoss@microchip.com>
13755R:	UNGLinuxDriver@microchip.com
13756L:	netdev@vger.kernel.org
13757S:	Maintained
13758F:	drivers/net/phy/microchip_t1.c
13759
13760MICROCHIP LAN743X ETHERNET DRIVER
13761M:	Bryan Whitehead <bryan.whitehead@microchip.com>
13762M:	UNGLinuxDriver@microchip.com
13763L:	netdev@vger.kernel.org
13764S:	Maintained
13765F:	drivers/net/ethernet/microchip/lan743x_*
13766
13767MICROCHIP LAN966X ETHERNET DRIVER
13768M:	Horatiu Vultur <horatiu.vultur@microchip.com>
13769M:	UNGLinuxDriver@microchip.com
13770L:	netdev@vger.kernel.org
13771S:	Maintained
13772F:	drivers/net/ethernet/microchip/lan966x/*
13773
13774MICROCHIP LCDFB DRIVER
13775M:	Nicolas Ferre <nicolas.ferre@microchip.com>
13776L:	linux-fbdev@vger.kernel.org
13777S:	Maintained
13778F:	drivers/video/fbdev/atmel_lcdfb.c
13779F:	include/video/atmel_lcdc.h
13780
13781MICROCHIP MCP16502 PMIC DRIVER
13782M:	Claudiu Beznea <claudiu.beznea@microchip.com>
13783L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13784S:	Supported
13785F:	Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13786F:	drivers/regulator/mcp16502.c
13787
13788MICROCHIP MCP3911 ADC DRIVER
13789M:	Marcus Folkesson <marcus.folkesson@gmail.com>
13790M:	Kent Gustavsson <kent@minoris.se>
13791L:	linux-iio@vger.kernel.org
13792S:	Maintained
13793F:	Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13794F:	drivers/iio/adc/mcp3911.c
13795
13796MICROCHIP MMC/SD/SDIO MCI DRIVER
13797M:	Ludovic Desroches <ludovic.desroches@microchip.com>
13798S:	Maintained
13799F:	drivers/mmc/host/atmel-mci.c
13800
13801MICROCHIP NAND DRIVER
13802M:	Tudor Ambarus <tudor.ambarus@linaro.org>
13803L:	linux-mtd@lists.infradead.org
13804S:	Supported
13805F:	Documentation/devicetree/bindings/mtd/atmel-nand.txt
13806F:	drivers/mtd/nand/raw/atmel/*
13807
13808MICROCHIP PCI1XXXX GP DRIVER
13809M:	Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13810L:	linux-gpio@vger.kernel.org
13811S:	Supported
13812F:	drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13813F:	drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13814F:	drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13815
13816MICROCHIP OTPC DRIVER
13817M:	Claudiu Beznea <claudiu.beznea@microchip.com>
13818L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13819S:	Supported
13820F:	Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13821F:	drivers/nvmem/microchip-otpc.c
13822F:	include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13823
13824MICROCHIP PCI1XXXX I2C DRIVER
13825M:	Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13826M:	Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13827M:	Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13828L:	linux-i2c@vger.kernel.org
13829S:	Maintained
13830F:	drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13831
13832MICROCHIP PCIe UART DRIVER
13833M:	Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13834M:	Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13835L:	linux-serial@vger.kernel.org
13836S:	Maintained
13837F:	drivers/tty/serial/8250/8250_pci1xxxx.c
13838
13839MICROCHIP PWM DRIVER
13840M:	Claudiu Beznea <claudiu.beznea@microchip.com>
13841L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13842L:	linux-pwm@vger.kernel.org
13843S:	Supported
13844F:	Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13845F:	drivers/pwm/pwm-atmel.c
13846
13847MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13848M:	Eugen Hristev <eugen.hristev@microchip.com>
13849L:	linux-iio@vger.kernel.org
13850S:	Supported
13851F:	Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13852F:	drivers/iio/adc/at91-sama5d2_adc.c
13853F:	include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13854
13855MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13856M:	Claudiu Beznea <claudiu.beznea@microchip.com>
13857S:	Supported
13858F:	drivers/power/reset/at91-sama5d2_shdwc.c
13859
13860MICROCHIP SPI DRIVER
13861M:	Tudor Ambarus <tudor.ambarus@linaro.org>
13862S:	Supported
13863F:	drivers/spi/spi-atmel.*
13864
13865MICROCHIP SSC DRIVER
13866M:	Claudiu Beznea <claudiu.beznea@microchip.com>
13867L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13868S:	Supported
13869F:	Documentation/devicetree/bindings/misc/atmel-ssc.txt
13870F:	drivers/misc/atmel-ssc.c
13871F:	include/linux/atmel-ssc.h
13872
13873MICROCHIP SOC DRIVERS
13874M:	Conor Dooley <conor@kernel.org>
13875S:	Supported
13876T:	git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
13877F:	drivers/soc/microchip/
13878
13879MICROCHIP USB251XB DRIVER
13880M:	Richard Leitner <richard.leitner@skidata.com>
13881L:	linux-usb@vger.kernel.org
13882S:	Maintained
13883F:	Documentation/devicetree/bindings/usb/usb251xb.yaml
13884F:	drivers/usb/misc/usb251xb.c
13885
13886MICROCHIP USBA UDC DRIVER
13887M:	Cristian Birsan <cristian.birsan@microchip.com>
13888L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13889S:	Supported
13890F:	drivers/usb/gadget/udc/atmel_usba_udc.*
13891
13892MICROCHIP WILC1000 WIFI DRIVER
13893M:	Ajay Singh <ajay.kathat@microchip.com>
13894M:	Claudiu Beznea <claudiu.beznea@microchip.com>
13895L:	linux-wireless@vger.kernel.org
13896S:	Supported
13897F:	drivers/net/wireless/microchip/wilc1000/
13898
13899MICROSEMI MIPS SOCS
13900M:	Alexandre Belloni <alexandre.belloni@bootlin.com>
13901M:	UNGLinuxDriver@microchip.com
13902L:	linux-mips@vger.kernel.org
13903S:	Supported
13904F:	Documentation/devicetree/bindings/mips/mscc.txt
13905F:	Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
13906F:	Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13907F:	arch/mips/boot/dts/mscc/
13908F:	arch/mips/configs/generic/board-ocelot.config
13909F:	arch/mips/generic/board-ocelot.c
13910
13911MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13912M:	Don Brace <don.brace@microchip.com>
13913L:	storagedev@microchip.com
13914L:	linux-scsi@vger.kernel.org
13915S:	Supported
13916F:	Documentation/scsi/smartpqi.rst
13917F:	drivers/scsi/smartpqi/Kconfig
13918F:	drivers/scsi/smartpqi/Makefile
13919F:	drivers/scsi/smartpqi/smartpqi*.[ch]
13920F:	include/linux/cciss*.h
13921F:	include/uapi/linux/cciss*.h
13922
13923MICROSOFT MANA RDMA DRIVER
13924M:	Long Li <longli@microsoft.com>
13925M:	Ajay Sharma <sharmaajay@microsoft.com>
13926L:	linux-rdma@vger.kernel.org
13927S:	Supported
13928F:	drivers/infiniband/hw/mana/
13929F:	include/net/mana
13930F:	include/uapi/rdma/mana-abi.h
13931
13932MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13933M:	Maximilian Luz <luzmaximilian@gmail.com>
13934L:	platform-driver-x86@vger.kernel.org
13935S:	Maintained
13936F:	drivers/platform/surface/surface_aggregator_tabletsw.c
13937
13938MICROSOFT SURFACE BATTERY AND AC DRIVERS
13939M:	Maximilian Luz <luzmaximilian@gmail.com>
13940L:	linux-pm@vger.kernel.org
13941L:	platform-driver-x86@vger.kernel.org
13942S:	Maintained
13943F:	drivers/power/supply/surface_battery.c
13944F:	drivers/power/supply/surface_charger.c
13945
13946MICROSOFT SURFACE DTX DRIVER
13947M:	Maximilian Luz <luzmaximilian@gmail.com>
13948L:	platform-driver-x86@vger.kernel.org
13949S:	Maintained
13950F:	Documentation/driver-api/surface_aggregator/clients/dtx.rst
13951F:	drivers/platform/surface/surface_dtx.c
13952F:	include/uapi/linux/surface_aggregator/dtx.h
13953
13954MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13955M:	Maximilian Luz <luzmaximilian@gmail.com>
13956L:	platform-driver-x86@vger.kernel.org
13957S:	Maintained
13958F:	drivers/platform/surface/surface_gpe.c
13959
13960MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13961M:	Hans de Goede <hdegoede@redhat.com>
13962M:	Mark Gross <markgross@kernel.org>
13963M:	Maximilian Luz <luzmaximilian@gmail.com>
13964L:	platform-driver-x86@vger.kernel.org
13965S:	Maintained
13966T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13967F:	drivers/platform/surface/
13968
13969MICROSOFT SURFACE HID TRANSPORT DRIVER
13970M:	Maximilian Luz <luzmaximilian@gmail.com>
13971L:	linux-input@vger.kernel.org
13972L:	platform-driver-x86@vger.kernel.org
13973S:	Maintained
13974F:	drivers/hid/surface-hid/
13975
13976MICROSOFT SURFACE HOT-PLUG DRIVER
13977M:	Maximilian Luz <luzmaximilian@gmail.com>
13978L:	platform-driver-x86@vger.kernel.org
13979S:	Maintained
13980F:	drivers/platform/surface/surface_hotplug.c
13981
13982MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13983M:	Maximilian Luz <luzmaximilian@gmail.com>
13984L:	platform-driver-x86@vger.kernel.org
13985S:	Maintained
13986F:	drivers/platform/surface/surface_platform_profile.c
13987
13988MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13989M:	Chen Yu <yu.c.chen@intel.com>
13990L:	platform-driver-x86@vger.kernel.org
13991S:	Supported
13992F:	drivers/platform/surface/surfacepro3_button.c
13993
13994MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13995M:	Maximilian Luz <luzmaximilian@gmail.com>
13996L:	platform-driver-x86@vger.kernel.org
13997S:	Maintained
13998W:	https://github.com/linux-surface/surface-aggregator-module
13999C:	irc://irc.libera.chat/linux-surface
14000F:	Documentation/driver-api/surface_aggregator/
14001F:	drivers/platform/surface/aggregator/
14002F:	drivers/platform/surface/surface_acpi_notify.c
14003F:	drivers/platform/surface/surface_aggregator_cdev.c
14004F:	drivers/platform/surface/surface_aggregator_registry.c
14005F:	include/linux/surface_acpi_notify.h
14006F:	include/linux/surface_aggregator/
14007F:	include/uapi/linux/surface_aggregator/
14008
14009MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
14010M:	Maximilian Luz <luzmaximilian@gmail.com>
14011L:	platform-driver-x86@vger.kernel.org
14012S:	Maintained
14013F:	drivers/platform/surface/surface_aggregator_hub.c
14014
14015MICROTEK X6 SCANNER
14016M:	Oliver Neukum <oliver@neukum.org>
14017S:	Maintained
14018F:	drivers/usb/image/microtek.*
14019
14020MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
14021M:	Luka Kovacic <luka.kovacic@sartura.hr>
14022M:	Luka Perkov <luka.perkov@sartura.hr>
14023S:	Maintained
14024F:	arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
14025F:	arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
14026F:	arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
14027F:	arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
14028F:	arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
14029F:	arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
14030
14031MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
14032M:	Sakari Ailus <sakari.ailus@linux.intel.com>
14033L:	linux-media@vger.kernel.org
14034S:	Maintained
14035F:	Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
14036F:	Documentation/driver-api/media/drivers/ccs/
14037F:	Documentation/userspace-api/media/drivers/ccs.rst
14038F:	drivers/media/i2c/ccs-pll.c
14039F:	drivers/media/i2c/ccs-pll.h
14040F:	drivers/media/i2c/ccs/
14041F:	include/uapi/linux/ccs.h
14042F:	include/uapi/linux/smiapp.h
14043
14044MIPS
14045M:	Thomas Bogendoerfer <tsbogend@alpha.franken.de>
14046L:	linux-mips@vger.kernel.org
14047S:	Maintained
14048W:	http://www.linux-mips.org/
14049Q:	https://patchwork.kernel.org/project/linux-mips/list/
14050T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
14051F:	Documentation/devicetree/bindings/mips/
14052F:	Documentation/mips/
14053F:	arch/mips/
14054F:	drivers/platform/mips/
14055F:	include/dt-bindings/mips/
14056
14057MIPS BOSTON DEVELOPMENT BOARD
14058M:	Paul Burton <paulburton@kernel.org>
14059L:	linux-mips@vger.kernel.org
14060S:	Maintained
14061F:	Documentation/devicetree/bindings/clock/img,boston-clock.txt
14062F:	arch/mips/boot/dts/img/boston.dts
14063F:	arch/mips/configs/generic/board-boston.config
14064F:	drivers/clk/imgtec/clk-boston.c
14065F:	include/dt-bindings/clock/boston-clock.h
14066
14067MIPS CORE DRIVERS
14068M:	Thomas Bogendoerfer <tsbogend@alpha.franken.de>
14069M:	Serge Semin <fancer.lancer@gmail.com>
14070L:	linux-mips@vger.kernel.org
14071S:	Supported
14072F:	drivers/bus/mips_cdmm.c
14073F:	drivers/clocksource/mips-gic-timer.c
14074F:	drivers/cpuidle/cpuidle-cps.c
14075F:	drivers/irqchip/irq-mips-cpu.c
14076F:	drivers/irqchip/irq-mips-gic.c
14077
14078MIPS GENERIC PLATFORM
14079M:	Paul Burton <paulburton@kernel.org>
14080L:	linux-mips@vger.kernel.org
14081S:	Supported
14082F:	Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
14083F:	arch/mips/generic/
14084F:	arch/mips/tools/generic-board-config.sh
14085
14086MIPS RINT INSTRUCTION EMULATION
14087M:	Aleksandar Markovic <aleksandar.markovic@mips.com>
14088L:	linux-mips@vger.kernel.org
14089S:	Supported
14090F:	arch/mips/math-emu/dp_rint.c
14091F:	arch/mips/math-emu/sp_rint.c
14092
14093MIPS/LOONGSON1 ARCHITECTURE
14094M:	Keguang Zhang <keguang.zhang@gmail.com>
14095L:	linux-mips@vger.kernel.org
14096S:	Maintained
14097F:	arch/mips/include/asm/mach-loongson32/
14098F:	arch/mips/loongson32/
14099F:	drivers/*/*loongson1*
14100
14101MIPS/LOONGSON2EF ARCHITECTURE
14102M:	Jiaxun Yang <jiaxun.yang@flygoat.com>
14103L:	linux-mips@vger.kernel.org
14104S:	Maintained
14105F:	arch/mips/include/asm/mach-loongson2ef/
14106F:	arch/mips/loongson2ef/
14107F:	drivers/cpufreq/loongson2_cpufreq.c
14108
14109MIPS/LOONGSON64 ARCHITECTURE
14110M:	Huacai Chen <chenhuacai@kernel.org>
14111M:	Jiaxun Yang <jiaxun.yang@flygoat.com>
14112L:	linux-mips@vger.kernel.org
14113S:	Maintained
14114F:	arch/mips/include/asm/mach-loongson64/
14115F:	arch/mips/loongson64/
14116F:	drivers/irqchip/irq-loongson*
14117F:	drivers/platform/mips/cpu_hwmon.c
14118
14119MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
14120M:	Hans Verkuil <hverkuil@xs4all.nl>
14121L:	linux-media@vger.kernel.org
14122S:	Odd Fixes
14123W:	https://linuxtv.org
14124T:	git git://linuxtv.org/media_tree.git
14125F:	drivers/media/radio/radio-miropcm20*
14126
14127MMP SUPPORT
14128R:	Lubomir Rintel <lkundrak@v3.sk>
14129L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14130S:	Odd Fixes
14131T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
14132F:	arch/arm/boot/dts/mmp*
14133F:	arch/arm/mach-mmp/
14134F:	include/linux/soc/mmp/
14135
14136MMP USB PHY DRIVERS
14137R:	Lubomir Rintel <lkundrak@v3.sk>
14138L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14139S:	Maintained
14140F:	drivers/phy/marvell/phy-mmp3-usb.c
14141F:	drivers/phy/marvell/phy-pxa-usb.c
14142
14143MMU GATHER AND TLB INVALIDATION
14144M:	Will Deacon <will@kernel.org>
14145M:	"Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
14146M:	Andrew Morton <akpm@linux-foundation.org>
14147M:	Nick Piggin <npiggin@gmail.com>
14148M:	Peter Zijlstra <peterz@infradead.org>
14149L:	linux-arch@vger.kernel.org
14150L:	linux-mm@kvack.org
14151S:	Maintained
14152F:	arch/*/include/asm/tlb.h
14153F:	include/asm-generic/tlb.h
14154F:	mm/mmu_gather.c
14155
14156MN88472 MEDIA DRIVER
14157M:	Antti Palosaari <crope@iki.fi>
14158L:	linux-media@vger.kernel.org
14159S:	Maintained
14160W:	https://linuxtv.org
14161W:	http://palosaari.fi/linux/
14162Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14163F:	drivers/media/dvb-frontends/mn88472*
14164
14165MN88473 MEDIA DRIVER
14166M:	Antti Palosaari <crope@iki.fi>
14167L:	linux-media@vger.kernel.org
14168S:	Maintained
14169W:	https://linuxtv.org
14170W:	http://palosaari.fi/linux/
14171Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14172F:	drivers/media/dvb-frontends/mn88473*
14173
14174MODULE SUPPORT
14175M:	Luis Chamberlain <mcgrof@kernel.org>
14176L:	linux-modules@vger.kernel.org
14177L:	linux-kernel@vger.kernel.org
14178S:	Maintained
14179T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
14180F:	include/linux/module.h
14181F:	include/linux/kmod.h
14182F:	kernel/module/
14183F:	scripts/module*
14184F:	lib/test_kmod.c
14185F:	tools/testing/selftests/kmod/
14186
14187MONOLITHIC POWER SYSTEM PMIC DRIVER
14188M:	Saravanan Sekar <sravanhome@gmail.com>
14189S:	Maintained
14190F:	Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
14191F:	Documentation/devicetree/bindings/regulator/mps,mp*.yaml
14192F:	drivers/hwmon/pmbus/mpq7932.c
14193F:	drivers/iio/adc/mp2629_adc.c
14194F:	drivers/mfd/mp2629.c
14195F:	drivers/power/supply/mp2629_charger.c
14196F:	drivers/regulator/mp5416.c
14197F:	drivers/regulator/mpq7920.c
14198F:	drivers/regulator/mpq7920.h
14199F:	include/linux/mfd/mp2629.h
14200
14201MOST(R) TECHNOLOGY DRIVER
14202M:	Parthiban Veerasooran <parthiban.veerasooran@microchip.com>
14203M:	Christian Gromm <christian.gromm@microchip.com>
14204S:	Maintained
14205F:	Documentation/ABI/testing/configfs-most
14206F:	Documentation/ABI/testing/sysfs-bus-most
14207F:	drivers/most/
14208F:	drivers/staging/most/
14209F:	include/linux/most.h
14210
14211MOTORCOMM PHY DRIVER
14212M:	Peter Geis <pgwipeout@gmail.com>
14213M:	Frank <Frank.Sae@motor-comm.com>
14214L:	netdev@vger.kernel.org
14215S:	Maintained
14216F:	Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
14217F:	drivers/net/phy/motorcomm.c
14218
14219MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
14220M:	Jiri Slaby <jirislaby@kernel.org>
14221S:	Maintained
14222F:	Documentation/driver-api/tty/moxa-smartio.rst
14223F:	drivers/tty/mxser.*
14224
14225MR800 AVERMEDIA USB FM RADIO DRIVER
14226M:	Alexey Klimov <klimov.linux@gmail.com>
14227L:	linux-media@vger.kernel.org
14228S:	Maintained
14229T:	git git://linuxtv.org/media_tree.git
14230F:	drivers/media/radio/radio-mr800.c
14231
14232MRF24J40 IEEE 802.15.4 RADIO DRIVER
14233M:	Stefan Schmidt <stefan@datenfreihafen.org>
14234L:	linux-wpan@vger.kernel.org
14235S:	Odd Fixes
14236F:	Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
14237F:	drivers/net/ieee802154/mrf24j40.c
14238
14239MSI EC DRIVER
14240M:	Nikita Kravets <teackot@gmail.com>
14241L:	platform-driver-x86@vger.kernel.org
14242S:	Maintained
14243W:	https://github.com/BeardOverflow/msi-ec
14244F:	drivers/platform/x86/msi-ec.*
14245
14246MSI LAPTOP SUPPORT
14247M:	"Lee, Chun-Yi" <jlee@suse.com>
14248L:	platform-driver-x86@vger.kernel.org
14249S:	Maintained
14250F:	drivers/platform/x86/msi-laptop.c
14251
14252MSI WMI SUPPORT
14253L:	platform-driver-x86@vger.kernel.org
14254S:	Orphan
14255F:	drivers/platform/x86/msi-wmi.c
14256
14257MSI001 MEDIA DRIVER
14258M:	Antti Palosaari <crope@iki.fi>
14259L:	linux-media@vger.kernel.org
14260S:	Maintained
14261W:	https://linuxtv.org
14262W:	http://palosaari.fi/linux/
14263Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14264T:	git git://linuxtv.org/anttip/media_tree.git
14265F:	drivers/media/tuners/msi001*
14266
14267MSI2500 MEDIA DRIVER
14268M:	Antti Palosaari <crope@iki.fi>
14269L:	linux-media@vger.kernel.org
14270S:	Maintained
14271W:	https://linuxtv.org
14272W:	http://palosaari.fi/linux/
14273Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14274T:	git git://linuxtv.org/anttip/media_tree.git
14275F:	drivers/media/usb/msi2500/
14276
14277MSTAR INTERRUPT CONTROLLER DRIVER
14278M:	Mark-PK Tsai <mark-pk.tsai@mediatek.com>
14279M:	Daniel Palmer <daniel@thingy.jp>
14280S:	Maintained
14281F:	Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
14282F:	drivers/irqchip/irq-mst-intc.c
14283
14284MSYSTEMS DISKONCHIP G3 MTD DRIVER
14285M:	Robert Jarzmik <robert.jarzmik@free.fr>
14286L:	linux-mtd@lists.infradead.org
14287S:	Maintained
14288F:	drivers/mtd/devices/docg3*
14289
14290MT9P031 APTINA CAMERA SENSOR
14291M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14292L:	linux-media@vger.kernel.org
14293S:	Maintained
14294T:	git git://linuxtv.org/media_tree.git
14295F:	Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
14296F:	drivers/media/i2c/mt9p031.c
14297F:	include/media/i2c/mt9p031.h
14298
14299MT9T112 APTINA CAMERA SENSOR
14300M:	Jacopo Mondi <jacopo@jmondi.org>
14301L:	linux-media@vger.kernel.org
14302S:	Odd Fixes
14303T:	git git://linuxtv.org/media_tree.git
14304F:	drivers/media/i2c/mt9t112.c
14305F:	include/media/i2c/mt9t112.h
14306
14307MT9V032 APTINA CAMERA SENSOR
14308M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14309L:	linux-media@vger.kernel.org
14310S:	Maintained
14311T:	git git://linuxtv.org/media_tree.git
14312F:	Documentation/devicetree/bindings/media/i2c/mt9v032.txt
14313F:	drivers/media/i2c/mt9v032.c
14314F:	include/media/i2c/mt9v032.h
14315
14316MT9V111 APTINA CAMERA SENSOR
14317M:	Jacopo Mondi <jacopo@jmondi.org>
14318L:	linux-media@vger.kernel.org
14319S:	Maintained
14320T:	git git://linuxtv.org/media_tree.git
14321F:	Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
14322F:	drivers/media/i2c/mt9v111.c
14323
14324MULTIFUNCTION DEVICES (MFD)
14325M:	Lee Jones <lee@kernel.org>
14326S:	Maintained
14327T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14328F:	Documentation/devicetree/bindings/mfd/
14329F:	drivers/mfd/
14330F:	include/dt-bindings/mfd/
14331F:	include/linux/mfd/
14332
14333MULTIMEDIA CARD (MMC) ETC. OVER SPI
14334S:	Orphan
14335F:	drivers/mmc/host/mmc_spi.c
14336F:	include/linux/spi/mmc_spi.h
14337
14338MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
14339M:	Ulf Hansson <ulf.hansson@linaro.org>
14340L:	linux-mmc@vger.kernel.org
14341S:	Maintained
14342T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14343F:	Documentation/devicetree/bindings/mmc/
14344F:	drivers/mmc/
14345F:	include/linux/mmc/
14346F:	include/uapi/linux/mmc/
14347
14348MULTIPLEXER SUBSYSTEM
14349M:	Peter Rosin <peda@axentia.se>
14350S:	Maintained
14351F:	Documentation/ABI/testing/sysfs-class-mux*
14352F:	Documentation/devicetree/bindings/mux/
14353F:	drivers/mux/
14354F:	include/dt-bindings/mux/
14355F:	include/linux/mux/
14356
14357MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
14358M:	Bin Liu <b-liu@ti.com>
14359L:	linux-usb@vger.kernel.org
14360S:	Maintained
14361F:	drivers/usb/musb/
14362
14363MXL301RF MEDIA DRIVER
14364M:	Akihiro Tsukada <tskd08@gmail.com>
14365L:	linux-media@vger.kernel.org
14366S:	Odd Fixes
14367F:	drivers/media/tuners/mxl301rf*
14368
14369MXL5007T MEDIA DRIVER
14370M:	Michael Krufky <mkrufky@linuxtv.org>
14371L:	linux-media@vger.kernel.org
14372S:	Maintained
14373W:	https://linuxtv.org
14374W:	http://github.com/mkrufky
14375Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14376T:	git git://linuxtv.org/mkrufky/tuners.git
14377F:	drivers/media/tuners/mxl5007t.*
14378
14379MXSFB DRM DRIVER
14380M:	Marek Vasut <marex@denx.de>
14381M:	Stefan Agner <stefan@agner.ch>
14382L:	dri-devel@lists.freedesktop.org
14383S:	Supported
14384T:	git git://anongit.freedesktop.org/drm/drm-misc
14385F:	Documentation/devicetree/bindings/display/fsl,lcdif.yaml
14386F:	drivers/gpu/drm/mxsfb/
14387
14388MYLEX DAC960 PCI RAID Controller
14389M:	Hannes Reinecke <hare@kernel.org>
14390L:	linux-scsi@vger.kernel.org
14391S:	Supported
14392F:	drivers/scsi/myrb.*
14393F:	drivers/scsi/myrs.*
14394
14395MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14396M:	Chris Lee <christopher.lee@cspi.com>
14397L:	netdev@vger.kernel.org
14398S:	Supported
14399W:	https://www.cspi.com/ethernet-products/support/downloads/
14400F:	drivers/net/ethernet/myricom/myri10ge/
14401
14402NAND FLASH SUBSYSTEM
14403M:	Miquel Raynal <miquel.raynal@bootlin.com>
14404R:	Richard Weinberger <richard@nod.at>
14405L:	linux-mtd@lists.infradead.org
14406S:	Maintained
14407W:	http://www.linux-mtd.infradead.org/
14408Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
14409C:	irc://irc.oftc.net/mtd
14410T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14411F:	drivers/mtd/nand/
14412F:	include/linux/mtd/*nand*.h
14413
14414NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14415M:	Daniel Mack <zonque@gmail.com>
14416L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
14417S:	Maintained
14418W:	http://www.native-instruments.com
14419F:	sound/usb/caiaq/
14420
14421NATSEMI ETHERNET DRIVER (DP8381x)
14422S:	Orphan
14423F:	drivers/net/ethernet/natsemi/natsemi.c
14424
14425NCR 5380 SCSI DRIVERS
14426M:	Finn Thain <fthain@linux-m68k.org>
14427M:	Michael Schmitz <schmitzmic@gmail.com>
14428L:	linux-scsi@vger.kernel.org
14429S:	Maintained
14430F:	Documentation/scsi/g_NCR5380.rst
14431F:	drivers/scsi/NCR5380.*
14432F:	drivers/scsi/arm/cumana_1.c
14433F:	drivers/scsi/arm/oak.c
14434F:	drivers/scsi/atari_scsi.*
14435F:	drivers/scsi/dmx3191d.c
14436F:	drivers/scsi/g_NCR5380.*
14437F:	drivers/scsi/mac_scsi.*
14438F:	drivers/scsi/sun3_scsi.*
14439F:	drivers/scsi/sun3_scsi_vme.c
14440
14441NCSI LIBRARY
14442M:	Samuel Mendoza-Jonas <sam@mendozajonas.com>
14443S:	Maintained
14444F:	net/ncsi/
14445
14446NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14447M:	Guenter Roeck <linux@roeck-us.net>
14448L:	linux-hwmon@vger.kernel.org
14449S:	Maintained
14450F:	Documentation/hwmon/nct6775.rst
14451F:	drivers/hwmon/nct6775-core.c
14452F:	drivers/hwmon/nct6775-platform.c
14453F:	drivers/hwmon/nct6775.h
14454
14455NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14456M:	Zev Weiss <zev@bewilderbeest.net>
14457L:	linux-hwmon@vger.kernel.org
14458S:	Maintained
14459F:	Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14460F:	drivers/hwmon/nct6775-i2c.c
14461
14462NETDEVSIM
14463M:	Jakub Kicinski <kuba@kernel.org>
14464S:	Maintained
14465F:	drivers/net/netdevsim/*
14466
14467NETEM NETWORK EMULATOR
14468M:	Stephen Hemminger <stephen@networkplumber.org>
14469L:	netdev@vger.kernel.org
14470S:	Maintained
14471F:	net/sched/sch_netem.c
14472
14473NETERION 10GbE DRIVERS (s2io)
14474M:	Jon Mason <jdmason@kudzu.us>
14475L:	netdev@vger.kernel.org
14476S:	Supported
14477F:	Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14478F:	drivers/net/ethernet/neterion/
14479
14480NETFILTER
14481M:	Pablo Neira Ayuso <pablo@netfilter.org>
14482M:	Jozsef Kadlecsik <kadlec@netfilter.org>
14483M:	Florian Westphal <fw@strlen.de>
14484L:	netfilter-devel@vger.kernel.org
14485L:	coreteam@netfilter.org
14486S:	Maintained
14487W:	http://www.netfilter.org/
14488W:	http://www.iptables.org/
14489W:	http://www.nftables.org/
14490Q:	http://patchwork.ozlabs.org/project/netfilter-devel/list/
14491C:	irc://irc.libera.chat/netfilter
14492T:	git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14493T:	git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14494F:	include/linux/netfilter*
14495F:	include/linux/netfilter/
14496F:	include/net/netfilter/
14497F:	include/uapi/linux/netfilter*
14498F:	include/uapi/linux/netfilter/
14499F:	net/*/netfilter.c
14500F:	net/*/netfilter/
14501F:	net/bridge/br_netfilter*.c
14502F:	net/netfilter/
14503
14504NETROM NETWORK LAYER
14505M:	Ralf Baechle <ralf@linux-mips.org>
14506L:	linux-hams@vger.kernel.org
14507S:	Maintained
14508W:	http://www.linux-ax25.org/
14509F:	include/net/netrom.h
14510F:	include/uapi/linux/netrom.h
14511F:	net/netrom/
14512
14513NETRONIX EMBEDDED CONTROLLER
14514M:	Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14515S:	Maintained
14516F:	Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14517F:	drivers/mfd/ntxec.c
14518F:	drivers/pwm/pwm-ntxec.c
14519F:	drivers/rtc/rtc-ntxec.c
14520F:	include/linux/mfd/ntxec.h
14521
14522NETRONOME ETHERNET DRIVERS
14523M:	Simon Horman <simon.horman@corigine.com>
14524R:	Jakub Kicinski <kuba@kernel.org>
14525L:	oss-drivers@corigine.com
14526S:	Maintained
14527F:	drivers/net/ethernet/netronome/
14528
14529NETWORK BLOCK DEVICE (NBD)
14530M:	Josef Bacik <josef@toxicpanda.com>
14531L:	linux-block@vger.kernel.org
14532L:	nbd@other.debian.org
14533S:	Maintained
14534F:	Documentation/admin-guide/blockdev/nbd.rst
14535F:	drivers/block/nbd.c
14536F:	include/trace/events/nbd.h
14537F:	include/uapi/linux/nbd.h
14538
14539NETWORK DROP MONITOR
14540M:	Neil Horman <nhorman@tuxdriver.com>
14541L:	netdev@vger.kernel.org
14542S:	Maintained
14543W:	https://fedorahosted.org/dropwatch/
14544F:	include/uapi/linux/net_dropmon.h
14545F:	net/core/drop_monitor.c
14546
14547NETWORKING DRIVERS
14548M:	"David S. Miller" <davem@davemloft.net>
14549M:	Eric Dumazet <edumazet@google.com>
14550M:	Jakub Kicinski <kuba@kernel.org>
14551M:	Paolo Abeni <pabeni@redhat.com>
14552L:	netdev@vger.kernel.org
14553S:	Maintained
14554Q:	https://patchwork.kernel.org/project/netdevbpf/list/
14555T:	git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14556T:	git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14557F:	Documentation/devicetree/bindings/net/
14558F:	drivers/connector/
14559F:	drivers/net/
14560F:	include/dt-bindings/net/
14561F:	include/linux/etherdevice.h
14562F:	include/linux/fcdevice.h
14563F:	include/linux/fddidevice.h
14564F:	include/linux/hippidevice.h
14565F:	include/linux/if_*
14566F:	include/linux/inetdevice.h
14567F:	include/linux/netdevice.h
14568F:	include/uapi/linux/if_*
14569F:	include/uapi/linux/netdevice.h
14570
14571NETWORKING DRIVERS (WIRELESS)
14572M:	Kalle Valo <kvalo@kernel.org>
14573L:	linux-wireless@vger.kernel.org
14574S:	Maintained
14575W:	https://wireless.wiki.kernel.org/
14576Q:	https://patchwork.kernel.org/project/linux-wireless/list/
14577T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14578T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14579F:	Documentation/devicetree/bindings/net/wireless/
14580F:	drivers/net/wireless/
14581
14582NETWORKING [DSA]
14583M:	Andrew Lunn <andrew@lunn.ch>
14584M:	Florian Fainelli <f.fainelli@gmail.com>
14585M:	Vladimir Oltean <olteanv@gmail.com>
14586S:	Maintained
14587F:	Documentation/devicetree/bindings/net/dsa/
14588F:	Documentation/devicetree/bindings/net/ethernet-switch-port.yaml
14589F:	Documentation/devicetree/bindings/net/ethernet-switch.yaml
14590F:	drivers/net/dsa/
14591F:	include/linux/dsa/
14592F:	include/linux/platform_data/dsa.h
14593F:	include/net/dsa.h
14594F:	net/dsa/
14595F:	tools/testing/selftests/drivers/net/dsa/
14596
14597NETWORKING [GENERAL]
14598M:	"David S. Miller" <davem@davemloft.net>
14599M:	Eric Dumazet <edumazet@google.com>
14600M:	Jakub Kicinski <kuba@kernel.org>
14601M:	Paolo Abeni <pabeni@redhat.com>
14602L:	netdev@vger.kernel.org
14603S:	Maintained
14604Q:	https://patchwork.kernel.org/project/netdevbpf/list/
14605B:	mailto:netdev@vger.kernel.org
14606T:	git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14607T:	git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14608F:	Documentation/core-api/netlink.rst
14609F:	Documentation/networking/
14610F:	Documentation/process/maintainer-netdev.rst
14611F:	Documentation/userspace-api/netlink/
14612F:	include/linux/in.h
14613F:	include/linux/net.h
14614F:	include/linux/netdevice.h
14615F:	include/net/
14616F:	include/uapi/linux/in.h
14617F:	include/uapi/linux/net.h
14618F:	include/uapi/linux/net_namespace.h
14619F:	include/uapi/linux/netdevice.h
14620F:	lib/net_utils.c
14621F:	lib/random32.c
14622F:	net/
14623F:	tools/net/
14624F:	tools/testing/selftests/net/
14625
14626NETWORKING [IPSEC]
14627M:	Steffen Klassert <steffen.klassert@secunet.com>
14628M:	Herbert Xu <herbert@gondor.apana.org.au>
14629M:	"David S. Miller" <davem@davemloft.net>
14630L:	netdev@vger.kernel.org
14631S:	Maintained
14632T:	git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14633T:	git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14634F:	include/net/xfrm.h
14635F:	include/uapi/linux/xfrm.h
14636F:	net/ipv4/ah4.c
14637F:	net/ipv4/esp4*
14638F:	net/ipv4/ip_vti.c
14639F:	net/ipv4/ipcomp.c
14640F:	net/ipv4/xfrm*
14641F:	net/ipv6/ah6.c
14642F:	net/ipv6/esp6*
14643F:	net/ipv6/ip6_vti.c
14644F:	net/ipv6/ipcomp6.c
14645F:	net/ipv6/xfrm*
14646F:	net/key/
14647F:	net/xfrm/
14648F:	tools/testing/selftests/net/ipsec.c
14649
14650NETWORKING [IPv4/IPv6]
14651M:	"David S. Miller" <davem@davemloft.net>
14652M:	David Ahern <dsahern@kernel.org>
14653L:	netdev@vger.kernel.org
14654S:	Maintained
14655T:	git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14656F:	arch/x86/net/*
14657F:	include/linux/ip.h
14658F:	include/linux/ipv6*
14659F:	include/net/fib*
14660F:	include/net/ip*
14661F:	include/net/route.h
14662F:	net/ipv4/
14663F:	net/ipv6/
14664
14665NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14666M:	Paul Moore <paul@paul-moore.com>
14667L:	netdev@vger.kernel.org
14668L:	linux-security-module@vger.kernel.org
14669S:	Maintained
14670W:	https://github.com/netlabel
14671F:	Documentation/netlabel/
14672F:	include/net/calipso.h
14673F:	include/net/cipso_ipv4.h
14674F:	include/net/netlabel.h
14675F:	include/uapi/linux/netfilter/xt_CONNSECMARK.h
14676F:	include/uapi/linux/netfilter/xt_SECMARK.h
14677F:	net/ipv4/cipso_ipv4.c
14678F:	net/ipv6/calipso.c
14679F:	net/netfilter/xt_CONNSECMARK.c
14680F:	net/netfilter/xt_SECMARK.c
14681F:	net/netlabel/
14682
14683NETWORKING [MPTCP]
14684M:	Matthieu Baerts <matthieu.baerts@tessares.net>
14685M:	Mat Martineau <martineau@kernel.org>
14686L:	netdev@vger.kernel.org
14687L:	mptcp@lists.linux.dev
14688S:	Maintained
14689W:	https://github.com/multipath-tcp/mptcp_net-next/wiki
14690B:	https://github.com/multipath-tcp/mptcp_net-next/issues
14691T:	git https://github.com/multipath-tcp/mptcp_net-next.git export-net
14692T:	git https://github.com/multipath-tcp/mptcp_net-next.git export
14693F:	Documentation/networking/mptcp-sysctl.rst
14694F:	include/net/mptcp.h
14695F:	include/trace/events/mptcp.h
14696F:	include/uapi/linux/mptcp.h
14697F:	net/mptcp/
14698F:	tools/testing/selftests/bpf/*/*mptcp*.c
14699F:	tools/testing/selftests/net/mptcp/
14700
14701NETWORKING [TCP]
14702M:	Eric Dumazet <edumazet@google.com>
14703L:	netdev@vger.kernel.org
14704S:	Maintained
14705F:	include/linux/tcp.h
14706F:	include/net/tcp.h
14707F:	include/trace/events/tcp.h
14708F:	include/uapi/linux/tcp.h
14709F:	net/ipv4/syncookies.c
14710F:	net/ipv4/tcp*.c
14711F:	net/ipv6/syncookies.c
14712F:	net/ipv6/tcp*.c
14713
14714NETWORKING [TLS]
14715M:	Boris Pismenny <borisp@nvidia.com>
14716M:	John Fastabend <john.fastabend@gmail.com>
14717M:	Jakub Kicinski <kuba@kernel.org>
14718L:	netdev@vger.kernel.org
14719S:	Maintained
14720F:	include/net/tls.h
14721F:	include/uapi/linux/tls.h
14722F:	net/tls/*
14723
14724NETXEN (1/10) GbE SUPPORT
14725M:	Manish Chopra <manishc@marvell.com>
14726M:	Rahul Verma <rahulv@marvell.com>
14727M:	GR-Linux-NIC-Dev@marvell.com
14728L:	netdev@vger.kernel.org
14729S:	Supported
14730F:	drivers/net/ethernet/qlogic/netxen/
14731
14732NET_FAILOVER MODULE
14733M:	Sridhar Samudrala <sridhar.samudrala@intel.com>
14734L:	netdev@vger.kernel.org
14735S:	Supported
14736F:	Documentation/networking/net_failover.rst
14737F:	drivers/net/net_failover.c
14738F:	include/net/net_failover.h
14739
14740NEXTHOP
14741M:	David Ahern <dsahern@kernel.org>
14742L:	netdev@vger.kernel.org
14743S:	Maintained
14744F:	include/net/netns/nexthop.h
14745F:	include/net/nexthop.h
14746F:	include/uapi/linux/nexthop.h
14747F:	net/ipv4/nexthop.c
14748
14749NFC SUBSYSTEM
14750M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14751L:	netdev@vger.kernel.org
14752S:	Maintained
14753F:	Documentation/devicetree/bindings/net/nfc/
14754F:	drivers/nfc/
14755F:	include/net/nfc/
14756F:	include/uapi/linux/nfc.h
14757F:	net/nfc/
14758
14759NFC VIRTUAL NCI DEVICE DRIVER
14760M:	Bongsu Jeon <bongsu.jeon@samsung.com>
14761L:	netdev@vger.kernel.org
14762S:	Supported
14763F:	drivers/nfc/virtual_ncidev.c
14764F:	tools/testing/selftests/nci/
14765
14766NFS, SUNRPC, AND LOCKD CLIENTS
14767M:	Trond Myklebust <trond.myklebust@hammerspace.com>
14768M:	Anna Schumaker <anna@kernel.org>
14769L:	linux-nfs@vger.kernel.org
14770S:	Maintained
14771W:	http://client.linux-nfs.org
14772T:	git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14773F:	fs/lockd/
14774F:	fs/nfs/
14775F:	fs/nfs_common/
14776F:	include/linux/lockd/
14777F:	include/linux/nfs*
14778F:	include/linux/sunrpc/
14779F:	include/uapi/linux/nfs*
14780F:	include/uapi/linux/sunrpc/
14781F:	net/sunrpc/
14782F:	Documentation/filesystems/nfs/
14783
14784NILFS2 FILESYSTEM
14785M:	Ryusuke Konishi <konishi.ryusuke@gmail.com>
14786L:	linux-nilfs@vger.kernel.org
14787S:	Supported
14788W:	https://nilfs.sourceforge.io/
14789W:	https://nilfs.osdn.jp/
14790T:	git https://github.com/konis/nilfs2.git
14791F:	Documentation/filesystems/nilfs2.rst
14792F:	fs/nilfs2/
14793F:	include/trace/events/nilfs2.h
14794F:	include/uapi/linux/nilfs2_api.h
14795F:	include/uapi/linux/nilfs2_ondisk.h
14796
14797NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14798M:	YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14799S:	Maintained
14800W:	http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14801F:	Documentation/scsi/NinjaSCSI.rst
14802F:	drivers/scsi/pcmcia/nsp_*
14803
14804NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14805M:	GOTO Masanori <gotom@debian.or.jp>
14806M:	YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14807S:	Maintained
14808W:	http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14809F:	Documentation/scsi/NinjaSCSI.rst
14810F:	drivers/scsi/nsp32*
14811
14812NINTENDO HID DRIVER
14813M:	Daniel J. Ogorchock <djogorchock@gmail.com>
14814L:	linux-input@vger.kernel.org
14815S:	Maintained
14816F:	drivers/hid/hid-nintendo*
14817
14818NIOS2 ARCHITECTURE
14819M:	Dinh Nguyen <dinguyen@kernel.org>
14820S:	Maintained
14821T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14822F:	arch/nios2/
14823
14824NITRO ENCLAVES (NE)
14825M:	Alexandru Ciobotaru <alcioa@amazon.com>
14826L:	linux-kernel@vger.kernel.org
14827L:	The AWS Nitro Enclaves Team <aws-nitro-enclaves-devel@amazon.com>
14828S:	Supported
14829W:	https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14830F:	Documentation/virt/ne_overview.rst
14831F:	drivers/virt/nitro_enclaves/
14832F:	include/linux/nitro_enclaves.h
14833F:	include/uapi/linux/nitro_enclaves.h
14834F:	samples/nitro_enclaves/
14835
14836NOHZ, DYNTICKS SUPPORT
14837M:	Frederic Weisbecker <frederic@kernel.org>
14838M:	Thomas Gleixner <tglx@linutronix.de>
14839M:	Ingo Molnar <mingo@kernel.org>
14840L:	linux-kernel@vger.kernel.org
14841S:	Maintained
14842T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14843F:	include/linux/sched/nohz.h
14844F:	include/linux/tick.h
14845F:	kernel/time/tick*.*
14846
14847NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14848M:	Pavel Machek <pavel@ucw.cz>
14849M:	Sakari Ailus <sakari.ailus@iki.fi>
14850L:	linux-media@vger.kernel.org
14851S:	Maintained
14852F:	drivers/media/i2c/ad5820.c
14853F:	drivers/media/i2c/et8ek8
14854
14855NOKIA N900 POWER SUPPLY DRIVERS
14856R:	Pali Rohár <pali@kernel.org>
14857F:	drivers/power/supply/bq2415x_charger.c
14858F:	drivers/power/supply/bq27xxx_battery.c
14859F:	drivers/power/supply/bq27xxx_battery_i2c.c
14860F:	drivers/power/supply/isp1704_charger.c
14861F:	drivers/power/supply/rx51_battery.c
14862F:	include/linux/power/bq2415x_charger.h
14863F:	include/linux/power/bq27xxx_battery.h
14864
14865NOLIBC HEADER FILE
14866M:	Willy Tarreau <w@1wt.eu>
14867S:	Maintained
14868T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14869F:	tools/include/nolibc/
14870F:	tools/testing/selftests/nolibc/
14871
14872NOVATEK NVT-TS I2C TOUCHSCREEN DRIVER
14873M:	Hans de Goede <hdegoede@redhat.com>
14874L:	linux-input@vger.kernel.org
14875S:	Maintained
14876F:	drivers/input/touchscreen/novatek-nvt-ts.c
14877
14878NSDEPS
14879M:	Matthias Maennich <maennich@google.com>
14880S:	Maintained
14881F:	Documentation/core-api/symbol-namespaces.rst
14882F:	scripts/nsdeps
14883
14884NTB AMD DRIVER
14885M:	Sanjay R Mehta <sanju.mehta@amd.com>
14886M:	Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14887L:	ntb@lists.linux.dev
14888S:	Supported
14889F:	drivers/ntb/hw/amd/
14890
14891NTB DRIVER CORE
14892M:	Jon Mason <jdmason@kudzu.us>
14893M:	Dave Jiang <dave.jiang@intel.com>
14894M:	Allen Hubbe <allenbh@gmail.com>
14895L:	ntb@lists.linux.dev
14896S:	Supported
14897W:	https://github.com/jonmason/ntb/wiki
14898T:	git git://github.com/jonmason/ntb.git
14899F:	drivers/net/ntb_netdev.c
14900F:	drivers/ntb/
14901F:	drivers/pci/endpoint/functions/pci-epf-*ntb.c
14902F:	include/linux/ntb.h
14903F:	include/linux/ntb_transport.h
14904F:	tools/testing/selftests/ntb/
14905
14906NTB IDT DRIVER
14907M:	Serge Semin <fancer.lancer@gmail.com>
14908L:	ntb@lists.linux.dev
14909S:	Supported
14910F:	drivers/ntb/hw/idt/
14911
14912NTB INTEL DRIVER
14913M:	Dave Jiang <dave.jiang@intel.com>
14914L:	ntb@lists.linux.dev
14915S:	Supported
14916W:	https://github.com/davejiang/linux/wiki
14917T:	git https://github.com/davejiang/linux.git
14918F:	drivers/ntb/hw/intel/
14919
14920NTFS FILESYSTEM
14921M:	Anton Altaparmakov <anton@tuxera.com>
14922L:	linux-ntfs-dev@lists.sourceforge.net
14923S:	Supported
14924W:	http://www.tuxera.com/
14925T:	git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14926F:	Documentation/filesystems/ntfs.rst
14927F:	fs/ntfs/
14928
14929NTFS3 FILESYSTEM
14930M:	Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14931L:	ntfs3@lists.linux.dev
14932S:	Supported
14933W:	http://www.paragon-software.com/
14934T:	git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14935F:	Documentation/filesystems/ntfs3.rst
14936F:	fs/ntfs3/
14937
14938NUBUS SUBSYSTEM
14939M:	Finn Thain <fthain@linux-m68k.org>
14940L:	linux-m68k@lists.linux-m68k.org
14941S:	Maintained
14942F:	arch/*/include/asm/nubus.h
14943F:	drivers/nubus/
14944F:	include/linux/nubus.h
14945F:	include/uapi/linux/nubus.h
14946
14947NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14948M:	Antonino Daplas <adaplas@gmail.com>
14949L:	linux-fbdev@vger.kernel.org
14950S:	Maintained
14951F:	drivers/video/fbdev/nvidia/
14952F:	drivers/video/fbdev/riva/
14953
14954NVIDIA WMI EC BACKLIGHT DRIVER
14955M:	Daniel Dadap <ddadap@nvidia.com>
14956L:	platform-driver-x86@vger.kernel.org
14957S:	Supported
14958F:	drivers/platform/x86/nvidia-wmi-ec-backlight.c
14959F:	include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14960
14961NVM EXPRESS DRIVER
14962M:	Keith Busch <kbusch@kernel.org>
14963M:	Jens Axboe <axboe@fb.com>
14964M:	Christoph Hellwig <hch@lst.de>
14965M:	Sagi Grimberg <sagi@grimberg.me>
14966L:	linux-nvme@lists.infradead.org
14967S:	Supported
14968W:	http://git.infradead.org/nvme.git
14969T:	git git://git.infradead.org/nvme.git
14970F:	Documentation/nvme/
14971F:	drivers/nvme/common/
14972F:	drivers/nvme/host/
14973F:	include/linux/nvme-*.h
14974F:	include/linux/nvme.h
14975F:	include/uapi/linux/nvme_ioctl.h
14976
14977NVM EXPRESS FABRICS AUTHENTICATION
14978M:	Hannes Reinecke <hare@suse.de>
14979L:	linux-nvme@lists.infradead.org
14980S:	Supported
14981F:	drivers/nvme/host/auth.c
14982F:	drivers/nvme/target/auth.c
14983F:	drivers/nvme/target/fabrics-cmd-auth.c
14984F:	include/linux/nvme-auth.h
14985
14986NVM EXPRESS HARDWARE MONITORING SUPPORT
14987M:	Guenter Roeck <linux@roeck-us.net>
14988L:	linux-nvme@lists.infradead.org
14989S:	Supported
14990F:	drivers/nvme/host/hwmon.c
14991
14992NVM EXPRESS FC TRANSPORT DRIVERS
14993M:	James Smart <james.smart@broadcom.com>
14994L:	linux-nvme@lists.infradead.org
14995S:	Supported
14996F:	drivers/nvme/host/fc.c
14997F:	drivers/nvme/target/fc.c
14998F:	drivers/nvme/target/fcloop.c
14999F:	include/linux/nvme-fc-driver.h
15000F:	include/linux/nvme-fc.h
15001
15002NVM EXPRESS TARGET DRIVER
15003M:	Christoph Hellwig <hch@lst.de>
15004M:	Sagi Grimberg <sagi@grimberg.me>
15005M:	Chaitanya Kulkarni <kch@nvidia.com>
15006L:	linux-nvme@lists.infradead.org
15007S:	Supported
15008W:	http://git.infradead.org/nvme.git
15009T:	git git://git.infradead.org/nvme.git
15010F:	drivers/nvme/target/
15011
15012NVMEM FRAMEWORK
15013M:	Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15014S:	Maintained
15015T:	git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
15016F:	Documentation/ABI/stable/sysfs-bus-nvmem
15017F:	Documentation/devicetree/bindings/nvmem/
15018F:	drivers/nvmem/
15019F:	include/linux/nvmem-consumer.h
15020F:	include/linux/nvmem-provider.h
15021
15022NXP C45 TJA11XX PHY DRIVER
15023M:	Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
15024L:	netdev@vger.kernel.org
15025S:	Maintained
15026F:	drivers/net/phy/nxp-c45-tja11xx.c
15027
15028NXP FSPI DRIVER
15029M:	Han Xu <han.xu@nxp.com>
15030M:	Haibo Chen <haibo.chen@nxp.com>
15031R:	Yogesh Gaur <yogeshgaur.83@gmail.com>
15032L:	linux-spi@vger.kernel.org
15033S:	Maintained
15034F:	Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
15035F:	drivers/spi/spi-nxp-fspi.c
15036
15037NXP FXAS21002C DRIVER
15038M:	Rui Miguel Silva <rmfrfs@gmail.com>
15039L:	linux-iio@vger.kernel.org
15040S:	Maintained
15041F:	Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
15042F:	drivers/iio/gyro/fxas21002c.h
15043F:	drivers/iio/gyro/fxas21002c_core.c
15044F:	drivers/iio/gyro/fxas21002c_i2c.c
15045F:	drivers/iio/gyro/fxas21002c_spi.c
15046
15047NXP i.MX CLOCK DRIVERS
15048M:	Abel Vesa <abelvesa@kernel.org>
15049R:	Peng Fan <peng.fan@nxp.com>
15050L:	linux-clk@vger.kernel.org
15051L:	linux-imx@nxp.com
15052S:	Maintained
15053T:	git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
15054F:	Documentation/devicetree/bindings/clock/imx*
15055F:	drivers/clk/imx/
15056F:	include/dt-bindings/clock/imx*
15057
15058NXP i.MX 8M ISI DRIVER
15059M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15060L:	linux-media@vger.kernel.org
15061S:	Maintained
15062F:	Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml
15063F:	drivers/media/platform/nxp/imx8-isi/
15064
15065NXP i.MX 8MQ DCSS DRIVER
15066M:	Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
15067R:	Lucas Stach <l.stach@pengutronix.de>
15068L:	dri-devel@lists.freedesktop.org
15069S:	Maintained
15070F:	Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
15071F:	drivers/gpu/drm/imx/dcss/
15072
15073NXP i.MX 8QXP ADC DRIVER
15074M:	Cai Huoqing <cai.huoqing@linux.dev>
15075M:	Haibo Chen <haibo.chen@nxp.com>
15076L:	linux-imx@nxp.com
15077L:	linux-iio@vger.kernel.org
15078S:	Maintained
15079F:	Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
15080F:	drivers/iio/adc/imx8qxp-adc.c
15081
15082NXP i.MX 7D/6SX/6UL/93 AND VF610 ADC DRIVER
15083M:	Haibo Chen <haibo.chen@nxp.com>
15084L:	linux-iio@vger.kernel.org
15085L:	linux-imx@nxp.com
15086S:	Maintained
15087F:	Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
15088F:	Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
15089F:	Documentation/devicetree/bindings/iio/adc/nxp,imx93-adc.yaml
15090F:	drivers/iio/adc/imx7d_adc.c
15091F:	drivers/iio/adc/imx93_adc.c
15092F:	drivers/iio/adc/vf610_adc.c
15093
15094NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
15095M:	Jagan Teki <jagan@amarulasolutions.com>
15096S:	Maintained
15097F:	Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
15098F:	drivers/regulator/pf8x00-regulator.c
15099
15100NXP PTN5150A CC LOGIC AND EXTCON DRIVER
15101M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
15102L:	linux-kernel@vger.kernel.org
15103S:	Maintained
15104F:	Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
15105F:	drivers/extcon/extcon-ptn5150.c
15106
15107NXP SGTL5000 DRIVER
15108M:	Fabio Estevam <festevam@gmail.com>
15109L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
15110S:	Maintained
15111F:	Documentation/devicetree/bindings/sound/sgtl5000.yaml
15112F:	sound/soc/codecs/sgtl5000*
15113
15114NXP SJA1105 ETHERNET SWITCH DRIVER
15115M:	Vladimir Oltean <olteanv@gmail.com>
15116L:	linux-kernel@vger.kernel.org
15117S:	Maintained
15118F:	drivers/net/dsa/sja1105
15119F:	drivers/net/pcs/pcs-xpcs-nxp.c
15120
15121NXP TDA998X DRM DRIVER
15122M:	Russell King <linux@armlinux.org.uk>
15123S:	Maintained
15124T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
15125T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
15126F:	drivers/gpu/drm/i2c/tda998x_drv.c
15127F:	include/drm/i2c/tda998x.h
15128F:	include/dt-bindings/display/tda998x.h
15129K:	"nxp,tda998x"
15130
15131NXP TFA9879 DRIVER
15132M:	Peter Rosin <peda@axentia.se>
15133L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
15134S:	Maintained
15135F:	Documentation/devicetree/bindings/sound/tfa9879.txt
15136F:	sound/soc/codecs/tfa9879*
15137
15138NXP/Goodix TFA989X (TFA1) DRIVER
15139M:	Stephan Gerhold <stephan@gerhold.net>
15140L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
15141S:	Maintained
15142F:	Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
15143F:	sound/soc/codecs/tfa989x.c
15144
15145NXP-NCI NFC DRIVER
15146S:	Orphan
15147F:	Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
15148F:	drivers/nfc/nxp-nci
15149
15150NXP i.MX 8MP DW100 V4L2 DRIVER
15151M:	Xavier Roumegue <xavier.roumegue@oss.nxp.com>
15152L:	linux-media@vger.kernel.org
15153S:	Maintained
15154F:	Documentation/devicetree/bindings/media/nxp,dw100.yaml
15155F:	Documentation/userspace-api/media/drivers/dw100.rst
15156F:	drivers/media/platform/nxp/dw100/
15157F:	include/uapi/linux/dw100.h
15158
15159NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
15160M:	Mirela Rabulea <mirela.rabulea@nxp.com>
15161R:	NXP Linux Team <linux-imx@nxp.com>
15162L:	linux-media@vger.kernel.org
15163S:	Maintained
15164F:	Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
15165F:	drivers/media/platform/nxp/imx-jpeg
15166
15167NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
15168M:	Jonas Malaco <jonas@protocubo.io>
15169L:	linux-hwmon@vger.kernel.org
15170S:	Maintained
15171F:	Documentation/hwmon/nzxt-kraken2.rst
15172F:	drivers/hwmon/nzxt-kraken2.c
15173
15174NZXT-SMART2 HARDWARE MONITORING DRIVER
15175M:	Aleksandr Mezin <mezin.alexander@gmail.com>
15176L:	linux-hwmon@vger.kernel.org
15177S:	Maintained
15178F:	Documentation/hwmon/nzxt-smart2.rst
15179F:	drivers/hwmon/nzxt-smart2.c
15180
15181OBJAGG
15182M:	Jiri Pirko <jiri@resnulli.us>
15183L:	netdev@vger.kernel.org
15184S:	Supported
15185F:	include/linux/objagg.h
15186F:	lib/objagg.c
15187F:	lib/test_objagg.c
15188
15189OBJTOOL
15190M:	Josh Poimboeuf <jpoimboe@kernel.org>
15191M:	Peter Zijlstra <peterz@infradead.org>
15192S:	Supported
15193F:	include/linux/objtool*.h
15194F:	tools/objtool/
15195
15196OCELOT ETHERNET SWITCH DRIVER
15197M:	Vladimir Oltean <vladimir.oltean@nxp.com>
15198M:	Claudiu Manoil <claudiu.manoil@nxp.com>
15199M:	Alexandre Belloni <alexandre.belloni@bootlin.com>
15200M:	UNGLinuxDriver@microchip.com
15201L:	netdev@vger.kernel.org
15202S:	Supported
15203F:	drivers/net/dsa/ocelot/*
15204F:	drivers/net/ethernet/mscc/
15205F:	include/soc/mscc/ocelot*
15206F:	net/dsa/tag_ocelot.c
15207F:	net/dsa/tag_ocelot_8021q.c
15208F:	tools/testing/selftests/drivers/net/ocelot/*
15209
15210OCELOT EXTERNAL SWITCH CONTROL
15211M:	Colin Foster <colin.foster@in-advantage.com>
15212S:	Supported
15213F:	Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
15214F:	drivers/mfd/ocelot*
15215F:	drivers/net/dsa/ocelot/ocelot_ext.c
15216F:	include/linux/mfd/ocelot.h
15217
15218OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
15219M:	Frederic Barrat <fbarrat@linux.ibm.com>
15220M:	Andrew Donnellan <ajd@linux.ibm.com>
15221L:	linuxppc-dev@lists.ozlabs.org
15222S:	Supported
15223F:	Documentation/userspace-api/accelerators/ocxl.rst
15224F:	arch/powerpc/include/asm/pnv-ocxl.h
15225F:	arch/powerpc/platforms/powernv/ocxl.c
15226F:	drivers/misc/ocxl/
15227F:	include/misc/ocxl*
15228F:	include/uapi/misc/ocxl.h
15229
15230OMAP AUDIO SUPPORT
15231M:	Peter Ujfalusi <peter.ujfalusi@gmail.com>
15232M:	Jarkko Nikula <jarkko.nikula@bitmer.com>
15233L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
15234L:	linux-omap@vger.kernel.org
15235S:	Maintained
15236F:	sound/soc/ti/n810.c
15237F:	sound/soc/ti/omap*
15238F:	sound/soc/ti/rx51.c
15239F:	sound/soc/ti/sdma-pcm.*
15240
15241OMAP CLOCK FRAMEWORK SUPPORT
15242M:	Paul Walmsley <paul@pwsan.com>
15243L:	linux-omap@vger.kernel.org
15244S:	Maintained
15245F:	arch/arm/*omap*/*clock*
15246
15247OMAP DEVICE TREE SUPPORT
15248M:	Benoît Cousson <bcousson@baylibre.com>
15249M:	Tony Lindgren <tony@atomide.com>
15250L:	linux-omap@vger.kernel.org
15251L:	devicetree@vger.kernel.org
15252S:	Maintained
15253F:	arch/arm/boot/dts/*am3*
15254F:	arch/arm/boot/dts/*am4*
15255F:	arch/arm/boot/dts/*am5*
15256F:	arch/arm/boot/dts/*dra7*
15257F:	arch/arm/boot/dts/*omap*
15258F:	arch/arm/boot/dts/logicpd-som-lv*
15259F:	arch/arm/boot/dts/logicpd-torpedo*
15260
15261OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
15262L:	linux-omap@vger.kernel.org
15263L:	linux-fbdev@vger.kernel.org
15264S:	Orphan
15265F:	Documentation/arm/omap/dss.rst
15266F:	drivers/video/fbdev/omap2/
15267
15268OMAP FRAMEBUFFER SUPPORT
15269L:	linux-fbdev@vger.kernel.org
15270L:	linux-omap@vger.kernel.org
15271S:	Orphan
15272F:	drivers/video/fbdev/omap/
15273
15274OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
15275M:	Roger Quadros <rogerq@kernel.org>
15276M:	Tony Lindgren <tony@atomide.com>
15277L:	linux-omap@vger.kernel.org
15278S:	Maintained
15279F:	arch/arm/mach-omap2/*gpmc*
15280F:	drivers/memory/omap-gpmc.c
15281
15282OMAP GPIO DRIVER
15283M:	Grygorii Strashko <grygorii.strashko@ti.com>
15284M:	Santosh Shilimkar <ssantosh@kernel.org>
15285M:	Kevin Hilman <khilman@kernel.org>
15286L:	linux-omap@vger.kernel.org
15287S:	Maintained
15288F:	Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
15289F:	drivers/gpio/gpio-omap.c
15290
15291OMAP HARDWARE SPINLOCK SUPPORT
15292M:	Ohad Ben-Cohen <ohad@wizery.com>
15293L:	linux-omap@vger.kernel.org
15294S:	Maintained
15295F:	drivers/hwspinlock/omap_hwspinlock.c
15296
15297OMAP HS MMC SUPPORT
15298L:	linux-mmc@vger.kernel.org
15299L:	linux-omap@vger.kernel.org
15300S:	Orphan
15301F:	drivers/mmc/host/omap_hsmmc.c
15302
15303OMAP HWMOD DATA
15304M:	Paul Walmsley <paul@pwsan.com>
15305L:	linux-omap@vger.kernel.org
15306S:	Maintained
15307F:	arch/arm/mach-omap2/omap_hwmod*data*
15308
15309OMAP HWMOD SUPPORT
15310M:	Benoît Cousson <bcousson@baylibre.com>
15311M:	Paul Walmsley <paul@pwsan.com>
15312L:	linux-omap@vger.kernel.org
15313S:	Maintained
15314F:	arch/arm/mach-omap2/omap_hwmod.*
15315
15316OMAP I2C DRIVER
15317M:	Vignesh R <vigneshr@ti.com>
15318L:	linux-omap@vger.kernel.org
15319L:	linux-i2c@vger.kernel.org
15320S:	Maintained
15321F:	Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
15322F:	drivers/i2c/busses/i2c-omap.c
15323
15324OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
15325M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15326L:	linux-media@vger.kernel.org
15327S:	Maintained
15328F:	Documentation/devicetree/bindings/media/ti,omap3isp.txt
15329F:	drivers/media/platform/ti/omap3isp/
15330F:	drivers/staging/media/omap4iss/
15331
15332OMAP MMC SUPPORT
15333M:	Aaro Koskinen <aaro.koskinen@iki.fi>
15334L:	linux-omap@vger.kernel.org
15335S:	Odd Fixes
15336F:	drivers/mmc/host/omap.c
15337
15338OMAP POWER MANAGEMENT SUPPORT
15339M:	Kevin Hilman <khilman@kernel.org>
15340L:	linux-omap@vger.kernel.org
15341S:	Maintained
15342F:	arch/arm/*omap*/*pm*
15343F:	drivers/cpufreq/omap-cpufreq.c
15344
15345OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
15346M:	Paul Walmsley <paul@pwsan.com>
15347L:	linux-omap@vger.kernel.org
15348S:	Maintained
15349F:	arch/arm/mach-omap2/prm*
15350
15351OMAP RANDOM NUMBER GENERATOR SUPPORT
15352M:	Deepak Saxena <dsaxena@plexity.net>
15353S:	Maintained
15354F:	drivers/char/hw_random/omap-rng.c
15355
15356OMAP USB SUPPORT
15357L:	linux-usb@vger.kernel.org
15358L:	linux-omap@vger.kernel.org
15359S:	Orphan
15360F:	arch/arm/*omap*/usb*
15361F:	drivers/usb/*/*omap*
15362
15363OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
15364M:	Mark Jackson <mpfj@newflow.co.uk>
15365L:	linux-omap@vger.kernel.org
15366S:	Maintained
15367F:	arch/arm/boot/dts/am335x-nano.dts
15368
15369OMAP1 SUPPORT
15370M:	Aaro Koskinen <aaro.koskinen@iki.fi>
15371M:	Janusz Krzysztofik <jmkrzyszt@gmail.com>
15372M:	Tony Lindgren <tony@atomide.com>
15373L:	linux-omap@vger.kernel.org
15374S:	Maintained
15375Q:	http://patchwork.kernel.org/project/linux-omap/list/
15376T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15377F:	arch/arm/configs/omap1_defconfig
15378F:	arch/arm/mach-omap1/
15379F:	drivers/i2c/busses/i2c-omap.c
15380F:	include/linux/platform_data/ams-delta-fiq.h
15381F:	include/linux/platform_data/i2c-omap.h
15382
15383OMAP2+ SUPPORT
15384M:	Tony Lindgren <tony@atomide.com>
15385L:	linux-omap@vger.kernel.org
15386S:	Maintained
15387W:	http://www.muru.com/linux/omap/
15388W:	http://linux.omap.com/
15389Q:	http://patchwork.kernel.org/project/linux-omap/list/
15390T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15391F:	arch/arm/configs/omap2plus_defconfig
15392F:	arch/arm/mach-omap2/
15393F:	drivers/bus/ti-sysc.c
15394F:	drivers/i2c/busses/i2c-omap.c
15395F:	drivers/irqchip/irq-omap-intc.c
15396F:	drivers/mfd/*omap*.c
15397F:	drivers/mfd/menelaus.c
15398F:	drivers/mfd/palmas.c
15399F:	drivers/mfd/tps65217.c
15400F:	drivers/mfd/tps65218.c
15401F:	drivers/mfd/tps65219.c
15402F:	drivers/mfd/tps65910.c
15403F:	drivers/mfd/twl-core.[ch]
15404F:	drivers/mfd/twl4030*.c
15405F:	drivers/mfd/twl6030*.c
15406F:	drivers/mfd/twl6040*.c
15407F:	drivers/regulator/palmas-regulator*.c
15408F:	drivers/regulator/pbias-regulator.c
15409F:	drivers/regulator/tps65217-regulator.c
15410F:	drivers/regulator/tps65218-regulator.c
15411F:	drivers/regulator/tps65219-regulator.c
15412F:	drivers/regulator/tps65910-regulator.c
15413F:	drivers/regulator/twl-regulator.c
15414F:	drivers/regulator/twl6030-regulator.c
15415F:	include/linux/platform_data/i2c-omap.h
15416F:	include/linux/platform_data/ti-sysc.h
15417
15418OMFS FILESYSTEM
15419M:	Bob Copeland <me@bobcopeland.com>
15420L:	linux-karma-devel@lists.sourceforge.net
15421S:	Maintained
15422F:	Documentation/filesystems/omfs.rst
15423F:	fs/omfs/
15424
15425OMNIVISION OG01A1B SENSOR DRIVER
15426M:	Shawn Tu <shawnx.tu@intel.com>
15427L:	linux-media@vger.kernel.org
15428S:	Maintained
15429F:	drivers/media/i2c/og01a1b.c
15430
15431OMNIVISION OV02A10 SENSOR DRIVER
15432M:	Dongchun Zhu <dongchun.zhu@mediatek.com>
15433L:	linux-media@vger.kernel.org
15434S:	Maintained
15435T:	git git://linuxtv.org/media_tree.git
15436F:	Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15437F:	drivers/media/i2c/ov02a10.c
15438
15439OMNIVISION OV08D10 SENSOR DRIVER
15440M:	Jimmy Su <jimmy.su@intel.com>
15441L:	linux-media@vger.kernel.org
15442S:	Maintained
15443T:	git git://linuxtv.org/media_tree.git
15444F:	drivers/media/i2c/ov08d10.c
15445
15446OMNIVISION OV08X40 SENSOR DRIVER
15447M:	Jason Chen <jason.z.chen@intel.com>
15448L:	linux-media@vger.kernel.org
15449S:	Maintained
15450T:	git git://linuxtv.org/media_tree.git
15451F:	drivers/media/i2c/ov08x40.c
15452
15453OMNIVISION OV13858 SENSOR DRIVER
15454M:	Sakari Ailus <sakari.ailus@linux.intel.com>
15455L:	linux-media@vger.kernel.org
15456S:	Maintained
15457T:	git git://linuxtv.org/media_tree.git
15458F:	drivers/media/i2c/ov13858.c
15459
15460OMNIVISION OV13B10 SENSOR DRIVER
15461M:	Arec Kao <arec.kao@intel.com>
15462L:	linux-media@vger.kernel.org
15463S:	Maintained
15464T:	git git://linuxtv.org/media_tree.git
15465F:	drivers/media/i2c/ov13b10.c
15466
15467OMNIVISION OV2680 SENSOR DRIVER
15468M:	Rui Miguel Silva <rmfrfs@gmail.com>
15469L:	linux-media@vger.kernel.org
15470S:	Maintained
15471T:	git git://linuxtv.org/media_tree.git
15472F:	Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15473F:	drivers/media/i2c/ov2680.c
15474
15475OMNIVISION OV2685 SENSOR DRIVER
15476M:	Shunqian Zheng <zhengsq@rock-chips.com>
15477L:	linux-media@vger.kernel.org
15478S:	Maintained
15479T:	git git://linuxtv.org/media_tree.git
15480F:	Documentation/devicetree/bindings/media/i2c/ovti,ov2685.yaml
15481F:	drivers/media/i2c/ov2685.c
15482
15483OMNIVISION OV2740 SENSOR DRIVER
15484M:	Tianshu Qiu <tian.shu.qiu@intel.com>
15485R:	Shawn Tu <shawnx.tu@intel.com>
15486R:	Bingbu Cao <bingbu.cao@intel.com>
15487L:	linux-media@vger.kernel.org
15488S:	Maintained
15489T:	git git://linuxtv.org/media_tree.git
15490F:	drivers/media/i2c/ov2740.c
15491
15492OMNIVISION OV4689 SENSOR DRIVER
15493M:	Mikhail Rudenko <mike.rudenko@gmail.com>
15494L:	linux-media@vger.kernel.org
15495S:	Maintained
15496T:	git git://linuxtv.org/media_tree.git
15497F:	Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
15498F:	drivers/media/i2c/ov5647.c
15499
15500OMNIVISION OV5640 SENSOR DRIVER
15501M:	Steve Longerbeam <slongerbeam@gmail.com>
15502L:	linux-media@vger.kernel.org
15503S:	Maintained
15504T:	git git://linuxtv.org/media_tree.git
15505F:	drivers/media/i2c/ov5640.c
15506
15507OMNIVISION OV5647 SENSOR DRIVER
15508M:	Dave Stevenson <dave.stevenson@raspberrypi.com>
15509M:	Jacopo Mondi <jacopo@jmondi.org>
15510L:	linux-media@vger.kernel.org
15511S:	Maintained
15512T:	git git://linuxtv.org/media_tree.git
15513F:	Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15514F:	drivers/media/i2c/ov5647.c
15515
15516OMNIVISION OV5670 SENSOR DRIVER
15517M:	Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
15518L:	linux-media@vger.kernel.org
15519S:	Maintained
15520T:	git git://linuxtv.org/media_tree.git
15521F:	Documentation/devicetree/bindings/media/i2c/ovti,ov5670.yaml
15522F:	drivers/media/i2c/ov5670.c
15523
15524OMNIVISION OV5675 SENSOR DRIVER
15525M:	Shawn Tu <shawnx.tu@intel.com>
15526L:	linux-media@vger.kernel.org
15527S:	Maintained
15528T:	git git://linuxtv.org/media_tree.git
15529F:	Documentation/devicetree/bindings/media/i2c/ovti,ov5675.yaml
15530F:	drivers/media/i2c/ov5675.c
15531
15532OMNIVISION OV5693 SENSOR DRIVER
15533M:	Daniel Scally <djrscally@gmail.com>
15534L:	linux-media@vger.kernel.org
15535S:	Maintained
15536T:	git git://linuxtv.org/media_tree.git
15537F:	Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15538F:	drivers/media/i2c/ov5693.c
15539
15540OMNIVISION OV5695 SENSOR DRIVER
15541M:	Shunqian Zheng <zhengsq@rock-chips.com>
15542L:	linux-media@vger.kernel.org
15543S:	Maintained
15544T:	git git://linuxtv.org/media_tree.git
15545F:	drivers/media/i2c/ov5695.c
15546
15547OMNIVISION OV7670 SENSOR DRIVER
15548L:	linux-media@vger.kernel.org
15549S:	Orphan
15550T:	git git://linuxtv.org/media_tree.git
15551F:	Documentation/devicetree/bindings/media/i2c/ov7670.txt
15552F:	drivers/media/i2c/ov7670.c
15553
15554OMNIVISION OV772x SENSOR DRIVER
15555M:	Jacopo Mondi <jacopo@jmondi.org>
15556L:	linux-media@vger.kernel.org
15557S:	Odd fixes
15558T:	git git://linuxtv.org/media_tree.git
15559F:	Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15560F:	drivers/media/i2c/ov772x.c
15561F:	include/media/i2c/ov772x.h
15562
15563OMNIVISION OV7740 SENSOR DRIVER
15564M:	Wenyou Yang <wenyou.yang@microchip.com>
15565L:	linux-media@vger.kernel.org
15566S:	Maintained
15567T:	git git://linuxtv.org/media_tree.git
15568F:	Documentation/devicetree/bindings/media/i2c/ov7740.txt
15569F:	drivers/media/i2c/ov7740.c
15570
15571OMNIVISION OV8856 SENSOR DRIVER
15572M:	Sakari Ailus <sakari.ailus@linux.intel.com>
15573L:	linux-media@vger.kernel.org
15574S:	Maintained
15575T:	git git://linuxtv.org/media_tree.git
15576F:	Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15577F:	drivers/media/i2c/ov8856.c
15578
15579OMNIVISION OV8858 SENSOR DRIVER
15580M:	Jacopo Mondi <jacopo.mondi@ideasonboard.com>
15581M:	Nicholas Roth <nicholas@rothemail.net>
15582L:	linux-media@vger.kernel.org
15583S:	Maintained
15584T:	git git://linuxtv.org/media_tree.git
15585F:	Documentation/devicetree/bindings/media/i2c/ovti,ov8858.yaml
15586F:	drivers/media/i2c/ov8858.c
15587
15588OMNIVISION OV9282 SENSOR DRIVER
15589M:	Paul J. Murphy <paul.j.murphy@intel.com>
15590M:	Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15591L:	linux-media@vger.kernel.org
15592S:	Maintained
15593T:	git git://linuxtv.org/media_tree.git
15594F:	Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15595F:	drivers/media/i2c/ov9282.c
15596
15597OMNIVISION OV9640 SENSOR DRIVER
15598M:	Petr Cvek <petrcvekcz@gmail.com>
15599L:	linux-media@vger.kernel.org
15600S:	Maintained
15601F:	drivers/media/i2c/ov9640.*
15602
15603OMNIVISION OV9650 SENSOR DRIVER
15604M:	Sakari Ailus <sakari.ailus@linux.intel.com>
15605R:	Akinobu Mita <akinobu.mita@gmail.com>
15606R:	Sylwester Nawrocki <s.nawrocki@samsung.com>
15607L:	linux-media@vger.kernel.org
15608S:	Maintained
15609T:	git git://linuxtv.org/media_tree.git
15610F:	Documentation/devicetree/bindings/media/i2c/ov9650.txt
15611F:	drivers/media/i2c/ov9650.c
15612
15613OMNIVISION OV9734 SENSOR DRIVER
15614M:	Tianshu Qiu <tian.shu.qiu@intel.com>
15615R:	Bingbu Cao <bingbu.cao@intel.com>
15616L:	linux-media@vger.kernel.org
15617S:	Maintained
15618T:	git git://linuxtv.org/media_tree.git
15619F:	drivers/media/i2c/ov9734.c
15620
15621ONBOARD USB HUB DRIVER
15622M:	Matthias Kaehlcke <mka@chromium.org>
15623L:	linux-usb@vger.kernel.org
15624S:	Maintained
15625F:	Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15626F:	drivers/usb/misc/onboard_usb_hub.c
15627
15628ONENAND FLASH DRIVER
15629M:	Kyungmin Park <kyungmin.park@samsung.com>
15630L:	linux-mtd@lists.infradead.org
15631S:	Maintained
15632F:	drivers/mtd/nand/onenand/
15633F:	include/linux/mtd/onenand*.h
15634
15635ONEXPLAYER FAN DRIVER
15636M:	Derek John Clark <derekjohn.clark@gmail.com>
15637M:	Joaquín Ignacio Aramendía <samsagax@gmail.com>
15638L:	linux-hwmon@vger.kernel.org
15639S:	Maintained
15640F:	drivers/hwmon/oxp-sensors.c
15641
15642ONIE TLV NVMEM LAYOUT DRIVER
15643M:	Miquel Raynal <miquel.raynal@bootlin.com>
15644S:	Maintained
15645F:	Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml
15646F:	drivers/nvmem/layouts/onie-tlv.c
15647
15648ONION OMEGA2+ BOARD
15649M:	Harvey Hunt <harveyhuntnexus@gmail.com>
15650L:	linux-mips@vger.kernel.org
15651S:	Maintained
15652F:	arch/mips/boot/dts/ralink/omega2p.dts
15653
15654ONSEMI ETHERNET PHY DRIVERS
15655M:	Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
15656L:	netdev@vger.kernel.org
15657S:	Supported
15658W:	http://www.onsemi.com
15659F:	drivers/net/phy/ncn*
15660
15661OP-TEE DRIVER
15662M:	Jens Wiklander <jens.wiklander@linaro.org>
15663L:	op-tee@lists.trustedfirmware.org
15664S:	Maintained
15665F:	Documentation/ABI/testing/sysfs-bus-optee-devices
15666F:	drivers/tee/optee/
15667
15668OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15669M:	Sumit Garg <sumit.garg@linaro.org>
15670L:	op-tee@lists.trustedfirmware.org
15671S:	Maintained
15672F:	drivers/char/hw_random/optee-rng.c
15673
15674OP-TEE RTC DRIVER
15675M:	Clément Léger <clement.leger@bootlin.com>
15676L:	linux-rtc@vger.kernel.org
15677S:	Maintained
15678F:	drivers/rtc/rtc-optee.c
15679
15680OPA-VNIC DRIVER
15681M:	Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15682L:	linux-rdma@vger.kernel.org
15683S:	Supported
15684F:	drivers/infiniband/ulp/opa_vnic
15685
15686OPEN FIRMWARE AND FLATTENED DEVICE TREE
15687M:	Rob Herring <robh+dt@kernel.org>
15688M:	Frank Rowand <frowand.list@gmail.com>
15689L:	devicetree@vger.kernel.org
15690S:	Maintained
15691C:	irc://irc.libera.chat/devicetree
15692W:	http://www.devicetree.org/
15693T:	git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15694F:	Documentation/ABI/testing/sysfs-firmware-ofw
15695F:	drivers/of/
15696F:	include/linux/of*.h
15697F:	scripts/dtc/
15698K:	of_overlay_notifier_
15699K:	of_overlay_fdt_apply
15700K:	of_overlay_remove
15701
15702OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15703M:	Rob Herring <robh+dt@kernel.org>
15704M:	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15705M:	Conor Dooley <conor+dt@kernel.org>
15706L:	devicetree@vger.kernel.org
15707S:	Maintained
15708C:	irc://irc.libera.chat/devicetree
15709Q:	http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15710T:	git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15711F:	Documentation/devicetree/
15712F:	arch/*/boot/dts/
15713F:	include/dt-bindings/
15714
15715OPENCOMPUTE PTP CLOCK DRIVER
15716M:	Jonathan Lemon <jonathan.lemon@gmail.com>
15717M:	Vadim Fedorenko <vadfed@fb.com>
15718L:	netdev@vger.kernel.org
15719S:	Maintained
15720F:	drivers/ptp/ptp_ocp.c
15721
15722INTEL PTP DFL ToD DRIVER
15723M:	Tianfei Zhang <tianfei.zhang@intel.com>
15724L:	linux-fpga@vger.kernel.org
15725L:	netdev@vger.kernel.org
15726S:	Maintained
15727F:	drivers/ptp/ptp_dfl_tod.c
15728
15729OPENCORES I2C BUS DRIVER
15730M:	Peter Korsgaard <peter@korsgaard.com>
15731M:	Andrew Lunn <andrew@lunn.ch>
15732L:	linux-i2c@vger.kernel.org
15733S:	Maintained
15734F:	Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15735F:	Documentation/i2c/busses/i2c-ocores.rst
15736F:	drivers/i2c/busses/i2c-ocores.c
15737F:	include/linux/platform_data/i2c-ocores.h
15738
15739OPENRISC ARCHITECTURE
15740M:	Jonas Bonn <jonas@southpole.se>
15741M:	Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15742M:	Stafford Horne <shorne@gmail.com>
15743L:	linux-openrisc@vger.kernel.org
15744S:	Maintained
15745W:	http://openrisc.io
15746T:	git https://github.com/openrisc/linux.git
15747F:	Documentation/devicetree/bindings/openrisc/
15748F:	Documentation/arch/openrisc/
15749F:	arch/openrisc/
15750F:	drivers/irqchip/irq-ompic.c
15751F:	drivers/irqchip/irq-or1k-*
15752
15753OPENVSWITCH
15754M:	Pravin B Shelar <pshelar@ovn.org>
15755L:	netdev@vger.kernel.org
15756L:	dev@openvswitch.org
15757S:	Maintained
15758W:	http://openvswitch.org
15759F:	include/uapi/linux/openvswitch.h
15760F:	net/openvswitch/
15761F:	tools/testing/selftests/net/openvswitch/
15762
15763OPERATING PERFORMANCE POINTS (OPP)
15764M:	Viresh Kumar <vireshk@kernel.org>
15765M:	Nishanth Menon <nm@ti.com>
15766M:	Stephen Boyd <sboyd@kernel.org>
15767L:	linux-pm@vger.kernel.org
15768S:	Maintained
15769T:	git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15770F:	Documentation/devicetree/bindings/opp/
15771F:	Documentation/power/opp.rst
15772F:	drivers/opp/
15773F:	include/linux/pm_opp.h
15774
15775OPL4 DRIVER
15776M:	Clemens Ladisch <clemens@ladisch.de>
15777L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
15778S:	Maintained
15779T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15780F:	sound/drivers/opl4/
15781
15782ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15783M:	Mark Fasheh <mark@fasheh.com>
15784M:	Joel Becker <jlbec@evilplan.org>
15785M:	Joseph Qi <joseph.qi@linux.alibaba.com>
15786L:	ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15787S:	Supported
15788W:	http://ocfs2.wiki.kernel.org
15789F:	Documentation/filesystems/dlmfs.rst
15790F:	Documentation/filesystems/ocfs2.rst
15791F:	fs/ocfs2/
15792
15793ORANGEFS FILESYSTEM
15794M:	Mike Marshall <hubcap@omnibond.com>
15795R:	Martin Brandenburg <martin@omnibond.com>
15796L:	devel@lists.orangefs.org
15797S:	Supported
15798T:	git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15799F:	Documentation/filesystems/orangefs.rst
15800F:	fs/orangefs/
15801
15802ORINOCO DRIVER
15803L:	linux-wireless@vger.kernel.org
15804S:	Orphan
15805W:	https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15806W:	http://www.nongnu.org/orinoco/
15807F:	drivers/net/wireless/intersil/orinoco/
15808
15809OV2659 OMNIVISION SENSOR DRIVER
15810M:	"Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15811L:	linux-media@vger.kernel.org
15812S:	Maintained
15813W:	https://linuxtv.org
15814Q:	http://patchwork.linuxtv.org/project/linux-media/list/
15815T:	git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15816F:	drivers/media/i2c/ov2659.c
15817F:	include/media/i2c/ov2659.h
15818
15819OVERLAY FILESYSTEM
15820M:	Miklos Szeredi <miklos@szeredi.hu>
15821L:	linux-unionfs@vger.kernel.org
15822S:	Supported
15823T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15824F:	Documentation/filesystems/overlayfs.rst
15825F:	fs/overlayfs/
15826
15827P54 WIRELESS DRIVER
15828M:	Christian Lamparter <chunkeey@googlemail.com>
15829L:	linux-wireless@vger.kernel.org
15830S:	Maintained
15831W:	https://wireless.wiki.kernel.org/en/users/Drivers/p54
15832F:	drivers/net/wireless/intersil/p54/
15833
15834PACKET SOCKETS
15835M:	Willem de Bruijn <willemdebruijn.kernel@gmail.com>
15836S:	Maintained
15837F:	include/uapi/linux/if_packet.h
15838F:	net/packet/af_packet.c
15839
15840PACKING
15841M:	Vladimir Oltean <olteanv@gmail.com>
15842L:	netdev@vger.kernel.org
15843S:	Supported
15844F:	Documentation/core-api/packing.rst
15845F:	include/linux/packing.h
15846F:	lib/packing.c
15847
15848PADATA PARALLEL EXECUTION MECHANISM
15849M:	Steffen Klassert <steffen.klassert@secunet.com>
15850M:	Daniel Jordan <daniel.m.jordan@oracle.com>
15851L:	linux-crypto@vger.kernel.org
15852L:	linux-kernel@vger.kernel.org
15853S:	Maintained
15854F:	Documentation/core-api/padata.rst
15855F:	include/linux/padata.h
15856F:	kernel/padata.c
15857
15858PAGE CACHE
15859M:	Matthew Wilcox (Oracle) <willy@infradead.org>
15860L:	linux-fsdevel@vger.kernel.org
15861S:	Supported
15862T:	git git://git.infradead.org/users/willy/pagecache.git
15863F:	Documentation/filesystems/locking.rst
15864F:	Documentation/filesystems/vfs.rst
15865F:	include/linux/pagemap.h
15866F:	mm/filemap.c
15867F:	mm/page-writeback.c
15868F:	mm/readahead.c
15869F:	mm/truncate.c
15870
15871PAGE POOL
15872M:	Jesper Dangaard Brouer <hawk@kernel.org>
15873M:	Ilias Apalodimas <ilias.apalodimas@linaro.org>
15874L:	netdev@vger.kernel.org
15875S:	Supported
15876F:	Documentation/networking/page_pool.rst
15877F:	include/net/page_pool.h
15878F:	include/trace/events/page_pool.h
15879F:	net/core/page_pool.c
15880
15881PAGE TABLE CHECK
15882M:	Pasha Tatashin <pasha.tatashin@soleen.com>
15883M:	Andrew Morton <akpm@linux-foundation.org>
15884L:	linux-mm@kvack.org
15885S:	Maintained
15886F:	Documentation/mm/page_table_check.rst
15887F:	include/linux/page_table_check.h
15888F:	mm/page_table_check.c
15889
15890PANASONIC LAPTOP ACPI EXTRAS DRIVER
15891M:	Kenneth Chan <kenneth.t.chan@gmail.com>
15892L:	platform-driver-x86@vger.kernel.org
15893S:	Maintained
15894F:	drivers/platform/x86/panasonic-laptop.c
15895
15896PARALLAX PING IIO SENSOR DRIVER
15897M:	Andreas Klinger <ak@it-klinger.de>
15898L:	linux-iio@vger.kernel.org
15899S:	Maintained
15900F:	Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15901F:	drivers/iio/proximity/ping.c
15902
15903PARALLEL LCD/KEYPAD PANEL DRIVER
15904M:	Willy Tarreau <willy@haproxy.com>
15905M:	Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15906S:	Odd Fixes
15907F:	Documentation/admin-guide/lcd-panel-cgram.rst
15908F:	drivers/auxdisplay/panel.c
15909
15910PARALLEL PORT SUBSYSTEM
15911M:	Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15912M:	Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15913L:	linux-parport@lists.infradead.org (subscribers-only)
15914S:	Maintained
15915F:	Documentation/driver-api/parport*.rst
15916F:	drivers/char/ppdev.c
15917F:	drivers/parport/
15918F:	include/linux/parport*.h
15919F:	include/uapi/linux/ppdev.h
15920
15921PARAVIRT_OPS INTERFACE
15922M:	Juergen Gross <jgross@suse.com>
15923M:	Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15924R:	Alexey Makhalov <amakhalov@vmware.com>
15925R:	VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15926L:	virtualization@lists.linux-foundation.org
15927L:	x86@kernel.org
15928S:	Supported
15929T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15930F:	Documentation/virt/paravirt_ops.rst
15931F:	arch/*/include/asm/paravirt*.h
15932F:	arch/*/kernel/paravirt*
15933F:	include/linux/hypervisor.h
15934
15935PARISC ARCHITECTURE
15936M:	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15937M:	Helge Deller <deller@gmx.de>
15938L:	linux-parisc@vger.kernel.org
15939S:	Maintained
15940W:	https://parisc.wiki.kernel.org
15941Q:	http://patchwork.kernel.org/project/linux-parisc/list/
15942T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15943T:	git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15944F:	Documentation/arch/parisc/
15945F:	arch/parisc/
15946F:	drivers/char/agp/parisc-agp.c
15947F:	drivers/input/misc/hp_sdc_rtc.c
15948F:	drivers/input/serio/gscps2.c
15949F:	drivers/input/serio/hp_sdc*
15950F:	drivers/parisc/
15951F:	drivers/parport/parport_gsc.*
15952F:	drivers/tty/serial/8250/8250_parisc.c
15953F:	drivers/video/console/sti*
15954F:	drivers/video/fbdev/sti*
15955F:	drivers/video/logo/logo_parisc*
15956F:	include/linux/hp_sdc.h
15957
15958PARMAN
15959M:	Jiri Pirko <jiri@resnulli.us>
15960L:	netdev@vger.kernel.org
15961S:	Supported
15962F:	include/linux/parman.h
15963F:	lib/parman.c
15964F:	lib/test_parman.c
15965
15966PC ENGINES APU BOARD DRIVER
15967M:	Enrico Weigelt, metux IT consult <info@metux.net>
15968S:	Maintained
15969F:	drivers/platform/x86/pcengines-apuv2.c
15970
15971PC87360 HARDWARE MONITORING DRIVER
15972M:	Jim Cromie <jim.cromie@gmail.com>
15973L:	linux-hwmon@vger.kernel.org
15974S:	Maintained
15975F:	Documentation/hwmon/pc87360.rst
15976F:	drivers/hwmon/pc87360.c
15977
15978PC8736x GPIO DRIVER
15979M:	Jim Cromie <jim.cromie@gmail.com>
15980S:	Maintained
15981F:	drivers/char/pc8736x_gpio.c
15982
15983PC87427 HARDWARE MONITORING DRIVER
15984M:	Jean Delvare <jdelvare@suse.com>
15985L:	linux-hwmon@vger.kernel.org
15986S:	Maintained
15987F:	Documentation/hwmon/pc87427.rst
15988F:	drivers/hwmon/pc87427.c
15989
15990PCA9532 LED DRIVER
15991M:	Riku Voipio <riku.voipio@iki.fi>
15992S:	Maintained
15993F:	drivers/leds/leds-pca9532.c
15994F:	include/linux/leds-pca9532.h
15995
15996PCA9541 I2C BUS MASTER SELECTOR DRIVER
15997M:	Guenter Roeck <linux@roeck-us.net>
15998L:	linux-i2c@vger.kernel.org
15999S:	Maintained
16000F:	drivers/i2c/muxes/i2c-mux-pca9541.c
16001
16002PCDP - PRIMARY CONSOLE AND DEBUG PORT
16003M:	Khalid Aziz <khalid@gonehiking.org>
16004S:	Maintained
16005F:	drivers/firmware/pcdp.*
16006
16007PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
16008M:	Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16009M:	Pali Rohár <pali@kernel.org>
16010L:	linux-pci@vger.kernel.org
16011L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16012S:	Maintained
16013F:	Documentation/devicetree/bindings/pci/aardvark-pci.txt
16014F:	drivers/pci/controller/pci-aardvark.c
16015
16016PCI DRIVER FOR ALTERA PCIE IP
16017M:	Joyce Ooi <joyce.ooi@intel.com>
16018L:	linux-pci@vger.kernel.org
16019S:	Supported
16020F:	Documentation/devicetree/bindings/pci/altera-pcie.txt
16021F:	drivers/pci/controller/pcie-altera.c
16022
16023PCI DRIVER FOR APPLIEDMICRO XGENE
16024M:	Toan Le <toan@os.amperecomputing.com>
16025L:	linux-pci@vger.kernel.org
16026L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16027S:	Maintained
16028F:	Documentation/devicetree/bindings/pci/xgene-pci.txt
16029F:	drivers/pci/controller/pci-xgene.c
16030
16031PCI DRIVER FOR ARM VERSATILE PLATFORM
16032M:	Rob Herring <robh@kernel.org>
16033L:	linux-pci@vger.kernel.org
16034L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16035S:	Maintained
16036F:	Documentation/devicetree/bindings/pci/versatile.yaml
16037F:	drivers/pci/controller/pci-versatile.c
16038
16039PCI DRIVER FOR ARMADA 8K
16040M:	Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16041L:	linux-pci@vger.kernel.org
16042L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16043S:	Maintained
16044F:	Documentation/devicetree/bindings/pci/pci-armada8k.txt
16045F:	drivers/pci/controller/dwc/pcie-armada8k.c
16046
16047PCI DRIVER FOR CADENCE PCIE IP
16048M:	Tom Joseph <tjoseph@cadence.com>
16049L:	linux-pci@vger.kernel.org
16050S:	Maintained
16051F:	Documentation/devicetree/bindings/pci/cdns,*
16052F:	drivers/pci/controller/cadence/
16053
16054PCI DRIVER FOR FREESCALE LAYERSCAPE
16055M:	Minghuan Lian <minghuan.Lian@nxp.com>
16056M:	Mingkai Hu <mingkai.hu@nxp.com>
16057M:	Roy Zang <roy.zang@nxp.com>
16058L:	linuxppc-dev@lists.ozlabs.org
16059L:	linux-pci@vger.kernel.org
16060L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16061S:	Maintained
16062F:	drivers/pci/controller/dwc/*layerscape*
16063
16064PCI DRIVER FOR GENERIC OF HOSTS
16065M:	Will Deacon <will@kernel.org>
16066L:	linux-pci@vger.kernel.org
16067L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16068S:	Maintained
16069F:	Documentation/devicetree/bindings/pci/host-generic-pci.yaml
16070F:	drivers/pci/controller/pci-host-common.c
16071F:	drivers/pci/controller/pci-host-generic.c
16072
16073PCI DRIVER FOR IMX6
16074M:	Richard Zhu <hongxing.zhu@nxp.com>
16075M:	Lucas Stach <l.stach@pengutronix.de>
16076L:	linux-pci@vger.kernel.org
16077L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16078S:	Maintained
16079F:	Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-common.yaml
16080F:	Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-ep.yaml
16081F:	Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
16082F:	drivers/pci/controller/dwc/*imx6*
16083
16084PCI DRIVER FOR FU740
16085M:	Paul Walmsley <paul.walmsley@sifive.com>
16086M:	Greentime Hu <greentime.hu@sifive.com>
16087L:	linux-pci@vger.kernel.org
16088S:	Maintained
16089F:	Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
16090F:	drivers/pci/controller/dwc/pcie-fu740.c
16091
16092PCI DRIVER FOR INTEL IXP4XX
16093M:	Linus Walleij <linus.walleij@linaro.org>
16094S:	Maintained
16095F:	Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
16096F:	drivers/pci/controller/pci-ixp4xx.c
16097
16098PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
16099M:	Nirmal Patel <nirmal.patel@linux.intel.com>
16100R:	Jonathan Derrick <jonathan.derrick@linux.dev>
16101L:	linux-pci@vger.kernel.org
16102S:	Supported
16103F:	drivers/pci/controller/vmd.c
16104
16105PCI DRIVER FOR MICROSEMI SWITCHTEC
16106M:	Kurt Schwemmer <kurt.schwemmer@microsemi.com>
16107M:	Logan Gunthorpe <logang@deltatee.com>
16108L:	linux-pci@vger.kernel.org
16109S:	Maintained
16110F:	Documentation/ABI/testing/sysfs-class-switchtec
16111F:	Documentation/driver-api/switchtec.rst
16112F:	drivers/ntb/hw/mscc/
16113F:	drivers/pci/switch/switchtec*
16114F:	include/linux/switchtec.h
16115F:	include/uapi/linux/switchtec_ioctl.h
16116
16117PCI DRIVER FOR MOBIVEIL PCIE IP
16118M:	Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
16119M:	Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
16120L:	linux-pci@vger.kernel.org
16121S:	Supported
16122F:	Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
16123F:	drivers/pci/controller/mobiveil/pcie-mobiveil*
16124
16125PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
16126M:	Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16127M:	Pali Rohár <pali@kernel.org>
16128L:	linux-pci@vger.kernel.org
16129L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16130S:	Maintained
16131F:	drivers/pci/controller/*mvebu*
16132
16133PCI DRIVER FOR NVIDIA TEGRA
16134M:	Thierry Reding <thierry.reding@gmail.com>
16135L:	linux-tegra@vger.kernel.org
16136L:	linux-pci@vger.kernel.org
16137S:	Supported
16138F:	Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
16139F:	drivers/pci/controller/pci-tegra.c
16140
16141PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
16142M:	Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
16143L:	linux-pci@vger.kernel.org
16144L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16145S:	Maintained
16146F:	Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
16147F:	drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
16148
16149PCI DRIVER FOR RENESAS R-CAR
16150M:	Marek Vasut <marek.vasut+renesas@gmail.com>
16151M:	Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16152L:	linux-pci@vger.kernel.org
16153L:	linux-renesas-soc@vger.kernel.org
16154S:	Maintained
16155F:	Documentation/devicetree/bindings/pci/*rcar*
16156F:	drivers/pci/controller/*rcar*
16157
16158PCI DRIVER FOR SAMSUNG EXYNOS
16159M:	Jingoo Han <jingoohan1@gmail.com>
16160L:	linux-pci@vger.kernel.org
16161L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16162L:	linux-samsung-soc@vger.kernel.org
16163S:	Maintained
16164F:	drivers/pci/controller/dwc/pci-exynos.c
16165
16166PCI DRIVER FOR SYNOPSYS DESIGNWARE
16167M:	Jingoo Han <jingoohan1@gmail.com>
16168M:	Gustavo Pimentel <gustavo.pimentel@synopsys.com>
16169L:	linux-pci@vger.kernel.org
16170S:	Maintained
16171F:	Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
16172F:	Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
16173F:	drivers/pci/controller/dwc/*designware*
16174
16175PCI DRIVER FOR TI DRA7XX/J721E
16176M:	Vignesh Raghavendra <vigneshr@ti.com>
16177L:	linux-omap@vger.kernel.org
16178L:	linux-pci@vger.kernel.org
16179L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16180S:	Supported
16181F:	Documentation/devicetree/bindings/pci/ti-pci.txt
16182F:	drivers/pci/controller/cadence/pci-j721e.c
16183F:	drivers/pci/controller/dwc/pci-dra7xx.c
16184
16185PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
16186M:	Linus Walleij <linus.walleij@linaro.org>
16187L:	linux-pci@vger.kernel.org
16188S:	Maintained
16189F:	Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
16190F:	drivers/pci/controller/pci-v3-semi.c
16191
16192PCI ENDPOINT SUBSYSTEM
16193M:	Lorenzo Pieralisi <lpieralisi@kernel.org>
16194M:	Krzysztof Wilczyński <kw@linux.com>
16195R:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16196R:	Kishon Vijay Abraham I <kishon@kernel.org>
16197L:	linux-pci@vger.kernel.org
16198S:	Supported
16199Q:	https://patchwork.kernel.org/project/linux-pci/list/
16200B:	https://bugzilla.kernel.org
16201C:	irc://irc.oftc.net/linux-pci
16202T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16203F:	Documentation/PCI/endpoint/*
16204F:	Documentation/misc-devices/pci-endpoint-test.rst
16205F:	drivers/misc/pci_endpoint_test.c
16206F:	drivers/pci/endpoint/
16207F:	tools/pci/
16208
16209PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
16210M:	Mahesh J Salgaonkar <mahesh@linux.ibm.com>
16211R:	Oliver O'Halloran <oohall@gmail.com>
16212L:	linuxppc-dev@lists.ozlabs.org
16213S:	Supported
16214F:	Documentation/PCI/pci-error-recovery.rst
16215F:	Documentation/powerpc/eeh-pci-error-recovery.rst
16216F:	arch/powerpc/include/*/eeh*.h
16217F:	arch/powerpc/kernel/eeh*.c
16218F:	arch/powerpc/platforms/*/eeh*.c
16219F:	drivers/pci/pcie/aer.c
16220F:	drivers/pci/pcie/dpc.c
16221F:	drivers/pci/pcie/err.c
16222
16223PCI ERROR RECOVERY
16224M:	Linas Vepstas <linasvepstas@gmail.com>
16225L:	linux-pci@vger.kernel.org
16226S:	Supported
16227F:	Documentation/PCI/pci-error-recovery.rst
16228
16229PCI PEER-TO-PEER DMA (P2PDMA)
16230M:	Bjorn Helgaas <bhelgaas@google.com>
16231M:	Logan Gunthorpe <logang@deltatee.com>
16232L:	linux-pci@vger.kernel.org
16233S:	Supported
16234Q:	https://patchwork.kernel.org/project/linux-pci/list/
16235B:	https://bugzilla.kernel.org
16236C:	irc://irc.oftc.net/linux-pci
16237T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16238F:	Documentation/driver-api/pci/p2pdma.rst
16239F:	drivers/pci/p2pdma.c
16240F:	include/linux/pci-p2pdma.h
16241
16242PCI MSI DRIVER FOR ALTERA MSI IP
16243M:	Joyce Ooi <joyce.ooi@intel.com>
16244L:	linux-pci@vger.kernel.org
16245S:	Supported
16246F:	Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
16247F:	drivers/pci/controller/pcie-altera-msi.c
16248
16249PCI MSI DRIVER FOR APPLIEDMICRO XGENE
16250M:	Toan Le <toan@os.amperecomputing.com>
16251L:	linux-pci@vger.kernel.org
16252L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16253S:	Maintained
16254F:	Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
16255F:	drivers/pci/controller/pci-xgene-msi.c
16256
16257PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
16258M:	Lorenzo Pieralisi <lpieralisi@kernel.org>
16259M:	Krzysztof Wilczyński <kw@linux.com>
16260R:	Rob Herring <robh@kernel.org>
16261L:	linux-pci@vger.kernel.org
16262S:	Supported
16263Q:	https://patchwork.kernel.org/project/linux-pci/list/
16264B:	https://bugzilla.kernel.org
16265C:	irc://irc.oftc.net/linux-pci
16266T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16267F:	Documentation/devicetree/bindings/pci/
16268F:	drivers/pci/controller/
16269F:	drivers/pci/pci-bridge-emul.c
16270F:	drivers/pci/pci-bridge-emul.h
16271
16272PCI SUBSYSTEM
16273M:	Bjorn Helgaas <bhelgaas@google.com>
16274L:	linux-pci@vger.kernel.org
16275S:	Supported
16276Q:	https://patchwork.kernel.org/project/linux-pci/list/
16277B:	https://bugzilla.kernel.org
16278C:	irc://irc.oftc.net/linux-pci
16279T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16280F:	Documentation/PCI/
16281F:	Documentation/devicetree/bindings/pci/
16282F:	arch/x86/kernel/early-quirks.c
16283F:	arch/x86/kernel/quirks.c
16284F:	arch/x86/pci/
16285F:	drivers/acpi/pci*
16286F:	drivers/pci/
16287F:	include/asm-generic/pci*
16288F:	include/linux/of_pci.h
16289F:	include/linux/pci*
16290F:	include/uapi/linux/pci*
16291F:	lib/pci*
16292
16293PCIE DRIVER FOR AMAZON ANNAPURNA LABS
16294M:	Jonathan Chocron <jonnyc@amazon.com>
16295L:	linux-pci@vger.kernel.org
16296S:	Maintained
16297F:	Documentation/devicetree/bindings/pci/pcie-al.txt
16298F:	drivers/pci/controller/dwc/pcie-al.c
16299
16300PCIE DRIVER FOR AMLOGIC MESON
16301M:	Yue Wang <yue.wang@Amlogic.com>
16302L:	linux-pci@vger.kernel.org
16303L:	linux-amlogic@lists.infradead.org
16304S:	Maintained
16305F:	drivers/pci/controller/dwc/pci-meson.c
16306
16307PCIE DRIVER FOR AXIS ARTPEC
16308M:	Jesper Nilsson <jesper.nilsson@axis.com>
16309L:	linux-arm-kernel@axis.com
16310L:	linux-pci@vger.kernel.org
16311S:	Maintained
16312F:	Documentation/devicetree/bindings/pci/axis,artpec*
16313F:	drivers/pci/controller/dwc/*artpec*
16314
16315PCIE DRIVER FOR CAVIUM THUNDERX
16316M:	Robert Richter <rric@kernel.org>
16317L:	linux-pci@vger.kernel.org
16318L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16319S:	Odd Fixes
16320F:	drivers/pci/controller/pci-thunder-*
16321
16322PCIE DRIVER FOR HISILICON
16323M:	Zhou Wang <wangzhou1@hisilicon.com>
16324L:	linux-pci@vger.kernel.org
16325S:	Maintained
16326F:	drivers/pci/controller/dwc/pcie-hisi.c
16327
16328PCIE DRIVER FOR HISILICON KIRIN
16329M:	Xiaowei Song <songxiaowei@hisilicon.com>
16330M:	Binghui Wang <wangbinghui@hisilicon.com>
16331L:	linux-pci@vger.kernel.org
16332S:	Maintained
16333F:	Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
16334F:	drivers/pci/controller/dwc/pcie-kirin.c
16335
16336PCIE DRIVER FOR HISILICON STB
16337M:	Shawn Guo <shawn.guo@linaro.org>
16338L:	linux-pci@vger.kernel.org
16339S:	Maintained
16340F:	Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
16341F:	drivers/pci/controller/dwc/pcie-histb.c
16342
16343PCIE DRIVER FOR INTEL KEEM BAY
16344M:	Srikanth Thokala <srikanth.thokala@intel.com>
16345L:	linux-pci@vger.kernel.org
16346S:	Supported
16347F:	Documentation/devicetree/bindings/pci/intel,keembay-pcie*
16348F:	drivers/pci/controller/dwc/pcie-keembay.c
16349
16350PCIE DRIVER FOR INTEL LGM GW SOC
16351M:	Rahul Tanwar <rtanwar@maxlinear.com>
16352L:	linux-pci@vger.kernel.org
16353S:	Maintained
16354F:	Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
16355F:	drivers/pci/controller/dwc/pcie-intel-gw.c
16356
16357PCIE DRIVER FOR MEDIATEK
16358M:	Ryder Lee <ryder.lee@mediatek.com>
16359M:	Jianjun Wang <jianjun.wang@mediatek.com>
16360L:	linux-pci@vger.kernel.org
16361L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16362S:	Supported
16363F:	Documentation/devicetree/bindings/pci/mediatek*
16364F:	drivers/pci/controller/*mediatek*
16365
16366PCIE DRIVER FOR MICROCHIP
16367M:	Daire McNamara <daire.mcnamara@microchip.com>
16368L:	linux-pci@vger.kernel.org
16369S:	Supported
16370F:	Documentation/devicetree/bindings/pci/microchip*
16371F:	drivers/pci/controller/*microchip*
16372
16373PCIE DRIVER FOR QUALCOMM MSM
16374M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16375L:	linux-pci@vger.kernel.org
16376L:	linux-arm-msm@vger.kernel.org
16377S:	Maintained
16378F:	drivers/pci/controller/dwc/pcie-qcom.c
16379
16380PCIE ENDPOINT DRIVER FOR QUALCOMM
16381M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16382L:	linux-pci@vger.kernel.org
16383L:	linux-arm-msm@vger.kernel.org
16384S:	Maintained
16385F:	Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
16386F:	drivers/pci/controller/dwc/pcie-qcom-ep.c
16387
16388PCIE DRIVER FOR ROCKCHIP
16389M:	Shawn Lin <shawn.lin@rock-chips.com>
16390L:	linux-pci@vger.kernel.org
16391L:	linux-rockchip@lists.infradead.org
16392S:	Maintained
16393F:	Documentation/devicetree/bindings/pci/rockchip,rk3399-pcie*
16394F:	drivers/pci/controller/pcie-rockchip*
16395
16396PCIE DRIVER FOR SOCIONEXT UNIPHIER
16397M:	Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16398L:	linux-pci@vger.kernel.org
16399S:	Maintained
16400F:	Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
16401F:	drivers/pci/controller/dwc/pcie-uniphier*
16402
16403PCIE DRIVER FOR ST SPEAR13XX
16404M:	Pratyush Anand <pratyush.anand@gmail.com>
16405L:	linux-pci@vger.kernel.org
16406S:	Maintained
16407F:	drivers/pci/controller/dwc/*spear*
16408
16409PCI DRIVER FOR XILINX VERSAL CPM
16410M:	Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
16411M:	Michal Simek <michal.simek@amd.com>
16412L:	linux-pci@vger.kernel.org
16413S:	Maintained
16414F:	Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
16415F:	drivers/pci/controller/pcie-xilinx-cpm.c
16416
16417PCMCIA SUBSYSTEM
16418M:	Dominik Brodowski <linux@dominikbrodowski.net>
16419S:	Odd Fixes
16420T:	git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
16421F:	Documentation/pcmcia/
16422F:	drivers/pcmcia/
16423F:	include/pcmcia/
16424F:	tools/pcmcia/
16425
16426PCNET32 NETWORK DRIVER
16427M:	Don Fry <pcnet32@frontier.com>
16428L:	netdev@vger.kernel.org
16429S:	Maintained
16430F:	drivers/net/ethernet/amd/pcnet32.c
16431
16432PCRYPT PARALLEL CRYPTO ENGINE
16433M:	Steffen Klassert <steffen.klassert@secunet.com>
16434L:	linux-crypto@vger.kernel.org
16435S:	Maintained
16436F:	crypto/pcrypt.c
16437F:	include/crypto/pcrypt.h
16438
16439PECI HARDWARE MONITORING DRIVERS
16440M:	Iwona Winiarska <iwona.winiarska@intel.com>
16441L:	linux-hwmon@vger.kernel.org
16442S:	Supported
16443F:	Documentation/hwmon/peci-cputemp.rst
16444F:	Documentation/hwmon/peci-dimmtemp.rst
16445F:	drivers/hwmon/peci/
16446
16447PECI SUBSYSTEM
16448M:	Iwona Winiarska <iwona.winiarska@intel.com>
16449L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
16450S:	Supported
16451F:	Documentation/devicetree/bindings/peci/
16452F:	Documentation/peci/
16453F:	drivers/peci/
16454F:	include/linux/peci-cpu.h
16455F:	include/linux/peci.h
16456
16457PENSANDO ETHERNET DRIVERS
16458M:	Shannon Nelson <shannon.nelson@amd.com>
16459M:	Brett Creeley <brett.creeley@amd.com>
16460M:	drivers@pensando.io
16461L:	netdev@vger.kernel.org
16462S:	Supported
16463F:	Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
16464F:	drivers/net/ethernet/pensando/
16465
16466PER-CPU MEMORY ALLOCATOR
16467M:	Dennis Zhou <dennis@kernel.org>
16468M:	Tejun Heo <tj@kernel.org>
16469M:	Christoph Lameter <cl@linux.com>
16470L:	linux-mm@kvack.org
16471S:	Maintained
16472T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16473F:	arch/*/include/asm/percpu.h
16474F:	include/linux/percpu*.h
16475F:	lib/percpu*.c
16476F:	mm/percpu*.c
16477
16478PER-TASK DELAY ACCOUNTING
16479M:	Balbir Singh <bsingharora@gmail.com>
16480S:	Maintained
16481F:	include/linux/delayacct.h
16482F:	kernel/delayacct.c
16483
16484PERFORMANCE EVENTS SUBSYSTEM
16485M:	Peter Zijlstra <peterz@infradead.org>
16486M:	Ingo Molnar <mingo@redhat.com>
16487M:	Arnaldo Carvalho de Melo <acme@kernel.org>
16488R:	Mark Rutland <mark.rutland@arm.com>
16489R:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
16490R:	Jiri Olsa <jolsa@kernel.org>
16491R:	Namhyung Kim <namhyung@kernel.org>
16492R:	Ian Rogers <irogers@google.com>
16493R:	Adrian Hunter <adrian.hunter@intel.com>
16494L:	linux-perf-users@vger.kernel.org
16495L:	linux-kernel@vger.kernel.org
16496S:	Supported
16497W:	https://perf.wiki.kernel.org/
16498T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16499F:	arch/*/events/*
16500F:	arch/*/events/*/*
16501F:	arch/*/include/asm/perf_event.h
16502F:	arch/*/kernel/*/*/perf_event*.c
16503F:	arch/*/kernel/*/perf_event*.c
16504F:	arch/*/kernel/perf_callchain.c
16505F:	arch/*/kernel/perf_event*.c
16506F:	include/linux/perf_event.h
16507F:	include/uapi/linux/perf_event.h
16508F:	kernel/events/*
16509F:	tools/lib/perf/
16510F:	tools/perf/
16511
16512PERFORMANCE EVENTS TOOLING ARM64
16513R:	John Garry <john.g.garry@oracle.com>
16514R:	Will Deacon <will@kernel.org>
16515R:	James Clark <james.clark@arm.com>
16516R:	Mike Leach <mike.leach@linaro.org>
16517R:	Leo Yan <leo.yan@linaro.org>
16518L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16519S:	Supported
16520F:	tools/build/feature/test-libopencsd.c
16521F:	tools/perf/arch/arm*/
16522F:	tools/perf/pmu-events/arch/arm64/
16523F:	tools/perf/util/arm-spe*
16524F:	tools/perf/util/cs-etm*
16525
16526PERSONALITY HANDLING
16527M:	Christoph Hellwig <hch@infradead.org>
16528L:	linux-abi-devel@lists.sourceforge.net
16529S:	Maintained
16530F:	include/linux/personality.h
16531F:	include/uapi/linux/personality.h
16532
16533PHOENIX RC FLIGHT CONTROLLER ADAPTER
16534M:	Marcus Folkesson <marcus.folkesson@gmail.com>
16535L:	linux-input@vger.kernel.org
16536S:	Maintained
16537F:	Documentation/input/devices/pxrc.rst
16538F:	drivers/input/joystick/pxrc.c
16539
16540PHONET PROTOCOL
16541M:	Remi Denis-Courmont <courmisch@gmail.com>
16542S:	Supported
16543F:	Documentation/networking/phonet.rst
16544F:	include/linux/phonet.h
16545F:	include/net/phonet/
16546F:	include/uapi/linux/phonet.h
16547F:	net/phonet/
16548
16549PHRAM MTD DRIVER
16550M:	Joern Engel <joern@lazybastard.org>
16551L:	linux-mtd@lists.infradead.org
16552S:	Maintained
16553F:	drivers/mtd/devices/phram.c
16554
16555PICOLCD HID DRIVER
16556M:	Bruno Prémont <bonbons@linux-vserver.org>
16557L:	linux-input@vger.kernel.org
16558S:	Maintained
16559F:	drivers/hid/hid-picolcd*
16560
16561PIDFD API
16562M:	Christian Brauner <christian@brauner.io>
16563L:	linux-kernel@vger.kernel.org
16564S:	Maintained
16565T:	git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16566F:	samples/pidfd/
16567F:	tools/testing/selftests/clone3/
16568F:	tools/testing/selftests/pid_namespace/
16569F:	tools/testing/selftests/pidfd/
16570K:	(?i)pidfd
16571K:	(?i)clone3
16572K:	\b(clone_args|kernel_clone_args)\b
16573
16574PIN CONTROL SUBSYSTEM
16575M:	Linus Walleij <linus.walleij@linaro.org>
16576L:	linux-gpio@vger.kernel.org
16577S:	Maintained
16578T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16579F:	Documentation/devicetree/bindings/pinctrl/
16580F:	Documentation/driver-api/pin-control.rst
16581F:	drivers/pinctrl/
16582F:	include/dt-bindings/pinctrl/
16583F:	include/linux/pinctrl/
16584
16585PIN CONTROLLER - AMD
16586M:	Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16587M:	Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16588S:	Maintained
16589F:	drivers/pinctrl/pinctrl-amd.c
16590
16591PIN CONTROLLER - FREESCALE
16592M:	Dong Aisheng <aisheng.dong@nxp.com>
16593M:	Fabio Estevam <festevam@gmail.com>
16594M:	Shawn Guo <shawnguo@kernel.org>
16595M:	Jacky Bai <ping.bai@nxp.com>
16596R:	Pengutronix Kernel Team <kernel@pengutronix.de>
16597L:	linux-gpio@vger.kernel.org
16598S:	Maintained
16599F:	Documentation/devicetree/bindings/pinctrl/fsl,*
16600F:	drivers/pinctrl/freescale/
16601
16602PIN CONTROLLER - INTEL
16603M:	Mika Westerberg <mika.westerberg@linux.intel.com>
16604M:	Andy Shevchenko <andy@kernel.org>
16605S:	Supported
16606T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16607F:	drivers/pinctrl/intel/
16608
16609PIN CONTROLLER - KEEMBAY
16610M:	Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16611S:	Supported
16612F:	drivers/pinctrl/pinctrl-keembay*
16613
16614PIN CONTROLLER - MEDIATEK
16615M:	Sean Wang <sean.wang@kernel.org>
16616L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16617S:	Maintained
16618F:	Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16619F:	Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
16620F:	Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16621F:	Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16622F:	drivers/pinctrl/mediatek/
16623
16624PIN CONTROLLER - MEDIATEK MIPS
16625M:	Arınç ÜNAL <arinc.unal@arinc9.com>
16626M:	Sergio Paracuellos <sergio.paracuellos@gmail.com>
16627L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16628L:	linux-mips@vger.kernel.org
16629S:	Maintained
16630F:	Documentation/devicetree/bindings/pinctrl/mediatek,mt7620-pinctrl.yaml
16631F:	Documentation/devicetree/bindings/pinctrl/mediatek,mt7621-pinctrl.yaml
16632F:	Documentation/devicetree/bindings/pinctrl/mediatek,mt76x8-pinctrl.yaml
16633F:	Documentation/devicetree/bindings/pinctrl/ralink,rt2880-pinctrl.yaml
16634F:	Documentation/devicetree/bindings/pinctrl/ralink,rt305x-pinctrl.yaml
16635F:	Documentation/devicetree/bindings/pinctrl/ralink,rt3352-pinctrl.yaml
16636F:	Documentation/devicetree/bindings/pinctrl/ralink,rt3883-pinctrl.yaml
16637F:	Documentation/devicetree/bindings/pinctrl/ralink,rt5350-pinctrl.yaml
16638F:	drivers/pinctrl/mediatek/pinctrl-mt7620.c
16639F:	drivers/pinctrl/mediatek/pinctrl-mt7621.c
16640F:	drivers/pinctrl/mediatek/pinctrl-mt76x8.c
16641F:	drivers/pinctrl/mediatek/pinctrl-mtmips.*
16642F:	drivers/pinctrl/mediatek/pinctrl-rt2880.c
16643F:	drivers/pinctrl/mediatek/pinctrl-rt305x.c
16644F:	drivers/pinctrl/mediatek/pinctrl-rt3883.c
16645
16646PIN CONTROLLER - MICROCHIP AT91
16647M:	Ludovic Desroches <ludovic.desroches@microchip.com>
16648L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16649L:	linux-gpio@vger.kernel.org
16650S:	Supported
16651F:	drivers/gpio/gpio-sama5d2-piobu.c
16652F:	drivers/pinctrl/pinctrl-at91*
16653
16654PIN CONTROLLER - NXP S32
16655M:	Chester Lin <clin@suse.com>
16656R:	NXP S32 Linux Team <s32@nxp.com>
16657L:	linux-gpio@vger.kernel.org
16658S:	Maintained
16659F:	Documentation/devicetree/bindings/pinctrl/nxp,s32*
16660F:	drivers/pinctrl/nxp/
16661
16662PIN CONTROLLER - QUALCOMM
16663M:	Bjorn Andersson <andersson@kernel.org>
16664L:	linux-arm-msm@vger.kernel.org
16665S:	Maintained
16666F:	Documentation/devicetree/bindings/pinctrl/qcom,*
16667F:	drivers/pinctrl/qcom/
16668
16669PIN CONTROLLER - RENESAS
16670M:	Geert Uytterhoeven <geert+renesas@glider.be>
16671L:	linux-renesas-soc@vger.kernel.org
16672S:	Supported
16673T:	git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16674F:	Documentation/devicetree/bindings/pinctrl/renesas,*
16675F:	drivers/pinctrl/renesas/
16676
16677PIN CONTROLLER - SAMSUNG
16678M:	Tomasz Figa <tomasz.figa@gmail.com>
16679M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16680M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
16681R:	Alim Akhtar <alim.akhtar@samsung.com>
16682L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16683L:	linux-samsung-soc@vger.kernel.org
16684S:	Maintained
16685C:	irc://irc.libera.chat/linux-exynos
16686Q:	https://patchwork.kernel.org/project/linux-samsung-soc/list/
16687B:	mailto:linux-samsung-soc@vger.kernel.org
16688T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16689F:	Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16690F:	drivers/pinctrl/samsung/
16691F:	include/dt-bindings/pinctrl/samsung.h
16692
16693PIN CONTROLLER - SINGLE
16694M:	Tony Lindgren <tony@atomide.com>
16695M:	Haojian Zhuang <haojian.zhuang@linaro.org>
16696L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16697L:	linux-omap@vger.kernel.org
16698S:	Maintained
16699F:	drivers/pinctrl/pinctrl-single.c
16700
16701PIN CONTROLLER - SUNPLUS / TIBBO
16702M:	Dvorkin Dmitry <dvorkin@tibbo.com>
16703M:	Wells Lu <wellslutw@gmail.com>
16704L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16705S:	Maintained
16706W:	https://sunplus.atlassian.net/wiki/spaces/doc/overview
16707F:	Documentation/devicetree/bindings/pinctrl/sunplus,*
16708F:	drivers/pinctrl/sunplus/
16709F:	include/dt-bindings/pinctrl/sppctl*.h
16710
16711PINE64 PINEPHONE KEYBOARD DRIVER
16712M:	Samuel Holland <samuel@sholland.org>
16713S:	Supported
16714F:	Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
16715F:	drivers/input/keyboard/pinephone-keyboard.c
16716
16717PKTCDVD DRIVER
16718M:	linux-block@vger.kernel.org
16719S:	Orphan
16720F:	drivers/block/pktcdvd.c
16721F:	include/linux/pktcdvd.h
16722F:	include/uapi/linux/pktcdvd.h
16723
16724PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16725M:	Tomasz Duszynski <tduszyns@gmail.com>
16726S:	Maintained
16727F:	Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16728F:	drivers/iio/chemical/pms7003.c
16729
16730PLCA RECONCILIATION SUBLAYER (IEEE802.3 Clause 148)
16731M:	Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
16732L:	netdev@vger.kernel.org
16733S:	Maintained
16734F:	drivers/net/phy/mdio-open-alliance.h
16735F:	net/ethtool/plca.c
16736
16737PLDMFW LIBRARY
16738M:	Jacob Keller <jacob.e.keller@intel.com>
16739S:	Maintained
16740F:	Documentation/driver-api/pldmfw/
16741F:	include/linux/pldmfw.h
16742F:	lib/pldmfw/
16743
16744PLX DMA DRIVER
16745M:	Logan Gunthorpe <logang@deltatee.com>
16746S:	Maintained
16747F:	drivers/dma/plx_dma.c
16748
16749PM6764TR DRIVER
16750M:	Charles Hsu	<hsu.yungteng@gmail.com>
16751L:	linux-hwmon@vger.kernel.org
16752S:	Maintained
16753F:	Documentation/hwmon/pm6764tr.rst
16754F:	drivers/hwmon/pmbus/pm6764tr.c
16755
16756PM-GRAPH UTILITY
16757M:	"Todd E Brandt" <todd.e.brandt@linux.intel.com>
16758L:	linux-pm@vger.kernel.org
16759S:	Supported
16760W:	https://01.org/pm-graph
16761B:	https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16762T:	git git://github.com/intel/pm-graph
16763F:	tools/power/pm-graph
16764
16765PMBUS HARDWARE MONITORING DRIVERS
16766M:	Guenter Roeck <linux@roeck-us.net>
16767L:	linux-hwmon@vger.kernel.org
16768S:	Maintained
16769W:	http://hwmon.wiki.kernel.org/
16770W:	http://www.roeck-us.net/linux/drivers/
16771T:	git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16772F:	Documentation/devicetree/bindings/hwmon/ltc2978.txt
16773F:	Documentation/devicetree/bindings/hwmon/max31785.txt
16774F:	Documentation/hwmon/adm1275.rst
16775F:	Documentation/hwmon/ibm-cffps.rst
16776F:	Documentation/hwmon/ir35221.rst
16777F:	Documentation/hwmon/lm25066.rst
16778F:	Documentation/hwmon/ltc2978.rst
16779F:	Documentation/hwmon/ltc3815.rst
16780F:	Documentation/hwmon/max16064.rst
16781F:	Documentation/hwmon/max20751.rst
16782F:	Documentation/hwmon/max31785.rst
16783F:	Documentation/hwmon/max34440.rst
16784F:	Documentation/hwmon/max8688.rst
16785F:	Documentation/hwmon/pmbus-core.rst
16786F:	Documentation/hwmon/pmbus.rst
16787F:	Documentation/hwmon/tps40422.rst
16788F:	Documentation/hwmon/ucd9000.rst
16789F:	Documentation/hwmon/ucd9200.rst
16790F:	Documentation/hwmon/zl6100.rst
16791F:	drivers/hwmon/pmbus/
16792F:	include/linux/pmbus.h
16793
16794PMC SIERRA MaxRAID DRIVER
16795L:	linux-scsi@vger.kernel.org
16796S:	Orphan
16797W:	http://www.pmc-sierra.com/
16798F:	drivers/scsi/pmcraid.*
16799
16800PMC SIERRA PM8001 DRIVER
16801M:	Jack Wang <jinpu.wang@cloud.ionos.com>
16802L:	linux-scsi@vger.kernel.org
16803S:	Supported
16804F:	drivers/scsi/pm8001/
16805
16806PNI RM3100 IIO DRIVER
16807M:	Song Qiang <songqiang1304521@gmail.com>
16808L:	linux-iio@vger.kernel.org
16809S:	Maintained
16810F:	Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16811F:	drivers/iio/magnetometer/rm3100*
16812
16813PNP SUPPORT
16814M:	"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16815L:	linux-acpi@vger.kernel.org
16816S:	Maintained
16817F:	drivers/pnp/
16818F:	include/linux/pnp.h
16819
16820POSIX CLOCKS and TIMERS
16821M:	Thomas Gleixner <tglx@linutronix.de>
16822L:	linux-kernel@vger.kernel.org
16823S:	Maintained
16824T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16825F:	fs/timerfd.c
16826F:	include/linux/time_namespace.h
16827F:	include/linux/timer*
16828F:	kernel/time/*timer*
16829F:	kernel/time/namespace.c
16830
16831POWER MANAGEMENT CORE
16832M:	"Rafael J. Wysocki" <rafael@kernel.org>
16833L:	linux-pm@vger.kernel.org
16834S:	Supported
16835B:	https://bugzilla.kernel.org
16836T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16837F:	drivers/base/power/
16838F:	drivers/powercap/
16839F:	include/linux/intel_rapl.h
16840F:	include/linux/pm.h
16841F:	include/linux/pm_*
16842F:	include/linux/powercap.h
16843F:	kernel/configs/nopm.config
16844
16845DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16846M:	Daniel Lezcano <daniel.lezcano@kernel.org>
16847L:	linux-pm@vger.kernel.org
16848S:	Supported
16849B:	https://bugzilla.kernel.org
16850T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16851F:	drivers/powercap/dtpm*
16852F:	include/linux/dtpm.h
16853
16854POWER STATE COORDINATION INTERFACE (PSCI)
16855M:	Mark Rutland <mark.rutland@arm.com>
16856M:	Lorenzo Pieralisi <lpieralisi@kernel.org>
16857L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16858S:	Maintained
16859F:	drivers/firmware/psci/
16860F:	include/linux/psci.h
16861F:	include/uapi/linux/psci.h
16862
16863POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16864M:	Sebastian Reichel <sre@kernel.org>
16865L:	linux-pm@vger.kernel.org
16866S:	Maintained
16867T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16868F:	Documentation/ABI/testing/sysfs-class-power
16869F:	Documentation/devicetree/bindings/power/supply/
16870F:	drivers/power/supply/
16871F:	include/linux/power/
16872F:	include/linux/power_supply.h
16873
16874POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16875M:	Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16876L:	linuxppc-dev@lists.ozlabs.org
16877S:	Maintained
16878F:	drivers/char/powernv-op-panel.c
16879
16880PPP OVER ATM (RFC 2364)
16881M:	Mitchell Blank Jr <mitch@sfgoth.com>
16882S:	Maintained
16883F:	include/uapi/linux/atmppp.h
16884F:	net/atm/pppoatm.c
16885
16886PPP OVER ETHERNET
16887M:	Michal Ostrowski <mostrows@earthlink.net>
16888S:	Maintained
16889F:	drivers/net/ppp/pppoe.c
16890F:	drivers/net/ppp/pppox.c
16891
16892PPP OVER L2TP
16893M:	James Chapman <jchapman@katalix.com>
16894S:	Maintained
16895F:	include/linux/if_pppol2tp.h
16896F:	include/uapi/linux/if_pppol2tp.h
16897F:	net/l2tp/l2tp_ppp.c
16898
16899PPP PROTOCOL DRIVERS AND COMPRESSORS
16900L:	linux-ppp@vger.kernel.org
16901S:	Orphan
16902F:	drivers/net/ppp/ppp_*
16903
16904PPS SUPPORT
16905M:	Rodolfo Giometti <giometti@enneenne.com>
16906L:	linuxpps@ml.enneenne.com (subscribers-only)
16907S:	Maintained
16908W:	http://wiki.enneenne.com/index.php/LinuxPPS_support
16909F:	Documentation/ABI/testing/sysfs-pps
16910F:	Documentation/devicetree/bindings/pps/pps-gpio.txt
16911F:	Documentation/driver-api/pps.rst
16912F:	drivers/pps/
16913F:	include/linux/pps*.h
16914F:	include/uapi/linux/pps.h
16915
16916PPTP DRIVER
16917M:	Dmitry Kozlov <xeb@mail.ru>
16918L:	netdev@vger.kernel.org
16919S:	Maintained
16920W:	http://sourceforge.net/projects/accel-pptp
16921F:	drivers/net/ppp/pptp.c
16922
16923PRESSURE STALL INFORMATION (PSI)
16924M:	Johannes Weiner <hannes@cmpxchg.org>
16925M:	Suren Baghdasaryan <surenb@google.com>
16926S:	Maintained
16927F:	include/linux/psi*
16928F:	kernel/sched/psi.c
16929
16930PRINTK
16931M:	Petr Mladek <pmladek@suse.com>
16932M:	Sergey Senozhatsky <senozhatsky@chromium.org>
16933R:	Steven Rostedt <rostedt@goodmis.org>
16934R:	John Ogness <john.ogness@linutronix.de>
16935S:	Maintained
16936T:	git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16937F:	include/linux/printk.h
16938F:	kernel/printk/
16939
16940PRINTK INDEXING
16941R:	Chris Down <chris@chrisdown.name>
16942S:	Maintained
16943F:	Documentation/core-api/printk-index.rst
16944F:	kernel/printk/index.c
16945K:	printk_index
16946
16947PROC FILESYSTEM
16948L:	linux-kernel@vger.kernel.org
16949L:	linux-fsdevel@vger.kernel.org
16950S:	Maintained
16951F:	Documentation/filesystems/proc.rst
16952F:	fs/proc/
16953F:	include/linux/proc_fs.h
16954F:	tools/testing/selftests/proc/
16955
16956PROC SYSCTL
16957M:	Luis Chamberlain <mcgrof@kernel.org>
16958M:	Kees Cook <keescook@chromium.org>
16959M:	Iurii Zaikin <yzaikin@google.com>
16960L:	linux-kernel@vger.kernel.org
16961L:	linux-fsdevel@vger.kernel.org
16962S:	Maintained
16963T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16964F:	fs/proc/proc_sysctl.c
16965F:	include/linux/sysctl.h
16966F:	kernel/sysctl-test.c
16967F:	kernel/sysctl.c
16968F:	tools/testing/selftests/sysctl/
16969
16970PS3 NETWORK SUPPORT
16971M:	Geoff Levand <geoff@infradead.org>
16972L:	netdev@vger.kernel.org
16973L:	linuxppc-dev@lists.ozlabs.org
16974S:	Maintained
16975F:	drivers/net/ethernet/toshiba/ps3_gelic_net.*
16976
16977PS3 PLATFORM SUPPORT
16978M:	Geoff Levand <geoff@infradead.org>
16979L:	linuxppc-dev@lists.ozlabs.org
16980S:	Maintained
16981F:	arch/powerpc/boot/ps3*
16982F:	arch/powerpc/include/asm/lv1call.h
16983F:	arch/powerpc/include/asm/ps3*.h
16984F:	arch/powerpc/platforms/ps3/
16985F:	drivers/*/ps3*
16986F:	drivers/ps3/
16987F:	drivers/rtc/rtc-ps3.c
16988F:	drivers/usb/host/*ps3.c
16989F:	sound/ppc/snd_ps3*
16990
16991PS3VRAM DRIVER
16992M:	Jim Paris <jim@jtan.com>
16993M:	Geoff Levand <geoff@infradead.org>
16994L:	linuxppc-dev@lists.ozlabs.org
16995S:	Maintained
16996F:	drivers/block/ps3vram.c
16997
16998PSAMPLE PACKET SAMPLING SUPPORT
16999M:	Yotam Gigi <yotam.gi@gmail.com>
17000S:	Maintained
17001F:	include/net/psample.h
17002F:	include/uapi/linux/psample.h
17003F:	net/psample
17004
17005PSTORE FILESYSTEM
17006M:	Kees Cook <keescook@chromium.org>
17007R:	Tony Luck <tony.luck@intel.com>
17008R:	Guilherme G. Piccoli <gpiccoli@igalia.com>
17009L:	linux-hardening@vger.kernel.org
17010S:	Supported
17011T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
17012F:	Documentation/admin-guide/ramoops.rst
17013F:	Documentation/admin-guide/pstore-blk.rst
17014F:	Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
17015F:	drivers/acpi/apei/erst.c
17016F:	drivers/firmware/efi/efi-pstore.c
17017F:	fs/pstore/
17018F:	include/linux/pstore*
17019K:	\b(pstore|ramoops)
17020
17021PTP HARDWARE CLOCK SUPPORT
17022M:	Richard Cochran <richardcochran@gmail.com>
17023L:	netdev@vger.kernel.org
17024S:	Maintained
17025W:	http://linuxptp.sourceforge.net/
17026F:	Documentation/ABI/testing/sysfs-ptp
17027F:	Documentation/driver-api/ptp.rst
17028F:	drivers/net/phy/dp83640*
17029F:	drivers/ptp/*
17030F:	include/linux/ptp_cl*
17031K:	(?:\b|_)ptp(?:\b|_)
17032
17033PTP VIRTUAL CLOCK SUPPORT
17034M:	Yangbo Lu <yangbo.lu@nxp.com>
17035L:	netdev@vger.kernel.org
17036S:	Maintained
17037F:	drivers/ptp/ptp_vclock.c
17038F:	net/ethtool/phc_vclocks.c
17039
17040PTRACE SUPPORT
17041M:	Oleg Nesterov <oleg@redhat.com>
17042S:	Maintained
17043F:	arch/*/*/ptrace*.c
17044F:	arch/*/include/asm/ptrace*.h
17045F:	arch/*/ptrace*.c
17046F:	include/asm-generic/syscall.h
17047F:	include/linux/ptrace.h
17048F:	include/linux/regset.h
17049F:	include/uapi/linux/ptrace.h
17050F:	kernel/ptrace.c
17051
17052PULSE8-CEC DRIVER
17053M:	Hans Verkuil <hverkuil@xs4all.nl>
17054L:	linux-media@vger.kernel.org
17055S:	Maintained
17056T:	git git://linuxtv.org/media_tree.git
17057F:	drivers/media/cec/usb/pulse8/
17058
17059PURELIFI PLFXLC DRIVER
17060M:	Srinivasan Raju <srini.raju@purelifi.com>
17061L:	linux-wireless@vger.kernel.org
17062S:	Supported
17063F:	drivers/net/wireless/purelifi/plfxlc/
17064
17065PVRUSB2 VIDEO4LINUX DRIVER
17066M:	Mike Isely <isely@pobox.com>
17067L:	pvrusb2@isely.net	(subscribers-only)
17068L:	linux-media@vger.kernel.org
17069S:	Maintained
17070W:	http://www.isely.net/pvrusb2/
17071T:	git git://linuxtv.org/media_tree.git
17072F:	Documentation/driver-api/media/drivers/pvrusb2*
17073F:	drivers/media/usb/pvrusb2/
17074
17075PWC WEBCAM DRIVER
17076M:	Hans Verkuil <hverkuil@xs4all.nl>
17077L:	linux-media@vger.kernel.org
17078S:	Odd Fixes
17079T:	git git://linuxtv.org/media_tree.git
17080F:	drivers/media/usb/pwc/*
17081F:	include/trace/events/pwc.h
17082
17083PWM IR Transmitter
17084M:	Sean Young <sean@mess.org>
17085L:	linux-media@vger.kernel.org
17086S:	Maintained
17087F:	Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
17088F:	drivers/media/rc/pwm-ir-tx.c
17089
17090PWM SUBSYSTEM
17091M:	Thierry Reding <thierry.reding@gmail.com>
17092R:	Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17093L:	linux-pwm@vger.kernel.org
17094S:	Maintained
17095Q:	https://patchwork.ozlabs.org/project/linux-pwm/list/
17096T:	git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
17097F:	Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
17098F:	Documentation/devicetree/bindings/pwm/
17099F:	Documentation/driver-api/pwm.rst
17100F:	drivers/gpio/gpio-mvebu.c
17101F:	drivers/pwm/
17102F:	drivers/video/backlight/pwm_bl.c
17103F:	include/dt-bindings/pwm/
17104F:	include/linux/pwm.h
17105F:	include/linux/pwm_backlight.h
17106K:	pwm_(config|apply_state|ops)
17107
17108PXA GPIO DRIVER
17109M:	Robert Jarzmik <robert.jarzmik@free.fr>
17110L:	linux-gpio@vger.kernel.org
17111S:	Maintained
17112F:	drivers/gpio/gpio-pxa.c
17113
17114PXA MMCI DRIVER
17115S:	Orphan
17116
17117PXA RTC DRIVER
17118M:	Robert Jarzmik <robert.jarzmik@free.fr>
17119L:	linux-rtc@vger.kernel.org
17120S:	Maintained
17121
17122PXA2xx/PXA3xx SUPPORT
17123M:	Daniel Mack <daniel@zonque.org>
17124M:	Haojian Zhuang <haojian.zhuang@gmail.com>
17125M:	Robert Jarzmik <robert.jarzmik@free.fr>
17126L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17127S:	Maintained
17128T:	git git://github.com/hzhuang1/linux.git
17129T:	git git://github.com/rjarzmik/linux.git
17130F:	arch/arm/boot/dts/pxa*
17131F:	arch/arm/mach-pxa/
17132F:	drivers/dma/pxa*
17133F:	drivers/pcmcia/pxa2xx*
17134F:	drivers/pinctrl/pxa/
17135F:	drivers/spi/spi-pxa2xx*
17136F:	drivers/usb/gadget/udc/pxa2*
17137F:	include/sound/pxa2xx-lib.h
17138F:	sound/arm/pxa*
17139F:	sound/soc/pxa/
17140
17141QAT DRIVER
17142M:	Giovanni Cabiddu <giovanni.cabiddu@intel.com>
17143L:	qat-linux@intel.com
17144S:	Supported
17145F:	drivers/crypto/intel/qat/
17146
17147QCOM AUDIO (ASoC) DRIVERS
17148M:	Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17149M:	Banajit Goswami <bgoswami@quicinc.com>
17150L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
17151S:	Supported
17152F:	Documentation/devicetree/bindings/soc/qcom/qcom,apr*
17153F:	Documentation/devicetree/bindings/sound/qcom,*
17154F:	drivers/soc/qcom/apr.c
17155F:	include/dt-bindings/sound/qcom,wcd9335.h
17156F:	sound/soc/codecs/lpass-rx-macro.*
17157F:	sound/soc/codecs/lpass-tx-macro.*
17158F:	sound/soc/codecs/lpass-va-macro.c
17159F:	sound/soc/codecs/lpass-wsa-macro.*
17160F:	sound/soc/codecs/msm8916-wcd-analog.c
17161F:	sound/soc/codecs/msm8916-wcd-digital.c
17162F:	sound/soc/codecs/wcd9335.*
17163F:	sound/soc/codecs/wcd934x.c
17164F:	sound/soc/codecs/wcd-clsh-v2.*
17165F:	sound/soc/codecs/wcd-mbhc-v2.*
17166F:	sound/soc/codecs/wsa881x.c
17167F:	sound/soc/codecs/wsa883x.c
17168F:	sound/soc/qcom/
17169
17170QCOM EMBEDDED USB DEBUGGER (EUD)
17171M:	Souradeep Chowdhury <quic_schowdhu@quicinc.com>
17172L:	linux-arm-msm@vger.kernel.org
17173S:	Maintained
17174F:	Documentation/ABI/testing/sysfs-driver-eud
17175F:	Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
17176F:	drivers/usb/misc/qcom_eud.c
17177
17178QCOM IPA DRIVER
17179M:	Alex Elder <elder@kernel.org>
17180L:	netdev@vger.kernel.org
17181S:	Supported
17182F:	drivers/net/ipa/
17183
17184QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
17185M:	Gabriel Somlo <somlo@cmu.edu>
17186M:	"Michael S. Tsirkin" <mst@redhat.com>
17187L:	qemu-devel@nongnu.org
17188S:	Maintained
17189F:	drivers/firmware/qemu_fw_cfg.c
17190F:	include/uapi/linux/qemu_fw_cfg.h
17191
17192QIB DRIVER
17193M:	Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17194L:	linux-rdma@vger.kernel.org
17195S:	Supported
17196F:	drivers/infiniband/hw/qib/
17197
17198QLOGIC QL41xxx FCOE DRIVER
17199M:	Saurav Kashyap <skashyap@marvell.com>
17200M:	Javed Hasan <jhasan@marvell.com>
17201M:	GR-QLogic-Storage-Upstream@marvell.com
17202L:	linux-scsi@vger.kernel.org
17203S:	Supported
17204F:	drivers/scsi/qedf/
17205
17206QLOGIC QL41xxx ISCSI DRIVER
17207M:	Nilesh Javali <njavali@marvell.com>
17208M:	Manish Rangankar <mrangankar@marvell.com>
17209M:	GR-QLogic-Storage-Upstream@marvell.com
17210L:	linux-scsi@vger.kernel.org
17211S:	Supported
17212F:	drivers/scsi/qedi/
17213
17214QLOGIC QL4xxx ETHERNET DRIVER
17215M:	Ariel Elior <aelior@marvell.com>
17216M:	Manish Chopra <manishc@marvell.com>
17217L:	netdev@vger.kernel.org
17218S:	Supported
17219F:	drivers/net/ethernet/qlogic/qed/
17220F:	drivers/net/ethernet/qlogic/qede/
17221F:	include/linux/qed/
17222
17223QLOGIC QL4xxx RDMA DRIVER
17224M:	Michal Kalderon <mkalderon@marvell.com>
17225M:	Ariel Elior <aelior@marvell.com>
17226L:	linux-rdma@vger.kernel.org
17227S:	Supported
17228F:	drivers/infiniband/hw/qedr/
17229F:	include/uapi/rdma/qedr-abi.h
17230
17231QLOGIC QLA1280 SCSI DRIVER
17232M:	Michael Reed <mdr@sgi.com>
17233L:	linux-scsi@vger.kernel.org
17234S:	Maintained
17235F:	drivers/scsi/qla1280.[ch]
17236
17237QLOGIC QLA2XXX FC-SCSI DRIVER
17238M:	Nilesh Javali <njavali@marvell.com>
17239M:	GR-QLogic-Storage-Upstream@marvell.com
17240L:	linux-scsi@vger.kernel.org
17241S:	Supported
17242F:	drivers/scsi/qla2xxx/
17243
17244QLOGIC QLA3XXX NETWORK DRIVER
17245M:	GR-Linux-NIC-Dev@marvell.com
17246L:	netdev@vger.kernel.org
17247S:	Supported
17248F:	drivers/net/ethernet/qlogic/qla3xxx.*
17249
17250QLOGIC QLA4XXX iSCSI DRIVER
17251M:	Nilesh Javali <njavali@marvell.com>
17252M:	Manish Rangankar <mrangankar@marvell.com>
17253M:	GR-QLogic-Storage-Upstream@marvell.com
17254L:	linux-scsi@vger.kernel.org
17255S:	Supported
17256F:	drivers/scsi/qla4xxx/
17257
17258QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
17259M:	Shahed Shaikh <shshaikh@marvell.com>
17260M:	Manish Chopra <manishc@marvell.com>
17261M:	GR-Linux-NIC-Dev@marvell.com
17262L:	netdev@vger.kernel.org
17263S:	Supported
17264F:	drivers/net/ethernet/qlogic/qlcnic/
17265
17266QLOGIC QLGE 10Gb ETHERNET DRIVER
17267M:	Manish Chopra <manishc@marvell.com>
17268M:	GR-Linux-NIC-Dev@marvell.com
17269M:	Coiby Xu <coiby.xu@gmail.com>
17270L:	netdev@vger.kernel.org
17271S:	Supported
17272F:	Documentation/networking/device_drivers/qlogic/qlge.rst
17273F:	drivers/staging/qlge/
17274
17275QM1D1B0004 MEDIA DRIVER
17276M:	Akihiro Tsukada <tskd08@gmail.com>
17277L:	linux-media@vger.kernel.org
17278S:	Odd Fixes
17279F:	drivers/media/tuners/qm1d1b0004*
17280
17281QM1D1C0042 MEDIA DRIVER
17282M:	Akihiro Tsukada <tskd08@gmail.com>
17283L:	linux-media@vger.kernel.org
17284S:	Odd Fixes
17285F:	drivers/media/tuners/qm1d1c0042*
17286
17287QNX4 FILESYSTEM
17288M:	Anders Larsen <al@alarsen.net>
17289S:	Maintained
17290W:	http://www.alarsen.net/linux/qnx4fs/
17291F:	fs/qnx4/
17292F:	include/uapi/linux/qnx4_fs.h
17293F:	include/uapi/linux/qnxtypes.h
17294
17295QNX6 FILESYSTEM
17296S:	Orphan
17297F:	Documentation/filesystems/qnx6.rst
17298F:	fs/qnx6/
17299F:	include/linux/qnx6_fs.h
17300
17301QORIQ DPAA2 FSL-MC BUS DRIVER
17302M:	Stuart Yoder <stuyoder@gmail.com>
17303M:	Laurentiu Tudor <laurentiu.tudor@nxp.com>
17304L:	linux-kernel@vger.kernel.org
17305S:	Maintained
17306F:	Documentation/ABI/stable/sysfs-bus-fsl-mc
17307F:	Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
17308F:	Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
17309F:	drivers/bus/fsl-mc/
17310F:	include/uapi/linux/fsl_mc.h
17311
17312QT1010 MEDIA DRIVER
17313M:	Antti Palosaari <crope@iki.fi>
17314L:	linux-media@vger.kernel.org
17315S:	Maintained
17316W:	https://linuxtv.org
17317W:	http://palosaari.fi/linux/
17318Q:	http://patchwork.linuxtv.org/project/linux-media/list/
17319T:	git git://linuxtv.org/anttip/media_tree.git
17320F:	drivers/media/tuners/qt1010*
17321
17322QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
17323M:	Kalle Valo <kvalo@kernel.org>
17324L:	ath10k@lists.infradead.org
17325S:	Supported
17326W:	https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
17327T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17328F:	drivers/net/wireless/ath/ath10k/
17329F:	Documentation/devicetree/bindings/net/wireless/qcom,ath10k.yaml
17330
17331QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
17332M:	Kalle Valo <kvalo@kernel.org>
17333L:	ath11k@lists.infradead.org
17334S:	Supported
17335T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17336F:	Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
17337F:	drivers/net/wireless/ath/ath11k/
17338
17339QUALCOMM ATH12K WIRELESS DRIVER
17340M:	Kalle Valo <kvalo@kernel.org>
17341L:	ath12k@lists.infradead.org
17342S:	Supported
17343T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17344F:	drivers/net/wireless/ath/ath12k/
17345
17346QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
17347M:	Toke Høiland-Jørgensen <toke@toke.dk>
17348L:	linux-wireless@vger.kernel.org
17349S:	Maintained
17350W:	https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
17351F:	Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
17352F:	drivers/net/wireless/ath/ath9k/
17353
17354QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
17355M:	Stephan Gerhold <stephan@gerhold.net>
17356L:	netdev@vger.kernel.org
17357L:	linux-arm-msm@vger.kernel.org
17358S:	Maintained
17359F:	Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
17360F:	drivers/net/wwan/qcom_bam_dmux.c
17361
17362QUALCOMM CAMERA SUBSYSTEM DRIVER
17363M:	Robert Foss <rfoss@kernel.org>
17364M:	Todor Tomov <todor.too@gmail.com>
17365M:	Bryan O'Donoghue <bryan.odonoghue@linaro.org>
17366L:	linux-media@vger.kernel.org
17367S:	Maintained
17368F:	Documentation/admin-guide/media/qcom_camss.rst
17369F:	Documentation/devicetree/bindings/media/*camss*
17370F:	drivers/media/platform/qcom/camss/
17371
17372QUALCOMM CLOCK DRIVERS
17373M:	Bjorn Andersson <andersson@kernel.org>
17374L:	linux-arm-msm@vger.kernel.org
17375S:	Supported
17376T:	git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
17377F:	Documentation/devicetree/bindings/clock/qcom,*
17378F:	drivers/clk/qcom/
17379F:	include/dt-bindings/clock/qcom,*
17380
17381QUALCOMM CLOUD AI (QAIC) DRIVER
17382M:	Jeffrey Hugo <quic_jhugo@quicinc.com>
17383L:	linux-arm-msm@vger.kernel.org
17384L:	dri-devel@lists.freedesktop.org
17385S:	Supported
17386T:	git git://anongit.freedesktop.org/drm/drm-misc
17387F:	Documentation/accel/qaic/
17388F:	drivers/accel/qaic/
17389F:	include/uapi/drm/qaic_accel.h
17390
17391QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
17392M:	Bjorn Andersson <andersson@kernel.org>
17393M:	Konrad Dybcio <konrad.dybcio@linaro.org>
17394L:	linux-pm@vger.kernel.org
17395L:	linux-arm-msm@vger.kernel.org
17396S:	Maintained
17397F:	Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
17398F:	drivers/soc/qcom/cpr.c
17399
17400QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
17401M:	Ilia Lin <ilia.lin@kernel.org>
17402L:	linux-pm@vger.kernel.org
17403S:	Maintained
17404F:	Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
17405F:	Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
17406F:	drivers/cpufreq/qcom-cpufreq-nvmem.c
17407
17408QUALCOMM CRYPTO DRIVERS
17409M:	Thara Gopinath <thara.gopinath@gmail.com>
17410L:	linux-crypto@vger.kernel.org
17411L:	linux-arm-msm@vger.kernel.org
17412S:	Maintained
17413F:	Documentation/devicetree/bindings/crypto/qcom-qce.yaml
17414F:	drivers/crypto/qce/
17415
17416QUALCOMM EMAC GIGABIT ETHERNET DRIVER
17417M:	Timur Tabi <timur@kernel.org>
17418L:	netdev@vger.kernel.org
17419S:	Maintained
17420F:	drivers/net/ethernet/qualcomm/emac/
17421
17422QUALCOMM ETHQOS ETHERNET DRIVER
17423M:	Vinod Koul <vkoul@kernel.org>
17424R:	Bhupesh Sharma <bhupesh.sharma@linaro.org>
17425L:	netdev@vger.kernel.org
17426S:	Maintained
17427F:	Documentation/devicetree/bindings/net/qcom,ethqos.yaml
17428F:	drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
17429
17430QUALCOMM FASTRPC DRIVER
17431M:	Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17432M:	Amol Maheshwari <amahesh@qti.qualcomm.com>
17433L:	linux-arm-msm@vger.kernel.org
17434S:	Maintained
17435F:	Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
17436F:	drivers/misc/fastrpc.c
17437F:	include/uapi/misc/fastrpc.h
17438
17439QUALCOMM HEXAGON ARCHITECTURE
17440M:	Brian Cain <bcain@quicinc.com>
17441L:	linux-hexagon@vger.kernel.org
17442T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
17443S:	Supported
17444F:	arch/hexagon/
17445
17446QUALCOMM HIDMA DRIVER
17447M:	Sinan Kaya <okaya@kernel.org>
17448L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17449L:	linux-arm-msm@vger.kernel.org
17450L:	dmaengine@vger.kernel.org
17451S:	Supported
17452F:	drivers/dma/qcom/hidma*
17453
17454QUALCOMM I2C CCI DRIVER
17455M:	Loic Poulain <loic.poulain@linaro.org>
17456M:	Robert Foss <rfoss@kernel.org>
17457L:	linux-i2c@vger.kernel.org
17458L:	linux-arm-msm@vger.kernel.org
17459S:	Maintained
17460F:	Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
17461F:	drivers/i2c/busses/i2c-qcom-cci.c
17462
17463QUALCOMM INTERCONNECT BWMON DRIVER
17464M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17465L:	linux-arm-msm@vger.kernel.org
17466S:	Maintained
17467F:	Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
17468F:	drivers/soc/qcom/icc-bwmon.c
17469
17470QUALCOMM IOMMU
17471M:	Rob Clark <robdclark@gmail.com>
17472L:	iommu@lists.linux.dev
17473L:	linux-arm-msm@vger.kernel.org
17474S:	Maintained
17475F:	drivers/iommu/arm/arm-smmu/qcom_iommu.c
17476
17477QUALCOMM IPC ROUTER (QRTR) DRIVER
17478M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17479L:	linux-arm-msm@vger.kernel.org
17480S:	Maintained
17481F:	include/trace/events/qrtr.h
17482F:	include/uapi/linux/qrtr.h
17483F:	net/qrtr/
17484
17485QUALCOMM IPCC MAILBOX DRIVER
17486M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17487L:	linux-arm-msm@vger.kernel.org
17488S:	Supported
17489F:	Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
17490F:	drivers/mailbox/qcom-ipcc.c
17491F:	include/dt-bindings/mailbox/qcom-ipcc.h
17492
17493QUALCOMM IPQ4019 USB PHY DRIVER
17494M:	Robert Marko <robert.marko@sartura.hr>
17495M:	Luka Perkov <luka.perkov@sartura.hr>
17496L:	linux-arm-msm@vger.kernel.org
17497S:	Maintained
17498F:	Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
17499F:	drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
17500
17501QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
17502M:	Robert Marko <robert.marko@sartura.hr>
17503M:	Luka Perkov <luka.perkov@sartura.hr>
17504L:	linux-arm-msm@vger.kernel.org
17505S:	Maintained
17506F:	Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
17507F:	drivers/regulator/vqmmc-ipq4019-regulator.c
17508
17509QUALCOMM NAND CONTROLLER DRIVER
17510M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17511L:	linux-mtd@lists.infradead.org
17512L:	linux-arm-msm@vger.kernel.org
17513S:	Maintained
17514F:	Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
17515F:	drivers/mtd/nand/raw/qcom_nandc.c
17516
17517QUALCOMM RMNET DRIVER
17518M:	Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
17519M:	Sean Tranchetti <quic_stranche@quicinc.com>
17520L:	netdev@vger.kernel.org
17521S:	Maintained
17522F:	Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
17523F:	drivers/net/ethernet/qualcomm/rmnet/
17524F:	include/linux/if_rmnet.h
17525
17526QUALCOMM TSENS THERMAL DRIVER
17527M:	Amit Kucheria <amitk@kernel.org>
17528M:	Thara Gopinath <thara.gopinath@gmail.com>
17529L:	linux-pm@vger.kernel.org
17530L:	linux-arm-msm@vger.kernel.org
17531S:	Maintained
17532F:	Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17533F:	drivers/thermal/qcom/
17534
17535QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17536M:	Stanimir Varbanov <stanimir.k.varbanov@gmail.com>
17537M:	Vikash Garodia <quic_vgarodia@quicinc.com>
17538L:	linux-media@vger.kernel.org
17539L:	linux-arm-msm@vger.kernel.org
17540S:	Maintained
17541T:	git git://linuxtv.org/media_tree.git
17542F:	Documentation/devicetree/bindings/media/*venus*
17543F:	drivers/media/platform/qcom/venus/
17544
17545QUALCOMM WCN36XX WIRELESS DRIVER
17546M:	Loic Poulain <loic.poulain@linaro.org>
17547L:	wcn36xx@lists.infradead.org
17548S:	Supported
17549W:	https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17550F:	drivers/net/wireless/ath/wcn36xx/
17551
17552QUANTENNA QTNFMAC WIRELESS DRIVER
17553M:	Igor Mitsyanko <imitsyanko@quantenna.com>
17554R:	Sergey Matyukevich <geomatsi@gmail.com>
17555L:	linux-wireless@vger.kernel.org
17556S:	Maintained
17557F:	drivers/net/wireless/quantenna
17558
17559RADEON and AMDGPU DRM DRIVERS
17560M:	Alex Deucher <alexander.deucher@amd.com>
17561M:	Christian König <christian.koenig@amd.com>
17562M:	Pan, Xinhui <Xinhui.Pan@amd.com>
17563L:	amd-gfx@lists.freedesktop.org
17564S:	Supported
17565T:	git https://gitlab.freedesktop.org/agd5f/linux.git
17566B:	https://gitlab.freedesktop.org/drm/amd/-/issues
17567C:	irc://irc.oftc.net/radeon
17568F:	Documentation/gpu/amdgpu/
17569F:	drivers/gpu/drm/amd/
17570F:	drivers/gpu/drm/radeon/
17571F:	include/uapi/drm/amdgpu_drm.h
17572F:	include/uapi/drm/radeon_drm.h
17573
17574RADEON FRAMEBUFFER DISPLAY DRIVER
17575M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
17576L:	linux-fbdev@vger.kernel.org
17577S:	Maintained
17578F:	drivers/video/fbdev/aty/radeon*
17579F:	include/uapi/linux/radeonfb.h
17580
17581RADIOSHARK RADIO DRIVER
17582M:	Hans Verkuil <hverkuil@xs4all.nl>
17583L:	linux-media@vger.kernel.org
17584S:	Maintained
17585T:	git git://linuxtv.org/media_tree.git
17586F:	drivers/media/radio/radio-shark.c
17587
17588RADIOSHARK2 RADIO DRIVER
17589M:	Hans Verkuil <hverkuil@xs4all.nl>
17590L:	linux-media@vger.kernel.org
17591S:	Maintained
17592T:	git git://linuxtv.org/media_tree.git
17593F:	drivers/media/radio/radio-shark2.c
17594F:	drivers/media/radio/radio-tea5777.c
17595
17596RADOS BLOCK DEVICE (RBD)
17597M:	Ilya Dryomov <idryomov@gmail.com>
17598R:	Dongsheng Yang <dongsheng.yang@easystack.cn>
17599L:	ceph-devel@vger.kernel.org
17600S:	Supported
17601W:	http://ceph.com/
17602T:	git https://github.com/ceph/ceph-client.git
17603F:	Documentation/ABI/testing/sysfs-bus-rbd
17604F:	drivers/block/rbd.c
17605F:	drivers/block/rbd_types.h
17606
17607RAGE128 FRAMEBUFFER DISPLAY DRIVER
17608L:	linux-fbdev@vger.kernel.org
17609S:	Orphan
17610F:	drivers/video/fbdev/aty/aty128fb.c
17611
17612RAINSHADOW-CEC DRIVER
17613M:	Hans Verkuil <hverkuil@xs4all.nl>
17614L:	linux-media@vger.kernel.org
17615S:	Maintained
17616T:	git git://linuxtv.org/media_tree.git
17617F:	drivers/media/cec/usb/rainshadow/
17618
17619RALINK MIPS ARCHITECTURE
17620M:	John Crispin <john@phrozen.org>
17621L:	linux-mips@vger.kernel.org
17622S:	Maintained
17623F:	arch/mips/ralink
17624
17625RALINK MT7621 MIPS ARCHITECTURE
17626M:	Arınç ÜNAL <arinc.unal@arinc9.com>
17627M:	Sergio Paracuellos <sergio.paracuellos@gmail.com>
17628L:	linux-mips@vger.kernel.org
17629S:	Maintained
17630F:	arch/mips/boot/dts/ralink/mt7621*
17631
17632RALINK RT2X00 WIRELESS LAN DRIVER
17633M:	Stanislaw Gruszka <stf_xl@wp.pl>
17634M:	Helmut Schaa <helmut.schaa@googlemail.com>
17635L:	linux-wireless@vger.kernel.org
17636S:	Maintained
17637F:	drivers/net/wireless/ralink/rt2x00/
17638
17639RAMDISK RAM BLOCK DEVICE DRIVER
17640M:	Jens Axboe <axboe@kernel.dk>
17641S:	Maintained
17642F:	Documentation/admin-guide/blockdev/ramdisk.rst
17643F:	drivers/block/brd.c
17644
17645RANCHU VIRTUAL BOARD FOR MIPS
17646M:	Miodrag Dinic <miodrag.dinic@mips.com>
17647L:	linux-mips@vger.kernel.org
17648S:	Supported
17649F:	arch/mips/configs/generic/board-ranchu.config
17650F:	arch/mips/generic/board-ranchu.c
17651
17652RANDOM NUMBER DRIVER
17653M:	"Theodore Ts'o" <tytso@mit.edu>
17654M:	Jason A. Donenfeld <Jason@zx2c4.com>
17655T:	git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17656S:	Maintained
17657F:	drivers/char/random.c
17658F:	drivers/virt/vmgenid.c
17659
17660RAPIDIO SUBSYSTEM
17661M:	Matt Porter <mporter@kernel.crashing.org>
17662M:	Alexandre Bounine <alex.bou9@gmail.com>
17663S:	Maintained
17664F:	drivers/rapidio/
17665
17666RAS INFRASTRUCTURE
17667M:	Tony Luck <tony.luck@intel.com>
17668M:	Borislav Petkov <bp@alien8.de>
17669L:	linux-edac@vger.kernel.org
17670S:	Maintained
17671F:	Documentation/admin-guide/ras.rst
17672F:	drivers/ras/
17673F:	include/linux/ras.h
17674F:	include/ras/ras_event.h
17675
17676RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17677L:	linux-wireless@vger.kernel.org
17678S:	Orphan
17679F:	drivers/net/wireless/legacy/ray*
17680
17681RC-CORE / LIRC FRAMEWORK
17682M:	Sean Young <sean@mess.org>
17683L:	linux-media@vger.kernel.org
17684S:	Maintained
17685W:	http://linuxtv.org
17686T:	git git://linuxtv.org/media_tree.git
17687F:	Documentation/driver-api/media/rc-core.rst
17688F:	Documentation/userspace-api/media/rc/
17689F:	drivers/media/rc/
17690F:	include/media/rc-map.h
17691F:	include/media/rc-core.h
17692F:	include/uapi/linux/lirc.h
17693
17694RCMM REMOTE CONTROLS DECODER
17695M:	Patrick Lerda <patrick9876@free.fr>
17696S:	Maintained
17697F:	drivers/media/rc/ir-rcmm-decoder.c
17698
17699RCUTORTURE TEST FRAMEWORK
17700M:	"Paul E. McKenney" <paulmck@kernel.org>
17701M:	Josh Triplett <josh@joshtriplett.org>
17702R:	Steven Rostedt <rostedt@goodmis.org>
17703R:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17704R:	Lai Jiangshan <jiangshanlai@gmail.com>
17705L:	rcu@vger.kernel.org
17706S:	Supported
17707T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17708F:	tools/testing/selftests/rcutorture
17709
17710RDACM20 Camera Sensor
17711M:	Jacopo Mondi <jacopo+renesas@jmondi.org>
17712M:	Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17713M:	Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17714M:	Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17715L:	linux-media@vger.kernel.org
17716S:	Maintained
17717F:	Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17718F:	drivers/media/i2c/max9271.c
17719F:	drivers/media/i2c/max9271.h
17720F:	drivers/media/i2c/rdacm20.c
17721
17722RDACM21 Camera Sensor
17723M:	Jacopo Mondi <jacopo+renesas@jmondi.org>
17724M:	Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17725M:	Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17726M:	Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17727L:	linux-media@vger.kernel.org
17728S:	Maintained
17729F:	Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17730F:	drivers/media/i2c/max9271.c
17731F:	drivers/media/i2c/max9271.h
17732F:	drivers/media/i2c/rdacm21.c
17733
17734RDC R-321X SoC
17735M:	Florian Fainelli <florian@openwrt.org>
17736S:	Maintained
17737
17738RDC R6040 FAST ETHERNET DRIVER
17739M:	Florian Fainelli <f.fainelli@gmail.com>
17740L:	netdev@vger.kernel.org
17741S:	Maintained
17742F:	drivers/net/ethernet/rdc/r6040.c
17743
17744RDMAVT - RDMA verbs software
17745M:	Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17746L:	linux-rdma@vger.kernel.org
17747S:	Supported
17748F:	drivers/infiniband/sw/rdmavt
17749
17750RDS - RELIABLE DATAGRAM SOCKETS
17751M:	Santosh Shilimkar <santosh.shilimkar@oracle.com>
17752L:	netdev@vger.kernel.org
17753L:	linux-rdma@vger.kernel.org
17754L:	rds-devel@oss.oracle.com (moderated for non-subscribers)
17755S:	Supported
17756W:	https://oss.oracle.com/projects/rds/
17757F:	Documentation/networking/rds.rst
17758F:	net/rds/
17759
17760RDT - RESOURCE ALLOCATION
17761M:	Fenghua Yu <fenghua.yu@intel.com>
17762M:	Reinette Chatre <reinette.chatre@intel.com>
17763L:	linux-kernel@vger.kernel.org
17764S:	Supported
17765F:	Documentation/arch/x86/resctrl*
17766F:	arch/x86/include/asm/resctrl.h
17767F:	arch/x86/kernel/cpu/resctrl/
17768F:	tools/testing/selftests/resctrl/
17769
17770READ-COPY UPDATE (RCU)
17771M:	"Paul E. McKenney" <paulmck@kernel.org>
17772M:	Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17773M:	Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17774M:	Joel Fernandes <joel@joelfernandes.org>
17775M:	Josh Triplett <josh@joshtriplett.org>
17776M:	Boqun Feng <boqun.feng@gmail.com>
17777R:	Steven Rostedt <rostedt@goodmis.org>
17778R:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17779R:	Lai Jiangshan <jiangshanlai@gmail.com>
17780R:	Zqiang <qiang1.zhang@intel.com>
17781L:	rcu@vger.kernel.org
17782S:	Supported
17783W:	http://www.rdrop.com/users/paulmck/RCU/
17784T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17785F:	Documentation/RCU/
17786F:	include/linux/rcu*
17787F:	kernel/rcu/
17788X:	Documentation/RCU/torture.rst
17789X:	include/linux/srcu*.h
17790X:	kernel/rcu/srcu*.c
17791
17792REAL TIME CLOCK (RTC) SUBSYSTEM
17793M:	Alessandro Zummo <a.zummo@towertech.it>
17794M:	Alexandre Belloni <alexandre.belloni@bootlin.com>
17795L:	linux-rtc@vger.kernel.org
17796S:	Maintained
17797Q:	http://patchwork.ozlabs.org/project/rtc-linux/list/
17798T:	git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17799F:	Documentation/admin-guide/rtc.rst
17800F:	Documentation/devicetree/bindings/rtc/
17801F:	drivers/rtc/
17802F:	include/linux/platform_data/rtc-*
17803F:	include/linux/rtc.h
17804F:	include/linux/rtc/
17805F:	include/uapi/linux/rtc.h
17806F:	tools/testing/selftests/rtc/
17807
17808REALTEK AUDIO CODECS
17809M:	Oder Chiou <oder_chiou@realtek.com>
17810S:	Maintained
17811F:	include/sound/rt*.h
17812F:	sound/soc/codecs/rt*
17813
17814REALTEK OTTO WATCHDOG
17815M:	Sander Vanheule <sander@svanheule.net>
17816L:	linux-watchdog@vger.kernel.org
17817S:	Maintained
17818F:	Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17819F:	drivers/watchdog/realtek_otto_wdt.c
17820
17821REALTEK RTL83xx SMI DSA ROUTER CHIPS
17822M:	Linus Walleij <linus.walleij@linaro.org>
17823M:	Alvin Šipraga <alsi@bang-olufsen.dk>
17824S:	Maintained
17825F:	Documentation/devicetree/bindings/net/dsa/realtek.yaml
17826F:	drivers/net/dsa/realtek/*
17827
17828REALTEK WIRELESS DRIVER (rtlwifi family)
17829M:	Ping-Ke Shih <pkshih@realtek.com>
17830L:	linux-wireless@vger.kernel.org
17831S:	Maintained
17832W:	https://wireless.wiki.kernel.org/
17833T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17834F:	drivers/net/wireless/realtek/rtlwifi/
17835
17836REALTEK WIRELESS DRIVER (rtw88)
17837M:	Yan-Hsuan Chuang <tony0620emma@gmail.com>
17838L:	linux-wireless@vger.kernel.org
17839S:	Maintained
17840F:	drivers/net/wireless/realtek/rtw88/
17841
17842REALTEK WIRELESS DRIVER (rtw89)
17843M:	Ping-Ke Shih <pkshih@realtek.com>
17844L:	linux-wireless@vger.kernel.org
17845S:	Maintained
17846F:	drivers/net/wireless/realtek/rtw89/
17847
17848REDPINE WIRELESS DRIVER
17849L:	linux-wireless@vger.kernel.org
17850S:	Orphan
17851F:	drivers/net/wireless/rsi/
17852
17853REGISTER MAP ABSTRACTION
17854M:	Mark Brown <broonie@kernel.org>
17855L:	linux-kernel@vger.kernel.org
17856S:	Supported
17857T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17858F:	Documentation/devicetree/bindings/regmap/
17859F:	drivers/base/regmap/
17860F:	include/linux/regmap.h
17861
17862REISERFS FILE SYSTEM
17863L:	reiserfs-devel@vger.kernel.org
17864S:	Supported
17865F:	fs/reiserfs/
17866
17867REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17868M:	Bjorn Andersson <andersson@kernel.org>
17869M:	Mathieu Poirier <mathieu.poirier@linaro.org>
17870L:	linux-remoteproc@vger.kernel.org
17871S:	Maintained
17872T:	git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17873F:	Documentation/ABI/testing/sysfs-class-remoteproc
17874F:	Documentation/devicetree/bindings/remoteproc/
17875F:	Documentation/staging/remoteproc.rst
17876F:	drivers/remoteproc/
17877F:	include/linux/remoteproc.h
17878F:	include/linux/remoteproc/
17879
17880REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17881M:	Bjorn Andersson <andersson@kernel.org>
17882M:	Mathieu Poirier <mathieu.poirier@linaro.org>
17883L:	linux-remoteproc@vger.kernel.org
17884S:	Maintained
17885T:	git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17886F:	Documentation/ABI/testing/sysfs-bus-rpmsg
17887F:	Documentation/staging/rpmsg.rst
17888F:	drivers/rpmsg/
17889F:	include/linux/rpmsg.h
17890F:	include/linux/rpmsg/
17891F:	include/uapi/linux/rpmsg.h
17892F:	samples/rpmsg/
17893
17894REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17895M:	Stephan Gerhold <stephan@gerhold.net>
17896L:	netdev@vger.kernel.org
17897L:	linux-remoteproc@vger.kernel.org
17898S:	Maintained
17899F:	drivers/net/wwan/rpmsg_wwan_ctrl.c
17900
17901RENESAS CLOCK DRIVERS
17902M:	Geert Uytterhoeven <geert+renesas@glider.be>
17903L:	linux-renesas-soc@vger.kernel.org
17904S:	Supported
17905T:	git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17906F:	Documentation/devicetree/bindings/clock/renesas,*
17907F:	drivers/clk/renesas/
17908
17909RENESAS EMEV2 I2C DRIVER
17910M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
17911L:	linux-renesas-soc@vger.kernel.org
17912S:	Supported
17913F:	Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17914F:	drivers/i2c/busses/i2c-emev2.c
17915
17916RENESAS ETHERNET DRIVERS
17917R:	Sergey Shtylyov <s.shtylyov@omp.ru>
17918L:	netdev@vger.kernel.org
17919L:	linux-renesas-soc@vger.kernel.org
17920F:	Documentation/devicetree/bindings/net/renesas,*.yaml
17921F:	drivers/net/ethernet/renesas/
17922F:	include/linux/sh_eth.h
17923
17924RENESAS IDT821034 ASoC CODEC
17925M:	Herve Codina <herve.codina@bootlin.com>
17926L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
17927S:	Maintained
17928F:	Documentation/devicetree/bindings/sound/renesas,idt821034.yaml
17929F:	sound/soc/codecs/idt821034.c
17930
17931RENESAS R-CAR GYROADC DRIVER
17932M:	Marek Vasut <marek.vasut@gmail.com>
17933L:	linux-iio@vger.kernel.org
17934S:	Supported
17935F:	Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17936F:	drivers/iio/adc/rcar-gyroadc.c
17937
17938RENESAS R-CAR I2C DRIVERS
17939M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
17940L:	linux-renesas-soc@vger.kernel.org
17941S:	Supported
17942F:	Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17943F:	Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17944F:	drivers/i2c/busses/i2c-rcar.c
17945F:	drivers/i2c/busses/i2c-sh_mobile.c
17946
17947RENESAS R-CAR SATA DRIVER
17948R:	Sergey Shtylyov <s.shtylyov@omp.ru>
17949S:	Supported
17950L:	linux-ide@vger.kernel.org
17951L:	linux-renesas-soc@vger.kernel.org
17952F:	Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17953F:	drivers/ata/sata_rcar.c
17954
17955RENESAS R-CAR THERMAL DRIVERS
17956M:	Niklas Söderlund <niklas.soderlund@ragnatech.se>
17957L:	linux-renesas-soc@vger.kernel.org
17958S:	Supported
17959F:	Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17960F:	Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17961F:	drivers/thermal/rcar_gen3_thermal.c
17962F:	drivers/thermal/rcar_thermal.c
17963
17964RENESAS RIIC DRIVER
17965M:	Chris Brandt <chris.brandt@renesas.com>
17966L:	linux-renesas-soc@vger.kernel.org
17967S:	Supported
17968F:	Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17969F:	drivers/i2c/busses/i2c-riic.c
17970
17971RENESAS USB PHY DRIVER
17972M:	Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17973L:	linux-renesas-soc@vger.kernel.org
17974S:	Maintained
17975F:	drivers/phy/renesas/phy-rcar-gen3-usb*.c
17976
17977RENESAS RZ/G2L A/D DRIVER
17978M:	Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17979L:	linux-iio@vger.kernel.org
17980L:	linux-renesas-soc@vger.kernel.org
17981S:	Supported
17982F:	Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17983F:	drivers/iio/adc/rzg2l_adc.c
17984
17985RENESAS RZ/G2L MTU3a COUNTER DRIVER
17986M:	Biju Das <biju.das.jz@bp.renesas.com>
17987L:	linux-iio@vger.kernel.org
17988L:	linux-renesas-soc@vger.kernel.org
17989S:	Supported
17990F:	Documentation/devicetree/bindings/timer/renesas,rz-mtu3.yaml
17991F:	drivers/counter/rz-mtu3-cnt.c
17992
17993RENESAS RZ/N1 A5PSW SWITCH DRIVER
17994M:	Clément Léger <clement.leger@bootlin.com>
17995L:	linux-renesas-soc@vger.kernel.org
17996L:	netdev@vger.kernel.org
17997S:	Maintained
17998F:	Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17999F:	Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
18000F:	drivers/net/dsa/rzn1_a5psw*
18001F:	drivers/net/pcs/pcs-rzn1-miic.c
18002F:	include/dt-bindings/net/pcs-rzn1-miic.h
18003F:	include/linux/pcs-rzn1-miic.h
18004F:	net/dsa/tag_rzn1_a5psw.c
18005
18006RENESAS RZ/N1 RTC CONTROLLER DRIVER
18007M:	Miquel Raynal <miquel.raynal@bootlin.com>
18008L:	linux-rtc@vger.kernel.org
18009L:	linux-renesas-soc@vger.kernel.org
18010S:	Maintained
18011F:	Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
18012F:	drivers/rtc/rtc-rzn1.c
18013
18014RENESAS RZ/N1 USBF CONTROLLER DRIVER
18015M:	Herve Codina <herve.codina@bootlin.com>
18016L:	linux-renesas-soc@vger.kernel.org
18017L:	linux-usb@vger.kernel.org
18018S:	Maintained
18019F:	Documentation/devicetree/bindings/usb/renesas,rzn1-usbf.yaml
18020F:	drivers/usb/gadget/udc/renesas_usbf.c
18021
18022RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
18023M:	Miquel Raynal <miquel.raynal@bootlin.com>
18024L:	linux-mtd@lists.infradead.org
18025L:	linux-renesas-soc@vger.kernel.org
18026S:	Maintained
18027F:	Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
18028F:	drivers/mtd/nand/raw/renesas-nand-controller.c
18029
18030RENESAS VERSACLOCK 7 CLOCK DRIVER
18031M:	Alex Helms <alexander.helms.jy@renesas.com>
18032S:	Maintained
18033F:	Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
18034F:	drivers/clk/clk-versaclock7.c
18035
18036RESET CONTROLLER FRAMEWORK
18037M:	Philipp Zabel <p.zabel@pengutronix.de>
18038S:	Maintained
18039T:	git git://git.pengutronix.de/git/pza/linux
18040F:	Documentation/devicetree/bindings/reset/
18041F:	Documentation/driver-api/reset.rst
18042F:	drivers/reset/
18043F:	include/dt-bindings/reset/
18044F:	include/linux/reset-controller.h
18045F:	include/linux/reset.h
18046F:	include/linux/reset/
18047K:	\b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
18048
18049RESTARTABLE SEQUENCES SUPPORT
18050M:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18051M:	Peter Zijlstra <peterz@infradead.org>
18052M:	"Paul E. McKenney" <paulmck@kernel.org>
18053M:	Boqun Feng <boqun.feng@gmail.com>
18054L:	linux-kernel@vger.kernel.org
18055S:	Supported
18056F:	include/trace/events/rseq.h
18057F:	include/uapi/linux/rseq.h
18058F:	kernel/rseq.c
18059F:	tools/testing/selftests/rseq/
18060
18061RFKILL
18062M:	Johannes Berg <johannes@sipsolutions.net>
18063L:	linux-wireless@vger.kernel.org
18064S:	Maintained
18065W:	https://wireless.wiki.kernel.org/
18066Q:	https://patchwork.kernel.org/project/linux-wireless/list/
18067T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
18068T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
18069F:	Documentation/ABI/stable/sysfs-class-rfkill
18070F:	Documentation/driver-api/rfkill.rst
18071F:	include/linux/rfkill.h
18072F:	include/uapi/linux/rfkill.h
18073F:	net/rfkill/
18074
18075RHASHTABLE
18076M:	Thomas Graf <tgraf@suug.ch>
18077M:	Herbert Xu <herbert@gondor.apana.org.au>
18078L:	netdev@vger.kernel.org
18079S:	Maintained
18080F:	include/linux/rhashtable-types.h
18081F:	include/linux/rhashtable.h
18082F:	lib/rhashtable.c
18083F:	lib/test_rhashtable.c
18084
18085RICOH R5C592 MEMORYSTICK DRIVER
18086M:	Maxim Levitsky <maximlevitsky@gmail.com>
18087S:	Maintained
18088F:	drivers/memstick/host/r592.*
18089
18090RICOH SMARTMEDIA/XD DRIVER
18091M:	Maxim Levitsky <maximlevitsky@gmail.com>
18092S:	Maintained
18093F:	drivers/mtd/nand/raw/r852.c
18094F:	drivers/mtd/nand/raw/r852.h
18095
18096RISC-V PMU DRIVERS
18097M:	Atish Patra <atishp@atishpatra.org>
18098R:	Anup Patel <anup@brainfault.org>
18099L:	linux-riscv@lists.infradead.org
18100S:	Supported
18101F:	drivers/perf/riscv_pmu.c
18102F:	drivers/perf/riscv_pmu_legacy.c
18103F:	drivers/perf/riscv_pmu_sbi.c
18104
18105RISC-V ARCHITECTURE
18106M:	Paul Walmsley <paul.walmsley@sifive.com>
18107M:	Palmer Dabbelt <palmer@dabbelt.com>
18108M:	Albert Ou <aou@eecs.berkeley.edu>
18109L:	linux-riscv@lists.infradead.org
18110S:	Supported
18111Q:	https://patchwork.kernel.org/project/linux-riscv/list/
18112C:	irc://irc.libera.chat/riscv
18113P:	Documentation/riscv/patch-acceptance.rst
18114T:	git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
18115F:	arch/riscv/
18116N:	riscv
18117K:	riscv
18118
18119RISC-V MICROCHIP FPGA SUPPORT
18120M:	Conor Dooley <conor.dooley@microchip.com>
18121M:	Daire McNamara <daire.mcnamara@microchip.com>
18122L:	linux-riscv@lists.infradead.org
18123S:	Supported
18124F:	Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
18125F:	Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
18126F:	Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
18127F:	Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
18128F:	Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
18129F:	Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
18130F:	Documentation/devicetree/bindings/riscv/microchip.yaml
18131F:	Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
18132F:	Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
18133F:	Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
18134F:	arch/riscv/boot/dts/microchip/
18135F:	drivers/char/hw_random/mpfs-rng.c
18136F:	drivers/clk/microchip/clk-mpfs*.c
18137F:	drivers/i2c/busses/i2c-microchip-corei2c.c
18138F:	drivers/mailbox/mailbox-mpfs.c
18139F:	drivers/pci/controller/pcie-microchip-host.c
18140F:	drivers/reset/reset-mpfs.c
18141F:	drivers/rtc/rtc-mpfs.c
18142F:	drivers/soc/microchip/mpfs-sys-controller.c
18143F:	drivers/spi/spi-microchip-core-qspi.c
18144F:	drivers/spi/spi-microchip-core.c
18145F:	drivers/usb/musb/mpfs.c
18146F:	include/soc/microchip/mpfs.h
18147
18148RISC-V MISC SOC SUPPORT
18149M:	Conor Dooley <conor@kernel.org>
18150L:	linux-riscv@lists.infradead.org
18151S:	Maintained
18152Q:	https://patchwork.kernel.org/project/linux-riscv/list/
18153T:	git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
18154F:	Documentation/devicetree/bindings/riscv/
18155F:	arch/riscv/boot/dts/
18156
18157RNBD BLOCK DRIVERS
18158M:	Md. Haris Iqbal <haris.iqbal@ionos.com>
18159M:	Jack Wang <jinpu.wang@ionos.com>
18160L:	linux-block@vger.kernel.org
18161S:	Maintained
18162F:	drivers/block/rnbd/
18163
18164ROCCAT DRIVERS
18165M:	Stefan Achatz <erazor_de@users.sourceforge.net>
18166S:	Maintained
18167W:	http://sourceforge.net/projects/roccat/
18168F:	Documentation/ABI/*/sysfs-driver-hid-roccat*
18169F:	drivers/hid/hid-roccat*
18170F:	include/linux/hid-roccat*
18171
18172ROCKCHIP CRYPTO DRIVERS
18173M:	Corentin Labbe <clabbe@baylibre.com>
18174L:	linux-crypto@vger.kernel.org
18175S:	Maintained
18176F:	Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
18177F:	drivers/crypto/rockchip/
18178
18179ROCKCHIP I2S TDM DRIVER
18180M:	Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
18181L:	linux-rockchip@lists.infradead.org
18182S:	Maintained
18183F:	Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
18184F:	sound/soc/rockchip/rockchip_i2s_tdm.*
18185
18186ROCKCHIP ISP V1 DRIVER
18187M:	Dafna Hirschfeld <dafna@fastmail.com>
18188L:	linux-media@vger.kernel.org
18189L:	linux-rockchip@lists.infradead.org
18190S:	Maintained
18191F:	Documentation/admin-guide/media/rkisp1.rst
18192F:	Documentation/devicetree/bindings/media/rockchip-isp1.yaml
18193F:	Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
18194F:	drivers/media/platform/rockchip/rkisp1
18195F:	include/uapi/linux/rkisp1-config.h
18196
18197ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
18198M:	Jacob Chen <jacob-chen@iotwrt.com>
18199M:	Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18200L:	linux-media@vger.kernel.org
18201L:	linux-rockchip@lists.infradead.org
18202S:	Maintained
18203F:	Documentation/devicetree/bindings/media/rockchip-rga.yaml
18204F:	drivers/media/platform/rockchip/rga/
18205
18206ROCKCHIP VIDEO DECODER DRIVER
18207M:	Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18208L:	linux-media@vger.kernel.org
18209L:	linux-rockchip@lists.infradead.org
18210S:	Maintained
18211F:	Documentation/devicetree/bindings/media/rockchip,vdec.yaml
18212F:	drivers/staging/media/rkvdec/
18213
18214ROCKER DRIVER
18215M:	Jiri Pirko <jiri@resnulli.us>
18216L:	netdev@vger.kernel.org
18217S:	Supported
18218F:	drivers/net/ethernet/rocker/
18219
18220ROCKETPORT EXPRESS/INFINITY DRIVER
18221M:	Kevin Cernekee <cernekee@gmail.com>
18222L:	linux-serial@vger.kernel.org
18223S:	Odd Fixes
18224F:	drivers/tty/serial/rp2.*
18225
18226ROHM BD99954 CHARGER IC
18227M:	Matti Vaittinen <mazziesaccount@gmail.com>
18228S:	Supported
18229F:	drivers/power/supply/bd99954-charger.c
18230F:	drivers/power/supply/bd99954-charger.h
18231
18232ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
18233M:	Tomasz Duszynski <tduszyns@gmail.com>
18234S:	Maintained
18235F:	Documentation/devicetree/bindings/iio/light/bh1750.yaml
18236F:	drivers/iio/light/bh1750.c
18237
18238ROHM BU27034 AMBIENT LIGHT SENSOR DRIVER
18239M:	Matti Vaittinen <mazziesaccount@gmail.com>
18240L:	linux-iio@vger.kernel.org
18241S:	Supported
18242F:	drivers/iio/light/rohm-bu27034.c
18243
18244ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
18245M:	Marek Vasut <marek.vasut+renesas@gmail.com>
18246L:	linux-kernel@vger.kernel.org
18247L:	linux-renesas-soc@vger.kernel.org
18248S:	Supported
18249F:	Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
18250F:	drivers/gpio/gpio-bd9571mwv.c
18251F:	drivers/mfd/bd9571mwv.c
18252F:	drivers/regulator/bd9571mwv-regulator.c
18253F:	include/linux/mfd/bd9571mwv.h
18254
18255ROHM POWER MANAGEMENT IC DEVICE DRIVERS
18256M:	Matti Vaittinen <mazziesaccount@gmail.com>
18257S:	Supported
18258F:	drivers/clk/clk-bd718x7.c
18259F:	drivers/gpio/gpio-bd71815.c
18260F:	drivers/gpio/gpio-bd71828.c
18261F:	drivers/mfd/rohm-bd71828.c
18262F:	drivers/mfd/rohm-bd718x7.c
18263F:	drivers/mfd/rohm-bd9576.c
18264F:	drivers/regulator/bd71815-regulator.c
18265F:	drivers/regulator/bd71828-regulator.c
18266F:	drivers/regulator/bd718x7-regulator.c
18267F:	drivers/regulator/bd9576-regulator.c
18268F:	drivers/regulator/rohm-regulator.c
18269F:	drivers/rtc/rtc-bd70528.c
18270F:	drivers/watchdog/bd9576_wdt.c
18271F:	include/linux/mfd/rohm-bd71815.h
18272F:	include/linux/mfd/rohm-bd71828.h
18273F:	include/linux/mfd/rohm-bd718x7.h
18274F:	include/linux/mfd/rohm-bd957x.h
18275F:	include/linux/mfd/rohm-generic.h
18276F:	include/linux/mfd/rohm-shared.h
18277
18278ROSE NETWORK LAYER
18279M:	Ralf Baechle <ralf@linux-mips.org>
18280L:	linux-hams@vger.kernel.org
18281S:	Maintained
18282W:	http://www.linux-ax25.org/
18283F:	include/net/rose.h
18284F:	include/uapi/linux/rose.h
18285F:	net/rose/
18286
18287ROTATION DRIVER FOR ALLWINNER A83T
18288M:	Jernej Skrabec <jernej.skrabec@gmail.com>
18289L:	linux-media@vger.kernel.org
18290S:	Maintained
18291T:	git git://linuxtv.org/media_tree.git
18292F:	Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
18293F:	drivers/media/platform/sunxi/sun8i-rotate/
18294
18295RPMSG TTY DRIVER
18296M:	Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18297L:	linux-remoteproc@vger.kernel.org
18298S:	Maintained
18299F:	drivers/tty/rpmsg_tty.c
18300
18301RTL2830 MEDIA DRIVER
18302M:	Antti Palosaari <crope@iki.fi>
18303L:	linux-media@vger.kernel.org
18304S:	Maintained
18305W:	https://linuxtv.org
18306W:	http://palosaari.fi/linux/
18307Q:	http://patchwork.linuxtv.org/project/linux-media/list/
18308T:	git git://linuxtv.org/anttip/media_tree.git
18309F:	drivers/media/dvb-frontends/rtl2830*
18310
18311RTL2832 MEDIA DRIVER
18312M:	Antti Palosaari <crope@iki.fi>
18313L:	linux-media@vger.kernel.org
18314S:	Maintained
18315W:	https://linuxtv.org
18316W:	http://palosaari.fi/linux/
18317Q:	http://patchwork.linuxtv.org/project/linux-media/list/
18318T:	git git://linuxtv.org/anttip/media_tree.git
18319F:	drivers/media/dvb-frontends/rtl2832*
18320
18321RTL2832_SDR MEDIA DRIVER
18322M:	Antti Palosaari <crope@iki.fi>
18323L:	linux-media@vger.kernel.org
18324S:	Maintained
18325W:	https://linuxtv.org
18326W:	http://palosaari.fi/linux/
18327Q:	http://patchwork.linuxtv.org/project/linux-media/list/
18328T:	git git://linuxtv.org/anttip/media_tree.git
18329F:	drivers/media/dvb-frontends/rtl2832_sdr*
18330
18331RTL8180 WIRELESS DRIVER
18332L:	linux-wireless@vger.kernel.org
18333S:	Orphan
18334W:	https://wireless.wiki.kernel.org/
18335T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18336F:	drivers/net/wireless/realtek/rtl818x/rtl8180/
18337
18338RTL8187 WIRELESS DRIVER
18339M:	Herton Ronaldo Krzesinski <herton@canonical.com>
18340M:	Hin-Tak Leung <htl10@users.sourceforge.net>
18341M:	Larry Finger <Larry.Finger@lwfinger.net>
18342L:	linux-wireless@vger.kernel.org
18343S:	Maintained
18344W:	https://wireless.wiki.kernel.org/
18345T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18346F:	drivers/net/wireless/realtek/rtl818x/rtl8187/
18347
18348RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
18349M:	Jes Sorensen <Jes.Sorensen@gmail.com>
18350L:	linux-wireless@vger.kernel.org
18351S:	Maintained
18352T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
18353F:	drivers/net/wireless/realtek/rtl8xxxu/
18354
18355RTRS TRANSPORT DRIVERS
18356M:	Md. Haris Iqbal <haris.iqbal@ionos.com>
18357M:	Jack Wang <jinpu.wang@ionos.com>
18358L:	linux-rdma@vger.kernel.org
18359S:	Maintained
18360F:	drivers/infiniband/ulp/rtrs/
18361
18362RUNTIME VERIFICATION (RV)
18363M:	Daniel Bristot de Oliveira <bristot@kernel.org>
18364M:	Steven Rostedt <rostedt@goodmis.org>
18365L:	linux-trace-devel@vger.kernel.org
18366S:	Maintained
18367F:	Documentation/trace/rv/
18368F:	include/linux/rv.h
18369F:	include/rv/
18370F:	kernel/trace/rv/
18371F:	tools/verification/
18372
18373RUST
18374M:	Miguel Ojeda <ojeda@kernel.org>
18375M:	Alex Gaynor <alex.gaynor@gmail.com>
18376M:	Wedson Almeida Filho <wedsonaf@gmail.com>
18377R:	Boqun Feng <boqun.feng@gmail.com>
18378R:	Gary Guo <gary@garyguo.net>
18379R:	Björn Roy Baron <bjorn3_gh@protonmail.com>
18380R:	Benno Lossin <benno.lossin@proton.me>
18381L:	rust-for-linux@vger.kernel.org
18382S:	Supported
18383W:	https://github.com/Rust-for-Linux/linux
18384B:	https://github.com/Rust-for-Linux/linux/issues
18385C:	zulip://rust-for-linux.zulipchat.com
18386T:	git https://github.com/Rust-for-Linux/linux.git rust-next
18387F:	Documentation/rust/
18388F:	rust/
18389F:	samples/rust/
18390F:	scripts/*rust*
18391K:	\b(?i:rust)\b
18392
18393RXRPC SOCKETS (AF_RXRPC)
18394M:	David Howells <dhowells@redhat.com>
18395M:	Marc Dionne <marc.dionne@auristor.com>
18396L:	linux-afs@lists.infradead.org
18397S:	Supported
18398W:	https://www.infradead.org/~dhowells/kafs/
18399F:	Documentation/networking/rxrpc.rst
18400F:	include/keys/rxrpc-type.h
18401F:	include/net/af_rxrpc.h
18402F:	include/trace/events/rxrpc.h
18403F:	include/uapi/linux/rxrpc.h
18404F:	net/rxrpc/
18405
18406S3 SAVAGE FRAMEBUFFER DRIVER
18407M:	Antonino Daplas <adaplas@gmail.com>
18408L:	linux-fbdev@vger.kernel.org
18409S:	Maintained
18410F:	drivers/video/fbdev/savage/
18411
18412S390 ARCHITECTURE
18413M:	Heiko Carstens <hca@linux.ibm.com>
18414M:	Vasily Gorbik <gor@linux.ibm.com>
18415M:	Alexander Gordeev <agordeev@linux.ibm.com>
18416R:	Christian Borntraeger <borntraeger@linux.ibm.com>
18417R:	Sven Schnelle <svens@linux.ibm.com>
18418L:	linux-s390@vger.kernel.org
18419S:	Supported
18420T:	git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18421F:	Documentation/driver-api/s390-drivers.rst
18422F:	Documentation/s390/
18423F:	arch/s390/
18424F:	drivers/s390/
18425F:	drivers/watchdog/diag288_wdt.c
18426
18427S390 COMMON I/O LAYER
18428M:	Vineeth Vijayan <vneethv@linux.ibm.com>
18429M:	Peter Oberparleiter <oberpar@linux.ibm.com>
18430L:	linux-s390@vger.kernel.org
18431S:	Supported
18432F:	drivers/s390/cio/
18433
18434S390 DASD DRIVER
18435M:	Stefan Haberland <sth@linux.ibm.com>
18436M:	Jan Hoeppner <hoeppner@linux.ibm.com>
18437L:	linux-s390@vger.kernel.org
18438S:	Supported
18439F:	block/partitions/ibm.c
18440F:	drivers/s390/block/dasd*
18441F:	include/linux/dasd_mod.h
18442
18443S390 IOMMU (PCI)
18444M:	Niklas Schnelle <schnelle@linux.ibm.com>
18445M:	Matthew Rosato <mjrosato@linux.ibm.com>
18446R:	Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18447L:	linux-s390@vger.kernel.org
18448S:	Supported
18449F:	drivers/iommu/s390-iommu.c
18450
18451S390 IUCV NETWORK LAYER
18452M:	Alexandra Winter <wintera@linux.ibm.com>
18453M:	Wenjia Zhang <wenjia@linux.ibm.com>
18454L:	linux-s390@vger.kernel.org
18455L:	netdev@vger.kernel.org
18456S:	Supported
18457F:	drivers/s390/net/*iucv*
18458F:	include/net/iucv/
18459F:	net/iucv/
18460
18461S390 NETWORK DRIVERS
18462M:	Alexandra Winter <wintera@linux.ibm.com>
18463M:	Wenjia Zhang <wenjia@linux.ibm.com>
18464L:	linux-s390@vger.kernel.org
18465L:	netdev@vger.kernel.org
18466S:	Supported
18467F:	drivers/s390/net/
18468
18469S390 MM
18470M:	Alexander Gordeev <agordeev@linux.ibm.com>
18471M:	Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18472L:	linux-s390@vger.kernel.org
18473S:	Supported
18474T:	git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18475F:	arch/s390/include/asm/pgtable.h
18476F:	arch/s390/mm
18477
18478S390 PCI SUBSYSTEM
18479M:	Niklas Schnelle <schnelle@linux.ibm.com>
18480M:	Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18481L:	linux-s390@vger.kernel.org
18482S:	Supported
18483F:	arch/s390/pci/
18484F:	drivers/pci/hotplug/s390_pci_hpc.c
18485F:	Documentation/s390/pci.rst
18486
18487S390 SCM DRIVER
18488M:	Vineeth Vijayan <vneethv@linux.ibm.com>
18489L:	linux-s390@vger.kernel.org
18490S:	Supported
18491F:	drivers/s390/block/scm*
18492F:	drivers/s390/cio/scm.c
18493
18494S390 VFIO AP DRIVER
18495M:	Tony Krowiak <akrowiak@linux.ibm.com>
18496M:	Halil Pasic <pasic@linux.ibm.com>
18497M:	Jason Herne <jjherne@linux.ibm.com>
18498L:	linux-s390@vger.kernel.org
18499S:	Supported
18500F:	Documentation/s390/vfio-ap*
18501F:	drivers/s390/crypto/vfio_ap*
18502
18503S390 VFIO-CCW DRIVER
18504M:	Eric Farman <farman@linux.ibm.com>
18505M:	Matthew Rosato <mjrosato@linux.ibm.com>
18506R:	Halil Pasic <pasic@linux.ibm.com>
18507L:	linux-s390@vger.kernel.org
18508L:	kvm@vger.kernel.org
18509S:	Supported
18510F:	Documentation/s390/vfio-ccw.rst
18511F:	drivers/s390/cio/vfio_ccw*
18512F:	include/uapi/linux/vfio_ccw.h
18513
18514S390 VFIO-PCI DRIVER
18515M:	Matthew Rosato <mjrosato@linux.ibm.com>
18516M:	Eric Farman <farman@linux.ibm.com>
18517L:	linux-s390@vger.kernel.org
18518L:	kvm@vger.kernel.org
18519S:	Supported
18520F:	arch/s390/kvm/pci*
18521F:	drivers/vfio/pci/vfio_pci_zdev.c
18522F:	include/uapi/linux/vfio_zdev.h
18523
18524S390 ZCRYPT DRIVER
18525M:	Harald Freudenberger <freude@linux.ibm.com>
18526L:	linux-s390@vger.kernel.org
18527S:	Supported
18528F:	drivers/s390/crypto/
18529
18530S390 ZFCP DRIVER
18531M:	Steffen Maier <maier@linux.ibm.com>
18532M:	Benjamin Block <bblock@linux.ibm.com>
18533L:	linux-s390@vger.kernel.org
18534S:	Supported
18535F:	drivers/s390/scsi/zfcp_*
18536
18537SAA6588 RDS RECEIVER DRIVER
18538M:	Hans Verkuil <hverkuil@xs4all.nl>
18539L:	linux-media@vger.kernel.org
18540S:	Odd Fixes
18541W:	https://linuxtv.org
18542T:	git git://linuxtv.org/media_tree.git
18543F:	drivers/media/i2c/saa6588*
18544
18545SAA7134 VIDEO4LINUX DRIVER
18546M:	Mauro Carvalho Chehab <mchehab@kernel.org>
18547L:	linux-media@vger.kernel.org
18548S:	Odd fixes
18549W:	https://linuxtv.org
18550T:	git git://linuxtv.org/media_tree.git
18551F:	Documentation/driver-api/media/drivers/saa7134*
18552F:	drivers/media/pci/saa7134/
18553
18554SAA7146 VIDEO4LINUX-2 DRIVER
18555M:	Hans Verkuil <hverkuil@xs4all.nl>
18556L:	linux-media@vger.kernel.org
18557S:	Maintained
18558T:	git git://linuxtv.org/media_tree.git
18559F:	drivers/media/common/saa7146/
18560F:	drivers/media/pci/saa7146/
18561F:	include/media/drv-intf/saa7146*
18562
18563SAFESETID SECURITY MODULE
18564M:	Micah Morton <mortonm@chromium.org>
18565S:	Supported
18566F:	Documentation/admin-guide/LSM/SafeSetID.rst
18567F:	security/safesetid/
18568
18569SAMSUNG AUDIO (ASoC) DRIVERS
18570M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18571M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
18572L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
18573S:	Supported
18574B:	mailto:linux-samsung-soc@vger.kernel.org
18575F:	Documentation/devicetree/bindings/sound/samsung*
18576F:	sound/soc/samsung/
18577
18578SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18579M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18580L:	linux-crypto@vger.kernel.org
18581L:	linux-samsung-soc@vger.kernel.org
18582S:	Maintained
18583F:	Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18584F:	drivers/crypto/exynos-rng.c
18585
18586SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18587M:	Łukasz Stelmach <l.stelmach@samsung.com>
18588L:	linux-samsung-soc@vger.kernel.org
18589S:	Maintained
18590F:	Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18591F:	drivers/char/hw_random/exynos-trng.c
18592
18593SAMSUNG FRAMEBUFFER DRIVER
18594M:	Jingoo Han <jingoohan1@gmail.com>
18595L:	linux-fbdev@vger.kernel.org
18596S:	Maintained
18597F:	drivers/video/fbdev/s3c-fb.c
18598
18599SAMSUNG INTERCONNECT DRIVERS
18600M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
18601M:	Artur Świgoń <a.swigon@samsung.com>
18602L:	linux-pm@vger.kernel.org
18603L:	linux-samsung-soc@vger.kernel.org
18604S:	Supported
18605F:	drivers/interconnect/samsung/
18606
18607SAMSUNG LAPTOP DRIVER
18608M:	Corentin Chary <corentin.chary@gmail.com>
18609L:	platform-driver-x86@vger.kernel.org
18610S:	Maintained
18611F:	drivers/platform/x86/samsung-laptop.c
18612
18613SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18614M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18615L:	linux-kernel@vger.kernel.org
18616L:	linux-samsung-soc@vger.kernel.org
18617S:	Supported
18618B:	mailto:linux-samsung-soc@vger.kernel.org
18619F:	Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18620F:	Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18621F:	Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18622F:	Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18623F:	Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18624F:	drivers/clk/clk-s2mps11.c
18625F:	drivers/mfd/sec*.c
18626F:	drivers/regulator/s2m*.c
18627F:	drivers/regulator/s5m*.c
18628F:	drivers/rtc/rtc-s5m.c
18629F:	include/linux/mfd/samsung/
18630
18631SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18632M:	Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18633L:	linux-media@vger.kernel.org
18634L:	linux-samsung-soc@vger.kernel.org
18635S:	Maintained
18636F:	drivers/media/platform/samsung/s3c-camif/
18637F:	include/media/drv-intf/s3c_camif.h
18638
18639SAMSUNG S3FWRN5 NFC DRIVER
18640M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18641S:	Maintained
18642F:	Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18643F:	drivers/nfc/s3fwrn5
18644
18645SAMSUNG S5C73M3 CAMERA DRIVER
18646M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
18647M:	Andrzej Hajda <andrzej.hajda@intel.com>
18648L:	linux-media@vger.kernel.org
18649S:	Supported
18650F:	Documentation/devicetree/bindings/media/samsung,s5c73m3.yaml
18651F:	drivers/media/i2c/s5c73m3/*
18652
18653SAMSUNG S5K5BAF CAMERA DRIVER
18654M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
18655M:	Andrzej Hajda <andrzej.hajda@intel.com>
18656L:	linux-media@vger.kernel.org
18657S:	Supported
18658F:	drivers/media/i2c/s5k5baf.c
18659
18660SAMSUNG S5P Security SubSystem (SSS) DRIVER
18661M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18662M:	Vladimir Zapolskiy <vz@mleia.com>
18663L:	linux-crypto@vger.kernel.org
18664L:	linux-samsung-soc@vger.kernel.org
18665S:	Maintained
18666F:	Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18667F:	Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18668F:	drivers/crypto/s5p-sss.c
18669
18670SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18671M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
18672L:	linux-media@vger.kernel.org
18673S:	Supported
18674Q:	https://patchwork.linuxtv.org/project/linux-media/list/
18675F:	Documentation/devicetree/bindings/media/samsung,exynos4210-csis.yaml
18676F:	Documentation/devicetree/bindings/media/samsung,exynos4210-fimc.yaml
18677F:	Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-is.yaml
18678F:	Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-lite.yaml
18679F:	Documentation/devicetree/bindings/media/samsung,fimc.yaml
18680F:	drivers/media/platform/samsung/exynos4-is/
18681
18682SAMSUNG SOC CLOCK DRIVERS
18683M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18684M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
18685M:	Tomasz Figa <tomasz.figa@gmail.com>
18686M:	Chanwoo Choi <cw00.choi@samsung.com>
18687R:	Alim Akhtar <alim.akhtar@samsung.com>
18688L:	linux-samsung-soc@vger.kernel.org
18689S:	Supported
18690T:	git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
18691T:	git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18692F:	Documentation/devicetree/bindings/clock/samsung,*.yaml
18693F:	Documentation/devicetree/bindings/clock/samsung,s3c*
18694F:	drivers/clk/samsung/
18695F:	include/dt-bindings/clock/exynos*.h
18696F:	include/dt-bindings/clock/s5p*.h
18697F:	include/dt-bindings/clock/samsung,*.h
18698F:	include/linux/clk/samsung.h
18699
18700SAMSUNG SPI DRIVERS
18701M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18702M:	Andi Shyti <andi.shyti@kernel.org>
18703L:	linux-spi@vger.kernel.org
18704L:	linux-samsung-soc@vger.kernel.org
18705S:	Maintained
18706F:	Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18707F:	drivers/spi/spi-s3c*
18708F:	include/linux/platform_data/spi-s3c64xx.h
18709
18710SAMSUNG SXGBE DRIVERS
18711M:	Byungho An <bh74.an@samsung.com>
18712L:	netdev@vger.kernel.org
18713S:	Supported
18714F:	drivers/net/ethernet/samsung/sxgbe/
18715
18716SAMSUNG THERMAL DRIVER
18717M:	Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18718M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18719L:	linux-pm@vger.kernel.org
18720L:	linux-samsung-soc@vger.kernel.org
18721S:	Maintained
18722F:	Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18723F:	drivers/thermal/samsung/
18724
18725SAMSUNG USB2 PHY DRIVER
18726M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
18727L:	linux-kernel@vger.kernel.org
18728S:	Supported
18729F:	Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18730F:	Documentation/driver-api/phy/samsung-usb2.rst
18731F:	drivers/phy/samsung/phy-exynos4210-usb2.c
18732F:	drivers/phy/samsung/phy-exynos4x12-usb2.c
18733F:	drivers/phy/samsung/phy-exynos5250-usb2.c
18734F:	drivers/phy/samsung/phy-s5pv210-usb2.c
18735F:	drivers/phy/samsung/phy-samsung-usb2.c
18736F:	drivers/phy/samsung/phy-samsung-usb2.h
18737
18738SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18739M:	Paul Barker <paul.barker@sancloud.com>
18740R:	Marc Murphy <marc.murphy@sancloud.com>
18741S:	Supported
18742F:	arch/arm/boot/dts/am335x-sancloud*
18743
18744SC1200 WDT DRIVER
18745M:	Zwane Mwaikambo <zwanem@gmail.com>
18746S:	Maintained
18747F:	drivers/watchdog/sc1200wdt.c
18748
18749SCHEDULER
18750M:	Ingo Molnar <mingo@redhat.com>
18751M:	Peter Zijlstra <peterz@infradead.org>
18752M:	Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18753M:	Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18754R:	Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18755R:	Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18756R:	Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18757R:	Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18758R:	Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18759R:	Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18760L:	linux-kernel@vger.kernel.org
18761S:	Maintained
18762T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18763F:	include/linux/preempt.h
18764F:	include/linux/sched.h
18765F:	include/linux/wait.h
18766F:	include/uapi/linux/sched.h
18767F:	kernel/sched/
18768
18769SCSI RDMA PROTOCOL (SRP) INITIATOR
18770M:	Bart Van Assche <bvanassche@acm.org>
18771L:	linux-rdma@vger.kernel.org
18772S:	Supported
18773Q:	http://patchwork.kernel.org/project/linux-rdma/list/
18774F:	drivers/infiniband/ulp/srp/
18775F:	include/scsi/srp.h
18776
18777SCSI RDMA PROTOCOL (SRP) TARGET
18778M:	Bart Van Assche <bvanassche@acm.org>
18779L:	linux-rdma@vger.kernel.org
18780L:	target-devel@vger.kernel.org
18781S:	Supported
18782Q:	http://patchwork.kernel.org/project/linux-rdma/list/
18783F:	drivers/infiniband/ulp/srpt/
18784
18785SCSI SG DRIVER
18786M:	Doug Gilbert <dgilbert@interlog.com>
18787L:	linux-scsi@vger.kernel.org
18788S:	Maintained
18789W:	http://sg.danny.cz/sg
18790F:	Documentation/scsi/scsi-generic.rst
18791F:	drivers/scsi/sg.c
18792F:	include/scsi/sg.h
18793
18794SCSI SUBSYSTEM
18795M:	"James E.J. Bottomley" <jejb@linux.ibm.com>
18796M:	"Martin K. Petersen" <martin.petersen@oracle.com>
18797L:	linux-scsi@vger.kernel.org
18798S:	Maintained
18799Q:	https://patchwork.kernel.org/project/linux-scsi/list/
18800T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18801T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18802F:	Documentation/devicetree/bindings/scsi/
18803F:	drivers/scsi/
18804F:	drivers/ufs/
18805F:	include/scsi/
18806
18807SCSI TAPE DRIVER
18808M:	Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18809L:	linux-scsi@vger.kernel.org
18810S:	Maintained
18811F:	Documentation/scsi/st.rst
18812F:	drivers/scsi/st.*
18813F:	drivers/scsi/st_*.h
18814
18815SCSI TARGET CORE USER DRIVER
18816M:	Bodo Stroesser <bostroesser@gmail.com>
18817L:	linux-scsi@vger.kernel.org
18818L:	target-devel@vger.kernel.org
18819S:	Supported
18820F:	Documentation/target/tcmu-design.rst
18821F:	drivers/target/target_core_user.c
18822F:	include/uapi/linux/target_core_user.h
18823
18824SCSI TARGET SUBSYSTEM
18825M:	"Martin K. Petersen" <martin.petersen@oracle.com>
18826L:	linux-scsi@vger.kernel.org
18827L:	target-devel@vger.kernel.org
18828S:	Supported
18829W:	http://www.linux-iscsi.org
18830Q:	https://patchwork.kernel.org/project/target-devel/list/
18831T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18832F:	Documentation/target/
18833F:	drivers/target/
18834F:	include/target/
18835
18836SCTP PROTOCOL
18837M:	Neil Horman <nhorman@tuxdriver.com>
18838M:	Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18839M:	Xin Long <lucien.xin@gmail.com>
18840L:	linux-sctp@vger.kernel.org
18841S:	Maintained
18842W:	http://lksctp.sourceforge.net
18843F:	Documentation/networking/sctp.rst
18844F:	include/linux/sctp.h
18845F:	include/net/sctp/
18846F:	include/uapi/linux/sctp.h
18847F:	net/sctp/
18848
18849SCx200 CPU SUPPORT
18850M:	Jim Cromie <jim.cromie@gmail.com>
18851S:	Odd Fixes
18852F:	Documentation/i2c/busses/scx200_acb.rst
18853F:	arch/x86/platform/scx200/
18854F:	drivers/i2c/busses/scx200*
18855F:	drivers/mtd/maps/scx200_docflash.c
18856F:	drivers/watchdog/scx200_wdt.c
18857F:	include/linux/scx200.h
18858
18859SCx200 GPIO DRIVER
18860M:	Jim Cromie <jim.cromie@gmail.com>
18861S:	Maintained
18862F:	drivers/char/scx200_gpio.c
18863F:	include/linux/scx200_gpio.h
18864
18865SCx200 HRT CLOCKSOURCE DRIVER
18866M:	Jim Cromie <jim.cromie@gmail.com>
18867S:	Maintained
18868F:	drivers/clocksource/scx200_hrt.c
18869
18870SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18871M:	Sascha Sommer <saschasommer@freenet.de>
18872L:	sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18873S:	Maintained
18874F:	drivers/mmc/host/sdricoh_cs.c
18875
18876SECO BOARDS CEC DRIVER
18877M:	Ettore Chimenti <ek5.chimenti@gmail.com>
18878S:	Maintained
18879F:	drivers/media/cec/platform/seco/seco-cec.c
18880F:	drivers/media/cec/platform/seco/seco-cec.h
18881
18882SECURE COMPUTING
18883M:	Kees Cook <keescook@chromium.org>
18884R:	Andy Lutomirski <luto@amacapital.net>
18885R:	Will Drewry <wad@chromium.org>
18886S:	Supported
18887T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18888F:	Documentation/userspace-api/seccomp_filter.rst
18889F:	include/linux/seccomp.h
18890F:	include/uapi/linux/seccomp.h
18891F:	kernel/seccomp.c
18892F:	tools/testing/selftests/kselftest_harness.h
18893F:	tools/testing/selftests/seccomp/*
18894K:	\bsecure_computing
18895K:	\bTIF_SECCOMP\b
18896
18897SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18898M:	Kamal Dasu <kdasu.kdev@gmail.com>
18899M:	Al Cooper <alcooperx@gmail.com>
18900R:	Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18901L:	linux-mmc@vger.kernel.org
18902S:	Maintained
18903F:	drivers/mmc/host/sdhci-brcmstb*
18904
18905SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18906M:	Adrian Hunter <adrian.hunter@intel.com>
18907L:	linux-mmc@vger.kernel.org
18908S:	Supported
18909F:	Documentation/devicetree/bindings/mmc/sdhci-common.yaml
18910F:	drivers/mmc/host/sdhci*
18911
18912SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18913M:	Eugen Hristev <eugen.hristev@microchip.com>
18914L:	linux-mmc@vger.kernel.org
18915S:	Supported
18916F:	drivers/mmc/host/sdhci-of-at91.c
18917
18918SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18919M:	Ben Dooks <ben-linux@fluff.org>
18920M:	Jaehoon Chung <jh80.chung@samsung.com>
18921L:	linux-mmc@vger.kernel.org
18922S:	Maintained
18923F:	drivers/mmc/host/sdhci-s3c*
18924
18925SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18926M:	Viresh Kumar <vireshk@kernel.org>
18927L:	linux-mmc@vger.kernel.org
18928S:	Maintained
18929F:	drivers/mmc/host/sdhci-spear.c
18930
18931SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18932M:	Vignesh Raghavendra <vigneshr@ti.com>
18933L:	linux-mmc@vger.kernel.org
18934S:	Maintained
18935F:	drivers/mmc/host/sdhci-omap.c
18936
18937SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18938M:	Haibo Chen <haibo.chen@nxp.com>
18939L:	linux-imx@nxp.com
18940L:	linux-mmc@vger.kernel.org
18941S:	Maintained
18942F:	drivers/mmc/host/sdhci-esdhc-imx.c
18943
18944SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18945M:	Jonathan Derrick <jonathan.derrick@linux.dev>
18946L:	linux-block@vger.kernel.org
18947S:	Supported
18948F:	block/opal_proto.h
18949F:	block/sed*
18950F:	include/linux/sed*
18951F:	include/uapi/linux/sed*
18952
18953SECURITY CONTACT
18954M:	Security Officers <security@kernel.org>
18955S:	Supported
18956F:	Documentation/process/security-bugs.rst
18957
18958SECURITY SUBSYSTEM
18959M:	Paul Moore <paul@paul-moore.com>
18960M:	James Morris <jmorris@namei.org>
18961M:	"Serge E. Hallyn" <serge@hallyn.com>
18962L:	linux-security-module@vger.kernel.org (suggested Cc:)
18963S:	Supported
18964W:	http://kernsec.org/
18965T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18966F:	security/
18967X:	security/selinux/
18968
18969SELINUX SECURITY MODULE
18970M:	Paul Moore <paul@paul-moore.com>
18971M:	Stephen Smalley <stephen.smalley.work@gmail.com>
18972M:	Eric Paris <eparis@parisplace.org>
18973L:	selinux@vger.kernel.org
18974S:	Supported
18975W:	https://selinuxproject.org
18976W:	https://github.com/SELinuxProject
18977T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18978F:	Documentation/ABI/removed/sysfs-selinux-checkreqprot
18979F:	Documentation/ABI/removed/sysfs-selinux-disable
18980F:	Documentation/admin-guide/LSM/SELinux.rst
18981F:	include/trace/events/avc.h
18982F:	include/uapi/linux/selinux_netlink.h
18983F:	scripts/selinux/
18984F:	security/selinux/
18985
18986SENSABLE PHANTOM
18987M:	Jiri Slaby <jirislaby@kernel.org>
18988S:	Maintained
18989F:	drivers/misc/phantom.c
18990F:	include/uapi/linux/phantom.h
18991
18992SENSEAIR SUNRISE 006-0-0007
18993M:	Jacopo Mondi <jacopo@jmondi.org>
18994S:	Maintained
18995F:	Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18996F:	Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18997F:	drivers/iio/chemical/sunrise_co2.c
18998
18999SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
19000M:	Tomasz Duszynski <tomasz.duszynski@octakon.com>
19001S:	Maintained
19002F:	Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
19003F:	drivers/iio/chemical/scd30.h
19004F:	drivers/iio/chemical/scd30_core.c
19005F:	drivers/iio/chemical/scd30_i2c.c
19006F:	drivers/iio/chemical/scd30_serial.c
19007
19008SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
19009M:	Roan van Dijk <roan@protonic.nl>
19010S:	Maintained
19011F:	Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
19012F:	drivers/iio/chemical/scd4x.c
19013
19014SENSIRION SGP40 GAS SENSOR DRIVER
19015M:	Andreas Klinger <ak@it-klinger.de>
19016S:	Maintained
19017F:	Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
19018F:	drivers/iio/chemical/sgp40.c
19019
19020SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
19021M:	Tomasz Duszynski <tduszyns@gmail.com>
19022S:	Maintained
19023F:	Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
19024F:	drivers/iio/chemical/sps30.c
19025F:	drivers/iio/chemical/sps30_i2c.c
19026F:	drivers/iio/chemical/sps30_serial.c
19027
19028SERIAL DEVICE BUS
19029M:	Rob Herring <robh@kernel.org>
19030L:	linux-serial@vger.kernel.org
19031S:	Maintained
19032F:	Documentation/devicetree/bindings/serial/serial.yaml
19033F:	drivers/tty/serdev/
19034F:	include/linux/serdev.h
19035
19036SERIAL DRIVERS
19037M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19038L:	linux-serial@vger.kernel.org
19039S:	Maintained
19040F:	Documentation/devicetree/bindings/serial/
19041F:	drivers/tty/serial/
19042
19043SERIAL IR RECEIVER
19044M:	Sean Young <sean@mess.org>
19045L:	linux-media@vger.kernel.org
19046S:	Maintained
19047F:	drivers/media/rc/serial_ir.c
19048
19049SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
19050M:	Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
19051L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
19052S:	Maintained
19053F:	Documentation/devicetree/bindings/slimbus/
19054F:	drivers/slimbus/
19055F:	include/linux/slimbus.h
19056
19057SFC NETWORK DRIVER
19058M:	Edward Cree <ecree.xilinx@gmail.com>
19059M:	Martin Habets <habetsm.xilinx@gmail.com>
19060L:	netdev@vger.kernel.org
19061L:	linux-net-drivers@amd.com
19062S:	Supported
19063F:	Documentation/networking/devlink/sfc.rst
19064F:	drivers/net/ethernet/sfc/
19065
19066SFCTEMP HWMON DRIVER
19067M:	Emil Renner Berthing <kernel@esmil.dk>
19068L:	linux-hwmon@vger.kernel.org
19069S:	Maintained
19070F:	Documentation/devicetree/bindings/hwmon/starfive,jh71x0-temp.yaml
19071F:	Documentation/hwmon/sfctemp.rst
19072F:	drivers/hwmon/sfctemp.c
19073
19074SFF/SFP/SFP+ MODULE SUPPORT
19075M:	Russell King <linux@armlinux.org.uk>
19076L:	netdev@vger.kernel.org
19077S:	Maintained
19078F:	Documentation/devicetree/bindings/net/sff,sfp.yaml
19079F:	drivers/net/phy/phylink.c
19080F:	drivers/net/phy/sfp*
19081F:	include/linux/mdio/mdio-i2c.h
19082F:	include/linux/phylink.h
19083F:	include/linux/sfp.h
19084K:	phylink\.h|struct\s+phylink|\.phylink|>phylink_|phylink_(autoneg|clear|connect|create|destroy|disconnect|ethtool|helper|mac|mii|of|set|start|stop|test|validate)
19085
19086SGI GRU DRIVER
19087M:	Dimitri Sivanich <dimitri.sivanich@hpe.com>
19088S:	Maintained
19089F:	drivers/misc/sgi-gru/
19090
19091SGI XP/XPC/XPNET DRIVER
19092M:	Robin Holt <robinmholt@gmail.com>
19093M:	Steve Wahl <steve.wahl@hpe.com>
19094R:	Mike Travis <mike.travis@hpe.com>
19095S:	Maintained
19096F:	drivers/misc/sgi-xp/
19097
19098SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
19099M:	Karsten Graul <kgraul@linux.ibm.com>
19100M:	Wenjia Zhang <wenjia@linux.ibm.com>
19101M:	Jan Karcher <jaka@linux.ibm.com>
19102L:	linux-s390@vger.kernel.org
19103S:	Supported
19104F:	net/smc/
19105
19106SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
19107M:	Linus Walleij <linus.walleij@linaro.org>
19108L:	linux-iio@vger.kernel.org
19109S:	Maintained
19110T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
19111F:	Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
19112F:	drivers/iio/light/gp2ap002.c
19113
19114SHARP RJ54N1CB0C SENSOR DRIVER
19115M:	Jacopo Mondi <jacopo@jmondi.org>
19116L:	linux-media@vger.kernel.org
19117S:	Odd fixes
19118T:	git git://linuxtv.org/media_tree.git
19119F:	drivers/media/i2c/rj54n1cb0c.c
19120F:	include/media/i2c/rj54n1cb0c.h
19121
19122SH_VOU V4L2 OUTPUT DRIVER
19123L:	linux-media@vger.kernel.org
19124S:	Orphan
19125F:	drivers/media/platform/renesas/sh_vou.c
19126F:	include/media/drv-intf/sh_vou.h
19127
19128SI2157 MEDIA DRIVER
19129M:	Antti Palosaari <crope@iki.fi>
19130L:	linux-media@vger.kernel.org
19131S:	Maintained
19132W:	https://linuxtv.org
19133W:	http://palosaari.fi/linux/
19134Q:	http://patchwork.linuxtv.org/project/linux-media/list/
19135T:	git git://linuxtv.org/anttip/media_tree.git
19136F:	drivers/media/tuners/si2157*
19137
19138SI2165 MEDIA DRIVER
19139M:	Matthias Schwarzott <zzam@gentoo.org>
19140L:	linux-media@vger.kernel.org
19141S:	Maintained
19142W:	https://linuxtv.org
19143Q:	http://patchwork.linuxtv.org/project/linux-media/list/
19144F:	drivers/media/dvb-frontends/si2165*
19145
19146SI2168 MEDIA DRIVER
19147M:	Antti Palosaari <crope@iki.fi>
19148L:	linux-media@vger.kernel.org
19149S:	Maintained
19150W:	https://linuxtv.org
19151W:	http://palosaari.fi/linux/
19152Q:	http://patchwork.linuxtv.org/project/linux-media/list/
19153T:	git git://linuxtv.org/anttip/media_tree.git
19154F:	drivers/media/dvb-frontends/si2168*
19155
19156SI470X FM RADIO RECEIVER I2C DRIVER
19157M:	Hans Verkuil <hverkuil@xs4all.nl>
19158L:	linux-media@vger.kernel.org
19159S:	Odd Fixes
19160W:	https://linuxtv.org
19161T:	git git://linuxtv.org/media_tree.git
19162F:	Documentation/devicetree/bindings/media/silabs,si470x.yaml
19163F:	drivers/media/radio/si470x/radio-si470x-i2c.c
19164
19165SI470X FM RADIO RECEIVER USB DRIVER
19166M:	Hans Verkuil <hverkuil@xs4all.nl>
19167L:	linux-media@vger.kernel.org
19168S:	Maintained
19169W:	https://linuxtv.org
19170T:	git git://linuxtv.org/media_tree.git
19171F:	drivers/media/radio/si470x/radio-si470x-common.c
19172F:	drivers/media/radio/si470x/radio-si470x-usb.c
19173F:	drivers/media/radio/si470x/radio-si470x.h
19174
19175SI4713 FM RADIO TRANSMITTER I2C DRIVER
19176M:	Eduardo Valentin <edubezval@gmail.com>
19177L:	linux-media@vger.kernel.org
19178S:	Odd Fixes
19179W:	https://linuxtv.org
19180T:	git git://linuxtv.org/media_tree.git
19181F:	drivers/media/radio/si4713/si4713.?
19182
19183SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
19184M:	Eduardo Valentin <edubezval@gmail.com>
19185L:	linux-media@vger.kernel.org
19186S:	Odd Fixes
19187W:	https://linuxtv.org
19188T:	git git://linuxtv.org/media_tree.git
19189F:	drivers/media/radio/si4713/radio-platform-si4713.c
19190
19191SI4713 FM RADIO TRANSMITTER USB DRIVER
19192M:	Hans Verkuil <hverkuil@xs4all.nl>
19193L:	linux-media@vger.kernel.org
19194S:	Maintained
19195W:	https://linuxtv.org
19196T:	git git://linuxtv.org/media_tree.git
19197F:	drivers/media/radio/si4713/radio-usb-si4713.c
19198
19199SIANO DVB DRIVER
19200M:	Mauro Carvalho Chehab <mchehab@kernel.org>
19201L:	linux-media@vger.kernel.org
19202S:	Odd fixes
19203W:	https://linuxtv.org
19204T:	git git://linuxtv.org/media_tree.git
19205F:	drivers/media/common/siano/
19206F:	drivers/media/mmc/siano/
19207F:	drivers/media/usb/siano/
19208F:	drivers/media/usb/siano/
19209
19210SIFIVE DRIVERS
19211M:	Palmer Dabbelt <palmer@dabbelt.com>
19212M:	Paul Walmsley <paul.walmsley@sifive.com>
19213L:	linux-riscv@lists.infradead.org
19214S:	Supported
19215N:	sifive
19216K:	[^@]sifive
19217
19218SIFIVE FU540 SYSTEM-ON-CHIP
19219M:	Paul Walmsley <paul.walmsley@sifive.com>
19220M:	Palmer Dabbelt <palmer@dabbelt.com>
19221L:	linux-riscv@lists.infradead.org
19222S:	Supported
19223T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
19224N:	fu540
19225K:	fu540
19226
19227SIFIVE PDMA DRIVER
19228M:	Green Wan <green.wan@sifive.com>
19229S:	Maintained
19230F:	Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
19231F:	drivers/dma/sf-pdma/
19232
19233SIFIVE SOC DRIVERS
19234M:	Conor Dooley <conor@kernel.org>
19235L:	linux-riscv@lists.infradead.org
19236S:	Maintained
19237T:	git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
19238F:	Documentation/devicetree/bindings/cache/sifive,ccache0.yaml
19239F:	drivers/soc/sifive/
19240
19241SILEAD TOUCHSCREEN DRIVER
19242M:	Hans de Goede <hdegoede@redhat.com>
19243L:	linux-input@vger.kernel.org
19244L:	platform-driver-x86@vger.kernel.org
19245S:	Maintained
19246F:	drivers/input/touchscreen/silead.c
19247F:	drivers/platform/x86/touchscreen_dmi.c
19248
19249SILICON LABS WIRELESS DRIVERS (for WFxxx series)
19250M:	Jérôme Pouiller <jerome.pouiller@silabs.com>
19251S:	Supported
19252F:	Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
19253F:	drivers/net/wireless/silabs/wfx/
19254
19255SILICON MOTION SM712 FRAME BUFFER DRIVER
19256M:	Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19257M:	Teddy Wang <teddy.wang@siliconmotion.com>
19258M:	Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19259L:	linux-fbdev@vger.kernel.org
19260S:	Maintained
19261F:	Documentation/fb/sm712fb.rst
19262F:	drivers/video/fbdev/sm712*
19263
19264SILVACO I3C DUAL-ROLE MASTER
19265M:	Miquel Raynal <miquel.raynal@bootlin.com>
19266M:	Conor Culhane <conor.culhane@silvaco.com>
19267L:	linux-i3c@lists.infradead.org (moderated for non-subscribers)
19268S:	Maintained
19269F:	Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
19270F:	drivers/i3c/master/svc-i3c-master.c
19271
19272SIMPLEFB FB DRIVER
19273M:	Hans de Goede <hdegoede@redhat.com>
19274L:	linux-fbdev@vger.kernel.org
19275S:	Maintained
19276F:	Documentation/devicetree/bindings/display/simple-framebuffer.yaml
19277F:	drivers/video/fbdev/simplefb.c
19278F:	include/linux/platform_data/simplefb.h
19279
19280SIMTEC EB110ATX (Chalice CATS)
19281M:	Simtec Linux Team <linux@simtec.co.uk>
19282S:	Supported
19283W:	http://www.simtec.co.uk/products/EB110ATX/
19284
19285SIOX
19286M:	Thorsten Scherer <t.scherer@eckelmann.de>
19287M:	Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
19288R:	Pengutronix Kernel Team <kernel@pengutronix.de>
19289S:	Supported
19290F:	drivers/gpio/gpio-siox.c
19291F:	drivers/siox/*
19292F:	include/trace/events/siox.h
19293
19294SIPHASH PRF ROUTINES
19295M:	Jason A. Donenfeld <Jason@zx2c4.com>
19296S:	Maintained
19297F:	include/linux/siphash.h
19298F:	lib/siphash.c
19299F:	lib/siphash_kunit.c
19300
19301SIS 190 ETHERNET DRIVER
19302M:	Francois Romieu <romieu@fr.zoreil.com>
19303L:	netdev@vger.kernel.org
19304S:	Maintained
19305F:	drivers/net/ethernet/sis/sis190.c
19306
19307SIS 900/7016 FAST ETHERNET DRIVER
19308M:	Daniele Venzano <venza@brownhat.org>
19309L:	netdev@vger.kernel.org
19310S:	Maintained
19311W:	http://www.brownhat.org/sis900.html
19312F:	drivers/net/ethernet/sis/sis900.*
19313
19314SIS FRAMEBUFFER DRIVER
19315S:	Orphan
19316F:	Documentation/fb/sisfb.rst
19317F:	drivers/video/fbdev/sis/
19318F:	include/video/sisfb.h
19319
19320SIS I2C TOUCHSCREEN DRIVER
19321M:	Mika Penttilä <mpenttil@redhat.com>
19322L:	linux-input@vger.kernel.org
19323S:	Maintained
19324F:	Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
19325F:	drivers/input/touchscreen/sis_i2c.c
19326
19327SIS USB2VGA DRIVER
19328M:	Thomas Winischhofer <thomas@winischhofer.net>
19329S:	Maintained
19330W:	http://www.winischhofer.at/linuxsisusbvga.shtml
19331F:	drivers/usb/misc/sisusbvga/
19332
19333SL28 CPLD MFD DRIVER
19334M:	Michael Walle <michael@walle.cc>
19335S:	Maintained
19336F:	Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
19337F:	Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
19338F:	Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
19339F:	Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
19340F:	Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
19341F:	Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
19342F:	drivers/gpio/gpio-sl28cpld.c
19343F:	drivers/hwmon/sl28cpld-hwmon.c
19344F:	drivers/irqchip/irq-sl28cpld.c
19345F:	drivers/pwm/pwm-sl28cpld.c
19346F:	drivers/watchdog/sl28cpld_wdt.c
19347
19348SL28 VPD NVMEM LAYOUT DRIVER
19349M:	Michael Walle <michael@walle.cc>
19350S:	Maintained
19351F:	Documentation/devicetree/bindings/nvmem/layouts/kontron,sl28-vpd.yaml
19352F:	drivers/nvmem/layouts/sl28vpd.c
19353
19354SLAB ALLOCATOR
19355M:	Christoph Lameter <cl@linux.com>
19356M:	Pekka Enberg <penberg@kernel.org>
19357M:	David Rientjes <rientjes@google.com>
19358M:	Joonsoo Kim <iamjoonsoo.kim@lge.com>
19359M:	Andrew Morton <akpm@linux-foundation.org>
19360M:	Vlastimil Babka <vbabka@suse.cz>
19361R:	Roman Gushchin <roman.gushchin@linux.dev>
19362R:	Hyeonggon Yoo <42.hyeyoo@gmail.com>
19363L:	linux-mm@kvack.org
19364S:	Maintained
19365T:	git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
19366F:	include/linux/sl?b*.h
19367F:	mm/sl?b*
19368
19369SLCAN CAN NETWORK DRIVER
19370M:	Dario Binacchi <dario.binacchi@amarulasolutions.com>
19371L:	linux-can@vger.kernel.org
19372S:	Maintained
19373F:	drivers/net/can/slcan/
19374
19375SLEEPABLE READ-COPY UPDATE (SRCU)
19376M:	Lai Jiangshan <jiangshanlai@gmail.com>
19377M:	"Paul E. McKenney" <paulmck@kernel.org>
19378M:	Josh Triplett <josh@joshtriplett.org>
19379R:	Steven Rostedt <rostedt@goodmis.org>
19380R:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
19381L:	rcu@vger.kernel.org
19382S:	Supported
19383W:	http://www.rdrop.com/users/paulmck/RCU/
19384T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19385F:	include/linux/srcu*.h
19386F:	kernel/rcu/srcu*.c
19387
19388SMACK SECURITY MODULE
19389M:	Casey Schaufler <casey@schaufler-ca.com>
19390L:	linux-security-module@vger.kernel.org
19391S:	Maintained
19392W:	http://schaufler-ca.com
19393T:	git git://github.com/cschaufler/smack-next
19394F:	Documentation/admin-guide/LSM/Smack.rst
19395F:	security/smack/
19396
19397SMC91x ETHERNET DRIVER
19398M:	Nicolas Pitre <nico@fluxnic.net>
19399S:	Odd Fixes
19400F:	drivers/net/ethernet/smsc/smc91x.*
19401
19402SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
19403M:	Mark Rutland <mark.rutland@arm.com>
19404M:	Lorenzo Pieralisi <lpieralisi@kernel.org>
19405M:	Sudeep Holla <sudeep.holla@arm.com>
19406L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19407S:	Maintained
19408F:	drivers/firmware/smccc/
19409F:	include/linux/arm-smccc.h
19410
19411SMM665 HARDWARE MONITOR DRIVER
19412M:	Guenter Roeck <linux@roeck-us.net>
19413L:	linux-hwmon@vger.kernel.org
19414S:	Maintained
19415F:	Documentation/hwmon/smm665.rst
19416F:	drivers/hwmon/smm665.c
19417
19418SMSC EMC2103 HARDWARE MONITOR DRIVER
19419M:	Steve Glendinning <steve.glendinning@shawell.net>
19420L:	linux-hwmon@vger.kernel.org
19421S:	Maintained
19422F:	Documentation/hwmon/emc2103.rst
19423F:	drivers/hwmon/emc2103.c
19424
19425SMSC SCH5627 HARDWARE MONITOR DRIVER
19426M:	Hans de Goede <hdegoede@redhat.com>
19427L:	linux-hwmon@vger.kernel.org
19428S:	Supported
19429F:	Documentation/hwmon/sch5627.rst
19430F:	drivers/hwmon/sch5627.c
19431
19432SMSC UFX6000 and UFX7000 USB to VGA DRIVER
19433M:	Steve Glendinning <steve.glendinning@shawell.net>
19434L:	linux-fbdev@vger.kernel.org
19435S:	Maintained
19436F:	drivers/video/fbdev/smscufx.c
19437
19438SMSC47B397 HARDWARE MONITOR DRIVER
19439M:	Jean Delvare <jdelvare@suse.com>
19440L:	linux-hwmon@vger.kernel.org
19441S:	Maintained
19442F:	Documentation/hwmon/smsc47b397.rst
19443F:	drivers/hwmon/smsc47b397.c
19444
19445SMSC911x ETHERNET DRIVER
19446M:	Steve Glendinning <steve.glendinning@shawell.net>
19447L:	netdev@vger.kernel.org
19448S:	Maintained
19449F:	drivers/net/ethernet/smsc/smsc911x.*
19450F:	include/linux/smsc911x.h
19451
19452SMSC9420 PCI ETHERNET DRIVER
19453M:	Steve Glendinning <steve.glendinning@shawell.net>
19454L:	netdev@vger.kernel.org
19455S:	Maintained
19456F:	drivers/net/ethernet/smsc/smsc9420.*
19457
19458SOCIONEXT (SNI) AVE NETWORK DRIVER
19459M:	Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
19460L:	netdev@vger.kernel.org
19461S:	Maintained
19462F:	Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
19463F:	drivers/net/ethernet/socionext/sni_ave.c
19464
19465SOCIONEXT (SNI) NETSEC NETWORK DRIVER
19466M:	Jassi Brar <jaswinder.singh@linaro.org>
19467M:	Ilias Apalodimas <ilias.apalodimas@linaro.org>
19468L:	netdev@vger.kernel.org
19469S:	Maintained
19470F:	Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
19471F:	drivers/net/ethernet/socionext/netsec.c
19472
19473SOCIONEXT (SNI) Synquacer SPI DRIVER
19474M:	Masahisa Kojima <masahisa.kojima@linaro.org>
19475M:	Jassi Brar <jaswinder.singh@linaro.org>
19476L:	linux-spi@vger.kernel.org
19477S:	Maintained
19478F:	Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
19479F:	drivers/spi/spi-synquacer.c
19480
19481SOCIONEXT SYNQUACER I2C DRIVER
19482M:	Ard Biesheuvel <ardb@kernel.org>
19483L:	linux-i2c@vger.kernel.org
19484S:	Maintained
19485F:	Documentation/devicetree/bindings/i2c/socionext,synquacer-i2c.yaml
19486F:	drivers/i2c/busses/i2c-synquacer.c
19487
19488SOCIONEXT UNIPHIER SOUND DRIVER
19489L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
19490S:	Orphan
19491F:	sound/soc/uniphier/
19492
19493SOCKET TIMESTAMPING
19494M:	Willem de Bruijn <willemdebruijn.kernel@gmail.com>
19495S:	Maintained
19496F:	Documentation/networking/timestamping.rst
19497F:	include/uapi/linux/net_tstamp.h
19498F:	tools/testing/selftests/net/so_txtime.c
19499
19500SOEKRIS NET48XX LED SUPPORT
19501M:	Chris Boot <bootc@bootc.net>
19502S:	Maintained
19503F:	drivers/leds/leds-net48xx.c
19504
19505SOFT-IWARP DRIVER (siw)
19506M:	Bernard Metzler <bmt@zurich.ibm.com>
19507L:	linux-rdma@vger.kernel.org
19508S:	Supported
19509F:	drivers/infiniband/sw/siw/
19510F:	include/uapi/rdma/siw-abi.h
19511
19512SOFT-ROCE DRIVER (rxe)
19513M:	Zhu Yanjun <zyjzyj2000@gmail.com>
19514L:	linux-rdma@vger.kernel.org
19515S:	Supported
19516F:	drivers/infiniband/sw/rxe/
19517F:	include/uapi/rdma/rdma_user_rxe.h
19518
19519SOFTLOGIC 6x10 MPEG CODEC
19520M:	Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19521M:	Anton Sviridenko <anton@corp.bluecherry.net>
19522M:	Andrey Utkin <andrey_utkin@fastmail.com>
19523M:	Ismael Luceno <ismael@iodev.co.uk>
19524L:	linux-media@vger.kernel.org
19525S:	Supported
19526F:	drivers/media/pci/solo6x10/
19527
19528SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
19529M:	James Morse <james.morse@arm.com>
19530L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19531S:	Maintained
19532F:	Documentation/devicetree/bindings/arm/firmware/sdei.txt
19533F:	drivers/firmware/arm_sdei.c
19534F:	include/linux/arm_sdei.h
19535F:	include/uapi/linux/arm_sdei.h
19536
19537SOFTWARE NODES AND DEVICE PROPERTIES
19538R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19539R:	Daniel Scally <djrscally@gmail.com>
19540R:	Heikki Krogerus <heikki.krogerus@linux.intel.com>
19541R:	Sakari Ailus <sakari.ailus@linux.intel.com>
19542L:	linux-acpi@vger.kernel.org
19543S:	Maintained
19544F:	drivers/base/property.c
19545F:	drivers/base/swnode.c
19546F:	include/linux/fwnode.h
19547F:	include/linux/property.h
19548
19549SOFTWARE RAID (Multiple Disks) SUPPORT
19550M:	Song Liu <song@kernel.org>
19551L:	linux-raid@vger.kernel.org
19552S:	Supported
19553Q:	https://patchwork.kernel.org/project/linux-raid/list/
19554T:	git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
19555F:	drivers/md/Kconfig
19556F:	drivers/md/Makefile
19557F:	drivers/md/md*
19558F:	drivers/md/raid*
19559F:	include/linux/raid/
19560F:	include/uapi/linux/raid/
19561
19562SOLIDRUN CLEARFOG SUPPORT
19563M:	Russell King <linux@armlinux.org.uk>
19564S:	Maintained
19565F:	arch/arm/boot/dts/armada-388-clearfog*
19566F:	arch/arm/boot/dts/armada-38x-solidrun-*
19567
19568SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
19569M:	Russell King <linux@armlinux.org.uk>
19570S:	Maintained
19571F:	arch/arm/boot/dts/imx6*-cubox-i*
19572F:	arch/arm/boot/dts/imx6*-hummingboard*
19573F:	arch/arm/boot/dts/imx6*-sr-*
19574
19575SONIC NETWORK DRIVER
19576M:	Thomas Bogendoerfer <tsbogend@alpha.franken.de>
19577L:	netdev@vger.kernel.org
19578S:	Maintained
19579F:	drivers/net/ethernet/natsemi/sonic.*
19580
19581SONICS SILICON BACKPLANE DRIVER (SSB)
19582M:	Michael Buesch <m@bues.ch>
19583L:	linux-wireless@vger.kernel.org
19584S:	Maintained
19585F:	drivers/ssb/
19586F:	include/linux/ssb/
19587
19588SONY IMX208 SENSOR DRIVER
19589M:	Sakari Ailus <sakari.ailus@linux.intel.com>
19590L:	linux-media@vger.kernel.org
19591S:	Maintained
19592T:	git git://linuxtv.org/media_tree.git
19593F:	drivers/media/i2c/imx208.c
19594
19595SONY IMX214 SENSOR DRIVER
19596M:	Ricardo Ribalda <ribalda@kernel.org>
19597L:	linux-media@vger.kernel.org
19598S:	Maintained
19599T:	git git://linuxtv.org/media_tree.git
19600F:	Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19601F:	drivers/media/i2c/imx214.c
19602
19603SONY IMX219 SENSOR DRIVER
19604M:	Dave Stevenson <dave.stevenson@raspberrypi.com>
19605L:	linux-media@vger.kernel.org
19606S:	Maintained
19607T:	git git://linuxtv.org/media_tree.git
19608F:	Documentation/devicetree/bindings/media/i2c/imx219.yaml
19609F:	drivers/media/i2c/imx219.c
19610
19611SONY IMX258 SENSOR DRIVER
19612M:	Sakari Ailus <sakari.ailus@linux.intel.com>
19613L:	linux-media@vger.kernel.org
19614S:	Maintained
19615T:	git git://linuxtv.org/media_tree.git
19616F:	Documentation/devicetree/bindings/media/i2c/imx258.yaml
19617F:	drivers/media/i2c/imx258.c
19618
19619SONY IMX274 SENSOR DRIVER
19620M:	Leon Luo <leonl@leopardimaging.com>
19621L:	linux-media@vger.kernel.org
19622S:	Maintained
19623T:	git git://linuxtv.org/media_tree.git
19624F:	Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19625F:	drivers/media/i2c/imx274.c
19626
19627SONY IMX290 SENSOR DRIVER
19628M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19629L:	linux-media@vger.kernel.org
19630S:	Maintained
19631T:	git git://linuxtv.org/media_tree.git
19632F:	Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
19633F:	drivers/media/i2c/imx290.c
19634
19635SONY IMX296 SENSOR DRIVER
19636M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19637M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19638L:	linux-media@vger.kernel.org
19639S:	Maintained
19640T:	git git://linuxtv.org/media_tree.git
19641F:	Documentation/devicetree/bindings/media/i2c/sony,imx296.yaml
19642F:	drivers/media/i2c/imx296.c
19643
19644SONY IMX319 SENSOR DRIVER
19645M:	Bingbu Cao <bingbu.cao@intel.com>
19646L:	linux-media@vger.kernel.org
19647S:	Maintained
19648T:	git git://linuxtv.org/media_tree.git
19649F:	drivers/media/i2c/imx319.c
19650
19651SONY IMX334 SENSOR DRIVER
19652M:	Paul J. Murphy <paul.j.murphy@intel.com>
19653M:	Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19654L:	linux-media@vger.kernel.org
19655S:	Maintained
19656T:	git git://linuxtv.org/media_tree.git
19657F:	Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19658F:	drivers/media/i2c/imx334.c
19659
19660SONY IMX335 SENSOR DRIVER
19661M:	Paul J. Murphy <paul.j.murphy@intel.com>
19662M:	Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19663L:	linux-media@vger.kernel.org
19664S:	Maintained
19665T:	git git://linuxtv.org/media_tree.git
19666F:	Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19667F:	drivers/media/i2c/imx335.c
19668
19669SONY IMX355 SENSOR DRIVER
19670M:	Tianshu Qiu <tian.shu.qiu@intel.com>
19671L:	linux-media@vger.kernel.org
19672S:	Maintained
19673T:	git git://linuxtv.org/media_tree.git
19674F:	drivers/media/i2c/imx355.c
19675
19676SONY IMX412 SENSOR DRIVER
19677M:	Paul J. Murphy <paul.j.murphy@intel.com>
19678M:	Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19679L:	linux-media@vger.kernel.org
19680S:	Maintained
19681T:	git git://linuxtv.org/media_tree.git
19682F:	Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19683F:	drivers/media/i2c/imx412.c
19684
19685SONY IMX415 SENSOR DRIVER
19686M:	Michael Riesch <michael.riesch@wolfvision.net>
19687L:	linux-media@vger.kernel.org
19688S:	Maintained
19689T:	git git://linuxtv.org/media_tree.git
19690F:	Documentation/devicetree/bindings/media/i2c/sony,imx415.yaml
19691F:	drivers/media/i2c/imx415.c
19692
19693SONY MEMORYSTICK SUBSYSTEM
19694M:	Maxim Levitsky <maximlevitsky@gmail.com>
19695M:	Alex Dubov <oakad@yahoo.com>
19696M:	Ulf Hansson <ulf.hansson@linaro.org>
19697L:	linux-mmc@vger.kernel.org
19698S:	Maintained
19699T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19700F:	drivers/memstick/
19701F:	include/linux/memstick.h
19702
19703SONY VAIO CONTROL DEVICE DRIVER
19704M:	Mattia Dongili <malattia@linux.it>
19705L:	platform-driver-x86@vger.kernel.org
19706S:	Maintained
19707W:	http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19708F:	Documentation/admin-guide/laptops/sony-laptop.rst
19709F:	drivers/char/sonypi.c
19710F:	drivers/platform/x86/sony-laptop.c
19711F:	include/linux/sony-laptop.h
19712
19713SOUND
19714M:	Jaroslav Kysela <perex@perex.cz>
19715M:	Takashi Iwai <tiwai@suse.com>
19716L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
19717S:	Maintained
19718W:	http://www.alsa-project.org/
19719Q:	http://patchwork.kernel.org/project/alsa-devel/list/
19720T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19721F:	Documentation/sound/
19722F:	include/sound/
19723F:	include/uapi/sound/
19724F:	sound/
19725F:	tools/testing/selftests/alsa
19726
19727SOUND - COMPRESSED AUDIO
19728M:	Vinod Koul <vkoul@kernel.org>
19729L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
19730S:	Supported
19731T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19732F:	Documentation/sound/designs/compress-offload.rst
19733F:	include/sound/compress_driver.h
19734F:	include/uapi/sound/compress_*
19735F:	sound/core/compress_offload.c
19736F:	sound/soc/soc-compress.c
19737
19738SOUND - DMAENGINE HELPERS
19739M:	Lars-Peter Clausen <lars@metafoo.de>
19740S:	Supported
19741F:	include/sound/dmaengine_pcm.h
19742F:	sound/core/pcm_dmaengine.c
19743F:	sound/soc/soc-generic-dmaengine-pcm.c
19744
19745SOUND - ALSA SELFTESTS
19746M:	Mark Brown <broonie@kernel.org>
19747L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
19748L:	linux-kselftest@vger.kernel.org
19749S:	Supported
19750F:	tools/testing/selftests/alsa
19751
19752SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19753M:	Liam Girdwood <lgirdwood@gmail.com>
19754M:	Mark Brown <broonie@kernel.org>
19755L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
19756S:	Supported
19757W:	http://alsa-project.org/main/index.php/ASoC
19758T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19759F:	Documentation/devicetree/bindings/sound/
19760F:	Documentation/sound/soc/
19761F:	include/dt-bindings/sound/
19762F:	include/sound/soc*
19763F:	sound/soc/
19764
19765SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19766M:	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19767M:	Liam Girdwood <lgirdwood@gmail.com>
19768M:	Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19769M:	Bard Liao <yung-chuan.liao@linux.intel.com>
19770M:	Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19771R:	Kai Vehmanen <kai.vehmanen@linux.intel.com>
19772M:	Daniel Baluta <daniel.baluta@nxp.com>
19773L:	sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19774S:	Supported
19775W:	https://github.com/thesofproject/linux/
19776F:	sound/soc/sof/
19777
19778SOUNDWIRE SUBSYSTEM
19779M:	Vinod Koul <vkoul@kernel.org>
19780M:	Bard Liao <yung-chuan.liao@linux.intel.com>
19781R:	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19782R:	Sanyog Kale <sanyog.r.kale@intel.com>
19783L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
19784S:	Supported
19785T:	git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19786F:	Documentation/driver-api/soundwire/
19787F:	drivers/soundwire/
19788F:	include/linux/soundwire/
19789
19790SP2 MEDIA DRIVER
19791M:	Olli Salonen <olli.salonen@iki.fi>
19792L:	linux-media@vger.kernel.org
19793S:	Maintained
19794W:	https://linuxtv.org
19795Q:	http://patchwork.linuxtv.org/project/linux-media/list/
19796F:	drivers/media/dvb-frontends/sp2*
19797
19798SPANISH DOCUMENTATION
19799M:	Carlos Bilbao <carlos.bilbao@amd.com>
19800S:	Maintained
19801F:	Documentation/translations/sp_SP/
19802
19803SPARC + UltraSPARC (sparc/sparc64)
19804M:	"David S. Miller" <davem@davemloft.net>
19805L:	sparclinux@vger.kernel.org
19806S:	Maintained
19807Q:	http://patchwork.ozlabs.org/project/sparclinux/list/
19808T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19809T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19810F:	arch/sparc/
19811F:	drivers/sbus/
19812
19813SPARC SERIAL DRIVERS
19814M:	"David S. Miller" <davem@davemloft.net>
19815L:	sparclinux@vger.kernel.org
19816S:	Maintained
19817T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19818T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19819F:	drivers/tty/serial/suncore.c
19820F:	drivers/tty/serial/sunhv.c
19821F:	drivers/tty/serial/sunsab.c
19822F:	drivers/tty/serial/sunsab.h
19823F:	drivers/tty/serial/sunsu.c
19824F:	drivers/tty/serial/sunzilog.c
19825F:	drivers/tty/serial/sunzilog.h
19826F:	drivers/tty/vcc.c
19827F:	include/linux/sunserialcore.h
19828
19829SPARSE CHECKER
19830M:	"Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19831L:	linux-sparse@vger.kernel.org
19832S:	Maintained
19833W:	https://sparse.docs.kernel.org/
19834T:	git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19835Q:	https://patchwork.kernel.org/project/linux-sparse/list/
19836B:	https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19837F:	include/linux/compiler.h
19838
19839SPEAKUP CONSOLE SPEECH DRIVER
19840M:	William Hubbs <w.d.hubbs@gmail.com>
19841M:	Chris Brannon <chris@the-brannons.com>
19842M:	Kirk Reiser <kirk@reisers.ca>
19843M:	Samuel Thibault <samuel.thibault@ens-lyon.org>
19844L:	speakup@linux-speakup.org
19845S:	Odd Fixes
19846W:	http://www.linux-speakup.org/
19847W:	https://github.com/linux-speakup/speakup
19848B:	https://github.com/linux-speakup/speakup/issues
19849F:	drivers/accessibility/speakup/
19850
19851SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19852M:	Viresh Kumar <vireshk@kernel.org>
19853M:	Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19854M:	soc@kernel.org
19855L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19856S:	Maintained
19857W:	http://www.st.com/spear
19858F:	arch/arm/boot/dts/spear*
19859F:	arch/arm/mach-spear/
19860F:	drivers/clk/spear/
19861F:	drivers/pinctrl/spear/
19862
19863SPI NOR SUBSYSTEM
19864M:	Tudor Ambarus <tudor.ambarus@linaro.org>
19865M:	Pratyush Yadav <pratyush@kernel.org>
19866R:	Michael Walle <michael@walle.cc>
19867L:	linux-mtd@lists.infradead.org
19868S:	Maintained
19869W:	http://www.linux-mtd.infradead.org/
19870Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
19871C:	irc://irc.oftc.net/mtd
19872T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19873F:	Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19874F:	drivers/mtd/spi-nor/
19875F:	include/linux/mtd/spi-nor.h
19876
19877SPI SUBSYSTEM
19878M:	Mark Brown <broonie@kernel.org>
19879L:	linux-spi@vger.kernel.org
19880S:	Maintained
19881Q:	http://patchwork.kernel.org/project/spi-devel-general/list/
19882T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19883F:	Documentation/devicetree/bindings/spi/
19884F:	Documentation/spi/
19885F:	drivers/spi/
19886F:	include/linux/spi/
19887F:	include/uapi/linux/spi/
19888F:	tools/spi/
19889
19890SPIDERNET NETWORK DRIVER for CELL
19891M:	Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19892M:	Geoff Levand <geoff@infradead.org>
19893L:	netdev@vger.kernel.org
19894L:	linuxppc-dev@lists.ozlabs.org
19895S:	Maintained
19896F:	Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19897F:	drivers/net/ethernet/toshiba/spider_net*
19898
19899SPMI SUBSYSTEM
19900M:	Stephen Boyd <sboyd@kernel.org>
19901L:	linux-kernel@vger.kernel.org
19902S:	Maintained
19903T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19904F:	Documentation/devicetree/bindings/spmi/
19905F:	drivers/spmi/
19906F:	include/dt-bindings/spmi/spmi.h
19907F:	include/linux/spmi.h
19908F:	include/trace/events/spmi.h
19909
19910SPU FILE SYSTEM
19911M:	Jeremy Kerr <jk@ozlabs.org>
19912L:	linuxppc-dev@lists.ozlabs.org
19913S:	Supported
19914W:	http://www.ibm.com/developerworks/power/cell/
19915F:	Documentation/filesystems/spufs/spufs.rst
19916F:	arch/powerpc/platforms/cell/spufs/
19917
19918SQUASHFS FILE SYSTEM
19919M:	Phillip Lougher <phillip@squashfs.org.uk>
19920L:	squashfs-devel@lists.sourceforge.net (subscribers-only)
19921S:	Maintained
19922W:	http://squashfs.org.uk
19923T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19924F:	Documentation/filesystems/squashfs.rst
19925F:	fs/squashfs/
19926
19927SRM (Alpha) environment access
19928M:	Jan-Benedict Glaw <jbglaw@lug-owl.de>
19929S:	Maintained
19930F:	arch/alpha/kernel/srm_env.c
19931
19932ST LSM6DSx IMU IIO DRIVER
19933M:	Lorenzo Bianconi <lorenzo@kernel.org>
19934L:	linux-iio@vger.kernel.org
19935S:	Maintained
19936W:	http://www.st.com/
19937F:	Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19938F:	drivers/iio/imu/st_lsm6dsx/
19939
19940ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19941M:	Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19942M:	Sylvain Petinot <sylvain.petinot@foss.st.com>
19943L:	linux-media@vger.kernel.org
19944S:	Maintained
19945T:	git git://linuxtv.org/media_tree.git
19946F:	Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
19947F:	drivers/media/i2c/st-mipid02.c
19948
19949ST STM32 I2C/SMBUS DRIVER
19950M:	Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19951M:	Alain Volmat <alain.volmat@foss.st.com>
19952L:	linux-i2c@vger.kernel.org
19953S:	Maintained
19954F:	drivers/i2c/busses/i2c-stm32*
19955
19956ST STM32 SPI DRIVER
19957M:	Alain Volmat <alain.volmat@foss.st.com>
19958L:	linux-spi@vger.kernel.org
19959S:	Maintained
19960F:	drivers/spi/spi-stm32.c
19961
19962ST STPDDC60 DRIVER
19963M:	Daniel Nilsson <daniel.nilsson@flex.com>
19964L:	linux-hwmon@vger.kernel.org
19965S:	Maintained
19966F:	Documentation/hwmon/stpddc60.rst
19967F:	drivers/hwmon/pmbus/stpddc60.c
19968
19969ST VGXY61 DRIVER
19970M:	Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19971M:	Sylvain Petinot <sylvain.petinot@foss.st.com>
19972L:	linux-media@vger.kernel.org
19973S:	Maintained
19974T:	git git://linuxtv.org/media_tree.git
19975F:	Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
19976F:	Documentation/userspace-api/media/drivers/st-vgxy61.rst
19977F:	drivers/media/i2c/st-vgxy61.c
19978
19979ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19980M:	Song Qiang <songqiang1304521@gmail.com>
19981L:	linux-iio@vger.kernel.org
19982S:	Maintained
19983F:	Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19984F:	drivers/iio/proximity/vl53l0x-i2c.c
19985
19986STABLE BRANCH
19987M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19988M:	Sasha Levin <sashal@kernel.org>
19989L:	stable@vger.kernel.org
19990S:	Supported
19991F:	Documentation/process/stable-kernel-rules.rst
19992
19993STAGING - ATOMISP DRIVER
19994M:	Hans de Goede <hdegoede@redhat.com>
19995M:	Mauro Carvalho Chehab <mchehab@kernel.org>
19996R:	Sakari Ailus <sakari.ailus@linux.intel.com>
19997L:	linux-media@vger.kernel.org
19998S:	Maintained
19999F:	drivers/staging/media/atomisp/
20000
20001STAGING - FIELDBUS SUBSYSTEM
20002M:	Sven Van Asbroeck <TheSven73@gmail.com>
20003S:	Maintained
20004F:	drivers/staging/fieldbus/*
20005F:	drivers/staging/fieldbus/Documentation/
20006
20007STAGING - HMS ANYBUS-S BUS
20008M:	Sven Van Asbroeck <TheSven73@gmail.com>
20009S:	Maintained
20010F:	drivers/staging/fieldbus/anybuss/
20011
20012STAGING - INDUSTRIAL IO
20013M:	Jonathan Cameron <jic23@kernel.org>
20014L:	linux-iio@vger.kernel.org
20015S:	Odd Fixes
20016F:	Documentation/devicetree/bindings/staging/iio/
20017F:	drivers/staging/iio/
20018
20019STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
20020M:	Marc Dietrich <marvin24@gmx.de>
20021L:	ac100@lists.launchpad.net (moderated for non-subscribers)
20022L:	linux-tegra@vger.kernel.org
20023S:	Maintained
20024F:	drivers/staging/nvec/
20025
20026STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
20027M:	Jens Frederich <jfrederich@gmail.com>
20028M:	Jon Nettleton <jon.nettleton@gmail.com>
20029S:	Maintained
20030W:	http://wiki.laptop.org/go/DCON
20031F:	drivers/staging/olpc_dcon/
20032
20033STAGING - REALTEK RTL8712U DRIVERS
20034M:	Larry Finger <Larry.Finger@lwfinger.net>
20035M:	Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
20036S:	Odd Fixes
20037F:	drivers/staging/rtl8712/
20038
20039STAGING - SEPS525 LCD CONTROLLER DRIVERS
20040M:	Michael Hennerich <michael.hennerich@analog.com>
20041L:	linux-fbdev@vger.kernel.org
20042S:	Supported
20043F:	Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
20044F:	drivers/staging/fbtft/fb_seps525.c
20045
20046STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
20047M:	Sudip Mukherjee <sudipm.mukherjee@gmail.com>
20048M:	Teddy Wang <teddy.wang@siliconmotion.com>
20049M:	Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
20050L:	linux-fbdev@vger.kernel.org
20051S:	Maintained
20052F:	drivers/staging/sm750fb/
20053
20054STAGING - VIA VT665X DRIVERS
20055M:	Forest Bond <forest@alittletooquiet.net>
20056S:	Odd Fixes
20057F:	drivers/staging/vt665?/
20058
20059STAGING SUBSYSTEM
20060M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20061L:	linux-staging@lists.linux.dev
20062S:	Supported
20063T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
20064F:	drivers/staging/
20065
20066STARFIRE/DURALAN NETWORK DRIVER
20067M:	Ion Badulescu <ionut@badula.org>
20068S:	Odd Fixes
20069F:	drivers/net/ethernet/adaptec/starfire*
20070
20071STARFIVE DEVICETREES
20072M:	Emil Renner Berthing <kernel@esmil.dk>
20073S:	Maintained
20074F:	arch/riscv/boot/dts/starfive/
20075
20076STARFIVE DWMAC GLUE LAYER
20077M:	Emil Renner Berthing <kernel@esmil.dk>
20078M:	Samin Guo <samin.guo@starfivetech.com>
20079S:	Maintained
20080F:	Documentation/devicetree/bindings/net/starfive,jh7110-dwmac.yaml
20081F:	drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
20082
20083STARFIVE JH7110 MMC/SD/SDIO DRIVER
20084M:	William Qiu <william.qiu@starfivetech.com>
20085S:	Supported
20086F:	Documentation/devicetree/bindings/mmc/starfive*
20087F:	drivers/mmc/host/dw_mmc-starfive.c
20088
20089STARFIVE JH71X0 CLOCK DRIVERS
20090M:	Emil Renner Berthing <kernel@esmil.dk>
20091M:	Hal Feng <hal.feng@starfivetech.com>
20092S:	Maintained
20093F:	Documentation/devicetree/bindings/clock/starfive,jh71*.yaml
20094F:	drivers/clk/starfive/clk-starfive-jh71*
20095F:	include/dt-bindings/clock/starfive?jh71*.h
20096
20097STARFIVE JH71X0 PINCTRL DRIVERS
20098M:	Emil Renner Berthing <kernel@esmil.dk>
20099M:	Jianlong Huang <jianlong.huang@starfivetech.com>
20100L:	linux-gpio@vger.kernel.org
20101S:	Maintained
20102F:	Documentation/devicetree/bindings/pinctrl/starfive,jh71*.yaml
20103F:	drivers/pinctrl/starfive/pinctrl-starfive-jh71*
20104F:	include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
20105F:	include/dt-bindings/pinctrl/starfive,jh7110-pinctrl.h
20106
20107STARFIVE JH71X0 RESET CONTROLLER DRIVERS
20108M:	Emil Renner Berthing <kernel@esmil.dk>
20109M:	Hal Feng <hal.feng@starfivetech.com>
20110S:	Maintained
20111F:	Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
20112F:	drivers/reset/starfive/reset-starfive-jh71*
20113F:	include/dt-bindings/reset/starfive?jh71*.h
20114
20115STARFIVE JH71XX PMU CONTROLLER DRIVER
20116M:	Walker Chen <walker.chen@starfivetech.com>
20117S:	Supported
20118F:	Documentation/devicetree/bindings/power/starfive*
20119F:	drivers/soc/starfive/jh71xx_pmu.c
20120F:	include/dt-bindings/power/starfive,jh7110-pmu.h
20121
20122STARFIVE SOC DRIVERS
20123M:	Conor Dooley <conor@kernel.org>
20124S:	Maintained
20125T:	git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
20126F:	drivers/soc/starfive/
20127
20128STARFIVE TRNG DRIVER
20129M:	Jia Jie Ho <jiajie.ho@starfivetech.com>
20130S:	Supported
20131F:	Documentation/devicetree/bindings/rng/starfive*
20132F:	drivers/char/hw_random/jh7110-trng.c
20133
20134STARFIVE WATCHDOG DRIVER
20135M:	Xingyu Wu <xingyu.wu@starfivetech.com>
20136M:	Samin Guo <samin.guo@starfivetech.com>
20137S:	Supported
20138F:	Documentation/devicetree/bindings/watchdog/starfive*
20139F:	drivers/watchdog/starfive-wdt.c
20140
20141STATIC BRANCH/CALL
20142M:	Peter Zijlstra <peterz@infradead.org>
20143M:	Josh Poimboeuf <jpoimboe@kernel.org>
20144M:	Jason Baron <jbaron@akamai.com>
20145R:	Steven Rostedt <rostedt@goodmis.org>
20146R:	Ard Biesheuvel <ardb@kernel.org>
20147S:	Supported
20148F:	arch/*/include/asm/jump_label*.h
20149F:	arch/*/include/asm/static_call*.h
20150F:	arch/*/kernel/jump_label.c
20151F:	arch/*/kernel/static_call.c
20152F:	include/linux/jump_label*.h
20153F:	include/linux/static_call*.h
20154F:	kernel/jump_label.c
20155F:	kernel/static_call.c
20156
20157STI AUDIO (ASoC) DRIVERS
20158M:	Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
20159L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
20160S:	Maintained
20161F:	Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
20162F:	sound/soc/sti/
20163
20164STI CEC DRIVER
20165M:	Alain Volmat <alain.volmat@foss.st.com>
20166S:	Maintained
20167F:	Documentation/devicetree/bindings/media/cec/st,stih-cec.yaml
20168F:	drivers/media/cec/platform/sti/
20169
20170STK1160 USB VIDEO CAPTURE DRIVER
20171M:	Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20172L:	linux-media@vger.kernel.org
20173S:	Maintained
20174T:	git git://linuxtv.org/media_tree.git
20175F:	drivers/media/usb/stk1160/
20176
20177STM32 AUDIO (ASoC) DRIVERS
20178M:	Olivier Moysan <olivier.moysan@foss.st.com>
20179M:	Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
20180L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
20181S:	Maintained
20182F:	Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
20183F:	Documentation/devicetree/bindings/sound/st,stm32-*.yaml
20184F:	sound/soc/stm/
20185
20186STM32 TIMER/LPTIMER DRIVERS
20187M:	Fabrice Gasnier <fabrice.gasnier@foss.st.com>
20188S:	Maintained
20189F:	Documentation/ABI/testing/*timer-stm32
20190F:	Documentation/devicetree/bindings/*/*stm32-*timer*
20191F:	drivers/*/stm32-*timer*
20192F:	drivers/pwm/pwm-stm32*
20193F:	include/linux/*/stm32-*tim*
20194
20195STMMAC ETHERNET DRIVER
20196M:	Giuseppe Cavallaro <peppe.cavallaro@st.com>
20197M:	Alexandre Torgue <alexandre.torgue@foss.st.com>
20198M:	Jose Abreu <joabreu@synopsys.com>
20199L:	netdev@vger.kernel.org
20200S:	Supported
20201W:	http://www.stlinux.com
20202F:	Documentation/networking/device_drivers/ethernet/stmicro/
20203F:	drivers/net/ethernet/stmicro/stmmac/
20204
20205SUN3/3X
20206M:	Sam Creasey <sammy@sammy.net>
20207S:	Maintained
20208W:	http://sammy.net/sun3/
20209F:	arch/m68k/include/asm/sun3*
20210F:	arch/m68k/kernel/*sun3*
20211F:	arch/m68k/sun3*/
20212F:	drivers/net/ethernet/i825xx/sun3*
20213
20214SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
20215M:	Hans de Goede <hdegoede@redhat.com>
20216L:	linux-input@vger.kernel.org
20217S:	Maintained
20218F:	Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
20219F:	drivers/input/keyboard/sun4i-lradc-keys.c
20220
20221SUNDANCE NETWORK DRIVER
20222M:	Denis Kirjanov <kda@linux-powerpc.org>
20223L:	netdev@vger.kernel.org
20224S:	Maintained
20225F:	drivers/net/ethernet/dlink/sundance.c
20226
20227SUN HAPPY MEAL ETHERNET DRIVER
20228M:	Sean Anderson <seanga2@gmail.com>
20229S:	Maintained
20230F:	drivers/net/ethernet/sun/sunhme.*
20231
20232SUNPLUS ETHERNET DRIVER
20233M:	Wells Lu <wellslutw@gmail.com>
20234L:	netdev@vger.kernel.org
20235S:	Maintained
20236W:	https://sunplus.atlassian.net/wiki/spaces/doc/overview
20237F:	Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
20238F:	drivers/net/ethernet/sunplus/
20239
20240SUNPLUS MMC DRIVER
20241M:	Tony Huang <tonyhuang.sunplus@gmail.com>
20242M:	Li-hao Kuo <lhjeff911@gmail.com>
20243S:	Maintained
20244F:	Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
20245F:	drivers/mmc/host/sunplus-mmc.c
20246
20247SUNPLUS OCOTP DRIVER
20248M:	Vincent Shih <vincent.sunplus@gmail.com>
20249S:	Maintained
20250F:	Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
20251F:	drivers/nvmem/sunplus-ocotp.c
20252
20253SUNPLUS USB2 PHY DRIVER
20254M:	Vincent Shih <vincent.sunplus@gmail.com>
20255L:	linux-usb@vger.kernel.org
20256S:	Maintained
20257F:	Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
20258F:	drivers/phy/sunplus/Kconfig
20259F:	drivers/phy/sunplus/Makefile
20260F:	drivers/phy/sunplus/phy-sunplus-usb2.c
20261
20262SUNPLUS PWM DRIVER
20263M:	Hammer Hsieh <hammerh0314@gmail.com>
20264S:	Maintained
20265F:	Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
20266F:	drivers/pwm/pwm-sunplus.c
20267
20268SUNPLUS RTC DRIVER
20269M:	Vincent Shih <vincent.sunplus@gmail.com>
20270L:	linux-rtc@vger.kernel.org
20271S:	Maintained
20272F:	Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
20273F:	drivers/rtc/rtc-sunplus.c
20274
20275SUNPLUS SPI CONTROLLER INTERFACE DRIVER
20276M:	Li-hao Kuo <lhjeff911@gmail.com>
20277L:	linux-spi@vger.kernel.org
20278S:	Maintained
20279F:	Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
20280F:	drivers/spi/spi-sunplus-sp7021.c
20281
20282SUNPLUS UART DRIVER
20283M:	Hammer Hsieh <hammerh0314@gmail.com>
20284S:	Maintained
20285F:	Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
20286F:	drivers/tty/serial/sunplus-uart.c
20287
20288SUNPLUS WATCHDOG DRIVER
20289M:	Xiantao Hu <xt.hu@cqplus1.com>
20290L:	linux-watchdog@vger.kernel.org
20291S:	Maintained
20292F:	Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
20293F:	drivers/watchdog/sunplus_wdt.c
20294
20295SUPERH
20296M:	Yoshinori Sato <ysato@users.sourceforge.jp>
20297M:	Rich Felker <dalias@libc.org>
20298M:	John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
20299L:	linux-sh@vger.kernel.org
20300S:	Maintained
20301Q:	http://patchwork.kernel.org/project/linux-sh/list/
20302F:	Documentation/arch/sh/
20303F:	arch/sh/
20304F:	drivers/sh/
20305
20306SUSPEND TO RAM
20307M:	"Rafael J. Wysocki" <rafael@kernel.org>
20308M:	Len Brown <len.brown@intel.com>
20309M:	Pavel Machek <pavel@ucw.cz>
20310L:	linux-pm@vger.kernel.org
20311S:	Supported
20312B:	https://bugzilla.kernel.org
20313F:	Documentation/power/
20314F:	arch/x86/kernel/acpi/sleep*
20315F:	arch/x86/kernel/acpi/wakeup*
20316F:	drivers/base/power/
20317F:	include/linux/freezer.h
20318F:	include/linux/pm.h
20319F:	include/linux/suspend.h
20320F:	kernel/power/
20321
20322SVGA HANDLING
20323M:	Martin Mares <mj@ucw.cz>
20324L:	linux-video@atrey.karlin.mff.cuni.cz
20325S:	Maintained
20326F:	Documentation/admin-guide/svga.rst
20327F:	arch/x86/boot/video*
20328
20329SWITCHDEV
20330M:	Jiri Pirko <jiri@resnulli.us>
20331M:	Ivan Vecera <ivecera@redhat.com>
20332L:	netdev@vger.kernel.org
20333S:	Supported
20334F:	include/net/switchdev.h
20335F:	net/switchdev/
20336
20337SY8106A REGULATOR DRIVER
20338M:	Icenowy Zheng <icenowy@aosc.io>
20339S:	Maintained
20340F:	Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
20341F:	drivers/regulator/sy8106a-regulator.c
20342
20343SYNC FILE FRAMEWORK
20344M:	Sumit Semwal <sumit.semwal@linaro.org>
20345R:	Gustavo Padovan <gustavo@padovan.org>
20346L:	linux-media@vger.kernel.org
20347L:	dri-devel@lists.freedesktop.org
20348S:	Maintained
20349T:	git git://anongit.freedesktop.org/drm/drm-misc
20350F:	Documentation/driver-api/sync_file.rst
20351F:	drivers/dma-buf/dma-fence*
20352F:	drivers/dma-buf/sw_sync.c
20353F:	drivers/dma-buf/sync_*
20354F:	include/linux/sync_file.h
20355F:	include/uapi/linux/sync_file.h
20356
20357SYNOPSYS ARC ARCHITECTURE
20358M:	Vineet Gupta <vgupta@kernel.org>
20359L:	linux-snps-arc@lists.infradead.org
20360S:	Supported
20361T:	git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
20362F:	Documentation/arch/arc
20363F:	Documentation/devicetree/bindings/arc/*
20364F:	Documentation/devicetree/bindings/interrupt-controller/snps,arc*
20365F:	arch/arc/
20366F:	drivers/clocksource/arc_timer.c
20367F:	drivers/tty/serial/arc_uart.c
20368
20369SYNOPSYS ARC HSDK SDP pll clock driver
20370M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20371S:	Supported
20372F:	Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
20373F:	drivers/clk/clk-hsdk-pll.c
20374
20375SYNOPSYS ARC SDP clock driver
20376M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20377S:	Supported
20378F:	Documentation/devicetree/bindings/clock/snps,pll-clock.txt
20379F:	drivers/clk/axs10x/*
20380
20381SYNOPSYS ARC SDP platform support
20382M:	Alexey Brodkin <abrodkin@synopsys.com>
20383S:	Supported
20384F:	Documentation/devicetree/bindings/arc/axs10*
20385F:	arch/arc/boot/dts/ax*
20386F:	arch/arc/plat-axs10x
20387
20388SYNOPSYS AXS10x RESET CONTROLLER DRIVER
20389M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20390S:	Supported
20391F:	Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
20392F:	drivers/reset/reset-axs10x.c
20393
20394SYNOPSYS CREG GPIO DRIVER
20395M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20396S:	Maintained
20397F:	Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
20398F:	drivers/gpio/gpio-creg-snps.c
20399
20400SYNOPSYS DESIGNWARE 8250 UART DRIVER
20401M:	Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
20402R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20403S:	Supported
20404F:	drivers/tty/serial/8250/8250_dw.c
20405F:	drivers/tty/serial/8250/8250_dwlib.*
20406F:	drivers/tty/serial/8250/8250_lpss.c
20407
20408SYNOPSYS DESIGNWARE APB GPIO DRIVER
20409M:	Hoan Tran <hoan@os.amperecomputing.com>
20410M:	Serge Semin <fancer.lancer@gmail.com>
20411L:	linux-gpio@vger.kernel.org
20412S:	Maintained
20413F:	Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
20414F:	drivers/gpio/gpio-dwapb.c
20415
20416SYNOPSYS DESIGNWARE APB SSI DRIVER
20417M:	Serge Semin <fancer.lancer@gmail.com>
20418L:	linux-spi@vger.kernel.org
20419S:	Supported
20420F:	Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
20421F:	drivers/spi/spi-dw*
20422
20423SYNOPSYS DESIGNWARE AXI DMAC DRIVER
20424M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20425S:	Maintained
20426F:	Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
20427F:	drivers/dma/dw-axi-dmac/
20428
20429SYNOPSYS DESIGNWARE DMAC DRIVER
20430M:	Viresh Kumar <vireshk@kernel.org>
20431R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20432S:	Maintained
20433F:	Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
20434F:	Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
20435F:	drivers/dma/dw/
20436F:	include/dt-bindings/dma/dw-dmac.h
20437F:	include/linux/dma/dw.h
20438F:	include/linux/platform_data/dma-dw.h
20439
20440SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
20441M:	Jose Abreu <Jose.Abreu@synopsys.com>
20442L:	netdev@vger.kernel.org
20443S:	Supported
20444F:	drivers/net/ethernet/synopsys/
20445
20446SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
20447M:	Jose Abreu <Jose.Abreu@synopsys.com>
20448L:	netdev@vger.kernel.org
20449S:	Supported
20450F:	drivers/net/pcs/pcs-xpcs.c
20451F:	drivers/net/pcs/pcs-xpcs.h
20452F:	include/linux/pcs/pcs-xpcs.h
20453
20454SYNOPSYS DESIGNWARE I2C DRIVER
20455M:	Jarkko Nikula <jarkko.nikula@linux.intel.com>
20456R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20457R:	Mika Westerberg <mika.westerberg@linux.intel.com>
20458R:	Jan Dabros <jsd@semihalf.com>
20459L:	linux-i2c@vger.kernel.org
20460S:	Supported
20461F:	drivers/i2c/busses/i2c-designware-*
20462
20463SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
20464M:	Jaehoon Chung <jh80.chung@samsung.com>
20465L:	linux-mmc@vger.kernel.org
20466S:	Maintained
20467F:	drivers/mmc/host/dw_mmc*
20468
20469SYNOPSYS HSDK RESET CONTROLLER DRIVER
20470M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20471S:	Supported
20472F:	Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
20473F:	drivers/reset/reset-hsdk.c
20474F:	include/dt-bindings/reset/snps,hsdk-reset.h
20475
20476SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
20477M:	Prabu Thangamuthu <prabu.t@synopsys.com>
20478M:	Manjunath M B <manjumb@synopsys.com>
20479L:	linux-mmc@vger.kernel.org
20480S:	Maintained
20481F:	drivers/mmc/host/sdhci-pci-dwc-mshc.c
20482
20483SYSTEM CONFIGURATION (SYSCON)
20484M:	Lee Jones <lee@kernel.org>
20485M:	Arnd Bergmann <arnd@arndb.de>
20486S:	Supported
20487T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
20488F:	drivers/mfd/syscon.c
20489
20490SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
20491M:	Sudeep Holla <sudeep.holla@arm.com>
20492R:	Cristian Marussi <cristian.marussi@arm.com>
20493L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20494S:	Maintained
20495F:	Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
20496F:	drivers/clk/clk-sc[mp]i.c
20497F:	drivers/cpufreq/sc[mp]i-cpufreq.c
20498F:	drivers/firmware/arm_scmi/
20499F:	drivers/firmware/arm_scpi.c
20500F:	drivers/powercap/arm_scmi_powercap.c
20501F:	drivers/regulator/scmi-regulator.c
20502F:	drivers/reset/reset-scmi.c
20503F:	include/linux/sc[mp]i_protocol.h
20504F:	include/trace/events/scmi.h
20505F:	include/uapi/linux/virtio_scmi.h
20506
20507SYSTEM RESET/SHUTDOWN DRIVERS
20508M:	Sebastian Reichel <sre@kernel.org>
20509L:	linux-pm@vger.kernel.org
20510S:	Maintained
20511T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
20512F:	Documentation/devicetree/bindings/power/reset/
20513F:	drivers/power/reset/
20514
20515SYSTEM TRACE MODULE CLASS
20516M:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
20517S:	Maintained
20518T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
20519F:	Documentation/trace/stm.rst
20520F:	drivers/hwtracing/stm/
20521F:	include/linux/stm.h
20522F:	include/uapi/linux/stm.h
20523
20524SYSTEM76 ACPI DRIVER
20525M:	Jeremy Soller <jeremy@system76.com>
20526M:	System76 Product Development <productdev@system76.com>
20527L:	platform-driver-x86@vger.kernel.org
20528S:	Maintained
20529F:	drivers/platform/x86/system76_acpi.c
20530
20531SYSV FILESYSTEM
20532S:	Orphan
20533F:	Documentation/filesystems/sysv-fs.rst
20534F:	fs/sysv/
20535F:	include/linux/sysv_fs.h
20536
20537TASKSTATS STATISTICS INTERFACE
20538M:	Balbir Singh <bsingharora@gmail.com>
20539S:	Maintained
20540F:	Documentation/accounting/taskstats*
20541F:	include/linux/taskstats*
20542F:	kernel/taskstats.c
20543
20544TC subsystem
20545M:	Jamal Hadi Salim <jhs@mojatatu.com>
20546M:	Cong Wang <xiyou.wangcong@gmail.com>
20547M:	Jiri Pirko <jiri@resnulli.us>
20548L:	netdev@vger.kernel.org
20549S:	Maintained
20550F:	include/net/pkt_cls.h
20551F:	include/net/pkt_sched.h
20552F:	include/net/tc_act/
20553F:	include/uapi/linux/pkt_cls.h
20554F:	include/uapi/linux/pkt_sched.h
20555F:	include/uapi/linux/tc_act/
20556F:	include/uapi/linux/tc_ematch/
20557F:	net/sched/
20558F:	tools/testing/selftests/tc-testing
20559
20560TC90522 MEDIA DRIVER
20561M:	Akihiro Tsukada <tskd08@gmail.com>
20562L:	linux-media@vger.kernel.org
20563S:	Odd Fixes
20564F:	drivers/media/dvb-frontends/tc90522*
20565
20566TCP LOW PRIORITY MODULE
20567M:	"Wong Hoi Sing, Edison" <hswong3i@gmail.com>
20568M:	"Hung Hing Lun, Mike" <hlhung3i@gmail.com>
20569S:	Maintained
20570W:	http://tcp-lp-mod.sourceforge.net/
20571F:	net/ipv4/tcp_lp.c
20572
20573TDA10071 MEDIA DRIVER
20574M:	Antti Palosaari <crope@iki.fi>
20575L:	linux-media@vger.kernel.org
20576S:	Maintained
20577W:	https://linuxtv.org
20578W:	http://palosaari.fi/linux/
20579Q:	http://patchwork.linuxtv.org/project/linux-media/list/
20580T:	git git://linuxtv.org/anttip/media_tree.git
20581F:	drivers/media/dvb-frontends/tda10071*
20582
20583TDA18212 MEDIA DRIVER
20584M:	Antti Palosaari <crope@iki.fi>
20585L:	linux-media@vger.kernel.org
20586S:	Maintained
20587W:	https://linuxtv.org
20588W:	http://palosaari.fi/linux/
20589Q:	http://patchwork.linuxtv.org/project/linux-media/list/
20590T:	git git://linuxtv.org/anttip/media_tree.git
20591F:	drivers/media/tuners/tda18212*
20592
20593TDA18218 MEDIA DRIVER
20594M:	Antti Palosaari <crope@iki.fi>
20595L:	linux-media@vger.kernel.org
20596S:	Maintained
20597W:	https://linuxtv.org
20598W:	http://palosaari.fi/linux/
20599Q:	http://patchwork.linuxtv.org/project/linux-media/list/
20600T:	git git://linuxtv.org/anttip/media_tree.git
20601F:	drivers/media/tuners/tda18218*
20602
20603TDA18250 MEDIA DRIVER
20604M:	Olli Salonen <olli.salonen@iki.fi>
20605L:	linux-media@vger.kernel.org
20606S:	Maintained
20607W:	https://linuxtv.org
20608Q:	http://patchwork.linuxtv.org/project/linux-media/list/
20609T:	git git://linuxtv.org/media_tree.git
20610F:	drivers/media/tuners/tda18250*
20611
20612TDA18271 MEDIA DRIVER
20613M:	Michael Krufky <mkrufky@linuxtv.org>
20614L:	linux-media@vger.kernel.org
20615S:	Maintained
20616W:	https://linuxtv.org
20617W:	http://github.com/mkrufky
20618Q:	http://patchwork.linuxtv.org/project/linux-media/list/
20619T:	git git://linuxtv.org/mkrufky/tuners.git
20620F:	drivers/media/tuners/tda18271*
20621
20622TDA1997x MEDIA DRIVER
20623M:	Tim Harvey <tharvey@gateworks.com>
20624L:	linux-media@vger.kernel.org
20625S:	Maintained
20626W:	https://linuxtv.org
20627Q:	http://patchwork.linuxtv.org/project/linux-media/list/
20628F:	drivers/media/i2c/tda1997x.*
20629
20630TDA827x MEDIA DRIVER
20631M:	Michael Krufky <mkrufky@linuxtv.org>
20632L:	linux-media@vger.kernel.org
20633S:	Maintained
20634W:	https://linuxtv.org
20635W:	http://github.com/mkrufky
20636Q:	http://patchwork.linuxtv.org/project/linux-media/list/
20637T:	git git://linuxtv.org/mkrufky/tuners.git
20638F:	drivers/media/tuners/tda8290.*
20639
20640TDA8290 MEDIA DRIVER
20641M:	Michael Krufky <mkrufky@linuxtv.org>
20642L:	linux-media@vger.kernel.org
20643S:	Maintained
20644W:	https://linuxtv.org
20645W:	http://github.com/mkrufky
20646Q:	http://patchwork.linuxtv.org/project/linux-media/list/
20647T:	git git://linuxtv.org/mkrufky/tuners.git
20648F:	drivers/media/tuners/tda8290.*
20649
20650TDA9840 MEDIA DRIVER
20651M:	Hans Verkuil <hverkuil@xs4all.nl>
20652L:	linux-media@vger.kernel.org
20653S:	Maintained
20654W:	https://linuxtv.org
20655T:	git git://linuxtv.org/media_tree.git
20656F:	drivers/media/i2c/tda9840*
20657
20658TEA5761 TUNER DRIVER
20659M:	Mauro Carvalho Chehab <mchehab@kernel.org>
20660L:	linux-media@vger.kernel.org
20661S:	Odd fixes
20662W:	https://linuxtv.org
20663T:	git git://linuxtv.org/media_tree.git
20664F:	drivers/media/tuners/tea5761.*
20665
20666TEA5767 TUNER DRIVER
20667M:	Mauro Carvalho Chehab <mchehab@kernel.org>
20668L:	linux-media@vger.kernel.org
20669S:	Maintained
20670W:	https://linuxtv.org
20671T:	git git://linuxtv.org/media_tree.git
20672F:	drivers/media/tuners/tea5767.*
20673
20674TEA6415C MEDIA DRIVER
20675M:	Hans Verkuil <hverkuil@xs4all.nl>
20676L:	linux-media@vger.kernel.org
20677S:	Maintained
20678W:	https://linuxtv.org
20679T:	git git://linuxtv.org/media_tree.git
20680F:	drivers/media/i2c/tea6415c*
20681
20682TEA6420 MEDIA DRIVER
20683M:	Hans Verkuil <hverkuil@xs4all.nl>
20684L:	linux-media@vger.kernel.org
20685S:	Maintained
20686W:	https://linuxtv.org
20687T:	git git://linuxtv.org/media_tree.git
20688F:	drivers/media/i2c/tea6420*
20689
20690TEAM DRIVER
20691M:	Jiri Pirko <jiri@resnulli.us>
20692L:	netdev@vger.kernel.org
20693S:	Supported
20694F:	drivers/net/team/
20695F:	include/linux/if_team.h
20696F:	include/uapi/linux/if_team.h
20697F:	tools/testing/selftests/drivers/net/team/
20698
20699TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20700M:	"Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
20701S:	Maintained
20702F:	arch/x86/platform/ts5500/
20703
20704TECHNOTREND USB IR RECEIVER
20705M:	Sean Young <sean@mess.org>
20706L:	linux-media@vger.kernel.org
20707S:	Maintained
20708F:	drivers/media/rc/ttusbir.c
20709
20710TECHWELL TW9910 VIDEO DECODER
20711L:	linux-media@vger.kernel.org
20712S:	Orphan
20713F:	drivers/media/i2c/tw9910.c
20714F:	include/media/i2c/tw9910.h
20715
20716TEE SUBSYSTEM
20717M:	Jens Wiklander <jens.wiklander@linaro.org>
20718R:	Sumit Garg <sumit.garg@linaro.org>
20719L:	op-tee@lists.trustedfirmware.org
20720S:	Maintained
20721F:	Documentation/staging/tee.rst
20722F:	drivers/tee/
20723F:	include/linux/tee_drv.h
20724F:	include/uapi/linux/tee.h
20725
20726TEGRA ARCHITECTURE SUPPORT
20727M:	Thierry Reding <thierry.reding@gmail.com>
20728M:	Jonathan Hunter <jonathanh@nvidia.com>
20729L:	linux-tegra@vger.kernel.org
20730S:	Supported
20731Q:	http://patchwork.ozlabs.org/project/linux-tegra/list/
20732T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20733N:	[^a-z]tegra
20734
20735TEGRA CLOCK DRIVER
20736M:	Peter De Schrijver <pdeschrijver@nvidia.com>
20737M:	Prashant Gaikwad <pgaikwad@nvidia.com>
20738S:	Supported
20739F:	drivers/clk/tegra/
20740
20741TEGRA DMA DRIVERS
20742M:	Laxman Dewangan <ldewangan@nvidia.com>
20743M:	Jon Hunter <jonathanh@nvidia.com>
20744S:	Supported
20745F:	drivers/dma/tegra*
20746
20747TEGRA I2C DRIVER
20748M:	Laxman Dewangan <ldewangan@nvidia.com>
20749R:	Dmitry Osipenko <digetx@gmail.com>
20750S:	Supported
20751F:	drivers/i2c/busses/i2c-tegra.c
20752
20753TEGRA IOMMU DRIVERS
20754M:	Thierry Reding <thierry.reding@gmail.com>
20755R:	Krishna Reddy <vdumpa@nvidia.com>
20756L:	linux-tegra@vger.kernel.org
20757S:	Supported
20758F:	drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20759F:	drivers/iommu/tegra*
20760
20761TEGRA KBC DRIVER
20762M:	Laxman Dewangan <ldewangan@nvidia.com>
20763S:	Supported
20764F:	drivers/input/keyboard/tegra-kbc.c
20765
20766TEGRA NAND DRIVER
20767M:	Stefan Agner <stefan@agner.ch>
20768M:	Lucas Stach <dev@lynxeye.de>
20769S:	Maintained
20770F:	Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20771F:	drivers/mtd/nand/raw/tegra_nand.c
20772
20773TEGRA PWM DRIVER
20774M:	Thierry Reding <thierry.reding@gmail.com>
20775S:	Supported
20776F:	drivers/pwm/pwm-tegra.c
20777
20778TEGRA SERIAL DRIVER
20779M:	Laxman Dewangan <ldewangan@nvidia.com>
20780S:	Supported
20781F:	drivers/tty/serial/serial-tegra.c
20782
20783TEGRA SPI DRIVER
20784M:	Laxman Dewangan <ldewangan@nvidia.com>
20785S:	Supported
20786F:	drivers/spi/spi-tegra*
20787
20788TEGRA QUAD SPI DRIVER
20789M:	Thierry Reding <thierry.reding@gmail.com>
20790M:	Jonathan Hunter <jonathanh@nvidia.com>
20791M:	Sowjanya Komatineni <skomatineni@nvidia.com>
20792L:	linux-tegra@vger.kernel.org
20793S:	Maintained
20794F:	drivers/spi/spi-tegra210-quad.c
20795
20796TEGRA VIDEO DRIVER
20797M:	Thierry Reding <thierry.reding@gmail.com>
20798M:	Jonathan Hunter <jonathanh@nvidia.com>
20799M:	Sowjanya Komatineni <skomatineni@nvidia.com>
20800L:	linux-media@vger.kernel.org
20801L:	linux-tegra@vger.kernel.org
20802S:	Maintained
20803F:	Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20804F:	drivers/staging/media/tegra-video/
20805
20806TEGRA XUSB PADCTL DRIVER
20807M:	JC Kuo <jckuo@nvidia.com>
20808S:	Supported
20809F:	drivers/phy/tegra/xusb*
20810
20811TEHUTI ETHERNET DRIVER
20812M:	Andy Gospodarek <andy@greyhouse.net>
20813L:	netdev@vger.kernel.org
20814S:	Supported
20815F:	drivers/net/ethernet/tehuti/*
20816
20817TELECOM CLOCK DRIVER FOR MCPL0010
20818M:	Mark Gross <markgross@kernel.org>
20819S:	Supported
20820F:	drivers/char/tlclk.c
20821
20822TEMPO SEMICONDUCTOR DRIVERS
20823M:	Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20824S:	Maintained
20825F:	Documentation/devicetree/bindings/sound/tscs*.txt
20826F:	sound/soc/codecs/tscs*.c
20827F:	sound/soc/codecs/tscs*.h
20828
20829TENSILICA XTENSA PORT (xtensa)
20830M:	Chris Zankel <chris@zankel.net>
20831M:	Max Filippov <jcmvbkbc@gmail.com>
20832S:	Maintained
20833T:	git https://github.com/jcmvbkbc/linux-xtensa.git
20834F:	arch/xtensa/
20835F:	drivers/irqchip/irq-xtensa-*
20836
20837TEXAS INSTRUMENTS ASoC DRIVERS
20838M:	Peter Ujfalusi <peter.ujfalusi@gmail.com>
20839L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
20840S:	Maintained
20841F:	Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20842F:	sound/soc/ti/
20843
20844TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20845M:	Ricardo Ribalda <ribalda@kernel.org>
20846L:	linux-iio@vger.kernel.org
20847S:	Supported
20848F:	Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20849F:	drivers/iio/dac/ti-dac7612.c
20850
20851TEXAS INSTRUMENTS DMA DRIVERS
20852M:	Peter Ujfalusi <peter.ujfalusi@gmail.com>
20853L:	dmaengine@vger.kernel.org
20854S:	Maintained
20855F:	Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20856F:	Documentation/devicetree/bindings/dma/ti-edma.txt
20857F:	Documentation/devicetree/bindings/dma/ti/
20858F:	drivers/dma/ti/
20859X:	drivers/dma/ti/cppi41.c
20860F:	include/linux/dma/k3-udma-glue.h
20861F:	include/linux/dma/ti-cppi5.h
20862F:	include/linux/dma/k3-psil.h
20863
20864TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20865M:	Nishanth Menon <nm@ti.com>
20866M:	Tero Kristo <kristo@kernel.org>
20867M:	Santosh Shilimkar <ssantosh@kernel.org>
20868L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20869S:	Maintained
20870F:	Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20871F:	Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20872F:	Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20873F:	Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20874F:	Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20875F:	Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20876F:	Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20877F:	drivers/clk/keystone/sci-clk.c
20878F:	drivers/firmware/ti_sci*
20879F:	drivers/irqchip/irq-ti-sci-inta.c
20880F:	drivers/irqchip/irq-ti-sci-intr.c
20881F:	drivers/reset/reset-ti-sci.c
20882F:	drivers/soc/ti/ti_sci_inta_msi.c
20883F:	drivers/soc/ti/ti_sci_pm_domains.c
20884F:	include/dt-bindings/soc/ti,sci_pm_domain.h
20885F:	include/linux/soc/ti/ti_sci_inta_msi.h
20886F:	include/linux/soc/ti/ti_sci_protocol.h
20887
20888TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20889M:	Robert Marko <robert.marko@sartura.hr>
20890M:	Luka Perkov <luka.perkov@sartura.hr>
20891L:	linux-hwmon@vger.kernel.org
20892S:	Maintained
20893F:	Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20894F:	Documentation/hwmon/tps23861.rst
20895F:	drivers/hwmon/tps23861.c
20896
20897TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20898M:	Puranjay Mohan <puranjay12@gmail.com>
20899L:	linux-iio@vger.kernel.org
20900S:	Supported
20901F:	Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20902F:	drivers/iio/temperature/tmp117.c
20903
20904THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20905M:	Hans Verkuil <hverkuil@xs4all.nl>
20906L:	linux-media@vger.kernel.org
20907S:	Maintained
20908W:	https://linuxtv.org
20909T:	git git://linuxtv.org/media_tree.git
20910F:	drivers/media/radio/radio-raremono.c
20911
20912THERMAL
20913M:	Rafael J. Wysocki <rafael@kernel.org>
20914M:	Daniel Lezcano <daniel.lezcano@linaro.org>
20915R:	Amit Kucheria <amitk@kernel.org>
20916R:	Zhang Rui <rui.zhang@intel.com>
20917L:	linux-pm@vger.kernel.org
20918S:	Supported
20919Q:	https://patchwork.kernel.org/project/linux-pm/list/
20920T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20921F:	Documentation/ABI/testing/sysfs-class-thermal
20922F:	Documentation/admin-guide/thermal/
20923F:	Documentation/devicetree/bindings/thermal/
20924F:	Documentation/driver-api/thermal/
20925F:	drivers/thermal/
20926F:	include/dt-bindings/thermal/
20927F:	include/linux/cpu_cooling.h
20928F:	include/linux/thermal.h
20929F:	include/uapi/linux/thermal.h
20930F:	tools/lib/thermal/
20931F:	tools/thermal/
20932
20933THERMAL DRIVER FOR AMLOGIC SOCS
20934M:	Guillaume La Roque <glaroque@baylibre.com>
20935L:	linux-pm@vger.kernel.org
20936L:	linux-amlogic@lists.infradead.org
20937S:	Supported
20938W:	http://linux-meson.com/
20939F:	Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20940F:	drivers/thermal/amlogic_thermal.c
20941
20942THERMAL/CPU_COOLING
20943M:	Amit Daniel Kachhap <amit.kachhap@gmail.com>
20944M:	Daniel Lezcano <daniel.lezcano@linaro.org>
20945M:	Viresh Kumar <viresh.kumar@linaro.org>
20946R:	Lukasz Luba <lukasz.luba@arm.com>
20947L:	linux-pm@vger.kernel.org
20948S:	Supported
20949F:	Documentation/driver-api/thermal/cpu-cooling-api.rst
20950F:	Documentation/driver-api/thermal/cpu-idle-cooling.rst
20951F:	drivers/thermal/cpufreq_cooling.c
20952F:	drivers/thermal/cpuidle_cooling.c
20953F:	include/linux/cpu_cooling.h
20954
20955THERMAL/POWER_ALLOCATOR
20956M:	Lukasz Luba <lukasz.luba@arm.com>
20957L:	linux-pm@vger.kernel.org
20958S:	Maintained
20959F:	Documentation/driver-api/thermal/power_allocator.rst
20960F:	drivers/thermal/gov_power_allocator.c
20961F:	drivers/thermal/thermal_trace_ipa.h
20962
20963THINKPAD ACPI EXTRAS DRIVER
20964M:	Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20965L:	ibm-acpi-devel@lists.sourceforge.net
20966L:	platform-driver-x86@vger.kernel.org
20967S:	Maintained
20968W:	http://ibm-acpi.sourceforge.net
20969W:	http://thinkwiki.org/wiki/Ibm-acpi
20970T:	git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20971F:	drivers/platform/x86/thinkpad_acpi.c
20972
20973THINKPAD LMI DRIVER
20974M:	Mark Pearson <markpearson@lenovo.com>
20975L:	platform-driver-x86@vger.kernel.org
20976S:	Maintained
20977F:	Documentation/ABI/testing/sysfs-class-firmware-attributes
20978F:	drivers/platform/x86/think-lmi.?
20979
20980THUNDERBOLT DMA TRAFFIC TEST DRIVER
20981M:	Isaac Hazan <isaac.hazan@intel.com>
20982L:	linux-usb@vger.kernel.org
20983S:	Maintained
20984F:	drivers/thunderbolt/dma_test.c
20985
20986THUNDERBOLT DRIVER
20987M:	Andreas Noever <andreas.noever@gmail.com>
20988M:	Michael Jamet <michael.jamet@intel.com>
20989M:	Mika Westerberg <mika.westerberg@linux.intel.com>
20990M:	Yehezkel Bernat <YehezkelShB@gmail.com>
20991L:	linux-usb@vger.kernel.org
20992S:	Maintained
20993T:	git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20994F:	Documentation/admin-guide/thunderbolt.rst
20995F:	drivers/thunderbolt/
20996F:	include/linux/thunderbolt.h
20997
20998THUNDERBOLT NETWORK DRIVER
20999M:	Michael Jamet <michael.jamet@intel.com>
21000M:	Mika Westerberg <mika.westerberg@linux.intel.com>
21001M:	Yehezkel Bernat <YehezkelShB@gmail.com>
21002L:	netdev@vger.kernel.org
21003S:	Maintained
21004F:	drivers/net/thunderbolt/
21005
21006THUNDERX GPIO DRIVER
21007M:	Robert Richter <rric@kernel.org>
21008S:	Odd Fixes
21009F:	drivers/gpio/gpio-thunderx.c
21010
21011TI ADS7924 ADC DRIVER
21012M:	Hugo Villeneuve <hvilleneuve@dimonoff.com>
21013L:	linux-iio@vger.kernel.org
21014S:	Supported
21015F:	Documentation/devicetree/bindings/iio/adc/ti,ads7924.yaml
21016F:	drivers/iio/adc/ti-ads7924.c
21017
21018TI AM437X VPFE DRIVER
21019M:	"Lad, Prabhakar" <prabhakar.csengg@gmail.com>
21020L:	linux-media@vger.kernel.org
21021S:	Maintained
21022W:	https://linuxtv.org
21023Q:	http://patchwork.linuxtv.org/project/linux-media/list/
21024T:	git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
21025F:	drivers/media/platform/ti/am437x/
21026
21027TI BANDGAP AND THERMAL DRIVER
21028M:	Eduardo Valentin <edubezval@gmail.com>
21029M:	Keerthy <j-keerthy@ti.com>
21030L:	linux-pm@vger.kernel.org
21031L:	linux-omap@vger.kernel.org
21032S:	Maintained
21033F:	drivers/thermal/ti-soc-thermal/
21034
21035TI BQ27XXX POWER SUPPLY DRIVER
21036F:	drivers/power/supply/bq27xxx_battery.c
21037F:	drivers/power/supply/bq27xxx_battery_i2c.c
21038F:	include/linux/power/bq27xxx_battery.h
21039
21040TI CDCE706 CLOCK DRIVER
21041M:	Max Filippov <jcmvbkbc@gmail.com>
21042S:	Maintained
21043F:	drivers/clk/clk-cdce706.c
21044
21045TI CLOCK DRIVER
21046M:	Tero Kristo <kristo@kernel.org>
21047L:	linux-omap@vger.kernel.org
21048S:	Odd Fixes
21049F:	drivers/clk/ti/
21050F:	include/linux/clk/ti.h
21051
21052TI DAVINCI MACHINE SUPPORT
21053M:	Bartosz Golaszewski <brgl@bgdev.pl>
21054L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21055S:	Maintained
21056T:	git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
21057F:	Documentation/devicetree/bindings/i2c/i2c-davinci.txt
21058F:	arch/arm/boot/dts/da850*
21059F:	arch/arm/mach-davinci/
21060F:	drivers/i2c/busses/i2c-davinci.c
21061
21062TI DAVINCI SERIES CLOCK DRIVER
21063M:	David Lechner <david@lechnology.com>
21064R:	Sekhar Nori <nsekhar@ti.com>
21065S:	Maintained
21066F:	Documentation/devicetree/bindings/clock/ti/davinci/
21067F:	drivers/clk/davinci/
21068F:	include/linux/clk/davinci.h
21069
21070TI DAVINCI SERIES GPIO DRIVER
21071M:	Keerthy <j-keerthy@ti.com>
21072L:	linux-gpio@vger.kernel.org
21073S:	Maintained
21074F:	Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
21075F:	drivers/gpio/gpio-davinci.c
21076
21077TI DAVINCI SERIES MEDIA DRIVER
21078M:	"Lad, Prabhakar" <prabhakar.csengg@gmail.com>
21079L:	linux-media@vger.kernel.org
21080S:	Maintained
21081W:	https://linuxtv.org
21082Q:	http://patchwork.linuxtv.org/project/linux-media/list/
21083T:	git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
21084F:	drivers/media/platform/ti/davinci/
21085F:	include/media/davinci/
21086
21087TI ENHANCED CAPTURE (eCAP) DRIVER
21088M:	Vignesh Raghavendra <vigneshr@ti.com>
21089R:	Julien Panis <jpanis@baylibre.com>
21090L:	linux-iio@vger.kernel.org
21091L:	linux-omap@vger.kernel.org
21092S:	Maintained
21093F:	Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
21094F:	drivers/counter/ti-ecap-capture.c
21095
21096TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
21097R:	David Lechner <david@lechnology.com>
21098L:	linux-iio@vger.kernel.org
21099F:	Documentation/devicetree/bindings/counter/ti-eqep.yaml
21100F:	drivers/counter/ti-eqep.c
21101
21102TI ETHERNET SWITCH DRIVER (CPSW)
21103R:	Grygorii Strashko <grygorii.strashko@ti.com>
21104L:	linux-omap@vger.kernel.org
21105L:	netdev@vger.kernel.org
21106S:	Maintained
21107F:	drivers/net/ethernet/ti/cpsw*
21108F:	drivers/net/ethernet/ti/davinci*
21109
21110TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
21111M:	Alex Dubov <oakad@yahoo.com>
21112S:	Maintained
21113W:	http://tifmxx.berlios.de/
21114F:	drivers/memstick/host/tifm_ms.c
21115F:	drivers/misc/tifm*
21116F:	drivers/mmc/host/tifm_sd.c
21117F:	include/linux/tifm.h
21118
21119TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
21120M:	Nishanth Menon <nm@ti.com>
21121M:	Santosh Shilimkar <ssantosh@kernel.org>
21122L:	linux-kernel@vger.kernel.org
21123L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21124S:	Maintained
21125T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
21126F:	drivers/soc/ti/*
21127
21128TI LM49xxx FAMILY ASoC CODEC DRIVERS
21129M:	M R Swami Reddy <mr.swami.reddy@ti.com>
21130M:	Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
21131L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
21132S:	Maintained
21133F:	sound/soc/codecs/isabelle*
21134F:	sound/soc/codecs/lm49453*
21135
21136TI LMP92064 ADC DRIVER
21137M:	Leonard Göhrs <l.goehrs@pengutronix.de>
21138R:	kernel@pengutronix.de
21139L:	linux-iio@vger.kernel.org
21140S:	Maintained
21141F:	Documentation/devicetree/bindings/iio/adc/ti,lmp92064.yaml
21142F:	drivers/iio/adc/ti-lmp92064.c
21143
21144TI PCM3060 ASoC CODEC DRIVER
21145M:	Kirill Marinushkin <kmarinushkin@birdec.com>
21146L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
21147S:	Maintained
21148F:	Documentation/devicetree/bindings/sound/pcm3060.txt
21149F:	sound/soc/codecs/pcm3060*
21150
21151TI TAS571X FAMILY ASoC CODEC DRIVER
21152M:	Kevin Cernekee <cernekee@chromium.org>
21153L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
21154S:	Odd Fixes
21155F:	sound/soc/codecs/tas571x*
21156
21157TI TMAG5273 MAGNETOMETER DRIVER
21158M:	Gerald Loacker <gerald.loacker@wolfvision.net>
21159L:	linux-iio@vger.kernel.org
21160S:	Maintained
21161F:	Documentation/devicetree/bindings/iio/magnetometer/ti,tmag5273.yaml
21162F:	drivers/iio/magnetometer/tmag5273.c
21163
21164TI TRF7970A NFC DRIVER
21165M:	Mark Greer <mgreer@animalcreek.com>
21166L:	linux-wireless@vger.kernel.org
21167S:	Supported
21168F:	Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
21169F:	drivers/nfc/trf7970a.c
21170
21171TI TSC2046 ADC DRIVER
21172M:	Oleksij Rempel <o.rempel@pengutronix.de>
21173R:	kernel@pengutronix.de
21174L:	linux-iio@vger.kernel.org
21175S:	Maintained
21176F:	Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
21177F:	drivers/iio/adc/ti-tsc2046.c
21178
21179TI TWL4030 SERIES SOC CODEC DRIVER
21180M:	Peter Ujfalusi <peter.ujfalusi@gmail.com>
21181L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
21182S:	Maintained
21183F:	sound/soc/codecs/twl4030*
21184
21185TI VPE/CAL DRIVERS
21186M:	Benoit Parrot <bparrot@ti.com>
21187L:	linux-media@vger.kernel.org
21188S:	Maintained
21189W:	http://linuxtv.org/
21190Q:	http://patchwork.linuxtv.org/project/linux-media/list/
21191F:	Documentation/devicetree/bindings/media/ti,cal.yaml
21192F:	Documentation/devicetree/bindings/media/ti,vpe.yaml
21193F:	drivers/media/platform/ti/cal/
21194F:	drivers/media/platform/ti/vpe/
21195
21196TI WILINK WIRELESS DRIVERS
21197L:	linux-wireless@vger.kernel.org
21198S:	Orphan
21199W:	https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
21200W:	https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
21201T:	git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
21202F:	drivers/net/wireless/ti/
21203
21204TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
21205M:	John Stultz <jstultz@google.com>
21206M:	Thomas Gleixner <tglx@linutronix.de>
21207R:	Stephen Boyd <sboyd@kernel.org>
21208L:	linux-kernel@vger.kernel.org
21209S:	Supported
21210T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
21211F:	include/linux/clocksource.h
21212F:	include/linux/time.h
21213F:	include/linux/timex.h
21214F:	include/uapi/linux/time.h
21215F:	include/uapi/linux/timex.h
21216F:	kernel/time/alarmtimer.c
21217F:	kernel/time/clocksource.c
21218F:	kernel/time/ntp.c
21219F:	kernel/time/time*.c
21220F:	tools/testing/selftests/timers/
21221
21222TIPC NETWORK LAYER
21223M:	Jon Maloy <jmaloy@redhat.com>
21224M:	Ying Xue <ying.xue@windriver.com>
21225L:	netdev@vger.kernel.org (core kernel code)
21226L:	tipc-discussion@lists.sourceforge.net (user apps, general discussion)
21227S:	Maintained
21228W:	http://tipc.sourceforge.net/
21229F:	include/uapi/linux/tipc*.h
21230F:	net/tipc/
21231
21232TLAN NETWORK DRIVER
21233M:	Samuel Chessman <chessman@tux.org>
21234L:	tlan-devel@lists.sourceforge.net (subscribers-only)
21235S:	Maintained
21236W:	http://sourceforge.net/projects/tlan/
21237F:	Documentation/networking/device_drivers/ethernet/ti/tlan.rst
21238F:	drivers/net/ethernet/ti/tlan.*
21239
21240TMIO/SDHI MMC DRIVER
21241M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
21242L:	linux-mmc@vger.kernel.org
21243L:	linux-renesas-soc@vger.kernel.org
21244S:	Supported
21245F:	drivers/mmc/host/renesas_sdhi*
21246F:	drivers/mmc/host/tmio_mmc*
21247F:	include/linux/mfd/tmio.h
21248
21249TMP401 HARDWARE MONITOR DRIVER
21250M:	Guenter Roeck <linux@roeck-us.net>
21251L:	linux-hwmon@vger.kernel.org
21252S:	Maintained
21253F:	Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
21254F:	Documentation/hwmon/tmp401.rst
21255F:	drivers/hwmon/tmp401.c
21256
21257TMP464 HARDWARE MONITOR DRIVER
21258M:	Guenter Roeck <linux@roeck-us.net>
21259L:	linux-hwmon@vger.kernel.org
21260S:	Maintained
21261F:	Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
21262F:	Documentation/hwmon/tmp464.rst
21263F:	drivers/hwmon/tmp464.c
21264
21265TMP513 HARDWARE MONITOR DRIVER
21266M:	Eric Tremblay <etremblay@distech-controls.com>
21267L:	linux-hwmon@vger.kernel.org
21268S:	Maintained
21269F:	Documentation/hwmon/tmp513.rst
21270F:	drivers/hwmon/tmp513.c
21271
21272TMPFS (SHMEM FILESYSTEM)
21273M:	Hugh Dickins <hughd@google.com>
21274L:	linux-mm@kvack.org
21275S:	Maintained
21276F:	include/linux/shmem_fs.h
21277F:	mm/shmem.c
21278
21279TOMOYO SECURITY MODULE
21280M:	Kentaro Takeda <takedakn@nttdata.co.jp>
21281M:	Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
21282L:	tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
21283L:	tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
21284L:	tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
21285L:	tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
21286S:	Maintained
21287W:	https://tomoyo.osdn.jp/
21288F:	security/tomoyo/
21289
21290TOPSTAR LAPTOP EXTRAS DRIVER
21291M:	Herton Ronaldo Krzesinski <herton@canonical.com>
21292L:	platform-driver-x86@vger.kernel.org
21293S:	Maintained
21294F:	drivers/platform/x86/topstar-laptop.c
21295
21296TORTURE-TEST MODULES
21297M:	Davidlohr Bueso <dave@stgolabs.net>
21298M:	"Paul E. McKenney" <paulmck@kernel.org>
21299M:	Josh Triplett <josh@joshtriplett.org>
21300L:	linux-kernel@vger.kernel.org
21301S:	Supported
21302T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
21303F:	Documentation/RCU/torture.rst
21304F:	kernel/locking/locktorture.c
21305F:	kernel/rcu/rcuscale.c
21306F:	kernel/rcu/rcutorture.c
21307F:	kernel/rcu/refscale.c
21308F:	kernel/torture.c
21309
21310TOSHIBA ACPI EXTRAS DRIVER
21311M:	Azael Avalos <coproscefalo@gmail.com>
21312L:	platform-driver-x86@vger.kernel.org
21313S:	Maintained
21314F:	drivers/platform/x86/toshiba_acpi.c
21315
21316TOSHIBA BLUETOOTH DRIVER
21317M:	Azael Avalos <coproscefalo@gmail.com>
21318L:	platform-driver-x86@vger.kernel.org
21319S:	Maintained
21320F:	drivers/platform/x86/toshiba_bluetooth.c
21321
21322TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
21323M:	Azael Avalos <coproscefalo@gmail.com>
21324L:	platform-driver-x86@vger.kernel.org
21325S:	Maintained
21326F:	drivers/platform/x86/toshiba_haps.c
21327
21328TOSHIBA SMM DRIVER
21329M:	Jonathan Buzzard <jonathan@buzzard.org.uk>
21330S:	Maintained
21331W:	http://www.buzzard.org.uk/toshiba/
21332F:	drivers/char/toshiba.c
21333F:	include/linux/toshiba.h
21334F:	include/uapi/linux/toshiba.h
21335
21336TOSHIBA TC358743 DRIVER
21337M:	Hans Verkuil <hverkuil-cisco@xs4all.nl>
21338L:	linux-media@vger.kernel.org
21339S:	Maintained
21340F:	Documentation/devicetree/bindings/media/i2c/tc358743.txt
21341F:	drivers/media/i2c/tc358743*
21342F:	include/media/i2c/tc358743.h
21343
21344TOSHIBA WMI HOTKEYS DRIVER
21345M:	Azael Avalos <coproscefalo@gmail.com>
21346L:	platform-driver-x86@vger.kernel.org
21347S:	Maintained
21348F:	drivers/platform/x86/toshiba-wmi.c
21349
21350TPM DEVICE DRIVER
21351M:	Peter Huewe <peterhuewe@gmx.de>
21352M:	Jarkko Sakkinen <jarkko@kernel.org>
21353R:	Jason Gunthorpe <jgg@ziepe.ca>
21354L:	linux-integrity@vger.kernel.org
21355S:	Maintained
21356W:	https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
21357Q:	https://patchwork.kernel.org/project/linux-integrity/list/
21358T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
21359F:	drivers/char/tpm/
21360
21361TPS546D24 DRIVER
21362M:	Duke Du <dukedu83@gmail.com>
21363L:	linux-hwmon@vger.kernel.org
21364S:	Maintained
21365F:	Documentation/hwmon/tps546d24.rst
21366F:	drivers/hwmon/pmbus/tps546d24.c
21367
21368TRACING
21369M:	Steven Rostedt <rostedt@goodmis.org>
21370M:	Masami Hiramatsu <mhiramat@kernel.org>
21371L:	linux-kernel@vger.kernel.org
21372L:	linux-trace-kernel@vger.kernel.org
21373Q:	https://patchwork.kernel.org/project/linux-trace-kernel/list/
21374S:	Maintained
21375T:	git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
21376F:	Documentation/trace/*
21377F:	fs/tracefs/
21378F:	include/linux/trace*.h
21379F:	include/trace/
21380F:	kernel/trace/
21381F:	scripts/tracing/
21382F:	tools/testing/selftests/ftrace/
21383
21384TRACING MMIO ACCESSES (MMIOTRACE)
21385M:	Steven Rostedt <rostedt@goodmis.org>
21386M:	Masami Hiramatsu <mhiramat@kernel.org>
21387R:	Karol Herbst <karolherbst@gmail.com>
21388R:	Pekka Paalanen <ppaalanen@gmail.com>
21389L:	linux-kernel@vger.kernel.org
21390L:	nouveau@lists.freedesktop.org
21391S:	Maintained
21392F:	arch/x86/mm/kmmio.c
21393F:	arch/x86/mm/mmio-mod.c
21394F:	arch/x86/mm/testmmiotrace.c
21395F:	include/linux/mmiotrace.h
21396F:	kernel/trace/trace_mmiotrace.c
21397
21398TRACING OS NOISE / LATENCY TRACERS
21399M:	Steven Rostedt <rostedt@goodmis.org>
21400M:	Daniel Bristot de Oliveira <bristot@kernel.org>
21401S:	Maintained
21402F:	kernel/trace/trace_osnoise.c
21403F:	include/trace/events/osnoise.h
21404F:	kernel/trace/trace_hwlat.c
21405F:	kernel/trace/trace_irqsoff.c
21406F:	kernel/trace/trace_sched_wakeup.c
21407F:	Documentation/trace/osnoise-tracer.rst
21408F:	Documentation/trace/timerlat-tracer.rst
21409F:	Documentation/trace/hwlat_detector.rst
21410F:	arch/*/kernel/trace.c
21411
21412Real-time Linux Analysis (RTLA) tools
21413M:	Daniel Bristot de Oliveira <bristot@kernel.org>
21414M:	Steven Rostedt <rostedt@goodmis.org>
21415L:	linux-trace-devel@vger.kernel.org
21416S:	Maintained
21417F:	Documentation/tools/rtla/
21418F:	tools/tracing/rtla/
21419
21420TECHNICAL ADVISORY BOARD PROCESS DOCS
21421M:	"Theodore Ts'o" <tytso@mit.edu>
21422M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21423L:	tech-board-discuss@lists.linux-foundation.org
21424S:	Maintained
21425F:	Documentation/process/researcher-guidelines.rst
21426F:	Documentation/process/contribution-maturity-model.rst
21427
21428TRADITIONAL CHINESE DOCUMENTATION
21429M:	Hu Haowen <src.res@email.cn>
21430L:	linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
21431S:	Maintained
21432W:	https://github.com/srcres258/linux-doc
21433T:	git git://github.com/srcres258/linux-doc.git doc-zh-tw
21434F:	Documentation/translations/zh_TW/
21435
21436TTY LAYER
21437M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21438M:	Jiri Slaby <jirislaby@kernel.org>
21439S:	Supported
21440T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
21441F:	Documentation/driver-api/serial/
21442F:	drivers/tty/
21443F:	drivers/tty/serial/serial_core.c
21444F:	include/linux/selection.h
21445F:	include/linux/serial.h
21446F:	include/linux/serial_core.h
21447F:	include/linux/sysrq.h
21448F:	include/linux/tty*.h
21449F:	include/linux/vt.h
21450F:	include/linux/vt_*.h
21451F:	include/uapi/linux/serial.h
21452F:	include/uapi/linux/serial_core.h
21453F:	include/uapi/linux/tty.h
21454
21455TUA9001 MEDIA DRIVER
21456M:	Antti Palosaari <crope@iki.fi>
21457L:	linux-media@vger.kernel.org
21458S:	Maintained
21459W:	https://linuxtv.org
21460W:	http://palosaari.fi/linux/
21461Q:	http://patchwork.linuxtv.org/project/linux-media/list/
21462T:	git git://linuxtv.org/anttip/media_tree.git
21463F:	drivers/media/tuners/tua9001*
21464
21465TULIP NETWORK DRIVERS
21466L:	netdev@vger.kernel.org
21467L:	linux-parisc@vger.kernel.org
21468S:	Orphan
21469F:	drivers/net/ethernet/dec/tulip/
21470
21471TUN/TAP driver
21472M:	Maxim Krasnyansky <maxk@qti.qualcomm.com>
21473S:	Maintained
21474W:	http://vtun.sourceforge.net/tun
21475F:	Documentation/networking/tuntap.rst
21476F:	arch/um/os-Linux/drivers/
21477
21478TURBOCHANNEL SUBSYSTEM
21479M:	"Maciej W. Rozycki" <macro@orcam.me.uk>
21480M:	Ralf Baechle <ralf@linux-mips.org>
21481L:	linux-mips@vger.kernel.org
21482S:	Maintained
21483Q:	http://patchwork.linux-mips.org/project/linux-mips/list/
21484F:	drivers/tc/
21485F:	include/linux/tc.h
21486
21487TURBOSTAT UTILITY
21488M:	"Len Brown" <lenb@kernel.org>
21489L:	linux-pm@vger.kernel.org
21490S:	Supported
21491Q:	https://patchwork.kernel.org/project/linux-pm/list/
21492B:	https://bugzilla.kernel.org
21493T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
21494F:	tools/power/x86/turbostat/
21495
21496TW5864 VIDEO4LINUX DRIVER
21497M:	Bluecherry Maintainers <maintainers@bluecherrydvr.com>
21498M:	Anton Sviridenko <anton@corp.bluecherry.net>
21499M:	Andrey Utkin <andrey.utkin@corp.bluecherry.net>
21500M:	Andrey Utkin <andrey_utkin@fastmail.com>
21501L:	linux-media@vger.kernel.org
21502S:	Supported
21503F:	drivers/media/pci/tw5864/
21504
21505TW68 VIDEO4LINUX DRIVER
21506M:	Hans Verkuil <hverkuil@xs4all.nl>
21507L:	linux-media@vger.kernel.org
21508S:	Odd Fixes
21509W:	https://linuxtv.org
21510T:	git git://linuxtv.org/media_tree.git
21511F:	drivers/media/pci/tw68/
21512
21513TW686X VIDEO4LINUX DRIVER
21514M:	Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
21515L:	linux-media@vger.kernel.org
21516S:	Maintained
21517W:	http://linuxtv.org
21518T:	git git://linuxtv.org/media_tree.git
21519F:	drivers/media/pci/tw686x/
21520
21521U-BOOT ENVIRONMENT VARIABLES
21522M:	Rafał Miłecki <rafal@milecki.pl>
21523S:	Maintained
21524F:	Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
21525F:	drivers/nvmem/u-boot-env.c
21526
21527UACCE ACCELERATOR FRAMEWORK
21528M:	Zhangfei Gao <zhangfei.gao@linaro.org>
21529M:	Zhou Wang <wangzhou1@hisilicon.com>
21530L:	linux-accelerators@lists.ozlabs.org
21531L:	linux-kernel@vger.kernel.org
21532S:	Maintained
21533F:	Documentation/ABI/testing/sysfs-driver-uacce
21534F:	Documentation/misc-devices/uacce.rst
21535F:	drivers/misc/uacce/
21536F:	include/linux/uacce.h
21537F:	include/uapi/misc/uacce/
21538
21539UBI FILE SYSTEM (UBIFS)
21540M:	Richard Weinberger <richard@nod.at>
21541L:	linux-mtd@lists.infradead.org
21542S:	Supported
21543W:	http://www.linux-mtd.infradead.org/doc/ubifs.html
21544T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21545T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21546F:	Documentation/ABI/testing/sysfs-fs-ubifs
21547F:	Documentation/filesystems/ubifs-authentication.rst
21548F:	Documentation/filesystems/ubifs.rst
21549F:	fs/ubifs/
21550
21551UBLK USERSPACE BLOCK DRIVER
21552M:	Ming Lei <ming.lei@redhat.com>
21553L:	linux-block@vger.kernel.org
21554S:	Maintained
21555F:	Documentation/block/ublk.rst
21556F:	drivers/block/ublk_drv.c
21557F:	include/uapi/linux/ublk_cmd.h
21558
21559UCLINUX (M68KNOMMU AND COLDFIRE)
21560M:	Greg Ungerer <gerg@linux-m68k.org>
21561L:	linux-m68k@lists.linux-m68k.org
21562S:	Maintained
21563W:	http://www.linux-m68k.org/
21564T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
21565F:	arch/m68k/*/*_no.*
21566F:	arch/m68k/68*/
21567F:	arch/m68k/coldfire/
21568F:	arch/m68k/include/asm/*_no.*
21569
21570UDF FILESYSTEM
21571M:	Jan Kara <jack@suse.com>
21572S:	Maintained
21573F:	Documentation/filesystems/udf.rst
21574F:	fs/udf/
21575
21576UDRAW TABLET
21577M:	Bastien Nocera <hadess@hadess.net>
21578L:	linux-input@vger.kernel.org
21579S:	Maintained
21580F:	drivers/hid/hid-udraw-ps3.c
21581
21582UFS FILESYSTEM
21583M:	Evgeniy Dushistov <dushistov@mail.ru>
21584S:	Maintained
21585F:	Documentation/admin-guide/ufs.rst
21586F:	fs/ufs/
21587
21588UHID USERSPACE HID IO DRIVER
21589M:	David Rheinsberg <david.rheinsberg@gmail.com>
21590L:	linux-input@vger.kernel.org
21591S:	Maintained
21592F:	drivers/hid/uhid.c
21593F:	include/uapi/linux/uhid.h
21594
21595ULPI BUS
21596M:	Heikki Krogerus <heikki.krogerus@linux.intel.com>
21597L:	linux-usb@vger.kernel.org
21598S:	Maintained
21599F:	drivers/usb/common/ulpi.c
21600F:	include/linux/ulpi/
21601
21602UNICODE SUBSYSTEM
21603M:	Gabriel Krisman Bertazi <krisman@collabora.com>
21604L:	linux-fsdevel@vger.kernel.org
21605S:	Supported
21606F:	fs/unicode/
21607
21608UNIFDEF
21609M:	Tony Finch <dot@dotat.at>
21610S:	Maintained
21611W:	http://dotat.at/prog/unifdef
21612F:	scripts/unifdef.c
21613
21614UNIFORM CDROM DRIVER
21615M:	Phillip Potter <phil@philpotter.co.uk>
21616S:	Maintained
21617F:	Documentation/cdrom/
21618F:	drivers/cdrom/cdrom.c
21619F:	include/linux/cdrom.h
21620F:	include/uapi/linux/cdrom.h
21621
21622UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
21623R:	Alim Akhtar <alim.akhtar@samsung.com>
21624R:	Avri Altman <avri.altman@wdc.com>
21625R:	Bart Van Assche <bvanassche@acm.org>
21626L:	linux-scsi@vger.kernel.org
21627S:	Supported
21628F:	Documentation/devicetree/bindings/ufs/
21629F:	Documentation/scsi/ufs.rst
21630F:	drivers/ufs/core/
21631
21632UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
21633M:	Pedro Sousa <pedrom.sousa@synopsys.com>
21634L:	linux-scsi@vger.kernel.org
21635S:	Supported
21636F:	drivers/ufs/host/*dwc*
21637
21638UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER EXYNOS HOOKS
21639M:	Alim Akhtar <alim.akhtar@samsung.com>
21640L:	linux-scsi@vger.kernel.org
21641S:	Maintained
21642F:	drivers/ufs/host/ufs-exynos*
21643
21644UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
21645M:	Stanley Chu <stanley.chu@mediatek.com>
21646L:	linux-scsi@vger.kernel.org
21647L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
21648S:	Maintained
21649F:	drivers/ufs/host/ufs-mediatek*
21650
21651UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER QUALCOMM HOOKS
21652M:	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
21653L:	linux-arm-msm@vger.kernel.org
21654L:	linux-scsi@vger.kernel.org
21655S:	Maintained
21656F:	Documentation/devicetree/bindings/ufs/qcom,ufs.yaml
21657F:	drivers/ufs/host/ufs-qcom*
21658
21659UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
21660M:	Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
21661L:	linux-renesas-soc@vger.kernel.org
21662L:	linux-scsi@vger.kernel.org
21663S:	Maintained
21664F:	drivers/ufs/host/ufs-renesas.c
21665
21666UNSORTED BLOCK IMAGES (UBI)
21667M:	Richard Weinberger <richard@nod.at>
21668L:	linux-mtd@lists.infradead.org
21669S:	Supported
21670W:	http://www.linux-mtd.infradead.org/
21671T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21672T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21673F:	drivers/mtd/ubi/
21674F:	include/linux/mtd/ubi.h
21675F:	include/uapi/mtd/ubi-user.h
21676
21677USB "USBNET" DRIVER FRAMEWORK
21678M:	Oliver Neukum <oneukum@suse.com>
21679L:	netdev@vger.kernel.org
21680S:	Maintained
21681W:	http://www.linux-usb.org/usbnet
21682F:	drivers/net/usb/usbnet.c
21683F:	include/linux/usb/usbnet.h
21684
21685USB ACM DRIVER
21686M:	Oliver Neukum <oneukum@suse.com>
21687L:	linux-usb@vger.kernel.org
21688S:	Maintained
21689F:	Documentation/usb/acm.rst
21690F:	drivers/usb/class/cdc-acm.*
21691
21692USB APPLE MFI FASTCHARGE DRIVER
21693M:	Bastien Nocera <hadess@hadess.net>
21694L:	linux-usb@vger.kernel.org
21695S:	Maintained
21696F:	drivers/usb/misc/apple-mfi-fastcharge.c
21697
21698USB AR5523 WIRELESS DRIVER
21699M:	Pontus Fuchs <pontus.fuchs@gmail.com>
21700L:	linux-wireless@vger.kernel.org
21701S:	Maintained
21702F:	drivers/net/wireless/ath/ar5523/
21703
21704USB ATTACHED SCSI
21705M:	Oliver Neukum <oneukum@suse.com>
21706L:	linux-usb@vger.kernel.org
21707L:	linux-scsi@vger.kernel.org
21708S:	Maintained
21709F:	drivers/usb/storage/uas.c
21710
21711USB CDC ETHERNET DRIVER
21712M:	Oliver Neukum <oliver@neukum.org>
21713L:	linux-usb@vger.kernel.org
21714S:	Maintained
21715F:	drivers/net/usb/cdc_*.c
21716F:	include/uapi/linux/usb/cdc.h
21717
21718USB CHAOSKEY DRIVER
21719M:	Keith Packard <keithp@keithp.com>
21720L:	linux-usb@vger.kernel.org
21721S:	Maintained
21722F:	drivers/usb/misc/chaoskey.c
21723
21724USB CYPRESS C67X00 DRIVER
21725L:	linux-usb@vger.kernel.org
21726S:	Orphan
21727F:	drivers/usb/c67x00/
21728
21729USB DAVICOM DM9601 DRIVER
21730M:	Peter Korsgaard <peter@korsgaard.com>
21731L:	netdev@vger.kernel.org
21732S:	Maintained
21733W:	http://www.linux-usb.org/usbnet
21734F:	drivers/net/usb/dm9601.c
21735
21736USB EHCI DRIVER
21737M:	Alan Stern <stern@rowland.harvard.edu>
21738L:	linux-usb@vger.kernel.org
21739S:	Maintained
21740F:	Documentation/usb/ehci.rst
21741F:	drivers/usb/host/ehci*
21742
21743USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21744M:	Jiri Kosina <jikos@kernel.org>
21745M:	Benjamin Tissoires <benjamin.tissoires@redhat.com>
21746L:	linux-usb@vger.kernel.org
21747S:	Maintained
21748T:	git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21749F:	Documentation/hid/hiddev.rst
21750F:	drivers/hid/usbhid/
21751
21752USB INTEL XHCI ROLE MUX DRIVER
21753M:	Hans de Goede <hdegoede@redhat.com>
21754L:	linux-usb@vger.kernel.org
21755S:	Maintained
21756F:	drivers/usb/roles/intel-xhci-usb-role-switch.c
21757
21758USB IP DRIVER FOR HISILICON KIRIN 960
21759M:	Yu Chen <chenyu56@huawei.com>
21760M:	Binghui Wang <wangbinghui@hisilicon.com>
21761L:	linux-usb@vger.kernel.org
21762S:	Maintained
21763F:	Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21764F:	drivers/phy/hisilicon/phy-hi3660-usb3.c
21765
21766USB IP DRIVER FOR HISILICON KIRIN 970
21767M:	Mauro Carvalho Chehab <mchehab@kernel.org>
21768L:	linux-usb@vger.kernel.org
21769S:	Maintained
21770F:	Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21771F:	drivers/phy/hisilicon/phy-hi3670-usb3.c
21772
21773USB ISP116X DRIVER
21774M:	Olav Kongas <ok@artecdesign.ee>
21775L:	linux-usb@vger.kernel.org
21776S:	Maintained
21777F:	drivers/usb/host/isp116x*
21778F:	include/linux/usb/isp116x.h
21779
21780USB ISP1760 DRIVER
21781M:	Rui Miguel Silva <rui.silva@linaro.org>
21782L:	linux-usb@vger.kernel.org
21783S:	Maintained
21784F:	drivers/usb/isp1760/*
21785F:	Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21786
21787USB LAN78XX ETHERNET DRIVER
21788M:	Woojung Huh <woojung.huh@microchip.com>
21789M:	UNGLinuxDriver@microchip.com
21790L:	netdev@vger.kernel.org
21791S:	Maintained
21792F:	Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21793F:	drivers/net/usb/lan78xx.*
21794F:	include/dt-bindings/net/microchip-lan78xx.h
21795
21796USB MASS STORAGE DRIVER
21797M:	Alan Stern <stern@rowland.harvard.edu>
21798L:	linux-usb@vger.kernel.org
21799L:	usb-storage@lists.one-eyed-alien.net
21800S:	Maintained
21801F:	drivers/usb/storage/
21802
21803USB MIDI DRIVER
21804M:	Clemens Ladisch <clemens@ladisch.de>
21805L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
21806S:	Maintained
21807T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21808F:	sound/usb/midi.*
21809
21810USB NETWORKING DRIVERS
21811L:	linux-usb@vger.kernel.org
21812S:	Odd Fixes
21813F:	drivers/net/usb/
21814
21815USB OHCI DRIVER
21816M:	Alan Stern <stern@rowland.harvard.edu>
21817L:	linux-usb@vger.kernel.org
21818S:	Maintained
21819F:	Documentation/usb/ohci.rst
21820F:	drivers/usb/host/ohci*
21821
21822USB OTG FSM (Finite State Machine)
21823M:	Peter Chen <peter.chen@kernel.org>
21824L:	linux-usb@vger.kernel.org
21825S:	Maintained
21826T:	git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21827F:	drivers/usb/common/usb-otg-fsm.c
21828
21829USB OVER IP DRIVER
21830M:	Valentina Manea <valentina.manea.m@gmail.com>
21831M:	Shuah Khan <shuah@kernel.org>
21832M:	Shuah Khan <skhan@linuxfoundation.org>
21833R:	Hongren Zheng <i@zenithal.me>
21834L:	linux-usb@vger.kernel.org
21835S:	Maintained
21836F:	Documentation/usb/usbip_protocol.rst
21837F:	drivers/usb/usbip/
21838F:	tools/testing/selftests/drivers/usb/usbip/
21839F:	tools/usb/usbip/
21840
21841USB PEGASUS DRIVER
21842M:	Petko Manolov <petkan@nucleusys.com>
21843L:	linux-usb@vger.kernel.org
21844L:	netdev@vger.kernel.org
21845S:	Maintained
21846W:	https://github.com/petkan/pegasus
21847T:	git https://github.com/petkan/pegasus.git
21848F:	drivers/net/usb/pegasus.*
21849
21850USB PRINTER DRIVER (usblp)
21851M:	Pete Zaitcev <zaitcev@redhat.com>
21852L:	linux-usb@vger.kernel.org
21853S:	Supported
21854F:	drivers/usb/class/usblp.c
21855
21856USB RAW GADGET DRIVER
21857R:	Andrey Konovalov <andreyknvl@gmail.com>
21858L:	linux-usb@vger.kernel.org
21859S:	Maintained
21860F:	Documentation/usb/raw-gadget.rst
21861F:	drivers/usb/gadget/legacy/raw_gadget.c
21862F:	include/uapi/linux/usb/raw_gadget.h
21863
21864USB QMI WWAN NETWORK DRIVER
21865M:	Bjørn Mork <bjorn@mork.no>
21866L:	netdev@vger.kernel.org
21867S:	Maintained
21868F:	Documentation/ABI/testing/sysfs-class-net-qmi
21869F:	drivers/net/usb/qmi_wwan.c
21870
21871USB RTL8150 DRIVER
21872M:	Petko Manolov <petkan@nucleusys.com>
21873L:	linux-usb@vger.kernel.org
21874L:	netdev@vger.kernel.org
21875S:	Maintained
21876W:	https://github.com/petkan/rtl8150
21877T:	git https://github.com/petkan/rtl8150.git
21878F:	drivers/net/usb/rtl8150.c
21879
21880USB SERIAL SUBSYSTEM
21881M:	Johan Hovold <johan@kernel.org>
21882L:	linux-usb@vger.kernel.org
21883S:	Maintained
21884T:	git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21885F:	Documentation/usb/usb-serial.rst
21886F:	drivers/usb/serial/
21887F:	include/linux/usb/serial.h
21888
21889USB SMSC75XX ETHERNET DRIVER
21890M:	Steve Glendinning <steve.glendinning@shawell.net>
21891L:	netdev@vger.kernel.org
21892S:	Maintained
21893F:	drivers/net/usb/smsc75xx.*
21894
21895USB SMSC95XX ETHERNET DRIVER
21896M:	Steve Glendinning <steve.glendinning@shawell.net>
21897M:	UNGLinuxDriver@microchip.com
21898L:	netdev@vger.kernel.org
21899S:	Maintained
21900F:	drivers/net/usb/smsc95xx.*
21901
21902USB SUBSYSTEM
21903M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21904L:	linux-usb@vger.kernel.org
21905S:	Supported
21906W:	http://www.linux-usb.org
21907T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21908F:	Documentation/devicetree/bindings/usb/
21909F:	Documentation/usb/
21910F:	drivers/usb/
21911F:	include/dt-bindings/usb/
21912F:	include/linux/usb.h
21913F:	include/linux/usb/
21914
21915USB TYPEC BUS FOR ALTERNATE MODES
21916M:	Heikki Krogerus <heikki.krogerus@linux.intel.com>
21917L:	linux-usb@vger.kernel.org
21918S:	Maintained
21919F:	Documentation/ABI/testing/sysfs-bus-typec
21920F:	Documentation/driver-api/usb/typec_bus.rst
21921F:	drivers/usb/typec/altmodes/
21922F:	include/linux/usb/typec_altmode.h
21923
21924USB TYPEC CLASS
21925M:	Heikki Krogerus <heikki.krogerus@linux.intel.com>
21926L:	linux-usb@vger.kernel.org
21927S:	Maintained
21928F:	Documentation/ABI/testing/sysfs-class-typec
21929F:	Documentation/driver-api/usb/typec.rst
21930F:	drivers/usb/typec/
21931F:	include/linux/usb/typec.h
21932
21933USB TYPEC INTEL PMC MUX DRIVER
21934M:	Heikki Krogerus <heikki.krogerus@linux.intel.com>
21935L:	linux-usb@vger.kernel.org
21936S:	Maintained
21937F:	Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21938F:	drivers/usb/typec/mux/intel_pmc_mux.c
21939
21940USB TYPEC PI3USB30532 MUX DRIVER
21941M:	Hans de Goede <hdegoede@redhat.com>
21942L:	linux-usb@vger.kernel.org
21943S:	Maintained
21944F:	drivers/usb/typec/mux/pi3usb30532.c
21945
21946USB TYPEC PORT CONTROLLER DRIVERS
21947M:	Guenter Roeck <linux@roeck-us.net>
21948L:	linux-usb@vger.kernel.org
21949S:	Maintained
21950F:	drivers/usb/typec/tcpm/
21951
21952USB UHCI DRIVER
21953M:	Alan Stern <stern@rowland.harvard.edu>
21954L:	linux-usb@vger.kernel.org
21955S:	Maintained
21956F:	drivers/usb/host/uhci*
21957
21958USB VIDEO CLASS
21959M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21960L:	linux-media@vger.kernel.org
21961S:	Maintained
21962W:	http://www.ideasonboard.org/uvc/
21963T:	git git://linuxtv.org/media_tree.git
21964F:	drivers/media/usb/uvc/
21965F:	include/uapi/linux/uvcvideo.h
21966
21967USB WEBCAM GADGET
21968M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21969M:	Daniel Scally <dan.scally@ideasonboard.com>
21970L:	linux-usb@vger.kernel.org
21971S:	Maintained
21972F:	drivers/usb/gadget/function/*uvc*
21973F:	drivers/usb/gadget/legacy/webcam.c
21974F:	include/uapi/linux/usb/g_uvc.h
21975
21976USB WIRELESS RNDIS DRIVER (rndis_wlan)
21977M:	Jussi Kivilinna <jussi.kivilinna@iki.fi>
21978L:	linux-wireless@vger.kernel.org
21979S:	Maintained
21980F:	drivers/net/wireless/legacy/rndis_wlan.c
21981
21982USB XHCI DRIVER
21983M:	Mathias Nyman <mathias.nyman@intel.com>
21984L:	linux-usb@vger.kernel.org
21985S:	Supported
21986F:	drivers/usb/host/pci-quirks*
21987F:	drivers/usb/host/xhci*
21988
21989USB ZD1201 DRIVER
21990L:	linux-wireless@vger.kernel.org
21991S:	Orphan
21992W:	http://linux-lc100020.sourceforge.net
21993F:	drivers/net/wireless/zydas/zd1201.*
21994
21995USER DATAGRAM PROTOCOL (UDP)
21996M:	Willem de Bruijn <willemdebruijn.kernel@gmail.com>
21997S:	Maintained
21998F:	include/linux/udp.h
21999F:	net/ipv4/udp.c
22000F:	net/ipv6/udp.c
22001
22002USER-MODE LINUX (UML)
22003M:	Richard Weinberger <richard@nod.at>
22004M:	Anton Ivanov <anton.ivanov@cambridgegreys.com>
22005M:	Johannes Berg <johannes@sipsolutions.net>
22006L:	linux-um@lists.infradead.org
22007S:	Maintained
22008W:	http://user-mode-linux.sourceforge.net
22009Q:	https://patchwork.ozlabs.org/project/linux-um/list/
22010T:	git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
22011T:	git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
22012F:	Documentation/virt/uml/
22013F:	arch/um/
22014F:	arch/x86/um/
22015F:	fs/hostfs/
22016
22017USERSPACE COPYIN/COPYOUT (UIOVEC)
22018M:	Alexander Viro <viro@zeniv.linux.org.uk>
22019S:	Maintained
22020F:	include/linux/uio.h
22021F:	lib/iov_iter.c
22022
22023USERSPACE DMA BUFFER DRIVER
22024M:	Gerd Hoffmann <kraxel@redhat.com>
22025L:	dri-devel@lists.freedesktop.org
22026S:	Maintained
22027T:	git git://anongit.freedesktop.org/drm/drm-misc
22028F:	drivers/dma-buf/udmabuf.c
22029F:	include/uapi/linux/udmabuf.h
22030
22031USERSPACE I/O (UIO)
22032M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22033S:	Maintained
22034T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22035F:	Documentation/driver-api/uio-howto.rst
22036F:	drivers/uio/
22037F:	include/linux/uio_driver.h
22038
22039UTIL-LINUX PACKAGE
22040M:	Karel Zak <kzak@redhat.com>
22041L:	util-linux@vger.kernel.org
22042S:	Maintained
22043W:	http://en.wikipedia.org/wiki/Util-linux
22044T:	git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
22045
22046UUID HELPERS
22047R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
22048L:	linux-kernel@vger.kernel.org
22049S:	Maintained
22050F:	include/linux/uuid.h
22051F:	lib/test_uuid.c
22052F:	lib/uuid.c
22053
22054UV SYSFS DRIVER
22055M:	Justin Ernst <justin.ernst@hpe.com>
22056L:	platform-driver-x86@vger.kernel.org
22057S:	Maintained
22058F:	drivers/platform/x86/uv_sysfs.c
22059
22060UVESAFB DRIVER
22061M:	Michal Januszewski <spock@gentoo.org>
22062L:	linux-fbdev@vger.kernel.org
22063S:	Maintained
22064W:	https://github.com/mjanusz/v86d
22065F:	Documentation/fb/uvesafb.rst
22066F:	drivers/video/fbdev/uvesafb.*
22067
22068Ux500 CLOCK DRIVERS
22069M:	Ulf Hansson <ulf.hansson@linaro.org>
22070L:	linux-clk@vger.kernel.org
22071L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
22072S:	Maintained
22073F:	drivers/clk/ux500/
22074
22075VF610 NAND DRIVER
22076M:	Stefan Agner <stefan@agner.ch>
22077L:	linux-mtd@lists.infradead.org
22078S:	Supported
22079F:	drivers/mtd/nand/raw/vf610_nfc.c
22080
22081VFAT/FAT/MSDOS FILESYSTEM
22082M:	OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
22083S:	Maintained
22084F:	Documentation/filesystems/vfat.rst
22085F:	fs/fat/
22086F:	tools/testing/selftests/filesystems/fat/
22087
22088VFIO DRIVER
22089M:	Alex Williamson <alex.williamson@redhat.com>
22090L:	kvm@vger.kernel.org
22091S:	Maintained
22092T:	git https://github.com/awilliam/linux-vfio.git
22093F:	Documentation/ABI/testing/sysfs-devices-vfio-dev
22094F:	Documentation/driver-api/vfio.rst
22095F:	drivers/vfio/
22096F:	include/linux/vfio.h
22097F:	include/linux/vfio_pci_core.h
22098F:	include/uapi/linux/vfio.h
22099
22100VFIO FSL-MC DRIVER
22101M:	Diana Craciun <diana.craciun@oss.nxp.com>
22102L:	kvm@vger.kernel.org
22103S:	Maintained
22104F:	drivers/vfio/fsl-mc/
22105
22106VFIO HISILICON PCI DRIVER
22107M:	Longfang Liu <liulongfang@huawei.com>
22108M:	Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
22109L:	kvm@vger.kernel.org
22110S:	Maintained
22111F:	drivers/vfio/pci/hisilicon/
22112
22113VFIO MEDIATED DEVICE DRIVERS
22114M:	Kirti Wankhede <kwankhede@nvidia.com>
22115L:	kvm@vger.kernel.org
22116S:	Maintained
22117F:	Documentation/driver-api/vfio-mediated-device.rst
22118F:	drivers/vfio/mdev/
22119F:	include/linux/mdev.h
22120F:	samples/vfio-mdev/
22121
22122VFIO PCI DEVICE SPECIFIC DRIVERS
22123R:	Jason Gunthorpe <jgg@nvidia.com>
22124R:	Yishai Hadas <yishaih@nvidia.com>
22125R:	Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
22126R:	Kevin Tian <kevin.tian@intel.com>
22127L:	kvm@vger.kernel.org
22128S:	Maintained
22129P:	Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
22130F:	drivers/vfio/pci/*/
22131
22132VFIO PLATFORM DRIVER
22133M:	Eric Auger <eric.auger@redhat.com>
22134L:	kvm@vger.kernel.org
22135S:	Maintained
22136F:	drivers/vfio/platform/
22137
22138VFIO MLX5 PCI DRIVER
22139M:	Yishai Hadas <yishaih@nvidia.com>
22140L:	kvm@vger.kernel.org
22141S:	Maintained
22142F:	drivers/vfio/pci/mlx5/
22143
22144VGA_SWITCHEROO
22145R:	Lukas Wunner <lukas@wunner.de>
22146S:	Maintained
22147T:	git git://anongit.freedesktop.org/drm/drm-misc
22148F:	Documentation/gpu/vga-switcheroo.rst
22149F:	drivers/gpu/vga/vga_switcheroo.c
22150F:	include/linux/vga_switcheroo.h
22151
22152VIA RHINE NETWORK DRIVER
22153S:	Maintained
22154M:	Kevin Brace <kevinbrace@bracecomputerlab.com>
22155F:	drivers/net/ethernet/via/via-rhine.c
22156
22157VIA SD/MMC CARD CONTROLLER DRIVER
22158M:	Bruce Chang <brucechang@via.com.tw>
22159M:	Harald Welte <HaraldWelte@viatech.com>
22160S:	Maintained
22161F:	drivers/mmc/host/via-sdmmc.c
22162
22163VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
22164M:	Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
22165L:	linux-fbdev@vger.kernel.org
22166S:	Maintained
22167F:	drivers/video/fbdev/via/
22168F:	include/linux/via-core.h
22169F:	include/linux/via-gpio.h
22170F:	include/linux/via_i2c.h
22171
22172VIA VELOCITY NETWORK DRIVER
22173M:	Francois Romieu <romieu@fr.zoreil.com>
22174L:	netdev@vger.kernel.org
22175S:	Maintained
22176F:	drivers/net/ethernet/via/via-velocity.*
22177
22178VICODEC VIRTUAL CODEC DRIVER
22179M:	Hans Verkuil <hverkuil-cisco@xs4all.nl>
22180L:	linux-media@vger.kernel.org
22181S:	Maintained
22182W:	https://linuxtv.org
22183T:	git git://linuxtv.org/media_tree.git
22184F:	drivers/media/test-drivers/vicodec/*
22185
22186VIDEO I2C POLLING DRIVER
22187M:	Matt Ranostay <matt.ranostay@konsulko.com>
22188L:	linux-media@vger.kernel.org
22189S:	Maintained
22190F:	drivers/media/i2c/video-i2c.c
22191
22192VIDEO MULTIPLEXER DRIVER
22193M:	Philipp Zabel <p.zabel@pengutronix.de>
22194L:	linux-media@vger.kernel.org
22195S:	Maintained
22196F:	drivers/media/platform/video-mux.c
22197
22198VIDEOBUF2 FRAMEWORK
22199M:	Tomasz Figa <tfiga@chromium.org>
22200M:	Marek Szyprowski <m.szyprowski@samsung.com>
22201L:	linux-media@vger.kernel.org
22202S:	Maintained
22203F:	drivers/media/common/videobuf2/*
22204F:	include/media/videobuf2-*
22205
22206VIMC VIRTUAL MEDIA CONTROLLER DRIVER
22207M:	Shuah Khan <skhan@linuxfoundation.org>
22208R:	Kieran Bingham <kieran.bingham@ideasonboard.com>
22209L:	linux-media@vger.kernel.org
22210S:	Maintained
22211W:	https://linuxtv.org
22212T:	git git://linuxtv.org/media_tree.git
22213F:	drivers/media/test-drivers/vimc/*
22214
22215VIRT LIB
22216M:	Alex Williamson <alex.williamson@redhat.com>
22217M:	Paolo Bonzini <pbonzini@redhat.com>
22218L:	kvm@vger.kernel.org
22219S:	Supported
22220F:	virt/lib/
22221
22222VIRTIO AND VHOST VSOCK DRIVER
22223M:	Stefan Hajnoczi <stefanha@redhat.com>
22224M:	Stefano Garzarella <sgarzare@redhat.com>
22225L:	kvm@vger.kernel.org
22226L:	virtualization@lists.linux-foundation.org
22227L:	netdev@vger.kernel.org
22228S:	Maintained
22229F:	drivers/vhost/vsock.c
22230F:	include/linux/virtio_vsock.h
22231F:	include/uapi/linux/virtio_vsock.h
22232F:	net/vmw_vsock/virtio_transport.c
22233F:	net/vmw_vsock/virtio_transport_common.c
22234
22235VIRTIO BLOCK AND SCSI DRIVERS
22236M:	"Michael S. Tsirkin" <mst@redhat.com>
22237M:	Jason Wang <jasowang@redhat.com>
22238R:	Paolo Bonzini <pbonzini@redhat.com>
22239R:	Stefan Hajnoczi <stefanha@redhat.com>
22240L:	virtualization@lists.linux-foundation.org
22241S:	Maintained
22242F:	drivers/block/virtio_blk.c
22243F:	drivers/scsi/virtio_scsi.c
22244F:	drivers/vhost/scsi.c
22245F:	include/uapi/linux/virtio_blk.h
22246F:	include/uapi/linux/virtio_scsi.h
22247
22248VIRTIO CONSOLE DRIVER
22249M:	Amit Shah <amit@kernel.org>
22250L:	virtualization@lists.linux-foundation.org
22251S:	Maintained
22252F:	drivers/char/virtio_console.c
22253F:	include/linux/virtio_console.h
22254F:	include/uapi/linux/virtio_console.h
22255
22256VIRTIO CORE AND NET DRIVERS
22257M:	"Michael S. Tsirkin" <mst@redhat.com>
22258M:	Jason Wang <jasowang@redhat.com>
22259R:	Xuan Zhuo <xuanzhuo@linux.alibaba.com>
22260L:	virtualization@lists.linux-foundation.org
22261S:	Maintained
22262F:	Documentation/ABI/testing/sysfs-bus-vdpa
22263F:	Documentation/ABI/testing/sysfs-class-vduse
22264F:	Documentation/devicetree/bindings/virtio/
22265F:	Documentation/driver-api/virtio/
22266F:	drivers/block/virtio_blk.c
22267F:	drivers/crypto/virtio/
22268F:	drivers/net/virtio_net.c
22269F:	drivers/vdpa/
22270F:	drivers/virtio/
22271F:	include/linux/vdpa.h
22272F:	include/linux/virtio*.h
22273F:	include/linux/vringh.h
22274F:	include/uapi/linux/virtio_*.h
22275F:	tools/virtio/
22276
22277VISL VIRTUAL STATELESS DECODER DRIVER
22278M:	Daniel Almeida <daniel.almeida@collabora.com>
22279L:	linux-media@vger.kernel.org
22280S:	Supported
22281F:	drivers/media/test-drivers/visl
22282
22283IFCVF VIRTIO DATA PATH ACCELERATOR
22284R:	Zhu Lingshan <lingshan.zhu@intel.com>
22285F:	drivers/vdpa/ifcvf/
22286
22287SNET DPU VIRTIO DATA PATH ACCELERATOR
22288R:	Alvaro Karsz <alvaro.karsz@solid-run.com>
22289F:	drivers/vdpa/solidrun/
22290
22291VIRTIO BALLOON
22292M:	"Michael S. Tsirkin" <mst@redhat.com>
22293M:	David Hildenbrand <david@redhat.com>
22294L:	virtualization@lists.linux-foundation.org
22295S:	Maintained
22296F:	drivers/virtio/virtio_balloon.c
22297F:	include/uapi/linux/virtio_balloon.h
22298F:	include/linux/balloon_compaction.h
22299F:	mm/balloon_compaction.c
22300
22301VIRTIO CRYPTO DRIVER
22302M:	Gonglei <arei.gonglei@huawei.com>
22303L:	virtualization@lists.linux-foundation.org
22304L:	linux-crypto@vger.kernel.org
22305S:	Maintained
22306F:	drivers/crypto/virtio/
22307F:	include/uapi/linux/virtio_crypto.h
22308
22309VIRTIO DRIVERS FOR S390
22310M:	Cornelia Huck <cohuck@redhat.com>
22311M:	Halil Pasic <pasic@linux.ibm.com>
22312M:	Eric Farman <farman@linux.ibm.com>
22313L:	linux-s390@vger.kernel.org
22314L:	virtualization@lists.linux-foundation.org
22315L:	kvm@vger.kernel.org
22316S:	Supported
22317F:	arch/s390/include/uapi/asm/virtio-ccw.h
22318F:	drivers/s390/virtio/
22319
22320VIRTIO FILE SYSTEM
22321M:	Vivek Goyal <vgoyal@redhat.com>
22322M:	Stefan Hajnoczi <stefanha@redhat.com>
22323M:	Miklos Szeredi <miklos@szeredi.hu>
22324L:	virtualization@lists.linux-foundation.org
22325L:	linux-fsdevel@vger.kernel.org
22326S:	Supported
22327W:	https://virtio-fs.gitlab.io/
22328F:	Documentation/filesystems/virtiofs.rst
22329F:	fs/fuse/virtio_fs.c
22330F:	include/uapi/linux/virtio_fs.h
22331
22332VIRTIO GPIO DRIVER
22333M:	Enrico Weigelt, metux IT consult <info@metux.net>
22334M:	Viresh Kumar <vireshk@kernel.org>
22335L:	linux-gpio@vger.kernel.org
22336L:	virtualization@lists.linux-foundation.org
22337S:	Maintained
22338F:	drivers/gpio/gpio-virtio.c
22339F:	include/uapi/linux/virtio_gpio.h
22340
22341VIRTIO GPU DRIVER
22342M:	David Airlie <airlied@redhat.com>
22343M:	Gerd Hoffmann <kraxel@redhat.com>
22344R:	Gurchetan Singh <gurchetansingh@chromium.org>
22345R:	Chia-I Wu <olvaffe@gmail.com>
22346L:	dri-devel@lists.freedesktop.org
22347L:	virtualization@lists.linux-foundation.org
22348S:	Maintained
22349T:	git git://anongit.freedesktop.org/drm/drm-misc
22350F:	drivers/gpu/drm/virtio/
22351F:	include/uapi/linux/virtio_gpu.h
22352
22353VIRTIO HOST (VHOST)
22354M:	"Michael S. Tsirkin" <mst@redhat.com>
22355M:	Jason Wang <jasowang@redhat.com>
22356L:	kvm@vger.kernel.org
22357L:	virtualization@lists.linux-foundation.org
22358L:	netdev@vger.kernel.org
22359S:	Maintained
22360T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
22361F:	kernel/vhost_task.c
22362F:	drivers/vhost/
22363F:	include/linux/sched/vhost_task.h
22364F:	include/linux/vhost_iotlb.h
22365F:	include/uapi/linux/vhost.h
22366
22367VIRTIO INPUT DRIVER
22368M:	Gerd Hoffmann <kraxel@redhat.com>
22369S:	Maintained
22370F:	drivers/virtio/virtio_input.c
22371F:	include/uapi/linux/virtio_input.h
22372
22373VIRTIO IOMMU DRIVER
22374M:	Jean-Philippe Brucker <jean-philippe@linaro.org>
22375L:	virtualization@lists.linux-foundation.org
22376S:	Maintained
22377F:	drivers/iommu/virtio-iommu.c
22378F:	include/uapi/linux/virtio_iommu.h
22379
22380VIRTIO MEM DRIVER
22381M:	David Hildenbrand <david@redhat.com>
22382L:	virtualization@lists.linux-foundation.org
22383S:	Maintained
22384W:	https://virtio-mem.gitlab.io/
22385F:	drivers/virtio/virtio_mem.c
22386F:	include/uapi/linux/virtio_mem.h
22387
22388VIRTIO SOUND DRIVER
22389M:	Anton Yakovlev <anton.yakovlev@opensynergy.com>
22390M:	"Michael S. Tsirkin" <mst@redhat.com>
22391L:	virtualization@lists.linux-foundation.org
22392L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
22393S:	Maintained
22394F:	include/uapi/linux/virtio_snd.h
22395F:	sound/virtio/*
22396
22397VIRTIO I2C DRIVER
22398M:	Conghui Chen <conghui.chen@intel.com>
22399M:	Viresh Kumar <viresh.kumar@linaro.org>
22400L:	linux-i2c@vger.kernel.org
22401L:	virtualization@lists.linux-foundation.org
22402S:	Maintained
22403F:	drivers/i2c/busses/i2c-virtio.c
22404F:	include/uapi/linux/virtio_i2c.h
22405
22406VIRTIO PMEM DRIVER
22407M:	Pankaj Gupta <pankaj.gupta.linux@gmail.com>
22408L:	virtualization@lists.linux-foundation.org
22409S:	Maintained
22410F:	drivers/nvdimm/virtio_pmem.c
22411F:	drivers/nvdimm/nd_virtio.c
22412
22413VIRTUAL BOX GUEST DEVICE DRIVER
22414M:	Hans de Goede <hdegoede@redhat.com>
22415M:	Arnd Bergmann <arnd@arndb.de>
22416M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22417S:	Maintained
22418F:	drivers/virt/vboxguest/
22419F:	include/linux/vbox_utils.h
22420F:	include/uapi/linux/vbox*.h
22421
22422VIRTUAL BOX SHARED FOLDER VFS DRIVER
22423M:	Hans de Goede <hdegoede@redhat.com>
22424L:	linux-fsdevel@vger.kernel.org
22425S:	Maintained
22426F:	fs/vboxsf/*
22427
22428VIRTUAL SERIO DEVICE DRIVER
22429M:	Stephen Chandler Paul <thatslyude@gmail.com>
22430S:	Maintained
22431F:	drivers/input/serio/userio.c
22432F:	include/uapi/linux/userio.h
22433
22434VIVID VIRTUAL VIDEO DRIVER
22435M:	Hans Verkuil <hverkuil@xs4all.nl>
22436L:	linux-media@vger.kernel.org
22437S:	Maintained
22438W:	https://linuxtv.org
22439T:	git git://linuxtv.org/media_tree.git
22440F:	drivers/media/test-drivers/vivid/*
22441
22442VIDTV VIRTUAL DIGITAL TV DRIVER
22443M:	Daniel W. S. Almeida <dwlsalmeida@gmail.com>
22444L:	linux-media@vger.kernel.org
22445S:	Maintained
22446W:	https://linuxtv.org
22447T:	git git://linuxtv.org/media_tree.git
22448F:	drivers/media/test-drivers/vidtv/*
22449
22450VLYNQ BUS
22451M:	Florian Fainelli <f.fainelli@gmail.com>
22452L:	openwrt-devel@lists.openwrt.org (subscribers-only)
22453S:	Maintained
22454F:	drivers/vlynq/vlynq.c
22455F:	include/linux/vlynq.h
22456
22457VME SUBSYSTEM
22458M:	Martyn Welch <martyn@welchs.me.uk>
22459M:	Manohar Vanga <manohar.vanga@gmail.com>
22460M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22461L:	linux-kernel@vger.kernel.org
22462S:	Odd fixes
22463T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22464F:	Documentation/driver-api/vme.rst
22465F:	drivers/staging/vme_user/
22466
22467VM SOCKETS (AF_VSOCK)
22468M:	Stefano Garzarella <sgarzare@redhat.com>
22469L:	virtualization@lists.linux-foundation.org
22470L:	netdev@vger.kernel.org
22471S:	Maintained
22472F:	drivers/net/vsockmon.c
22473F:	include/net/af_vsock.h
22474F:	include/uapi/linux/vm_sockets.h
22475F:	include/uapi/linux/vm_sockets_diag.h
22476F:	include/uapi/linux/vsockmon.h
22477F:	net/vmw_vsock/
22478F:	tools/testing/vsock/
22479
22480VMWARE BALLOON DRIVER
22481M:	Nadav Amit <namit@vmware.com>
22482R:	VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22483L:	linux-kernel@vger.kernel.org
22484S:	Supported
22485F:	drivers/misc/vmw_balloon.c
22486
22487VMWARE HYPERVISOR INTERFACE
22488M:	Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22489M:	Alexey Makhalov <amakhalov@vmware.com>
22490R:	VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22491L:	virtualization@lists.linux-foundation.org
22492L:	x86@kernel.org
22493S:	Supported
22494T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
22495F:	arch/x86/include/asm/vmware.h
22496F:	arch/x86/kernel/cpu/vmware.c
22497
22498VMWARE PVRDMA DRIVER
22499M:	Bryan Tan <bryantan@vmware.com>
22500M:	Vishnu Dasa <vdasa@vmware.com>
22501R:	VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22502L:	linux-rdma@vger.kernel.org
22503S:	Supported
22504F:	drivers/infiniband/hw/vmw_pvrdma/
22505
22506VMWARE PVSCSI DRIVER
22507M:	Vishal Bhakta <vbhakta@vmware.com>
22508R:	VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22509L:	linux-scsi@vger.kernel.org
22510S:	Supported
22511F:	drivers/scsi/vmw_pvscsi.c
22512F:	drivers/scsi/vmw_pvscsi.h
22513
22514VMWARE VIRTUAL PTP CLOCK DRIVER
22515M:	Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22516M:	Deep Shah <sdeep@vmware.com>
22517R:	Alexey Makhalov <amakhalov@vmware.com>
22518R:	VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22519L:	netdev@vger.kernel.org
22520S:	Supported
22521F:	drivers/ptp/ptp_vmw.c
22522
22523VMWARE VMCI DRIVER
22524M:	Bryan Tan <bryantan@vmware.com>
22525M:	Vishnu Dasa <vdasa@vmware.com>
22526R:	VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22527L:	linux-kernel@vger.kernel.org
22528S:	Supported
22529F:	drivers/misc/vmw_vmci/
22530F:	include/linux/vmw_vmci*
22531
22532VMWARE VMMOUSE SUBDRIVER
22533M:	Zack Rusin <zackr@vmware.com>
22534R:	VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
22535R:	VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22536L:	linux-input@vger.kernel.org
22537S:	Supported
22538F:	drivers/input/mouse/vmmouse.c
22539F:	drivers/input/mouse/vmmouse.h
22540
22541VMWARE VMXNET3 ETHERNET DRIVER
22542M:	Ronak Doshi <doshir@vmware.com>
22543R:	VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22544L:	netdev@vger.kernel.org
22545S:	Supported
22546F:	drivers/net/vmxnet3/
22547
22548VMWARE VSOCK VMCI TRANSPORT DRIVER
22549M:	Bryan Tan <bryantan@vmware.com>
22550M:	Vishnu Dasa <vdasa@vmware.com>
22551R:	VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22552L:	linux-kernel@vger.kernel.org
22553S:	Supported
22554F:	net/vmw_vsock/vmci_transport*
22555
22556VOCORE VOCORE2 BOARD
22557M:	Harvey Hunt <harveyhuntnexus@gmail.com>
22558L:	linux-mips@vger.kernel.org
22559S:	Maintained
22560F:	arch/mips/boot/dts/ralink/vocore2.dts
22561
22562VOLTAGE AND CURRENT REGULATOR FRAMEWORK
22563M:	Liam Girdwood <lgirdwood@gmail.com>
22564M:	Mark Brown <broonie@kernel.org>
22565L:	linux-kernel@vger.kernel.org
22566S:	Supported
22567W:	http://www.slimlogic.co.uk/?p=48
22568T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
22569F:	Documentation/devicetree/bindings/regulator/
22570F:	Documentation/power/regulator/
22571F:	drivers/regulator/
22572F:	include/dt-bindings/regulator/
22573F:	include/linux/regulator/
22574K:	regulator_get_optional
22575
22576VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
22577R:	Matti Vaittinen <mazziesaccount@gmail.com>
22578F:	drivers/regulator/irq_helpers.c
22579
22580VRF
22581M:	David Ahern <dsahern@kernel.org>
22582L:	netdev@vger.kernel.org
22583S:	Maintained
22584F:	Documentation/networking/vrf.rst
22585F:	drivers/net/vrf.c
22586
22587VSPRINTF
22588M:	Petr Mladek <pmladek@suse.com>
22589M:	Steven Rostedt <rostedt@goodmis.org>
22590M:	Sergey Senozhatsky <senozhatsky@chromium.org>
22591R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
22592R:	Rasmus Villemoes <linux@rasmusvillemoes.dk>
22593S:	Maintained
22594T:	git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
22595F:	Documentation/core-api/printk-formats.rst
22596F:	lib/test_printf.c
22597F:	lib/test_scanf.c
22598F:	lib/vsprintf.c
22599
22600VT1211 HARDWARE MONITOR DRIVER
22601M:	Juerg Haefliger <juergh@proton.me>
22602L:	linux-hwmon@vger.kernel.org
22603S:	Maintained
22604F:	Documentation/hwmon/vt1211.rst
22605F:	drivers/hwmon/vt1211.c
22606
22607VT8231 HARDWARE MONITOR DRIVER
22608M:	Roger Lucas <vt8231@hiddenengine.co.uk>
22609L:	linux-hwmon@vger.kernel.org
22610S:	Maintained
22611F:	drivers/hwmon/vt8231.c
22612
22613VUB300 USB to SDIO/SD/MMC bridge chip
22614L:	linux-mmc@vger.kernel.org
22615S:	Orphan
22616F:	drivers/mmc/host/vub300.c
22617
22618W1 DALLAS'S 1-WIRE BUS
22619M:	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
22620S:	Maintained
22621F:	Documentation/devicetree/bindings/w1/
22622F:	Documentation/w1/
22623F:	drivers/w1/
22624F:	include/linux/w1.h
22625
22626W83791D HARDWARE MONITORING DRIVER
22627M:	Marc Hulsman <m.hulsman@tudelft.nl>
22628L:	linux-hwmon@vger.kernel.org
22629S:	Maintained
22630F:	Documentation/hwmon/w83791d.rst
22631F:	drivers/hwmon/w83791d.c
22632
22633W83793 HARDWARE MONITORING DRIVER
22634M:	Rudolf Marek <r.marek@assembler.cz>
22635L:	linux-hwmon@vger.kernel.org
22636S:	Maintained
22637F:	Documentation/hwmon/w83793.rst
22638F:	drivers/hwmon/w83793.c
22639
22640W83795 HARDWARE MONITORING DRIVER
22641M:	Jean Delvare <jdelvare@suse.com>
22642L:	linux-hwmon@vger.kernel.org
22643S:	Maintained
22644F:	drivers/hwmon/w83795.c
22645
22646W83L51xD SD/MMC CARD INTERFACE DRIVER
22647M:	Pierre Ossman <pierre@ossman.eu>
22648S:	Maintained
22649F:	drivers/mmc/host/wbsd.*
22650
22651WACOM PROTOCOL 4 SERIAL TABLETS
22652M:	Julian Squires <julian@cipht.net>
22653M:	Hans de Goede <hdegoede@redhat.com>
22654L:	linux-input@vger.kernel.org
22655S:	Maintained
22656F:	drivers/input/tablet/wacom_serial4.c
22657
22658WANGXUN ETHERNET DRIVER
22659M:	Jiawen Wu <jiawenwu@trustnetic.com>
22660M:	Mengyuan Lou <mengyuanlou@net-swift.com>
22661W:	https://www.net-swift.com
22662L:	netdev@vger.kernel.org
22663S:	Maintained
22664F:	Documentation/networking/device_drivers/ethernet/wangxun/*
22665F:	drivers/net/ethernet/wangxun/
22666
22667WATCHDOG DEVICE DRIVERS
22668M:	Wim Van Sebroeck <wim@linux-watchdog.org>
22669M:	Guenter Roeck <linux@roeck-us.net>
22670L:	linux-watchdog@vger.kernel.org
22671S:	Maintained
22672W:	http://www.linux-watchdog.org/
22673T:	git git://www.linux-watchdog.org/linux-watchdog.git
22674F:	Documentation/devicetree/bindings/watchdog/
22675F:	Documentation/watchdog/
22676F:	drivers/watchdog/
22677F:	include/linux/watchdog.h
22678F:	include/uapi/linux/watchdog.h
22679F:	include/trace/events/watchdog.h
22680
22681WHISKEYCOVE PMIC GPIO DRIVER
22682M:	Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
22683L:	linux-gpio@vger.kernel.org
22684S:	Maintained
22685F:	drivers/gpio/gpio-wcove.c
22686
22687WHWAVE RTC DRIVER
22688M:	Dianlong Li <long17.cool@163.com>
22689L:	linux-rtc@vger.kernel.org
22690S:	Maintained
22691F:	drivers/rtc/rtc-sd3078.c
22692
22693WIIMOTE HID DRIVER
22694M:	David Rheinsberg <david.rheinsberg@gmail.com>
22695L:	linux-input@vger.kernel.org
22696S:	Maintained
22697F:	drivers/hid/hid-wiimote*
22698
22699WILOCITY WIL6210 WIRELESS DRIVER
22700L:	linux-wireless@vger.kernel.org
22701S:	Orphan
22702W:	https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
22703F:	drivers/net/wireless/ath/wil6210/
22704
22705WINBOND CIR DRIVER
22706M:	David Härdeman <david@hardeman.nu>
22707S:	Maintained
22708F:	drivers/media/rc/winbond-cir.c
22709
22710WINSYSTEMS EBC-C384 WATCHDOG DRIVER
22711L:	linux-watchdog@vger.kernel.org
22712S:	Orphan
22713F:	drivers/watchdog/ebc-c384_wdt.c
22714
22715WINSYSTEMS WS16C48 GPIO DRIVER
22716M:	William Breathitt Gray <william.gray@linaro.org>
22717L:	linux-gpio@vger.kernel.org
22718S:	Maintained
22719F:	drivers/gpio/gpio-ws16c48.c
22720
22721WIREGUARD SECURE NETWORK TUNNEL
22722M:	Jason A. Donenfeld <Jason@zx2c4.com>
22723L:	wireguard@lists.zx2c4.com
22724L:	netdev@vger.kernel.org
22725S:	Maintained
22726F:	drivers/net/wireguard/
22727F:	tools/testing/selftests/wireguard/
22728
22729WISTRON LAPTOP BUTTON DRIVER
22730M:	Miloslav Trmac <mitr@volny.cz>
22731S:	Maintained
22732F:	drivers/input/misc/wistron_btns.c
22733
22734WL3501 WIRELESS PCMCIA CARD DRIVER
22735L:	linux-wireless@vger.kernel.org
22736S:	Odd fixes
22737F:	drivers/net/wireless/legacy/wl3501*
22738
22739WOLFSON MICROELECTRONICS DRIVERS
22740L:	patches@opensource.cirrus.com
22741S:	Supported
22742W:	https://github.com/CirrusLogic/linux-drivers/wiki
22743T:	git https://github.com/CirrusLogic/linux-drivers.git
22744F:	Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22745F:	Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22746F:	Documentation/devicetree/bindings/mfd/wm831x.txt
22747F:	Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22748F:	Documentation/devicetree/bindings/sound/wlf,*.yaml
22749F:	Documentation/devicetree/bindings/sound/wm*
22750F:	Documentation/hwmon/wm83??.rst
22751F:	arch/arm/mach-s3c/mach-crag6410*
22752F:	drivers/clk/clk-wm83*.c
22753F:	drivers/gpio/gpio-*wm*.c
22754F:	drivers/gpio/gpio-arizona.c
22755F:	drivers/hwmon/wm83??-hwmon.c
22756F:	drivers/input/misc/wm831x-on.c
22757F:	drivers/input/touchscreen/wm831x-ts.c
22758F:	drivers/input/touchscreen/wm97*.c
22759F:	drivers/leds/leds-wm83*.c
22760F:	drivers/mfd/arizona*
22761F:	drivers/mfd/cs47l24*
22762F:	drivers/mfd/wm*.c
22763F:	drivers/power/supply/wm83*.c
22764F:	drivers/regulator/arizona*
22765F:	drivers/regulator/wm8*.c
22766F:	drivers/rtc/rtc-wm83*.c
22767F:	drivers/video/backlight/wm83*_bl.c
22768F:	drivers/watchdog/wm83*_wdt.c
22769F:	include/linux/mfd/arizona/
22770F:	include/linux/mfd/wm831x/
22771F:	include/linux/mfd/wm8350/
22772F:	include/linux/mfd/wm8400*
22773F:	include/linux/regulator/arizona*
22774F:	include/linux/wm97xx.h
22775F:	include/sound/wm????.h
22776F:	sound/soc/codecs/arizona*
22777F:	sound/soc/codecs/cs47l24*
22778F:	sound/soc/codecs/wm*
22779
22780WORKQUEUE
22781M:	Tejun Heo <tj@kernel.org>
22782R:	Lai Jiangshan <jiangshanlai@gmail.com>
22783S:	Maintained
22784T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22785F:	Documentation/core-api/workqueue.rst
22786F:	include/linux/workqueue.h
22787F:	kernel/workqueue.c
22788F:	kernel/workqueue_internal.h
22789
22790WWAN DRIVERS
22791M:	Loic Poulain <loic.poulain@linaro.org>
22792M:	Sergey Ryazanov <ryazanov.s.a@gmail.com>
22793R:	Johannes Berg <johannes@sipsolutions.net>
22794L:	netdev@vger.kernel.org
22795S:	Maintained
22796F:	drivers/net/wwan/
22797F:	include/linux/wwan.h
22798F:	include/uapi/linux/wwan.h
22799
22800X-POWERS AXP288 PMIC DRIVERS
22801M:	Hans de Goede <hdegoede@redhat.com>
22802S:	Maintained
22803F:	drivers/acpi/pmic/intel_pmic_xpower.c
22804N:	axp288
22805
22806X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22807M:	Chen-Yu Tsai <wens@csie.org>
22808L:	linux-kernel@vger.kernel.org
22809S:	Maintained
22810N:	axp[128]
22811
22812X.25 STACK
22813M:	Martin Schiller <ms@dev.tdt.de>
22814L:	linux-x25@vger.kernel.org
22815S:	Maintained
22816F:	Documentation/networking/lapb-module.rst
22817F:	Documentation/networking/x25*
22818F:	drivers/net/wan/hdlc_x25.c
22819F:	drivers/net/wan/lapbether.c
22820F:	include/*/lapb.h
22821F:	include/net/x25*
22822F:	include/uapi/linux/x25.h
22823F:	net/lapb/
22824F:	net/x25/
22825
22826X86 ARCHITECTURE (32-BIT AND 64-BIT)
22827M:	Thomas Gleixner <tglx@linutronix.de>
22828M:	Ingo Molnar <mingo@redhat.com>
22829M:	Borislav Petkov <bp@alien8.de>
22830M:	Dave Hansen <dave.hansen@linux.intel.com>
22831M:	x86@kernel.org
22832R:	"H. Peter Anvin" <hpa@zytor.com>
22833L:	linux-kernel@vger.kernel.org
22834S:	Maintained
22835T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22836F:	Documentation/devicetree/bindings/x86/
22837F:	Documentation/arch/x86/
22838F:	arch/x86/
22839
22840X86 ENTRY CODE
22841M:	Andy Lutomirski <luto@kernel.org>
22842L:	linux-kernel@vger.kernel.org
22843S:	Maintained
22844T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22845F:	arch/x86/entry/
22846
22847X86 HARDWARE VULNERABILITIES
22848M:	Thomas Gleixner <tglx@linutronix.de>
22849M:	Borislav Petkov <bp@alien8.de>
22850M:	Peter Zijlstra <peterz@infradead.org>
22851M:	Josh Poimboeuf <jpoimboe@kernel.org>
22852R:	Pawan Gupta <pawan.kumar.gupta@linux.intel.com>
22853S:	Maintained
22854F:	Documentation/admin-guide/hw-vuln/
22855F:	arch/x86/include/asm/nospec-branch.h
22856F:	arch/x86/kernel/cpu/bugs.c
22857
22858X86 MCE INFRASTRUCTURE
22859M:	Tony Luck <tony.luck@intel.com>
22860M:	Borislav Petkov <bp@alien8.de>
22861L:	linux-edac@vger.kernel.org
22862S:	Maintained
22863F:	Documentation/ABI/testing/sysfs-mce
22864F:	Documentation/arch/x86/x86_64/machinecheck.rst
22865F:	arch/x86/kernel/cpu/mce/*
22866
22867X86 MICROCODE UPDATE SUPPORT
22868M:	Borislav Petkov <bp@alien8.de>
22869S:	Maintained
22870F:	arch/x86/kernel/cpu/microcode/*
22871
22872X86 MM
22873M:	Dave Hansen <dave.hansen@linux.intel.com>
22874M:	Andy Lutomirski <luto@kernel.org>
22875M:	Peter Zijlstra <peterz@infradead.org>
22876L:	linux-kernel@vger.kernel.org
22877S:	Maintained
22878T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22879F:	arch/x86/mm/
22880
22881X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22882M:	Hans de Goede <hdegoede@redhat.com>
22883L:	platform-driver-x86@vger.kernel.org
22884S:	Maintained
22885T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22886F:	drivers/platform/x86/x86-android-tablets/
22887
22888X86 PLATFORM DRIVERS
22889M:	Hans de Goede <hdegoede@redhat.com>
22890M:	Mark Gross <markgross@kernel.org>
22891L:	platform-driver-x86@vger.kernel.org
22892S:	Maintained
22893T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22894F:	drivers/platform/olpc/
22895F:	drivers/platform/x86/
22896F:	include/linux/platform_data/x86/
22897
22898X86 PLATFORM DRIVERS - ARCH
22899R:	Darren Hart <dvhart@infradead.org>
22900R:	Andy Shevchenko <andy@infradead.org>
22901L:	platform-driver-x86@vger.kernel.org
22902L:	x86@kernel.org
22903S:	Maintained
22904T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22905F:	arch/x86/platform
22906
22907X86 PLATFORM UV HPE SUPERDOME FLEX
22908M:	Steve Wahl <steve.wahl@hpe.com>
22909R:	Mike Travis <mike.travis@hpe.com>
22910R:	Dimitri Sivanich <dimitri.sivanich@hpe.com>
22911R:	Russ Anderson <russ.anderson@hpe.com>
22912S:	Supported
22913F:	arch/x86/include/asm/uv/
22914F:	arch/x86/kernel/apic/x2apic_uv_x.c
22915F:	arch/x86/platform/uv/
22916
22917X86 STACK UNWINDING
22918M:	Josh Poimboeuf <jpoimboe@kernel.org>
22919M:	Peter Zijlstra <peterz@infradead.org>
22920S:	Supported
22921F:	arch/x86/include/asm/unwind*.h
22922F:	arch/x86/kernel/dumpstack.c
22923F:	arch/x86/kernel/stacktrace.c
22924F:	arch/x86/kernel/unwind_*.c
22925
22926X86 VDSO
22927M:	Andy Lutomirski <luto@kernel.org>
22928L:	linux-kernel@vger.kernel.org
22929S:	Maintained
22930T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22931F:	arch/x86/entry/vdso/
22932
22933XARRAY
22934M:	Matthew Wilcox <willy@infradead.org>
22935L:	linux-fsdevel@vger.kernel.org
22936S:	Supported
22937F:	Documentation/core-api/xarray.rst
22938F:	include/linux/idr.h
22939F:	include/linux/xarray.h
22940F:	lib/idr.c
22941F:	lib/xarray.c
22942F:	tools/testing/radix-tree
22943
22944XBOX DVD IR REMOTE
22945M:	Benjamin Valentin <benpicco@googlemail.com>
22946S:	Maintained
22947F:	drivers/media/rc/keymaps/rc-xbox-dvd.c
22948F:	drivers/media/rc/xbox_remote.c
22949
22950XC2028/3028 TUNER DRIVER
22951M:	Mauro Carvalho Chehab <mchehab@kernel.org>
22952L:	linux-media@vger.kernel.org
22953S:	Maintained
22954W:	https://linuxtv.org
22955T:	git git://linuxtv.org/media_tree.git
22956F:	drivers/media/tuners/xc2028.*
22957
22958XDP (eXpress Data Path)
22959M:	Alexei Starovoitov <ast@kernel.org>
22960M:	Daniel Borkmann <daniel@iogearbox.net>
22961M:	David S. Miller <davem@davemloft.net>
22962M:	Jakub Kicinski <kuba@kernel.org>
22963M:	Jesper Dangaard Brouer <hawk@kernel.org>
22964M:	John Fastabend <john.fastabend@gmail.com>
22965L:	netdev@vger.kernel.org
22966L:	bpf@vger.kernel.org
22967S:	Supported
22968F:	include/net/xdp.h
22969F:	include/net/xdp_priv.h
22970F:	include/trace/events/xdp.h
22971F:	kernel/bpf/cpumap.c
22972F:	kernel/bpf/devmap.c
22973F:	net/core/xdp.c
22974F:	samples/bpf/xdp*
22975F:	tools/testing/selftests/bpf/*xdp*
22976F:	tools/testing/selftests/bpf/*/*xdp*
22977F:	drivers/net/ethernet/*/*/*/*/*xdp*
22978F:	drivers/net/ethernet/*/*/*xdp*
22979K:	(?:\b|_)xdp(?:\b|_)
22980
22981XDP SOCKETS (AF_XDP)
22982M:	Björn Töpel <bjorn@kernel.org>
22983M:	Magnus Karlsson <magnus.karlsson@intel.com>
22984M:	Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22985R:	Jonathan Lemon <jonathan.lemon@gmail.com>
22986L:	netdev@vger.kernel.org
22987L:	bpf@vger.kernel.org
22988S:	Maintained
22989F:	Documentation/networking/af_xdp.rst
22990F:	include/net/xdp_sock*
22991F:	include/net/xsk_buff_pool.h
22992F:	include/uapi/linux/if_xdp.h
22993F:	include/uapi/linux/xdp_diag.h
22994F:	include/net/netns/xdp.h
22995F:	net/xdp/
22996F:	tools/testing/selftests/bpf/*xsk*
22997
22998XEN BLOCK SUBSYSTEM
22999M:	Roger Pau Monné <roger.pau@citrix.com>
23000L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
23001S:	Supported
23002F:	drivers/block/xen*
23003F:	drivers/block/xen-blkback/*
23004
23005XEN HYPERVISOR ARM
23006M:	Stefano Stabellini <sstabellini@kernel.org>
23007L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
23008S:	Maintained
23009F:	arch/arm/include/asm/xen/
23010F:	arch/arm/xen/
23011
23012XEN HYPERVISOR ARM64
23013M:	Stefano Stabellini <sstabellini@kernel.org>
23014L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
23015S:	Maintained
23016F:	arch/arm64/include/asm/xen/
23017F:	arch/arm64/xen/
23018
23019XEN HYPERVISOR INTERFACE
23020M:	Juergen Gross <jgross@suse.com>
23021M:	Stefano Stabellini <sstabellini@kernel.org>
23022R:	Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
23023L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
23024S:	Supported
23025T:	git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
23026F:	Documentation/ABI/stable/sysfs-hypervisor-xen
23027F:	Documentation/ABI/testing/sysfs-hypervisor-xen
23028F:	drivers/*/xen-*front.c
23029F:	drivers/xen/
23030F:	include/uapi/xen/
23031F:	include/xen/
23032F:	kernel/configs/xen.config
23033
23034XEN HYPERVISOR X86
23035M:	Juergen Gross <jgross@suse.com>
23036R:	Boris Ostrovsky <boris.ostrovsky@oracle.com>
23037L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
23038S:	Supported
23039F:	arch/x86/configs/xen.config
23040F:	arch/x86/include/asm/pvclock-abi.h
23041F:	arch/x86/include/asm/xen/
23042F:	arch/x86/platform/pvh/
23043F:	arch/x86/xen/
23044
23045XEN NETWORK BACKEND DRIVER
23046M:	Wei Liu <wei.liu@kernel.org>
23047M:	Paul Durrant <paul@xen.org>
23048L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
23049L:	netdev@vger.kernel.org
23050S:	Supported
23051F:	drivers/net/xen-netback/*
23052
23053XEN PCI SUBSYSTEM
23054M:	Juergen Gross <jgross@suse.com>
23055L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
23056S:	Supported
23057F:	arch/x86/pci/*xen*
23058F:	drivers/pci/*xen*
23059
23060XEN PVSCSI DRIVERS
23061M:	Juergen Gross <jgross@suse.com>
23062L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
23063L:	linux-scsi@vger.kernel.org
23064S:	Supported
23065F:	drivers/scsi/xen-scsifront.c
23066F:	drivers/xen/xen-scsiback.c
23067F:	include/xen/interface/io/vscsiif.h
23068
23069XEN PVUSB DRIVER
23070M:	Juergen Gross <jgross@suse.com>
23071L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
23072L:	linux-usb@vger.kernel.org
23073S:	Supported
23074F:	drivers/usb/host/xen*
23075F:	include/xen/interface/io/usbif.h
23076
23077XEN SOUND FRONTEND DRIVER
23078M:	Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
23079L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
23080L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
23081S:	Supported
23082F:	sound/xen/*
23083
23084XEN SWIOTLB SUBSYSTEM
23085M:	Juergen Gross <jgross@suse.com>
23086M:	Stefano Stabellini <sstabellini@kernel.org>
23087L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
23088L:	iommu@lists.linux.dev
23089S:	Supported
23090F:	arch/*/include/asm/xen/swiotlb-xen.h
23091F:	drivers/xen/swiotlb-xen.c
23092F:	include/xen/arm/swiotlb-xen.h
23093F:	include/xen/swiotlb-xen.h
23094
23095XFS FILESYSTEM
23096C:	irc://irc.oftc.net/xfs
23097M:	Darrick J. Wong <djwong@kernel.org>
23098L:	linux-xfs@vger.kernel.org
23099S:	Supported
23100W:	http://xfs.org/
23101T:	git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
23102F:	Documentation/ABI/testing/sysfs-fs-xfs
23103F:	Documentation/admin-guide/xfs.rst
23104F:	Documentation/filesystems/xfs-delayed-logging-design.rst
23105F:	Documentation/filesystems/xfs-self-describing-metadata.rst
23106F:	fs/xfs/
23107F:	include/uapi/linux/dqblk_xfs.h
23108F:	include/uapi/linux/fsmap.h
23109
23110XILINX AMS DRIVER
23111M:	Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
23112L:	linux-iio@vger.kernel.org
23113S:	Maintained
23114F:	Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
23115F:	drivers/iio/adc/xilinx-ams.c
23116
23117XILINX AXI ETHERNET DRIVER
23118M:	Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
23119S:	Maintained
23120F:	drivers/net/ethernet/xilinx/xilinx_axienet*
23121
23122XILINX CAN DRIVER
23123M:	Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
23124R:	Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
23125L:	linux-can@vger.kernel.org
23126S:	Maintained
23127F:	Documentation/devicetree/bindings/net/can/xilinx,can.yaml
23128F:	drivers/net/can/xilinx_can.c
23129
23130XILINX GPIO DRIVER
23131M:	Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
23132R:	Srinivas Neeli <srinivas.neeli@xilinx.com>
23133R:	Michal Simek <michal.simek@amd.com>
23134S:	Maintained
23135F:	Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
23136F:	Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
23137F:	drivers/gpio/gpio-xilinx.c
23138F:	drivers/gpio/gpio-zynq.c
23139
23140XILINX SD-FEC IP CORES
23141M:	Derek Kiernan <derek.kiernan@xilinx.com>
23142M:	Dragan Cvetic <dragan.cvetic@xilinx.com>
23143S:	Maintained
23144F:	Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
23145F:	Documentation/misc-devices/xilinx_sdfec.rst
23146F:	drivers/misc/Kconfig
23147F:	drivers/misc/Makefile
23148F:	drivers/misc/xilinx_sdfec.c
23149F:	include/uapi/misc/xilinx_sdfec.h
23150
23151XILINX PWM DRIVER
23152M:	Sean Anderson <sean.anderson@seco.com>
23153S:	Maintained
23154F:	drivers/pwm/pwm-xilinx.c
23155F:	include/clocksource/timer-xilinx.h
23156
23157XILINX UARTLITE SERIAL DRIVER
23158M:	Peter Korsgaard <jacmet@sunsite.dk>
23159L:	linux-serial@vger.kernel.org
23160S:	Maintained
23161F:	drivers/tty/serial/uartlite.c
23162
23163XILINX VIDEO IP CORES
23164M:	Hyun Kwon <hyun.kwon@xilinx.com>
23165M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
23166L:	linux-media@vger.kernel.org
23167S:	Supported
23168T:	git git://linuxtv.org/media_tree.git
23169F:	Documentation/devicetree/bindings/media/xilinx/
23170F:	drivers/media/platform/xilinx/
23171F:	include/uapi/linux/xilinx-v4l2-controls.h
23172
23173XILINX WATCHDOG DRIVER
23174M:	Srinivas Neeli <srinivas.neeli@amd.com>
23175R:	Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
23176R:	Michal Simek <michal.simek@amd.com>
23177S:	Maintained
23178F:	Documentation/devicetree/bindings/watchdog/xlnx,xps-timebase-wdt.yaml
23179F:	drivers/watchdog/of_xilinx_wdt.c
23180
23181XILINX XDMA DRIVER
23182M:	Lizhi Hou <lizhi.hou@amd.com>
23183M:	Brian Xu <brian.xu@amd.com>
23184M:	Raj Kumar Rampelli <raj.kumar.rampelli@amd.com>
23185L:	dmaengine@vger.kernel.org
23186S:	Supported
23187F:	drivers/dma/xilinx/xdma-regs.h
23188F:	drivers/dma/xilinx/xdma.c
23189F:	include/linux/dma/amd_xdma.h
23190F:	include/linux/platform_data/amd_xdma.h
23191
23192XILINX ZYNQMP DPDMA DRIVER
23193M:	Hyun Kwon <hyun.kwon@xilinx.com>
23194M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
23195L:	dmaengine@vger.kernel.org
23196S:	Supported
23197F:	Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
23198F:	drivers/dma/xilinx/xilinx_dpdma.c
23199F:	include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
23200
23201XILINX ZYNQMP OCM EDAC DRIVER
23202M:	Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
23203M:	Sai Krishna Potthuri <sai.krishna.potthuri@amd.com>
23204S:	Maintained
23205F:	Documentation/devicetree/bindings/memory-controllers/xlnx,zynqmp-ocmc-1.0.yaml
23206F:	drivers/edac/zynqmp_edac.c
23207
23208XILINX ZYNQMP PSGTR PHY DRIVER
23209M:	Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
23210M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
23211L:	linux-kernel@vger.kernel.org
23212S:	Supported
23213T:	git https://github.com/Xilinx/linux-xlnx.git
23214F:	Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
23215F:	drivers/phy/xilinx/phy-zynqmp.c
23216
23217XILINX ZYNQMP SHA3 DRIVER
23218M:	Harsha <harsha.harsha@xilinx.com>
23219S:	Maintained
23220F:	drivers/crypto/xilinx/zynqmp-sha.c
23221
23222XILINX EVENT MANAGEMENT DRIVER
23223M:	Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
23224S:	Maintained
23225F:	drivers/soc/xilinx/xlnx_event_manager.c
23226F:	include/linux/firmware/xlnx-event-manager.h
23227
23228XILLYBUS DRIVER
23229M:	Eli Billauer <eli.billauer@gmail.com>
23230L:	linux-kernel@vger.kernel.org
23231S:	Supported
23232F:	drivers/char/xillybus/
23233
23234XLP9XX I2C DRIVER
23235M:	George Cherian <gcherian@marvell.com>
23236L:	linux-i2c@vger.kernel.org
23237S:	Supported
23238W:	http://www.marvell.com
23239F:	drivers/i2c/busses/i2c-xlp9xx.c
23240
23241XRA1403 GPIO EXPANDER
23242M:	Nandor Han <nandor.han@ge.com>
23243L:	linux-gpio@vger.kernel.org
23244S:	Maintained
23245F:	Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
23246F:	drivers/gpio/gpio-xra1403.c
23247
23248XTENSA XTFPGA PLATFORM SUPPORT
23249M:	Max Filippov <jcmvbkbc@gmail.com>
23250S:	Maintained
23251F:	drivers/spi/spi-xtensa-xtfpga.c
23252F:	sound/soc/xtensa/xtfpga-i2s.c
23253
23254YAM DRIVER FOR AX.25
23255M:	Jean-Paul Roubelat <jpr@f6fbb.org>
23256L:	linux-hams@vger.kernel.org
23257S:	Maintained
23258F:	drivers/net/hamradio/yam*
23259F:	include/linux/yam.h
23260
23261YAMA SECURITY MODULE
23262M:	Kees Cook <keescook@chromium.org>
23263S:	Supported
23264T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
23265F:	Documentation/admin-guide/LSM/Yama.rst
23266F:	security/yama/
23267
23268YEALINK PHONE DRIVER
23269M:	Henk Vergonet <Henk.Vergonet@gmail.com>
23270L:	usbb2k-api-dev@nongnu.org
23271S:	Maintained
23272F:	Documentation/input/devices/yealink.rst
23273F:	drivers/input/misc/yealink.*
23274
23275Z8530 DRIVER FOR AX.25
23276M:	Joerg Reuter <jreuter@yaina.de>
23277L:	linux-hams@vger.kernel.org
23278S:	Maintained
23279W:	http://yaina.de/jreuter/
23280W:	http://www.qsl.net/dl1bke/
23281F:	Documentation/networking/device_drivers/hamradio/z8530drv.rst
23282F:	drivers/net/hamradio/*scc.c
23283F:	drivers/net/hamradio/z8530.h
23284
23285ZBUD COMPRESSED PAGE ALLOCATOR
23286M:	Seth Jennings <sjenning@redhat.com>
23287M:	Dan Streetman <ddstreet@ieee.org>
23288L:	linux-mm@kvack.org
23289S:	Maintained
23290F:	mm/zbud.c
23291
23292Z3FOLD COMPRESSED PAGE ALLOCATOR
23293M:	Vitaly Wool <vitaly.wool@konsulko.com>
23294R:	Miaohe Lin <linmiaohe@huawei.com>
23295L:	linux-mm@kvack.org
23296S:	Maintained
23297F:	mm/z3fold.c
23298
23299ZD1211RW WIRELESS DRIVER
23300M:	Ulrich Kunitz <kune@deine-taler.de>
23301L:	linux-wireless@vger.kernel.org
23302L:	zd1211-devs@lists.sourceforge.net (subscribers-only)
23303S:	Maintained
23304W:	http://zd1211.ath.cx/wiki/DriverRewrite
23305F:	drivers/net/wireless/zydas/zd1211rw/
23306
23307ZD1301 MEDIA DRIVER
23308M:	Antti Palosaari <crope@iki.fi>
23309L:	linux-media@vger.kernel.org
23310S:	Maintained
23311W:	https://linuxtv.org/
23312W:	http://palosaari.fi/linux/
23313Q:	https://patchwork.linuxtv.org/project/linux-media/list/
23314F:	drivers/media/usb/dvb-usb-v2/zd1301*
23315
23316ZD1301_DEMOD MEDIA DRIVER
23317M:	Antti Palosaari <crope@iki.fi>
23318L:	linux-media@vger.kernel.org
23319S:	Maintained
23320W:	https://linuxtv.org/
23321W:	http://palosaari.fi/linux/
23322Q:	https://patchwork.linuxtv.org/project/linux-media/list/
23323F:	drivers/media/dvb-frontends/zd1301_demod*
23324
23325ZHAOXIN PROCESSOR SUPPORT
23326M:	Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
23327L:	linux-kernel@vger.kernel.org
23328S:	Maintained
23329F:	arch/x86/kernel/cpu/zhaoxin.c
23330
23331ZONEFS FILESYSTEM
23332M:	Damien Le Moal <dlemoal@kernel.org>
23333M:	Naohiro Aota <naohiro.aota@wdc.com>
23334R:	Johannes Thumshirn <jth@kernel.org>
23335L:	linux-fsdevel@vger.kernel.org
23336S:	Maintained
23337T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
23338F:	Documentation/filesystems/zonefs.rst
23339F:	fs/zonefs/
23340
23341ZPOOL COMPRESSED PAGE STORAGE API
23342M:	Dan Streetman <ddstreet@ieee.org>
23343L:	linux-mm@kvack.org
23344S:	Maintained
23345F:	include/linux/zpool.h
23346F:	mm/zpool.c
23347
23348ZR36067 VIDEO FOR LINUX DRIVER
23349M:	Corentin Labbe <clabbe@baylibre.com>
23350L:	mjpeg-users@lists.sourceforge.net
23351L:	linux-media@vger.kernel.org
23352S:	Maintained
23353W:	http://mjpeg.sourceforge.net/driver-zoran/
23354Q:	https://patchwork.linuxtv.org/project/linux-media/list/
23355F:	Documentation/driver-api/media/drivers/zoran.rst
23356F:	drivers/media/pci/zoran/
23357
23358ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
23359M:	Minchan Kim <minchan@kernel.org>
23360M:	Sergey Senozhatsky <senozhatsky@chromium.org>
23361L:	linux-kernel@vger.kernel.org
23362S:	Maintained
23363F:	Documentation/admin-guide/blockdev/zram.rst
23364F:	drivers/block/zram/
23365
23366ZS DECSTATION Z85C30 SERIAL DRIVER
23367M:	"Maciej W. Rozycki" <macro@orcam.me.uk>
23368S:	Maintained
23369F:	drivers/tty/serial/zs.*
23370
23371ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
23372M:	Minchan Kim <minchan@kernel.org>
23373M:	Sergey Senozhatsky <senozhatsky@chromium.org>
23374L:	linux-mm@kvack.org
23375S:	Maintained
23376F:	Documentation/mm/zsmalloc.rst
23377F:	include/linux/zsmalloc.h
23378F:	mm/zsmalloc.c
23379
23380ZSTD
23381M:	Nick Terrell <terrelln@fb.com>
23382S:	Maintained
23383B:	https://github.com/facebook/zstd/issues
23384T:	git https://github.com/terrelln/linux.git
23385F:	include/linux/zstd*
23386F:	lib/zstd/
23387F:	lib/decompress_unzstd.c
23388F:	crypto/zstd.c
23389N:	zstd
23390K:	zstd
23391
23392ZSWAP COMPRESSED SWAP CACHING
23393M:	Seth Jennings <sjenning@redhat.com>
23394M:	Dan Streetman <ddstreet@ieee.org>
23395M:	Vitaly Wool <vitaly.wool@konsulko.com>
23396L:	linux-mm@kvack.org
23397S:	Maintained
23398F:	mm/zswap.c
23399
23400NXP BLUETOOTH WIRELESS DRIVERS
23401M:	Amitkumar Karwar <amitkumar.karwar@nxp.com>
23402M:	Neeraj Kale <neeraj.sanjaykale@nxp.com>
23403S:	Maintained
23404F:	Documentation/devicetree/bindings/net/bluetooth/nxp,88w8987-bt.yaml
23405F:	drivers/bluetooth/btnxpuart.c
23406
23407THE REST
23408M:	Linus Torvalds <torvalds@linux-foundation.org>
23409L:	linux-kernel@vger.kernel.org
23410S:	Buried alive in reporters
23411T:	git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
23412F:	*
23413F:	*/
23414