xref: /openbmc/linux/MAINTAINERS (revision ea47eed33a3fe3d919e6e3cf4e4eb5507b817188)
1
2
3	List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below.  This will make things
6easier on the maintainers.  Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91.	Always _test_ your changes, however small, on at least 4 or
10	5 people, preferably many more.
11
122.	Try to release a few ALPHA test versions to the net. Announce
13	them onto the kernel channel and await results. This is especially
14	important for device drivers, because often that's the only way
15	you will find things like the fact version 3 firmware needs
16	a magic fix you didn't know about, or some clown changed the
17	chips on a board and not its name.  (Don't laugh!  Look at the
18	SMC etherpower for that.)
19
203.	Make sure your changes compile correctly in multiple
21	configurations. In particular check that changes work both as a
22	module and built into the kernel.
23
244.	When you are happy with a change make it generally available for
25	testing and await feedback.
26
275.	Make a patch available to the relevant maintainer in the list. Use
28	'diff -u' to make the patch easy to merge. Be prepared to get your
29	changes sent back with seemingly silly requests about formatting
30	and variable names.  These aren't as silly as they seem. One
31	job the maintainers (and especially Linus) do is to keep things
32	looking the same. Sometimes this means that the clever hack in
33	your driver to get around a problem actually needs to become a
34	generalized kernel feature ready for next time.
35
36	PLEASE check your patch with the automated style checker
37	(scripts/checkpatch.pl) to catch trivial style violations.
38	See Documentation/process/coding-style.rst for guidance here.
39
40	PLEASE CC: the maintainers and mailing lists that are generated
41	by scripts/get_maintainer.pl.  The results returned by the
42	script will be best if you have git installed and are making
43	your changes in a branch derived from Linus' latest git tree.
44	See Documentation/process/submitting-patches.rst for details.
45
46	PLEASE try to include any credit lines you want added with the
47	patch. It avoids people being missed off by mistake and makes
48	it easier to know who wants adding and who doesn't.
49
50	PLEASE document known bugs. If it doesn't work for everything
51	or does something very odd once a month document it.
52
53	PLEASE remember that submissions must be made under the terms
54	of the Linux Foundation certificate of contribution and should
55	include a Signed-off-by: line.  The current version of this
56	"Developer's Certificate of Origin" (DCO) is listed in the file
57	Documentation/process/submitting-patches.rst.
58
596.	Make sure you have the right to send any changes you make. If you
60	do changes at work you may find your employer owns the patch
61	not you.
62
637.	When sending security related changes or reports to a maintainer
64	please Cc: security@kernel.org, especially if the maintainer
65	does not respond. Please keep in mind that the security team is
66	a small set of people who can be efficient only when working on
67	verified bugs. Please only Cc: this list when you have identified
68	that the bug would present a short-term risk to other users if it
69	were publicly disclosed. For example, reports of address leaks do
70	not represent an immediate threat and are better handled publicly,
71	and ideally, should come with a patch proposal. Please do not send
72	automated reports to this list either. Such bugs will be handled
73	better and faster in the usual public places.
74
758.	Happy hacking.
76
77Descriptions of section entries:
78
79	P: Person (obsolete)
80	M: Mail patches to: FullName <address@domain>
81	R: Designated reviewer: FullName <address@domain>
82	   These reviewers should be CCed on patches.
83	L: Mailing list that is relevant to this area
84	W: Web-page with status/info
85	B: URI for where to file bugs. A web-page with detailed bug
86	   filing info, a direct bug tracker link, or a mailto: URI.
87	C: URI for chat protocol, server and channel where developers
88	   usually hang out, for example irc://server/channel.
89	Q: Patchwork web based patch tracking system site
90	T: SCM tree type and location.
91	   Type is one of: git, hg, quilt, stgit, topgit
92	S: Status, one of the following:
93	   Supported:	Someone is actually paid to look after this.
94	   Maintained:	Someone actually looks after it.
95	   Odd Fixes:	It has a maintainer but they don't have time to do
96			much other than throw the odd patch in. See below..
97	   Orphan:	No current maintainer [but maybe you could take the
98			role as you write your new code].
99	   Obsolete:	Old code. Something tagged obsolete generally means
100			it has been replaced by a better system and you
101			should be using that.
102	F: Files and directories with wildcard patterns.
103	   A trailing slash includes all files and subdirectory files.
104	   F:	drivers/net/	all files in and below drivers/net
105	   F:	drivers/net/*	all files in drivers/net, but not below
106	   F:	*/net/*		all files in "any top level directory"/net
107	   One pattern per line.  Multiple F: lines acceptable.
108	N: Files and directories with regex patterns.
109	   N:	[^a-z]tegra	all files whose path contains the word tegra
110	   One pattern per line.  Multiple N: lines acceptable.
111	   scripts/get_maintainer.pl has different behavior for files that
112	   match F: pattern and matches of N: patterns.  By default,
113	   get_maintainer will not look at git log history when an F: pattern
114	   match occurs.  When an N: match occurs, git log history is used
115	   to also notify the people that have git commit signatures.
116	X: Files and directories that are NOT maintained, same rules as F:
117	   Files exclusions are tested before file matches.
118	   Can be useful for excluding a specific subdirectory, for instance:
119	   F:	net/
120	   X:	net/ipv6/
121	   matches all files in and below net excluding net/ipv6/
122	K: Keyword perl extended regex pattern to match content in a
123	   patch or file.  For instance:
124	   K: of_get_profile
125	      matches patches or files that contain "of_get_profile"
126	   K: \b(printk|pr_(info|err))\b
127	      matches patches or files that contain one or more of the words
128	      printk, pr_info or pr_err
129	   One regex pattern per line.  Multiple K: lines acceptable.
130
131Note: For the hard of thinking, this list is meant to remain in alphabetical
132order. If you could add yourselves to it in alphabetical order that would be
133so much easier [Ed]
134
135Maintainers List (try to look for most precise areas first)
136
137		-----------------------------------
138
1393C59X NETWORK DRIVER
140M:	Steffen Klassert <klassert@kernel.org>
141L:	netdev@vger.kernel.org
142S:	Odd Fixes
143F:	Documentation/networking/vortex.txt
144F:	drivers/net/ethernet/3com/3c59x.c
145
1463CR990 NETWORK DRIVER
147M:	David Dillow <dave@thedillows.org>
148L:	netdev@vger.kernel.org
149S:	Maintained
150F:	drivers/net/ethernet/3com/typhoon*
151
1523WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
153M:	Adam Radford <aradford@gmail.com>
154L:	linux-scsi@vger.kernel.org
155W:	http://www.lsi.com
156S:	Supported
157F:	drivers/scsi/3w-*
158
15953C700 AND 53C700-66 SCSI DRIVER
160M:	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
161L:	linux-scsi@vger.kernel.org
162S:	Maintained
163F:	drivers/scsi/53c700*
164
1656LOWPAN GENERIC (BTLE/IEEE 802.15.4)
166M:	Alexander Aring <alex.aring@gmail.com>
167M:	Jukka Rissanen <jukka.rissanen@linux.intel.com>
168L:	linux-bluetooth@vger.kernel.org
169L:	linux-wpan@vger.kernel.org
170S:	Maintained
171F:	net/6lowpan/
172F:	include/net/6lowpan.h
173F:	Documentation/networking/6lowpan.txt
174
1756PACK NETWORK DRIVER FOR AX.25
176M:	Andreas Koensgen <ajk@comnets.uni-bremen.de>
177L:	linux-hams@vger.kernel.org
178S:	Maintained
179F:	drivers/net/hamradio/6pack.c
180
1818169 10/100/1000 GIGABIT ETHERNET DRIVER
182M:	Realtek linux nic maintainers <nic_swsd@realtek.com>
183L:	netdev@vger.kernel.org
184S:	Maintained
185F:	drivers/net/ethernet/realtek/r8169.c
186
1878250/16?50 (AND CLONE UARTS) SERIAL DRIVER
188M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
189L:	linux-serial@vger.kernel.org
190S:	Maintained
191T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
192F:	drivers/tty/serial/8250*
193F:	include/linux/serial_8250.h
194
1958390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
196L:	netdev@vger.kernel.org
197S:	Orphan / Obsolete
198F:	drivers/net/ethernet/8390/
199
2009P FILE SYSTEM
201M:	Eric Van Hensbergen <ericvh@gmail.com>
202M:	Ron Minnich <rminnich@sandia.gov>
203M:	Latchesar Ionkov <lucho@ionkov.net>
204L:	v9fs-developer@lists.sourceforge.net
205W:	http://swik.net/v9fs
206Q:	http://patchwork.kernel.org/project/v9fs-devel/list/
207T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
208S:	Maintained
209F:	Documentation/filesystems/9p.txt
210F:	fs/9p/
211F:	net/9p/
212F:	include/net/9p/
213F:	include/uapi/linux/virtio_9p.h
214F:	include/trace/events/9p.h
215
216A8293 MEDIA DRIVER
217M:	Antti Palosaari <crope@iki.fi>
218L:	linux-media@vger.kernel.org
219W:	https://linuxtv.org
220W:	http://palosaari.fi/linux/
221Q:	http://patchwork.linuxtv.org/project/linux-media/list/
222T:	git git://linuxtv.org/anttip/media_tree.git
223S:	Maintained
224F:	drivers/media/dvb-frontends/a8293*
225
226AACRAID SCSI RAID DRIVER
227M:	Adaptec OEM Raid Solutions <aacraid@microsemi.com>
228L:	linux-scsi@vger.kernel.org
229W:	http://www.adaptec.com/
230S:	Supported
231F:	Documentation/scsi/aacraid.txt
232F:	drivers/scsi/aacraid/
233
234ABI/API
235L:	linux-api@vger.kernel.org
236F:	include/linux/syscalls.h
237F:	kernel/sys_ni.c
238
239ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
240M:	Hans de Goede <hdegoede@redhat.com>
241L:	linux-hwmon@vger.kernel.org
242S:	Maintained
243F:	drivers/hwmon/abituguru.c
244
245ABIT UGURU 3 HARDWARE MONITOR DRIVER
246M:	Alistair John Strachan <alistair@devzero.co.uk>
247L:	linux-hwmon@vger.kernel.org
248S:	Maintained
249F:	drivers/hwmon/abituguru3.c
250
251ACCES 104-DIO-48E GPIO DRIVER
252M:	William Breathitt Gray <vilhelm.gray@gmail.com>
253L:	linux-gpio@vger.kernel.org
254S:	Maintained
255F:	drivers/gpio/gpio-104-dio-48e.c
256
257ACCES 104-IDI-48 GPIO DRIVER
258M:	"William Breathitt Gray" <vilhelm.gray@gmail.com>
259L:	linux-gpio@vger.kernel.org
260S:	Maintained
261F:	drivers/gpio/gpio-104-idi-48.c
262
263ACCES 104-IDIO-16 GPIO DRIVER
264M:	"William Breathitt Gray" <vilhelm.gray@gmail.com>
265L:	linux-gpio@vger.kernel.org
266S:	Maintained
267F:	drivers/gpio/gpio-104-idio-16.c
268
269ACCES 104-QUAD-8 IIO DRIVER
270M:	William Breathitt Gray <vilhelm.gray@gmail.com>
271L:	linux-iio@vger.kernel.org
272S:	Maintained
273F:	Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
274F:	drivers/iio/counter/104-quad-8.c
275
276ACCES PCI-IDIO-16 GPIO DRIVER
277M:	William Breathitt Gray <vilhelm.gray@gmail.com>
278L:	linux-gpio@vger.kernel.org
279S:	Maintained
280F:	drivers/gpio/gpio-pci-idio-16.c
281
282ACCES PCIe-IDIO-24 GPIO DRIVER
283M:	William Breathitt Gray <vilhelm.gray@gmail.com>
284L:	linux-gpio@vger.kernel.org
285S:	Maintained
286F:	drivers/gpio/gpio-pcie-idio-24.c
287
288ACENIC DRIVER
289M:	Jes Sorensen <jes@trained-monkey.org>
290L:	linux-acenic@sunsite.dk
291S:	Maintained
292F:	drivers/net/ethernet/alteon/acenic*
293
294ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
295M:	Peter Feuerer <peter@piie.net>
296L:	platform-driver-x86@vger.kernel.org
297W:	http://piie.net/?section=acerhdf
298S:	Maintained
299F:	drivers/platform/x86/acerhdf.c
300
301ACER WMI LAPTOP EXTRAS
302M:	"Lee, Chun-Yi" <jlee@suse.com>
303L:	platform-driver-x86@vger.kernel.org
304S:	Maintained
305F:	drivers/platform/x86/acer-wmi.c
306
307ACPI
308M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
309M:	Len Brown <lenb@kernel.org>
310L:	linux-acpi@vger.kernel.org
311W:	https://01.org/linux-acpi
312Q:	https://patchwork.kernel.org/project/linux-acpi/list/
313T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
314B:	https://bugzilla.kernel.org
315S:	Supported
316F:	drivers/acpi/
317F:	drivers/pnp/pnpacpi/
318F:	include/linux/acpi.h
319F:	include/linux/fwnode.h
320F:	include/acpi/
321F:	Documentation/acpi/
322F:	Documentation/ABI/testing/sysfs-bus-acpi
323F:	Documentation/ABI/testing/configfs-acpi
324F:	drivers/pci/*acpi*
325F:	drivers/pci/*/*acpi*
326F:	drivers/pci/*/*/*acpi*
327F:	tools/power/acpi/
328
329ACPI APEI
330M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
331M:	Len Brown <lenb@kernel.org>
332L:	linux-acpi@vger.kernel.org
333R:	Tony Luck <tony.luck@intel.com>
334R:	Borislav Petkov <bp@alien8.de>
335F:	drivers/acpi/apei/
336
337ACPI COMPONENT ARCHITECTURE (ACPICA)
338M:	Robert Moore <robert.moore@intel.com>
339M:	Erik Schmauss <erik.schmauss@intel.com>
340M:	"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
341L:	linux-acpi@vger.kernel.org
342L:	devel@acpica.org
343W:	https://acpica.org/
344W:	https://github.com/acpica/acpica/
345Q:	https://patchwork.kernel.org/project/linux-acpi/list/
346T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
347B:	https://bugzilla.kernel.org
348B:	https://bugs.acpica.org
349S:	Supported
350F:	drivers/acpi/acpica/
351F:	include/acpi/
352F:	tools/power/acpi/
353
354ACPI FAN DRIVER
355M:	Zhang Rui <rui.zhang@intel.com>
356L:	linux-acpi@vger.kernel.org
357W:	https://01.org/linux-acpi
358B:	https://bugzilla.kernel.org
359S:	Supported
360F:	drivers/acpi/fan.c
361
362ACPI FOR ARM64 (ACPI/arm64)
363M:	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
364M:	Hanjun Guo <hanjun.guo@linaro.org>
365M:	Sudeep Holla <sudeep.holla@arm.com>
366L:	linux-acpi@vger.kernel.org
367S:	Maintained
368F:	drivers/acpi/arm64
369
370ACPI PMIC DRIVERS
371M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
372M:	Len Brown <lenb@kernel.org>
373R:	Andy Shevchenko <andy@infradead.org>
374R:	Mika Westerberg <mika.westerberg@linux.intel.com>
375L:	linux-acpi@vger.kernel.org
376Q:	https://patchwork.kernel.org/project/linux-acpi/list/
377T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378B:	https://bugzilla.kernel.org
379S:	Supported
380F:	drivers/acpi/pmic/
381
382ACPI THERMAL DRIVER
383M:	Zhang Rui <rui.zhang@intel.com>
384L:	linux-acpi@vger.kernel.org
385W:	https://01.org/linux-acpi
386B:	https://bugzilla.kernel.org
387S:	Supported
388F:	drivers/acpi/*thermal*
389
390ACPI VIDEO DRIVER
391M:	Zhang Rui <rui.zhang@intel.com>
392L:	linux-acpi@vger.kernel.org
393W:	https://01.org/linux-acpi
394B:	https://bugzilla.kernel.org
395S:	Supported
396F:	drivers/acpi/acpi_video.c
397
398ACPI WMI DRIVER
399L:	platform-driver-x86@vger.kernel.org
400S:	Orphan
401F:	drivers/platform/x86/wmi.c
402F:	include/uapi/linux/wmi.h
403
404AD1889 ALSA SOUND DRIVER
405M:	Thibaut Varene <T-Bone@parisc-linux.org>
406W:	http://wiki.parisc-linux.org/AD1889
407L:	linux-parisc@vger.kernel.org
408S:	Maintained
409F:	sound/pci/ad1889.*
410
411AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
412M:	Michael Hennerich <michael.hennerich@analog.com>
413W:	http://wiki.analog.com/AD5254
414W:	http://ez.analog.com/community/linux-device-drivers
415S:	Supported
416F:	drivers/misc/ad525x_dpot.c
417
418AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
419M:	Michael Hennerich <michael.hennerich@analog.com>
420W:	http://wiki.analog.com/AD5398
421W:	http://ez.analog.com/community/linux-device-drivers
422S:	Supported
423F:	drivers/regulator/ad5398.c
424
425AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
426M:	Michael Hennerich <michael.hennerich@analog.com>
427W:	http://wiki.analog.com/AD7142
428W:	http://ez.analog.com/community/linux-device-drivers
429S:	Supported
430F:	drivers/input/misc/ad714x.c
431
432AD7877 TOUCHSCREEN DRIVER
433M:	Michael Hennerich <michael.hennerich@analog.com>
434W:	http://wiki.analog.com/AD7877
435W:	http://ez.analog.com/community/linux-device-drivers
436S:	Supported
437F:	drivers/input/touchscreen/ad7877.c
438
439AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
440M:	Michael Hennerich <michael.hennerich@analog.com>
441W:	http://wiki.analog.com/AD7879
442W:	http://ez.analog.com/community/linux-device-drivers
443S:	Supported
444F:	drivers/input/touchscreen/ad7879.c
445
446ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
447M:	Jiri Kosina <jikos@kernel.org>
448S:	Maintained
449
450ADF7242 IEEE 802.15.4 RADIO DRIVER
451M:	Michael Hennerich <michael.hennerich@analog.com>
452W:	https://wiki.analog.com/ADF7242
453W:	http://ez.analog.com/community/linux-device-drivers
454L:	linux-wpan@vger.kernel.org
455S:	Supported
456F:	drivers/net/ieee802154/adf7242.c
457F:	Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
458
459ADM1025 HARDWARE MONITOR DRIVER
460M:	Jean Delvare <jdelvare@suse.com>
461L:	linux-hwmon@vger.kernel.org
462S:	Maintained
463F:	Documentation/hwmon/adm1025
464F:	drivers/hwmon/adm1025.c
465
466ADM1029 HARDWARE MONITOR DRIVER
467M:	Corentin Labbe <clabbe.montjoie@gmail.com>
468L:	linux-hwmon@vger.kernel.org
469S:	Maintained
470F:	drivers/hwmon/adm1029.c
471
472ADM8211 WIRELESS DRIVER
473L:	linux-wireless@vger.kernel.org
474W:	http://wireless.kernel.org/
475S:	Orphan
476F:	drivers/net/wireless/admtek/adm8211.*
477
478ADP1653 FLASH CONTROLLER DRIVER
479M:	Sakari Ailus <sakari.ailus@iki.fi>
480L:	linux-media@vger.kernel.org
481S:	Maintained
482F:	drivers/media/i2c/adp1653.c
483F:	include/media/i2c/adp1653.h
484
485ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
486M:	Michael Hennerich <michael.hennerich@analog.com>
487W:	http://wiki.analog.com/ADP5520
488W:	http://ez.analog.com/community/linux-device-drivers
489S:	Supported
490F:	drivers/mfd/adp5520.c
491F:	drivers/video/backlight/adp5520_bl.c
492F:	drivers/leds/leds-adp5520.c
493F:	drivers/gpio/gpio-adp5520.c
494F:	drivers/input/keyboard/adp5520-keys.c
495
496ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
497M:	Michael Hennerich <michael.hennerich@analog.com>
498W:	http://wiki.analog.com/ADP5588
499W:	http://ez.analog.com/community/linux-device-drivers
500S:	Supported
501F:	drivers/input/keyboard/adp5588-keys.c
502F:	drivers/gpio/gpio-adp5588.c
503
504ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
505M:	Michael Hennerich <michael.hennerich@analog.com>
506W:	http://wiki.analog.com/ADP8860
507W:	http://ez.analog.com/community/linux-device-drivers
508S:	Supported
509F:	drivers/video/backlight/adp8860_bl.c
510
511ADS1015 HARDWARE MONITOR DRIVER
512M:	Dirk Eibach <eibach@gdsys.de>
513L:	linux-hwmon@vger.kernel.org
514S:	Maintained
515F:	Documentation/hwmon/ads1015
516F:	drivers/hwmon/ads1015.c
517F:	include/linux/platform_data/ads1015.h
518
519ADT746X FAN DRIVER
520M:	Colin Leroy <colin@colino.net>
521S:	Maintained
522F:	drivers/macintosh/therm_adt746x.c
523
524ADT7475 HARDWARE MONITOR DRIVER
525M:	Jean Delvare <jdelvare@suse.com>
526L:	linux-hwmon@vger.kernel.org
527S:	Maintained
528F:	Documentation/hwmon/adt7475
529F:	drivers/hwmon/adt7475.c
530
531ADVANSYS SCSI DRIVER
532M:	Matthew Wilcox <matthew@wil.cx>
533M:	Hannes Reinecke <hare@suse.com>
534L:	linux-scsi@vger.kernel.org
535S:	Maintained
536F:	Documentation/scsi/advansys.txt
537F:	drivers/scsi/advansys.c
538
539ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
540M:	Michael Hennerich <michael.hennerich@analog.com>
541W:	http://wiki.analog.com/ADXL345
542W:	http://ez.analog.com/community/linux-device-drivers
543S:	Supported
544F:	drivers/input/misc/adxl34x.c
545
546AF9013 MEDIA DRIVER
547M:	Antti Palosaari <crope@iki.fi>
548L:	linux-media@vger.kernel.org
549W:	https://linuxtv.org
550W:	http://palosaari.fi/linux/
551Q:	http://patchwork.linuxtv.org/project/linux-media/list/
552T:	git git://linuxtv.org/anttip/media_tree.git
553S:	Maintained
554F:	drivers/media/dvb-frontends/af9013*
555
556AF9033 MEDIA DRIVER
557M:	Antti Palosaari <crope@iki.fi>
558L:	linux-media@vger.kernel.org
559W:	https://linuxtv.org
560W:	http://palosaari.fi/linux/
561Q:	http://patchwork.linuxtv.org/project/linux-media/list/
562T:	git git://linuxtv.org/anttip/media_tree.git
563S:	Maintained
564F:	drivers/media/dvb-frontends/af9033*
565
566AFFS FILE SYSTEM
567M:	David Sterba <dsterba@suse.com>
568L:	linux-fsdevel@vger.kernel.org
569S:	Odd Fixes
570F:	Documentation/filesystems/affs.txt
571F:	fs/affs/
572
573AFS FILESYSTEM
574M:	David Howells <dhowells@redhat.com>
575L:	linux-afs@lists.infradead.org
576S:	Supported
577F:	fs/afs/
578F:	include/trace/events/afs.h
579F:	Documentation/filesystems/afs.txt
580W:	https://www.infradead.org/~dhowells/kafs/
581
582AGPGART DRIVER
583M:	David Airlie <airlied@linux.ie>
584T:	git git://people.freedesktop.org/~airlied/linux (part of drm maint)
585S:	Maintained
586F:	drivers/char/agp/
587F:	include/linux/agp*
588F:	include/uapi/linux/agp*
589
590AHA152X SCSI DRIVER
591M:	"Juergen E. Fischer" <fischer@norbit.de>
592L:	linux-scsi@vger.kernel.org
593S:	Maintained
594F:	drivers/scsi/aha152x*
595F:	drivers/scsi/pcmcia/aha152x*
596
597AIC7XXX / AIC79XX SCSI DRIVER
598M:	Hannes Reinecke <hare@suse.com>
599L:	linux-scsi@vger.kernel.org
600S:	Maintained
601F:	drivers/scsi/aic7xxx/
602
603AIMSLAB FM RADIO RECEIVER DRIVER
604M:	Hans Verkuil <hverkuil@xs4all.nl>
605L:	linux-media@vger.kernel.org
606T:	git git://linuxtv.org/media_tree.git
607W:	https://linuxtv.org
608S:	Maintained
609F:	drivers/media/radio/radio-aimslab*
610
611AIO
612M:	Benjamin LaHaise <bcrl@kvack.org>
613L:	linux-aio@kvack.org
614S:	Supported
615F:	fs/aio.c
616F:	include/linux/*aio*.h
617
618AIRSPY MEDIA DRIVER
619M:	Antti Palosaari <crope@iki.fi>
620L:	linux-media@vger.kernel.org
621W:	https://linuxtv.org
622W:	http://palosaari.fi/linux/
623Q:	http://patchwork.linuxtv.org/project/linux-media/list/
624T:	git git://linuxtv.org/anttip/media_tree.git
625S:	Maintained
626F:	drivers/media/usb/airspy/
627
628ALACRITECH GIGABIT ETHERNET DRIVER
629M:	Lino Sanfilippo <LinoSanfilippo@gmx.de>
630S:	Maintained
631F:	drivers/net/ethernet/alacritech/*
632
633ALCATEL SPEEDTOUCH USB DRIVER
634M:	Duncan Sands <duncan.sands@free.fr>
635L:	linux-usb@vger.kernel.org
636W:	http://www.linux-usb.org/SpeedTouch/
637S:	Maintained
638F:	drivers/usb/atm/speedtch.c
639F:	drivers/usb/atm/usbatm.c
640
641ALCHEMY AU1XX0 MMC DRIVER
642M:	Manuel Lauss <manuel.lauss@gmail.com>
643S:	Maintained
644F:	drivers/mmc/host/au1xmmc.c
645
646ALI1563 I2C DRIVER
647M:	Rudolf Marek <r.marek@assembler.cz>
648L:	linux-i2c@vger.kernel.org
649S:	Maintained
650F:	Documentation/i2c/busses/i2c-ali1563
651F:	drivers/i2c/busses/i2c-ali1563.c
652
653ALLWINNER SECURITY SYSTEM
654M:	Corentin Labbe <clabbe.montjoie@gmail.com>
655L:	linux-crypto@vger.kernel.org
656S:	Maintained
657F:	drivers/crypto/sunxi-ss/
658
659ALPHA PORT
660M:	Richard Henderson <rth@twiddle.net>
661M:	Ivan Kokshaysky <ink@jurassic.park.msu.ru>
662M:	Matt Turner <mattst88@gmail.com>
663S:	Odd Fixes
664L:	linux-alpha@vger.kernel.org
665F:	arch/alpha/
666
667ALPS PS/2 TOUCHPAD DRIVER
668R:	Pali Rohár <pali.rohar@gmail.com>
669F:	drivers/input/mouse/alps.*
670
671ALTERA I2C CONTROLLER DRIVER
672M:	Thor Thayer <thor.thayer@linux.intel.com>
673S:	Maintained
674F:	drivers/i2c/busses/i2c-altera.c
675
676ALTERA MAILBOX DRIVER
677M:	Ley Foon Tan <lftan@altera.com>
678L:	nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
679S:	Maintained
680F:	drivers/mailbox/mailbox-altera.c
681
682ALTERA PIO DRIVER
683M:	Tien Hock Loh <thloh@altera.com>
684L:	linux-gpio@vger.kernel.org
685S:	Maintained
686F:	drivers/gpio/gpio-altera.c
687
688ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
689M:	Thor Thayer <thor.thayer@linux.intel.com>
690S:	Maintained
691F:	drivers/gpio/gpio-altera-a10sr.c
692F:	drivers/mfd/altera-a10sr.c
693F:	drivers/reset/reset-a10sr.c
694F:	include/linux/mfd/altera-a10sr.h
695F:	include/dt-bindings/reset/altr,rst-mgr-a10sr.h
696
697ALTERA TRIPLE SPEED ETHERNET DRIVER
698M:	Vince Bridgers <vbridger@opensource.altera.com>
699L:	netdev@vger.kernel.org
700L:	nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
701S:	Maintained
702F:	drivers/net/ethernet/altera/
703
704ALTERA UART/JTAG UART SERIAL DRIVERS
705M:	Tobias Klauser <tklauser@distanz.ch>
706L:	linux-serial@vger.kernel.org
707L:	nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
708S:	Maintained
709F:	drivers/tty/serial/altera_uart.c
710F:	drivers/tty/serial/altera_jtaguart.c
711F:	include/linux/altera_uart.h
712F:	include/linux/altera_jtaguart.h
713
714AMAZON ETHERNET DRIVERS
715M:	Netanel Belgazal <netanel@amazon.com>
716R:	Saeed Bishara <saeedb@amazon.com>
717R:	Zorik Machulsky <zorik@amazon.com>
718L:	netdev@vger.kernel.org
719S:	Supported
720F:	Documentation/networking/ena.txt
721F:	drivers/net/ethernet/amazon/
722
723AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
724M:	Tom Lendacky <thomas.lendacky@amd.com>
725M:	Gary Hook <gary.hook@amd.com>
726L:	linux-crypto@vger.kernel.org
727S:	Supported
728F:	drivers/crypto/ccp/
729F:	include/linux/ccp.h
730
731AMD FAM15H PROCESSOR POWER MONITORING DRIVER
732M:	Huang Rui <ray.huang@amd.com>
733L:	linux-hwmon@vger.kernel.org
734S:	Supported
735F:	Documentation/hwmon/fam15h_power
736F:	drivers/hwmon/fam15h_power.c
737
738AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
739L:	linux-geode@lists.infradead.org (moderated for non-subscribers)
740S:	Orphan
741F:	drivers/usb/gadget/udc/amd5536udc.*
742
743AMD GEODE PROCESSOR/CHIPSET SUPPORT
744P:	Andres Salomon <dilinger@queued.net>
745L:	linux-geode@lists.infradead.org (moderated for non-subscribers)
746W:	http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
747S:	Supported
748F:	drivers/char/hw_random/geode-rng.c
749F:	drivers/crypto/geode*
750F:	drivers/video/fbdev/geode/
751F:	arch/x86/include/asm/geode.h
752
753AMD IOMMU (AMD-VI)
754M:	Joerg Roedel <joro@8bytes.org>
755L:	iommu@lists.linux-foundation.org
756T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
757S:	Maintained
758F:	drivers/iommu/amd_iommu*.[ch]
759F:	include/linux/amd-iommu.h
760
761AMD KFD
762M:	Oded Gabbay <oded.gabbay@gmail.com>
763L:	dri-devel@lists.freedesktop.org
764T:	git git://people.freedesktop.org/~gabbayo/linux.git
765S:	Supported
766F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
767F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
768F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
769F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
770F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
771F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_fence.c
772F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
773F:	drivers/gpu/drm/amd/amdkfd/
774F:	drivers/gpu/drm/amd/include/cik_structs.h
775F:	drivers/gpu/drm/amd/include/kgd_kfd_interface.h
776F:	drivers/gpu/drm/amd/include/vi_structs.h
777F:	drivers/gpu/drm/amd/include/v9_structs.h
778F:	include/uapi/linux/kfd_ioctl.h
779
780AMD SEATTLE DEVICE TREE SUPPORT
781M:	Brijesh Singh <brijeshkumar.singh@amd.com>
782M:	Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
783M:	Tom Lendacky <thomas.lendacky@amd.com>
784S:	Supported
785F:	arch/arm64/boot/dts/amd/
786
787AMD XGBE DRIVER
788M:	Tom Lendacky <thomas.lendacky@amd.com>
789L:	netdev@vger.kernel.org
790S:	Supported
791F:	drivers/net/ethernet/amd/xgbe/
792F:	arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
793
794AMS (Apple Motion Sensor) DRIVER
795M:	Michael Hanselmann <linux-kernel@hansmi.ch>
796S:	Supported
797F:	drivers/macintosh/ams/
798
799ANALOG DEVICES INC AD5686 DRIVER
800M:	Stefan Popa <stefan.popa@analog.com>
801L:	linux-pm@vger.kernel.org
802W:	http://ez.analog.com/community/linux-device-drivers
803S:	Supported
804F:	drivers/iio/dac/ad5686*
805F:	drivers/iio/dac/ad5696*
806
807ANALOG DEVICES INC AD9389B DRIVER
808M:	Hans Verkuil <hans.verkuil@cisco.com>
809L:	linux-media@vger.kernel.org
810S:	Maintained
811F:	drivers/media/i2c/ad9389b*
812
813ANALOG DEVICES INC ADV7180 DRIVER
814M:	Lars-Peter Clausen <lars@metafoo.de>
815L:	linux-media@vger.kernel.org
816W:	http://ez.analog.com/community/linux-device-drivers
817S:	Supported
818F:	drivers/media/i2c/adv7180.c
819
820ANALOG DEVICES INC ADV748X DRIVER
821M:	Kieran Bingham <kieran.bingham@ideasonboard.com>
822L:	linux-media@vger.kernel.org
823S:	Maintained
824F:	drivers/media/i2c/adv748x/*
825
826ANALOG DEVICES INC ADV7511 DRIVER
827M:	Hans Verkuil <hans.verkuil@cisco.com>
828L:	linux-media@vger.kernel.org
829S:	Maintained
830F:	drivers/media/i2c/adv7511*
831
832ANALOG DEVICES INC ADV7604 DRIVER
833M:	Hans Verkuil <hans.verkuil@cisco.com>
834L:	linux-media@vger.kernel.org
835S:	Maintained
836F:	drivers/media/i2c/adv7604*
837
838ANALOG DEVICES INC ADV7842 DRIVER
839M:	Hans Verkuil <hans.verkuil@cisco.com>
840L:	linux-media@vger.kernel.org
841S:	Maintained
842F:	drivers/media/i2c/adv7842*
843
844ANALOG DEVICES INC ASOC CODEC DRIVERS
845M:	Lars-Peter Clausen <lars@metafoo.de>
846L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
847W:	http://wiki.analog.com/
848W:	http://ez.analog.com/community/linux-device-drivers
849S:	Supported
850F:	sound/soc/codecs/adau*
851F:	sound/soc/codecs/adav*
852F:	sound/soc/codecs/ad1*
853F:	sound/soc/codecs/ad7*
854F:	sound/soc/codecs/ssm*
855F:	sound/soc/codecs/sigmadsp.*
856
857ANALOG DEVICES INC DMA DRIVERS
858M:	Lars-Peter Clausen <lars@metafoo.de>
859W:	http://ez.analog.com/community/linux-device-drivers
860S:	Supported
861F:	drivers/dma/dma-axi-dmac.c
862
863ANALOG DEVICES INC IIO DRIVERS
864M:	Lars-Peter Clausen <lars@metafoo.de>
865M:	Michael Hennerich <Michael.Hennerich@analog.com>
866W:	http://wiki.analog.com/
867W:	http://ez.analog.com/community/linux-device-drivers
868S:	Supported
869F:	Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
870F:	Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
871F:	drivers/iio/*/ad*
872F:	drivers/iio/adc/ltc2497*
873X:	drivers/iio/*/adjd*
874F:	drivers/staging/iio/*/ad*
875
876ANDES ARCHITECTURE
877M:	Greentime Hu <green.hu@gmail.com>
878M:	Vincent Chen <deanbo422@gmail.com>
879T:	git https://github.com/andestech/linux.git
880S:	Supported
881F:	arch/nds32/
882F:	Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
883F:	Documentation/devicetree/bindings/nds32/
884K:	nds32
885N:	nds32
886
887ANDROID CONFIG FRAGMENTS
888M:	Rob Herring <robh@kernel.org>
889S:	Supported
890F:	kernel/configs/android*
891
892ANDROID DRIVERS
893M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
894M:	Arve Hjønnevåg <arve@android.com>
895M:	Todd Kjos <tkjos@android.com>
896M:	Martijn Coenen <maco@android.com>
897T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
898L:	devel@driverdev.osuosl.org
899S:	Supported
900F:	drivers/android/
901F:	drivers/staging/android/
902
903ANDROID GOLDFISH PIC DRIVER
904M:	Miodrag Dinic <miodrag.dinic@mips.com>
905S:	Supported
906F:	Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
907F:	drivers/irqchip/irq-goldfish-pic.c
908
909ANDROID GOLDFISH RTC DRIVER
910M:	Miodrag Dinic <miodrag.dinic@mips.com>
911S:	Supported
912F:	Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
913F:	drivers/rtc/rtc-goldfish.c
914
915ANDROID ION DRIVER
916M:	Laura Abbott <labbott@redhat.com>
917M:	Sumit Semwal <sumit.semwal@linaro.org>
918L:	devel@driverdev.osuosl.org
919L:	dri-devel@lists.freedesktop.org
920L:	linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
921S:	Supported
922F:	drivers/staging/android/ion
923F:	drivers/staging/android/uapi/ion.h
924
925AOA (Apple Onboard Audio) ALSA DRIVER
926M:	Johannes Berg <johannes@sipsolutions.net>
927L:	linuxppc-dev@lists.ozlabs.org
928L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
929S:	Maintained
930F:	sound/aoa/
931
932APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
933M:	William Breathitt Gray <vilhelm.gray@gmail.com>
934L:	linux-iio@vger.kernel.org
935S:	Maintained
936F:	drivers/iio/adc/stx104.c
937
938APM DRIVER
939M:	Jiri Kosina <jikos@kernel.org>
940S:	Odd fixes
941T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
942F:	arch/x86/kernel/apm_32.c
943F:	include/linux/apm_bios.h
944F:	include/uapi/linux/apm_bios.h
945F:	drivers/char/apm-emulation.c
946
947APPARMOR SECURITY MODULE
948M:	John Johansen <john.johansen@canonical.com>
949L:	apparmor@lists.ubuntu.com (subscribers-only, general discussion)
950W:	wiki.apparmor.net
951T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
952S:	Supported
953F:	security/apparmor/
954F:	Documentation/admin-guide/LSM/apparmor.rst
955
956APPLE BCM5974 MULTITOUCH DRIVER
957M:	Henrik Rydberg <rydberg@bitmath.org>
958L:	linux-input@vger.kernel.org
959S:	Odd fixes
960F:	drivers/input/mouse/bcm5974.c
961
962APPLE SMC DRIVER
963M:	Henrik Rydberg <rydberg@bitmath.org>
964L:	linux-hwmon@vger.kernel.org
965S:	Odd fixes
966F:	drivers/hwmon/applesmc.c
967
968APPLETALK NETWORK LAYER
969L:	netdev@vger.kernel.org
970S:	Odd fixes
971F:	drivers/net/appletalk/
972F:	net/appletalk/
973
974APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
975M:	Duc Dang <dhdang@apm.com>
976S:	Supported
977F:	arch/arm64/boot/dts/apm/
978
979APPLIED MICRO (APM) X-GENE SOC EDAC
980M:	Loc Ho <lho@apm.com>
981S:	Supported
982F:	drivers/edac/xgene_edac.c
983F:	Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
984
985APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
986M:	Iyappan Subramanian <isubramanian@apm.com>
987M:	Keyur Chudgar <kchudgar@apm.com>
988S:	Supported
989F:	drivers/net/ethernet/apm/xgene-v2/
990
991APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
992M:	Iyappan Subramanian <isubramanian@apm.com>
993M:	Keyur Chudgar <kchudgar@apm.com>
994M:	Quan Nguyen <qnguyen@apm.com>
995S:	Supported
996F:	drivers/net/ethernet/apm/xgene/
997F:	drivers/net/phy/mdio-xgene.c
998F:	Documentation/devicetree/bindings/net/apm-xgene-enet.txt
999F:	Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1000
1001APPLIED MICRO (APM) X-GENE SOC PMU
1002M:	Tai Nguyen <ttnguyen@apm.com>
1003S:	Supported
1004F:	drivers/perf/xgene_pmu.c
1005F:	Documentation/perf/xgene-pmu.txt
1006F:	Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1007
1008APTINA CAMERA SENSOR PLL
1009M:	Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1010L:	linux-media@vger.kernel.org
1011S:	Maintained
1012F:	drivers/media/i2c/aptina-pll.*
1013
1014ARC FRAMEBUFFER DRIVER
1015M:	Jaya Kumar <jayalk@intworks.biz>
1016S:	Maintained
1017F:	drivers/video/fbdev/arcfb.c
1018F:	drivers/video/fbdev/core/fb_defio.c
1019
1020ARC PGU DRM DRIVER
1021M:	Alexey Brodkin <abrodkin@synopsys.com>
1022S:	Supported
1023F:	drivers/gpu/drm/arc/
1024F:	Documentation/devicetree/bindings/display/snps,arcpgu.txt
1025
1026ARCNET NETWORK LAYER
1027M:	Michael Grzeschik <m.grzeschik@pengutronix.de>
1028L:	netdev@vger.kernel.org
1029S:	Maintained
1030F:	drivers/net/arcnet/
1031F:	include/uapi/linux/if_arcnet.h
1032
1033ARM ARCHITECTED TIMER DRIVER
1034M:	Mark Rutland <mark.rutland@arm.com>
1035M:	Marc Zyngier <marc.zyngier@arm.com>
1036L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1037S:	Maintained
1038F:	arch/arm/include/asm/arch_timer.h
1039F:	arch/arm64/include/asm/arch_timer.h
1040F:	drivers/clocksource/arm_arch_timer.c
1041
1042ARM HDLCD DRM DRIVER
1043M:	Liviu Dudau <liviu.dudau@arm.com>
1044S:	Supported
1045F:	drivers/gpu/drm/arm/hdlcd_*
1046F:	Documentation/devicetree/bindings/display/arm,hdlcd.txt
1047
1048ARM MALI-DP DRM DRIVER
1049M:	Liviu Dudau <liviu.dudau@arm.com>
1050M:	Brian Starkey <brian.starkey@arm.com>
1051M:	Mali DP Maintainers <malidp@foss.arm.com>
1052S:	Supported
1053F:	drivers/gpu/drm/arm/
1054F:	Documentation/devicetree/bindings/display/arm,malidp.txt
1055
1056ARM MFM AND FLOPPY DRIVERS
1057M:	Ian Molton <spyro@f2s.com>
1058S:	Maintained
1059F:	arch/arm/lib/floppydma.S
1060F:	arch/arm/include/asm/floppy.h
1061
1062ARM PMU PROFILING AND DEBUGGING
1063M:	Will Deacon <will.deacon@arm.com>
1064M:	Mark Rutland <mark.rutland@arm.com>
1065S:	Maintained
1066L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067F:	arch/arm*/kernel/perf_*
1068F:	arch/arm/oprofile/common.c
1069F:	arch/arm*/kernel/hw_breakpoint.c
1070F:	arch/arm*/include/asm/hw_breakpoint.h
1071F:	arch/arm*/include/asm/perf_event.h
1072F:	drivers/perf/*
1073F:	include/linux/perf/arm_pmu.h
1074F:	Documentation/devicetree/bindings/arm/pmu.txt
1075F:	Documentation/devicetree/bindings/perf/
1076
1077ARM PORT
1078M:	Russell King <linux@armlinux.org.uk>
1079L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1080W:	http://www.armlinux.org.uk/
1081S:	Odd Fixes
1082T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git
1083F:	arch/arm/
1084X:	arch/arm/boot/dts/
1085
1086ARM PRIMECELL AACI PL041 DRIVER
1087M:	Russell King <linux@armlinux.org.uk>
1088S:	Odd Fixes
1089F:	sound/arm/aaci.*
1090
1091ARM PRIMECELL BUS SUPPORT
1092M:	Russell King <linux@armlinux.org.uk>
1093S:	Odd Fixes
1094F:	drivers/amba/
1095F:	include/linux/amba/bus.h
1096
1097ARM PRIMECELL CLCD PL110 DRIVER
1098M:	Russell King <linux@armlinux.org.uk>
1099S:	Odd Fixes
1100F:	drivers/video/fbdev/amba-clcd.*
1101
1102ARM PRIMECELL KMI PL050 DRIVER
1103M:	Russell King <linux@armlinux.org.uk>
1104S:	Odd Fixes
1105F:	drivers/input/serio/ambakmi.*
1106F:	include/linux/amba/kmi.h
1107
1108ARM PRIMECELL MMCI PL180/1 DRIVER
1109M:	Russell King <linux@armlinux.org.uk>
1110S:	Odd Fixes
1111F:	drivers/mmc/host/mmci.*
1112F:	include/linux/amba/mmci.h
1113
1114ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1115M:	Russell King <linux@armlinux.org.uk>
1116S:	Odd Fixes
1117F:	drivers/tty/serial/amba-pl01*.c
1118F:	include/linux/amba/serial.h
1119
1120ARM SMMU DRIVERS
1121M:	Will Deacon <will.deacon@arm.com>
1122R:	Robin Murphy <robin.murphy@arm.com>
1123L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1124S:	Maintained
1125F:	drivers/iommu/arm-smmu.c
1126F:	drivers/iommu/arm-smmu-v3.c
1127F:	drivers/iommu/io-pgtable-arm.c
1128F:	drivers/iommu/io-pgtable-arm-v7s.c
1129
1130ARM SUB-ARCHITECTURES
1131L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1132S:	Maintained
1133F:	arch/arm/mach-*/
1134F:	arch/arm/plat-*/
1135T:	git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1136
1137ARM/ACTIONS SEMI ARCHITECTURE
1138M:	Andreas Färber <afaerber@suse.de>
1139L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1140S:	Maintained
1141N:	owl
1142F:	arch/arm/mach-actions/
1143F:	arch/arm/boot/dts/owl-*
1144F:	arch/arm64/boot/dts/actions/
1145F:	drivers/clocksource/owl-*
1146F:	drivers/pinctrl/actions/*
1147F:	drivers/soc/actions/
1148F:	include/dt-bindings/power/owl-*
1149F:	include/linux/soc/actions/
1150F:	Documentation/devicetree/bindings/arm/actions.txt
1151F:	Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1152F:	Documentation/devicetree/bindings/power/actions,owl-sps.txt
1153F:	Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1154
1155ARM/ADS SPHERE MACHINE SUPPORT
1156M:	Lennert Buytenhek <kernel@wantstofly.org>
1157L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1158S:	Maintained
1159
1160ARM/AFEB9260 MACHINE SUPPORT
1161M:	Sergey Lapin <slapin@ossfans.org>
1162L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1163S:	Maintained
1164
1165ARM/AJECO 1ARM MACHINE SUPPORT
1166M:	Lennert Buytenhek <kernel@wantstofly.org>
1167L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1168S:	Maintained
1169
1170ARM/Allwinner SoC Clock Support
1171M:	Emilio López <emilio@elopez.com.ar>
1172S:	Maintained
1173F:	drivers/clk/sunxi/
1174
1175ARM/Allwinner sunXi SoC support
1176M:	Maxime Ripard <maxime.ripard@bootlin.com>
1177M:	Chen-Yu Tsai <wens@csie.org>
1178L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179S:	Maintained
1180N:	sun[x456789]i
1181N:	sun50i
1182F:	arch/arm/mach-sunxi/
1183F:	arch/arm64/boot/dts/allwinner/
1184F:	drivers/clk/sunxi-ng/
1185F:	drivers/pinctrl/sunxi/
1186F:	drivers/soc/sunxi/
1187T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1188
1189ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1190M:	Neil Armstrong <narmstrong@baylibre.com>
1191M:	Jerome Brunet <jbrunet@baylibre.com>
1192L:	linux-amlogic@lists.infradead.org
1193S:	Maintained
1194F:	drivers/clk/meson/
1195F:	include/dt-bindings/clock/meson*
1196F:	include/dt-bindings/clock/gxbb*
1197F:	Documentation/devicetree/bindings/clock/amlogic*
1198
1199ARM/Amlogic Meson SoC support
1200M:	Carlo Caione <carlo@caione.org>
1201M:	Kevin Hilman <khilman@baylibre.com>
1202L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1203L:	linux-amlogic@lists.infradead.org
1204W:	http://linux-meson.com/
1205S:	Maintained
1206F:	arch/arm/mach-meson/
1207F:	arch/arm/boot/dts/meson*
1208F:	arch/arm64/boot/dts/amlogic/
1209F:	drivers/pinctrl/meson/
1210F:	drivers/mmc/host/meson*
1211N:	meson
1212
1213ARM/Annapurna Labs ALPINE ARCHITECTURE
1214M:	Tsahee Zidenberg <tsahee@annapurnalabs.com>
1215M:	Antoine Tenart <antoine.tenart@free-electrons.com>
1216L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1217S:	Maintained
1218F:	arch/arm/mach-alpine/
1219F:	arch/arm/boot/dts/alpine*
1220F:	arch/arm64/boot/dts/al/
1221F:	drivers/*/*alpine*
1222
1223ARM/ARTPEC MACHINE SUPPORT
1224M:	Jesper Nilsson <jesper.nilsson@axis.com>
1225M:	Lars Persson <lars.persson@axis.com>
1226S:	Maintained
1227L:	linux-arm-kernel@axis.com
1228F:	arch/arm/mach-artpec
1229F:	arch/arm/boot/dts/artpec6*
1230F:	drivers/clk/axis
1231F:	drivers/crypto/axis
1232F:	drivers/pinctrl/pinctrl-artpec*
1233F:	Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1234
1235ARM/ASPEED I2C DRIVER
1236M:	Brendan Higgins <brendanhiggins@google.com>
1237R:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
1238R:	Joel Stanley <joel@jms.id.au>
1239L:	linux-i2c@vger.kernel.org
1240L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
1241S:	Maintained
1242F:	drivers/irqchip/irq-aspeed-i2c-ic.c
1243F:	drivers/i2c/busses/i2c-aspeed.c
1244F:	Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1245F:	Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1246
1247ARM/ASPEED MACHINE SUPPORT
1248M:	Joel Stanley <joel@jms.id.au>
1249R:	Andrew Jeffery <andrew@aj.id.au>
1250L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251L:	linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1252Q:	https://patchwork.ozlabs.org/project/linux-aspeed/list/
1253S:	Supported
1254T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1255F:	arch/arm/mach-aspeed/
1256F:	arch/arm/boot/dts/aspeed-*
1257N:	aspeed
1258
1259ARM/ATMEL AT91 Clock Support
1260M:	Boris Brezillon <boris.brezillon@bootlin.com>
1261S:	Maintained
1262F:	drivers/clk/at91
1263
1264ARM/CALXEDA HIGHBANK ARCHITECTURE
1265M:	Rob Herring <robh@kernel.org>
1266L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1267S:	Maintained
1268F:	arch/arm/mach-highbank/
1269F:	arch/arm/boot/dts/highbank.dts
1270F:	arch/arm/boot/dts/ecx-*.dts*
1271
1272ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1273M:	Krzysztof Halasa <khalasa@piap.pl>
1274S:	Maintained
1275F:	arch/arm/mach-cns3xxx/
1276
1277ARM/CAVIUM THUNDER NETWORK DRIVER
1278M:	Sunil Goutham <sgoutham@cavium.com>
1279M:	Robert Richter <rric@kernel.org>
1280L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1281S:	Supported
1282F:	drivers/net/ethernet/cavium/thunder/
1283
1284ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1285M:	Lukasz Majewski <lukma@denx.de>
1286L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1287S:	Maintained
1288F:	arch/arm/mach-ep93xx/ts72xx.c
1289
1290ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1291M:	Alexander Shiyan <shc_work@mail.ru>
1292L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1293S:	Odd Fixes
1294N:	clps711x
1295
1296ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1297M:	Lennert Buytenhek <kernel@wantstofly.org>
1298L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1299S:	Maintained
1300
1301ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1302M:	Hartley Sweeten <hsweeten@visionengravers.com>
1303M:	Alexander Sverdlin <alexander.sverdlin@gmail.com>
1304L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1305S:	Maintained
1306F:	arch/arm/mach-ep93xx/
1307F:	arch/arm/mach-ep93xx/include/mach/
1308
1309ARM/CLKDEV SUPPORT
1310M:	Russell King <linux@armlinux.org.uk>
1311L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1312S:	Maintained
1313T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1314F:	drivers/clk/clkdev.c
1315
1316ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1317M:	Mike Rapoport <mike@compulab.co.il>
1318L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1319S:	Maintained
1320
1321ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1322M:	Baruch Siach <baruch@tkos.co.il>
1323L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324S:	Maintained
1325F:	arch/arm/boot/dts/cx92755*
1326N:	digicolor
1327
1328ARM/CONTEC MICRO9 MACHINE SUPPORT
1329M:	Hubert Feurstein <hubert.feurstein@contec.at>
1330S:	Maintained
1331F:	arch/arm/mach-ep93xx/micro9.c
1332
1333ARM/CORESIGHT FRAMEWORK AND DRIVERS
1334M:	Mathieu Poirier <mathieu.poirier@linaro.org>
1335L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1336S:	Maintained
1337F:	drivers/hwtracing/coresight/*
1338F:	Documentation/trace/coresight.txt
1339F:	Documentation/trace/coresight-cpu-debug.txt
1340F:	Documentation/devicetree/bindings/arm/coresight.txt
1341F:	Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1342F:	Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1343F:	tools/perf/arch/arm/util/pmu.c
1344F:	tools/perf/arch/arm/util/auxtrace.c
1345F:	tools/perf/arch/arm/util/cs-etm.c
1346F:	tools/perf/arch/arm/util/cs-etm.h
1347F:	tools/perf/util/cs-etm.*
1348F:	tools/perf/util/cs-etm-decoder/*
1349
1350ARM/CORGI MACHINE SUPPORT
1351M:	Richard Purdie <rpurdie@rpsys.net>
1352S:	Maintained
1353
1354ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1355M:	Hans Ulli Kroll <ulli.kroll@googlemail.com>
1356M:	Linus Walleij <linus.walleij@linaro.org>
1357L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1358T:	git git://github.com/ulli-kroll/linux.git
1359S:	Maintained
1360F:	Documentation/devicetree/bindings/arm/gemini.txt
1361F:	Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1362F:	Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1363F:	Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1364F:	arch/arm/mach-gemini/
1365F:	drivers/net/ethernet/cortina/
1366F:	drivers/pinctrl/pinctrl-gemini.c
1367F:	drivers/rtc/rtc-ftrtc010.c
1368
1369ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1370M:	Barry Song <baohua@kernel.org>
1371L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1372T:	git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1373S:	Maintained
1374F:	arch/arm/boot/dts/prima2*
1375F:	arch/arm/mach-prima2/
1376F:	drivers/clk/sirf/
1377F:	drivers/clocksource/timer-prima2.c
1378F:	drivers/clocksource/timer-atlas7.c
1379N:	[^a-z]sirf
1380
1381ARM/EBSA110 MACHINE SUPPORT
1382M:	Russell King <linux@armlinux.org.uk>
1383L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1384W:	http://www.armlinux.org.uk/
1385S:	Maintained
1386F:	arch/arm/mach-ebsa110/
1387F:	drivers/net/ethernet/amd/am79c961a.*
1388
1389ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1390M:	Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1391R:	Pengutronix Kernel Team <kernel@pengutronix.de>
1392L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393S:	Maintained
1394N:	efm32
1395
1396ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1397M:	Robert Jarzmik <robert.jarzmik@free.fr>
1398L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1399S:	Maintained
1400F:	arch/arm/mach-pxa/ezx.c
1401
1402ARM/FARADAY FA526 PORT
1403M:	Hans Ulli Kroll <ulli.kroll@googlemail.com>
1404L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1405S:	Maintained
1406T:	git git://git.berlios.de/gemini-board
1407F:	arch/arm/mm/*-fa*
1408
1409ARM/FOOTBRIDGE ARCHITECTURE
1410M:	Russell King <linux@armlinux.org.uk>
1411L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1412W:	http://www.armlinux.org.uk/
1413S:	Maintained
1414F:	arch/arm/include/asm/hardware/dec21285.h
1415F:	arch/arm/mach-footbridge/
1416
1417ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1418M:	Shawn Guo <shawnguo@kernel.org>
1419M:	Sascha Hauer <s.hauer@pengutronix.de>
1420R:	Pengutronix Kernel Team <kernel@pengutronix.de>
1421R:	Fabio Estevam <fabio.estevam@nxp.com>
1422R:	NXP Linux Team <linux-imx@nxp.com>
1423L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1424S:	Maintained
1425T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1426F:	arch/arm/mach-imx/
1427F:	arch/arm/mach-mxs/
1428F:	arch/arm/boot/dts/imx*
1429F:	arch/arm/configs/imx*_defconfig
1430F:	drivers/clk/imx/
1431F:	drivers/soc/imx/
1432F:	include/soc/imx/
1433
1434ARM/FREESCALE VYBRID ARM ARCHITECTURE
1435M:	Shawn Guo <shawnguo@kernel.org>
1436M:	Sascha Hauer <s.hauer@pengutronix.de>
1437R:	Pengutronix Kernel Team <kernel@pengutronix.de>
1438R:	Stefan Agner <stefan@agner.ch>
1439L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1440S:	Maintained
1441T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1442F:	arch/arm/mach-imx/*vf610*
1443F:	arch/arm/boot/dts/vf*
1444
1445ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1446M:	Lennert Buytenhek <kernel@wantstofly.org>
1447L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1448S:	Maintained
1449
1450ARM/GUMSTIX MACHINE SUPPORT
1451M:	Steve Sakoman <sakoman@gmail.com>
1452L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1453S:	Maintained
1454
1455ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1456M:	Philipp Zabel <philipp.zabel@gmail.com>
1457M:	Paul Parsons <lost.distance@yahoo.com>
1458L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1459S:	Maintained
1460F:	arch/arm/mach-pxa/hx4700.c
1461F:	arch/arm/mach-pxa/include/mach/hx4700.h
1462F:	sound/soc/pxa/hx4700.c
1463
1464ARM/HISILICON SOC SUPPORT
1465M:	Wei Xu <xuwei5@hisilicon.com>
1466L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1467W:	http://www.hisilicon.com
1468S:	Supported
1469T:	git git://github.com/hisilicon/linux-hisi.git
1470F:	arch/arm/mach-hisi/
1471F:	arch/arm/boot/dts/hi3*
1472F:	arch/arm/boot/dts/hip*
1473F:	arch/arm/boot/dts/hisi*
1474F:	arch/arm64/boot/dts/hisilicon/
1475
1476ARM/HP JORNADA 7XX MACHINE SUPPORT
1477M:	Kristoffer Ericson <kristoffer.ericson@gmail.com>
1478W:	www.jlime.com
1479S:	Maintained
1480T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1481F:	arch/arm/mach-sa1100/jornada720.c
1482F:	arch/arm/mach-sa1100/include/mach/jornada720.h
1483
1484ARM/IGEP MACHINE SUPPORT
1485M:	Enric Balletbo i Serra <eballetbo@gmail.com>
1486M:	Javier Martinez Canillas <javier@dowhile0.org>
1487L:	linux-omap@vger.kernel.org
1488L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1489S:	Maintained
1490F:	arch/arm/boot/dts/omap3-igep*
1491
1492ARM/INCOME PXA270 SUPPORT
1493M:	Marek Vasut <marek.vasut@gmail.com>
1494L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1495S:	Maintained
1496F:	arch/arm/mach-pxa/colibri-pxa270-income.c
1497
1498ARM/INTEL IOP13XX ARM ARCHITECTURE
1499M:	Lennert Buytenhek <kernel@wantstofly.org>
1500L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1501S:	Maintained
1502
1503ARM/INTEL IOP32X ARM ARCHITECTURE
1504M:	Lennert Buytenhek <kernel@wantstofly.org>
1505L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1506S:	Maintained
1507
1508ARM/INTEL IOP33X ARM ARCHITECTURE
1509L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1510S:	Orphan
1511
1512ARM/INTEL IQ81342EX MACHINE SUPPORT
1513M:	Lennert Buytenhek <kernel@wantstofly.org>
1514L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1515S:	Maintained
1516
1517ARM/INTEL IXDP2850 MACHINE SUPPORT
1518M:	Lennert Buytenhek <kernel@wantstofly.org>
1519L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1520S:	Maintained
1521
1522ARM/INTEL IXP4XX ARM ARCHITECTURE
1523M:	Imre Kaloz <kaloz@openwrt.org>
1524M:	Krzysztof Halasa <khalasa@piap.pl>
1525L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1526S:	Maintained
1527F:	arch/arm/mach-ixp4xx/
1528
1529ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1530M:	Jonathan Cameron <jic23@cam.ac.uk>
1531L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1532S:	Maintained
1533F:	arch/arm/mach-pxa/stargate2.c
1534F:	drivers/pcmcia/pxa2xx_stargate2.c
1535
1536ARM/INTEL XSC3 (MANZANO) ARM CORE
1537M:	Lennert Buytenhek <kernel@wantstofly.org>
1538L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1539S:	Maintained
1540
1541ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1542M:	Lennert Buytenhek <kernel@wantstofly.org>
1543L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1544S:	Maintained
1545
1546ARM/LG1K ARCHITECTURE
1547M:	Chanho Min <chanho.min@lge.com>
1548L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1549S:	Maintained
1550F:	arch/arm64/boot/dts/lg/
1551
1552ARM/LOGICPD PXA270 MACHINE SUPPORT
1553M:	Lennert Buytenhek <kernel@wantstofly.org>
1554L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1555S:	Maintained
1556
1557ARM/LPC18XX ARCHITECTURE
1558M:	Joachim Eastwood <manabian@gmail.com>
1559L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1560S:	Maintained
1561F:	arch/arm/boot/dts/lpc43*
1562F:	drivers/clk/nxp/clk-lpc18xx*
1563F:	drivers/clocksource/time-lpc32xx.c
1564F:	drivers/i2c/busses/i2c-lpc2k.c
1565F:	drivers/memory/pl172.c
1566F:	drivers/mtd/spi-nor/nxp-spifi.c
1567F:	drivers/rtc/rtc-lpc24xx.c
1568N:	lpc18xx
1569
1570ARM/LPC32XX SOC SUPPORT
1571M:	Vladimir Zapolskiy <vz@mleia.com>
1572M:	Sylvain Lemieux <slemieux.tyco@gmail.com>
1573L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1574T:	git git://github.com/vzapolskiy/linux-lpc32xx.git
1575S:	Maintained
1576F:	arch/arm/boot/dts/lpc32*
1577F:	arch/arm/mach-lpc32xx/
1578F:	drivers/i2c/busses/i2c-pnx.c
1579F:	drivers/net/ethernet/nxp/lpc_eth.c
1580F:	drivers/usb/host/ohci-nxp.c
1581F:	drivers/watchdog/pnx4008_wdt.c
1582N:	lpc32xx
1583
1584ARM/MAGICIAN MACHINE SUPPORT
1585M:	Philipp Zabel <philipp.zabel@gmail.com>
1586S:	Maintained
1587
1588ARM/Marvell Dove/MV78xx0/Orion SOC support
1589M:	Jason Cooper <jason@lakedaemon.net>
1590M:	Andrew Lunn <andrew@lunn.ch>
1591M:	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1592M:	Gregory Clement <gregory.clement@bootlin.com>
1593L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594S:	Maintained
1595F:	Documentation/devicetree/bindings/soc/dove/
1596F:	arch/arm/mach-dove/
1597F:	arch/arm/mach-mv78xx0/
1598F:	arch/arm/mach-orion5x/
1599F:	arch/arm/plat-orion/
1600F:	arch/arm/boot/dts/dove*
1601F:	arch/arm/boot/dts/orion5x*
1602
1603ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1604M:	Jason Cooper <jason@lakedaemon.net>
1605M:	Andrew Lunn <andrew@lunn.ch>
1606M:	Gregory Clement <gregory.clement@bootlin.com>
1607M:	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1608L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1609S:	Maintained
1610F:	arch/arm/boot/dts/armada*
1611F:	arch/arm/boot/dts/kirkwood*
1612F:	arch/arm/configs/mvebu_*_defconfig
1613F:	arch/arm/mach-mvebu/
1614F:	arch/arm64/boot/dts/marvell/armada*
1615F:	drivers/cpufreq/armada-37xx-cpufreq.c
1616F:	drivers/cpufreq/mvebu-cpufreq.c
1617F:	drivers/irqchip/irq-armada-370-xp.c
1618F:	drivers/irqchip/irq-mvebu-*
1619F:	drivers/pinctrl/mvebu/
1620F:	drivers/rtc/rtc-armada38x.c
1621
1622ARM/Mediatek RTC DRIVER
1623M:	Eddie Huang <eddie.huang@mediatek.com>
1624M:	Sean Wang <sean.wang@mediatek.com>
1625L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1626L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1627S:	Maintained
1628F:	Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1629F:	drivers/rtc/rtc-mt6397.c
1630F:	drivers/rtc/rtc-mt7622.c
1631
1632ARM/Mediatek SoC support
1633M:	Matthias Brugger <matthias.bgg@gmail.com>
1634L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1635L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1636S:	Maintained
1637F:	arch/arm/boot/dts/mt6*
1638F:	arch/arm/boot/dts/mt7*
1639F:	arch/arm/boot/dts/mt8*
1640F:	arch/arm/mach-mediatek/
1641F:	arch/arm64/boot/dts/mediatek/
1642N:	mtk
1643K:	mediatek
1644
1645ARM/Mediatek USB3 PHY DRIVER
1646M:	Chunfeng Yun <chunfeng.yun@mediatek.com>
1647L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1648L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1649S:	Maintained
1650F:	drivers/phy/mediatek/phy-mtk-tphy.c
1651
1652ARM/MICREL KS8695 ARCHITECTURE
1653M:	Greg Ungerer <gerg@uclinux.org>
1654L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1655F:	arch/arm/mach-ks8695/
1656S:	Odd Fixes
1657
1658ARM/Microchip (AT91) SoC support
1659M:	Nicolas Ferre <nicolas.ferre@microchip.com>
1660M:	Alexandre Belloni <alexandre.belloni@bootlin.com>
1661L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1662W:	http://www.linux4sam.org
1663T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1664S:	Supported
1665N:	at91
1666N:	atmel
1667F:	arch/arm/mach-at91/
1668F:	include/soc/at91/
1669F:	arch/arm/boot/dts/at91*.dts
1670F:	arch/arm/boot/dts/at91*.dtsi
1671F:	arch/arm/boot/dts/sama*.dts
1672F:	arch/arm/boot/dts/sama*.dtsi
1673F:	arch/arm/include/debug/at91.S
1674F:	drivers/memory/atmel*
1675F:	drivers/watchdog/sama5d4_wdt.c
1676X:	drivers/input/touchscreen/atmel_mxt_ts.c
1677X:	drivers/net/wireless/atmel/
1678
1679ARM/MIOA701 MACHINE SUPPORT
1680M:	Robert Jarzmik <robert.jarzmik@free.fr>
1681L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1682F:	arch/arm/mach-pxa/mioa701.c
1683S:	Maintained
1684
1685ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1686M:	Michael Petchkovsky <mkpetch@internode.on.net>
1687S:	Maintained
1688
1689ARM/NOMADIK/U300/Ux500 ARCHITECTURES
1690M:	Linus Walleij <linus.walleij@linaro.org>
1691L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1692S:	Maintained
1693F:	arch/arm/mach-nomadik/
1694F:	arch/arm/mach-u300/
1695F:	arch/arm/mach-ux500/
1696F:	arch/arm/boot/dts/ste-*
1697F:	drivers/clk/clk-nomadik.c
1698F:	drivers/clk/clk-u300.c
1699F:	drivers/clocksource/clksrc-dbx500-prcmu.c
1700F:	drivers/clocksource/timer-u300.c
1701F:	drivers/dma/coh901318*
1702F:	drivers/dma/ste_dma40*
1703F:	drivers/hwspinlock/u8500_hsem.c
1704F:	drivers/i2c/busses/i2c-nomadik.c
1705F:	drivers/i2c/busses/i2c-stu300.c
1706F:	drivers/mfd/ab3100*
1707F:	drivers/mfd/ab8500*
1708F:	drivers/mfd/abx500*
1709F:	drivers/mfd/dbx500*
1710F:	drivers/mfd/db8500*
1711F:	drivers/pinctrl/nomadik/
1712F:	drivers/pinctrl/pinctrl-coh901*
1713F:	drivers/pinctrl/pinctrl-u300.c
1714F:	drivers/rtc/rtc-ab3100.c
1715F:	drivers/rtc/rtc-ab8500.c
1716F:	drivers/rtc/rtc-coh901331.c
1717F:	drivers/rtc/rtc-pl031.c
1718F:	drivers/watchdog/coh901327_wdt.c
1719F:	Documentation/devicetree/bindings/arm/ste-*
1720F:	Documentation/devicetree/bindings/arm/ux500/
1721T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1722
1723ARM/NUVOTON NPCM ARCHITECTURE
1724M:	Avi Fishman <avifishman70@gmail.com>
1725M:	Tomer Maimon <tmaimon77@gmail.com>
1726R:	Patrick Venture <venture@google.com>
1727R:	Nancy Yuen <yuenn@google.com>
1728R:	Brendan Higgins <brendanhiggins@google.com>
1729L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
1730S:	Supported
1731F:	arch/arm/mach-npcm/
1732F:	arch/arm/boot/dts/nuvoton-npcm*
1733F:	include/dt-bindings/clock/nuvoton,npcm7xx-clks.h
1734F:	drivers/*/*npcm*
1735F:	Documentation/devicetree/bindings/*/*npcm*
1736F:	Documentation/devicetree/bindings/*/*/*npcm*
1737
1738ARM/NUVOTON W90X900 ARM ARCHITECTURE
1739M:	Wan ZongShun <mcuos.com@gmail.com>
1740L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1741W:	http://www.mcuos.com
1742S:	Maintained
1743F:	arch/arm/mach-w90x900/
1744F:	drivers/input/keyboard/w90p910_keypad.c
1745F:	drivers/input/touchscreen/w90p910_ts.c
1746F:	drivers/watchdog/nuc900_wdt.c
1747F:	drivers/net/ethernet/nuvoton/w90p910_ether.c
1748F:	drivers/mtd/nand/raw/nuc900_nand.c
1749F:	drivers/rtc/rtc-nuc900.c
1750F:	drivers/spi/spi-nuc900.c
1751F:	drivers/usb/host/ehci-w90x900.c
1752F:	drivers/video/fbdev/nuc900fb.c
1753
1754ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1755M:	Nelson Castillo <arhuaco@freaks-unidos.net>
1756L:	openmoko-kernel@lists.openmoko.org (subscribers-only)
1757W:	http://wiki.openmoko.org/wiki/Neo_FreeRunner
1758S:	Supported
1759
1760ARM/Orion SoC/Technologic Systems TS-78xx platform support
1761M:	Alexander Clouter <alex@digriz.org.uk>
1762L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763W:	http://www.digriz.org.uk/ts78xx/kernel
1764S:	Maintained
1765F:	arch/arm/mach-orion5x/ts78xx-*
1766
1767ARM/OXNAS platform support
1768M:	Neil Armstrong <narmstrong@baylibre.com>
1769L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1770L:	linux-oxnas@groups.io (moderated for non-subscribers)
1771S:	Maintained
1772F:	arch/arm/mach-oxnas/
1773F:	arch/arm/boot/dts/ox8*.dts*
1774N:	oxnas
1775
1776ARM/PALM TREO SUPPORT
1777M:	Tomas Cech <sleep_walker@suse.com>
1778L:	linux-arm-kernel@lists.infradead.org
1779W:	http://hackndev.com
1780S:	Maintained
1781F:	arch/arm/mach-pxa/palmtreo.*
1782
1783ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1784M:	Marek Vasut <marek.vasut@gmail.com>
1785L:	linux-arm-kernel@lists.infradead.org
1786W:	http://hackndev.com
1787S:	Maintained
1788F:	arch/arm/mach-pxa/include/mach/palmtx.h
1789F:	arch/arm/mach-pxa/palmtx.c
1790F:	arch/arm/mach-pxa/palmt5.*
1791F:	arch/arm/mach-pxa/include/mach/palmld.h
1792F:	arch/arm/mach-pxa/palmld.c
1793F:	arch/arm/mach-pxa/palmte2.*
1794F:	arch/arm/mach-pxa/include/mach/palmtc.h
1795F:	arch/arm/mach-pxa/palmtc.c
1796
1797ARM/PALMZ72 SUPPORT
1798M:	Sergey Lapin <slapin@ossfans.org>
1799L:	linux-arm-kernel@lists.infradead.org
1800W:	http://hackndev.com
1801S:	Maintained
1802F:	arch/arm/mach-pxa/palmz72.*
1803
1804ARM/PLEB SUPPORT
1805M:	Peter Chubb <pleb@gelato.unsw.edu.au>
1806W:	http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1807S:	Maintained
1808
1809ARM/PT DIGITAL BOARD PORT
1810M:	Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1811L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1812W:	http://www.armlinux.org.uk/
1813S:	Maintained
1814
1815ARM/QUALCOMM SUPPORT
1816M:	Andy Gross <andy.gross@linaro.org>
1817M:	David Brown <david.brown@linaro.org>
1818L:	linux-arm-msm@vger.kernel.org
1819L:	linux-soc@vger.kernel.org
1820S:	Maintained
1821F:	Documentation/devicetree/bindings/soc/qcom/
1822F:	arch/arm/boot/dts/qcom-*.dts
1823F:	arch/arm/boot/dts/qcom-*.dtsi
1824F:	arch/arm/mach-qcom/
1825F:	arch/arm64/boot/dts/qcom/*
1826F:	drivers/i2c/busses/i2c-qup.c
1827F:	drivers/clk/qcom/
1828F:	drivers/dma/qcom/
1829F:	drivers/soc/qcom/
1830F:	drivers/spi/spi-qup.c
1831F:	drivers/tty/serial/msm_serial.c
1832F:	drivers/*/pm8???-*
1833F:	drivers/mfd/ssbi.c
1834F:	drivers/firmware/qcom_scm*
1835T:	git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1836
1837ARM/RADISYS ENP2611 MACHINE SUPPORT
1838M:	Lennert Buytenhek <kernel@wantstofly.org>
1839L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1840S:	Maintained
1841
1842ARM/REALTEK ARCHITECTURE
1843M:	Andreas Färber <afaerber@suse.de>
1844L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845S:	Maintained
1846F:	arch/arm64/boot/dts/realtek/
1847F:	Documentation/devicetree/bindings/arm/realtek.txt
1848
1849ARM/RENESAS ARM64 ARCHITECTURE
1850M:	Simon Horman <horms@verge.net.au>
1851M:	Magnus Damm <magnus.damm@gmail.com>
1852L:	linux-renesas-soc@vger.kernel.org
1853Q:	http://patchwork.kernel.org/project/linux-renesas-soc/list/
1854T:	git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1855S:	Supported
1856F:	arch/arm64/boot/dts/renesas/
1857F:	Documentation/devicetree/bindings/arm/shmobile.txt
1858F:	drivers/soc/renesas/
1859F:	include/linux/soc/renesas/
1860
1861ARM/RISCPC ARCHITECTURE
1862M:	Russell King <linux@armlinux.org.uk>
1863L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1864W:	http://www.armlinux.org.uk/
1865S:	Maintained
1866F:	arch/arm/include/asm/hardware/entry-macro-iomd.S
1867F:	arch/arm/include/asm/hardware/ioc.h
1868F:	arch/arm/include/asm/hardware/iomd.h
1869F:	arch/arm/include/asm/hardware/memc.h
1870F:	arch/arm/mach-rpc/
1871F:	drivers/net/ethernet/8390/etherh.c
1872F:	drivers/net/ethernet/i825xx/ether1*
1873F:	drivers/net/ethernet/seeq/ether3*
1874F:	drivers/scsi/arm/
1875
1876ARM/Rockchip SoC support
1877M:	Heiko Stuebner <heiko@sntech.de>
1878L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1879L:	linux-rockchip@lists.infradead.org
1880T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1881S:	Maintained
1882F:	arch/arm/boot/dts/rk3*
1883F:	arch/arm/boot/dts/rv1108*
1884F:	arch/arm/mach-rockchip/
1885F:	drivers/clk/rockchip/
1886F:	drivers/i2c/busses/i2c-rk3x.c
1887F:	drivers/*/*rockchip*
1888F:	drivers/*/*/*rockchip*
1889F:	sound/soc/rockchip/
1890N:	rockchip
1891
1892ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1893M:	Kukjin Kim <kgene@kernel.org>
1894M:	Krzysztof Kozlowski <krzk@kernel.org>
1895L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1896L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1897Q:	https://patchwork.kernel.org/project/linux-samsung-soc/list/
1898S:	Maintained
1899F:	arch/arm/boot/dts/s3c*
1900F:	arch/arm/boot/dts/s5p*
1901F:	arch/arm/boot/dts/exynos*
1902F:	arch/arm64/boot/dts/exynos/
1903F:	arch/arm/plat-samsung/
1904F:	arch/arm/mach-s3c24*/
1905F:	arch/arm/mach-s3c64xx/
1906F:	arch/arm/mach-s5p*/
1907F:	arch/arm/mach-exynos*/
1908F:	drivers/*/*s3c24*
1909F:	drivers/*/*/*s3c24*
1910F:	drivers/*/*s3c64xx*
1911F:	drivers/*/*s5pv210*
1912F:	drivers/memory/samsung/*
1913F:	drivers/soc/samsung/*
1914F:	Documentation/arm/Samsung/
1915F:	Documentation/devicetree/bindings/arm/samsung/
1916F:	Documentation/devicetree/bindings/sram/samsung-sram.txt
1917F:	Documentation/devicetree/bindings/power/pd-samsung.txt
1918N:	exynos
1919
1920ARM/SAMSUNG MOBILE MACHINE SUPPORT
1921M:	Kyungmin Park <kyungmin.park@samsung.com>
1922L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1923S:	Maintained
1924F:	arch/arm/mach-s5pv210/
1925
1926ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1927M:	Kyungmin Park <kyungmin.park@samsung.com>
1928M:	Kamil Debski <kamil@wypas.org>
1929M:	Andrzej Hajda <a.hajda@samsung.com>
1930L:	linux-arm-kernel@lists.infradead.org
1931L:	linux-media@vger.kernel.org
1932S:	Maintained
1933F:	drivers/media/platform/s5p-g2d/
1934
1935ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1936M:	Marek Szyprowski <m.szyprowski@samsung.com>
1937L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1938L:	linux-media@vger.kernel.org
1939S:	Maintained
1940F:	drivers/media/platform/s5p-cec/
1941F:	Documentation/devicetree/bindings/media/s5p-cec.txt
1942
1943ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1944M:	Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1945M:	Jacek Anaszewski <jacek.anaszewski@gmail.com>
1946L:	linux-arm-kernel@lists.infradead.org
1947L:	linux-media@vger.kernel.org
1948S:	Maintained
1949F:	drivers/media/platform/s5p-jpeg/
1950
1951ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1952M:	Kyungmin Park <kyungmin.park@samsung.com>
1953M:	Kamil Debski <kamil@wypas.org>
1954M:	Jeongtae Park <jtp.park@samsung.com>
1955M:	Andrzej Hajda <a.hajda@samsung.com>
1956L:	linux-arm-kernel@lists.infradead.org
1957L:	linux-media@vger.kernel.org
1958S:	Maintained
1959F:	arch/arm/plat-samsung/s5p-dev-mfc.c
1960F:	drivers/media/platform/s5p-mfc/
1961
1962ARM/SHMOBILE ARM ARCHITECTURE
1963M:	Simon Horman <horms@verge.net.au>
1964M:	Magnus Damm <magnus.damm@gmail.com>
1965L:	linux-renesas-soc@vger.kernel.org
1966Q:	http://patchwork.kernel.org/project/linux-renesas-soc/list/
1967T:	git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1968S:	Supported
1969F:	arch/arm/boot/dts/emev2*
1970F:	arch/arm/boot/dts/r7s*
1971F:	arch/arm/boot/dts/r8a*
1972F:	arch/arm/boot/dts/sh*
1973F:	arch/arm/configs/shmobile_defconfig
1974F:	arch/arm/include/debug/renesas-scif.S
1975F:	arch/arm/mach-shmobile/
1976F:	Documentation/devicetree/bindings/arm/shmobile.txt
1977F:	drivers/soc/renesas/
1978F:	include/linux/soc/renesas/
1979
1980ARM/SOCFPGA ARCHITECTURE
1981M:	Dinh Nguyen <dinguyen@kernel.org>
1982S:	Maintained
1983F:	arch/arm/mach-socfpga/
1984F:	arch/arm/boot/dts/socfpga*
1985F:	arch/arm/configs/socfpga_defconfig
1986F:	arch/arm64/boot/dts/altera/
1987W:	http://www.rocketboards.org
1988T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1989
1990ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1991M:	Dinh Nguyen <dinguyen@kernel.org>
1992S:	Maintained
1993F:	drivers/clk/socfpga/
1994
1995ARM/SOCFPGA EDAC SUPPORT
1996M:	Thor Thayer <thor.thayer@linux.intel.com>
1997S:	Maintained
1998F:	drivers/edac/altera_edac.
1999
2000ARM/SPREADTRUM SoC SUPPORT
2001M:	Orson Zhai <orsonzhai@gmail.com>
2002M:	Baolin Wang <baolin.wang@linaro.org>
2003M:	Chunyan Zhang <zhang.lyra@gmail.com>
2004S:	Maintained
2005F:	arch/arm64/boot/dts/sprd
2006N:	sprd
2007
2008ARM/STI ARCHITECTURE
2009M:	Patrice Chotard <patrice.chotard@st.com>
2010L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2011W:	http://www.stlinux.com
2012S:	Maintained
2013F:	arch/arm/mach-sti/
2014F:	arch/arm/boot/dts/sti*
2015F:	drivers/char/hw_random/st-rng.c
2016F:	drivers/clocksource/arm_global_timer.c
2017F:	drivers/clocksource/clksrc_st_lpc.c
2018F:	drivers/cpufreq/sti-cpufreq.c
2019F:	drivers/dma/st_fdma*
2020F:	drivers/i2c/busses/i2c-st.c
2021F:	drivers/media/rc/st_rc.c
2022F:	drivers/media/platform/sti/c8sectpfe/
2023F:	drivers/mmc/host/sdhci-st.c
2024F:	drivers/phy/st/phy-miphy28lp.c
2025F:	drivers/phy/st/phy-stih407-usb.c
2026F:	drivers/pinctrl/pinctrl-st.c
2027F:	drivers/remoteproc/st_remoteproc.c
2028F:	drivers/remoteproc/st_slim_rproc.c
2029F:	drivers/reset/sti/
2030F:	drivers/rtc/rtc-st-lpc.c
2031F:	drivers/tty/serial/st-asc.c
2032F:	drivers/usb/dwc3/dwc3-st.c
2033F:	drivers/usb/host/ehci-st.c
2034F:	drivers/usb/host/ohci-st.c
2035F:	drivers/watchdog/st_lpc_wdt.c
2036F:	drivers/ata/ahci_st.c
2037F:	include/linux/remoteproc/st_slim_rproc.h
2038
2039ARM/STM32 ARCHITECTURE
2040M:	Maxime Coquelin <mcoquelin.stm32@gmail.com>
2041M:	Alexandre Torgue <alexandre.torgue@st.com>
2042L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2043S:	Maintained
2044T:	git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2045N:	stm32
2046F:	arch/arm/boot/dts/stm32*
2047F:	arch/arm/mach-stm32/
2048F:	drivers/clocksource/armv7m_systick.c
2049
2050ARM/Synaptics Berlin SoC support
2051M:	Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2052M:	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2053L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054S:	Maintained
2055F:	arch/arm/mach-berlin/
2056F:	arch/arm/boot/dts/berlin*
2057F:	arch/arm64/boot/dts/marvell/berlin*
2058
2059ARM/TANGO ARCHITECTURE
2060M:	Marc Gonzalez <marc.w.gonzalez@free.fr>
2061M:	Mans Rullgard <mans@mansr.com>
2062L:	linux-arm-kernel@lists.infradead.org
2063S:	Odd Fixes
2064N:	tango
2065
2066ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2067M:	Lennert Buytenhek <kernel@wantstofly.org>
2068L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2069S:	Maintained
2070
2071ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2072M:	Hans Verkuil <hans.verkuil@cisco.com>
2073L:	linux-tegra@vger.kernel.org
2074L:	linux-media@vger.kernel.org
2075S:	Maintained
2076F:	drivers/media/platform/tegra-cec/
2077F:	Documentation/devicetree/bindings/media/tegra-cec.txt
2078
2079ARM/TETON BGA MACHINE SUPPORT
2080M:	"Mark F. Brown" <mark.brown314@gmail.com>
2081L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2082S:	Maintained
2083
2084ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2085M:	Santosh Shilimkar <ssantosh@kernel.org>
2086L:	linux-kernel@vger.kernel.org
2087S:	Maintained
2088F:	drivers/memory/*emif*
2089
2090ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2091M:	Tero Kristo <t-kristo@ti.com>
2092M:	Nishanth Menon <nm@ti.com>
2093L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2094S:	Supported
2095F:	Documentation/devicetree/bindings/arm/ti/k3.txt
2096F:	arch/arm64/boot/dts/ti/k3-*
2097
2098ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2099M:	Santosh Shilimkar <ssantosh@kernel.org>
2100L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2101S:	Maintained
2102F:	arch/arm/mach-keystone/
2103F:	arch/arm/boot/dts/keystone-*
2104T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2105
2106ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2107M:	Santosh Shilimkar <ssantosh@kernel.org>
2108L:	linux-kernel@vger.kernel.org
2109S:	Maintained
2110F:	drivers/clk/keystone/
2111
2112ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2113M:	Santosh Shilimkar <ssantosh@kernel.org>
2114L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2115L:	linux-kernel@vger.kernel.org
2116S:	Maintained
2117F:	drivers/clocksource/timer-keystone.c
2118
2119ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2120M:	Santosh Shilimkar <ssantosh@kernel.org>
2121L:	linux-kernel@vger.kernel.org
2122S:	Maintained
2123F:	drivers/power/reset/keystone-reset.c
2124
2125ARM/THECUS N2100 MACHINE SUPPORT
2126M:	Lennert Buytenhek <kernel@wantstofly.org>
2127L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2128S:	Maintained
2129
2130ARM/TOSA MACHINE SUPPORT
2131M:	Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2132M:	Dirk Opfer <dirk@opfer-online.de>
2133S:	Maintained
2134
2135ARM/UNIPHIER ARCHITECTURE
2136M:	Masahiro Yamada <yamada.masahiro@socionext.com>
2137L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2138T:	git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2139S:	Maintained
2140F:	Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2141F:	Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2142F:	arch/arm/boot/dts/uniphier*
2143F:	arch/arm/include/asm/hardware/cache-uniphier.h
2144F:	arch/arm/mach-uniphier/
2145F:	arch/arm/mm/cache-uniphier.c
2146F:	arch/arm64/boot/dts/socionext/uniphier*
2147F:	drivers/bus/uniphier-system-bus.c
2148F:	drivers/clk/uniphier/
2149F:	drivers/gpio/gpio-uniphier.c
2150F:	drivers/i2c/busses/i2c-uniphier*
2151F:	drivers/irqchip/irq-uniphier-aidet.c
2152F:	drivers/pinctrl/uniphier/
2153F:	drivers/reset/reset-uniphier.c
2154F:	drivers/tty/serial/8250/8250_uniphier.c
2155N:	uniphier
2156
2157ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2158M:	Ulf Hansson <ulf.hansson@linaro.org>
2159L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2160T:	git git://git.linaro.org/people/ulfh/clk.git
2161S:	Maintained
2162F:	drivers/clk/ux500/
2163
2164ARM/VERSATILE EXPRESS PLATFORM
2165M:	Liviu Dudau <liviu.dudau@arm.com>
2166M:	Sudeep Holla <sudeep.holla@arm.com>
2167M:	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2168L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2169S:	Maintained
2170F:	arch/arm/boot/dts/vexpress*
2171F:	arch/arm64/boot/dts/arm/
2172F:	arch/arm/mach-vexpress/
2173F:	*/*/vexpress*
2174F:	*/*/*/vexpress*
2175F:	drivers/clk/versatile/clk-vexpress-osc.c
2176F:	drivers/clocksource/versatile.c
2177N:	mps2
2178
2179ARM/VFP SUPPORT
2180M:	Russell King <linux@armlinux.org.uk>
2181L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2182W:	http://www.armlinux.org.uk/
2183S:	Maintained
2184F:	arch/arm/vfp/
2185
2186ARM/VOIPAC PXA270 SUPPORT
2187M:	Marek Vasut <marek.vasut@gmail.com>
2188L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2189S:	Maintained
2190F:	arch/arm/mach-pxa/vpac270.c
2191F:	arch/arm/mach-pxa/include/mach/vpac270.h
2192
2193ARM/VT8500 ARM ARCHITECTURE
2194M:	Tony Prisk <linux@prisktech.co.nz>
2195L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2196S:	Maintained
2197F:	arch/arm/mach-vt8500/
2198F:	drivers/clocksource/vt8500_timer.c
2199F:	drivers/i2c/busses/i2c-wmt.c
2200F:	drivers/mmc/host/wmt-sdmmc.c
2201F:	drivers/pwm/pwm-vt8500.c
2202F:	drivers/rtc/rtc-vt8500.c
2203F:	drivers/tty/serial/vt8500_serial.c
2204F:	drivers/usb/host/ehci-platform.c
2205F:	drivers/usb/host/uhci-platform.c
2206F:	drivers/video/fbdev/vt8500lcdfb.*
2207F:	drivers/video/fbdev/wm8505fb*
2208F:	drivers/video/fbdev/wmt_ge_rops.*
2209
2210ARM/ZIPIT Z2 SUPPORT
2211M:	Marek Vasut <marek.vasut@gmail.com>
2212L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2213S:	Maintained
2214F:	arch/arm/mach-pxa/z2.c
2215F:	arch/arm/mach-pxa/include/mach/z2.h
2216
2217ARM/ZTE ARCHITECTURE
2218M:	Jun Nie <jun.nie@linaro.org>
2219M:	Baoyou Xie <baoyou.xie@linaro.org>
2220M:	Shawn Guo <shawnguo@kernel.org>
2221L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2222S:	Maintained
2223F:	arch/arm/boot/dts/zx2967*
2224F:	arch/arm/mach-zx/
2225F:	arch/arm64/boot/dts/zte/
2226F:	drivers/clk/zte/
2227F:	drivers/dma/zx_dma.c
2228F:	drivers/gpio/gpio-zx.c
2229F:	drivers/i2c/busses/i2c-zx2967.c
2230F:	drivers/mmc/host/dw_mmc-zx.*
2231F:	drivers/pinctrl/zte/
2232F:	drivers/soc/zte/
2233F:	drivers/thermal/zx2967_thermal.c
2234F:	drivers/watchdog/zx2967_wdt.c
2235F:	Documentation/devicetree/bindings/arm/zte.txt
2236F:	Documentation/devicetree/bindings/clock/zx2967*.txt
2237F:	Documentation/devicetree/bindings/dma/zxdma.txt
2238F:	Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2239F:	Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2240F:	Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2241F:	Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2242F:	Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2243F:	Documentation/devicetree/bindings/soc/zte/
2244F:	Documentation/devicetree/bindings/sound/zte,*.txt
2245F:	Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2246F:	Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2247F:	include/dt-bindings/clock/zx2967*.h
2248F:	include/dt-bindings/soc/zte,*.h
2249F:	sound/soc/codecs/zx_aud96p22.c
2250F:	sound/soc/zte/
2251
2252ARM/ZYNQ ARCHITECTURE
2253M:	Michal Simek <michal.simek@xilinx.com>
2254L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2255W:	http://wiki.xilinx.com
2256T:	git https://github.com/Xilinx/linux-xlnx.git
2257S:	Supported
2258F:	arch/arm/mach-zynq/
2259F:	drivers/cpuidle/cpuidle-zynq.c
2260F:	drivers/block/xsysace.c
2261N:	zynq
2262N:	xilinx
2263F:	drivers/clocksource/cadence_ttc_timer.c
2264F:	drivers/i2c/busses/i2c-cadence.c
2265F:	drivers/mmc/host/sdhci-of-arasan.c
2266F:	drivers/edac/synopsys_edac.c
2267
2268ARM64 PORT (AARCH64 ARCHITECTURE)
2269M:	Catalin Marinas <catalin.marinas@arm.com>
2270M:	Will Deacon <will.deacon@arm.com>
2271L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2272T:	git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2273S:	Maintained
2274F:	arch/arm64/
2275F:	Documentation/arm64/
2276
2277AS3645A LED FLASH CONTROLLER DRIVER
2278M:	Sakari Ailus <sakari.ailus@iki.fi>
2279L:	linux-leds@vger.kernel.org
2280S:	Maintained
2281F:	drivers/leds/leds-as3645a.c
2282
2283ASAHI KASEI AK8974 DRIVER
2284M:	Linus Walleij <linus.walleij@linaro.org>
2285L:	linux-iio@vger.kernel.org
2286W:	http://www.akm.com/
2287S:	Supported
2288F:	drivers/iio/magnetometer/ak8974.c
2289
2290ASC7621 HARDWARE MONITOR DRIVER
2291M:	George Joseph <george.joseph@fairview5.com>
2292L:	linux-hwmon@vger.kernel.org
2293S:	Maintained
2294F:	Documentation/hwmon/asc7621
2295F:	drivers/hwmon/asc7621.c
2296
2297ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2298M:	Corentin Chary <corentin.chary@gmail.com>
2299L:	acpi4asus-user@lists.sourceforge.net
2300L:	platform-driver-x86@vger.kernel.org
2301W:	http://acpi4asus.sf.net
2302S:	Maintained
2303F:	drivers/platform/x86/asus*.c
2304F:	drivers/platform/x86/eeepc*.c
2305
2306ASUS WIRELESS RADIO CONTROL DRIVER
2307M:	João Paulo Rechi Vita <jprvita@gmail.com>
2308L:	platform-driver-x86@vger.kernel.org
2309S:	Maintained
2310F:	drivers/platform/x86/asus-wireless.c
2311
2312ASYMMETRIC KEYS
2313M:	David Howells <dhowells@redhat.com>
2314L:	keyrings@vger.kernel.org
2315S:	Maintained
2316F:	Documentation/crypto/asymmetric-keys.txt
2317F:	include/linux/verification.h
2318F:	include/crypto/public_key.h
2319F:	include/crypto/pkcs7.h
2320F:	crypto/asymmetric_keys/
2321
2322ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2323R:	Dan Williams <dan.j.williams@intel.com>
2324W:	http://sourceforge.net/projects/xscaleiop
2325S:	Odd fixes
2326F:	Documentation/crypto/async-tx-api.txt
2327F:	crypto/async_tx/
2328F:	drivers/dma/
2329F:	include/linux/dmaengine.h
2330F:	include/linux/async_tx.h
2331
2332AT24 EEPROM DRIVER
2333M:	Bartosz Golaszewski <brgl@bgdev.pl>
2334L:	linux-i2c@vger.kernel.org
2335T:	git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2336S:	Maintained
2337F:	Documentation/devicetree/bindings/eeprom/at24.txt
2338F:	drivers/misc/eeprom/at24.c
2339F:	include/linux/platform_data/at24.h
2340
2341ATA OVER ETHERNET (AOE) DRIVER
2342M:	"Ed L. Cashin" <ed.cashin@acm.org>
2343W:	http://www.openaoe.org/
2344S:	Supported
2345F:	Documentation/aoe/
2346F:	drivers/block/aoe/
2347
2348ATHEROS 71XX/9XXX GPIO DRIVER
2349M:	Alban Bedel <albeu@free.fr>
2350W:	https://github.com/AlbanBedel/linux
2351T:	git git://github.com/AlbanBedel/linux
2352S:	Maintained
2353F:	drivers/gpio/gpio-ath79.c
2354F:	Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2355
2356ATHEROS 71XX/9XXX USB PHY DRIVER
2357M:	Alban Bedel <albeu@free.fr>
2358W:	https://github.com/AlbanBedel/linux
2359T:	git git://github.com/AlbanBedel/linux
2360S:	Maintained
2361F:	drivers/phy/qualcomm/phy-ath79-usb.c
2362F:	Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2363
2364ATHEROS ATH GENERIC UTILITIES
2365M:	Kalle Valo <kvalo@codeaurora.org>
2366L:	linux-wireless@vger.kernel.org
2367S:	Supported
2368F:	drivers/net/wireless/ath/*
2369
2370ATHEROS ATH5K WIRELESS DRIVER
2371M:	Jiri Slaby <jirislaby@gmail.com>
2372M:	Nick Kossifidis <mickflemm@gmail.com>
2373M:	"Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2374L:	linux-wireless@vger.kernel.org
2375W:	http://wireless.kernel.org/en/users/Drivers/ath5k
2376S:	Maintained
2377F:	drivers/net/wireless/ath/ath5k/
2378
2379ATHEROS ATH6KL WIRELESS DRIVER
2380M:	Kalle Valo <kvalo@codeaurora.org>
2381L:	linux-wireless@vger.kernel.org
2382W:	http://wireless.kernel.org/en/users/Drivers/ath6kl
2383T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2384S:	Supported
2385F:	drivers/net/wireless/ath/ath6kl/
2386
2387ATI_REMOTE2 DRIVER
2388M:	Ville Syrjala <syrjala@sci.fi>
2389S:	Maintained
2390F:	drivers/input/misc/ati_remote2.c
2391
2392ATK0110 HWMON DRIVER
2393M:	Luca Tettamanti <kronos.it@gmail.com>
2394L:	linux-hwmon@vger.kernel.org
2395S:	Maintained
2396F:	drivers/hwmon/asus_atk0110.c
2397
2398ATLX ETHERNET DRIVERS
2399M:	Jay Cliburn <jcliburn@gmail.com>
2400M:	Chris Snook <chris.snook@gmail.com>
2401L:	netdev@vger.kernel.org
2402W:	http://sourceforge.net/projects/atl1
2403W:	http://atl1.sourceforge.net
2404S:	Maintained
2405F:	drivers/net/ethernet/atheros/
2406
2407ATM
2408M:	Chas Williams <3chas3@gmail.com>
2409L:	linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2410L:	netdev@vger.kernel.org
2411W:	http://linux-atm.sourceforge.net
2412S:	Maintained
2413F:	drivers/atm/
2414F:	include/linux/atm*
2415F:	include/uapi/linux/atm*
2416
2417ATMEL AT91 / AT32 MCI DRIVER
2418M:	Ludovic Desroches <ludovic.desroches@microchip.com>
2419S:	Maintained
2420F:	drivers/mmc/host/atmel-mci.c
2421
2422ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2423M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2424S:	Supported
2425F:	drivers/power/reset/at91-sama5d2_shdwc.c
2426
2427ATMEL Audio ALSA driver
2428M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2429L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
2430S:	Supported
2431F:	sound/soc/atmel
2432
2433ATMEL I2C DRIVER
2434M:	Ludovic Desroches <ludovic.desroches@microchip.com>
2435L:	linux-i2c@vger.kernel.org
2436S:	Supported
2437F:	drivers/i2c/busses/i2c-at91.c
2438
2439ATMEL ISI DRIVER
2440M:	Ludovic Desroches <ludovic.desroches@microchip.com>
2441L:	linux-media@vger.kernel.org
2442S:	Supported
2443F:	drivers/media/platform/atmel/atmel-isi.c
2444F:	include/media/atmel-isi.h
2445
2446ATMEL LCDFB DRIVER
2447M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2448L:	linux-fbdev@vger.kernel.org
2449S:	Maintained
2450F:	drivers/video/fbdev/atmel_lcdfb.c
2451F:	include/video/atmel_lcdc.h
2452
2453ATMEL MACB ETHERNET DRIVER
2454M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2455S:	Supported
2456F:	drivers/net/ethernet/cadence/
2457
2458ATMEL MAXTOUCH DRIVER
2459M:	Nick Dyer <nick@shmanahar.org>
2460T:	git git://github.com/ndyer/linux.git
2461S:	Maintained
2462F:	Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2463F:	drivers/input/touchscreen/atmel_mxt_ts.c
2464
2465ATMEL SAMA5D2 ADC DRIVER
2466M:	Ludovic Desroches <ludovic.desroches@microchip.com>
2467L:	linux-iio@vger.kernel.org
2468S:	Supported
2469F:	drivers/iio/adc/at91-sama5d2_adc.c
2470
2471ATMEL SDMMC DRIVER
2472M:	Ludovic Desroches <ludovic.desroches@microchip.com>
2473L:	linux-mmc@vger.kernel.org
2474S:	Supported
2475F:	drivers/mmc/host/sdhci-of-at91.c
2476
2477ATMEL SPI DRIVER
2478M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2479S:	Supported
2480F:	drivers/spi/spi-atmel.*
2481
2482ATMEL SSC DRIVER
2483M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2484L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2485S:	Supported
2486F:	drivers/misc/atmel-ssc.c
2487F:	include/linux/atmel-ssc.h
2488
2489ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2490M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2491L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2492S:	Supported
2493F:	drivers/misc/atmel_tclib.c
2494F:	drivers/clocksource/tcb_clksrc.c
2495
2496ATMEL USBA UDC DRIVER
2497M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2498L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2499S:	Supported
2500F:	drivers/usb/gadget/udc/atmel_usba_udc.*
2501
2502ATMEL WIRELESS DRIVER
2503M:	Simon Kelley <simon@thekelleys.org.uk>
2504L:	linux-wireless@vger.kernel.org
2505W:	http://www.thekelleys.org.uk/atmel
2506W:	http://atmelwlandriver.sourceforge.net/
2507S:	Maintained
2508F:	drivers/net/wireless/atmel/atmel*
2509
2510ATMEL XDMA DRIVER
2511M:	Ludovic Desroches <ludovic.desroches@microchip.com>
2512L:	linux-arm-kernel@lists.infradead.org
2513L:	dmaengine@vger.kernel.org
2514S:	Supported
2515F:	drivers/dma/at_xdmac.c
2516
2517ATOMIC INFRASTRUCTURE
2518M:	Will Deacon <will.deacon@arm.com>
2519M:	Peter Zijlstra <peterz@infradead.org>
2520R:	Boqun Feng <boqun.feng@gmail.com>
2521L:	linux-kernel@vger.kernel.org
2522S:	Maintained
2523F:	arch/*/include/asm/atomic*.h
2524F:	include/*/atomic*.h
2525
2526ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2527M:	Bradley Grove <linuxdrivers@attotech.com>
2528L:	linux-scsi@vger.kernel.org
2529W:	http://www.attotech.com
2530S:	Supported
2531F:	drivers/scsi/esas2r
2532
2533ATUSB IEEE 802.15.4 RADIO DRIVER
2534M:	Stefan Schmidt <stefan@osg.samsung.com>
2535L:	linux-wpan@vger.kernel.org
2536S:	Maintained
2537F:	drivers/net/ieee802154/atusb.c
2538F:	drivers/net/ieee802154/atusb.h
2539F:	drivers/net/ieee802154/at86rf230.h
2540
2541AUDIT SUBSYSTEM
2542M:	Paul Moore <paul@paul-moore.com>
2543M:	Eric Paris <eparis@redhat.com>
2544L:	linux-audit@redhat.com (moderated for non-subscribers)
2545W:	https://github.com/linux-audit
2546T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2547S:	Supported
2548F:	include/linux/audit.h
2549F:	include/uapi/linux/audit.h
2550F:	kernel/audit*
2551
2552AUXILIARY DISPLAY DRIVERS
2553M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2554S:	Maintained
2555F:	drivers/auxdisplay/
2556F:	include/linux/cfag12864b.h
2557
2558AX.25 NETWORK LAYER
2559M:	Ralf Baechle <ralf@linux-mips.org>
2560L:	linux-hams@vger.kernel.org
2561W:	http://www.linux-ax25.org/
2562S:	Maintained
2563F:	include/uapi/linux/ax25.h
2564F:	include/net/ax25.h
2565F:	net/ax25/
2566
2567AXENTIA ARM DEVICES
2568M:	Peter Rosin <peda@axentia.se>
2569L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2570S:	Maintained
2571F:	Documentation/devicetree/bindings/arm/axentia.txt
2572F:	arch/arm/boot/dts/at91-linea.dtsi
2573F:	arch/arm/boot/dts/at91-natte.dtsi
2574F:	arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2575F:	arch/arm/boot/dts/at91-tse850-3.dts
2576
2577AXENTIA ASOC DRIVERS
2578M:	Peter Rosin <peda@axentia.se>
2579L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
2580S:	Maintained
2581F:	Documentation/devicetree/bindings/sound/axentia,*
2582F:	sound/soc/atmel/tse850-pcm5142.c
2583
2584AZ6007 DVB DRIVER
2585M:	Mauro Carvalho Chehab <mchehab@kernel.org>
2586L:	linux-media@vger.kernel.org
2587W:	https://linuxtv.org
2588T:	git git://linuxtv.org/media_tree.git
2589S:	Maintained
2590F:	drivers/media/usb/dvb-usb-v2/az6007.c
2591
2592AZTECH FM RADIO RECEIVER DRIVER
2593M:	Hans Verkuil <hverkuil@xs4all.nl>
2594L:	linux-media@vger.kernel.org
2595T:	git git://linuxtv.org/media_tree.git
2596W:	https://linuxtv.org
2597S:	Maintained
2598F:	drivers/media/radio/radio-aztech*
2599
2600B43 WIRELESS DRIVER
2601L:	linux-wireless@vger.kernel.org
2602L:	b43-dev@lists.infradead.org
2603W:	http://wireless.kernel.org/en/users/Drivers/b43
2604S:	Odd Fixes
2605F:	drivers/net/wireless/broadcom/b43/
2606
2607B43LEGACY WIRELESS DRIVER
2608M:	Larry Finger <Larry.Finger@lwfinger.net>
2609L:	linux-wireless@vger.kernel.org
2610L:	b43-dev@lists.infradead.org
2611W:	http://wireless.kernel.org/en/users/Drivers/b43
2612S:	Maintained
2613F:	drivers/net/wireless/broadcom/b43legacy/
2614
2615BACKLIGHT CLASS/SUBSYSTEM
2616M:	Lee Jones <lee.jones@linaro.org>
2617M:	Daniel Thompson <daniel.thompson@linaro.org>
2618M:	Jingoo Han <jingoohan1@gmail.com>
2619L:	dri-devel@lists.freedesktop.org
2620T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2621S:	Maintained
2622F:	drivers/video/backlight/
2623F:	include/linux/backlight.h
2624F:	include/linux/pwm_backlight.h
2625F:	Documentation/devicetree/bindings/leds/backlight
2626
2627BATMAN ADVANCED
2628M:	Marek Lindner <mareklindner@neomailbox.ch>
2629M:	Simon Wunderlich <sw@simonwunderlich.de>
2630M:	Antonio Quartulli <a@unstable.cc>
2631L:	b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2632W:	https://www.open-mesh.org/
2633Q:	https://patchwork.open-mesh.org/project/batman/list/
2634S:	Maintained
2635F:	Documentation/ABI/testing/sysfs-class-net-batman-adv
2636F:	Documentation/ABI/testing/sysfs-class-net-mesh
2637F:	Documentation/networking/batman-adv.rst
2638F:	include/uapi/linux/batadv_packet.h
2639F:	include/uapi/linux/batman_adv.h
2640F:	net/batman-adv/
2641
2642BAYCOM/HDLCDRV DRIVERS FOR AX.25
2643M:	Thomas Sailer <t.sailer@alumni.ethz.ch>
2644L:	linux-hams@vger.kernel.org
2645W:	http://www.baycom.org/~tom/ham/ham.html
2646S:	Maintained
2647F:	drivers/net/hamradio/baycom*
2648
2649BCACHE (BLOCK LAYER CACHE)
2650M:	Coly Li <colyli@suse.de>
2651M:	Kent Overstreet <kent.overstreet@gmail.com>
2652L:	linux-bcache@vger.kernel.org
2653W:	http://bcache.evilpiepirate.org
2654C:	irc://irc.oftc.net/bcache
2655S:	Maintained
2656F:	drivers/md/bcache/
2657
2658BDISP ST MEDIA DRIVER
2659M:	Fabien Dessenne <fabien.dessenne@st.com>
2660L:	linux-media@vger.kernel.org
2661T:	git git://linuxtv.org/media_tree.git
2662W:	https://linuxtv.org
2663S:	Supported
2664F:	drivers/media/platform/sti/bdisp
2665
2666BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2667M:	Dariusz Marcinkiewicz <reksio@newterm.pl>
2668L:	netdev@vger.kernel.org
2669S:	Maintained
2670F:	drivers/net/ethernet/ec_bhf.c
2671
2672BEFS FILE SYSTEM
2673M:	Luis de Bethencourt <luisbg@kernel.org>
2674M:	Salah Triki <salah.triki@gmail.com>
2675S:	Maintained
2676T:	git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2677F:	Documentation/filesystems/befs.txt
2678F:	fs/befs/
2679
2680BFQ I/O SCHEDULER
2681M:	Paolo Valente <paolo.valente@linaro.org>
2682M:	Jens Axboe <axboe@kernel.dk>
2683L:	linux-block@vger.kernel.org
2684S:	Maintained
2685F:	block/bfq-*
2686F:	Documentation/block/bfq-iosched.txt
2687
2688BFS FILE SYSTEM
2689M:	"Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2690S:	Maintained
2691F:	Documentation/filesystems/bfs.txt
2692F:	fs/bfs/
2693F:	include/uapi/linux/bfs_fs.h
2694
2695BLINKM RGB LED DRIVER
2696M:	Jan-Simon Moeller <jansimon.moeller@gmx.de>
2697S:	Maintained
2698F:	drivers/leds/leds-blinkm.c
2699
2700BLOCK LAYER
2701M:	Jens Axboe <axboe@kernel.dk>
2702L:	linux-block@vger.kernel.org
2703T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2704S:	Maintained
2705F:	block/
2706F:	drivers/block/
2707F:	kernel/trace/blktrace.c
2708F:	lib/sbitmap.c
2709
2710BLOCK2MTD DRIVER
2711M:	Joern Engel <joern@lazybastard.org>
2712L:	linux-mtd@lists.infradead.org
2713S:	Maintained
2714F:	drivers/mtd/devices/block2mtd.c
2715
2716BLUETOOTH DRIVERS
2717M:	Marcel Holtmann <marcel@holtmann.org>
2718M:	Johan Hedberg <johan.hedberg@gmail.com>
2719L:	linux-bluetooth@vger.kernel.org
2720W:	http://www.bluez.org/
2721T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2722T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2723S:	Maintained
2724F:	drivers/bluetooth/
2725
2726BLUETOOTH SUBSYSTEM
2727M:	Marcel Holtmann <marcel@holtmann.org>
2728M:	Johan Hedberg <johan.hedberg@gmail.com>
2729L:	linux-bluetooth@vger.kernel.org
2730W:	http://www.bluez.org/
2731T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2732T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2733S:	Maintained
2734F:	net/bluetooth/
2735F:	include/net/bluetooth/
2736
2737BONDING DRIVER
2738M:	Jay Vosburgh <j.vosburgh@gmail.com>
2739M:	Veaceslav Falico <vfalico@gmail.com>
2740M:	Andy Gospodarek <andy@greyhouse.net>
2741L:	netdev@vger.kernel.org
2742W:	http://sourceforge.net/projects/bonding/
2743S:	Supported
2744F:	drivers/net/bonding/
2745F:	include/uapi/linux/if_bonding.h
2746
2747BPF (Safe dynamic programs and tools)
2748M:	Alexei Starovoitov <ast@kernel.org>
2749M:	Daniel Borkmann <daniel@iogearbox.net>
2750L:	netdev@vger.kernel.org
2751L:	linux-kernel@vger.kernel.org
2752T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
2753T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
2754Q:	https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
2755S:	Supported
2756F:	arch/x86/net/bpf_jit*
2757F:	Documentation/networking/filter.txt
2758F:	Documentation/bpf/
2759F:	include/linux/bpf*
2760F:	include/linux/filter.h
2761F:	include/trace/events/xdp.h
2762F:	include/uapi/linux/bpf*
2763F:	include/uapi/linux/filter.h
2764F:	kernel/bpf/
2765F:	kernel/trace/bpf_trace.c
2766F:	lib/test_bpf.c
2767F:	net/bpf/
2768F:	net/core/filter.c
2769F:	net/sched/act_bpf.c
2770F:	net/sched/cls_bpf.c
2771F:	samples/bpf/
2772F:	tools/bpf/
2773F:	tools/lib/bpf/
2774F:	tools/testing/selftests/bpf/
2775
2776BROADCOM B44 10/100 ETHERNET DRIVER
2777M:	Michael Chan <michael.chan@broadcom.com>
2778L:	netdev@vger.kernel.org
2779S:	Supported
2780F:	drivers/net/ethernet/broadcom/b44.*
2781
2782BROADCOM B53 ETHERNET SWITCH DRIVER
2783M:	Florian Fainelli <f.fainelli@gmail.com>
2784L:	netdev@vger.kernel.org
2785L:	openwrt-devel@lists.openwrt.org (subscribers-only)
2786S:	Supported
2787F:	drivers/net/dsa/b53/*
2788F:	include/linux/platform_data/b53.h
2789
2790BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2791M:	Florian Fainelli <f.fainelli@gmail.com>
2792M:	Ray Jui <rjui@broadcom.com>
2793M:	Scott Branden <sbranden@broadcom.com>
2794M:	bcm-kernel-feedback-list@broadcom.com
2795T:	git git://github.com/broadcom/mach-bcm
2796S:	Maintained
2797N:	bcm281*
2798N:	bcm113*
2799N:	bcm216*
2800N:	kona
2801F:	arch/arm/mach-bcm/
2802
2803BROADCOM BCM2835 ARM ARCHITECTURE
2804M:	Eric Anholt <eric@anholt.net>
2805M:	Stefan Wahren <stefan.wahren@i2se.com>
2806L:	linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2807L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2808T:	git git://github.com/anholt/linux
2809S:	Maintained
2810N:	bcm2835
2811F:	drivers/staging/vc04_services
2812
2813BROADCOM BCM47XX MIPS ARCHITECTURE
2814M:	Hauke Mehrtens <hauke@hauke-m.de>
2815M:	Rafał Miłecki <zajec5@gmail.com>
2816L:	linux-mips@linux-mips.org
2817S:	Maintained
2818F:	Documentation/devicetree/bindings/mips/brcm/
2819F:	arch/mips/bcm47xx/*
2820F:	arch/mips/include/asm/mach-bcm47xx/*
2821
2822BROADCOM BCM5301X ARM ARCHITECTURE
2823M:	Hauke Mehrtens <hauke@hauke-m.de>
2824M:	Rafał Miłecki <zajec5@gmail.com>
2825M:	Jon Mason <jonmason@broadcom.com>
2826M:	bcm-kernel-feedback-list@broadcom.com
2827L:	linux-arm-kernel@lists.infradead.org
2828S:	Maintained
2829F:	arch/arm/mach-bcm/bcm_5301x.c
2830F:	arch/arm/boot/dts/bcm5301x*.dtsi
2831F:	arch/arm/boot/dts/bcm470*
2832F:	arch/arm/boot/dts/bcm953012*
2833
2834BROADCOM BCM53573 ARM ARCHITECTURE
2835M:	Rafał Miłecki <rafal@milecki.pl>
2836L:	linux-arm-kernel@lists.infradead.org
2837S:	Maintained
2838F:	arch/arm/boot/dts/bcm53573*
2839F:	arch/arm/boot/dts/bcm47189*
2840
2841BROADCOM BCM63XX ARM ARCHITECTURE
2842M:	Florian Fainelli <f.fainelli@gmail.com>
2843M:	bcm-kernel-feedback-list@broadcom.com
2844L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2845T:	git git://github.com/broadcom/stblinux.git
2846S:	Maintained
2847N:	bcm63xx
2848
2849BROADCOM BCM63XX/BCM33XX UDC DRIVER
2850M:	Kevin Cernekee <cernekee@gmail.com>
2851L:	linux-usb@vger.kernel.org
2852S:	Maintained
2853F:	drivers/usb/gadget/udc/bcm63xx_udc.*
2854
2855BROADCOM BCM7XXX ARM ARCHITECTURE
2856M:	Brian Norris <computersforpeace@gmail.com>
2857M:	Gregory Fong <gregory.0xf0@gmail.com>
2858M:	Florian Fainelli <f.fainelli@gmail.com>
2859M:	bcm-kernel-feedback-list@broadcom.com
2860L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2861T:	git git://github.com/broadcom/stblinux.git
2862S:	Maintained
2863F:	arch/arm/mach-bcm/*brcmstb*
2864F:	arch/arm/boot/dts/bcm7*.dts*
2865F:	drivers/bus/brcmstb_gisb.c
2866F:	arch/arm/mm/cache-b15-rac.c
2867F:	arch/arm/include/asm/hardware/cache-b15-rac.h
2868N:	brcmstb
2869
2870BROADCOM BMIPS CPUFREQ DRIVER
2871M:	Markus Mayer <mmayer@broadcom.com>
2872M:	bcm-kernel-feedback-list@broadcom.com
2873L:	linux-pm@vger.kernel.org
2874S:	Maintained
2875F:	drivers/cpufreq/bmips-cpufreq.c
2876
2877BROADCOM BMIPS MIPS ARCHITECTURE
2878M:	Kevin Cernekee <cernekee@gmail.com>
2879M:	Florian Fainelli <f.fainelli@gmail.com>
2880L:	linux-mips@linux-mips.org
2881T:	git git://github.com/broadcom/stblinux.git
2882S:	Maintained
2883F:	arch/mips/bmips/*
2884F:	arch/mips/include/asm/mach-bmips/*
2885F:	arch/mips/kernel/*bmips*
2886F:	arch/mips/boot/dts/brcm/bcm*.dts*
2887F:	drivers/irqchip/irq-bcm63*
2888F:	drivers/irqchip/irq-bcm7*
2889F:	drivers/irqchip/irq-brcmstb*
2890F:	include/linux/bcm963xx_nvram.h
2891F:	include/linux/bcm963xx_tag.h
2892
2893BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2894M:	Rasesh Mody <rasesh.mody@cavium.com>
2895M:	Harish Patil <harish.patil@cavium.com>
2896M:	Dept-GELinuxNICDev@cavium.com
2897L:	netdev@vger.kernel.org
2898S:	Supported
2899F:	drivers/net/ethernet/broadcom/bnx2.*
2900F:	drivers/net/ethernet/broadcom/bnx2_*
2901
2902BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2903M:	QLogic-Storage-Upstream@qlogic.com
2904L:	linux-scsi@vger.kernel.org
2905S:	Supported
2906F:	drivers/scsi/bnx2fc/
2907
2908BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2909M:	QLogic-Storage-Upstream@qlogic.com
2910L:	linux-scsi@vger.kernel.org
2911S:	Supported
2912F:	drivers/scsi/bnx2i/
2913
2914BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2915M:	Ariel Elior <ariel.elior@cavium.com>
2916M:	everest-linux-l2@cavium.com
2917L:	netdev@vger.kernel.org
2918S:	Supported
2919F:	drivers/net/ethernet/broadcom/bnx2x/
2920
2921BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2922M:	Michael Chan <michael.chan@broadcom.com>
2923L:	netdev@vger.kernel.org
2924S:	Supported
2925F:	drivers/net/ethernet/broadcom/bnxt/
2926
2927BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2928M:	Arend van Spriel <arend.vanspriel@broadcom.com>
2929M:	Franky Lin <franky.lin@broadcom.com>
2930M:	Hante Meuleman <hante.meuleman@broadcom.com>
2931M:	Chi-Hsien Lin <chi-hsien.lin@cypress.com>
2932M:	Wright Feng <wright.feng@cypress.com>
2933L:	linux-wireless@vger.kernel.org
2934L:	brcm80211-dev-list.pdl@broadcom.com
2935L:	brcm80211-dev-list@cypress.com
2936S:	Supported
2937F:	drivers/net/wireless/broadcom/brcm80211/
2938
2939BROADCOM BRCMSTB GPIO DRIVER
2940M:	Gregory Fong <gregory.0xf0@gmail.com>
2941L:	bcm-kernel-feedback-list@broadcom.com
2942S:	Supported
2943F:	drivers/gpio/gpio-brcmstb.c
2944F:	Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2945
2946BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
2947M:	Al Cooper <alcooperx@gmail.com>
2948L:	linux-kernel@vger.kernel.org
2949L:	bcm-kernel-feedback-list@broadcom.com
2950S:	Maintained
2951F:	drivers/phy/broadcom/phy-brcm-usb*
2952
2953BROADCOM GENET ETHERNET DRIVER
2954M:	Doug Berger <opendmb@gmail.com>
2955M:	Florian Fainelli <f.fainelli@gmail.com>
2956L:	netdev@vger.kernel.org
2957S:	Supported
2958F:	drivers/net/ethernet/broadcom/genet/
2959
2960BROADCOM IPROC ARM ARCHITECTURE
2961M:	Ray Jui <rjui@broadcom.com>
2962M:	Scott Branden <sbranden@broadcom.com>
2963M:	Jon Mason <jonmason@broadcom.com>
2964M:	bcm-kernel-feedback-list@broadcom.com
2965L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2966T:	git git://github.com/broadcom/cygnus-linux.git
2967S:	Maintained
2968N:	iproc
2969N:	cygnus
2970N:	bcm[-_]nsp
2971N:	bcm9113*
2972N:	bcm9583*
2973N:	bcm9585*
2974N:	bcm9586*
2975N:	bcm988312
2976N:	bcm113*
2977N:	bcm583*
2978N:	bcm585*
2979N:	bcm586*
2980N:	bcm88312
2981N:	hr2
2982F:	arch/arm64/boot/dts/broadcom/ns2*
2983F:	drivers/clk/bcm/clk-ns*
2984F:	drivers/pinctrl/bcm/pinctrl-ns*
2985
2986BROADCOM KONA GPIO DRIVER
2987M:	Ray Jui <rjui@broadcom.com>
2988L:	bcm-kernel-feedback-list@broadcom.com
2989S:	Supported
2990F:	drivers/gpio/gpio-bcm-kona.c
2991F:	Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2992
2993BROADCOM NETXTREME-E ROCE DRIVER
2994M:	Selvin Xavier <selvin.xavier@broadcom.com>
2995M:	Devesh Sharma <devesh.sharma@broadcom.com>
2996M:	Somnath Kotur <somnath.kotur@broadcom.com>
2997M:	Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
2998L:	linux-rdma@vger.kernel.org
2999W:	http://www.broadcom.com
3000S:	Supported
3001F:	drivers/infiniband/hw/bnxt_re/
3002F:	include/uapi/rdma/bnxt_re-abi.h
3003
3004BROADCOM NVRAM DRIVER
3005M:	Rafał Miłecki <zajec5@gmail.com>
3006L:	linux-mips@linux-mips.org
3007S:	Maintained
3008F:	drivers/firmware/broadcom/*
3009
3010BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3011M:	Rafał Miłecki <zajec5@gmail.com>
3012L:	linux-wireless@vger.kernel.org
3013S:	Maintained
3014F:	drivers/bcma/
3015F:	include/linux/bcma/
3016
3017BROADCOM STB AVS CPUFREQ DRIVER
3018M:	Markus Mayer <mmayer@broadcom.com>
3019M:	bcm-kernel-feedback-list@broadcom.com
3020L:	linux-pm@vger.kernel.org
3021S:	Maintained
3022F:	Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3023F:	drivers/cpufreq/brcmstb*
3024
3025BROADCOM STB AVS TMON DRIVER
3026M:	Markus Mayer <mmayer@broadcom.com>
3027M:	bcm-kernel-feedback-list@broadcom.com
3028L:	linux-pm@vger.kernel.org
3029S:	Maintained
3030F:	Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3031F:	drivers/thermal/broadcom/brcmstb*
3032
3033BROADCOM STB NAND FLASH DRIVER
3034M:	Brian Norris <computersforpeace@gmail.com>
3035M:	Kamal Dasu <kdasu.kdev@gmail.com>
3036L:	linux-mtd@lists.infradead.org
3037L:	bcm-kernel-feedback-list@broadcom.com
3038S:	Maintained
3039F:	drivers/mtd/nand/raw/brcmnand/
3040
3041BROADCOM STB DPFE DRIVER
3042M:	Markus Mayer <mmayer@broadcom.com>
3043M:	bcm-kernel-feedback-list@broadcom.com
3044L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3045S:	Maintained
3046F:	Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3047F:	drivers/memory/brcmstb_dpfe.c
3048
3049BROADCOM SYSTEMPORT ETHERNET DRIVER
3050M:	Florian Fainelli <f.fainelli@gmail.com>
3051L:	netdev@vger.kernel.org
3052S:	Supported
3053F:	drivers/net/ethernet/broadcom/bcmsysport.*
3054
3055BROADCOM TG3 GIGABIT ETHERNET DRIVER
3056M:	Siva Reddy Kallam <siva.kallam@broadcom.com>
3057M:	Prashant Sreedharan <prashant@broadcom.com>
3058M:	Michael Chan <mchan@broadcom.com>
3059L:	netdev@vger.kernel.org
3060S:	Supported
3061F:	drivers/net/ethernet/broadcom/tg3.*
3062
3063BROCADE BFA FC SCSI DRIVER
3064M:	Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3065M:	Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3066L:	linux-scsi@vger.kernel.org
3067S:	Supported
3068F:	drivers/scsi/bfa/
3069
3070BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3071M:	Rasesh Mody <rasesh.mody@cavium.com>
3072M:	Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
3073M:	Dept-GELinuxNICDev@cavium.com
3074L:	netdev@vger.kernel.org
3075S:	Supported
3076F:	drivers/net/ethernet/brocade/bna/
3077
3078BSG (block layer generic sg v4 driver)
3079M:	FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3080L:	linux-scsi@vger.kernel.org
3081S:	Supported
3082F:	block/bsg.c
3083F:	include/linux/bsg.h
3084F:	include/uapi/linux/bsg.h
3085
3086BT87X AUDIO DRIVER
3087M:	Clemens Ladisch <clemens@ladisch.de>
3088L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
3089T:	git git://git.alsa-project.org/alsa-kernel.git
3090S:	Maintained
3091F:	Documentation/sound/cards/bt87x.rst
3092F:	sound/pci/bt87x.c
3093
3094BT8XXGPIO DRIVER
3095M:	Michael Buesch <m@bues.ch>
3096W:	http://bu3sch.de/btgpio.php
3097S:	Maintained
3098F:	drivers/gpio/gpio-bt8xx.c
3099
3100BTRFS FILE SYSTEM
3101M:	Chris Mason <clm@fb.com>
3102M:	Josef Bacik <jbacik@fb.com>
3103M:	David Sterba <dsterba@suse.com>
3104L:	linux-btrfs@vger.kernel.org
3105W:	http://btrfs.wiki.kernel.org/
3106Q:	http://patchwork.kernel.org/project/linux-btrfs/list/
3107T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3108S:	Maintained
3109F:	Documentation/filesystems/btrfs.txt
3110F:	fs/btrfs/
3111F:	include/linux/btrfs*
3112F:	include/uapi/linux/btrfs*
3113
3114BTTV VIDEO4LINUX DRIVER
3115M:	Mauro Carvalho Chehab <mchehab@kernel.org>
3116L:	linux-media@vger.kernel.org
3117W:	https://linuxtv.org
3118T:	git git://linuxtv.org/media_tree.git
3119S:	Odd fixes
3120F:	Documentation/media/v4l-drivers/bttv*
3121F:	drivers/media/pci/bt8xx/bttv*
3122
3123BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3124M:	Chanwoo Choi <cw00.choi@samsung.com>
3125L:	linux-pm@vger.kernel.org
3126L:	linux-samsung-soc@vger.kernel.org
3127T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3128S:	Maintained
3129F:	drivers/devfreq/exynos-bus.c
3130F:	Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3131
3132BUSLOGIC SCSI DRIVER
3133M:	Khalid Aziz <khalid@gonehiking.org>
3134L:	linux-scsi@vger.kernel.org
3135S:	Maintained
3136F:	drivers/scsi/BusLogic.*
3137F:	drivers/scsi/FlashPoint.*
3138
3139C-MEDIA CMI8788 DRIVER
3140M:	Clemens Ladisch <clemens@ladisch.de>
3141L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
3142T:	git git://git.alsa-project.org/alsa-kernel.git
3143S:	Maintained
3144F:	sound/pci/oxygen/
3145
3146C6X ARCHITECTURE
3147M:	Mark Salter <msalter@redhat.com>
3148M:	Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3149L:	linux-c6x-dev@linux-c6x.org
3150W:	http://www.linux-c6x.org/wiki/index.php/Main_Page
3151S:	Maintained
3152F:	arch/c6x/
3153
3154CA8210 IEEE-802.15.4 RADIO DRIVER
3155M:	Harry Morris <h.morris@cascoda.com>
3156L:	linux-wpan@vger.kernel.org
3157W:	https://github.com/Cascoda/ca8210-linux.git
3158S:	Maintained
3159F:	drivers/net/ieee802154/ca8210.c
3160F:	Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3161
3162CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3163M:	David Howells <dhowells@redhat.com>
3164L:	linux-cachefs@redhat.com (moderated for non-subscribers)
3165S:	Supported
3166F:	Documentation/filesystems/caching/cachefiles.txt
3167F:	fs/cachefiles/
3168
3169CADENCE MIPI-CSI2 BRIDGES
3170M:	Maxime Ripard <maxime.ripard@bootlin.com>
3171L:	linux-media@vger.kernel.org
3172S:	Maintained
3173F:	Documentation/devicetree/bindings/media/cdns,*.txt
3174F:	drivers/media/platform/cadence/cdns-csi2*
3175
3176CADET FM/AM RADIO RECEIVER DRIVER
3177M:	Hans Verkuil <hverkuil@xs4all.nl>
3178L:	linux-media@vger.kernel.org
3179T:	git git://linuxtv.org/media_tree.git
3180W:	https://linuxtv.org
3181S:	Maintained
3182F:	drivers/media/radio/radio-cadet*
3183
3184CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3185M:	Jonathan Corbet <corbet@lwn.net>
3186L:	linux-media@vger.kernel.org
3187T:	git git://linuxtv.org/media_tree.git
3188S:	Maintained
3189F:	Documentation/media/v4l-drivers/cafe_ccic*
3190F:	drivers/media/platform/marvell-ccic/
3191
3192CAIF NETWORK LAYER
3193M:	Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3194L:	netdev@vger.kernel.org
3195S:	Supported
3196F:	Documentation/networking/caif/
3197F:	drivers/net/caif/
3198F:	include/uapi/linux/caif/
3199F:	include/net/caif/
3200F:	net/caif/
3201
3202CALGARY x86-64 IOMMU
3203M:	Muli Ben-Yehuda <mulix@mulix.org>
3204M:	Jon Mason <jdmason@kudzu.us>
3205L:	iommu@lists.linux-foundation.org
3206S:	Maintained
3207F:	arch/x86/kernel/pci-calgary_64.c
3208F:	arch/x86/kernel/tce_64.c
3209F:	arch/x86/include/asm/calgary.h
3210F:	arch/x86/include/asm/tce.h
3211
3212CAN NETWORK DRIVERS
3213M:	Wolfgang Grandegger <wg@grandegger.com>
3214M:	Marc Kleine-Budde <mkl@pengutronix.de>
3215L:	linux-can@vger.kernel.org
3216W:	https://github.com/linux-can
3217T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3218T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3219S:	Maintained
3220F:	Documentation/devicetree/bindings/net/can/
3221F:	drivers/net/can/
3222F:	include/linux/can/dev.h
3223F:	include/linux/can/platform/
3224F:	include/uapi/linux/can/error.h
3225F:	include/uapi/linux/can/netlink.h
3226
3227CAN NETWORK LAYER
3228M:	Oliver Hartkopp <socketcan@hartkopp.net>
3229M:	Marc Kleine-Budde <mkl@pengutronix.de>
3230L:	linux-can@vger.kernel.org
3231W:	https://github.com/linux-can
3232T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3233T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3234S:	Maintained
3235F:	Documentation/networking/can.rst
3236F:	net/can/
3237F:	include/linux/can/core.h
3238F:	include/uapi/linux/can.h
3239F:	include/uapi/linux/can/bcm.h
3240F:	include/uapi/linux/can/raw.h
3241F:	include/uapi/linux/can/gw.h
3242
3243CAPABILITIES
3244M:	Serge Hallyn <serge@hallyn.com>
3245L:	linux-security-module@vger.kernel.org
3246S:	Supported
3247F:	include/linux/capability.h
3248F:	include/uapi/linux/capability.h
3249F:	security/commoncap.c
3250F:	kernel/capability.c
3251
3252CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3253M:	Kevin Tsai <ktsai@capellamicro.com>
3254S:	Maintained
3255F:	drivers/iio/light/cm*
3256
3257CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3258M:	Christian Lamparter <chunkeey@googlemail.com>
3259L:	linux-wireless@vger.kernel.org
3260W:	http://wireless.kernel.org/en/users/Drivers/carl9170
3261S:	Maintained
3262F:	drivers/net/wireless/ath/carl9170/
3263
3264CAVIUM I2C DRIVER
3265M:	Jan Glauber <jglauber@cavium.com>
3266M:	David Daney <david.daney@cavium.com>
3267W:	http://www.cavium.com
3268S:	Supported
3269F:	drivers/i2c/busses/i2c-octeon*
3270F:	drivers/i2c/busses/i2c-thunderx*
3271
3272CAVIUM LIQUIDIO NETWORK DRIVER
3273M:	Derek Chickles <derek.chickles@caviumnetworks.com>
3274M:	Satanand Burla <satananda.burla@caviumnetworks.com>
3275M:	Felix Manlunas <felix.manlunas@caviumnetworks.com>
3276M:	Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3277L:	netdev@vger.kernel.org
3278W:	http://www.cavium.com
3279S:	Supported
3280F:	drivers/net/ethernet/cavium/liquidio/
3281
3282CAVIUM MMC DRIVER
3283M:	Jan Glauber <jglauber@cavium.com>
3284M:	David Daney <david.daney@cavium.com>
3285M:	Steven J. Hill <Steven.Hill@cavium.com>
3286W:	http://www.cavium.com
3287S:	Supported
3288F:	drivers/mmc/host/cavium*
3289
3290CAVIUM OCTEON-TX CRYPTO DRIVER
3291M:	George Cherian <george.cherian@cavium.com>
3292L:	linux-crypto@vger.kernel.org
3293W:	http://www.cavium.com
3294S:	Supported
3295F:	drivers/crypto/cavium/cpt/
3296
3297CAVIUM THUNDERX2 ARM64 SOC
3298M:	Robert Richter <rrichter@cavium.com>
3299M:	Jayachandran C <jnair@caviumnetworks.com>
3300L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3301S:	Maintained
3302F:	arch/arm64/boot/dts/cavium/thunder2-99xx*
3303F:	Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3304
3305CC2520 IEEE-802.15.4 RADIO DRIVER
3306M:	Varka Bhadram <varkabhadram@gmail.com>
3307L:	linux-wpan@vger.kernel.org
3308S:	Maintained
3309F:	drivers/net/ieee802154/cc2520.c
3310F:	include/linux/spi/cc2520.h
3311F:	Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3312
3313CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3314M:	Gilad Ben-Yossef <gilad@benyossef.com>
3315L:	linux-crypto@vger.kernel.org
3316S:	Supported
3317F:	drivers/crypto/ccree/
3318W:	https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3319
3320CEC FRAMEWORK
3321M:	Hans Verkuil <hans.verkuil@cisco.com>
3322L:	linux-media@vger.kernel.org
3323T:	git git://linuxtv.org/media_tree.git
3324W:	http://linuxtv.org
3325S:	Supported
3326F:	Documentation/media/kapi/cec-core.rst
3327F:	Documentation/media/uapi/cec
3328F:	drivers/media/cec/
3329F:	drivers/media/rc/keymaps/rc-cec.c
3330F:	include/media/cec.h
3331F:	include/media/cec-notifier.h
3332F:	include/uapi/linux/cec.h
3333F:	include/uapi/linux/cec-funcs.h
3334F:	Documentation/devicetree/bindings/media/cec.txt
3335F:	Documentation/ABI/testing/debugfs-cec-error-inj
3336
3337CEC GPIO DRIVER
3338M:	Hans Verkuil <hans.verkuil@cisco.com>
3339L:	linux-media@vger.kernel.org
3340T:	git git://linuxtv.org/media_tree.git
3341W:	http://linuxtv.org
3342S:	Supported
3343F:	drivers/media/platform/cec-gpio/
3344F:	Documentation/devicetree/bindings/media/cec-gpio.txt
3345
3346CELL BROADBAND ENGINE ARCHITECTURE
3347M:	Arnd Bergmann <arnd@arndb.de>
3348L:	linuxppc-dev@lists.ozlabs.org
3349W:	http://www.ibm.com/developerworks/power/cell/
3350S:	Supported
3351F:	arch/powerpc/include/asm/cell*.h
3352F:	arch/powerpc/include/asm/spu*.h
3353F:	arch/powerpc/include/uapi/asm/spu*.h
3354F:	arch/powerpc/oprofile/*cell*
3355F:	arch/powerpc/platforms/cell/
3356
3357CEPH COMMON CODE (LIBCEPH)
3358M:	Ilya Dryomov <idryomov@gmail.com>
3359M:	"Yan, Zheng" <zyan@redhat.com>
3360M:	Sage Weil <sage@redhat.com>
3361L:	ceph-devel@vger.kernel.org
3362W:	http://ceph.com/
3363T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3364T:	git git://github.com/ceph/ceph-client.git
3365S:	Supported
3366F:	net/ceph/
3367F:	include/linux/ceph/
3368F:	include/linux/crush/
3369
3370CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3371M:	"Yan, Zheng" <zyan@redhat.com>
3372M:	Sage Weil <sage@redhat.com>
3373M:	Ilya Dryomov <idryomov@gmail.com>
3374L:	ceph-devel@vger.kernel.org
3375W:	http://ceph.com/
3376T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3377T:	git git://github.com/ceph/ceph-client.git
3378S:	Supported
3379F:	Documentation/filesystems/ceph.txt
3380F:	fs/ceph/
3381
3382CERTIFICATE HANDLING:
3383M:	David Howells <dhowells@redhat.com>
3384M:	David Woodhouse <dwmw2@infradead.org>
3385L:	keyrings@vger.kernel.org
3386S:	Maintained
3387F:	Documentation/admin-guide/module-signing.rst
3388F:	certs/
3389F:	scripts/sign-file.c
3390F:	scripts/extract-cert.c
3391
3392CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3393L:	linux-usb@vger.kernel.org
3394S:	Orphan
3395F:	Documentation/usb/WUSB-Design-overview.txt
3396F:	Documentation/usb/wusb-cbaf
3397F:	drivers/usb/host/hwa-hc.c
3398F:	drivers/usb/host/whci/
3399F:	drivers/usb/wusbcore/
3400F:	include/linux/usb/wusb*
3401
3402CFAG12864B LCD DRIVER
3403M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3404S:	Maintained
3405F:	drivers/auxdisplay/cfag12864b.c
3406F:	include/linux/cfag12864b.h
3407
3408CFAG12864BFB LCD FRAMEBUFFER DRIVER
3409M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3410S:	Maintained
3411F:	drivers/auxdisplay/cfag12864bfb.c
3412F:	include/linux/cfag12864b.h
3413
3414802.11 (including CFG80211/NL80211)
3415M:	Johannes Berg <johannes@sipsolutions.net>
3416L:	linux-wireless@vger.kernel.org
3417W:	http://wireless.kernel.org/
3418T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3419T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3420S:	Maintained
3421F:	net/wireless/
3422F:	include/uapi/linux/nl80211.h
3423F:	include/linux/ieee80211.h
3424F:	include/net/wext.h
3425F:	include/net/cfg80211.h
3426F:	include/net/iw_handler.h
3427F:	include/net/ieee80211_radiotap.h
3428F:	Documentation/driver-api/80211/cfg80211.rst
3429F:	Documentation/networking/regulatory.txt
3430
3431CHAR and MISC DRIVERS
3432M:	Arnd Bergmann <arnd@arndb.de>
3433M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3434T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3435S:	Supported
3436F:	drivers/char/
3437F:	drivers/misc/
3438F:	include/linux/miscdevice.h
3439
3440CHECKPATCH
3441M:	Andy Whitcroft <apw@canonical.com>
3442M:	Joe Perches <joe@perches.com>
3443S:	Maintained
3444F:	scripts/checkpatch.pl
3445
3446CHINESE DOCUMENTATION
3447M:	Harry Wei <harryxiyou@gmail.com>
3448L:	xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3449L:	linux-kernel@zh-kernel.org (moderated for non-subscribers)
3450S:	Maintained
3451F:	Documentation/translations/zh_CN/
3452
3453CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3454M:	Peter Chen <Peter.Chen@nxp.com>
3455T:	git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3456L:	linux-usb@vger.kernel.org
3457S:	Maintained
3458F:	drivers/usb/chipidea/
3459
3460CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3461M:	Hans de Goede <hdegoede@redhat.com>
3462L:	linux-input@vger.kernel.org
3463S:	Maintained
3464F:	Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3465F:	drivers/input/touchscreen/chipone_icn8318.c
3466
3467CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
3468M:	Hans de Goede <hdegoede@redhat.com>
3469L:	linux-input@vger.kernel.org
3470S:	Maintained
3471F:	drivers/input/touchscreen/chipone_icn8505.c
3472
3473CHROME HARDWARE PLATFORM SUPPORT
3474M:	Benson Leung <bleung@chromium.org>
3475M:	Olof Johansson <olof@lixom.net>
3476S:	Maintained
3477T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform.git
3478F:	drivers/platform/chrome/
3479
3480CIRRUS LOGIC AUDIO CODEC DRIVERS
3481M:	Brian Austin <brian.austin@cirrus.com>
3482M:	Paul Handrigan <Paul.Handrigan@cirrus.com>
3483L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
3484S:	Maintained
3485F:	sound/soc/codecs/cs*
3486
3487CIRRUS LOGIC EP93XX ETHERNET DRIVER
3488M:	Hartley Sweeten <hsweeten@visionengravers.com>
3489L:	netdev@vger.kernel.org
3490S:	Maintained
3491F:	drivers/net/ethernet/cirrus/ep93xx_eth.c
3492
3493CISCO FCOE HBA DRIVER
3494M:	Satish Kharat <satishkh@cisco.com>
3495M:	Sesidhar Baddela <sebaddel@cisco.com>
3496M:	Karan Tilak Kumar <kartilak@cisco.com>
3497L:	linux-scsi@vger.kernel.org
3498S:	Supported
3499F:	drivers/scsi/fnic/
3500
3501CISCO SCSI HBA DRIVER
3502M:	Karan Tilak Kumar <kartilak@cisco.com>
3503M:	Sesidhar Baddela <sebaddel@cisco.com>
3504L:	linux-scsi@vger.kernel.org
3505S:	Supported
3506F:	drivers/scsi/snic/
3507
3508CISCO VIC ETHERNET NIC DRIVER
3509M:	Christian Benvenuti <benve@cisco.com>
3510M:	Govindarajulu Varadarajan <_govind@gmx.com>
3511M:	Parvi Kaustubhi <pkaustub@cisco.com>
3512S:	Supported
3513F:	drivers/net/ethernet/cisco/enic/
3514
3515CISCO VIC LOW LATENCY NIC DRIVER
3516M:	Christian Benvenuti <benve@cisco.com>
3517M:	Dave Goodell <dgoodell@cisco.com>
3518S:	Supported
3519F:	drivers/infiniband/hw/usnic/
3520
3521CLEANCACHE API
3522M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3523L:	linux-kernel@vger.kernel.org
3524S:	Maintained
3525F:	mm/cleancache.c
3526F:	include/linux/cleancache.h
3527
3528CLK API
3529M:	Russell King <linux@armlinux.org.uk>
3530L:	linux-clk@vger.kernel.org
3531S:	Maintained
3532F:	include/linux/clk.h
3533
3534CLOCKSOURCE, CLOCKEVENT DRIVERS
3535M:	Daniel Lezcano <daniel.lezcano@linaro.org>
3536M:	Thomas Gleixner <tglx@linutronix.de>
3537L:	linux-kernel@vger.kernel.org
3538T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3539S:	Supported
3540F:	drivers/clocksource/
3541F:	Documentation/devicetree/bindings/timer/
3542
3543CMPC ACPI DRIVER
3544M:	Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3545M:	Daniel Oliveira Nascimento <don@syst.com.br>
3546L:	platform-driver-x86@vger.kernel.org
3547S:	Supported
3548F:	drivers/platform/x86/classmate-laptop.c
3549
3550COBALT MEDIA DRIVER
3551M:	Hans Verkuil <hans.verkuil@cisco.com>
3552L:	linux-media@vger.kernel.org
3553T:	git git://linuxtv.org/media_tree.git
3554W:	https://linuxtv.org
3555S:	Supported
3556F:	drivers/media/pci/cobalt/
3557
3558COCCINELLE/Semantic Patches (SmPL)
3559M:	Julia Lawall <Julia.Lawall@lip6.fr>
3560M:	Gilles Muller <Gilles.Muller@lip6.fr>
3561M:	Nicolas Palix <nicolas.palix@imag.fr>
3562M:	Michal Marek <michal.lkml@markovi.net>
3563L:	cocci@systeme.lip6.fr (moderated for non-subscribers)
3564T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3565W:	http://coccinelle.lip6.fr/
3566S:	Supported
3567F:	Documentation/dev-tools/coccinelle.rst
3568F:	scripts/coccinelle/
3569F:	scripts/coccicheck
3570
3571CODA FILE SYSTEM
3572M:	Jan Harkes <jaharkes@cs.cmu.edu>
3573M:	coda@cs.cmu.edu
3574L:	codalist@coda.cs.cmu.edu
3575W:	http://www.coda.cs.cmu.edu/
3576S:	Maintained
3577F:	Documentation/filesystems/coda.txt
3578F:	fs/coda/
3579F:	include/linux/coda*.h
3580F:	include/uapi/linux/coda*.h
3581
3582CODA V4L2 MEM2MEM DRIVER
3583M:	Philipp Zabel <p.zabel@pengutronix.de>
3584L:	linux-media@vger.kernel.org
3585S:	Maintained
3586F:	Documentation/devicetree/bindings/media/coda.txt
3587F:	drivers/media/platform/coda/
3588
3589COMMON CLK FRAMEWORK
3590M:	Michael Turquette <mturquette@baylibre.com>
3591M:	Stephen Boyd <sboyd@kernel.org>
3592L:	linux-clk@vger.kernel.org
3593Q:	http://patchwork.kernel.org/project/linux-clk/list/
3594T:	git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3595S:	Maintained
3596F:	Documentation/devicetree/bindings/clock/
3597F:	drivers/clk/
3598X:	drivers/clk/clkdev.c
3599F:	include/linux/clk-pr*
3600F:	include/linux/clk/
3601F:	include/linux/of_clk.h
3602
3603COMMON INTERNET FILE SYSTEM (CIFS)
3604M:	Steve French <sfrench@samba.org>
3605L:	linux-cifs@vger.kernel.org
3606L:	samba-technical@lists.samba.org (moderated for non-subscribers)
3607W:	http://linux-cifs.samba.org/
3608T:	git git://git.samba.org/sfrench/cifs-2.6.git
3609S:	Supported
3610F:	Documentation/filesystems/cifs/
3611F:	fs/cifs/
3612
3613COMPACTPCI HOTPLUG CORE
3614M:	Scott Murray <scott@spiteful.org>
3615L:	linux-pci@vger.kernel.org
3616S:	Maintained
3617F:	drivers/pci/hotplug/cpci_hotplug*
3618
3619COMPACTPCI HOTPLUG GENERIC DRIVER
3620M:	Scott Murray <scott@spiteful.org>
3621L:	linux-pci@vger.kernel.org
3622S:	Maintained
3623F:	drivers/pci/hotplug/cpcihp_generic.c
3624
3625COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3626M:	Scott Murray <scott@spiteful.org>
3627L:	linux-pci@vger.kernel.org
3628S:	Maintained
3629F:	drivers/pci/hotplug/cpcihp_zt5550.*
3630
3631COMPAL LAPTOP SUPPORT
3632M:	Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3633L:	platform-driver-x86@vger.kernel.org
3634S:	Maintained
3635F:	drivers/platform/x86/compal-laptop.c
3636
3637CONEXANT ACCESSRUNNER USB DRIVER
3638L:	accessrunner-general@lists.sourceforge.net
3639W:	http://accessrunner.sourceforge.net/
3640S:	Orphan
3641F:	drivers/usb/atm/cxacru.c
3642
3643CONFIGFS
3644M:	Joel Becker <jlbec@evilplan.org>
3645M:	Christoph Hellwig <hch@lst.de>
3646T:	git git://git.infradead.org/users/hch/configfs.git
3647S:	Supported
3648F:	fs/configfs/
3649F:	include/linux/configfs.h
3650
3651CONNECTOR
3652M:	Evgeniy Polyakov <zbr@ioremap.net>
3653L:	netdev@vger.kernel.org
3654S:	Maintained
3655F:	drivers/connector/
3656
3657CONTROL GROUP (CGROUP)
3658M:	Tejun Heo <tj@kernel.org>
3659M:	Li Zefan <lizefan@huawei.com>
3660M:	Johannes Weiner <hannes@cmpxchg.org>
3661L:	cgroups@vger.kernel.org
3662T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3663S:	Maintained
3664F:	Documentation/cgroup*
3665F:	include/linux/cgroup*
3666F:	kernel/cgroup*
3667
3668CONTROL GROUP - CPUSET
3669M:	Li Zefan <lizefan@huawei.com>
3670L:	cgroups@vger.kernel.org
3671W:	http://www.bullopensource.org/cpuset/
3672W:	http://oss.sgi.com/projects/cpusets/
3673T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3674S:	Maintained
3675F:	Documentation/cgroup-v1/cpusets.txt
3676F:	include/linux/cpuset.h
3677F:	kernel/cgroup/cpuset.c
3678
3679CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3680M:	Johannes Weiner <hannes@cmpxchg.org>
3681M:	Michal Hocko <mhocko@kernel.org>
3682M:	Vladimir Davydov <vdavydov.dev@gmail.com>
3683L:	cgroups@vger.kernel.org
3684L:	linux-mm@kvack.org
3685S:	Maintained
3686F:	mm/memcontrol.c
3687F:	mm/swap_cgroup.c
3688
3689CORETEMP HARDWARE MONITORING DRIVER
3690M:	Fenghua Yu <fenghua.yu@intel.com>
3691L:	linux-hwmon@vger.kernel.org
3692S:	Maintained
3693F:	Documentation/hwmon/coretemp
3694F:	drivers/hwmon/coretemp.c
3695
3696COSA/SRP SYNC SERIAL DRIVER
3697M:	Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3698W:	http://www.fi.muni.cz/~kas/cosa/
3699S:	Maintained
3700F:	drivers/net/wan/cosa*
3701
3702CPMAC ETHERNET DRIVER
3703M:	Florian Fainelli <f.fainelli@gmail.com>
3704L:	netdev@vger.kernel.org
3705S:	Maintained
3706F:	drivers/net/ethernet/ti/cpmac.c
3707
3708CPU FREQUENCY DRIVERS
3709M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
3710M:	Viresh Kumar <viresh.kumar@linaro.org>
3711L:	linux-pm@vger.kernel.org
3712S:	Maintained
3713T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3714T:	git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3715B:	https://bugzilla.kernel.org
3716F:	Documentation/cpu-freq/
3717F:	Documentation/devicetree/bindings/cpufreq/
3718F:	drivers/cpufreq/
3719F:	include/linux/cpufreq.h
3720F:	tools/testing/selftests/cpufreq/
3721
3722CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3723M:	Viresh Kumar <viresh.kumar@linaro.org>
3724M:	Sudeep Holla <sudeep.holla@arm.com>
3725L:	linux-pm@vger.kernel.org
3726W:	http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3727S:	Maintained
3728F:	drivers/cpufreq/arm_big_little.h
3729F:	drivers/cpufreq/arm_big_little.c
3730F:	drivers/cpufreq/arm_big_little_dt.c
3731
3732CPU POWER MONITORING SUBSYSTEM
3733M:	Thomas Renninger <trenn@suse.com>
3734M:	Shuah Khan <shuah@kernel.org>
3735L:	linux-pm@vger.kernel.org
3736S:	Maintained
3737F:	tools/power/cpupower/
3738
3739CPUID/MSR DRIVER
3740M:	"H. Peter Anvin" <hpa@zytor.com>
3741S:	Maintained
3742F:	arch/x86/kernel/cpuid.c
3743F:	arch/x86/kernel/msr.c
3744
3745CPUIDLE DRIVER - ARM BIG LITTLE
3746M:	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3747M:	Daniel Lezcano <daniel.lezcano@linaro.org>
3748L:	linux-pm@vger.kernel.org
3749L:	linux-arm-kernel@lists.infradead.org
3750T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3751S:	Maintained
3752F:	drivers/cpuidle/cpuidle-big_little.c
3753
3754CPUIDLE DRIVER - ARM EXYNOS
3755M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3756M:	Daniel Lezcano <daniel.lezcano@linaro.org>
3757M:	Kukjin Kim <kgene@kernel.org>
3758L:	linux-pm@vger.kernel.org
3759L:	linux-samsung-soc@vger.kernel.org
3760S:	Supported
3761F:	drivers/cpuidle/cpuidle-exynos.c
3762F:	arch/arm/mach-exynos/pm.c
3763
3764CPUIDLE DRIVERS
3765M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
3766M:	Daniel Lezcano <daniel.lezcano@linaro.org>
3767L:	linux-pm@vger.kernel.org
3768S:	Maintained
3769T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3770B:	https://bugzilla.kernel.org
3771F:	drivers/cpuidle/*
3772F:	include/linux/cpuidle.h
3773
3774CRAMFS FILESYSTEM
3775M:	Nicolas Pitre <nico@linaro.org>
3776S:	Maintained
3777F:	Documentation/filesystems/cramfs.txt
3778F:	fs/cramfs/
3779
3780CRYPTO API
3781M:	Herbert Xu <herbert@gondor.apana.org.au>
3782M:	"David S. Miller" <davem@davemloft.net>
3783L:	linux-crypto@vger.kernel.org
3784T:	git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3785T:	git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3786S:	Maintained
3787F:	Documentation/crypto/
3788F:	Documentation/devicetree/bindings/crypto/
3789F:	arch/*/crypto/
3790F:	crypto/
3791F:	drivers/crypto/
3792F:	include/crypto/
3793F:	include/linux/crypto*
3794
3795CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3796M:	Neil Horman <nhorman@tuxdriver.com>
3797L:	linux-crypto@vger.kernel.org
3798S:	Maintained
3799F:	crypto/ansi_cprng.c
3800F:	crypto/rng.c
3801
3802CS3308 MEDIA DRIVER
3803M:	Hans Verkuil <hverkuil@xs4all.nl>
3804L:	linux-media@vger.kernel.org
3805T:	git git://linuxtv.org/media_tree.git
3806W:	http://linuxtv.org
3807S:	Odd Fixes
3808F:	drivers/media/i2c/cs3308.c
3809F:	drivers/media/i2c/cs3308.h
3810
3811CS5535 Audio ALSA driver
3812M:	Jaya Kumar <jayakumar.alsa@gmail.com>
3813S:	Maintained
3814F:	sound/pci/cs5535audio/
3815
3816CW1200 WLAN driver
3817M:	Solomon Peachy <pizza@shaftnet.org>
3818S:	Maintained
3819F:	drivers/net/wireless/st/cw1200/
3820
3821CX18 VIDEO4LINUX DRIVER
3822M:	Andy Walls <awalls@md.metrocast.net>
3823L:	ivtv-devel@ivtvdriver.org (subscribers-only)
3824L:	linux-media@vger.kernel.org
3825T:	git git://linuxtv.org/media_tree.git
3826W:	https://linuxtv.org
3827W:	http://www.ivtvdriver.org/index.php/Cx18
3828S:	Maintained
3829F:	Documentation/media/v4l-drivers/cx18*
3830F:	drivers/media/pci/cx18/
3831F:	include/uapi/linux/ivtv*
3832
3833CX2341X MPEG ENCODER HELPER MODULE
3834M:	Hans Verkuil <hverkuil@xs4all.nl>
3835L:	linux-media@vger.kernel.org
3836T:	git git://linuxtv.org/media_tree.git
3837W:	https://linuxtv.org
3838S:	Maintained
3839F:	drivers/media/common/cx2341x*
3840F:	include/media/cx2341x*
3841
3842CX24120 MEDIA DRIVER
3843M:	Jemma Denson <jdenson@gmail.com>
3844M:	Patrick Boettcher <patrick.boettcher@posteo.de>
3845L:	linux-media@vger.kernel.org
3846W:	https://linuxtv.org
3847Q:	http://patchwork.linuxtv.org/project/linux-media/list/
3848S:	Maintained
3849F:	drivers/media/dvb-frontends/cx24120*
3850
3851CX88 VIDEO4LINUX DRIVER
3852M:	Mauro Carvalho Chehab <mchehab@kernel.org>
3853L:	linux-media@vger.kernel.org
3854W:	https://linuxtv.org
3855T:	git git://linuxtv.org/media_tree.git
3856S:	Odd fixes
3857F:	Documentation/media/v4l-drivers/cx88*
3858F:	drivers/media/pci/cx88/
3859
3860CXD2820R MEDIA DRIVER
3861M:	Antti Palosaari <crope@iki.fi>
3862L:	linux-media@vger.kernel.org
3863W:	https://linuxtv.org
3864W:	http://palosaari.fi/linux/
3865Q:	http://patchwork.linuxtv.org/project/linux-media/list/
3866T:	git git://linuxtv.org/anttip/media_tree.git
3867S:	Maintained
3868F:	drivers/media/dvb-frontends/cxd2820r*
3869
3870CXGB3 ETHERNET DRIVER (CXGB3)
3871M:	Santosh Raspatur <santosh@chelsio.com>
3872L:	netdev@vger.kernel.org
3873W:	http://www.chelsio.com
3874S:	Supported
3875F:	drivers/net/ethernet/chelsio/cxgb3/
3876
3877CXGB3 ISCSI DRIVER (CXGB3I)
3878M:	Karen Xie <kxie@chelsio.com>
3879L:	linux-scsi@vger.kernel.org
3880W:	http://www.chelsio.com
3881S:	Supported
3882F:	drivers/scsi/cxgbi/cxgb3i
3883
3884CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3885M:	Steve Wise <swise@chelsio.com>
3886L:	linux-rdma@vger.kernel.org
3887W:	http://www.openfabrics.org
3888S:	Supported
3889F:	drivers/infiniband/hw/cxgb3/
3890F:	include/uapi/rdma/cxgb3-abi.h
3891
3892CXGB4 CRYPTO DRIVER (chcr)
3893M:	Harsh Jain <harsh@chelsio.com>
3894L:	linux-crypto@vger.kernel.org
3895W:	http://www.chelsio.com
3896S:	Supported
3897F:	drivers/crypto/chelsio
3898
3899CXGB4 ETHERNET DRIVER (CXGB4)
3900M:	Ganesh Goudar <ganeshgr@chelsio.com>
3901L:	netdev@vger.kernel.org
3902W:	http://www.chelsio.com
3903S:	Supported
3904F:	drivers/net/ethernet/chelsio/cxgb4/
3905
3906CXGB4 ISCSI DRIVER (CXGB4I)
3907M:	Karen Xie <kxie@chelsio.com>
3908L:	linux-scsi@vger.kernel.org
3909W:	http://www.chelsio.com
3910S:	Supported
3911F:	drivers/scsi/cxgbi/cxgb4i
3912
3913CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3914M:	Steve Wise <swise@chelsio.com>
3915L:	linux-rdma@vger.kernel.org
3916W:	http://www.openfabrics.org
3917S:	Supported
3918F:	drivers/infiniband/hw/cxgb4/
3919F:	include/uapi/rdma/cxgb4-abi.h
3920
3921CXGB4VF ETHERNET DRIVER (CXGB4VF)
3922M:	Casey Leedom <leedom@chelsio.com>
3923L:	netdev@vger.kernel.org
3924W:	http://www.chelsio.com
3925S:	Supported
3926F:	drivers/net/ethernet/chelsio/cxgb4vf/
3927
3928CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3929M:	Frederic Barrat <fbarrat@linux.vnet.ibm.com>
3930M:	Andrew Donnellan <andrew.donnellan@au1.ibm.com>
3931L:	linuxppc-dev@lists.ozlabs.org
3932S:	Supported
3933F:	arch/powerpc/platforms/powernv/pci-cxl.c
3934F:	drivers/misc/cxl/
3935F:	include/misc/cxl*
3936F:	include/uapi/misc/cxl.h
3937F:	Documentation/powerpc/cxl.txt
3938F:	Documentation/ABI/testing/sysfs-class-cxl
3939
3940CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3941M:	Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3942M:	Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3943M:	Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3944L:	linux-scsi@vger.kernel.org
3945S:	Supported
3946F:	drivers/scsi/cxlflash/
3947F:	include/uapi/scsi/cxlflash_ioctls.h
3948F:	Documentation/powerpc/cxlflash.txt
3949
3950CYBERPRO FB DRIVER
3951M:	Russell King <linux@armlinux.org.uk>
3952L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3953W:	http://www.armlinux.org.uk/
3954S:	Maintained
3955F:	drivers/video/fbdev/cyber2000fb.*
3956
3957CYCLADES ASYNC MUX DRIVER
3958W:	http://www.cyclades.com/
3959S:	Orphan
3960F:	drivers/tty/cyclades.c
3961F:	include/linux/cyclades.h
3962F:	include/uapi/linux/cyclades.h
3963
3964CYCLADES PC300 DRIVER
3965W:	http://www.cyclades.com/
3966S:	Orphan
3967F:	drivers/net/wan/pc300*
3968
3969CYPRESS_FIRMWARE MEDIA DRIVER
3970M:	Antti Palosaari <crope@iki.fi>
3971L:	linux-media@vger.kernel.org
3972W:	https://linuxtv.org
3973W:	http://palosaari.fi/linux/
3974Q:	http://patchwork.linuxtv.org/project/linux-media/list/
3975T:	git git://linuxtv.org/anttip/media_tree.git
3976S:	Maintained
3977F:	drivers/media/common/cypress_firmware*
3978
3979CYTTSP TOUCHSCREEN DRIVER
3980M:	Ferruh Yigit <fery@cypress.com>
3981L:	linux-input@vger.kernel.org
3982S:	Supported
3983F:	drivers/input/touchscreen/cyttsp*
3984F:	include/linux/input/cyttsp.h
3985
3986D-LINK DIR-685 TOUCHKEYS DRIVER
3987M:	Linus Walleij <linus.walleij@linaro.org>
3988L:	linux-input@vger.kernel.org
3989S:	Supported
3990F:	drivers/input/dlink-dir685-touchkeys.c
3991
3992DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3993M:	Joshua Kinard <kumba@gentoo.org>
3994S:	Maintained
3995F:	drivers/rtc/rtc-ds1685.c
3996F:	include/linux/rtc/ds1685.h
3997
3998DAMA SLAVE for AX.25
3999M:	Joerg Reuter <jreuter@yaina.de>
4000W:	http://yaina.de/jreuter/
4001W:	http://www.qsl.net/dl1bke/
4002L:	linux-hams@vger.kernel.org
4003S:	Maintained
4004F:	net/ax25/af_ax25.c
4005F:	net/ax25/ax25_dev.c
4006F:	net/ax25/ax25_ds_*
4007F:	net/ax25/ax25_in.c
4008F:	net/ax25/ax25_out.c
4009F:	net/ax25/ax25_timer.c
4010F:	net/ax25/sysctl_net_ax25.c
4011
4012DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4013L:	netdev@vger.kernel.org
4014S:	Orphan
4015F:	Documentation/networking/dmfe.txt
4016F:	drivers/net/ethernet/dec/tulip/dmfe.c
4017
4018DC390/AM53C974 SCSI driver
4019M:	Hannes Reinecke <hare@suse.com>
4020L:	linux-scsi@vger.kernel.org
4021S:	Maintained
4022F:	drivers/scsi/am53c974.c
4023
4024DC395x SCSI driver
4025M:	Oliver Neukum <oliver@neukum.org>
4026M:	Ali Akcaagac <aliakc@web.de>
4027M:	Jamie Lenehan <lenehan@twibble.org>
4028L:	dc395x@twibble.org
4029W:	http://twibble.org/dist/dc395x/
4030W:	http://lists.twibble.org/mailman/listinfo/dc395x/
4031S:	Maintained
4032F:	Documentation/scsi/dc395x.txt
4033F:	drivers/scsi/dc395x.*
4034
4035DCCP PROTOCOL
4036M:	Gerrit Renker <gerrit@erg.abdn.ac.uk>
4037L:	dccp@vger.kernel.org
4038W:	http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4039S:	Maintained
4040F:	include/linux/dccp.h
4041F:	include/uapi/linux/dccp.h
4042F:	include/linux/tfrc.h
4043F:	net/dccp/
4044
4045DECnet NETWORK LAYER
4046W:	http://linux-decnet.sourceforge.net
4047L:	linux-decnet-user@lists.sourceforge.net
4048S:	Orphan
4049F:	Documentation/networking/decnet.txt
4050F:	net/decnet/
4051
4052DECSTATION PLATFORM SUPPORT
4053M:	"Maciej W. Rozycki" <macro@linux-mips.org>
4054L:	linux-mips@linux-mips.org
4055W:	http://www.linux-mips.org/wiki/DECstation
4056S:	Maintained
4057F:	arch/mips/dec/
4058F:	arch/mips/include/asm/dec/
4059F:	arch/mips/include/asm/mach-dec/
4060
4061DEFXX FDDI NETWORK DRIVER
4062M:	"Maciej W. Rozycki" <macro@linux-mips.org>
4063S:	Maintained
4064F:	drivers/net/fddi/defxx.*
4065
4066DELL SMBIOS DRIVER
4067M:	Pali Rohár <pali.rohar@gmail.com>
4068M:	Mario Limonciello <mario.limonciello@dell.com>
4069L:	platform-driver-x86@vger.kernel.org
4070S:	Maintained
4071F:	drivers/platform/x86/dell-smbios.*
4072
4073DELL SMBIOS SMM DRIVER
4074M:	Mario Limonciello <mario.limonciello@dell.com>
4075L:	platform-driver-x86@vger.kernel.org
4076S:	Maintained
4077F:	drivers/platform/x86/dell-smbios-smm.c
4078
4079DELL SMBIOS WMI DRIVER
4080M:	Mario Limonciello <mario.limonciello@dell.com>
4081L:	platform-driver-x86@vger.kernel.org
4082S:	Maintained
4083F:	drivers/platform/x86/dell-smbios-wmi.c
4084F:	tools/wmi/dell-smbios-example.c
4085
4086DELL LAPTOP DRIVER
4087M:	Matthew Garrett <mjg59@srcf.ucam.org>
4088M:	Pali Rohár <pali.rohar@gmail.com>
4089L:	platform-driver-x86@vger.kernel.org
4090S:	Maintained
4091F:	drivers/platform/x86/dell-laptop.c
4092
4093DELL LAPTOP FREEFALL DRIVER
4094M:	Pali Rohár <pali.rohar@gmail.com>
4095S:	Maintained
4096F:	drivers/platform/x86/dell-smo8800.c
4097
4098DELL LAPTOP RBTN DRIVER
4099M:	Pali Rohár <pali.rohar@gmail.com>
4100S:	Maintained
4101F:	drivers/platform/x86/dell-rbtn.*
4102
4103DELL LAPTOP SMM DRIVER
4104M:	Pali Rohár <pali.rohar@gmail.com>
4105S:	Maintained
4106F:	drivers/hwmon/dell-smm-hwmon.c
4107F:	include/uapi/linux/i8k.h
4108
4109DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4110M:	Doug Warzecha <Douglas_Warzecha@dell.com>
4111S:	Maintained
4112F:	Documentation/dcdbas.txt
4113F:	drivers/firmware/dcdbas.*
4114
4115DELL WMI NOTIFICATIONS DRIVER
4116M:	Matthew Garrett <mjg59@srcf.ucam.org>
4117M:	Pali Rohár <pali.rohar@gmail.com>
4118S:	Maintained
4119F:	drivers/platform/x86/dell-wmi.c
4120
4121DELL WMI DESCRIPTOR DRIVER
4122M:	Mario Limonciello <mario.limonciello@dell.com>
4123S:	Maintained
4124F:	drivers/platform/x86/dell-wmi-descriptor.c
4125
4126DELTA ST MEDIA DRIVER
4127M:	Hugues Fruchet <hugues.fruchet@st.com>
4128L:	linux-media@vger.kernel.org
4129T:	git git://linuxtv.org/media_tree.git
4130W:	https://linuxtv.org
4131S:	Supported
4132F:	drivers/media/platform/sti/delta
4133
4134DENALI NAND DRIVER
4135M:	Masahiro Yamada <yamada.masahiro@socionext.com>
4136L:	linux-mtd@lists.infradead.org
4137S:	Supported
4138F:	drivers/mtd/nand/raw/denali*
4139
4140DESIGNWARE USB2 DRD IP DRIVER
4141M:	Minas Harutyunyan <hminas@synopsys.com>
4142L:	linux-usb@vger.kernel.org
4143T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4144S:	Maintained
4145F:	drivers/usb/dwc2/
4146
4147DESIGNWARE USB3 DRD IP DRIVER
4148M:	Felipe Balbi <balbi@kernel.org>
4149L:	linux-usb@vger.kernel.org
4150T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4151S:	Maintained
4152F:	drivers/usb/dwc3/
4153
4154DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4155M:	Andreas Klinger <ak@it-klinger.de>
4156L:	linux-iio@vger.kernel.org
4157S:	Maintained
4158F:	Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4159F:	drivers/iio/proximity/srf*.c
4160
4161DEVICE COREDUMP (DEV_COREDUMP)
4162M:	Johannes Berg <johannes@sipsolutions.net>
4163L:	linux-kernel@vger.kernel.org
4164S:	Maintained
4165F:	drivers/base/devcoredump.c
4166F:	include/linux/devcoredump.h
4167
4168DEVICE FREQUENCY (DEVFREQ)
4169M:	MyungJoo Ham <myungjoo.ham@samsung.com>
4170M:	Kyungmin Park <kyungmin.park@samsung.com>
4171R:	Chanwoo Choi <cw00.choi@samsung.com>
4172L:	linux-pm@vger.kernel.org
4173T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4174S:	Maintained
4175F:	drivers/devfreq/
4176F:	include/linux/devfreq.h
4177F:	Documentation/devicetree/bindings/devfreq/
4178
4179DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4180M:	Chanwoo Choi <cw00.choi@samsung.com>
4181L:	linux-pm@vger.kernel.org
4182T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4183S:	Supported
4184F:	drivers/devfreq/event/
4185F:	drivers/devfreq/devfreq-event.c
4186F:	include/linux/devfreq-event.h
4187F:	Documentation/devicetree/bindings/devfreq/event/
4188
4189DEVICE NUMBER REGISTRY
4190M:	Torben Mathiasen <device@lanana.org>
4191W:	http://lanana.org/docs/device-list/index.html
4192S:	Maintained
4193
4194DEVICE-MAPPER  (LVM)
4195M:	Alasdair Kergon <agk@redhat.com>
4196M:	Mike Snitzer <snitzer@redhat.com>
4197M:	dm-devel@redhat.com
4198L:	dm-devel@redhat.com
4199W:	http://sources.redhat.com/dm
4200Q:	http://patchwork.kernel.org/project/dm-devel/list/
4201T:	git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4202T:	quilt http://people.redhat.com/agk/patches/linux/editing/
4203S:	Maintained
4204F:	Documentation/device-mapper/
4205F:	drivers/md/Makefile
4206F:	drivers/md/Kconfig
4207F:	drivers/md/dm*
4208F:	drivers/md/persistent-data/
4209F:	include/linux/device-mapper.h
4210F:	include/linux/dm-*.h
4211F:	include/uapi/linux/dm-*.h
4212
4213DEVLINK
4214M:	Jiri Pirko <jiri@mellanox.com>
4215L:	netdev@vger.kernel.org
4216S:	Supported
4217F:	net/core/devlink.c
4218F:	include/net/devlink.h
4219F:	include/uapi/linux/devlink.h
4220
4221DIALOG SEMICONDUCTOR DRIVERS
4222M:	Support Opensource <support.opensource@diasemi.com>
4223W:	http://www.dialog-semiconductor.com/products
4224S:	Supported
4225F:	Documentation/hwmon/da90??
4226F:	Documentation/devicetree/bindings/mfd/da90*.txt
4227F:	Documentation/devicetree/bindings/input/da90??-onkey.txt
4228F:	Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4229F:	Documentation/devicetree/bindings/regulator/da92*.txt
4230F:	Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4231F:	Documentation/devicetree/bindings/sound/da[79]*.txt
4232F:	drivers/gpio/gpio-da90??.c
4233F:	drivers/hwmon/da90??-hwmon.c
4234F:	drivers/iio/adc/da91??-*.c
4235F:	drivers/input/misc/da90??_onkey.c
4236F:	drivers/input/touchscreen/da9052_tsi.c
4237F:	drivers/leds/leds-da90??.c
4238F:	drivers/mfd/da903x.c
4239F:	drivers/mfd/da90??-*.c
4240F:	drivers/mfd/da91??-*.c
4241F:	drivers/power/supply/da9052-battery.c
4242F:	drivers/power/supply/da91??-*.c
4243F:	drivers/regulator/da903x.c
4244F:	drivers/regulator/da9???-regulator.[ch]
4245F:	drivers/thermal/da90??-thermal.c
4246F:	drivers/rtc/rtc-da90??.c
4247F:	drivers/video/backlight/da90??_bl.c
4248F:	drivers/watchdog/da90??_wdt.c
4249F:	include/linux/mfd/da903x.h
4250F:	include/linux/mfd/da9052/
4251F:	include/linux/mfd/da9055/
4252F:	include/linux/mfd/da9062/
4253F:	include/linux/mfd/da9063/
4254F:	include/linux/mfd/da9150/
4255F:	include/linux/regulator/da9211.h
4256F:	include/sound/da[79]*.h
4257F:	sound/soc/codecs/da[79]*.[ch]
4258
4259DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4260M:	William Breathitt Gray <vilhelm.gray@gmail.com>
4261L:	linux-gpio@vger.kernel.org
4262S:	Maintained
4263F:	drivers/gpio/gpio-gpio-mm.c
4264
4265DIGI NEO AND CLASSIC PCI PRODUCTS
4266M:	Lidza Louina <lidza.louina@gmail.com>
4267M:	Mark Hounschell <markh@compro.net>
4268L:	driverdev-devel@linuxdriverproject.org
4269S:	Maintained
4270F:	drivers/staging/dgnc/
4271
4272DIOLAN U2C-12 I2C DRIVER
4273M:	Guenter Roeck <linux@roeck-us.net>
4274L:	linux-i2c@vger.kernel.org
4275S:	Maintained
4276F:	drivers/i2c/busses/i2c-diolan-u2c.c
4277
4278FILESYSTEM DIRECT ACCESS (DAX)
4279M:	Matthew Wilcox <mawilcox@microsoft.com>
4280M:	Ross Zwisler <ross.zwisler@linux.intel.com>
4281L:	linux-fsdevel@vger.kernel.org
4282S:	Supported
4283F:	fs/dax.c
4284F:	include/linux/dax.h
4285F:	include/trace/events/fs_dax.h
4286
4287DEVICE DIRECT ACCESS (DAX)
4288M:	Dan Williams <dan.j.williams@intel.com>
4289M:	Dave Jiang <dave.jiang@intel.com>
4290M:	Ross Zwisler <ross.zwisler@linux.intel.com>
4291M:	Vishal Verma <vishal.l.verma@intel.com>
4292L:	linux-nvdimm@lists.01.org
4293S:	Supported
4294F:	drivers/dax/
4295
4296DIRECTORY NOTIFICATION (DNOTIFY)
4297M:	Jan Kara <jack@suse.cz>
4298R:	Amir Goldstein <amir73il@gmail.com>
4299L:	linux-fsdevel@vger.kernel.org
4300S:	Maintained
4301F:	Documentation/filesystems/dnotify.txt
4302F:	fs/notify/dnotify/
4303F:	include/linux/dnotify.h
4304
4305DISK GEOMETRY AND PARTITION HANDLING
4306M:	Andries Brouwer <aeb@cwi.nl>
4307W:	http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4308W:	http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4309W:	http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4310S:	Maintained
4311
4312DISKQUOTA
4313M:	Jan Kara <jack@suse.com>
4314S:	Maintained
4315F:	Documentation/filesystems/quota.txt
4316F:	fs/quota/
4317F:	include/linux/quota*.h
4318F:	include/uapi/linux/quota*.h
4319
4320DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4321M:	Bernie Thompson <bernie@plugable.com>
4322L:	linux-fbdev@vger.kernel.org
4323S:	Maintained
4324W:	http://plugable.com/category/projects/udlfb/
4325F:	drivers/video/fbdev/udlfb.c
4326F:	include/video/udlfb.h
4327F:	Documentation/fb/udlfb.txt
4328
4329DISTRIBUTED LOCK MANAGER (DLM)
4330M:	Christine Caulfield <ccaulfie@redhat.com>
4331M:	David Teigland <teigland@redhat.com>
4332L:	cluster-devel@redhat.com
4333W:	http://sources.redhat.com/cluster/
4334T:	git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4335S:	Supported
4336F:	fs/dlm/
4337
4338DMA BUFFER SHARING FRAMEWORK
4339M:	Sumit Semwal <sumit.semwal@linaro.org>
4340S:	Maintained
4341L:	linux-media@vger.kernel.org
4342L:	dri-devel@lists.freedesktop.org
4343L:	linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4344F:	drivers/dma-buf/
4345F:	include/linux/dma-buf*
4346F:	include/linux/reservation.h
4347F:	include/linux/*fence.h
4348F:	Documentation/driver-api/dma-buf.rst
4349T:	git git://anongit.freedesktop.org/drm/drm-misc
4350
4351DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4352M:	Vinod Koul <vkoul@kernel.org>
4353L:	dmaengine@vger.kernel.org
4354Q:	https://patchwork.kernel.org/project/linux-dmaengine/list/
4355S:	Maintained
4356F:	drivers/dma/
4357F:	include/linux/dmaengine.h
4358F:	include/linux/of_dma.h
4359F:	Documentation/devicetree/bindings/dma/
4360F:	Documentation/driver-api/dmaengine/
4361T:	git git://git.infradead.org/users/vkoul/slave-dma.git
4362
4363DMA MAPPING HELPERS
4364M:	Christoph Hellwig <hch@lst.de>
4365M:	Marek Szyprowski <m.szyprowski@samsung.com>
4366R:	Robin Murphy <robin.murphy@arm.com>
4367L:	iommu@lists.linux-foundation.org
4368T:	git git://git.infradead.org/users/hch/dma-mapping.git
4369W:	http://git.infradead.org/users/hch/dma-mapping.git
4370S:	Supported
4371F:	lib/dma-debug.c
4372F:	lib/dma-direct.c
4373F:	lib/dma-noncoherent.c
4374F:	lib/dma-virt.c
4375F:	drivers/base/dma-mapping.c
4376F:	drivers/base/dma-coherent.c
4377F:	include/asm-generic/dma-mapping.h
4378F:	include/linux/dma-direct.h
4379F:	include/linux/dma-mapping.h
4380F:	include/linux/dma-noncoherent.h
4381
4382DME1737 HARDWARE MONITOR DRIVER
4383M:	Juerg Haefliger <juergh@gmail.com>
4384L:	linux-hwmon@vger.kernel.org
4385S:	Maintained
4386F:	Documentation/hwmon/dme1737
4387F:	drivers/hwmon/dme1737.c
4388
4389DMI/SMBIOS SUPPORT
4390M:	Jean Delvare <jdelvare@suse.com>
4391S:	Maintained
4392T:	quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4393F:	Documentation/ABI/testing/sysfs-firmware-dmi-tables
4394F:	drivers/firmware/dmi-id.c
4395F:	drivers/firmware/dmi_scan.c
4396F:	include/linux/dmi.h
4397
4398DOCUMENTATION
4399M:	Jonathan Corbet <corbet@lwn.net>
4400L:	linux-doc@vger.kernel.org
4401S:	Maintained
4402F:	Documentation/
4403F:	scripts/kernel-doc
4404X:	Documentation/ABI/
4405X:	Documentation/devicetree/
4406X:	Documentation/acpi
4407X:	Documentation/power
4408X:	Documentation/spi
4409X:	Documentation/media
4410T:	git git://git.lwn.net/linux.git docs-next
4411
4412DONGWOON DW9714 LENS VOICE COIL DRIVER
4413M:	Sakari Ailus <sakari.ailus@linux.intel.com>
4414L:	linux-media@vger.kernel.org
4415T:	git git://linuxtv.org/media_tree.git
4416S:	Maintained
4417F:	drivers/media/i2c/dw9714.c
4418
4419DOUBLETALK DRIVER
4420M:	"James R. Van Zandt" <jrv@vanzandt.mv.com>
4421L:	blinux-list@redhat.com
4422S:	Maintained
4423F:	drivers/char/dtlk.c
4424F:	include/linux/dtlk.h
4425
4426DPAA2 DATAPATH I/O (DPIO) DRIVER
4427M:	Roy Pledge <Roy.Pledge@nxp.com>
4428L:	linux-kernel@vger.kernel.org
4429S:	Maintained
4430F:	drivers/staging/fsl-mc/bus/dpio
4431
4432DPAA2 ETHERNET DRIVER
4433M:	Ioana Radulescu <ruxandra.radulescu@nxp.com>
4434L:	linux-kernel@vger.kernel.org
4435S:	Maintained
4436F:	drivers/staging/fsl-dpaa2/ethernet
4437
4438DPAA2 ETHERNET SWITCH DRIVER
4439M:	Razvan Stefanescu <razvan.stefanescu@nxp.com>
4440L:	linux-kernel@vger.kernel.org
4441S:	Maintained
4442F:	drivers/staging/fsl-dpaa2/ethsw
4443
4444DPAA2 PTP CLOCK DRIVER
4445M:	Yangbo Lu <yangbo.lu@nxp.com>
4446L:	linux-kernel@vger.kernel.org
4447S:	Maintained
4448F:	drivers/staging/fsl-dpaa2/rtc
4449
4450DPT_I2O SCSI RAID DRIVER
4451M:	Adaptec OEM Raid Solutions <aacraid@microsemi.com>
4452L:	linux-scsi@vger.kernel.org
4453W:	http://www.adaptec.com/
4454S:	Maintained
4455F:	drivers/scsi/dpt*
4456F:	drivers/scsi/dpt/
4457
4458DRBD DRIVER
4459M:	Philipp Reisner <philipp.reisner@linbit.com>
4460M:	Lars Ellenberg <lars.ellenberg@linbit.com>
4461L:	drbd-dev@lists.linbit.com
4462W:	http://www.drbd.org
4463T:	git git://git.linbit.com/linux-drbd.git
4464T:	git git://git.linbit.com/drbd-8.4.git
4465S:	Supported
4466F:	drivers/block/drbd/
4467F:	lib/lru_cache.c
4468F:	Documentation/blockdev/drbd/
4469
4470DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4471M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4472T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4473S:	Supported
4474F:	Documentation/kobject.txt
4475F:	drivers/base/
4476F:	fs/debugfs/
4477F:	fs/sysfs/
4478F:	include/linux/debugfs.h
4479F:	include/linux/kobj*
4480F:	lib/kobj*
4481
4482DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
4483M:	Kevin Hilman <khilman@kernel.org>
4484M:	Nishanth Menon <nm@ti.com>
4485S:	Maintained
4486F:	drivers/power/avs/
4487F:	include/linux/power/smartreflex.h
4488L:	linux-pm@vger.kernel.org
4489
4490DRM DRIVER FOR ARM PL111 CLCD
4491M:	Eric Anholt <eric@anholt.net>
4492T:	git git://anongit.freedesktop.org/drm/drm-misc
4493S:	Supported
4494F:	drivers/gpu/drm/pl111/
4495
4496DRM DRIVER FOR ARM VERSATILE TFT PANELS
4497M:	Linus Walleij <linus.walleij@linaro.org>
4498T:	git git://anongit.freedesktop.org/drm/drm-misc
4499S:	Maintained
4500F:	drivers/gpu/drm/panel/panel-arm-versatile.c
4501F:	Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
4502
4503DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4504M:	Dave Airlie <airlied@redhat.com>
4505S:	Odd Fixes
4506F:	drivers/gpu/drm/ast/
4507
4508DRM DRIVER FOR BOCHS VIRTUAL GPU
4509M:	Gerd Hoffmann <kraxel@redhat.com>
4510L:	virtualization@lists.linux-foundation.org
4511T:	git git://anongit.freedesktop.org/drm/drm-misc
4512S:	Maintained
4513F:	drivers/gpu/drm/bochs/
4514
4515DRM DRIVER FOR FARADAY TVE200 TV ENCODER
4516M:	Linus Walleij <linus.walleij@linaro.org>
4517T:	git git://anongit.freedesktop.org/drm/drm-misc
4518S:	Maintained
4519F:	drivers/gpu/drm/tve200/
4520
4521DRM DRIVER FOR ILITEK ILI9225 PANELS
4522M:	David Lechner <david@lechnology.com>
4523S:	Maintained
4524F:	drivers/gpu/drm/tinydrm/ili9225.c
4525F:	Documentation/devicetree/bindings/display/ilitek,ili9225.txt
4526
4527DRM DRIVER FOR INTEL I810 VIDEO CARDS
4528S:	Orphan / Obsolete
4529F:	drivers/gpu/drm/i810/
4530F:	include/uapi/drm/i810_drm.h
4531
4532DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4533S:	Orphan / Obsolete
4534F:	drivers/gpu/drm/mga/
4535F:	include/uapi/drm/mga_drm.h
4536
4537DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4538M:	Dave Airlie <airlied@redhat.com>
4539S:	Odd Fixes
4540F:	drivers/gpu/drm/mgag200/
4541
4542DRM DRIVER FOR MI0283QT
4543M:	Noralf Trønnes <noralf@tronnes.org>
4544S:	Maintained
4545F:	drivers/gpu/drm/tinydrm/mi0283qt.c
4546F:	Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
4547
4548DRM DRIVER FOR MSM ADRENO GPU
4549M:	Rob Clark <robdclark@gmail.com>
4550L:	linux-arm-msm@vger.kernel.org
4551L:	dri-devel@lists.freedesktop.org
4552L:	freedreno@lists.freedesktop.org
4553T:	git git://people.freedesktop.org/~robclark/linux
4554S:	Maintained
4555F:	drivers/gpu/drm/msm/
4556F:	include/uapi/drm/msm_drm.h
4557F:	Documentation/devicetree/bindings/display/msm/
4558
4559DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4560M:	Ben Skeggs <bskeggs@redhat.com>
4561L:	dri-devel@lists.freedesktop.org
4562L:	nouveau@lists.freedesktop.org
4563T:	git git://github.com/skeggsb/linux
4564S:	Supported
4565F:	drivers/gpu/drm/nouveau/
4566F:	include/uapi/drm/nouveau_drm.h
4567
4568DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
4569M:	Noralf Trønnes <noralf@tronnes.org>
4570S:	Maintained
4571F:	drivers/gpu/drm/tinydrm/repaper.c
4572F:	Documentation/devicetree/bindings/display/repaper.txt
4573
4574DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4575M:	Dave Airlie <airlied@redhat.com>
4576M:	Gerd Hoffmann <kraxel@redhat.com>
4577L:	virtualization@lists.linux-foundation.org
4578T:	git git://anongit.freedesktop.org/drm/drm-misc
4579S:	Obsolete
4580W:	https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
4581F:	drivers/gpu/drm/cirrus/
4582
4583DRM DRIVER FOR QXL VIRTUAL GPU
4584M:	Dave Airlie <airlied@redhat.com>
4585M:	Gerd Hoffmann <kraxel@redhat.com>
4586L:	virtualization@lists.linux-foundation.org
4587T:	git git://anongit.freedesktop.org/drm/drm-misc
4588S:	Maintained
4589F:	drivers/gpu/drm/qxl/
4590F:	include/uapi/drm/qxl_drm.h
4591
4592DRM DRIVER FOR RAGE 128 VIDEO CARDS
4593S:	Orphan / Obsolete
4594F:	drivers/gpu/drm/r128/
4595F:	include/uapi/drm/r128_drm.h
4596
4597DRM DRIVER FOR SAVAGE VIDEO CARDS
4598S:	Orphan / Obsolete
4599F:	drivers/gpu/drm/savage/
4600F:	include/uapi/drm/savage_drm.h
4601
4602DRM DRIVER FOR SIS VIDEO CARDS
4603S:	Orphan / Obsolete
4604F:	drivers/gpu/drm/sis/
4605F:	include/uapi/drm/sis_drm.h
4606
4607DRM DRIVER FOR SITRONIX ST7586 PANELS
4608M:	David Lechner <david@lechnology.com>
4609S:	Maintained
4610F:	drivers/gpu/drm/tinydrm/st7586.c
4611F:	Documentation/devicetree/bindings/display/sitronix,st7586.txt
4612
4613DRM DRIVER FOR SITRONIX ST7735R PANELS
4614M:	David Lechner <david@lechnology.com>
4615S:	Maintained
4616F:	drivers/gpu/drm/tinydrm/st7735r.c
4617F:	Documentation/devicetree/bindings/display/sitronix,st7735r.txt
4618
4619DRM DRIVER FOR TDFX VIDEO CARDS
4620S:	Orphan / Obsolete
4621F:	drivers/gpu/drm/tdfx/
4622
4623DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4624M:	Dave Airlie <airlied@redhat.com>
4625S:	Odd Fixes
4626F:	drivers/gpu/drm/udl/
4627
4628DRM DRIVER FOR VMWARE VIRTUAL GPU
4629M:	"VMware Graphics" <linux-graphics-maintainer@vmware.com>
4630M:	Sinclair Yeh <syeh@vmware.com>
4631M:	Thomas Hellstrom <thellstrom@vmware.com>
4632L:	dri-devel@lists.freedesktop.org
4633T:	git git://people.freedesktop.org/~syeh/repos_linux
4634T:	git git://people.freedesktop.org/~thomash/linux
4635S:	Supported
4636F:	drivers/gpu/drm/vmwgfx/
4637F:	include/uapi/drm/vmwgfx_drm.h
4638
4639DRM DRIVERS
4640M:	David Airlie <airlied@linux.ie>
4641L:	dri-devel@lists.freedesktop.org
4642T:	git git://people.freedesktop.org/~airlied/linux
4643B:	https://bugs.freedesktop.org/
4644C:	irc://chat.freenode.net/dri-devel
4645S:	Maintained
4646F:	drivers/gpu/drm/
4647F:	drivers/gpu/vga/
4648F:	Documentation/devicetree/bindings/display/
4649F:	Documentation/devicetree/bindings/gpu/
4650F:	Documentation/gpu/
4651F:	include/drm/
4652F:	include/uapi/drm/
4653F:	include/linux/vga*
4654
4655DRM DRIVERS AND MISC GPU PATCHES
4656M:	Gustavo Padovan <gustavo@padovan.org>
4657M:	Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
4658M:	Sean Paul <seanpaul@chromium.org>
4659W:	https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
4660S:	Maintained
4661T:	git git://anongit.freedesktop.org/drm/drm-misc
4662F:	Documentation/gpu/
4663F:	drivers/gpu/vga/
4664F:	drivers/gpu/drm/*
4665F:	include/drm/drm*
4666F:	include/uapi/drm/drm*
4667F:	include/linux/vga*
4668
4669DRM DRIVERS FOR ALLWINNER A10
4670M:	Maxime Ripard  <maxime.ripard@bootlin.com>
4671L:	dri-devel@lists.freedesktop.org
4672S:	Supported
4673F:	drivers/gpu/drm/sun4i/
4674F:	Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4675T:	git git://anongit.freedesktop.org/drm/drm-misc
4676
4677DRM DRIVERS FOR AMLOGIC SOCS
4678M:	Neil Armstrong <narmstrong@baylibre.com>
4679L:	dri-devel@lists.freedesktop.org
4680L:	linux-amlogic@lists.infradead.org
4681W:	http://linux-meson.com/
4682S:	Supported
4683F:	drivers/gpu/drm/meson/
4684F:	Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
4685F:	Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
4686F:	Documentation/gpu/meson.rst
4687T:	git git://anongit.freedesktop.org/drm/drm-misc
4688
4689DRM DRIVERS FOR ATMEL HLCDC
4690M:	Boris Brezillon <boris.brezillon@bootlin.com>
4691L:	dri-devel@lists.freedesktop.org
4692S:	Supported
4693F:	drivers/gpu/drm/atmel-hlcdc/
4694F:	Documentation/devicetree/bindings/display/atmel/
4695T:	git git://anongit.freedesktop.org/drm/drm-misc
4696
4697DRM DRIVERS FOR BRIDGE CHIPS
4698M:	Archit Taneja <architt@codeaurora.org>
4699M:	Andrzej Hajda <a.hajda@samsung.com>
4700R:	Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
4701S:	Maintained
4702T:	git git://anongit.freedesktop.org/drm/drm-misc
4703F:	drivers/gpu/drm/bridge/
4704
4705DRM DRIVERS FOR EXYNOS
4706M:	Inki Dae <inki.dae@samsung.com>
4707M:	Joonyoung Shim <jy0922.shim@samsung.com>
4708M:	Seung-Woo Kim <sw0312.kim@samsung.com>
4709M:	Kyungmin Park <kyungmin.park@samsung.com>
4710L:	dri-devel@lists.freedesktop.org
4711T:	git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4712S:	Supported
4713F:	drivers/gpu/drm/exynos/
4714F:	include/uapi/drm/exynos_drm.h
4715F:	Documentation/devicetree/bindings/display/exynos/
4716
4717DRM DRIVERS FOR FREESCALE DCU
4718M:	Stefan Agner <stefan@agner.ch>
4719M:	Alison Wang <alison.wang@nxp.com>
4720L:	dri-devel@lists.freedesktop.org
4721S:	Supported
4722F:	drivers/gpu/drm/fsl-dcu/
4723F:	Documentation/devicetree/bindings/display/fsl,dcu.txt
4724F:	Documentation/devicetree/bindings/display/fsl,tcon.txt
4725F:	Documentation/devicetree/bindings/display/panel/nec,nl4827hc19-05b.txt
4726
4727DRM DRIVERS FOR FREESCALE IMX
4728M:	Philipp Zabel <p.zabel@pengutronix.de>
4729L:	dri-devel@lists.freedesktop.org
4730S:	Maintained
4731F:	drivers/gpu/drm/imx/
4732F:	drivers/gpu/ipu-v3/
4733F:	Documentation/devicetree/bindings/display/imx/
4734
4735DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4736M:	Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4737L:	dri-devel@lists.freedesktop.org
4738T:	git git://github.com/patjak/drm-gma500
4739S:	Maintained
4740F:	drivers/gpu/drm/gma500/
4741
4742DRM DRIVERS FOR HISILICON
4743M:	Xinliang Liu <z.liuxinliang@hisilicon.com>
4744M:	Rongrong Zou <zourongrong@gmail.com>
4745R:	Xinwei Kong <kong.kongxinwei@hisilicon.com>
4746R:	Chen Feng <puck.chen@hisilicon.com>
4747L:	dri-devel@lists.freedesktop.org
4748T:	git git://github.com/xin3liang/linux.git
4749S:	Maintained
4750F:	drivers/gpu/drm/hisilicon/
4751F:	Documentation/devicetree/bindings/display/hisilicon/
4752
4753DRM DRIVERS FOR MEDIATEK
4754M:	CK Hu <ck.hu@mediatek.com>
4755M:	Philipp Zabel <p.zabel@pengutronix.de>
4756L:	dri-devel@lists.freedesktop.org
4757S:	Supported
4758F:	drivers/gpu/drm/mediatek/
4759F:	Documentation/devicetree/bindings/display/mediatek/
4760
4761DRM DRIVERS FOR NVIDIA TEGRA
4762M:	Thierry Reding <thierry.reding@gmail.com>
4763L:	dri-devel@lists.freedesktop.org
4764L:	linux-tegra@vger.kernel.org
4765T:	git git://anongit.freedesktop.org/tegra/linux.git
4766S:	Supported
4767F:	drivers/gpu/drm/tegra/
4768F:	drivers/gpu/host1x/
4769F:	include/linux/host1x.h
4770F:	include/uapi/drm/tegra_drm.h
4771F:	Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4772
4773DRM DRIVERS FOR RENESAS
4774M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4775L:	dri-devel@lists.freedesktop.org
4776L:	linux-renesas-soc@vger.kernel.org
4777T:	git git://linuxtv.org/pinchartl/fbdev
4778S:	Supported
4779F:	drivers/gpu/drm/rcar-du/
4780F:	drivers/gpu/drm/shmobile/
4781F:	include/linux/platform_data/shmob_drm.h
4782F:	Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
4783F:	Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
4784F:	Documentation/devicetree/bindings/display/renesas,du.txt
4785
4786DRM DRIVERS FOR ROCKCHIP
4787M:	Sandy Huang <hjc@rock-chips.com>
4788M:	Heiko Stübner <heiko@sntech.de>
4789L:	dri-devel@lists.freedesktop.org
4790S:	Maintained
4791F:	drivers/gpu/drm/rockchip/
4792F:	Documentation/devicetree/bindings/display/rockchip/
4793T:	git git://anongit.freedesktop.org/drm/drm-misc
4794
4795DRM DRIVERS FOR STI
4796M:	Benjamin Gaignard <benjamin.gaignard@linaro.org>
4797M:	Vincent Abriou <vincent.abriou@st.com>
4798L:	dri-devel@lists.freedesktop.org
4799T:	git git://anongit.freedesktop.org/drm/drm-misc
4800S:	Maintained
4801F:	drivers/gpu/drm/sti
4802F:	Documentation/devicetree/bindings/display/st,stih4xx.txt
4803
4804DRM DRIVERS FOR STM
4805M:	Yannick Fertre <yannick.fertre@st.com>
4806M:	Philippe Cornu <philippe.cornu@st.com>
4807M:	Benjamin Gaignard <benjamin.gaignard@linaro.org>
4808M:	Vincent Abriou <vincent.abriou@st.com>
4809L:	dri-devel@lists.freedesktop.org
4810T:	git git://anongit.freedesktop.org/drm/drm-misc
4811S:	Maintained
4812F:	drivers/gpu/drm/stm
4813F:	Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
4814
4815DRM DRIVERS FOR TI LCDC
4816M:	Jyri Sarha <jsarha@ti.com>
4817R:	Tomi Valkeinen <tomi.valkeinen@ti.com>
4818L:	dri-devel@lists.freedesktop.org
4819S:	Maintained
4820F:	drivers/gpu/drm/tilcdc/
4821F:	Documentation/devicetree/bindings/display/tilcdc/
4822
4823DRM DRIVERS FOR TI OMAP
4824M:	Tomi Valkeinen <tomi.valkeinen@ti.com>
4825L:	dri-devel@lists.freedesktop.org
4826S:	Maintained
4827F:	drivers/gpu/drm/omapdrm/
4828F:	Documentation/devicetree/bindings/display/ti/
4829
4830DRM DRIVERS FOR V3D
4831M:	Eric Anholt <eric@anholt.net>
4832S:	Supported
4833F:	drivers/gpu/drm/v3d/
4834F:	include/uapi/drm/v3d_drm.h
4835F:	Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
4836T:	git git://anongit.freedesktop.org/drm/drm-misc
4837
4838DRM DRIVERS FOR VC4
4839M:	Eric Anholt <eric@anholt.net>
4840T:	git git://github.com/anholt/linux
4841S:	Supported
4842F:	drivers/gpu/drm/vc4/
4843F:	include/uapi/drm/vc4_drm.h
4844F:	Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4845T:	git git://anongit.freedesktop.org/drm/drm-misc
4846
4847DRM DRIVERS FOR VIVANTE GPU IP
4848M:	Lucas Stach <l.stach@pengutronix.de>
4849R:	Russell King <linux+etnaviv@armlinux.org.uk>
4850R:	Christian Gmeiner <christian.gmeiner@gmail.com>
4851L:	etnaviv@lists.freedesktop.org
4852L:	dri-devel@lists.freedesktop.org
4853S:	Maintained
4854F:	drivers/gpu/drm/etnaviv/
4855F:	include/uapi/drm/etnaviv_drm.h
4856F:	Documentation/devicetree/bindings/display/etnaviv/
4857
4858DRM DRIVERS FOR ZTE ZX
4859M:	Shawn Guo <shawnguo@kernel.org>
4860L:	dri-devel@lists.freedesktop.org
4861S:	Maintained
4862F:	drivers/gpu/drm/zte/
4863F:	Documentation/devicetree/bindings/display/zte,vou.txt
4864T:	git git://anongit.freedesktop.org/drm/drm-misc
4865
4866DRM PANEL DRIVERS
4867M:	Thierry Reding <thierry.reding@gmail.com>
4868L:	dri-devel@lists.freedesktop.org
4869T:	git git://anongit.freedesktop.org/drm/drm-misc
4870S:	Maintained
4871F:	drivers/gpu/drm/drm_panel.c
4872F:	drivers/gpu/drm/panel/
4873F:	include/drm/drm_panel.h
4874F:	Documentation/devicetree/bindings/display/panel/
4875
4876DRM TINYDRM DRIVERS
4877M:	Noralf Trønnes <noralf@tronnes.org>
4878W:	https://github.com/notro/tinydrm/wiki/Development
4879T:	git git://anongit.freedesktop.org/drm/drm-misc
4880S:	Maintained
4881F:	drivers/gpu/drm/tinydrm/
4882F:	include/drm/tinydrm/
4883
4884DRM DRIVERS FOR XEN
4885M:	Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
4886T:	git git://anongit.freedesktop.org/drm/drm-misc
4887L:	dri-devel@lists.freedesktop.org
4888L:	xen-devel@lists.xen.org
4889S:	Supported
4890F:	drivers/gpu/drm/xen/
4891F:	Documentation/gpu/xen-front.rst
4892
4893DRM TTM SUBSYSTEM
4894M:	Christian Koenig <christian.koenig@amd.com>
4895M:	Roger He <Hongbo.He@amd.com>
4896T:	git git://people.freedesktop.org/~agd5f/linux
4897S:	Maintained
4898L:	dri-devel@lists.freedesktop.org
4899F:	include/drm/ttm/
4900F:	drivers/gpu/drm/ttm/
4901
4902DSBR100 USB FM RADIO DRIVER
4903M:	Alexey Klimov <klimov.linux@gmail.com>
4904L:	linux-media@vger.kernel.org
4905T:	git git://linuxtv.org/media_tree.git
4906S:	Maintained
4907F:	drivers/media/radio/dsbr100.c
4908
4909DSCC4 DRIVER
4910M:	Francois Romieu <romieu@fr.zoreil.com>
4911L:	netdev@vger.kernel.org
4912S:	Maintained
4913F:	drivers/net/wan/dscc4.c
4914
4915DT3155 MEDIA DRIVER
4916M:	Hans Verkuil <hverkuil@xs4all.nl>
4917L:	linux-media@vger.kernel.org
4918T:	git git://linuxtv.org/media_tree.git
4919W:	https://linuxtv.org
4920S:	Odd Fixes
4921F:	drivers/media/pci/dt3155/
4922
4923DVB_USB_AF9015 MEDIA DRIVER
4924M:	Antti Palosaari <crope@iki.fi>
4925L:	linux-media@vger.kernel.org
4926W:	https://linuxtv.org
4927W:	http://palosaari.fi/linux/
4928Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4929T:	git git://linuxtv.org/anttip/media_tree.git
4930S:	Maintained
4931F:	drivers/media/usb/dvb-usb-v2/af9015*
4932
4933DVB_USB_AF9035 MEDIA DRIVER
4934M:	Antti Palosaari <crope@iki.fi>
4935L:	linux-media@vger.kernel.org
4936W:	https://linuxtv.org
4937W:	http://palosaari.fi/linux/
4938Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4939T:	git git://linuxtv.org/anttip/media_tree.git
4940S:	Maintained
4941F:	drivers/media/usb/dvb-usb-v2/af9035*
4942
4943DVB_USB_ANYSEE MEDIA DRIVER
4944M:	Antti Palosaari <crope@iki.fi>
4945L:	linux-media@vger.kernel.org
4946W:	https://linuxtv.org
4947W:	http://palosaari.fi/linux/
4948Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4949T:	git git://linuxtv.org/anttip/media_tree.git
4950S:	Maintained
4951F:	drivers/media/usb/dvb-usb-v2/anysee*
4952
4953DVB_USB_AU6610 MEDIA DRIVER
4954M:	Antti Palosaari <crope@iki.fi>
4955L:	linux-media@vger.kernel.org
4956W:	https://linuxtv.org
4957W:	http://palosaari.fi/linux/
4958Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4959T:	git git://linuxtv.org/anttip/media_tree.git
4960S:	Maintained
4961F:	drivers/media/usb/dvb-usb-v2/au6610*
4962
4963DVB_USB_CE6230 MEDIA DRIVER
4964M:	Antti Palosaari <crope@iki.fi>
4965L:	linux-media@vger.kernel.org
4966W:	https://linuxtv.org
4967W:	http://palosaari.fi/linux/
4968Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4969T:	git git://linuxtv.org/anttip/media_tree.git
4970S:	Maintained
4971F:	drivers/media/usb/dvb-usb-v2/ce6230*
4972
4973DVB_USB_CXUSB MEDIA DRIVER
4974M:	Michael Krufky <mkrufky@linuxtv.org>
4975L:	linux-media@vger.kernel.org
4976W:	https://linuxtv.org
4977W:	http://github.com/mkrufky
4978Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4979T:	git git://linuxtv.org/media_tree.git
4980S:	Maintained
4981F:	drivers/media/usb/dvb-usb/cxusb*
4982
4983DVB_USB_EC168 MEDIA DRIVER
4984M:	Antti Palosaari <crope@iki.fi>
4985L:	linux-media@vger.kernel.org
4986W:	https://linuxtv.org
4987W:	http://palosaari.fi/linux/
4988Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4989T:	git git://linuxtv.org/anttip/media_tree.git
4990S:	Maintained
4991F:	drivers/media/usb/dvb-usb-v2/ec168*
4992
4993DVB_USB_GL861 MEDIA DRIVER
4994M:	Antti Palosaari <crope@iki.fi>
4995L:	linux-media@vger.kernel.org
4996W:	https://linuxtv.org
4997Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4998T:	git git://linuxtv.org/anttip/media_tree.git
4999S:	Maintained
5000F:	drivers/media/usb/dvb-usb-v2/gl861*
5001
5002DVB_USB_MXL111SF MEDIA DRIVER
5003M:	Michael Krufky <mkrufky@linuxtv.org>
5004L:	linux-media@vger.kernel.org
5005W:	https://linuxtv.org
5006W:	http://github.com/mkrufky
5007Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5008T:	git git://linuxtv.org/mkrufky/mxl111sf.git
5009S:	Maintained
5010F:	drivers/media/usb/dvb-usb-v2/mxl111sf*
5011
5012DVB_USB_RTL28XXU MEDIA DRIVER
5013M:	Antti Palosaari <crope@iki.fi>
5014L:	linux-media@vger.kernel.org
5015W:	https://linuxtv.org
5016W:	http://palosaari.fi/linux/
5017Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5018T:	git git://linuxtv.org/anttip/media_tree.git
5019S:	Maintained
5020F:	drivers/media/usb/dvb-usb-v2/rtl28xxu*
5021
5022DVB_USB_V2 MEDIA DRIVER
5023M:	Antti Palosaari <crope@iki.fi>
5024L:	linux-media@vger.kernel.org
5025W:	https://linuxtv.org
5026W:	http://palosaari.fi/linux/
5027Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5028T:	git git://linuxtv.org/anttip/media_tree.git
5029S:	Maintained
5030F:	drivers/media/usb/dvb-usb-v2/dvb_usb*
5031F:	drivers/media/usb/dvb-usb-v2/usb_urb.c
5032
5033DYNAMIC DEBUG
5034M:	Jason Baron <jbaron@akamai.com>
5035S:	Maintained
5036F:	lib/dynamic_debug.c
5037F:	include/linux/dynamic_debug.h
5038
5039DYNAMIC INTERRUPT MODERATION
5040M:	Tal Gilboa <talgi@mellanox.com>
5041S:	Maintained
5042F:	include/linux/net_dim.h
5043
5044DZ DECSTATION DZ11 SERIAL DRIVER
5045M:	"Maciej W. Rozycki" <macro@linux-mips.org>
5046S:	Maintained
5047F:	drivers/tty/serial/dz.*
5048
5049E3X0 POWER BUTTON DRIVER
5050M:	Moritz Fischer <moritz.fischer@ettus.com>
5051L:	usrp-users@lists.ettus.com
5052W:	http://www.ettus.com
5053S:	Supported
5054F:	drivers/input/misc/e3x0-button.c
5055F:	Documentation/devicetree/bindings/input/e3x0-button.txt
5056
5057E4000 MEDIA DRIVER
5058M:	Antti Palosaari <crope@iki.fi>
5059L:	linux-media@vger.kernel.org
5060W:	https://linuxtv.org
5061W:	http://palosaari.fi/linux/
5062Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5063T:	git git://linuxtv.org/anttip/media_tree.git
5064S:	Maintained
5065F:	drivers/media/tuners/e4000*
5066
5067EC100 MEDIA DRIVER
5068M:	Antti Palosaari <crope@iki.fi>
5069L:	linux-media@vger.kernel.org
5070W:	https://linuxtv.org
5071W:	http://palosaari.fi/linux/
5072Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5073T:	git git://linuxtv.org/anttip/media_tree.git
5074S:	Maintained
5075F:	drivers/media/dvb-frontends/ec100*
5076
5077ECRYPT FILE SYSTEM
5078M:	Tyler Hicks <tyhicks@canonical.com>
5079L:	ecryptfs@vger.kernel.org
5080W:	http://ecryptfs.org
5081W:	https://launchpad.net/ecryptfs
5082T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5083S:	Supported
5084F:	Documentation/filesystems/ecryptfs.txt
5085F:	fs/ecryptfs/
5086
5087EDAC-AMD64
5088M:	Borislav Petkov <bp@alien8.de>
5089L:	linux-edac@vger.kernel.org
5090S:	Maintained
5091F:	drivers/edac/amd64_edac*
5092
5093EDAC-CALXEDA
5094M:	Robert Richter <rric@kernel.org>
5095L:	linux-edac@vger.kernel.org
5096S:	Maintained
5097F:	drivers/edac/highbank*
5098
5099EDAC-CAVIUM OCTEON
5100M:	Ralf Baechle <ralf@linux-mips.org>
5101M:	David Daney <david.daney@cavium.com>
5102L:	linux-edac@vger.kernel.org
5103L:	linux-mips@linux-mips.org
5104S:	Supported
5105F:	drivers/edac/octeon_edac*
5106
5107EDAC-CAVIUM THUNDERX
5108M:	David Daney <david.daney@cavium.com>
5109M:	Jan Glauber <jglauber@cavium.com>
5110L:	linux-edac@vger.kernel.org
5111S:	Supported
5112F:	drivers/edac/thunderx_edac*
5113
5114EDAC-CORE
5115M:	Borislav Petkov <bp@alien8.de>
5116M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5117L:	linux-edac@vger.kernel.org
5118T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
5119T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
5120S:	Supported
5121F:	Documentation/admin-guide/ras.rst
5122F:	Documentation/driver-api/edac.rst
5123F:	drivers/edac/
5124F:	include/linux/edac.h
5125
5126EDAC-E752X
5127M:	Mark Gross <mark.gross@intel.com>
5128L:	linux-edac@vger.kernel.org
5129S:	Maintained
5130F:	drivers/edac/e752x_edac.c
5131
5132EDAC-E7XXX
5133L:	linux-edac@vger.kernel.org
5134S:	Maintained
5135F:	drivers/edac/e7xxx_edac.c
5136
5137EDAC-FSL_DDR
5138M:	York Sun <york.sun@nxp.com>
5139L:	linux-edac@vger.kernel.org
5140S:	Maintained
5141F:	drivers/edac/fsl_ddr_edac.*
5142
5143EDAC-GHES
5144M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5145L:	linux-edac@vger.kernel.org
5146S:	Maintained
5147F:	drivers/edac/ghes_edac.c
5148
5149EDAC-I3000
5150L:	linux-edac@vger.kernel.org
5151S:	Orphan
5152F:	drivers/edac/i3000_edac.c
5153
5154EDAC-I5000
5155L:	linux-edac@vger.kernel.org
5156S:	Maintained
5157F:	drivers/edac/i5000_edac.c
5158
5159EDAC-I5400
5160M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5161L:	linux-edac@vger.kernel.org
5162S:	Maintained
5163F:	drivers/edac/i5400_edac.c
5164
5165EDAC-I7300
5166M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5167L:	linux-edac@vger.kernel.org
5168S:	Maintained
5169F:	drivers/edac/i7300_edac.c
5170
5171EDAC-I7CORE
5172M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5173L:	linux-edac@vger.kernel.org
5174S:	Maintained
5175F:	drivers/edac/i7core_edac.c
5176
5177EDAC-I82443BXGX
5178M:	Tim Small <tim@buttersideup.com>
5179L:	linux-edac@vger.kernel.org
5180S:	Maintained
5181F:	drivers/edac/i82443bxgx_edac.c
5182
5183EDAC-I82975X
5184M:	Ranganathan Desikan <ravi@jetztechnologies.com>
5185M:	"Arvind R." <arvino55@gmail.com>
5186L:	linux-edac@vger.kernel.org
5187S:	Maintained
5188F:	drivers/edac/i82975x_edac.c
5189
5190EDAC-IE31200
5191M:	Jason Baron <jbaron@akamai.com>
5192L:	linux-edac@vger.kernel.org
5193S:	Maintained
5194F:	drivers/edac/ie31200_edac.c
5195
5196EDAC-MPC85XX
5197M:	Johannes Thumshirn <morbidrsa@gmail.com>
5198L:	linux-edac@vger.kernel.org
5199S:	Maintained
5200F:	drivers/edac/mpc85xx_edac.[ch]
5201
5202EDAC-PASEMI
5203M:	Egor Martovetsky <egor@pasemi.com>
5204L:	linux-edac@vger.kernel.org
5205S:	Maintained
5206F:	drivers/edac/pasemi_edac.c
5207
5208EDAC-PND2
5209M:	Tony Luck <tony.luck@intel.com>
5210L:	linux-edac@vger.kernel.org
5211S:	Maintained
5212F:	drivers/edac/pnd2_edac.[ch]
5213
5214EDAC-R82600
5215M:	Tim Small <tim@buttersideup.com>
5216L:	linux-edac@vger.kernel.org
5217S:	Maintained
5218F:	drivers/edac/r82600_edac.c
5219
5220EDAC-SBRIDGE
5221M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5222L:	linux-edac@vger.kernel.org
5223S:	Maintained
5224F:	drivers/edac/sb_edac.c
5225
5226EDAC-SKYLAKE
5227M:	Tony Luck <tony.luck@intel.com>
5228L:	linux-edac@vger.kernel.org
5229S:	Maintained
5230F:	drivers/edac/skx_edac.c
5231
5232EDAC-TI
5233M:	Tero Kristo <t-kristo@ti.com>
5234L:	linux-edac@vger.kernel.org
5235S:	Maintained
5236F:	drivers/edac/ti_edac.c
5237
5238EDIROL UA-101/UA-1000 DRIVER
5239M:	Clemens Ladisch <clemens@ladisch.de>
5240L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
5241T:	git git://git.alsa-project.org/alsa-kernel.git
5242S:	Maintained
5243F:	sound/usb/misc/ua101.c
5244
5245EFI TEST DRIVER
5246L:	linux-efi@vger.kernel.org
5247M:	Ivan Hu <ivan.hu@canonical.com>
5248M:	Ard Biesheuvel <ard.biesheuvel@linaro.org>
5249S:	Maintained
5250F:	drivers/firmware/efi/test/
5251
5252EFI VARIABLE FILESYSTEM
5253M:	Matthew Garrett <matthew.garrett@nebula.com>
5254M:	Jeremy Kerr <jk@ozlabs.org>
5255M:	Ard Biesheuvel <ard.biesheuvel@linaro.org>
5256T:	git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5257L:	linux-efi@vger.kernel.org
5258S:	Maintained
5259F:	fs/efivarfs/
5260
5261EFIFB FRAMEBUFFER DRIVER
5262L:	linux-fbdev@vger.kernel.org
5263M:	Peter Jones <pjones@redhat.com>
5264S:	Maintained
5265F:	drivers/video/fbdev/efifb.c
5266
5267EFS FILESYSTEM
5268W:	http://aeschi.ch.eu.org/efs/
5269S:	Orphan
5270F:	fs/efs/
5271
5272EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
5273M:	Douglas Miller <dougmill@linux.vnet.ibm.com>
5274L:	netdev@vger.kernel.org
5275S:	Maintained
5276F:	drivers/net/ethernet/ibm/ehea/
5277
5278EM28XX VIDEO4LINUX DRIVER
5279M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5280L:	linux-media@vger.kernel.org
5281W:	https://linuxtv.org
5282T:	git git://linuxtv.org/media_tree.git
5283S:	Maintained
5284F:	drivers/media/usb/em28xx/
5285F:	Documentation/media/v4l-drivers/em28xx*
5286
5287EMBEDDED LINUX
5288M:	Paul Gortmaker <paul.gortmaker@windriver.com>
5289M:	Matt Mackall <mpm@selenic.com>
5290M:	David Woodhouse <dwmw2@infradead.org>
5291L:	linux-embedded@vger.kernel.org
5292S:	Maintained
5293
5294Emulex 10Gbps iSCSI - OneConnect DRIVER
5295M:	Subbu Seetharaman <subbu.seetharaman@broadcom.com>
5296M:	Ketan Mukadam <ketan.mukadam@broadcom.com>
5297M:	Jitendra Bhivare <jitendra.bhivare@broadcom.com>
5298L:	linux-scsi@vger.kernel.org
5299W:	http://www.broadcom.com
5300S:	Supported
5301F:	drivers/scsi/be2iscsi/
5302
5303Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
5304M:	Sathya Perla <sathya.perla@broadcom.com>
5305M:	Ajit Khaparde <ajit.khaparde@broadcom.com>
5306M:	Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
5307M:	Somnath Kotur <somnath.kotur@broadcom.com>
5308L:	netdev@vger.kernel.org
5309W:	http://www.emulex.com
5310S:	Supported
5311F:	drivers/net/ethernet/emulex/benet/
5312
5313EMULEX ONECONNECT ROCE DRIVER
5314M:	Selvin Xavier <selvin.xavier@broadcom.com>
5315M:	Devesh Sharma <devesh.sharma@broadcom.com>
5316L:	linux-rdma@vger.kernel.org
5317W:	http://www.broadcom.com
5318S:	Odd Fixes
5319F:	drivers/infiniband/hw/ocrdma/
5320F:	include/uapi/rdma/ocrdma-abi.h
5321
5322EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
5323M:	James Smart <james.smart@broadcom.com>
5324M:	Dick Kennedy <dick.kennedy@broadcom.com>
5325L:	linux-scsi@vger.kernel.org
5326W:	http://www.broadcom.com
5327S:	Supported
5328F:	drivers/scsi/lpfc/
5329
5330ENE CB710 FLASH CARD READER DRIVER
5331M:	Michał Mirosław <mirq-linux@rere.qmqm.pl>
5332S:	Maintained
5333F:	drivers/misc/cb710/
5334F:	drivers/mmc/host/cb710-mmc.*
5335F:	include/linux/cb710.h
5336
5337ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
5338M:	Maxim Levitsky <maximlevitsky@gmail.com>
5339S:	Maintained
5340F:	drivers/media/rc/ene_ir.*
5341
5342EPSON S1D13XXX FRAMEBUFFER DRIVER
5343M:	Kristoffer Ericson <kristoffer.ericson@gmail.com>
5344S:	Maintained
5345T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
5346F:	drivers/video/fbdev/s1d13xxxfb.c
5347F:	include/video/s1d13xxxfb.h
5348
5349ERRSEQ ERROR TRACKING INFRASTRUCTURE
5350M:	Jeff Layton <jlayton@kernel.org>
5351S:	Maintained
5352F:	lib/errseq.c
5353F:	include/linux/errseq.h
5354
5355ET131X NETWORK DRIVER
5356M:	Mark Einon <mark.einon@gmail.com>
5357S:	Odd Fixes
5358F:	drivers/net/ethernet/agere/
5359
5360ETHERNET BRIDGE
5361M:	Stephen Hemminger <stephen@networkplumber.org>
5362L:	bridge@lists.linux-foundation.org (moderated for non-subscribers)
5363L:	netdev@vger.kernel.org
5364W:	http://www.linuxfoundation.org/en/Net:Bridge
5365S:	Maintained
5366F:	include/linux/netfilter_bridge/
5367F:	net/bridge/
5368
5369ETHERNET PHY LIBRARY
5370M:	Andrew Lunn <andrew@lunn.ch>
5371M:	Florian Fainelli <f.fainelli@gmail.com>
5372L:	netdev@vger.kernel.org
5373S:	Maintained
5374F:	Documentation/ABI/testing/sysfs-bus-mdio
5375F:	Documentation/devicetree/bindings/net/mdio*
5376F:	Documentation/networking/phy.txt
5377F:	drivers/net/phy/
5378F:	drivers/of/of_mdio.c
5379F:	drivers/of/of_net.c
5380F:	include/linux/*mdio*.h
5381F:	include/linux/of_net.h
5382F:	include/linux/phy.h
5383F:	include/linux/phy_fixed.h
5384F:	include/linux/platform_data/mdio-bcm-unimac.h
5385F:	include/trace/events/mdio.h
5386F:	include/uapi/linux/mdio.h
5387F:	include/uapi/linux/mii.h
5388
5389EXT2 FILE SYSTEM
5390M:	Jan Kara <jack@suse.com>
5391L:	linux-ext4@vger.kernel.org
5392S:	Maintained
5393F:	Documentation/filesystems/ext2.txt
5394F:	fs/ext2/
5395F:	include/linux/ext2*
5396
5397EXT4 FILE SYSTEM
5398M:	"Theodore Ts'o" <tytso@mit.edu>
5399M:	Andreas Dilger <adilger.kernel@dilger.ca>
5400L:	linux-ext4@vger.kernel.org
5401W:	http://ext4.wiki.kernel.org
5402Q:	http://patchwork.ozlabs.org/project/linux-ext4/list/
5403T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5404S:	Maintained
5405F:	Documentation/filesystems/ext4.txt
5406F:	fs/ext4/
5407
5408Extended Verification Module (EVM)
5409M:	Mimi Zohar <zohar@linux.vnet.ibm.com>
5410L:	linux-integrity@vger.kernel.org
5411S:	Supported
5412F:	security/integrity/evm/
5413
5414EXTENSIBLE FIRMWARE INTERFACE (EFI)
5415M:	Ard Biesheuvel <ard.biesheuvel@linaro.org>
5416L:	linux-efi@vger.kernel.org
5417T:	git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5418S:	Maintained
5419F:	Documentation/efi-stub.txt
5420F:	arch/*/kernel/efi.c
5421F:	arch/x86/boot/compressed/eboot.[ch]
5422F:	arch/*/include/asm/efi.h
5423F:	arch/x86/platform/efi/
5424F:	drivers/firmware/efi/
5425F:	include/linux/efi*.h
5426F:	arch/arm/boot/compressed/efi-header.S
5427F:	arch/arm64/kernel/efi-entry.S
5428
5429EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5430M:	MyungJoo Ham <myungjoo.ham@samsung.com>
5431M:	Chanwoo Choi <cw00.choi@samsung.com>
5432L:	linux-kernel@vger.kernel.org
5433T:	git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
5434S:	Maintained
5435F:	drivers/extcon/
5436F:	include/linux/extcon/
5437F:	include/linux/extcon.h
5438F:	Documentation/extcon/
5439F:	Documentation/devicetree/bindings/extcon/
5440
5441EXYNOS DP DRIVER
5442M:	Jingoo Han <jingoohan1@gmail.com>
5443L:	dri-devel@lists.freedesktop.org
5444S:	Maintained
5445F:	drivers/gpu/drm/exynos/exynos_dp*
5446
5447EXYNOS SYSMMU (IOMMU) driver
5448M:	Marek Szyprowski <m.szyprowski@samsung.com>
5449L:	iommu@lists.linux-foundation.org
5450S:	Maintained
5451F:	drivers/iommu/exynos-iommu.c
5452
5453EZchip NPS platform support
5454M:	Vineet Gupta <vgupta@synopsys.com>
5455S:	Supported
5456F:	arch/arc/plat-eznps
5457F:	arch/arc/boot/dts/eznps.dts
5458
5459F2FS FILE SYSTEM
5460M:	Jaegeuk Kim <jaegeuk@kernel.org>
5461M:	Chao Yu <yuchao0@huawei.com>
5462L:	linux-f2fs-devel@lists.sourceforge.net
5463W:	https://f2fs.wiki.kernel.org/
5464T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5465S:	Maintained
5466F:	Documentation/filesystems/f2fs.txt
5467F:	Documentation/ABI/testing/sysfs-fs-f2fs
5468F:	fs/f2fs/
5469F:	include/linux/f2fs_fs.h
5470F:	include/trace/events/f2fs.h
5471
5472F71805F HARDWARE MONITORING DRIVER
5473M:	Jean Delvare <jdelvare@suse.com>
5474L:	linux-hwmon@vger.kernel.org
5475S:	Maintained
5476F:	Documentation/hwmon/f71805f
5477F:	drivers/hwmon/f71805f.c
5478
5479FADDR2LINE
5480M:	Josh Poimboeuf <jpoimboe@redhat.com>
5481S:	Maintained
5482F:	scripts/faddr2line
5483
5484FAILOVER MODULE
5485M:	Sridhar Samudrala <sridhar.samudrala@intel.com>
5486L:	netdev@vger.kernel.org
5487S:	Supported
5488F:	net/core/failover.c
5489F:	include/net/failover.h
5490F:	Documentation/networking/failover.rst
5491
5492FANOTIFY
5493M:	Jan Kara <jack@suse.cz>
5494R:	Amir Goldstein <amir73il@gmail.com>
5495L:	linux-fsdevel@vger.kernel.org
5496S:	Maintained
5497F:	fs/notify/fanotify/
5498F:	include/linux/fanotify.h
5499F:	include/uapi/linux/fanotify.h
5500
5501FARSYNC SYNCHRONOUS DRIVER
5502M:	Kevin Curtis <kevin.curtis@farsite.co.uk>
5503W:	http://www.farsite.co.uk/
5504S:	Supported
5505F:	drivers/net/wan/farsync.*
5506
5507FAULT INJECTION SUPPORT
5508M:	Akinobu Mita <akinobu.mita@gmail.com>
5509S:	Supported
5510F:	Documentation/fault-injection/
5511F:	lib/fault-inject.c
5512
5513FBTFT Framebuffer drivers
5514M:	Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5515S:	Maintained
5516F:	drivers/staging/fbtft/
5517
5518FC0011 TUNER DRIVER
5519M:	Michael Buesch <m@bues.ch>
5520L:	linux-media@vger.kernel.org
5521S:	Maintained
5522F:	drivers/media/tuners/fc0011.h
5523F:	drivers/media/tuners/fc0011.c
5524
5525FC2580 MEDIA DRIVER
5526M:	Antti Palosaari <crope@iki.fi>
5527L:	linux-media@vger.kernel.org
5528W:	https://linuxtv.org
5529W:	http://palosaari.fi/linux/
5530Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5531T:	git git://linuxtv.org/anttip/media_tree.git
5532S:	Maintained
5533F:	drivers/media/tuners/fc2580*
5534
5535FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
5536M:	Johannes Thumshirn <jth@kernel.org>
5537L:	linux-scsi@vger.kernel.org
5538W:	www.Open-FCoE.org
5539S:	Supported
5540F:	drivers/scsi/libfc/
5541F:	drivers/scsi/fcoe/
5542F:	include/scsi/fc/
5543F:	include/scsi/libfc.h
5544F:	include/scsi/libfcoe.h
5545F:	include/uapi/scsi/fc/
5546
5547FILE LOCKING (flock() and fcntl()/lockf())
5548M:	Jeff Layton <jlayton@kernel.org>
5549M:	"J. Bruce Fields" <bfields@fieldses.org>
5550L:	linux-fsdevel@vger.kernel.org
5551S:	Maintained
5552F:	include/linux/fcntl.h
5553F:	include/uapi/linux/fcntl.h
5554F:	fs/fcntl.c
5555F:	fs/locks.c
5556
5557FILESYSTEMS (VFS and infrastructure)
5558M:	Alexander Viro <viro@zeniv.linux.org.uk>
5559L:	linux-fsdevel@vger.kernel.org
5560S:	Maintained
5561F:	fs/*
5562F:	include/linux/fs.h
5563F:	include/uapi/linux/fs.h
5564
5565FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5566M:	Riku Voipio <riku.voipio@iki.fi>
5567L:	linux-hwmon@vger.kernel.org
5568S:	Maintained
5569F:	drivers/hwmon/f75375s.c
5570F:	include/linux/f75375s.h
5571
5572FIREWIRE AUDIO DRIVERS
5573M:	Clemens Ladisch <clemens@ladisch.de>
5574L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
5575T:	git git://git.alsa-project.org/alsa-kernel.git
5576S:	Maintained
5577F:	sound/firewire/
5578
5579FIREWIRE MEDIA DRIVERS (firedtv)
5580M:	Stefan Richter <stefanr@s5r6.in-berlin.de>
5581L:	linux-media@vger.kernel.org
5582L:	linux1394-devel@lists.sourceforge.net
5583T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
5584S:	Maintained
5585F:	drivers/media/firewire/
5586
5587FIREWIRE SBP-2 TARGET
5588M:	Chris Boot <bootc@bootc.net>
5589L:	linux-scsi@vger.kernel.org
5590L:	target-devel@vger.kernel.org
5591L:	linux1394-devel@lists.sourceforge.net
5592T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
5593S:	Maintained
5594F:	drivers/target/sbp/
5595
5596FIREWIRE SUBSYSTEM
5597M:	Stefan Richter <stefanr@s5r6.in-berlin.de>
5598L:	linux1394-devel@lists.sourceforge.net
5599W:	http://ieee1394.wiki.kernel.org/
5600T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
5601S:	Maintained
5602F:	drivers/firewire/
5603F:	include/linux/firewire.h
5604F:	include/uapi/linux/firewire*.h
5605F:	tools/firewire/
5606
5607FIRMWARE LOADER (request_firmware)
5608M:	Luis R. Rodriguez <mcgrof@kernel.org>
5609L:	linux-kernel@vger.kernel.org
5610S:	Maintained
5611F:	Documentation/firmware_class/
5612F:	drivers/base/firmware_loader/
5613F:	include/linux/firmware.h
5614
5615FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
5616M:	Joshua Morris <josh.h.morris@us.ibm.com>
5617M:	Philip Kelleher <pjk1939@linux.vnet.ibm.com>
5618S:	Maintained
5619F:	drivers/block/rsxx/
5620
5621FLOPPY DRIVER
5622M:	Jiri Kosina <jikos@kernel.org>
5623T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
5624S:	Odd fixes
5625F:	drivers/block/floppy.c
5626
5627FMC SUBSYSTEM
5628M:	Alessandro Rubini <rubini@gnudd.com>
5629W:	http://www.ohwr.org/projects/fmc-bus
5630S:	Supported
5631F:	drivers/fmc/
5632F:	include/linux/fmc*.h
5633F:	include/linux/ipmi-fru.h
5634K:	fmc_d.*register
5635
5636FPGA MANAGER FRAMEWORK
5637M:	Alan Tull <atull@kernel.org>
5638M:	Moritz Fischer <mdf@kernel.org>
5639L:	linux-fpga@vger.kernel.org
5640S:	Maintained
5641T:	git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
5642Q:	http://patchwork.kernel.org/project/linux-fpga/list/
5643F:	Documentation/fpga/
5644F:	Documentation/driver-api/fpga/
5645F:	Documentation/devicetree/bindings/fpga/
5646F:	drivers/fpga/
5647F:	include/linux/fpga/
5648W:	http://www.rocketboards.org
5649
5650FPU EMULATOR
5651M:	Bill Metzenthen <billm@melbpc.org.au>
5652W:	http://floatingpoint.sourceforge.net/emulator/index.html
5653S:	Maintained
5654F:	arch/x86/math-emu/
5655
5656FRAME RELAY DLCI/FRAD (Sangoma drivers too)
5657L:	netdev@vger.kernel.org
5658S:	Orphan
5659F:	drivers/net/wan/dlci.c
5660F:	drivers/net/wan/sdla.c
5661
5662FRAMEBUFFER LAYER
5663M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5664L:	dri-devel@lists.freedesktop.org
5665L:	linux-fbdev@vger.kernel.org
5666T:	git git://github.com/bzolnier/linux.git
5667Q:	http://patchwork.kernel.org/project/linux-fbdev/list/
5668S:	Maintained
5669F:	Documentation/fb/
5670F:	drivers/video/
5671F:	include/video/
5672F:	include/linux/fb.h
5673F:	include/uapi/video/
5674F:	include/uapi/linux/fb.h
5675
5676FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
5677M:	Horia Geantă <horia.geanta@nxp.com>
5678M:	Aymen Sghaier <aymen.sghaier@nxp.com>
5679L:	linux-crypto@vger.kernel.org
5680S:	Maintained
5681F:	drivers/crypto/caam/
5682F:	Documentation/devicetree/bindings/crypto/fsl-sec4.txt
5683
5684FREESCALE DIU FRAMEBUFFER DRIVER
5685M:	Timur Tabi <timur@tabi.org>
5686L:	linux-fbdev@vger.kernel.org
5687S:	Maintained
5688F:	drivers/video/fbdev/fsl-diu-fb.*
5689
5690FREESCALE DMA DRIVER
5691M:	Li Yang <leoyang.li@nxp.com>
5692M:	Zhang Wei <zw@zh-kernel.org>
5693L:	linuxppc-dev@lists.ozlabs.org
5694S:	Maintained
5695F:	drivers/dma/fsldma.*
5696
5697FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5698M:	Claudiu Manoil <claudiu.manoil@nxp.com>
5699L:	netdev@vger.kernel.org
5700S:	Maintained
5701F:	drivers/net/ethernet/freescale/gianfar*
5702F:	Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5703
5704FREESCALE GPMI NAND DRIVER
5705M:	Han Xu <han.xu@nxp.com>
5706L:	linux-mtd@lists.infradead.org
5707S:	Maintained
5708F:	drivers/mtd/nand/raw/gpmi-nand/*
5709
5710FREESCALE I2C CPM DRIVER
5711M:	Jochen Friedrich <jochen@scram.de>
5712L:	linuxppc-dev@lists.ozlabs.org
5713L:	linux-i2c@vger.kernel.org
5714S:	Maintained
5715F:	drivers/i2c/busses/i2c-cpm.c
5716
5717FREESCALE IMX / MXC FEC DRIVER
5718M:	Fugang Duan <fugang.duan@nxp.com>
5719L:	netdev@vger.kernel.org
5720S:	Maintained
5721F:	drivers/net/ethernet/freescale/fec_main.c
5722F:	drivers/net/ethernet/freescale/fec_ptp.c
5723F:	drivers/net/ethernet/freescale/fec.h
5724F:	Documentation/devicetree/bindings/net/fsl-fec.txt
5725
5726FREESCALE IMX / MXC FRAMEBUFFER DRIVER
5727M:	Sascha Hauer <s.hauer@pengutronix.de>
5728R:	Pengutronix Kernel Team <kernel@pengutronix.de>
5729L:	linux-fbdev@vger.kernel.org
5730L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5731S:	Maintained
5732F:	include/linux/platform_data/video-imxfb.h
5733F:	drivers/video/fbdev/imxfb.c
5734
5735FREESCALE QORIQ DPAA ETHERNET DRIVER
5736M:	Madalin Bucur <madalin.bucur@nxp.com>
5737L:	netdev@vger.kernel.org
5738S:	Maintained
5739F:	drivers/net/ethernet/freescale/dpaa
5740
5741FREESCALE QORIQ DPAA FMAN DRIVER
5742M:	Madalin Bucur <madalin.bucur@nxp.com>
5743L:	netdev@vger.kernel.org
5744S:	Maintained
5745F:	drivers/net/ethernet/freescale/fman
5746F:	Documentation/devicetree/bindings/net/fsl-fman.txt
5747
5748FREESCALE QORIQ PTP CLOCK DRIVER
5749M:	Yangbo Lu <yangbo.lu@nxp.com>
5750L:	netdev@vger.kernel.org
5751S:	Maintained
5752F:	drivers/ptp/ptp_qoriq.c
5753F:	include/linux/fsl/ptp_qoriq.h
5754F:	Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
5755
5756FREESCALE QUAD SPI DRIVER
5757M:	Han Xu <han.xu@nxp.com>
5758L:	linux-mtd@lists.infradead.org
5759S:	Maintained
5760F:	drivers/mtd/spi-nor/fsl-quadspi.c
5761
5762FREESCALE QUICC ENGINE LIBRARY
5763M:	Qiang Zhao <qiang.zhao@nxp.com>
5764L:	linuxppc-dev@lists.ozlabs.org
5765S:	Maintained
5766F:	drivers/soc/fsl/qe/
5767F:	include/soc/fsl/*qe*.h
5768F:	include/soc/fsl/*ucc*.h
5769
5770FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5771M:	Li Yang <leoyang.li@nxp.com>
5772L:	netdev@vger.kernel.org
5773L:	linuxppc-dev@lists.ozlabs.org
5774S:	Maintained
5775F:	drivers/net/ethernet/freescale/ucc_geth*
5776
5777FREESCALE QUICC ENGINE UCC HDLC DRIVER
5778M:	Zhao Qiang <qiang.zhao@nxp.com>
5779L:	netdev@vger.kernel.org
5780L:	linuxppc-dev@lists.ozlabs.org
5781S:	Maintained
5782F:	drivers/net/wan/fsl_ucc_hdlc*
5783
5784FREESCALE QUICC ENGINE UCC UART DRIVER
5785M:	Timur Tabi <timur@tabi.org>
5786L:	linuxppc-dev@lists.ozlabs.org
5787S:	Maintained
5788F:	drivers/tty/serial/ucc_uart.c
5789
5790FREESCALE SOC DRIVERS
5791M:	Li Yang <leoyang.li@nxp.com>
5792L:	linuxppc-dev@lists.ozlabs.org
5793L:	linux-arm-kernel@lists.infradead.org
5794S:	Maintained
5795F:	Documentation/devicetree/bindings/soc/fsl/
5796F:	drivers/soc/fsl/
5797F:	include/linux/fsl/
5798
5799FREESCALE SOC FS_ENET DRIVER
5800M:	Pantelis Antoniou <pantelis.antoniou@gmail.com>
5801M:	Vitaly Bordug <vbordug@ru.mvista.com>
5802L:	linuxppc-dev@lists.ozlabs.org
5803L:	netdev@vger.kernel.org
5804S:	Maintained
5805F:	drivers/net/ethernet/freescale/fs_enet/
5806F:	include/linux/fs_enet_pd.h
5807
5808FREESCALE SOC SOUND DRIVERS
5809M:	Timur Tabi <timur@tabi.org>
5810M:	Nicolin Chen <nicoleotsuka@gmail.com>
5811M:	Xiubo Li <Xiubo.Lee@gmail.com>
5812R:	Fabio Estevam <fabio.estevam@nxp.com>
5813L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
5814L:	linuxppc-dev@lists.ozlabs.org
5815S:	Maintained
5816F:	sound/soc/fsl/fsl*
5817F:	sound/soc/fsl/imx*
5818F:	sound/soc/fsl/mpc8610_hpcd.c
5819
5820FREESCALE USB PERIPHERAL DRIVERS
5821M:	Li Yang <leoyang.li@nxp.com>
5822L:	linux-usb@vger.kernel.org
5823L:	linuxppc-dev@lists.ozlabs.org
5824S:	Maintained
5825F:	drivers/usb/gadget/udc/fsl*
5826
5827FREEVXFS FILESYSTEM
5828M:	Christoph Hellwig <hch@infradead.org>
5829W:	ftp://ftp.openlinux.org/pub/people/hch/vxfs
5830S:	Maintained
5831F:	fs/freevxfs/
5832
5833FREEZER
5834M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
5835M:	Pavel Machek <pavel@ucw.cz>
5836L:	linux-pm@vger.kernel.org
5837S:	Supported
5838F:	Documentation/power/freezing-of-tasks.txt
5839F:	include/linux/freezer.h
5840F:	kernel/freezer.c
5841
5842FRONTSWAP API
5843M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
5844L:	linux-kernel@vger.kernel.org
5845S:	Maintained
5846F:	mm/frontswap.c
5847F:	include/linux/frontswap.h
5848
5849FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5850M:	David Howells <dhowells@redhat.com>
5851L:	linux-cachefs@redhat.com (moderated for non-subscribers)
5852S:	Supported
5853F:	Documentation/filesystems/caching/
5854F:	fs/fscache/
5855F:	include/linux/fscache*.h
5856
5857FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5858M:	Theodore Y. Ts'o <tytso@mit.edu>
5859M:	Jaegeuk Kim <jaegeuk@kernel.org>
5860L:	linux-fscrypt@vger.kernel.org
5861Q:	https://patchwork.kernel.org/project/linux-fscrypt/list/
5862T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git
5863S:	Supported
5864F:	fs/crypto/
5865F:	include/linux/fscrypt*.h
5866F:	Documentation/filesystems/fscrypt.rst
5867
5868FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
5869M:	Jan Kara <jack@suse.cz>
5870R:	Amir Goldstein <amir73il@gmail.com>
5871L:	linux-fsdevel@vger.kernel.org
5872S:	Maintained
5873F:	fs/notify/
5874F:	include/linux/fsnotify*.h
5875
5876FUJITSU LAPTOP EXTRAS
5877M:	Jonathan Woithe <jwoithe@just42.net>
5878L:	platform-driver-x86@vger.kernel.org
5879S:	Maintained
5880F:	drivers/platform/x86/fujitsu-laptop.c
5881
5882FUJITSU M-5MO LS CAMERA ISP DRIVER
5883M:	Kyungmin Park <kyungmin.park@samsung.com>
5884M:	Heungjun Kim <riverful.kim@samsung.com>
5885L:	linux-media@vger.kernel.org
5886S:	Maintained
5887F:	drivers/media/i2c/m5mols/
5888F:	include/media/i2c/m5mols.h
5889
5890FUJITSU TABLET EXTRAS
5891M:	Robert Gerlach <khnz@gmx.de>
5892L:	platform-driver-x86@vger.kernel.org
5893S:	Maintained
5894F:	drivers/platform/x86/fujitsu-tablet.c
5895
5896FUSE: FILESYSTEM IN USERSPACE
5897M:	Miklos Szeredi <miklos@szeredi.hu>
5898L:	linux-fsdevel@vger.kernel.org
5899W:	http://fuse.sourceforge.net/
5900T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5901S:	Maintained
5902F:	fs/fuse/
5903F:	include/uapi/linux/fuse.h
5904F:	Documentation/filesystems/fuse.txt
5905
5906FUTEX SUBSYSTEM
5907M:	Thomas Gleixner <tglx@linutronix.de>
5908M:	Ingo Molnar <mingo@redhat.com>
5909R:	Peter Zijlstra <peterz@infradead.org>
5910R:	Darren Hart <dvhart@infradead.org>
5911L:	linux-kernel@vger.kernel.org
5912T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
5913S:	Maintained
5914F:	kernel/futex.c
5915F:	kernel/futex_compat.c
5916F:	include/asm-generic/futex.h
5917F:	include/linux/futex.h
5918F:	include/uapi/linux/futex.h
5919F:	tools/testing/selftests/futex/
5920F:	tools/perf/bench/futex*
5921F:	Documentation/*futex*
5922
5923GCC PLUGINS
5924M:	Kees Cook <keescook@chromium.org>
5925R:	Emese Revfy <re.emese@gmail.com>
5926L:	kernel-hardening@lists.openwall.com
5927S:	Maintained
5928F:	scripts/gcc-plugins/
5929F:	scripts/gcc-plugin.sh
5930F:	scripts/Makefile.gcc-plugins
5931F:	Documentation/gcc-plugins.txt
5932
5933GCOV BASED KERNEL PROFILING
5934M:	Peter Oberparleiter <oberpar@linux.ibm.com>
5935S:	Maintained
5936F:	kernel/gcov/
5937F:	Documentation/dev-tools/gcov.rst
5938
5939GDB KERNEL DEBUGGING HELPER SCRIPTS
5940M:	Jan Kiszka <jan.kiszka@siemens.com>
5941M:	Kieran Bingham <kieran@bingham.xyz>
5942S:	Supported
5943F:	scripts/gdb/
5944
5945GDT SCSI DISK ARRAY CONTROLLER DRIVER
5946M:	Achim Leubner <achim_leubner@adaptec.com>
5947L:	linux-scsi@vger.kernel.org
5948W:	http://www.icp-vortex.com/
5949S:	Supported
5950F:	drivers/scsi/gdt*
5951
5952GEMTEK FM RADIO RECEIVER DRIVER
5953M:	Hans Verkuil <hverkuil@xs4all.nl>
5954L:	linux-media@vger.kernel.org
5955T:	git git://linuxtv.org/media_tree.git
5956W:	https://linuxtv.org
5957S:	Maintained
5958F:	drivers/media/radio/radio-gemtek*
5959
5960GENERIC GPIO I2C DRIVER
5961M:	Haavard Skinnemoen <hskinnemoen@gmail.com>
5962S:	Supported
5963F:	drivers/i2c/busses/i2c-gpio.c
5964F:	include/linux/platform_data/i2c-gpio.h
5965
5966GENERIC GPIO I2C MULTIPLEXER DRIVER
5967M:	Peter Korsgaard <peter.korsgaard@barco.com>
5968L:	linux-i2c@vger.kernel.org
5969S:	Supported
5970F:	drivers/i2c/muxes/i2c-mux-gpio.c
5971F:	include/linux/platform_data/i2c-mux-gpio.h
5972F:	Documentation/i2c/muxes/i2c-mux-gpio
5973
5974GENERIC HDLC (WAN) DRIVERS
5975M:	Krzysztof Halasa <khc@pm.waw.pl>
5976W:	http://www.kernel.org/pub/linux/utils/net/hdlc/
5977S:	Maintained
5978F:	drivers/net/wan/c101.c
5979F:	drivers/net/wan/hd6457*
5980F:	drivers/net/wan/hdlc*
5981F:	drivers/net/wan/n2.c
5982F:	drivers/net/wan/pc300too.c
5983F:	drivers/net/wan/pci200syn.c
5984F:	drivers/net/wan/wanxl*
5985
5986GENERIC INCLUDE/ASM HEADER FILES
5987M:	Arnd Bergmann <arnd@arndb.de>
5988L:	linux-arch@vger.kernel.org
5989T:	git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5990S:	Maintained
5991F:	include/asm-generic/
5992F:	include/uapi/asm-generic/
5993
5994GENERIC PHY FRAMEWORK
5995M:	Kishon Vijay Abraham I <kishon@ti.com>
5996L:	linux-kernel@vger.kernel.org
5997T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5998S:	Supported
5999F:	drivers/phy/
6000F:	include/linux/phy/
6001
6002GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
6003M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
6004S:	Supported
6005F:	drivers/i2c/muxes/i2c-demux-pinctrl.c
6006
6007GENERIC PM DOMAINS
6008M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
6009M:	Kevin Hilman <khilman@kernel.org>
6010M:	Ulf Hansson <ulf.hansson@linaro.org>
6011L:	linux-pm@vger.kernel.org
6012S:	Supported
6013F:	drivers/base/power/domain*.c
6014F:	include/linux/pm_domain.h
6015F:	Documentation/devicetree/bindings/power/power_domain.txt
6016
6017GENERIC UIO DRIVER FOR PCI DEVICES
6018M:	"Michael S. Tsirkin" <mst@redhat.com>
6019L:	kvm@vger.kernel.org
6020S:	Supported
6021F:	drivers/uio/uio_pci_generic.c
6022
6023GENWQE (IBM Generic Workqueue Card)
6024M:	Frank Haverkamp <haver@linux.vnet.ibm.com>
6025M:	Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
6026S:	Supported
6027F:	drivers/misc/genwqe/
6028
6029GET_MAINTAINER SCRIPT
6030M:	Joe Perches <joe@perches.com>
6031S:	Maintained
6032F:	scripts/get_maintainer.pl
6033
6034GFS2 FILE SYSTEM
6035M:	Bob Peterson <rpeterso@redhat.com>
6036M:	Andreas Gruenbacher <agruenba@redhat.com>
6037L:	cluster-devel@redhat.com
6038W:	http://sources.redhat.com/cluster/
6039T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
6040S:	Supported
6041F:	Documentation/filesystems/gfs2*.txt
6042F:	fs/gfs2/
6043F:	include/uapi/linux/gfs2_ondisk.h
6044
6045GIGASET ISDN DRIVERS
6046M:	Paul Bolle <pebolle@tiscali.nl>
6047L:	gigaset307x-common@lists.sourceforge.net
6048W:	http://gigaset307x.sourceforge.net/
6049S:	Odd Fixes
6050F:	Documentation/isdn/README.gigaset
6051F:	drivers/isdn/gigaset/
6052F:	include/uapi/linux/gigaset_dev.h
6053
6054GO7007 MPEG CODEC
6055M:	Hans Verkuil <hans.verkuil@cisco.com>
6056L:	linux-media@vger.kernel.org
6057S:	Maintained
6058F:	drivers/media/usb/go7007/
6059
6060GOODIX TOUCHSCREEN
6061M:	Bastien Nocera <hadess@hadess.net>
6062L:	linux-input@vger.kernel.org
6063S:	Maintained
6064F:	drivers/input/touchscreen/goodix.c
6065
6066GPD POCKET FAN DRIVER
6067M:	Hans de Goede <hdegoede@redhat.com>
6068L:	platform-driver-x86@vger.kernel.org
6069S:	Maintained
6070F:	drivers/platform/x86/gpd-pocket-fan.c
6071
6072GPIO ACPI SUPPORT
6073M:	Mika Westerberg <mika.westerberg@linux.intel.com>
6074M:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6075L:	linux-gpio@vger.kernel.org
6076L:	linux-acpi@vger.kernel.org
6077S:	Maintained
6078F:	Documentation/acpi/gpio-properties.txt
6079F:	drivers/gpio/gpiolib-acpi.c
6080
6081GPIO IR Transmitter
6082M:	Sean Young <sean@mess.org>
6083L:	linux-media@vger.kernel.org
6084S:	Maintained
6085F:	drivers/media/rc/gpio-ir-tx.c
6086
6087GPIO MOCKUP DRIVER
6088M:	Bamvor Jian Zhang <bamv2005@gmail.com>
6089R:	Bartosz Golaszewski <brgl@bgdev.pl>
6090L:	linux-gpio@vger.kernel.org
6091S:	Maintained
6092F:	drivers/gpio/gpio-mockup.c
6093F:	tools/testing/selftests/gpio/
6094
6095GPIO SUBSYSTEM
6096M:	Linus Walleij <linus.walleij@linaro.org>
6097L:	linux-gpio@vger.kernel.org
6098T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
6099S:	Maintained
6100F:	Documentation/devicetree/bindings/gpio/
6101F:	Documentation/driver-api/gpio/
6102F:	Documentation/gpio/
6103F:	Documentation/ABI/testing/gpio-cdev
6104F:	Documentation/ABI/obsolete/sysfs-gpio
6105F:	drivers/gpio/
6106F:	include/linux/gpio/
6107F:	include/linux/gpio.h
6108F:	include/linux/of_gpio.h
6109F:	include/asm-generic/gpio.h
6110F:	include/uapi/linux/gpio.h
6111F:	tools/gpio/
6112
6113GRE DEMULTIPLEXER DRIVER
6114M:	Dmitry Kozlov <xeb@mail.ru>
6115L:	netdev@vger.kernel.org
6116S:	Maintained
6117F:	net/ipv4/gre_demux.c
6118F:	net/ipv4/gre_offload.c
6119F:	include/net/gre.h
6120
6121GRETH 10/100/1G Ethernet MAC device driver
6122M:	Andreas Larsson <andreas@gaisler.com>
6123L:	netdev@vger.kernel.org
6124S:	Maintained
6125F:	drivers/net/ethernet/aeroflex/
6126
6127GREYBUS AUDIO PROTOCOLS DRIVERS
6128M:	Vaibhav Agarwal <vaibhav.sr@gmail.com>
6129M:	Mark Greer <mgreer@animalcreek.com>
6130S:	Maintained
6131F:	drivers/staging/greybus/audio_apbridgea.c
6132F:	drivers/staging/greybus/audio_apbridgea.h
6133F:	drivers/staging/greybus/audio_codec.c
6134F:	drivers/staging/greybus/audio_codec.h
6135F:	drivers/staging/greybus/audio_gb.c
6136F:	drivers/staging/greybus/audio_manager.c
6137F:	drivers/staging/greybus/audio_manager.h
6138F:	drivers/staging/greybus/audio_manager_module.c
6139F:	drivers/staging/greybus/audio_manager_private.h
6140F:	drivers/staging/greybus/audio_manager_sysfs.c
6141F:	drivers/staging/greybus/audio_module.c
6142F:	drivers/staging/greybus/audio_topology.c
6143
6144GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
6145M:	Viresh Kumar <vireshk@kernel.org>
6146S:	Maintained
6147F:	drivers/staging/greybus/authentication.c
6148F:	drivers/staging/greybus/bootrom.c
6149F:	drivers/staging/greybus/firmware.h
6150F:	drivers/staging/greybus/fw-core.c
6151F:	drivers/staging/greybus/fw-download.c
6152F:	drivers/staging/greybus/fw-managament.c
6153F:	drivers/staging/greybus/greybus_authentication.h
6154F:	drivers/staging/greybus/greybus_firmware.h
6155F:	drivers/staging/greybus/hid.c
6156F:	drivers/staging/greybus/i2c.c
6157F:	drivers/staging/greybus/spi.c
6158F:	drivers/staging/greybus/spilib.c
6159F:	drivers/staging/greybus/spilib.h
6160
6161GREYBUS LOOPBACK/TIME PROTOCOLS DRIVERS
6162M:	Bryan O'Donoghue <pure.logic@nexus-software.ie>
6163S:	Maintained
6164F:	drivers/staging/greybus/loopback.c
6165F:	drivers/staging/greybus/timesync.c
6166F:	drivers/staging/greybus/timesync_platform.c
6167
6168GREYBUS PLATFORM DRIVERS
6169M:	Vaibhav Hiremath <hvaibhav.linux@gmail.com>
6170S:	Maintained
6171F:	drivers/staging/greybus/arche-platform.c
6172F:	drivers/staging/greybus/arche-apb-ctrl.c
6173F:	drivers/staging/greybus/arche_platform.h
6174
6175GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
6176M:	Rui Miguel Silva <rmfrfs@gmail.com>
6177S:	Maintained
6178F:	drivers/staging/greybus/sdio.c
6179F:	drivers/staging/greybus/light.c
6180F:	drivers/staging/greybus/gpio.c
6181F:	drivers/staging/greybus/power_supply.c
6182F:	drivers/staging/greybus/spi.c
6183F:	drivers/staging/greybus/spilib.c
6184
6185GREYBUS SUBSYSTEM
6186M:	Johan Hovold <johan@kernel.org>
6187M:	Alex Elder <elder@kernel.org>
6188M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6189S:	Maintained
6190F:	drivers/staging/greybus/
6191L:	greybus-dev@lists.linaro.org (moderated for non-subscribers)
6192
6193GREYBUS UART PROTOCOLS DRIVERS
6194M:	David Lin <dtwlin@gmail.com>
6195S:	Maintained
6196F:	drivers/staging/greybus/uart.c
6197F:	drivers/staging/greybus/log.c
6198
6199GS1662 VIDEO SERIALIZER
6200M:	Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
6201L:	linux-media@vger.kernel.org
6202T:	git git://linuxtv.org/media_tree.git
6203S:	Maintained
6204F:	drivers/media/spi/gs1662.c
6205
6206GSPCA FINEPIX SUBDRIVER
6207M:	Frank Zago <frank@zago.net>
6208L:	linux-media@vger.kernel.org
6209T:	git git://linuxtv.org/media_tree.git
6210S:	Maintained
6211F:	drivers/media/usb/gspca/finepix.c
6212
6213GSPCA GL860 SUBDRIVER
6214M:	Olivier Lorin <o.lorin@laposte.net>
6215L:	linux-media@vger.kernel.org
6216T:	git git://linuxtv.org/media_tree.git
6217S:	Maintained
6218F:	drivers/media/usb/gspca/gl860/
6219
6220GSPCA M5602 SUBDRIVER
6221M:	Erik Andren <erik.andren@gmail.com>
6222L:	linux-media@vger.kernel.org
6223T:	git git://linuxtv.org/media_tree.git
6224S:	Maintained
6225F:	drivers/media/usb/gspca/m5602/
6226
6227GSPCA PAC207 SONIXB SUBDRIVER
6228M:	Hans Verkuil <hverkuil@xs4all.nl>
6229L:	linux-media@vger.kernel.org
6230T:	git git://linuxtv.org/media_tree.git
6231S:	Odd Fixes
6232F:	drivers/media/usb/gspca/pac207.c
6233
6234GSPCA SN9C20X SUBDRIVER
6235M:	Brian Johnson <brijohn@gmail.com>
6236L:	linux-media@vger.kernel.org
6237T:	git git://linuxtv.org/media_tree.git
6238S:	Maintained
6239F:	drivers/media/usb/gspca/sn9c20x.c
6240
6241GSPCA T613 SUBDRIVER
6242M:	Leandro Costantino <lcostantino@gmail.com>
6243L:	linux-media@vger.kernel.org
6244T:	git git://linuxtv.org/media_tree.git
6245S:	Maintained
6246F:	drivers/media/usb/gspca/t613.c
6247
6248GSPCA USB WEBCAM DRIVER
6249M:	Hans Verkuil <hverkuil@xs4all.nl>
6250L:	linux-media@vger.kernel.org
6251T:	git git://linuxtv.org/media_tree.git
6252S:	Odd Fixes
6253F:	drivers/media/usb/gspca/
6254
6255GTP (GPRS Tunneling Protocol)
6256M:	Pablo Neira Ayuso <pablo@netfilter.org>
6257M:	Harald Welte <laforge@gnumonks.org>
6258L:	osmocom-net-gprs@lists.osmocom.org
6259T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
6260S:	Maintained
6261F:	drivers/net/gtp.c
6262
6263GUID PARTITION TABLE (GPT)
6264M:	Davidlohr Bueso <dave@stgolabs.net>
6265L:	linux-efi@vger.kernel.org
6266S:	Maintained
6267F:	block/partitions/efi.*
6268
6269H8/300 ARCHITECTURE
6270M:	Yoshinori Sato <ysato@users.sourceforge.jp>
6271L:	uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
6272W:	http://uclinux-h8.sourceforge.jp
6273T:	git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
6274S:	Maintained
6275F:	arch/h8300/
6276F:	drivers/clocksource/h8300_*.c
6277F:	drivers/clk/h8300/
6278F:	drivers/irqchip/irq-renesas-h8*.c
6279
6280HACKRF MEDIA DRIVER
6281M:	Antti Palosaari <crope@iki.fi>
6282L:	linux-media@vger.kernel.org
6283W:	https://linuxtv.org
6284W:	http://palosaari.fi/linux/
6285Q:	http://patchwork.linuxtv.org/project/linux-media/list/
6286T:	git git://linuxtv.org/anttip/media_tree.git
6287S:	Maintained
6288F:	drivers/media/usb/hackrf/
6289
6290HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
6291M:	Frank Seidel <frank@f-seidel.de>
6292L:	platform-driver-x86@vger.kernel.org
6293W:	http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
6294S:	Maintained
6295F:	drivers/platform/x86/hdaps.c
6296
6297HARDWARE MONITORING
6298M:	Jean Delvare <jdelvare@suse.com>
6299M:	Guenter Roeck <linux@roeck-us.net>
6300L:	linux-hwmon@vger.kernel.org
6301W:	http://hwmon.wiki.kernel.org/
6302T:	git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6303S:	Maintained
6304F:	Documentation/devicetree/bindings/hwmon/
6305F:	Documentation/hwmon/
6306F:	drivers/hwmon/
6307F:	include/linux/hwmon*.h
6308
6309HARDWARE RANDOM NUMBER GENERATOR CORE
6310M:	Matt Mackall <mpm@selenic.com>
6311M:	Herbert Xu <herbert@gondor.apana.org.au>
6312L:	linux-crypto@vger.kernel.org
6313S:	Odd fixes
6314F:	Documentation/devicetree/bindings/rng/
6315F:	Documentation/hw_random.txt
6316F:	drivers/char/hw_random/
6317F:	include/linux/hw_random.h
6318
6319HARDWARE TRACING FACILITIES
6320M:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
6321S:	Maintained
6322F:	drivers/hwtracing/
6323
6324HARDWARE SPINLOCK CORE
6325M:	Ohad Ben-Cohen <ohad@wizery.com>
6326M:	Bjorn Andersson <bjorn.andersson@linaro.org>
6327L:	linux-remoteproc@vger.kernel.org
6328S:	Maintained
6329T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
6330F:	Documentation/devicetree/bindings/hwlock/
6331F:	Documentation/hwspinlock.txt
6332F:	drivers/hwspinlock/
6333F:	include/linux/hwspinlock.h
6334
6335HARMONY SOUND DRIVER
6336L:	linux-parisc@vger.kernel.org
6337S:	Maintained
6338F:	sound/parisc/harmony.*
6339
6340HDPVR USB VIDEO ENCODER DRIVER
6341M:	Hans Verkuil <hverkuil@xs4all.nl>
6342L:	linux-media@vger.kernel.org
6343T:	git git://linuxtv.org/media_tree.git
6344W:	https://linuxtv.org
6345S:	Odd Fixes
6346F:	drivers/media/usb/hdpvr/
6347
6348HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
6349M:	Jerry Hoemann <jerry.hoemann@hpe.com>
6350S:	Supported
6351F:	Documentation/watchdog/hpwdt.txt
6352F:	drivers/watchdog/hpwdt.c
6353
6354HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
6355M:	Don Brace <don.brace@microsemi.com>
6356L:	esc.storagedev@microsemi.com
6357L:	linux-scsi@vger.kernel.org
6358S:	Supported
6359F:	Documentation/scsi/hpsa.txt
6360F:	drivers/scsi/hpsa*.[ch]
6361F:	include/linux/cciss*.h
6362F:	include/uapi/linux/cciss*.h
6363
6364HFI1 DRIVER
6365M:	Mike Marciniszyn <mike.marciniszyn@intel.com>
6366M:	Dennis Dalessandro <dennis.dalessandro@intel.com>
6367L:	linux-rdma@vger.kernel.org
6368S:	Supported
6369F:	drivers/infiniband/hw/hfi1
6370
6371HFS FILESYSTEM
6372L:	linux-fsdevel@vger.kernel.org
6373S:	Orphan
6374F:	Documentation/filesystems/hfs.txt
6375F:	fs/hfs/
6376
6377HFSPLUS FILESYSTEM
6378L:	linux-fsdevel@vger.kernel.org
6379S:	Orphan
6380F:	Documentation/filesystems/hfsplus.txt
6381F:	fs/hfsplus/
6382
6383HGA FRAMEBUFFER DRIVER
6384M:	Ferenc Bakonyi <fero@drama.obuda.kando.hu>
6385L:	linux-nvidia@lists.surfsouth.com
6386W:	http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
6387S:	Maintained
6388F:	drivers/video/fbdev/hgafb.c
6389
6390HIBERNATION (aka Software Suspend, aka swsusp)
6391M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
6392M:	Pavel Machek <pavel@ucw.cz>
6393L:	linux-pm@vger.kernel.org
6394B:	https://bugzilla.kernel.org
6395S:	Supported
6396F:	arch/x86/power/
6397F:	drivers/base/power/
6398F:	kernel/power/
6399F:	include/linux/suspend.h
6400F:	include/linux/freezer.h
6401F:	include/linux/pm.h
6402F:	arch/*/include/asm/suspend*.h
6403
6404HID CORE LAYER
6405M:	Jiri Kosina <jikos@kernel.org>
6406R:	Benjamin Tissoires <benjamin.tissoires@redhat.com>
6407L:	linux-input@vger.kernel.org
6408T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
6409S:	Maintained
6410F:	drivers/hid/
6411F:	include/linux/hid*
6412F:	include/uapi/linux/hid*
6413
6414HID SENSOR HUB DRIVERS
6415M:	Jiri Kosina <jikos@kernel.org>
6416M:	Jonathan Cameron <jic23@kernel.org>
6417M:	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6418L:	linux-input@vger.kernel.org
6419L:	linux-iio@vger.kernel.org
6420S:	Maintained
6421F:	Documentation/hid/hid-sensor*
6422F:	drivers/hid/hid-sensor-*
6423F:	drivers/iio/*/hid-*
6424F:	include/linux/hid-sensor-*
6425
6426HIGH-RESOLUTION TIMERS, CLOCKEVENTS
6427M:	Thomas Gleixner <tglx@linutronix.de>
6428L:	linux-kernel@vger.kernel.org
6429T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6430S:	Maintained
6431F:	Documentation/timers/
6432F:	kernel/time/hrtimer.c
6433F:	kernel/time/clockevents.c
6434F:	kernel/time/timer_*.c
6435F:	include/linux/clockchips.h
6436F:	include/linux/hrtimer.h
6437
6438HIGH-SPEED SCC DRIVER FOR AX.25
6439L:	linux-hams@vger.kernel.org
6440S:	Orphan
6441F:	drivers/net/hamradio/dmascc.c
6442F:	drivers/net/hamradio/scc.c
6443
6444HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
6445M:	HighPoint Linux Team <linux@highpoint-tech.com>
6446W:	http://www.highpoint-tech.com
6447S:	Supported
6448F:	Documentation/scsi/hptiop.txt
6449F:	drivers/scsi/hptiop.c
6450
6451HIPPI
6452M:	Jes Sorensen <jes@trained-monkey.org>
6453L:	linux-hippi@sunsite.dk
6454S:	Maintained
6455F:	include/linux/hippidevice.h
6456F:	include/uapi/linux/if_hippi.h
6457F:	net/802/hippi.c
6458F:	drivers/net/hippi/
6459
6460HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
6461M:	Yisen Zhuang <yisen.zhuang@huawei.com>
6462M:	Salil Mehta <salil.mehta@huawei.com>
6463L:	netdev@vger.kernel.org
6464W:	http://www.hisilicon.com
6465S:	Maintained
6466F:	drivers/net/ethernet/hisilicon/hns3/
6467
6468HISILICON LPC BUS DRIVER
6469M:	john.garry@huawei.com
6470W:	http://www.hisilicon.com
6471S:	Maintained
6472F:	drivers/bus/hisi_lpc.c
6473F:	Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
6474
6475HISILICON NETWORK SUBSYSTEM DRIVER
6476M:	Yisen Zhuang <yisen.zhuang@huawei.com>
6477M:	Salil Mehta <salil.mehta@huawei.com>
6478L:	netdev@vger.kernel.org
6479W:	http://www.hisilicon.com
6480S:	Maintained
6481F:	drivers/net/ethernet/hisilicon/
6482F:	Documentation/devicetree/bindings/net/hisilicon*.txt
6483
6484HISILICON PMU DRIVER
6485M:	Shaokun Zhang <zhangshaokun@hisilicon.com>
6486W:	http://www.hisilicon.com
6487S:	Supported
6488F:	drivers/perf/hisilicon
6489F:	Documentation/perf/hisi-pmu.txt
6490
6491HISILICON ROCE DRIVER
6492M:	Lijun Ou <oulijun@huawei.com>
6493M:	Wei Hu(Xavier) <xavier.huwei@huawei.com>
6494L:	linux-rdma@vger.kernel.org
6495S:	Maintained
6496F:	drivers/infiniband/hw/hns/
6497F:	Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
6498
6499HISILICON SAS Controller
6500M:	John Garry <john.garry@huawei.com>
6501W:	http://www.hisilicon.com
6502S:	Supported
6503F:	drivers/scsi/hisi_sas/
6504F:	Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
6505
6506HMM - Heterogeneous Memory Management
6507M:	Jérôme Glisse <jglisse@redhat.com>
6508L:	linux-mm@kvack.org
6509S:	Maintained
6510F:	mm/hmm*
6511F:	include/linux/hmm*
6512F:	Documentation/vm/hmm.rst
6513
6514HOST AP DRIVER
6515M:	Jouni Malinen <j@w1.fi>
6516L:	linux-wireless@vger.kernel.org
6517W:	http://w1.fi/hostap-driver.html
6518S:	Obsolete
6519F:	drivers/net/wireless/intersil/hostap/
6520
6521HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
6522L:	platform-driver-x86@vger.kernel.org
6523S:	Orphan
6524F:	drivers/platform/x86/tc1100-wmi.c
6525
6526HP100:	Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
6527M:	Jaroslav Kysela <perex@perex.cz>
6528S:	Maintained
6529F:	drivers/net/ethernet/hp/hp100.*
6530
6531HPET:	High Precision Event Timers driver
6532M:	Clemens Ladisch <clemens@ladisch.de>
6533S:	Maintained
6534F:	Documentation/timers/hpet.txt
6535F:	drivers/char/hpet.c
6536F:	include/linux/hpet.h
6537F:	include/uapi/linux/hpet.h
6538
6539HPET:	x86
6540S:	Orphan
6541F:	arch/x86/kernel/hpet.c
6542F:	arch/x86/include/asm/hpet.h
6543
6544HPFS FILESYSTEM
6545M:	Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
6546W:	http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
6547S:	Maintained
6548F:	fs/hpfs/
6549
6550HSI SUBSYSTEM
6551M:	Sebastian Reichel <sre@kernel.org>
6552T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
6553S:	Maintained
6554F:	Documentation/ABI/testing/sysfs-bus-hsi
6555F:	Documentation/driver-api/hsi.rst
6556F:	drivers/hsi/
6557F:	include/linux/hsi/
6558F:	include/uapi/linux/hsi/
6559
6560HSO 3G MODEM DRIVER
6561L:	linux-usb@vger.kernel.org
6562S:	Orphan
6563F:	drivers/net/usb/hso.c
6564
6565HSR NETWORK PROTOCOL
6566M:	Arvid Brodin <arvid.brodin@alten.se>
6567L:	netdev@vger.kernel.org
6568S:	Maintained
6569F:	net/hsr/
6570
6571HT16K33 LED CONTROLLER DRIVER
6572M:	Robin van der Gracht <robin@protonic.nl>
6573S:	Maintained
6574F:	drivers/auxdisplay/ht16k33.c
6575F:	Documentation/devicetree/bindings/display/ht16k33.txt
6576
6577HTCPEN TOUCHSCREEN DRIVER
6578M:	Pau Oliva Fora <pof@eslack.org>
6579L:	linux-input@vger.kernel.org
6580S:	Maintained
6581F:	drivers/input/touchscreen/htcpen.c
6582
6583HUAWEI ETHERNET DRIVER
6584M:	Aviad Krawczyk <aviad.krawczyk@huawei.com>
6585L:	netdev@vger.kernel.org
6586S:	Supported
6587F:	Documentation/networking/hinic.txt
6588F:	drivers/net/ethernet/huawei/hinic/
6589
6590HUGETLB FILESYSTEM
6591M:	Mike Kravetz <mike.kravetz@oracle.com>
6592L:	linux-mm@kvack.org
6593S:	Maintained
6594F:	fs/hugetlbfs/
6595F:	mm/hugetlb.c
6596F:	include/linux/hugetlb.h
6597F:	Documentation/admin-guide/mm/hugetlbpage.rst
6598F:	Documentation/vm/hugetlbfs_reserv.rst
6599F:	Documentation/ABI/testing/sysfs-kernel-mm-hugepages
6600
6601HVA ST MEDIA DRIVER
6602M:	Jean-Christophe Trotin <jean-christophe.trotin@st.com>
6603L:	linux-media@vger.kernel.org
6604T:	git git://linuxtv.org/media_tree.git
6605W:	https://linuxtv.org
6606S:	Supported
6607F:	drivers/media/platform/sti/hva
6608
6609HWPOISON MEMORY FAILURE HANDLING
6610M:	Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
6611L:	linux-mm@kvack.org
6612S:	Maintained
6613F:	mm/memory-failure.c
6614F:	mm/hwpoison-inject.c
6615
6616Hyper-V CORE AND DRIVERS
6617M:	"K. Y. Srinivasan" <kys@microsoft.com>
6618M:	Haiyang Zhang <haiyangz@microsoft.com>
6619M:	Stephen Hemminger <sthemmin@microsoft.com>
6620L:	devel@linuxdriverproject.org
6621S:	Maintained
6622F:	Documentation/networking/netvsc.txt
6623F:	arch/x86/include/asm/mshyperv.h
6624F:	arch/x86/include/asm/trace/hyperv.h
6625F:	arch/x86/include/asm/hyperv-tlfs.h
6626F:	arch/x86/kernel/cpu/mshyperv.c
6627F:	arch/x86/hyperv
6628F:	drivers/hid/hid-hyperv.c
6629F:	drivers/hv/
6630F:	drivers/input/serio/hyperv-keyboard.c
6631F:	drivers/pci/controller/pci-hyperv.c
6632F:	drivers/net/hyperv/
6633F:	drivers/scsi/storvsc_drv.c
6634F:	drivers/uio/uio_hv_generic.c
6635F:	drivers/video/fbdev/hyperv_fb.c
6636F:	net/vmw_vsock/hyperv_transport.c
6637F:	include/linux/hyperv.h
6638F:	include/uapi/linux/hyperv.h
6639F:	tools/hv/
6640F:	Documentation/ABI/stable/sysfs-bus-vmbus
6641
6642HYPERVISOR VIRTUAL CONSOLE DRIVER
6643L:	linuxppc-dev@lists.ozlabs.org
6644S:	Odd Fixes
6645F:	drivers/tty/hvc/
6646
6647I2C ACPI SUPPORT
6648M:	Mika Westerberg <mika.westerberg@linux.intel.com>
6649L:	linux-i2c@vger.kernel.org
6650L:	linux-acpi@vger.kernel.org
6651S:	Maintained
6652F:	drivers/i2c/i2c-core-acpi.c
6653
6654I2C MUXES
6655M:	Peter Rosin <peda@axentia.se>
6656L:	linux-i2c@vger.kernel.org
6657S:	Maintained
6658F:	Documentation/i2c/i2c-topology
6659F:	Documentation/i2c/muxes/
6660F:	Documentation/devicetree/bindings/i2c/i2c-mux*
6661F:	Documentation/devicetree/bindings/i2c/i2c-arb*
6662F:	Documentation/devicetree/bindings/i2c/i2c-gate*
6663F:	drivers/i2c/i2c-mux.c
6664F:	drivers/i2c/muxes/
6665F:	include/linux/i2c-mux.h
6666
6667I2C MV64XXX MARVELL AND ALLWINNER DRIVER
6668M:	Gregory CLEMENT <gregory.clement@bootlin.com>
6669L:	linux-i2c@vger.kernel.org
6670S:	Maintained
6671F:	drivers/i2c/busses/i2c-mv64xxx.c
6672
6673I2C OVER PARALLEL PORT
6674M:	Jean Delvare <jdelvare@suse.com>
6675L:	linux-i2c@vger.kernel.org
6676S:	Maintained
6677F:	Documentation/i2c/busses/i2c-parport
6678F:	Documentation/i2c/busses/i2c-parport-light
6679F:	drivers/i2c/busses/i2c-parport.c
6680F:	drivers/i2c/busses/i2c-parport-light.c
6681
6682I2C SUBSYSTEM
6683M:	Wolfram Sang <wsa@the-dreams.de>
6684L:	linux-i2c@vger.kernel.org
6685W:	https://i2c.wiki.kernel.org/
6686Q:	https://patchwork.ozlabs.org/project/linux-i2c/list/
6687T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6688S:	Maintained
6689F:	Documentation/devicetree/bindings/i2c/i2c.txt
6690F:	Documentation/i2c/
6691F:	drivers/i2c/*
6692F:	include/linux/i2c.h
6693F:	include/linux/i2c-dev.h
6694F:	include/linux/i2c-smbus.h
6695F:	include/uapi/linux/i2c.h
6696F:	include/uapi/linux/i2c-*.h
6697
6698I2C SUBSYSTEM HOST DRIVERS
6699L:	linux-i2c@vger.kernel.org
6700W:	https://i2c.wiki.kernel.org/
6701Q:	https://patchwork.ozlabs.org/project/linux-i2c/list/
6702T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6703S:	Odd Fixes
6704F:	Documentation/devicetree/bindings/i2c/
6705F:	drivers/i2c/algos/
6706F:	drivers/i2c/busses/
6707
6708I2C-TAOS-EVM DRIVER
6709M:	Jean Delvare <jdelvare@suse.com>
6710L:	linux-i2c@vger.kernel.org
6711S:	Maintained
6712F:	Documentation/i2c/busses/i2c-taos-evm
6713F:	drivers/i2c/busses/i2c-taos-evm.c
6714
6715I2C-TINY-USB DRIVER
6716M:	Till Harbaum <till@harbaum.org>
6717L:	linux-i2c@vger.kernel.org
6718W:	http://www.harbaum.org/till/i2c_tiny_usb
6719S:	Maintained
6720F:	drivers/i2c/busses/i2c-tiny-usb.c
6721
6722I2C/SMBUS CONTROLLER DRIVERS FOR PC
6723M:	Jean Delvare <jdelvare@suse.com>
6724L:	linux-i2c@vger.kernel.org
6725S:	Maintained
6726F:	Documentation/i2c/busses/i2c-ali1535
6727F:	Documentation/i2c/busses/i2c-ali1563
6728F:	Documentation/i2c/busses/i2c-ali15x3
6729F:	Documentation/i2c/busses/i2c-amd756
6730F:	Documentation/i2c/busses/i2c-amd8111
6731F:	Documentation/i2c/busses/i2c-i801
6732F:	Documentation/i2c/busses/i2c-nforce2
6733F:	Documentation/i2c/busses/i2c-piix4
6734F:	Documentation/i2c/busses/i2c-sis5595
6735F:	Documentation/i2c/busses/i2c-sis630
6736F:	Documentation/i2c/busses/i2c-sis96x
6737F:	Documentation/i2c/busses/i2c-via
6738F:	Documentation/i2c/busses/i2c-viapro
6739F:	drivers/i2c/busses/i2c-ali1535.c
6740F:	drivers/i2c/busses/i2c-ali1563.c
6741F:	drivers/i2c/busses/i2c-ali15x3.c
6742F:	drivers/i2c/busses/i2c-amd756.c
6743F:	drivers/i2c/busses/i2c-amd756-s4882.c
6744F:	drivers/i2c/busses/i2c-amd8111.c
6745F:	drivers/i2c/busses/i2c-i801.c
6746F:	drivers/i2c/busses/i2c-isch.c
6747F:	drivers/i2c/busses/i2c-nforce2.c
6748F:	drivers/i2c/busses/i2c-nforce2-s4985.c
6749F:	drivers/i2c/busses/i2c-piix4.c
6750F:	drivers/i2c/busses/i2c-sis5595.c
6751F:	drivers/i2c/busses/i2c-sis630.c
6752F:	drivers/i2c/busses/i2c-sis96x.c
6753F:	drivers/i2c/busses/i2c-via.c
6754F:	drivers/i2c/busses/i2c-viapro.c
6755
6756I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
6757M:	Hans de Goede <hdegoede@redhat.com>
6758L:	linux-i2c@vger.kernel.org
6759S:	Maintained
6760F:	drivers/i2c/busses/i2c-cht-wc.c
6761
6762I2C/SMBUS ISMT DRIVER
6763M:	Seth Heasley <seth.heasley@intel.com>
6764M:	Neil Horman <nhorman@tuxdriver.com>
6765L:	linux-i2c@vger.kernel.org
6766F:	drivers/i2c/busses/i2c-ismt.c
6767F:	Documentation/i2c/busses/i2c-ismt
6768
6769I2C/SMBUS STUB DRIVER
6770M:	Jean Delvare <jdelvare@suse.com>
6771L:	linux-i2c@vger.kernel.org
6772S:	Maintained
6773F:	drivers/i2c/i2c-stub.c
6774
6775IA64 (Itanium) PLATFORM
6776M:	Tony Luck <tony.luck@intel.com>
6777M:	Fenghua Yu <fenghua.yu@intel.com>
6778L:	linux-ia64@vger.kernel.org
6779T:	git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
6780S:	Maintained
6781F:	arch/ia64/
6782
6783IBM Power 842 compression accelerator
6784M:	Haren Myneni <haren@us.ibm.com>
6785S:	Supported
6786F:	drivers/crypto/nx/Makefile
6787F:	drivers/crypto/nx/Kconfig
6788F:	drivers/crypto/nx/nx-842*
6789F:	include/linux/sw842.h
6790F:	crypto/842.c
6791F:	lib/842/
6792
6793IBM Power in-Nest Crypto Acceleration
6794M:	Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6795M:	Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6796L:	linux-crypto@vger.kernel.org
6797S:	Supported
6798F:	drivers/crypto/nx/Makefile
6799F:	drivers/crypto/nx/Kconfig
6800F:	drivers/crypto/nx/nx-aes*
6801F:	drivers/crypto/nx/nx-sha*
6802F:	drivers/crypto/nx/nx.*
6803F:	drivers/crypto/nx/nx_csbcpb.h
6804F:	drivers/crypto/nx/nx_debugfs.h
6805
6806IBM Power Linux RAID adapter
6807M:	Brian King <brking@us.ibm.com>
6808S:	Supported
6809F:	drivers/scsi/ipr.*
6810
6811IBM Power SRIOV Virtual NIC Device Driver
6812M:	Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6813M:	John Allen <jallen@linux.vnet.ibm.com>
6814L:	netdev@vger.kernel.org
6815S:	Supported
6816F:	drivers/net/ethernet/ibm/ibmvnic.*
6817
6818IBM Power Virtual Accelerator Switchboard
6819M:	Sukadev Bhattiprolu
6820L:	linuxppc-dev@lists.ozlabs.org
6821S:	Supported
6822F:	arch/powerpc/platforms/powernv/vas*
6823F:	arch/powerpc/platforms/powernv/copy-paste.h
6824F:	arch/powerpc/include/asm/vas.h
6825F:	arch/powerpc/include/uapi/asm/vas.h
6826
6827IBM Power Virtual Ethernet Device Driver
6828M:	Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6829L:	netdev@vger.kernel.org
6830S:	Supported
6831F:	drivers/net/ethernet/ibm/ibmveth.*
6832
6833IBM Power Virtual FC Device Drivers
6834M:	Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6835L:	linux-scsi@vger.kernel.org
6836S:	Supported
6837F:	drivers/scsi/ibmvscsi/ibmvfc*
6838
6839IBM Power Virtual Management Channel Driver
6840M:	Bryant G. Ly <bryantly@linux.vnet.ibm.com>
6841M:	Steven Royer <seroyer@linux.vnet.ibm.com>
6842S:	Supported
6843F:	drivers/misc/ibmvmc.*
6844
6845IBM Power Virtual SCSI Device Drivers
6846M:	Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6847L:	linux-scsi@vger.kernel.org
6848S:	Supported
6849F:	drivers/scsi/ibmvscsi/ibmvscsi*
6850F:	include/scsi/viosrp.h
6851
6852IBM Power Virtual SCSI Device Target Driver
6853M:	Bryant G. Ly <bryantly@linux.vnet.ibm.com>
6854M:	Michael Cyr <mikecyr@linux.vnet.ibm.com>
6855L:	linux-scsi@vger.kernel.org
6856L:	target-devel@vger.kernel.org
6857S:	Supported
6858F:	drivers/scsi/ibmvscsi_tgt/
6859
6860IBM Power VMX Cryptographic instructions
6861M:	Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6862M:	Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6863L:	linux-crypto@vger.kernel.org
6864S:	Supported
6865F:	drivers/crypto/vmx/Makefile
6866F:	drivers/crypto/vmx/Kconfig
6867F:	drivers/crypto/vmx/vmx.c
6868F:	drivers/crypto/vmx/aes*
6869F:	drivers/crypto/vmx/ghash*
6870F:	drivers/crypto/vmx/ppc-xlate.pl
6871
6872IBM ServeRAID RAID DRIVER
6873S:	Orphan
6874F:	drivers/scsi/ips.*
6875
6876ICH LPC AND GPIO DRIVER
6877M:	Peter Tyser <ptyser@xes-inc.com>
6878S:	Maintained
6879F:	drivers/mfd/lpc_ich.c
6880F:	drivers/gpio/gpio-ich.c
6881
6882IDE SUBSYSTEM
6883M:	"David S. Miller" <davem@davemloft.net>
6884L:	linux-ide@vger.kernel.org
6885Q:	http://patchwork.ozlabs.org/project/linux-ide/list/
6886T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
6887S:	Maintained
6888F:	Documentation/ide/
6889F:	drivers/ide/
6890F:	include/linux/ide.h
6891
6892IDE/ATAPI DRIVERS
6893M:	Borislav Petkov <bp@alien8.de>
6894L:	linux-ide@vger.kernel.org
6895S:	Maintained
6896F:	Documentation/cdrom/ide-cd
6897F:	drivers/ide/ide-cd*
6898
6899IDEAPAD LAPTOP EXTRAS DRIVER
6900M:	Ike Panhc <ike.pan@canonical.com>
6901L:	platform-driver-x86@vger.kernel.org
6902W:	http://launchpad.net/ideapad-laptop
6903S:	Maintained
6904F:	drivers/platform/x86/ideapad-laptop.c
6905
6906IDEAPAD LAPTOP SLIDEBAR DRIVER
6907M:	Andrey Moiseev <o2g.org.ru@gmail.com>
6908L:	linux-input@vger.kernel.org
6909W:	https://github.com/o2genum/ideapad-slidebar
6910S:	Maintained
6911F:	drivers/input/misc/ideapad_slidebar.c
6912
6913IDT VersaClock 5 CLOCK DRIVER
6914M:	Marek Vasut <marek.vasut@gmail.com>
6915S:	Maintained
6916F:	drivers/clk/clk-versaclock5.c
6917
6918IEEE 802.15.4 SUBSYSTEM
6919M:	Alexander Aring <alex.aring@gmail.com>
6920M:	Stefan Schmidt <stefan@osg.samsung.com>
6921L:	linux-wpan@vger.kernel.org
6922W:	http://wpan.cakelab.org/
6923T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
6924T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
6925S:	Maintained
6926F:	net/ieee802154/
6927F:	net/mac802154/
6928F:	drivers/net/ieee802154/
6929F:	include/linux/nl802154.h
6930F:	include/linux/ieee802154.h
6931F:	include/net/nl802154.h
6932F:	include/net/mac802154.h
6933F:	include/net/af_ieee802154.h
6934F:	include/net/cfg802154.h
6935F:	include/net/ieee802154_netdev.h
6936F:	Documentation/networking/ieee802154.txt
6937
6938IFE PROTOCOL
6939M:	Yotam Gigi <yotam.gi@gmail.com>
6940M:	Jamal Hadi Salim <jhs@mojatatu.com>
6941F:	net/ife
6942F:	include/net/ife.h
6943F:	include/uapi/linux/ife.h
6944
6945IGORPLUG-USB IR RECEIVER
6946M:	Sean Young <sean@mess.org>
6947L:	linux-media@vger.kernel.org
6948S:	Maintained
6949F:	drivers/media/rc/igorplugusb.c
6950
6951IGUANAWORKS USB IR TRANSCEIVER
6952M:	Sean Young <sean@mess.org>
6953L:	linux-media@vger.kernel.org
6954S:	Maintained
6955F:	drivers/media/rc/iguanair.c
6956
6957IIO DIGITAL POTENTIOMETER DAC
6958M:	Peter Rosin <peda@axentia.se>
6959L:	linux-iio@vger.kernel.org
6960S:	Maintained
6961F:	Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
6962F:	Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
6963F:	drivers/iio/dac/dpot-dac.c
6964
6965IIO ENVELOPE DETECTOR
6966M:	Peter Rosin <peda@axentia.se>
6967L:	linux-iio@vger.kernel.org
6968S:	Maintained
6969F:	Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
6970F:	Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
6971F:	drivers/iio/adc/envelope-detector.c
6972
6973IIO MULTIPLEXER
6974M:	Peter Rosin <peda@axentia.se>
6975L:	linux-iio@vger.kernel.org
6976S:	Maintained
6977F:	Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
6978F:	drivers/iio/multiplexer/iio-mux.c
6979
6980IIO SUBSYSTEM AND DRIVERS
6981M:	Jonathan Cameron <jic23@kernel.org>
6982R:	Hartmut Knaack <knaack.h@gmx.de>
6983R:	Lars-Peter Clausen <lars@metafoo.de>
6984R:	Peter Meerwald-Stadler <pmeerw@pmeerw.net>
6985L:	linux-iio@vger.kernel.org
6986T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
6987S:	Maintained
6988F:	Documentation/ABI/testing/configfs-iio*
6989F:	Documentation/ABI/testing/sysfs-bus-iio*
6990F:	Documentation/devicetree/bindings/iio/
6991F:	drivers/iio/
6992F:	drivers/staging/iio/
6993F:	include/linux/iio/
6994F:	tools/iio/
6995
6996IIO UNIT CONVERTER
6997M:	Peter Rosin <peda@axentia.se>
6998L:	linux-iio@vger.kernel.org
6999S:	Maintained
7000F:	Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
7001F:	Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
7002F:	Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
7003F:	drivers/iio/afe/iio-rescale.c
7004
7005IKANOS/ADI EAGLE ADSL USB DRIVER
7006M:	Matthieu Castet <castet.matthieu@free.fr>
7007M:	Stanislaw Gruszka <stf_xl@wp.pl>
7008S:	Maintained
7009F:	drivers/usb/atm/ueagle-atm.c
7010
7011IMGTEC ASCII LCD DRIVER
7012M:	Paul Burton <paul.burton@mips.com>
7013S:	Maintained
7014F:	Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
7015F:	drivers/auxdisplay/img-ascii-lcd.c
7016
7017IMGTEC IR DECODER DRIVER
7018M:	James Hogan <jhogan@kernel.org>
7019S:	Maintained
7020F:	drivers/media/rc/img-ir/
7021
7022IMON SOUNDGRAPH USB IR RECEIVER
7023M:	Sean Young <sean@mess.org>
7024L:	linux-media@vger.kernel.org
7025S:	Maintained
7026F:	drivers/media/rc/imon_raw.c
7027F:	drivers/media/rc/imon.c
7028
7029IMS TWINTURBO FRAMEBUFFER DRIVER
7030L:	linux-fbdev@vger.kernel.org
7031S:	Orphan
7032F:	drivers/video/fbdev/imsttfb.c
7033
7034INA209 HARDWARE MONITOR DRIVER
7035M:	Guenter Roeck <linux@roeck-us.net>
7036L:	linux-hwmon@vger.kernel.org
7037S:	Maintained
7038F:	Documentation/hwmon/ina209
7039F:	Documentation/devicetree/bindings/i2c/ina209.txt
7040F:	drivers/hwmon/ina209.c
7041
7042INA2XX HARDWARE MONITOR DRIVER
7043M:	Guenter Roeck <linux@roeck-us.net>
7044L:	linux-hwmon@vger.kernel.org
7045S:	Maintained
7046F:	Documentation/hwmon/ina2xx
7047F:	drivers/hwmon/ina2xx.c
7048F:	include/linux/platform_data/ina2xx.h
7049
7050INDUSTRY PACK SUBSYSTEM (IPACK)
7051M:	Samuel Iglesias Gonsalvez <siglesias@igalia.com>
7052M:	Jens Taprogge <jens.taprogge@taprogge.org>
7053M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7054L:	industrypack-devel@lists.sourceforge.net
7055W:	http://industrypack.sourceforge.net
7056S:	Maintained
7057F:	drivers/ipack/
7058
7059INFINIBAND SUBSYSTEM
7060M:	Doug Ledford <dledford@redhat.com>
7061M:	Jason Gunthorpe <jgg@mellanox.com>
7062L:	linux-rdma@vger.kernel.org
7063W:	https://github.com/linux-rdma/rdma-core
7064Q:	http://patchwork.kernel.org/project/linux-rdma/list/
7065T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
7066S:	Supported
7067F:	Documentation/devicetree/bindings/infiniband/
7068F:	Documentation/infiniband/
7069F:	drivers/infiniband/
7070F:	include/uapi/linux/if_infiniband.h
7071F:	include/uapi/rdma/
7072F:	include/rdma/
7073
7074INGENIC JZ4780 DMA Driver
7075M:	Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
7076S:	Maintained
7077F:	drivers/dma/dma-jz4780.c
7078
7079INGENIC JZ4780 NAND DRIVER
7080M:	Harvey Hunt <harveyhuntnexus@gmail.com>
7081L:	linux-mtd@lists.infradead.org
7082S:	Maintained
7083F:	drivers/mtd/nand/raw/jz4780_*
7084
7085INOTIFY
7086M:	Jan Kara <jack@suse.cz>
7087R:	Amir Goldstein <amir73il@gmail.com>
7088L:	linux-fsdevel@vger.kernel.org
7089S:	Maintained
7090F:	Documentation/filesystems/inotify.txt
7091F:	fs/notify/inotify/
7092F:	include/linux/inotify.h
7093F:	include/uapi/linux/inotify.h
7094
7095INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
7096M:	Dmitry Torokhov <dmitry.torokhov@gmail.com>
7097L:	linux-input@vger.kernel.org
7098Q:	http://patchwork.kernel.org/project/linux-input/list/
7099T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
7100S:	Maintained
7101F:	drivers/input/
7102F:	include/linux/input.h
7103F:	include/uapi/linux/input.h
7104F:	include/uapi/linux/input-event-codes.h
7105F:	include/linux/input/
7106F:	Documentation/devicetree/bindings/input/
7107F:	Documentation/input/
7108
7109INPUT MULTITOUCH (MT) PROTOCOL
7110M:	Henrik Rydberg <rydberg@bitmath.org>
7111L:	linux-input@vger.kernel.org
7112S:	Odd fixes
7113F:	Documentation/input/multi-touch-protocol.rst
7114F:	drivers/input/input-mt.c
7115K:	\b(ABS|SYN)_MT_
7116
7117INSIDE SECURE CRYPTO DRIVER
7118M:	Antoine Tenart <antoine.tenart@bootlin.com>
7119F:	drivers/crypto/inside-secure/
7120S:	Maintained
7121L:	linux-crypto@vger.kernel.org
7122
7123INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
7124M:	Mimi Zohar <zohar@linux.vnet.ibm.com>
7125M:	Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
7126L:	linux-integrity@vger.kernel.org
7127T:	git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7128S:	Supported
7129F:	security/integrity/ima/
7130
7131INTEL 810/815 FRAMEBUFFER DRIVER
7132M:	Antonino Daplas <adaplas@gmail.com>
7133L:	linux-fbdev@vger.kernel.org
7134S:	Maintained
7135F:	drivers/video/fbdev/i810/
7136
7137INTEL ASoC DRIVERS
7138M:	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
7139M:	Liam Girdwood <liam.r.girdwood@linux.intel.com>
7140M:	Jie Yang <yang.jie@linux.intel.com>
7141L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
7142S:	Supported
7143F:	sound/soc/intel/
7144
7145INTEL C600 SERIES SAS CONTROLLER DRIVER
7146M:	Intel SCU Linux support <intel-linux-scu@intel.com>
7147M:	Artur Paszkiewicz <artur.paszkiewicz@intel.com>
7148L:	linux-scsi@vger.kernel.org
7149T:	git git://git.code.sf.net/p/intel-sas/isci
7150S:	Supported
7151F:	drivers/scsi/isci/
7152
7153INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
7154M:	Jani Nikula <jani.nikula@linux.intel.com>
7155M:	Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
7156M:	Rodrigo Vivi <rodrigo.vivi@intel.com>
7157L:	intel-gfx@lists.freedesktop.org
7158W:	https://01.org/linuxgraphics/
7159B:	https://01.org/linuxgraphics/documentation/how-report-bugs
7160C:	irc://chat.freenode.net/intel-gfx
7161Q:	http://patchwork.freedesktop.org/project/intel-gfx/
7162T:	git git://anongit.freedesktop.org/drm-intel
7163S:	Supported
7164F:	drivers/gpu/drm/i915/
7165F:	include/drm/i915*
7166F:	include/uapi/drm/i915_drm.h
7167F:	Documentation/gpu/i915.rst
7168
7169INTEL ETHERNET DRIVERS
7170M:	Jeff Kirsher <jeffrey.t.kirsher@intel.com>
7171L:	intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
7172W:	http://www.intel.com/support/feedback.htm
7173W:	http://e1000.sourceforge.net/
7174Q:	http://patchwork.ozlabs.org/project/intel-wired-lan/list/
7175T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
7176T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
7177S:	Supported
7178F:	Documentation/networking/e100.rst
7179F:	Documentation/networking/e1000.rst
7180F:	Documentation/networking/e1000e.txt
7181F:	Documentation/networking/igb.txt
7182F:	Documentation/networking/igbvf.txt
7183F:	Documentation/networking/ixgb.txt
7184F:	Documentation/networking/ixgbe.txt
7185F:	Documentation/networking/ixgbevf.txt
7186F:	Documentation/networking/i40e.txt
7187F:	Documentation/networking/i40evf.txt
7188F:	Documentation/networking/ice.txt
7189F:	drivers/net/ethernet/intel/
7190F:	drivers/net/ethernet/intel/*/
7191F:	include/linux/avf/virtchnl.h
7192
7193INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
7194M:	Maik Broemme <mbroemme@libmpq.org>
7195L:	linux-fbdev@vger.kernel.org
7196S:	Maintained
7197F:	Documentation/fb/intelfb.txt
7198F:	drivers/video/fbdev/intelfb/
7199
7200INTEL GVT-g DRIVERS (Intel GPU Virtualization)
7201M:	Zhenyu Wang <zhenyuw@linux.intel.com>
7202M:	Zhi Wang <zhi.a.wang@intel.com>
7203L:	intel-gvt-dev@lists.freedesktop.org
7204L:	intel-gfx@lists.freedesktop.org
7205W:	https://01.org/igvt-g
7206T:	git https://github.com/intel/gvt-linux.git
7207S:	Supported
7208F:	drivers/gpu/drm/i915/gvt/
7209
7210INTEL HID EVENT DRIVER
7211M:	Alex Hung <alex.hung@canonical.com>
7212L:	platform-driver-x86@vger.kernel.org
7213S:	Maintained
7214F:	drivers/platform/x86/intel-hid.c
7215
7216INTEL I/OAT DMA DRIVER
7217M:	Dave Jiang <dave.jiang@intel.com>
7218R:	Dan Williams <dan.j.williams@intel.com>
7219L:	dmaengine@vger.kernel.org
7220Q:	https://patchwork.kernel.org/project/linux-dmaengine/list/
7221S:	Supported
7222F:	drivers/dma/ioat*
7223
7224INTEL IDLE DRIVER
7225M:	Jacob Pan <jacob.jun.pan@linux.intel.com>
7226M:	Len Brown <lenb@kernel.org>
7227L:	linux-pm@vger.kernel.org
7228T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
7229B:	https://bugzilla.kernel.org
7230S:	Supported
7231F:	drivers/idle/intel_idle.c
7232
7233INTEL INTEGRATED SENSOR HUB DRIVER
7234M:	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7235M:	Jiri Kosina <jikos@kernel.org>
7236L:	linux-input@vger.kernel.org
7237S:	Maintained
7238F:	drivers/hid/intel-ish-hid/
7239
7240INTEL IOMMU (VT-d)
7241M:	David Woodhouse <dwmw2@infradead.org>
7242L:	iommu@lists.linux-foundation.org
7243T:	git git://git.infradead.org/iommu-2.6.git
7244S:	Supported
7245F:	drivers/iommu/intel-iommu.c
7246F:	include/linux/intel-iommu.h
7247
7248INTEL IOP-ADMA DMA DRIVER
7249R:	Dan Williams <dan.j.williams@intel.com>
7250S:	Odd fixes
7251F:	drivers/dma/iop-adma.c
7252
7253INTEL IPU3 CSI-2 CIO2 DRIVER
7254M:	Yong Zhi <yong.zhi@intel.com>
7255M:	Sakari Ailus <sakari.ailus@linux.intel.com>
7256L:	linux-media@vger.kernel.org
7257S:	Maintained
7258F:	drivers/media/pci/intel/ipu3/
7259F:	Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
7260
7261INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
7262M:	Krzysztof Halasa <khalasa@piap.pl>
7263S:	Maintained
7264F:	arch/arm/mach-ixp4xx/include/mach/qmgr.h
7265F:	arch/arm/mach-ixp4xx/include/mach/npe.h
7266F:	arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
7267F:	arch/arm/mach-ixp4xx/ixp4xx_npe.c
7268F:	drivers/net/ethernet/xscale/ixp4xx_eth.c
7269F:	drivers/net/wan/ixp4xx_hss.c
7270
7271INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
7272M:	Deepak Saxena <dsaxena@plexity.net>
7273S:	Maintained
7274F:	drivers/char/hw_random/ixp4xx-rng.c
7275
7276INTEL MANAGEMENT ENGINE (mei)
7277M:	Tomas Winkler <tomas.winkler@intel.com>
7278L:	linux-kernel@vger.kernel.org
7279S:	Supported
7280F:	include/uapi/linux/mei.h
7281F:	include/linux/mei_cl_bus.h
7282F:	drivers/misc/mei/*
7283F:	drivers/watchdog/mei_wdt.c
7284F:	Documentation/misc-devices/mei/*
7285F:	samples/mei/*
7286
7287INTEL MENLOW THERMAL DRIVER
7288M:	Sujith Thomas <sujith.thomas@intel.com>
7289L:	platform-driver-x86@vger.kernel.org
7290W:	https://01.org/linux-acpi
7291S:	Supported
7292F:	drivers/platform/x86/intel_menlow.c
7293
7294INTEL MERRIFIELD GPIO DRIVER
7295M:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7296L:	linux-gpio@vger.kernel.org
7297S:	Maintained
7298F:	drivers/gpio/gpio-merrifield.c
7299
7300INTEL MIC DRIVERS (mic)
7301M:	Sudeep Dutt <sudeep.dutt@intel.com>
7302M:	Ashutosh Dixit <ashutosh.dixit@intel.com>
7303S:	Supported
7304W:	https://github.com/sudeepdutt/mic
7305W:	http://software.intel.com/en-us/mic-developer
7306F:	include/linux/mic_bus.h
7307F:	include/linux/scif.h
7308F:	include/uapi/linux/mic_common.h
7309F:	include/uapi/linux/mic_ioctl.h
7310F:	include/uapi/linux/scif_ioctl.h
7311F:	drivers/misc/mic/
7312F:	drivers/dma/mic_x100_dma.c
7313F:	drivers/dma/mic_x100_dma.h
7314F:	Documentation/mic/
7315
7316INTEL PMC CORE DRIVER
7317M:	Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
7318M:	Vishwanath Somayaji <vishwanath.somayaji@intel.com>
7319L:	platform-driver-x86@vger.kernel.org
7320S:	Maintained
7321F:	arch/x86/include/asm/pmc_core.h
7322F:	drivers/platform/x86/intel_pmc_core*
7323
7324INTEL PMC/P-Unit IPC DRIVER
7325M:	Zha Qipeng<qipeng.zha@intel.com>
7326L:	platform-driver-x86@vger.kernel.org
7327S:	Maintained
7328F:	drivers/platform/x86/intel_pmc_ipc.c
7329F:	drivers/platform/x86/intel_punit_ipc.c
7330F:	arch/x86/include/asm/intel_pmc_ipc.h
7331F:	arch/x86/include/asm/intel_punit_ipc.h
7332
7333INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
7334M:	Stanislav Yakovlev <stas.yakovlev@gmail.com>
7335L:	linux-wireless@vger.kernel.org
7336S:	Maintained
7337F:	Documentation/networking/README.ipw2100
7338F:	Documentation/networking/README.ipw2200
7339F:	drivers/net/wireless/intel/ipw2x00/
7340
7341INTEL PSTATE DRIVER
7342M:	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7343M:	Len Brown <lenb@kernel.org>
7344L:	linux-pm@vger.kernel.org
7345S:	Supported
7346F:	drivers/cpufreq/intel_pstate.c
7347
7348INTEL RDMA RNIC DRIVER
7349M:	Faisal Latif <faisal.latif@intel.com>
7350M:	Shiraz Saleem <shiraz.saleem@intel.com>
7351L:	linux-rdma@vger.kernel.org
7352S:	Supported
7353F:	drivers/infiniband/hw/i40iw/
7354F:	include/uapi/rdma/i40iw-abi.h
7355
7356INTEL SHA MULTIBUFFER DRIVER
7357M:	Megha Dey <megha.dey@linux.intel.com>
7358R:	Tim Chen <tim.c.chen@linux.intel.com>
7359L:	linux-crypto@vger.kernel.org
7360S:	Supported
7361F:	arch/x86/crypto/sha*-mb
7362F:	crypto/mcryptd.c
7363
7364INTEL TELEMETRY DRIVER
7365M:	Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
7366L:	platform-driver-x86@vger.kernel.org
7367S:	Maintained
7368F:	arch/x86/include/asm/intel_telemetry.h
7369F:	drivers/platform/x86/intel_telemetry*
7370
7371INTEL VIRTUAL BUTTON DRIVER
7372M:	AceLan Kao <acelan.kao@canonical.com>
7373L:	platform-driver-x86@vger.kernel.org
7374S:	Maintained
7375F:	drivers/platform/x86/intel-vbtn.c
7376
7377INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
7378M:	Stanislaw Gruszka <sgruszka@redhat.com>
7379L:	linux-wireless@vger.kernel.org
7380S:	Supported
7381F:	drivers/net/wireless/intel/iwlegacy/
7382
7383INTEL WIRELESS WIFI LINK (iwlwifi)
7384M:	Johannes Berg <johannes.berg@intel.com>
7385M:	Emmanuel Grumbach <emmanuel.grumbach@intel.com>
7386M:	Luca Coelho <luciano.coelho@intel.com>
7387M:	Intel Linux Wireless <linuxwifi@intel.com>
7388L:	linux-wireless@vger.kernel.org
7389W:	http://intellinuxwireless.org
7390T:	git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
7391S:	Supported
7392F:	drivers/net/wireless/intel/iwlwifi/
7393
7394INTEL WIRELESS WIMAX CONNECTION 2400
7395M:	Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
7396M:	linux-wimax@intel.com
7397L:	wimax@linuxwimax.org (subscribers-only)
7398S:	Supported
7399W:	http://linuxwimax.org
7400F:	Documentation/wimax/README.i2400m
7401F:	drivers/net/wimax/i2400m/
7402F:	include/uapi/linux/wimax/i2400m.h
7403
7404INTEL WMI THUNDERBOLT FORCE POWER DRIVER
7405M:	Mario Limonciello <mario.limonciello@dell.com>
7406S:	Maintained
7407F:	drivers/platform/x86/intel-wmi-thunderbolt.c
7408
7409INTEL(R) TRACE HUB
7410M:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
7411S:	Supported
7412F:	Documentation/trace/intel_th.rst
7413F:	drivers/hwtracing/intel_th/
7414
7415INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
7416M:	Ning Sun <ning.sun@intel.com>
7417L:	tboot-devel@lists.sourceforge.net
7418W:	http://tboot.sourceforge.net
7419T:	hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
7420S:	Supported
7421F:	Documentation/intel_txt.txt
7422F:	include/linux/tboot.h
7423F:	arch/x86/kernel/tboot.c
7424
7425INTEL-MID GPIO DRIVER
7426M:	David Cohen <david.a.cohen@linux.intel.com>
7427L:	linux-gpio@vger.kernel.org
7428S:	Maintained
7429F:	drivers/gpio/gpio-intel-mid.c
7430
7431INVENSENSE MPU-3050 GYROSCOPE DRIVER
7432M:	Linus Walleij <linus.walleij@linaro.org>
7433L:	linux-iio@vger.kernel.org
7434S:	Maintained
7435F:	drivers/iio/gyro/mpu3050*
7436F:	Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
7437
7438IOC3 ETHERNET DRIVER
7439M:	Ralf Baechle <ralf@linux-mips.org>
7440L:	linux-mips@linux-mips.org
7441S:	Maintained
7442F:	drivers/net/ethernet/sgi/ioc3-eth.c
7443
7444IOC3 SERIAL DRIVER
7445M:	Pat Gefre <pfg@sgi.com>
7446L:	linux-serial@vger.kernel.org
7447S:	Maintained
7448F:	drivers/tty/serial/ioc3_serial.c
7449
7450IOMMU DRIVERS
7451M:	Joerg Roedel <joro@8bytes.org>
7452L:	iommu@lists.linux-foundation.org
7453T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
7454S:	Maintained
7455F:	Documentation/devicetree/bindings/iommu/
7456F:	drivers/iommu/
7457F:	include/linux/iommu.h
7458F:	include/linux/of_iommu.h
7459F:	include/linux/iova.h
7460
7461IP MASQUERADING
7462M:	Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
7463S:	Maintained
7464F:	net/ipv4/netfilter/ipt_MASQUERADE.c
7465
7466IPMI SUBSYSTEM
7467M:	Corey Minyard <minyard@acm.org>
7468L:	openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
7469W:	http://openipmi.sourceforge.net/
7470S:	Supported
7471F:	Documentation/IPMI.txt
7472F:	drivers/char/ipmi/
7473F:	include/linux/ipmi*
7474F:	include/uapi/linux/ipmi*
7475
7476IPS SCSI RAID DRIVER
7477M:	Adaptec OEM Raid Solutions <aacraid@microsemi.com>
7478L:	linux-scsi@vger.kernel.org
7479W:	http://www.adaptec.com/
7480S:	Maintained
7481F:	drivers/scsi/ips*
7482
7483IPVS
7484M:	Wensong Zhang <wensong@linux-vs.org>
7485M:	Simon Horman <horms@verge.net.au>
7486M:	Julian Anastasov <ja@ssi.bg>
7487L:	netdev@vger.kernel.org
7488L:	lvs-devel@vger.kernel.org
7489S:	Maintained
7490T:	git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
7491T:	git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
7492F:	Documentation/networking/ipvs-sysctl.txt
7493F:	include/net/ip_vs.h
7494F:	include/uapi/linux/ip_vs.h
7495F:	net/netfilter/ipvs/
7496
7497IPWIRELESS DRIVER
7498M:	Jiri Kosina <jikos@kernel.org>
7499M:	David Sterba <dsterba@suse.com>
7500S:	Odd Fixes
7501F:	drivers/tty/ipwireless/
7502
7503IPX NETWORK LAYER
7504L:	netdev@vger.kernel.org
7505S:	Obsolete
7506F:	include/uapi/linux/ipx.h
7507F:	drivers/staging/ipx/
7508
7509IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
7510M:	Marc Zyngier <marc.zyngier@arm.com>
7511S:	Maintained
7512T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7513F:	Documentation/IRQ-domain.txt
7514F:	include/linux/irqdomain.h
7515F:	kernel/irq/irqdomain.c
7516F:	kernel/irq/msi.c
7517
7518IRQ SUBSYSTEM
7519M:	Thomas Gleixner <tglx@linutronix.de>
7520L:	linux-kernel@vger.kernel.org
7521S:	Maintained
7522T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7523F:	kernel/irq/
7524
7525IRQCHIP DRIVERS
7526M:	Thomas Gleixner <tglx@linutronix.de>
7527M:	Jason Cooper <jason@lakedaemon.net>
7528M:	Marc Zyngier <marc.zyngier@arm.com>
7529L:	linux-kernel@vger.kernel.org
7530S:	Maintained
7531T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7532F:	Documentation/devicetree/bindings/interrupt-controller/
7533F:	drivers/irqchip/
7534
7535ISA
7536M:	William Breathitt Gray <vilhelm.gray@gmail.com>
7537S:	Maintained
7538F:	Documentation/isa.txt
7539F:	drivers/base/isa.c
7540F:	include/linux/isa.h
7541
7542ISA RADIO MODULE
7543M:	Hans Verkuil <hverkuil@xs4all.nl>
7544L:	linux-media@vger.kernel.org
7545T:	git git://linuxtv.org/media_tree.git
7546W:	https://linuxtv.org
7547S:	Maintained
7548F:	drivers/media/radio/radio-isa*
7549
7550ISAPNP
7551M:	Jaroslav Kysela <perex@perex.cz>
7552S:	Maintained
7553F:	Documentation/isapnp.txt
7554F:	drivers/pnp/isapnp/
7555F:	include/linux/isapnp.h
7556
7557ISCSI
7558M:	Lee Duncan <lduncan@suse.com>
7559M:	Chris Leech <cleech@redhat.com>
7560L:	open-iscsi@googlegroups.com
7561W:	www.open-iscsi.com
7562S:	Maintained
7563F:	drivers/scsi/*iscsi*
7564F:	include/scsi/*iscsi*
7565
7566iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
7567M:	Peter Jones <pjones@redhat.com>
7568M:	Konrad Rzeszutek Wilk <konrad@kernel.org>
7569S:	Maintained
7570F:	drivers/firmware/iscsi_ibft*
7571
7572ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
7573M:	Or Gerlitz <ogerlitz@mellanox.com>
7574M:	Sagi Grimberg <sagi@grimberg.me>
7575M:	Roi Dayan <roid@mellanox.com>
7576L:	linux-rdma@vger.kernel.org
7577S:	Supported
7578W:	http://www.openfabrics.org
7579W:	www.open-iscsi.org
7580Q:	http://patchwork.kernel.org/project/linux-rdma/list/
7581F:	drivers/infiniband/ulp/iser/
7582
7583ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
7584M:	Sagi Grimberg <sagi@grimberg.me>
7585T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
7586L:	linux-rdma@vger.kernel.org
7587L:	target-devel@vger.kernel.org
7588S:	Supported
7589W:	http://www.linux-iscsi.org
7590F:	drivers/infiniband/ulp/isert
7591
7592ISDN SUBSYSTEM
7593M:	Karsten Keil <isdn@linux-pingi.de>
7594L:	isdn4linux@listserv.isdn4linux.de (subscribers-only)
7595L:	netdev@vger.kernel.org
7596W:	http://www.isdn4linux.de
7597T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
7598S:	Maintained
7599F:	Documentation/isdn/
7600F:	drivers/isdn/
7601F:	include/linux/isdn.h
7602F:	include/linux/isdn/
7603F:	include/uapi/linux/isdn.h
7604F:	include/uapi/linux/isdn/
7605
7606ISDN SUBSYSTEM (Eicon active card driver)
7607M:	Armin Schindler <mac@melware.de>
7608L:	isdn4linux@listserv.isdn4linux.de (subscribers-only)
7609W:	http://www.melware.de
7610S:	Maintained
7611F:	drivers/isdn/hardware/eicon/
7612
7613IT87 HARDWARE MONITORING DRIVER
7614M:	Jean Delvare <jdelvare@suse.com>
7615L:	linux-hwmon@vger.kernel.org
7616S:	Maintained
7617F:	Documentation/hwmon/it87
7618F:	drivers/hwmon/it87.c
7619
7620IT913X MEDIA DRIVER
7621M:	Antti Palosaari <crope@iki.fi>
7622L:	linux-media@vger.kernel.org
7623W:	https://linuxtv.org
7624W:	http://palosaari.fi/linux/
7625Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7626T:	git git://linuxtv.org/anttip/media_tree.git
7627S:	Maintained
7628F:	drivers/media/tuners/it913x*
7629
7630IVTV VIDEO4LINUX DRIVER
7631M:	Andy Walls <awalls@md.metrocast.net>
7632L:	ivtv-devel@ivtvdriver.org (subscribers-only)
7633L:	linux-media@vger.kernel.org
7634T:	git git://linuxtv.org/media_tree.git
7635W:	http://www.ivtvdriver.org
7636S:	Maintained
7637F:	Documentation/media/v4l-drivers/ivtv*
7638F:	drivers/media/pci/ivtv/
7639F:	include/uapi/linux/ivtv*
7640
7641IX2505V MEDIA DRIVER
7642M:	Malcolm Priestley <tvboxspy@gmail.com>
7643L:	linux-media@vger.kernel.org
7644W:	https://linuxtv.org
7645Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7646S:	Maintained
7647F:	drivers/media/dvb-frontends/ix2505v*
7648
7649JAILHOUSE HYPERVISOR INTERFACE
7650M:	Jan Kiszka <jan.kiszka@siemens.com>
7651L:	jailhouse-dev@googlegroups.com
7652S:	Maintained
7653F:	arch/x86/kernel/jailhouse.c
7654F:	arch/x86/include/asm/jailhouse_para.h
7655
7656JC42.4 TEMPERATURE SENSOR DRIVER
7657M:	Guenter Roeck <linux@roeck-us.net>
7658L:	linux-hwmon@vger.kernel.org
7659S:	Maintained
7660F:	drivers/hwmon/jc42.c
7661F:	Documentation/hwmon/jc42
7662
7663JFS FILESYSTEM
7664M:	Dave Kleikamp <shaggy@kernel.org>
7665L:	jfs-discussion@lists.sourceforge.net
7666W:	http://jfs.sourceforge.net/
7667T:	git git://github.com/kleikamp/linux-shaggy.git
7668S:	Maintained
7669F:	Documentation/filesystems/jfs.txt
7670F:	fs/jfs/
7671
7672JME NETWORK DRIVER
7673M:	Guo-Fu Tseng <cooldavid@cooldavid.org>
7674L:	netdev@vger.kernel.org
7675S:	Maintained
7676F:	drivers/net/ethernet/jme.*
7677
7678JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
7679M:	David Woodhouse <dwmw2@infradead.org>
7680L:	linux-mtd@lists.infradead.org
7681W:	http://www.linux-mtd.infradead.org/doc/jffs2.html
7682S:	Maintained
7683F:	fs/jffs2/
7684F:	include/uapi/linux/jffs2.h
7685
7686JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
7687M:	"Theodore Ts'o" <tytso@mit.edu>
7688M:	Jan Kara <jack@suse.com>
7689L:	linux-ext4@vger.kernel.org
7690S:	Maintained
7691F:	fs/jbd2/
7692F:	include/linux/jbd2.h
7693
7694JPU V4L2 MEM2MEM DRIVER FOR RENESAS
7695M:	Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
7696L:	linux-media@vger.kernel.org
7697S:	Maintained
7698F:	drivers/media/platform/rcar_jpu.c
7699
7700JSM Neo PCI based serial card
7701M:	Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
7702L:	linux-serial@vger.kernel.org
7703S:	Maintained
7704F:	drivers/tty/serial/jsm/
7705
7706K10TEMP HARDWARE MONITORING DRIVER
7707M:	Clemens Ladisch <clemens@ladisch.de>
7708L:	linux-hwmon@vger.kernel.org
7709S:	Maintained
7710F:	Documentation/hwmon/k10temp
7711F:	drivers/hwmon/k10temp.c
7712
7713K8TEMP HARDWARE MONITORING DRIVER
7714M:	Rudolf Marek <r.marek@assembler.cz>
7715L:	linux-hwmon@vger.kernel.org
7716S:	Maintained
7717F:	Documentation/hwmon/k8temp
7718F:	drivers/hwmon/k8temp.c
7719
7720KASAN
7721M:	Andrey Ryabinin <aryabinin@virtuozzo.com>
7722R:	Alexander Potapenko <glider@google.com>
7723R:	Dmitry Vyukov <dvyukov@google.com>
7724L:	kasan-dev@googlegroups.com
7725S:	Maintained
7726F:	arch/*/include/asm/kasan.h
7727F:	arch/*/mm/kasan_init*
7728F:	Documentation/dev-tools/kasan.rst
7729F:	include/linux/kasan*.h
7730F:	lib/test_kasan.c
7731F:	mm/kasan/
7732F:	scripts/Makefile.kasan
7733
7734KCONFIG
7735M:	Masahiro Yamada <yamada.masahiro@socionext.com>
7736T:	git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
7737L:	linux-kbuild@vger.kernel.org
7738S:	Maintained
7739F:	Documentation/kbuild/kconfig*
7740F:	scripts/kconfig/
7741F:	scripts/Kconfig.include
7742
7743KDUMP
7744M:	Dave Young <dyoung@redhat.com>
7745M:	Baoquan He <bhe@redhat.com>
7746R:	Vivek Goyal <vgoyal@redhat.com>
7747L:	kexec@lists.infradead.org
7748W:	http://lse.sourceforge.net/kdump/
7749S:	Maintained
7750F:	Documentation/kdump/
7751
7752KEENE FM RADIO TRANSMITTER DRIVER
7753M:	Hans Verkuil <hverkuil@xs4all.nl>
7754L:	linux-media@vger.kernel.org
7755T:	git git://linuxtv.org/media_tree.git
7756W:	https://linuxtv.org
7757S:	Maintained
7758F:	drivers/media/radio/radio-keene*
7759
7760KERNEL AUTOMOUNTER
7761M:	Ian Kent <raven@themaw.net>
7762L:	autofs@vger.kernel.org
7763S:	Maintained
7764F:	fs/autofs/
7765
7766KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
7767M:	Masahiro Yamada <yamada.masahiro@socionext.com>
7768M:	Michal Marek <michal.lkml@markovi.net>
7769T:	git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
7770L:	linux-kbuild@vger.kernel.org
7771S:	Maintained
7772F:	Documentation/kbuild/
7773F:	Makefile
7774F:	scripts/Kbuild*
7775F:	scripts/Makefile*
7776F:	scripts/basic/
7777F:	scripts/mk*
7778F:	scripts/mod/
7779F:	scripts/package/
7780
7781KERNEL JANITORS
7782L:	kernel-janitors@vger.kernel.org
7783W:	http://kernelnewbies.org/KernelJanitors
7784S:	Odd Fixes
7785
7786KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
7787M:	"J. Bruce Fields" <bfields@fieldses.org>
7788M:	Jeff Layton <jlayton@kernel.org>
7789L:	linux-nfs@vger.kernel.org
7790W:	http://nfs.sourceforge.net/
7791T:	git git://linux-nfs.org/~bfields/linux.git
7792S:	Supported
7793F:	fs/nfsd/
7794F:	include/uapi/linux/nfsd/
7795F:	fs/lockd/
7796F:	fs/nfs_common/
7797F:	net/sunrpc/
7798F:	include/linux/lockd/
7799F:	include/linux/sunrpc/
7800F:	include/uapi/linux/sunrpc/
7801
7802KERNEL SELFTEST FRAMEWORK
7803M:	Shuah Khan <shuah@kernel.org>
7804L:	linux-kselftest@vger.kernel.org
7805T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
7806Q:	https://patchwork.kernel.org/project/linux-kselftest/list/
7807S:	Maintained
7808F:	tools/testing/selftests/
7809F:	Documentation/dev-tools/kselftest*
7810
7811KERNEL USERMODE HELPER
7812M:	"Luis R. Rodriguez" <mcgrof@kernel.org>
7813L:	linux-kernel@vger.kernel.org
7814S:	Maintained
7815F:	kernel/umh.c
7816F:	include/linux/umh.h
7817
7818KERNEL VIRTUAL MACHINE (KVM)
7819M:	Paolo Bonzini <pbonzini@redhat.com>
7820M:	Radim Krčmář <rkrcmar@redhat.com>
7821L:	kvm@vger.kernel.org
7822W:	http://www.linux-kvm.org
7823T:	git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7824S:	Supported
7825F:	Documentation/virtual/kvm/
7826F:	include/trace/events/kvm.h
7827F:	include/uapi/asm-generic/kvm*
7828F:	include/uapi/linux/kvm*
7829F:	include/asm-generic/kvm*
7830F:	include/linux/kvm*
7831F:	include/kvm/iodev.h
7832F:	virt/kvm/*
7833F:	tools/kvm/
7834
7835KERNEL VIRTUAL MACHINE FOR AMD-V (KVM/amd)
7836M:	Joerg Roedel <joro@8bytes.org>
7837L:	kvm@vger.kernel.org
7838W:	http://www.linux-kvm.org/
7839S:	Maintained
7840F:	arch/x86/include/asm/svm.h
7841F:	arch/x86/kvm/svm.c
7842
7843KERNEL VIRTUAL MACHINE FOR ARM (KVM/arm)
7844M:	Christoffer Dall <christoffer.dall@arm.com>
7845M:	Marc Zyngier <marc.zyngier@arm.com>
7846L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7847L:	kvmarm@lists.cs.columbia.edu
7848W:	http://systems.cs.columbia.edu/projects/kvm-arm
7849T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
7850S:	Supported
7851F:	arch/arm/include/uapi/asm/kvm*
7852F:	arch/arm/include/asm/kvm*
7853F:	arch/arm/kvm/
7854F:	virt/kvm/arm/
7855F:	include/kvm/arm_*
7856
7857KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
7858M:	Christoffer Dall <christoffer.dall@arm.com>
7859M:	Marc Zyngier <marc.zyngier@arm.com>
7860L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7861L:	kvmarm@lists.cs.columbia.edu
7862S:	Maintained
7863F:	arch/arm64/include/uapi/asm/kvm*
7864F:	arch/arm64/include/asm/kvm*
7865F:	arch/arm64/kvm/
7866
7867KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
7868M:	James Hogan <jhogan@kernel.org>
7869L:	linux-mips@linux-mips.org
7870S:	Supported
7871F:	arch/mips/include/uapi/asm/kvm*
7872F:	arch/mips/include/asm/kvm*
7873F:	arch/mips/kvm/
7874
7875KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
7876M:	Paul Mackerras <paulus@ozlabs.org>
7877L:	kvm-ppc@vger.kernel.org
7878W:	http://www.linux-kvm.org/
7879T:	git git://github.com/agraf/linux-2.6.git
7880S:	Supported
7881F:	arch/powerpc/include/uapi/asm/kvm*
7882F:	arch/powerpc/include/asm/kvm*
7883F:	arch/powerpc/kvm/
7884F:	arch/powerpc/kernel/kvm*
7885
7886KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
7887M:	Christian Borntraeger <borntraeger@de.ibm.com>
7888M:	Janosch Frank <frankja@linux.ibm.com>
7889R:	David Hildenbrand <david@redhat.com>
7890R:	Cornelia Huck <cohuck@redhat.com>
7891L:	linux-s390@vger.kernel.org
7892W:	http://www.ibm.com/developerworks/linux/linux390/
7893T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
7894S:	Supported
7895F:	arch/s390/include/uapi/asm/kvm*
7896F:	arch/s390/include/asm/gmap.h
7897F:	arch/s390/include/asm/kvm*
7898F:	arch/s390/kvm/
7899F:	arch/s390/mm/gmap.c
7900
7901KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
7902M:	Paolo Bonzini <pbonzini@redhat.com>
7903M:	Radim Krčmář <rkrcmar@redhat.com>
7904L:	kvm@vger.kernel.org
7905W:	http://www.linux-kvm.org
7906T:	git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7907S:	Supported
7908F:	arch/x86/kvm/
7909F:	arch/x86/include/uapi/asm/kvm*
7910F:	arch/x86/include/asm/kvm*
7911F:	arch/x86/include/asm/pvclock-abi.h
7912F:	arch/x86/kernel/kvm.c
7913F:	arch/x86/kernel/kvmclock.c
7914
7915KERNFS
7916M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7917M:	Tejun Heo <tj@kernel.org>
7918T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7919S:	Supported
7920F:	include/linux/kernfs.h
7921F:	fs/kernfs/
7922
7923KEXEC
7924M:	Eric Biederman <ebiederm@xmission.com>
7925W:	http://kernel.org/pub/linux/utils/kernel/kexec/
7926L:	kexec@lists.infradead.org
7927S:	Maintained
7928F:	include/linux/kexec.h
7929F:	include/uapi/linux/kexec.h
7930F:	kernel/kexec*
7931
7932KEYS-ENCRYPTED
7933M:	Mimi Zohar <zohar@linux.vnet.ibm.com>
7934L:	linux-integrity@vger.kernel.org
7935L:	keyrings@vger.kernel.org
7936S:	Supported
7937F:	Documentation/security/keys/trusted-encrypted.rst
7938F:	include/keys/encrypted-type.h
7939F:	security/keys/encrypted-keys/
7940
7941KEYS-TRUSTED
7942M:	James Bottomley <jejb@linux.vnet.ibm.com>
7943M:	Mimi Zohar <zohar@linux.vnet.ibm.com>
7944L:	linux-integrity@vger.kernel.org
7945L:	keyrings@vger.kernel.org
7946S:	Supported
7947F:	Documentation/security/keys/trusted-encrypted.rst
7948F:	include/keys/trusted-type.h
7949F:	security/keys/trusted.c
7950F:	security/keys/trusted.h
7951
7952KEYS/KEYRINGS:
7953M:	David Howells <dhowells@redhat.com>
7954L:	keyrings@vger.kernel.org
7955S:	Maintained
7956F:	Documentation/security/keys/core.rst
7957F:	include/linux/key.h
7958F:	include/linux/key-type.h
7959F:	include/linux/keyctl.h
7960F:	include/uapi/linux/keyctl.h
7961F:	include/keys/
7962F:	security/keys/
7963
7964KGDB / KDB /debug_core
7965M:	Jason Wessel <jason.wessel@windriver.com>
7966M:	Daniel Thompson <daniel.thompson@linaro.org>
7967W:	http://kgdb.wiki.kernel.org/
7968L:	kgdb-bugreport@lists.sourceforge.net
7969T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
7970S:	Maintained
7971F:	Documentation/dev-tools/kgdb.rst
7972F:	drivers/misc/kgdbts.c
7973F:	drivers/tty/serial/kgdboc.c
7974F:	include/linux/kdb.h
7975F:	include/linux/kgdb.h
7976F:	kernel/debug/
7977
7978KMEMLEAK
7979M:	Catalin Marinas <catalin.marinas@arm.com>
7980S:	Maintained
7981F:	Documentation/dev-tools/kmemleak.rst
7982F:	include/linux/kmemleak.h
7983F:	mm/kmemleak.c
7984F:	mm/kmemleak-test.c
7985
7986KMOD KERNEL MODULE LOADER - USERMODE HELPER
7987M:	"Luis R. Rodriguez" <mcgrof@kernel.org>
7988L:	linux-kernel@vger.kernel.org
7989S:	Maintained
7990F:	kernel/kmod.c
7991F:	include/linux/kmod.h
7992F:	lib/test_kmod.c
7993F:	tools/testing/selftests/kmod/
7994
7995KPROBES
7996M:	Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
7997M:	Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
7998M:	"David S. Miller" <davem@davemloft.net>
7999M:	Masami Hiramatsu <mhiramat@kernel.org>
8000S:	Maintained
8001F:	Documentation/kprobes.txt
8002F:	include/linux/kprobes.h
8003F:	include/asm-generic/kprobes.h
8004F:	kernel/kprobes.c
8005
8006KS0108 LCD CONTROLLER DRIVER
8007M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
8008S:	Maintained
8009F:	Documentation/auxdisplay/ks0108
8010F:	drivers/auxdisplay/ks0108.c
8011F:	include/linux/ks0108.h
8012
8013L3MDEV
8014M:	David Ahern <dsa@cumulusnetworks.com>
8015L:	netdev@vger.kernel.org
8016S:	Maintained
8017F:	net/l3mdev
8018F:	include/net/l3mdev.h
8019
8020LANTIQ MIPS ARCHITECTURE
8021M:	John Crispin <john@phrozen.org>
8022L:	linux-mips@linux-mips.org
8023S:	Maintained
8024F:	arch/mips/lantiq
8025F:	drivers/soc/lantiq
8026
8027LAPB module
8028L:	linux-x25@vger.kernel.org
8029S:	Orphan
8030F:	Documentation/networking/lapb-module.txt
8031F:	include/*/lapb.h
8032F:	net/lapb/
8033
8034LASI 53c700 driver for PARISC
8035M:	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
8036L:	linux-scsi@vger.kernel.org
8037S:	Maintained
8038F:	Documentation/scsi/53c700.txt
8039F:	drivers/scsi/53c700*
8040
8041LEAKING_ADDRESSES
8042M:	Tobin C. Harding <me@tobin.cc>
8043M:	Tycho Andersen <tycho@tycho.ws>
8044L:	kernel-hardening@lists.openwall.com
8045S:	Maintained
8046T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
8047F:	scripts/leaking_addresses.pl
8048
8049LED SUBSYSTEM
8050M:	Jacek Anaszewski <jacek.anaszewski@gmail.com>
8051M:	Pavel Machek <pavel@ucw.cz>
8052L:	linux-leds@vger.kernel.org
8053T:	git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
8054S:	Maintained
8055F:	Documentation/devicetree/bindings/leds/
8056F:	drivers/leds/
8057F:	include/linux/leds.h
8058
8059LEGACY EEPROM DRIVER
8060M:	Jean Delvare <jdelvare@suse.com>
8061S:	Maintained
8062F:	Documentation/misc-devices/eeprom
8063F:	drivers/misc/eeprom/eeprom.c
8064
8065LEGO MINDSTORMS EV3
8066R:	David Lechner <david@lechnology.com>
8067S:	Maintained
8068F:	arch/arm/boot/dts/da850-lego-ev3.dts
8069F:	Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
8070F:	drivers/power/supply/lego_ev3_battery.c
8071
8072LEGO USB Tower driver
8073M:	Juergen Stuber <starblue@users.sourceforge.net>
8074L:	legousb-devel@lists.sourceforge.net
8075W:	http://legousb.sourceforge.net/
8076S:	Maintained
8077F:	drivers/usb/misc/legousbtower.c
8078
8079LG2160 MEDIA DRIVER
8080M:	Michael Krufky <mkrufky@linuxtv.org>
8081L:	linux-media@vger.kernel.org
8082W:	https://linuxtv.org
8083W:	http://github.com/mkrufky
8084Q:	http://patchwork.linuxtv.org/project/linux-media/list/
8085T:	git git://linuxtv.org/mkrufky/tuners.git
8086S:	Maintained
8087F:	drivers/media/dvb-frontends/lg2160.*
8088
8089LGDT3305 MEDIA DRIVER
8090M:	Michael Krufky <mkrufky@linuxtv.org>
8091L:	linux-media@vger.kernel.org
8092W:	https://linuxtv.org
8093W:	http://github.com/mkrufky
8094Q:	http://patchwork.linuxtv.org/project/linux-media/list/
8095T:	git git://linuxtv.org/mkrufky/tuners.git
8096S:	Maintained
8097F:	drivers/media/dvb-frontends/lgdt3305.*
8098
8099LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
8100M:	Viresh Kumar <vireshk@kernel.org>
8101L:	linux-ide@vger.kernel.org
8102T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
8103S:	Maintained
8104F:	include/linux/pata_arasan_cf_data.h
8105F:	drivers/ata/pata_arasan_cf.c
8106
8107LIBATA PATA DRIVERS
8108M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8109M:	Tejun Heo <tj@kernel.org>
8110L:	linux-ide@vger.kernel.org
8111T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
8112S:	Maintained
8113F:	drivers/ata/pata_*.c
8114F:	drivers/ata/ata_generic.c
8115
8116LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
8117M:	Linus Walleij <linus.walleij@linaro.org>
8118L:	linux-ide@vger.kernel.org
8119T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
8120S:	Maintained
8121F:	drivers/ata/pata_ftide010.c
8122F:	drivers/ata/sata_gemini.c
8123F:	drivers/ata/sata_gemini.h
8124
8125LIBATA SATA AHCI PLATFORM devices support
8126M:	Hans de Goede <hdegoede@redhat.com>
8127M:	Tejun Heo <tj@kernel.org>
8128L:	linux-ide@vger.kernel.org
8129T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
8130S:	Maintained
8131F:	drivers/ata/ahci_platform.c
8132F:	drivers/ata/libahci_platform.c
8133F:	include/linux/ahci_platform.h
8134
8135LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
8136M:	Mikael Pettersson <mikpelinux@gmail.com>
8137L:	linux-ide@vger.kernel.org
8138T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
8139S:	Maintained
8140F:	drivers/ata/sata_promise.*
8141
8142LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
8143M:	Tejun Heo <tj@kernel.org>
8144L:	linux-ide@vger.kernel.org
8145T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
8146S:	Maintained
8147F:	drivers/ata/
8148F:	include/linux/ata.h
8149F:	include/linux/libata.h
8150F:	Documentation/devicetree/bindings/ata/
8151
8152LIBLOCKDEP
8153M:	Sasha Levin <alexander.levin@verizon.com>
8154S:	Maintained
8155F:	tools/lib/lockdep/
8156
8157LIBNVDIMM BLK: MMIO-APERTURE DRIVER
8158M:	Ross Zwisler <ross.zwisler@linux.intel.com>
8159M:	Dan Williams <dan.j.williams@intel.com>
8160M:	Vishal Verma <vishal.l.verma@intel.com>
8161M:	Dave Jiang <dave.jiang@intel.com>
8162L:	linux-nvdimm@lists.01.org
8163Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
8164S:	Supported
8165F:	drivers/nvdimm/blk.c
8166F:	drivers/nvdimm/region_devs.c
8167
8168LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
8169M:	Vishal Verma <vishal.l.verma@intel.com>
8170M:	Dan Williams <dan.j.williams@intel.com>
8171M:	Ross Zwisler <ross.zwisler@linux.intel.com>
8172M:	Dave Jiang <dave.jiang@intel.com>
8173L:	linux-nvdimm@lists.01.org
8174Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
8175S:	Supported
8176F:	drivers/nvdimm/btt*
8177
8178LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
8179M:	Ross Zwisler <ross.zwisler@linux.intel.com>
8180M:	Dan Williams <dan.j.williams@intel.com>
8181M:	Vishal Verma <vishal.l.verma@intel.com>
8182M:	Dave Jiang <dave.jiang@intel.com>
8183L:	linux-nvdimm@lists.01.org
8184Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
8185S:	Supported
8186F:	drivers/nvdimm/pmem*
8187
8188LIBNVDIMM: DEVICETREE BINDINGS
8189M:	Oliver O'Halloran <oohall@gmail.com>
8190L:	linux-nvdimm@lists.01.org
8191Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
8192S:	Supported
8193F:	drivers/nvdimm/of_pmem.c
8194F:	Documentation/devicetree/bindings/pmem/pmem-region.txt
8195
8196LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
8197M:	Dan Williams <dan.j.williams@intel.com>
8198M:	Ross Zwisler <ross.zwisler@linux.intel.com>
8199M:	Vishal Verma <vishal.l.verma@intel.com>
8200M:	Dave Jiang <dave.jiang@intel.com>
8201L:	linux-nvdimm@lists.01.org
8202Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
8203T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
8204S:	Supported
8205F:	drivers/nvdimm/*
8206F:	drivers/acpi/nfit/*
8207F:	include/linux/nd.h
8208F:	include/linux/libnvdimm.h
8209F:	include/uapi/linux/ndctl.h
8210
8211LIGHTNVM PLATFORM SUPPORT
8212M:	Matias Bjorling <mb@lightnvm.io>
8213W:	http://github/OpenChannelSSD
8214L:	linux-block@vger.kernel.org
8215S:	Maintained
8216F:	drivers/lightnvm/
8217F:	include/linux/lightnvm.h
8218F:	include/uapi/linux/lightnvm.h
8219
8220LINUX FOR POWER MACINTOSH
8221M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
8222W:	http://www.penguinppc.org/
8223L:	linuxppc-dev@lists.ozlabs.org
8224S:	Maintained
8225F:	arch/powerpc/platforms/powermac/
8226F:	drivers/macintosh/
8227
8228LINUX FOR POWERPC (32-BIT AND 64-BIT)
8229M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
8230M:	Paul Mackerras <paulus@samba.org>
8231M:	Michael Ellerman <mpe@ellerman.id.au>
8232W:	https://github.com/linuxppc/linux/wiki
8233L:	linuxppc-dev@lists.ozlabs.org
8234Q:	http://patchwork.ozlabs.org/project/linuxppc-dev/list/
8235T:	git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
8236S:	Supported
8237F:	Documentation/ABI/stable/sysfs-firmware-opal-*
8238F:	Documentation/devicetree/bindings/powerpc/
8239F:	Documentation/devicetree/bindings/rtc/rtc-opal.txt
8240F:	Documentation/devicetree/bindings/i2c/i2c-opal.txt
8241F:	Documentation/powerpc/
8242F:	arch/powerpc/
8243F:	drivers/char/tpm/tpm_ibmvtpm*
8244F:	drivers/crypto/nx/
8245F:	drivers/crypto/vmx/
8246F:	drivers/i2c/busses/i2c-opal.c
8247F:	drivers/net/ethernet/ibm/ibmveth.*
8248F:	drivers/net/ethernet/ibm/ibmvnic.*
8249F:	drivers/pci/hotplug/pnv_php.c
8250F:	drivers/pci/hotplug/rpa*
8251F:	drivers/rtc/rtc-opal.c
8252F:	drivers/scsi/ibmvscsi/
8253F:	drivers/tty/hvc/hvc_opal.c
8254F:	drivers/watchdog/wdrtas.c
8255F:	tools/testing/selftests/powerpc
8256N:	/pmac
8257N:	powermac
8258N:	powernv
8259N:	[^a-z0-9]ps3
8260N:	pseries
8261
8262LINUX FOR POWERPC EMBEDDED MPC5XXX
8263M:	Anatolij Gustschin <agust@denx.de>
8264L:	linuxppc-dev@lists.ozlabs.org
8265T:	git git://git.denx.de/linux-denx-agust.git
8266S:	Maintained
8267F:	arch/powerpc/platforms/512x/
8268F:	arch/powerpc/platforms/52xx/
8269
8270LINUX FOR POWERPC EMBEDDED PPC4XX
8271M:	Alistair Popple <alistair@popple.id.au>
8272M:	Matt Porter <mporter@kernel.crashing.org>
8273W:	http://www.penguinppc.org/
8274L:	linuxppc-dev@lists.ozlabs.org
8275S:	Maintained
8276F:	arch/powerpc/platforms/40x/
8277F:	arch/powerpc/platforms/44x/
8278
8279LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
8280M:	Scott Wood <oss@buserror.net>
8281M:	Kumar Gala <galak@kernel.crashing.org>
8282W:	http://www.penguinppc.org/
8283L:	linuxppc-dev@lists.ozlabs.org
8284T:	git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
8285S:	Maintained
8286F:	arch/powerpc/platforms/83xx/
8287F:	arch/powerpc/platforms/85xx/
8288F:	Documentation/devicetree/bindings/powerpc/fsl/
8289
8290LINUX FOR POWERPC EMBEDDED PPC8XX
8291M:	Vitaly Bordug <vitb@kernel.crashing.org>
8292W:	http://www.penguinppc.org/
8293L:	linuxppc-dev@lists.ozlabs.org
8294S:	Maintained
8295F:	arch/powerpc/platforms/8xx/
8296
8297LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
8298L:	linuxppc-dev@lists.ozlabs.org
8299S:	Orphan
8300F:	arch/powerpc/*/*virtex*
8301F:	arch/powerpc/*/*/*virtex*
8302
8303LINUX FOR POWERPC PA SEMI PWRFICIENT
8304L:	linuxppc-dev@lists.ozlabs.org
8305S:	Orphan
8306F:	arch/powerpc/platforms/pasemi/
8307F:	drivers/*/*pasemi*
8308F:	drivers/*/*/*pasemi*
8309
8310LINUX KERNEL DUMP TEST MODULE (LKDTM)
8311M:	Kees Cook <keescook@chromium.org>
8312S:	Maintained
8313F:	drivers/misc/lkdtm/*
8314
8315LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
8316M:	Alan Stern <stern@rowland.harvard.edu>
8317M:	Andrea Parri <andrea.parri@amarulasolutions.com>
8318M:	Will Deacon <will.deacon@arm.com>
8319M:	Peter Zijlstra <peterz@infradead.org>
8320M:	Boqun Feng <boqun.feng@gmail.com>
8321M:	Nicholas Piggin <npiggin@gmail.com>
8322M:	David Howells <dhowells@redhat.com>
8323M:	Jade Alglave <j.alglave@ucl.ac.uk>
8324M:	Luc Maranget <luc.maranget@inria.fr>
8325M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8326R:	Akira Yokosawa <akiyks@gmail.com>
8327L:	linux-kernel@vger.kernel.org
8328S:	Supported
8329T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8330F:	tools/memory-model/
8331F:	Documentation/memory-barriers.txt
8332
8333LINUX SECURITY MODULE (LSM) FRAMEWORK
8334M:	Chris Wright <chrisw@sous-sol.org>
8335L:	linux-security-module@vger.kernel.org
8336S:	Supported
8337
8338LIS3LV02D ACCELEROMETER DRIVER
8339M:	Eric Piel <eric.piel@tremplin-utc.net>
8340S:	Maintained
8341F:	Documentation/misc-devices/lis3lv02d
8342F:	drivers/misc/lis3lv02d/
8343F:	drivers/platform/x86/hp_accel.c
8344
8345LIVE PATCHING
8346M:	Josh Poimboeuf <jpoimboe@redhat.com>
8347M:	Jessica Yu <jeyu@kernel.org>
8348M:	Jiri Kosina <jikos@kernel.org>
8349M:	Miroslav Benes <mbenes@suse.cz>
8350R:	Petr Mladek <pmladek@suse.com>
8351S:	Maintained
8352F:	kernel/livepatch/
8353F:	include/linux/livepatch.h
8354F:	arch/x86/include/asm/livepatch.h
8355F:	arch/x86/kernel/livepatch.c
8356F:	Documentation/livepatch/
8357F:	Documentation/ABI/testing/sysfs-kernel-livepatch
8358F:	samples/livepatch/
8359L:	live-patching@vger.kernel.org
8360T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
8361
8362LLC (802.2)
8363L:	netdev@vger.kernel.org
8364S:	Odd fixes
8365F:	include/linux/llc.h
8366F:	include/uapi/linux/llc.h
8367F:	include/net/llc*
8368F:	net/llc/
8369
8370LM73 HARDWARE MONITOR DRIVER
8371M:	Guillaume Ligneul <guillaume.ligneul@gmail.com>
8372L:	linux-hwmon@vger.kernel.org
8373S:	Maintained
8374F:	drivers/hwmon/lm73.c
8375
8376LM78 HARDWARE MONITOR DRIVER
8377M:	Jean Delvare <jdelvare@suse.com>
8378L:	linux-hwmon@vger.kernel.org
8379S:	Maintained
8380F:	Documentation/hwmon/lm78
8381F:	drivers/hwmon/lm78.c
8382
8383LM83 HARDWARE MONITOR DRIVER
8384M:	Jean Delvare <jdelvare@suse.com>
8385L:	linux-hwmon@vger.kernel.org
8386S:	Maintained
8387F:	Documentation/hwmon/lm83
8388F:	drivers/hwmon/lm83.c
8389
8390LM90 HARDWARE MONITOR DRIVER
8391M:	Jean Delvare <jdelvare@suse.com>
8392L:	linux-hwmon@vger.kernel.org
8393S:	Maintained
8394F:	Documentation/hwmon/lm90
8395F:	Documentation/devicetree/bindings/hwmon/lm90.txt
8396F:	drivers/hwmon/lm90.c
8397F:	include/dt-bindings/thermal/lm90.h
8398
8399LM95234 HARDWARE MONITOR DRIVER
8400M:	Guenter Roeck <linux@roeck-us.net>
8401L:	linux-hwmon@vger.kernel.org
8402S:	Maintained
8403F:	Documentation/hwmon/lm95234
8404F:	drivers/hwmon/lm95234.c
8405
8406LME2510 MEDIA DRIVER
8407M:	Malcolm Priestley <tvboxspy@gmail.com>
8408L:	linux-media@vger.kernel.org
8409W:	https://linuxtv.org
8410Q:	http://patchwork.linuxtv.org/project/linux-media/list/
8411S:	Maintained
8412F:	drivers/media/usb/dvb-usb-v2/lmedm04*
8413
8414LOADPIN SECURITY MODULE
8415M:	Kees Cook <keescook@chromium.org>
8416T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
8417S:	Supported
8418F:	security/loadpin/
8419F:	Documentation/admin-guide/LSM/LoadPin.rst
8420
8421LOCKING PRIMITIVES
8422M:	Peter Zijlstra <peterz@infradead.org>
8423M:	Ingo Molnar <mingo@redhat.com>
8424M:	Will Deacon <will.deacon@arm.com>
8425L:	linux-kernel@vger.kernel.org
8426T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8427S:	Maintained
8428F:	Documentation/locking/
8429F:	include/linux/lockdep.h
8430F:	include/linux/spinlock*.h
8431F:	arch/*/include/asm/spinlock*.h
8432F:	include/linux/rwlock*.h
8433F:	include/linux/mutex*.h
8434F:	arch/*/include/asm/mutex*.h
8435F:	include/linux/rwsem*.h
8436F:	arch/*/include/asm/rwsem.h
8437F:	include/linux/seqlock.h
8438F:	lib/locking*.[ch]
8439F:	kernel/locking/
8440X:	kernel/locking/locktorture.c
8441
8442LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
8443M:	"Richard Russon (FlatCap)" <ldm@flatcap.org>
8444L:	linux-ntfs-dev@lists.sourceforge.net
8445W:	http://www.linux-ntfs.org/content/view/19/37/
8446S:	Maintained
8447F:	Documentation/ldm.txt
8448F:	block/partitions/ldm.*
8449
8450LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
8451M:	Sathya Prakash <sathya.prakash@broadcom.com>
8452M:	Chaitra P B <chaitra.basappa@broadcom.com>
8453M:	Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
8454L:	MPT-FusionLinux.pdl@broadcom.com
8455L:	linux-scsi@vger.kernel.org
8456W:	http://www.avagotech.com/support/
8457S:	Supported
8458F:	drivers/message/fusion/
8459F:	drivers/scsi/mpt3sas/
8460
8461LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
8462M:	Matthew Wilcox <matthew@wil.cx>
8463L:	linux-scsi@vger.kernel.org
8464S:	Maintained
8465F:	drivers/scsi/sym53c8xx_2/
8466
8467LTC4261 HARDWARE MONITOR DRIVER
8468M:	Guenter Roeck <linux@roeck-us.net>
8469L:	linux-hwmon@vger.kernel.org
8470S:	Maintained
8471F:	Documentation/hwmon/ltc4261
8472F:	drivers/hwmon/ltc4261.c
8473
8474LTC4306 I2C MULTIPLEXER DRIVER
8475M:	Michael Hennerich <michael.hennerich@analog.com>
8476W:	http://ez.analog.com/community/linux-device-drivers
8477L:	linux-i2c@vger.kernel.org
8478S:	Supported
8479F:	drivers/i2c/muxes/i2c-mux-ltc4306.c
8480F:	Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
8481
8482LTP (Linux Test Project)
8483M:	Mike Frysinger <vapier@gentoo.org>
8484M:	Cyril Hrubis <chrubis@suse.cz>
8485M:	Wanlong Gao <wanlong.gao@gmail.com>
8486M:	Jan Stancek <jstancek@redhat.com>
8487M:	Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
8488M:	Alexey Kodanev <alexey.kodanev@oracle.com>
8489L:	ltp@lists.linux.it (subscribers-only)
8490W:	http://linux-test-project.github.io/
8491T:	git git://github.com/linux-test-project/ltp.git
8492S:	Maintained
8493
8494M68K ARCHITECTURE
8495M:	Geert Uytterhoeven <geert@linux-m68k.org>
8496L:	linux-m68k@lists.linux-m68k.org
8497W:	http://www.linux-m68k.org/
8498T:	git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
8499S:	Maintained
8500F:	arch/m68k/
8501F:	drivers/zorro/
8502
8503M68K ON APPLE MACINTOSH
8504M:	Joshua Thompson <funaho@jurai.org>
8505W:	http://www.mac.linux-m68k.org/
8506L:	linux-m68k@lists.linux-m68k.org
8507S:	Maintained
8508F:	arch/m68k/mac/
8509
8510M68K ON HP9000/300
8511M:	Philip Blundell <philb@gnu.org>
8512W:	http://www.tazenda.demon.co.uk/phil/linux-hp
8513S:	Maintained
8514F:	arch/m68k/hp300/
8515
8516M88DS3103 MEDIA DRIVER
8517M:	Antti Palosaari <crope@iki.fi>
8518L:	linux-media@vger.kernel.org
8519W:	https://linuxtv.org
8520W:	http://palosaari.fi/linux/
8521Q:	http://patchwork.linuxtv.org/project/linux-media/list/
8522T:	git git://linuxtv.org/anttip/media_tree.git
8523S:	Maintained
8524F:	drivers/media/dvb-frontends/m88ds3103*
8525
8526M88RS2000 MEDIA DRIVER
8527M:	Malcolm Priestley <tvboxspy@gmail.com>
8528L:	linux-media@vger.kernel.org
8529W:	https://linuxtv.org
8530Q:	http://patchwork.linuxtv.org/project/linux-media/list/
8531S:	Maintained
8532F:	drivers/media/dvb-frontends/m88rs2000*
8533
8534MA901 MASTERKIT USB FM RADIO DRIVER
8535M:	Alexey Klimov <klimov.linux@gmail.com>
8536L:	linux-media@vger.kernel.org
8537T:	git git://linuxtv.org/media_tree.git
8538S:	Maintained
8539F:	drivers/media/radio/radio-ma901.c
8540
8541MAC80211
8542M:	Johannes Berg <johannes@sipsolutions.net>
8543L:	linux-wireless@vger.kernel.org
8544W:	http://wireless.kernel.org/
8545T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8546T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8547S:	Maintained
8548F:	Documentation/networking/mac80211-injection.txt
8549F:	include/net/mac80211.h
8550F:	net/mac80211/
8551F:	drivers/net/wireless/mac80211_hwsim.[ch]
8552F:	Documentation/networking/mac80211_hwsim/README
8553
8554MAILBOX API
8555M:	Jassi Brar <jassisinghbrar@gmail.com>
8556L:	linux-kernel@vger.kernel.org
8557S:	Maintained
8558F:	drivers/mailbox/
8559F:	include/linux/mailbox_client.h
8560F:	include/linux/mailbox_controller.h
8561
8562MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
8563M:	Michael Kerrisk <mtk.manpages@gmail.com>
8564W:	http://www.kernel.org/doc/man-pages
8565L:	linux-man@vger.kernel.org
8566S:	Maintained
8567
8568MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
8569M:	Rahul Bedarkar <rahulbedarkar89@gmail.com>
8570L:	linux-mips@linux-mips.org
8571S:	Maintained
8572F:	arch/mips/boot/dts/img/pistachio_marduk.dts
8573
8574MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
8575M:	Andrew Lunn <andrew@lunn.ch>
8576M:	Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8577L:	netdev@vger.kernel.org
8578S:	Maintained
8579F:	drivers/net/dsa/mv88e6xxx/
8580F:	linux/platform_data/mv88e6xxx.h
8581F:	Documentation/devicetree/bindings/net/dsa/marvell.txt
8582
8583MARVELL ARMADA DRM SUPPORT
8584M:	Russell King <linux@armlinux.org.uk>
8585S:	Maintained
8586T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
8587T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
8588F:	drivers/gpu/drm/armada/
8589F:	include/uapi/drm/armada_drm.h
8590F:	Documentation/devicetree/bindings/display/armada/
8591
8592MARVELL CRYPTO DRIVER
8593M:	Boris Brezillon <boris.brezillon@bootlin.com>
8594M:	Arnaud Ebalard <arno@natisbad.org>
8595F:	drivers/crypto/marvell/
8596S:	Maintained
8597L:	linux-crypto@vger.kernel.org
8598
8599MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
8600M:	Mirko Lindner <mlindner@marvell.com>
8601M:	Stephen Hemminger <stephen@networkplumber.org>
8602L:	netdev@vger.kernel.org
8603S:	Maintained
8604F:	drivers/net/ethernet/marvell/sk*
8605
8606MARVELL LIBERTAS WIRELESS DRIVER
8607L:	libertas-dev@lists.infradead.org
8608S:	Orphan
8609F:	drivers/net/wireless/marvell/libertas/
8610
8611MARVELL MACCHIATOBIN SUPPORT
8612M:	Russell King <linux@armlinux.org.uk>
8613L:	linux-arm-kernel@lists.infradead.org
8614S:	Maintained
8615F:	arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
8616
8617MARVELL MV643XX ETHERNET DRIVER
8618M:	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
8619L:	netdev@vger.kernel.org
8620S:	Maintained
8621F:	drivers/net/ethernet/marvell/mv643xx_eth.*
8622F:	include/linux/mv643xx.h
8623
8624MARVELL MV88X3310 PHY DRIVER
8625M:	Russell King <linux@armlinux.org.uk>
8626L:	netdev@vger.kernel.org
8627S:	Maintained
8628F:	drivers/net/phy/marvell10g.c
8629
8630MARVELL MVNETA ETHERNET DRIVER
8631M:	Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8632L:	netdev@vger.kernel.org
8633S:	Maintained
8634F:	drivers/net/ethernet/marvell/mvneta.*
8635
8636MARVELL MWIFIEX WIRELESS DRIVER
8637M:	Amitkumar Karwar <amitkarwar@gmail.com>
8638M:	Nishant Sarmukadam <nishants@marvell.com>
8639M:	Ganapathi Bhat <gbhat@marvell.com>
8640M:	Xinming Hu <huxm@marvell.com>
8641L:	linux-wireless@vger.kernel.org
8642S:	Maintained
8643F:	drivers/net/wireless/marvell/mwifiex/
8644
8645MARVELL MWL8K WIRELESS DRIVER
8646M:	Lennert Buytenhek <buytenh@wantstofly.org>
8647L:	linux-wireless@vger.kernel.org
8648S:	Odd Fixes
8649F:	drivers/net/wireless/marvell/mwl8k.c
8650
8651MARVELL NAND CONTROLLER DRIVER
8652M:	Miquel Raynal <miquel.raynal@bootlin.com>
8653L:	linux-mtd@lists.infradead.org
8654S:	Maintained
8655F:	drivers/mtd/nand/raw/marvell_nand.c
8656F:	Documentation/devicetree/bindings/mtd/marvell-nand.txt
8657
8658MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
8659M:	Nicolas Pitre <nico@fluxnic.net>
8660S:	Odd Fixes
8661F:	drivers/mmc/host/mvsdio.*
8662
8663MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
8664M:	Hu Ziji <huziji@marvell.com>
8665L:	linux-mmc@vger.kernel.org
8666S:	Supported
8667F:	drivers/mmc/host/sdhci-xenon*
8668F:	Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
8669
8670MATROX FRAMEBUFFER DRIVER
8671L:	linux-fbdev@vger.kernel.org
8672S:	Orphan
8673F:	drivers/video/fbdev/matrox/matroxfb_*
8674F:	include/uapi/linux/matroxfb.h
8675
8676MAX16065 HARDWARE MONITOR DRIVER
8677M:	Guenter Roeck <linux@roeck-us.net>
8678L:	linux-hwmon@vger.kernel.org
8679S:	Maintained
8680F:	Documentation/hwmon/max16065
8681F:	drivers/hwmon/max16065.c
8682
8683MAX20751 HARDWARE MONITOR DRIVER
8684M:	Guenter Roeck <linux@roeck-us.net>
8685L:	linux-hwmon@vger.kernel.org
8686S:	Maintained
8687F:	Documentation/hwmon/max20751
8688F:	drivers/hwmon/max20751.c
8689
8690MAX2175 SDR TUNER DRIVER
8691M:	Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8692L:	linux-media@vger.kernel.org
8693T:	git git://linuxtv.org/media_tree.git
8694S:	Maintained
8695F:	Documentation/devicetree/bindings/media/i2c/max2175.txt
8696F:	Documentation/media/v4l-drivers/max2175.rst
8697F:	drivers/media/i2c/max2175*
8698F:	include/uapi/linux/max2175.h
8699
8700MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8701L:	linux-hwmon@vger.kernel.org
8702S:	Orphan
8703F:	Documentation/hwmon/max6650
8704F:	drivers/hwmon/max6650.c
8705
8706MAX6697 HARDWARE MONITOR DRIVER
8707M:	Guenter Roeck <linux@roeck-us.net>
8708L:	linux-hwmon@vger.kernel.org
8709S:	Maintained
8710F:	Documentation/hwmon/max6697
8711F:	Documentation/devicetree/bindings/hwmon/max6697.txt
8712F:	drivers/hwmon/max6697.c
8713F:	include/linux/platform_data/max6697.h
8714
8715MAX9860 MONO AUDIO VOICE CODEC DRIVER
8716M:	Peter Rosin <peda@axentia.se>
8717L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
8718S:	Maintained
8719F:	Documentation/devicetree/bindings/sound/max9860.txt
8720F:	sound/soc/codecs/max9860.*
8721
8722MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
8723M:	Javier Martinez Canillas <javier@dowhile0.org>
8724L:	linux-kernel@vger.kernel.org
8725S:	Supported
8726F:	drivers/regulator/max77802-regulator.c
8727F:	Documentation/devicetree/bindings/*/*max77802.txt
8728F:	include/dt-bindings/*/*max77802.h
8729
8730MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
8731M:	Krzysztof Kozlowski <krzk@kernel.org>
8732M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8733L:	linux-pm@vger.kernel.org
8734S:	Supported
8735F:	drivers/power/supply/max14577_charger.c
8736F:	drivers/power/supply/max77693_charger.c
8737
8738MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
8739M:	Chanwoo Choi <cw00.choi@samsung.com>
8740M:	Krzysztof Kozlowski <krzk@kernel.org>
8741M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8742L:	linux-kernel@vger.kernel.org
8743S:	Supported
8744F:	drivers/*/max14577*.c
8745F:	drivers/*/max77686*.c
8746F:	drivers/*/max77693*.c
8747F:	drivers/extcon/extcon-max14577.c
8748F:	drivers/extcon/extcon-max77693.c
8749F:	drivers/rtc/rtc-max77686.c
8750F:	drivers/clk/clk-max77686.c
8751F:	Documentation/devicetree/bindings/mfd/max14577.txt
8752F:	Documentation/devicetree/bindings/*/max77686.txt
8753F:	Documentation/devicetree/bindings/mfd/max77693.txt
8754F:	Documentation/devicetree/bindings/clock/maxim,max77686.txt
8755F:	include/linux/mfd/max14577*.h
8756F:	include/linux/mfd/max77686*.h
8757F:	include/linux/mfd/max77693*.h
8758
8759MAXIRADIO FM RADIO RECEIVER DRIVER
8760M:	Hans Verkuil <hverkuil@xs4all.nl>
8761L:	linux-media@vger.kernel.org
8762T:	git git://linuxtv.org/media_tree.git
8763W:	https://linuxtv.org
8764S:	Maintained
8765F:	drivers/media/radio/radio-maxiradio*
8766
8767MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
8768M:	Peter Rosin <peda@axentia.se>
8769L:	linux-iio@vger.kernel.org
8770S:	Maintained
8771F:	Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
8772F:	drivers/iio/potentiometer/mcp4018.c
8773F:	drivers/iio/potentiometer/mcp4531.c
8774
8775MCR20A IEEE-802.15.4 RADIO DRIVER
8776M:	Xue Liu <liuxuenetmail@gmail.com>
8777L:	linux-wpan@vger.kernel.org
8778W:	https://github.com/xueliu/mcr20a-linux
8779S:	Maintained
8780F:	drivers/net/ieee802154/mcr20a.c
8781F:	drivers/net/ieee802154/mcr20a.h
8782F:	Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
8783
8784MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
8785M:	William Breathitt Gray <vilhelm.gray@gmail.com>
8786L:	linux-iio@vger.kernel.org
8787S:	Maintained
8788F:	drivers/iio/dac/cio-dac.c
8789
8790MEDIA DRIVERS FOR ASCOT2E
8791M:	Sergey Kozlov <serjk@netup.ru>
8792M:	Abylay Ospan <aospan@netup.ru>
8793L:	linux-media@vger.kernel.org
8794W:	https://linuxtv.org
8795W:	http://netup.tv/
8796T:	git git://linuxtv.org/media_tree.git
8797S:	Supported
8798F:	drivers/media/dvb-frontends/ascot2e*
8799
8800MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
8801M:	Jasmin Jessich <jasmin@anw.at>
8802L:	linux-media@vger.kernel.org
8803W:	https://linuxtv.org
8804T:	git git://linuxtv.org/media_tree.git
8805S:	Maintained
8806F:	drivers/media/dvb-frontends/cxd2099*
8807
8808MEDIA DRIVERS FOR CXD2841ER
8809M:	Sergey Kozlov <serjk@netup.ru>
8810M:	Abylay Ospan <aospan@netup.ru>
8811L:	linux-media@vger.kernel.org
8812W:	https://linuxtv.org
8813W:	http://netup.tv/
8814T:	git git://linuxtv.org/media_tree.git
8815S:	Supported
8816F:	drivers/media/dvb-frontends/cxd2841er*
8817
8818MEDIA DRIVERS FOR CXD2880
8819M:	Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
8820L:	linux-media@vger.kernel.org
8821W:	http://linuxtv.org/
8822T:	git git://linuxtv.org/media_tree.git
8823S:	Supported
8824F:	drivers/media/dvb-frontends/cxd2880/*
8825F:	drivers/media/spi/cxd2880*
8826
8827MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
8828M:	Daniel Scheller <d.scheller.oss@gmail.com>
8829L:	linux-media@vger.kernel.org
8830W:	https://linuxtv.org
8831T:	git git://linuxtv.org/media_tree.git
8832S:	Maintained
8833F:	drivers/media/pci/ddbridge/*
8834
8835MEDIA DRIVERS FOR FREESCALE IMX
8836M:	Steve Longerbeam <slongerbeam@gmail.com>
8837M:	Philipp Zabel <p.zabel@pengutronix.de>
8838L:	linux-media@vger.kernel.org
8839T:	git git://linuxtv.org/media_tree.git
8840S:	Maintained
8841F:	Documentation/devicetree/bindings/media/imx.txt
8842F:	Documentation/media/v4l-drivers/imx.rst
8843F:	drivers/staging/media/imx/
8844F:	include/linux/imx-media.h
8845F:	include/media/imx.h
8846
8847MEDIA DRIVERS FOR HELENE
8848M:	Abylay Ospan <aospan@netup.ru>
8849L:	linux-media@vger.kernel.org
8850W:	https://linuxtv.org
8851W:	http://netup.tv/
8852T:	git git://linuxtv.org/media_tree.git
8853S:	Supported
8854F:	drivers/media/dvb-frontends/helene*
8855
8856MEDIA DRIVERS FOR HORUS3A
8857M:	Sergey Kozlov <serjk@netup.ru>
8858M:	Abylay Ospan <aospan@netup.ru>
8859L:	linux-media@vger.kernel.org
8860W:	https://linuxtv.org
8861W:	http://netup.tv/
8862T:	git git://linuxtv.org/media_tree.git
8863S:	Supported
8864F:	drivers/media/dvb-frontends/horus3a*
8865
8866MEDIA DRIVERS FOR LNBH25
8867M:	Sergey Kozlov <serjk@netup.ru>
8868M:	Abylay Ospan <aospan@netup.ru>
8869L:	linux-media@vger.kernel.org
8870W:	https://linuxtv.org
8871W:	http://netup.tv/
8872T:	git git://linuxtv.org/media_tree.git
8873S:	Supported
8874F:	drivers/media/dvb-frontends/lnbh25*
8875
8876MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
8877M:	Daniel Scheller <d.scheller.oss@gmail.com>
8878L:	linux-media@vger.kernel.org
8879W:	https://linuxtv.org
8880T:	git git://linuxtv.org/media_tree.git
8881S:	Maintained
8882F:	drivers/media/dvb-frontends/mxl5xx*
8883
8884MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
8885M:	Sergey Kozlov <serjk@netup.ru>
8886M:	Abylay Ospan <aospan@netup.ru>
8887L:	linux-media@vger.kernel.org
8888W:	https://linuxtv.org
8889W:	http://netup.tv/
8890T:	git git://linuxtv.org/media_tree.git
8891S:	Supported
8892F:	drivers/media/pci/netup_unidvb/*
8893
8894MEDIA DRIVERS FOR RENESAS - CEU
8895M:	Jacopo Mondi <jacopo@jmondi.org>
8896L:	linux-media@vger.kernel.org
8897L:	linux-renesas-soc@vger.kernel.org
8898T:	git git://linuxtv.org/media_tree.git
8899S:	Supported
8900F:	Documentation/devicetree/bindings/media/renesas,ceu.txt
8901F:	drivers/media/platform/renesas-ceu.c
8902F:	include/media/drv-intf/renesas-ceu.h
8903
8904MEDIA DRIVERS FOR RENESAS - DRIF
8905M:	Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8906L:	linux-media@vger.kernel.org
8907L:	linux-renesas-soc@vger.kernel.org
8908T:	git git://linuxtv.org/media_tree.git
8909S:	Supported
8910F:	Documentation/devicetree/bindings/media/renesas,drif.txt
8911F:	drivers/media/platform/rcar_drif.c
8912
8913MEDIA DRIVERS FOR RENESAS - FCP
8914M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8915L:	linux-media@vger.kernel.org
8916L:	linux-renesas-soc@vger.kernel.org
8917T:	git git://linuxtv.org/media_tree.git
8918S:	Supported
8919F:	Documentation/devicetree/bindings/media/renesas,fcp.txt
8920F:	drivers/media/platform/rcar-fcp.c
8921F:	include/media/rcar-fcp.h
8922
8923MEDIA DRIVERS FOR RENESAS - FDP1
8924M:	Kieran Bingham <kieran@bingham.xyz>
8925L:	linux-media@vger.kernel.org
8926L:	linux-renesas-soc@vger.kernel.org
8927T:	git git://linuxtv.org/media_tree.git
8928S:	Supported
8929F:	Documentation/devicetree/bindings/media/renesas,fdp1.txt
8930F:	drivers/media/platform/rcar_fdp1.c
8931
8932MEDIA DRIVERS FOR RENESAS - VIN
8933M:	Niklas Söderlund <niklas.soderlund@ragnatech.se>
8934L:	linux-media@vger.kernel.org
8935L:	linux-renesas-soc@vger.kernel.org
8936T:	git git://linuxtv.org/media_tree.git
8937S:	Supported
8938F:	Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
8939F:	Documentation/devicetree/bindings/media/rcar_vin.txt
8940F:	drivers/media/platform/rcar-vin/
8941
8942MEDIA DRIVERS FOR RENESAS - VSP1
8943M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8944L:	linux-media@vger.kernel.org
8945L:	linux-renesas-soc@vger.kernel.org
8946T:	git git://linuxtv.org/media_tree.git
8947S:	Supported
8948F:	Documentation/devicetree/bindings/media/renesas,vsp1.txt
8949F:	drivers/media/platform/vsp1/
8950
8951MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
8952M:	Daniel Scheller <d.scheller.oss@gmail.com>
8953L:	linux-media@vger.kernel.org
8954W:	https://linuxtv.org
8955T:	git git://linuxtv.org/media_tree.git
8956S:	Maintained
8957F:	drivers/media/dvb-frontends/stv0910*
8958
8959MEDIA DRIVERS FOR ST STV6111 TUNER ICs
8960M:	Daniel Scheller <d.scheller.oss@gmail.com>
8961L:	linux-media@vger.kernel.org
8962W:	https://linuxtv.org
8963T:	git git://linuxtv.org/media_tree.git
8964S:	Maintained
8965F:	drivers/media/dvb-frontends/stv6111*
8966
8967MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
8968M:	Dmitry Osipenko <digetx@gmail.com>
8969L:	linux-media@vger.kernel.org
8970L:	linux-tegra@vger.kernel.org
8971T:	git git://linuxtv.org/media_tree.git
8972S:	Maintained
8973F:	Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
8974F:	drivers/staging/media/tegra-vde/
8975
8976MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
8977M:	Mauro Carvalho Chehab <mchehab@kernel.org>
8978P:	LinuxTV.org Project
8979L:	linux-media@vger.kernel.org
8980W:	https://linuxtv.org
8981Q:	http://patchwork.kernel.org/project/linux-media/list/
8982T:	git git://linuxtv.org/media_tree.git
8983S:	Maintained
8984F:	Documentation/devicetree/bindings/media/
8985F:	Documentation/media/
8986F:	drivers/media/
8987F:	drivers/staging/media/
8988F:	include/linux/platform_data/media/
8989F:	include/media/
8990F:	include/uapi/linux/dvb/
8991F:	include/uapi/linux/videodev2.h
8992F:	include/uapi/linux/media.h
8993F:	include/uapi/linux/v4l2-*
8994F:	include/uapi/linux/meye.h
8995F:	include/uapi/linux/ivtv*
8996F:	include/uapi/linux/uvcvideo.h
8997
8998MEDIATEK CIR DRIVER
8999M:	Sean Wang <sean.wang@mediatek.com>
9000S:	Maintained
9001F:	drivers/media/rc/mtk-cir.c
9002
9003MEDIATEK DMA DRIVER
9004M:	Sean Wang <sean.wang@mediatek.com>
9005L:	dmaengine@vger.kernel.org
9006L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9007L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
9008S:	Maintained
9009F:	Documentation/devicetree/bindings/dma/mtk-*
9010F:	drivers/dma/mediatek/
9011
9012MEDIATEK PMIC LED DRIVER
9013M:	Sean Wang <sean.wang@mediatek.com>
9014S:	Maintained
9015F:	drivers/leds/leds-mt6323.c
9016F:	Documentation/devicetree/bindings/leds/leds-mt6323.txt
9017
9018MEDIATEK ETHERNET DRIVER
9019M:	Felix Fietkau <nbd@openwrt.org>
9020M:	John Crispin <john@phrozen.org>
9021M:	Sean Wang <sean.wang@mediatek.com>
9022M:	Nelson Chang <nelson.chang@mediatek.com>
9023L:	netdev@vger.kernel.org
9024S:	Maintained
9025F:	drivers/net/ethernet/mediatek/
9026
9027MEDIATEK SWITCH DRIVER
9028M:	Sean Wang <sean.wang@mediatek.com>
9029L:	netdev@vger.kernel.org
9030S:	Maintained
9031F:	drivers/net/dsa/mt7530.*
9032F:	net/dsa/tag_mtk.c
9033
9034MEDIATEK JPEG DRIVER
9035M:	Rick Chang <rick.chang@mediatek.com>
9036M:	Bin Liu <bin.liu@mediatek.com>
9037S:	Supported
9038F:	drivers/media/platform/mtk-jpeg/
9039F:	Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
9040
9041MEDIATEK MDP DRIVER
9042M:	Minghsiu Tsai <minghsiu.tsai@mediatek.com>
9043M:	Houlong Wei <houlong.wei@mediatek.com>
9044M:	Andrew-CT Chen <andrew-ct.chen@mediatek.com>
9045S:	Supported
9046F:	drivers/media/platform/mtk-mdp/
9047F:	drivers/media/platform/mtk-vpu/
9048F:	Documentation/devicetree/bindings/media/mediatek-mdp.txt
9049
9050MEDIATEK MEDIA DRIVER
9051M:	Tiffany Lin <tiffany.lin@mediatek.com>
9052M:	Andrew-CT Chen <andrew-ct.chen@mediatek.com>
9053S:	Supported
9054F:	drivers/media/platform/mtk-vcodec/
9055F:	drivers/media/platform/mtk-vpu/
9056F:	Documentation/devicetree/bindings/media/mediatek-vcodec.txt
9057F:	Documentation/devicetree/bindings/media/mediatek-vpu.txt
9058
9059MEDIATEK MT7601U WIRELESS LAN DRIVER
9060M:	Jakub Kicinski <kubakici@wp.pl>
9061L:	linux-wireless@vger.kernel.org
9062S:	Maintained
9063F:	drivers/net/wireless/mediatek/mt7601u/
9064
9065MEDIATEK NAND CONTROLLER DRIVER
9066M:	Xiaolei Li <xiaolei.li@mediatek.com>
9067L:	linux-mtd@lists.infradead.org
9068S:	Maintained
9069F:	drivers/mtd/nand/raw/mtk_*
9070F:	Documentation/devicetree/bindings/mtd/mtk-nand.txt
9071
9072MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
9073M:	Sean Wang <sean.wang@mediatek.com>
9074S:	Maintained
9075F:	drivers/char/hw_random/mtk-rng.c
9076
9077MEDIATEK USB3 DRD IP DRIVER
9078M:	Chunfeng Yun <chunfeng.yun@mediatek.com>
9079L:	linux-usb@vger.kernel.org (moderated for non-subscribers)
9080L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9081L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
9082S:	Maintained
9083F:	drivers/usb/mtu3/
9084
9085MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
9086M:	Peter Senna Tschudin <peter.senna@collabora.com>
9087M:	Martin Donnelly <martin.donnelly@ge.com>
9088M:	Martyn Welch <martyn.welch@collabora.co.uk>
9089S:	Maintained
9090F:	drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
9091F:	Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
9092
9093MEGARAID SCSI/SAS DRIVERS
9094M:	Kashyap Desai <kashyap.desai@broadcom.com>
9095M:	Sumit Saxena <sumit.saxena@broadcom.com>
9096M:	Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
9097L:	megaraidlinux.pdl@broadcom.com
9098L:	linux-scsi@vger.kernel.org
9099W:	http://www.avagotech.com/support/
9100S:	Maintained
9101F:	Documentation/scsi/megaraid.txt
9102F:	drivers/scsi/megaraid.*
9103F:	drivers/scsi/megaraid/
9104
9105MELEXIS MLX90614 DRIVER
9106M:	Crt Mori <cmo@melexis.com>
9107L:	linux-iio@vger.kernel.org
9108W:	http://www.melexis.com
9109S:	Supported
9110F:	drivers/iio/temperature/mlx90614.c
9111
9112MELEXIS MLX90632 DRIVER
9113M:	Crt Mori <cmo@melexis.com>
9114L:	linux-iio@vger.kernel.org
9115W:	http://www.melexis.com
9116S:	Supported
9117F:	drivers/iio/temperature/mlx90632.c
9118
9119MELFAS MIP4 TOUCHSCREEN DRIVER
9120M:	Sangwon Jee <jeesw@melfas.com>
9121W:	http://www.melfas.com
9122S:	Supported
9123F:	drivers/input/touchscreen/melfas_mip4.c
9124F:	Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
9125
9126MELLANOX ETHERNET DRIVER (mlx4_en)
9127M:	Tariq Toukan <tariqt@mellanox.com>
9128L:	netdev@vger.kernel.org
9129S:	Supported
9130W:	http://www.mellanox.com
9131Q:	http://patchwork.ozlabs.org/project/netdev/list/
9132F:	drivers/net/ethernet/mellanox/mlx4/en_*
9133
9134MELLANOX ETHERNET DRIVER (mlx5e)
9135M:	Saeed Mahameed <saeedm@mellanox.com>
9136L:	netdev@vger.kernel.org
9137S:	Supported
9138W:	http://www.mellanox.com
9139Q:	http://patchwork.ozlabs.org/project/netdev/list/
9140F:	drivers/net/ethernet/mellanox/mlx5/core/en_*
9141
9142MELLANOX ETHERNET INNOVA DRIVERS
9143R:	Boris Pismenny <borisp@mellanox.com>
9144L:	netdev@vger.kernel.org
9145S:	Supported
9146W:	http://www.mellanox.com
9147Q:	http://patchwork.ozlabs.org/project/netdev/list/
9148F:	drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
9149F:	drivers/net/ethernet/mellanox/mlx5/core/accel/*
9150F:	drivers/net/ethernet/mellanox/mlx5/core/fpga/*
9151F:	include/linux/mlx5/mlx5_ifc_fpga.h
9152
9153MELLANOX ETHERNET INNOVA IPSEC DRIVER
9154R:	Boris Pismenny <borisp@mellanox.com>
9155L:	netdev@vger.kernel.org
9156S:	Supported
9157W:	http://www.mellanox.com
9158Q:	http://patchwork.ozlabs.org/project/netdev/list/
9159F:	drivers/net/ethernet/mellanox/mlx5/core/en_ipsec/*
9160F:	drivers/net/ethernet/mellanox/mlx5/core/ipsec*
9161
9162MELLANOX ETHERNET SWITCH DRIVERS
9163M:	Jiri Pirko <jiri@mellanox.com>
9164M:	Ido Schimmel <idosch@mellanox.com>
9165L:	netdev@vger.kernel.org
9166S:	Supported
9167W:	http://www.mellanox.com
9168Q:	http://patchwork.ozlabs.org/project/netdev/list/
9169F:	drivers/net/ethernet/mellanox/mlxsw/
9170
9171MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
9172M:	mlxsw@mellanox.com
9173L:	netdev@vger.kernel.org
9174S:	Supported
9175W:	http://www.mellanox.com
9176Q:	http://patchwork.ozlabs.org/project/netdev/list/
9177F:	drivers/net/ethernet/mellanox/mlxfw/
9178
9179MELLANOX HARDWARE PLATFORM SUPPORT
9180M:	Andy Shevchenko <andy@infradead.org>
9181M:	Darren Hart <dvhart@infradead.org>
9182M:	Vadim Pasternak <vadimp@mellanox.com>
9183L:	platform-driver-x86@vger.kernel.org
9184S:	Supported
9185F:	drivers/platform/mellanox/
9186
9187MELLANOX MLX4 core VPI driver
9188M:	Tariq Toukan <tariqt@mellanox.com>
9189L:	netdev@vger.kernel.org
9190L:	linux-rdma@vger.kernel.org
9191W:	http://www.mellanox.com
9192Q:	http://patchwork.ozlabs.org/project/netdev/list/
9193S:	Supported
9194F:	drivers/net/ethernet/mellanox/mlx4/
9195F:	include/linux/mlx4/
9196
9197MELLANOX MLX4 IB driver
9198M:	Yishai Hadas <yishaih@mellanox.com>
9199L:	linux-rdma@vger.kernel.org
9200W:	http://www.mellanox.com
9201Q:	http://patchwork.kernel.org/project/linux-rdma/list/
9202S:	Supported
9203F:	drivers/infiniband/hw/mlx4/
9204F:	include/linux/mlx4/
9205F:	include/uapi/rdma/mlx4-abi.h
9206
9207MELLANOX MLX5 core VPI driver
9208M:	Saeed Mahameed <saeedm@mellanox.com>
9209M:	Leon Romanovsky <leonro@mellanox.com>
9210L:	netdev@vger.kernel.org
9211L:	linux-rdma@vger.kernel.org
9212W:	http://www.mellanox.com
9213Q:	http://patchwork.ozlabs.org/project/netdev/list/
9214S:	Supported
9215F:	drivers/net/ethernet/mellanox/mlx5/core/
9216F:	include/linux/mlx5/
9217
9218MELLANOX MLX5 IB driver
9219M:	Leon Romanovsky <leonro@mellanox.com>
9220L:	linux-rdma@vger.kernel.org
9221W:	http://www.mellanox.com
9222Q:	http://patchwork.kernel.org/project/linux-rdma/list/
9223S:	Supported
9224F:	drivers/infiniband/hw/mlx5/
9225F:	include/linux/mlx5/
9226F:	include/uapi/rdma/mlx5-abi.h
9227
9228MELLANOX MLXCPLD I2C AND MUX DRIVER
9229M:	Vadim Pasternak <vadimp@mellanox.com>
9230M:	Michael Shych <michaelsh@mellanox.com>
9231L:	linux-i2c@vger.kernel.org
9232S:	Supported
9233F:	drivers/i2c/busses/i2c-mlxcpld.c
9234F:	drivers/i2c/muxes/i2c-mux-mlxcpld.c
9235F:	Documentation/i2c/busses/i2c-mlxcpld
9236
9237MELLANOX MLXCPLD LED DRIVER
9238M:	Vadim Pasternak <vadimp@mellanox.com>
9239L:	linux-leds@vger.kernel.org
9240S:	Supported
9241F:	drivers/leds/leds-mlxcpld.c
9242F:	drivers/leds/leds-mlxreg.c
9243F:	Documentation/leds/leds-mlxcpld.txt
9244
9245MELLANOX PLATFORM DRIVER
9246M:	Vadim Pasternak <vadimp@mellanox.com>
9247L:	platform-driver-x86@vger.kernel.org
9248S:	Supported
9249F:	drivers/platform/x86/mlx-platform.c
9250
9251MEMBARRIER SUPPORT
9252M:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9253M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9254L:	linux-kernel@vger.kernel.org
9255S:	Supported
9256F:	kernel/sched/membarrier.c
9257F:	include/uapi/linux/membarrier.h
9258F:	arch/powerpc/include/asm/membarrier.h
9259
9260MEMORY MANAGEMENT
9261L:	linux-mm@kvack.org
9262W:	http://www.linux-mm.org
9263S:	Maintained
9264F:	include/linux/mm.h
9265F:	include/linux/gfp.h
9266F:	include/linux/mmzone.h
9267F:	include/linux/memory_hotplug.h
9268F:	include/linux/vmalloc.h
9269F:	mm/
9270
9271MEMORY TECHNOLOGY DEVICES (MTD)
9272M:	David Woodhouse <dwmw2@infradead.org>
9273M:	Brian Norris <computersforpeace@gmail.com>
9274M:	Boris Brezillon <boris.brezillon@bootlin.com>
9275M:	Marek Vasut <marek.vasut@gmail.com>
9276M:	Richard Weinberger <richard@nod.at>
9277L:	linux-mtd@lists.infradead.org
9278W:	http://www.linux-mtd.infradead.org/
9279Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
9280T:	git git://git.infradead.org/linux-mtd.git master
9281T:	git git://git.infradead.org/linux-mtd.git mtd/next
9282S:	Maintained
9283F:	Documentation/devicetree/bindings/mtd/
9284F:	drivers/mtd/
9285F:	include/linux/mtd/
9286F:	include/uapi/mtd/
9287
9288MEN A21 WATCHDOG DRIVER
9289M:	Johannes Thumshirn <morbidrsa@gmail.com>
9290L:	linux-watchdog@vger.kernel.org
9291S:	Maintained
9292F:	drivers/watchdog/mena21_wdt.c
9293
9294MEN CHAMELEON BUS (mcb)
9295M:	Johannes Thumshirn <morbidrsa@gmail.com>
9296S:	Maintained
9297F:	drivers/mcb/
9298F:	include/linux/mcb.h
9299F:	Documentation/men-chameleon-bus.txt
9300
9301MEN F21BMC (Board Management Controller)
9302M:	Andreas Werner <andreas.werner@men.de>
9303S:	Supported
9304F:	drivers/mfd/menf21bmc.c
9305F:	drivers/watchdog/menf21bmc_wdt.c
9306F:	drivers/leds/leds-menf21bmc.c
9307F:	drivers/hwmon/menf21bmc_hwmon.c
9308F:	Documentation/hwmon/menf21bmc
9309
9310MESON AO CEC DRIVER FOR AMLOGIC SOCS
9311M:	Neil Armstrong <narmstrong@baylibre.com>
9312L:	linux-media@lists.freedesktop.org
9313L:	linux-amlogic@lists.infradead.org
9314W:	http://linux-meson.com/
9315S:	Supported
9316F:	drivers/media/platform/meson/ao-cec.c
9317F:	Documentation/devicetree/bindings/media/meson-ao-cec.txt
9318T:	git git://linuxtv.org/media_tree.git
9319
9320MICROBLAZE ARCHITECTURE
9321M:	Michal Simek <monstr@monstr.eu>
9322W:	http://www.monstr.eu/fdt/
9323T:	git git://git.monstr.eu/linux-2.6-microblaze.git
9324S:	Supported
9325F:	arch/microblaze/
9326
9327MICROCHIP / ATMEL AT91 SERIAL DRIVER
9328M:	Richard Genoud <richard.genoud@gmail.com>
9329S:	Maintained
9330F:	drivers/tty/serial/atmel_serial.c
9331F:	drivers/tty/serial/atmel_serial.h
9332
9333MICROCHIP / ATMEL DMA DRIVER
9334M:	Ludovic Desroches <ludovic.desroches@microchip.com>
9335L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9336L:	dmaengine@vger.kernel.org
9337S:	Supported
9338F:	drivers/dma/at_hdmac.c
9339F:	drivers/dma/at_hdmac_regs.h
9340F:	include/linux/platform_data/dma-atmel.h
9341
9342MICROCHIP / ATMEL ECC DRIVER
9343M:	Tudor Ambarus <tudor.ambarus@microchip.com>
9344L:	linux-crypto@vger.kernel.org
9345S:	Maintained
9346F:	drivers/crypto/atmel-ecc.*
9347
9348MICROCHIP / ATMEL ISC DRIVER
9349M:	Songjun Wu <songjun.wu@microchip.com>
9350L:	linux-media@vger.kernel.org
9351S:	Supported
9352F:	drivers/media/platform/atmel/atmel-isc.c
9353F:	drivers/media/platform/atmel/atmel-isc-regs.h
9354F:	devicetree/bindings/media/atmel-isc.txt
9355
9356MICROCHIP / ATMEL NAND DRIVER
9357M:	Wenyou Yang <wenyou.yang@microchip.com>
9358M:	Josh Wu <rainyfeeling@outlook.com>
9359L:	linux-mtd@lists.infradead.org
9360S:	Supported
9361F:	drivers/mtd/nand/raw/atmel/*
9362F:	Documentation/devicetree/bindings/mtd/atmel-nand.txt
9363
9364MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
9365M:	Woojung Huh <Woojung.Huh@microchip.com>
9366M:	Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
9367L:	netdev@vger.kernel.org
9368S:	Maintained
9369F:	net/dsa/tag_ksz.c
9370F:	drivers/net/dsa/microchip/*
9371F:	include/linux/platform_data/microchip-ksz.h
9372F:	Documentation/devicetree/bindings/net/dsa/ksz.txt
9373
9374MICROCHIP LAN743X ETHERNET DRIVER
9375M:	Bryan Whitehead <bryan.whitehead@microchip.com>
9376M:	Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
9377L:	netdev@vger.kernel.org
9378S:	Maintained
9379F:	drivers/net/ethernet/microchip/lan743x_*
9380
9381MICROCHIP USB251XB DRIVER
9382M:	Richard Leitner <richard.leitner@skidata.com>
9383L:	linux-usb@vger.kernel.org
9384S:	Maintained
9385F:	drivers/usb/misc/usb251xb.c
9386F:	Documentation/devicetree/bindings/usb/usb251xb.txt
9387
9388MICROSEMI MIPS SOCS
9389M:	Alexandre Belloni <alexandre.belloni@bootlin.com>
9390L:	linux-mips@linux-mips.org
9391S:	Maintained
9392F:	arch/mips/generic/board-ocelot.c
9393F:	arch/mips/configs/generic/board-ocelot.config
9394F:	arch/mips/boot/dts/mscc/
9395F:	Documentation/devicetree/bindings/mips/mscc.txt
9396
9397MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
9398M:	Don Brace <don.brace@microsemi.com>
9399L:	esc.storagedev@microsemi.com
9400L:	linux-scsi@vger.kernel.org
9401S:	Supported
9402F:	drivers/scsi/smartpqi/smartpqi*.[ch]
9403F:	drivers/scsi/smartpqi/Kconfig
9404F:	drivers/scsi/smartpqi/Makefile
9405F:	include/linux/cciss*.h
9406F:	include/uapi/linux/cciss*.h
9407F:	Documentation/scsi/smartpqi.txt
9408
9409MICROSEMI ETHERNET SWITCH DRIVER
9410M:	Alexandre Belloni <alexandre.belloni@bootlin.com>
9411L:	netdev@vger.kernel.org
9412S:	Supported
9413F:	drivers/net/ethernet/mscc/
9414
9415MICROSOFT SURFACE PRO 3 BUTTON DRIVER
9416M:	Chen Yu <yu.c.chen@intel.com>
9417L:	platform-driver-x86@vger.kernel.org
9418S:	Supported
9419F:	drivers/platform/x86/surfacepro3_button.c
9420
9421MICROTEK X6 SCANNER
9422M:	Oliver Neukum <oliver@neukum.org>
9423S:	Maintained
9424F:	drivers/usb/image/microtek.*
9425
9426MIPS
9427M:	Ralf Baechle <ralf@linux-mips.org>
9428M:	Paul Burton <paul.burton@mips.com>
9429M:	James Hogan <jhogan@kernel.org>
9430L:	linux-mips@linux-mips.org
9431W:	http://www.linux-mips.org/
9432T:	git git://git.linux-mips.org/pub/scm/ralf/linux.git
9433T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
9434Q:	http://patchwork.linux-mips.org/project/linux-mips/list/
9435S:	Supported
9436F:	Documentation/devicetree/bindings/mips/
9437F:	Documentation/mips/
9438F:	arch/mips/
9439F:	drivers/platform/mips/
9440
9441MIPS BOSTON DEVELOPMENT BOARD
9442M:	Paul Burton <paul.burton@mips.com>
9443L:	linux-mips@linux-mips.org
9444S:	Maintained
9445F:	Documentation/devicetree/bindings/clock/img,boston-clock.txt
9446F:	arch/mips/boot/dts/img/boston.dts
9447F:	arch/mips/configs/generic/board-boston.config
9448F:	drivers/clk/imgtec/clk-boston.c
9449F:	include/dt-bindings/clock/boston-clock.h
9450
9451MIPS GENERIC PLATFORM
9452M:	Paul Burton <paul.burton@mips.com>
9453L:	linux-mips@linux-mips.org
9454S:	Supported
9455F:	Documentation/devicetree/bindings/power/mti,mips-cpc.txt
9456F:	arch/mips/generic/
9457F:	arch/mips/tools/generic-board-config.sh
9458
9459MIPS/LOONGSON1 ARCHITECTURE
9460M:	Keguang Zhang <keguang.zhang@gmail.com>
9461L:	linux-mips@linux-mips.org
9462S:	Maintained
9463F:	arch/mips/loongson32/
9464F:	arch/mips/include/asm/mach-loongson32/
9465F:	drivers/*/*loongson1*
9466F:	drivers/*/*/*loongson1*
9467
9468MIPS/LOONGSON2 ARCHITECTURE
9469M:	Jiaxun Yang <jiaxun.yang@flygoat.com>
9470L:	linux-mips@linux-mips.org
9471S:	Maintained
9472F:	arch/mips/loongson64/*{2e/2f}*
9473F:	arch/mips/include/asm/mach-loongson64/
9474F:	drivers/*/*loongson2*
9475F:	drivers/*/*/*loongson2*
9476
9477MIPS/LOONGSON3 ARCHITECTURE
9478M:	Huacai Chen <chenhc@lemote.com>
9479L:	linux-mips@linux-mips.org
9480S:	Maintained
9481F:	arch/mips/loongson64/
9482F:	arch/mips/include/asm/mach-loongson64/
9483F:	drivers/platform/mips/cpu_hwmon.c
9484F:	drivers/*/*loongson3*
9485F:	drivers/*/*/*loongson3*
9486
9487MIPS RINT INSTRUCTION EMULATION
9488M:	Aleksandar Markovic <aleksandar.markovic@mips.com>
9489L:	linux-mips@linux-mips.org
9490S:	Supported
9491F:	arch/mips/math-emu/sp_rint.c
9492F:	arch/mips/math-emu/dp_rint.c
9493
9494MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
9495M:	Hans Verkuil <hverkuil@xs4all.nl>
9496L:	linux-media@vger.kernel.org
9497T:	git git://linuxtv.org/media_tree.git
9498W:	https://linuxtv.org
9499S:	Odd Fixes
9500F:	drivers/media/radio/radio-miropcm20*
9501
9502MMP SUPPORT
9503M:	Eric Miao <eric.y.miao@gmail.com>
9504M:	Haojian Zhuang <haojian.zhuang@gmail.com>
9505L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9506T:	git git://github.com/hzhuang1/linux.git
9507T:	git git://git.linaro.org/people/ycmiao/pxa-linux.git
9508S:	Maintained
9509F:	arch/arm/boot/dts/mmp*
9510F:	arch/arm/mach-mmp/
9511
9512MN88472 MEDIA DRIVER
9513M:	Antti Palosaari <crope@iki.fi>
9514L:	linux-media@vger.kernel.org
9515W:	https://linuxtv.org
9516W:	http://palosaari.fi/linux/
9517Q:	http://patchwork.linuxtv.org/project/linux-media/list/
9518S:	Maintained
9519F:	drivers/media/dvb-frontends/mn88472*
9520
9521MN88473 MEDIA DRIVER
9522M:	Antti Palosaari <crope@iki.fi>
9523L:	linux-media@vger.kernel.org
9524W:	https://linuxtv.org
9525W:	http://palosaari.fi/linux/
9526Q:	http://patchwork.linuxtv.org/project/linux-media/list/
9527S:	Maintained
9528F:	drivers/media/dvb-frontends/mn88473*
9529
9530PCI DRIVER FOR MOBIVEIL PCIE IP
9531M:	Subrahmanya Lingappa <l.subrahmanya@mobiveil.co.in>
9532L:	linux-pci@vger.kernel.org
9533S:	Supported
9534F:	Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
9535F:	drivers/pci/controller/pcie-mobiveil.c
9536
9537MODULE SUPPORT
9538M:	Jessica Yu <jeyu@kernel.org>
9539T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
9540S:	Maintained
9541F:	include/linux/module.h
9542F:	kernel/module.c
9543
9544MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
9545W:	http://popies.net/meye/
9546S:	Orphan
9547F:	Documentation/media/v4l-drivers/meye*
9548F:	drivers/media/pci/meye/
9549F:	include/uapi/linux/meye.h
9550
9551MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
9552M:	Jiri Slaby <jirislaby@gmail.com>
9553S:	Maintained
9554F:	Documentation/serial/moxa-smartio
9555F:	drivers/tty/mxser.*
9556
9557MR800 AVERMEDIA USB FM RADIO DRIVER
9558M:	Alexey Klimov <klimov.linux@gmail.com>
9559L:	linux-media@vger.kernel.org
9560T:	git git://linuxtv.org/media_tree.git
9561S:	Maintained
9562F:	drivers/media/radio/radio-mr800.c
9563
9564MRF24J40 IEEE 802.15.4 RADIO DRIVER
9565M:	Alan Ott <alan@signal11.us>
9566L:	linux-wpan@vger.kernel.org
9567S:	Maintained
9568F:	drivers/net/ieee802154/mrf24j40.c
9569F:	Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
9570
9571MSI LAPTOP SUPPORT
9572M:	"Lee, Chun-Yi" <jlee@suse.com>
9573L:	platform-driver-x86@vger.kernel.org
9574S:	Maintained
9575F:	drivers/platform/x86/msi-laptop.c
9576
9577MSI WMI SUPPORT
9578L:	platform-driver-x86@vger.kernel.org
9579S:	Orphan
9580F:	drivers/platform/x86/msi-wmi.c
9581
9582MSI001 MEDIA DRIVER
9583M:	Antti Palosaari <crope@iki.fi>
9584L:	linux-media@vger.kernel.org
9585W:	https://linuxtv.org
9586W:	http://palosaari.fi/linux/
9587Q:	http://patchwork.linuxtv.org/project/linux-media/list/
9588T:	git git://linuxtv.org/anttip/media_tree.git
9589S:	Maintained
9590F:	drivers/media/tuners/msi001*
9591
9592MSI2500 MEDIA DRIVER
9593M:	Antti Palosaari <crope@iki.fi>
9594L:	linux-media@vger.kernel.org
9595W:	https://linuxtv.org
9596W:	http://palosaari.fi/linux/
9597Q:	http://patchwork.linuxtv.org/project/linux-media/list/
9598T:	git git://linuxtv.org/anttip/media_tree.git
9599S:	Maintained
9600F:	drivers/media/usb/msi2500/
9601
9602MSYSTEMS DISKONCHIP G3 MTD DRIVER
9603M:	Robert Jarzmik <robert.jarzmik@free.fr>
9604L:	linux-mtd@lists.infradead.org
9605S:	Maintained
9606F:	drivers/mtd/devices/docg3*
9607
9608MT9M032 APTINA SENSOR DRIVER
9609M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9610L:	linux-media@vger.kernel.org
9611T:	git git://linuxtv.org/media_tree.git
9612S:	Maintained
9613F:	drivers/media/i2c/mt9m032.c
9614F:	include/media/i2c/mt9m032.h
9615
9616MT9P031 APTINA CAMERA SENSOR
9617M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9618L:	linux-media@vger.kernel.org
9619T:	git git://linuxtv.org/media_tree.git
9620S:	Maintained
9621F:	drivers/media/i2c/mt9p031.c
9622F:	include/media/i2c/mt9p031.h
9623
9624MT9T001 APTINA CAMERA SENSOR
9625M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9626L:	linux-media@vger.kernel.org
9627T:	git git://linuxtv.org/media_tree.git
9628S:	Maintained
9629F:	drivers/media/i2c/mt9t001.c
9630F:	include/media/i2c/mt9t001.h
9631
9632MT9T112 APTINA CAMERA SENSOR
9633M:	Jacopo Mondi <jacopo@jmondi.org>
9634L:	linux-media@vger.kernel.org
9635T:	git git://linuxtv.org/media_tree.git
9636S:	Odd Fixes
9637F:	drivers/media/i2c/mt9t112.c
9638F:	include/media/i2c/mt9t112.h
9639
9640MT9V032 APTINA CAMERA SENSOR
9641M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9642L:	linux-media@vger.kernel.org
9643T:	git git://linuxtv.org/media_tree.git
9644S:	Maintained
9645F:	Documentation/devicetree/bindings/media/i2c/mt9v032.txt
9646F:	drivers/media/i2c/mt9v032.c
9647F:	include/media/i2c/mt9v032.h
9648
9649MULTIFUNCTION DEVICES (MFD)
9650M:	Lee Jones <lee.jones@linaro.org>
9651T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
9652S:	Supported
9653F:	Documentation/devicetree/bindings/mfd/
9654F:	drivers/mfd/
9655F:	include/linux/mfd/
9656F:	include/dt-bindings/mfd/
9657
9658MULTIMEDIA CARD (MMC) ETC. OVER SPI
9659S:	Orphan
9660F:	drivers/mmc/host/mmc_spi.c
9661F:	include/linux/spi/mmc_spi.h
9662
9663MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
9664M:	Ulf Hansson <ulf.hansson@linaro.org>
9665L:	linux-mmc@vger.kernel.org
9666T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
9667S:	Maintained
9668F:	Documentation/devicetree/bindings/mmc/
9669F:	drivers/mmc/
9670F:	include/linux/mmc/
9671F:	include/uapi/linux/mmc/
9672
9673MULTIPLEXER SUBSYSTEM
9674M:	Peter Rosin <peda@axentia.se>
9675S:	Maintained
9676F:	Documentation/ABI/testing/sysfs-class-mux*
9677F:	Documentation/devicetree/bindings/mux/
9678F:	include/linux/dt-bindings/mux/
9679F:	include/linux/mux/
9680F:	drivers/mux/
9681
9682MULTITECH MULTIPORT CARD (ISICOM)
9683S:	Orphan
9684F:	drivers/tty/isicom.c
9685F:	include/linux/isicom.h
9686
9687MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
9688M:	Bin Liu <b-liu@ti.com>
9689L:	linux-usb@vger.kernel.org
9690S:	Maintained
9691F:	drivers/usb/musb/
9692
9693MXL5007T MEDIA DRIVER
9694M:	Michael Krufky <mkrufky@linuxtv.org>
9695L:	linux-media@vger.kernel.org
9696W:	https://linuxtv.org
9697W:	http://github.com/mkrufky
9698Q:	http://patchwork.linuxtv.org/project/linux-media/list/
9699T:	git git://linuxtv.org/mkrufky/tuners.git
9700S:	Maintained
9701F:	drivers/media/tuners/mxl5007t.*
9702
9703MXSFB DRM DRIVER
9704M:	Marek Vasut <marex@denx.de>
9705S:	Supported
9706F:	drivers/gpu/drm/mxsfb/
9707F:	Documentation/devicetree/bindings/display/mxsfb.txt
9708
9709MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
9710M:	Chris Lee <christopher.lee@cspi.com>
9711L:	netdev@vger.kernel.org
9712W:	https://www.cspi.com/ethernet-products/support/downloads/
9713S:	Supported
9714F:	drivers/net/ethernet/myricom/myri10ge/
9715
9716NAND FLASH SUBSYSTEM
9717M:	Boris Brezillon <boris.brezillon@bootlin.com>
9718M:	Miquel Raynal <miquel.raynal@bootlin.com>
9719R:	Richard Weinberger <richard@nod.at>
9720L:	linux-mtd@lists.infradead.org
9721W:	http://www.linux-mtd.infradead.org/
9722Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
9723T:	git git://git.infradead.org/linux-mtd.git nand/fixes
9724T:	git git://git.infradead.org/linux-mtd.git nand/next
9725S:	Maintained
9726F:	drivers/mtd/nand/
9727F:	include/linux/mtd/*nand*.h
9728
9729NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
9730M:	Daniel Mack <zonque@gmail.com>
9731S:	Maintained
9732L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
9733W:	http://www.native-instruments.com
9734F:	sound/usb/caiaq/
9735
9736NATSEMI ETHERNET DRIVER (DP8381x)
9737S:	Orphan
9738F:	drivers/net/ethernet/natsemi/natsemi.c
9739
9740NCP FILESYSTEM
9741M:	Petr Vandrovec <petr@vandrovec.name>
9742S:	Obsolete
9743F:	drivers/staging/ncpfs/
9744
9745NCR 5380 SCSI DRIVERS
9746M:	Finn Thain <fthain@telegraphics.com.au>
9747M:	Michael Schmitz <schmitzmic@gmail.com>
9748L:	linux-scsi@vger.kernel.org
9749S:	Maintained
9750F:	Documentation/scsi/g_NCR5380.txt
9751F:	drivers/scsi/NCR5380.*
9752F:	drivers/scsi/arm/cumana_1.c
9753F:	drivers/scsi/arm/oak.c
9754F:	drivers/scsi/atari_scsi.*
9755F:	drivers/scsi/dmx3191d.c
9756F:	drivers/scsi/g_NCR5380.*
9757F:	drivers/scsi/mac_scsi.*
9758F:	drivers/scsi/sun3_scsi.*
9759F:	drivers/scsi/sun3_scsi_vme.c
9760
9761NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
9762M:	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9763L:	linux-scsi@vger.kernel.org
9764S:	Maintained
9765F:	drivers/scsi/NCR_D700.*
9766
9767NCT6775 HARDWARE MONITOR DRIVER
9768M:	Guenter Roeck <linux@roeck-us.net>
9769L:	linux-hwmon@vger.kernel.org
9770S:	Maintained
9771F:	Documentation/hwmon/nct6775
9772F:	drivers/hwmon/nct6775.c
9773
9774NET_FAILOVER MODULE
9775M:	Sridhar Samudrala <sridhar.samudrala@intel.com>
9776L:	netdev@vger.kernel.org
9777S:	Supported
9778F:	driver/net/net_failover.c
9779F:	include/net/net_failover.h
9780F:	Documentation/networking/net_failover.rst
9781
9782NETEFFECT IWARP RNIC DRIVER (IW_NES)
9783M:	Faisal Latif <faisal.latif@intel.com>
9784L:	linux-rdma@vger.kernel.org
9785W:	http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
9786S:	Supported
9787F:	drivers/infiniband/hw/nes/
9788F:	include/uapi/rdma/nes-abi.h
9789
9790NETEM NETWORK EMULATOR
9791M:	Stephen Hemminger <stephen@networkplumber.org>
9792L:	netem@lists.linux-foundation.org (moderated for non-subscribers)
9793S:	Maintained
9794F:	net/sched/sch_netem.c
9795
9796NETERION 10GbE DRIVERS (s2io/vxge)
9797M:	Jon Mason <jdmason@kudzu.us>
9798L:	netdev@vger.kernel.org
9799S:	Supported
9800F:	Documentation/networking/s2io.txt
9801F:	Documentation/networking/vxge.txt
9802F:	drivers/net/ethernet/neterion/
9803
9804NETFILTER
9805M:	Pablo Neira Ayuso <pablo@netfilter.org>
9806M:	Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
9807M:	Florian Westphal <fw@strlen.de>
9808L:	netfilter-devel@vger.kernel.org
9809L:	coreteam@netfilter.org
9810W:	http://www.netfilter.org/
9811W:	http://www.iptables.org/
9812W:	http://www.nftables.org/
9813Q:	http://patchwork.ozlabs.org/project/netfilter-devel/list/
9814T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
9815T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
9816S:	Maintained
9817F:	include/linux/netfilter*
9818F:	include/linux/netfilter/
9819F:	include/net/netfilter/
9820F:	include/uapi/linux/netfilter*
9821F:	include/uapi/linux/netfilter/
9822F:	net/*/netfilter.c
9823F:	net/*/netfilter/
9824F:	net/netfilter/
9825F:	net/bridge/br_netfilter*.c
9826
9827NETROM NETWORK LAYER
9828M:	Ralf Baechle <ralf@linux-mips.org>
9829L:	linux-hams@vger.kernel.org
9830W:	http://www.linux-ax25.org/
9831S:	Maintained
9832F:	include/net/netrom.h
9833F:	include/uapi/linux/netrom.h
9834F:	net/netrom/
9835
9836NETRONOME ETHERNET DRIVERS
9837M:	Jakub Kicinski <jakub.kicinski@netronome.com>
9838L:	oss-drivers@netronome.com
9839S:	Maintained
9840F:	drivers/net/ethernet/netronome/
9841
9842NETWORK BLOCK DEVICE (NBD)
9843M:	Josef Bacik <josef@toxicpanda.com>
9844S:	Maintained
9845L:	linux-block@vger.kernel.org
9846L:	nbd@other.debian.org
9847F:	Documentation/blockdev/nbd.txt
9848F:	drivers/block/nbd.c
9849F:	include/uapi/linux/nbd.h
9850
9851NETWORK DROP MONITOR
9852M:	Neil Horman <nhorman@tuxdriver.com>
9853L:	netdev@vger.kernel.org
9854S:	Maintained
9855W:	https://fedorahosted.org/dropwatch/
9856F:	net/core/drop_monitor.c
9857
9858NETWORKING DRIVERS
9859M:	"David S. Miller" <davem@davemloft.net>
9860L:	netdev@vger.kernel.org
9861W:	http://www.linuxfoundation.org/en/Net
9862Q:	http://patchwork.ozlabs.org/project/netdev/list/
9863T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9864T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9865S:	Odd Fixes
9866F:	Documentation/devicetree/bindings/net/
9867F:	drivers/net/
9868F:	include/linux/if_*
9869F:	include/linux/netdevice.h
9870F:	include/linux/etherdevice.h
9871F:	include/linux/fcdevice.h
9872F:	include/linux/fddidevice.h
9873F:	include/linux/hippidevice.h
9874F:	include/linux/inetdevice.h
9875F:	include/uapi/linux/if_*
9876F:	include/uapi/linux/netdevice.h
9877
9878NETWORKING DRIVERS (WIRELESS)
9879M:	Kalle Valo <kvalo@codeaurora.org>
9880L:	linux-wireless@vger.kernel.org
9881Q:	http://patchwork.kernel.org/project/linux-wireless/list/
9882T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
9883T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
9884S:	Maintained
9885F:	Documentation/devicetree/bindings/net/wireless/
9886F:	drivers/net/wireless/
9887
9888NETWORKING [DSA]
9889M:	Andrew Lunn <andrew@lunn.ch>
9890M:	Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9891M:	Florian Fainelli <f.fainelli@gmail.com>
9892S:	Maintained
9893F:	net/dsa/
9894F:	include/net/dsa.h
9895F:	include/linux/dsa/
9896F:	drivers/net/dsa/
9897
9898NETWORKING [GENERAL]
9899M:	"David S. Miller" <davem@davemloft.net>
9900L:	netdev@vger.kernel.org
9901W:	http://www.linuxfoundation.org/en/Net
9902Q:	http://patchwork.ozlabs.org/project/netdev/list/
9903T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9904T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9905B:	mailto:netdev@vger.kernel.org
9906S:	Maintained
9907F:	net/
9908F:	include/net/
9909F:	include/linux/in.h
9910F:	include/linux/net.h
9911F:	include/linux/netdevice.h
9912F:	include/uapi/linux/in.h
9913F:	include/uapi/linux/net.h
9914F:	include/uapi/linux/netdevice.h
9915F:	include/uapi/linux/net_namespace.h
9916F:	tools/testing/selftests/net/
9917F:	lib/net_utils.c
9918F:	lib/random32.c
9919F:	Documentation/networking/
9920
9921NETWORKING [IPSEC]
9922M:	Steffen Klassert <steffen.klassert@secunet.com>
9923M:	Herbert Xu <herbert@gondor.apana.org.au>
9924M:	"David S. Miller" <davem@davemloft.net>
9925L:	netdev@vger.kernel.org
9926T:	git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
9927T:	git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
9928S:	Maintained
9929F:	net/core/flow.c
9930F:	net/xfrm/
9931F:	net/key/
9932F:	net/ipv4/xfrm*
9933F:	net/ipv4/esp4*
9934F:	net/ipv4/ah4.c
9935F:	net/ipv4/ipcomp.c
9936F:	net/ipv4/ip_vti.c
9937F:	net/ipv6/xfrm*
9938F:	net/ipv6/esp6*
9939F:	net/ipv6/ah6.c
9940F:	net/ipv6/ipcomp6.c
9941F:	net/ipv6/ip6_vti.c
9942F:	include/uapi/linux/xfrm.h
9943F:	include/net/xfrm.h
9944
9945NETWORKING [IPv4/IPv6]
9946M:	"David S. Miller" <davem@davemloft.net>
9947M:	Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9948M:	Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9949L:	netdev@vger.kernel.org
9950T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9951S:	Maintained
9952F:	net/ipv4/
9953F:	net/ipv6/
9954F:	include/net/ip*
9955F:	arch/x86/net/*
9956
9957NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
9958M:	Paul Moore <paul@paul-moore.com>
9959W:	https://github.com/netlabel
9960L:	netdev@vger.kernel.org
9961L:	linux-security-module@vger.kernel.org
9962S:	Maintained
9963F:	Documentation/netlabel/
9964F:	include/net/calipso.h
9965F:	include/net/cipso_ipv4.h
9966F:	include/net/netlabel.h
9967F:	include/uapi/linux/netfilter/xt_SECMARK.h
9968F:	include/uapi/linux/netfilter/xt_CONNSECMARK.h
9969F:	net/netlabel/
9970F:	net/ipv4/cipso_ipv4.c
9971F:	net/ipv6/calipso.c
9972F:	net/netfilter/xt_CONNSECMARK.c
9973F:	net/netfilter/xt_SECMARK.c
9974
9975NETWORKING [TCP]
9976M:	Eric Dumazet <edumazet@google.com>
9977L:	netdev@vger.kernel.org
9978S:	Maintained
9979F:	net/ipv4/tcp*.c
9980F:	net/ipv4/syncookies.c
9981F:	net/ipv6/tcp*.c
9982F:	net/ipv6/syncookies.c
9983F:	include/uapi/linux/tcp.h
9984F:	include/net/tcp.h
9985F:	include/linux/tcp.h
9986F:	include/trace/events/tcp.h
9987
9988NETWORKING [TLS]
9989M:	Boris Pismenny <borisp@mellanox.com>
9990M:	Aviad Yehezkel <aviadye@mellanox.com>
9991M:	Dave Watson <davejwatson@fb.com>
9992L:	netdev@vger.kernel.org
9993S:	Maintained
9994F:	net/tls/*
9995F:	include/uapi/linux/tls.h
9996F:	include/net/tls.h
9997
9998NETWORKING [WIRELESS]
9999L:	linux-wireless@vger.kernel.org
10000Q:	http://patchwork.kernel.org/project/linux-wireless/list/
10001
10002NETDEVSIM
10003M:	Jakub Kicinski <jakub.kicinski@netronome.com>
10004S:	Maintained
10005F:	drivers/net/netdevsim/*
10006
10007NETXEN (1/10) GbE SUPPORT
10008M:	Manish Chopra <manish.chopra@cavium.com>
10009M:	Rahul Verma <rahul.verma@cavium.com>
10010M:	Dept-GELinuxNICDev@cavium.com
10011L:	netdev@vger.kernel.org
10012S:	Supported
10013F:	drivers/net/ethernet/qlogic/netxen/
10014
10015NFC SUBSYSTEM
10016M:	Samuel Ortiz <sameo@linux.intel.com>
10017L:	linux-wireless@vger.kernel.org
10018L:	linux-nfc@lists.01.org (subscribers-only)
10019S:	Supported
10020F:	net/nfc/
10021F:	include/net/nfc/
10022F:	include/uapi/linux/nfc.h
10023F:	drivers/nfc/
10024F:	include/linux/platform_data/nfcmrvl.h
10025F:	include/linux/platform_data/nxp-nci.h
10026F:	Documentation/devicetree/bindings/net/nfc/
10027
10028NFS, SUNRPC, AND LOCKD CLIENTS
10029M:	Trond Myklebust <trond.myklebust@hammerspace.com>
10030M:	Anna Schumaker <anna.schumaker@netapp.com>
10031L:	linux-nfs@vger.kernel.org
10032W:	http://client.linux-nfs.org
10033T:	git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
10034S:	Maintained
10035F:	fs/lockd/
10036F:	fs/nfs/
10037F:	fs/nfs_common/
10038F:	net/sunrpc/
10039F:	include/linux/lockd/
10040F:	include/linux/nfs*
10041F:	include/linux/sunrpc/
10042F:	include/uapi/linux/nfs*
10043F:	include/uapi/linux/sunrpc/
10044
10045NILFS2 FILESYSTEM
10046M:	Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
10047L:	linux-nilfs@vger.kernel.org
10048W:	https://nilfs.sourceforge.io/
10049W:	https://nilfs.osdn.jp/
10050T:	git git://github.com/konis/nilfs2.git
10051S:	Supported
10052F:	Documentation/filesystems/nilfs2.txt
10053F:	fs/nilfs2/
10054F:	include/trace/events/nilfs2.h
10055F:	include/uapi/linux/nilfs2_api.h
10056F:	include/uapi/linux/nilfs2_ondisk.h
10057
10058NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
10059M:	YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
10060W:	http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
10061S:	Maintained
10062F:	Documentation/scsi/NinjaSCSI.txt
10063F:	drivers/scsi/pcmcia/nsp_*
10064
10065NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
10066M:	GOTO Masanori <gotom@debian.or.jp>
10067M:	YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
10068W:	http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
10069S:	Maintained
10070F:	Documentation/scsi/NinjaSCSI.txt
10071F:	drivers/scsi/nsp32*
10072
10073NIOS2 ARCHITECTURE
10074M:	Ley Foon Tan <lftan@altera.com>
10075L:	nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
10076T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
10077S:	Maintained
10078F:	arch/nios2/
10079
10080NOHZ, DYNTICKS SUPPORT
10081M:	Frederic Weisbecker <fweisbec@gmail.com>
10082M:	Thomas Gleixner <tglx@linutronix.de>
10083M:	Ingo Molnar <mingo@kernel.org>
10084L:	linux-kernel@vger.kernel.org
10085T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
10086S:	Maintained
10087F:	kernel/time/tick*.*
10088F:	include/linux/tick.h
10089F:	include/linux/sched/nohz.h
10090
10091NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
10092M:	Pavel Machek <pavel@ucw.cz>
10093M:	Sakari Ailus <sakari.ailus@iki.fi>
10094L:	linux-media@vger.kernel.org
10095S:	Maintained
10096F:	drivers/media/i2c/et8ek8
10097F:	drivers/media/i2c/ad5820.c
10098
10099NOKIA N900 POWER SUPPLY DRIVERS
10100R:	Pali Rohár <pali.rohar@gmail.com>
10101F:	include/linux/power/bq2415x_charger.h
10102F:	include/linux/power/bq27xxx_battery.h
10103F:	include/linux/power/isp1704_charger.h
10104F:	drivers/power/supply/bq2415x_charger.c
10105F:	drivers/power/supply/bq27xxx_battery.c
10106F:	drivers/power/supply/bq27xxx_battery_i2c.c
10107F:	drivers/power/supply/isp1704_charger.c
10108F:	drivers/power/supply/rx51_battery.c
10109
10110NTB AMD DRIVER
10111M:	Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
10112L:	linux-ntb@googlegroups.com
10113S:	Supported
10114F:	drivers/ntb/hw/amd/
10115
10116NTB DRIVER CORE
10117M:	Jon Mason <jdmason@kudzu.us>
10118M:	Dave Jiang <dave.jiang@intel.com>
10119M:	Allen Hubbe <allenbh@gmail.com>
10120L:	linux-ntb@googlegroups.com
10121S:	Supported
10122W:	https://github.com/jonmason/ntb/wiki
10123T:	git git://github.com/jonmason/ntb.git
10124F:	drivers/ntb/
10125F:	drivers/net/ntb_netdev.c
10126F:	include/linux/ntb.h
10127F:	include/linux/ntb_transport.h
10128F:	tools/testing/selftests/ntb/
10129
10130NTB IDT DRIVER
10131M:	Serge Semin <fancer.lancer@gmail.com>
10132L:	linux-ntb@googlegroups.com
10133S:	Supported
10134F:	drivers/ntb/hw/idt/
10135
10136NTB INTEL DRIVER
10137M:	Dave Jiang <dave.jiang@intel.com>
10138L:	linux-ntb@googlegroups.com
10139S:	Supported
10140W:	https://github.com/davejiang/linux/wiki
10141T:	git https://github.com/davejiang/linux.git
10142F:	drivers/ntb/hw/intel/
10143
10144NTFS FILESYSTEM
10145M:	Anton Altaparmakov <anton@tuxera.com>
10146L:	linux-ntfs-dev@lists.sourceforge.net
10147W:	http://www.tuxera.com/
10148T:	git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
10149S:	Supported
10150F:	Documentation/filesystems/ntfs.txt
10151F:	fs/ntfs/
10152
10153NUBUS SUBSYSTEM
10154M:	Finn Thain <fthain@telegraphics.com.au>
10155L:	linux-m68k@lists.linux-m68k.org
10156S:	Maintained
10157F:	arch/*/include/asm/nubus.h
10158F:	drivers/nubus/
10159F:	include/linux/nubus.h
10160F:	include/uapi/linux/nubus.h
10161
10162NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
10163M:	Antonino Daplas <adaplas@gmail.com>
10164L:	linux-fbdev@vger.kernel.org
10165S:	Maintained
10166F:	drivers/video/fbdev/riva/
10167F:	drivers/video/fbdev/nvidia/
10168
10169NVM EXPRESS DRIVER
10170M:	Keith Busch <keith.busch@intel.com>
10171M:	Jens Axboe <axboe@fb.com>
10172M:	Christoph Hellwig <hch@lst.de>
10173M:	Sagi Grimberg <sagi@grimberg.me>
10174L:	linux-nvme@lists.infradead.org
10175T:	git://git.infradead.org/nvme.git
10176W:	http://git.infradead.org/nvme.git
10177S:	Supported
10178F:	drivers/nvme/host/
10179F:	include/linux/nvme.h
10180F:	include/uapi/linux/nvme_ioctl.h
10181
10182NVM EXPRESS FC TRANSPORT DRIVERS
10183M:	James Smart <james.smart@broadcom.com>
10184L:	linux-nvme@lists.infradead.org
10185S:	Supported
10186F:	include/linux/nvme-fc.h
10187F:	include/linux/nvme-fc-driver.h
10188F:	drivers/nvme/host/fc.c
10189F:	drivers/nvme/target/fc.c
10190F:	drivers/nvme/target/fcloop.c
10191
10192NVM EXPRESS TARGET DRIVER
10193M:	Christoph Hellwig <hch@lst.de>
10194M:	Sagi Grimberg <sagi@grimberg.me>
10195L:	linux-nvme@lists.infradead.org
10196T:	git://git.infradead.org/nvme.git
10197W:	http://git.infradead.org/nvme.git
10198S:	Supported
10199F:	drivers/nvme/target/
10200
10201NVMEM FRAMEWORK
10202M:	Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
10203S:	Maintained
10204F:	drivers/nvmem/
10205F:	Documentation/devicetree/bindings/nvmem/
10206F:	Documentation/ABI/stable/sysfs-bus-nvmem
10207F:	include/linux/nvmem-consumer.h
10208F:	include/linux/nvmem-provider.h
10209
10210NXP SGTL5000 DRIVER
10211M:	Fabio Estevam <fabio.estevam@nxp.com>
10212L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
10213S:	Maintained
10214F:	Documentation/devicetree/bindings/sound/sgtl5000.txt
10215F:	sound/soc/codecs/sgtl5000*
10216
10217NXP TDA998X DRM DRIVER
10218M:	Russell King <linux@armlinux.org.uk>
10219S:	Supported
10220T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
10221T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
10222F:	drivers/gpu/drm/i2c/tda998x_drv.c
10223F:	include/drm/i2c/tda998x.h
10224
10225NXP TFA9879 DRIVER
10226M:	Peter Rosin <peda@axentia.se>
10227L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
10228S:	Maintained
10229F:	Documentation/devicetree/bindings/sound/tfa9879.txt
10230F:	sound/soc/codecs/tfa9879*
10231
10232NXP-NCI NFC DRIVER
10233M:	Clément Perrochaud <clement.perrochaud@effinnov.com>
10234R:	Charles Gorand <charles.gorand@effinnov.com>
10235L:	linux-nfc@lists.01.org (moderated for non-subscribers)
10236S:	Supported
10237F:	drivers/nfc/nxp-nci
10238
10239OBJTOOL
10240M:	Josh Poimboeuf <jpoimboe@redhat.com>
10241M:	Peter Zijlstra <peterz@infradead.org>
10242S:	Supported
10243F:	tools/objtool/
10244
10245OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
10246M:	Frederic Barrat <fbarrat@linux.vnet.ibm.com>
10247M:	Andrew Donnellan <andrew.donnellan@au1.ibm.com>
10248L:	linuxppc-dev@lists.ozlabs.org
10249S:	Supported
10250F:	arch/powerpc/platforms/powernv/ocxl.c
10251F:	arch/powerpc/include/asm/pnv-ocxl.h
10252F:	drivers/misc/ocxl/
10253F:	include/misc/ocxl*
10254F:	include/uapi/misc/ocxl.h
10255F:	Documentation/accelerators/ocxl.rst
10256
10257OMAP AUDIO SUPPORT
10258M:	Peter Ujfalusi <peter.ujfalusi@ti.com>
10259M:	Jarkko Nikula <jarkko.nikula@bitmer.com>
10260L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
10261L:	linux-omap@vger.kernel.org
10262S:	Maintained
10263F:	sound/soc/omap/
10264
10265OMAP CLOCK FRAMEWORK SUPPORT
10266M:	Paul Walmsley <paul@pwsan.com>
10267L:	linux-omap@vger.kernel.org
10268S:	Maintained
10269F:	arch/arm/*omap*/*clock*
10270
10271OMAP DEVICE TREE SUPPORT
10272M:	Benoît Cousson <bcousson@baylibre.com>
10273M:	Tony Lindgren <tony@atomide.com>
10274L:	linux-omap@vger.kernel.org
10275L:	devicetree@vger.kernel.org
10276S:	Maintained
10277F:	arch/arm/boot/dts/*omap*
10278F:	arch/arm/boot/dts/*am3*
10279F:	arch/arm/boot/dts/*am4*
10280F:	arch/arm/boot/dts/*am5*
10281F:	arch/arm/boot/dts/*dra7*
10282
10283OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
10284L:	linux-omap@vger.kernel.org
10285L:	linux-fbdev@vger.kernel.org
10286S:	Orphan
10287F:	drivers/video/fbdev/omap2/
10288F:	Documentation/arm/OMAP/DSS
10289
10290OMAP FRAMEBUFFER SUPPORT
10291L:	linux-fbdev@vger.kernel.org
10292L:	linux-omap@vger.kernel.org
10293S:	Orphan
10294F:	drivers/video/fbdev/omap/
10295
10296OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
10297M:	Roger Quadros <rogerq@ti.com>
10298M:	Tony Lindgren <tony@atomide.com>
10299L:	linux-omap@vger.kernel.org
10300S:	Maintained
10301F:	drivers/memory/omap-gpmc.c
10302F:	arch/arm/mach-omap2/*gpmc*
10303
10304OMAP GPIO DRIVER
10305M:	Grygorii Strashko <grygorii.strashko@ti.com>
10306M:	Santosh Shilimkar <ssantosh@kernel.org>
10307M:	Kevin Hilman <khilman@kernel.org>
10308L:	linux-omap@vger.kernel.org
10309S:	Maintained
10310F:	Documentation/devicetree/bindings/gpio/gpio-omap.txt
10311F:	drivers/gpio/gpio-omap.c
10312
10313OMAP HARDWARE SPINLOCK SUPPORT
10314M:	Ohad Ben-Cohen <ohad@wizery.com>
10315L:	linux-omap@vger.kernel.org
10316S:	Maintained
10317F:	drivers/hwspinlock/omap_hwspinlock.c
10318
10319OMAP HS MMC SUPPORT
10320L:	linux-mmc@vger.kernel.org
10321L:	linux-omap@vger.kernel.org
10322S:	Orphan
10323F:	drivers/mmc/host/omap_hsmmc.c
10324
10325OMAP HWMOD DATA
10326M:	Paul Walmsley <paul@pwsan.com>
10327L:	linux-omap@vger.kernel.org
10328S:	Maintained
10329F:	arch/arm/mach-omap2/omap_hwmod*data*
10330
10331OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
10332M:	Benoît Cousson <bcousson@baylibre.com>
10333L:	linux-omap@vger.kernel.org
10334S:	Maintained
10335F:	arch/arm/mach-omap2/omap_hwmod_44xx_data.c
10336
10337OMAP HWMOD SUPPORT
10338M:	Benoît Cousson <bcousson@baylibre.com>
10339M:	Paul Walmsley <paul@pwsan.com>
10340L:	linux-omap@vger.kernel.org
10341S:	Maintained
10342F:	arch/arm/mach-omap2/omap_hwmod.*
10343
10344OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
10345M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10346L:	linux-media@vger.kernel.org
10347S:	Maintained
10348F:	Documentation/devicetree/bindings/media/ti,omap3isp.txt
10349F:	drivers/media/platform/omap3isp/
10350F:	drivers/staging/media/omap4iss/
10351
10352OMAP MMC SUPPORT
10353M:	Jarkko Lavinen <jarkko.lavinen@nokia.com>
10354L:	linux-omap@vger.kernel.org
10355S:	Maintained
10356F:	drivers/mmc/host/omap.c
10357
10358OMAP POWER MANAGEMENT SUPPORT
10359M:	Kevin Hilman <khilman@kernel.org>
10360L:	linux-omap@vger.kernel.org
10361S:	Maintained
10362F:	arch/arm/*omap*/*pm*
10363F:	drivers/cpufreq/omap-cpufreq.c
10364
10365OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
10366M:	Rajendra Nayak <rnayak@codeaurora.org>
10367M:	Paul Walmsley <paul@pwsan.com>
10368L:	linux-omap@vger.kernel.org
10369S:	Maintained
10370F:	arch/arm/mach-omap2/prm*
10371
10372OMAP RANDOM NUMBER GENERATOR SUPPORT
10373M:	Deepak Saxena <dsaxena@plexity.net>
10374S:	Maintained
10375F:	drivers/char/hw_random/omap-rng.c
10376
10377OMAP USB SUPPORT
10378L:	linux-usb@vger.kernel.org
10379L:	linux-omap@vger.kernel.org
10380S:	Orphan
10381F:	drivers/usb/*/*omap*
10382F:	arch/arm/*omap*/usb*
10383
10384OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
10385M:	Mark Jackson <mpfj@newflow.co.uk>
10386L:	linux-omap@vger.kernel.org
10387S:	Maintained
10388F:	arch/arm/boot/dts/am335x-nano.dts
10389
10390OMAP1 SUPPORT
10391M:	Aaro Koskinen <aaro.koskinen@iki.fi>
10392M:	Tony Lindgren <tony@atomide.com>
10393L:	linux-omap@vger.kernel.org
10394Q:	http://patchwork.kernel.org/project/linux-omap/list/
10395T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
10396S:	Maintained
10397F:	arch/arm/mach-omap1/
10398F:	arch/arm/plat-omap/
10399F:	arch/arm/configs/omap1_defconfig
10400F:	drivers/i2c/busses/i2c-omap.c
10401F:	include/linux/platform_data/i2c-omap.h
10402
10403OMAP2+ SUPPORT
10404M:	Tony Lindgren <tony@atomide.com>
10405L:	linux-omap@vger.kernel.org
10406W:	http://www.muru.com/linux/omap/
10407W:	http://linux.omap.com/
10408Q:	http://patchwork.kernel.org/project/linux-omap/list/
10409T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
10410S:	Maintained
10411F:	arch/arm/mach-omap2/
10412F:	arch/arm/plat-omap/
10413F:	arch/arm/configs/omap2plus_defconfig
10414F:	drivers/i2c/busses/i2c-omap.c
10415F:	drivers/irqchip/irq-omap-intc.c
10416F:	drivers/mfd/*omap*.c
10417F:	drivers/mfd/menelaus.c
10418F:	drivers/mfd/palmas.c
10419F:	drivers/mfd/tps65217.c
10420F:	drivers/mfd/tps65218.c
10421F:	drivers/mfd/tps65910.c
10422F:	drivers/mfd/twl-core.[ch]
10423F:	drivers/mfd/twl4030*.c
10424F:	drivers/mfd/twl6030*.c
10425F:	drivers/mfd/twl6040*.c
10426F:	drivers/regulator/palmas-regulator*.c
10427F:	drivers/regulator/pbias-regulator.c
10428F:	drivers/regulator/tps65217-regulator.c
10429F:	drivers/regulator/tps65218-regulator.c
10430F:	drivers/regulator/tps65910-regulator.c
10431F:	drivers/regulator/twl-regulator.c
10432F:	drivers/regulator/twl6030-regulator.c
10433F:	include/linux/platform_data/i2c-omap.h
10434
10435ONION OMEGA2+ BOARD
10436M:	Harvey Hunt <harveyhuntnexus@gmail.com>
10437L:	linux-mips@linux-mips.org
10438S:	Maintained
10439F:	arch/mips/boot/dts/ralink/omega2p.dts
10440
10441OMFS FILESYSTEM
10442M:	Bob Copeland <me@bobcopeland.com>
10443L:	linux-karma-devel@lists.sourceforge.net
10444S:	Maintained
10445F:	Documentation/filesystems/omfs.txt
10446F:	fs/omfs/
10447
10448OMNIKEY CARDMAN 4000 DRIVER
10449M:	Harald Welte <laforge@gnumonks.org>
10450S:	Maintained
10451F:	drivers/char/pcmcia/cm4000_cs.c
10452F:	include/linux/cm4000_cs.h
10453F:	include/uapi/linux/cm4000_cs.h
10454
10455OMNIKEY CARDMAN 4040 DRIVER
10456M:	Harald Welte <laforge@gnumonks.org>
10457S:	Maintained
10458F:	drivers/char/pcmcia/cm4040_cs.*
10459
10460OMNIVISION OV13858 SENSOR DRIVER
10461M:	Sakari Ailus <sakari.ailus@linux.intel.com>
10462L:	linux-media@vger.kernel.org
10463T:	git git://linuxtv.org/media_tree.git
10464S:	Maintained
10465F:	drivers/media/i2c/ov13858.c
10466
10467OMNIVISION OV2685 SENSOR DRIVER
10468M:	Shunqian Zheng <zhengsq@rock-chips.com>
10469L:	linux-media@vger.kernel.org
10470T:	git git://linuxtv.org/media_tree.git
10471S:	Maintained
10472F:	drivers/media/i2c/ov2685.c
10473
10474OMNIVISION OV5640 SENSOR DRIVER
10475M:	Steve Longerbeam <slongerbeam@gmail.com>
10476L:	linux-media@vger.kernel.org
10477T:	git git://linuxtv.org/media_tree.git
10478S:	Maintained
10479F:	drivers/media/i2c/ov5640.c
10480
10481OMNIVISION OV5647 SENSOR DRIVER
10482M:	Luis Oliveira <lolivei@synopsys.com>
10483L:	linux-media@vger.kernel.org
10484T:	git git://linuxtv.org/media_tree.git
10485S:	Maintained
10486F:	drivers/media/i2c/ov5647.c
10487
10488OMNIVISION OV5695 SENSOR DRIVER
10489M:	Shunqian Zheng <zhengsq@rock-chips.com>
10490L:	linux-media@vger.kernel.org
10491T:	git git://linuxtv.org/media_tree.git
10492S:	Maintained
10493F:	drivers/media/i2c/ov5695.c
10494
10495OMNIVISION OV7670 SENSOR DRIVER
10496M:	Jonathan Corbet <corbet@lwn.net>
10497L:	linux-media@vger.kernel.org
10498T:	git git://linuxtv.org/media_tree.git
10499S:	Maintained
10500F:	drivers/media/i2c/ov7670.c
10501F:	Documentation/devicetree/bindings/media/i2c/ov7670.txt
10502
10503OMNIVISION OV772x SENSOR DRIVER
10504M:	Jacopo Mondi <jacopo@jmondi.org>
10505L:	linux-media@vger.kernel.org
10506T:	git git://linuxtv.org/media_tree.git
10507S:	Odd fixes
10508F:	drivers/media/i2c/ov772x.c
10509F:	include/media/i2c/ov772x.h
10510F:	Documentation/devicetree/bindings/media/i2c/ov772x.txt
10511
10512OMNIVISION OV7740 SENSOR DRIVER
10513M:	Wenyou Yang <wenyou.yang@microchip.com>
10514L:	linux-media@vger.kernel.org
10515T:	git git://linuxtv.org/media_tree.git
10516S:	Maintained
10517F:	drivers/media/i2c/ov7740.c
10518F:	Documentation/devicetree/bindings/media/i2c/ov7740.txt
10519
10520OMNIVISION OV9650 SENSOR DRIVER
10521M:	Sakari Ailus <sakari.ailus@linux.intel.com>
10522R:	Akinobu Mita <akinobu.mita@gmail.com>
10523R:	Sylwester Nawrocki <s.nawrocki@samsung.com>
10524L:	linux-media@vger.kernel.org
10525T:	git git://linuxtv.org/media_tree.git
10526S:	Maintained
10527F:	drivers/media/i2c/ov9650.c
10528F:	Documentation/devicetree/bindings/media/i2c/ov9650.txt
10529
10530ONENAND FLASH DRIVER
10531M:	Kyungmin Park <kyungmin.park@samsung.com>
10532L:	linux-mtd@lists.infradead.org
10533S:	Maintained
10534F:	drivers/mtd/nand/onenand/
10535F:	include/linux/mtd/onenand*.h
10536
10537ONSTREAM SCSI TAPE DRIVER
10538M:	Willem Riede <osst@riede.org>
10539L:	osst-users@lists.sourceforge.net
10540L:	linux-scsi@vger.kernel.org
10541S:	Maintained
10542F:	Documentation/scsi/osst.txt
10543F:	drivers/scsi/osst.*
10544F:	drivers/scsi/osst_*.h
10545F:	drivers/scsi/st.h
10546
10547OP-TEE DRIVER
10548M:	Jens Wiklander <jens.wiklander@linaro.org>
10549S:	Maintained
10550F:	drivers/tee/optee/
10551
10552OPA-VNIC DRIVER
10553M:	Dennis Dalessandro <dennis.dalessandro@intel.com>
10554M:	Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
10555L:	linux-rdma@vger.kernel.org
10556S:	Supported
10557F:	drivers/infiniband/ulp/opa_vnic
10558
10559OPEN FIRMWARE AND DEVICE TREE OVERLAYS
10560M:	Pantelis Antoniou <pantelis.antoniou@konsulko.com>
10561M:	Frank Rowand <frowand.list@gmail.com>
10562L:	devicetree@vger.kernel.org
10563S:	Maintained
10564F:	Documentation/devicetree/dynamic-resolution-notes.txt
10565F:	Documentation/devicetree/overlay-notes.txt
10566F:	drivers/of/overlay.c
10567F:	drivers/of/resolver.c
10568K:	of_overlay_notifier_
10569
10570OPEN FIRMWARE AND FLATTENED DEVICE TREE
10571M:	Rob Herring <robh+dt@kernel.org>
10572M:	Frank Rowand <frowand.list@gmail.com>
10573L:	devicetree@vger.kernel.org
10574W:	http://www.devicetree.org/
10575T:	git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10576S:	Maintained
10577F:	drivers/of/
10578F:	include/linux/of*.h
10579F:	scripts/dtc/
10580F:	Documentation/ABI/testing/sysfs-firmware-ofw
10581
10582OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
10583M:	Rob Herring <robh+dt@kernel.org>
10584M:	Mark Rutland <mark.rutland@arm.com>
10585L:	devicetree@vger.kernel.org
10586T:	git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10587Q:	http://patchwork.ozlabs.org/project/devicetree-bindings/list/
10588S:	Maintained
10589F:	Documentation/devicetree/
10590F:	arch/*/boot/dts/
10591F:	include/dt-bindings/
10592
10593OPENCORES I2C BUS DRIVER
10594M:	Peter Korsgaard <jacmet@sunsite.dk>
10595L:	linux-i2c@vger.kernel.org
10596S:	Maintained
10597F:	Documentation/i2c/busses/i2c-ocores
10598F:	drivers/i2c/busses/i2c-ocores.c
10599
10600OPENRISC ARCHITECTURE
10601M:	Jonas Bonn <jonas@southpole.se>
10602M:	Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
10603M:	Stafford Horne <shorne@gmail.com>
10604T:	git git://github.com/openrisc/linux.git
10605L:	openrisc@lists.librecores.org
10606W:	http://openrisc.io
10607S:	Maintained
10608F:	Documentation/devicetree/bindings/openrisc/
10609F:	Documentation/openrisc/
10610F:	arch/openrisc/
10611F:	drivers/irqchip/irq-ompic.c
10612F:	drivers/irqchip/irq-or1k-*
10613
10614OPENVSWITCH
10615M:	Pravin B Shelar <pshelar@ovn.org>
10616L:	netdev@vger.kernel.org
10617L:	dev@openvswitch.org
10618W:	http://openvswitch.org
10619S:	Maintained
10620F:	net/openvswitch/
10621F:	include/uapi/linux/openvswitch.h
10622
10623OPERATING PERFORMANCE POINTS (OPP)
10624M:	Viresh Kumar <vireshk@kernel.org>
10625M:	Nishanth Menon <nm@ti.com>
10626M:	Stephen Boyd <sboyd@kernel.org>
10627L:	linux-pm@vger.kernel.org
10628S:	Maintained
10629T:	git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
10630F:	drivers/opp/
10631F:	include/linux/pm_opp.h
10632F:	Documentation/power/opp.txt
10633F:	Documentation/devicetree/bindings/opp/
10634
10635OPL4 DRIVER
10636M:	Clemens Ladisch <clemens@ladisch.de>
10637L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
10638T:	git git://git.alsa-project.org/alsa-kernel.git
10639S:	Maintained
10640F:	sound/drivers/opl4/
10641
10642OPROFILE
10643M:	Robert Richter <rric@kernel.org>
10644L:	oprofile-list@lists.sf.net
10645S:	Maintained
10646F:	arch/*/include/asm/oprofile*.h
10647F:	arch/*/oprofile/
10648F:	drivers/oprofile/
10649F:	include/linux/oprofile.h
10650
10651ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
10652M:	Mark Fasheh <mark@fasheh.com>
10653M:	Joel Becker <jlbec@evilplan.org>
10654L:	ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
10655W:	http://ocfs2.wiki.kernel.org
10656S:	Supported
10657F:	Documentation/filesystems/ocfs2.txt
10658F:	Documentation/filesystems/dlmfs.txt
10659F:	fs/ocfs2/
10660
10661ORANGEFS FILESYSTEM
10662M:	Mike Marshall <hubcap@omnibond.com>
10663R:	Martin Brandenburg <martin@omnibond.com>
10664L:	devel@lists.orangefs.org
10665T:	git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
10666S:	Supported
10667F:	fs/orangefs/
10668F:	Documentation/filesystems/orangefs.txt
10669
10670ORINOCO DRIVER
10671L:	linux-wireless@vger.kernel.org
10672W:	http://wireless.kernel.org/en/users/Drivers/orinoco
10673W:	http://www.nongnu.org/orinoco/
10674S:	Orphan
10675F:	drivers/net/wireless/intersil/orinoco/
10676
10677OSD LIBRARY and FILESYSTEM
10678M:	Boaz Harrosh <ooo@electrozaur.com>
10679S:	Maintained
10680F:	drivers/scsi/osd/
10681F:	include/scsi/osd_*
10682F:	fs/exofs/
10683
10684OV2659 OMNIVISION SENSOR DRIVER
10685M:	"Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10686L:	linux-media@vger.kernel.org
10687W:	https://linuxtv.org
10688Q:	http://patchwork.linuxtv.org/project/linux-media/list/
10689T:	git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10690S:	Maintained
10691F:	drivers/media/i2c/ov2659.c
10692F:	include/media/i2c/ov2659.h
10693
10694OVERLAY FILESYSTEM
10695M:	Miklos Szeredi <miklos@szeredi.hu>
10696L:	linux-unionfs@vger.kernel.org
10697T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
10698S:	Supported
10699F:	fs/overlayfs/
10700F:	Documentation/filesystems/overlayfs.txt
10701
10702P54 WIRELESS DRIVER
10703M:	Christian Lamparter <chunkeey@googlemail.com>
10704L:	linux-wireless@vger.kernel.org
10705W:	http://wireless.kernel.org/en/users/Drivers/p54
10706S:	Maintained
10707F:	drivers/net/wireless/intersil/p54/
10708
10709PA SEMI ETHERNET DRIVER
10710L:	netdev@vger.kernel.org
10711S:	Orphan
10712F:	drivers/net/ethernet/pasemi/*
10713
10714PA SEMI SMBUS DRIVER
10715L:	linux-i2c@vger.kernel.org
10716S:	Orphan
10717F:	drivers/i2c/busses/i2c-pasemi.c
10718
10719PADATA PARALLEL EXECUTION MECHANISM
10720M:	Steffen Klassert <steffen.klassert@secunet.com>
10721L:	linux-crypto@vger.kernel.org
10722S:	Maintained
10723F:	kernel/padata.c
10724F:	include/linux/padata.h
10725F:	Documentation/padata.txt
10726
10727PANASONIC LAPTOP ACPI EXTRAS DRIVER
10728M:	Harald Welte <laforge@gnumonks.org>
10729L:	platform-driver-x86@vger.kernel.org
10730S:	Maintained
10731F:	drivers/platform/x86/panasonic-laptop.c
10732
10733PARALLEL LCD/KEYPAD PANEL DRIVER
10734M:	Willy Tarreau <willy@haproxy.com>
10735M:	Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
10736S:	Odd Fixes
10737F:	Documentation/auxdisplay/lcd-panel-cgram.txt
10738F:	drivers/misc/panel.c
10739
10740PARALLEL PORT SUBSYSTEM
10741M:	Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10742M:	Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
10743L:	linux-parport@lists.infradead.org (subscribers-only)
10744S:	Maintained
10745F:	drivers/parport/
10746F:	include/linux/parport*.h
10747F:	drivers/char/ppdev.c
10748F:	include/uapi/linux/ppdev.h
10749F:	Documentation/parport*.txt
10750
10751PARAVIRT_OPS INTERFACE
10752M:	Juergen Gross <jgross@suse.com>
10753M:	Alok Kataria <akataria@vmware.com>
10754L:	virtualization@lists.linux-foundation.org
10755S:	Supported
10756F:	Documentation/virtual/paravirt_ops.txt
10757F:	arch/*/kernel/paravirt*
10758F:	arch/*/include/asm/paravirt*.h
10759F:	include/linux/hypervisor.h
10760
10761PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
10762M:	Tim Waugh <tim@cyberelk.net>
10763L:	linux-parport@lists.infradead.org (subscribers-only)
10764S:	Maintained
10765F:	Documentation/blockdev/paride.txt
10766F:	drivers/block/paride/
10767
10768PARISC ARCHITECTURE
10769M:	"James E.J. Bottomley" <jejb@parisc-linux.org>
10770M:	Helge Deller <deller@gmx.de>
10771L:	linux-parisc@vger.kernel.org
10772W:	http://www.parisc-linux.org/
10773Q:	http://patchwork.kernel.org/project/linux-parisc/list/
10774T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
10775T:	git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
10776S:	Maintained
10777F:	arch/parisc/
10778F:	Documentation/parisc/
10779F:	drivers/parisc/
10780F:	drivers/char/agp/parisc-agp.c
10781F:	drivers/input/serio/gscps2.c
10782F:	drivers/parport/parport_gsc.*
10783F:	drivers/tty/serial/8250/8250_gsc.c
10784F:	drivers/video/fbdev/sti*
10785F:	drivers/video/console/sti*
10786F:	drivers/video/logo/logo_parisc*
10787
10788PARMAN
10789M:	Jiri Pirko <jiri@mellanox.com>
10790L:	netdev@vger.kernel.org
10791S:	Supported
10792F:	lib/parman.c
10793F:	lib/test_parman.c
10794F:	include/linux/parman.h
10795
10796PC87360 HARDWARE MONITORING DRIVER
10797M:	Jim Cromie <jim.cromie@gmail.com>
10798L:	linux-hwmon@vger.kernel.org
10799S:	Maintained
10800F:	Documentation/hwmon/pc87360
10801F:	drivers/hwmon/pc87360.c
10802
10803PC8736x GPIO DRIVER
10804M:	Jim Cromie <jim.cromie@gmail.com>
10805S:	Maintained
10806F:	drivers/char/pc8736x_gpio.c
10807
10808PC87427 HARDWARE MONITORING DRIVER
10809M:	Jean Delvare <jdelvare@suse.com>
10810L:	linux-hwmon@vger.kernel.org
10811S:	Maintained
10812F:	Documentation/hwmon/pc87427
10813F:	drivers/hwmon/pc87427.c
10814
10815PCA9532 LED DRIVER
10816M:	Riku Voipio <riku.voipio@iki.fi>
10817S:	Maintained
10818F:	drivers/leds/leds-pca9532.c
10819F:	include/linux/leds-pca9532.h
10820
10821PCA9541 I2C BUS MASTER SELECTOR DRIVER
10822M:	Guenter Roeck <linux@roeck-us.net>
10823L:	linux-i2c@vger.kernel.org
10824S:	Maintained
10825F:	drivers/i2c/muxes/i2c-mux-pca9541.c
10826
10827PCDP - PRIMARY CONSOLE AND DEBUG PORT
10828M:	Khalid Aziz <khalid@gonehiking.org>
10829S:	Maintained
10830F:	drivers/firmware/pcdp.*
10831
10832PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
10833M:	Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10834L:	linux-pci@vger.kernel.org
10835L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10836S:	Maintained
10837F:	Documentation/devicetree/bindings/pci/aardvark-pci.txt
10838F:	drivers/pci/controller/pci-aardvark.c
10839
10840PCI DRIVER FOR ALTERA PCIE IP
10841M:	Ley Foon Tan <lftan@altera.com>
10842L:	rfi@lists.rocketboards.org (moderated for non-subscribers)
10843L:	linux-pci@vger.kernel.org
10844S:	Supported
10845F:	Documentation/devicetree/bindings/pci/altera-pcie.txt
10846F:	drivers/pci/controller/pcie-altera.c
10847
10848PCI DRIVER FOR APPLIEDMICRO XGENE
10849M:	Tanmay Inamdar <tinamdar@apm.com>
10850L:	linux-pci@vger.kernel.org
10851L:	linux-arm-kernel@lists.infradead.org
10852S:	Maintained
10853F:	Documentation/devicetree/bindings/pci/xgene-pci.txt
10854F:	drivers/pci/controller/pci-xgene.c
10855
10856PCI DRIVER FOR ARM VERSATILE PLATFORM
10857M:	Rob Herring <robh@kernel.org>
10858L:	linux-pci@vger.kernel.org
10859L:	linux-arm-kernel@lists.infradead.org
10860S:	Maintained
10861F:	Documentation/devicetree/bindings/pci/versatile.txt
10862F:	drivers/pci/controller/pci-versatile.c
10863
10864PCI DRIVER FOR ARMADA 8K
10865M:	Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10866L:	linux-pci@vger.kernel.org
10867L:	linux-arm-kernel@lists.infradead.org
10868S:	Maintained
10869F:	Documentation/devicetree/bindings/pci/pci-armada8k.txt
10870F:	drivers/pci/controller/dwc/pcie-armada8k.c
10871
10872PCI DRIVER FOR CADENCE PCIE IP
10873M:	Alan Douglas <adouglas@cadence.com>
10874L:	linux-pci@vger.kernel.org
10875S:	Maintained
10876F:	Documentation/devicetree/bindings/pci/cdns,*.txt
10877F:	drivers/pci/controller/pcie-cadence*
10878
10879PCI DRIVER FOR FREESCALE LAYERSCAPE
10880M:	Minghuan Lian <minghuan.Lian@nxp.com>
10881M:	Mingkai Hu <mingkai.hu@nxp.com>
10882M:	Roy Zang <roy.zang@nxp.com>
10883L:	linuxppc-dev@lists.ozlabs.org
10884L:	linux-pci@vger.kernel.org
10885L:	linux-arm-kernel@lists.infradead.org
10886S:	Maintained
10887F:	drivers/pci/controller/dwc/*layerscape*
10888
10889PCI DRIVER FOR GENERIC OF HOSTS
10890M:	Will Deacon <will.deacon@arm.com>
10891L:	linux-pci@vger.kernel.org
10892L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10893S:	Maintained
10894F:	Documentation/devicetree/bindings/pci/host-generic-pci.txt
10895F:	drivers/pci/controller/pci-host-common.c
10896F:	drivers/pci/controller/pci-host-generic.c
10897
10898PCI DRIVER FOR IMX6
10899M:	Richard Zhu <hongxing.zhu@nxp.com>
10900M:	Lucas Stach <l.stach@pengutronix.de>
10901L:	linux-pci@vger.kernel.org
10902L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10903S:	Maintained
10904F:	Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
10905F:	drivers/pci/controller/dwc/*imx6*
10906
10907PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
10908M:	Keith Busch <keith.busch@intel.com>
10909M:	Jonathan Derrick <jonathan.derrick@intel.com>
10910L:	linux-pci@vger.kernel.org
10911S:	Supported
10912F:	drivers/pci/controller/vmd.c
10913
10914PCI DRIVER FOR MICROSEMI SWITCHTEC
10915M:	Kurt Schwemmer <kurt.schwemmer@microsemi.com>
10916M:	Logan Gunthorpe <logang@deltatee.com>
10917L:	linux-pci@vger.kernel.org
10918S:	Maintained
10919F:	Documentation/switchtec.txt
10920F:	Documentation/ABI/testing/sysfs-class-switchtec
10921F:	drivers/pci/switch/switchtec*
10922F:	include/uapi/linux/switchtec_ioctl.h
10923F:	include/linux/switchtec.h
10924F:	drivers/ntb/hw/mscc/
10925
10926PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
10927M:	Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10928M:	Jason Cooper <jason@lakedaemon.net>
10929L:	linux-pci@vger.kernel.org
10930L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10931S:	Maintained
10932F:	drivers/pci/controller/*mvebu*
10933
10934PCI DRIVER FOR NVIDIA TEGRA
10935M:	Thierry Reding <thierry.reding@gmail.com>
10936L:	linux-tegra@vger.kernel.org
10937L:	linux-pci@vger.kernel.org
10938S:	Supported
10939F:	Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
10940F:	drivers/pci/controller/pci-tegra.c
10941
10942PCI DRIVER FOR RENESAS R-CAR
10943M:	Simon Horman <horms@verge.net.au>
10944L:	linux-pci@vger.kernel.org
10945L:	linux-renesas-soc@vger.kernel.org
10946S:	Maintained
10947F:	drivers/pci/controller/*rcar*
10948
10949PCI DRIVER FOR SAMSUNG EXYNOS
10950M:	Jingoo Han <jingoohan1@gmail.com>
10951L:	linux-pci@vger.kernel.org
10952L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10953L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10954S:	Maintained
10955F:	drivers/pci/controller/dwc/pci-exynos.c
10956
10957PCI DRIVER FOR SYNOPSYS DESIGNWARE
10958M:	Jingoo Han <jingoohan1@gmail.com>
10959M:	Joao Pinto <Joao.Pinto@synopsys.com>
10960L:	linux-pci@vger.kernel.org
10961S:	Maintained
10962F:	Documentation/devicetree/bindings/pci/designware-pcie.txt
10963F:	drivers/pci/controller/dwc/*designware*
10964
10965PCI DRIVER FOR TI DRA7XX
10966M:	Kishon Vijay Abraham I <kishon@ti.com>
10967L:	linux-omap@vger.kernel.org
10968L:	linux-pci@vger.kernel.org
10969S:	Supported
10970F:	Documentation/devicetree/bindings/pci/ti-pci.txt
10971F:	drivers/pci/controller/dwc/pci-dra7xx.c
10972
10973PCI DRIVER FOR TI KEYSTONE
10974M:	Murali Karicheri <m-karicheri2@ti.com>
10975L:	linux-pci@vger.kernel.org
10976L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10977S:	Maintained
10978F:	drivers/pci/controller/dwc/*keystone*
10979
10980PCI ENDPOINT SUBSYSTEM
10981M:	Kishon Vijay Abraham I <kishon@ti.com>
10982M:	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10983L:	linux-pci@vger.kernel.org
10984T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
10985S:	Supported
10986F:	drivers/pci/endpoint/
10987F:	drivers/misc/pci_endpoint_test.c
10988F:	tools/pci/
10989
10990PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
10991M:	Russell Currey <ruscur@russell.cc>
10992L:	linuxppc-dev@lists.ozlabs.org
10993S:	Supported
10994F:	Documentation/powerpc/eeh-pci-error-recovery.txt
10995F:	arch/powerpc/kernel/eeh*.c
10996F:	arch/powerpc/platforms/*/eeh*.c
10997F:	arch/powerpc/include/*/eeh*.h
10998
10999PCI ERROR RECOVERY
11000M:	Linas Vepstas <linasvepstas@gmail.com>
11001L:	linux-pci@vger.kernel.org
11002S:	Supported
11003F:	Documentation/PCI/pci-error-recovery.txt
11004
11005PCI MSI DRIVER FOR ALTERA MSI IP
11006M:	Ley Foon Tan <lftan@altera.com>
11007L:	rfi@lists.rocketboards.org (moderated for non-subscribers)
11008L:	linux-pci@vger.kernel.org
11009S:	Supported
11010F:	Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
11011F:	drivers/pci/controller/pcie-altera-msi.c
11012
11013PCI MSI DRIVER FOR APPLIEDMICRO XGENE
11014M:	Duc Dang <dhdang@apm.com>
11015L:	linux-pci@vger.kernel.org
11016L:	linux-arm-kernel@lists.infradead.org
11017S:	Maintained
11018F:	Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
11019F:	drivers/pci/controller/pci-xgene-msi.c
11020
11021PCI SUBSYSTEM
11022M:	Bjorn Helgaas <bhelgaas@google.com>
11023L:	linux-pci@vger.kernel.org
11024Q:	http://patchwork.ozlabs.org/project/linux-pci/list/
11025T:	git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
11026S:	Supported
11027F:	Documentation/devicetree/bindings/pci/
11028F:	Documentation/PCI/
11029F:	drivers/acpi/pci*
11030F:	drivers/pci/
11031F:	include/asm-generic/pci*
11032F:	include/linux/pci*
11033F:	include/linux/of_pci.h
11034F:	include/uapi/linux/pci*
11035F:	lib/pci*
11036F:	arch/x86/pci/
11037F:	arch/x86/kernel/quirks.c
11038
11039PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
11040M:	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
11041L:	linux-pci@vger.kernel.org
11042Q:	http://patchwork.ozlabs.org/project/linux-pci/list/
11043T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
11044S:	Supported
11045F:	drivers/pci/controller/
11046
11047PCIE DRIVER FOR AXIS ARTPEC
11048M:	Jesper Nilsson <jesper.nilsson@axis.com>
11049L:	linux-arm-kernel@axis.com
11050L:	linux-pci@vger.kernel.org
11051S:	Maintained
11052F:	Documentation/devicetree/bindings/pci/axis,artpec*
11053F:	drivers/pci/controller/dwc/*artpec*
11054
11055PCIE DRIVER FOR CAVIUM THUNDERX
11056M:	David Daney <david.daney@cavium.com>
11057L:	linux-pci@vger.kernel.org
11058L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11059S:	Supported
11060F:	Documentation/devicetree/bindings/pci/pci-thunder-*
11061F:	drivers/pci/controller/pci-thunder-*
11062
11063PCIE DRIVER FOR HISILICON
11064M:	Zhou Wang <wangzhou1@hisilicon.com>
11065L:	linux-pci@vger.kernel.org
11066S:	Maintained
11067F:	Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
11068F:	drivers/pci/controller/dwc/pcie-hisi.c
11069
11070PCIE DRIVER FOR HISILICON KIRIN
11071M:	Xiaowei Song <songxiaowei@hisilicon.com>
11072M:	Binghui Wang <wangbinghui@hisilicon.com>
11073L:	linux-pci@vger.kernel.org
11074S:	Maintained
11075F:	Documentation/devicetree/bindings/pci/kirin-pcie.txt
11076F:	drivers/pci/controller/dwc/pcie-kirin.c
11077
11078PCIE DRIVER FOR HISILICON STB
11079M:	Jianguo Sun <sunjianguo1@huawei.com>
11080M:	Shawn Guo <shawn.guo@linaro.org>
11081L:	linux-pci@vger.kernel.org
11082S:	Maintained
11083F:	Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
11084F:	drivers/pci/controller/dwc/pcie-histb.c
11085
11086PCIE DRIVER FOR MEDIATEK
11087M:	Ryder Lee <ryder.lee@mediatek.com>
11088L:	linux-pci@vger.kernel.org
11089L:	linux-mediatek@lists.infradead.org
11090S:	Supported
11091F:	Documentation/devicetree/bindings/pci/mediatek*
11092F:	drivers/pci/controller/*mediatek*
11093
11094PCIE DRIVER FOR QUALCOMM MSM
11095M:	Stanimir Varbanov <svarbanov@mm-sol.com>
11096L:	linux-pci@vger.kernel.org
11097L:	linux-arm-msm@vger.kernel.org
11098S:	Maintained
11099F:	drivers/pci/controller/dwc/*qcom*
11100
11101PCIE DRIVER FOR ROCKCHIP
11102M:	Shawn Lin <shawn.lin@rock-chips.com>
11103L:	linux-pci@vger.kernel.org
11104L:	linux-rockchip@lists.infradead.org
11105S:	Maintained
11106F:	Documentation/devicetree/bindings/pci/rockchip-pcie*
11107F:	drivers/pci/controller/pcie-rockchip*
11108
11109PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
11110M:	Linus Walleij <linus.walleij@linaro.org>
11111L:	linux-pci@vger.kernel.org
11112S:	Maintained
11113F:	Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
11114F:	drivers/pci/controller/pci-v3-semi.c
11115
11116PCIE DRIVER FOR ST SPEAR13XX
11117M:	Pratyush Anand <pratyush.anand@gmail.com>
11118L:	linux-pci@vger.kernel.org
11119S:	Maintained
11120F:	drivers/pci/controller/dwc/*spear*
11121
11122PCMCIA SUBSYSTEM
11123M:	Dominik Brodowski <linux@dominikbrodowski.net>
11124T:	git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
11125S:	Odd Fixes
11126F:	Documentation/pcmcia/
11127F:	tools/pcmcia/
11128F:	drivers/pcmcia/
11129F:	include/pcmcia/
11130
11131PCNET32 NETWORK DRIVER
11132M:	Don Fry <pcnet32@frontier.com>
11133L:	netdev@vger.kernel.org
11134S:	Maintained
11135F:	drivers/net/ethernet/amd/pcnet32.c
11136
11137PCRYPT PARALLEL CRYPTO ENGINE
11138M:	Steffen Klassert <steffen.klassert@secunet.com>
11139L:	linux-crypto@vger.kernel.org
11140S:	Maintained
11141F:	crypto/pcrypt.c
11142F:	include/crypto/pcrypt.h
11143
11144PEAQ WMI HOTKEYS DRIVER
11145M:	Hans de Goede <hdegoede@redhat.com>
11146L:	platform-driver-x86@vger.kernel.org
11147S:	Maintained
11148F:	drivers/platform/x86/peaq-wmi.c
11149
11150PER-CPU MEMORY ALLOCATOR
11151M:	Tejun Heo <tj@kernel.org>
11152M:	Christoph Lameter <cl@linux.com>
11153M:	Dennis Zhou <dennisszhou@gmail.com>
11154T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
11155S:	Maintained
11156F:	include/linux/percpu*.h
11157F:	mm/percpu*.c
11158F:	arch/*/include/asm/percpu.h
11159
11160PER-TASK DELAY ACCOUNTING
11161M:	Balbir Singh <bsingharora@gmail.com>
11162S:	Maintained
11163F:	include/linux/delayacct.h
11164F:	kernel/delayacct.c
11165
11166PERFORMANCE EVENTS SUBSYSTEM
11167M:	Peter Zijlstra <peterz@infradead.org>
11168M:	Ingo Molnar <mingo@redhat.com>
11169M:	Arnaldo Carvalho de Melo <acme@kernel.org>
11170R:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
11171R:	Jiri Olsa <jolsa@redhat.com>
11172R:	Namhyung Kim <namhyung@kernel.org>
11173L:	linux-kernel@vger.kernel.org
11174T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11175S:	Supported
11176F:	kernel/events/*
11177F:	include/linux/perf_event.h
11178F:	include/uapi/linux/perf_event.h
11179F:	arch/*/kernel/perf_event*.c
11180F:	arch/*/kernel/*/perf_event*.c
11181F:	arch/*/kernel/*/*/perf_event*.c
11182F:	arch/*/include/asm/perf_event.h
11183F:	arch/*/kernel/perf_callchain.c
11184F:	arch/*/events/*
11185F:	tools/perf/
11186
11187PERSONALITY HANDLING
11188M:	Christoph Hellwig <hch@infradead.org>
11189L:	linux-abi-devel@lists.sourceforge.net
11190S:	Maintained
11191F:	include/linux/personality.h
11192F:	include/uapi/linux/personality.h
11193
11194PHONET PROTOCOL
11195M:	Remi Denis-Courmont <courmisch@gmail.com>
11196S:	Supported
11197F:	Documentation/networking/phonet.txt
11198F:	include/linux/phonet.h
11199F:	include/net/phonet/
11200F:	include/uapi/linux/phonet.h
11201F:	net/phonet/
11202
11203PHRAM MTD DRIVER
11204M:	Joern Engel <joern@lazybastard.org>
11205L:	linux-mtd@lists.infradead.org
11206S:	Maintained
11207F:	drivers/mtd/devices/phram.c
11208
11209PICOLCD HID DRIVER
11210M:	Bruno Prémont <bonbons@linux-vserver.org>
11211L:	linux-input@vger.kernel.org
11212S:	Maintained
11213F:	drivers/hid/hid-picolcd*
11214
11215PICOXCELL SUPPORT
11216M:	Jamie Iles <jamie@jamieiles.com>
11217L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11218T:	git git://github.com/jamieiles/linux-2.6-ji.git
11219S:	Supported
11220F:	arch/arm/boot/dts/picoxcell*
11221F:	arch/arm/mach-picoxcell/
11222F:	drivers/crypto/picoxcell*
11223
11224PIN CONTROL SUBSYSTEM
11225M:	Linus Walleij <linus.walleij@linaro.org>
11226L:	linux-gpio@vger.kernel.org
11227T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
11228S:	Maintained
11229F:	Documentation/devicetree/bindings/pinctrl/
11230F:	Documentation/driver-api/pinctl.rst
11231F:	drivers/pinctrl/
11232F:	include/linux/pinctrl/
11233
11234PIN CONTROLLER - ATMEL AT91
11235M:	Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
11236L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11237S:	Maintained
11238F:	drivers/pinctrl/pinctrl-at91.*
11239
11240PIN CONTROLLER - ATMEL AT91 PIO4
11241M:	Ludovic Desroches <ludovic.desroches@microchip.com>
11242L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11243L:	linux-gpio@vger.kernel.org
11244S:	Supported
11245F:	drivers/pinctrl/pinctrl-at91-pio4.*
11246
11247PIN CONTROLLER - FREESCALE
11248M:	Dong Aisheng <aisheng.dong@nxp.com>
11249M:	Fabio Estevam <festevam@gmail.com>
11250M:	Shawn Guo <shawnguo@kernel.org>
11251M:	Stefan Agner <stefan@agner.ch>
11252R:	Pengutronix Kernel Team <kernel@pengutronix.de>
11253L:	linux-gpio@vger.kernel.org
11254S:	Maintained
11255F:	drivers/pinctrl/freescale/
11256F:	Documentation/devicetree/bindings/pinctrl/fsl,*
11257
11258PIN CONTROLLER - INTEL
11259M:	Mika Westerberg <mika.westerberg@linux.intel.com>
11260M:	Heikki Krogerus <heikki.krogerus@linux.intel.com>
11261S:	Maintained
11262F:	drivers/pinctrl/intel/
11263
11264PIN CONTROLLER - MEDIATEK
11265M:	Sean Wang <sean.wang@mediatek.com>
11266L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11267S:	Maintained
11268F:	Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
11269F:	Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
11270F:	drivers/pinctrl/mediatek/mtk-eint.*
11271F:	drivers/pinctrl/mediatek/pinctrl-mtk-common.*
11272F:	drivers/pinctrl/mediatek/pinctrl-mt2701.c
11273F:	drivers/pinctrl/mediatek/pinctrl-mt7622.c
11274
11275PIN CONTROLLER - QUALCOMM
11276M:	Bjorn Andersson <bjorn.andersson@linaro.org>
11277S:	Maintained
11278L:	linux-arm-msm@vger.kernel.org
11279F:	Documentation/devicetree/bindings/pinctrl/qcom,*.txt
11280F:	drivers/pinctrl/qcom/
11281
11282PIN CONTROLLER - RENESAS
11283M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11284M:	Geert Uytterhoeven <geert+renesas@glider.be>
11285L:	linux-renesas-soc@vger.kernel.org
11286T:	git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
11287S:	Maintained
11288F:	drivers/pinctrl/sh-pfc/
11289
11290PIN CONTROLLER - SAMSUNG
11291M:	Tomasz Figa <tomasz.figa@gmail.com>
11292M:	Krzysztof Kozlowski <krzk@kernel.org>
11293M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
11294L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11295L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11296Q:	https://patchwork.kernel.org/project/linux-samsung-soc/list/
11297T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
11298S:	Maintained
11299F:	drivers/pinctrl/samsung/
11300F:	include/dt-bindings/pinctrl/samsung.h
11301F:	Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
11302
11303PIN CONTROLLER - SINGLE
11304M:	Tony Lindgren <tony@atomide.com>
11305M:	Haojian Zhuang <haojian.zhuang@linaro.org>
11306L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11307L:	linux-omap@vger.kernel.org
11308S:	Maintained
11309F:	drivers/pinctrl/pinctrl-single.c
11310
11311PIN CONTROLLER - ST SPEAR
11312M:	Viresh Kumar <vireshk@kernel.org>
11313L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11314W:	http://www.st.com/spear
11315S:	Maintained
11316F:	drivers/pinctrl/spear/
11317
11318PISTACHIO SOC SUPPORT
11319M:	James Hartley <james.hartley@sondrel.com>
11320L:	linux-mips@linux-mips.org
11321S:	Odd Fixes
11322F:	arch/mips/pistachio/
11323F:	arch/mips/include/asm/mach-pistachio/
11324F:	arch/mips/boot/dts/img/pistachio*
11325F:	arch/mips/configs/pistachio*_defconfig
11326
11327PKTCDVD DRIVER
11328S:	Orphan
11329M:	linux-block@vger.kernel.org
11330F:	drivers/block/pktcdvd.c
11331F:	include/linux/pktcdvd.h
11332F:	include/uapi/linux/pktcdvd.h
11333
11334PKUNITY SOC DRIVERS
11335M:	Guan Xuetao <gxt@pku.edu.cn>
11336W:	http://mprc.pku.edu.cn/~guanxuetao/linux
11337S:	Maintained
11338T:	git git://github.com/gxt/linux.git
11339F:	drivers/input/serio/i8042-unicore32io.h
11340F:	drivers/i2c/busses/i2c-puv3.c
11341F:	drivers/video/fbdev/fb-puv3.c
11342F:	drivers/rtc/rtc-puv3.c
11343
11344PMBUS HARDWARE MONITORING DRIVERS
11345M:	Guenter Roeck <linux@roeck-us.net>
11346L:	linux-hwmon@vger.kernel.org
11347W:	http://hwmon.wiki.kernel.org/
11348W:	http://www.roeck-us.net/linux/drivers/
11349T:	git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
11350S:	Maintained
11351F:	Documentation/hwmon/pmbus
11352F:	drivers/hwmon/pmbus/
11353F:	include/linux/pmbus.h
11354
11355PMC SIERRA MaxRAID DRIVER
11356L:	linux-scsi@vger.kernel.org
11357W:	http://www.pmc-sierra.com/
11358S:	Orphan
11359F:	drivers/scsi/pmcraid.*
11360
11361PMC SIERRA PM8001 DRIVER
11362M:	Jack Wang <jinpu.wang@profitbricks.com>
11363M:	lindar_liu@usish.com
11364L:	linux-scsi@vger.kernel.org
11365S:	Supported
11366F:	drivers/scsi/pm8001/
11367
11368PNP SUPPORT
11369M:	"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
11370S:	Maintained
11371F:	drivers/pnp/
11372
11373POSIX CLOCKS and TIMERS
11374M:	Thomas Gleixner <tglx@linutronix.de>
11375L:	linux-kernel@vger.kernel.org
11376T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
11377S:	Maintained
11378F:	fs/timerfd.c
11379F:	include/linux/timer*
11380F:	kernel/time/*timer*
11381
11382POWER MANAGEMENT CORE
11383M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
11384L:	linux-pm@vger.kernel.org
11385T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
11386B:	https://bugzilla.kernel.org
11387S:	Supported
11388F:	drivers/base/power/
11389F:	include/linux/pm.h
11390F:	include/linux/pm_*
11391F:	include/linux/powercap.h
11392F:	drivers/powercap/
11393F:	kernel/configs/nopm.config
11394
11395POWER STATE COORDINATION INTERFACE (PSCI)
11396M:	Mark Rutland <mark.rutland@arm.com>
11397M:	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
11398L:	linux-arm-kernel@lists.infradead.org
11399S:	Maintained
11400F:	drivers/firmware/psci*.c
11401F:	include/linux/psci.h
11402F:	include/uapi/linux/psci.h
11403
11404POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
11405M:	Sebastian Reichel <sre@kernel.org>
11406L:	linux-pm@vger.kernel.org
11407T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
11408S:	Maintained
11409F:	Documentation/ABI/testing/sysfs-class-power
11410F:	Documentation/devicetree/bindings/power/supply/
11411F:	include/linux/power_supply.h
11412F:	drivers/power/supply/
11413
11414POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
11415M:	Suraj Jitindar Singh <sjitindarsingh@gmail.com>
11416L:	linuxppc-dev@lists.ozlabs.org
11417S:	Maintained
11418F:	drivers/char/powernv-op-panel.c
11419
11420PPP OVER ATM (RFC 2364)
11421M:	Mitchell Blank Jr <mitch@sfgoth.com>
11422S:	Maintained
11423F:	net/atm/pppoatm.c
11424F:	include/uapi/linux/atmppp.h
11425
11426PPP OVER ETHERNET
11427M:	Michal Ostrowski <mostrows@earthlink.net>
11428S:	Maintained
11429F:	drivers/net/ppp/pppoe.c
11430F:	drivers/net/ppp/pppox.c
11431
11432PPP OVER L2TP
11433M:	James Chapman <jchapman@katalix.com>
11434S:	Maintained
11435F:	net/l2tp/l2tp_ppp.c
11436F:	include/linux/if_pppol2tp.h
11437F:	include/uapi/linux/if_pppol2tp.h
11438
11439PPP PROTOCOL DRIVERS AND COMPRESSORS
11440M:	Paul Mackerras <paulus@samba.org>
11441L:	linux-ppp@vger.kernel.org
11442S:	Maintained
11443F:	drivers/net/ppp/ppp_*
11444
11445PPS SUPPORT
11446M:	Rodolfo Giometti <giometti@enneenne.com>
11447W:	http://wiki.enneenne.com/index.php/LinuxPPS_support
11448L:	linuxpps@ml.enneenne.com (subscribers-only)
11449S:	Maintained
11450F:	Documentation/pps/
11451F:	Documentation/devicetree/bindings/pps/pps-gpio.txt
11452F:	Documentation/ABI/testing/sysfs-pps
11453F:	drivers/pps/
11454F:	include/linux/pps*.h
11455F:	include/uapi/linux/pps.h
11456
11457PPTP DRIVER
11458M:	Dmitry Kozlov <xeb@mail.ru>
11459L:	netdev@vger.kernel.org
11460S:	Maintained
11461F:	drivers/net/ppp/pptp.c
11462W:	http://sourceforge.net/projects/accel-pptp
11463
11464PREEMPTIBLE KERNEL
11465M:	Robert Love <rml@tech9.net>
11466L:	kpreempt-tech@lists.sourceforge.net
11467W:	https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
11468S:	Supported
11469F:	Documentation/preempt-locking.txt
11470F:	include/linux/preempt.h
11471
11472PRINTK
11473M:	Petr Mladek <pmladek@suse.com>
11474M:	Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
11475R:	Steven Rostedt <rostedt@goodmis.org>
11476S:	Maintained
11477F:	kernel/printk/
11478F:	include/linux/printk.h
11479
11480PRISM54 WIRELESS DRIVER
11481M:	"Luis R. Rodriguez" <mcgrof@gmail.com>
11482L:	linux-wireless@vger.kernel.org
11483W:	http://wireless.kernel.org/en/users/Drivers/p54
11484S:	Obsolete
11485F:	drivers/net/wireless/intersil/prism54/
11486
11487PROC SYSCTL
11488M:	"Luis R. Rodriguez" <mcgrof@kernel.org>
11489M:	Kees Cook <keescook@chromium.org>
11490L:	linux-kernel@vger.kernel.org
11491L:	linux-fsdevel@vger.kernel.org
11492S:	Maintained
11493F:	fs/proc/proc_sysctl.c
11494F:	include/linux/sysctl.h
11495F:	kernel/sysctl.c
11496F:	tools/testing/selftests/sysctl/
11497
11498PS3 NETWORK SUPPORT
11499M:	Geoff Levand <geoff@infradead.org>
11500L:	netdev@vger.kernel.org
11501L:	linuxppc-dev@lists.ozlabs.org
11502S:	Maintained
11503F:	drivers/net/ethernet/toshiba/ps3_gelic_net.*
11504
11505PS3 PLATFORM SUPPORT
11506M:	Geoff Levand <geoff@infradead.org>
11507L:	linuxppc-dev@lists.ozlabs.org
11508S:	Maintained
11509F:	arch/powerpc/boot/ps3*
11510F:	arch/powerpc/include/asm/lv1call.h
11511F:	arch/powerpc/include/asm/ps3*.h
11512F:	arch/powerpc/platforms/ps3/
11513F:	drivers/*/ps3*
11514F:	drivers/ps3/
11515F:	drivers/rtc/rtc-ps3.c
11516F:	drivers/usb/host/*ps3.c
11517F:	sound/ppc/snd_ps3*
11518
11519PS3VRAM DRIVER
11520M:	Jim Paris <jim@jtan.com>
11521M:	Geoff Levand <geoff@infradead.org>
11522L:	linuxppc-dev@lists.ozlabs.org
11523S:	Maintained
11524F:	drivers/block/ps3vram.c
11525
11526PSAMPLE PACKET SAMPLING SUPPORT:
11527M:	Yotam Gigi <yotam.gi@gmail.com>
11528S:	Maintained
11529F:	net/psample
11530F:	include/net/psample.h
11531F:	include/uapi/linux/psample.h
11532
11533PSTORE FILESYSTEM
11534M:	Kees Cook <keescook@chromium.org>
11535M:	Anton Vorontsov <anton@enomsg.org>
11536M:	Colin Cross <ccross@android.com>
11537M:	Tony Luck <tony.luck@intel.com>
11538S:	Maintained
11539T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
11540F:	fs/pstore/
11541F:	include/linux/pstore*
11542F:	drivers/firmware/efi/efi-pstore.c
11543F:	drivers/acpi/apei/erst.c
11544F:	Documentation/admin-guide/ramoops.rst
11545F:	Documentation/devicetree/bindings/reserved-memory/ramoops.txt
11546K:	\b(pstore|ramoops)
11547
11548PTP HARDWARE CLOCK SUPPORT
11549M:	Richard Cochran <richardcochran@gmail.com>
11550L:	netdev@vger.kernel.org
11551S:	Maintained
11552W:	http://linuxptp.sourceforge.net/
11553F:	Documentation/ABI/testing/sysfs-ptp
11554F:	Documentation/ptp/*
11555F:	drivers/net/phy/dp83640*
11556F:	drivers/ptp/*
11557F:	include/linux/ptp_cl*
11558
11559PTRACE SUPPORT
11560M:	Oleg Nesterov <oleg@redhat.com>
11561S:	Maintained
11562F:	include/asm-generic/syscall.h
11563F:	include/linux/ptrace.h
11564F:	include/linux/regset.h
11565F:	include/linux/tracehook.h
11566F:	include/uapi/linux/ptrace.h
11567F:	include/uapi/linux/ptrace.h
11568F:	include/asm-generic/ptrace.h
11569F:	kernel/ptrace.c
11570F:	arch/*/ptrace*.c
11571F:	arch/*/*/ptrace*.c
11572F:	arch/*/include/asm/ptrace*.h
11573
11574PULSE8-CEC DRIVER
11575M:	Hans Verkuil <hverkuil@xs4all.nl>
11576L:	linux-media@vger.kernel.org
11577T:	git git://linuxtv.org/media_tree.git
11578S:	Maintained
11579F:	drivers/media/usb/pulse8-cec/*
11580F:	Documentation/media/cec-drivers/pulse8-cec.rst
11581
11582PVRUSB2 VIDEO4LINUX DRIVER
11583M:	Mike Isely <isely@pobox.com>
11584L:	pvrusb2@isely.net	(subscribers-only)
11585L:	linux-media@vger.kernel.org
11586W:	http://www.isely.net/pvrusb2/
11587T:	git git://linuxtv.org/media_tree.git
11588S:	Maintained
11589F:	Documentation/media/v4l-drivers/pvrusb2*
11590F:	drivers/media/usb/pvrusb2/
11591
11592PWC WEBCAM DRIVER
11593M:	Hans Verkuil <hverkuil@xs4all.nl>
11594L:	linux-media@vger.kernel.org
11595T:	git git://linuxtv.org/media_tree.git
11596S:	Odd Fixes
11597F:	drivers/media/usb/pwc/*
11598
11599PWM FAN DRIVER
11600M:	Kamil Debski <kamil@wypas.org>
11601M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11602L:	linux-hwmon@vger.kernel.org
11603S:	Supported
11604F:	Documentation/devicetree/bindings/hwmon/pwm-fan.txt
11605F:	Documentation/hwmon/pwm-fan
11606F:	drivers/hwmon/pwm-fan.c
11607
11608PWM IR Transmitter
11609M:	Sean Young <sean@mess.org>
11610L:	linux-media@vger.kernel.org
11611S:	Maintained
11612F:	drivers/media/rc/pwm-ir-tx.c
11613
11614PWM SUBSYSTEM
11615M:	Thierry Reding <thierry.reding@gmail.com>
11616L:	linux-pwm@vger.kernel.org
11617S:	Maintained
11618T:	git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
11619F:	Documentation/pwm.txt
11620F:	Documentation/devicetree/bindings/pwm/
11621F:	include/linux/pwm.h
11622F:	drivers/pwm/
11623F:	drivers/video/backlight/pwm_bl.c
11624F:	include/linux/pwm_backlight.h
11625F:	drivers/gpio/gpio-mvebu.c
11626F:	Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
11627
11628PXA GPIO DRIVER
11629M:	Robert Jarzmik <robert.jarzmik@free.fr>
11630L:	linux-gpio@vger.kernel.org
11631S:	Maintained
11632F:	drivers/gpio/gpio-pxa.c
11633
11634PXA MMCI DRIVER
11635S:	Orphan
11636
11637PXA RTC DRIVER
11638M:	Robert Jarzmik <robert.jarzmik@free.fr>
11639L:	linux-rtc@vger.kernel.org
11640S:	Maintained
11641
11642PXA2xx/PXA3xx SUPPORT
11643M:	Daniel Mack <daniel@zonque.org>
11644M:	Haojian Zhuang <haojian.zhuang@gmail.com>
11645M:	Robert Jarzmik <robert.jarzmik@free.fr>
11646L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11647T:	git git://github.com/hzhuang1/linux.git
11648T:	git git://github.com/rjarzmik/linux.git
11649S:	Maintained
11650F:	arch/arm/boot/dts/pxa*
11651F:	arch/arm/mach-pxa/
11652F:	drivers/dma/pxa*
11653F:	drivers/pcmcia/pxa2xx*
11654F:	drivers/pinctrl/pxa/
11655F:	drivers/spi/spi-pxa2xx*
11656F:	drivers/usb/gadget/udc/pxa2*
11657F:	include/sound/pxa2xx-lib.h
11658F:	sound/arm/pxa*
11659F:	sound/soc/pxa/
11660
11661QAT DRIVER
11662M:	Giovanni Cabiddu <giovanni.cabiddu@intel.com>
11663L:	qat-linux@intel.com
11664S:	Supported
11665F:	drivers/crypto/qat/
11666
11667QCOM AUDIO (ASoC) DRIVERS
11668M:	Patrick Lai <plai@codeaurora.org>
11669M:	Banajit Goswami <bgoswami@codeaurora.org>
11670L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
11671S:	Supported
11672F:	sound/soc/qcom/
11673
11674QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
11675M:	Gabriel Somlo <somlo@cmu.edu>
11676M:	"Michael S. Tsirkin" <mst@redhat.com>
11677L:	qemu-devel@nongnu.org
11678S:	Maintained
11679F:	drivers/firmware/qemu_fw_cfg.c
11680F:	include/uapi/linux/qemu_fw_cfg.h
11681
11682QIB DRIVER
11683M:	Dennis Dalessandro <dennis.dalessandro@intel.com>
11684M:	Mike Marciniszyn <mike.marciniszyn@intel.com>
11685L:	linux-rdma@vger.kernel.org
11686S:	Supported
11687F:	drivers/infiniband/hw/qib/
11688
11689QLOGIC QL41xxx FCOE DRIVER
11690M:	QLogic-Storage-Upstream@cavium.com
11691L:	linux-scsi@vger.kernel.org
11692S:	Supported
11693F:	drivers/scsi/qedf/
11694
11695QLOGIC QL41xxx ISCSI DRIVER
11696M:	QLogic-Storage-Upstream@cavium.com
11697L:	linux-scsi@vger.kernel.org
11698S:	Supported
11699F:	drivers/scsi/qedi/
11700
11701QLOGIC QL4xxx ETHERNET DRIVER
11702M:	Ariel Elior <Ariel.Elior@cavium.com>
11703M:	everest-linux-l2@cavium.com
11704L:	netdev@vger.kernel.org
11705S:	Supported
11706F:	drivers/net/ethernet/qlogic/qed/
11707F:	include/linux/qed/
11708F:	drivers/net/ethernet/qlogic/qede/
11709
11710QLOGIC QL4xxx RDMA DRIVER
11711M:	Michal Kalderon <Michal.Kalderon@cavium.com>
11712M:	Ariel Elior <Ariel.Elior@cavium.com>
11713L:	linux-rdma@vger.kernel.org
11714S:	Supported
11715F:	drivers/infiniband/hw/qedr/
11716F:	include/uapi/rdma/qedr-abi.h
11717
11718QLOGIC QLA1280 SCSI DRIVER
11719M:	Michael Reed <mdr@sgi.com>
11720L:	linux-scsi@vger.kernel.org
11721S:	Maintained
11722F:	drivers/scsi/qla1280.[ch]
11723
11724QLOGIC QLA2XXX FC-SCSI DRIVER
11725M:	qla2xxx-upstream@qlogic.com
11726L:	linux-scsi@vger.kernel.org
11727S:	Supported
11728F:	Documentation/scsi/LICENSE.qla2xxx
11729F:	drivers/scsi/qla2xxx/
11730
11731QLOGIC QLA3XXX NETWORK DRIVER
11732M:	Dept-GELinuxNICDev@cavium.com
11733L:	netdev@vger.kernel.org
11734S:	Supported
11735F:	Documentation/networking/LICENSE.qla3xxx
11736F:	drivers/net/ethernet/qlogic/qla3xxx.*
11737
11738QLOGIC QLA4XXX iSCSI DRIVER
11739M:	QLogic-Storage-Upstream@qlogic.com
11740L:	linux-scsi@vger.kernel.org
11741S:	Supported
11742F:	Documentation/scsi/LICENSE.qla4xxx
11743F:	drivers/scsi/qla4xxx/
11744
11745QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
11746M:	Harish Patil <harish.patil@cavium.com>
11747M:	Manish Chopra <manish.chopra@cavium.com>
11748M:	Dept-GELinuxNICDev@cavium.com
11749L:	netdev@vger.kernel.org
11750S:	Supported
11751F:	drivers/net/ethernet/qlogic/qlcnic/
11752
11753QLOGIC QLGE 10Gb ETHERNET DRIVER
11754M:	Harish Patil <harish.patil@cavium.com>
11755M:	Manish Chopra <manish.chopra@cavium.com>
11756M:	Dept-GELinuxNICDev@cavium.com
11757L:	netdev@vger.kernel.org
11758S:	Supported
11759F:	drivers/net/ethernet/qlogic/qlge/
11760
11761QNX4 FILESYSTEM
11762M:	Anders Larsen <al@alarsen.net>
11763W:	http://www.alarsen.net/linux/qnx4fs/
11764S:	Maintained
11765F:	fs/qnx4/
11766F:	include/uapi/linux/qnx4_fs.h
11767F:	include/uapi/linux/qnxtypes.h
11768
11769QORIQ DPAA2 FSL-MC BUS DRIVER
11770M:	Stuart Yoder <stuyoder@gmail.com>
11771M:	Laurentiu Tudor <laurentiu.tudor@nxp.com>
11772L:	linux-kernel@vger.kernel.org
11773S:	Maintained
11774F:	drivers/bus/fsl-mc/
11775F:	Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
11776F:	Documentation/networking/dpaa2/overview.rst
11777
11778QT1010 MEDIA DRIVER
11779M:	Antti Palosaari <crope@iki.fi>
11780L:	linux-media@vger.kernel.org
11781W:	https://linuxtv.org
11782W:	http://palosaari.fi/linux/
11783Q:	http://patchwork.linuxtv.org/project/linux-media/list/
11784T:	git git://linuxtv.org/anttip/media_tree.git
11785S:	Maintained
11786F:	drivers/media/tuners/qt1010*
11787
11788QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
11789M:	Kalle Valo <kvalo@codeaurora.org>
11790L:	ath10k@lists.infradead.org
11791W:	http://wireless.kernel.org/en/users/Drivers/ath10k
11792T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
11793S:	Supported
11794F:	drivers/net/wireless/ath/ath10k/
11795
11796QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
11797M:	QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
11798L:	linux-wireless@vger.kernel.org
11799W:	http://wireless.kernel.org/en/users/Drivers/ath9k
11800S:	Supported
11801F:	drivers/net/wireless/ath/ath9k/
11802
11803QUALCOMM CAMERA SUBSYSTEM DRIVER
11804M:	Todor Tomov <todor.tomov@linaro.org>
11805L:	linux-media@vger.kernel.org
11806S:	Maintained
11807F:	Documentation/devicetree/bindings/media/qcom,camss.txt
11808F:	Documentation/media/v4l-drivers/qcom_camss.rst
11809F:	drivers/media/platform/qcom/camss-8x16/
11810
11811QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
11812M:  Ilia Lin <ilia.lin@gmail.com>
11813L:  linux-pm@vger.kernel.org
11814S:  Maintained
11815F:  Documentation/devicetree/bindings/opp/kryo-cpufreq.txt
11816F:  drivers/cpufreq/qcom-cpufreq-kryo.c
11817
11818QUALCOMM EMAC GIGABIT ETHERNET DRIVER
11819M:	Timur Tabi <timur@codeaurora.org>
11820L:	netdev@vger.kernel.org
11821S:	Supported
11822F:	drivers/net/ethernet/qualcomm/emac/
11823
11824QUALCOMM HEXAGON ARCHITECTURE
11825M:	Richard Kuo <rkuo@codeaurora.org>
11826L:	linux-hexagon@vger.kernel.org
11827T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
11828S:	Supported
11829F:	arch/hexagon/
11830
11831QUALCOMM HIDMA DRIVER
11832M:	Sinan Kaya <okaya@codeaurora.org>
11833L:	linux-arm-kernel@lists.infradead.org
11834L:	linux-arm-msm@vger.kernel.org
11835L:	dmaengine@vger.kernel.org
11836S:	Supported
11837F:	drivers/dma/qcom/hidma*
11838
11839QUALCOMM IOMMU
11840M:	Rob Clark <robdclark@gmail.com>
11841L:	iommu@lists.linux-foundation.org
11842L:	linux-arm-msm@vger.kernel.org
11843S:	Maintained
11844F:	drivers/iommu/qcom_iommu.c
11845
11846QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
11847M:	Stanimir Varbanov <stanimir.varbanov@linaro.org>
11848L:	linux-media@vger.kernel.org
11849L:	linux-arm-msm@vger.kernel.org
11850T:	git git://linuxtv.org/media_tree.git
11851S:	Maintained
11852F:	drivers/media/platform/qcom/venus/
11853
11854QUALCOMM WCN36XX WIRELESS DRIVER
11855M:	Kalle Valo <kvalo@codeaurora.org>
11856L:	wcn36xx@lists.infradead.org
11857W:	http://wireless.kernel.org/en/users/Drivers/wcn36xx
11858T:	git git://github.com/KrasnikovEugene/wcn36xx.git
11859S:	Supported
11860F:	drivers/net/wireless/ath/wcn36xx/
11861
11862QUANTENNA QTNFMAC WIRELESS DRIVER
11863M:	Igor Mitsyanko <imitsyanko@quantenna.com>
11864M:	Avinash Patil <avinashp@quantenna.com>
11865M:	Sergey Matyukevich <smatyukevich@quantenna.com>
11866L:	linux-wireless@vger.kernel.org
11867S:	Maintained
11868F:	drivers/net/wireless/quantenna
11869
11870RADEON and AMDGPU DRM DRIVERS
11871M:	Alex Deucher <alexander.deucher@amd.com>
11872M:	Christian König <christian.koenig@amd.com>
11873M:	David (ChunMing) Zhou <David1.Zhou@amd.com>
11874L:	amd-gfx@lists.freedesktop.org
11875T:	git git://people.freedesktop.org/~agd5f/linux
11876S:	Supported
11877F:	drivers/gpu/drm/radeon/
11878F:	include/uapi/drm/radeon_drm.h
11879F:	drivers/gpu/drm/amd/
11880F:	include/uapi/drm/amdgpu_drm.h
11881
11882RADEON FRAMEBUFFER DISPLAY DRIVER
11883M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
11884L:	linux-fbdev@vger.kernel.org
11885S:	Maintained
11886F:	drivers/video/fbdev/aty/radeon*
11887F:	include/uapi/linux/radeonfb.h
11888
11889RADIOSHARK RADIO DRIVER
11890M:	Hans Verkuil <hverkuil@xs4all.nl>
11891L:	linux-media@vger.kernel.org
11892T:	git git://linuxtv.org/media_tree.git
11893S:	Maintained
11894F:	drivers/media/radio/radio-shark.c
11895
11896RADIOSHARK2 RADIO DRIVER
11897M:	Hans Verkuil <hverkuil@xs4all.nl>
11898L:	linux-media@vger.kernel.org
11899T:	git git://linuxtv.org/media_tree.git
11900S:	Maintained
11901F:	drivers/media/radio/radio-shark2.c
11902F:	drivers/media/radio/radio-tea5777.c
11903
11904RADOS BLOCK DEVICE (RBD)
11905M:	Ilya Dryomov <idryomov@gmail.com>
11906M:	Sage Weil <sage@redhat.com>
11907M:	Alex Elder <elder@kernel.org>
11908L:	ceph-devel@vger.kernel.org
11909W:	http://ceph.com/
11910T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
11911T:	git git://github.com/ceph/ceph-client.git
11912S:	Supported
11913F:	Documentation/ABI/testing/sysfs-bus-rbd
11914F:	drivers/block/rbd.c
11915F:	drivers/block/rbd_types.h
11916
11917RAGE128 FRAMEBUFFER DISPLAY DRIVER
11918M:	Paul Mackerras <paulus@samba.org>
11919L:	linux-fbdev@vger.kernel.org
11920S:	Maintained
11921F:	drivers/video/fbdev/aty/aty128fb.c
11922
11923RAINSHADOW-CEC DRIVER
11924M:	Hans Verkuil <hverkuil@xs4all.nl>
11925L:	linux-media@vger.kernel.org
11926T:	git git://linuxtv.org/media_tree.git
11927S:	Maintained
11928F:	drivers/media/usb/rainshadow-cec/*
11929
11930RALINK MIPS ARCHITECTURE
11931M:	John Crispin <john@phrozen.org>
11932L:	linux-mips@linux-mips.org
11933S:	Maintained
11934F:	arch/mips/ralink
11935
11936RALINK RT2X00 WIRELESS LAN DRIVER
11937P:	rt2x00 project
11938M:	Stanislaw Gruszka <sgruszka@redhat.com>
11939M:	Helmut Schaa <helmut.schaa@googlemail.com>
11940L:	linux-wireless@vger.kernel.org
11941S:	Maintained
11942F:	drivers/net/wireless/ralink/rt2x00/
11943
11944RAMDISK RAM BLOCK DEVICE DRIVER
11945M:	Jens Axboe <axboe@kernel.dk>
11946S:	Maintained
11947F:	Documentation/blockdev/ramdisk.txt
11948F:	drivers/block/brd.c
11949
11950RANCHU VIRTUAL BOARD FOR MIPS
11951M:	Miodrag Dinic <miodrag.dinic@mips.com>
11952L:	linux-mips@linux-mips.org
11953S:	Supported
11954F:	arch/mips/generic/board-ranchu.c
11955F:	arch/mips/configs/generic/board-ranchu.config
11956
11957RANDOM NUMBER DRIVER
11958M:	"Theodore Ts'o" <tytso@mit.edu>
11959S:	Maintained
11960F:	drivers/char/random.c
11961
11962RAPIDIO SUBSYSTEM
11963M:	Matt Porter <mporter@kernel.crashing.org>
11964M:	Alexandre Bounine <alex.bou9@gmail.com>
11965S:	Maintained
11966F:	drivers/rapidio/
11967
11968RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
11969L:	linux-wireless@vger.kernel.org
11970S:	Orphan
11971F:	drivers/net/wireless/ray*
11972
11973RCUTORTURE TEST FRAMEWORK
11974M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11975M:	Josh Triplett <josh@joshtriplett.org>
11976R:	Steven Rostedt <rostedt@goodmis.org>
11977R:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11978R:	Lai Jiangshan <jiangshanlai@gmail.com>
11979L:	linux-kernel@vger.kernel.org
11980S:	Supported
11981T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11982F:	tools/testing/selftests/rcutorture
11983
11984RDC R-321X SoC
11985M:	Florian Fainelli <florian@openwrt.org>
11986S:	Maintained
11987
11988RDC R6040 FAST ETHERNET DRIVER
11989M:	Florian Fainelli <f.fainelli@gmail.com>
11990L:	netdev@vger.kernel.org
11991S:	Maintained
11992F:	drivers/net/ethernet/rdc/r6040.c
11993
11994RDMAVT - RDMA verbs software
11995M:	Dennis Dalessandro <dennis.dalessandro@intel.com>
11996M:	Mike Marciniszyn <mike.marciniszyn@intel.com>
11997L:	linux-rdma@vger.kernel.org
11998S:	Supported
11999F:	drivers/infiniband/sw/rdmavt
12000
12001RDS - RELIABLE DATAGRAM SOCKETS
12002M:	Santosh Shilimkar <santosh.shilimkar@oracle.com>
12003L:	netdev@vger.kernel.org
12004L:	linux-rdma@vger.kernel.org
12005L:	rds-devel@oss.oracle.com (moderated for non-subscribers)
12006W:	https://oss.oracle.com/projects/rds/
12007S:	Supported
12008F:	net/rds/
12009F:	Documentation/networking/rds.txt
12010
12011RDT - RESOURCE ALLOCATION
12012M:	Fenghua Yu <fenghua.yu@intel.com>
12013L:	linux-kernel@vger.kernel.org
12014S:	Supported
12015F:	arch/x86/kernel/cpu/intel_rdt*
12016F:	arch/x86/include/asm/intel_rdt_sched.h
12017F:	Documentation/x86/intel_rdt*
12018
12019READ-COPY UPDATE (RCU)
12020M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12021M:	Josh Triplett <josh@joshtriplett.org>
12022R:	Steven Rostedt <rostedt@goodmis.org>
12023R:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12024R:	Lai Jiangshan <jiangshanlai@gmail.com>
12025L:	linux-kernel@vger.kernel.org
12026W:	http://www.rdrop.com/users/paulmck/RCU/
12027S:	Supported
12028T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12029F:	Documentation/RCU/
12030X:	Documentation/RCU/torture.txt
12031F:	include/linux/rcu*
12032X:	include/linux/srcu.h
12033F:	kernel/rcu/
12034X:	kernel/torture.c
12035
12036REAL TIME CLOCK (RTC) SUBSYSTEM
12037M:	Alessandro Zummo <a.zummo@towertech.it>
12038M:	Alexandre Belloni <alexandre.belloni@bootlin.com>
12039L:	linux-rtc@vger.kernel.org
12040Q:	http://patchwork.ozlabs.org/project/rtc-linux/list/
12041T:	git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
12042S:	Maintained
12043F:	Documentation/devicetree/bindings/rtc/
12044F:	Documentation/rtc.txt
12045F:	drivers/rtc/
12046F:	include/linux/rtc.h
12047F:	include/uapi/linux/rtc.h
12048F:	include/linux/rtc/
12049F:	include/linux/platform_data/rtc-*
12050F:	tools/testing/selftests/rtc/
12051
12052REALTEK AUDIO CODECS
12053M:	Bard Liao <bardliao@realtek.com>
12054M:	Oder Chiou <oder_chiou@realtek.com>
12055S:	Maintained
12056F:	sound/soc/codecs/rt*
12057F:	include/sound/rt*.h
12058
12059REGISTER MAP ABSTRACTION
12060M:	Mark Brown <broonie@kernel.org>
12061L:	linux-kernel@vger.kernel.org
12062T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
12063S:	Supported
12064F:	Documentation/devicetree/bindings/regmap/
12065F:	drivers/base/regmap/
12066F:	include/linux/regmap.h
12067
12068REISERFS FILE SYSTEM
12069L:	reiserfs-devel@vger.kernel.org
12070S:	Supported
12071F:	fs/reiserfs/
12072
12073REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
12074M:	Ohad Ben-Cohen <ohad@wizery.com>
12075M:	Bjorn Andersson <bjorn.andersson@linaro.org>
12076L:	linux-remoteproc@vger.kernel.org
12077T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
12078S:	Maintained
12079F:	Documentation/devicetree/bindings/remoteproc/
12080F:	Documentation/remoteproc.txt
12081F:	drivers/remoteproc/
12082F:	include/linux/remoteproc.h
12083
12084REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
12085M:	Ohad Ben-Cohen <ohad@wizery.com>
12086M:	Bjorn Andersson <bjorn.andersson@linaro.org>
12087L:	linux-remoteproc@vger.kernel.org
12088T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
12089S:	Maintained
12090F:	drivers/rpmsg/
12091F:	Documentation/rpmsg.txt
12092F:	include/linux/rpmsg.h
12093F:	include/linux/rpmsg/
12094
12095RENESAS CLOCK DRIVERS
12096M:	Geert Uytterhoeven <geert+renesas@glider.be>
12097L:	linux-renesas-soc@vger.kernel.org
12098T:	git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
12099S:	Supported
12100F:	drivers/clk/renesas/
12101
12102RENESAS EMEV2 I2C DRIVER
12103M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
12104S:	Supported
12105F:	drivers/i2c/busses/i2c-emev2.c
12106
12107RENESAS ETHERNET DRIVERS
12108R:	Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
12109L:	netdev@vger.kernel.org
12110L:	linux-renesas-soc@vger.kernel.org
12111F:	Documentation/devicetree/bindings/net/renesas,*.txt
12112F:	Documentation/devicetree/bindings/net/sh_eth.txt
12113F:	drivers/net/ethernet/renesas/
12114F:	include/linux/sh_eth.h
12115
12116RENESAS R-CAR GYROADC DRIVER
12117M:	Marek Vasut <marek.vasut@gmail.com>
12118L:	linux-iio@vger.kernel.org
12119S:	Supported
12120F:	drivers/iio/adc/rcar_gyro_adc.c
12121
12122RENESAS R-CAR I2C DRIVERS
12123M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
12124S:	Supported
12125F:	drivers/i2c/busses/i2c-rcar.c
12126F:	drivers/i2c/busses/i2c-sh_mobile.c
12127
12128RENESAS USB PHY DRIVER
12129M:	Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
12130L:	linux-renesas-soc@vger.kernel.org
12131S:	Maintained
12132F:	drivers/phy/renesas/phy-rcar-gen3-usb*.c
12133
12134RESET CONTROLLER FRAMEWORK
12135M:	Philipp Zabel <p.zabel@pengutronix.de>
12136T:	git git://git.pengutronix.de/git/pza/linux
12137S:	Maintained
12138F:	drivers/reset/
12139F:	Documentation/devicetree/bindings/reset/
12140F:	include/dt-bindings/reset/
12141F:	include/linux/reset.h
12142F:	include/linux/reset-controller.h
12143
12144RESTARTABLE SEQUENCES SUPPORT
12145M:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12146M:	Peter Zijlstra <peterz@infradead.org>
12147M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12148M:	Boqun Feng <boqun.feng@gmail.com>
12149L:	linux-kernel@vger.kernel.org
12150S:	Supported
12151F:	kernel/rseq.c
12152F:	include/uapi/linux/rseq.h
12153F:	include/trace/events/rseq.h
12154F:	tools/testing/selftests/rseq/
12155
12156RFKILL
12157M:	Johannes Berg <johannes@sipsolutions.net>
12158L:	linux-wireless@vger.kernel.org
12159W:	http://wireless.kernel.org/
12160T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
12161T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
12162S:	Maintained
12163F:	Documentation/rfkill.txt
12164F:	Documentation/ABI/stable/sysfs-class-rfkill
12165F:	net/rfkill/
12166
12167RHASHTABLE
12168M:	Thomas Graf <tgraf@suug.ch>
12169M:	Herbert Xu <herbert@gondor.apana.org.au>
12170L:	netdev@vger.kernel.org
12171S:	Maintained
12172F:	lib/rhashtable.c
12173F:	include/linux/rhashtable.h
12174
12175RICOH R5C592 MEMORYSTICK DRIVER
12176M:	Maxim Levitsky <maximlevitsky@gmail.com>
12177S:	Maintained
12178F:	drivers/memstick/host/r592.*
12179
12180RICOH SMARTMEDIA/XD DRIVER
12181M:	Maxim Levitsky <maximlevitsky@gmail.com>
12182S:	Maintained
12183F:	drivers/mtd/nand/raw/r852.c
12184F:	drivers/mtd/nand/raw/r852.h
12185
12186RISC-V ARCHITECTURE
12187M:	Palmer Dabbelt <palmer@sifive.com>
12188M:	Albert Ou <aou@eecs.berkeley.edu>
12189L:	linux-riscv@lists.infradead.org
12190T:	git git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git
12191S:	Supported
12192F:	arch/riscv/
12193K:	riscv
12194N:	riscv
12195
12196ROCCAT DRIVERS
12197M:	Stefan Achatz <erazor_de@users.sourceforge.net>
12198W:	http://sourceforge.net/projects/roccat/
12199S:	Maintained
12200F:	drivers/hid/hid-roccat*
12201F:	include/linux/hid-roccat*
12202F:	Documentation/ABI/*/sysfs-driver-hid-roccat*
12203
12204ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
12205M:	Jacob chen <jacob2.chen@rock-chips.com>
12206L:	linux-media@vger.kernel.org
12207S:	Maintained
12208F:	drivers/media/platform/rockchip/rga/
12209F:	Documentation/devicetree/bindings/media/rockchip-rga.txt
12210
12211ROCKER DRIVER
12212M:	Jiri Pirko <jiri@resnulli.us>
12213L:	netdev@vger.kernel.org
12214S:	Supported
12215F:	drivers/net/ethernet/rocker/
12216
12217ROCKETPORT DRIVER
12218P:	Comtrol Corp.
12219W:	http://www.comtrol.com
12220S:	Maintained
12221F:	Documentation/serial/rocket.txt
12222F:	drivers/tty/rocket*
12223
12224ROCKETPORT EXPRESS/INFINITY DRIVER
12225M:	Kevin Cernekee <cernekee@gmail.com>
12226L:	linux-serial@vger.kernel.org
12227S:	Odd Fixes
12228F:	drivers/tty/serial/rp2.*
12229
12230ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
12231M:	Marek Vasut <marek.vasut+renesas@gmail.com>
12232L:	linux-kernel@vger.kernel.org
12233L:	linux-renesas-soc@vger.kernel.org
12234S:	Supported
12235F:	drivers/mfd/bd9571mwv.c
12236F:	drivers/regulator/bd9571mwv-regulator.c
12237F:	drivers/gpio/gpio-bd9571mwv.c
12238F:	include/linux/mfd/bd9571mwv.h
12239F:	Documentation/devicetree/bindings/mfd/bd9571mwv.txt
12240
12241ROSE NETWORK LAYER
12242M:	Ralf Baechle <ralf@linux-mips.org>
12243L:	linux-hams@vger.kernel.org
12244W:	http://www.linux-ax25.org/
12245S:	Maintained
12246F:	include/net/rose.h
12247F:	include/uapi/linux/rose.h
12248F:	net/rose/
12249
12250RTL2830 MEDIA DRIVER
12251M:	Antti Palosaari <crope@iki.fi>
12252L:	linux-media@vger.kernel.org
12253W:	https://linuxtv.org
12254W:	http://palosaari.fi/linux/
12255Q:	http://patchwork.linuxtv.org/project/linux-media/list/
12256T:	git git://linuxtv.org/anttip/media_tree.git
12257S:	Maintained
12258F:	drivers/media/dvb-frontends/rtl2830*
12259
12260RTL2832 MEDIA DRIVER
12261M:	Antti Palosaari <crope@iki.fi>
12262L:	linux-media@vger.kernel.org
12263W:	https://linuxtv.org
12264W:	http://palosaari.fi/linux/
12265Q:	http://patchwork.linuxtv.org/project/linux-media/list/
12266T:	git git://linuxtv.org/anttip/media_tree.git
12267S:	Maintained
12268F:	drivers/media/dvb-frontends/rtl2832*
12269
12270RTL2832_SDR MEDIA DRIVER
12271M:	Antti Palosaari <crope@iki.fi>
12272L:	linux-media@vger.kernel.org
12273W:	https://linuxtv.org
12274W:	http://palosaari.fi/linux/
12275Q:	http://patchwork.linuxtv.org/project/linux-media/list/
12276T:	git git://linuxtv.org/anttip/media_tree.git
12277S:	Maintained
12278F:	drivers/media/dvb-frontends/rtl2832_sdr*
12279
12280RTL8180 WIRELESS DRIVER
12281L:	linux-wireless@vger.kernel.org
12282W:	http://wireless.kernel.org/
12283T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
12284S:	Orphan
12285F:	drivers/net/wireless/realtek/rtl818x/rtl8180/
12286
12287RTL8187 WIRELESS DRIVER
12288M:	Herton Ronaldo Krzesinski <herton@canonical.com>
12289M:	Hin-Tak Leung <htl10@users.sourceforge.net>
12290M:	Larry Finger <Larry.Finger@lwfinger.net>
12291L:	linux-wireless@vger.kernel.org
12292W:	http://wireless.kernel.org/
12293T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
12294S:	Maintained
12295F:	drivers/net/wireless/realtek/rtl818x/rtl8187/
12296
12297REALTEK WIRELESS DRIVER (rtlwifi family)
12298M:	Ping-Ke Shih <pkshih@realtek.com>
12299L:	linux-wireless@vger.kernel.org
12300W:	http://wireless.kernel.org/
12301T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
12302S:	Maintained
12303F:	drivers/net/wireless/realtek/rtlwifi/
12304
12305RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
12306M:	Jes Sorensen <Jes.Sorensen@gmail.com>
12307L:	linux-wireless@vger.kernel.org
12308T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
12309S:	Maintained
12310F:	drivers/net/wireless/realtek/rtl8xxxu/
12311
12312RXRPC SOCKETS (AF_RXRPC)
12313M:	David Howells <dhowells@redhat.com>
12314L:	linux-afs@lists.infradead.org
12315S:	Supported
12316F:	net/rxrpc/
12317F:	include/keys/rxrpc-type.h
12318F:	include/net/af_rxrpc.h
12319F:	include/trace/events/rxrpc.h
12320F:	include/uapi/linux/rxrpc.h
12321F:	Documentation/networking/rxrpc.txt
12322W:	https://www.infradead.org/~dhowells/kafs/
12323
12324S3 SAVAGE FRAMEBUFFER DRIVER
12325M:	Antonino Daplas <adaplas@gmail.com>
12326L:	linux-fbdev@vger.kernel.org
12327S:	Maintained
12328F:	drivers/video/fbdev/savage/
12329
12330S390
12331M:	Martin Schwidefsky <schwidefsky@de.ibm.com>
12332M:	Heiko Carstens <heiko.carstens@de.ibm.com>
12333L:	linux-s390@vger.kernel.org
12334W:	http://www.ibm.com/developerworks/linux/linux390/
12335T:	git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
12336S:	Supported
12337F:	arch/s390/
12338F:	drivers/s390/
12339F:	Documentation/s390/
12340F:	Documentation/driver-api/s390-drivers.rst
12341
12342S390 COMMON I/O LAYER
12343M:	Sebastian Ott <sebott@linux.ibm.com>
12344M:	Peter Oberparleiter <oberpar@linux.ibm.com>
12345L:	linux-s390@vger.kernel.org
12346W:	http://www.ibm.com/developerworks/linux/linux390/
12347S:	Supported
12348F:	drivers/s390/cio/
12349
12350S390 DASD DRIVER
12351M:	Stefan Haberland <sth@linux.ibm.com>
12352M:	Jan Hoeppner <hoeppner@linux.ibm.com>
12353L:	linux-s390@vger.kernel.org
12354W:	http://www.ibm.com/developerworks/linux/linux390/
12355S:	Supported
12356F:	drivers/s390/block/dasd*
12357F:	block/partitions/ibm.c
12358
12359S390 IOMMU (PCI)
12360M:	Gerald Schaefer <gerald.schaefer@de.ibm.com>
12361L:	linux-s390@vger.kernel.org
12362W:	http://www.ibm.com/developerworks/linux/linux390/
12363S:	Supported
12364F:	drivers/iommu/s390-iommu.c
12365
12366S390 IUCV NETWORK LAYER
12367M:	Julian Wiedmann <jwi@linux.ibm.com>
12368M:	Ursula Braun <ubraun@linux.ibm.com>
12369L:	linux-s390@vger.kernel.org
12370W:	http://www.ibm.com/developerworks/linux/linux390/
12371S:	Supported
12372F:	drivers/s390/net/*iucv*
12373F:	include/net/iucv/
12374F:	net/iucv/
12375
12376S390 NETWORK DRIVERS
12377M:	Julian Wiedmann <jwi@linux.ibm.com>
12378M:	Ursula Braun <ubraun@linux.ibm.com>
12379L:	linux-s390@vger.kernel.org
12380W:	http://www.ibm.com/developerworks/linux/linux390/
12381S:	Supported
12382F:	drivers/s390/net/
12383
12384S390 PCI SUBSYSTEM
12385M:	Sebastian Ott <sebott@linux.ibm.com>
12386M:	Gerald Schaefer <gerald.schaefer@de.ibm.com>
12387L:	linux-s390@vger.kernel.org
12388W:	http://www.ibm.com/developerworks/linux/linux390/
12389S:	Supported
12390F:	arch/s390/pci/
12391F:	drivers/pci/hotplug/s390_pci_hpc.c
12392
12393S390 VFIO-CCW DRIVER
12394M:	Cornelia Huck <cohuck@redhat.com>
12395M:	Dong Jia Shi <bjsdjshi@linux.ibm.com>
12396M:	Halil Pasic <pasic@linux.ibm.com>
12397L:	linux-s390@vger.kernel.org
12398L:	kvm@vger.kernel.org
12399S:	Supported
12400F:	drivers/s390/cio/vfio_ccw*
12401F:	Documentation/s390/vfio-ccw.txt
12402F:	include/uapi/linux/vfio_ccw.h
12403
12404S390 ZCRYPT DRIVER
12405M:	Harald Freudenberger <freude@linux.ibm.com>
12406L:	linux-s390@vger.kernel.org
12407W:	http://www.ibm.com/developerworks/linux/linux390/
12408S:	Supported
12409F:	drivers/s390/crypto/
12410
12411S390 ZFCP DRIVER
12412M:	Steffen Maier <maier@linux.ibm.com>
12413M:	Benjamin Block <bblock@linux.ibm.com>
12414L:	linux-s390@vger.kernel.org
12415W:	http://www.ibm.com/developerworks/linux/linux390/
12416S:	Supported
12417F:	drivers/s390/scsi/zfcp_*
12418
12419S3C24XX SD/MMC Driver
12420M:	Ben Dooks <ben-linux@fluff.org>
12421L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12422S:	Supported
12423F:	drivers/mmc/host/s3cmci.*
12424
12425SAA6588 RDS RECEIVER DRIVER
12426M:	Hans Verkuil <hverkuil@xs4all.nl>
12427L:	linux-media@vger.kernel.org
12428T:	git git://linuxtv.org/media_tree.git
12429W:	https://linuxtv.org
12430S:	Odd Fixes
12431F:	drivers/media/i2c/saa6588*
12432
12433SAA7134 VIDEO4LINUX DRIVER
12434M:	Mauro Carvalho Chehab <mchehab@kernel.org>
12435L:	linux-media@vger.kernel.org
12436W:	https://linuxtv.org
12437T:	git git://linuxtv.org/media_tree.git
12438S:	Odd fixes
12439F:	Documentation/media/v4l-drivers/saa7134*
12440F:	drivers/media/pci/saa7134/
12441
12442SAA7146 VIDEO4LINUX-2 DRIVER
12443M:	Hans Verkuil <hverkuil@xs4all.nl>
12444L:	linux-media@vger.kernel.org
12445T:	git git://linuxtv.org/media_tree.git
12446S:	Maintained
12447F:	drivers/media/common/saa7146/
12448F:	drivers/media/pci/saa7146/
12449F:	include/media/saa7146*
12450
12451SAMSUNG AUDIO (ASoC) DRIVERS
12452M:	Krzysztof Kozlowski <krzk@kernel.org>
12453M:	Sangbeom Kim <sbkim73@samsung.com>
12454M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
12455L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
12456S:	Supported
12457F:	sound/soc/samsung/
12458F:	Documentation/devicetree/bindings/sound/samsung*
12459
12460SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
12461M:	Krzysztof Kozlowski <krzk@kernel.org>
12462L:	linux-crypto@vger.kernel.org
12463L:	linux-samsung-soc@vger.kernel.org
12464S:	Maintained
12465F:	drivers/crypto/exynos-rng.c
12466F:	Documentation/devicetree/bindings/rng/samsung,exynos4-rng.txt
12467
12468SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
12469M:	Łukasz Stelmach <l.stelmach@samsung.com>
12470L:	linux-samsung-soc@vger.kernel.org
12471S:	Maintained
12472F:	drivers/char/hw_random/exynos-trng.c
12473F:	Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
12474
12475SAMSUNG FRAMEBUFFER DRIVER
12476M:	Jingoo Han <jingoohan1@gmail.com>
12477L:	linux-fbdev@vger.kernel.org
12478S:	Maintained
12479F:	drivers/video/fbdev/s3c-fb.c
12480
12481SAMSUNG LAPTOP DRIVER
12482M:	Corentin Chary <corentin.chary@gmail.com>
12483L:	platform-driver-x86@vger.kernel.org
12484S:	Maintained
12485F:	drivers/platform/x86/samsung-laptop.c
12486
12487SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
12488M:	Sangbeom Kim <sbkim73@samsung.com>
12489M:	Krzysztof Kozlowski <krzk@kernel.org>
12490M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12491L:	linux-kernel@vger.kernel.org
12492L:	linux-samsung-soc@vger.kernel.org
12493S:	Supported
12494F:	drivers/mfd/sec*.c
12495F:	drivers/regulator/s2m*.c
12496F:	drivers/regulator/s5m*.c
12497F:	drivers/clk/clk-s2mps11.c
12498F:	drivers/rtc/rtc-s5m.c
12499F:	include/linux/mfd/samsung/
12500F:	Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
12501F:	Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
12502F:	Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
12503F:	Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
12504
12505SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
12506M:	Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
12507L:	linux-media@vger.kernel.org
12508L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12509S:	Maintained
12510F:	drivers/media/platform/s3c-camif/
12511F:	include/media/drv-intf/s3c_camif.h
12512
12513SAMSUNG S3FWRN5 NFC DRIVER
12514M:	Robert Baldyga <r.baldyga@samsung.com>
12515M:	Krzysztof Opasiak <k.opasiak@samsung.com>
12516L:	linux-nfc@lists.01.org (moderated for non-subscribers)
12517S:	Supported
12518F:	drivers/nfc/s3fwrn5
12519
12520SAMSUNG S5C73M3 CAMERA DRIVER
12521M:	Kyungmin Park <kyungmin.park@samsung.com>
12522M:	Andrzej Hajda <a.hajda@samsung.com>
12523L:	linux-media@vger.kernel.org
12524S:	Supported
12525F:	drivers/media/i2c/s5c73m3/*
12526
12527SAMSUNG S5K5BAF CAMERA DRIVER
12528M:	Kyungmin Park <kyungmin.park@samsung.com>
12529M:	Andrzej Hajda <a.hajda@samsung.com>
12530L:	linux-media@vger.kernel.org
12531S:	Supported
12532F:	drivers/media/i2c/s5k5baf.c
12533
12534SAMSUNG S5P Security SubSystem (SSS) DRIVER
12535M:	Krzysztof Kozlowski <krzk@kernel.org>
12536M:	Vladimir Zapolskiy <vz@mleia.com>
12537M:	Kamil Konieczny <k.konieczny@partner.samsung.com>
12538L:	linux-crypto@vger.kernel.org
12539L:	linux-samsung-soc@vger.kernel.org
12540S:	Maintained
12541F:	drivers/crypto/s5p-sss.c
12542
12543SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
12544M:	Kyungmin Park <kyungmin.park@samsung.com>
12545M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
12546L:	linux-media@vger.kernel.org
12547Q:	https://patchwork.linuxtv.org/project/linux-media/list/
12548S:	Supported
12549F:	drivers/media/platform/exynos4-is/
12550
12551SAMSUNG SOC CLOCK DRIVERS
12552M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
12553M:	Tomasz Figa <tomasz.figa@gmail.com>
12554M:	Chanwoo Choi <cw00.choi@samsung.com>
12555S:	Supported
12556L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12557T:	git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
12558F:	drivers/clk/samsung/
12559F:	include/dt-bindings/clock/exynos*.h
12560F:	Documentation/devicetree/bindings/clock/exynos*.txt
12561
12562SAMSUNG SPI DRIVERS
12563M:	Kukjin Kim <kgene@kernel.org>
12564M:	Krzysztof Kozlowski <krzk@kernel.org>
12565M:	Andi Shyti <andi@etezian.org>
12566L:	linux-spi@vger.kernel.org
12567L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12568S:	Maintained
12569F:	Documentation/devicetree/bindings/spi/spi-samsung.txt
12570F:	drivers/spi/spi-s3c*
12571F:	include/linux/platform_data/spi-s3c64xx.h
12572
12573SAMSUNG SXGBE DRIVERS
12574M:	Byungho An <bh74.an@samsung.com>
12575M:	Girish K S <ks.giri@samsung.com>
12576M:	Vipul Pandya <vipul.pandya@samsung.com>
12577S:	Supported
12578L:	netdev@vger.kernel.org
12579F:	drivers/net/ethernet/samsung/sxgbe/
12580
12581SAMSUNG THERMAL DRIVER
12582M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12583L:	linux-pm@vger.kernel.org
12584L:	linux-samsung-soc@vger.kernel.org
12585S:	Supported
12586T:	git https://github.com/lmajewski/linux-samsung-thermal.git
12587F:	drivers/thermal/samsung/
12588
12589SAMSUNG USB2 PHY DRIVER
12590M:	Kamil Debski <kamil@wypas.org>
12591M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
12592L:	linux-kernel@vger.kernel.org
12593S:	Supported
12594F:	Documentation/devicetree/bindings/phy/samsung-phy.txt
12595F:	Documentation/phy/samsung-usb2.txt
12596F:	drivers/phy/samsung/phy-exynos4210-usb2.c
12597F:	drivers/phy/samsung/phy-exynos4x12-usb2.c
12598F:	drivers/phy/samsung/phy-exynos5250-usb2.c
12599F:	drivers/phy/samsung/phy-s5pv210-usb2.c
12600F:	drivers/phy/samsung/phy-samsung-usb2.c
12601F:	drivers/phy/samsung/phy-samsung-usb2.h
12602
12603SC1200 WDT DRIVER
12604M:	Zwane Mwaikambo <zwanem@gmail.com>
12605S:	Maintained
12606F:	drivers/watchdog/sc1200wdt.c
12607
12608SCHEDULER
12609M:	Ingo Molnar <mingo@redhat.com>
12610M:	Peter Zijlstra <peterz@infradead.org>
12611L:	linux-kernel@vger.kernel.org
12612T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
12613S:	Maintained
12614F:	kernel/sched/
12615F:	include/linux/sched.h
12616F:	include/uapi/linux/sched.h
12617F:	include/linux/wait.h
12618
12619SCR24X CHIP CARD INTERFACE DRIVER
12620M:	Lubomir Rintel <lkundrak@v3.sk>
12621S:	Supported
12622F:	drivers/char/pcmcia/scr24x_cs.c
12623
12624SCSI CDROM DRIVER
12625M:	Jens Axboe <axboe@kernel.dk>
12626L:	linux-scsi@vger.kernel.org
12627W:	http://www.kernel.dk
12628S:	Maintained
12629F:	drivers/scsi/sr*
12630
12631SCSI RDMA PROTOCOL (SRP) INITIATOR
12632M:	Bart Van Assche <bart.vanassche@sandisk.com>
12633L:	linux-rdma@vger.kernel.org
12634S:	Supported
12635W:	http://www.openfabrics.org
12636Q:	http://patchwork.kernel.org/project/linux-rdma/list/
12637T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
12638F:	drivers/infiniband/ulp/srp/
12639F:	include/scsi/srp.h
12640
12641SCSI SG DRIVER
12642M:	Doug Gilbert <dgilbert@interlog.com>
12643L:	linux-scsi@vger.kernel.org
12644W:	http://sg.danny.cz/sg
12645S:	Maintained
12646F:	Documentation/scsi/scsi-generic.txt
12647F:	drivers/scsi/sg.c
12648F:	include/scsi/sg.h
12649
12650SCSI SUBSYSTEM
12651M:	"James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
12652T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
12653M:	"Martin K. Petersen" <martin.petersen@oracle.com>
12654T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
12655L:	linux-scsi@vger.kernel.org
12656S:	Maintained
12657F:	Documentation/devicetree/bindings/scsi/
12658F:	drivers/scsi/
12659F:	include/scsi/
12660
12661SCSI TAPE DRIVER
12662M:	Kai Mäkisara <Kai.Makisara@kolumbus.fi>
12663L:	linux-scsi@vger.kernel.org
12664S:	Maintained
12665F:	Documentation/scsi/st.txt
12666F:	drivers/scsi/st.*
12667F:	drivers/scsi/st_*.h
12668
12669SCTP PROTOCOL
12670M:	Vlad Yasevich <vyasevich@gmail.com>
12671M:	Neil Horman <nhorman@tuxdriver.com>
12672M:	Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
12673L:	linux-sctp@vger.kernel.org
12674W:	http://lksctp.sourceforge.net
12675S:	Maintained
12676F:	Documentation/networking/sctp.txt
12677F:	include/linux/sctp.h
12678F:	include/uapi/linux/sctp.h
12679F:	include/net/sctp/
12680F:	net/sctp/
12681
12682SCx200 CPU SUPPORT
12683M:	Jim Cromie <jim.cromie@gmail.com>
12684S:	Odd Fixes
12685F:	Documentation/i2c/busses/scx200_acb
12686F:	arch/x86/platform/scx200/
12687F:	drivers/watchdog/scx200_wdt.c
12688F:	drivers/i2c/busses/scx200*
12689F:	drivers/mtd/maps/scx200_docflash.c
12690F:	include/linux/scx200.h
12691
12692SCx200 GPIO DRIVER
12693M:	Jim Cromie <jim.cromie@gmail.com>
12694S:	Maintained
12695F:	drivers/char/scx200_gpio.c
12696F:	include/linux/scx200_gpio.h
12697
12698SCx200 HRT CLOCKSOURCE DRIVER
12699M:	Jim Cromie <jim.cromie@gmail.com>
12700S:	Maintained
12701F:	drivers/clocksource/scx200_hrt.c
12702
12703SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
12704M:	Sascha Sommer <saschasommer@freenet.de>
12705L:	sdricohcs-devel@lists.sourceforge.net (subscribers-only)
12706S:	Maintained
12707F:	drivers/mmc/host/sdricoh_cs.c
12708
12709SECURE COMPUTING
12710M:	Kees Cook <keescook@chromium.org>
12711R:	Andy Lutomirski <luto@amacapital.net>
12712R:	Will Drewry <wad@chromium.org>
12713T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
12714S:	Supported
12715F:	kernel/seccomp.c
12716F:	include/uapi/linux/seccomp.h
12717F:	include/linux/seccomp.h
12718F:	tools/testing/selftests/seccomp/*
12719F:	tools/testing/selftests/kselftest_harness.h
12720F:	Documentation/userspace-api/seccomp_filter.rst
12721K:	\bsecure_computing
12722K:	\bTIF_SECCOMP\b
12723
12724SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
12725M:	Al Cooper <alcooperx@gmail.com>
12726L:	linux-mmc@vger.kernel.org
12727L:	bcm-kernel-feedback-list@broadcom.com
12728S:	Maintained
12729F:	drivers/mmc/host/sdhci-brcmstb*
12730
12731SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
12732M:	Adrian Hunter <adrian.hunter@intel.com>
12733L:	linux-mmc@vger.kernel.org
12734T:	git git://git.infradead.org/users/ahunter/linux-sdhci.git
12735S:	Maintained
12736F:	drivers/mmc/host/sdhci*
12737F:	include/linux/mmc/sdhci*
12738
12739SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
12740M:	Ben Dooks <ben-linux@fluff.org>
12741M:	Jaehoon Chung <jh80.chung@samsung.com>
12742L:	linux-mmc@vger.kernel.org
12743S:	Maintained
12744F:	drivers/mmc/host/sdhci-s3c*
12745
12746SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
12747M:	Viresh Kumar <vireshk@kernel.org>
12748L:	linux-mmc@vger.kernel.org
12749S:	Maintained
12750F:	drivers/mmc/host/sdhci-spear.c
12751
12752SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
12753M:	Kishon Vijay Abraham I <kishon@ti.com>
12754L:	linux-mmc@vger.kernel.org
12755S:	Maintained
12756F:	drivers/mmc/host/sdhci-omap.c
12757
12758SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
12759M:	Scott Bauer <scott.bauer@intel.com>
12760M:	Jonathan Derrick <jonathan.derrick@intel.com>
12761L:	linux-block@vger.kernel.org
12762S:	Supported
12763F:	block/sed*
12764F:	block/opal_proto.h
12765F:	include/linux/sed*
12766F:	include/uapi/linux/sed*
12767
12768SECURITY CONTACT
12769M:	Security Officers <security@kernel.org>
12770S:	Supported
12771
12772SECURITY SUBSYSTEM
12773M:	James Morris <jmorris@namei.org>
12774M:	"Serge E. Hallyn" <serge@hallyn.com>
12775L:	linux-security-module@vger.kernel.org (suggested Cc:)
12776T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
12777W:	http://kernsec.org/
12778S:	Supported
12779F:	security/
12780
12781SELINUX SECURITY MODULE
12782M:	Paul Moore <paul@paul-moore.com>
12783M:	Stephen Smalley <sds@tycho.nsa.gov>
12784M:	Eric Paris <eparis@parisplace.org>
12785L:	selinux@tycho.nsa.gov (moderated for non-subscribers)
12786W:	https://selinuxproject.org
12787W:	https://github.com/SELinuxProject
12788T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
12789S:	Supported
12790F:	include/linux/selinux*
12791F:	security/selinux/
12792F:	scripts/selinux/
12793F:	Documentation/admin-guide/LSM/SELinux.rst
12794
12795SENSABLE PHANTOM
12796M:	Jiri Slaby <jirislaby@gmail.com>
12797S:	Maintained
12798F:	drivers/misc/phantom.c
12799F:	include/uapi/linux/phantom.h
12800
12801SERIAL DEVICE BUS
12802M:	Rob Herring <robh@kernel.org>
12803L:	linux-serial@vger.kernel.org
12804S:	Maintained
12805F:	Documentation/devicetree/bindings/serial/slave-device.txt
12806F:	drivers/tty/serdev/
12807F:	include/linux/serdev.h
12808
12809SERIAL DRIVERS
12810M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12811L:	linux-serial@vger.kernel.org
12812S:	Maintained
12813F:	Documentation/devicetree/bindings/serial/
12814F:	drivers/tty/serial/
12815
12816SERIAL IR RECEIVER
12817M:	Sean Young <sean@mess.org>
12818L:	linux-media@vger.kernel.org
12819S:	Maintained
12820F:	drivers/media/rc/serial_ir.c
12821
12822SFC NETWORK DRIVER
12823M:	Solarflare linux maintainers <linux-net-drivers@solarflare.com>
12824M:	Edward Cree <ecree@solarflare.com>
12825M:	Bert Kenward <bkenward@solarflare.com>
12826L:	netdev@vger.kernel.org
12827S:	Supported
12828F:	drivers/net/ethernet/sfc/
12829
12830SGI GRU DRIVER
12831M:	Dimitri Sivanich <sivanich@sgi.com>
12832S:	Maintained
12833F:	drivers/misc/sgi-gru/
12834
12835SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
12836M:	Pat Gefre <pfg@sgi.com>
12837L:	linux-ia64@vger.kernel.org
12838S:	Supported
12839F:	Documentation/ia64/serial.txt
12840F:	drivers/tty/serial/ioc?_serial.c
12841F:	include/linux/ioc?.h
12842
12843SGI XP/XPC/XPNET DRIVER
12844M:	Cliff Whickman <cpw@sgi.com>
12845M:	Robin Holt <robinmholt@gmail.com>
12846S:	Maintained
12847F:	drivers/misc/sgi-xp/
12848
12849SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
12850M:	Ursula Braun <ubraun@linux.ibm.com>
12851L:	linux-s390@vger.kernel.org
12852W:	http://www.ibm.com/developerworks/linux/linux390/
12853S:	Supported
12854F:	net/smc/
12855
12856SH_VEU V4L2 MEM2MEM DRIVER
12857L:	linux-media@vger.kernel.org
12858S:	Orphan
12859F:	drivers/media/platform/sh_veu.c
12860
12861SH_VOU V4L2 OUTPUT DRIVER
12862L:	linux-media@vger.kernel.org
12863S:	Orphan
12864F:	drivers/media/platform/sh_vou.c
12865F:	include/media/drv-intf/sh_vou.h
12866
12867SI2157 MEDIA DRIVER
12868M:	Antti Palosaari <crope@iki.fi>
12869L:	linux-media@vger.kernel.org
12870W:	https://linuxtv.org
12871W:	http://palosaari.fi/linux/
12872Q:	http://patchwork.linuxtv.org/project/linux-media/list/
12873T:	git git://linuxtv.org/anttip/media_tree.git
12874S:	Maintained
12875F:	drivers/media/tuners/si2157*
12876
12877SI2165 MEDIA DRIVER
12878M:	Matthias Schwarzott <zzam@gentoo.org>
12879L:	linux-media@vger.kernel.org
12880W:	https://linuxtv.org
12881Q:	http://patchwork.linuxtv.org/project/linux-media/list/
12882S:	Maintained
12883F:	drivers/media/dvb-frontends/si2165*
12884
12885SI2168 MEDIA DRIVER
12886M:	Antti Palosaari <crope@iki.fi>
12887L:	linux-media@vger.kernel.org
12888W:	https://linuxtv.org
12889W:	http://palosaari.fi/linux/
12890Q:	http://patchwork.linuxtv.org/project/linux-media/list/
12891T:	git git://linuxtv.org/anttip/media_tree.git
12892S:	Maintained
12893F:	drivers/media/dvb-frontends/si2168*
12894
12895SI470X FM RADIO RECEIVER I2C DRIVER
12896M:	Hans Verkuil <hverkuil@xs4all.nl>
12897L:	linux-media@vger.kernel.org
12898T:	git git://linuxtv.org/media_tree.git
12899W:	https://linuxtv.org
12900S:	Odd Fixes
12901F:	drivers/media/radio/si470x/radio-si470x-i2c.c
12902
12903SI470X FM RADIO RECEIVER USB DRIVER
12904M:	Hans Verkuil <hverkuil@xs4all.nl>
12905L:	linux-media@vger.kernel.org
12906T:	git git://linuxtv.org/media_tree.git
12907W:	https://linuxtv.org
12908S:	Maintained
12909F:	drivers/media/radio/si470x/radio-si470x-common.c
12910F:	drivers/media/radio/si470x/radio-si470x.h
12911F:	drivers/media/radio/si470x/radio-si470x-usb.c
12912
12913SI4713 FM RADIO TRANSMITTER I2C DRIVER
12914M:	Eduardo Valentin <edubezval@gmail.com>
12915L:	linux-media@vger.kernel.org
12916T:	git git://linuxtv.org/media_tree.git
12917W:	https://linuxtv.org
12918S:	Odd Fixes
12919F:	drivers/media/radio/si4713/si4713.?
12920
12921SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
12922M:	Eduardo Valentin <edubezval@gmail.com>
12923L:	linux-media@vger.kernel.org
12924T:	git git://linuxtv.org/media_tree.git
12925W:	https://linuxtv.org
12926S:	Odd Fixes
12927F:	drivers/media/radio/si4713/radio-platform-si4713.c
12928
12929SI4713 FM RADIO TRANSMITTER USB DRIVER
12930M:	Hans Verkuil <hverkuil@xs4all.nl>
12931L:	linux-media@vger.kernel.org
12932T:	git git://linuxtv.org/media_tree.git
12933W:	https://linuxtv.org
12934S:	Maintained
12935F:	drivers/media/radio/si4713/radio-usb-si4713.c
12936
12937SIANO DVB DRIVER
12938M:	Mauro Carvalho Chehab <mchehab@kernel.org>
12939L:	linux-media@vger.kernel.org
12940W:	https://linuxtv.org
12941T:	git git://linuxtv.org/media_tree.git
12942S:	Odd fixes
12943F:	drivers/media/common/siano/
12944F:	drivers/media/usb/siano/
12945F:	drivers/media/usb/siano/
12946F:	drivers/media/mmc/siano/
12947
12948SIFIVE DRIVERS
12949M:	Palmer Dabbelt <palmer@sifive.com>
12950L:	linux-riscv@lists.infradead.org
12951T:	git git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git
12952S:	Supported
12953K:	sifive
12954N:	sifive
12955
12956SILEAD TOUCHSCREEN DRIVER
12957M:	Hans de Goede <hdegoede@redhat.com>
12958L:	linux-input@vger.kernel.org
12959L:	platform-driver-x86@vger.kernel.org
12960S:	Maintained
12961F:	drivers/input/touchscreen/silead.c
12962F:	drivers/platform/x86/silead_dmi.c
12963
12964SILICON MOTION SM712 FRAME BUFFER DRIVER
12965M:	Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12966M:	Teddy Wang <teddy.wang@siliconmotion.com>
12967M:	Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12968L:	linux-fbdev@vger.kernel.org
12969S:	Maintained
12970F:	drivers/video/fbdev/sm712*
12971F:	Documentation/fb/sm712fb.txt
12972
12973SIMPLE FIRMWARE INTERFACE (SFI)
12974M:	Len Brown <lenb@kernel.org>
12975L:	sfi-devel@simplefirmware.org
12976W:	http://simplefirmware.org/
12977T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
12978S:	Supported
12979F:	arch/x86/platform/sfi/
12980F:	drivers/sfi/
12981F:	include/linux/sfi*.h
12982
12983SIMPLEFB FB DRIVER
12984M:	Hans de Goede <hdegoede@redhat.com>
12985L:	linux-fbdev@vger.kernel.org
12986S:	Maintained
12987F:	Documentation/devicetree/bindings/display/simple-framebuffer.txt
12988F:	drivers/video/fbdev/simplefb.c
12989F:	include/linux/platform_data/simplefb.h
12990
12991SIMTEC EB110ATX (Chalice CATS)
12992P:	Ben Dooks
12993P:	Vincent Sanders <vince@simtec.co.uk>
12994M:	Simtec Linux Team <linux@simtec.co.uk>
12995W:	http://www.simtec.co.uk/products/EB110ATX/
12996S:	Supported
12997
12998SIMTEC EB2410ITX (BAST)
12999P:	Ben Dooks
13000P:	Vincent Sanders <vince@simtec.co.uk>
13001M:	Simtec Linux Team <linux@simtec.co.uk>
13002W:	http://www.simtec.co.uk/products/EB2410ITX/
13003S:	Supported
13004F:	arch/arm/mach-s3c24xx/mach-bast.c
13005F:	arch/arm/mach-s3c24xx/bast-ide.c
13006F:	arch/arm/mach-s3c24xx/bast-irq.c
13007
13008SIPHASH PRF ROUTINES
13009M:	Jason A. Donenfeld <Jason@zx2c4.com>
13010S:	Maintained
13011F:	lib/siphash.c
13012F:	lib/test_siphash.c
13013F:	include/linux/siphash.h
13014
13015SIOX
13016M:	Gavin Schenk <g.schenk@eckelmann.de>
13017M:	Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13018R:	Pengutronix Kernel Team <kernel@pengutronix.de>
13019S:	Supported
13020F:	drivers/siox/*
13021F:	include/trace/events/siox.h
13022
13023SIS 190 ETHERNET DRIVER
13024M:	Francois Romieu <romieu@fr.zoreil.com>
13025L:	netdev@vger.kernel.org
13026S:	Maintained
13027F:	drivers/net/ethernet/sis/sis190.c
13028
13029SIS 900/7016 FAST ETHERNET DRIVER
13030M:	Daniele Venzano <venza@brownhat.org>
13031W:	http://www.brownhat.org/sis900.html
13032L:	netdev@vger.kernel.org
13033S:	Maintained
13034F:	drivers/net/ethernet/sis/sis900.*
13035
13036SIS FRAMEBUFFER DRIVER
13037M:	Thomas Winischhofer <thomas@winischhofer.net>
13038W:	http://www.winischhofer.net/linuxsisvga.shtml
13039S:	Maintained
13040F:	Documentation/fb/sisfb.txt
13041F:	drivers/video/fbdev/sis/
13042F:	include/video/sisfb.h
13043
13044SIS USB2VGA DRIVER
13045M:	Thomas Winischhofer <thomas@winischhofer.net>
13046W:	http://www.winischhofer.at/linuxsisusbvga.shtml
13047S:	Maintained
13048F:	drivers/usb/misc/sisusbvga/
13049
13050SLAB ALLOCATOR
13051M:	Christoph Lameter <cl@linux.com>
13052M:	Pekka Enberg <penberg@kernel.org>
13053M:	David Rientjes <rientjes@google.com>
13054M:	Joonsoo Kim <iamjoonsoo.kim@lge.com>
13055M:	Andrew Morton <akpm@linux-foundation.org>
13056L:	linux-mm@kvack.org
13057S:	Maintained
13058F:	include/linux/sl?b*.h
13059F:	mm/sl?b*
13060
13061SLEEPABLE READ-COPY UPDATE (SRCU)
13062M:	Lai Jiangshan <jiangshanlai@gmail.com>
13063M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
13064M:	Josh Triplett <josh@joshtriplett.org>
13065R:	Steven Rostedt <rostedt@goodmis.org>
13066R:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13067L:	linux-kernel@vger.kernel.org
13068W:	http://www.rdrop.com/users/paulmck/RCU/
13069S:	Supported
13070T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
13071F:	include/linux/srcu.h
13072F:	kernel/rcu/srcu.c
13073
13074SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
13075M:	Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13076L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13077S:	Maintained
13078F:	drivers/slimbus/
13079F:	Documentation/devicetree/bindings/slimbus/
13080F:	include/linux/slimbus.h
13081
13082SMACK SECURITY MODULE
13083M:	Casey Schaufler <casey@schaufler-ca.com>
13084L:	linux-security-module@vger.kernel.org
13085W:	http://schaufler-ca.com
13086T:	git git://github.com/cschaufler/smack-next
13087S:	Maintained
13088F:	Documentation/admin-guide/LSM/Smack.rst
13089F:	security/smack/
13090
13091SMC91x ETHERNET DRIVER
13092M:	Nicolas Pitre <nico@fluxnic.net>
13093S:	Odd Fixes
13094F:	drivers/net/ethernet/smsc/smc91x.*
13095
13096SMIA AND SMIA++ IMAGE SENSOR DRIVER
13097M:	Sakari Ailus <sakari.ailus@iki.fi>
13098L:	linux-media@vger.kernel.org
13099S:	Maintained
13100F:	drivers/media/i2c/smiapp/
13101F:	include/media/i2c/smiapp.h
13102F:	drivers/media/i2c/smiapp-pll.c
13103F:	drivers/media/i2c/smiapp-pll.h
13104F:	include/uapi/linux/smiapp.h
13105F:	Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
13106
13107SMM665 HARDWARE MONITOR DRIVER
13108M:	Guenter Roeck <linux@roeck-us.net>
13109L:	linux-hwmon@vger.kernel.org
13110S:	Maintained
13111F:	Documentation/hwmon/smm665
13112F:	drivers/hwmon/smm665.c
13113
13114SMSC EMC2103 HARDWARE MONITOR DRIVER
13115M:	Steve Glendinning <steve.glendinning@shawell.net>
13116L:	linux-hwmon@vger.kernel.org
13117S:	Maintained
13118F:	Documentation/hwmon/emc2103
13119F:	drivers/hwmon/emc2103.c
13120
13121SMSC SCH5627 HARDWARE MONITOR DRIVER
13122M:	Hans de Goede <hdegoede@redhat.com>
13123L:	linux-hwmon@vger.kernel.org
13124S:	Supported
13125F:	Documentation/hwmon/sch5627
13126F:	drivers/hwmon/sch5627.c
13127
13128SMSC UFX6000 and UFX7000 USB to VGA DRIVER
13129M:	Steve Glendinning <steve.glendinning@shawell.net>
13130L:	linux-fbdev@vger.kernel.org
13131S:	Maintained
13132F:	drivers/video/fbdev/smscufx.c
13133
13134SMSC47B397 HARDWARE MONITOR DRIVER
13135M:	Jean Delvare <jdelvare@suse.com>
13136L:	linux-hwmon@vger.kernel.org
13137S:	Maintained
13138F:	Documentation/hwmon/smsc47b397
13139F:	drivers/hwmon/smsc47b397.c
13140
13141SMSC911x ETHERNET DRIVER
13142M:	Steve Glendinning <steve.glendinning@shawell.net>
13143L:	netdev@vger.kernel.org
13144S:	Maintained
13145F:	include/linux/smsc911x.h
13146F:	drivers/net/ethernet/smsc/smsc911x.*
13147
13148SMSC9420 PCI ETHERNET DRIVER
13149M:	Steve Glendinning <steve.glendinning@shawell.net>
13150L:	netdev@vger.kernel.org
13151S:	Maintained
13152F:	drivers/net/ethernet/smsc/smsc9420.*
13153
13154SOC-CAMERA V4L2 SUBSYSTEM
13155L:	linux-media@vger.kernel.org
13156T:	git git://linuxtv.org/media_tree.git
13157S:	Orphan
13158F:	include/media/soc*
13159F:	drivers/media/i2c/soc_camera/
13160F:	drivers/media/platform/soc_camera/
13161
13162SOCIONEXT SYNQUACER I2C DRIVER
13163M:	Ard Biesheuvel <ard.biesheuvel@linaro.org>
13164L:	linux-i2c@vger.kernel.org
13165S:	Maintained
13166F:	drivers/i2c/busses/i2c-synquacer.c
13167F:	Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
13168
13169SOCIONEXT UNIPHIER SOUND DRIVER
13170M:	Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
13171L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13172S:	Maintained
13173F:	sound/soc/uniphier/
13174
13175SOEKRIS NET48XX LED SUPPORT
13176M:	Chris Boot <bootc@bootc.net>
13177S:	Maintained
13178F:	drivers/leds/leds-net48xx.c
13179
13180SOFT-ROCE DRIVER (rxe)
13181M:	Moni Shoua <monis@mellanox.com>
13182L:	linux-rdma@vger.kernel.org
13183S:	Supported
13184W:	https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
13185Q:	http://patchwork.kernel.org/project/linux-rdma/list/
13186F:	drivers/infiniband/sw/rxe/
13187F:	include/uapi/rdma/rdma_user_rxe.h
13188
13189SOFTLOGIC 6x10 MPEG CODEC
13190M:	Bluecherry Maintainers <maintainers@bluecherrydvr.com>
13191M:	Anton Sviridenko <anton@corp.bluecherry.net>
13192M:	Andrey Utkin <andrey.utkin@corp.bluecherry.net>
13193M:	Andrey Utkin <andrey_utkin@fastmail.com>
13194M:	Ismael Luceno <ismael@iodev.co.uk>
13195L:	linux-media@vger.kernel.org
13196S:	Supported
13197F:	drivers/media/pci/solo6x10/
13198
13199SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
13200M:	James Morse <james.morse@arm.com>
13201L:	linux-arm-kernel@lists.infradead.org
13202S:	Maintained
13203F:	Documentation/devicetree/bindings/arm/firmware/sdei.txt
13204F:	drivers/firmware/arm_sdei.c
13205F:	include/linux/sdei.h
13206F:	include/uapi/linux/sdei.h
13207
13208SOFTWARE RAID (Multiple Disks) SUPPORT
13209M:	Shaohua Li <shli@kernel.org>
13210L:	linux-raid@vger.kernel.org
13211T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
13212S:	Supported
13213F:	drivers/md/Makefile
13214F:	drivers/md/Kconfig
13215F:	drivers/md/md*
13216F:	drivers/md/raid*
13217F:	include/linux/raid/
13218F:	include/uapi/linux/raid/
13219
13220SOCIONEXT (SNI) NETSEC NETWORK DRIVER
13221M:	Jassi Brar <jaswinder.singh@linaro.org>
13222L:	netdev@vger.kernel.org
13223S:	Maintained
13224F:	drivers/net/ethernet/socionext/netsec.c
13225F:	Documentation/devicetree/bindings/net/socionext-netsec.txt
13226
13227SOLIDRUN CLEARFOG SUPPORT
13228M:	Russell King <linux@armlinux.org.uk>
13229S:	Maintained
13230F:	arch/arm/boot/dts/armada-388-clearfog*
13231F:	arch/arm/boot/dts/armada-38x-solidrun-*
13232
13233SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
13234M:	Russell King <linux@armlinux.org.uk>
13235S:	Maintained
13236F:	arch/arm/boot/dts/imx6*-cubox-i*
13237F:	arch/arm/boot/dts/imx6*-hummingboard*
13238F:	arch/arm/boot/dts/imx6*-sr-*
13239
13240SONIC NETWORK DRIVER
13241M:	Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13242L:	netdev@vger.kernel.org
13243S:	Maintained
13244F:	drivers/net/ethernet/natsemi/sonic.*
13245
13246SONICS SILICON BACKPLANE DRIVER (SSB)
13247M:	Michael Buesch <m@bues.ch>
13248L:	linux-wireless@vger.kernel.org
13249S:	Maintained
13250F:	drivers/ssb/
13251F:	include/linux/ssb/
13252
13253SONY IMX258 SENSOR DRIVER
13254M:	Sakari Ailus <sakari.ailus@linux.intel.com>
13255L:	linux-media@vger.kernel.org
13256T:	git git://linuxtv.org/media_tree.git
13257S:	Maintained
13258F:	drivers/media/i2c/imx258.c
13259
13260SONY IMX274 SENSOR DRIVER
13261M:	Leon Luo <leonl@leopardimaging.com>
13262L:	linux-media@vger.kernel.org
13263T:	git git://linuxtv.org/media_tree.git
13264S:	Maintained
13265F:	drivers/media/i2c/imx274.c
13266F:	Documentation/devicetree/bindings/media/i2c/imx274.txt
13267
13268SONY MEMORYSTICK CARD SUPPORT
13269M:	Alex Dubov <oakad@yahoo.com>
13270W:	http://tifmxx.berlios.de/
13271S:	Maintained
13272F:	drivers/memstick/host/tifm_ms.c
13273
13274SONY MEMORYSTICK STANDARD SUPPORT
13275M:	Maxim Levitsky <maximlevitsky@gmail.com>
13276S:	Maintained
13277F:	drivers/memstick/core/ms_block.*
13278
13279SONY VAIO CONTROL DEVICE DRIVER
13280M:	Mattia Dongili <malattia@linux.it>
13281L:	platform-driver-x86@vger.kernel.org
13282W:	http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
13283S:	Maintained
13284F:	Documentation/laptops/sony-laptop.txt
13285F:	drivers/char/sonypi.c
13286F:	drivers/platform/x86/sony-laptop.c
13287F:	include/linux/sony-laptop.h
13288
13289SOUND
13290M:	Jaroslav Kysela <perex@perex.cz>
13291M:	Takashi Iwai <tiwai@suse.com>
13292L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13293W:	http://www.alsa-project.org/
13294T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13295T:	git git://git.alsa-project.org/alsa-kernel.git
13296Q:	http://patchwork.kernel.org/project/alsa-devel/list/
13297S:	Maintained
13298F:	Documentation/sound/
13299F:	include/sound/
13300F:	include/uapi/sound/
13301F:	sound/
13302
13303SOUND - COMPRESSED AUDIO
13304M:	Vinod Koul <vkoul@kernel.org>
13305L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13306T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13307S:	Supported
13308F:	Documentation/sound/designs/compress-offload.rst
13309F:	include/sound/compress_driver.h
13310F:	include/uapi/sound/compress_*
13311F:	sound/core/compress_offload.c
13312F:	sound/soc/soc-compress.c
13313
13314SOUND - DMAENGINE HELPERS
13315M:	Lars-Peter Clausen <lars@metafoo.de>
13316S:	Supported
13317F:	include/sound/dmaengine_pcm.h
13318F:	sound/core/pcm_dmaengine.c
13319F:	sound/soc/soc-generic-dmaengine-pcm.c
13320
13321SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
13322M:	Liam Girdwood <lgirdwood@gmail.com>
13323M:	Mark Brown <broonie@kernel.org>
13324T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
13325L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13326W:	http://alsa-project.org/main/index.php/ASoC
13327S:	Supported
13328F:	Documentation/devicetree/bindings/sound/
13329F:	Documentation/sound/soc/
13330F:	sound/soc/
13331F:	include/sound/soc*
13332
13333SOUNDWIRE SUBSYSTEM
13334M:	Vinod Koul <vinod.koul@intel.com>
13335M:	Sanyog Kale <sanyog.r.kale@intel.com>
13336R:	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
13337L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13338S:	Supported
13339F:	Documentation/driver-api/soundwire/
13340F:	drivers/soundwire/
13341F:	include/linux/soundwire/
13342
13343SP2 MEDIA DRIVER
13344M:	Olli Salonen <olli.salonen@iki.fi>
13345L:	linux-media@vger.kernel.org
13346W:	https://linuxtv.org
13347Q:	http://patchwork.linuxtv.org/project/linux-media/list/
13348S:	Maintained
13349F:	drivers/media/dvb-frontends/sp2*
13350
13351SPARC + UltraSPARC (sparc/sparc64)
13352M:	"David S. Miller" <davem@davemloft.net>
13353L:	sparclinux@vger.kernel.org
13354Q:	http://patchwork.ozlabs.org/project/sparclinux/list/
13355T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
13356T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
13357S:	Maintained
13358F:	arch/sparc/
13359F:	drivers/sbus/
13360
13361SPARC SERIAL DRIVERS
13362M:	"David S. Miller" <davem@davemloft.net>
13363L:	sparclinux@vger.kernel.org
13364T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
13365T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
13366S:	Maintained
13367F:	include/linux/sunserialcore.h
13368F:	drivers/tty/serial/suncore.c
13369F:	drivers/tty/serial/sunhv.c
13370F:	drivers/tty/serial/sunsab.c
13371F:	drivers/tty/serial/sunsab.h
13372F:	drivers/tty/serial/sunsu.c
13373F:	drivers/tty/serial/sunzilog.c
13374F:	drivers/tty/serial/sunzilog.h
13375F:	drivers/tty/vcc.c
13376
13377SPARSE CHECKER
13378M:	"Christopher Li" <sparse@chrisli.org>
13379L:	linux-sparse@vger.kernel.org
13380W:	https://sparse.wiki.kernel.org/
13381T:	git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
13382T:	git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
13383S:	Maintained
13384F:	include/linux/compiler.h
13385
13386SPEAR CLOCK FRAMEWORK SUPPORT
13387M:	Viresh Kumar <vireshk@kernel.org>
13388L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13389W:	http://www.st.com/spear
13390S:	Maintained
13391F:	drivers/clk/spear/
13392
13393SPEAR PLATFORM SUPPORT
13394M:	Viresh Kumar <vireshk@kernel.org>
13395M:	Shiraz Hashim <shiraz.linux.kernel@gmail.com>
13396L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13397W:	http://www.st.com/spear
13398S:	Maintained
13399F:	arch/arm/boot/dts/spear*
13400F:	arch/arm/mach-spear/
13401
13402SPI NOR SUBSYSTEM
13403M:	Marek Vasut <marek.vasut@gmail.com>
13404L:	linux-mtd@lists.infradead.org
13405W:	http://www.linux-mtd.infradead.org/
13406Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
13407T:	git git://git.infradead.org/linux-mtd.git spi-nor/fixes
13408T:	git git://git.infradead.org/linux-mtd.git spi-nor/next
13409S:	Maintained
13410F:	drivers/mtd/spi-nor/
13411F:	include/linux/mtd/spi-nor.h
13412
13413SPI SUBSYSTEM
13414M:	Mark Brown <broonie@kernel.org>
13415L:	linux-spi@vger.kernel.org
13416T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
13417Q:	http://patchwork.kernel.org/project/spi-devel-general/list/
13418S:	Maintained
13419F:	Documentation/devicetree/bindings/spi/
13420F:	Documentation/spi/
13421F:	drivers/spi/
13422F:	include/linux/spi/
13423F:	include/uapi/linux/spi/
13424F:	tools/spi/
13425
13426SPIDERNET NETWORK DRIVER for CELL
13427M:	Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
13428L:	netdev@vger.kernel.org
13429S:	Supported
13430F:	Documentation/networking/spider_net.txt
13431F:	drivers/net/ethernet/toshiba/spider_net*
13432
13433SPMI SUBSYSTEM
13434R:	Stephen Boyd <sboyd@kernel.org>
13435L:	linux-arm-msm@vger.kernel.org
13436F:	Documentation/devicetree/bindings/spmi/
13437F:	drivers/spmi/
13438F:	include/dt-bindings/spmi/spmi.h
13439F:	include/linux/spmi.h
13440F:	include/trace/events/spmi.h
13441
13442SPU FILE SYSTEM
13443M:	Jeremy Kerr <jk@ozlabs.org>
13444L:	linuxppc-dev@lists.ozlabs.org
13445W:	http://www.ibm.com/developerworks/power/cell/
13446S:	Supported
13447F:	Documentation/filesystems/spufs.txt
13448F:	arch/powerpc/platforms/cell/spufs/
13449
13450SQUASHFS FILE SYSTEM
13451M:	Phillip Lougher <phillip@squashfs.org.uk>
13452L:	squashfs-devel@lists.sourceforge.net (subscribers-only)
13453W:	http://squashfs.org.uk
13454T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
13455S:	Maintained
13456F:	Documentation/filesystems/squashfs.txt
13457F:	fs/squashfs/
13458
13459SRM (Alpha) environment access
13460M:	Jan-Benedict Glaw <jbglaw@lug-owl.de>
13461S:	Maintained
13462F:	arch/alpha/kernel/srm_env.c
13463
13464ST STM32 I2C/SMBUS DRIVER
13465M:	Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
13466L:	linux-i2c@vger.kernel.org
13467S:	Maintained
13468F:	drivers/i2c/busses/i2c-stm32*
13469
13470STABLE BRANCH
13471M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13472L:	stable@vger.kernel.org
13473S:	Supported
13474F:	Documentation/process/stable-kernel-rules.rst
13475
13476STAGING - COMEDI
13477M:	Ian Abbott <abbotti@mev.co.uk>
13478M:	H Hartley Sweeten <hsweeten@visionengravers.com>
13479S:	Odd Fixes
13480F:	drivers/staging/comedi/
13481
13482STAGING - FLARION FT1000 DRIVERS
13483M:	Marek Belisko <marek.belisko@gmail.com>
13484S:	Odd Fixes
13485F:	drivers/staging/ft1000/
13486
13487STAGING - INDUSTRIAL IO
13488M:	Jonathan Cameron <jic23@kernel.org>
13489L:	linux-iio@vger.kernel.org
13490S:	Odd Fixes
13491F:	Documentation/devicetree/bindings/staging/iio/
13492F:	drivers/staging/iio/
13493
13494STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
13495M:	Marc Dietrich <marvin24@gmx.de>
13496L:	ac100@lists.launchpad.net (moderated for non-subscribers)
13497L:	linux-tegra@vger.kernel.org
13498S:	Maintained
13499F:	drivers/staging/nvec/
13500
13501STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
13502M:	Jens Frederich <jfrederich@gmail.com>
13503M:	Daniel Drake <dsd@laptop.org>
13504M:	Jon Nettleton <jon.nettleton@gmail.com>
13505W:	http://wiki.laptop.org/go/DCON
13506S:	Maintained
13507F:	drivers/staging/olpc_dcon/
13508
13509STAGING - REALTEK RTL8712U DRIVERS
13510M:	Larry Finger <Larry.Finger@lwfinger.net>
13511M:	Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
13512S:	Odd Fixes
13513F:	drivers/staging/rtl8712/
13514
13515STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
13516M:	Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13517M:	Teddy Wang <teddy.wang@siliconmotion.com>
13518M:	Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13519L:	linux-fbdev@vger.kernel.org
13520S:	Maintained
13521F:	drivers/staging/sm750fb/
13522
13523STAGING - SPEAKUP CONSOLE SPEECH DRIVER
13524M:	William Hubbs <w.d.hubbs@gmail.com>
13525M:	Chris Brannon <chris@the-brannons.com>
13526M:	Kirk Reiser <kirk@reisers.ca>
13527M:	Samuel Thibault <samuel.thibault@ens-lyon.org>
13528L:	speakup@linux-speakup.org
13529W:	http://www.linux-speakup.org/
13530S:	Odd Fixes
13531F:	drivers/staging/speakup/
13532
13533STAGING - VIA VT665X DRIVERS
13534M:	Forest Bond <forest@alittletooquiet.net>
13535S:	Odd Fixes
13536F:	drivers/staging/vt665?/
13537
13538STAGING - WILC1000 WIFI DRIVER
13539M:	Aditya Shankar <aditya.shankar@microchip.com>
13540M:	Ganesh Krishna <ganesh.krishna@microchip.com>
13541L:	linux-wireless@vger.kernel.org
13542S:	Supported
13543F:	drivers/staging/wilc1000/
13544
13545STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
13546M:	Arnaud Patard <arnaud.patard@rtp-net.org>
13547S:	Odd Fixes
13548F:	drivers/staging/xgifb/
13549
13550STAGING SUBSYSTEM
13551M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13552T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
13553L:	devel@driverdev.osuosl.org
13554S:	Supported
13555F:	drivers/staging/
13556
13557STARFIRE/DURALAN NETWORK DRIVER
13558M:	Ion Badulescu <ionut@badula.org>
13559S:	Odd Fixes
13560F:	drivers/net/ethernet/adaptec/starfire*
13561
13562STEC S1220 SKD DRIVER
13563M:	Bart Van Assche <bart.vanassche@wdc.com>
13564L:	linux-block@vger.kernel.org
13565S:	Maintained
13566F:	drivers/block/skd*[ch]
13567
13568STI CEC DRIVER
13569M:	Benjamin Gaignard <benjamin.gaignard@linaro.org>
13570S:	Maintained
13571F:	drivers/staging/media/st-cec/
13572F:	Documentation/devicetree/bindings/media/stih-cec.txt
13573
13574STK1160 USB VIDEO CAPTURE DRIVER
13575M:	Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
13576L:	linux-media@vger.kernel.org
13577T:	git git://linuxtv.org/media_tree.git
13578S:	Maintained
13579F:	drivers/media/usb/stk1160/
13580
13581STM32 TIMER/LPTIMER DRIVERS
13582M:	Fabrice Gasnier <fabrice.gasnier@st.com>
13583S:	Maintained
13584F:	drivers/*/stm32-*timer*
13585F:	drivers/pwm/pwm-stm32*
13586F:	include/linux/*/stm32-*tim*
13587F:	Documentation/ABI/testing/*timer-stm32
13588F:	Documentation/devicetree/bindings/*/stm32-*timer*
13589F:	Documentation/devicetree/bindings/pwm/pwm-stm32*
13590
13591STMMAC ETHERNET DRIVER
13592M:	Giuseppe Cavallaro <peppe.cavallaro@st.com>
13593M:	Alexandre Torgue <alexandre.torgue@st.com>
13594M:	Jose Abreu <joabreu@synopsys.com>
13595L:	netdev@vger.kernel.org
13596W:	http://www.stlinux.com
13597S:	Supported
13598F:	drivers/net/ethernet/stmicro/stmmac/
13599
13600SUN3/3X
13601M:	Sam Creasey <sammy@sammy.net>
13602W:	http://sammy.net/sun3/
13603S:	Maintained
13604F:	arch/m68k/kernel/*sun3*
13605F:	arch/m68k/sun3*/
13606F:	arch/m68k/include/asm/sun3*
13607F:	drivers/net/ethernet/i825xx/sun3*
13608
13609SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
13610M:	Hans de Goede <hdegoede@redhat.com>
13611L:	linux-input@vger.kernel.org
13612S:	Maintained
13613F:	Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
13614F:	drivers/input/keyboard/sun4i-lradc-keys.c
13615
13616SUNDANCE NETWORK DRIVER
13617M:	Denis Kirjanov <kda@linux-powerpc.org>
13618L:	netdev@vger.kernel.org
13619S:	Maintained
13620F:	drivers/net/ethernet/dlink/sundance.c
13621
13622SUPERH
13623M:	Yoshinori Sato <ysato@users.sourceforge.jp>
13624M:	Rich Felker <dalias@libc.org>
13625L:	linux-sh@vger.kernel.org
13626Q:	http://patchwork.kernel.org/project/linux-sh/list/
13627S:	Maintained
13628F:	Documentation/sh/
13629F:	arch/sh/
13630F:	drivers/sh/
13631
13632SUSPEND TO RAM
13633M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
13634M:	Len Brown <len.brown@intel.com>
13635M:	Pavel Machek <pavel@ucw.cz>
13636L:	linux-pm@vger.kernel.org
13637B:	https://bugzilla.kernel.org
13638S:	Supported
13639F:	Documentation/power/
13640F:	arch/x86/kernel/acpi/
13641F:	drivers/base/power/
13642F:	kernel/power/
13643F:	include/linux/suspend.h
13644F:	include/linux/freezer.h
13645F:	include/linux/pm.h
13646
13647SVGA HANDLING
13648M:	Martin Mares <mj@ucw.cz>
13649L:	linux-video@atrey.karlin.mff.cuni.cz
13650S:	Maintained
13651F:	Documentation/svga.txt
13652F:	arch/x86/boot/video*
13653
13654SWIOTLB SUBSYSTEM
13655M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
13656L:	iommu@lists.linux-foundation.org
13657T:	git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
13658S:	Supported
13659F:	lib/swiotlb.c
13660F:	arch/*/kernel/pci-swiotlb.c
13661F:	include/linux/swiotlb.h
13662
13663SWITCHDEV
13664M:	Jiri Pirko <jiri@resnulli.us>
13665M:	Ivan Vecera <ivecera@redhat.com>
13666L:	netdev@vger.kernel.org
13667S:	Supported
13668F:	net/switchdev/
13669F:	include/net/switchdev.h
13670
13671SY8106A REGULATOR DRIVER
13672M:	Icenowy Zheng <icenowy@aosc.io>
13673S:	Maintained
13674F:	drivers/regulator/sy8106a-regulator.c
13675F:	Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
13676
13677SYNC FILE FRAMEWORK
13678M:	Sumit Semwal <sumit.semwal@linaro.org>
13679R:	Gustavo Padovan <gustavo@padovan.org>
13680S:	Maintained
13681L:	linux-media@vger.kernel.org
13682L:	dri-devel@lists.freedesktop.org
13683F:	drivers/dma-buf/sync_*
13684F:	drivers/dma-buf/dma-fence*
13685F:	drivers/dma-buf/sw_sync.c
13686F:	include/linux/sync_file.h
13687F:	include/uapi/linux/sync_file.h
13688F:	Documentation/sync_file.txt
13689T:	git git://anongit.freedesktop.org/drm/drm-misc
13690
13691SYNOPSYS ARC ARCHITECTURE
13692M:	Vineet Gupta <vgupta@synopsys.com>
13693L:	linux-snps-arc@lists.infradead.org
13694S:	Supported
13695F:	arch/arc/
13696F:	Documentation/devicetree/bindings/arc/*
13697F:	Documentation/devicetree/bindings/interrupt-controller/snps,arc*
13698F:	drivers/clocksource/arc_timer.c
13699F:	drivers/tty/serial/arc_uart.c
13700T:	git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
13701
13702SYNOPSYS ARC HSDK SDP pll clock driver
13703M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13704S:	Supported
13705F:	drivers/clk/clk-hsdk-pll.c
13706F:	Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
13707
13708SYNOPSYS ARC SDP clock driver
13709M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13710S:	Supported
13711F:	drivers/clk/axs10x/*
13712F:	Documentation/devicetree/bindings/clock/snps,pll-clock.txt
13713
13714SYNOPSYS ARC SDP platform support
13715M:	Alexey Brodkin <abrodkin@synopsys.com>
13716S:	Supported
13717F:	arch/arc/plat-axs10x
13718F:	arch/arc/boot/dts/ax*
13719F:	Documentation/devicetree/bindings/arc/axs10*
13720
13721SYNOPSYS AXS10x RESET CONTROLLER DRIVER
13722M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13723S:	Supported
13724F:	drivers/reset/reset-axs10x.c
13725F:	Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
13726
13727SYNOPSYS DESIGNWARE 8250 UART DRIVER
13728R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13729S:	Maintained
13730F:	drivers/tty/serial/8250/8250_dw.c
13731
13732SYNOPSYS DESIGNWARE APB GPIO DRIVER
13733M:	Hoan Tran <hotran@apm.com>
13734L:	linux-gpio@vger.kernel.org
13735S:	Maintained
13736F:	drivers/gpio/gpio-dwapb.c
13737F:	Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
13738
13739SYNOPSYS DESIGNWARE AXI DMAC DRIVER
13740M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13741S:	Maintained
13742F:	drivers/dma/dwi-axi-dmac/
13743F:	Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
13744
13745SYNOPSYS DESIGNWARE DMAC DRIVER
13746M:	Viresh Kumar <vireshk@kernel.org>
13747R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13748S:	Maintained
13749F:	include/linux/dma/dw.h
13750F:	include/linux/platform_data/dma-dw.h
13751F:	drivers/dma/dw/
13752
13753SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
13754M:	Jose Abreu <Jose.Abreu@synopsys.com>
13755L:	netdev@vger.kernel.org
13756S:	Supported
13757F:	drivers/net/ethernet/synopsys/
13758
13759SYNOPSYS DESIGNWARE I2C DRIVER
13760M:	Jarkko Nikula <jarkko.nikula@linux.intel.com>
13761R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13762R:	Mika Westerberg <mika.westerberg@linux.intel.com>
13763L:	linux-i2c@vger.kernel.org
13764S:	Maintained
13765F:	drivers/i2c/busses/i2c-designware-*
13766F:	include/linux/platform_data/i2c-designware.h
13767
13768SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
13769M:	Jaehoon Chung <jh80.chung@samsung.com>
13770L:	linux-mmc@vger.kernel.org
13771S:	Maintained
13772F:	drivers/mmc/host/dw_mmc*
13773
13774SYNOPSYS HSDK RESET CONTROLLER DRIVER
13775M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13776S:	Supported
13777F:	drivers/reset/reset-hsdk.c
13778F:	include/dt-bindings/reset/snps,hsdk-reset.h
13779F:	Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
13780
13781SYSTEM CONFIGURATION (SYSCON)
13782M:	Lee Jones <lee.jones@linaro.org>
13783M:	Arnd Bergmann <arnd@arndb.de>
13784T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13785S:	Supported
13786F:	drivers/mfd/syscon.c
13787
13788SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
13789M:	Sudeep Holla <sudeep.holla@arm.com>
13790L:	linux-arm-kernel@lists.infradead.org
13791S:	Maintained
13792F:	Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
13793F:	drivers/clk/clk-sc[mp]i.c
13794F:	drivers/cpufreq/sc[mp]i-cpufreq.c
13795F:	drivers/firmware/arm_scpi.c
13796F:	drivers/firmware/arm_scmi/
13797F:	include/linux/sc[mp]i_protocol.h
13798
13799SYSTEM RESET/SHUTDOWN DRIVERS
13800M:	Sebastian Reichel <sre@kernel.org>
13801L:	linux-pm@vger.kernel.org
13802T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13803S:	Maintained
13804F:	Documentation/devicetree/bindings/power/reset/
13805F:	drivers/power/reset/
13806
13807SYSTEM TRACE MODULE CLASS
13808M:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
13809S:	Maintained
13810T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
13811F:	Documentation/trace/stm.rst
13812F:	drivers/hwtracing/stm/
13813F:	include/linux/stm.h
13814F:	include/uapi/linux/stm.h
13815
13816SYSV FILESYSTEM
13817M:	Christoph Hellwig <hch@infradead.org>
13818S:	Maintained
13819F:	Documentation/filesystems/sysv-fs.txt
13820F:	fs/sysv/
13821F:	include/linux/sysv_fs.h
13822
13823TARGET SUBSYSTEM
13824M:	"Nicholas A. Bellinger" <nab@linux-iscsi.org>
13825L:	linux-scsi@vger.kernel.org
13826L:	target-devel@vger.kernel.org
13827W:	http://www.linux-iscsi.org
13828W:	http://groups.google.com/group/linux-iscsi-target-dev
13829T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
13830S:	Supported
13831F:	drivers/target/
13832F:	include/target/
13833F:	Documentation/target/
13834
13835TASKSTATS STATISTICS INTERFACE
13836M:	Balbir Singh <bsingharora@gmail.com>
13837S:	Maintained
13838F:	Documentation/accounting/taskstats*
13839F:	include/linux/taskstats*
13840F:	kernel/taskstats.c
13841
13842TC subsystem
13843M:	Jamal Hadi Salim <jhs@mojatatu.com>
13844M:	Cong Wang <xiyou.wangcong@gmail.com>
13845M:	Jiri Pirko <jiri@resnulli.us>
13846L:	netdev@vger.kernel.org
13847S:	Maintained
13848F:	include/net/pkt_cls.h
13849F:	include/net/pkt_sched.h
13850F:	include/net/tc_act/
13851F:	include/uapi/linux/pkt_cls.h
13852F:	include/uapi/linux/pkt_sched.h
13853F:	include/uapi/linux/tc_act/
13854F:	include/uapi/linux/tc_ematch/
13855F:	net/sched/
13856
13857TCP LOW PRIORITY MODULE
13858M:	"Wong Hoi Sing, Edison" <hswong3i@gmail.com>
13859M:	"Hung Hing Lun, Mike" <hlhung3i@gmail.com>
13860W:	http://tcp-lp-mod.sourceforge.net/
13861S:	Maintained
13862F:	net/ipv4/tcp_lp.c
13863
13864TDA10071 MEDIA DRIVER
13865M:	Antti Palosaari <crope@iki.fi>
13866L:	linux-media@vger.kernel.org
13867W:	https://linuxtv.org
13868W:	http://palosaari.fi/linux/
13869Q:	http://patchwork.linuxtv.org/project/linux-media/list/
13870T:	git git://linuxtv.org/anttip/media_tree.git
13871S:	Maintained
13872F:	drivers/media/dvb-frontends/tda10071*
13873
13874TDA18212 MEDIA DRIVER
13875M:	Antti Palosaari <crope@iki.fi>
13876L:	linux-media@vger.kernel.org
13877W:	https://linuxtv.org
13878W:	http://palosaari.fi/linux/
13879Q:	http://patchwork.linuxtv.org/project/linux-media/list/
13880T:	git git://linuxtv.org/anttip/media_tree.git
13881S:	Maintained
13882F:	drivers/media/tuners/tda18212*
13883
13884TDA18218 MEDIA DRIVER
13885M:	Antti Palosaari <crope@iki.fi>
13886L:	linux-media@vger.kernel.org
13887W:	https://linuxtv.org
13888W:	http://palosaari.fi/linux/
13889Q:	http://patchwork.linuxtv.org/project/linux-media/list/
13890T:	git git://linuxtv.org/anttip/media_tree.git
13891S:	Maintained
13892F:	drivers/media/tuners/tda18218*
13893
13894TDA18250 MEDIA DRIVER
13895M:	Olli Salonen <olli.salonen@iki.fi>
13896L:	linux-media@vger.kernel.org
13897W:	https://linuxtv.org
13898Q:	http://patchwork.linuxtv.org/project/linux-media/list/
13899T:	git git://linuxtv.org/media_tree.git
13900S:	Maintained
13901F:	drivers/media/tuners/tda18250*
13902
13903TDA18271 MEDIA DRIVER
13904M:	Michael Krufky <mkrufky@linuxtv.org>
13905L:	linux-media@vger.kernel.org
13906W:	https://linuxtv.org
13907W:	http://github.com/mkrufky
13908Q:	http://patchwork.linuxtv.org/project/linux-media/list/
13909T:	git git://linuxtv.org/mkrufky/tuners.git
13910S:	Maintained
13911F:	drivers/media/tuners/tda18271*
13912
13913TDA1997x MEDIA DRIVER
13914M:	Tim Harvey <tharvey@gateworks.com>
13915L:	linux-media@vger.kernel.org
13916W:	https://linuxtv.org
13917Q:	http://patchwork.linuxtv.org/project/linux-media/list/
13918S:	Maintained
13919F:	drivers/media/i2c/tda1997x.*
13920
13921TDA827x MEDIA DRIVER
13922M:	Michael Krufky <mkrufky@linuxtv.org>
13923L:	linux-media@vger.kernel.org
13924W:	https://linuxtv.org
13925W:	http://github.com/mkrufky
13926Q:	http://patchwork.linuxtv.org/project/linux-media/list/
13927T:	git git://linuxtv.org/mkrufky/tuners.git
13928S:	Maintained
13929F:	drivers/media/tuners/tda8290.*
13930
13931TDA8290 MEDIA DRIVER
13932M:	Michael Krufky <mkrufky@linuxtv.org>
13933L:	linux-media@vger.kernel.org
13934W:	https://linuxtv.org
13935W:	http://github.com/mkrufky
13936Q:	http://patchwork.linuxtv.org/project/linux-media/list/
13937T:	git git://linuxtv.org/mkrufky/tuners.git
13938S:	Maintained
13939F:	drivers/media/tuners/tda8290.*
13940
13941TDA9840 MEDIA DRIVER
13942M:	Hans Verkuil <hverkuil@xs4all.nl>
13943L:	linux-media@vger.kernel.org
13944T:	git git://linuxtv.org/media_tree.git
13945W:	https://linuxtv.org
13946S:	Maintained
13947F:	drivers/media/i2c/tda9840*
13948
13949TEA5761 TUNER DRIVER
13950M:	Mauro Carvalho Chehab <mchehab@kernel.org>
13951L:	linux-media@vger.kernel.org
13952W:	https://linuxtv.org
13953T:	git git://linuxtv.org/media_tree.git
13954S:	Odd fixes
13955F:	drivers/media/tuners/tea5761.*
13956
13957TEA5767 TUNER DRIVER
13958M:	Mauro Carvalho Chehab <mchehab@kernel.org>
13959L:	linux-media@vger.kernel.org
13960W:	https://linuxtv.org
13961T:	git git://linuxtv.org/media_tree.git
13962S:	Maintained
13963F:	drivers/media/tuners/tea5767.*
13964
13965TEA6415C MEDIA DRIVER
13966M:	Hans Verkuil <hverkuil@xs4all.nl>
13967L:	linux-media@vger.kernel.org
13968T:	git git://linuxtv.org/media_tree.git
13969W:	https://linuxtv.org
13970S:	Maintained
13971F:	drivers/media/i2c/tea6415c*
13972
13973TEA6420 MEDIA DRIVER
13974M:	Hans Verkuil <hverkuil@xs4all.nl>
13975L:	linux-media@vger.kernel.org
13976T:	git git://linuxtv.org/media_tree.git
13977W:	https://linuxtv.org
13978S:	Maintained
13979F:	drivers/media/i2c/tea6420*
13980
13981TEAM DRIVER
13982M:	Jiri Pirko <jiri@resnulli.us>
13983L:	netdev@vger.kernel.org
13984S:	Supported
13985F:	drivers/net/team/
13986F:	include/linux/if_team.h
13987F:	include/uapi/linux/if_team.h
13988
13989TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
13990M:	"Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
13991S:	Maintained
13992F:	arch/x86/platform/ts5500/
13993
13994TECHNOTREND USB IR RECEIVER
13995M:	Sean Young <sean@mess.org>
13996L:	linux-media@vger.kernel.org
13997S:	Maintained
13998F:	drivers/media/rc/ttusbir.c
13999
14000TECHWELL TW9910 VIDEO DECODER
14001L:	linux-media@vger.kernel.org
14002S:	Orphan
14003F:	drivers/media/i2c/tw9910.c
14004F:	include/media/i2c/tw9910.h
14005
14006TEE SUBSYSTEM
14007M:	Jens Wiklander <jens.wiklander@linaro.org>
14008S:	Maintained
14009F:	include/linux/tee_drv.h
14010F:	include/uapi/linux/tee.h
14011F:	drivers/tee/
14012F:	Documentation/tee.txt
14013
14014TEGRA ARCHITECTURE SUPPORT
14015M:	Thierry Reding <thierry.reding@gmail.com>
14016M:	Jonathan Hunter <jonathanh@nvidia.com>
14017L:	linux-tegra@vger.kernel.org
14018Q:	http://patchwork.ozlabs.org/project/linux-tegra/list/
14019T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
14020S:	Supported
14021N:	[^a-z]tegra
14022
14023TEGRA CLOCK DRIVER
14024M:	Peter De Schrijver <pdeschrijver@nvidia.com>
14025M:	Prashant Gaikwad <pgaikwad@nvidia.com>
14026S:	Supported
14027F:	drivers/clk/tegra/
14028
14029TEGRA DMA DRIVERS
14030M:	Laxman Dewangan <ldewangan@nvidia.com>
14031M:	Jon Hunter <jonathanh@nvidia.com>
14032S:	Supported
14033F:	drivers/dma/tegra*
14034
14035TEGRA I2C DRIVER
14036M:	Laxman Dewangan <ldewangan@nvidia.com>
14037S:	Supported
14038F:	drivers/i2c/busses/i2c-tegra.c
14039
14040TEGRA IOMMU DRIVERS
14041M:	Thierry Reding <thierry.reding@gmail.com>
14042L:	linux-tegra@vger.kernel.org
14043S:	Supported
14044F:	drivers/iommu/tegra*
14045
14046TEGRA KBC DRIVER
14047M:	Laxman Dewangan <ldewangan@nvidia.com>
14048S:	Supported
14049F:	drivers/input/keyboard/tegra-kbc.c
14050
14051TEGRA PWM DRIVER
14052M:	Thierry Reding <thierry.reding@gmail.com>
14053S:	Supported
14054F:	drivers/pwm/pwm-tegra.c
14055
14056TEGRA SERIAL DRIVER
14057M:	Laxman Dewangan <ldewangan@nvidia.com>
14058S:	Supported
14059F:	drivers/tty/serial/serial-tegra.c
14060
14061TEGRA SPI DRIVER
14062M:	Laxman Dewangan <ldewangan@nvidia.com>
14063S:	Supported
14064F:	drivers/spi/spi-tegra*
14065
14066TEHUTI ETHERNET DRIVER
14067M:	Andy Gospodarek <andy@greyhouse.net>
14068L:	netdev@vger.kernel.org
14069S:	Supported
14070F:	drivers/net/ethernet/tehuti/*
14071
14072Telecom Clock Driver for MCPL0010
14073M:	Mark Gross <mark.gross@intel.com>
14074S:	Supported
14075F:	drivers/char/tlclk.c
14076
14077TENSILICA XTENSA PORT (xtensa)
14078M:	Chris Zankel <chris@zankel.net>
14079M:	Max Filippov <jcmvbkbc@gmail.com>
14080L:	linux-xtensa@linux-xtensa.org
14081T:	git git://github.com/czankel/xtensa-linux.git
14082S:	Maintained
14083F:	arch/xtensa/
14084F:	drivers/irqchip/irq-xtensa-*
14085
14086Texas Instruments' System Control Interface (TISCI) Protocol Driver
14087M:	Nishanth Menon <nm@ti.com>
14088M:	Tero Kristo <t-kristo@ti.com>
14089M:	Santosh Shilimkar <ssantosh@kernel.org>
14090L:	linux-arm-kernel@lists.infradead.org
14091S:	Maintained
14092F:	Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
14093F:	drivers/firmware/ti_sci*
14094F:	include/linux/soc/ti/ti_sci_protocol.h
14095F:	Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
14096F:	include/dt-bindings/genpd/k2g.h
14097F:	drivers/soc/ti/ti_sci_pm_domains.c
14098F:	Documentation/devicetree/bindings/reset/ti,sci-reset.txt
14099F:	Documentation/devicetree/bindings/clock/ti,sci-clk.txt
14100F:	drivers/clk/keystone/sci-clk.c
14101F:	drivers/reset/reset-ti-sci.c
14102
14103THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
14104M:	Hans Verkuil <hverkuil@xs4all.nl>
14105L:	linux-media@vger.kernel.org
14106T:	git git://linuxtv.org/media_tree.git
14107W:	https://linuxtv.org
14108S:	Maintained
14109F:	drivers/media/radio/radio-raremono.c
14110
14111THERMAL
14112M:	Zhang Rui <rui.zhang@intel.com>
14113M:	Eduardo Valentin <edubezval@gmail.com>
14114L:	linux-pm@vger.kernel.org
14115T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
14116T:	git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
14117Q:	https://patchwork.kernel.org/project/linux-pm/list/
14118S:	Supported
14119F:	drivers/thermal/
14120F:	include/linux/thermal.h
14121F:	include/uapi/linux/thermal.h
14122F:	include/linux/cpu_cooling.h
14123F:	Documentation/devicetree/bindings/thermal/
14124
14125THERMAL/CPU_COOLING
14126M:	Amit Daniel Kachhap <amit.kachhap@gmail.com>
14127M:	Viresh Kumar <viresh.kumar@linaro.org>
14128M:	Javi Merino <javi.merino@kernel.org>
14129L:	linux-pm@vger.kernel.org
14130S:	Supported
14131F:	Documentation/thermal/cpu-cooling-api.txt
14132F:	drivers/thermal/cpu_cooling.c
14133F:	include/linux/cpu_cooling.h
14134
14135THINKPAD ACPI EXTRAS DRIVER
14136M:	Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
14137L:	ibm-acpi-devel@lists.sourceforge.net
14138L:	platform-driver-x86@vger.kernel.org
14139W:	http://ibm-acpi.sourceforge.net
14140W:	http://thinkwiki.org/wiki/Ibm-acpi
14141T:	git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
14142S:	Maintained
14143F:	drivers/platform/x86/thinkpad_acpi.c
14144
14145THUNDERBOLT DRIVER
14146M:	Andreas Noever <andreas.noever@gmail.com>
14147M:	Michael Jamet <michael.jamet@intel.com>
14148M:	Mika Westerberg <mika.westerberg@linux.intel.com>
14149M:	Yehezkel Bernat <YehezkelShB@gmail.com>
14150T:	git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
14151S:	Maintained
14152F:	Documentation/admin-guide/thunderbolt.rst
14153F:	drivers/thunderbolt/
14154F:	include/linux/thunderbolt.h
14155
14156THUNDERBOLT NETWORK DRIVER
14157M:	Michael Jamet <michael.jamet@intel.com>
14158M:	Mika Westerberg <mika.westerberg@linux.intel.com>
14159M:	Yehezkel Bernat <YehezkelShB@gmail.com>
14160L:	netdev@vger.kernel.org
14161S:	Maintained
14162F:	drivers/net/thunderbolt.c
14163
14164THUNDERX GPIO DRIVER
14165M:	David Daney <david.daney@cavium.com>
14166S:	Maintained
14167F:	drivers/gpio/gpio-thunderx.c
14168
14169TI AM437X VPFE DRIVER
14170M:	"Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14171L:	linux-media@vger.kernel.org
14172W:	https://linuxtv.org
14173Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14174T:	git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14175S:	Maintained
14176F:	drivers/media/platform/am437x/
14177
14178TI BANDGAP AND THERMAL DRIVER
14179M:	Eduardo Valentin <edubezval@gmail.com>
14180M:	Keerthy <j-keerthy@ti.com>
14181L:	linux-pm@vger.kernel.org
14182L:	linux-omap@vger.kernel.org
14183S:	Maintained
14184F:	drivers/thermal/ti-soc-thermal/
14185
14186TI BQ27XXX POWER SUPPLY DRIVER
14187R:	Andrew F. Davis <afd@ti.com>
14188F:	include/linux/power/bq27xxx_battery.h
14189F:	drivers/power/supply/bq27xxx_battery.c
14190F:	drivers/power/supply/bq27xxx_battery_i2c.c
14191
14192TI CDCE706 CLOCK DRIVER
14193M:	Max Filippov <jcmvbkbc@gmail.com>
14194S:	Maintained
14195F:	drivers/clk/clk-cdce706.c
14196
14197TI CLOCK DRIVER
14198M:	Tero Kristo <t-kristo@ti.com>
14199L:	linux-omap@vger.kernel.org
14200S:	Maintained
14201F:	drivers/clk/ti/
14202F:	include/linux/clk/ti.h
14203
14204TI DAVINCI MACHINE SUPPORT
14205M:	Sekhar Nori <nsekhar@ti.com>
14206M:	Kevin Hilman <khilman@kernel.org>
14207L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14208T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
14209S:	Supported
14210F:	arch/arm/mach-davinci/
14211F:	drivers/i2c/busses/i2c-davinci.c
14212F:	arch/arm/boot/dts/da850*
14213
14214TI DAVINCI SERIES CLOCK DRIVER
14215M:	David Lechner <david@lechnology.com>
14216R:	Sekhar Nori <nsekhar@ti.com>
14217S:	Maintained
14218F:	Documentation/devicetree/bindings/clock/ti/davinci/
14219F:	drivers/clk/davinci/
14220
14221TI DAVINCI SERIES GPIO DRIVER
14222M:	Keerthy <j-keerthy@ti.com>
14223L:	linux-gpio@vger.kernel.org
14224S:	Maintained
14225F:	Documentation/devicetree/bindings/gpio/gpio-davinci.txt
14226F:	drivers/gpio/gpio-davinci.c
14227
14228TI DAVINCI SERIES MEDIA DRIVER
14229M:	"Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14230L:	linux-media@vger.kernel.org
14231W:	https://linuxtv.org
14232Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14233T:	git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14234S:	Maintained
14235F:	drivers/media/platform/davinci/
14236F:	include/media/davinci/
14237
14238TI ETHERNET SWITCH DRIVER (CPSW)
14239R:	Grygorii Strashko <grygorii.strashko@ti.com>
14240L:	linux-omap@vger.kernel.org
14241L:	netdev@vger.kernel.org
14242S:	Maintained
14243F:	drivers/net/ethernet/ti/cpsw*
14244F:	drivers/net/ethernet/ti/davinci*
14245
14246TI FLASH MEDIA INTERFACE DRIVER
14247M:	Alex Dubov <oakad@yahoo.com>
14248S:	Maintained
14249F:	drivers/misc/tifm*
14250F:	drivers/mmc/host/tifm_sd.c
14251F:	include/linux/tifm.h
14252
14253TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
14254M:	Santosh Shilimkar <ssantosh@kernel.org>
14255L:	linux-kernel@vger.kernel.org
14256L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14257S:	Maintained
14258F:	drivers/soc/ti/*
14259T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
14260
14261TI LM49xxx FAMILY ASoC CODEC DRIVERS
14262M:	M R Swami Reddy <mr.swami.reddy@ti.com>
14263M:	Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
14264L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
14265S:	Maintained
14266F:	sound/soc/codecs/lm49453*
14267F:	sound/soc/codecs/isabelle*
14268
14269TI LP855x BACKLIGHT DRIVER
14270M:	Milo Kim <milo.kim@ti.com>
14271S:	Maintained
14272F:	Documentation/backlight/lp855x-driver.txt
14273F:	drivers/video/backlight/lp855x_bl.c
14274F:	include/linux/platform_data/lp855x.h
14275
14276TI LP8727 CHARGER DRIVER
14277M:	Milo Kim <milo.kim@ti.com>
14278S:	Maintained
14279F:	drivers/power/supply/lp8727_charger.c
14280F:	include/linux/platform_data/lp8727.h
14281
14282TI LP8788 MFD DRIVER
14283M:	Milo Kim <milo.kim@ti.com>
14284S:	Maintained
14285F:	drivers/iio/adc/lp8788_adc.c
14286F:	drivers/leds/leds-lp8788.c
14287F:	drivers/mfd/lp8788*.c
14288F:	drivers/power/supply/lp8788-charger.c
14289F:	drivers/regulator/lp8788-*.c
14290F:	include/linux/mfd/lp8788*.h
14291
14292TI NETCP ETHERNET DRIVER
14293M:	Wingman Kwok <w-kwok2@ti.com>
14294M:	Murali Karicheri <m-karicheri2@ti.com>
14295L:	netdev@vger.kernel.org
14296S:	Maintained
14297F:	drivers/net/ethernet/ti/netcp*
14298
14299TI TAS571X FAMILY ASoC CODEC DRIVER
14300M:	Kevin Cernekee <cernekee@chromium.org>
14301L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
14302S:	Odd Fixes
14303F:	sound/soc/codecs/tas571x*
14304
14305TI TRF7970A NFC DRIVER
14306M:	Mark Greer <mgreer@animalcreek.com>
14307L:	linux-wireless@vger.kernel.org
14308L:	linux-nfc@lists.01.org (moderated for non-subscribers)
14309S:	Supported
14310F:	drivers/nfc/trf7970a.c
14311F:	Documentation/devicetree/bindings/net/nfc/trf7970a.txt
14312
14313TI TWL4030 SERIES SOC CODEC DRIVER
14314M:	Peter Ujfalusi <peter.ujfalusi@ti.com>
14315L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
14316S:	Maintained
14317F:	sound/soc/codecs/twl4030*
14318
14319TI VPE/CAL DRIVERS
14320M:	Benoit Parrot <bparrot@ti.com>
14321L:	linux-media@vger.kernel.org
14322W:	http://linuxtv.org/
14323Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14324S:	Maintained
14325F:	drivers/media/platform/ti-vpe/
14326
14327TI WILINK WIRELESS DRIVERS
14328L:	linux-wireless@vger.kernel.org
14329W:	http://wireless.kernel.org/en/users/Drivers/wl12xx
14330W:	http://wireless.kernel.org/en/users/Drivers/wl1251
14331T:	git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
14332S:	Orphan
14333F:	drivers/net/wireless/ti/
14334F:	include/linux/wl12xx.h
14335
14336TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
14337M:	John Stultz <john.stultz@linaro.org>
14338M:	Thomas Gleixner <tglx@linutronix.de>
14339R:	Stephen Boyd <sboyd@kernel.org>
14340L:	linux-kernel@vger.kernel.org
14341T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14342S:	Supported
14343F:	include/linux/clocksource.h
14344F:	include/linux/time.h
14345F:	include/linux/timex.h
14346F:	include/uapi/linux/time.h
14347F:	include/uapi/linux/timex.h
14348F:	kernel/time/clocksource.c
14349F:	kernel/time/time*.c
14350F:	kernel/time/alarmtimer.c
14351F:	kernel/time/ntp.c
14352F:	tools/testing/selftests/timers/
14353
14354TIPC NETWORK LAYER
14355M:	Jon Maloy <jon.maloy@ericsson.com>
14356M:	Ying Xue <ying.xue@windriver.com>
14357L:	netdev@vger.kernel.org (core kernel code)
14358L:	tipc-discussion@lists.sourceforge.net (user apps, general discussion)
14359W:	http://tipc.sourceforge.net/
14360S:	Maintained
14361F:	include/uapi/linux/tipc*.h
14362F:	net/tipc/
14363
14364TLAN NETWORK DRIVER
14365M:	Samuel Chessman <chessman@tux.org>
14366L:	tlan-devel@lists.sourceforge.net (subscribers-only)
14367W:	http://sourceforge.net/projects/tlan/
14368S:	Maintained
14369F:	Documentation/networking/tlan.txt
14370F:	drivers/net/ethernet/ti/tlan.*
14371
14372TM6000 VIDEO4LINUX DRIVER
14373M:	Mauro Carvalho Chehab <mchehab@kernel.org>
14374L:	linux-media@vger.kernel.org
14375W:	https://linuxtv.org
14376T:	git git://linuxtv.org/media_tree.git
14377S:	Odd fixes
14378F:	drivers/media/usb/tm6000/
14379F:	Documentation/media/v4l-drivers/tm6000*
14380
14381TMIO/SDHI MMC DRIVER
14382M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
14383L:	linux-mmc@vger.kernel.org
14384S:	Supported
14385F:	drivers/mmc/host/tmio_mmc*
14386F:	drivers/mmc/host/renesas_sdhi*
14387F:	include/linux/mfd/tmio.h
14388
14389TMP401 HARDWARE MONITOR DRIVER
14390M:	Guenter Roeck <linux@roeck-us.net>
14391L:	linux-hwmon@vger.kernel.org
14392S:	Maintained
14393F:	Documentation/hwmon/tmp401
14394F:	drivers/hwmon/tmp401.c
14395
14396TMPFS (SHMEM FILESYSTEM)
14397M:	Hugh Dickins <hughd@google.com>
14398L:	linux-mm@kvack.org
14399S:	Maintained
14400F:	include/linux/shmem_fs.h
14401F:	mm/shmem.c
14402
14403TOMOYO SECURITY MODULE
14404M:	Kentaro Takeda <takedakn@nttdata.co.jp>
14405M:	Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
14406L:	tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
14407L:	tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
14408L:	tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
14409L:	tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
14410W:	http://tomoyo.sourceforge.jp/
14411T:	quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
14412S:	Maintained
14413F:	security/tomoyo/
14414
14415TOPSTAR LAPTOP EXTRAS DRIVER
14416M:	Herton Ronaldo Krzesinski <herton@canonical.com>
14417L:	platform-driver-x86@vger.kernel.org
14418S:	Maintained
14419F:	drivers/platform/x86/topstar-laptop.c
14420
14421TORTURE-TEST MODULES
14422M:	Davidlohr Bueso <dave@stgolabs.net>
14423M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
14424M:	Josh Triplett <josh@joshtriplett.org>
14425L:	linux-kernel@vger.kernel.org
14426S:	Supported
14427T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
14428F:	Documentation/RCU/torture.txt
14429F:	kernel/torture.c
14430F:	kernel/rcu/rcutorture.c
14431F:	kernel/locking/locktorture.c
14432
14433TOSHIBA ACPI EXTRAS DRIVER
14434M:	Azael Avalos <coproscefalo@gmail.com>
14435L:	platform-driver-x86@vger.kernel.org
14436S:	Maintained
14437F:	drivers/platform/x86/toshiba_acpi.c
14438
14439TOSHIBA BLUETOOTH DRIVER
14440M:	Azael Avalos <coproscefalo@gmail.com>
14441L:	platform-driver-x86@vger.kernel.org
14442S:	Maintained
14443F:	drivers/platform/x86/toshiba_bluetooth.c
14444
14445TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
14446M:	Azael Avalos <coproscefalo@gmail.com>
14447L:	platform-driver-x86@vger.kernel.org
14448S:	Maintained
14449F:	drivers/platform/x86/toshiba_haps.c
14450
14451TOSHIBA SMM DRIVER
14452M:	Jonathan Buzzard <jonathan@buzzard.org.uk>
14453W:	http://www.buzzard.org.uk/toshiba/
14454S:	Maintained
14455F:	drivers/char/toshiba.c
14456F:	include/linux/toshiba.h
14457F:	include/uapi/linux/toshiba.h
14458
14459TOSHIBA TC358743 DRIVER
14460M:	Mats Randgaard <matrandg@cisco.com>
14461L:	linux-media@vger.kernel.org
14462S:	Maintained
14463F:	drivers/media/i2c/tc358743*
14464F:	include/media/i2c/tc358743.h
14465
14466TOSHIBA WMI HOTKEYS DRIVER
14467M:	Azael Avalos <coproscefalo@gmail.com>
14468L:	platform-driver-x86@vger.kernel.org
14469S:	Maintained
14470F:	drivers/platform/x86/toshiba-wmi.c
14471
14472TPM DEVICE DRIVER
14473M:	Peter Huewe <peterhuewe@gmx.de>
14474M:	Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
14475R:	Jason Gunthorpe <jgg@ziepe.ca>
14476L:	linux-integrity@vger.kernel.org
14477Q:	https://patchwork.kernel.org/project/linux-integrity/list/
14478W:	https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
14479T:	git git://git.infradead.org/users/jjs/linux-tpmdd.git
14480S:	Maintained
14481F:	drivers/char/tpm/
14482
14483TRACING
14484M:	Steven Rostedt <rostedt@goodmis.org>
14485M:	Ingo Molnar <mingo@redhat.com>
14486T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14487S:	Maintained
14488F:	Documentation/trace/ftrace.rst
14489F:	arch/*/*/*/ftrace.h
14490F:	arch/*/kernel/ftrace.c
14491F:	include/*/ftrace.h
14492F:	include/linux/trace*.h
14493F:	include/trace/
14494F:	kernel/trace/
14495F:	tools/testing/selftests/ftrace/
14496
14497TRACING MMIO ACCESSES (MMIOTRACE)
14498M:	Steven Rostedt <rostedt@goodmis.org>
14499M:	Ingo Molnar <mingo@kernel.org>
14500R:	Karol Herbst <karolherbst@gmail.com>
14501R:	Pekka Paalanen <ppaalanen@gmail.com>
14502S:	Maintained
14503L:	linux-kernel@vger.kernel.org
14504L:	nouveau@lists.freedesktop.org
14505F:	kernel/trace/trace_mmiotrace.c
14506F:	include/linux/mmiotrace.h
14507F:	arch/x86/mm/kmmio.c
14508F:	arch/x86/mm/mmio-mod.c
14509F:	arch/x86/mm/testmmiotrace.c
14510
14511TRIVIAL PATCHES
14512M:	Jiri Kosina <trivial@kernel.org>
14513T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
14514S:	Maintained
14515K:	^Subject:.*(?i)trivial
14516
14517TEMPO SEMICONDUCTOR DRIVERS
14518M:	Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
14519S:	Maintained
14520F:	sound/soc/codecs/tscs*.c
14521F:	sound/soc/codecs/tscs*.h
14522F:	Documentation/devicetree/bindings/sound/tscs*.txt
14523
14524TTY LAYER
14525M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14526M:	Jiri Slaby <jslaby@suse.com>
14527S:	Supported
14528T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
14529F:	Documentation/serial/
14530F:	drivers/tty/
14531F:	drivers/tty/serial/serial_core.c
14532F:	include/linux/serial_core.h
14533F:	include/linux/serial.h
14534F:	include/linux/tty.h
14535F:	include/uapi/linux/serial_core.h
14536F:	include/uapi/linux/serial.h
14537F:	include/uapi/linux/tty.h
14538
14539TUA9001 MEDIA DRIVER
14540M:	Antti Palosaari <crope@iki.fi>
14541L:	linux-media@vger.kernel.org
14542W:	https://linuxtv.org
14543W:	http://palosaari.fi/linux/
14544Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14545T:	git git://linuxtv.org/anttip/media_tree.git
14546S:	Maintained
14547F:	drivers/media/tuners/tua9001*
14548
14549TULIP NETWORK DRIVERS
14550L:	netdev@vger.kernel.org
14551L:	linux-parisc@vger.kernel.org
14552S:	Orphan
14553F:	drivers/net/ethernet/dec/tulip/
14554
14555TUN/TAP driver
14556M:	Maxim Krasnyansky <maxk@qti.qualcomm.com>
14557W:	http://vtun.sourceforge.net/tun
14558S:	Maintained
14559F:	Documentation/networking/tuntap.txt
14560F:	arch/um/os-Linux/drivers/
14561
14562TURBOCHANNEL SUBSYSTEM
14563M:	"Maciej W. Rozycki" <macro@linux-mips.org>
14564M:	Ralf Baechle <ralf@linux-mips.org>
14565L:	linux-mips@linux-mips.org
14566Q:	http://patchwork.linux-mips.org/project/linux-mips/list/
14567S:	Maintained
14568F:	drivers/tc/
14569F:	include/linux/tc.h
14570
14571TURBOSTAT UTILITY
14572M:	"Len Brown" <lenb@kernel.org>
14573L:	linux-pm@vger.kernel.org
14574B:	https://bugzilla.kernel.org
14575Q:	https://patchwork.kernel.org/project/linux-pm/list/
14576T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
14577S:	Supported
14578F:	tools/power/x86/turbostat/
14579
14580TW5864 VIDEO4LINUX DRIVER
14581M:	Bluecherry Maintainers <maintainers@bluecherrydvr.com>
14582M:	Anton Sviridenko <anton@corp.bluecherry.net>
14583M:	Andrey Utkin <andrey.utkin@corp.bluecherry.net>
14584M:	Andrey Utkin <andrey_utkin@fastmail.com>
14585L:	linux-media@vger.kernel.org
14586S:	Supported
14587F:	drivers/media/pci/tw5864/
14588
14589TW68 VIDEO4LINUX DRIVER
14590M:	Hans Verkuil <hverkuil@xs4all.nl>
14591L:	linux-media@vger.kernel.org
14592T:	git git://linuxtv.org/media_tree.git
14593W:	https://linuxtv.org
14594S:	Odd Fixes
14595F:	drivers/media/pci/tw68/
14596
14597TW686X VIDEO4LINUX DRIVER
14598M:	Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
14599L:	linux-media@vger.kernel.org
14600T:	git git://linuxtv.org/media_tree.git
14601W:	http://linuxtv.org
14602S:	Maintained
14603F:	drivers/media/pci/tw686x/
14604
14605UBI FILE SYSTEM (UBIFS)
14606M:	Richard Weinberger <richard@nod.at>
14607M:	Artem Bityutskiy <dedekind1@gmail.com>
14608M:	Adrian Hunter <adrian.hunter@intel.com>
14609L:	linux-mtd@lists.infradead.org
14610T:	git git://git.infradead.org/ubifs-2.6.git
14611W:	http://www.linux-mtd.infradead.org/doc/ubifs.html
14612S:	Supported
14613F:	Documentation/filesystems/ubifs.txt
14614F:	fs/ubifs/
14615
14616UCLINUX (M68KNOMMU AND COLDFIRE)
14617M:	Greg Ungerer <gerg@linux-m68k.org>
14618W:	http://www.linux-m68k.org/
14619W:	http://www.uclinux.org/
14620L:	linux-m68k@lists.linux-m68k.org
14621L:	uclinux-dev@uclinux.org  (subscribers-only)
14622T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
14623S:	Maintained
14624F:	arch/m68k/coldfire/
14625F:	arch/m68k/68*/
14626F:	arch/m68k/*/*_no.*
14627F:	arch/m68k/include/asm/*_no.*
14628
14629UDF FILESYSTEM
14630M:	Jan Kara <jack@suse.com>
14631S:	Maintained
14632F:	Documentation/filesystems/udf.txt
14633F:	fs/udf/
14634
14635UDRAW TABLET
14636M:	Bastien Nocera <hadess@hadess.net>
14637L:	linux-input@vger.kernel.org
14638S:	Maintained
14639F:	drivers/hid/hid-udraw-ps3.c
14640
14641UFS FILESYSTEM
14642M:	Evgeniy Dushistov <dushistov@mail.ru>
14643S:	Maintained
14644F:	Documentation/filesystems/ufs.txt
14645F:	fs/ufs/
14646
14647UHID USERSPACE HID IO DRIVER:
14648M:	David Herrmann <dh.herrmann@googlemail.com>
14649L:	linux-input@vger.kernel.org
14650S:	Maintained
14651F:	drivers/hid/uhid.c
14652F:	include/uapi/linux/uhid.h
14653
14654ULPI BUS
14655M:	Heikki Krogerus <heikki.krogerus@linux.intel.com>
14656L:	linux-usb@vger.kernel.org
14657S:	Maintained
14658F:	drivers/usb/common/ulpi.c
14659F:	include/linux/ulpi/
14660
14661ULTRA-WIDEBAND (UWB) SUBSYSTEM:
14662L:	linux-usb@vger.kernel.org
14663S:	Orphan
14664F:	drivers/uwb/
14665F:	include/linux/uwb.h
14666F:	include/linux/uwb/
14667
14668UNICORE32 ARCHITECTURE:
14669M:	Guan Xuetao <gxt@pku.edu.cn>
14670W:	http://mprc.pku.edu.cn/~guanxuetao/linux
14671S:	Maintained
14672T:	git git://github.com/gxt/linux.git
14673F:	arch/unicore32/
14674
14675UNIFDEF
14676M:	Tony Finch <dot@dotat.at>
14677W:	http://dotat.at/prog/unifdef
14678S:	Maintained
14679F:	scripts/unifdef.c
14680
14681UNIFORM CDROM DRIVER
14682M:	Jens Axboe <axboe@kernel.dk>
14683W:	http://www.kernel.dk
14684S:	Maintained
14685F:	Documentation/cdrom/
14686F:	drivers/cdrom/cdrom.c
14687F:	include/linux/cdrom.h
14688F:	include/uapi/linux/cdrom.h
14689
14690UNISYS S-PAR DRIVERS
14691M:	David Kershner <david.kershner@unisys.com>
14692L:	sparmaintainer@unisys.com (Unisys internal)
14693S:	Supported
14694F:	include/linux/visorbus.h
14695F:	drivers/visorbus/
14696F:	drivers/staging/unisys/
14697
14698UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
14699M:	Vinayak Holikatti <vinholikatti@gmail.com>
14700L:	linux-scsi@vger.kernel.org
14701S:	Supported
14702F:	Documentation/scsi/ufs.txt
14703F:	drivers/scsi/ufs/
14704
14705UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
14706M:	Joao Pinto <jpinto@synopsys.com>
14707L:	linux-scsi@vger.kernel.org
14708S:	Supported
14709F:	drivers/scsi/ufs/*dwc*
14710
14711UNSORTED BLOCK IMAGES (UBI)
14712M:	Artem Bityutskiy <dedekind1@gmail.com>
14713M:	Richard Weinberger <richard@nod.at>
14714W:	http://www.linux-mtd.infradead.org/
14715L:	linux-mtd@lists.infradead.org
14716T:	git git://git.infradead.org/ubifs-2.6.git
14717S:	Supported
14718F:	drivers/mtd/ubi/
14719F:	include/linux/mtd/ubi.h
14720F:	include/uapi/mtd/ubi-user.h
14721
14722USB "USBNET" DRIVER FRAMEWORK
14723M:	Oliver Neukum <oneukum@suse.com>
14724L:	netdev@vger.kernel.org
14725W:	http://www.linux-usb.org/usbnet
14726S:	Maintained
14727F:	drivers/net/usb/usbnet.c
14728F:	include/linux/usb/usbnet.h
14729
14730USB ACM DRIVER
14731M:	Oliver Neukum <oneukum@suse.com>
14732L:	linux-usb@vger.kernel.org
14733S:	Maintained
14734F:	Documentation/usb/acm.txt
14735F:	drivers/usb/class/cdc-acm.*
14736
14737USB AR5523 WIRELESS DRIVER
14738M:	Pontus Fuchs <pontus.fuchs@gmail.com>
14739L:	linux-wireless@vger.kernel.org
14740S:	Maintained
14741F:	drivers/net/wireless/ath/ar5523/
14742
14743USB ATTACHED SCSI
14744M:	Oliver Neukum <oneukum@suse.com>
14745L:	linux-usb@vger.kernel.org
14746L:	linux-scsi@vger.kernel.org
14747S:	Maintained
14748F:	drivers/usb/storage/uas.c
14749
14750USB CDC ETHERNET DRIVER
14751M:	Oliver Neukum <oliver@neukum.org>
14752L:	linux-usb@vger.kernel.org
14753S:	Maintained
14754F:	drivers/net/usb/cdc_*.c
14755F:	include/uapi/linux/usb/cdc.h
14756
14757USB CHAOSKEY DRIVER
14758M:	Keith Packard <keithp@keithp.com>
14759L:	linux-usb@vger.kernel.org
14760S:	Maintained
14761F:	drivers/usb/misc/chaoskey.c
14762
14763USB CYPRESS C67X00 DRIVER
14764M:	Peter Korsgaard <jacmet@sunsite.dk>
14765L:	linux-usb@vger.kernel.org
14766S:	Maintained
14767F:	drivers/usb/c67x00/
14768
14769USB DAVICOM DM9601 DRIVER
14770M:	Peter Korsgaard <jacmet@sunsite.dk>
14771L:	netdev@vger.kernel.org
14772W:	http://www.linux-usb.org/usbnet
14773S:	Maintained
14774F:	drivers/net/usb/dm9601.c
14775
14776USB DIAMOND RIO500 DRIVER
14777M:	Cesar Miquel <miquel@df.uba.ar>
14778L:	rio500-users@lists.sourceforge.net
14779W:	http://rio500.sourceforge.net
14780S:	Maintained
14781F:	drivers/usb/misc/rio500*
14782
14783USB EHCI DRIVER
14784M:	Alan Stern <stern@rowland.harvard.edu>
14785L:	linux-usb@vger.kernel.org
14786S:	Maintained
14787F:	Documentation/usb/ehci.txt
14788F:	drivers/usb/host/ehci*
14789
14790USB GADGET/PERIPHERAL SUBSYSTEM
14791M:	Felipe Balbi <balbi@kernel.org>
14792L:	linux-usb@vger.kernel.org
14793W:	http://www.linux-usb.org/gadget
14794T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
14795S:	Maintained
14796F:	drivers/usb/gadget/
14797F:	include/linux/usb/gadget*
14798
14799USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
14800M:	Jiri Kosina <jikos@kernel.org>
14801R:	Benjamin Tissoires <benjamin.tissoires@redhat.com>
14802L:	linux-usb@vger.kernel.org
14803T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
14804S:	Maintained
14805F:	Documentation/hid/hiddev.txt
14806F:	drivers/hid/usbhid/
14807
14808USB INTEL XHCI ROLE MUX DRIVER
14809M:	Hans de Goede <hdegoede@redhat.com>
14810L:	linux-usb@vger.kernel.org
14811S:	Maintained
14812F:	drivers/usb/roles/intel-xhci-usb-role-switch.c
14813
14814USB ISP116X DRIVER
14815M:	Olav Kongas <ok@artecdesign.ee>
14816L:	linux-usb@vger.kernel.org
14817S:	Maintained
14818F:	drivers/usb/host/isp116x*
14819F:	include/linux/usb/isp116x.h
14820
14821USB LAN78XX ETHERNET DRIVER
14822M:	Woojung Huh <woojung.huh@microchip.com>
14823M:	Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
14824L:	netdev@vger.kernel.org
14825S:	Maintained
14826F:	Documentation/devicetree/bindings/net/microchip,lan78xx.txt
14827F:	drivers/net/usb/lan78xx.*
14828F:	include/dt-bindings/net/microchip-lan78xx.h
14829
14830USB MASS STORAGE DRIVER
14831M:	Alan Stern <stern@rowland.harvard.edu>
14832L:	linux-usb@vger.kernel.org
14833L:	usb-storage@lists.one-eyed-alien.net
14834S:	Maintained
14835W:	http://www.one-eyed-alien.net/~mdharm/linux-usb/
14836F:	drivers/usb/storage/
14837
14838USB MIDI DRIVER
14839M:	Clemens Ladisch <clemens@ladisch.de>
14840L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
14841T:	git git://git.alsa-project.org/alsa-kernel.git
14842S:	Maintained
14843F:	sound/usb/midi.*
14844
14845USB NETWORKING DRIVERS
14846L:	linux-usb@vger.kernel.org
14847S:	Odd Fixes
14848F:	drivers/net/usb/
14849
14850USB OHCI DRIVER
14851M:	Alan Stern <stern@rowland.harvard.edu>
14852L:	linux-usb@vger.kernel.org
14853S:	Maintained
14854F:	Documentation/usb/ohci.txt
14855F:	drivers/usb/host/ohci*
14856
14857USB OTG FSM (Finite State Machine)
14858M:	Peter Chen <Peter.Chen@nxp.com>
14859T:	git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
14860L:	linux-usb@vger.kernel.org
14861S:	Maintained
14862F:	drivers/usb/common/usb-otg-fsm.c
14863
14864USB OVER IP DRIVER
14865M:	Valentina Manea <valentina.manea.m@gmail.com>
14866M:	Shuah Khan <shuah@kernel.org>
14867L:	linux-usb@vger.kernel.org
14868S:	Maintained
14869F:	Documentation/usb/usbip_protocol.txt
14870F:	drivers/usb/usbip/
14871F:	tools/usb/usbip/
14872F:	tools/testing/selftests/drivers/usb/usbip/
14873
14874USB PEGASUS DRIVER
14875M:	Petko Manolov <petkan@nucleusys.com>
14876L:	linux-usb@vger.kernel.org
14877L:	netdev@vger.kernel.org
14878T:	git git://github.com/petkan/pegasus.git
14879W:	https://github.com/petkan/pegasus
14880S:	Maintained
14881F:	drivers/net/usb/pegasus.*
14882
14883USB PHY LAYER
14884M:	Felipe Balbi <balbi@kernel.org>
14885L:	linux-usb@vger.kernel.org
14886T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
14887S:	Maintained
14888F:	drivers/usb/phy/
14889
14890USB PRINTER DRIVER (usblp)
14891M:	Pete Zaitcev <zaitcev@redhat.com>
14892L:	linux-usb@vger.kernel.org
14893S:	Supported
14894F:	drivers/usb/class/usblp.c
14895
14896USB QMI WWAN NETWORK DRIVER
14897M:	Bjørn Mork <bjorn@mork.no>
14898L:	netdev@vger.kernel.org
14899S:	Maintained
14900F:	Documentation/ABI/testing/sysfs-class-net-qmi
14901F:	drivers/net/usb/qmi_wwan.c
14902
14903USB RTL8150 DRIVER
14904M:	Petko Manolov <petkan@nucleusys.com>
14905L:	linux-usb@vger.kernel.org
14906L:	netdev@vger.kernel.org
14907T:	git git://github.com/petkan/rtl8150.git
14908W:	https://github.com/petkan/rtl8150
14909S:	Maintained
14910F:	drivers/net/usb/rtl8150.c
14911
14912USB SERIAL SUBSYSTEM
14913M:	Johan Hovold <johan@kernel.org>
14914L:	linux-usb@vger.kernel.org
14915T:	git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
14916S:	Maintained
14917F:	Documentation/usb/usb-serial.txt
14918F:	drivers/usb/serial/
14919F:	include/linux/usb/serial.h
14920
14921USB SMSC75XX ETHERNET DRIVER
14922M:	Steve Glendinning <steve.glendinning@shawell.net>
14923L:	netdev@vger.kernel.org
14924S:	Maintained
14925F:	drivers/net/usb/smsc75xx.*
14926
14927USB SMSC95XX ETHERNET DRIVER
14928M:	Steve Glendinning <steve.glendinning@shawell.net>
14929M:	Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
14930L:	netdev@vger.kernel.org
14931S:	Maintained
14932F:	drivers/net/usb/smsc95xx.*
14933
14934USB SUBSYSTEM
14935M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14936L:	linux-usb@vger.kernel.org
14937W:	http://www.linux-usb.org
14938T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
14939S:	Supported
14940F:	Documentation/devicetree/bindings/usb/
14941F:	Documentation/usb/
14942F:	drivers/usb/
14943F:	include/linux/usb.h
14944F:	include/linux/usb/
14945
14946USB TYPEC PI3USB30532 MUX DRIVER
14947M:	Hans de Goede <hdegoede@redhat.com>
14948L:	linux-usb@vger.kernel.org
14949S:	Maintained
14950F:	drivers/usb/typec/mux/pi3usb30532.c
14951
14952USB TYPEC SUBSYSTEM
14953M:	Heikki Krogerus <heikki.krogerus@linux.intel.com>
14954L:	linux-usb@vger.kernel.org
14955S:	Maintained
14956F:	Documentation/ABI/testing/sysfs-class-typec
14957F:	Documentation/driver-api/usb/typec.rst
14958F:	drivers/usb/typec/
14959F:	include/linux/usb/typec.h
14960
14961USB UHCI DRIVER
14962M:	Alan Stern <stern@rowland.harvard.edu>
14963L:	linux-usb@vger.kernel.org
14964S:	Maintained
14965F:	drivers/usb/host/uhci*
14966
14967USB VIDEO CLASS
14968M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14969L:	linux-uvc-devel@lists.sourceforge.net (subscribers-only)
14970L:	linux-media@vger.kernel.org
14971T:	git git://linuxtv.org/media_tree.git
14972W:	http://www.ideasonboard.org/uvc/
14973S:	Maintained
14974F:	drivers/media/usb/uvc/
14975F:	include/uapi/linux/uvcvideo.h
14976
14977USB VISION DRIVER
14978M:	Hans Verkuil <hverkuil@xs4all.nl>
14979L:	linux-media@vger.kernel.org
14980T:	git git://linuxtv.org/media_tree.git
14981W:	https://linuxtv.org
14982S:	Odd Fixes
14983F:	drivers/media/usb/usbvision/
14984
14985USB WEBCAM GADGET
14986M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14987L:	linux-usb@vger.kernel.org
14988S:	Maintained
14989F:	drivers/usb/gadget/function/*uvc*
14990F:	drivers/usb/gadget/legacy/webcam.c
14991
14992USB WIRELESS RNDIS DRIVER (rndis_wlan)
14993M:	Jussi Kivilinna <jussi.kivilinna@iki.fi>
14994L:	linux-wireless@vger.kernel.org
14995S:	Maintained
14996F:	drivers/net/wireless/rndis_wlan.c
14997
14998USB XHCI DRIVER
14999M:	Mathias Nyman <mathias.nyman@intel.com>
15000L:	linux-usb@vger.kernel.org
15001S:	Supported
15002F:	drivers/usb/host/xhci*
15003F:	drivers/usb/host/pci-quirks*
15004
15005USB ZD1201 DRIVER
15006L:	linux-wireless@vger.kernel.org
15007W:	http://linux-lc100020.sourceforge.net
15008S:	Orphan
15009F:	drivers/net/wireless/zydas/zd1201.*
15010
15011USB ZR364XX DRIVER
15012M:	Antoine Jacquet <royale@zerezo.com>
15013L:	linux-usb@vger.kernel.org
15014L:	linux-media@vger.kernel.org
15015T:	git git://linuxtv.org/media_tree.git
15016W:	http://royale.zerezo.com/zr364xx/
15017S:	Maintained
15018F:	Documentation/media/v4l-drivers/zr364xx*
15019F:	drivers/media/usb/zr364xx/
15020
15021USER-MODE LINUX (UML)
15022M:	Jeff Dike <jdike@addtoit.com>
15023M:	Richard Weinberger <richard@nod.at>
15024L:	linux-um@lists.infradead.org
15025W:	http://user-mode-linux.sourceforge.net
15026T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
15027S:	Maintained
15028F:	Documentation/virtual/uml/
15029F:	arch/um/
15030F:	arch/x86/um/
15031F:	fs/hostfs/
15032F:	fs/hppfs/
15033
15034USERSPACE I/O (UIO)
15035M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15036S:	Maintained
15037T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
15038F:	Documentation/driver-api/uio-howto.rst
15039F:	drivers/uio/
15040F:	include/linux/uio*.h
15041
15042UTIL-LINUX PACKAGE
15043M:	Karel Zak <kzak@redhat.com>
15044L:	util-linux@vger.kernel.org
15045W:	http://en.wikipedia.org/wiki/Util-linux
15046T:	git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
15047S:	Maintained
15048
15049UUID HELPERS
15050M:	Christoph Hellwig <hch@lst.de>
15051R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15052L:	linux-kernel@vger.kernel.org
15053T:	git git://git.infradead.org/users/hch/uuid.git
15054F:	lib/uuid.c
15055F:	lib/test_uuid.c
15056F:	include/linux/uuid.h
15057F:	include/uapi/linux/uuid.h
15058S:	Maintained
15059
15060UVESAFB DRIVER
15061M:	Michal Januszewski <spock@gentoo.org>
15062L:	linux-fbdev@vger.kernel.org
15063W:	http://dev.gentoo.org/~spock/projects/uvesafb/
15064S:	Maintained
15065F:	Documentation/fb/uvesafb.txt
15066F:	drivers/video/fbdev/uvesafb.*
15067
15068VF610 NAND DRIVER
15069M:	Stefan Agner <stefan@agner.ch>
15070L:	linux-mtd@lists.infradead.org
15071S:	Supported
15072F:	drivers/mtd/nand/raw/vf610_nfc.c
15073
15074VFAT/FAT/MSDOS FILESYSTEM
15075M:	OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
15076S:	Maintained
15077F:	Documentation/filesystems/vfat.txt
15078F:	fs/fat/
15079
15080VFIO DRIVER
15081M:	Alex Williamson <alex.williamson@redhat.com>
15082L:	kvm@vger.kernel.org
15083T:	git git://github.com/awilliam/linux-vfio.git
15084S:	Maintained
15085F:	Documentation/vfio.txt
15086F:	drivers/vfio/
15087F:	include/linux/vfio.h
15088F:	include/uapi/linux/vfio.h
15089
15090VFIO MEDIATED DEVICE DRIVERS
15091M:	Kirti Wankhede <kwankhede@nvidia.com>
15092L:	kvm@vger.kernel.org
15093S:	Maintained
15094F:	Documentation/vfio-mediated-device.txt
15095F:	drivers/vfio/mdev/
15096F:	include/linux/mdev.h
15097F:	samples/vfio-mdev/
15098
15099VFIO PLATFORM DRIVER
15100M:	Eric Auger <eric.auger@redhat.com>
15101L:	kvm@vger.kernel.org
15102S:	Maintained
15103F:	drivers/vfio/platform/
15104
15105VGA_SWITCHEROO
15106R:	Lukas Wunner <lukas@wunner.de>
15107S:	Maintained
15108F:	Documentation/gpu/vga-switcheroo.rst
15109F:	drivers/gpu/vga/vga_switcheroo.c
15110F:	include/linux/vga_switcheroo.h
15111T:	git git://anongit.freedesktop.org/drm/drm-misc
15112
15113VIA RHINE NETWORK DRIVER
15114S:	Orphan
15115F:	drivers/net/ethernet/via/via-rhine.c
15116
15117VIA SD/MMC CARD CONTROLLER DRIVER
15118M:	Bruce Chang <brucechang@via.com.tw>
15119M:	Harald Welte <HaraldWelte@viatech.com>
15120S:	Maintained
15121F:	drivers/mmc/host/via-sdmmc.c
15122
15123VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
15124M:	Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
15125L:	linux-fbdev@vger.kernel.org
15126S:	Maintained
15127F:	include/linux/via-core.h
15128F:	include/linux/via-gpio.h
15129F:	include/linux/via_i2c.h
15130F:	drivers/video/fbdev/via/
15131
15132VIA VELOCITY NETWORK DRIVER
15133M:	Francois Romieu <romieu@fr.zoreil.com>
15134L:	netdev@vger.kernel.org
15135S:	Maintained
15136F:	drivers/net/ethernet/via/via-velocity.*
15137
15138VIDEO MULTIPLEXER DRIVER
15139M:	Philipp Zabel <p.zabel@pengutronix.de>
15140L:	linux-media@vger.kernel.org
15141S:	Maintained
15142F:	drivers/media/platform/video-mux.c
15143
15144VIDEO I2C POLLING DRIVER
15145M:	Matt Ranostay <matt.ranostay@konsulko.com>
15146L:	linux-media@vger.kernel.org
15147S:	Maintained
15148F:	drivers/media/i2c/video-i2c.c
15149
15150VIDEOBUF2 FRAMEWORK
15151M:	Pawel Osciak <pawel@osciak.com>
15152M:	Marek Szyprowski <m.szyprowski@samsung.com>
15153M:	Kyungmin Park <kyungmin.park@samsung.com>
15154L:	linux-media@vger.kernel.org
15155S:	Maintained
15156F:	drivers/media/v4l2-core/videobuf2-*
15157F:	include/media/videobuf2-*
15158
15159VIMC VIRTUAL MEDIA CONTROLLER DRIVER
15160M:	Helen Koike <helen.koike@collabora.com>
15161L:	linux-media@vger.kernel.org
15162T:	git git://linuxtv.org/media_tree.git
15163W:	https://linuxtv.org
15164S:	Maintained
15165F:	drivers/media/platform/vimc/*
15166
15167VIRT LIB
15168M:	Alex Williamson <alex.williamson@redhat.com>
15169M:	Paolo Bonzini <pbonzini@redhat.com>
15170L:	kvm@vger.kernel.org
15171S:	Supported
15172F:	virt/lib/
15173
15174VIRTIO AND VHOST VSOCK DRIVER
15175M:	Stefan Hajnoczi <stefanha@redhat.com>
15176L:	kvm@vger.kernel.org
15177L:	virtualization@lists.linux-foundation.org
15178L:	netdev@vger.kernel.org
15179S:	Maintained
15180F:	include/linux/virtio_vsock.h
15181F:	include/uapi/linux/virtio_vsock.h
15182F:	include/uapi/linux/vsockmon.h
15183F:	include/uapi/linux/vm_sockets_diag.h
15184F:	net/vmw_vsock/diag.c
15185F:	net/vmw_vsock/af_vsock_tap.c
15186F:	net/vmw_vsock/virtio_transport_common.c
15187F:	net/vmw_vsock/virtio_transport.c
15188F:	drivers/net/vsockmon.c
15189F:	drivers/vhost/vsock.c
15190F:	drivers/vhost/vsock.h
15191F:	tools/testing/vsock/
15192
15193VIRTIO CONSOLE DRIVER
15194M:	Amit Shah <amit@kernel.org>
15195L:	virtualization@lists.linux-foundation.org
15196S:	Maintained
15197F:	drivers/char/virtio_console.c
15198F:	include/linux/virtio_console.h
15199F:	include/uapi/linux/virtio_console.h
15200
15201VIRTIO CORE, NET AND BLOCK DRIVERS
15202M:	"Michael S. Tsirkin" <mst@redhat.com>
15203M:	Jason Wang <jasowang@redhat.com>
15204L:	virtualization@lists.linux-foundation.org
15205S:	Maintained
15206F:	Documentation/devicetree/bindings/virtio/
15207F:	drivers/virtio/
15208F:	tools/virtio/
15209F:	drivers/net/virtio_net.c
15210F:	drivers/block/virtio_blk.c
15211F:	include/linux/virtio*.h
15212F:	include/uapi/linux/virtio_*.h
15213F:	drivers/crypto/virtio/
15214F:	mm/balloon_compaction.c
15215
15216VIRTIO CRYPTO DRIVER
15217M:	Gonglei <arei.gonglei@huawei.com>
15218L:	virtualization@lists.linux-foundation.org
15219L:	linux-crypto@vger.kernel.org
15220S:	Maintained
15221F:	drivers/crypto/virtio/
15222F:	include/uapi/linux/virtio_crypto.h
15223
15224VIRTIO DRIVERS FOR S390
15225M:	Cornelia Huck <cohuck@redhat.com>
15226M:	Halil Pasic <pasic@linux.ibm.com>
15227L:	linux-s390@vger.kernel.org
15228L:	virtualization@lists.linux-foundation.org
15229L:	kvm@vger.kernel.org
15230S:	Supported
15231F:	drivers/s390/virtio/
15232F:	arch/s390/include/uapi/asm/virtio-ccw.h
15233
15234VIRTIO GPU DRIVER
15235M:	David Airlie <airlied@linux.ie>
15236M:	Gerd Hoffmann <kraxel@redhat.com>
15237L:	dri-devel@lists.freedesktop.org
15238L:	virtualization@lists.linux-foundation.org
15239T:	git git://anongit.freedesktop.org/drm/drm-misc
15240S:	Maintained
15241F:	drivers/gpu/drm/virtio/
15242F:	include/uapi/linux/virtio_gpu.h
15243
15244VIRTIO HOST (VHOST)
15245M:	"Michael S. Tsirkin" <mst@redhat.com>
15246M:	Jason Wang <jasowang@redhat.com>
15247L:	kvm@vger.kernel.org
15248L:	virtualization@lists.linux-foundation.org
15249L:	netdev@vger.kernel.org
15250T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
15251S:	Maintained
15252F:	drivers/vhost/
15253F:	include/uapi/linux/vhost.h
15254
15255VIRTIO INPUT DRIVER
15256M:	Gerd Hoffmann <kraxel@redhat.com>
15257S:	Maintained
15258F:	drivers/virtio/virtio_input.c
15259F:	include/uapi/linux/virtio_input.h
15260
15261VIRTUAL BOX GUEST DEVICE DRIVER
15262M:	Hans de Goede <hdegoede@redhat.com>
15263M:	Arnd Bergmann <arnd@arndb.de>
15264M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15265S:	Maintained
15266F:	include/linux/vbox_utils.h
15267F:	include/uapi/linux/vbox*.h
15268F:	drivers/virt/vboxguest/
15269
15270VIRTUAL SERIO DEVICE DRIVER
15271M:	Stephen Chandler Paul <thatslyude@gmail.com>
15272S:	Maintained
15273F:	drivers/input/serio/userio.c
15274F:	include/uapi/linux/userio.h
15275
15276VIVID VIRTUAL VIDEO DRIVER
15277M:	Hans Verkuil <hverkuil@xs4all.nl>
15278L:	linux-media@vger.kernel.org
15279T:	git git://linuxtv.org/media_tree.git
15280W:	https://linuxtv.org
15281S:	Maintained
15282F:	drivers/media/platform/vivid/*
15283
15284VLYNQ BUS
15285M:	Florian Fainelli <f.fainelli@gmail.com>
15286L:	openwrt-devel@lists.openwrt.org (subscribers-only)
15287S:	Maintained
15288F:	drivers/vlynq/vlynq.c
15289F:	include/linux/vlynq.h
15290
15291VME SUBSYSTEM
15292M:	Martyn Welch <martyn@welchs.me.uk>
15293M:	Manohar Vanga <manohar.vanga@gmail.com>
15294M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15295L:	devel@driverdev.osuosl.org
15296S:	Maintained
15297T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
15298F:	Documentation/driver-api/vme.rst
15299F:	drivers/staging/vme/
15300F:	drivers/vme/
15301F:	include/linux/vme*
15302
15303VMWARE BALLOON DRIVER
15304M:	Xavier Deguillard <xdeguillard@vmware.com>
15305M:	Philip Moltmann <moltmann@vmware.com>
15306M:	"VMware, Inc." <pv-drivers@vmware.com>
15307L:	linux-kernel@vger.kernel.org
15308S:	Maintained
15309F:	drivers/misc/vmw_balloon.c
15310
15311VMWARE HYPERVISOR INTERFACE
15312M:	Alok Kataria <akataria@vmware.com>
15313L:	virtualization@lists.linux-foundation.org
15314S:	Supported
15315F:	arch/x86/kernel/cpu/vmware.c
15316
15317VMWARE PVRDMA DRIVER
15318M:	Adit Ranadive <aditr@vmware.com>
15319M:	VMware PV-Drivers <pv-drivers@vmware.com>
15320L:	linux-rdma@vger.kernel.org
15321S:	Maintained
15322F:	drivers/infiniband/hw/vmw_pvrdma/
15323
15324VMware PVSCSI driver
15325M:	Jim Gill <jgill@vmware.com>
15326M:	VMware PV-Drivers <pv-drivers@vmware.com>
15327L:	linux-scsi@vger.kernel.org
15328S:	Maintained
15329F:	drivers/scsi/vmw_pvscsi.c
15330F:	drivers/scsi/vmw_pvscsi.h
15331
15332VMWARE VMMOUSE SUBDRIVER
15333M:	"VMware Graphics" <linux-graphics-maintainer@vmware.com>
15334M:	"VMware, Inc." <pv-drivers@vmware.com>
15335L:	linux-input@vger.kernel.org
15336S:	Maintained
15337F:	drivers/input/mouse/vmmouse.c
15338F:	drivers/input/mouse/vmmouse.h
15339
15340VMWARE VMXNET3 ETHERNET DRIVER
15341M:	Ronak Doshi <doshir@vmware.com>
15342M:	"VMware, Inc." <pv-drivers@vmware.com>
15343L:	netdev@vger.kernel.org
15344S:	Maintained
15345F:	drivers/net/vmxnet3/
15346
15347VOCORE VOCORE2 BOARD
15348M:	Harvey Hunt <harveyhuntnexus@gmail.com>
15349L:	linux-mips@linux-mips.org
15350S:	Maintained
15351F:	arch/mips/boot/dts/ralink/vocore2.dts
15352
15353VOLTAGE AND CURRENT REGULATOR FRAMEWORK
15354M:	Liam Girdwood <lgirdwood@gmail.com>
15355M:	Mark Brown <broonie@kernel.org>
15356L:	linux-kernel@vger.kernel.org
15357W:	http://www.slimlogic.co.uk/?p=48
15358T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
15359S:	Supported
15360F:	Documentation/devicetree/bindings/regulator/
15361F:	Documentation/power/regulator/
15362F:	drivers/regulator/
15363F:	include/dt-bindings/regulator/
15364F:	include/linux/regulator/
15365
15366VRF
15367M:	David Ahern <dsa@cumulusnetworks.com>
15368M:	Shrijeet Mukherjee <shm@cumulusnetworks.com>
15369L:	netdev@vger.kernel.org
15370S:	Maintained
15371F:	drivers/net/vrf.c
15372F:	Documentation/networking/vrf.txt
15373
15374VT1211 HARDWARE MONITOR DRIVER
15375M:	Juerg Haefliger <juergh@gmail.com>
15376L:	linux-hwmon@vger.kernel.org
15377S:	Maintained
15378F:	Documentation/hwmon/vt1211
15379F:	drivers/hwmon/vt1211.c
15380
15381VT8231 HARDWARE MONITOR DRIVER
15382M:	Roger Lucas <vt8231@hiddenengine.co.uk>
15383L:	linux-hwmon@vger.kernel.org
15384S:	Maintained
15385F:	drivers/hwmon/vt8231.c
15386
15387VUB300 USB to SDIO/SD/MMC bridge chip
15388M:	Tony Olech <tony.olech@elandigitalsystems.com>
15389L:	linux-mmc@vger.kernel.org
15390L:	linux-usb@vger.kernel.org
15391S:	Supported
15392F:	drivers/mmc/host/vub300.c
15393
15394W1 DALLAS'S 1-WIRE BUS
15395M:	Evgeniy Polyakov <zbr@ioremap.net>
15396S:	Maintained
15397F:	Documentation/w1/
15398F:	drivers/w1/
15399F:	include/linux/w1.h
15400
15401W83791D HARDWARE MONITORING DRIVER
15402M:	Marc Hulsman <m.hulsman@tudelft.nl>
15403L:	linux-hwmon@vger.kernel.org
15404S:	Maintained
15405F:	Documentation/hwmon/w83791d
15406F:	drivers/hwmon/w83791d.c
15407
15408W83793 HARDWARE MONITORING DRIVER
15409M:	Rudolf Marek <r.marek@assembler.cz>
15410L:	linux-hwmon@vger.kernel.org
15411S:	Maintained
15412F:	Documentation/hwmon/w83793
15413F:	drivers/hwmon/w83793.c
15414
15415W83795 HARDWARE MONITORING DRIVER
15416M:	Jean Delvare <jdelvare@suse.com>
15417L:	linux-hwmon@vger.kernel.org
15418S:	Maintained
15419F:	drivers/hwmon/w83795.c
15420
15421W83L51xD SD/MMC CARD INTERFACE DRIVER
15422M:	Pierre Ossman <pierre@ossman.eu>
15423S:	Maintained
15424F:	drivers/mmc/host/wbsd.*
15425
15426WACOM PROTOCOL 4 SERIAL TABLETS
15427M:	Julian Squires <julian@cipht.net>
15428M:	Hans de Goede <hdegoede@redhat.com>
15429L:	linux-input@vger.kernel.org
15430S:	Maintained
15431F:	drivers/input/tablet/wacom_serial4.c
15432
15433WATCHDOG DEVICE DRIVERS
15434M:	Wim Van Sebroeck <wim@linux-watchdog.org>
15435M:	Guenter Roeck <linux@roeck-us.net>
15436L:	linux-watchdog@vger.kernel.org
15437W:	http://www.linux-watchdog.org/
15438T:	git git://www.linux-watchdog.org/linux-watchdog.git
15439S:	Maintained
15440F:	Documentation/devicetree/bindings/watchdog/
15441F:	Documentation/watchdog/
15442F:	drivers/watchdog/
15443F:	include/linux/watchdog.h
15444F:	include/uapi/linux/watchdog.h
15445
15446WHISKEYCOVE PMIC GPIO DRIVER
15447M:	Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
15448L:	linux-gpio@vger.kernel.org
15449S:	Maintained
15450F:	drivers/gpio/gpio-wcove.c
15451
15452WIIMOTE HID DRIVER
15453M:	David Herrmann <dh.herrmann@googlemail.com>
15454L:	linux-input@vger.kernel.org
15455S:	Maintained
15456F:	drivers/hid/hid-wiimote*
15457
15458WILOCITY WIL6210 WIRELESS DRIVER
15459M:	Maya Erez <merez@codeaurora.org>
15460L:	linux-wireless@vger.kernel.org
15461L:	wil6210@qti.qualcomm.com
15462S:	Supported
15463W:	http://wireless.kernel.org/en/users/Drivers/wil6210
15464F:	drivers/net/wireless/ath/wil6210/
15465
15466WIMAX STACK
15467M:	Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
15468M:	linux-wimax@intel.com
15469L:	wimax@linuxwimax.org (subscribers-only)
15470S:	Supported
15471W:	http://linuxwimax.org
15472F:	Documentation/wimax/README.wimax
15473F:	include/linux/wimax/debug.h
15474F:	include/net/wimax.h
15475F:	include/uapi/linux/wimax.h
15476F:	net/wimax/
15477
15478WINBOND CIR DRIVER
15479M:	David Härdeman <david@hardeman.nu>
15480S:	Maintained
15481F:	drivers/media/rc/winbond-cir.c
15482
15483WINSYSTEMS EBC-C384 WATCHDOG DRIVER
15484M:	William Breathitt Gray <vilhelm.gray@gmail.com>
15485L:	linux-watchdog@vger.kernel.org
15486S:	Maintained
15487F:	drivers/watchdog/ebc-c384_wdt.c
15488
15489WINSYSTEMS WS16C48 GPIO DRIVER
15490M:	William Breathitt Gray <vilhelm.gray@gmail.com>
15491L:	linux-gpio@vger.kernel.org
15492S:	Maintained
15493F:	drivers/gpio/gpio-ws16c48.c
15494
15495WISTRON LAPTOP BUTTON DRIVER
15496M:	Miloslav Trmac <mitr@volny.cz>
15497S:	Maintained
15498F:	drivers/input/misc/wistron_btns.c
15499
15500WL3501 WIRELESS PCMCIA CARD DRIVER
15501L:	linux-wireless@vger.kernel.org
15502S:	Odd fixes
15503F:	drivers/net/wireless/wl3501*
15504
15505WOLFSON MICROELECTRONICS DRIVERS
15506L:	patches@opensource.cirrus.com
15507T:	git https://github.com/CirrusLogic/linux-drivers.git
15508W:	https://github.com/CirrusLogic/linux-drivers/wiki
15509S:	Supported
15510F:	Documentation/hwmon/wm83??
15511F:	Documentation/devicetree/bindings/extcon/extcon-arizona.txt
15512F:	Documentation/devicetree/bindings/regulator/arizona-regulator.txt
15513F:	Documentation/devicetree/bindings/mfd/arizona.txt
15514F:	Documentation/devicetree/bindings/mfd/wm831x.txt
15515F:	Documentation/devicetree/bindings/sound/wlf,arizona.txt
15516F:	arch/arm/mach-s3c64xx/mach-crag6410*
15517F:	drivers/clk/clk-wm83*.c
15518F:	drivers/extcon/extcon-arizona.c
15519F:	drivers/leds/leds-wm83*.c
15520F:	drivers/gpio/gpio-*wm*.c
15521F:	drivers/gpio/gpio-arizona.c
15522F:	drivers/hwmon/wm83??-hwmon.c
15523F:	drivers/input/misc/wm831x-on.c
15524F:	drivers/input/touchscreen/wm831x-ts.c
15525F:	drivers/input/touchscreen/wm97*.c
15526F:	drivers/mfd/arizona*
15527F:	drivers/mfd/wm*.c
15528F:	drivers/mfd/cs47l24*
15529F:	drivers/power/supply/wm83*.c
15530F:	drivers/rtc/rtc-wm83*.c
15531F:	drivers/regulator/wm8*.c
15532F:	drivers/regulator/arizona*
15533F:	drivers/video/backlight/wm83*_bl.c
15534F:	drivers/watchdog/wm83*_wdt.c
15535F:	include/linux/mfd/arizona/
15536F:	include/linux/mfd/wm831x/
15537F:	include/linux/mfd/wm8350/
15538F:	include/linux/mfd/wm8400*
15539F:	include/linux/regulator/arizona*
15540F:	include/linux/wm97xx.h
15541F:	include/sound/wm????.h
15542F:	sound/soc/codecs/arizona.?
15543F:	sound/soc/codecs/wm*
15544F:	sound/soc/codecs/cs47l24*
15545
15546WORKQUEUE
15547M:	Tejun Heo <tj@kernel.org>
15548R:	Lai Jiangshan <jiangshanlai@gmail.com>
15549T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
15550S:	Maintained
15551F:	include/linux/workqueue.h
15552F:	kernel/workqueue.c
15553F:	Documentation/core-api/workqueue.rst
15554
15555X-POWERS AXP288 PMIC DRIVERS
15556M:	Hans de Goede <hdegoede@redhat.com>
15557S:	Maintained
15558N:	axp288
15559F:	drivers/acpi/pmic/intel_pmic_xpower.c
15560
15561X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
15562M:	Chen-Yu Tsai <wens@csie.org>
15563L:	linux-kernel@vger.kernel.org
15564S:	Maintained
15565N:	axp[128]
15566
15567X.25 NETWORK LAYER
15568M:	Andrew Hendry <andrew.hendry@gmail.com>
15569L:	linux-x25@vger.kernel.org
15570S:	Odd Fixes
15571F:	Documentation/networking/x25*
15572F:	include/net/x25*
15573F:	net/x25/
15574
15575X86 ARCHITECTURE (32-BIT AND 64-BIT)
15576M:	Thomas Gleixner <tglx@linutronix.de>
15577M:	Ingo Molnar <mingo@redhat.com>
15578R:	"H. Peter Anvin" <hpa@zytor.com>
15579M:	x86@kernel.org
15580L:	linux-kernel@vger.kernel.org
15581T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15582S:	Maintained
15583F:	Documentation/x86/
15584F:	arch/x86/
15585
15586X86 MCE INFRASTRUCTURE
15587M:	Tony Luck <tony.luck@intel.com>
15588M:	Borislav Petkov <bp@alien8.de>
15589L:	linux-edac@vger.kernel.org
15590S:	Maintained
15591F:	arch/x86/kernel/cpu/mcheck/*
15592
15593X86 MICROCODE UPDATE SUPPORT
15594M:	Borislav Petkov <bp@alien8.de>
15595S:	Maintained
15596F:	arch/x86/kernel/cpu/microcode/*
15597
15598X86 PLATFORM DRIVERS
15599M:	Darren Hart <dvhart@infradead.org>
15600M:	Andy Shevchenko <andy@infradead.org>
15601L:	platform-driver-x86@vger.kernel.org
15602T:	git git://git.infradead.org/linux-platform-drivers-x86.git
15603S:	Maintained
15604F:	drivers/platform/x86/
15605F:	drivers/platform/olpc/
15606
15607X86 VDSO
15608M:	Andy Lutomirski <luto@amacapital.net>
15609L:	linux-kernel@vger.kernel.org
15610T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
15611S:	Maintained
15612F:	arch/x86/entry/vdso/
15613
15614XC2028/3028 TUNER DRIVER
15615M:	Mauro Carvalho Chehab <mchehab@kernel.org>
15616L:	linux-media@vger.kernel.org
15617W:	https://linuxtv.org
15618T:	git git://linuxtv.org/media_tree.git
15619S:	Maintained
15620F:	drivers/media/tuners/tuner-xc2028.*
15621
15622XDP SOCKETS (AF_XDP)
15623M:	Björn Töpel <bjorn.topel@intel.com>
15624M:	Magnus Karlsson <magnus.karlsson@intel.com>
15625L:	netdev@vger.kernel.org
15626S:	Maintained
15627F:	kernel/bpf/xskmap.c
15628F:	net/xdp/
15629
15630XEN BLOCK SUBSYSTEM
15631M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15632M:	Roger Pau Monné <roger.pau@citrix.com>
15633L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
15634S:	Supported
15635F:	drivers/block/xen-blkback/*
15636F:	drivers/block/xen*
15637
15638XEN HYPERVISOR ARM
15639M:	Stefano Stabellini <sstabellini@kernel.org>
15640L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
15641S:	Maintained
15642F:	arch/arm/xen/
15643F:	arch/arm/include/asm/xen/
15644
15645XEN HYPERVISOR ARM64
15646M:	Stefano Stabellini <sstabellini@kernel.org>
15647L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
15648S:	Maintained
15649F:	arch/arm64/xen/
15650F:	arch/arm64/include/asm/xen/
15651
15652XEN HYPERVISOR INTERFACE
15653M:	Boris Ostrovsky <boris.ostrovsky@oracle.com>
15654M:	Juergen Gross <jgross@suse.com>
15655L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
15656T:	git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
15657S:	Supported
15658F:	arch/x86/xen/
15659F:	drivers/*/xen-*front.c
15660F:	drivers/xen/
15661F:	arch/x86/include/asm/xen/
15662F:	arch/x86/include/asm/pvclock-abi.h
15663F:	include/xen/
15664F:	include/uapi/xen/
15665F:	Documentation/ABI/stable/sysfs-hypervisor-xen
15666F:	Documentation/ABI/testing/sysfs-hypervisor-xen
15667
15668XEN NETWORK BACKEND DRIVER
15669M:	Wei Liu <wei.liu2@citrix.com>
15670M:	Paul Durrant <paul.durrant@citrix.com>
15671L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
15672L:	netdev@vger.kernel.org
15673S:	Supported
15674F:	drivers/net/xen-netback/*
15675
15676XEN PCI SUBSYSTEM
15677M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15678L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
15679S:	Supported
15680F:	arch/x86/pci/*xen*
15681F:	drivers/pci/*xen*
15682
15683XEN PVSCSI DRIVERS
15684M:	Juergen Gross <jgross@suse.com>
15685L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
15686L:	linux-scsi@vger.kernel.org
15687S:	Supported
15688F:	drivers/scsi/xen-scsifront.c
15689F:	drivers/xen/xen-scsiback.c
15690F:	include/xen/interface/io/vscsiif.h
15691
15692XEN SWIOTLB SUBSYSTEM
15693M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15694L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
15695L:	iommu@lists.linux-foundation.org
15696S:	Supported
15697F:	arch/x86/xen/*swiotlb*
15698F:	drivers/xen/*swiotlb*
15699
15700XEN SOUND FRONTEND DRIVER
15701M:	Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
15702L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
15703L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
15704S:	Supported
15705F:	sound/xen/*
15706
15707XFS FILESYSTEM
15708M:	Darrick J. Wong <darrick.wong@oracle.com>
15709M:	linux-xfs@vger.kernel.org
15710L:	linux-xfs@vger.kernel.org
15711W:	http://xfs.org/
15712T:	git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
15713S:	Supported
15714F:	Documentation/filesystems/xfs.txt
15715F:	fs/xfs/
15716
15717XILINX AXI ETHERNET DRIVER
15718M:	Anirudha Sarangi <anirudh@xilinx.com>
15719M:	John Linn <John.Linn@xilinx.com>
15720S:	Maintained
15721F:	drivers/net/ethernet/xilinx/xilinx_axienet*
15722
15723XILINX UARTLITE SERIAL DRIVER
15724M:	Peter Korsgaard <jacmet@sunsite.dk>
15725L:	linux-serial@vger.kernel.org
15726S:	Maintained
15727F:	drivers/tty/serial/uartlite.c
15728
15729XILINX VIDEO IP CORES
15730M:	Hyun Kwon <hyun.kwon@xilinx.com>
15731M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15732L:	linux-media@vger.kernel.org
15733T:	git git://linuxtv.org/media_tree.git
15734S:	Supported
15735F:	Documentation/devicetree/bindings/media/xilinx/
15736F:	drivers/media/platform/xilinx/
15737F:	include/uapi/linux/xilinx-v4l2-controls.h
15738
15739XILLYBUS DRIVER
15740M:	Eli Billauer <eli.billauer@gmail.com>
15741L:	linux-kernel@vger.kernel.org
15742S:	Supported
15743F:	drivers/char/xillybus/
15744
15745XLP9XX I2C DRIVER
15746M:	George Cherian <george.cherian@cavium.com>
15747M:	Jan Glauber <jglauber@cavium.com>
15748L:	linux-i2c@vger.kernel.org
15749W:	http://www.cavium.com
15750S:	Supported
15751F:	drivers/i2c/busses/i2c-xlp9xx.c
15752
15753XRA1403 GPIO EXPANDER
15754M:	Nandor Han <nandor.han@ge.com>
15755M:	Semi Malinen <semi.malinen@ge.com>
15756L:	linux-gpio@vger.kernel.org
15757S:	Maintained
15758F:	drivers/gpio/gpio-xra1403.c
15759F:	Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
15760
15761XTENSA XTFPGA PLATFORM SUPPORT
15762M:	Max Filippov <jcmvbkbc@gmail.com>
15763L:	linux-xtensa@linux-xtensa.org
15764S:	Maintained
15765F:	drivers/spi/spi-xtensa-xtfpga.c
15766F:	sound/soc/xtensa/xtfpga-i2s.c
15767
15768YAM DRIVER FOR AX.25
15769M:	Jean-Paul Roubelat <jpr@f6fbb.org>
15770L:	linux-hams@vger.kernel.org
15771S:	Maintained
15772F:	drivers/net/hamradio/yam*
15773F:	include/linux/yam.h
15774
15775YAMA SECURITY MODULE
15776M:	Kees Cook <keescook@chromium.org>
15777T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
15778S:	Supported
15779F:	security/yama/
15780F:	Documentation/admin-guide/LSM/Yama.rst
15781
15782YEALINK PHONE DRIVER
15783M:	Henk Vergonet <Henk.Vergonet@gmail.com>
15784L:	usbb2k-api-dev@nongnu.org
15785S:	Maintained
15786F:	Documentation/input/devices/yealink.rst
15787F:	drivers/input/misc/yealink.*
15788
15789Z8530 DRIVER FOR AX.25
15790M:	Joerg Reuter <jreuter@yaina.de>
15791W:	http://yaina.de/jreuter/
15792W:	http://www.qsl.net/dl1bke/
15793L:	linux-hams@vger.kernel.org
15794S:	Maintained
15795F:	Documentation/networking/z8530drv.txt
15796F:	drivers/net/hamradio/*scc.c
15797F:	drivers/net/hamradio/z8530.h
15798
15799ZBUD COMPRESSED PAGE ALLOCATOR
15800M:	Seth Jennings <sjenning@redhat.com>
15801M:	Dan Streetman <ddstreet@ieee.org>
15802L:	linux-mm@kvack.org
15803S:	Maintained
15804F:	mm/zbud.c
15805F:	include/linux/zbud.h
15806
15807ZD1211RW WIRELESS DRIVER
15808M:	Daniel Drake <dsd@gentoo.org>
15809M:	Ulrich Kunitz <kune@deine-taler.de>
15810W:	http://zd1211.ath.cx/wiki/DriverRewrite
15811L:	linux-wireless@vger.kernel.org
15812L:	zd1211-devs@lists.sourceforge.net (subscribers-only)
15813S:	Maintained
15814F:	drivers/net/wireless/zydas/zd1211rw/
15815
15816ZD1301 MEDIA DRIVER
15817M:	Antti Palosaari <crope@iki.fi>
15818L:	linux-media@vger.kernel.org
15819W:	https://linuxtv.org/
15820W:	http://palosaari.fi/linux/
15821Q:	https://patchwork.linuxtv.org/project/linux-media/list/
15822S:	Maintained
15823F:	drivers/media/usb/dvb-usb-v2/zd1301*
15824
15825ZD1301_DEMOD MEDIA DRIVER
15826M:	Antti Palosaari <crope@iki.fi>
15827L:	linux-media@vger.kernel.org
15828W:	https://linuxtv.org/
15829W:	http://palosaari.fi/linux/
15830Q:	https://patchwork.linuxtv.org/project/linux-media/list/
15831S:	Maintained
15832F:	drivers/media/dvb-frontends/zd1301_demod*
15833
15834ZPOOL COMPRESSED PAGE STORAGE API
15835M:	Dan Streetman <ddstreet@ieee.org>
15836L:	linux-mm@kvack.org
15837S:	Maintained
15838F:	mm/zpool.c
15839F:	include/linux/zpool.h
15840
15841ZR36067 VIDEO FOR LINUX DRIVER
15842L:	mjpeg-users@lists.sourceforge.net
15843L:	linux-media@vger.kernel.org
15844W:	http://mjpeg.sourceforge.net/driver-zoran/
15845T:	hg https://linuxtv.org/hg/v4l-dvb
15846S:	Odd Fixes
15847F:	drivers/staging/media/zoran/
15848
15849ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
15850M:	Minchan Kim <minchan@kernel.org>
15851M:	Nitin Gupta <ngupta@vflare.org>
15852R:	Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
15853L:	linux-kernel@vger.kernel.org
15854S:	Maintained
15855F:	drivers/block/zram/
15856F:	Documentation/blockdev/zram.txt
15857
15858ZS DECSTATION Z85C30 SERIAL DRIVER
15859M:	"Maciej W. Rozycki" <macro@linux-mips.org>
15860S:	Maintained
15861F:	drivers/tty/serial/zs.*
15862
15863ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
15864M:	Minchan Kim <minchan@kernel.org>
15865M:	Nitin Gupta <ngupta@vflare.org>
15866R:	Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
15867L:	linux-mm@kvack.org
15868S:	Maintained
15869F:	mm/zsmalloc.c
15870F:	include/linux/zsmalloc.h
15871F:	Documentation/vm/zsmalloc.rst
15872
15873ZSWAP COMPRESSED SWAP CACHING
15874M:	Seth Jennings <sjenning@redhat.com>
15875M:	Dan Streetman <ddstreet@ieee.org>
15876L:	linux-mm@kvack.org
15877S:	Maintained
15878F:	mm/zswap.c
15879
15880THE REST
15881M:	Linus Torvalds <torvalds@linux-foundation.org>
15882L:	linux-kernel@vger.kernel.org
15883Q:	http://patchwork.kernel.org/project/LKML/list/
15884T:	git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
15885S:	Buried alive in reporters
15886F:	*
15887F:	*/
15888