xref: /openbmc/linux/MAINTAINERS (revision dd2934a95701576203b2f61e8ded4e4a2f9183ea)
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:	Latchesar Ionkov <lucho@ionkov.net>
203M:	Dominique Martinet <asmadeus@codewreck.org>
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
208T:	git git://github.com/martinetd/linux.git
209S:	Maintained
210F:	Documentation/filesystems/9p.txt
211F:	fs/9p/
212F:	net/9p/
213F:	include/net/9p/
214F:	include/uapi/linux/virtio_9p.h
215F:	include/trace/events/9p.h
216
217A8293 MEDIA DRIVER
218M:	Antti Palosaari <crope@iki.fi>
219L:	linux-media@vger.kernel.org
220W:	https://linuxtv.org
221W:	http://palosaari.fi/linux/
222Q:	http://patchwork.linuxtv.org/project/linux-media/list/
223T:	git git://linuxtv.org/anttip/media_tree.git
224S:	Maintained
225F:	drivers/media/dvb-frontends/a8293*
226
227AACRAID SCSI RAID DRIVER
228M:	Adaptec OEM Raid Solutions <aacraid@microsemi.com>
229L:	linux-scsi@vger.kernel.org
230W:	http://www.adaptec.com/
231S:	Supported
232F:	Documentation/scsi/aacraid.txt
233F:	drivers/scsi/aacraid/
234
235ABI/API
236L:	linux-api@vger.kernel.org
237F:	include/linux/syscalls.h
238F:	kernel/sys_ni.c
239
240ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
241M:	Hans de Goede <hdegoede@redhat.com>
242L:	linux-hwmon@vger.kernel.org
243S:	Maintained
244F:	drivers/hwmon/abituguru.c
245
246ABIT UGURU 3 HARDWARE MONITOR DRIVER
247M:	Alistair John Strachan <alistair@devzero.co.uk>
248L:	linux-hwmon@vger.kernel.org
249S:	Maintained
250F:	drivers/hwmon/abituguru3.c
251
252ACCES 104-DIO-48E GPIO DRIVER
253M:	William Breathitt Gray <vilhelm.gray@gmail.com>
254L:	linux-gpio@vger.kernel.org
255S:	Maintained
256F:	drivers/gpio/gpio-104-dio-48e.c
257
258ACCES 104-IDI-48 GPIO DRIVER
259M:	"William Breathitt Gray" <vilhelm.gray@gmail.com>
260L:	linux-gpio@vger.kernel.org
261S:	Maintained
262F:	drivers/gpio/gpio-104-idi-48.c
263
264ACCES 104-IDIO-16 GPIO DRIVER
265M:	"William Breathitt Gray" <vilhelm.gray@gmail.com>
266L:	linux-gpio@vger.kernel.org
267S:	Maintained
268F:	drivers/gpio/gpio-104-idio-16.c
269
270ACCES 104-QUAD-8 IIO DRIVER
271M:	William Breathitt Gray <vilhelm.gray@gmail.com>
272L:	linux-iio@vger.kernel.org
273S:	Maintained
274F:	Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
275F:	drivers/iio/counter/104-quad-8.c
276
277ACCES PCI-IDIO-16 GPIO DRIVER
278M:	William Breathitt Gray <vilhelm.gray@gmail.com>
279L:	linux-gpio@vger.kernel.org
280S:	Maintained
281F:	drivers/gpio/gpio-pci-idio-16.c
282
283ACCES PCIe-IDIO-24 GPIO DRIVER
284M:	William Breathitt Gray <vilhelm.gray@gmail.com>
285L:	linux-gpio@vger.kernel.org
286S:	Maintained
287F:	drivers/gpio/gpio-pcie-idio-24.c
288
289ACENIC DRIVER
290M:	Jes Sorensen <jes@trained-monkey.org>
291L:	linux-acenic@sunsite.dk
292S:	Maintained
293F:	drivers/net/ethernet/alteon/acenic*
294
295ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
296M:	Peter Feuerer <peter@piie.net>
297L:	platform-driver-x86@vger.kernel.org
298W:	http://piie.net/?section=acerhdf
299S:	Maintained
300F:	drivers/platform/x86/acerhdf.c
301
302ACER WMI LAPTOP EXTRAS
303M:	"Lee, Chun-Yi" <jlee@suse.com>
304L:	platform-driver-x86@vger.kernel.org
305S:	Maintained
306F:	drivers/platform/x86/acer-wmi.c
307
308ACPI
309M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
310M:	Len Brown <lenb@kernel.org>
311L:	linux-acpi@vger.kernel.org
312W:	https://01.org/linux-acpi
313Q:	https://patchwork.kernel.org/project/linux-acpi/list/
314T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
315B:	https://bugzilla.kernel.org
316S:	Supported
317F:	drivers/acpi/
318F:	drivers/pnp/pnpacpi/
319F:	include/linux/acpi.h
320F:	include/linux/fwnode.h
321F:	include/acpi/
322F:	Documentation/acpi/
323F:	Documentation/ABI/testing/sysfs-bus-acpi
324F:	Documentation/ABI/testing/configfs-acpi
325F:	drivers/pci/*acpi*
326F:	drivers/pci/*/*acpi*
327F:	drivers/pci/*/*/*acpi*
328F:	tools/power/acpi/
329
330ACPI APEI
331M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
332M:	Len Brown <lenb@kernel.org>
333L:	linux-acpi@vger.kernel.org
334R:	Tony Luck <tony.luck@intel.com>
335R:	Borislav Petkov <bp@alien8.de>
336F:	drivers/acpi/apei/
337
338ACPI COMPONENT ARCHITECTURE (ACPICA)
339M:	Robert Moore <robert.moore@intel.com>
340M:	Erik Schmauss <erik.schmauss@intel.com>
341M:	"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
342L:	linux-acpi@vger.kernel.org
343L:	devel@acpica.org
344W:	https://acpica.org/
345W:	https://github.com/acpica/acpica/
346Q:	https://patchwork.kernel.org/project/linux-acpi/list/
347T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
348B:	https://bugzilla.kernel.org
349B:	https://bugs.acpica.org
350S:	Supported
351F:	drivers/acpi/acpica/
352F:	include/acpi/
353F:	tools/power/acpi/
354
355ACPI FAN DRIVER
356M:	Zhang Rui <rui.zhang@intel.com>
357L:	linux-acpi@vger.kernel.org
358W:	https://01.org/linux-acpi
359B:	https://bugzilla.kernel.org
360S:	Supported
361F:	drivers/acpi/fan.c
362
363ACPI FOR ARM64 (ACPI/arm64)
364M:	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
365M:	Hanjun Guo <hanjun.guo@linaro.org>
366M:	Sudeep Holla <sudeep.holla@arm.com>
367L:	linux-acpi@vger.kernel.org
368S:	Maintained
369F:	drivers/acpi/arm64
370
371ACPI I2C MULTI INSTANTIATE DRIVER
372M:	Hans de Goede <hdegoede@redhat.com>
373L:	platform-driver-x86@vger.kernel.org
374S:	Maintained
375F:	drivers/platform/x86/i2c-multi-instantiate.c
376
377ACPI PMIC DRIVERS
378M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
379M:	Len Brown <lenb@kernel.org>
380R:	Andy Shevchenko <andy@infradead.org>
381R:	Mika Westerberg <mika.westerberg@linux.intel.com>
382L:	linux-acpi@vger.kernel.org
383Q:	https://patchwork.kernel.org/project/linux-acpi/list/
384T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
385B:	https://bugzilla.kernel.org
386S:	Supported
387F:	drivers/acpi/pmic/
388
389ACPI THERMAL DRIVER
390M:	Zhang Rui <rui.zhang@intel.com>
391L:	linux-acpi@vger.kernel.org
392W:	https://01.org/linux-acpi
393B:	https://bugzilla.kernel.org
394S:	Supported
395F:	drivers/acpi/*thermal*
396
397ACPI VIDEO DRIVER
398M:	Zhang Rui <rui.zhang@intel.com>
399L:	linux-acpi@vger.kernel.org
400W:	https://01.org/linux-acpi
401B:	https://bugzilla.kernel.org
402S:	Supported
403F:	drivers/acpi/acpi_video.c
404
405ACPI WMI DRIVER
406L:	platform-driver-x86@vger.kernel.org
407S:	Orphan
408F:	drivers/platform/x86/wmi.c
409F:	include/uapi/linux/wmi.h
410
411AD1889 ALSA SOUND DRIVER
412M:	Thibaut Varene <T-Bone@parisc-linux.org>
413W:	http://wiki.parisc-linux.org/AD1889
414L:	linux-parisc@vger.kernel.org
415S:	Maintained
416F:	sound/pci/ad1889.*
417
418AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
419M:	Michael Hennerich <michael.hennerich@analog.com>
420W:	http://wiki.analog.com/AD5254
421W:	http://ez.analog.com/community/linux-device-drivers
422S:	Supported
423F:	drivers/misc/ad525x_dpot.c
424
425AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
426M:	Michael Hennerich <michael.hennerich@analog.com>
427W:	http://wiki.analog.com/AD5398
428W:	http://ez.analog.com/community/linux-device-drivers
429S:	Supported
430F:	drivers/regulator/ad5398.c
431
432AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
433M:	Michael Hennerich <michael.hennerich@analog.com>
434W:	http://wiki.analog.com/AD7142
435W:	http://ez.analog.com/community/linux-device-drivers
436S:	Supported
437F:	drivers/input/misc/ad714x.c
438
439AD7877 TOUCHSCREEN DRIVER
440M:	Michael Hennerich <michael.hennerich@analog.com>
441W:	http://wiki.analog.com/AD7877
442W:	http://ez.analog.com/community/linux-device-drivers
443S:	Supported
444F:	drivers/input/touchscreen/ad7877.c
445
446AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
447M:	Michael Hennerich <michael.hennerich@analog.com>
448W:	http://wiki.analog.com/AD7879
449W:	http://ez.analog.com/community/linux-device-drivers
450S:	Supported
451F:	drivers/input/touchscreen/ad7879.c
452
453ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
454M:	Jiri Kosina <jikos@kernel.org>
455S:	Maintained
456
457ADF7242 IEEE 802.15.4 RADIO DRIVER
458M:	Michael Hennerich <michael.hennerich@analog.com>
459W:	https://wiki.analog.com/ADF7242
460W:	http://ez.analog.com/community/linux-device-drivers
461L:	linux-wpan@vger.kernel.org
462S:	Supported
463F:	drivers/net/ieee802154/adf7242.c
464F:	Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
465
466ADM1025 HARDWARE MONITOR DRIVER
467M:	Jean Delvare <jdelvare@suse.com>
468L:	linux-hwmon@vger.kernel.org
469S:	Maintained
470F:	Documentation/hwmon/adm1025
471F:	drivers/hwmon/adm1025.c
472
473ADM1029 HARDWARE MONITOR DRIVER
474M:	Corentin Labbe <clabbe.montjoie@gmail.com>
475L:	linux-hwmon@vger.kernel.org
476S:	Maintained
477F:	drivers/hwmon/adm1029.c
478
479ADM8211 WIRELESS DRIVER
480L:	linux-wireless@vger.kernel.org
481W:	http://wireless.kernel.org/
482S:	Orphan
483F:	drivers/net/wireless/admtek/adm8211.*
484
485ADP1653 FLASH CONTROLLER DRIVER
486M:	Sakari Ailus <sakari.ailus@iki.fi>
487L:	linux-media@vger.kernel.org
488S:	Maintained
489F:	drivers/media/i2c/adp1653.c
490F:	include/media/i2c/adp1653.h
491
492ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
493M:	Michael Hennerich <michael.hennerich@analog.com>
494W:	http://wiki.analog.com/ADP5520
495W:	http://ez.analog.com/community/linux-device-drivers
496S:	Supported
497F:	drivers/mfd/adp5520.c
498F:	drivers/video/backlight/adp5520_bl.c
499F:	drivers/leds/leds-adp5520.c
500F:	drivers/gpio/gpio-adp5520.c
501F:	drivers/input/keyboard/adp5520-keys.c
502
503ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
504M:	Michael Hennerich <michael.hennerich@analog.com>
505W:	http://wiki.analog.com/ADP5588
506W:	http://ez.analog.com/community/linux-device-drivers
507S:	Supported
508F:	drivers/input/keyboard/adp5588-keys.c
509F:	drivers/gpio/gpio-adp5588.c
510
511ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
512M:	Michael Hennerich <michael.hennerich@analog.com>
513W:	http://wiki.analog.com/ADP8860
514W:	http://ez.analog.com/community/linux-device-drivers
515S:	Supported
516F:	drivers/video/backlight/adp8860_bl.c
517
518ADS1015 HARDWARE MONITOR DRIVER
519M:	Dirk Eibach <eibach@gdsys.de>
520L:	linux-hwmon@vger.kernel.org
521S:	Maintained
522F:	Documentation/hwmon/ads1015
523F:	drivers/hwmon/ads1015.c
524F:	include/linux/platform_data/ads1015.h
525
526ADT746X FAN DRIVER
527M:	Colin Leroy <colin@colino.net>
528S:	Maintained
529F:	drivers/macintosh/therm_adt746x.c
530
531ADT7475 HARDWARE MONITOR DRIVER
532M:	Jean Delvare <jdelvare@suse.com>
533L:	linux-hwmon@vger.kernel.org
534S:	Maintained
535F:	Documentation/hwmon/adt7475
536F:	drivers/hwmon/adt7475.c
537
538ADVANSYS SCSI DRIVER
539M:	Matthew Wilcox <matthew@wil.cx>
540M:	Hannes Reinecke <hare@suse.com>
541L:	linux-scsi@vger.kernel.org
542S:	Maintained
543F:	Documentation/scsi/advansys.txt
544F:	drivers/scsi/advansys.c
545
546ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
547M:	Michael Hennerich <michael.hennerich@analog.com>
548W:	http://wiki.analog.com/ADXL345
549W:	http://ez.analog.com/community/linux-device-drivers
550S:	Supported
551F:	drivers/input/misc/adxl34x.c
552
553AF9013 MEDIA DRIVER
554M:	Antti Palosaari <crope@iki.fi>
555L:	linux-media@vger.kernel.org
556W:	https://linuxtv.org
557W:	http://palosaari.fi/linux/
558Q:	http://patchwork.linuxtv.org/project/linux-media/list/
559T:	git git://linuxtv.org/anttip/media_tree.git
560S:	Maintained
561F:	drivers/media/dvb-frontends/af9013*
562
563AF9033 MEDIA DRIVER
564M:	Antti Palosaari <crope@iki.fi>
565L:	linux-media@vger.kernel.org
566W:	https://linuxtv.org
567W:	http://palosaari.fi/linux/
568Q:	http://patchwork.linuxtv.org/project/linux-media/list/
569T:	git git://linuxtv.org/anttip/media_tree.git
570S:	Maintained
571F:	drivers/media/dvb-frontends/af9033*
572
573AFFS FILE SYSTEM
574M:	David Sterba <dsterba@suse.com>
575L:	linux-fsdevel@vger.kernel.org
576S:	Odd Fixes
577F:	Documentation/filesystems/affs.txt
578F:	fs/affs/
579
580AFS FILESYSTEM
581M:	David Howells <dhowells@redhat.com>
582L:	linux-afs@lists.infradead.org
583S:	Supported
584F:	fs/afs/
585F:	include/trace/events/afs.h
586F:	Documentation/filesystems/afs.txt
587W:	https://www.infradead.org/~dhowells/kafs/
588
589AGPGART DRIVER
590M:	David Airlie <airlied@linux.ie>
591T:	git git://anongit.freedesktop.org/drm/drm
592S:	Maintained
593F:	drivers/char/agp/
594F:	include/linux/agp*
595F:	include/uapi/linux/agp*
596
597AHA152X SCSI DRIVER
598M:	"Juergen E. Fischer" <fischer@norbit.de>
599L:	linux-scsi@vger.kernel.org
600S:	Maintained
601F:	drivers/scsi/aha152x*
602F:	drivers/scsi/pcmcia/aha152x*
603
604AIC7XXX / AIC79XX SCSI DRIVER
605M:	Hannes Reinecke <hare@suse.com>
606L:	linux-scsi@vger.kernel.org
607S:	Maintained
608F:	drivers/scsi/aic7xxx/
609
610AIMSLAB FM RADIO RECEIVER DRIVER
611M:	Hans Verkuil <hverkuil@xs4all.nl>
612L:	linux-media@vger.kernel.org
613T:	git git://linuxtv.org/media_tree.git
614W:	https://linuxtv.org
615S:	Maintained
616F:	drivers/media/radio/radio-aimslab*
617
618AIO
619M:	Benjamin LaHaise <bcrl@kvack.org>
620L:	linux-aio@kvack.org
621S:	Supported
622F:	fs/aio.c
623F:	include/linux/*aio*.h
624
625AIRSPY MEDIA DRIVER
626M:	Antti Palosaari <crope@iki.fi>
627L:	linux-media@vger.kernel.org
628W:	https://linuxtv.org
629W:	http://palosaari.fi/linux/
630Q:	http://patchwork.linuxtv.org/project/linux-media/list/
631T:	git git://linuxtv.org/anttip/media_tree.git
632S:	Maintained
633F:	drivers/media/usb/airspy/
634
635ALACRITECH GIGABIT ETHERNET DRIVER
636M:	Lino Sanfilippo <LinoSanfilippo@gmx.de>
637S:	Maintained
638F:	drivers/net/ethernet/alacritech/*
639
640ALCATEL SPEEDTOUCH USB DRIVER
641M:	Duncan Sands <duncan.sands@free.fr>
642L:	linux-usb@vger.kernel.org
643W:	http://www.linux-usb.org/SpeedTouch/
644S:	Maintained
645F:	drivers/usb/atm/speedtch.c
646F:	drivers/usb/atm/usbatm.c
647
648ALCHEMY AU1XX0 MMC DRIVER
649M:	Manuel Lauss <manuel.lauss@gmail.com>
650S:	Maintained
651F:	drivers/mmc/host/au1xmmc.c
652
653ALI1563 I2C DRIVER
654M:	Rudolf Marek <r.marek@assembler.cz>
655L:	linux-i2c@vger.kernel.org
656S:	Maintained
657F:	Documentation/i2c/busses/i2c-ali1563
658F:	drivers/i2c/busses/i2c-ali1563.c
659
660ALLWINNER SECURITY SYSTEM
661M:	Corentin Labbe <clabbe.montjoie@gmail.com>
662L:	linux-crypto@vger.kernel.org
663S:	Maintained
664F:	drivers/crypto/sunxi-ss/
665
666ALPHA PORT
667M:	Richard Henderson <rth@twiddle.net>
668M:	Ivan Kokshaysky <ink@jurassic.park.msu.ru>
669M:	Matt Turner <mattst88@gmail.com>
670S:	Odd Fixes
671L:	linux-alpha@vger.kernel.org
672F:	arch/alpha/
673
674ALPS PS/2 TOUCHPAD DRIVER
675R:	Pali Rohár <pali.rohar@gmail.com>
676F:	drivers/input/mouse/alps.*
677
678ALTERA I2C CONTROLLER DRIVER
679M:	Thor Thayer <thor.thayer@linux.intel.com>
680S:	Maintained
681F:	drivers/i2c/busses/i2c-altera.c
682
683ALTERA MAILBOX DRIVER
684M:	Ley Foon Tan <lftan@altera.com>
685L:	nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
686S:	Maintained
687F:	drivers/mailbox/mailbox-altera.c
688
689ALTERA PIO DRIVER
690M:	Tien Hock Loh <thloh@altera.com>
691L:	linux-gpio@vger.kernel.org
692S:	Maintained
693F:	drivers/gpio/gpio-altera.c
694
695ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
696M:	Thor Thayer <thor.thayer@linux.intel.com>
697S:	Maintained
698F:	drivers/gpio/gpio-altera-a10sr.c
699F:	drivers/mfd/altera-a10sr.c
700F:	drivers/reset/reset-a10sr.c
701F:	include/linux/mfd/altera-a10sr.h
702F:	include/dt-bindings/reset/altr,rst-mgr-a10sr.h
703
704ALTERA TRIPLE SPEED ETHERNET DRIVER
705M:	Vince Bridgers <vbridger@opensource.altera.com>
706L:	netdev@vger.kernel.org
707L:	nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
708S:	Maintained
709F:	drivers/net/ethernet/altera/
710
711ALTERA UART/JTAG UART SERIAL DRIVERS
712M:	Tobias Klauser <tklauser@distanz.ch>
713L:	linux-serial@vger.kernel.org
714L:	nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
715S:	Maintained
716F:	drivers/tty/serial/altera_uart.c
717F:	drivers/tty/serial/altera_jtaguart.c
718F:	include/linux/altera_uart.h
719F:	include/linux/altera_jtaguart.h
720
721AMAZON ETHERNET DRIVERS
722M:	Netanel Belgazal <netanel@amazon.com>
723R:	Saeed Bishara <saeedb@amazon.com>
724R:	Zorik Machulsky <zorik@amazon.com>
725L:	netdev@vger.kernel.org
726S:	Supported
727F:	Documentation/networking/ena.txt
728F:	drivers/net/ethernet/amazon/
729
730AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
731M:	Tom Lendacky <thomas.lendacky@amd.com>
732M:	Gary Hook <gary.hook@amd.com>
733L:	linux-crypto@vger.kernel.org
734S:	Supported
735F:	drivers/crypto/ccp/
736F:	include/linux/ccp.h
737
738AMD DISPLAY CORE
739M:	Harry Wentland <harry.wentland@amd.com>
740M:	Leo Li <sunpeng.li@amd.com>
741L:	amd-gfx@lists.freedesktop.org
742T:	git git://people.freedesktop.org/~agd5f/linux
743S:	Supported
744F:	drivers/gpu/drm/amd/display/
745
746AMD FAM15H PROCESSOR POWER MONITORING DRIVER
747M:	Huang Rui <ray.huang@amd.com>
748L:	linux-hwmon@vger.kernel.org
749S:	Supported
750F:	Documentation/hwmon/fam15h_power
751F:	drivers/hwmon/fam15h_power.c
752
753AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
754L:	linux-geode@lists.infradead.org (moderated for non-subscribers)
755S:	Orphan
756F:	drivers/usb/gadget/udc/amd5536udc.*
757
758AMD GEODE PROCESSOR/CHIPSET SUPPORT
759P:	Andres Salomon <dilinger@queued.net>
760L:	linux-geode@lists.infradead.org (moderated for non-subscribers)
761W:	http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
762S:	Supported
763F:	drivers/char/hw_random/geode-rng.c
764F:	drivers/crypto/geode*
765F:	drivers/video/fbdev/geode/
766F:	arch/x86/include/asm/geode.h
767
768AMD IOMMU (AMD-VI)
769M:	Joerg Roedel <joro@8bytes.org>
770L:	iommu@lists.linux-foundation.org
771T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
772S:	Maintained
773F:	drivers/iommu/amd_iommu*.[ch]
774F:	include/linux/amd-iommu.h
775
776AMD KFD
777M:	Oded Gabbay <oded.gabbay@gmail.com>
778L:	dri-devel@lists.freedesktop.org
779T:	git git://people.freedesktop.org/~gabbayo/linux.git
780S:	Supported
781F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
782F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
783F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
784F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
785F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
786F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_fence.c
787F:	drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
788F:	drivers/gpu/drm/amd/amdkfd/
789F:	drivers/gpu/drm/amd/include/cik_structs.h
790F:	drivers/gpu/drm/amd/include/kgd_kfd_interface.h
791F:	drivers/gpu/drm/amd/include/vi_structs.h
792F:	drivers/gpu/drm/amd/include/v9_structs.h
793F:	include/uapi/linux/kfd_ioctl.h
794
795AMD POWERPLAY
796M:	Rex Zhu <rex.zhu@amd.com>
797M:	Evan Quan <evan.quan@amd.com>
798L:	amd-gfx@lists.freedesktop.org
799S:	Supported
800F:	drivers/gpu/drm/amd/powerplay/
801T:	git git://people.freedesktop.org/~agd5f/linux
802
803AMD SEATTLE DEVICE TREE SUPPORT
804M:	Brijesh Singh <brijeshkumar.singh@amd.com>
805M:	Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
806M:	Tom Lendacky <thomas.lendacky@amd.com>
807S:	Supported
808F:	arch/arm64/boot/dts/amd/
809
810AMD XGBE DRIVER
811M:	Tom Lendacky <thomas.lendacky@amd.com>
812L:	netdev@vger.kernel.org
813S:	Supported
814F:	drivers/net/ethernet/amd/xgbe/
815F:	arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
816
817ANALOG DEVICES INC AD5686 DRIVER
818M:	Stefan Popa <stefan.popa@analog.com>
819L:	linux-pm@vger.kernel.org
820W:	http://ez.analog.com/community/linux-device-drivers
821S:	Supported
822F:	drivers/iio/dac/ad5686*
823F:	drivers/iio/dac/ad5696*
824
825ANALOG DEVICES INC AD5758 DRIVER
826M:	Stefan Popa <stefan.popa@analog.com>
827L:	linux-iio@vger.kernel.org
828W:	http://ez.analog.com/community/linux-device-drivers
829S:	Supported
830F:	drivers/iio/dac/ad5758.c
831F:	Documentation/devicetree/bindings/iio/dac/ad5758.txt
832
833ANALOG DEVICES INC AD9389B DRIVER
834M:	Hans Verkuil <hans.verkuil@cisco.com>
835L:	linux-media@vger.kernel.org
836S:	Maintained
837F:	drivers/media/i2c/ad9389b*
838
839ANALOG DEVICES INC ADGS1408 DRIVER
840M:	Mircea Caprioru <mircea.caprioru@analog.com>
841S:	Supported
842F:	drivers/mux/adgs1408.c
843F:	Documentation/devicetree/bindings/mux/adgs1408.txt
844
845ANALOG DEVICES INC ADP5061 DRIVER
846M:	Stefan Popa <stefan.popa@analog.com>
847L:	linux-pm@vger.kernel.org
848W:	http://ez.analog.com/community/linux-device-drivers
849S:	Supported
850F:	drivers/power/supply/adp5061.c
851
852ANALOG DEVICES INC ADV7180 DRIVER
853M:	Lars-Peter Clausen <lars@metafoo.de>
854L:	linux-media@vger.kernel.org
855W:	http://ez.analog.com/community/linux-device-drivers
856S:	Supported
857F:	drivers/media/i2c/adv7180.c
858
859ANALOG DEVICES INC ADV748X DRIVER
860M:	Kieran Bingham <kieran.bingham@ideasonboard.com>
861L:	linux-media@vger.kernel.org
862S:	Maintained
863F:	drivers/media/i2c/adv748x/*
864
865ANALOG DEVICES INC ADV7511 DRIVER
866M:	Hans Verkuil <hans.verkuil@cisco.com>
867L:	linux-media@vger.kernel.org
868S:	Maintained
869F:	drivers/media/i2c/adv7511*
870
871ANALOG DEVICES INC ADV7604 DRIVER
872M:	Hans Verkuil <hans.verkuil@cisco.com>
873L:	linux-media@vger.kernel.org
874S:	Maintained
875F:	drivers/media/i2c/adv7604*
876
877ANALOG DEVICES INC ADV7842 DRIVER
878M:	Hans Verkuil <hans.verkuil@cisco.com>
879L:	linux-media@vger.kernel.org
880S:	Maintained
881F:	drivers/media/i2c/adv7842*
882
883ANALOG DEVICES INC ASOC CODEC DRIVERS
884M:	Lars-Peter Clausen <lars@metafoo.de>
885L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
886W:	http://wiki.analog.com/
887W:	http://ez.analog.com/community/linux-device-drivers
888S:	Supported
889F:	sound/soc/codecs/adau*
890F:	sound/soc/codecs/adav*
891F:	sound/soc/codecs/ad1*
892F:	sound/soc/codecs/ad7*
893F:	sound/soc/codecs/ssm*
894F:	sound/soc/codecs/sigmadsp.*
895
896ANALOG DEVICES INC DMA DRIVERS
897M:	Lars-Peter Clausen <lars@metafoo.de>
898W:	http://ez.analog.com/community/linux-device-drivers
899S:	Supported
900F:	drivers/dma/dma-axi-dmac.c
901
902ANALOG DEVICES INC IIO DRIVERS
903M:	Lars-Peter Clausen <lars@metafoo.de>
904M:	Michael Hennerich <Michael.Hennerich@analog.com>
905W:	http://wiki.analog.com/
906W:	http://ez.analog.com/community/linux-device-drivers
907S:	Supported
908F:	Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
909F:	Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
910F:	drivers/iio/*/ad*
911F:	drivers/iio/adc/ltc2497*
912X:	drivers/iio/*/adjd*
913F:	drivers/staging/iio/*/ad*
914
915ANDES ARCHITECTURE
916M:	Greentime Hu <green.hu@gmail.com>
917M:	Vincent Chen <deanbo422@gmail.com>
918T:	git https://github.com/andestech/linux.git
919S:	Supported
920F:	arch/nds32/
921F:	Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
922F:	Documentation/devicetree/bindings/nds32/
923K:	nds32
924N:	nds32
925
926ANDROID CONFIG FRAGMENTS
927M:	Rob Herring <robh@kernel.org>
928S:	Supported
929F:	kernel/configs/android*
930
931ANDROID DRIVERS
932M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
933M:	Arve Hjønnevåg <arve@android.com>
934M:	Todd Kjos <tkjos@android.com>
935M:	Martijn Coenen <maco@android.com>
936T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
937L:	devel@driverdev.osuosl.org
938S:	Supported
939F:	drivers/android/
940F:	drivers/staging/android/
941
942ANDROID GOLDFISH PIC DRIVER
943M:	Miodrag Dinic <miodrag.dinic@mips.com>
944S:	Supported
945F:	Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
946F:	drivers/irqchip/irq-goldfish-pic.c
947
948ANDROID GOLDFISH RTC DRIVER
949M:	Miodrag Dinic <miodrag.dinic@mips.com>
950S:	Supported
951F:	Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
952F:	drivers/rtc/rtc-goldfish.c
953
954ANDROID ION DRIVER
955M:	Laura Abbott <labbott@redhat.com>
956M:	Sumit Semwal <sumit.semwal@linaro.org>
957L:	devel@driverdev.osuosl.org
958L:	dri-devel@lists.freedesktop.org
959L:	linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
960S:	Supported
961F:	drivers/staging/android/ion
962F:	drivers/staging/android/uapi/ion.h
963
964AOA (Apple Onboard Audio) ALSA DRIVER
965M:	Johannes Berg <johannes@sipsolutions.net>
966L:	linuxppc-dev@lists.ozlabs.org
967L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
968S:	Maintained
969F:	sound/aoa/
970
971APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
972M:	William Breathitt Gray <vilhelm.gray@gmail.com>
973L:	linux-iio@vger.kernel.org
974S:	Maintained
975F:	drivers/iio/adc/stx104.c
976
977APM DRIVER
978M:	Jiri Kosina <jikos@kernel.org>
979S:	Odd fixes
980T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
981F:	arch/x86/kernel/apm_32.c
982F:	include/linux/apm_bios.h
983F:	include/uapi/linux/apm_bios.h
984F:	drivers/char/apm-emulation.c
985
986APPARMOR SECURITY MODULE
987M:	John Johansen <john.johansen@canonical.com>
988L:	apparmor@lists.ubuntu.com (subscribers-only, general discussion)
989W:	wiki.apparmor.net
990T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
991S:	Supported
992F:	security/apparmor/
993F:	Documentation/admin-guide/LSM/apparmor.rst
994
995APPLE BCM5974 MULTITOUCH DRIVER
996M:	Henrik Rydberg <rydberg@bitmath.org>
997L:	linux-input@vger.kernel.org
998S:	Odd fixes
999F:	drivers/input/mouse/bcm5974.c
1000
1001APPLE SMC DRIVER
1002M:	Henrik Rydberg <rydberg@bitmath.org>
1003L:	linux-hwmon@vger.kernel.org
1004S:	Odd fixes
1005F:	drivers/hwmon/applesmc.c
1006
1007APPLETALK NETWORK LAYER
1008L:	netdev@vger.kernel.org
1009S:	Odd fixes
1010F:	drivers/net/appletalk/
1011F:	net/appletalk/
1012
1013APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1014M:	Duc Dang <dhdang@apm.com>
1015S:	Supported
1016F:	arch/arm64/boot/dts/apm/
1017
1018APPLIED MICRO (APM) X-GENE SOC EDAC
1019M:	Loc Ho <lho@apm.com>
1020S:	Supported
1021F:	drivers/edac/xgene_edac.c
1022F:	Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1023
1024APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1025M:	Iyappan Subramanian <isubramanian@apm.com>
1026M:	Keyur Chudgar <kchudgar@apm.com>
1027S:	Supported
1028F:	drivers/net/ethernet/apm/xgene-v2/
1029
1030APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1031M:	Iyappan Subramanian <isubramanian@apm.com>
1032M:	Keyur Chudgar <kchudgar@apm.com>
1033M:	Quan Nguyen <qnguyen@apm.com>
1034S:	Supported
1035F:	drivers/net/ethernet/apm/xgene/
1036F:	drivers/net/phy/mdio-xgene.c
1037F:	Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1038F:	Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1039
1040APPLIED MICRO (APM) X-GENE SOC PMU
1041M:	Tai Nguyen <ttnguyen@apm.com>
1042S:	Supported
1043F:	drivers/perf/xgene_pmu.c
1044F:	Documentation/perf/xgene-pmu.txt
1045F:	Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1046
1047APTINA CAMERA SENSOR PLL
1048M:	Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1049L:	linux-media@vger.kernel.org
1050S:	Maintained
1051F:	drivers/media/i2c/aptina-pll.*
1052
1053ARC FRAMEBUFFER DRIVER
1054M:	Jaya Kumar <jayalk@intworks.biz>
1055S:	Maintained
1056F:	drivers/video/fbdev/arcfb.c
1057F:	drivers/video/fbdev/core/fb_defio.c
1058
1059ARC PGU DRM DRIVER
1060M:	Alexey Brodkin <abrodkin@synopsys.com>
1061S:	Supported
1062F:	drivers/gpu/drm/arc/
1063F:	Documentation/devicetree/bindings/display/snps,arcpgu.txt
1064
1065ARCNET NETWORK LAYER
1066M:	Michael Grzeschik <m.grzeschik@pengutronix.de>
1067L:	netdev@vger.kernel.org
1068S:	Maintained
1069F:	drivers/net/arcnet/
1070F:	include/uapi/linux/if_arcnet.h
1071
1072ARM ARCHITECTED TIMER DRIVER
1073M:	Mark Rutland <mark.rutland@arm.com>
1074M:	Marc Zyngier <marc.zyngier@arm.com>
1075L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1076S:	Maintained
1077F:	arch/arm/include/asm/arch_timer.h
1078F:	arch/arm64/include/asm/arch_timer.h
1079F:	drivers/clocksource/arm_arch_timer.c
1080
1081ARM HDLCD DRM DRIVER
1082M:	Liviu Dudau <liviu.dudau@arm.com>
1083S:	Supported
1084F:	drivers/gpu/drm/arm/hdlcd_*
1085F:	Documentation/devicetree/bindings/display/arm,hdlcd.txt
1086
1087ARM MALI-DP DRM DRIVER
1088M:	Liviu Dudau <liviu.dudau@arm.com>
1089M:	Brian Starkey <brian.starkey@arm.com>
1090M:	Mali DP Maintainers <malidp@foss.arm.com>
1091S:	Supported
1092F:	drivers/gpu/drm/arm/
1093F:	Documentation/devicetree/bindings/display/arm,malidp.txt
1094
1095ARM MFM AND FLOPPY DRIVERS
1096M:	Ian Molton <spyro@f2s.com>
1097S:	Maintained
1098F:	arch/arm/lib/floppydma.S
1099F:	arch/arm/include/asm/floppy.h
1100
1101ARM PMU PROFILING AND DEBUGGING
1102M:	Will Deacon <will.deacon@arm.com>
1103M:	Mark Rutland <mark.rutland@arm.com>
1104S:	Maintained
1105L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1106F:	arch/arm*/kernel/perf_*
1107F:	arch/arm/oprofile/common.c
1108F:	arch/arm*/kernel/hw_breakpoint.c
1109F:	arch/arm*/include/asm/hw_breakpoint.h
1110F:	arch/arm*/include/asm/perf_event.h
1111F:	drivers/perf/*
1112F:	include/linux/perf/arm_pmu.h
1113F:	Documentation/devicetree/bindings/arm/pmu.txt
1114F:	Documentation/devicetree/bindings/perf/
1115
1116ARM PORT
1117M:	Russell King <linux@armlinux.org.uk>
1118L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1119W:	http://www.armlinux.org.uk/
1120S:	Odd Fixes
1121T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git
1122F:	arch/arm/
1123X:	arch/arm/boot/dts/
1124
1125ARM PRIMECELL AACI PL041 DRIVER
1126M:	Russell King <linux@armlinux.org.uk>
1127S:	Odd Fixes
1128F:	sound/arm/aaci.*
1129
1130ARM PRIMECELL BUS SUPPORT
1131M:	Russell King <linux@armlinux.org.uk>
1132S:	Odd Fixes
1133F:	drivers/amba/
1134F:	include/linux/amba/bus.h
1135
1136ARM PRIMECELL CLCD PL110 DRIVER
1137M:	Russell King <linux@armlinux.org.uk>
1138S:	Odd Fixes
1139F:	drivers/video/fbdev/amba-clcd.*
1140
1141ARM PRIMECELL KMI PL050 DRIVER
1142M:	Russell King <linux@armlinux.org.uk>
1143S:	Odd Fixes
1144F:	drivers/input/serio/ambakmi.*
1145F:	include/linux/amba/kmi.h
1146
1147ARM PRIMECELL MMCI PL180/1 DRIVER
1148M:	Russell King <linux@armlinux.org.uk>
1149S:	Odd Fixes
1150F:	drivers/mmc/host/mmci.*
1151F:	include/linux/amba/mmci.h
1152
1153ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1154M:	Russell King <linux@armlinux.org.uk>
1155S:	Odd Fixes
1156F:	drivers/tty/serial/amba-pl01*.c
1157F:	include/linux/amba/serial.h
1158
1159ARM SMMU DRIVERS
1160M:	Will Deacon <will.deacon@arm.com>
1161R:	Robin Murphy <robin.murphy@arm.com>
1162L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1163S:	Maintained
1164F:	drivers/iommu/arm-smmu.c
1165F:	drivers/iommu/arm-smmu-v3.c
1166F:	drivers/iommu/io-pgtable-arm.c
1167F:	drivers/iommu/io-pgtable-arm-v7s.c
1168
1169ARM SUB-ARCHITECTURES
1170L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1171S:	Maintained
1172F:	arch/arm/mach-*/
1173F:	arch/arm/plat-*/
1174T:	git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1175
1176ARM/ACTIONS SEMI ARCHITECTURE
1177M:	Andreas Färber <afaerber@suse.de>
1178L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179S:	Maintained
1180N:	owl
1181F:	arch/arm/mach-actions/
1182F:	arch/arm/boot/dts/owl-*
1183F:	arch/arm64/boot/dts/actions/
1184F:	drivers/clocksource/owl-*
1185F:	drivers/pinctrl/actions/*
1186F:	drivers/soc/actions/
1187F:	include/dt-bindings/power/owl-*
1188F:	include/linux/soc/actions/
1189F:	Documentation/devicetree/bindings/arm/actions.txt
1190F:	Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1191F:	Documentation/devicetree/bindings/power/actions,owl-sps.txt
1192F:	Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1193
1194ARM/ADS SPHERE MACHINE SUPPORT
1195M:	Lennert Buytenhek <kernel@wantstofly.org>
1196L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1197S:	Maintained
1198
1199ARM/AFEB9260 MACHINE SUPPORT
1200M:	Sergey Lapin <slapin@ossfans.org>
1201L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202S:	Maintained
1203
1204ARM/AJECO 1ARM MACHINE SUPPORT
1205M:	Lennert Buytenhek <kernel@wantstofly.org>
1206L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1207S:	Maintained
1208
1209ARM/Allwinner SoC Clock Support
1210M:	Emilio López <emilio@elopez.com.ar>
1211S:	Maintained
1212F:	drivers/clk/sunxi/
1213
1214ARM/Allwinner sunXi SoC support
1215M:	Maxime Ripard <maxime.ripard@bootlin.com>
1216M:	Chen-Yu Tsai <wens@csie.org>
1217L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218S:	Maintained
1219N:	sun[x456789]i
1220N:	sun50i
1221F:	arch/arm/mach-sunxi/
1222F:	arch/arm64/boot/dts/allwinner/
1223F:	drivers/clk/sunxi-ng/
1224F:	drivers/pinctrl/sunxi/
1225F:	drivers/soc/sunxi/
1226T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1227
1228ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1229M:	Neil Armstrong <narmstrong@baylibre.com>
1230M:	Jerome Brunet <jbrunet@baylibre.com>
1231L:	linux-amlogic@lists.infradead.org
1232S:	Maintained
1233F:	drivers/clk/meson/
1234F:	include/dt-bindings/clock/meson*
1235F:	include/dt-bindings/clock/gxbb*
1236F:	Documentation/devicetree/bindings/clock/amlogic*
1237
1238ARM/Amlogic Meson SoC support
1239M:	Carlo Caione <carlo@caione.org>
1240M:	Kevin Hilman <khilman@baylibre.com>
1241L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1242L:	linux-amlogic@lists.infradead.org
1243W:	http://linux-meson.com/
1244S:	Maintained
1245F:	arch/arm/mach-meson/
1246F:	arch/arm/boot/dts/meson*
1247F:	arch/arm64/boot/dts/amlogic/
1248F:	drivers/pinctrl/meson/
1249F:	drivers/mmc/host/meson*
1250N:	meson
1251
1252ARM/Annapurna Labs ALPINE ARCHITECTURE
1253M:	Tsahee Zidenberg <tsahee@annapurnalabs.com>
1254M:	Antoine Tenart <antoine.tenart@free-electrons.com>
1255L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1256S:	Maintained
1257F:	arch/arm/mach-alpine/
1258F:	arch/arm/boot/dts/alpine*
1259F:	arch/arm64/boot/dts/al/
1260F:	drivers/*/*alpine*
1261
1262ARM/ARTPEC MACHINE SUPPORT
1263M:	Jesper Nilsson <jesper.nilsson@axis.com>
1264M:	Lars Persson <lars.persson@axis.com>
1265S:	Maintained
1266L:	linux-arm-kernel@axis.com
1267F:	arch/arm/mach-artpec
1268F:	arch/arm/boot/dts/artpec6*
1269F:	drivers/clk/axis
1270F:	drivers/crypto/axis
1271F:	drivers/pinctrl/pinctrl-artpec*
1272F:	Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1273
1274ARM/ASPEED I2C DRIVER
1275M:	Brendan Higgins <brendanhiggins@google.com>
1276R:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
1277R:	Joel Stanley <joel@jms.id.au>
1278L:	linux-i2c@vger.kernel.org
1279L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
1280S:	Maintained
1281F:	drivers/irqchip/irq-aspeed-i2c-ic.c
1282F:	drivers/i2c/busses/i2c-aspeed.c
1283F:	Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1284F:	Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1285
1286ARM/ASPEED MACHINE SUPPORT
1287M:	Joel Stanley <joel@jms.id.au>
1288R:	Andrew Jeffery <andrew@aj.id.au>
1289L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1290L:	linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1291Q:	https://patchwork.ozlabs.org/project/linux-aspeed/list/
1292S:	Supported
1293T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1294F:	arch/arm/mach-aspeed/
1295F:	arch/arm/boot/dts/aspeed-*
1296N:	aspeed
1297
1298ARM/CALXEDA HIGHBANK ARCHITECTURE
1299M:	Rob Herring <robh@kernel.org>
1300L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1301S:	Maintained
1302F:	arch/arm/mach-highbank/
1303F:	arch/arm/boot/dts/highbank.dts
1304F:	arch/arm/boot/dts/ecx-*.dts*
1305
1306ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1307M:	Krzysztof Halasa <khalasa@piap.pl>
1308S:	Maintained
1309F:	arch/arm/mach-cns3xxx/
1310
1311ARM/CAVIUM THUNDER NETWORK DRIVER
1312M:	Sunil Goutham <sgoutham@cavium.com>
1313M:	Robert Richter <rric@kernel.org>
1314L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1315S:	Supported
1316F:	drivers/net/ethernet/cavium/thunder/
1317
1318ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1319M:	Lukasz Majewski <lukma@denx.de>
1320L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1321S:	Maintained
1322F:	arch/arm/mach-ep93xx/ts72xx.c
1323
1324ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1325M:	Alexander Shiyan <shc_work@mail.ru>
1326L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1327S:	Odd Fixes
1328N:	clps711x
1329
1330ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1331M:	Lennert Buytenhek <kernel@wantstofly.org>
1332L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1333S:	Maintained
1334
1335ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1336M:	Hartley Sweeten <hsweeten@visionengravers.com>
1337M:	Alexander Sverdlin <alexander.sverdlin@gmail.com>
1338L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1339S:	Maintained
1340F:	arch/arm/mach-ep93xx/
1341F:	arch/arm/mach-ep93xx/include/mach/
1342
1343ARM/CLKDEV SUPPORT
1344M:	Russell King <linux@armlinux.org.uk>
1345L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1346S:	Maintained
1347T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1348F:	drivers/clk/clkdev.c
1349
1350ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1351M:	Mike Rapoport <mike@compulab.co.il>
1352L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1353S:	Maintained
1354
1355ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1356M:	Baruch Siach <baruch@tkos.co.il>
1357L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1358S:	Maintained
1359F:	arch/arm/boot/dts/cx92755*
1360N:	digicolor
1361
1362ARM/CONTEC MICRO9 MACHINE SUPPORT
1363M:	Hubert Feurstein <hubert.feurstein@contec.at>
1364S:	Maintained
1365F:	arch/arm/mach-ep93xx/micro9.c
1366
1367ARM/CORESIGHT FRAMEWORK AND DRIVERS
1368M:	Mathieu Poirier <mathieu.poirier@linaro.org>
1369L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1370S:	Maintained
1371F:	drivers/hwtracing/coresight/*
1372F:	Documentation/trace/coresight.txt
1373F:	Documentation/trace/coresight-cpu-debug.txt
1374F:	Documentation/devicetree/bindings/arm/coresight.txt
1375F:	Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1376F:	Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1377F:	tools/perf/arch/arm/util/pmu.c
1378F:	tools/perf/arch/arm/util/auxtrace.c
1379F:	tools/perf/arch/arm/util/cs-etm.c
1380F:	tools/perf/arch/arm/util/cs-etm.h
1381F:	tools/perf/util/cs-etm.*
1382F:	tools/perf/util/cs-etm-decoder/*
1383
1384ARM/CORGI MACHINE SUPPORT
1385M:	Richard Purdie <rpurdie@rpsys.net>
1386S:	Maintained
1387
1388ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1389M:	Hans Ulli Kroll <ulli.kroll@googlemail.com>
1390M:	Linus Walleij <linus.walleij@linaro.org>
1391L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1392T:	git git://github.com/ulli-kroll/linux.git
1393S:	Maintained
1394F:	Documentation/devicetree/bindings/arm/gemini.txt
1395F:	Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1396F:	Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1397F:	Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1398F:	arch/arm/mach-gemini/
1399F:	drivers/net/ethernet/cortina/
1400F:	drivers/pinctrl/pinctrl-gemini.c
1401F:	drivers/rtc/rtc-ftrtc010.c
1402
1403ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1404M:	Barry Song <baohua@kernel.org>
1405L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1406T:	git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1407S:	Maintained
1408F:	arch/arm/boot/dts/prima2*
1409F:	arch/arm/mach-prima2/
1410F:	drivers/clk/sirf/
1411F:	drivers/clocksource/timer-prima2.c
1412F:	drivers/clocksource/timer-atlas7.c
1413N:	[^a-z]sirf
1414
1415ARM/EBSA110 MACHINE SUPPORT
1416M:	Russell King <linux@armlinux.org.uk>
1417L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1418W:	http://www.armlinux.org.uk/
1419S:	Maintained
1420F:	arch/arm/mach-ebsa110/
1421F:	drivers/net/ethernet/amd/am79c961a.*
1422
1423ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1424M:	Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1425R:	Pengutronix Kernel Team <kernel@pengutronix.de>
1426L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1427S:	Maintained
1428N:	efm32
1429
1430ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1431M:	Robert Jarzmik <robert.jarzmik@free.fr>
1432L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1433S:	Maintained
1434F:	arch/arm/mach-pxa/ezx.c
1435
1436ARM/FARADAY FA526 PORT
1437M:	Hans Ulli Kroll <ulli.kroll@googlemail.com>
1438L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1439S:	Maintained
1440T:	git git://git.berlios.de/gemini-board
1441F:	arch/arm/mm/*-fa*
1442
1443ARM/FOOTBRIDGE ARCHITECTURE
1444M:	Russell King <linux@armlinux.org.uk>
1445L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1446W:	http://www.armlinux.org.uk/
1447S:	Maintained
1448F:	arch/arm/include/asm/hardware/dec21285.h
1449F:	arch/arm/mach-footbridge/
1450
1451ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1452M:	Shawn Guo <shawnguo@kernel.org>
1453M:	Sascha Hauer <s.hauer@pengutronix.de>
1454R:	Pengutronix Kernel Team <kernel@pengutronix.de>
1455R:	Fabio Estevam <fabio.estevam@nxp.com>
1456R:	NXP Linux Team <linux-imx@nxp.com>
1457L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1458S:	Maintained
1459T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1460F:	arch/arm/mach-imx/
1461F:	arch/arm/mach-mxs/
1462F:	arch/arm/boot/dts/imx*
1463F:	arch/arm/configs/imx*_defconfig
1464F:	drivers/clk/imx/
1465F:	drivers/soc/imx/
1466F:	include/soc/imx/
1467
1468ARM/FREESCALE VYBRID ARM ARCHITECTURE
1469M:	Shawn Guo <shawnguo@kernel.org>
1470M:	Sascha Hauer <s.hauer@pengutronix.de>
1471R:	Pengutronix Kernel Team <kernel@pengutronix.de>
1472R:	Stefan Agner <stefan@agner.ch>
1473L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1474S:	Maintained
1475T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1476F:	arch/arm/mach-imx/*vf610*
1477F:	arch/arm/boot/dts/vf*
1478
1479ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1480M:	Shawn Guo <shawnguo@kernel.org>
1481M:	Li Yang <leoyang.li@nxp.com>
1482L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1483S:	Maintained
1484T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1485F:	arch/arm/boot/dts/ls1021a*
1486F:	arch/arm64/boot/dts/freescale/fsl-*
1487F:	arch/arm64/boot/dts/freescale/qoriq-*
1488
1489ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1490M:	Lennert Buytenhek <kernel@wantstofly.org>
1491L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1492S:	Maintained
1493
1494ARM/GUMSTIX MACHINE SUPPORT
1495M:	Steve Sakoman <sakoman@gmail.com>
1496L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497S:	Maintained
1498
1499ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1500M:	Philipp Zabel <philipp.zabel@gmail.com>
1501M:	Paul Parsons <lost.distance@yahoo.com>
1502L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1503S:	Maintained
1504F:	arch/arm/mach-pxa/hx4700.c
1505F:	arch/arm/mach-pxa/include/mach/hx4700.h
1506F:	sound/soc/pxa/hx4700.c
1507
1508ARM/HISILICON SOC SUPPORT
1509M:	Wei Xu <xuwei5@hisilicon.com>
1510L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1511W:	http://www.hisilicon.com
1512S:	Supported
1513T:	git git://github.com/hisilicon/linux-hisi.git
1514F:	arch/arm/mach-hisi/
1515F:	arch/arm/boot/dts/hi3*
1516F:	arch/arm/boot/dts/hip*
1517F:	arch/arm/boot/dts/hisi*
1518F:	arch/arm64/boot/dts/hisilicon/
1519
1520ARM/HP JORNADA 7XX MACHINE SUPPORT
1521M:	Kristoffer Ericson <kristoffer.ericson@gmail.com>
1522W:	www.jlime.com
1523S:	Maintained
1524T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1525F:	arch/arm/mach-sa1100/jornada720.c
1526F:	arch/arm/mach-sa1100/include/mach/jornada720.h
1527
1528ARM/IGEP MACHINE SUPPORT
1529M:	Enric Balletbo i Serra <eballetbo@gmail.com>
1530M:	Javier Martinez Canillas <javier@dowhile0.org>
1531L:	linux-omap@vger.kernel.org
1532L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1533S:	Maintained
1534F:	arch/arm/boot/dts/omap3-igep*
1535
1536ARM/INCOME PXA270 SUPPORT
1537M:	Marek Vasut <marek.vasut@gmail.com>
1538L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1539S:	Maintained
1540F:	arch/arm/mach-pxa/colibri-pxa270-income.c
1541
1542ARM/INTEL IOP13XX ARM ARCHITECTURE
1543M:	Lennert Buytenhek <kernel@wantstofly.org>
1544L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1545S:	Maintained
1546
1547ARM/INTEL IOP32X ARM ARCHITECTURE
1548M:	Lennert Buytenhek <kernel@wantstofly.org>
1549L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1550S:	Maintained
1551
1552ARM/INTEL IOP33X ARM ARCHITECTURE
1553L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1554S:	Orphan
1555
1556ARM/INTEL IQ81342EX MACHINE SUPPORT
1557M:	Lennert Buytenhek <kernel@wantstofly.org>
1558L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1559S:	Maintained
1560
1561ARM/INTEL IXDP2850 MACHINE SUPPORT
1562M:	Lennert Buytenhek <kernel@wantstofly.org>
1563L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1564S:	Maintained
1565
1566ARM/INTEL IXP4XX ARM ARCHITECTURE
1567M:	Imre Kaloz <kaloz@openwrt.org>
1568M:	Krzysztof Halasa <khalasa@piap.pl>
1569L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1570S:	Maintained
1571F:	arch/arm/mach-ixp4xx/
1572
1573ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1574M:	Jonathan Cameron <jic23@cam.ac.uk>
1575L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1576S:	Maintained
1577F:	arch/arm/mach-pxa/stargate2.c
1578F:	drivers/pcmcia/pxa2xx_stargate2.c
1579
1580ARM/INTEL XSC3 (MANZANO) ARM CORE
1581M:	Lennert Buytenhek <kernel@wantstofly.org>
1582L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1583S:	Maintained
1584
1585ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1586M:	Lennert Buytenhek <kernel@wantstofly.org>
1587L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1588S:	Maintained
1589
1590ARM/LG1K ARCHITECTURE
1591M:	Chanho Min <chanho.min@lge.com>
1592L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1593S:	Maintained
1594F:	arch/arm64/boot/dts/lg/
1595
1596ARM/LOGICPD PXA270 MACHINE SUPPORT
1597M:	Lennert Buytenhek <kernel@wantstofly.org>
1598L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1599S:	Maintained
1600
1601ARM/LPC18XX ARCHITECTURE
1602M:	Joachim Eastwood <manabian@gmail.com>
1603L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1604S:	Maintained
1605F:	arch/arm/boot/dts/lpc43*
1606F:	drivers/clk/nxp/clk-lpc18xx*
1607F:	drivers/clocksource/time-lpc32xx.c
1608F:	drivers/i2c/busses/i2c-lpc2k.c
1609F:	drivers/memory/pl172.c
1610F:	drivers/mtd/spi-nor/nxp-spifi.c
1611F:	drivers/rtc/rtc-lpc24xx.c
1612N:	lpc18xx
1613
1614ARM/LPC32XX SOC SUPPORT
1615M:	Vladimir Zapolskiy <vz@mleia.com>
1616M:	Sylvain Lemieux <slemieux.tyco@gmail.com>
1617L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1618T:	git git://github.com/vzapolskiy/linux-lpc32xx.git
1619S:	Maintained
1620F:	arch/arm/boot/dts/lpc32*
1621F:	arch/arm/mach-lpc32xx/
1622F:	drivers/i2c/busses/i2c-pnx.c
1623F:	drivers/net/ethernet/nxp/lpc_eth.c
1624F:	drivers/usb/host/ohci-nxp.c
1625F:	drivers/watchdog/pnx4008_wdt.c
1626N:	lpc32xx
1627
1628ARM/MAGICIAN MACHINE SUPPORT
1629M:	Philipp Zabel <philipp.zabel@gmail.com>
1630S:	Maintained
1631
1632ARM/Marvell Dove/MV78xx0/Orion SOC support
1633M:	Jason Cooper <jason@lakedaemon.net>
1634M:	Andrew Lunn <andrew@lunn.ch>
1635M:	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1636M:	Gregory Clement <gregory.clement@bootlin.com>
1637L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1638S:	Maintained
1639F:	Documentation/devicetree/bindings/soc/dove/
1640F:	arch/arm/mach-dove/
1641F:	arch/arm/mach-mv78xx0/
1642F:	arch/arm/mach-orion5x/
1643F:	arch/arm/plat-orion/
1644F:	arch/arm/boot/dts/dove*
1645F:	arch/arm/boot/dts/orion5x*
1646
1647ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1648M:	Jason Cooper <jason@lakedaemon.net>
1649M:	Andrew Lunn <andrew@lunn.ch>
1650M:	Gregory Clement <gregory.clement@bootlin.com>
1651M:	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1652L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1653S:	Maintained
1654F:	arch/arm/boot/dts/armada*
1655F:	arch/arm/boot/dts/kirkwood*
1656F:	arch/arm/configs/mvebu_*_defconfig
1657F:	arch/arm/mach-mvebu/
1658F:	arch/arm64/boot/dts/marvell/armada*
1659F:	drivers/cpufreq/armada-37xx-cpufreq.c
1660F:	drivers/cpufreq/mvebu-cpufreq.c
1661F:	drivers/irqchip/irq-armada-370-xp.c
1662F:	drivers/irqchip/irq-mvebu-*
1663F:	drivers/pinctrl/mvebu/
1664F:	drivers/rtc/rtc-armada38x.c
1665
1666ARM/Mediatek RTC DRIVER
1667M:	Eddie Huang <eddie.huang@mediatek.com>
1668M:	Sean Wang <sean.wang@mediatek.com>
1669L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1670L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1671S:	Maintained
1672F:	Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1673F:	drivers/rtc/rtc-mt6397.c
1674F:	drivers/rtc/rtc-mt7622.c
1675
1676ARM/Mediatek SoC support
1677M:	Matthias Brugger <matthias.bgg@gmail.com>
1678L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1679L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1680S:	Maintained
1681F:	arch/arm/boot/dts/mt6*
1682F:	arch/arm/boot/dts/mt7*
1683F:	arch/arm/boot/dts/mt8*
1684F:	arch/arm/mach-mediatek/
1685F:	arch/arm64/boot/dts/mediatek/
1686N:	mtk
1687K:	mediatek
1688
1689ARM/Mediatek USB3 PHY DRIVER
1690M:	Chunfeng Yun <chunfeng.yun@mediatek.com>
1691L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1692L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1693S:	Maintained
1694F:	drivers/phy/mediatek/
1695F:	Documentation/devicetree/bindings/phy/phy-mtk-*
1696
1697ARM/MICREL KS8695 ARCHITECTURE
1698M:	Greg Ungerer <gerg@uclinux.org>
1699L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1700F:	arch/arm/mach-ks8695/
1701S:	Odd Fixes
1702
1703ARM/Microchip (AT91) SoC support
1704M:	Nicolas Ferre <nicolas.ferre@microchip.com>
1705M:	Alexandre Belloni <alexandre.belloni@bootlin.com>
1706L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707W:	http://www.linux4sam.org
1708T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1709S:	Supported
1710N:	at91
1711N:	atmel
1712F:	arch/arm/mach-at91/
1713F:	include/soc/at91/
1714F:	arch/arm/boot/dts/at91*.dts
1715F:	arch/arm/boot/dts/at91*.dtsi
1716F:	arch/arm/boot/dts/sama*.dts
1717F:	arch/arm/boot/dts/sama*.dtsi
1718F:	arch/arm/include/debug/at91.S
1719F:	drivers/memory/atmel*
1720F:	drivers/watchdog/sama5d4_wdt.c
1721X:	drivers/input/touchscreen/atmel_mxt_ts.c
1722X:	drivers/net/wireless/atmel/
1723
1724ARM/MIOA701 MACHINE SUPPORT
1725M:	Robert Jarzmik <robert.jarzmik@free.fr>
1726L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1727F:	arch/arm/mach-pxa/mioa701.c
1728S:	Maintained
1729
1730ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1731M:	Michael Petchkovsky <mkpetch@internode.on.net>
1732S:	Maintained
1733
1734ARM/NOMADIK/U300/Ux500 ARCHITECTURES
1735M:	Linus Walleij <linus.walleij@linaro.org>
1736L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1737S:	Maintained
1738F:	arch/arm/mach-nomadik/
1739F:	arch/arm/mach-u300/
1740F:	arch/arm/mach-ux500/
1741F:	arch/arm/boot/dts/ste-*
1742F:	drivers/clk/clk-nomadik.c
1743F:	drivers/clk/clk-u300.c
1744F:	drivers/clocksource/clksrc-dbx500-prcmu.c
1745F:	drivers/clocksource/timer-u300.c
1746F:	drivers/dma/coh901318*
1747F:	drivers/dma/ste_dma40*
1748F:	drivers/hwspinlock/u8500_hsem.c
1749F:	drivers/i2c/busses/i2c-nomadik.c
1750F:	drivers/i2c/busses/i2c-stu300.c
1751F:	drivers/mfd/ab3100*
1752F:	drivers/mfd/ab8500*
1753F:	drivers/mfd/abx500*
1754F:	drivers/mfd/dbx500*
1755F:	drivers/mfd/db8500*
1756F:	drivers/pinctrl/nomadik/
1757F:	drivers/pinctrl/pinctrl-coh901*
1758F:	drivers/pinctrl/pinctrl-u300.c
1759F:	drivers/rtc/rtc-ab3100.c
1760F:	drivers/rtc/rtc-ab8500.c
1761F:	drivers/rtc/rtc-coh901331.c
1762F:	drivers/rtc/rtc-pl031.c
1763F:	drivers/watchdog/coh901327_wdt.c
1764F:	Documentation/devicetree/bindings/arm/ste-*
1765F:	Documentation/devicetree/bindings/arm/ux500/
1766T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1767
1768ARM/NUVOTON NPCM ARCHITECTURE
1769M:	Avi Fishman <avifishman70@gmail.com>
1770M:	Tomer Maimon <tmaimon77@gmail.com>
1771R:	Patrick Venture <venture@google.com>
1772R:	Nancy Yuen <yuenn@google.com>
1773R:	Brendan Higgins <brendanhiggins@google.com>
1774L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
1775S:	Supported
1776F:	arch/arm/mach-npcm/
1777F:	arch/arm/boot/dts/nuvoton-npcm*
1778F:	include/dt-bindings/clock/nuvoton,npcm7xx-clks.h
1779F:	drivers/*/*npcm*
1780F:	Documentation/devicetree/bindings/*/*npcm*
1781F:	Documentation/devicetree/bindings/*/*/*npcm*
1782
1783ARM/NUVOTON W90X900 ARM ARCHITECTURE
1784M:	Wan ZongShun <mcuos.com@gmail.com>
1785L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1786W:	http://www.mcuos.com
1787S:	Maintained
1788F:	arch/arm/mach-w90x900/
1789F:	drivers/input/keyboard/w90p910_keypad.c
1790F:	drivers/input/touchscreen/w90p910_ts.c
1791F:	drivers/watchdog/nuc900_wdt.c
1792F:	drivers/net/ethernet/nuvoton/w90p910_ether.c
1793F:	drivers/mtd/nand/raw/nuc900_nand.c
1794F:	drivers/rtc/rtc-nuc900.c
1795F:	drivers/spi/spi-nuc900.c
1796F:	drivers/usb/host/ehci-w90x900.c
1797F:	drivers/video/fbdev/nuc900fb.c
1798
1799ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1800M:	Nelson Castillo <arhuaco@freaks-unidos.net>
1801L:	openmoko-kernel@lists.openmoko.org (subscribers-only)
1802W:	http://wiki.openmoko.org/wiki/Neo_FreeRunner
1803S:	Supported
1804
1805ARM/Orion SoC/Technologic Systems TS-78xx platform support
1806M:	Alexander Clouter <alex@digriz.org.uk>
1807L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1808W:	http://www.digriz.org.uk/ts78xx/kernel
1809S:	Maintained
1810F:	arch/arm/mach-orion5x/ts78xx-*
1811
1812ARM/OXNAS platform support
1813M:	Neil Armstrong <narmstrong@baylibre.com>
1814L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815L:	linux-oxnas@groups.io (moderated for non-subscribers)
1816S:	Maintained
1817F:	arch/arm/mach-oxnas/
1818F:	arch/arm/boot/dts/ox8*.dts*
1819N:	oxnas
1820
1821ARM/PALM TREO SUPPORT
1822M:	Tomas Cech <sleep_walker@suse.com>
1823L:	linux-arm-kernel@lists.infradead.org
1824W:	http://hackndev.com
1825S:	Maintained
1826F:	arch/arm/mach-pxa/palmtreo.*
1827
1828ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1829M:	Marek Vasut <marek.vasut@gmail.com>
1830L:	linux-arm-kernel@lists.infradead.org
1831W:	http://hackndev.com
1832S:	Maintained
1833F:	arch/arm/mach-pxa/include/mach/palmtx.h
1834F:	arch/arm/mach-pxa/palmtx.c
1835F:	arch/arm/mach-pxa/palmt5.*
1836F:	arch/arm/mach-pxa/include/mach/palmld.h
1837F:	arch/arm/mach-pxa/palmld.c
1838F:	arch/arm/mach-pxa/palmte2.*
1839F:	arch/arm/mach-pxa/include/mach/palmtc.h
1840F:	arch/arm/mach-pxa/palmtc.c
1841
1842ARM/PALMZ72 SUPPORT
1843M:	Sergey Lapin <slapin@ossfans.org>
1844L:	linux-arm-kernel@lists.infradead.org
1845W:	http://hackndev.com
1846S:	Maintained
1847F:	arch/arm/mach-pxa/palmz72.*
1848
1849ARM/PLEB SUPPORT
1850M:	Peter Chubb <pleb@gelato.unsw.edu.au>
1851W:	http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1852S:	Maintained
1853
1854ARM/PT DIGITAL BOARD PORT
1855M:	Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1856L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1857W:	http://www.armlinux.org.uk/
1858S:	Maintained
1859
1860ARM/QUALCOMM SUPPORT
1861M:	Andy Gross <andy.gross@linaro.org>
1862M:	David Brown <david.brown@linaro.org>
1863L:	linux-arm-msm@vger.kernel.org
1864L:	linux-soc@vger.kernel.org
1865S:	Maintained
1866F:	Documentation/devicetree/bindings/soc/qcom/
1867F:	arch/arm/boot/dts/qcom-*.dts
1868F:	arch/arm/boot/dts/qcom-*.dtsi
1869F:	arch/arm/mach-qcom/
1870F:	arch/arm64/boot/dts/qcom/*
1871F:	drivers/i2c/busses/i2c-qup.c
1872F:	drivers/clk/qcom/
1873F:	drivers/dma/qcom/
1874F:	drivers/soc/qcom/
1875F:	drivers/spi/spi-qup.c
1876F:	drivers/tty/serial/msm_serial.c
1877F:	drivers/*/pm8???-*
1878F:	drivers/mfd/ssbi.c
1879F:	drivers/firmware/qcom_scm*
1880T:	git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1881
1882ARM/RADISYS ENP2611 MACHINE SUPPORT
1883M:	Lennert Buytenhek <kernel@wantstofly.org>
1884L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1885S:	Maintained
1886
1887ARM/REALTEK ARCHITECTURE
1888M:	Andreas Färber <afaerber@suse.de>
1889L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1890S:	Maintained
1891F:	arch/arm64/boot/dts/realtek/
1892F:	Documentation/devicetree/bindings/arm/realtek.txt
1893
1894ARM/RENESAS ARM64 ARCHITECTURE
1895M:	Simon Horman <horms@verge.net.au>
1896M:	Magnus Damm <magnus.damm@gmail.com>
1897L:	linux-renesas-soc@vger.kernel.org
1898Q:	http://patchwork.kernel.org/project/linux-renesas-soc/list/
1899T:	git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1900S:	Supported
1901F:	arch/arm64/boot/dts/renesas/
1902F:	Documentation/devicetree/bindings/arm/shmobile.txt
1903F:	drivers/soc/renesas/
1904F:	include/linux/soc/renesas/
1905
1906ARM/RISCPC ARCHITECTURE
1907M:	Russell King <linux@armlinux.org.uk>
1908L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1909W:	http://www.armlinux.org.uk/
1910S:	Maintained
1911F:	arch/arm/include/asm/hardware/entry-macro-iomd.S
1912F:	arch/arm/include/asm/hardware/ioc.h
1913F:	arch/arm/include/asm/hardware/iomd.h
1914F:	arch/arm/include/asm/hardware/memc.h
1915F:	arch/arm/mach-rpc/
1916F:	drivers/net/ethernet/8390/etherh.c
1917F:	drivers/net/ethernet/i825xx/ether1*
1918F:	drivers/net/ethernet/seeq/ether3*
1919F:	drivers/scsi/arm/
1920
1921ARM/Rockchip SoC support
1922M:	Heiko Stuebner <heiko@sntech.de>
1923L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1924L:	linux-rockchip@lists.infradead.org
1925T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1926S:	Maintained
1927F:	arch/arm/boot/dts/rk3*
1928F:	arch/arm/boot/dts/rv1108*
1929F:	arch/arm/mach-rockchip/
1930F:	drivers/clk/rockchip/
1931F:	drivers/i2c/busses/i2c-rk3x.c
1932F:	drivers/*/*rockchip*
1933F:	drivers/*/*/*rockchip*
1934F:	sound/soc/rockchip/
1935N:	rockchip
1936
1937ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1938M:	Kukjin Kim <kgene@kernel.org>
1939M:	Krzysztof Kozlowski <krzk@kernel.org>
1940L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1941L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1942Q:	https://patchwork.kernel.org/project/linux-samsung-soc/list/
1943S:	Maintained
1944F:	arch/arm/boot/dts/s3c*
1945F:	arch/arm/boot/dts/s5p*
1946F:	arch/arm/boot/dts/exynos*
1947F:	arch/arm64/boot/dts/exynos/
1948F:	arch/arm/plat-samsung/
1949F:	arch/arm/mach-s3c24*/
1950F:	arch/arm/mach-s3c64xx/
1951F:	arch/arm/mach-s5p*/
1952F:	arch/arm/mach-exynos*/
1953F:	drivers/*/*s3c24*
1954F:	drivers/*/*/*s3c24*
1955F:	drivers/*/*s3c64xx*
1956F:	drivers/*/*s5pv210*
1957F:	drivers/memory/samsung/*
1958F:	drivers/soc/samsung/*
1959F:	Documentation/arm/Samsung/
1960F:	Documentation/devicetree/bindings/arm/samsung/
1961F:	Documentation/devicetree/bindings/sram/samsung-sram.txt
1962F:	Documentation/devicetree/bindings/power/pd-samsung.txt
1963N:	exynos
1964
1965ARM/SAMSUNG MOBILE MACHINE SUPPORT
1966M:	Kyungmin Park <kyungmin.park@samsung.com>
1967L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1968S:	Maintained
1969F:	arch/arm/mach-s5pv210/
1970
1971ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1972M:	Kyungmin Park <kyungmin.park@samsung.com>
1973M:	Kamil Debski <kamil@wypas.org>
1974M:	Andrzej Hajda <a.hajda@samsung.com>
1975L:	linux-arm-kernel@lists.infradead.org
1976L:	linux-media@vger.kernel.org
1977S:	Maintained
1978F:	drivers/media/platform/s5p-g2d/
1979
1980ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1981M:	Marek Szyprowski <m.szyprowski@samsung.com>
1982L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1983L:	linux-media@vger.kernel.org
1984S:	Maintained
1985F:	drivers/media/platform/s5p-cec/
1986F:	Documentation/devicetree/bindings/media/s5p-cec.txt
1987
1988ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1989M:	Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1990M:	Jacek Anaszewski <jacek.anaszewski@gmail.com>
1991L:	linux-arm-kernel@lists.infradead.org
1992L:	linux-media@vger.kernel.org
1993S:	Maintained
1994F:	drivers/media/platform/s5p-jpeg/
1995
1996ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1997M:	Kyungmin Park <kyungmin.park@samsung.com>
1998M:	Kamil Debski <kamil@wypas.org>
1999M:	Jeongtae Park <jtp.park@samsung.com>
2000M:	Andrzej Hajda <a.hajda@samsung.com>
2001L:	linux-arm-kernel@lists.infradead.org
2002L:	linux-media@vger.kernel.org
2003S:	Maintained
2004F:	arch/arm/plat-samsung/s5p-dev-mfc.c
2005F:	drivers/media/platform/s5p-mfc/
2006
2007ARM/SHMOBILE ARM ARCHITECTURE
2008M:	Simon Horman <horms@verge.net.au>
2009M:	Magnus Damm <magnus.damm@gmail.com>
2010L:	linux-renesas-soc@vger.kernel.org
2011Q:	http://patchwork.kernel.org/project/linux-renesas-soc/list/
2012T:	git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
2013S:	Supported
2014F:	arch/arm/boot/dts/emev2*
2015F:	arch/arm/boot/dts/r7s*
2016F:	arch/arm/boot/dts/r8a*
2017F:	arch/arm/boot/dts/r9a*
2018F:	arch/arm/boot/dts/sh*
2019F:	arch/arm/configs/shmobile_defconfig
2020F:	arch/arm/include/debug/renesas-scif.S
2021F:	arch/arm/mach-shmobile/
2022F:	Documentation/devicetree/bindings/arm/shmobile.txt
2023F:	drivers/soc/renesas/
2024F:	include/linux/soc/renesas/
2025
2026ARM/SOCFPGA ARCHITECTURE
2027M:	Dinh Nguyen <dinguyen@kernel.org>
2028S:	Maintained
2029F:	arch/arm/mach-socfpga/
2030F:	arch/arm/boot/dts/socfpga*
2031F:	arch/arm/configs/socfpga_defconfig
2032F:	arch/arm64/boot/dts/altera/
2033W:	http://www.rocketboards.org
2034T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2035
2036ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2037M:	Dinh Nguyen <dinguyen@kernel.org>
2038S:	Maintained
2039F:	drivers/clk/socfpga/
2040
2041ARM/SOCFPGA EDAC SUPPORT
2042M:	Thor Thayer <thor.thayer@linux.intel.com>
2043S:	Maintained
2044F:	drivers/edac/altera_edac.
2045
2046ARM/SPREADTRUM SoC SUPPORT
2047M:	Orson Zhai <orsonzhai@gmail.com>
2048M:	Baolin Wang <baolin.wang@linaro.org>
2049M:	Chunyan Zhang <zhang.lyra@gmail.com>
2050S:	Maintained
2051F:	arch/arm64/boot/dts/sprd
2052N:	sprd
2053
2054ARM/STI ARCHITECTURE
2055M:	Patrice Chotard <patrice.chotard@st.com>
2056L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2057W:	http://www.stlinux.com
2058S:	Maintained
2059F:	arch/arm/mach-sti/
2060F:	arch/arm/boot/dts/sti*
2061F:	drivers/char/hw_random/st-rng.c
2062F:	drivers/clocksource/arm_global_timer.c
2063F:	drivers/clocksource/clksrc_st_lpc.c
2064F:	drivers/cpufreq/sti-cpufreq.c
2065F:	drivers/dma/st_fdma*
2066F:	drivers/i2c/busses/i2c-st.c
2067F:	drivers/media/rc/st_rc.c
2068F:	drivers/media/platform/sti/c8sectpfe/
2069F:	drivers/mmc/host/sdhci-st.c
2070F:	drivers/phy/st/phy-miphy28lp.c
2071F:	drivers/phy/st/phy-stih407-usb.c
2072F:	drivers/pinctrl/pinctrl-st.c
2073F:	drivers/remoteproc/st_remoteproc.c
2074F:	drivers/remoteproc/st_slim_rproc.c
2075F:	drivers/reset/sti/
2076F:	drivers/rtc/rtc-st-lpc.c
2077F:	drivers/tty/serial/st-asc.c
2078F:	drivers/usb/dwc3/dwc3-st.c
2079F:	drivers/usb/host/ehci-st.c
2080F:	drivers/usb/host/ohci-st.c
2081F:	drivers/watchdog/st_lpc_wdt.c
2082F:	drivers/ata/ahci_st.c
2083F:	include/linux/remoteproc/st_slim_rproc.h
2084
2085ARM/STM32 ARCHITECTURE
2086M:	Maxime Coquelin <mcoquelin.stm32@gmail.com>
2087M:	Alexandre Torgue <alexandre.torgue@st.com>
2088L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2089S:	Maintained
2090T:	git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2091N:	stm32
2092F:	arch/arm/boot/dts/stm32*
2093F:	arch/arm/mach-stm32/
2094F:	drivers/clocksource/armv7m_systick.c
2095
2096ARM/Synaptics Berlin SoC support
2097M:	Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2098M:	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2099L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2100S:	Maintained
2101F:	arch/arm/mach-berlin/
2102F:	arch/arm/boot/dts/berlin*
2103F:	arch/arm64/boot/dts/marvell/berlin*
2104
2105ARM/TANGO ARCHITECTURE
2106M:	Marc Gonzalez <marc.w.gonzalez@free.fr>
2107M:	Mans Rullgard <mans@mansr.com>
2108L:	linux-arm-kernel@lists.infradead.org
2109S:	Odd Fixes
2110N:	tango
2111
2112ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2113M:	Lennert Buytenhek <kernel@wantstofly.org>
2114L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2115S:	Maintained
2116
2117ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2118M:	Hans Verkuil <hans.verkuil@cisco.com>
2119L:	linux-tegra@vger.kernel.org
2120L:	linux-media@vger.kernel.org
2121S:	Maintained
2122F:	drivers/media/platform/tegra-cec/
2123F:	Documentation/devicetree/bindings/media/tegra-cec.txt
2124
2125ARM/TETON BGA MACHINE SUPPORT
2126M:	"Mark F. Brown" <mark.brown314@gmail.com>
2127L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2128S:	Maintained
2129
2130ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2131M:	Santosh Shilimkar <ssantosh@kernel.org>
2132L:	linux-kernel@vger.kernel.org
2133S:	Maintained
2134F:	drivers/memory/*emif*
2135
2136ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2137M:	Tero Kristo <t-kristo@ti.com>
2138M:	Nishanth Menon <nm@ti.com>
2139L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2140S:	Supported
2141F:	Documentation/devicetree/bindings/arm/ti/k3.txt
2142F:	arch/arm64/boot/dts/ti/Makefile
2143F:	arch/arm64/boot/dts/ti/k3-*
2144
2145ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2146M:	Santosh Shilimkar <ssantosh@kernel.org>
2147L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2148S:	Maintained
2149F:	arch/arm/mach-keystone/
2150F:	arch/arm/boot/dts/keystone-*
2151T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2152
2153ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2154M:	Santosh Shilimkar <ssantosh@kernel.org>
2155L:	linux-kernel@vger.kernel.org
2156S:	Maintained
2157F:	drivers/clk/keystone/
2158
2159ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2160M:	Santosh Shilimkar <ssantosh@kernel.org>
2161L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2162L:	linux-kernel@vger.kernel.org
2163S:	Maintained
2164F:	drivers/clocksource/timer-keystone.c
2165
2166ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2167M:	Santosh Shilimkar <ssantosh@kernel.org>
2168L:	linux-kernel@vger.kernel.org
2169S:	Maintained
2170F:	drivers/power/reset/keystone-reset.c
2171
2172ARM/THECUS N2100 MACHINE SUPPORT
2173M:	Lennert Buytenhek <kernel@wantstofly.org>
2174L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2175S:	Maintained
2176
2177ARM/TOSA MACHINE SUPPORT
2178M:	Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2179M:	Dirk Opfer <dirk@opfer-online.de>
2180S:	Maintained
2181
2182ARM/UNIPHIER ARCHITECTURE
2183M:	Masahiro Yamada <yamada.masahiro@socionext.com>
2184L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2185T:	git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2186S:	Maintained
2187F:	Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2188F:	Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2189F:	arch/arm/boot/dts/uniphier*
2190F:	arch/arm/include/asm/hardware/cache-uniphier.h
2191F:	arch/arm/mach-uniphier/
2192F:	arch/arm/mm/cache-uniphier.c
2193F:	arch/arm64/boot/dts/socionext/uniphier*
2194F:	drivers/bus/uniphier-system-bus.c
2195F:	drivers/clk/uniphier/
2196F:	drivers/gpio/gpio-uniphier.c
2197F:	drivers/i2c/busses/i2c-uniphier*
2198F:	drivers/irqchip/irq-uniphier-aidet.c
2199F:	drivers/pinctrl/uniphier/
2200F:	drivers/reset/reset-uniphier.c
2201F:	drivers/tty/serial/8250/8250_uniphier.c
2202N:	uniphier
2203
2204ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2205M:	Ulf Hansson <ulf.hansson@linaro.org>
2206L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2207T:	git git://git.linaro.org/people/ulfh/clk.git
2208S:	Maintained
2209F:	drivers/clk/ux500/
2210
2211ARM/VERSATILE EXPRESS PLATFORM
2212M:	Liviu Dudau <liviu.dudau@arm.com>
2213M:	Sudeep Holla <sudeep.holla@arm.com>
2214M:	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2215L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2216S:	Maintained
2217F:	arch/arm/boot/dts/vexpress*
2218F:	arch/arm64/boot/dts/arm/
2219F:	arch/arm/mach-vexpress/
2220F:	*/*/vexpress*
2221F:	*/*/*/vexpress*
2222F:	drivers/clk/versatile/clk-vexpress-osc.c
2223F:	drivers/clocksource/versatile.c
2224N:	mps2
2225
2226ARM/VFP SUPPORT
2227M:	Russell King <linux@armlinux.org.uk>
2228L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2229W:	http://www.armlinux.org.uk/
2230S:	Maintained
2231F:	arch/arm/vfp/
2232
2233ARM/VOIPAC PXA270 SUPPORT
2234M:	Marek Vasut <marek.vasut@gmail.com>
2235L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2236S:	Maintained
2237F:	arch/arm/mach-pxa/vpac270.c
2238F:	arch/arm/mach-pxa/include/mach/vpac270.h
2239
2240ARM/VT8500 ARM ARCHITECTURE
2241M:	Tony Prisk <linux@prisktech.co.nz>
2242L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2243S:	Maintained
2244F:	arch/arm/mach-vt8500/
2245F:	drivers/clocksource/vt8500_timer.c
2246F:	drivers/i2c/busses/i2c-wmt.c
2247F:	drivers/mmc/host/wmt-sdmmc.c
2248F:	drivers/pwm/pwm-vt8500.c
2249F:	drivers/rtc/rtc-vt8500.c
2250F:	drivers/tty/serial/vt8500_serial.c
2251F:	drivers/usb/host/ehci-platform.c
2252F:	drivers/usb/host/uhci-platform.c
2253F:	drivers/video/fbdev/vt8500lcdfb.*
2254F:	drivers/video/fbdev/wm8505fb*
2255F:	drivers/video/fbdev/wmt_ge_rops.*
2256
2257ARM/ZIPIT Z2 SUPPORT
2258M:	Marek Vasut <marek.vasut@gmail.com>
2259L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2260S:	Maintained
2261F:	arch/arm/mach-pxa/z2.c
2262F:	arch/arm/mach-pxa/include/mach/z2.h
2263
2264ARM/ZTE ARCHITECTURE
2265M:	Jun Nie <jun.nie@linaro.org>
2266M:	Baoyou Xie <baoyou.xie@linaro.org>
2267M:	Shawn Guo <shawnguo@kernel.org>
2268L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2269S:	Maintained
2270F:	arch/arm/boot/dts/zx2967*
2271F:	arch/arm/mach-zx/
2272F:	arch/arm64/boot/dts/zte/
2273F:	drivers/clk/zte/
2274F:	drivers/dma/zx_dma.c
2275F:	drivers/gpio/gpio-zx.c
2276F:	drivers/i2c/busses/i2c-zx2967.c
2277F:	drivers/mmc/host/dw_mmc-zx.*
2278F:	drivers/pinctrl/zte/
2279F:	drivers/soc/zte/
2280F:	drivers/thermal/zx2967_thermal.c
2281F:	drivers/watchdog/zx2967_wdt.c
2282F:	Documentation/devicetree/bindings/arm/zte.txt
2283F:	Documentation/devicetree/bindings/clock/zx2967*.txt
2284F:	Documentation/devicetree/bindings/dma/zxdma.txt
2285F:	Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2286F:	Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2287F:	Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2288F:	Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2289F:	Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2290F:	Documentation/devicetree/bindings/soc/zte/
2291F:	Documentation/devicetree/bindings/sound/zte,*.txt
2292F:	Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2293F:	Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2294F:	include/dt-bindings/clock/zx2967*.h
2295F:	include/dt-bindings/soc/zte,*.h
2296F:	sound/soc/codecs/zx_aud96p22.c
2297F:	sound/soc/zte/
2298
2299ARM/ZYNQ ARCHITECTURE
2300M:	Michal Simek <michal.simek@xilinx.com>
2301L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2302W:	http://wiki.xilinx.com
2303T:	git https://github.com/Xilinx/linux-xlnx.git
2304S:	Supported
2305F:	arch/arm/mach-zynq/
2306F:	drivers/cpuidle/cpuidle-zynq.c
2307F:	drivers/block/xsysace.c
2308N:	zynq
2309N:	xilinx
2310F:	drivers/clocksource/cadence_ttc_timer.c
2311F:	drivers/i2c/busses/i2c-cadence.c
2312F:	drivers/mmc/host/sdhci-of-arasan.c
2313F:	drivers/edac/synopsys_edac.c
2314F:	drivers/i2c/busses/i2c-xiic.c
2315
2316ARM64 PORT (AARCH64 ARCHITECTURE)
2317M:	Catalin Marinas <catalin.marinas@arm.com>
2318M:	Will Deacon <will.deacon@arm.com>
2319L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2320T:	git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2321S:	Maintained
2322F:	arch/arm64/
2323X:	arch/arm64/boot/dts/
2324F:	Documentation/arm64/
2325
2326AS3645A LED FLASH CONTROLLER DRIVER
2327M:	Sakari Ailus <sakari.ailus@iki.fi>
2328L:	linux-leds@vger.kernel.org
2329S:	Maintained
2330F:	drivers/leds/leds-as3645a.c
2331
2332ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2333M:	Tianshu Qiu <tian.shu.qiu@intel.com>
2334L:	linux-media@vger.kernel.org
2335T:	git git://linuxtv.org/media_tree.git
2336S:	Maintained
2337F:	drivers/media/i2c/ak7375.c
2338F:	Documentation/devicetree/bindings/media/i2c/ak7375.txt
2339
2340ASAHI KASEI AK8974 DRIVER
2341M:	Linus Walleij <linus.walleij@linaro.org>
2342L:	linux-iio@vger.kernel.org
2343W:	http://www.akm.com/
2344S:	Supported
2345F:	drivers/iio/magnetometer/ak8974.c
2346
2347ASC7621 HARDWARE MONITOR DRIVER
2348M:	George Joseph <george.joseph@fairview5.com>
2349L:	linux-hwmon@vger.kernel.org
2350S:	Maintained
2351F:	Documentation/hwmon/asc7621
2352F:	drivers/hwmon/asc7621.c
2353
2354ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2355M:	Corentin Chary <corentin.chary@gmail.com>
2356L:	acpi4asus-user@lists.sourceforge.net
2357L:	platform-driver-x86@vger.kernel.org
2358W:	http://acpi4asus.sf.net
2359S:	Maintained
2360F:	drivers/platform/x86/asus*.c
2361F:	drivers/platform/x86/eeepc*.c
2362
2363ASUS WIRELESS RADIO CONTROL DRIVER
2364M:	João Paulo Rechi Vita <jprvita@gmail.com>
2365L:	platform-driver-x86@vger.kernel.org
2366S:	Maintained
2367F:	drivers/platform/x86/asus-wireless.c
2368
2369ASYMMETRIC KEYS
2370M:	David Howells <dhowells@redhat.com>
2371L:	keyrings@vger.kernel.org
2372S:	Maintained
2373F:	Documentation/crypto/asymmetric-keys.txt
2374F:	include/linux/verification.h
2375F:	include/crypto/public_key.h
2376F:	include/crypto/pkcs7.h
2377F:	crypto/asymmetric_keys/
2378
2379ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2380R:	Dan Williams <dan.j.williams@intel.com>
2381W:	http://sourceforge.net/projects/xscaleiop
2382S:	Odd fixes
2383F:	Documentation/crypto/async-tx-api.txt
2384F:	crypto/async_tx/
2385F:	drivers/dma/
2386F:	include/linux/dmaengine.h
2387F:	include/linux/async_tx.h
2388
2389AT24 EEPROM DRIVER
2390M:	Bartosz Golaszewski <brgl@bgdev.pl>
2391L:	linux-i2c@vger.kernel.org
2392T:	git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2393S:	Maintained
2394F:	Documentation/devicetree/bindings/eeprom/at24.txt
2395F:	drivers/misc/eeprom/at24.c
2396F:	include/linux/platform_data/at24.h
2397
2398ATA OVER ETHERNET (AOE) DRIVER
2399M:	"Ed L. Cashin" <ed.cashin@acm.org>
2400W:	http://www.openaoe.org/
2401S:	Supported
2402F:	Documentation/aoe/
2403F:	drivers/block/aoe/
2404
2405ATHEROS 71XX/9XXX GPIO DRIVER
2406M:	Alban Bedel <albeu@free.fr>
2407W:	https://github.com/AlbanBedel/linux
2408T:	git git://github.com/AlbanBedel/linux
2409S:	Maintained
2410F:	drivers/gpio/gpio-ath79.c
2411F:	Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2412
2413ATHEROS 71XX/9XXX USB PHY DRIVER
2414M:	Alban Bedel <albeu@free.fr>
2415W:	https://github.com/AlbanBedel/linux
2416T:	git git://github.com/AlbanBedel/linux
2417S:	Maintained
2418F:	drivers/phy/qualcomm/phy-ath79-usb.c
2419F:	Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2420
2421ATHEROS ATH GENERIC UTILITIES
2422M:	Kalle Valo <kvalo@codeaurora.org>
2423L:	linux-wireless@vger.kernel.org
2424S:	Supported
2425F:	drivers/net/wireless/ath/*
2426
2427ATHEROS ATH5K WIRELESS DRIVER
2428M:	Jiri Slaby <jirislaby@gmail.com>
2429M:	Nick Kossifidis <mickflemm@gmail.com>
2430M:	"Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2431L:	linux-wireless@vger.kernel.org
2432W:	http://wireless.kernel.org/en/users/Drivers/ath5k
2433S:	Maintained
2434F:	drivers/net/wireless/ath/ath5k/
2435
2436ATHEROS ATH6KL WIRELESS DRIVER
2437M:	Kalle Valo <kvalo@codeaurora.org>
2438L:	linux-wireless@vger.kernel.org
2439W:	http://wireless.kernel.org/en/users/Drivers/ath6kl
2440T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2441S:	Supported
2442F:	drivers/net/wireless/ath/ath6kl/
2443
2444ATI_REMOTE2 DRIVER
2445M:	Ville Syrjala <syrjala@sci.fi>
2446S:	Maintained
2447F:	drivers/input/misc/ati_remote2.c
2448
2449ATK0110 HWMON DRIVER
2450M:	Luca Tettamanti <kronos.it@gmail.com>
2451L:	linux-hwmon@vger.kernel.org
2452S:	Maintained
2453F:	drivers/hwmon/asus_atk0110.c
2454
2455ATLX ETHERNET DRIVERS
2456M:	Jay Cliburn <jcliburn@gmail.com>
2457M:	Chris Snook <chris.snook@gmail.com>
2458L:	netdev@vger.kernel.org
2459W:	http://sourceforge.net/projects/atl1
2460W:	http://atl1.sourceforge.net
2461S:	Maintained
2462F:	drivers/net/ethernet/atheros/
2463
2464ATM
2465M:	Chas Williams <3chas3@gmail.com>
2466L:	linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2467L:	netdev@vger.kernel.org
2468W:	http://linux-atm.sourceforge.net
2469S:	Maintained
2470F:	drivers/atm/
2471F:	include/linux/atm*
2472F:	include/uapi/linux/atm*
2473
2474ATMEL AT91 / AT32 MCI DRIVER
2475M:	Ludovic Desroches <ludovic.desroches@microchip.com>
2476S:	Maintained
2477F:	drivers/mmc/host/atmel-mci.c
2478
2479ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2480M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2481S:	Supported
2482F:	drivers/power/reset/at91-sama5d2_shdwc.c
2483
2484ATMEL Audio ALSA driver
2485M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2486L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
2487S:	Supported
2488F:	sound/soc/atmel
2489
2490ATMEL I2C DRIVER
2491M:	Ludovic Desroches <ludovic.desroches@microchip.com>
2492L:	linux-i2c@vger.kernel.org
2493S:	Supported
2494F:	drivers/i2c/busses/i2c-at91.c
2495
2496ATMEL ISI DRIVER
2497M:	Ludovic Desroches <ludovic.desroches@microchip.com>
2498L:	linux-media@vger.kernel.org
2499S:	Supported
2500F:	drivers/media/platform/atmel/atmel-isi.c
2501F:	include/media/atmel-isi.h
2502
2503ATMEL LCDFB DRIVER
2504M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2505L:	linux-fbdev@vger.kernel.org
2506S:	Maintained
2507F:	drivers/video/fbdev/atmel_lcdfb.c
2508F:	include/video/atmel_lcdc.h
2509
2510ATMEL MACB ETHERNET DRIVER
2511M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2512S:	Supported
2513F:	drivers/net/ethernet/cadence/
2514
2515ATMEL MAXTOUCH DRIVER
2516M:	Nick Dyer <nick@shmanahar.org>
2517T:	git git://github.com/ndyer/linux.git
2518S:	Maintained
2519F:	Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2520F:	drivers/input/touchscreen/atmel_mxt_ts.c
2521
2522ATMEL SAMA5D2 ADC DRIVER
2523M:	Ludovic Desroches <ludovic.desroches@microchip.com>
2524L:	linux-iio@vger.kernel.org
2525S:	Supported
2526F:	drivers/iio/adc/at91-sama5d2_adc.c
2527
2528ATMEL SDMMC DRIVER
2529M:	Ludovic Desroches <ludovic.desroches@microchip.com>
2530L:	linux-mmc@vger.kernel.org
2531S:	Supported
2532F:	drivers/mmc/host/sdhci-of-at91.c
2533
2534ATMEL SPI DRIVER
2535M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2536S:	Supported
2537F:	drivers/spi/spi-atmel.*
2538
2539ATMEL SSC DRIVER
2540M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2541L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2542S:	Supported
2543F:	drivers/misc/atmel-ssc.c
2544F:	include/linux/atmel-ssc.h
2545
2546ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2547M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2548L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2549S:	Supported
2550F:	drivers/misc/atmel_tclib.c
2551F:	drivers/clocksource/tcb_clksrc.c
2552
2553ATMEL USBA UDC DRIVER
2554M:	Nicolas Ferre <nicolas.ferre@microchip.com>
2555L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2556S:	Supported
2557F:	drivers/usb/gadget/udc/atmel_usba_udc.*
2558
2559ATMEL WIRELESS DRIVER
2560M:	Simon Kelley <simon@thekelleys.org.uk>
2561L:	linux-wireless@vger.kernel.org
2562W:	http://www.thekelleys.org.uk/atmel
2563W:	http://atmelwlandriver.sourceforge.net/
2564S:	Maintained
2565F:	drivers/net/wireless/atmel/atmel*
2566
2567ATMEL XDMA DRIVER
2568M:	Ludovic Desroches <ludovic.desroches@microchip.com>
2569L:	linux-arm-kernel@lists.infradead.org
2570L:	dmaengine@vger.kernel.org
2571S:	Supported
2572F:	drivers/dma/at_xdmac.c
2573
2574ATOMIC INFRASTRUCTURE
2575M:	Will Deacon <will.deacon@arm.com>
2576M:	Peter Zijlstra <peterz@infradead.org>
2577R:	Boqun Feng <boqun.feng@gmail.com>
2578L:	linux-kernel@vger.kernel.org
2579S:	Maintained
2580F:	arch/*/include/asm/atomic*.h
2581F:	include/*/atomic*.h
2582
2583ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2584M:	Bradley Grove <linuxdrivers@attotech.com>
2585L:	linux-scsi@vger.kernel.org
2586W:	http://www.attotech.com
2587S:	Supported
2588F:	drivers/scsi/esas2r
2589
2590ATUSB IEEE 802.15.4 RADIO DRIVER
2591M:	Stefan Schmidt <stefan@datenfreihafen.org>
2592L:	linux-wpan@vger.kernel.org
2593S:	Maintained
2594F:	drivers/net/ieee802154/atusb.c
2595F:	drivers/net/ieee802154/atusb.h
2596F:	drivers/net/ieee802154/at86rf230.h
2597
2598AUDIT SUBSYSTEM
2599M:	Paul Moore <paul@paul-moore.com>
2600M:	Eric Paris <eparis@redhat.com>
2601L:	linux-audit@redhat.com (moderated for non-subscribers)
2602W:	https://github.com/linux-audit
2603T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2604S:	Supported
2605F:	include/linux/audit.h
2606F:	include/uapi/linux/audit.h
2607F:	kernel/audit*
2608
2609AUXILIARY DISPLAY DRIVERS
2610M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2611S:	Maintained
2612F:	drivers/auxdisplay/
2613F:	include/linux/cfag12864b.h
2614
2615AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2616M:	Andreas Klinger <ak@it-klinger.de>
2617L:	linux-iio@vger.kernel.org
2618S:	Maintained
2619F:	Documentation/devicetree/bindings/iio/adc/avia-hx711.txt
2620F:	drivers/iio/adc/hx711.c
2621
2622AX.25 NETWORK LAYER
2623M:	Ralf Baechle <ralf@linux-mips.org>
2624L:	linux-hams@vger.kernel.org
2625W:	http://www.linux-ax25.org/
2626S:	Maintained
2627F:	include/uapi/linux/ax25.h
2628F:	include/net/ax25.h
2629F:	net/ax25/
2630
2631AXENTIA ARM DEVICES
2632M:	Peter Rosin <peda@axentia.se>
2633L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2634S:	Maintained
2635F:	Documentation/devicetree/bindings/arm/axentia.txt
2636F:	arch/arm/boot/dts/at91-linea.dtsi
2637F:	arch/arm/boot/dts/at91-natte.dtsi
2638F:	arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2639F:	arch/arm/boot/dts/at91-tse850-3.dts
2640
2641AXENTIA ASOC DRIVERS
2642M:	Peter Rosin <peda@axentia.se>
2643L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
2644S:	Maintained
2645F:	Documentation/devicetree/bindings/sound/axentia,*
2646F:	sound/soc/atmel/tse850-pcm5142.c
2647
2648AZ6007 DVB DRIVER
2649M:	Mauro Carvalho Chehab <mchehab@kernel.org>
2650L:	linux-media@vger.kernel.org
2651W:	https://linuxtv.org
2652T:	git git://linuxtv.org/media_tree.git
2653S:	Maintained
2654F:	drivers/media/usb/dvb-usb-v2/az6007.c
2655
2656AZTECH FM RADIO RECEIVER DRIVER
2657M:	Hans Verkuil <hverkuil@xs4all.nl>
2658L:	linux-media@vger.kernel.org
2659T:	git git://linuxtv.org/media_tree.git
2660W:	https://linuxtv.org
2661S:	Maintained
2662F:	drivers/media/radio/radio-aztech*
2663
2664B43 WIRELESS DRIVER
2665L:	linux-wireless@vger.kernel.org
2666L:	b43-dev@lists.infradead.org
2667W:	http://wireless.kernel.org/en/users/Drivers/b43
2668S:	Odd Fixes
2669F:	drivers/net/wireless/broadcom/b43/
2670
2671B43LEGACY WIRELESS DRIVER
2672M:	Larry Finger <Larry.Finger@lwfinger.net>
2673L:	linux-wireless@vger.kernel.org
2674L:	b43-dev@lists.infradead.org
2675W:	http://wireless.kernel.org/en/users/Drivers/b43
2676S:	Maintained
2677F:	drivers/net/wireless/broadcom/b43legacy/
2678
2679BACKLIGHT CLASS/SUBSYSTEM
2680M:	Lee Jones <lee.jones@linaro.org>
2681M:	Daniel Thompson <daniel.thompson@linaro.org>
2682M:	Jingoo Han <jingoohan1@gmail.com>
2683L:	dri-devel@lists.freedesktop.org
2684T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2685S:	Maintained
2686F:	drivers/video/backlight/
2687F:	include/linux/backlight.h
2688F:	include/linux/pwm_backlight.h
2689F:	Documentation/devicetree/bindings/leds/backlight
2690
2691BATMAN ADVANCED
2692M:	Marek Lindner <mareklindner@neomailbox.ch>
2693M:	Simon Wunderlich <sw@simonwunderlich.de>
2694M:	Antonio Quartulli <a@unstable.cc>
2695L:	b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2696W:	https://www.open-mesh.org/
2697Q:	https://patchwork.open-mesh.org/project/batman/list/
2698S:	Maintained
2699F:	Documentation/ABI/testing/sysfs-class-net-batman-adv
2700F:	Documentation/ABI/testing/sysfs-class-net-mesh
2701F:	Documentation/networking/batman-adv.rst
2702F:	include/uapi/linux/batadv_packet.h
2703F:	include/uapi/linux/batman_adv.h
2704F:	net/batman-adv/
2705
2706BAYCOM/HDLCDRV DRIVERS FOR AX.25
2707M:	Thomas Sailer <t.sailer@alumni.ethz.ch>
2708L:	linux-hams@vger.kernel.org
2709W:	http://www.baycom.org/~tom/ham/ham.html
2710S:	Maintained
2711F:	drivers/net/hamradio/baycom*
2712
2713BCACHE (BLOCK LAYER CACHE)
2714M:	Coly Li <colyli@suse.de>
2715M:	Kent Overstreet <kent.overstreet@gmail.com>
2716L:	linux-bcache@vger.kernel.org
2717W:	http://bcache.evilpiepirate.org
2718C:	irc://irc.oftc.net/bcache
2719S:	Maintained
2720F:	drivers/md/bcache/
2721
2722BDISP ST MEDIA DRIVER
2723M:	Fabien Dessenne <fabien.dessenne@st.com>
2724L:	linux-media@vger.kernel.org
2725T:	git git://linuxtv.org/media_tree.git
2726W:	https://linuxtv.org
2727S:	Supported
2728F:	drivers/media/platform/sti/bdisp
2729
2730BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2731M:	Dariusz Marcinkiewicz <reksio@newterm.pl>
2732L:	netdev@vger.kernel.org
2733S:	Maintained
2734F:	drivers/net/ethernet/ec_bhf.c
2735
2736BEFS FILE SYSTEM
2737M:	Luis de Bethencourt <luisbg@kernel.org>
2738M:	Salah Triki <salah.triki@gmail.com>
2739S:	Maintained
2740T:	git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2741F:	Documentation/filesystems/befs.txt
2742F:	fs/befs/
2743
2744BFQ I/O SCHEDULER
2745M:	Paolo Valente <paolo.valente@linaro.org>
2746M:	Jens Axboe <axboe@kernel.dk>
2747L:	linux-block@vger.kernel.org
2748S:	Maintained
2749F:	block/bfq-*
2750F:	Documentation/block/bfq-iosched.txt
2751
2752BFS FILE SYSTEM
2753M:	"Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2754S:	Maintained
2755F:	Documentation/filesystems/bfs.txt
2756F:	fs/bfs/
2757F:	include/uapi/linux/bfs_fs.h
2758
2759BLINKM RGB LED DRIVER
2760M:	Jan-Simon Moeller <jansimon.moeller@gmx.de>
2761S:	Maintained
2762F:	drivers/leds/leds-blinkm.c
2763
2764BLOCK LAYER
2765M:	Jens Axboe <axboe@kernel.dk>
2766L:	linux-block@vger.kernel.org
2767T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2768S:	Maintained
2769F:	block/
2770F:	drivers/block/
2771F:	kernel/trace/blktrace.c
2772F:	lib/sbitmap.c
2773
2774BLOCK2MTD DRIVER
2775M:	Joern Engel <joern@lazybastard.org>
2776L:	linux-mtd@lists.infradead.org
2777S:	Maintained
2778F:	drivers/mtd/devices/block2mtd.c
2779
2780BLUETOOTH DRIVERS
2781M:	Marcel Holtmann <marcel@holtmann.org>
2782M:	Johan Hedberg <johan.hedberg@gmail.com>
2783L:	linux-bluetooth@vger.kernel.org
2784W:	http://www.bluez.org/
2785T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2786T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2787S:	Maintained
2788F:	drivers/bluetooth/
2789
2790BLUETOOTH SUBSYSTEM
2791M:	Marcel Holtmann <marcel@holtmann.org>
2792M:	Johan Hedberg <johan.hedberg@gmail.com>
2793L:	linux-bluetooth@vger.kernel.org
2794W:	http://www.bluez.org/
2795T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2796T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2797S:	Maintained
2798F:	net/bluetooth/
2799F:	include/net/bluetooth/
2800
2801BONDING DRIVER
2802M:	Jay Vosburgh <j.vosburgh@gmail.com>
2803M:	Veaceslav Falico <vfalico@gmail.com>
2804M:	Andy Gospodarek <andy@greyhouse.net>
2805L:	netdev@vger.kernel.org
2806W:	http://sourceforge.net/projects/bonding/
2807S:	Supported
2808F:	drivers/net/bonding/
2809F:	include/uapi/linux/if_bonding.h
2810
2811BPF (Safe dynamic programs and tools)
2812M:	Alexei Starovoitov <ast@kernel.org>
2813M:	Daniel Borkmann <daniel@iogearbox.net>
2814L:	netdev@vger.kernel.org
2815L:	linux-kernel@vger.kernel.org
2816T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
2817T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
2818Q:	https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
2819S:	Supported
2820F:	arch/x86/net/bpf_jit*
2821F:	Documentation/networking/filter.txt
2822F:	Documentation/bpf/
2823F:	include/linux/bpf*
2824F:	include/linux/filter.h
2825F:	include/trace/events/xdp.h
2826F:	include/uapi/linux/bpf*
2827F:	include/uapi/linux/filter.h
2828F:	kernel/bpf/
2829F:	kernel/trace/bpf_trace.c
2830F:	lib/test_bpf.c
2831F:	net/bpf/
2832F:	net/core/filter.c
2833F:	net/sched/act_bpf.c
2834F:	net/sched/cls_bpf.c
2835F:	samples/bpf/
2836F:	tools/bpf/
2837F:	tools/lib/bpf/
2838F:	tools/testing/selftests/bpf/
2839
2840BROADCOM B44 10/100 ETHERNET DRIVER
2841M:	Michael Chan <michael.chan@broadcom.com>
2842L:	netdev@vger.kernel.org
2843S:	Supported
2844F:	drivers/net/ethernet/broadcom/b44.*
2845
2846BROADCOM B53 ETHERNET SWITCH DRIVER
2847M:	Florian Fainelli <f.fainelli@gmail.com>
2848L:	netdev@vger.kernel.org
2849L:	openwrt-devel@lists.openwrt.org (subscribers-only)
2850S:	Supported
2851F:	drivers/net/dsa/b53/*
2852F:	include/linux/platform_data/b53.h
2853
2854BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2855M:	Florian Fainelli <f.fainelli@gmail.com>
2856M:	Ray Jui <rjui@broadcom.com>
2857M:	Scott Branden <sbranden@broadcom.com>
2858M:	bcm-kernel-feedback-list@broadcom.com
2859T:	git git://github.com/broadcom/mach-bcm
2860S:	Maintained
2861N:	bcm281*
2862N:	bcm113*
2863N:	bcm216*
2864N:	kona
2865F:	arch/arm/mach-bcm/
2866
2867BROADCOM BCM2835 ARM ARCHITECTURE
2868M:	Eric Anholt <eric@anholt.net>
2869M:	Stefan Wahren <stefan.wahren@i2se.com>
2870L:	linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2871L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2872T:	git git://github.com/anholt/linux
2873S:	Maintained
2874N:	bcm2835
2875F:	drivers/staging/vc04_services
2876
2877BROADCOM BCM47XX MIPS ARCHITECTURE
2878M:	Hauke Mehrtens <hauke@hauke-m.de>
2879M:	Rafał Miłecki <zajec5@gmail.com>
2880L:	linux-mips@linux-mips.org
2881S:	Maintained
2882F:	Documentation/devicetree/bindings/mips/brcm/
2883F:	arch/mips/bcm47xx/*
2884F:	arch/mips/include/asm/mach-bcm47xx/*
2885
2886BROADCOM BCM5301X ARM ARCHITECTURE
2887M:	Hauke Mehrtens <hauke@hauke-m.de>
2888M:	Rafał Miłecki <zajec5@gmail.com>
2889M:	Jon Mason <jonmason@broadcom.com>
2890M:	bcm-kernel-feedback-list@broadcom.com
2891L:	linux-arm-kernel@lists.infradead.org
2892S:	Maintained
2893F:	arch/arm/mach-bcm/bcm_5301x.c
2894F:	arch/arm/boot/dts/bcm5301x*.dtsi
2895F:	arch/arm/boot/dts/bcm470*
2896F:	arch/arm/boot/dts/bcm953012*
2897
2898BROADCOM BCM53573 ARM ARCHITECTURE
2899M:	Rafał Miłecki <rafal@milecki.pl>
2900L:	linux-arm-kernel@lists.infradead.org
2901S:	Maintained
2902F:	arch/arm/boot/dts/bcm53573*
2903F:	arch/arm/boot/dts/bcm47189*
2904
2905BROADCOM BCM63XX ARM ARCHITECTURE
2906M:	Florian Fainelli <f.fainelli@gmail.com>
2907M:	bcm-kernel-feedback-list@broadcom.com
2908L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2909T:	git git://github.com/broadcom/stblinux.git
2910S:	Maintained
2911N:	bcm63xx
2912
2913BROADCOM BCM63XX/BCM33XX UDC DRIVER
2914M:	Kevin Cernekee <cernekee@gmail.com>
2915L:	linux-usb@vger.kernel.org
2916S:	Maintained
2917F:	drivers/usb/gadget/udc/bcm63xx_udc.*
2918
2919BROADCOM BCM7XXX ARM ARCHITECTURE
2920M:	Brian Norris <computersforpeace@gmail.com>
2921M:	Gregory Fong <gregory.0xf0@gmail.com>
2922M:	Florian Fainelli <f.fainelli@gmail.com>
2923M:	bcm-kernel-feedback-list@broadcom.com
2924L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2925T:	git git://github.com/broadcom/stblinux.git
2926S:	Maintained
2927F:	arch/arm/mach-bcm/*brcmstb*
2928F:	arch/arm/boot/dts/bcm7*.dts*
2929F:	drivers/bus/brcmstb_gisb.c
2930F:	arch/arm/mm/cache-b15-rac.c
2931F:	arch/arm/include/asm/hardware/cache-b15-rac.h
2932N:	brcmstb
2933
2934BROADCOM BMIPS CPUFREQ DRIVER
2935M:	Markus Mayer <mmayer@broadcom.com>
2936M:	bcm-kernel-feedback-list@broadcom.com
2937L:	linux-pm@vger.kernel.org
2938S:	Maintained
2939F:	drivers/cpufreq/bmips-cpufreq.c
2940
2941BROADCOM BMIPS MIPS ARCHITECTURE
2942M:	Kevin Cernekee <cernekee@gmail.com>
2943M:	Florian Fainelli <f.fainelli@gmail.com>
2944L:	linux-mips@linux-mips.org
2945T:	git git://github.com/broadcom/stblinux.git
2946S:	Maintained
2947F:	arch/mips/bmips/*
2948F:	arch/mips/include/asm/mach-bmips/*
2949F:	arch/mips/kernel/*bmips*
2950F:	arch/mips/boot/dts/brcm/bcm*.dts*
2951F:	drivers/irqchip/irq-bcm63*
2952F:	drivers/irqchip/irq-bcm7*
2953F:	drivers/irqchip/irq-brcmstb*
2954F:	include/linux/bcm963xx_nvram.h
2955F:	include/linux/bcm963xx_tag.h
2956
2957BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2958M:	Rasesh Mody <rasesh.mody@cavium.com>
2959M:	Harish Patil <harish.patil@cavium.com>
2960M:	Dept-GELinuxNICDev@cavium.com
2961L:	netdev@vger.kernel.org
2962S:	Supported
2963F:	drivers/net/ethernet/broadcom/bnx2.*
2964F:	drivers/net/ethernet/broadcom/bnx2_*
2965
2966BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2967M:	QLogic-Storage-Upstream@qlogic.com
2968L:	linux-scsi@vger.kernel.org
2969S:	Supported
2970F:	drivers/scsi/bnx2fc/
2971
2972BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2973M:	QLogic-Storage-Upstream@qlogic.com
2974L:	linux-scsi@vger.kernel.org
2975S:	Supported
2976F:	drivers/scsi/bnx2i/
2977
2978BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2979M:	Ariel Elior <ariel.elior@cavium.com>
2980M:	everest-linux-l2@cavium.com
2981L:	netdev@vger.kernel.org
2982S:	Supported
2983F:	drivers/net/ethernet/broadcom/bnx2x/
2984
2985BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2986M:	Michael Chan <michael.chan@broadcom.com>
2987L:	netdev@vger.kernel.org
2988S:	Supported
2989F:	drivers/net/ethernet/broadcom/bnxt/
2990
2991BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2992M:	Arend van Spriel <arend.vanspriel@broadcom.com>
2993M:	Franky Lin <franky.lin@broadcom.com>
2994M:	Hante Meuleman <hante.meuleman@broadcom.com>
2995M:	Chi-Hsien Lin <chi-hsien.lin@cypress.com>
2996M:	Wright Feng <wright.feng@cypress.com>
2997L:	linux-wireless@vger.kernel.org
2998L:	brcm80211-dev-list.pdl@broadcom.com
2999L:	brcm80211-dev-list@cypress.com
3000S:	Supported
3001F:	drivers/net/wireless/broadcom/brcm80211/
3002
3003BROADCOM BRCMSTB GPIO DRIVER
3004M:	Gregory Fong <gregory.0xf0@gmail.com>
3005L:	bcm-kernel-feedback-list@broadcom.com
3006S:	Supported
3007F:	drivers/gpio/gpio-brcmstb.c
3008F:	Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3009
3010BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3011M:	Al Cooper <alcooperx@gmail.com>
3012L:	linux-kernel@vger.kernel.org
3013L:	bcm-kernel-feedback-list@broadcom.com
3014S:	Maintained
3015F:	drivers/phy/broadcom/phy-brcm-usb*
3016
3017BROADCOM GENET ETHERNET DRIVER
3018M:	Doug Berger <opendmb@gmail.com>
3019M:	Florian Fainelli <f.fainelli@gmail.com>
3020L:	netdev@vger.kernel.org
3021S:	Supported
3022F:	drivers/net/ethernet/broadcom/genet/
3023
3024BROADCOM IPROC ARM ARCHITECTURE
3025M:	Ray Jui <rjui@broadcom.com>
3026M:	Scott Branden <sbranden@broadcom.com>
3027M:	Jon Mason <jonmason@broadcom.com>
3028M:	bcm-kernel-feedback-list@broadcom.com
3029L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3030T:	git git://github.com/broadcom/cygnus-linux.git
3031S:	Maintained
3032N:	iproc
3033N:	cygnus
3034N:	bcm[-_]nsp
3035N:	bcm9113*
3036N:	bcm9583*
3037N:	bcm9585*
3038N:	bcm9586*
3039N:	bcm988312
3040N:	bcm113*
3041N:	bcm583*
3042N:	bcm585*
3043N:	bcm586*
3044N:	bcm88312
3045N:	hr2
3046N:	stingray
3047F:	arch/arm64/boot/dts/broadcom/northstar2/*
3048F:	arch/arm64/boot/dts/broadcom/stingray/*
3049F:	drivers/clk/bcm/clk-ns*
3050F:	drivers/clk/bcm/clk-sr*
3051F:	drivers/pinctrl/bcm/pinctrl-ns*
3052F:	include/dt-bindings/clock/bcm-sr*
3053
3054BROADCOM KONA GPIO DRIVER
3055M:	Ray Jui <rjui@broadcom.com>
3056L:	bcm-kernel-feedback-list@broadcom.com
3057S:	Supported
3058F:	drivers/gpio/gpio-bcm-kona.c
3059F:	Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3060
3061BROADCOM NETXTREME-E ROCE DRIVER
3062M:	Selvin Xavier <selvin.xavier@broadcom.com>
3063M:	Devesh Sharma <devesh.sharma@broadcom.com>
3064M:	Somnath Kotur <somnath.kotur@broadcom.com>
3065M:	Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3066L:	linux-rdma@vger.kernel.org
3067W:	http://www.broadcom.com
3068S:	Supported
3069F:	drivers/infiniband/hw/bnxt_re/
3070F:	include/uapi/rdma/bnxt_re-abi.h
3071
3072BROADCOM NVRAM DRIVER
3073M:	Rafał Miłecki <zajec5@gmail.com>
3074L:	linux-mips@linux-mips.org
3075S:	Maintained
3076F:	drivers/firmware/broadcom/*
3077
3078BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3079M:	Rafał Miłecki <zajec5@gmail.com>
3080L:	linux-wireless@vger.kernel.org
3081S:	Maintained
3082F:	drivers/bcma/
3083F:	include/linux/bcma/
3084
3085BROADCOM STB AVS CPUFREQ DRIVER
3086M:	Markus Mayer <mmayer@broadcom.com>
3087M:	bcm-kernel-feedback-list@broadcom.com
3088L:	linux-pm@vger.kernel.org
3089S:	Maintained
3090F:	Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3091F:	drivers/cpufreq/brcmstb*
3092
3093BROADCOM STB AVS TMON DRIVER
3094M:	Markus Mayer <mmayer@broadcom.com>
3095M:	bcm-kernel-feedback-list@broadcom.com
3096L:	linux-pm@vger.kernel.org
3097S:	Maintained
3098F:	Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3099F:	drivers/thermal/broadcom/brcmstb*
3100
3101BROADCOM STB NAND FLASH DRIVER
3102M:	Brian Norris <computersforpeace@gmail.com>
3103M:	Kamal Dasu <kdasu.kdev@gmail.com>
3104L:	linux-mtd@lists.infradead.org
3105L:	bcm-kernel-feedback-list@broadcom.com
3106S:	Maintained
3107F:	drivers/mtd/nand/raw/brcmnand/
3108
3109BROADCOM STB DPFE DRIVER
3110M:	Markus Mayer <mmayer@broadcom.com>
3111M:	bcm-kernel-feedback-list@broadcom.com
3112L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3113S:	Maintained
3114F:	Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3115F:	drivers/memory/brcmstb_dpfe.c
3116
3117BROADCOM SYSTEMPORT ETHERNET DRIVER
3118M:	Florian Fainelli <f.fainelli@gmail.com>
3119L:	netdev@vger.kernel.org
3120S:	Supported
3121F:	drivers/net/ethernet/broadcom/bcmsysport.*
3122
3123BROADCOM TG3 GIGABIT ETHERNET DRIVER
3124M:	Siva Reddy Kallam <siva.kallam@broadcom.com>
3125M:	Prashant Sreedharan <prashant@broadcom.com>
3126M:	Michael Chan <mchan@broadcom.com>
3127L:	netdev@vger.kernel.org
3128S:	Supported
3129F:	drivers/net/ethernet/broadcom/tg3.*
3130
3131BROCADE BFA FC SCSI DRIVER
3132M:	Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3133M:	Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3134L:	linux-scsi@vger.kernel.org
3135S:	Supported
3136F:	drivers/scsi/bfa/
3137
3138BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3139M:	Rasesh Mody <rasesh.mody@cavium.com>
3140M:	Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
3141M:	Dept-GELinuxNICDev@cavium.com
3142L:	netdev@vger.kernel.org
3143S:	Supported
3144F:	drivers/net/ethernet/brocade/bna/
3145
3146BSG (block layer generic sg v4 driver)
3147M:	FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3148L:	linux-scsi@vger.kernel.org
3149S:	Supported
3150F:	block/bsg.c
3151F:	include/linux/bsg.h
3152F:	include/uapi/linux/bsg.h
3153
3154BT87X AUDIO DRIVER
3155M:	Clemens Ladisch <clemens@ladisch.de>
3156L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
3157T:	git git://git.alsa-project.org/alsa-kernel.git
3158S:	Maintained
3159F:	Documentation/sound/cards/bt87x.rst
3160F:	sound/pci/bt87x.c
3161
3162BT8XXGPIO DRIVER
3163M:	Michael Buesch <m@bues.ch>
3164W:	http://bu3sch.de/btgpio.php
3165S:	Maintained
3166F:	drivers/gpio/gpio-bt8xx.c
3167
3168BTRFS FILE SYSTEM
3169M:	Chris Mason <clm@fb.com>
3170M:	Josef Bacik <jbacik@fb.com>
3171M:	David Sterba <dsterba@suse.com>
3172L:	linux-btrfs@vger.kernel.org
3173W:	http://btrfs.wiki.kernel.org/
3174Q:	http://patchwork.kernel.org/project/linux-btrfs/list/
3175T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3176S:	Maintained
3177F:	Documentation/filesystems/btrfs.txt
3178F:	fs/btrfs/
3179F:	include/linux/btrfs*
3180F:	include/uapi/linux/btrfs*
3181
3182BTTV VIDEO4LINUX DRIVER
3183M:	Mauro Carvalho Chehab <mchehab@kernel.org>
3184L:	linux-media@vger.kernel.org
3185W:	https://linuxtv.org
3186T:	git git://linuxtv.org/media_tree.git
3187S:	Odd fixes
3188F:	Documentation/media/v4l-drivers/bttv*
3189F:	drivers/media/pci/bt8xx/bttv*
3190
3191BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3192M:	Chanwoo Choi <cw00.choi@samsung.com>
3193L:	linux-pm@vger.kernel.org
3194L:	linux-samsung-soc@vger.kernel.org
3195T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3196S:	Maintained
3197F:	drivers/devfreq/exynos-bus.c
3198F:	Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3199
3200BUSLOGIC SCSI DRIVER
3201M:	Khalid Aziz <khalid@gonehiking.org>
3202L:	linux-scsi@vger.kernel.org
3203S:	Maintained
3204F:	drivers/scsi/BusLogic.*
3205F:	drivers/scsi/FlashPoint.*
3206
3207C-MEDIA CMI8788 DRIVER
3208M:	Clemens Ladisch <clemens@ladisch.de>
3209L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
3210T:	git git://git.alsa-project.org/alsa-kernel.git
3211S:	Maintained
3212F:	sound/pci/oxygen/
3213
3214C6X ARCHITECTURE
3215M:	Mark Salter <msalter@redhat.com>
3216M:	Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3217L:	linux-c6x-dev@linux-c6x.org
3218W:	http://www.linux-c6x.org/wiki/index.php/Main_Page
3219S:	Maintained
3220F:	arch/c6x/
3221
3222CA8210 IEEE-802.15.4 RADIO DRIVER
3223M:	Harry Morris <h.morris@cascoda.com>
3224L:	linux-wpan@vger.kernel.org
3225W:	https://github.com/Cascoda/ca8210-linux.git
3226S:	Maintained
3227F:	drivers/net/ieee802154/ca8210.c
3228F:	Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3229
3230CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3231M:	David Howells <dhowells@redhat.com>
3232L:	linux-cachefs@redhat.com (moderated for non-subscribers)
3233S:	Supported
3234F:	Documentation/filesystems/caching/cachefiles.txt
3235F:	fs/cachefiles/
3236
3237CADENCE MIPI-CSI2 BRIDGES
3238M:	Maxime Ripard <maxime.ripard@bootlin.com>
3239L:	linux-media@vger.kernel.org
3240S:	Maintained
3241F:	Documentation/devicetree/bindings/media/cdns,*.txt
3242F:	drivers/media/platform/cadence/cdns-csi2*
3243
3244CADET FM/AM RADIO RECEIVER DRIVER
3245M:	Hans Verkuil <hverkuil@xs4all.nl>
3246L:	linux-media@vger.kernel.org
3247T:	git git://linuxtv.org/media_tree.git
3248W:	https://linuxtv.org
3249S:	Maintained
3250F:	drivers/media/radio/radio-cadet*
3251
3252CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3253M:	Jonathan Corbet <corbet@lwn.net>
3254L:	linux-media@vger.kernel.org
3255T:	git git://linuxtv.org/media_tree.git
3256S:	Maintained
3257F:	Documentation/media/v4l-drivers/cafe_ccic*
3258F:	drivers/media/platform/marvell-ccic/
3259
3260CAIF NETWORK LAYER
3261M:	Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3262L:	netdev@vger.kernel.org
3263S:	Supported
3264F:	Documentation/networking/caif/
3265F:	drivers/net/caif/
3266F:	include/uapi/linux/caif/
3267F:	include/net/caif/
3268F:	net/caif/
3269
3270CALGARY x86-64 IOMMU
3271M:	Muli Ben-Yehuda <mulix@mulix.org>
3272M:	Jon Mason <jdmason@kudzu.us>
3273L:	iommu@lists.linux-foundation.org
3274S:	Maintained
3275F:	arch/x86/kernel/pci-calgary_64.c
3276F:	arch/x86/kernel/tce_64.c
3277F:	arch/x86/include/asm/calgary.h
3278F:	arch/x86/include/asm/tce.h
3279
3280CAN NETWORK DRIVERS
3281M:	Wolfgang Grandegger <wg@grandegger.com>
3282M:	Marc Kleine-Budde <mkl@pengutronix.de>
3283L:	linux-can@vger.kernel.org
3284W:	https://github.com/linux-can
3285T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3286T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3287S:	Maintained
3288F:	Documentation/devicetree/bindings/net/can/
3289F:	drivers/net/can/
3290F:	include/linux/can/dev.h
3291F:	include/linux/can/platform/
3292F:	include/uapi/linux/can/error.h
3293F:	include/uapi/linux/can/netlink.h
3294
3295CAN NETWORK LAYER
3296M:	Oliver Hartkopp <socketcan@hartkopp.net>
3297M:	Marc Kleine-Budde <mkl@pengutronix.de>
3298L:	linux-can@vger.kernel.org
3299W:	https://github.com/linux-can
3300T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3301T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3302S:	Maintained
3303F:	Documentation/networking/can.rst
3304F:	net/can/
3305F:	include/linux/can/core.h
3306F:	include/uapi/linux/can.h
3307F:	include/uapi/linux/can/bcm.h
3308F:	include/uapi/linux/can/raw.h
3309F:	include/uapi/linux/can/gw.h
3310
3311CAPABILITIES
3312M:	Serge Hallyn <serge@hallyn.com>
3313L:	linux-security-module@vger.kernel.org
3314S:	Supported
3315F:	include/linux/capability.h
3316F:	include/uapi/linux/capability.h
3317F:	security/commoncap.c
3318F:	kernel/capability.c
3319
3320CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3321M:	Kevin Tsai <ktsai@capellamicro.com>
3322S:	Maintained
3323F:	drivers/iio/light/cm*
3324
3325CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3326M:	Christian Lamparter <chunkeey@googlemail.com>
3327L:	linux-wireless@vger.kernel.org
3328W:	http://wireless.kernel.org/en/users/Drivers/carl9170
3329S:	Maintained
3330F:	drivers/net/wireless/ath/carl9170/
3331
3332CAVIUM I2C DRIVER
3333M:	Jan Glauber <jglauber@cavium.com>
3334M:	David Daney <david.daney@cavium.com>
3335W:	http://www.cavium.com
3336S:	Supported
3337F:	drivers/i2c/busses/i2c-octeon*
3338F:	drivers/i2c/busses/i2c-thunderx*
3339
3340CAVIUM LIQUIDIO NETWORK DRIVER
3341M:	Derek Chickles <derek.chickles@caviumnetworks.com>
3342M:	Satanand Burla <satananda.burla@caviumnetworks.com>
3343M:	Felix Manlunas <felix.manlunas@caviumnetworks.com>
3344M:	Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3345L:	netdev@vger.kernel.org
3346W:	http://www.cavium.com
3347S:	Supported
3348F:	drivers/net/ethernet/cavium/liquidio/
3349
3350CAVIUM MMC DRIVER
3351M:	Jan Glauber <jglauber@cavium.com>
3352M:	David Daney <david.daney@cavium.com>
3353M:	Steven J. Hill <Steven.Hill@cavium.com>
3354W:	http://www.cavium.com
3355S:	Supported
3356F:	drivers/mmc/host/cavium*
3357
3358CAVIUM OCTEON-TX CRYPTO DRIVER
3359M:	George Cherian <george.cherian@cavium.com>
3360L:	linux-crypto@vger.kernel.org
3361W:	http://www.cavium.com
3362S:	Supported
3363F:	drivers/crypto/cavium/cpt/
3364
3365CAVIUM THUNDERX2 ARM64 SOC
3366M:	Robert Richter <rrichter@cavium.com>
3367M:	Jayachandran C <jnair@caviumnetworks.com>
3368L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3369S:	Maintained
3370F:	arch/arm64/boot/dts/cavium/thunder2-99xx*
3371F:	Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3372
3373CC2520 IEEE-802.15.4 RADIO DRIVER
3374M:	Varka Bhadram <varkabhadram@gmail.com>
3375L:	linux-wpan@vger.kernel.org
3376S:	Maintained
3377F:	drivers/net/ieee802154/cc2520.c
3378F:	include/linux/spi/cc2520.h
3379F:	Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3380
3381CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3382M:	Gilad Ben-Yossef <gilad@benyossef.com>
3383L:	linux-crypto@vger.kernel.org
3384S:	Supported
3385F:	drivers/crypto/ccree/
3386W:	https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3387
3388CEC FRAMEWORK
3389M:	Hans Verkuil <hans.verkuil@cisco.com>
3390L:	linux-media@vger.kernel.org
3391T:	git git://linuxtv.org/media_tree.git
3392W:	http://linuxtv.org
3393S:	Supported
3394F:	Documentation/media/kapi/cec-core.rst
3395F:	Documentation/media/uapi/cec
3396F:	drivers/media/cec/
3397F:	drivers/media/rc/keymaps/rc-cec.c
3398F:	include/media/cec.h
3399F:	include/media/cec-notifier.h
3400F:	include/uapi/linux/cec.h
3401F:	include/uapi/linux/cec-funcs.h
3402F:	Documentation/devicetree/bindings/media/cec.txt
3403F:	Documentation/ABI/testing/debugfs-cec-error-inj
3404
3405CEC GPIO DRIVER
3406M:	Hans Verkuil <hans.verkuil@cisco.com>
3407L:	linux-media@vger.kernel.org
3408T:	git git://linuxtv.org/media_tree.git
3409W:	http://linuxtv.org
3410S:	Supported
3411F:	drivers/media/platform/cec-gpio/
3412F:	Documentation/devicetree/bindings/media/cec-gpio.txt
3413
3414CELL BROADBAND ENGINE ARCHITECTURE
3415M:	Arnd Bergmann <arnd@arndb.de>
3416L:	linuxppc-dev@lists.ozlabs.org
3417W:	http://www.ibm.com/developerworks/power/cell/
3418S:	Supported
3419F:	arch/powerpc/include/asm/cell*.h
3420F:	arch/powerpc/include/asm/spu*.h
3421F:	arch/powerpc/include/uapi/asm/spu*.h
3422F:	arch/powerpc/oprofile/*cell*
3423F:	arch/powerpc/platforms/cell/
3424
3425CEPH COMMON CODE (LIBCEPH)
3426M:	Ilya Dryomov <idryomov@gmail.com>
3427M:	"Yan, Zheng" <zyan@redhat.com>
3428M:	Sage Weil <sage@redhat.com>
3429L:	ceph-devel@vger.kernel.org
3430W:	http://ceph.com/
3431T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3432T:	git git://github.com/ceph/ceph-client.git
3433S:	Supported
3434F:	net/ceph/
3435F:	include/linux/ceph/
3436F:	include/linux/crush/
3437
3438CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3439M:	"Yan, Zheng" <zyan@redhat.com>
3440M:	Sage Weil <sage@redhat.com>
3441M:	Ilya Dryomov <idryomov@gmail.com>
3442L:	ceph-devel@vger.kernel.org
3443W:	http://ceph.com/
3444T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3445T:	git git://github.com/ceph/ceph-client.git
3446S:	Supported
3447F:	Documentation/filesystems/ceph.txt
3448F:	fs/ceph/
3449
3450CERTIFICATE HANDLING:
3451M:	David Howells <dhowells@redhat.com>
3452M:	David Woodhouse <dwmw2@infradead.org>
3453L:	keyrings@vger.kernel.org
3454S:	Maintained
3455F:	Documentation/admin-guide/module-signing.rst
3456F:	certs/
3457F:	scripts/sign-file.c
3458F:	scripts/extract-cert.c
3459
3460CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3461L:	linux-usb@vger.kernel.org
3462S:	Orphan
3463F:	Documentation/usb/WUSB-Design-overview.txt
3464F:	Documentation/usb/wusb-cbaf
3465F:	drivers/usb/host/hwa-hc.c
3466F:	drivers/usb/host/whci/
3467F:	drivers/usb/wusbcore/
3468F:	include/linux/usb/wusb*
3469
3470CFAG12864B LCD DRIVER
3471M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3472S:	Maintained
3473F:	drivers/auxdisplay/cfag12864b.c
3474F:	include/linux/cfag12864b.h
3475
3476CFAG12864BFB LCD FRAMEBUFFER DRIVER
3477M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3478S:	Maintained
3479F:	drivers/auxdisplay/cfag12864bfb.c
3480F:	include/linux/cfag12864b.h
3481
3482802.11 (including CFG80211/NL80211)
3483M:	Johannes Berg <johannes@sipsolutions.net>
3484L:	linux-wireless@vger.kernel.org
3485W:	http://wireless.kernel.org/
3486T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3487T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3488S:	Maintained
3489F:	net/wireless/
3490F:	include/uapi/linux/nl80211.h
3491F:	include/linux/ieee80211.h
3492F:	include/net/wext.h
3493F:	include/net/cfg80211.h
3494F:	include/net/iw_handler.h
3495F:	include/net/ieee80211_radiotap.h
3496F:	Documentation/driver-api/80211/cfg80211.rst
3497F:	Documentation/networking/regulatory.txt
3498
3499CHAR and MISC DRIVERS
3500M:	Arnd Bergmann <arnd@arndb.de>
3501M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3502T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3503S:	Supported
3504F:	drivers/char/
3505F:	drivers/misc/
3506F:	include/linux/miscdevice.h
3507
3508CHECKPATCH
3509M:	Andy Whitcroft <apw@canonical.com>
3510M:	Joe Perches <joe@perches.com>
3511S:	Maintained
3512F:	scripts/checkpatch.pl
3513
3514CHINESE DOCUMENTATION
3515M:	Harry Wei <harryxiyou@gmail.com>
3516L:	xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3517L:	linux-kernel@zh-kernel.org (moderated for non-subscribers)
3518S:	Maintained
3519F:	Documentation/translations/zh_CN/
3520
3521CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3522M:	Peter Chen <Peter.Chen@nxp.com>
3523T:	git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3524L:	linux-usb@vger.kernel.org
3525S:	Maintained
3526F:	drivers/usb/chipidea/
3527
3528CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3529M:	Hans de Goede <hdegoede@redhat.com>
3530L:	linux-input@vger.kernel.org
3531S:	Maintained
3532F:	Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3533F:	drivers/input/touchscreen/chipone_icn8318.c
3534
3535CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
3536M:	Hans de Goede <hdegoede@redhat.com>
3537L:	linux-input@vger.kernel.org
3538S:	Maintained
3539F:	drivers/input/touchscreen/chipone_icn8505.c
3540
3541CHROME HARDWARE PLATFORM SUPPORT
3542M:	Benson Leung <bleung@chromium.org>
3543M:	Olof Johansson <olof@lixom.net>
3544S:	Maintained
3545T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform.git
3546F:	drivers/platform/chrome/
3547
3548CIRRUS LOGIC AUDIO CODEC DRIVERS
3549M:	Brian Austin <brian.austin@cirrus.com>
3550M:	Paul Handrigan <Paul.Handrigan@cirrus.com>
3551L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
3552S:	Maintained
3553F:	sound/soc/codecs/cs*
3554
3555CIRRUS LOGIC EP93XX ETHERNET DRIVER
3556M:	Hartley Sweeten <hsweeten@visionengravers.com>
3557L:	netdev@vger.kernel.org
3558S:	Maintained
3559F:	drivers/net/ethernet/cirrus/ep93xx_eth.c
3560
3561CISCO FCOE HBA DRIVER
3562M:	Satish Kharat <satishkh@cisco.com>
3563M:	Sesidhar Baddela <sebaddel@cisco.com>
3564M:	Karan Tilak Kumar <kartilak@cisco.com>
3565L:	linux-scsi@vger.kernel.org
3566S:	Supported
3567F:	drivers/scsi/fnic/
3568
3569CISCO SCSI HBA DRIVER
3570M:	Karan Tilak Kumar <kartilak@cisco.com>
3571M:	Sesidhar Baddela <sebaddel@cisco.com>
3572L:	linux-scsi@vger.kernel.org
3573S:	Supported
3574F:	drivers/scsi/snic/
3575
3576CISCO VIC ETHERNET NIC DRIVER
3577M:	Christian Benvenuti <benve@cisco.com>
3578M:	Govindarajulu Varadarajan <_govind@gmx.com>
3579M:	Parvi Kaustubhi <pkaustub@cisco.com>
3580S:	Supported
3581F:	drivers/net/ethernet/cisco/enic/
3582
3583CISCO VIC LOW LATENCY NIC DRIVER
3584M:	Christian Benvenuti <benve@cisco.com>
3585S:	Supported
3586F:	drivers/infiniband/hw/usnic/
3587
3588CIRRUS LOGIC MADERA CODEC DRIVERS
3589M:	Charles Keepax <ckeepax@opensource.cirrus.com>
3590M:	Richard Fitzgerald <rf@opensource.cirrus.com>
3591L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
3592L:	patches@opensource.cirrus.com
3593T:	git https://github.com/CirrusLogic/linux-drivers.git
3594W:	https://github.com/CirrusLogic/linux-drivers/wiki
3595S:	Supported
3596F:	Documentation/devicetree/bindings/mfd/madera.txt
3597F:	Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
3598F:	include/linux/mfd/madera/*
3599F:	drivers/gpio/gpio-madera*
3600F:	drivers/mfd/madera*
3601F:	drivers/mfd/cs47l*
3602F:	drivers/pinctrl/cirrus/*
3603
3604CLANG-FORMAT FILE
3605M:	Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
3606S:	Maintained
3607F:	.clang-format
3608
3609CLEANCACHE API
3610M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3611L:	linux-kernel@vger.kernel.org
3612S:	Maintained
3613F:	mm/cleancache.c
3614F:	include/linux/cleancache.h
3615
3616CLK API
3617M:	Russell King <linux@armlinux.org.uk>
3618L:	linux-clk@vger.kernel.org
3619S:	Maintained
3620F:	include/linux/clk.h
3621
3622CLOCKSOURCE, CLOCKEVENT DRIVERS
3623M:	Daniel Lezcano <daniel.lezcano@linaro.org>
3624M:	Thomas Gleixner <tglx@linutronix.de>
3625L:	linux-kernel@vger.kernel.org
3626T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3627S:	Supported
3628F:	drivers/clocksource/
3629F:	Documentation/devicetree/bindings/timer/
3630
3631CMPC ACPI DRIVER
3632M:	Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3633M:	Daniel Oliveira Nascimento <don@syst.com.br>
3634L:	platform-driver-x86@vger.kernel.org
3635S:	Supported
3636F:	drivers/platform/x86/classmate-laptop.c
3637
3638COBALT MEDIA DRIVER
3639M:	Hans Verkuil <hans.verkuil@cisco.com>
3640L:	linux-media@vger.kernel.org
3641T:	git git://linuxtv.org/media_tree.git
3642W:	https://linuxtv.org
3643S:	Supported
3644F:	drivers/media/pci/cobalt/
3645
3646COCCINELLE/Semantic Patches (SmPL)
3647M:	Julia Lawall <Julia.Lawall@lip6.fr>
3648M:	Gilles Muller <Gilles.Muller@lip6.fr>
3649M:	Nicolas Palix <nicolas.palix@imag.fr>
3650M:	Michal Marek <michal.lkml@markovi.net>
3651L:	cocci@systeme.lip6.fr (moderated for non-subscribers)
3652T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3653W:	http://coccinelle.lip6.fr/
3654S:	Supported
3655F:	Documentation/dev-tools/coccinelle.rst
3656F:	scripts/coccinelle/
3657F:	scripts/coccicheck
3658
3659CODA FILE SYSTEM
3660M:	Jan Harkes <jaharkes@cs.cmu.edu>
3661M:	coda@cs.cmu.edu
3662L:	codalist@coda.cs.cmu.edu
3663W:	http://www.coda.cs.cmu.edu/
3664S:	Maintained
3665F:	Documentation/filesystems/coda.txt
3666F:	fs/coda/
3667F:	include/linux/coda*.h
3668F:	include/uapi/linux/coda*.h
3669
3670CODA V4L2 MEM2MEM DRIVER
3671M:	Philipp Zabel <p.zabel@pengutronix.de>
3672L:	linux-media@vger.kernel.org
3673S:	Maintained
3674F:	Documentation/devicetree/bindings/media/coda.txt
3675F:	drivers/media/platform/coda/
3676
3677COMMON CLK FRAMEWORK
3678M:	Michael Turquette <mturquette@baylibre.com>
3679M:	Stephen Boyd <sboyd@kernel.org>
3680L:	linux-clk@vger.kernel.org
3681Q:	http://patchwork.kernel.org/project/linux-clk/list/
3682T:	git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3683S:	Maintained
3684F:	Documentation/devicetree/bindings/clock/
3685F:	drivers/clk/
3686X:	drivers/clk/clkdev.c
3687F:	include/linux/clk-pr*
3688F:	include/linux/clk/
3689F:	include/linux/of_clk.h
3690
3691COMMON INTERNET FILE SYSTEM (CIFS)
3692M:	Steve French <sfrench@samba.org>
3693L:	linux-cifs@vger.kernel.org
3694L:	samba-technical@lists.samba.org (moderated for non-subscribers)
3695W:	http://linux-cifs.samba.org/
3696T:	git git://git.samba.org/sfrench/cifs-2.6.git
3697S:	Supported
3698F:	Documentation/filesystems/cifs/
3699F:	fs/cifs/
3700
3701COMPACTPCI HOTPLUG CORE
3702M:	Scott Murray <scott@spiteful.org>
3703L:	linux-pci@vger.kernel.org
3704S:	Maintained
3705F:	drivers/pci/hotplug/cpci_hotplug*
3706
3707COMPACTPCI HOTPLUG GENERIC DRIVER
3708M:	Scott Murray <scott@spiteful.org>
3709L:	linux-pci@vger.kernel.org
3710S:	Maintained
3711F:	drivers/pci/hotplug/cpcihp_generic.c
3712
3713COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3714M:	Scott Murray <scott@spiteful.org>
3715L:	linux-pci@vger.kernel.org
3716S:	Maintained
3717F:	drivers/pci/hotplug/cpcihp_zt5550.*
3718
3719COMPAL LAPTOP SUPPORT
3720M:	Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3721L:	platform-driver-x86@vger.kernel.org
3722S:	Maintained
3723F:	drivers/platform/x86/compal-laptop.c
3724
3725CONEXANT ACCESSRUNNER USB DRIVER
3726L:	accessrunner-general@lists.sourceforge.net
3727W:	http://accessrunner.sourceforge.net/
3728S:	Orphan
3729F:	drivers/usb/atm/cxacru.c
3730
3731CONFIGFS
3732M:	Joel Becker <jlbec@evilplan.org>
3733M:	Christoph Hellwig <hch@lst.de>
3734T:	git git://git.infradead.org/users/hch/configfs.git
3735S:	Supported
3736F:	fs/configfs/
3737F:	include/linux/configfs.h
3738
3739CONNECTOR
3740M:	Evgeniy Polyakov <zbr@ioremap.net>
3741L:	netdev@vger.kernel.org
3742S:	Maintained
3743F:	drivers/connector/
3744
3745CONTROL GROUP (CGROUP)
3746M:	Tejun Heo <tj@kernel.org>
3747M:	Li Zefan <lizefan@huawei.com>
3748M:	Johannes Weiner <hannes@cmpxchg.org>
3749L:	cgroups@vger.kernel.org
3750T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3751S:	Maintained
3752F:	Documentation/cgroup*
3753F:	include/linux/cgroup*
3754F:	kernel/cgroup*
3755
3756CONTROL GROUP - CPUSET
3757M:	Li Zefan <lizefan@huawei.com>
3758L:	cgroups@vger.kernel.org
3759W:	http://www.bullopensource.org/cpuset/
3760W:	http://oss.sgi.com/projects/cpusets/
3761T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3762S:	Maintained
3763F:	Documentation/cgroup-v1/cpusets.txt
3764F:	include/linux/cpuset.h
3765F:	kernel/cgroup/cpuset.c
3766
3767CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3768M:	Johannes Weiner <hannes@cmpxchg.org>
3769M:	Michal Hocko <mhocko@kernel.org>
3770M:	Vladimir Davydov <vdavydov.dev@gmail.com>
3771L:	cgroups@vger.kernel.org
3772L:	linux-mm@kvack.org
3773S:	Maintained
3774F:	mm/memcontrol.c
3775F:	mm/swap_cgroup.c
3776
3777CORETEMP HARDWARE MONITORING DRIVER
3778M:	Fenghua Yu <fenghua.yu@intel.com>
3779L:	linux-hwmon@vger.kernel.org
3780S:	Maintained
3781F:	Documentation/hwmon/coretemp
3782F:	drivers/hwmon/coretemp.c
3783
3784COSA/SRP SYNC SERIAL DRIVER
3785M:	Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3786W:	http://www.fi.muni.cz/~kas/cosa/
3787S:	Maintained
3788F:	drivers/net/wan/cosa*
3789
3790CPMAC ETHERNET DRIVER
3791M:	Florian Fainelli <f.fainelli@gmail.com>
3792L:	netdev@vger.kernel.org
3793S:	Maintained
3794F:	drivers/net/ethernet/ti/cpmac.c
3795
3796CPU FREQUENCY DRIVERS
3797M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
3798M:	Viresh Kumar <viresh.kumar@linaro.org>
3799L:	linux-pm@vger.kernel.org
3800S:	Maintained
3801T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3802T:	git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3803B:	https://bugzilla.kernel.org
3804F:	Documentation/cpu-freq/
3805F:	Documentation/devicetree/bindings/cpufreq/
3806F:	drivers/cpufreq/
3807F:	include/linux/cpufreq.h
3808F:	tools/testing/selftests/cpufreq/
3809
3810CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3811M:	Viresh Kumar <viresh.kumar@linaro.org>
3812M:	Sudeep Holla <sudeep.holla@arm.com>
3813L:	linux-pm@vger.kernel.org
3814W:	http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3815S:	Maintained
3816F:	drivers/cpufreq/arm_big_little.h
3817F:	drivers/cpufreq/arm_big_little.c
3818F:	drivers/cpufreq/arm_big_little_dt.c
3819
3820CPU POWER MONITORING SUBSYSTEM
3821M:	Thomas Renninger <trenn@suse.com>
3822M:	Shuah Khan <shuah@kernel.org>
3823L:	linux-pm@vger.kernel.org
3824S:	Maintained
3825F:	tools/power/cpupower/
3826
3827CPUID/MSR DRIVER
3828M:	"H. Peter Anvin" <hpa@zytor.com>
3829S:	Maintained
3830F:	arch/x86/kernel/cpuid.c
3831F:	arch/x86/kernel/msr.c
3832
3833CPUIDLE DRIVER - ARM BIG LITTLE
3834M:	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3835M:	Daniel Lezcano <daniel.lezcano@linaro.org>
3836L:	linux-pm@vger.kernel.org
3837L:	linux-arm-kernel@lists.infradead.org
3838T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3839S:	Maintained
3840F:	drivers/cpuidle/cpuidle-big_little.c
3841
3842CPUIDLE DRIVER - ARM EXYNOS
3843M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3844M:	Daniel Lezcano <daniel.lezcano@linaro.org>
3845M:	Kukjin Kim <kgene@kernel.org>
3846L:	linux-pm@vger.kernel.org
3847L:	linux-samsung-soc@vger.kernel.org
3848S:	Supported
3849F:	drivers/cpuidle/cpuidle-exynos.c
3850F:	arch/arm/mach-exynos/pm.c
3851
3852CPUIDLE DRIVERS
3853M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
3854M:	Daniel Lezcano <daniel.lezcano@linaro.org>
3855L:	linux-pm@vger.kernel.org
3856S:	Maintained
3857T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3858B:	https://bugzilla.kernel.org
3859F:	drivers/cpuidle/*
3860F:	include/linux/cpuidle.h
3861
3862CRAMFS FILESYSTEM
3863M:	Nicolas Pitre <nico@linaro.org>
3864S:	Maintained
3865F:	Documentation/filesystems/cramfs.txt
3866F:	fs/cramfs/
3867
3868CRYPTO API
3869M:	Herbert Xu <herbert@gondor.apana.org.au>
3870M:	"David S. Miller" <davem@davemloft.net>
3871L:	linux-crypto@vger.kernel.org
3872T:	git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3873T:	git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3874S:	Maintained
3875F:	Documentation/crypto/
3876F:	Documentation/devicetree/bindings/crypto/
3877F:	arch/*/crypto/
3878F:	crypto/
3879F:	drivers/crypto/
3880F:	include/crypto/
3881F:	include/linux/crypto*
3882
3883CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3884M:	Neil Horman <nhorman@tuxdriver.com>
3885L:	linux-crypto@vger.kernel.org
3886S:	Maintained
3887F:	crypto/ansi_cprng.c
3888F:	crypto/rng.c
3889
3890CS3308 MEDIA DRIVER
3891M:	Hans Verkuil <hverkuil@xs4all.nl>
3892L:	linux-media@vger.kernel.org
3893T:	git git://linuxtv.org/media_tree.git
3894W:	http://linuxtv.org
3895S:	Odd Fixes
3896F:	drivers/media/i2c/cs3308.c
3897F:	drivers/media/i2c/cs3308.h
3898
3899CS5535 Audio ALSA driver
3900M:	Jaya Kumar <jayakumar.alsa@gmail.com>
3901S:	Maintained
3902F:	sound/pci/cs5535audio/
3903
3904CW1200 WLAN driver
3905M:	Solomon Peachy <pizza@shaftnet.org>
3906S:	Maintained
3907F:	drivers/net/wireless/st/cw1200/
3908
3909CX18 VIDEO4LINUX DRIVER
3910M:	Andy Walls <awalls@md.metrocast.net>
3911L:	ivtv-devel@ivtvdriver.org (subscribers-only)
3912L:	linux-media@vger.kernel.org
3913T:	git git://linuxtv.org/media_tree.git
3914W:	https://linuxtv.org
3915W:	http://www.ivtvdriver.org/index.php/Cx18
3916S:	Maintained
3917F:	Documentation/media/v4l-drivers/cx18*
3918F:	drivers/media/pci/cx18/
3919F:	include/uapi/linux/ivtv*
3920
3921CX2341X MPEG ENCODER HELPER MODULE
3922M:	Hans Verkuil <hverkuil@xs4all.nl>
3923L:	linux-media@vger.kernel.org
3924T:	git git://linuxtv.org/media_tree.git
3925W:	https://linuxtv.org
3926S:	Maintained
3927F:	drivers/media/common/cx2341x*
3928F:	include/media/cx2341x*
3929
3930CX24120 MEDIA DRIVER
3931M:	Jemma Denson <jdenson@gmail.com>
3932M:	Patrick Boettcher <patrick.boettcher@posteo.de>
3933L:	linux-media@vger.kernel.org
3934W:	https://linuxtv.org
3935Q:	http://patchwork.linuxtv.org/project/linux-media/list/
3936S:	Maintained
3937F:	drivers/media/dvb-frontends/cx24120*
3938
3939CX88 VIDEO4LINUX DRIVER
3940M:	Mauro Carvalho Chehab <mchehab@kernel.org>
3941L:	linux-media@vger.kernel.org
3942W:	https://linuxtv.org
3943T:	git git://linuxtv.org/media_tree.git
3944S:	Odd fixes
3945F:	Documentation/media/v4l-drivers/cx88*
3946F:	drivers/media/pci/cx88/
3947
3948CXD2820R MEDIA DRIVER
3949M:	Antti Palosaari <crope@iki.fi>
3950L:	linux-media@vger.kernel.org
3951W:	https://linuxtv.org
3952W:	http://palosaari.fi/linux/
3953Q:	http://patchwork.linuxtv.org/project/linux-media/list/
3954T:	git git://linuxtv.org/anttip/media_tree.git
3955S:	Maintained
3956F:	drivers/media/dvb-frontends/cxd2820r*
3957
3958CXGB3 ETHERNET DRIVER (CXGB3)
3959M:	Santosh Raspatur <santosh@chelsio.com>
3960L:	netdev@vger.kernel.org
3961W:	http://www.chelsio.com
3962S:	Supported
3963F:	drivers/net/ethernet/chelsio/cxgb3/
3964
3965CXGB3 ISCSI DRIVER (CXGB3I)
3966M:	Karen Xie <kxie@chelsio.com>
3967L:	linux-scsi@vger.kernel.org
3968W:	http://www.chelsio.com
3969S:	Supported
3970F:	drivers/scsi/cxgbi/cxgb3i
3971
3972CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3973M:	Steve Wise <swise@chelsio.com>
3974L:	linux-rdma@vger.kernel.org
3975W:	http://www.openfabrics.org
3976S:	Supported
3977F:	drivers/infiniband/hw/cxgb3/
3978F:	include/uapi/rdma/cxgb3-abi.h
3979
3980CXGB4 CRYPTO DRIVER (chcr)
3981M:	Harsh Jain <harsh@chelsio.com>
3982L:	linux-crypto@vger.kernel.org
3983W:	http://www.chelsio.com
3984S:	Supported
3985F:	drivers/crypto/chelsio
3986
3987CXGB4 ETHERNET DRIVER (CXGB4)
3988M:	Ganesh Goudar <ganeshgr@chelsio.com>
3989L:	netdev@vger.kernel.org
3990W:	http://www.chelsio.com
3991S:	Supported
3992F:	drivers/net/ethernet/chelsio/cxgb4/
3993
3994CXGB4 ISCSI DRIVER (CXGB4I)
3995M:	Karen Xie <kxie@chelsio.com>
3996L:	linux-scsi@vger.kernel.org
3997W:	http://www.chelsio.com
3998S:	Supported
3999F:	drivers/scsi/cxgbi/cxgb4i
4000
4001CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4002M:	Steve Wise <swise@chelsio.com>
4003L:	linux-rdma@vger.kernel.org
4004W:	http://www.openfabrics.org
4005S:	Supported
4006F:	drivers/infiniband/hw/cxgb4/
4007F:	include/uapi/rdma/cxgb4-abi.h
4008
4009CXGB4VF ETHERNET DRIVER (CXGB4VF)
4010M:	Casey Leedom <leedom@chelsio.com>
4011L:	netdev@vger.kernel.org
4012W:	http://www.chelsio.com
4013S:	Supported
4014F:	drivers/net/ethernet/chelsio/cxgb4vf/
4015
4016CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4017M:	Frederic Barrat <fbarrat@linux.vnet.ibm.com>
4018M:	Andrew Donnellan <andrew.donnellan@au1.ibm.com>
4019L:	linuxppc-dev@lists.ozlabs.org
4020S:	Supported
4021F:	arch/powerpc/platforms/powernv/pci-cxl.c
4022F:	drivers/misc/cxl/
4023F:	include/misc/cxl*
4024F:	include/uapi/misc/cxl.h
4025F:	Documentation/powerpc/cxl.txt
4026F:	Documentation/ABI/testing/sysfs-class-cxl
4027
4028CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4029M:	Manoj N. Kumar <manoj@linux.vnet.ibm.com>
4030M:	Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
4031M:	Uma Krishnan <ukrishn@linux.vnet.ibm.com>
4032L:	linux-scsi@vger.kernel.org
4033S:	Supported
4034F:	drivers/scsi/cxlflash/
4035F:	include/uapi/scsi/cxlflash_ioctls.h
4036F:	Documentation/powerpc/cxlflash.txt
4037
4038CYBERPRO FB DRIVER
4039M:	Russell King <linux@armlinux.org.uk>
4040L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4041W:	http://www.armlinux.org.uk/
4042S:	Maintained
4043F:	drivers/video/fbdev/cyber2000fb.*
4044
4045CYCLADES ASYNC MUX DRIVER
4046W:	http://www.cyclades.com/
4047S:	Orphan
4048F:	drivers/tty/cyclades.c
4049F:	include/linux/cyclades.h
4050F:	include/uapi/linux/cyclades.h
4051
4052CYCLADES PC300 DRIVER
4053W:	http://www.cyclades.com/
4054S:	Orphan
4055F:	drivers/net/wan/pc300*
4056
4057CYPRESS_FIRMWARE MEDIA DRIVER
4058M:	Antti Palosaari <crope@iki.fi>
4059L:	linux-media@vger.kernel.org
4060W:	https://linuxtv.org
4061W:	http://palosaari.fi/linux/
4062Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4063T:	git git://linuxtv.org/anttip/media_tree.git
4064S:	Maintained
4065F:	drivers/media/common/cypress_firmware*
4066
4067CYTTSP TOUCHSCREEN DRIVER
4068M:	Ferruh Yigit <fery@cypress.com>
4069L:	linux-input@vger.kernel.org
4070S:	Supported
4071F:	drivers/input/touchscreen/cyttsp*
4072F:	include/linux/input/cyttsp.h
4073
4074D-LINK DIR-685 TOUCHKEYS DRIVER
4075M:	Linus Walleij <linus.walleij@linaro.org>
4076L:	linux-input@vger.kernel.org
4077S:	Supported
4078F:	drivers/input/dlink-dir685-touchkeys.c
4079
4080DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4081M:	Joshua Kinard <kumba@gentoo.org>
4082S:	Maintained
4083F:	drivers/rtc/rtc-ds1685.c
4084F:	include/linux/rtc/ds1685.h
4085
4086DAMA SLAVE for AX.25
4087M:	Joerg Reuter <jreuter@yaina.de>
4088W:	http://yaina.de/jreuter/
4089W:	http://www.qsl.net/dl1bke/
4090L:	linux-hams@vger.kernel.org
4091S:	Maintained
4092F:	net/ax25/af_ax25.c
4093F:	net/ax25/ax25_dev.c
4094F:	net/ax25/ax25_ds_*
4095F:	net/ax25/ax25_in.c
4096F:	net/ax25/ax25_out.c
4097F:	net/ax25/ax25_timer.c
4098F:	net/ax25/sysctl_net_ax25.c
4099
4100DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4101L:	netdev@vger.kernel.org
4102S:	Orphan
4103F:	Documentation/networking/dmfe.txt
4104F:	drivers/net/ethernet/dec/tulip/dmfe.c
4105
4106DC390/AM53C974 SCSI driver
4107M:	Hannes Reinecke <hare@suse.com>
4108L:	linux-scsi@vger.kernel.org
4109S:	Maintained
4110F:	drivers/scsi/am53c974.c
4111
4112DC395x SCSI driver
4113M:	Oliver Neukum <oliver@neukum.org>
4114M:	Ali Akcaagac <aliakc@web.de>
4115M:	Jamie Lenehan <lenehan@twibble.org>
4116L:	dc395x@twibble.org
4117W:	http://twibble.org/dist/dc395x/
4118W:	http://lists.twibble.org/mailman/listinfo/dc395x/
4119S:	Maintained
4120F:	Documentation/scsi/dc395x.txt
4121F:	drivers/scsi/dc395x.*
4122
4123DCCP PROTOCOL
4124M:	Gerrit Renker <gerrit@erg.abdn.ac.uk>
4125L:	dccp@vger.kernel.org
4126W:	http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4127S:	Maintained
4128F:	include/linux/dccp.h
4129F:	include/uapi/linux/dccp.h
4130F:	include/linux/tfrc.h
4131F:	net/dccp/
4132
4133DECnet NETWORK LAYER
4134W:	http://linux-decnet.sourceforge.net
4135L:	linux-decnet-user@lists.sourceforge.net
4136S:	Orphan
4137F:	Documentation/networking/decnet.txt
4138F:	net/decnet/
4139
4140DECSTATION PLATFORM SUPPORT
4141M:	"Maciej W. Rozycki" <macro@linux-mips.org>
4142L:	linux-mips@linux-mips.org
4143W:	http://www.linux-mips.org/wiki/DECstation
4144S:	Maintained
4145F:	arch/mips/dec/
4146F:	arch/mips/include/asm/dec/
4147F:	arch/mips/include/asm/mach-dec/
4148
4149DEFXX FDDI NETWORK DRIVER
4150M:	"Maciej W. Rozycki" <macro@linux-mips.org>
4151S:	Maintained
4152F:	drivers/net/fddi/defxx.*
4153
4154DELL SMBIOS DRIVER
4155M:	Pali Rohár <pali.rohar@gmail.com>
4156M:	Mario Limonciello <mario.limonciello@dell.com>
4157L:	platform-driver-x86@vger.kernel.org
4158S:	Maintained
4159F:	drivers/platform/x86/dell-smbios.*
4160
4161DELL SMBIOS SMM DRIVER
4162M:	Mario Limonciello <mario.limonciello@dell.com>
4163L:	platform-driver-x86@vger.kernel.org
4164S:	Maintained
4165F:	drivers/platform/x86/dell-smbios-smm.c
4166
4167DELL SMBIOS WMI DRIVER
4168M:	Mario Limonciello <mario.limonciello@dell.com>
4169L:	platform-driver-x86@vger.kernel.org
4170S:	Maintained
4171F:	drivers/platform/x86/dell-smbios-wmi.c
4172F:	tools/wmi/dell-smbios-example.c
4173
4174DELL LAPTOP DRIVER
4175M:	Matthew Garrett <mjg59@srcf.ucam.org>
4176M:	Pali Rohár <pali.rohar@gmail.com>
4177L:	platform-driver-x86@vger.kernel.org
4178S:	Maintained
4179F:	drivers/platform/x86/dell-laptop.c
4180
4181DELL LAPTOP FREEFALL DRIVER
4182M:	Pali Rohár <pali.rohar@gmail.com>
4183S:	Maintained
4184F:	drivers/platform/x86/dell-smo8800.c
4185
4186DELL LAPTOP RBTN DRIVER
4187M:	Pali Rohár <pali.rohar@gmail.com>
4188S:	Maintained
4189F:	drivers/platform/x86/dell-rbtn.*
4190
4191DELL LAPTOP SMM DRIVER
4192M:	Pali Rohár <pali.rohar@gmail.com>
4193S:	Maintained
4194F:	drivers/hwmon/dell-smm-hwmon.c
4195F:	include/uapi/linux/i8k.h
4196
4197DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4198M:	Doug Warzecha <Douglas_Warzecha@dell.com>
4199S:	Maintained
4200F:	Documentation/dcdbas.txt
4201F:	drivers/firmware/dcdbas.*
4202
4203DELL WMI NOTIFICATIONS DRIVER
4204M:	Matthew Garrett <mjg59@srcf.ucam.org>
4205M:	Pali Rohár <pali.rohar@gmail.com>
4206S:	Maintained
4207F:	drivers/platform/x86/dell-wmi.c
4208
4209DELL WMI DESCRIPTOR DRIVER
4210M:	Mario Limonciello <mario.limonciello@dell.com>
4211S:	Maintained
4212F:	drivers/platform/x86/dell-wmi-descriptor.c
4213
4214DELTA ST MEDIA DRIVER
4215M:	Hugues Fruchet <hugues.fruchet@st.com>
4216L:	linux-media@vger.kernel.org
4217T:	git git://linuxtv.org/media_tree.git
4218W:	https://linuxtv.org
4219S:	Supported
4220F:	drivers/media/platform/sti/delta
4221
4222DENALI NAND DRIVER
4223M:	Masahiro Yamada <yamada.masahiro@socionext.com>
4224L:	linux-mtd@lists.infradead.org
4225S:	Supported
4226F:	drivers/mtd/nand/raw/denali*
4227
4228DESIGNWARE USB2 DRD IP DRIVER
4229M:	Minas Harutyunyan <hminas@synopsys.com>
4230L:	linux-usb@vger.kernel.org
4231T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4232S:	Maintained
4233F:	drivers/usb/dwc2/
4234
4235DESIGNWARE USB3 DRD IP DRIVER
4236M:	Felipe Balbi <balbi@kernel.org>
4237L:	linux-usb@vger.kernel.org
4238T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4239S:	Maintained
4240F:	drivers/usb/dwc3/
4241
4242DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4243M:	Andreas Klinger <ak@it-klinger.de>
4244L:	linux-iio@vger.kernel.org
4245S:	Maintained
4246F:	Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4247F:	drivers/iio/proximity/srf*.c
4248
4249DEVICE COREDUMP (DEV_COREDUMP)
4250M:	Johannes Berg <johannes@sipsolutions.net>
4251L:	linux-kernel@vger.kernel.org
4252S:	Maintained
4253F:	drivers/base/devcoredump.c
4254F:	include/linux/devcoredump.h
4255
4256DEVICE FREQUENCY (DEVFREQ)
4257M:	MyungJoo Ham <myungjoo.ham@samsung.com>
4258M:	Kyungmin Park <kyungmin.park@samsung.com>
4259R:	Chanwoo Choi <cw00.choi@samsung.com>
4260L:	linux-pm@vger.kernel.org
4261T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4262S:	Maintained
4263F:	drivers/devfreq/
4264F:	include/linux/devfreq.h
4265F:	Documentation/devicetree/bindings/devfreq/
4266
4267DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4268M:	Chanwoo Choi <cw00.choi@samsung.com>
4269L:	linux-pm@vger.kernel.org
4270T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4271S:	Supported
4272F:	drivers/devfreq/event/
4273F:	drivers/devfreq/devfreq-event.c
4274F:	include/linux/devfreq-event.h
4275F:	Documentation/devicetree/bindings/devfreq/event/
4276
4277DEVICE NUMBER REGISTRY
4278M:	Torben Mathiasen <device@lanana.org>
4279W:	http://lanana.org/docs/device-list/index.html
4280S:	Maintained
4281
4282DEVICE-MAPPER  (LVM)
4283M:	Alasdair Kergon <agk@redhat.com>
4284M:	Mike Snitzer <snitzer@redhat.com>
4285M:	dm-devel@redhat.com
4286L:	dm-devel@redhat.com
4287W:	http://sources.redhat.com/dm
4288Q:	http://patchwork.kernel.org/project/dm-devel/list/
4289T:	git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4290T:	quilt http://people.redhat.com/agk/patches/linux/editing/
4291S:	Maintained
4292F:	Documentation/device-mapper/
4293F:	drivers/md/Makefile
4294F:	drivers/md/Kconfig
4295F:	drivers/md/dm*
4296F:	drivers/md/persistent-data/
4297F:	include/linux/device-mapper.h
4298F:	include/linux/dm-*.h
4299F:	include/uapi/linux/dm-*.h
4300
4301DEVLINK
4302M:	Jiri Pirko <jiri@mellanox.com>
4303L:	netdev@vger.kernel.org
4304S:	Supported
4305F:	net/core/devlink.c
4306F:	include/net/devlink.h
4307F:	include/uapi/linux/devlink.h
4308
4309DIALOG SEMICONDUCTOR DRIVERS
4310M:	Support Opensource <support.opensource@diasemi.com>
4311W:	http://www.dialog-semiconductor.com/products
4312S:	Supported
4313F:	Documentation/hwmon/da90??
4314F:	Documentation/devicetree/bindings/mfd/da90*.txt
4315F:	Documentation/devicetree/bindings/input/da90??-onkey.txt
4316F:	Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4317F:	Documentation/devicetree/bindings/regulator/da92*.txt
4318F:	Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4319F:	Documentation/devicetree/bindings/sound/da[79]*.txt
4320F:	drivers/gpio/gpio-da90??.c
4321F:	drivers/hwmon/da90??-hwmon.c
4322F:	drivers/iio/adc/da91??-*.c
4323F:	drivers/input/misc/da90??_onkey.c
4324F:	drivers/input/touchscreen/da9052_tsi.c
4325F:	drivers/leds/leds-da90??.c
4326F:	drivers/mfd/da903x.c
4327F:	drivers/mfd/da90??-*.c
4328F:	drivers/mfd/da91??-*.c
4329F:	drivers/power/supply/da9052-battery.c
4330F:	drivers/power/supply/da91??-*.c
4331F:	drivers/regulator/da903x.c
4332F:	drivers/regulator/da9???-regulator.[ch]
4333F:	drivers/thermal/da90??-thermal.c
4334F:	drivers/rtc/rtc-da90??.c
4335F:	drivers/video/backlight/da90??_bl.c
4336F:	drivers/watchdog/da90??_wdt.c
4337F:	include/linux/mfd/da903x.h
4338F:	include/linux/mfd/da9052/
4339F:	include/linux/mfd/da9055/
4340F:	include/linux/mfd/da9062/
4341F:	include/linux/mfd/da9063/
4342F:	include/linux/mfd/da9150/
4343F:	include/linux/regulator/da9211.h
4344F:	include/sound/da[79]*.h
4345F:	sound/soc/codecs/da[79]*.[ch]
4346
4347DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4348M:	William Breathitt Gray <vilhelm.gray@gmail.com>
4349L:	linux-gpio@vger.kernel.org
4350S:	Maintained
4351F:	drivers/gpio/gpio-gpio-mm.c
4352
4353DIGI NEO AND CLASSIC PCI PRODUCTS
4354M:	Lidza Louina <lidza.louina@gmail.com>
4355M:	Mark Hounschell <markh@compro.net>
4356L:	driverdev-devel@linuxdriverproject.org
4357S:	Maintained
4358F:	drivers/staging/dgnc/
4359
4360DIOLAN U2C-12 I2C DRIVER
4361M:	Guenter Roeck <linux@roeck-us.net>
4362L:	linux-i2c@vger.kernel.org
4363S:	Maintained
4364F:	drivers/i2c/busses/i2c-diolan-u2c.c
4365
4366FILESYSTEM DIRECT ACCESS (DAX)
4367M:	Matthew Wilcox <mawilcox@microsoft.com>
4368M:	Ross Zwisler <zwisler@kernel.org>
4369M:	Jan Kara <jack@suse.cz>
4370L:	linux-fsdevel@vger.kernel.org
4371S:	Supported
4372F:	fs/dax.c
4373F:	include/linux/dax.h
4374F:	include/trace/events/fs_dax.h
4375
4376DEVICE DIRECT ACCESS (DAX)
4377M:	Dan Williams <dan.j.williams@intel.com>
4378M:	Dave Jiang <dave.jiang@intel.com>
4379M:	Ross Zwisler <zwisler@kernel.org>
4380M:	Vishal Verma <vishal.l.verma@intel.com>
4381L:	linux-nvdimm@lists.01.org
4382S:	Supported
4383F:	drivers/dax/
4384
4385DIRECTORY NOTIFICATION (DNOTIFY)
4386M:	Jan Kara <jack@suse.cz>
4387R:	Amir Goldstein <amir73il@gmail.com>
4388L:	linux-fsdevel@vger.kernel.org
4389S:	Maintained
4390F:	Documentation/filesystems/dnotify.txt
4391F:	fs/notify/dnotify/
4392F:	include/linux/dnotify.h
4393
4394DISK GEOMETRY AND PARTITION HANDLING
4395M:	Andries Brouwer <aeb@cwi.nl>
4396W:	http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4397W:	http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4398W:	http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4399S:	Maintained
4400
4401DISKQUOTA
4402M:	Jan Kara <jack@suse.com>
4403S:	Maintained
4404F:	Documentation/filesystems/quota.txt
4405F:	fs/quota/
4406F:	include/linux/quota*.h
4407F:	include/uapi/linux/quota*.h
4408
4409DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4410M:	Bernie Thompson <bernie@plugable.com>
4411L:	linux-fbdev@vger.kernel.org
4412S:	Maintained
4413W:	http://plugable.com/category/projects/udlfb/
4414F:	drivers/video/fbdev/udlfb.c
4415F:	include/video/udlfb.h
4416F:	Documentation/fb/udlfb.txt
4417
4418DISTRIBUTED LOCK MANAGER (DLM)
4419M:	Christine Caulfield <ccaulfie@redhat.com>
4420M:	David Teigland <teigland@redhat.com>
4421L:	cluster-devel@redhat.com
4422W:	http://sources.redhat.com/cluster/
4423T:	git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4424S:	Supported
4425F:	fs/dlm/
4426
4427DMA BUFFER SHARING FRAMEWORK
4428M:	Sumit Semwal <sumit.semwal@linaro.org>
4429S:	Maintained
4430L:	linux-media@vger.kernel.org
4431L:	dri-devel@lists.freedesktop.org
4432L:	linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4433F:	drivers/dma-buf/
4434F:	include/linux/dma-buf*
4435F:	include/linux/reservation.h
4436F:	include/linux/*fence.h
4437F:	Documentation/driver-api/dma-buf.rst
4438T:	git git://anongit.freedesktop.org/drm/drm-misc
4439
4440DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4441M:	Vinod Koul <vkoul@kernel.org>
4442L:	dmaengine@vger.kernel.org
4443Q:	https://patchwork.kernel.org/project/linux-dmaengine/list/
4444S:	Maintained
4445F:	drivers/dma/
4446F:	include/linux/dmaengine.h
4447F:	include/linux/of_dma.h
4448F:	Documentation/devicetree/bindings/dma/
4449F:	Documentation/driver-api/dmaengine/
4450T:	git git://git.infradead.org/users/vkoul/slave-dma.git
4451
4452DMA MAPPING HELPERS
4453M:	Christoph Hellwig <hch@lst.de>
4454M:	Marek Szyprowski <m.szyprowski@samsung.com>
4455R:	Robin Murphy <robin.murphy@arm.com>
4456L:	iommu@lists.linux-foundation.org
4457T:	git git://git.infradead.org/users/hch/dma-mapping.git
4458W:	http://git.infradead.org/users/hch/dma-mapping.git
4459S:	Supported
4460F:	kernel/dma/
4461F:	include/asm-generic/dma-mapping.h
4462F:	include/linux/dma-direct.h
4463F:	include/linux/dma-mapping.h
4464F:	include/linux/dma-noncoherent.h
4465
4466DME1737 HARDWARE MONITOR DRIVER
4467M:	Juerg Haefliger <juergh@gmail.com>
4468L:	linux-hwmon@vger.kernel.org
4469S:	Maintained
4470F:	Documentation/hwmon/dme1737
4471F:	drivers/hwmon/dme1737.c
4472
4473DMI/SMBIOS SUPPORT
4474M:	Jean Delvare <jdelvare@suse.com>
4475S:	Maintained
4476T:	quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4477F:	Documentation/ABI/testing/sysfs-firmware-dmi-tables
4478F:	drivers/firmware/dmi-id.c
4479F:	drivers/firmware/dmi_scan.c
4480F:	include/linux/dmi.h
4481
4482DOCUMENTATION
4483M:	Jonathan Corbet <corbet@lwn.net>
4484L:	linux-doc@vger.kernel.org
4485S:	Maintained
4486F:	Documentation/
4487F:	scripts/kernel-doc
4488X:	Documentation/ABI/
4489X:	Documentation/devicetree/
4490X:	Documentation/acpi
4491X:	Documentation/power
4492X:	Documentation/spi
4493X:	Documentation/media
4494T:	git git://git.lwn.net/linux.git docs-next
4495
4496DOCUMENTATION/ITALIAN
4497M:	Federico Vaga <federico.vaga@vaga.pv.it>
4498L:	linux-doc@vger.kernel.org
4499S:	Maintained
4500F:	Documentation/translations/it_IT
4501
4502DONGWOON DW9714 LENS VOICE COIL DRIVER
4503M:	Sakari Ailus <sakari.ailus@linux.intel.com>
4504L:	linux-media@vger.kernel.org
4505T:	git git://linuxtv.org/media_tree.git
4506S:	Maintained
4507F:	drivers/media/i2c/dw9714.c
4508
4509DONGWOON DW9807 LENS VOICE COIL DRIVER
4510M:	Sakari Ailus <sakari.ailus@linux.intel.com>
4511L:	linux-media@vger.kernel.org
4512T:	git git://linuxtv.org/media_tree.git
4513S:	Maintained
4514F:	drivers/media/i2c/dw9807.c
4515
4516DOUBLETALK DRIVER
4517M:	"James R. Van Zandt" <jrv@vanzandt.mv.com>
4518L:	blinux-list@redhat.com
4519S:	Maintained
4520F:	drivers/char/dtlk.c
4521F:	include/linux/dtlk.h
4522
4523DPAA2 DATAPATH I/O (DPIO) DRIVER
4524M:	Roy Pledge <Roy.Pledge@nxp.com>
4525L:	linux-kernel@vger.kernel.org
4526S:	Maintained
4527F:	drivers/soc/fsl/dpio
4528
4529DPAA2 ETHERNET DRIVER
4530M:	Ioana Radulescu <ruxandra.radulescu@nxp.com>
4531L:	netdev@vger.kernel.org
4532S:	Maintained
4533F:	drivers/net/ethernet/freescale/dpaa2
4534
4535DPAA2 ETHERNET SWITCH DRIVER
4536M:	Ioana Radulescu <ruxandra.radulescu@nxp.com>
4537M:	Ioana Ciornei <ioana.ciornei@nxp.com>
4538L:	linux-kernel@vger.kernel.org
4539S:	Maintained
4540F:	drivers/staging/fsl-dpaa2/ethsw
4541
4542DPAA2 PTP CLOCK DRIVER
4543M:	Yangbo Lu <yangbo.lu@nxp.com>
4544L:	linux-kernel@vger.kernel.org
4545S:	Maintained
4546F:	drivers/staging/fsl-dpaa2/rtc
4547
4548DPT_I2O SCSI RAID DRIVER
4549M:	Adaptec OEM Raid Solutions <aacraid@microsemi.com>
4550L:	linux-scsi@vger.kernel.org
4551W:	http://www.adaptec.com/
4552S:	Maintained
4553F:	drivers/scsi/dpt*
4554F:	drivers/scsi/dpt/
4555
4556DRBD DRIVER
4557M:	Philipp Reisner <philipp.reisner@linbit.com>
4558M:	Lars Ellenberg <lars.ellenberg@linbit.com>
4559L:	drbd-dev@lists.linbit.com
4560W:	http://www.drbd.org
4561T:	git git://git.linbit.com/linux-drbd.git
4562T:	git git://git.linbit.com/drbd-8.4.git
4563S:	Supported
4564F:	drivers/block/drbd/
4565F:	lib/lru_cache.c
4566F:	Documentation/blockdev/drbd/
4567
4568DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4569M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4570R:	"Rafael J. Wysocki" <rafael@kernel.org>
4571T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4572S:	Supported
4573F:	Documentation/kobject.txt
4574F:	drivers/base/
4575F:	fs/debugfs/
4576F:	fs/sysfs/
4577F:	include/linux/debugfs.h
4578F:	include/linux/kobj*
4579F:	lib/kobj*
4580
4581DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
4582M:	Kevin Hilman <khilman@kernel.org>
4583M:	Nishanth Menon <nm@ti.com>
4584S:	Maintained
4585F:	drivers/power/avs/
4586F:	include/linux/power/smartreflex.h
4587L:	linux-pm@vger.kernel.org
4588
4589DRM DRIVER FOR ARM PL111 CLCD
4590M:	Eric Anholt <eric@anholt.net>
4591T:	git git://anongit.freedesktop.org/drm/drm-misc
4592S:	Supported
4593F:	drivers/gpu/drm/pl111/
4594
4595DRM DRIVER FOR ARM VERSATILE TFT PANELS
4596M:	Linus Walleij <linus.walleij@linaro.org>
4597T:	git git://anongit.freedesktop.org/drm/drm-misc
4598S:	Maintained
4599F:	drivers/gpu/drm/panel/panel-arm-versatile.c
4600F:	Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
4601
4602DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4603M:	Dave Airlie <airlied@redhat.com>
4604S:	Odd Fixes
4605F:	drivers/gpu/drm/ast/
4606
4607DRM DRIVER FOR BOCHS VIRTUAL GPU
4608M:	Gerd Hoffmann <kraxel@redhat.com>
4609L:	virtualization@lists.linux-foundation.org
4610T:	git git://anongit.freedesktop.org/drm/drm-misc
4611S:	Maintained
4612F:	drivers/gpu/drm/bochs/
4613
4614DRM DRIVER FOR FARADAY TVE200 TV ENCODER
4615M:	Linus Walleij <linus.walleij@linaro.org>
4616T:	git git://anongit.freedesktop.org/drm/drm-misc
4617S:	Maintained
4618F:	drivers/gpu/drm/tve200/
4619
4620DRM DRIVER FOR ILITEK ILI9225 PANELS
4621M:	David Lechner <david@lechnology.com>
4622S:	Maintained
4623F:	drivers/gpu/drm/tinydrm/ili9225.c
4624F:	Documentation/devicetree/bindings/display/ilitek,ili9225.txt
4625
4626DRM DRIVER FOR INTEL I810 VIDEO CARDS
4627S:	Orphan / Obsolete
4628F:	drivers/gpu/drm/i810/
4629F:	include/uapi/drm/i810_drm.h
4630
4631DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4632S:	Orphan / Obsolete
4633F:	drivers/gpu/drm/mga/
4634F:	include/uapi/drm/mga_drm.h
4635
4636DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4637M:	Dave Airlie <airlied@redhat.com>
4638S:	Odd Fixes
4639F:	drivers/gpu/drm/mgag200/
4640
4641DRM DRIVER FOR MI0283QT
4642M:	Noralf Trønnes <noralf@tronnes.org>
4643S:	Maintained
4644F:	drivers/gpu/drm/tinydrm/mi0283qt.c
4645F:	Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
4646
4647DRM DRIVER FOR MSM ADRENO GPU
4648M:	Rob Clark <robdclark@gmail.com>
4649L:	linux-arm-msm@vger.kernel.org
4650L:	dri-devel@lists.freedesktop.org
4651L:	freedreno@lists.freedesktop.org
4652T:	git git://people.freedesktop.org/~robclark/linux
4653S:	Maintained
4654F:	drivers/gpu/drm/msm/
4655F:	include/uapi/drm/msm_drm.h
4656F:	Documentation/devicetree/bindings/display/msm/
4657
4658DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4659M:	Ben Skeggs <bskeggs@redhat.com>
4660L:	dri-devel@lists.freedesktop.org
4661L:	nouveau@lists.freedesktop.org
4662T:	git git://github.com/skeggsb/linux
4663S:	Supported
4664F:	drivers/gpu/drm/nouveau/
4665F:	include/uapi/drm/nouveau_drm.h
4666
4667DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
4668M:	Noralf Trønnes <noralf@tronnes.org>
4669S:	Maintained
4670F:	drivers/gpu/drm/tinydrm/repaper.c
4671F:	Documentation/devicetree/bindings/display/repaper.txt
4672
4673DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4674M:	Dave Airlie <airlied@redhat.com>
4675M:	Gerd Hoffmann <kraxel@redhat.com>
4676L:	virtualization@lists.linux-foundation.org
4677T:	git git://anongit.freedesktop.org/drm/drm-misc
4678S:	Obsolete
4679W:	https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
4680F:	drivers/gpu/drm/cirrus/
4681
4682DRM DRIVER FOR QXL VIRTUAL GPU
4683M:	Dave Airlie <airlied@redhat.com>
4684M:	Gerd Hoffmann <kraxel@redhat.com>
4685L:	virtualization@lists.linux-foundation.org
4686T:	git git://anongit.freedesktop.org/drm/drm-misc
4687S:	Maintained
4688F:	drivers/gpu/drm/qxl/
4689F:	include/uapi/drm/qxl_drm.h
4690
4691DRM DRIVER FOR RAGE 128 VIDEO CARDS
4692S:	Orphan / Obsolete
4693F:	drivers/gpu/drm/r128/
4694F:	include/uapi/drm/r128_drm.h
4695
4696DRM DRIVER FOR SAVAGE VIDEO CARDS
4697S:	Orphan / Obsolete
4698F:	drivers/gpu/drm/savage/
4699F:	include/uapi/drm/savage_drm.h
4700
4701DRM DRIVER FOR SIS VIDEO CARDS
4702S:	Orphan / Obsolete
4703F:	drivers/gpu/drm/sis/
4704F:	include/uapi/drm/sis_drm.h
4705
4706DRM DRIVER FOR SITRONIX ST7586 PANELS
4707M:	David Lechner <david@lechnology.com>
4708S:	Maintained
4709F:	drivers/gpu/drm/tinydrm/st7586.c
4710F:	Documentation/devicetree/bindings/display/sitronix,st7586.txt
4711
4712DRM DRIVER FOR SITRONIX ST7735R PANELS
4713M:	David Lechner <david@lechnology.com>
4714S:	Maintained
4715F:	drivers/gpu/drm/tinydrm/st7735r.c
4716F:	Documentation/devicetree/bindings/display/sitronix,st7735r.txt
4717
4718DRM DRIVER FOR TDFX VIDEO CARDS
4719S:	Orphan / Obsolete
4720F:	drivers/gpu/drm/tdfx/
4721
4722DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4723M:	Dave Airlie <airlied@redhat.com>
4724S:	Odd Fixes
4725F:	drivers/gpu/drm/udl/
4726
4727DRM DRIVER FOR VMWARE VIRTUAL GPU
4728M:	"VMware Graphics" <linux-graphics-maintainer@vmware.com>
4729M:	Sinclair Yeh <syeh@vmware.com>
4730M:	Thomas Hellstrom <thellstrom@vmware.com>
4731L:	dri-devel@lists.freedesktop.org
4732T:	git git://people.freedesktop.org/~syeh/repos_linux
4733T:	git git://people.freedesktop.org/~thomash/linux
4734S:	Supported
4735F:	drivers/gpu/drm/vmwgfx/
4736F:	include/uapi/drm/vmwgfx_drm.h
4737
4738DRM DRIVERS
4739M:	David Airlie <airlied@linux.ie>
4740L:	dri-devel@lists.freedesktop.org
4741T:	git git://anongit.freedesktop.org/drm/drm
4742B:	https://bugs.freedesktop.org/
4743C:	irc://chat.freenode.net/dri-devel
4744S:	Maintained
4745F:	drivers/gpu/drm/
4746F:	drivers/gpu/vga/
4747F:	Documentation/devicetree/bindings/display/
4748F:	Documentation/devicetree/bindings/gpu/
4749F:	Documentation/gpu/
4750F:	include/drm/
4751F:	include/uapi/drm/
4752F:	include/linux/vga*
4753
4754DRM DRIVERS AND MISC GPU PATCHES
4755M:	Gustavo Padovan <gustavo@padovan.org>
4756M:	Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
4757M:	Sean Paul <sean@poorly.run>
4758W:	https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
4759S:	Maintained
4760T:	git git://anongit.freedesktop.org/drm/drm-misc
4761F:	Documentation/gpu/
4762F:	drivers/gpu/vga/
4763F:	drivers/gpu/drm/*
4764F:	include/drm/drm*
4765F:	include/uapi/drm/drm*
4766F:	include/linux/vga*
4767
4768DRM DRIVERS FOR ALLWINNER A10
4769M:	Maxime Ripard  <maxime.ripard@bootlin.com>
4770L:	dri-devel@lists.freedesktop.org
4771S:	Supported
4772F:	drivers/gpu/drm/sun4i/
4773F:	Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4774T:	git git://anongit.freedesktop.org/drm/drm-misc
4775
4776DRM DRIVERS FOR AMLOGIC SOCS
4777M:	Neil Armstrong <narmstrong@baylibre.com>
4778L:	dri-devel@lists.freedesktop.org
4779L:	linux-amlogic@lists.infradead.org
4780W:	http://linux-meson.com/
4781S:	Supported
4782F:	drivers/gpu/drm/meson/
4783F:	Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
4784F:	Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
4785F:	Documentation/gpu/meson.rst
4786T:	git git://anongit.freedesktop.org/drm/drm-misc
4787
4788DRM DRIVERS FOR ATMEL HLCDC
4789M:	Boris Brezillon <boris.brezillon@bootlin.com>
4790L:	dri-devel@lists.freedesktop.org
4791S:	Supported
4792F:	drivers/gpu/drm/atmel-hlcdc/
4793F:	Documentation/devicetree/bindings/display/atmel/
4794T:	git git://anongit.freedesktop.org/drm/drm-misc
4795
4796DRM DRIVERS FOR BRIDGE CHIPS
4797M:	Archit Taneja <architt@codeaurora.org>
4798M:	Andrzej Hajda <a.hajda@samsung.com>
4799R:	Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
4800S:	Maintained
4801T:	git git://anongit.freedesktop.org/drm/drm-misc
4802F:	drivers/gpu/drm/bridge/
4803
4804DRM DRIVERS FOR EXYNOS
4805M:	Inki Dae <inki.dae@samsung.com>
4806M:	Joonyoung Shim <jy0922.shim@samsung.com>
4807M:	Seung-Woo Kim <sw0312.kim@samsung.com>
4808M:	Kyungmin Park <kyungmin.park@samsung.com>
4809L:	dri-devel@lists.freedesktop.org
4810T:	git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4811S:	Supported
4812F:	drivers/gpu/drm/exynos/
4813F:	include/uapi/drm/exynos_drm.h
4814F:	Documentation/devicetree/bindings/display/exynos/
4815
4816DRM DRIVERS FOR FREESCALE DCU
4817M:	Stefan Agner <stefan@agner.ch>
4818M:	Alison Wang <alison.wang@nxp.com>
4819L:	dri-devel@lists.freedesktop.org
4820S:	Supported
4821F:	drivers/gpu/drm/fsl-dcu/
4822F:	Documentation/devicetree/bindings/display/fsl,dcu.txt
4823F:	Documentation/devicetree/bindings/display/fsl,tcon.txt
4824F:	Documentation/devicetree/bindings/display/panel/nec,nl4827hc19-05b.txt
4825
4826DRM DRIVERS FOR FREESCALE IMX
4827M:	Philipp Zabel <p.zabel@pengutronix.de>
4828L:	dri-devel@lists.freedesktop.org
4829S:	Maintained
4830F:	drivers/gpu/drm/imx/
4831F:	drivers/gpu/ipu-v3/
4832F:	Documentation/devicetree/bindings/display/imx/
4833
4834DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4835M:	Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4836L:	dri-devel@lists.freedesktop.org
4837T:	git git://github.com/patjak/drm-gma500
4838S:	Maintained
4839F:	drivers/gpu/drm/gma500/
4840
4841DRM DRIVERS FOR HISILICON
4842M:	Xinliang Liu <z.liuxinliang@hisilicon.com>
4843M:	Rongrong Zou <zourongrong@gmail.com>
4844R:	Xinwei Kong <kong.kongxinwei@hisilicon.com>
4845R:	Chen Feng <puck.chen@hisilicon.com>
4846L:	dri-devel@lists.freedesktop.org
4847T:	git git://github.com/xin3liang/linux.git
4848S:	Maintained
4849F:	drivers/gpu/drm/hisilicon/
4850F:	Documentation/devicetree/bindings/display/hisilicon/
4851
4852DRM DRIVERS FOR MEDIATEK
4853M:	CK Hu <ck.hu@mediatek.com>
4854M:	Philipp Zabel <p.zabel@pengutronix.de>
4855L:	dri-devel@lists.freedesktop.org
4856S:	Supported
4857F:	drivers/gpu/drm/mediatek/
4858F:	Documentation/devicetree/bindings/display/mediatek/
4859
4860DRM DRIVERS FOR NVIDIA TEGRA
4861M:	Thierry Reding <thierry.reding@gmail.com>
4862L:	dri-devel@lists.freedesktop.org
4863L:	linux-tegra@vger.kernel.org
4864T:	git git://anongit.freedesktop.org/tegra/linux.git
4865S:	Supported
4866F:	drivers/gpu/drm/tegra/
4867F:	drivers/gpu/host1x/
4868F:	include/linux/host1x.h
4869F:	include/uapi/drm/tegra_drm.h
4870F:	Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4871
4872DRM DRIVERS FOR RENESAS
4873M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4874L:	dri-devel@lists.freedesktop.org
4875L:	linux-renesas-soc@vger.kernel.org
4876T:	git git://linuxtv.org/pinchartl/fbdev
4877S:	Supported
4878F:	drivers/gpu/drm/rcar-du/
4879F:	drivers/gpu/drm/shmobile/
4880F:	include/linux/platform_data/shmob_drm.h
4881F:	Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
4882F:	Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
4883F:	Documentation/devicetree/bindings/display/renesas,du.txt
4884
4885DRM DRIVERS FOR ROCKCHIP
4886M:	Sandy Huang <hjc@rock-chips.com>
4887M:	Heiko Stübner <heiko@sntech.de>
4888L:	dri-devel@lists.freedesktop.org
4889S:	Maintained
4890F:	drivers/gpu/drm/rockchip/
4891F:	Documentation/devicetree/bindings/display/rockchip/
4892T:	git git://anongit.freedesktop.org/drm/drm-misc
4893
4894DRM DRIVERS FOR STI
4895M:	Benjamin Gaignard <benjamin.gaignard@linaro.org>
4896M:	Vincent Abriou <vincent.abriou@st.com>
4897L:	dri-devel@lists.freedesktop.org
4898T:	git git://anongit.freedesktop.org/drm/drm-misc
4899S:	Maintained
4900F:	drivers/gpu/drm/sti
4901F:	Documentation/devicetree/bindings/display/st,stih4xx.txt
4902
4903DRM DRIVERS FOR STM
4904M:	Yannick Fertre <yannick.fertre@st.com>
4905M:	Philippe Cornu <philippe.cornu@st.com>
4906M:	Benjamin Gaignard <benjamin.gaignard@linaro.org>
4907M:	Vincent Abriou <vincent.abriou@st.com>
4908L:	dri-devel@lists.freedesktop.org
4909T:	git git://anongit.freedesktop.org/drm/drm-misc
4910S:	Maintained
4911F:	drivers/gpu/drm/stm
4912F:	Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
4913
4914DRM DRIVERS FOR TI LCDC
4915M:	Jyri Sarha <jsarha@ti.com>
4916R:	Tomi Valkeinen <tomi.valkeinen@ti.com>
4917L:	dri-devel@lists.freedesktop.org
4918S:	Maintained
4919F:	drivers/gpu/drm/tilcdc/
4920F:	Documentation/devicetree/bindings/display/tilcdc/
4921
4922DRM DRIVERS FOR TI OMAP
4923M:	Tomi Valkeinen <tomi.valkeinen@ti.com>
4924L:	dri-devel@lists.freedesktop.org
4925S:	Maintained
4926F:	drivers/gpu/drm/omapdrm/
4927F:	Documentation/devicetree/bindings/display/ti/
4928
4929DRM DRIVERS FOR V3D
4930M:	Eric Anholt <eric@anholt.net>
4931S:	Supported
4932F:	drivers/gpu/drm/v3d/
4933F:	include/uapi/drm/v3d_drm.h
4934F:	Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
4935T:	git git://anongit.freedesktop.org/drm/drm-misc
4936
4937DRM DRIVERS FOR VC4
4938M:	Eric Anholt <eric@anholt.net>
4939T:	git git://github.com/anholt/linux
4940S:	Supported
4941F:	drivers/gpu/drm/vc4/
4942F:	include/uapi/drm/vc4_drm.h
4943F:	Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4944T:	git git://anongit.freedesktop.org/drm/drm-misc
4945
4946DRM DRIVERS FOR VIVANTE GPU IP
4947M:	Lucas Stach <l.stach@pengutronix.de>
4948R:	Russell King <linux+etnaviv@armlinux.org.uk>
4949R:	Christian Gmeiner <christian.gmeiner@gmail.com>
4950L:	etnaviv@lists.freedesktop.org
4951L:	dri-devel@lists.freedesktop.org
4952S:	Maintained
4953F:	drivers/gpu/drm/etnaviv/
4954F:	include/uapi/drm/etnaviv_drm.h
4955F:	Documentation/devicetree/bindings/display/etnaviv/
4956
4957DRM DRIVERS FOR ZTE ZX
4958M:	Shawn Guo <shawnguo@kernel.org>
4959L:	dri-devel@lists.freedesktop.org
4960S:	Maintained
4961F:	drivers/gpu/drm/zte/
4962F:	Documentation/devicetree/bindings/display/zte,vou.txt
4963T:	git git://anongit.freedesktop.org/drm/drm-misc
4964
4965DRM PANEL DRIVERS
4966M:	Thierry Reding <thierry.reding@gmail.com>
4967L:	dri-devel@lists.freedesktop.org
4968T:	git git://anongit.freedesktop.org/drm/drm-misc
4969S:	Maintained
4970F:	drivers/gpu/drm/drm_panel.c
4971F:	drivers/gpu/drm/panel/
4972F:	include/drm/drm_panel.h
4973F:	Documentation/devicetree/bindings/display/panel/
4974
4975DRM TINYDRM DRIVERS
4976M:	Noralf Trønnes <noralf@tronnes.org>
4977W:	https://github.com/notro/tinydrm/wiki/Development
4978T:	git git://anongit.freedesktop.org/drm/drm-misc
4979S:	Maintained
4980F:	drivers/gpu/drm/tinydrm/
4981F:	include/drm/tinydrm/
4982
4983DRM DRIVERS FOR XEN
4984M:	Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
4985T:	git git://anongit.freedesktop.org/drm/drm-misc
4986L:	dri-devel@lists.freedesktop.org
4987L:	xen-devel@lists.xen.org
4988S:	Supported
4989F:	drivers/gpu/drm/xen/
4990F:	Documentation/gpu/xen-front.rst
4991
4992DRM TTM SUBSYSTEM
4993M:	Christian Koenig <christian.koenig@amd.com>
4994M:	Huang Rui <ray.huang@amd.com>
4995M:	Junwei Zhang <Jerry.Zhang@amd.com>
4996T:	git git://people.freedesktop.org/~agd5f/linux
4997S:	Maintained
4998L:	dri-devel@lists.freedesktop.org
4999F:	include/drm/ttm/
5000F:	drivers/gpu/drm/ttm/
5001
5002DSBR100 USB FM RADIO DRIVER
5003M:	Alexey Klimov <klimov.linux@gmail.com>
5004L:	linux-media@vger.kernel.org
5005T:	git git://linuxtv.org/media_tree.git
5006S:	Maintained
5007F:	drivers/media/radio/dsbr100.c
5008
5009DSCC4 DRIVER
5010M:	Francois Romieu <romieu@fr.zoreil.com>
5011L:	netdev@vger.kernel.org
5012S:	Maintained
5013F:	drivers/net/wan/dscc4.c
5014
5015DT3155 MEDIA DRIVER
5016M:	Hans Verkuil <hverkuil@xs4all.nl>
5017L:	linux-media@vger.kernel.org
5018T:	git git://linuxtv.org/media_tree.git
5019W:	https://linuxtv.org
5020S:	Odd Fixes
5021F:	drivers/media/pci/dt3155/
5022
5023DVB_USB_AF9015 MEDIA DRIVER
5024M:	Antti Palosaari <crope@iki.fi>
5025L:	linux-media@vger.kernel.org
5026W:	https://linuxtv.org
5027W:	http://palosaari.fi/linux/
5028Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5029T:	git git://linuxtv.org/anttip/media_tree.git
5030S:	Maintained
5031F:	drivers/media/usb/dvb-usb-v2/af9015*
5032
5033DVB_USB_AF9035 MEDIA DRIVER
5034M:	Antti Palosaari <crope@iki.fi>
5035L:	linux-media@vger.kernel.org
5036W:	https://linuxtv.org
5037W:	http://palosaari.fi/linux/
5038Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5039T:	git git://linuxtv.org/anttip/media_tree.git
5040S:	Maintained
5041F:	drivers/media/usb/dvb-usb-v2/af9035*
5042
5043DVB_USB_ANYSEE MEDIA DRIVER
5044M:	Antti Palosaari <crope@iki.fi>
5045L:	linux-media@vger.kernel.org
5046W:	https://linuxtv.org
5047W:	http://palosaari.fi/linux/
5048Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5049T:	git git://linuxtv.org/anttip/media_tree.git
5050S:	Maintained
5051F:	drivers/media/usb/dvb-usb-v2/anysee*
5052
5053DVB_USB_AU6610 MEDIA DRIVER
5054M:	Antti Palosaari <crope@iki.fi>
5055L:	linux-media@vger.kernel.org
5056W:	https://linuxtv.org
5057W:	http://palosaari.fi/linux/
5058Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5059T:	git git://linuxtv.org/anttip/media_tree.git
5060S:	Maintained
5061F:	drivers/media/usb/dvb-usb-v2/au6610*
5062
5063DVB_USB_CE6230 MEDIA DRIVER
5064M:	Antti Palosaari <crope@iki.fi>
5065L:	linux-media@vger.kernel.org
5066W:	https://linuxtv.org
5067W:	http://palosaari.fi/linux/
5068Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5069T:	git git://linuxtv.org/anttip/media_tree.git
5070S:	Maintained
5071F:	drivers/media/usb/dvb-usb-v2/ce6230*
5072
5073DVB_USB_CXUSB MEDIA DRIVER
5074M:	Michael Krufky <mkrufky@linuxtv.org>
5075L:	linux-media@vger.kernel.org
5076W:	https://linuxtv.org
5077W:	http://github.com/mkrufky
5078Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5079T:	git git://linuxtv.org/media_tree.git
5080S:	Maintained
5081F:	drivers/media/usb/dvb-usb/cxusb*
5082
5083DVB_USB_EC168 MEDIA DRIVER
5084M:	Antti Palosaari <crope@iki.fi>
5085L:	linux-media@vger.kernel.org
5086W:	https://linuxtv.org
5087W:	http://palosaari.fi/linux/
5088Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5089T:	git git://linuxtv.org/anttip/media_tree.git
5090S:	Maintained
5091F:	drivers/media/usb/dvb-usb-v2/ec168*
5092
5093DVB_USB_GL861 MEDIA DRIVER
5094M:	Antti Palosaari <crope@iki.fi>
5095L:	linux-media@vger.kernel.org
5096W:	https://linuxtv.org
5097Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5098T:	git git://linuxtv.org/anttip/media_tree.git
5099S:	Maintained
5100F:	drivers/media/usb/dvb-usb-v2/gl861*
5101
5102DVB_USB_MXL111SF MEDIA DRIVER
5103M:	Michael Krufky <mkrufky@linuxtv.org>
5104L:	linux-media@vger.kernel.org
5105W:	https://linuxtv.org
5106W:	http://github.com/mkrufky
5107Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5108T:	git git://linuxtv.org/mkrufky/mxl111sf.git
5109S:	Maintained
5110F:	drivers/media/usb/dvb-usb-v2/mxl111sf*
5111
5112DVB_USB_RTL28XXU MEDIA DRIVER
5113M:	Antti Palosaari <crope@iki.fi>
5114L:	linux-media@vger.kernel.org
5115W:	https://linuxtv.org
5116W:	http://palosaari.fi/linux/
5117Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5118T:	git git://linuxtv.org/anttip/media_tree.git
5119S:	Maintained
5120F:	drivers/media/usb/dvb-usb-v2/rtl28xxu*
5121
5122DVB_USB_V2 MEDIA DRIVER
5123M:	Antti Palosaari <crope@iki.fi>
5124L:	linux-media@vger.kernel.org
5125W:	https://linuxtv.org
5126W:	http://palosaari.fi/linux/
5127Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5128T:	git git://linuxtv.org/anttip/media_tree.git
5129S:	Maintained
5130F:	drivers/media/usb/dvb-usb-v2/dvb_usb*
5131F:	drivers/media/usb/dvb-usb-v2/usb_urb.c
5132
5133DYNAMIC DEBUG
5134M:	Jason Baron <jbaron@akamai.com>
5135S:	Maintained
5136F:	lib/dynamic_debug.c
5137F:	include/linux/dynamic_debug.h
5138
5139DYNAMIC INTERRUPT MODERATION
5140M:	Tal Gilboa <talgi@mellanox.com>
5141S:	Maintained
5142F:	include/linux/net_dim.h
5143
5144DZ DECSTATION DZ11 SERIAL DRIVER
5145M:	"Maciej W. Rozycki" <macro@linux-mips.org>
5146S:	Maintained
5147F:	drivers/tty/serial/dz.*
5148
5149E3X0 POWER BUTTON DRIVER
5150M:	Moritz Fischer <moritz.fischer@ettus.com>
5151L:	usrp-users@lists.ettus.com
5152W:	http://www.ettus.com
5153S:	Supported
5154F:	drivers/input/misc/e3x0-button.c
5155F:	Documentation/devicetree/bindings/input/e3x0-button.txt
5156
5157E4000 MEDIA DRIVER
5158M:	Antti Palosaari <crope@iki.fi>
5159L:	linux-media@vger.kernel.org
5160W:	https://linuxtv.org
5161W:	http://palosaari.fi/linux/
5162Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5163T:	git git://linuxtv.org/anttip/media_tree.git
5164S:	Maintained
5165F:	drivers/media/tuners/e4000*
5166
5167EARTH_PT1 MEDIA DRIVER
5168M:	Akihiro Tsukada <tskd08@gmail.com>
5169L:	linux-media@vger.kernel.org
5170S:	Odd Fixes
5171F:	drivers/media/pci/pt1/
5172
5173EARTH_PT3 MEDIA DRIVER
5174M:	Akihiro Tsukada <tskd08@gmail.com>
5175L:	linux-media@vger.kernel.org
5176S:	Odd Fixes
5177F:	drivers/media/pci/pt3/
5178
5179EC100 MEDIA DRIVER
5180M:	Antti Palosaari <crope@iki.fi>
5181L:	linux-media@vger.kernel.org
5182W:	https://linuxtv.org
5183W:	http://palosaari.fi/linux/
5184Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5185T:	git git://linuxtv.org/anttip/media_tree.git
5186S:	Maintained
5187F:	drivers/media/dvb-frontends/ec100*
5188
5189ECRYPT FILE SYSTEM
5190M:	Tyler Hicks <tyhicks@canonical.com>
5191L:	ecryptfs@vger.kernel.org
5192W:	http://ecryptfs.org
5193W:	https://launchpad.net/ecryptfs
5194T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5195S:	Supported
5196F:	Documentation/filesystems/ecryptfs.txt
5197F:	fs/ecryptfs/
5198
5199EDAC-AMD64
5200M:	Borislav Petkov <bp@alien8.de>
5201L:	linux-edac@vger.kernel.org
5202S:	Maintained
5203F:	drivers/edac/amd64_edac*
5204
5205EDAC-CALXEDA
5206M:	Robert Richter <rric@kernel.org>
5207L:	linux-edac@vger.kernel.org
5208S:	Maintained
5209F:	drivers/edac/highbank*
5210
5211EDAC-CAVIUM OCTEON
5212M:	Ralf Baechle <ralf@linux-mips.org>
5213M:	David Daney <david.daney@cavium.com>
5214L:	linux-edac@vger.kernel.org
5215L:	linux-mips@linux-mips.org
5216S:	Supported
5217F:	drivers/edac/octeon_edac*
5218
5219EDAC-CAVIUM THUNDERX
5220M:	David Daney <david.daney@cavium.com>
5221M:	Jan Glauber <jglauber@cavium.com>
5222L:	linux-edac@vger.kernel.org
5223S:	Supported
5224F:	drivers/edac/thunderx_edac*
5225
5226EDAC-CORE
5227M:	Borislav Petkov <bp@alien8.de>
5228M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5229L:	linux-edac@vger.kernel.org
5230T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
5231T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
5232S:	Supported
5233F:	Documentation/admin-guide/ras.rst
5234F:	Documentation/driver-api/edac.rst
5235F:	drivers/edac/
5236F:	include/linux/edac.h
5237
5238EDAC-E752X
5239M:	Mark Gross <mark.gross@intel.com>
5240L:	linux-edac@vger.kernel.org
5241S:	Maintained
5242F:	drivers/edac/e752x_edac.c
5243
5244EDAC-E7XXX
5245L:	linux-edac@vger.kernel.org
5246S:	Maintained
5247F:	drivers/edac/e7xxx_edac.c
5248
5249EDAC-FSL_DDR
5250M:	York Sun <york.sun@nxp.com>
5251L:	linux-edac@vger.kernel.org
5252S:	Maintained
5253F:	drivers/edac/fsl_ddr_edac.*
5254
5255EDAC-GHES
5256M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5257L:	linux-edac@vger.kernel.org
5258S:	Maintained
5259F:	drivers/edac/ghes_edac.c
5260
5261EDAC-I3000
5262L:	linux-edac@vger.kernel.org
5263S:	Orphan
5264F:	drivers/edac/i3000_edac.c
5265
5266EDAC-I5000
5267L:	linux-edac@vger.kernel.org
5268S:	Maintained
5269F:	drivers/edac/i5000_edac.c
5270
5271EDAC-I5400
5272M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5273L:	linux-edac@vger.kernel.org
5274S:	Maintained
5275F:	drivers/edac/i5400_edac.c
5276
5277EDAC-I7300
5278M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5279L:	linux-edac@vger.kernel.org
5280S:	Maintained
5281F:	drivers/edac/i7300_edac.c
5282
5283EDAC-I7CORE
5284M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5285L:	linux-edac@vger.kernel.org
5286S:	Maintained
5287F:	drivers/edac/i7core_edac.c
5288
5289EDAC-I82443BXGX
5290M:	Tim Small <tim@buttersideup.com>
5291L:	linux-edac@vger.kernel.org
5292S:	Maintained
5293F:	drivers/edac/i82443bxgx_edac.c
5294
5295EDAC-I82975X
5296M:	Ranganathan Desikan <ravi@jetztechnologies.com>
5297M:	"Arvind R." <arvino55@gmail.com>
5298L:	linux-edac@vger.kernel.org
5299S:	Maintained
5300F:	drivers/edac/i82975x_edac.c
5301
5302EDAC-IE31200
5303M:	Jason Baron <jbaron@akamai.com>
5304L:	linux-edac@vger.kernel.org
5305S:	Maintained
5306F:	drivers/edac/ie31200_edac.c
5307
5308EDAC-MPC85XX
5309M:	Johannes Thumshirn <morbidrsa@gmail.com>
5310L:	linux-edac@vger.kernel.org
5311S:	Maintained
5312F:	drivers/edac/mpc85xx_edac.[ch]
5313
5314EDAC-PASEMI
5315M:	Egor Martovetsky <egor@pasemi.com>
5316L:	linux-edac@vger.kernel.org
5317S:	Maintained
5318F:	drivers/edac/pasemi_edac.c
5319
5320EDAC-PND2
5321M:	Tony Luck <tony.luck@intel.com>
5322L:	linux-edac@vger.kernel.org
5323S:	Maintained
5324F:	drivers/edac/pnd2_edac.[ch]
5325
5326EDAC-R82600
5327M:	Tim Small <tim@buttersideup.com>
5328L:	linux-edac@vger.kernel.org
5329S:	Maintained
5330F:	drivers/edac/r82600_edac.c
5331
5332EDAC-SBRIDGE
5333M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5334L:	linux-edac@vger.kernel.org
5335S:	Maintained
5336F:	drivers/edac/sb_edac.c
5337
5338EDAC-SKYLAKE
5339M:	Tony Luck <tony.luck@intel.com>
5340L:	linux-edac@vger.kernel.org
5341S:	Maintained
5342F:	drivers/edac/skx_edac.c
5343
5344EDAC-TI
5345M:	Tero Kristo <t-kristo@ti.com>
5346L:	linux-edac@vger.kernel.org
5347S:	Maintained
5348F:	drivers/edac/ti_edac.c
5349
5350EDIROL UA-101/UA-1000 DRIVER
5351M:	Clemens Ladisch <clemens@ladisch.de>
5352L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
5353T:	git git://git.alsa-project.org/alsa-kernel.git
5354S:	Maintained
5355F:	sound/usb/misc/ua101.c
5356
5357EFI TEST DRIVER
5358L:	linux-efi@vger.kernel.org
5359M:	Ivan Hu <ivan.hu@canonical.com>
5360M:	Ard Biesheuvel <ard.biesheuvel@linaro.org>
5361S:	Maintained
5362F:	drivers/firmware/efi/test/
5363
5364EFI VARIABLE FILESYSTEM
5365M:	Matthew Garrett <matthew.garrett@nebula.com>
5366M:	Jeremy Kerr <jk@ozlabs.org>
5367M:	Ard Biesheuvel <ard.biesheuvel@linaro.org>
5368T:	git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5369L:	linux-efi@vger.kernel.org
5370S:	Maintained
5371F:	fs/efivarfs/
5372
5373EFIFB FRAMEBUFFER DRIVER
5374L:	linux-fbdev@vger.kernel.org
5375M:	Peter Jones <pjones@redhat.com>
5376S:	Maintained
5377F:	drivers/video/fbdev/efifb.c
5378
5379EFS FILESYSTEM
5380W:	http://aeschi.ch.eu.org/efs/
5381S:	Orphan
5382F:	fs/efs/
5383
5384EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
5385M:	Douglas Miller <dougmill@linux.vnet.ibm.com>
5386L:	netdev@vger.kernel.org
5387S:	Maintained
5388F:	drivers/net/ethernet/ibm/ehea/
5389
5390EM28XX VIDEO4LINUX DRIVER
5391M:	Mauro Carvalho Chehab <mchehab@kernel.org>
5392L:	linux-media@vger.kernel.org
5393W:	https://linuxtv.org
5394T:	git git://linuxtv.org/media_tree.git
5395S:	Maintained
5396F:	drivers/media/usb/em28xx/
5397F:	Documentation/media/v4l-drivers/em28xx*
5398
5399EMBEDDED LINUX
5400M:	Paul Gortmaker <paul.gortmaker@windriver.com>
5401M:	Matt Mackall <mpm@selenic.com>
5402M:	David Woodhouse <dwmw2@infradead.org>
5403L:	linux-embedded@vger.kernel.org
5404S:	Maintained
5405
5406Emulex 10Gbps iSCSI - OneConnect DRIVER
5407M:	Subbu Seetharaman <subbu.seetharaman@broadcom.com>
5408M:	Ketan Mukadam <ketan.mukadam@broadcom.com>
5409M:	Jitendra Bhivare <jitendra.bhivare@broadcom.com>
5410L:	linux-scsi@vger.kernel.org
5411W:	http://www.broadcom.com
5412S:	Supported
5413F:	drivers/scsi/be2iscsi/
5414
5415Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
5416M:	Sathya Perla <sathya.perla@broadcom.com>
5417M:	Ajit Khaparde <ajit.khaparde@broadcom.com>
5418M:	Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
5419M:	Somnath Kotur <somnath.kotur@broadcom.com>
5420L:	netdev@vger.kernel.org
5421W:	http://www.emulex.com
5422S:	Supported
5423F:	drivers/net/ethernet/emulex/benet/
5424
5425EMULEX ONECONNECT ROCE DRIVER
5426M:	Selvin Xavier <selvin.xavier@broadcom.com>
5427M:	Devesh Sharma <devesh.sharma@broadcom.com>
5428L:	linux-rdma@vger.kernel.org
5429W:	http://www.broadcom.com
5430S:	Odd Fixes
5431F:	drivers/infiniband/hw/ocrdma/
5432F:	include/uapi/rdma/ocrdma-abi.h
5433
5434EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
5435M:	James Smart <james.smart@broadcom.com>
5436M:	Dick Kennedy <dick.kennedy@broadcom.com>
5437L:	linux-scsi@vger.kernel.org
5438W:	http://www.broadcom.com
5439S:	Supported
5440F:	drivers/scsi/lpfc/
5441
5442ENE CB710 FLASH CARD READER DRIVER
5443M:	Michał Mirosław <mirq-linux@rere.qmqm.pl>
5444S:	Maintained
5445F:	drivers/misc/cb710/
5446F:	drivers/mmc/host/cb710-mmc.*
5447F:	include/linux/cb710.h
5448
5449ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
5450M:	Maxim Levitsky <maximlevitsky@gmail.com>
5451S:	Maintained
5452F:	drivers/media/rc/ene_ir.*
5453
5454EPSON S1D13XXX FRAMEBUFFER DRIVER
5455M:	Kristoffer Ericson <kristoffer.ericson@gmail.com>
5456S:	Maintained
5457T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
5458F:	drivers/video/fbdev/s1d13xxxfb.c
5459F:	include/video/s1d13xxxfb.h
5460
5461ERRSEQ ERROR TRACKING INFRASTRUCTURE
5462M:	Jeff Layton <jlayton@kernel.org>
5463S:	Maintained
5464F:	lib/errseq.c
5465F:	include/linux/errseq.h
5466
5467ET131X NETWORK DRIVER
5468M:	Mark Einon <mark.einon@gmail.com>
5469S:	Odd Fixes
5470F:	drivers/net/ethernet/agere/
5471
5472ETHERNET BRIDGE
5473M:	Stephen Hemminger <stephen@networkplumber.org>
5474L:	bridge@lists.linux-foundation.org (moderated for non-subscribers)
5475L:	netdev@vger.kernel.org
5476W:	http://www.linuxfoundation.org/en/Net:Bridge
5477S:	Maintained
5478F:	include/linux/netfilter_bridge/
5479F:	net/bridge/
5480
5481ETHERNET PHY LIBRARY
5482M:	Andrew Lunn <andrew@lunn.ch>
5483M:	Florian Fainelli <f.fainelli@gmail.com>
5484L:	netdev@vger.kernel.org
5485S:	Maintained
5486F:	Documentation/ABI/testing/sysfs-bus-mdio
5487F:	Documentation/devicetree/bindings/net/mdio*
5488F:	Documentation/networking/phy.txt
5489F:	drivers/net/phy/
5490F:	drivers/of/of_mdio.c
5491F:	drivers/of/of_net.c
5492F:	include/linux/*mdio*.h
5493F:	include/linux/of_net.h
5494F:	include/linux/phy.h
5495F:	include/linux/phy_fixed.h
5496F:	include/linux/platform_data/mdio-bcm-unimac.h
5497F:	include/trace/events/mdio.h
5498F:	include/uapi/linux/mdio.h
5499F:	include/uapi/linux/mii.h
5500
5501EXT2 FILE SYSTEM
5502M:	Jan Kara <jack@suse.com>
5503L:	linux-ext4@vger.kernel.org
5504S:	Maintained
5505F:	Documentation/filesystems/ext2.txt
5506F:	fs/ext2/
5507F:	include/linux/ext2*
5508
5509EXT4 FILE SYSTEM
5510M:	"Theodore Ts'o" <tytso@mit.edu>
5511M:	Andreas Dilger <adilger.kernel@dilger.ca>
5512L:	linux-ext4@vger.kernel.org
5513W:	http://ext4.wiki.kernel.org
5514Q:	http://patchwork.ozlabs.org/project/linux-ext4/list/
5515T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5516S:	Maintained
5517F:	Documentation/filesystems/ext4.txt
5518F:	fs/ext4/
5519
5520Extended Verification Module (EVM)
5521M:	Mimi Zohar <zohar@linux.vnet.ibm.com>
5522L:	linux-integrity@vger.kernel.org
5523S:	Supported
5524F:	security/integrity/evm/
5525
5526EXTENSIBLE FIRMWARE INTERFACE (EFI)
5527M:	Ard Biesheuvel <ard.biesheuvel@linaro.org>
5528L:	linux-efi@vger.kernel.org
5529T:	git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5530S:	Maintained
5531F:	Documentation/efi-stub.txt
5532F:	arch/*/kernel/efi.c
5533F:	arch/x86/boot/compressed/eboot.[ch]
5534F:	arch/*/include/asm/efi.h
5535F:	arch/x86/platform/efi/
5536F:	drivers/firmware/efi/
5537F:	include/linux/efi*.h
5538F:	arch/arm/boot/compressed/efi-header.S
5539F:	arch/arm64/kernel/efi-entry.S
5540
5541EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5542M:	MyungJoo Ham <myungjoo.ham@samsung.com>
5543M:	Chanwoo Choi <cw00.choi@samsung.com>
5544L:	linux-kernel@vger.kernel.org
5545T:	git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
5546S:	Maintained
5547F:	drivers/extcon/
5548F:	include/linux/extcon/
5549F:	include/linux/extcon.h
5550F:	Documentation/extcon/
5551F:	Documentation/devicetree/bindings/extcon/
5552
5553EXYNOS DP DRIVER
5554M:	Jingoo Han <jingoohan1@gmail.com>
5555L:	dri-devel@lists.freedesktop.org
5556S:	Maintained
5557F:	drivers/gpu/drm/exynos/exynos_dp*
5558
5559EXYNOS SYSMMU (IOMMU) driver
5560M:	Marek Szyprowski <m.szyprowski@samsung.com>
5561L:	iommu@lists.linux-foundation.org
5562S:	Maintained
5563F:	drivers/iommu/exynos-iommu.c
5564
5565EZchip NPS platform support
5566M:	Vineet Gupta <vgupta@synopsys.com>
5567M:	Ofer Levi <oferle@mellanox.com>
5568S:	Supported
5569F:	arch/arc/plat-eznps
5570F:	arch/arc/boot/dts/eznps.dts
5571
5572F2FS FILE SYSTEM
5573M:	Jaegeuk Kim <jaegeuk@kernel.org>
5574M:	Chao Yu <yuchao0@huawei.com>
5575L:	linux-f2fs-devel@lists.sourceforge.net
5576W:	https://f2fs.wiki.kernel.org/
5577T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5578S:	Maintained
5579F:	Documentation/filesystems/f2fs.txt
5580F:	Documentation/ABI/testing/sysfs-fs-f2fs
5581F:	fs/f2fs/
5582F:	include/linux/f2fs_fs.h
5583F:	include/trace/events/f2fs.h
5584
5585F71805F HARDWARE MONITORING DRIVER
5586M:	Jean Delvare <jdelvare@suse.com>
5587L:	linux-hwmon@vger.kernel.org
5588S:	Maintained
5589F:	Documentation/hwmon/f71805f
5590F:	drivers/hwmon/f71805f.c
5591
5592FADDR2LINE
5593M:	Josh Poimboeuf <jpoimboe@redhat.com>
5594S:	Maintained
5595F:	scripts/faddr2line
5596
5597FAILOVER MODULE
5598M:	Sridhar Samudrala <sridhar.samudrala@intel.com>
5599L:	netdev@vger.kernel.org
5600S:	Supported
5601F:	net/core/failover.c
5602F:	include/net/failover.h
5603F:	Documentation/networking/failover.rst
5604
5605FANOTIFY
5606M:	Jan Kara <jack@suse.cz>
5607R:	Amir Goldstein <amir73il@gmail.com>
5608L:	linux-fsdevel@vger.kernel.org
5609S:	Maintained
5610F:	fs/notify/fanotify/
5611F:	include/linux/fanotify.h
5612F:	include/uapi/linux/fanotify.h
5613
5614FARSYNC SYNCHRONOUS DRIVER
5615M:	Kevin Curtis <kevin.curtis@farsite.co.uk>
5616W:	http://www.farsite.co.uk/
5617S:	Supported
5618F:	drivers/net/wan/farsync.*
5619
5620FAULT INJECTION SUPPORT
5621M:	Akinobu Mita <akinobu.mita@gmail.com>
5622S:	Supported
5623F:	Documentation/fault-injection/
5624F:	lib/fault-inject.c
5625
5626FBTFT Framebuffer drivers
5627M:	Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5628S:	Maintained
5629F:	drivers/staging/fbtft/
5630
5631FC0011 TUNER DRIVER
5632M:	Michael Buesch <m@bues.ch>
5633L:	linux-media@vger.kernel.org
5634S:	Maintained
5635F:	drivers/media/tuners/fc0011.h
5636F:	drivers/media/tuners/fc0011.c
5637
5638FC2580 MEDIA DRIVER
5639M:	Antti Palosaari <crope@iki.fi>
5640L:	linux-media@vger.kernel.org
5641W:	https://linuxtv.org
5642W:	http://palosaari.fi/linux/
5643Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5644T:	git git://linuxtv.org/anttip/media_tree.git
5645S:	Maintained
5646F:	drivers/media/tuners/fc2580*
5647
5648FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
5649M:	Johannes Thumshirn <jth@kernel.org>
5650L:	linux-scsi@vger.kernel.org
5651W:	www.Open-FCoE.org
5652S:	Supported
5653F:	drivers/scsi/libfc/
5654F:	drivers/scsi/fcoe/
5655F:	include/scsi/fc/
5656F:	include/scsi/libfc.h
5657F:	include/scsi/libfcoe.h
5658F:	include/uapi/scsi/fc/
5659
5660FILE LOCKING (flock() and fcntl()/lockf())
5661M:	Jeff Layton <jlayton@kernel.org>
5662M:	"J. Bruce Fields" <bfields@fieldses.org>
5663L:	linux-fsdevel@vger.kernel.org
5664S:	Maintained
5665F:	include/linux/fcntl.h
5666F:	include/uapi/linux/fcntl.h
5667F:	fs/fcntl.c
5668F:	fs/locks.c
5669
5670FILESYSTEMS (VFS and infrastructure)
5671M:	Alexander Viro <viro@zeniv.linux.org.uk>
5672L:	linux-fsdevel@vger.kernel.org
5673S:	Maintained
5674F:	fs/*
5675F:	include/linux/fs.h
5676F:	include/uapi/linux/fs.h
5677
5678FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5679M:	Riku Voipio <riku.voipio@iki.fi>
5680L:	linux-hwmon@vger.kernel.org
5681S:	Maintained
5682F:	drivers/hwmon/f75375s.c
5683F:	include/linux/f75375s.h
5684
5685FIREWIRE AUDIO DRIVERS
5686M:	Clemens Ladisch <clemens@ladisch.de>
5687L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
5688T:	git git://git.alsa-project.org/alsa-kernel.git
5689S:	Maintained
5690F:	sound/firewire/
5691
5692FIREWIRE MEDIA DRIVERS (firedtv)
5693M:	Stefan Richter <stefanr@s5r6.in-berlin.de>
5694L:	linux-media@vger.kernel.org
5695L:	linux1394-devel@lists.sourceforge.net
5696T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
5697S:	Maintained
5698F:	drivers/media/firewire/
5699
5700FIREWIRE SBP-2 TARGET
5701M:	Chris Boot <bootc@bootc.net>
5702L:	linux-scsi@vger.kernel.org
5703L:	target-devel@vger.kernel.org
5704L:	linux1394-devel@lists.sourceforge.net
5705T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
5706S:	Maintained
5707F:	drivers/target/sbp/
5708
5709FIREWIRE SUBSYSTEM
5710M:	Stefan Richter <stefanr@s5r6.in-berlin.de>
5711L:	linux1394-devel@lists.sourceforge.net
5712W:	http://ieee1394.wiki.kernel.org/
5713T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
5714S:	Maintained
5715F:	drivers/firewire/
5716F:	include/linux/firewire.h
5717F:	include/uapi/linux/firewire*.h
5718F:	tools/firewire/
5719
5720FIRMWARE LOADER (request_firmware)
5721M:	Luis R. Rodriguez <mcgrof@kernel.org>
5722L:	linux-kernel@vger.kernel.org
5723S:	Maintained
5724F:	Documentation/firmware_class/
5725F:	drivers/base/firmware_loader/
5726F:	include/linux/firmware.h
5727
5728FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
5729M:	Joshua Morris <josh.h.morris@us.ibm.com>
5730M:	Philip Kelleher <pjk1939@linux.vnet.ibm.com>
5731S:	Maintained
5732F:	drivers/block/rsxx/
5733
5734FLOPPY DRIVER
5735M:	Jiri Kosina <jikos@kernel.org>
5736T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
5737S:	Odd fixes
5738F:	drivers/block/floppy.c
5739
5740FMC SUBSYSTEM
5741M:	Alessandro Rubini <rubini@gnudd.com>
5742W:	http://www.ohwr.org/projects/fmc-bus
5743S:	Supported
5744F:	drivers/fmc/
5745F:	include/linux/fmc*.h
5746F:	include/linux/ipmi-fru.h
5747K:	fmc_d.*register
5748
5749FPGA MANAGER FRAMEWORK
5750M:	Alan Tull <atull@kernel.org>
5751M:	Moritz Fischer <mdf@kernel.org>
5752L:	linux-fpga@vger.kernel.org
5753S:	Maintained
5754T:	git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
5755Q:	http://patchwork.kernel.org/project/linux-fpga/list/
5756F:	Documentation/fpga/
5757F:	Documentation/driver-api/fpga/
5758F:	Documentation/devicetree/bindings/fpga/
5759F:	drivers/fpga/
5760F:	include/linux/fpga/
5761W:	http://www.rocketboards.org
5762
5763FPGA DFL DRIVERS
5764M:	Wu Hao <hao.wu@intel.com>
5765L:	linux-fpga@vger.kernel.org
5766S:	Maintained
5767F:	Documentation/fpga/dfl.txt
5768F:	include/uapi/linux/fpga-dfl.h
5769F:	drivers/fpga/dfl*
5770
5771FPU EMULATOR
5772M:	Bill Metzenthen <billm@melbpc.org.au>
5773W:	http://floatingpoint.sourceforge.net/emulator/index.html
5774S:	Maintained
5775F:	arch/x86/math-emu/
5776
5777FRAME RELAY DLCI/FRAD (Sangoma drivers too)
5778L:	netdev@vger.kernel.org
5779S:	Orphan
5780F:	drivers/net/wan/dlci.c
5781F:	drivers/net/wan/sdla.c
5782
5783FRAMEBUFFER LAYER
5784M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5785L:	dri-devel@lists.freedesktop.org
5786L:	linux-fbdev@vger.kernel.org
5787T:	git git://github.com/bzolnier/linux.git
5788Q:	http://patchwork.kernel.org/project/linux-fbdev/list/
5789S:	Maintained
5790F:	Documentation/fb/
5791F:	drivers/video/
5792F:	include/video/
5793F:	include/linux/fb.h
5794F:	include/uapi/video/
5795F:	include/uapi/linux/fb.h
5796
5797FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
5798M:	Horia Geantă <horia.geanta@nxp.com>
5799M:	Aymen Sghaier <aymen.sghaier@nxp.com>
5800L:	linux-crypto@vger.kernel.org
5801S:	Maintained
5802F:	drivers/crypto/caam/
5803F:	Documentation/devicetree/bindings/crypto/fsl-sec4.txt
5804
5805FREESCALE DIU FRAMEBUFFER DRIVER
5806M:	Timur Tabi <timur@kernel.org>
5807L:	linux-fbdev@vger.kernel.org
5808S:	Maintained
5809F:	drivers/video/fbdev/fsl-diu-fb.*
5810
5811FREESCALE DMA DRIVER
5812M:	Li Yang <leoyang.li@nxp.com>
5813M:	Zhang Wei <zw@zh-kernel.org>
5814L:	linuxppc-dev@lists.ozlabs.org
5815S:	Maintained
5816F:	drivers/dma/fsldma.*
5817
5818FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5819M:	Claudiu Manoil <claudiu.manoil@nxp.com>
5820L:	netdev@vger.kernel.org
5821S:	Maintained
5822F:	drivers/net/ethernet/freescale/gianfar*
5823F:	Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5824
5825FREESCALE GPMI NAND DRIVER
5826M:	Han Xu <han.xu@nxp.com>
5827L:	linux-mtd@lists.infradead.org
5828S:	Maintained
5829F:	drivers/mtd/nand/raw/gpmi-nand/*
5830
5831FREESCALE I2C CPM DRIVER
5832M:	Jochen Friedrich <jochen@scram.de>
5833L:	linuxppc-dev@lists.ozlabs.org
5834L:	linux-i2c@vger.kernel.org
5835S:	Maintained
5836F:	drivers/i2c/busses/i2c-cpm.c
5837
5838FREESCALE IMX / MXC FEC DRIVER
5839M:	Fugang Duan <fugang.duan@nxp.com>
5840L:	netdev@vger.kernel.org
5841S:	Maintained
5842F:	drivers/net/ethernet/freescale/fec_main.c
5843F:	drivers/net/ethernet/freescale/fec_ptp.c
5844F:	drivers/net/ethernet/freescale/fec.h
5845F:	Documentation/devicetree/bindings/net/fsl-fec.txt
5846
5847FREESCALE IMX / MXC FRAMEBUFFER DRIVER
5848M:	Sascha Hauer <s.hauer@pengutronix.de>
5849R:	Pengutronix Kernel Team <kernel@pengutronix.de>
5850L:	linux-fbdev@vger.kernel.org
5851L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5852S:	Maintained
5853F:	include/linux/platform_data/video-imxfb.h
5854F:	drivers/video/fbdev/imxfb.c
5855
5856FREESCALE QORIQ DPAA ETHERNET DRIVER
5857M:	Madalin Bucur <madalin.bucur@nxp.com>
5858L:	netdev@vger.kernel.org
5859S:	Maintained
5860F:	drivers/net/ethernet/freescale/dpaa
5861
5862FREESCALE QORIQ DPAA FMAN DRIVER
5863M:	Madalin Bucur <madalin.bucur@nxp.com>
5864L:	netdev@vger.kernel.org
5865S:	Maintained
5866F:	drivers/net/ethernet/freescale/fman
5867F:	Documentation/devicetree/bindings/net/fsl-fman.txt
5868
5869FREESCALE QORIQ PTP CLOCK DRIVER
5870M:	Yangbo Lu <yangbo.lu@nxp.com>
5871L:	netdev@vger.kernel.org
5872S:	Maintained
5873F:	drivers/ptp/ptp_qoriq.c
5874F:	include/linux/fsl/ptp_qoriq.h
5875F:	Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
5876
5877FREESCALE QUAD SPI DRIVER
5878M:	Han Xu <han.xu@nxp.com>
5879L:	linux-mtd@lists.infradead.org
5880S:	Maintained
5881F:	drivers/mtd/spi-nor/fsl-quadspi.c
5882
5883FREESCALE QUICC ENGINE LIBRARY
5884M:	Qiang Zhao <qiang.zhao@nxp.com>
5885L:	linuxppc-dev@lists.ozlabs.org
5886S:	Maintained
5887F:	drivers/soc/fsl/qe/
5888F:	include/soc/fsl/*qe*.h
5889F:	include/soc/fsl/*ucc*.h
5890
5891FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5892M:	Li Yang <leoyang.li@nxp.com>
5893L:	netdev@vger.kernel.org
5894L:	linuxppc-dev@lists.ozlabs.org
5895S:	Maintained
5896F:	drivers/net/ethernet/freescale/ucc_geth*
5897
5898FREESCALE QUICC ENGINE UCC HDLC DRIVER
5899M:	Zhao Qiang <qiang.zhao@nxp.com>
5900L:	netdev@vger.kernel.org
5901L:	linuxppc-dev@lists.ozlabs.org
5902S:	Maintained
5903F:	drivers/net/wan/fsl_ucc_hdlc*
5904
5905FREESCALE QUICC ENGINE UCC UART DRIVER
5906M:	Timur Tabi <timur@kernel.org>
5907L:	linuxppc-dev@lists.ozlabs.org
5908S:	Maintained
5909F:	drivers/tty/serial/ucc_uart.c
5910
5911FREESCALE SOC DRIVERS
5912M:	Li Yang <leoyang.li@nxp.com>
5913L:	linuxppc-dev@lists.ozlabs.org
5914L:	linux-arm-kernel@lists.infradead.org
5915S:	Maintained
5916F:	Documentation/devicetree/bindings/soc/fsl/
5917F:	drivers/soc/fsl/
5918F:	include/linux/fsl/
5919
5920FREESCALE SOC FS_ENET DRIVER
5921M:	Pantelis Antoniou <pantelis.antoniou@gmail.com>
5922L:	linuxppc-dev@lists.ozlabs.org
5923L:	netdev@vger.kernel.org
5924S:	Maintained
5925F:	drivers/net/ethernet/freescale/fs_enet/
5926F:	include/linux/fs_enet_pd.h
5927
5928FREESCALE SOC SOUND DRIVERS
5929M:	Timur Tabi <timur@kernel.org>
5930M:	Nicolin Chen <nicoleotsuka@gmail.com>
5931M:	Xiubo Li <Xiubo.Lee@gmail.com>
5932R:	Fabio Estevam <fabio.estevam@nxp.com>
5933L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
5934L:	linuxppc-dev@lists.ozlabs.org
5935S:	Maintained
5936F:	sound/soc/fsl/fsl*
5937F:	sound/soc/fsl/imx*
5938F:	sound/soc/fsl/mpc8610_hpcd.c
5939
5940FREESCALE USB PERIPHERAL DRIVERS
5941M:	Li Yang <leoyang.li@nxp.com>
5942L:	linux-usb@vger.kernel.org
5943L:	linuxppc-dev@lists.ozlabs.org
5944S:	Maintained
5945F:	drivers/usb/gadget/udc/fsl*
5946
5947FREEVXFS FILESYSTEM
5948M:	Christoph Hellwig <hch@infradead.org>
5949W:	ftp://ftp.openlinux.org/pub/people/hch/vxfs
5950S:	Maintained
5951F:	fs/freevxfs/
5952
5953FREEZER
5954M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
5955M:	Pavel Machek <pavel@ucw.cz>
5956L:	linux-pm@vger.kernel.org
5957S:	Supported
5958F:	Documentation/power/freezing-of-tasks.txt
5959F:	include/linux/freezer.h
5960F:	kernel/freezer.c
5961
5962FRONTSWAP API
5963M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
5964L:	linux-kernel@vger.kernel.org
5965S:	Maintained
5966F:	mm/frontswap.c
5967F:	include/linux/frontswap.h
5968
5969FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5970M:	David Howells <dhowells@redhat.com>
5971L:	linux-cachefs@redhat.com (moderated for non-subscribers)
5972S:	Supported
5973F:	Documentation/filesystems/caching/
5974F:	fs/fscache/
5975F:	include/linux/fscache*.h
5976
5977FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5978M:	Theodore Y. Ts'o <tytso@mit.edu>
5979M:	Jaegeuk Kim <jaegeuk@kernel.org>
5980L:	linux-fscrypt@vger.kernel.org
5981Q:	https://patchwork.kernel.org/project/linux-fscrypt/list/
5982T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git
5983S:	Supported
5984F:	fs/crypto/
5985F:	include/linux/fscrypt*.h
5986F:	Documentation/filesystems/fscrypt.rst
5987
5988FSI-ATTACHED I2C DRIVER
5989M:	Eddie James <eajames@linux.vnet.ibm.com>
5990L:	linux-i2c@vger.kernel.org
5991L:	openbmc@lists.ozlabs.org (moderated for non-subscribers)
5992S:	Maintained
5993F:	drivers/i2c/busses/i2c-fsi.c
5994F:	Documentation/devicetree/bindings/i2c/i2c-fsi.txt
5995
5996FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
5997M:	Jan Kara <jack@suse.cz>
5998R:	Amir Goldstein <amir73il@gmail.com>
5999L:	linux-fsdevel@vger.kernel.org
6000S:	Maintained
6001F:	fs/notify/
6002F:	include/linux/fsnotify*.h
6003
6004FUJITSU LAPTOP EXTRAS
6005M:	Jonathan Woithe <jwoithe@just42.net>
6006L:	platform-driver-x86@vger.kernel.org
6007S:	Maintained
6008F:	drivers/platform/x86/fujitsu-laptop.c
6009
6010FUJITSU M-5MO LS CAMERA ISP DRIVER
6011M:	Kyungmin Park <kyungmin.park@samsung.com>
6012M:	Heungjun Kim <riverful.kim@samsung.com>
6013L:	linux-media@vger.kernel.org
6014S:	Maintained
6015F:	drivers/media/i2c/m5mols/
6016F:	include/media/i2c/m5mols.h
6017
6018FUJITSU TABLET EXTRAS
6019M:	Robert Gerlach <khnz@gmx.de>
6020L:	platform-driver-x86@vger.kernel.org
6021S:	Maintained
6022F:	drivers/platform/x86/fujitsu-tablet.c
6023
6024FUSE: FILESYSTEM IN USERSPACE
6025M:	Miklos Szeredi <miklos@szeredi.hu>
6026L:	linux-fsdevel@vger.kernel.org
6027W:	http://fuse.sourceforge.net/
6028T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6029S:	Maintained
6030F:	fs/fuse/
6031F:	include/uapi/linux/fuse.h
6032F:	Documentation/filesystems/fuse.txt
6033
6034FUTEX SUBSYSTEM
6035M:	Thomas Gleixner <tglx@linutronix.de>
6036M:	Ingo Molnar <mingo@redhat.com>
6037R:	Peter Zijlstra <peterz@infradead.org>
6038R:	Darren Hart <dvhart@infradead.org>
6039L:	linux-kernel@vger.kernel.org
6040T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
6041S:	Maintained
6042F:	kernel/futex.c
6043F:	kernel/futex_compat.c
6044F:	include/asm-generic/futex.h
6045F:	include/linux/futex.h
6046F:	include/uapi/linux/futex.h
6047F:	tools/testing/selftests/futex/
6048F:	tools/perf/bench/futex*
6049F:	Documentation/*futex*
6050
6051GCC PLUGINS
6052M:	Kees Cook <keescook@chromium.org>
6053R:	Emese Revfy <re.emese@gmail.com>
6054L:	kernel-hardening@lists.openwall.com
6055S:	Maintained
6056F:	scripts/gcc-plugins/
6057F:	scripts/gcc-plugin.sh
6058F:	scripts/Makefile.gcc-plugins
6059F:	Documentation/gcc-plugins.txt
6060
6061GASKET DRIVER FRAMEWORK
6062M:	Rob Springer <rspringer@google.com>
6063M:	John Joseph <jnjoseph@google.com>
6064M:	Ben Chan <benchan@chromium.org>
6065S:	Maintained
6066F:	drivers/staging/gasket/
6067
6068GCOV BASED KERNEL PROFILING
6069M:	Peter Oberparleiter <oberpar@linux.ibm.com>
6070S:	Maintained
6071F:	kernel/gcov/
6072F:	Documentation/dev-tools/gcov.rst
6073
6074GDB KERNEL DEBUGGING HELPER SCRIPTS
6075M:	Jan Kiszka <jan.kiszka@siemens.com>
6076M:	Kieran Bingham <kbingham@kernel.org>
6077S:	Supported
6078F:	scripts/gdb/
6079
6080GDT SCSI DISK ARRAY CONTROLLER DRIVER
6081M:	Achim Leubner <achim_leubner@adaptec.com>
6082L:	linux-scsi@vger.kernel.org
6083W:	http://www.icp-vortex.com/
6084S:	Supported
6085F:	drivers/scsi/gdt*
6086
6087GEMTEK FM RADIO RECEIVER DRIVER
6088M:	Hans Verkuil <hverkuil@xs4all.nl>
6089L:	linux-media@vger.kernel.org
6090T:	git git://linuxtv.org/media_tree.git
6091W:	https://linuxtv.org
6092S:	Maintained
6093F:	drivers/media/radio/radio-gemtek*
6094
6095GENERIC GPIO I2C DRIVER
6096M:	Haavard Skinnemoen <hskinnemoen@gmail.com>
6097S:	Supported
6098F:	drivers/i2c/busses/i2c-gpio.c
6099F:	include/linux/platform_data/i2c-gpio.h
6100
6101GENERIC GPIO I2C MULTIPLEXER DRIVER
6102M:	Peter Korsgaard <peter.korsgaard@barco.com>
6103L:	linux-i2c@vger.kernel.org
6104S:	Supported
6105F:	drivers/i2c/muxes/i2c-mux-gpio.c
6106F:	include/linux/platform_data/i2c-mux-gpio.h
6107F:	Documentation/i2c/muxes/i2c-mux-gpio
6108
6109GENERIC HDLC (WAN) DRIVERS
6110M:	Krzysztof Halasa <khc@pm.waw.pl>
6111W:	http://www.kernel.org/pub/linux/utils/net/hdlc/
6112S:	Maintained
6113F:	drivers/net/wan/c101.c
6114F:	drivers/net/wan/hd6457*
6115F:	drivers/net/wan/hdlc*
6116F:	drivers/net/wan/n2.c
6117F:	drivers/net/wan/pc300too.c
6118F:	drivers/net/wan/pci200syn.c
6119F:	drivers/net/wan/wanxl*
6120
6121GENERIC INCLUDE/ASM HEADER FILES
6122M:	Arnd Bergmann <arnd@arndb.de>
6123L:	linux-arch@vger.kernel.org
6124T:	git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
6125S:	Maintained
6126F:	include/asm-generic/
6127F:	include/uapi/asm-generic/
6128
6129GENERIC PHY FRAMEWORK
6130M:	Kishon Vijay Abraham I <kishon@ti.com>
6131L:	linux-kernel@vger.kernel.org
6132T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
6133S:	Supported
6134F:	drivers/phy/
6135F:	include/linux/phy/
6136
6137GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
6138M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
6139S:	Supported
6140F:	drivers/i2c/muxes/i2c-demux-pinctrl.c
6141
6142GENERIC PM DOMAINS
6143M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
6144M:	Kevin Hilman <khilman@kernel.org>
6145M:	Ulf Hansson <ulf.hansson@linaro.org>
6146L:	linux-pm@vger.kernel.org
6147S:	Supported
6148F:	drivers/base/power/domain*.c
6149F:	include/linux/pm_domain.h
6150F:	Documentation/devicetree/bindings/power/power_domain.txt
6151
6152GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
6153M:	Eugen Hristev <eugen.hristev@microchip.com>
6154L:	linux-input@vger.kernel.org
6155S:	Maintained
6156F:	drivers/input/touchscreen/resistive-adc-touch.c
6157
6158GENERIC UIO DRIVER FOR PCI DEVICES
6159M:	"Michael S. Tsirkin" <mst@redhat.com>
6160L:	kvm@vger.kernel.org
6161S:	Supported
6162F:	drivers/uio/uio_pci_generic.c
6163
6164GENWQE (IBM Generic Workqueue Card)
6165M:	Frank Haverkamp <haver@linux.vnet.ibm.com>
6166M:	Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
6167S:	Supported
6168F:	drivers/misc/genwqe/
6169
6170GET_MAINTAINER SCRIPT
6171M:	Joe Perches <joe@perches.com>
6172S:	Maintained
6173F:	scripts/get_maintainer.pl
6174
6175GFS2 FILE SYSTEM
6176M:	Bob Peterson <rpeterso@redhat.com>
6177M:	Andreas Gruenbacher <agruenba@redhat.com>
6178L:	cluster-devel@redhat.com
6179W:	http://sources.redhat.com/cluster/
6180T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
6181S:	Supported
6182F:	Documentation/filesystems/gfs2*.txt
6183F:	fs/gfs2/
6184F:	include/uapi/linux/gfs2_ondisk.h
6185
6186GIGASET ISDN DRIVERS
6187M:	Paul Bolle <pebolle@tiscali.nl>
6188L:	gigaset307x-common@lists.sourceforge.net
6189W:	http://gigaset307x.sourceforge.net/
6190S:	Odd Fixes
6191F:	Documentation/isdn/README.gigaset
6192F:	drivers/isdn/gigaset/
6193F:	include/uapi/linux/gigaset_dev.h
6194
6195GNSS SUBSYSTEM
6196M:	Johan Hovold <johan@kernel.org>
6197S:	Maintained
6198F:	Documentation/ABI/testing/sysfs-class-gnss
6199F:	Documentation/devicetree/bindings/gnss/
6200F:	drivers/gnss/
6201F:	include/linux/gnss.h
6202
6203GO7007 MPEG CODEC
6204M:	Hans Verkuil <hans.verkuil@cisco.com>
6205L:	linux-media@vger.kernel.org
6206S:	Maintained
6207F:	drivers/media/usb/go7007/
6208
6209GOODIX TOUCHSCREEN
6210M:	Bastien Nocera <hadess@hadess.net>
6211L:	linux-input@vger.kernel.org
6212S:	Maintained
6213F:	drivers/input/touchscreen/goodix.c
6214
6215GPD POCKET FAN DRIVER
6216M:	Hans de Goede <hdegoede@redhat.com>
6217L:	platform-driver-x86@vger.kernel.org
6218S:	Maintained
6219F:	drivers/platform/x86/gpd-pocket-fan.c
6220
6221GPIO ACPI SUPPORT
6222M:	Mika Westerberg <mika.westerberg@linux.intel.com>
6223M:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6224L:	linux-gpio@vger.kernel.org
6225L:	linux-acpi@vger.kernel.org
6226S:	Maintained
6227F:	Documentation/acpi/gpio-properties.txt
6228F:	drivers/gpio/gpiolib-acpi.c
6229
6230GPIO IR Transmitter
6231M:	Sean Young <sean@mess.org>
6232L:	linux-media@vger.kernel.org
6233S:	Maintained
6234F:	drivers/media/rc/gpio-ir-tx.c
6235
6236GPIO MOCKUP DRIVER
6237M:	Bamvor Jian Zhang <bamv2005@gmail.com>
6238R:	Bartosz Golaszewski <brgl@bgdev.pl>
6239L:	linux-gpio@vger.kernel.org
6240S:	Maintained
6241F:	drivers/gpio/gpio-mockup.c
6242F:	tools/testing/selftests/gpio/
6243
6244GPIO SUBSYSTEM
6245M:	Linus Walleij <linus.walleij@linaro.org>
6246L:	linux-gpio@vger.kernel.org
6247T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
6248S:	Maintained
6249F:	Documentation/devicetree/bindings/gpio/
6250F:	Documentation/driver-api/gpio/
6251F:	Documentation/gpio/
6252F:	Documentation/ABI/testing/gpio-cdev
6253F:	Documentation/ABI/obsolete/sysfs-gpio
6254F:	drivers/gpio/
6255F:	include/linux/gpio/
6256F:	include/linux/gpio.h
6257F:	include/linux/of_gpio.h
6258F:	include/asm-generic/gpio.h
6259F:	include/uapi/linux/gpio.h
6260F:	tools/gpio/
6261
6262GRE DEMULTIPLEXER DRIVER
6263M:	Dmitry Kozlov <xeb@mail.ru>
6264L:	netdev@vger.kernel.org
6265S:	Maintained
6266F:	net/ipv4/gre_demux.c
6267F:	net/ipv4/gre_offload.c
6268F:	include/net/gre.h
6269
6270GRETH 10/100/1G Ethernet MAC device driver
6271M:	Andreas Larsson <andreas@gaisler.com>
6272L:	netdev@vger.kernel.org
6273S:	Maintained
6274F:	drivers/net/ethernet/aeroflex/
6275
6276GREYBUS AUDIO PROTOCOLS DRIVERS
6277M:	Vaibhav Agarwal <vaibhav.sr@gmail.com>
6278M:	Mark Greer <mgreer@animalcreek.com>
6279S:	Maintained
6280F:	drivers/staging/greybus/audio_apbridgea.c
6281F:	drivers/staging/greybus/audio_apbridgea.h
6282F:	drivers/staging/greybus/audio_codec.c
6283F:	drivers/staging/greybus/audio_codec.h
6284F:	drivers/staging/greybus/audio_gb.c
6285F:	drivers/staging/greybus/audio_manager.c
6286F:	drivers/staging/greybus/audio_manager.h
6287F:	drivers/staging/greybus/audio_manager_module.c
6288F:	drivers/staging/greybus/audio_manager_private.h
6289F:	drivers/staging/greybus/audio_manager_sysfs.c
6290F:	drivers/staging/greybus/audio_module.c
6291F:	drivers/staging/greybus/audio_topology.c
6292
6293GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
6294M:	Viresh Kumar <vireshk@kernel.org>
6295S:	Maintained
6296F:	drivers/staging/greybus/authentication.c
6297F:	drivers/staging/greybus/bootrom.c
6298F:	drivers/staging/greybus/firmware.h
6299F:	drivers/staging/greybus/fw-core.c
6300F:	drivers/staging/greybus/fw-download.c
6301F:	drivers/staging/greybus/fw-management.c
6302F:	drivers/staging/greybus/greybus_authentication.h
6303F:	drivers/staging/greybus/greybus_firmware.h
6304F:	drivers/staging/greybus/hid.c
6305F:	drivers/staging/greybus/i2c.c
6306F:	drivers/staging/greybus/spi.c
6307F:	drivers/staging/greybus/spilib.c
6308F:	drivers/staging/greybus/spilib.h
6309
6310GREYBUS LOOPBACK DRIVER
6311M:	Bryan O'Donoghue <pure.logic@nexus-software.ie>
6312S:	Maintained
6313F:	drivers/staging/greybus/loopback.c
6314
6315GREYBUS PLATFORM DRIVERS
6316M:	Vaibhav Hiremath <hvaibhav.linux@gmail.com>
6317S:	Maintained
6318F:	drivers/staging/greybus/arche-platform.c
6319F:	drivers/staging/greybus/arche-apb-ctrl.c
6320F:	drivers/staging/greybus/arche_platform.h
6321
6322GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
6323M:	Rui Miguel Silva <rmfrfs@gmail.com>
6324S:	Maintained
6325F:	drivers/staging/greybus/sdio.c
6326F:	drivers/staging/greybus/light.c
6327F:	drivers/staging/greybus/gpio.c
6328F:	drivers/staging/greybus/power_supply.c
6329F:	drivers/staging/greybus/spi.c
6330F:	drivers/staging/greybus/spilib.c
6331
6332GREYBUS SUBSYSTEM
6333M:	Johan Hovold <johan@kernel.org>
6334M:	Alex Elder <elder@kernel.org>
6335M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6336S:	Maintained
6337F:	drivers/staging/greybus/
6338L:	greybus-dev@lists.linaro.org (moderated for non-subscribers)
6339
6340GREYBUS UART PROTOCOLS DRIVERS
6341M:	David Lin <dtwlin@gmail.com>
6342S:	Maintained
6343F:	drivers/staging/greybus/uart.c
6344F:	drivers/staging/greybus/log.c
6345
6346GS1662 VIDEO SERIALIZER
6347M:	Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
6348L:	linux-media@vger.kernel.org
6349T:	git git://linuxtv.org/media_tree.git
6350S:	Maintained
6351F:	drivers/media/spi/gs1662.c
6352
6353GSPCA FINEPIX SUBDRIVER
6354M:	Frank Zago <frank@zago.net>
6355L:	linux-media@vger.kernel.org
6356T:	git git://linuxtv.org/media_tree.git
6357S:	Maintained
6358F:	drivers/media/usb/gspca/finepix.c
6359
6360GSPCA GL860 SUBDRIVER
6361M:	Olivier Lorin <o.lorin@laposte.net>
6362L:	linux-media@vger.kernel.org
6363T:	git git://linuxtv.org/media_tree.git
6364S:	Maintained
6365F:	drivers/media/usb/gspca/gl860/
6366
6367GSPCA M5602 SUBDRIVER
6368M:	Erik Andren <erik.andren@gmail.com>
6369L:	linux-media@vger.kernel.org
6370T:	git git://linuxtv.org/media_tree.git
6371S:	Maintained
6372F:	drivers/media/usb/gspca/m5602/
6373
6374GSPCA PAC207 SONIXB SUBDRIVER
6375M:	Hans Verkuil <hverkuil@xs4all.nl>
6376L:	linux-media@vger.kernel.org
6377T:	git git://linuxtv.org/media_tree.git
6378S:	Odd Fixes
6379F:	drivers/media/usb/gspca/pac207.c
6380
6381GSPCA SN9C20X SUBDRIVER
6382M:	Brian Johnson <brijohn@gmail.com>
6383L:	linux-media@vger.kernel.org
6384T:	git git://linuxtv.org/media_tree.git
6385S:	Maintained
6386F:	drivers/media/usb/gspca/sn9c20x.c
6387
6388GSPCA T613 SUBDRIVER
6389M:	Leandro Costantino <lcostantino@gmail.com>
6390L:	linux-media@vger.kernel.org
6391T:	git git://linuxtv.org/media_tree.git
6392S:	Maintained
6393F:	drivers/media/usb/gspca/t613.c
6394
6395GSPCA USB WEBCAM DRIVER
6396M:	Hans Verkuil <hverkuil@xs4all.nl>
6397L:	linux-media@vger.kernel.org
6398T:	git git://linuxtv.org/media_tree.git
6399S:	Odd Fixes
6400F:	drivers/media/usb/gspca/
6401
6402GTP (GPRS Tunneling Protocol)
6403M:	Pablo Neira Ayuso <pablo@netfilter.org>
6404M:	Harald Welte <laforge@gnumonks.org>
6405L:	osmocom-net-gprs@lists.osmocom.org
6406T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
6407S:	Maintained
6408F:	drivers/net/gtp.c
6409
6410GUID PARTITION TABLE (GPT)
6411M:	Davidlohr Bueso <dave@stgolabs.net>
6412L:	linux-efi@vger.kernel.org
6413S:	Maintained
6414F:	block/partitions/efi.*
6415
6416H8/300 ARCHITECTURE
6417M:	Yoshinori Sato <ysato@users.sourceforge.jp>
6418L:	uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
6419W:	http://uclinux-h8.sourceforge.jp
6420T:	git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
6421S:	Maintained
6422F:	arch/h8300/
6423F:	drivers/clocksource/h8300_*.c
6424F:	drivers/clk/h8300/
6425F:	drivers/irqchip/irq-renesas-h8*.c
6426
6427HACKRF MEDIA DRIVER
6428M:	Antti Palosaari <crope@iki.fi>
6429L:	linux-media@vger.kernel.org
6430W:	https://linuxtv.org
6431W:	http://palosaari.fi/linux/
6432Q:	http://patchwork.linuxtv.org/project/linux-media/list/
6433T:	git git://linuxtv.org/anttip/media_tree.git
6434S:	Maintained
6435F:	drivers/media/usb/hackrf/
6436
6437HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
6438M:	Frank Seidel <frank@f-seidel.de>
6439L:	platform-driver-x86@vger.kernel.org
6440W:	http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
6441S:	Maintained
6442F:	drivers/platform/x86/hdaps.c
6443
6444HARDWARE MONITORING
6445M:	Jean Delvare <jdelvare@suse.com>
6446M:	Guenter Roeck <linux@roeck-us.net>
6447L:	linux-hwmon@vger.kernel.org
6448W:	http://hwmon.wiki.kernel.org/
6449T:	git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6450S:	Maintained
6451F:	Documentation/devicetree/bindings/hwmon/
6452F:	Documentation/hwmon/
6453F:	drivers/hwmon/
6454F:	include/linux/hwmon*.h
6455
6456HARDWARE RANDOM NUMBER GENERATOR CORE
6457M:	Matt Mackall <mpm@selenic.com>
6458M:	Herbert Xu <herbert@gondor.apana.org.au>
6459L:	linux-crypto@vger.kernel.org
6460S:	Odd fixes
6461F:	Documentation/devicetree/bindings/rng/
6462F:	Documentation/hw_random.txt
6463F:	drivers/char/hw_random/
6464F:	include/linux/hw_random.h
6465
6466HARDWARE TRACING FACILITIES
6467M:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
6468S:	Maintained
6469F:	drivers/hwtracing/
6470
6471HARDWARE SPINLOCK CORE
6472M:	Ohad Ben-Cohen <ohad@wizery.com>
6473M:	Bjorn Andersson <bjorn.andersson@linaro.org>
6474L:	linux-remoteproc@vger.kernel.org
6475S:	Maintained
6476T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
6477F:	Documentation/devicetree/bindings/hwlock/
6478F:	Documentation/hwspinlock.txt
6479F:	drivers/hwspinlock/
6480F:	include/linux/hwspinlock.h
6481
6482HARMONY SOUND DRIVER
6483L:	linux-parisc@vger.kernel.org
6484S:	Maintained
6485F:	sound/parisc/harmony.*
6486
6487HDPVR USB VIDEO ENCODER DRIVER
6488M:	Hans Verkuil <hverkuil@xs4all.nl>
6489L:	linux-media@vger.kernel.org
6490T:	git git://linuxtv.org/media_tree.git
6491W:	https://linuxtv.org
6492S:	Odd Fixes
6493F:	drivers/media/usb/hdpvr/
6494
6495HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
6496M:	Jerry Hoemann <jerry.hoemann@hpe.com>
6497S:	Supported
6498F:	Documentation/watchdog/hpwdt.txt
6499F:	drivers/watchdog/hpwdt.c
6500
6501HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
6502M:	Don Brace <don.brace@microsemi.com>
6503L:	esc.storagedev@microsemi.com
6504L:	linux-scsi@vger.kernel.org
6505S:	Supported
6506F:	Documentation/scsi/hpsa.txt
6507F:	drivers/scsi/hpsa*.[ch]
6508F:	include/linux/cciss*.h
6509F:	include/uapi/linux/cciss*.h
6510
6511HFI1 DRIVER
6512M:	Mike Marciniszyn <mike.marciniszyn@intel.com>
6513M:	Dennis Dalessandro <dennis.dalessandro@intel.com>
6514L:	linux-rdma@vger.kernel.org
6515S:	Supported
6516F:	drivers/infiniband/hw/hfi1
6517
6518HFS FILESYSTEM
6519L:	linux-fsdevel@vger.kernel.org
6520S:	Orphan
6521F:	Documentation/filesystems/hfs.txt
6522F:	fs/hfs/
6523
6524HFSPLUS FILESYSTEM
6525L:	linux-fsdevel@vger.kernel.org
6526S:	Orphan
6527F:	Documentation/filesystems/hfsplus.txt
6528F:	fs/hfsplus/
6529
6530HGA FRAMEBUFFER DRIVER
6531M:	Ferenc Bakonyi <fero@drama.obuda.kando.hu>
6532L:	linux-nvidia@lists.surfsouth.com
6533W:	http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
6534S:	Maintained
6535F:	drivers/video/fbdev/hgafb.c
6536
6537HIBERNATION (aka Software Suspend, aka swsusp)
6538M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
6539M:	Pavel Machek <pavel@ucw.cz>
6540L:	linux-pm@vger.kernel.org
6541B:	https://bugzilla.kernel.org
6542S:	Supported
6543F:	arch/x86/power/
6544F:	drivers/base/power/
6545F:	kernel/power/
6546F:	include/linux/suspend.h
6547F:	include/linux/freezer.h
6548F:	include/linux/pm.h
6549F:	arch/*/include/asm/suspend*.h
6550
6551HID CORE LAYER
6552M:	Jiri Kosina <jikos@kernel.org>
6553R:	Benjamin Tissoires <benjamin.tissoires@redhat.com>
6554L:	linux-input@vger.kernel.org
6555T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
6556S:	Maintained
6557F:	drivers/hid/
6558F:	include/linux/hid*
6559F:	include/uapi/linux/hid*
6560
6561HID SENSOR HUB DRIVERS
6562M:	Jiri Kosina <jikos@kernel.org>
6563M:	Jonathan Cameron <jic23@kernel.org>
6564M:	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6565L:	linux-input@vger.kernel.org
6566L:	linux-iio@vger.kernel.org
6567S:	Maintained
6568F:	Documentation/hid/hid-sensor*
6569F:	drivers/hid/hid-sensor-*
6570F:	drivers/iio/*/hid-*
6571F:	include/linux/hid-sensor-*
6572
6573HIGH-RESOLUTION TIMERS, CLOCKEVENTS
6574M:	Thomas Gleixner <tglx@linutronix.de>
6575L:	linux-kernel@vger.kernel.org
6576T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6577S:	Maintained
6578F:	Documentation/timers/
6579F:	kernel/time/hrtimer.c
6580F:	kernel/time/clockevents.c
6581F:	kernel/time/timer_*.c
6582F:	include/linux/clockchips.h
6583F:	include/linux/hrtimer.h
6584
6585HIGH-SPEED SCC DRIVER FOR AX.25
6586L:	linux-hams@vger.kernel.org
6587S:	Orphan
6588F:	drivers/net/hamradio/dmascc.c
6589F:	drivers/net/hamradio/scc.c
6590
6591HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
6592M:	HighPoint Linux Team <linux@highpoint-tech.com>
6593W:	http://www.highpoint-tech.com
6594S:	Supported
6595F:	Documentation/scsi/hptiop.txt
6596F:	drivers/scsi/hptiop.c
6597
6598HIPPI
6599M:	Jes Sorensen <jes@trained-monkey.org>
6600L:	linux-hippi@sunsite.dk
6601S:	Maintained
6602F:	include/linux/hippidevice.h
6603F:	include/uapi/linux/if_hippi.h
6604F:	net/802/hippi.c
6605F:	drivers/net/hippi/
6606
6607HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
6608M:	Yisen Zhuang <yisen.zhuang@huawei.com>
6609M:	Salil Mehta <salil.mehta@huawei.com>
6610L:	netdev@vger.kernel.org
6611W:	http://www.hisilicon.com
6612S:	Maintained
6613F:	drivers/net/ethernet/hisilicon/hns3/
6614
6615HISILICON LPC BUS DRIVER
6616M:	john.garry@huawei.com
6617W:	http://www.hisilicon.com
6618S:	Maintained
6619F:	drivers/bus/hisi_lpc.c
6620F:	Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
6621
6622HISILICON NETWORK SUBSYSTEM DRIVER
6623M:	Yisen Zhuang <yisen.zhuang@huawei.com>
6624M:	Salil Mehta <salil.mehta@huawei.com>
6625L:	netdev@vger.kernel.org
6626W:	http://www.hisilicon.com
6627S:	Maintained
6628F:	drivers/net/ethernet/hisilicon/
6629F:	Documentation/devicetree/bindings/net/hisilicon*.txt
6630
6631HISILICON PMU DRIVER
6632M:	Shaokun Zhang <zhangshaokun@hisilicon.com>
6633W:	http://www.hisilicon.com
6634S:	Supported
6635F:	drivers/perf/hisilicon
6636F:	Documentation/perf/hisi-pmu.txt
6637
6638HISILICON ROCE DRIVER
6639M:	Lijun Ou <oulijun@huawei.com>
6640M:	Wei Hu(Xavier) <xavier.huwei@huawei.com>
6641L:	linux-rdma@vger.kernel.org
6642S:	Maintained
6643F:	drivers/infiniband/hw/hns/
6644F:	Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
6645
6646HISILICON SAS Controller
6647M:	John Garry <john.garry@huawei.com>
6648W:	http://www.hisilicon.com
6649S:	Supported
6650F:	drivers/scsi/hisi_sas/
6651F:	Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
6652
6653HMM - Heterogeneous Memory Management
6654M:	Jérôme Glisse <jglisse@redhat.com>
6655L:	linux-mm@kvack.org
6656S:	Maintained
6657F:	mm/hmm*
6658F:	include/linux/hmm*
6659F:	Documentation/vm/hmm.rst
6660
6661HOST AP DRIVER
6662M:	Jouni Malinen <j@w1.fi>
6663L:	linux-wireless@vger.kernel.org
6664W:	http://w1.fi/hostap-driver.html
6665S:	Obsolete
6666F:	drivers/net/wireless/intersil/hostap/
6667
6668HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
6669L:	platform-driver-x86@vger.kernel.org
6670S:	Orphan
6671F:	drivers/platform/x86/tc1100-wmi.c
6672
6673HP100:	Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
6674M:	Jaroslav Kysela <perex@perex.cz>
6675S:	Maintained
6676F:	drivers/net/ethernet/hp/hp100.*
6677
6678HPET:	High Precision Event Timers driver
6679M:	Clemens Ladisch <clemens@ladisch.de>
6680S:	Maintained
6681F:	Documentation/timers/hpet.txt
6682F:	drivers/char/hpet.c
6683F:	include/linux/hpet.h
6684F:	include/uapi/linux/hpet.h
6685
6686HPET:	x86
6687S:	Orphan
6688F:	arch/x86/kernel/hpet.c
6689F:	arch/x86/include/asm/hpet.h
6690
6691HPFS FILESYSTEM
6692M:	Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
6693W:	http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
6694S:	Maintained
6695F:	fs/hpfs/
6696
6697HSI SUBSYSTEM
6698M:	Sebastian Reichel <sre@kernel.org>
6699T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
6700S:	Maintained
6701F:	Documentation/ABI/testing/sysfs-bus-hsi
6702F:	Documentation/driver-api/hsi.rst
6703F:	drivers/hsi/
6704F:	include/linux/hsi/
6705F:	include/uapi/linux/hsi/
6706
6707HSO 3G MODEM DRIVER
6708L:	linux-usb@vger.kernel.org
6709S:	Orphan
6710F:	drivers/net/usb/hso.c
6711
6712HSR NETWORK PROTOCOL
6713M:	Arvid Brodin <arvid.brodin@alten.se>
6714L:	netdev@vger.kernel.org
6715S:	Maintained
6716F:	net/hsr/
6717
6718HT16K33 LED CONTROLLER DRIVER
6719M:	Robin van der Gracht <robin@protonic.nl>
6720S:	Maintained
6721F:	drivers/auxdisplay/ht16k33.c
6722F:	Documentation/devicetree/bindings/display/ht16k33.txt
6723
6724HTCPEN TOUCHSCREEN DRIVER
6725M:	Pau Oliva Fora <pof@eslack.org>
6726L:	linux-input@vger.kernel.org
6727S:	Maintained
6728F:	drivers/input/touchscreen/htcpen.c
6729
6730HUAWEI ETHERNET DRIVER
6731M:	Aviad Krawczyk <aviad.krawczyk@huawei.com>
6732L:	netdev@vger.kernel.org
6733S:	Supported
6734F:	Documentation/networking/hinic.txt
6735F:	drivers/net/ethernet/huawei/hinic/
6736
6737HUGETLB FILESYSTEM
6738M:	Mike Kravetz <mike.kravetz@oracle.com>
6739L:	linux-mm@kvack.org
6740S:	Maintained
6741F:	fs/hugetlbfs/
6742F:	mm/hugetlb.c
6743F:	include/linux/hugetlb.h
6744F:	Documentation/admin-guide/mm/hugetlbpage.rst
6745F:	Documentation/vm/hugetlbfs_reserv.rst
6746F:	Documentation/ABI/testing/sysfs-kernel-mm-hugepages
6747
6748HVA ST MEDIA DRIVER
6749M:	Jean-Christophe Trotin <jean-christophe.trotin@st.com>
6750L:	linux-media@vger.kernel.org
6751T:	git git://linuxtv.org/media_tree.git
6752W:	https://linuxtv.org
6753S:	Supported
6754F:	drivers/media/platform/sti/hva
6755
6756HWPOISON MEMORY FAILURE HANDLING
6757M:	Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
6758L:	linux-mm@kvack.org
6759S:	Maintained
6760F:	mm/memory-failure.c
6761F:	mm/hwpoison-inject.c
6762
6763Hyper-V CORE AND DRIVERS
6764M:	"K. Y. Srinivasan" <kys@microsoft.com>
6765M:	Haiyang Zhang <haiyangz@microsoft.com>
6766M:	Stephen Hemminger <sthemmin@microsoft.com>
6767L:	devel@linuxdriverproject.org
6768S:	Maintained
6769F:	Documentation/networking/netvsc.txt
6770F:	arch/x86/include/asm/mshyperv.h
6771F:	arch/x86/include/asm/trace/hyperv.h
6772F:	arch/x86/include/asm/hyperv-tlfs.h
6773F:	arch/x86/kernel/cpu/mshyperv.c
6774F:	arch/x86/hyperv
6775F:	drivers/hid/hid-hyperv.c
6776F:	drivers/hv/
6777F:	drivers/input/serio/hyperv-keyboard.c
6778F:	drivers/pci/controller/pci-hyperv.c
6779F:	drivers/net/hyperv/
6780F:	drivers/scsi/storvsc_drv.c
6781F:	drivers/uio/uio_hv_generic.c
6782F:	drivers/video/fbdev/hyperv_fb.c
6783F:	net/vmw_vsock/hyperv_transport.c
6784F:	include/linux/hyperv.h
6785F:	include/uapi/linux/hyperv.h
6786F:	tools/hv/
6787F:	Documentation/ABI/stable/sysfs-bus-vmbus
6788
6789HYPERVISOR VIRTUAL CONSOLE DRIVER
6790L:	linuxppc-dev@lists.ozlabs.org
6791S:	Odd Fixes
6792F:	drivers/tty/hvc/
6793
6794I2C ACPI SUPPORT
6795M:	Mika Westerberg <mika.westerberg@linux.intel.com>
6796L:	linux-i2c@vger.kernel.org
6797L:	linux-acpi@vger.kernel.org
6798S:	Maintained
6799F:	drivers/i2c/i2c-core-acpi.c
6800
6801I2C MUXES
6802M:	Peter Rosin <peda@axentia.se>
6803L:	linux-i2c@vger.kernel.org
6804S:	Maintained
6805F:	Documentation/i2c/i2c-topology
6806F:	Documentation/i2c/muxes/
6807F:	Documentation/devicetree/bindings/i2c/i2c-mux*
6808F:	Documentation/devicetree/bindings/i2c/i2c-arb*
6809F:	Documentation/devicetree/bindings/i2c/i2c-gate*
6810F:	drivers/i2c/i2c-mux.c
6811F:	drivers/i2c/muxes/
6812F:	include/linux/i2c-mux.h
6813
6814I2C MV64XXX MARVELL AND ALLWINNER DRIVER
6815M:	Gregory CLEMENT <gregory.clement@bootlin.com>
6816L:	linux-i2c@vger.kernel.org
6817S:	Maintained
6818F:	drivers/i2c/busses/i2c-mv64xxx.c
6819
6820I2C OVER PARALLEL PORT
6821M:	Jean Delvare <jdelvare@suse.com>
6822L:	linux-i2c@vger.kernel.org
6823S:	Maintained
6824F:	Documentation/i2c/busses/i2c-parport
6825F:	Documentation/i2c/busses/i2c-parport-light
6826F:	drivers/i2c/busses/i2c-parport.c
6827F:	drivers/i2c/busses/i2c-parport-light.c
6828
6829I2C SUBSYSTEM
6830M:	Wolfram Sang <wsa@the-dreams.de>
6831L:	linux-i2c@vger.kernel.org
6832W:	https://i2c.wiki.kernel.org/
6833Q:	https://patchwork.ozlabs.org/project/linux-i2c/list/
6834T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6835S:	Maintained
6836F:	Documentation/devicetree/bindings/i2c/i2c.txt
6837F:	Documentation/i2c/
6838F:	drivers/i2c/*
6839F:	include/linux/i2c.h
6840F:	include/linux/i2c-dev.h
6841F:	include/linux/i2c-smbus.h
6842F:	include/uapi/linux/i2c.h
6843F:	include/uapi/linux/i2c-*.h
6844
6845I2C SUBSYSTEM HOST DRIVERS
6846L:	linux-i2c@vger.kernel.org
6847W:	https://i2c.wiki.kernel.org/
6848Q:	https://patchwork.ozlabs.org/project/linux-i2c/list/
6849T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6850S:	Odd Fixes
6851F:	Documentation/devicetree/bindings/i2c/
6852F:	drivers/i2c/algos/
6853F:	drivers/i2c/busses/
6854
6855I2C-TAOS-EVM DRIVER
6856M:	Jean Delvare <jdelvare@suse.com>
6857L:	linux-i2c@vger.kernel.org
6858S:	Maintained
6859F:	Documentation/i2c/busses/i2c-taos-evm
6860F:	drivers/i2c/busses/i2c-taos-evm.c
6861
6862I2C-TINY-USB DRIVER
6863M:	Till Harbaum <till@harbaum.org>
6864L:	linux-i2c@vger.kernel.org
6865W:	http://www.harbaum.org/till/i2c_tiny_usb
6866S:	Maintained
6867F:	drivers/i2c/busses/i2c-tiny-usb.c
6868
6869I2C/SMBUS CONTROLLER DRIVERS FOR PC
6870M:	Jean Delvare <jdelvare@suse.com>
6871L:	linux-i2c@vger.kernel.org
6872S:	Maintained
6873F:	Documentation/i2c/busses/i2c-ali1535
6874F:	Documentation/i2c/busses/i2c-ali1563
6875F:	Documentation/i2c/busses/i2c-ali15x3
6876F:	Documentation/i2c/busses/i2c-amd756
6877F:	Documentation/i2c/busses/i2c-amd8111
6878F:	Documentation/i2c/busses/i2c-i801
6879F:	Documentation/i2c/busses/i2c-nforce2
6880F:	Documentation/i2c/busses/i2c-piix4
6881F:	Documentation/i2c/busses/i2c-sis5595
6882F:	Documentation/i2c/busses/i2c-sis630
6883F:	Documentation/i2c/busses/i2c-sis96x
6884F:	Documentation/i2c/busses/i2c-via
6885F:	Documentation/i2c/busses/i2c-viapro
6886F:	drivers/i2c/busses/i2c-ali1535.c
6887F:	drivers/i2c/busses/i2c-ali1563.c
6888F:	drivers/i2c/busses/i2c-ali15x3.c
6889F:	drivers/i2c/busses/i2c-amd756.c
6890F:	drivers/i2c/busses/i2c-amd756-s4882.c
6891F:	drivers/i2c/busses/i2c-amd8111.c
6892F:	drivers/i2c/busses/i2c-i801.c
6893F:	drivers/i2c/busses/i2c-isch.c
6894F:	drivers/i2c/busses/i2c-nforce2.c
6895F:	drivers/i2c/busses/i2c-nforce2-s4985.c
6896F:	drivers/i2c/busses/i2c-piix4.c
6897F:	drivers/i2c/busses/i2c-sis5595.c
6898F:	drivers/i2c/busses/i2c-sis630.c
6899F:	drivers/i2c/busses/i2c-sis96x.c
6900F:	drivers/i2c/busses/i2c-via.c
6901F:	drivers/i2c/busses/i2c-viapro.c
6902
6903I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
6904M:	Hans de Goede <hdegoede@redhat.com>
6905L:	linux-i2c@vger.kernel.org
6906S:	Maintained
6907F:	drivers/i2c/busses/i2c-cht-wc.c
6908
6909I2C/SMBUS ISMT DRIVER
6910M:	Seth Heasley <seth.heasley@intel.com>
6911M:	Neil Horman <nhorman@tuxdriver.com>
6912L:	linux-i2c@vger.kernel.org
6913F:	drivers/i2c/busses/i2c-ismt.c
6914F:	Documentation/i2c/busses/i2c-ismt
6915
6916I2C/SMBUS STUB DRIVER
6917M:	Jean Delvare <jdelvare@suse.com>
6918L:	linux-i2c@vger.kernel.org
6919S:	Maintained
6920F:	drivers/i2c/i2c-stub.c
6921
6922IA64 (Itanium) PLATFORM
6923M:	Tony Luck <tony.luck@intel.com>
6924M:	Fenghua Yu <fenghua.yu@intel.com>
6925L:	linux-ia64@vger.kernel.org
6926T:	git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
6927S:	Maintained
6928F:	arch/ia64/
6929
6930IBM Power 842 compression accelerator
6931M:	Haren Myneni <haren@us.ibm.com>
6932S:	Supported
6933F:	drivers/crypto/nx/Makefile
6934F:	drivers/crypto/nx/Kconfig
6935F:	drivers/crypto/nx/nx-842*
6936F:	include/linux/sw842.h
6937F:	crypto/842.c
6938F:	lib/842/
6939
6940IBM Power in-Nest Crypto Acceleration
6941M:	Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6942M:	Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6943L:	linux-crypto@vger.kernel.org
6944S:	Supported
6945F:	drivers/crypto/nx/Makefile
6946F:	drivers/crypto/nx/Kconfig
6947F:	drivers/crypto/nx/nx-aes*
6948F:	drivers/crypto/nx/nx-sha*
6949F:	drivers/crypto/nx/nx.*
6950F:	drivers/crypto/nx/nx_csbcpb.h
6951F:	drivers/crypto/nx/nx_debugfs.h
6952
6953IBM Power Linux RAID adapter
6954M:	Brian King <brking@us.ibm.com>
6955S:	Supported
6956F:	drivers/scsi/ipr.*
6957
6958IBM Power SRIOV Virtual NIC Device Driver
6959M:	Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6960M:	John Allen <jallen@linux.vnet.ibm.com>
6961L:	netdev@vger.kernel.org
6962S:	Supported
6963F:	drivers/net/ethernet/ibm/ibmvnic.*
6964
6965IBM Power Virtual Accelerator Switchboard
6966M:	Sukadev Bhattiprolu
6967L:	linuxppc-dev@lists.ozlabs.org
6968S:	Supported
6969F:	arch/powerpc/platforms/powernv/vas*
6970F:	arch/powerpc/platforms/powernv/copy-paste.h
6971F:	arch/powerpc/include/asm/vas.h
6972F:	arch/powerpc/include/uapi/asm/vas.h
6973
6974IBM Power Virtual Ethernet Device Driver
6975M:	Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6976L:	netdev@vger.kernel.org
6977S:	Supported
6978F:	drivers/net/ethernet/ibm/ibmveth.*
6979
6980IBM Power Virtual FC Device Drivers
6981M:	Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6982L:	linux-scsi@vger.kernel.org
6983S:	Supported
6984F:	drivers/scsi/ibmvscsi/ibmvfc*
6985
6986IBM Power Virtual Management Channel Driver
6987M:	Bryant G. Ly <bryantly@linux.vnet.ibm.com>
6988M:	Steven Royer <seroyer@linux.vnet.ibm.com>
6989S:	Supported
6990F:	drivers/misc/ibmvmc.*
6991
6992IBM Power Virtual SCSI Device Drivers
6993M:	Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6994L:	linux-scsi@vger.kernel.org
6995S:	Supported
6996F:	drivers/scsi/ibmvscsi/ibmvscsi*
6997F:	include/scsi/viosrp.h
6998
6999IBM Power Virtual SCSI Device Target Driver
7000M:	Bryant G. Ly <bryantly@linux.vnet.ibm.com>
7001M:	Michael Cyr <mikecyr@linux.vnet.ibm.com>
7002L:	linux-scsi@vger.kernel.org
7003L:	target-devel@vger.kernel.org
7004S:	Supported
7005F:	drivers/scsi/ibmvscsi_tgt/
7006
7007IBM Power VMX Cryptographic instructions
7008M:	Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
7009M:	Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
7010L:	linux-crypto@vger.kernel.org
7011S:	Supported
7012F:	drivers/crypto/vmx/Makefile
7013F:	drivers/crypto/vmx/Kconfig
7014F:	drivers/crypto/vmx/vmx.c
7015F:	drivers/crypto/vmx/aes*
7016F:	drivers/crypto/vmx/ghash*
7017F:	drivers/crypto/vmx/ppc-xlate.pl
7018
7019IBM ServeRAID RAID DRIVER
7020S:	Orphan
7021F:	drivers/scsi/ips.*
7022
7023ICH LPC AND GPIO DRIVER
7024M:	Peter Tyser <ptyser@xes-inc.com>
7025S:	Maintained
7026F:	drivers/mfd/lpc_ich.c
7027F:	drivers/gpio/gpio-ich.c
7028
7029IDE SUBSYSTEM
7030M:	"David S. Miller" <davem@davemloft.net>
7031L:	linux-ide@vger.kernel.org
7032Q:	http://patchwork.ozlabs.org/project/linux-ide/list/
7033T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
7034S:	Maintained
7035F:	Documentation/ide/
7036F:	drivers/ide/
7037F:	include/linux/ide.h
7038
7039IDE/ATAPI DRIVERS
7040M:	Borislav Petkov <bp@alien8.de>
7041L:	linux-ide@vger.kernel.org
7042S:	Maintained
7043F:	Documentation/cdrom/ide-cd
7044F:	drivers/ide/ide-cd*
7045
7046IDEAPAD LAPTOP EXTRAS DRIVER
7047M:	Ike Panhc <ike.pan@canonical.com>
7048L:	platform-driver-x86@vger.kernel.org
7049W:	http://launchpad.net/ideapad-laptop
7050S:	Maintained
7051F:	drivers/platform/x86/ideapad-laptop.c
7052
7053IDEAPAD LAPTOP SLIDEBAR DRIVER
7054M:	Andrey Moiseev <o2g.org.ru@gmail.com>
7055L:	linux-input@vger.kernel.org
7056W:	https://github.com/o2genum/ideapad-slidebar
7057S:	Maintained
7058F:	drivers/input/misc/ideapad_slidebar.c
7059
7060IDT VersaClock 5 CLOCK DRIVER
7061M:	Marek Vasut <marek.vasut@gmail.com>
7062S:	Maintained
7063F:	drivers/clk/clk-versaclock5.c
7064
7065IEEE 802.15.4 SUBSYSTEM
7066M:	Alexander Aring <alex.aring@gmail.com>
7067M:	Stefan Schmidt <stefan@datenfreihafen.org>
7068L:	linux-wpan@vger.kernel.org
7069W:	http://wpan.cakelab.org/
7070T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
7071T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
7072S:	Maintained
7073F:	net/ieee802154/
7074F:	net/mac802154/
7075F:	drivers/net/ieee802154/
7076F:	include/linux/nl802154.h
7077F:	include/linux/ieee802154.h
7078F:	include/net/nl802154.h
7079F:	include/net/mac802154.h
7080F:	include/net/af_ieee802154.h
7081F:	include/net/cfg802154.h
7082F:	include/net/ieee802154_netdev.h
7083F:	Documentation/networking/ieee802154.txt
7084
7085IFE PROTOCOL
7086M:	Yotam Gigi <yotam.gi@gmail.com>
7087M:	Jamal Hadi Salim <jhs@mojatatu.com>
7088F:	net/ife
7089F:	include/net/ife.h
7090F:	include/uapi/linux/ife.h
7091
7092IGORPLUG-USB IR RECEIVER
7093M:	Sean Young <sean@mess.org>
7094L:	linux-media@vger.kernel.org
7095S:	Maintained
7096F:	drivers/media/rc/igorplugusb.c
7097
7098IGUANAWORKS USB IR TRANSCEIVER
7099M:	Sean Young <sean@mess.org>
7100L:	linux-media@vger.kernel.org
7101S:	Maintained
7102F:	drivers/media/rc/iguanair.c
7103
7104IIO DIGITAL POTENTIOMETER DAC
7105M:	Peter Rosin <peda@axentia.se>
7106L:	linux-iio@vger.kernel.org
7107S:	Maintained
7108F:	Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
7109F:	Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
7110F:	drivers/iio/dac/dpot-dac.c
7111
7112IIO ENVELOPE DETECTOR
7113M:	Peter Rosin <peda@axentia.se>
7114L:	linux-iio@vger.kernel.org
7115S:	Maintained
7116F:	Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
7117F:	Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
7118F:	drivers/iio/adc/envelope-detector.c
7119
7120IIO MULTIPLEXER
7121M:	Peter Rosin <peda@axentia.se>
7122L:	linux-iio@vger.kernel.org
7123S:	Maintained
7124F:	Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
7125F:	drivers/iio/multiplexer/iio-mux.c
7126
7127IIO SUBSYSTEM AND DRIVERS
7128M:	Jonathan Cameron <jic23@kernel.org>
7129R:	Hartmut Knaack <knaack.h@gmx.de>
7130R:	Lars-Peter Clausen <lars@metafoo.de>
7131R:	Peter Meerwald-Stadler <pmeerw@pmeerw.net>
7132L:	linux-iio@vger.kernel.org
7133T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
7134S:	Maintained
7135F:	Documentation/ABI/testing/configfs-iio*
7136F:	Documentation/ABI/testing/sysfs-bus-iio*
7137F:	Documentation/devicetree/bindings/iio/
7138F:	drivers/iio/
7139F:	drivers/staging/iio/
7140F:	include/linux/iio/
7141F:	tools/iio/
7142
7143IIO UNIT CONVERTER
7144M:	Peter Rosin <peda@axentia.se>
7145L:	linux-iio@vger.kernel.org
7146S:	Maintained
7147F:	Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
7148F:	Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
7149F:	Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
7150F:	drivers/iio/afe/iio-rescale.c
7151
7152IKANOS/ADI EAGLE ADSL USB DRIVER
7153M:	Matthieu Castet <castet.matthieu@free.fr>
7154M:	Stanislaw Gruszka <stf_xl@wp.pl>
7155S:	Maintained
7156F:	drivers/usb/atm/ueagle-atm.c
7157
7158IMGTEC ASCII LCD DRIVER
7159M:	Paul Burton <paul.burton@mips.com>
7160S:	Maintained
7161F:	Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
7162F:	drivers/auxdisplay/img-ascii-lcd.c
7163
7164IMGTEC IR DECODER DRIVER
7165M:	James Hogan <jhogan@kernel.org>
7166S:	Maintained
7167F:	drivers/media/rc/img-ir/
7168
7169IMON SOUNDGRAPH USB IR RECEIVER
7170M:	Sean Young <sean@mess.org>
7171L:	linux-media@vger.kernel.org
7172S:	Maintained
7173F:	drivers/media/rc/imon_raw.c
7174F:	drivers/media/rc/imon.c
7175
7176IMS TWINTURBO FRAMEBUFFER DRIVER
7177L:	linux-fbdev@vger.kernel.org
7178S:	Orphan
7179F:	drivers/video/fbdev/imsttfb.c
7180
7181INA209 HARDWARE MONITOR DRIVER
7182M:	Guenter Roeck <linux@roeck-us.net>
7183L:	linux-hwmon@vger.kernel.org
7184S:	Maintained
7185F:	Documentation/hwmon/ina209
7186F:	Documentation/devicetree/bindings/hwmon/ina2xx.txt
7187F:	drivers/hwmon/ina209.c
7188
7189INA2XX HARDWARE MONITOR DRIVER
7190M:	Guenter Roeck <linux@roeck-us.net>
7191L:	linux-hwmon@vger.kernel.org
7192S:	Maintained
7193F:	Documentation/hwmon/ina2xx
7194F:	drivers/hwmon/ina2xx.c
7195F:	include/linux/platform_data/ina2xx.h
7196
7197INDUSTRY PACK SUBSYSTEM (IPACK)
7198M:	Samuel Iglesias Gonsalvez <siglesias@igalia.com>
7199M:	Jens Taprogge <jens.taprogge@taprogge.org>
7200M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7201L:	industrypack-devel@lists.sourceforge.net
7202W:	http://industrypack.sourceforge.net
7203S:	Maintained
7204F:	drivers/ipack/
7205
7206INFINIBAND SUBSYSTEM
7207M:	Doug Ledford <dledford@redhat.com>
7208M:	Jason Gunthorpe <jgg@mellanox.com>
7209L:	linux-rdma@vger.kernel.org
7210W:	https://github.com/linux-rdma/rdma-core
7211Q:	http://patchwork.kernel.org/project/linux-rdma/list/
7212T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
7213S:	Supported
7214F:	Documentation/devicetree/bindings/infiniband/
7215F:	Documentation/infiniband/
7216F:	drivers/infiniband/
7217F:	include/uapi/linux/if_infiniband.h
7218F:	include/uapi/rdma/
7219F:	include/rdma/
7220
7221INGENIC JZ4780 DMA Driver
7222M:	Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
7223S:	Maintained
7224F:	drivers/dma/dma-jz4780.c
7225
7226INGENIC JZ4780 NAND DRIVER
7227M:	Harvey Hunt <harveyhuntnexus@gmail.com>
7228L:	linux-mtd@lists.infradead.org
7229S:	Maintained
7230F:	drivers/mtd/nand/raw/jz4780_*
7231
7232INOTIFY
7233M:	Jan Kara <jack@suse.cz>
7234R:	Amir Goldstein <amir73il@gmail.com>
7235L:	linux-fsdevel@vger.kernel.org
7236S:	Maintained
7237F:	Documentation/filesystems/inotify.txt
7238F:	fs/notify/inotify/
7239F:	include/linux/inotify.h
7240F:	include/uapi/linux/inotify.h
7241
7242INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
7243M:	Dmitry Torokhov <dmitry.torokhov@gmail.com>
7244L:	linux-input@vger.kernel.org
7245Q:	http://patchwork.kernel.org/project/linux-input/list/
7246T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
7247S:	Maintained
7248F:	drivers/input/
7249F:	include/linux/input.h
7250F:	include/uapi/linux/input.h
7251F:	include/uapi/linux/input-event-codes.h
7252F:	include/linux/input/
7253F:	Documentation/devicetree/bindings/input/
7254F:	Documentation/devicetree/bindings/serio/
7255F:	Documentation/input/
7256
7257INPUT MULTITOUCH (MT) PROTOCOL
7258M:	Henrik Rydberg <rydberg@bitmath.org>
7259L:	linux-input@vger.kernel.org
7260S:	Odd fixes
7261F:	Documentation/input/multi-touch-protocol.rst
7262F:	drivers/input/input-mt.c
7263K:	\b(ABS|SYN)_MT_
7264
7265INSIDE SECURE CRYPTO DRIVER
7266M:	Antoine Tenart <antoine.tenart@bootlin.com>
7267F:	drivers/crypto/inside-secure/
7268S:	Maintained
7269L:	linux-crypto@vger.kernel.org
7270
7271INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
7272M:	Mimi Zohar <zohar@linux.vnet.ibm.com>
7273M:	Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
7274L:	linux-integrity@vger.kernel.org
7275T:	git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7276S:	Supported
7277F:	security/integrity/ima/
7278
7279INTEL 810/815 FRAMEBUFFER DRIVER
7280M:	Antonino Daplas <adaplas@gmail.com>
7281L:	linux-fbdev@vger.kernel.org
7282S:	Maintained
7283F:	drivers/video/fbdev/i810/
7284
7285INTEL ASoC DRIVERS
7286M:	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
7287M:	Liam Girdwood <liam.r.girdwood@linux.intel.com>
7288M:	Jie Yang <yang.jie@linux.intel.com>
7289L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
7290S:	Supported
7291F:	sound/soc/intel/
7292
7293INTEL C600 SERIES SAS CONTROLLER DRIVER
7294M:	Intel SCU Linux support <intel-linux-scu@intel.com>
7295M:	Artur Paszkiewicz <artur.paszkiewicz@intel.com>
7296L:	linux-scsi@vger.kernel.org
7297T:	git git://git.code.sf.net/p/intel-sas/isci
7298S:	Supported
7299F:	drivers/scsi/isci/
7300
7301INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
7302M:	Jani Nikula <jani.nikula@linux.intel.com>
7303M:	Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
7304M:	Rodrigo Vivi <rodrigo.vivi@intel.com>
7305L:	intel-gfx@lists.freedesktop.org
7306W:	https://01.org/linuxgraphics/
7307B:	https://01.org/linuxgraphics/documentation/how-report-bugs
7308C:	irc://chat.freenode.net/intel-gfx
7309Q:	http://patchwork.freedesktop.org/project/intel-gfx/
7310T:	git git://anongit.freedesktop.org/drm-intel
7311S:	Supported
7312F:	drivers/gpu/drm/i915/
7313F:	include/drm/i915*
7314F:	include/uapi/drm/i915_drm.h
7315F:	Documentation/gpu/i915.rst
7316
7317INTEL ETHERNET DRIVERS
7318M:	Jeff Kirsher <jeffrey.t.kirsher@intel.com>
7319L:	intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
7320W:	http://www.intel.com/support/feedback.htm
7321W:	http://e1000.sourceforge.net/
7322Q:	http://patchwork.ozlabs.org/project/intel-wired-lan/list/
7323T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
7324T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
7325S:	Supported
7326F:	Documentation/networking/e100.rst
7327F:	Documentation/networking/e1000.rst
7328F:	Documentation/networking/e1000e.txt
7329F:	Documentation/networking/igb.txt
7330F:	Documentation/networking/igbvf.txt
7331F:	Documentation/networking/ixgb.txt
7332F:	Documentation/networking/ixgbe.txt
7333F:	Documentation/networking/ixgbevf.txt
7334F:	Documentation/networking/i40e.txt
7335F:	Documentation/networking/i40evf.txt
7336F:	Documentation/networking/ice.txt
7337F:	drivers/net/ethernet/intel/
7338F:	drivers/net/ethernet/intel/*/
7339F:	include/linux/avf/virtchnl.h
7340
7341INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
7342M:	Maik Broemme <mbroemme@libmpq.org>
7343L:	linux-fbdev@vger.kernel.org
7344S:	Maintained
7345F:	Documentation/fb/intelfb.txt
7346F:	drivers/video/fbdev/intelfb/
7347
7348INTEL GVT-g DRIVERS (Intel GPU Virtualization)
7349M:	Zhenyu Wang <zhenyuw@linux.intel.com>
7350M:	Zhi Wang <zhi.a.wang@intel.com>
7351L:	intel-gvt-dev@lists.freedesktop.org
7352L:	intel-gfx@lists.freedesktop.org
7353W:	https://01.org/igvt-g
7354T:	git https://github.com/intel/gvt-linux.git
7355S:	Supported
7356F:	drivers/gpu/drm/i915/gvt/
7357
7358INTEL HID EVENT DRIVER
7359M:	Alex Hung <alex.hung@canonical.com>
7360L:	platform-driver-x86@vger.kernel.org
7361S:	Maintained
7362F:	drivers/platform/x86/intel-hid.c
7363
7364INTEL I/OAT DMA DRIVER
7365M:	Dave Jiang <dave.jiang@intel.com>
7366R:	Dan Williams <dan.j.williams@intel.com>
7367L:	dmaengine@vger.kernel.org
7368Q:	https://patchwork.kernel.org/project/linux-dmaengine/list/
7369S:	Supported
7370F:	drivers/dma/ioat*
7371
7372INTEL IDLE DRIVER
7373M:	Jacob Pan <jacob.jun.pan@linux.intel.com>
7374M:	Len Brown <lenb@kernel.org>
7375L:	linux-pm@vger.kernel.org
7376T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
7377B:	https://bugzilla.kernel.org
7378S:	Supported
7379F:	drivers/idle/intel_idle.c
7380
7381INTEL INTEGRATED SENSOR HUB DRIVER
7382M:	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7383M:	Jiri Kosina <jikos@kernel.org>
7384L:	linux-input@vger.kernel.org
7385S:	Maintained
7386F:	drivers/hid/intel-ish-hid/
7387
7388INTEL IOMMU (VT-d)
7389M:	David Woodhouse <dwmw2@infradead.org>
7390L:	iommu@lists.linux-foundation.org
7391T:	git git://git.infradead.org/iommu-2.6.git
7392S:	Supported
7393F:	drivers/iommu/intel-iommu.c
7394F:	include/linux/intel-iommu.h
7395
7396INTEL IOP-ADMA DMA DRIVER
7397R:	Dan Williams <dan.j.williams@intel.com>
7398S:	Odd fixes
7399F:	drivers/dma/iop-adma.c
7400
7401INTEL IPU3 CSI-2 CIO2 DRIVER
7402M:	Yong Zhi <yong.zhi@intel.com>
7403M:	Sakari Ailus <sakari.ailus@linux.intel.com>
7404M:	Bingbu Cao <bingbu.cao@intel.com>
7405R:	Tian Shu Qiu <tian.shu.qiu@intel.com>
7406R:	Jian Xu Zheng <jian.xu.zheng@intel.com>
7407L:	linux-media@vger.kernel.org
7408S:	Maintained
7409F:	drivers/media/pci/intel/ipu3/
7410F:	Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
7411
7412INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
7413M:	Krzysztof Halasa <khalasa@piap.pl>
7414S:	Maintained
7415F:	arch/arm/mach-ixp4xx/include/mach/qmgr.h
7416F:	arch/arm/mach-ixp4xx/include/mach/npe.h
7417F:	arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
7418F:	arch/arm/mach-ixp4xx/ixp4xx_npe.c
7419F:	drivers/net/ethernet/xscale/ixp4xx_eth.c
7420F:	drivers/net/wan/ixp4xx_hss.c
7421
7422INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
7423M:	Deepak Saxena <dsaxena@plexity.net>
7424S:	Maintained
7425F:	drivers/char/hw_random/ixp4xx-rng.c
7426
7427INTEL MANAGEMENT ENGINE (mei)
7428M:	Tomas Winkler <tomas.winkler@intel.com>
7429L:	linux-kernel@vger.kernel.org
7430S:	Supported
7431F:	include/uapi/linux/mei.h
7432F:	include/linux/mei_cl_bus.h
7433F:	drivers/misc/mei/*
7434F:	drivers/watchdog/mei_wdt.c
7435F:	Documentation/misc-devices/mei/*
7436F:	samples/mei/*
7437
7438INTEL MENLOW THERMAL DRIVER
7439M:	Sujith Thomas <sujith.thomas@intel.com>
7440L:	platform-driver-x86@vger.kernel.org
7441W:	https://01.org/linux-acpi
7442S:	Supported
7443F:	drivers/platform/x86/intel_menlow.c
7444
7445INTEL MERRIFIELD GPIO DRIVER
7446M:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7447L:	linux-gpio@vger.kernel.org
7448S:	Maintained
7449F:	drivers/gpio/gpio-merrifield.c
7450
7451INTEL MIC DRIVERS (mic)
7452M:	Sudeep Dutt <sudeep.dutt@intel.com>
7453M:	Ashutosh Dixit <ashutosh.dixit@intel.com>
7454S:	Supported
7455W:	https://github.com/sudeepdutt/mic
7456W:	http://software.intel.com/en-us/mic-developer
7457F:	include/linux/mic_bus.h
7458F:	include/linux/scif.h
7459F:	include/uapi/linux/mic_common.h
7460F:	include/uapi/linux/mic_ioctl.h
7461F:	include/uapi/linux/scif_ioctl.h
7462F:	drivers/misc/mic/
7463F:	drivers/dma/mic_x100_dma.c
7464F:	drivers/dma/mic_x100_dma.h
7465F:	Documentation/mic/
7466
7467INTEL PMC CORE DRIVER
7468M:	Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
7469M:	Vishwanath Somayaji <vishwanath.somayaji@intel.com>
7470L:	platform-driver-x86@vger.kernel.org
7471S:	Maintained
7472F:	arch/x86/include/asm/pmc_core.h
7473F:	drivers/platform/x86/intel_pmc_core*
7474
7475INTEL PMC/P-Unit IPC DRIVER
7476M:	Zha Qipeng<qipeng.zha@intel.com>
7477L:	platform-driver-x86@vger.kernel.org
7478S:	Maintained
7479F:	drivers/platform/x86/intel_pmc_ipc.c
7480F:	drivers/platform/x86/intel_punit_ipc.c
7481F:	arch/x86/include/asm/intel_pmc_ipc.h
7482F:	arch/x86/include/asm/intel_punit_ipc.h
7483
7484INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
7485M:	Stanislav Yakovlev <stas.yakovlev@gmail.com>
7486L:	linux-wireless@vger.kernel.org
7487S:	Maintained
7488F:	Documentation/networking/README.ipw2100
7489F:	Documentation/networking/README.ipw2200
7490F:	drivers/net/wireless/intel/ipw2x00/
7491
7492INTEL PSTATE DRIVER
7493M:	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7494M:	Len Brown <lenb@kernel.org>
7495L:	linux-pm@vger.kernel.org
7496S:	Supported
7497F:	drivers/cpufreq/intel_pstate.c
7498
7499INTEL RDMA RNIC DRIVER
7500M:	Faisal Latif <faisal.latif@intel.com>
7501M:	Shiraz Saleem <shiraz.saleem@intel.com>
7502L:	linux-rdma@vger.kernel.org
7503S:	Supported
7504F:	drivers/infiniband/hw/i40iw/
7505F:	include/uapi/rdma/i40iw-abi.h
7506
7507INTEL SHA MULTIBUFFER DRIVER
7508M:	Megha Dey <megha.dey@linux.intel.com>
7509R:	Tim Chen <tim.c.chen@linux.intel.com>
7510L:	linux-crypto@vger.kernel.org
7511S:	Supported
7512F:	arch/x86/crypto/sha*-mb/
7513F:	crypto/mcryptd.c
7514
7515INTEL TELEMETRY DRIVER
7516M:	Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
7517L:	platform-driver-x86@vger.kernel.org
7518S:	Maintained
7519F:	arch/x86/include/asm/intel_telemetry.h
7520F:	drivers/platform/x86/intel_telemetry*
7521
7522INTEL VIRTUAL BUTTON DRIVER
7523M:	AceLan Kao <acelan.kao@canonical.com>
7524L:	platform-driver-x86@vger.kernel.org
7525S:	Maintained
7526F:	drivers/platform/x86/intel-vbtn.c
7527
7528INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
7529M:	Stanislaw Gruszka <sgruszka@redhat.com>
7530L:	linux-wireless@vger.kernel.org
7531S:	Supported
7532F:	drivers/net/wireless/intel/iwlegacy/
7533
7534INTEL WIRELESS WIFI LINK (iwlwifi)
7535M:	Johannes Berg <johannes.berg@intel.com>
7536M:	Emmanuel Grumbach <emmanuel.grumbach@intel.com>
7537M:	Luca Coelho <luciano.coelho@intel.com>
7538M:	Intel Linux Wireless <linuxwifi@intel.com>
7539L:	linux-wireless@vger.kernel.org
7540W:	http://intellinuxwireless.org
7541T:	git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
7542S:	Supported
7543F:	drivers/net/wireless/intel/iwlwifi/
7544
7545INTEL WIRELESS WIMAX CONNECTION 2400
7546M:	Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
7547M:	linux-wimax@intel.com
7548L:	wimax@linuxwimax.org (subscribers-only)
7549S:	Supported
7550W:	http://linuxwimax.org
7551F:	Documentation/wimax/README.i2400m
7552F:	drivers/net/wimax/i2400m/
7553F:	include/uapi/linux/wimax/i2400m.h
7554
7555INTEL WMI THUNDERBOLT FORCE POWER DRIVER
7556M:	Mario Limonciello <mario.limonciello@dell.com>
7557S:	Maintained
7558F:	drivers/platform/x86/intel-wmi-thunderbolt.c
7559
7560INTEL(R) TRACE HUB
7561M:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
7562S:	Supported
7563F:	Documentation/trace/intel_th.rst
7564F:	drivers/hwtracing/intel_th/
7565
7566INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
7567M:	Ning Sun <ning.sun@intel.com>
7568L:	tboot-devel@lists.sourceforge.net
7569W:	http://tboot.sourceforge.net
7570T:	hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
7571S:	Supported
7572F:	Documentation/intel_txt.txt
7573F:	include/linux/tboot.h
7574F:	arch/x86/kernel/tboot.c
7575
7576INTEL-MID GPIO DRIVER
7577M:	David Cohen <david.a.cohen@linux.intel.com>
7578L:	linux-gpio@vger.kernel.org
7579S:	Maintained
7580F:	drivers/gpio/gpio-intel-mid.c
7581
7582INVENSENSE MPU-3050 GYROSCOPE DRIVER
7583M:	Linus Walleij <linus.walleij@linaro.org>
7584L:	linux-iio@vger.kernel.org
7585S:	Maintained
7586F:	drivers/iio/gyro/mpu3050*
7587F:	Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
7588
7589IOC3 ETHERNET DRIVER
7590M:	Ralf Baechle <ralf@linux-mips.org>
7591L:	linux-mips@linux-mips.org
7592S:	Maintained
7593F:	drivers/net/ethernet/sgi/ioc3-eth.c
7594
7595IOC3 SERIAL DRIVER
7596M:	Pat Gefre <pfg@sgi.com>
7597L:	linux-serial@vger.kernel.org
7598S:	Maintained
7599F:	drivers/tty/serial/ioc3_serial.c
7600
7601IOMMU DRIVERS
7602M:	Joerg Roedel <joro@8bytes.org>
7603L:	iommu@lists.linux-foundation.org
7604T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
7605S:	Maintained
7606F:	Documentation/devicetree/bindings/iommu/
7607F:	drivers/iommu/
7608F:	include/linux/iommu.h
7609F:	include/linux/of_iommu.h
7610F:	include/linux/iova.h
7611
7612IP MASQUERADING
7613M:	Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
7614S:	Maintained
7615F:	net/ipv4/netfilter/ipt_MASQUERADE.c
7616
7617IPMI SUBSYSTEM
7618M:	Corey Minyard <minyard@acm.org>
7619L:	openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
7620W:	http://openipmi.sourceforge.net/
7621S:	Supported
7622F:	Documentation/IPMI.txt
7623F:	drivers/char/ipmi/
7624F:	include/linux/ipmi*
7625F:	include/uapi/linux/ipmi*
7626
7627IPS SCSI RAID DRIVER
7628M:	Adaptec OEM Raid Solutions <aacraid@microsemi.com>
7629L:	linux-scsi@vger.kernel.org
7630W:	http://www.adaptec.com/
7631S:	Maintained
7632F:	drivers/scsi/ips*
7633
7634IPVS
7635M:	Wensong Zhang <wensong@linux-vs.org>
7636M:	Simon Horman <horms@verge.net.au>
7637M:	Julian Anastasov <ja@ssi.bg>
7638L:	netdev@vger.kernel.org
7639L:	lvs-devel@vger.kernel.org
7640S:	Maintained
7641T:	git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
7642T:	git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
7643F:	Documentation/networking/ipvs-sysctl.txt
7644F:	include/net/ip_vs.h
7645F:	include/uapi/linux/ip_vs.h
7646F:	net/netfilter/ipvs/
7647
7648IPWIRELESS DRIVER
7649M:	Jiri Kosina <jikos@kernel.org>
7650M:	David Sterba <dsterba@suse.com>
7651S:	Odd Fixes
7652F:	drivers/tty/ipwireless/
7653
7654IPX NETWORK LAYER
7655L:	netdev@vger.kernel.org
7656S:	Obsolete
7657F:	include/uapi/linux/ipx.h
7658F:	drivers/staging/ipx/
7659
7660IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
7661M:	Marc Zyngier <marc.zyngier@arm.com>
7662S:	Maintained
7663T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7664F:	Documentation/IRQ-domain.txt
7665F:	include/linux/irqdomain.h
7666F:	kernel/irq/irqdomain.c
7667F:	kernel/irq/msi.c
7668
7669IRQ SUBSYSTEM
7670M:	Thomas Gleixner <tglx@linutronix.de>
7671L:	linux-kernel@vger.kernel.org
7672S:	Maintained
7673T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7674F:	kernel/irq/
7675
7676IRQCHIP DRIVERS
7677M:	Thomas Gleixner <tglx@linutronix.de>
7678M:	Jason Cooper <jason@lakedaemon.net>
7679M:	Marc Zyngier <marc.zyngier@arm.com>
7680L:	linux-kernel@vger.kernel.org
7681S:	Maintained
7682T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7683F:	Documentation/devicetree/bindings/interrupt-controller/
7684F:	drivers/irqchip/
7685
7686ISA
7687M:	William Breathitt Gray <vilhelm.gray@gmail.com>
7688S:	Maintained
7689F:	Documentation/isa.txt
7690F:	drivers/base/isa.c
7691F:	include/linux/isa.h
7692
7693ISA RADIO MODULE
7694M:	Hans Verkuil <hverkuil@xs4all.nl>
7695L:	linux-media@vger.kernel.org
7696T:	git git://linuxtv.org/media_tree.git
7697W:	https://linuxtv.org
7698S:	Maintained
7699F:	drivers/media/radio/radio-isa*
7700
7701ISAPNP
7702M:	Jaroslav Kysela <perex@perex.cz>
7703S:	Maintained
7704F:	Documentation/isapnp.txt
7705F:	drivers/pnp/isapnp/
7706F:	include/linux/isapnp.h
7707
7708ISCSI
7709M:	Lee Duncan <lduncan@suse.com>
7710M:	Chris Leech <cleech@redhat.com>
7711L:	open-iscsi@googlegroups.com
7712W:	www.open-iscsi.com
7713S:	Maintained
7714F:	drivers/scsi/*iscsi*
7715F:	include/scsi/*iscsi*
7716
7717iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
7718M:	Peter Jones <pjones@redhat.com>
7719M:	Konrad Rzeszutek Wilk <konrad@kernel.org>
7720S:	Maintained
7721F:	drivers/firmware/iscsi_ibft*
7722
7723ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
7724M:	Sagi Grimberg <sagi@grimberg.me>
7725M:	Max Gurtovoy <maxg@mellanox.com>
7726L:	linux-rdma@vger.kernel.org
7727S:	Supported
7728W:	http://www.openfabrics.org
7729W:	www.open-iscsi.org
7730Q:	http://patchwork.kernel.org/project/linux-rdma/list/
7731F:	drivers/infiniband/ulp/iser/
7732
7733ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
7734M:	Sagi Grimberg <sagi@grimberg.me>
7735T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
7736L:	linux-rdma@vger.kernel.org
7737L:	target-devel@vger.kernel.org
7738S:	Supported
7739W:	http://www.linux-iscsi.org
7740F:	drivers/infiniband/ulp/isert
7741
7742ISDN SUBSYSTEM
7743M:	Karsten Keil <isdn@linux-pingi.de>
7744L:	isdn4linux@listserv.isdn4linux.de (subscribers-only)
7745L:	netdev@vger.kernel.org
7746W:	http://www.isdn4linux.de
7747T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
7748S:	Maintained
7749F:	Documentation/isdn/
7750F:	drivers/isdn/
7751F:	include/linux/isdn.h
7752F:	include/linux/isdn/
7753F:	include/uapi/linux/isdn.h
7754F:	include/uapi/linux/isdn/
7755
7756ISDN SUBSYSTEM (Eicon active card driver)
7757M:	Armin Schindler <mac@melware.de>
7758L:	isdn4linux@listserv.isdn4linux.de (subscribers-only)
7759W:	http://www.melware.de
7760S:	Maintained
7761F:	drivers/isdn/hardware/eicon/
7762
7763IT87 HARDWARE MONITORING DRIVER
7764M:	Jean Delvare <jdelvare@suse.com>
7765L:	linux-hwmon@vger.kernel.org
7766S:	Maintained
7767F:	Documentation/hwmon/it87
7768F:	drivers/hwmon/it87.c
7769
7770IT913X MEDIA DRIVER
7771M:	Antti Palosaari <crope@iki.fi>
7772L:	linux-media@vger.kernel.org
7773W:	https://linuxtv.org
7774W:	http://palosaari.fi/linux/
7775Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7776T:	git git://linuxtv.org/anttip/media_tree.git
7777S:	Maintained
7778F:	drivers/media/tuners/it913x*
7779
7780IVTV VIDEO4LINUX DRIVER
7781M:	Andy Walls <awalls@md.metrocast.net>
7782L:	ivtv-devel@ivtvdriver.org (subscribers-only)
7783L:	linux-media@vger.kernel.org
7784T:	git git://linuxtv.org/media_tree.git
7785W:	http://www.ivtvdriver.org
7786S:	Maintained
7787F:	Documentation/media/v4l-drivers/ivtv*
7788F:	drivers/media/pci/ivtv/
7789F:	include/uapi/linux/ivtv*
7790
7791IX2505V MEDIA DRIVER
7792M:	Malcolm Priestley <tvboxspy@gmail.com>
7793L:	linux-media@vger.kernel.org
7794W:	https://linuxtv.org
7795Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7796S:	Maintained
7797F:	drivers/media/dvb-frontends/ix2505v*
7798
7799JAILHOUSE HYPERVISOR INTERFACE
7800M:	Jan Kiszka <jan.kiszka@siemens.com>
7801L:	jailhouse-dev@googlegroups.com
7802S:	Maintained
7803F:	arch/x86/kernel/jailhouse.c
7804F:	arch/x86/include/asm/jailhouse_para.h
7805
7806JC42.4 TEMPERATURE SENSOR DRIVER
7807M:	Guenter Roeck <linux@roeck-us.net>
7808L:	linux-hwmon@vger.kernel.org
7809S:	Maintained
7810F:	drivers/hwmon/jc42.c
7811F:	Documentation/hwmon/jc42
7812
7813JFS FILESYSTEM
7814M:	Dave Kleikamp <shaggy@kernel.org>
7815L:	jfs-discussion@lists.sourceforge.net
7816W:	http://jfs.sourceforge.net/
7817T:	git git://github.com/kleikamp/linux-shaggy.git
7818S:	Maintained
7819F:	Documentation/filesystems/jfs.txt
7820F:	fs/jfs/
7821
7822JME NETWORK DRIVER
7823M:	Guo-Fu Tseng <cooldavid@cooldavid.org>
7824L:	netdev@vger.kernel.org
7825S:	Maintained
7826F:	drivers/net/ethernet/jme.*
7827
7828JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
7829M:	David Woodhouse <dwmw2@infradead.org>
7830L:	linux-mtd@lists.infradead.org
7831W:	http://www.linux-mtd.infradead.org/doc/jffs2.html
7832S:	Maintained
7833F:	fs/jffs2/
7834F:	include/uapi/linux/jffs2.h
7835
7836JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
7837M:	"Theodore Ts'o" <tytso@mit.edu>
7838M:	Jan Kara <jack@suse.com>
7839L:	linux-ext4@vger.kernel.org
7840S:	Maintained
7841F:	fs/jbd2/
7842F:	include/linux/jbd2.h
7843
7844JPU V4L2 MEM2MEM DRIVER FOR RENESAS
7845M:	Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
7846L:	linux-media@vger.kernel.org
7847S:	Maintained
7848F:	drivers/media/platform/rcar_jpu.c
7849
7850JSM Neo PCI based serial card
7851M:	Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
7852L:	linux-serial@vger.kernel.org
7853S:	Maintained
7854F:	drivers/tty/serial/jsm/
7855
7856K10TEMP HARDWARE MONITORING DRIVER
7857M:	Clemens Ladisch <clemens@ladisch.de>
7858L:	linux-hwmon@vger.kernel.org
7859S:	Maintained
7860F:	Documentation/hwmon/k10temp
7861F:	drivers/hwmon/k10temp.c
7862
7863K8TEMP HARDWARE MONITORING DRIVER
7864M:	Rudolf Marek <r.marek@assembler.cz>
7865L:	linux-hwmon@vger.kernel.org
7866S:	Maintained
7867F:	Documentation/hwmon/k8temp
7868F:	drivers/hwmon/k8temp.c
7869
7870KASAN
7871M:	Andrey Ryabinin <aryabinin@virtuozzo.com>
7872R:	Alexander Potapenko <glider@google.com>
7873R:	Dmitry Vyukov <dvyukov@google.com>
7874L:	kasan-dev@googlegroups.com
7875S:	Maintained
7876F:	arch/*/include/asm/kasan.h
7877F:	arch/*/mm/kasan_init*
7878F:	Documentation/dev-tools/kasan.rst
7879F:	include/linux/kasan*.h
7880F:	lib/test_kasan.c
7881F:	mm/kasan/
7882F:	scripts/Makefile.kasan
7883
7884KCONFIG
7885M:	Masahiro Yamada <yamada.masahiro@socionext.com>
7886T:	git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
7887L:	linux-kbuild@vger.kernel.org
7888S:	Maintained
7889F:	Documentation/kbuild/kconfig*
7890F:	scripts/kconfig/
7891F:	scripts/Kconfig.include
7892
7893KDUMP
7894M:	Dave Young <dyoung@redhat.com>
7895M:	Baoquan He <bhe@redhat.com>
7896R:	Vivek Goyal <vgoyal@redhat.com>
7897L:	kexec@lists.infradead.org
7898W:	http://lse.sourceforge.net/kdump/
7899S:	Maintained
7900F:	Documentation/kdump/
7901
7902KEENE FM RADIO TRANSMITTER DRIVER
7903M:	Hans Verkuil <hverkuil@xs4all.nl>
7904L:	linux-media@vger.kernel.org
7905T:	git git://linuxtv.org/media_tree.git
7906W:	https://linuxtv.org
7907S:	Maintained
7908F:	drivers/media/radio/radio-keene*
7909
7910KERNEL AUTOMOUNTER
7911M:	Ian Kent <raven@themaw.net>
7912L:	autofs@vger.kernel.org
7913S:	Maintained
7914F:	fs/autofs/
7915
7916KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
7917M:	Masahiro Yamada <yamada.masahiro@socionext.com>
7918M:	Michal Marek <michal.lkml@markovi.net>
7919T:	git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
7920L:	linux-kbuild@vger.kernel.org
7921S:	Maintained
7922F:	Documentation/kbuild/
7923F:	Makefile
7924F:	scripts/Kbuild*
7925F:	scripts/Makefile*
7926F:	scripts/basic/
7927F:	scripts/mk*
7928F:	scripts/mod/
7929F:	scripts/package/
7930
7931KERNEL JANITORS
7932L:	kernel-janitors@vger.kernel.org
7933W:	http://kernelnewbies.org/KernelJanitors
7934S:	Odd Fixes
7935
7936KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
7937M:	"J. Bruce Fields" <bfields@fieldses.org>
7938M:	Jeff Layton <jlayton@kernel.org>
7939L:	linux-nfs@vger.kernel.org
7940W:	http://nfs.sourceforge.net/
7941T:	git git://linux-nfs.org/~bfields/linux.git
7942S:	Supported
7943F:	fs/nfsd/
7944F:	include/uapi/linux/nfsd/
7945F:	fs/lockd/
7946F:	fs/nfs_common/
7947F:	net/sunrpc/
7948F:	include/linux/lockd/
7949F:	include/linux/sunrpc/
7950F:	include/uapi/linux/sunrpc/
7951
7952KERNEL SELFTEST FRAMEWORK
7953M:	Shuah Khan <shuah@kernel.org>
7954L:	linux-kselftest@vger.kernel.org
7955T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
7956Q:	https://patchwork.kernel.org/project/linux-kselftest/list/
7957S:	Maintained
7958F:	tools/testing/selftests/
7959F:	Documentation/dev-tools/kselftest*
7960
7961KERNEL USERMODE HELPER
7962M:	"Luis R. Rodriguez" <mcgrof@kernel.org>
7963L:	linux-kernel@vger.kernel.org
7964S:	Maintained
7965F:	kernel/umh.c
7966F:	include/linux/umh.h
7967
7968KERNEL VIRTUAL MACHINE (KVM)
7969M:	Paolo Bonzini <pbonzini@redhat.com>
7970M:	Radim Krčmář <rkrcmar@redhat.com>
7971L:	kvm@vger.kernel.org
7972W:	http://www.linux-kvm.org
7973T:	git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7974S:	Supported
7975F:	Documentation/virtual/kvm/
7976F:	include/trace/events/kvm.h
7977F:	include/uapi/asm-generic/kvm*
7978F:	include/uapi/linux/kvm*
7979F:	include/asm-generic/kvm*
7980F:	include/linux/kvm*
7981F:	include/kvm/iodev.h
7982F:	virt/kvm/*
7983F:	tools/kvm/
7984
7985KERNEL VIRTUAL MACHINE FOR AMD-V (KVM/amd)
7986M:	Joerg Roedel <joro@8bytes.org>
7987L:	kvm@vger.kernel.org
7988W:	http://www.linux-kvm.org/
7989S:	Maintained
7990F:	arch/x86/include/asm/svm.h
7991F:	arch/x86/kvm/svm.c
7992
7993KERNEL VIRTUAL MACHINE FOR ARM (KVM/arm)
7994M:	Christoffer Dall <christoffer.dall@arm.com>
7995M:	Marc Zyngier <marc.zyngier@arm.com>
7996L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7997L:	kvmarm@lists.cs.columbia.edu
7998W:	http://systems.cs.columbia.edu/projects/kvm-arm
7999T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
8000S:	Supported
8001F:	arch/arm/include/uapi/asm/kvm*
8002F:	arch/arm/include/asm/kvm*
8003F:	arch/arm/kvm/
8004F:	virt/kvm/arm/
8005F:	include/kvm/arm_*
8006
8007KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
8008M:	Christoffer Dall <christoffer.dall@arm.com>
8009M:	Marc Zyngier <marc.zyngier@arm.com>
8010L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8011L:	kvmarm@lists.cs.columbia.edu
8012S:	Maintained
8013F:	arch/arm64/include/uapi/asm/kvm*
8014F:	arch/arm64/include/asm/kvm*
8015F:	arch/arm64/kvm/
8016
8017KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
8018M:	James Hogan <jhogan@kernel.org>
8019L:	linux-mips@linux-mips.org
8020S:	Supported
8021F:	arch/mips/include/uapi/asm/kvm*
8022F:	arch/mips/include/asm/kvm*
8023F:	arch/mips/kvm/
8024
8025KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
8026M:	Paul Mackerras <paulus@ozlabs.org>
8027L:	kvm-ppc@vger.kernel.org
8028W:	http://www.linux-kvm.org/
8029T:	git git://github.com/agraf/linux-2.6.git
8030S:	Supported
8031F:	arch/powerpc/include/uapi/asm/kvm*
8032F:	arch/powerpc/include/asm/kvm*
8033F:	arch/powerpc/kvm/
8034F:	arch/powerpc/kernel/kvm*
8035
8036KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
8037M:	Christian Borntraeger <borntraeger@de.ibm.com>
8038M:	Janosch Frank <frankja@linux.ibm.com>
8039R:	David Hildenbrand <david@redhat.com>
8040R:	Cornelia Huck <cohuck@redhat.com>
8041L:	linux-s390@vger.kernel.org
8042W:	http://www.ibm.com/developerworks/linux/linux390/
8043T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
8044S:	Supported
8045F:	arch/s390/include/uapi/asm/kvm*
8046F:	arch/s390/include/asm/gmap.h
8047F:	arch/s390/include/asm/kvm*
8048F:	arch/s390/kvm/
8049F:	arch/s390/mm/gmap.c
8050
8051KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
8052M:	Paolo Bonzini <pbonzini@redhat.com>
8053M:	Radim Krčmář <rkrcmar@redhat.com>
8054L:	kvm@vger.kernel.org
8055W:	http://www.linux-kvm.org
8056T:	git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8057S:	Supported
8058F:	arch/x86/kvm/
8059F:	arch/x86/include/uapi/asm/kvm*
8060F:	arch/x86/include/asm/kvm*
8061F:	arch/x86/include/asm/pvclock-abi.h
8062F:	arch/x86/kernel/kvm.c
8063F:	arch/x86/kernel/kvmclock.c
8064
8065KERNFS
8066M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8067M:	Tejun Heo <tj@kernel.org>
8068T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8069S:	Supported
8070F:	include/linux/kernfs.h
8071F:	fs/kernfs/
8072
8073KEXEC
8074M:	Eric Biederman <ebiederm@xmission.com>
8075W:	http://kernel.org/pub/linux/utils/kernel/kexec/
8076L:	kexec@lists.infradead.org
8077S:	Maintained
8078F:	include/linux/kexec.h
8079F:	include/uapi/linux/kexec.h
8080F:	kernel/kexec*
8081
8082KEYS-ENCRYPTED
8083M:	Mimi Zohar <zohar@linux.vnet.ibm.com>
8084L:	linux-integrity@vger.kernel.org
8085L:	keyrings@vger.kernel.org
8086S:	Supported
8087F:	Documentation/security/keys/trusted-encrypted.rst
8088F:	include/keys/encrypted-type.h
8089F:	security/keys/encrypted-keys/
8090
8091KEYS-TRUSTED
8092M:	James Bottomley <jejb@linux.vnet.ibm.com>
8093M:	Mimi Zohar <zohar@linux.vnet.ibm.com>
8094L:	linux-integrity@vger.kernel.org
8095L:	keyrings@vger.kernel.org
8096S:	Supported
8097F:	Documentation/security/keys/trusted-encrypted.rst
8098F:	include/keys/trusted-type.h
8099F:	security/keys/trusted.c
8100F:	security/keys/trusted.h
8101
8102KEYS/KEYRINGS:
8103M:	David Howells <dhowells@redhat.com>
8104L:	keyrings@vger.kernel.org
8105S:	Maintained
8106F:	Documentation/security/keys/core.rst
8107F:	include/linux/key.h
8108F:	include/linux/key-type.h
8109F:	include/linux/keyctl.h
8110F:	include/uapi/linux/keyctl.h
8111F:	include/keys/
8112F:	security/keys/
8113
8114KGDB / KDB /debug_core
8115M:	Jason Wessel <jason.wessel@windriver.com>
8116M:	Daniel Thompson <daniel.thompson@linaro.org>
8117W:	http://kgdb.wiki.kernel.org/
8118L:	kgdb-bugreport@lists.sourceforge.net
8119T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
8120S:	Maintained
8121F:	Documentation/dev-tools/kgdb.rst
8122F:	drivers/misc/kgdbts.c
8123F:	drivers/tty/serial/kgdboc.c
8124F:	include/linux/kdb.h
8125F:	include/linux/kgdb.h
8126F:	kernel/debug/
8127
8128KMEMLEAK
8129M:	Catalin Marinas <catalin.marinas@arm.com>
8130S:	Maintained
8131F:	Documentation/dev-tools/kmemleak.rst
8132F:	include/linux/kmemleak.h
8133F:	mm/kmemleak.c
8134F:	mm/kmemleak-test.c
8135
8136KMOD KERNEL MODULE LOADER - USERMODE HELPER
8137M:	"Luis R. Rodriguez" <mcgrof@kernel.org>
8138L:	linux-kernel@vger.kernel.org
8139S:	Maintained
8140F:	kernel/kmod.c
8141F:	include/linux/kmod.h
8142F:	lib/test_kmod.c
8143F:	tools/testing/selftests/kmod/
8144
8145KPROBES
8146M:	Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
8147M:	Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
8148M:	"David S. Miller" <davem@davemloft.net>
8149M:	Masami Hiramatsu <mhiramat@kernel.org>
8150S:	Maintained
8151F:	Documentation/kprobes.txt
8152F:	include/linux/kprobes.h
8153F:	include/asm-generic/kprobes.h
8154F:	kernel/kprobes.c
8155
8156KS0108 LCD CONTROLLER DRIVER
8157M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
8158S:	Maintained
8159F:	Documentation/auxdisplay/ks0108
8160F:	drivers/auxdisplay/ks0108.c
8161F:	include/linux/ks0108.h
8162
8163L3MDEV
8164M:	David Ahern <dsa@cumulusnetworks.com>
8165L:	netdev@vger.kernel.org
8166S:	Maintained
8167F:	net/l3mdev
8168F:	include/net/l3mdev.h
8169
8170LANTIQ / INTEL Ethernet drivers
8171M:	Hauke Mehrtens <hauke@hauke-m.de>
8172L:	netdev@vger.kernel.org
8173S:	Maintained
8174F:	net/dsa/tag_gswip.c
8175F:	drivers/net/ethernet/lantiq_xrx200.c
8176F:	drivers/net/dsa/lantiq_pce.h
8177F:	drivers/net/dsa/intel_gswip.c
8178
8179LANTIQ MIPS ARCHITECTURE
8180M:	John Crispin <john@phrozen.org>
8181L:	linux-mips@linux-mips.org
8182S:	Maintained
8183F:	arch/mips/lantiq
8184F:	drivers/soc/lantiq
8185
8186LAPB module
8187L:	linux-x25@vger.kernel.org
8188S:	Orphan
8189F:	Documentation/networking/lapb-module.txt
8190F:	include/*/lapb.h
8191F:	net/lapb/
8192
8193LASI 53c700 driver for PARISC
8194M:	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
8195L:	linux-scsi@vger.kernel.org
8196S:	Maintained
8197F:	Documentation/scsi/53c700.txt
8198F:	drivers/scsi/53c700*
8199
8200LEAKING_ADDRESSES
8201M:	Tobin C. Harding <me@tobin.cc>
8202M:	Tycho Andersen <tycho@tycho.ws>
8203L:	kernel-hardening@lists.openwall.com
8204S:	Maintained
8205T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
8206F:	scripts/leaking_addresses.pl
8207
8208LED SUBSYSTEM
8209M:	Jacek Anaszewski <jacek.anaszewski@gmail.com>
8210M:	Pavel Machek <pavel@ucw.cz>
8211L:	linux-leds@vger.kernel.org
8212T:	git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
8213S:	Maintained
8214F:	Documentation/devicetree/bindings/leds/
8215F:	drivers/leds/
8216F:	include/linux/leds.h
8217
8218LEGACY EEPROM DRIVER
8219M:	Jean Delvare <jdelvare@suse.com>
8220S:	Maintained
8221F:	Documentation/misc-devices/eeprom
8222F:	drivers/misc/eeprom/eeprom.c
8223
8224LEGO MINDSTORMS EV3
8225R:	David Lechner <david@lechnology.com>
8226S:	Maintained
8227F:	arch/arm/boot/dts/da850-lego-ev3.dts
8228F:	Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
8229F:	drivers/power/supply/lego_ev3_battery.c
8230
8231LEGO USB Tower driver
8232M:	Juergen Stuber <starblue@users.sourceforge.net>
8233L:	legousb-devel@lists.sourceforge.net
8234W:	http://legousb.sourceforge.net/
8235S:	Maintained
8236F:	drivers/usb/misc/legousbtower.c
8237
8238LG2160 MEDIA DRIVER
8239M:	Michael Krufky <mkrufky@linuxtv.org>
8240L:	linux-media@vger.kernel.org
8241W:	https://linuxtv.org
8242W:	http://github.com/mkrufky
8243Q:	http://patchwork.linuxtv.org/project/linux-media/list/
8244T:	git git://linuxtv.org/mkrufky/tuners.git
8245S:	Maintained
8246F:	drivers/media/dvb-frontends/lg2160.*
8247
8248LGDT3305 MEDIA DRIVER
8249M:	Michael Krufky <mkrufky@linuxtv.org>
8250L:	linux-media@vger.kernel.org
8251W:	https://linuxtv.org
8252W:	http://github.com/mkrufky
8253Q:	http://patchwork.linuxtv.org/project/linux-media/list/
8254T:	git git://linuxtv.org/mkrufky/tuners.git
8255S:	Maintained
8256F:	drivers/media/dvb-frontends/lgdt3305.*
8257
8258LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
8259M:	Viresh Kumar <vireshk@kernel.org>
8260L:	linux-ide@vger.kernel.org
8261T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
8262S:	Maintained
8263F:	include/linux/pata_arasan_cf_data.h
8264F:	drivers/ata/pata_arasan_cf.c
8265
8266LIBATA PATA DRIVERS
8267M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8268M:	Jens Axboe <axboe@kernel.dk>
8269L:	linux-ide@vger.kernel.org
8270T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8271S:	Maintained
8272F:	drivers/ata/pata_*.c
8273F:	drivers/ata/ata_generic.c
8274
8275LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
8276M:	Linus Walleij <linus.walleij@linaro.org>
8277L:	linux-ide@vger.kernel.org
8278T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
8279S:	Maintained
8280F:	drivers/ata/pata_ftide010.c
8281F:	drivers/ata/sata_gemini.c
8282F:	drivers/ata/sata_gemini.h
8283
8284LIBATA SATA AHCI PLATFORM devices support
8285M:	Hans de Goede <hdegoede@redhat.com>
8286M:	Jens Axboe <axboe@kernel.dk>
8287L:	linux-ide@vger.kernel.org
8288T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8289S:	Maintained
8290F:	drivers/ata/ahci_platform.c
8291F:	drivers/ata/libahci_platform.c
8292F:	include/linux/ahci_platform.h
8293
8294LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
8295M:	Mikael Pettersson <mikpelinux@gmail.com>
8296L:	linux-ide@vger.kernel.org
8297T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
8298S:	Maintained
8299F:	drivers/ata/sata_promise.*
8300
8301LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
8302M:	Jens Axboe <axboe@kernel.dk>
8303L:	linux-ide@vger.kernel.org
8304T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8305S:	Maintained
8306F:	drivers/ata/
8307F:	include/linux/ata.h
8308F:	include/linux/libata.h
8309F:	Documentation/devicetree/bindings/ata/
8310
8311LIBLOCKDEP
8312M:	Sasha Levin <alexander.levin@verizon.com>
8313S:	Maintained
8314F:	tools/lib/lockdep/
8315
8316LIBNVDIMM BLK: MMIO-APERTURE DRIVER
8317M:	Ross Zwisler <zwisler@kernel.org>
8318M:	Dan Williams <dan.j.williams@intel.com>
8319M:	Vishal Verma <vishal.l.verma@intel.com>
8320M:	Dave Jiang <dave.jiang@intel.com>
8321L:	linux-nvdimm@lists.01.org
8322Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
8323S:	Supported
8324F:	drivers/nvdimm/blk.c
8325F:	drivers/nvdimm/region_devs.c
8326
8327LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
8328M:	Vishal Verma <vishal.l.verma@intel.com>
8329M:	Dan Williams <dan.j.williams@intel.com>
8330M:	Ross Zwisler <zwisler@kernel.org>
8331M:	Dave Jiang <dave.jiang@intel.com>
8332L:	linux-nvdimm@lists.01.org
8333Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
8334S:	Supported
8335F:	drivers/nvdimm/btt*
8336
8337LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
8338M:	Ross Zwisler <zwisler@kernel.org>
8339M:	Dan Williams <dan.j.williams@intel.com>
8340M:	Vishal Verma <vishal.l.verma@intel.com>
8341M:	Dave Jiang <dave.jiang@intel.com>
8342L:	linux-nvdimm@lists.01.org
8343Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
8344S:	Supported
8345F:	drivers/nvdimm/pmem*
8346
8347LIBNVDIMM: DEVICETREE BINDINGS
8348M:	Oliver O'Halloran <oohall@gmail.com>
8349L:	linux-nvdimm@lists.01.org
8350Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
8351S:	Supported
8352F:	drivers/nvdimm/of_pmem.c
8353F:	Documentation/devicetree/bindings/pmem/pmem-region.txt
8354
8355LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
8356M:	Dan Williams <dan.j.williams@intel.com>
8357M:	Ross Zwisler <zwisler@kernel.org>
8358M:	Vishal Verma <vishal.l.verma@intel.com>
8359M:	Dave Jiang <dave.jiang@intel.com>
8360L:	linux-nvdimm@lists.01.org
8361Q:	https://patchwork.kernel.org/project/linux-nvdimm/list/
8362T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
8363S:	Supported
8364F:	drivers/nvdimm/*
8365F:	drivers/acpi/nfit/*
8366F:	include/linux/nd.h
8367F:	include/linux/libnvdimm.h
8368F:	include/uapi/linux/ndctl.h
8369
8370LIGHTNVM PLATFORM SUPPORT
8371M:	Matias Bjorling <mb@lightnvm.io>
8372W:	http://github/OpenChannelSSD
8373L:	linux-block@vger.kernel.org
8374S:	Maintained
8375F:	drivers/lightnvm/
8376F:	include/linux/lightnvm.h
8377F:	include/uapi/linux/lightnvm.h
8378
8379LINUX FOR POWER MACINTOSH
8380M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
8381W:	http://www.penguinppc.org/
8382L:	linuxppc-dev@lists.ozlabs.org
8383S:	Maintained
8384F:	arch/powerpc/platforms/powermac/
8385F:	drivers/macintosh/
8386
8387LINUX FOR POWERPC (32-BIT AND 64-BIT)
8388M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
8389M:	Paul Mackerras <paulus@samba.org>
8390M:	Michael Ellerman <mpe@ellerman.id.au>
8391W:	https://github.com/linuxppc/linux/wiki
8392L:	linuxppc-dev@lists.ozlabs.org
8393Q:	http://patchwork.ozlabs.org/project/linuxppc-dev/list/
8394T:	git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
8395S:	Supported
8396F:	Documentation/ABI/stable/sysfs-firmware-opal-*
8397F:	Documentation/devicetree/bindings/powerpc/
8398F:	Documentation/devicetree/bindings/rtc/rtc-opal.txt
8399F:	Documentation/devicetree/bindings/i2c/i2c-opal.txt
8400F:	Documentation/powerpc/
8401F:	arch/powerpc/
8402F:	drivers/char/tpm/tpm_ibmvtpm*
8403F:	drivers/crypto/nx/
8404F:	drivers/crypto/vmx/
8405F:	drivers/i2c/busses/i2c-opal.c
8406F:	drivers/net/ethernet/ibm/ibmveth.*
8407F:	drivers/net/ethernet/ibm/ibmvnic.*
8408F:	drivers/pci/hotplug/pnv_php.c
8409F:	drivers/pci/hotplug/rpa*
8410F:	drivers/rtc/rtc-opal.c
8411F:	drivers/scsi/ibmvscsi/
8412F:	drivers/tty/hvc/hvc_opal.c
8413F:	drivers/watchdog/wdrtas.c
8414F:	tools/testing/selftests/powerpc
8415N:	/pmac
8416N:	powermac
8417N:	powernv
8418N:	[^a-z0-9]ps3
8419N:	pseries
8420
8421LINUX FOR POWERPC EMBEDDED MPC5XXX
8422M:	Anatolij Gustschin <agust@denx.de>
8423L:	linuxppc-dev@lists.ozlabs.org
8424T:	git git://git.denx.de/linux-denx-agust.git
8425S:	Maintained
8426F:	arch/powerpc/platforms/512x/
8427F:	arch/powerpc/platforms/52xx/
8428
8429LINUX FOR POWERPC EMBEDDED PPC4XX
8430M:	Alistair Popple <alistair@popple.id.au>
8431M:	Matt Porter <mporter@kernel.crashing.org>
8432W:	http://www.penguinppc.org/
8433L:	linuxppc-dev@lists.ozlabs.org
8434S:	Maintained
8435F:	arch/powerpc/platforms/40x/
8436F:	arch/powerpc/platforms/44x/
8437
8438LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
8439M:	Scott Wood <oss@buserror.net>
8440M:	Kumar Gala <galak@kernel.crashing.org>
8441W:	http://www.penguinppc.org/
8442L:	linuxppc-dev@lists.ozlabs.org
8443T:	git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
8444S:	Maintained
8445F:	arch/powerpc/platforms/83xx/
8446F:	arch/powerpc/platforms/85xx/
8447F:	Documentation/devicetree/bindings/powerpc/fsl/
8448
8449LINUX FOR POWERPC EMBEDDED PPC8XX
8450M:	Vitaly Bordug <vitb@kernel.crashing.org>
8451W:	http://www.penguinppc.org/
8452L:	linuxppc-dev@lists.ozlabs.org
8453S:	Maintained
8454F:	arch/powerpc/platforms/8xx/
8455
8456LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
8457L:	linuxppc-dev@lists.ozlabs.org
8458S:	Orphan
8459F:	arch/powerpc/*/*virtex*
8460F:	arch/powerpc/*/*/*virtex*
8461
8462LINUX FOR POWERPC PA SEMI PWRFICIENT
8463L:	linuxppc-dev@lists.ozlabs.org
8464S:	Orphan
8465F:	arch/powerpc/platforms/pasemi/
8466F:	drivers/*/*pasemi*
8467F:	drivers/*/*/*pasemi*
8468
8469LINUX KERNEL DUMP TEST MODULE (LKDTM)
8470M:	Kees Cook <keescook@chromium.org>
8471S:	Maintained
8472F:	drivers/misc/lkdtm/*
8473
8474LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
8475M:	Alan Stern <stern@rowland.harvard.edu>
8476M:	Andrea Parri <andrea.parri@amarulasolutions.com>
8477M:	Will Deacon <will.deacon@arm.com>
8478M:	Peter Zijlstra <peterz@infradead.org>
8479M:	Boqun Feng <boqun.feng@gmail.com>
8480M:	Nicholas Piggin <npiggin@gmail.com>
8481M:	David Howells <dhowells@redhat.com>
8482M:	Jade Alglave <j.alglave@ucl.ac.uk>
8483M:	Luc Maranget <luc.maranget@inria.fr>
8484M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8485R:	Akira Yokosawa <akiyks@gmail.com>
8486R:	Daniel Lustig <dlustig@nvidia.com>
8487L:	linux-kernel@vger.kernel.org
8488L:	linux-arch@vger.kernel.org
8489S:	Supported
8490T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8491F:	tools/memory-model/
8492F:	Documentation/atomic_bitops.txt
8493F:	Documentation/atomic_t.txt
8494F:	Documentation/core-api/atomic_ops.rst
8495F:	Documentation/core-api/refcount-vs-atomic.rst
8496F:	Documentation/memory-barriers.txt
8497
8498LIS3LV02D ACCELEROMETER DRIVER
8499M:	Eric Piel <eric.piel@tremplin-utc.net>
8500S:	Maintained
8501F:	Documentation/misc-devices/lis3lv02d
8502F:	drivers/misc/lis3lv02d/
8503F:	drivers/platform/x86/hp_accel.c
8504
8505LIVE PATCHING
8506M:	Josh Poimboeuf <jpoimboe@redhat.com>
8507M:	Jessica Yu <jeyu@kernel.org>
8508M:	Jiri Kosina <jikos@kernel.org>
8509M:	Miroslav Benes <mbenes@suse.cz>
8510R:	Petr Mladek <pmladek@suse.com>
8511S:	Maintained
8512F:	kernel/livepatch/
8513F:	include/linux/livepatch.h
8514F:	arch/x86/include/asm/livepatch.h
8515F:	arch/x86/kernel/livepatch.c
8516F:	Documentation/livepatch/
8517F:	Documentation/ABI/testing/sysfs-kernel-livepatch
8518F:	samples/livepatch/
8519L:	live-patching@vger.kernel.org
8520T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
8521
8522LLC (802.2)
8523L:	netdev@vger.kernel.org
8524S:	Odd fixes
8525F:	include/linux/llc.h
8526F:	include/uapi/linux/llc.h
8527F:	include/net/llc*
8528F:	net/llc/
8529
8530LM73 HARDWARE MONITOR DRIVER
8531M:	Guillaume Ligneul <guillaume.ligneul@gmail.com>
8532L:	linux-hwmon@vger.kernel.org
8533S:	Maintained
8534F:	drivers/hwmon/lm73.c
8535
8536LM78 HARDWARE MONITOR DRIVER
8537M:	Jean Delvare <jdelvare@suse.com>
8538L:	linux-hwmon@vger.kernel.org
8539S:	Maintained
8540F:	Documentation/hwmon/lm78
8541F:	drivers/hwmon/lm78.c
8542
8543LM83 HARDWARE MONITOR DRIVER
8544M:	Jean Delvare <jdelvare@suse.com>
8545L:	linux-hwmon@vger.kernel.org
8546S:	Maintained
8547F:	Documentation/hwmon/lm83
8548F:	drivers/hwmon/lm83.c
8549
8550LM90 HARDWARE MONITOR DRIVER
8551M:	Jean Delvare <jdelvare@suse.com>
8552L:	linux-hwmon@vger.kernel.org
8553S:	Maintained
8554F:	Documentation/hwmon/lm90
8555F:	Documentation/devicetree/bindings/hwmon/lm90.txt
8556F:	drivers/hwmon/lm90.c
8557F:	include/dt-bindings/thermal/lm90.h
8558
8559LM95234 HARDWARE MONITOR DRIVER
8560M:	Guenter Roeck <linux@roeck-us.net>
8561L:	linux-hwmon@vger.kernel.org
8562S:	Maintained
8563F:	Documentation/hwmon/lm95234
8564F:	drivers/hwmon/lm95234.c
8565
8566LME2510 MEDIA DRIVER
8567M:	Malcolm Priestley <tvboxspy@gmail.com>
8568L:	linux-media@vger.kernel.org
8569W:	https://linuxtv.org
8570Q:	http://patchwork.linuxtv.org/project/linux-media/list/
8571S:	Maintained
8572F:	drivers/media/usb/dvb-usb-v2/lmedm04*
8573
8574LOADPIN SECURITY MODULE
8575M:	Kees Cook <keescook@chromium.org>
8576T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
8577S:	Supported
8578F:	security/loadpin/
8579F:	Documentation/admin-guide/LSM/LoadPin.rst
8580
8581LOCKING PRIMITIVES
8582M:	Peter Zijlstra <peterz@infradead.org>
8583M:	Ingo Molnar <mingo@redhat.com>
8584M:	Will Deacon <will.deacon@arm.com>
8585L:	linux-kernel@vger.kernel.org
8586T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8587S:	Maintained
8588F:	Documentation/locking/
8589F:	include/linux/lockdep.h
8590F:	include/linux/spinlock*.h
8591F:	arch/*/include/asm/spinlock*.h
8592F:	include/linux/rwlock*.h
8593F:	include/linux/mutex*.h
8594F:	arch/*/include/asm/mutex*.h
8595F:	include/linux/rwsem*.h
8596F:	arch/*/include/asm/rwsem.h
8597F:	include/linux/seqlock.h
8598F:	lib/locking*.[ch]
8599F:	kernel/locking/
8600X:	kernel/locking/locktorture.c
8601
8602LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
8603M:	"Richard Russon (FlatCap)" <ldm@flatcap.org>
8604L:	linux-ntfs-dev@lists.sourceforge.net
8605W:	http://www.linux-ntfs.org/content/view/19/37/
8606S:	Maintained
8607F:	Documentation/ldm.txt
8608F:	block/partitions/ldm.*
8609
8610LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
8611M:	Sathya Prakash <sathya.prakash@broadcom.com>
8612M:	Chaitra P B <chaitra.basappa@broadcom.com>
8613M:	Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
8614L:	MPT-FusionLinux.pdl@broadcom.com
8615L:	linux-scsi@vger.kernel.org
8616W:	http://www.avagotech.com/support/
8617S:	Supported
8618F:	drivers/message/fusion/
8619F:	drivers/scsi/mpt3sas/
8620
8621LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
8622M:	Matthew Wilcox <matthew@wil.cx>
8623L:	linux-scsi@vger.kernel.org
8624S:	Maintained
8625F:	drivers/scsi/sym53c8xx_2/
8626
8627LTC4261 HARDWARE MONITOR DRIVER
8628M:	Guenter Roeck <linux@roeck-us.net>
8629L:	linux-hwmon@vger.kernel.org
8630S:	Maintained
8631F:	Documentation/hwmon/ltc4261
8632F:	drivers/hwmon/ltc4261.c
8633
8634LTC4306 I2C MULTIPLEXER DRIVER
8635M:	Michael Hennerich <michael.hennerich@analog.com>
8636W:	http://ez.analog.com/community/linux-device-drivers
8637L:	linux-i2c@vger.kernel.org
8638S:	Supported
8639F:	drivers/i2c/muxes/i2c-mux-ltc4306.c
8640F:	Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
8641
8642LTP (Linux Test Project)
8643M:	Mike Frysinger <vapier@gentoo.org>
8644M:	Cyril Hrubis <chrubis@suse.cz>
8645M:	Wanlong Gao <wanlong.gao@gmail.com>
8646M:	Jan Stancek <jstancek@redhat.com>
8647M:	Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
8648M:	Alexey Kodanev <alexey.kodanev@oracle.com>
8649L:	ltp@lists.linux.it (subscribers-only)
8650W:	http://linux-test-project.github.io/
8651T:	git git://github.com/linux-test-project/ltp.git
8652S:	Maintained
8653
8654M68K ARCHITECTURE
8655M:	Geert Uytterhoeven <geert@linux-m68k.org>
8656L:	linux-m68k@lists.linux-m68k.org
8657W:	http://www.linux-m68k.org/
8658T:	git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
8659S:	Maintained
8660F:	arch/m68k/
8661F:	drivers/zorro/
8662
8663M68K ON APPLE MACINTOSH
8664M:	Joshua Thompson <funaho@jurai.org>
8665W:	http://www.mac.linux-m68k.org/
8666L:	linux-m68k@lists.linux-m68k.org
8667S:	Maintained
8668F:	arch/m68k/mac/
8669
8670M68K ON HP9000/300
8671M:	Philip Blundell <philb@gnu.org>
8672W:	http://www.tazenda.demon.co.uk/phil/linux-hp
8673S:	Maintained
8674F:	arch/m68k/hp300/
8675
8676M88DS3103 MEDIA DRIVER
8677M:	Antti Palosaari <crope@iki.fi>
8678L:	linux-media@vger.kernel.org
8679W:	https://linuxtv.org
8680W:	http://palosaari.fi/linux/
8681Q:	http://patchwork.linuxtv.org/project/linux-media/list/
8682T:	git git://linuxtv.org/anttip/media_tree.git
8683S:	Maintained
8684F:	drivers/media/dvb-frontends/m88ds3103*
8685
8686M88RS2000 MEDIA DRIVER
8687M:	Malcolm Priestley <tvboxspy@gmail.com>
8688L:	linux-media@vger.kernel.org
8689W:	https://linuxtv.org
8690Q:	http://patchwork.linuxtv.org/project/linux-media/list/
8691S:	Maintained
8692F:	drivers/media/dvb-frontends/m88rs2000*
8693
8694MA901 MASTERKIT USB FM RADIO DRIVER
8695M:	Alexey Klimov <klimov.linux@gmail.com>
8696L:	linux-media@vger.kernel.org
8697T:	git git://linuxtv.org/media_tree.git
8698S:	Maintained
8699F:	drivers/media/radio/radio-ma901.c
8700
8701MAC80211
8702M:	Johannes Berg <johannes@sipsolutions.net>
8703L:	linux-wireless@vger.kernel.org
8704W:	http://wireless.kernel.org/
8705T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8706T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8707S:	Maintained
8708F:	Documentation/networking/mac80211-injection.txt
8709F:	include/net/mac80211.h
8710F:	net/mac80211/
8711F:	drivers/net/wireless/mac80211_hwsim.[ch]
8712F:	Documentation/networking/mac80211_hwsim/README
8713
8714MAILBOX API
8715M:	Jassi Brar <jassisinghbrar@gmail.com>
8716L:	linux-kernel@vger.kernel.org
8717S:	Maintained
8718F:	drivers/mailbox/
8719F:	include/linux/mailbox_client.h
8720F:	include/linux/mailbox_controller.h
8721
8722MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
8723M:	Michael Kerrisk <mtk.manpages@gmail.com>
8724W:	http://www.kernel.org/doc/man-pages
8725L:	linux-man@vger.kernel.org
8726S:	Maintained
8727
8728MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
8729M:	Rahul Bedarkar <rahulbedarkar89@gmail.com>
8730L:	linux-mips@linux-mips.org
8731S:	Maintained
8732F:	arch/mips/boot/dts/img/pistachio_marduk.dts
8733
8734MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
8735M:	Andrew Lunn <andrew@lunn.ch>
8736M:	Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8737L:	netdev@vger.kernel.org
8738S:	Maintained
8739F:	drivers/net/dsa/mv88e6xxx/
8740F:	linux/platform_data/mv88e6xxx.h
8741F:	Documentation/devicetree/bindings/net/dsa/marvell.txt
8742
8743MARVELL ARMADA DRM SUPPORT
8744M:	Russell King <linux@armlinux.org.uk>
8745S:	Maintained
8746T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
8747T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
8748F:	drivers/gpu/drm/armada/
8749F:	include/uapi/drm/armada_drm.h
8750F:	Documentation/devicetree/bindings/display/armada/
8751
8752MARVELL CRYPTO DRIVER
8753M:	Boris Brezillon <boris.brezillon@bootlin.com>
8754M:	Arnaud Ebalard <arno@natisbad.org>
8755F:	drivers/crypto/marvell/
8756S:	Maintained
8757L:	linux-crypto@vger.kernel.org
8758
8759MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
8760M:	Mirko Lindner <mlindner@marvell.com>
8761M:	Stephen Hemminger <stephen@networkplumber.org>
8762L:	netdev@vger.kernel.org
8763S:	Maintained
8764F:	drivers/net/ethernet/marvell/sk*
8765
8766MARVELL LIBERTAS WIRELESS DRIVER
8767L:	libertas-dev@lists.infradead.org
8768S:	Orphan
8769F:	drivers/net/wireless/marvell/libertas/
8770
8771MARVELL MACCHIATOBIN SUPPORT
8772M:	Russell King <linux@armlinux.org.uk>
8773L:	linux-arm-kernel@lists.infradead.org
8774S:	Maintained
8775F:	arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
8776
8777MARVELL MV643XX ETHERNET DRIVER
8778M:	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
8779L:	netdev@vger.kernel.org
8780S:	Maintained
8781F:	drivers/net/ethernet/marvell/mv643xx_eth.*
8782F:	include/linux/mv643xx.h
8783
8784MARVELL MV88X3310 PHY DRIVER
8785M:	Russell King <linux@armlinux.org.uk>
8786L:	netdev@vger.kernel.org
8787S:	Maintained
8788F:	drivers/net/phy/marvell10g.c
8789
8790MARVELL MVNETA ETHERNET DRIVER
8791M:	Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8792L:	netdev@vger.kernel.org
8793S:	Maintained
8794F:	drivers/net/ethernet/marvell/mvneta.*
8795
8796MARVELL MWIFIEX WIRELESS DRIVER
8797M:	Amitkumar Karwar <amitkarwar@gmail.com>
8798M:	Nishant Sarmukadam <nishants@marvell.com>
8799M:	Ganapathi Bhat <gbhat@marvell.com>
8800M:	Xinming Hu <huxinming820@gmail.com>
8801L:	linux-wireless@vger.kernel.org
8802S:	Maintained
8803F:	drivers/net/wireless/marvell/mwifiex/
8804
8805MARVELL MWL8K WIRELESS DRIVER
8806M:	Lennert Buytenhek <buytenh@wantstofly.org>
8807L:	linux-wireless@vger.kernel.org
8808S:	Odd Fixes
8809F:	drivers/net/wireless/marvell/mwl8k.c
8810
8811MARVELL NAND CONTROLLER DRIVER
8812M:	Miquel Raynal <miquel.raynal@bootlin.com>
8813L:	linux-mtd@lists.infradead.org
8814S:	Maintained
8815F:	drivers/mtd/nand/raw/marvell_nand.c
8816F:	Documentation/devicetree/bindings/mtd/marvell-nand.txt
8817
8818MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
8819M:	Nicolas Pitre <nico@fluxnic.net>
8820S:	Odd Fixes
8821F:	drivers/mmc/host/mvsdio.*
8822
8823MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
8824M:	Hu Ziji <huziji@marvell.com>
8825L:	linux-mmc@vger.kernel.org
8826S:	Supported
8827F:	drivers/mmc/host/sdhci-xenon*
8828F:	Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
8829
8830MATROX FRAMEBUFFER DRIVER
8831L:	linux-fbdev@vger.kernel.org
8832S:	Orphan
8833F:	drivers/video/fbdev/matrox/matroxfb_*
8834F:	include/uapi/linux/matroxfb.h
8835
8836MAX16065 HARDWARE MONITOR DRIVER
8837M:	Guenter Roeck <linux@roeck-us.net>
8838L:	linux-hwmon@vger.kernel.org
8839S:	Maintained
8840F:	Documentation/hwmon/max16065
8841F:	drivers/hwmon/max16065.c
8842
8843MAX20751 HARDWARE MONITOR DRIVER
8844M:	Guenter Roeck <linux@roeck-us.net>
8845L:	linux-hwmon@vger.kernel.org
8846S:	Maintained
8847F:	Documentation/hwmon/max20751
8848F:	drivers/hwmon/max20751.c
8849
8850MAX2175 SDR TUNER DRIVER
8851M:	Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8852L:	linux-media@vger.kernel.org
8853T:	git git://linuxtv.org/media_tree.git
8854S:	Maintained
8855F:	Documentation/devicetree/bindings/media/i2c/max2175.txt
8856F:	Documentation/media/v4l-drivers/max2175.rst
8857F:	drivers/media/i2c/max2175*
8858F:	include/uapi/linux/max2175.h
8859
8860MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8861L:	linux-hwmon@vger.kernel.org
8862S:	Orphan
8863F:	Documentation/hwmon/max6650
8864F:	drivers/hwmon/max6650.c
8865
8866MAX6697 HARDWARE MONITOR DRIVER
8867M:	Guenter Roeck <linux@roeck-us.net>
8868L:	linux-hwmon@vger.kernel.org
8869S:	Maintained
8870F:	Documentation/hwmon/max6697
8871F:	Documentation/devicetree/bindings/hwmon/max6697.txt
8872F:	drivers/hwmon/max6697.c
8873F:	include/linux/platform_data/max6697.h
8874
8875MAX9860 MONO AUDIO VOICE CODEC DRIVER
8876M:	Peter Rosin <peda@axentia.se>
8877L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
8878S:	Maintained
8879F:	Documentation/devicetree/bindings/sound/max9860.txt
8880F:	sound/soc/codecs/max9860.*
8881
8882MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
8883M:	Javier Martinez Canillas <javier@dowhile0.org>
8884L:	linux-kernel@vger.kernel.org
8885S:	Supported
8886F:	drivers/regulator/max77802-regulator.c
8887F:	Documentation/devicetree/bindings/*/*max77802.txt
8888F:	include/dt-bindings/*/*max77802.h
8889
8890MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
8891M:	Krzysztof Kozlowski <krzk@kernel.org>
8892M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8893L:	linux-pm@vger.kernel.org
8894S:	Supported
8895F:	drivers/power/supply/max14577_charger.c
8896F:	drivers/power/supply/max77693_charger.c
8897
8898MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
8899M:	Chanwoo Choi <cw00.choi@samsung.com>
8900M:	Krzysztof Kozlowski <krzk@kernel.org>
8901M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8902L:	linux-kernel@vger.kernel.org
8903S:	Supported
8904F:	drivers/*/max14577*.c
8905F:	drivers/*/max77686*.c
8906F:	drivers/*/max77693*.c
8907F:	drivers/extcon/extcon-max14577.c
8908F:	drivers/extcon/extcon-max77693.c
8909F:	drivers/rtc/rtc-max77686.c
8910F:	drivers/clk/clk-max77686.c
8911F:	Documentation/devicetree/bindings/mfd/max14577.txt
8912F:	Documentation/devicetree/bindings/*/max77686.txt
8913F:	Documentation/devicetree/bindings/mfd/max77693.txt
8914F:	Documentation/devicetree/bindings/clock/maxim,max77686.txt
8915F:	include/linux/mfd/max14577*.h
8916F:	include/linux/mfd/max77686*.h
8917F:	include/linux/mfd/max77693*.h
8918
8919MAXIRADIO FM RADIO RECEIVER DRIVER
8920M:	Hans Verkuil <hverkuil@xs4all.nl>
8921L:	linux-media@vger.kernel.org
8922T:	git git://linuxtv.org/media_tree.git
8923W:	https://linuxtv.org
8924S:	Maintained
8925F:	drivers/media/radio/radio-maxiradio*
8926
8927MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
8928M:	Peter Rosin <peda@axentia.se>
8929L:	linux-iio@vger.kernel.org
8930S:	Maintained
8931F:	Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
8932F:	drivers/iio/potentiometer/mcp4018.c
8933F:	drivers/iio/potentiometer/mcp4531.c
8934
8935MCR20A IEEE-802.15.4 RADIO DRIVER
8936M:	Xue Liu <liuxuenetmail@gmail.com>
8937L:	linux-wpan@vger.kernel.org
8938W:	https://github.com/xueliu/mcr20a-linux
8939S:	Maintained
8940F:	drivers/net/ieee802154/mcr20a.c
8941F:	drivers/net/ieee802154/mcr20a.h
8942F:	Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
8943
8944MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
8945M:	William Breathitt Gray <vilhelm.gray@gmail.com>
8946L:	linux-iio@vger.kernel.org
8947S:	Maintained
8948F:	drivers/iio/dac/cio-dac.c
8949
8950MEDIA DRIVERS FOR ASCOT2E
8951M:	Sergey Kozlov <serjk@netup.ru>
8952M:	Abylay Ospan <aospan@netup.ru>
8953L:	linux-media@vger.kernel.org
8954W:	https://linuxtv.org
8955W:	http://netup.tv/
8956T:	git git://linuxtv.org/media_tree.git
8957S:	Supported
8958F:	drivers/media/dvb-frontends/ascot2e*
8959
8960MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
8961M:	Jasmin Jessich <jasmin@anw.at>
8962L:	linux-media@vger.kernel.org
8963W:	https://linuxtv.org
8964T:	git git://linuxtv.org/media_tree.git
8965S:	Maintained
8966F:	drivers/media/dvb-frontends/cxd2099*
8967
8968MEDIA DRIVERS FOR CXD2841ER
8969M:	Sergey Kozlov <serjk@netup.ru>
8970M:	Abylay Ospan <aospan@netup.ru>
8971L:	linux-media@vger.kernel.org
8972W:	https://linuxtv.org
8973W:	http://netup.tv/
8974T:	git git://linuxtv.org/media_tree.git
8975S:	Supported
8976F:	drivers/media/dvb-frontends/cxd2841er*
8977
8978MEDIA DRIVERS FOR CXD2880
8979M:	Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
8980L:	linux-media@vger.kernel.org
8981W:	http://linuxtv.org/
8982T:	git git://linuxtv.org/media_tree.git
8983S:	Supported
8984F:	drivers/media/dvb-frontends/cxd2880/*
8985F:	drivers/media/spi/cxd2880*
8986
8987MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
8988M:	Daniel Scheller <d.scheller.oss@gmail.com>
8989L:	linux-media@vger.kernel.org
8990W:	https://linuxtv.org
8991T:	git git://linuxtv.org/media_tree.git
8992S:	Maintained
8993F:	drivers/media/pci/ddbridge/*
8994
8995MEDIA DRIVERS FOR FREESCALE IMX
8996M:	Steve Longerbeam <slongerbeam@gmail.com>
8997M:	Philipp Zabel <p.zabel@pengutronix.de>
8998L:	linux-media@vger.kernel.org
8999T:	git git://linuxtv.org/media_tree.git
9000S:	Maintained
9001F:	Documentation/devicetree/bindings/media/imx.txt
9002F:	Documentation/media/v4l-drivers/imx.rst
9003F:	drivers/staging/media/imx/
9004F:	include/linux/imx-media.h
9005F:	include/media/imx.h
9006
9007MEDIA DRIVERS FOR HELENE
9008M:	Abylay Ospan <aospan@netup.ru>
9009L:	linux-media@vger.kernel.org
9010W:	https://linuxtv.org
9011W:	http://netup.tv/
9012T:	git git://linuxtv.org/media_tree.git
9013S:	Supported
9014F:	drivers/media/dvb-frontends/helene*
9015
9016MEDIA DRIVERS FOR HORUS3A
9017M:	Sergey Kozlov <serjk@netup.ru>
9018M:	Abylay Ospan <aospan@netup.ru>
9019L:	linux-media@vger.kernel.org
9020W:	https://linuxtv.org
9021W:	http://netup.tv/
9022T:	git git://linuxtv.org/media_tree.git
9023S:	Supported
9024F:	drivers/media/dvb-frontends/horus3a*
9025
9026MEDIA DRIVERS FOR LNBH25
9027M:	Sergey Kozlov <serjk@netup.ru>
9028M:	Abylay Ospan <aospan@netup.ru>
9029L:	linux-media@vger.kernel.org
9030W:	https://linuxtv.org
9031W:	http://netup.tv/
9032T:	git git://linuxtv.org/media_tree.git
9033S:	Supported
9034F:	drivers/media/dvb-frontends/lnbh25*
9035
9036MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
9037M:	Daniel Scheller <d.scheller.oss@gmail.com>
9038L:	linux-media@vger.kernel.org
9039W:	https://linuxtv.org
9040T:	git git://linuxtv.org/media_tree.git
9041S:	Maintained
9042F:	drivers/media/dvb-frontends/mxl5xx*
9043
9044MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
9045M:	Sergey Kozlov <serjk@netup.ru>
9046M:	Abylay Ospan <aospan@netup.ru>
9047L:	linux-media@vger.kernel.org
9048W:	https://linuxtv.org
9049W:	http://netup.tv/
9050T:	git git://linuxtv.org/media_tree.git
9051S:	Supported
9052F:	drivers/media/pci/netup_unidvb/*
9053
9054MEDIA DRIVERS FOR RENESAS - CEU
9055M:	Jacopo Mondi <jacopo@jmondi.org>
9056L:	linux-media@vger.kernel.org
9057L:	linux-renesas-soc@vger.kernel.org
9058T:	git git://linuxtv.org/media_tree.git
9059S:	Supported
9060F:	Documentation/devicetree/bindings/media/renesas,ceu.txt
9061F:	drivers/media/platform/renesas-ceu.c
9062F:	include/media/drv-intf/renesas-ceu.h
9063
9064MEDIA DRIVERS FOR RENESAS - DRIF
9065M:	Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
9066L:	linux-media@vger.kernel.org
9067L:	linux-renesas-soc@vger.kernel.org
9068T:	git git://linuxtv.org/media_tree.git
9069S:	Supported
9070F:	Documentation/devicetree/bindings/media/renesas,drif.txt
9071F:	drivers/media/platform/rcar_drif.c
9072
9073MEDIA DRIVERS FOR RENESAS - FCP
9074M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9075L:	linux-media@vger.kernel.org
9076L:	linux-renesas-soc@vger.kernel.org
9077T:	git git://linuxtv.org/media_tree.git
9078S:	Supported
9079F:	Documentation/devicetree/bindings/media/renesas,fcp.txt
9080F:	drivers/media/platform/rcar-fcp.c
9081F:	include/media/rcar-fcp.h
9082
9083MEDIA DRIVERS FOR RENESAS - FDP1
9084M:	Kieran Bingham <kieran@bingham.xyz>
9085L:	linux-media@vger.kernel.org
9086L:	linux-renesas-soc@vger.kernel.org
9087T:	git git://linuxtv.org/media_tree.git
9088S:	Supported
9089F:	Documentation/devicetree/bindings/media/renesas,fdp1.txt
9090F:	drivers/media/platform/rcar_fdp1.c
9091
9092MEDIA DRIVERS FOR RENESAS - VIN
9093M:	Niklas Söderlund <niklas.soderlund@ragnatech.se>
9094L:	linux-media@vger.kernel.org
9095L:	linux-renesas-soc@vger.kernel.org
9096T:	git git://linuxtv.org/media_tree.git
9097S:	Supported
9098F:	Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
9099F:	Documentation/devicetree/bindings/media/rcar_vin.txt
9100F:	drivers/media/platform/rcar-vin/
9101
9102MEDIA DRIVERS FOR RENESAS - VSP1
9103M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9104L:	linux-media@vger.kernel.org
9105L:	linux-renesas-soc@vger.kernel.org
9106T:	git git://linuxtv.org/media_tree.git
9107S:	Supported
9108F:	Documentation/devicetree/bindings/media/renesas,vsp1.txt
9109F:	drivers/media/platform/vsp1/
9110
9111MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
9112M:	Daniel Scheller <d.scheller.oss@gmail.com>
9113L:	linux-media@vger.kernel.org
9114W:	https://linuxtv.org
9115T:	git git://linuxtv.org/media_tree.git
9116S:	Maintained
9117F:	drivers/media/dvb-frontends/stv0910*
9118
9119MEDIA DRIVERS FOR ST STV6111 TUNER ICs
9120M:	Daniel Scheller <d.scheller.oss@gmail.com>
9121L:	linux-media@vger.kernel.org
9122W:	https://linuxtv.org
9123T:	git git://linuxtv.org/media_tree.git
9124S:	Maintained
9125F:	drivers/media/dvb-frontends/stv6111*
9126
9127MEDIA DRIVERS FOR STM32 - DCMI
9128M:	Hugues Fruchet <hugues.fruchet@st.com>
9129L:	linux-media@vger.kernel.org
9130T:	git git://linuxtv.org/media_tree.git
9131S:	Supported
9132F:	Documentation/devicetree/bindings/media/st,stm32-dcmi.txt
9133F:	drivers/media/platform/stm32/stm32-dcmi.c
9134
9135MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
9136M:	Dmitry Osipenko <digetx@gmail.com>
9137L:	linux-media@vger.kernel.org
9138L:	linux-tegra@vger.kernel.org
9139T:	git git://linuxtv.org/media_tree.git
9140S:	Maintained
9141F:	Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
9142F:	drivers/staging/media/tegra-vde/
9143
9144MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
9145M:	Mauro Carvalho Chehab <mchehab@kernel.org>
9146P:	LinuxTV.org Project
9147L:	linux-media@vger.kernel.org
9148W:	https://linuxtv.org
9149Q:	http://patchwork.kernel.org/project/linux-media/list/
9150T:	git git://linuxtv.org/media_tree.git
9151S:	Maintained
9152F:	Documentation/devicetree/bindings/media/
9153F:	Documentation/media/
9154F:	drivers/media/
9155F:	drivers/staging/media/
9156F:	include/linux/platform_data/media/
9157F:	include/media/
9158F:	include/uapi/linux/dvb/
9159F:	include/uapi/linux/videodev2.h
9160F:	include/uapi/linux/media.h
9161F:	include/uapi/linux/v4l2-*
9162F:	include/uapi/linux/meye.h
9163F:	include/uapi/linux/ivtv*
9164F:	include/uapi/linux/uvcvideo.h
9165
9166MEDIATEK BLUETOOTH DRIVER
9167M:	Sean Wang <sean.wang@mediatek.com>
9168L:	linux-bluetooth@vger.kernel.org
9169L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
9170S:	Maintained
9171F:	Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
9172F:	drivers/bluetooth/btmtkuart.c
9173
9174MEDIATEK CIR DRIVER
9175M:	Sean Wang <sean.wang@mediatek.com>
9176S:	Maintained
9177F:	drivers/media/rc/mtk-cir.c
9178
9179MEDIATEK DMA DRIVER
9180M:	Sean Wang <sean.wang@mediatek.com>
9181L:	dmaengine@vger.kernel.org
9182L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9183L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
9184S:	Maintained
9185F:	Documentation/devicetree/bindings/dma/mtk-*
9186F:	drivers/dma/mediatek/
9187
9188MEDIATEK PMIC LED DRIVER
9189M:	Sean Wang <sean.wang@mediatek.com>
9190S:	Maintained
9191F:	drivers/leds/leds-mt6323.c
9192F:	Documentation/devicetree/bindings/leds/leds-mt6323.txt
9193
9194MEDIATEK ETHERNET DRIVER
9195M:	Felix Fietkau <nbd@openwrt.org>
9196M:	John Crispin <john@phrozen.org>
9197M:	Sean Wang <sean.wang@mediatek.com>
9198M:	Nelson Chang <nelson.chang@mediatek.com>
9199L:	netdev@vger.kernel.org
9200S:	Maintained
9201F:	drivers/net/ethernet/mediatek/
9202
9203MEDIATEK SWITCH DRIVER
9204M:	Sean Wang <sean.wang@mediatek.com>
9205L:	netdev@vger.kernel.org
9206S:	Maintained
9207F:	drivers/net/dsa/mt7530.*
9208F:	net/dsa/tag_mtk.c
9209
9210MEDIATEK JPEG DRIVER
9211M:	Rick Chang <rick.chang@mediatek.com>
9212M:	Bin Liu <bin.liu@mediatek.com>
9213S:	Supported
9214F:	drivers/media/platform/mtk-jpeg/
9215F:	Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
9216
9217MEDIATEK MDP DRIVER
9218M:	Minghsiu Tsai <minghsiu.tsai@mediatek.com>
9219M:	Houlong Wei <houlong.wei@mediatek.com>
9220M:	Andrew-CT Chen <andrew-ct.chen@mediatek.com>
9221S:	Supported
9222F:	drivers/media/platform/mtk-mdp/
9223F:	drivers/media/platform/mtk-vpu/
9224F:	Documentation/devicetree/bindings/media/mediatek-mdp.txt
9225
9226MEDIATEK MEDIA DRIVER
9227M:	Tiffany Lin <tiffany.lin@mediatek.com>
9228M:	Andrew-CT Chen <andrew-ct.chen@mediatek.com>
9229S:	Supported
9230F:	drivers/media/platform/mtk-vcodec/
9231F:	drivers/media/platform/mtk-vpu/
9232F:	Documentation/devicetree/bindings/media/mediatek-vcodec.txt
9233F:	Documentation/devicetree/bindings/media/mediatek-vpu.txt
9234
9235MEDIATEK MT7601U WIRELESS LAN DRIVER
9236M:	Jakub Kicinski <kubakici@wp.pl>
9237L:	linux-wireless@vger.kernel.org
9238S:	Maintained
9239F:	drivers/net/wireless/mediatek/mt7601u/
9240
9241MEDIATEK NAND CONTROLLER DRIVER
9242M:	Xiaolei Li <xiaolei.li@mediatek.com>
9243L:	linux-mtd@lists.infradead.org
9244S:	Maintained
9245F:	drivers/mtd/nand/raw/mtk_*
9246F:	Documentation/devicetree/bindings/mtd/mtk-nand.txt
9247
9248MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
9249M:	Sean Wang <sean.wang@mediatek.com>
9250S:	Maintained
9251F:	drivers/char/hw_random/mtk-rng.c
9252
9253MEDIATEK USB3 DRD IP DRIVER
9254M:	Chunfeng Yun <chunfeng.yun@mediatek.com>
9255L:	linux-usb@vger.kernel.org (moderated for non-subscribers)
9256L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9257L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
9258S:	Maintained
9259F:	drivers/usb/mtu3/
9260
9261MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
9262M:	Peter Senna Tschudin <peter.senna@gmail.com>
9263M:	Martin Donnelly <martin.donnelly@ge.com>
9264M:	Martyn Welch <martyn.welch@collabora.co.uk>
9265S:	Maintained
9266F:	drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
9267F:	Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
9268
9269MEGARAID SCSI/SAS DRIVERS
9270M:	Kashyap Desai <kashyap.desai@broadcom.com>
9271M:	Sumit Saxena <sumit.saxena@broadcom.com>
9272M:	Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
9273L:	megaraidlinux.pdl@broadcom.com
9274L:	linux-scsi@vger.kernel.org
9275W:	http://www.avagotech.com/support/
9276S:	Maintained
9277F:	Documentation/scsi/megaraid.txt
9278F:	drivers/scsi/megaraid.*
9279F:	drivers/scsi/megaraid/
9280
9281MELEXIS MLX90614 DRIVER
9282M:	Crt Mori <cmo@melexis.com>
9283L:	linux-iio@vger.kernel.org
9284W:	http://www.melexis.com
9285S:	Supported
9286F:	drivers/iio/temperature/mlx90614.c
9287
9288MELEXIS MLX90632 DRIVER
9289M:	Crt Mori <cmo@melexis.com>
9290L:	linux-iio@vger.kernel.org
9291W:	http://www.melexis.com
9292S:	Supported
9293F:	drivers/iio/temperature/mlx90632.c
9294
9295MELFAS MIP4 TOUCHSCREEN DRIVER
9296M:	Sangwon Jee <jeesw@melfas.com>
9297W:	http://www.melfas.com
9298S:	Supported
9299F:	drivers/input/touchscreen/melfas_mip4.c
9300F:	Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
9301
9302MELLANOX ETHERNET DRIVER (mlx4_en)
9303M:	Tariq Toukan <tariqt@mellanox.com>
9304L:	netdev@vger.kernel.org
9305S:	Supported
9306W:	http://www.mellanox.com
9307Q:	http://patchwork.ozlabs.org/project/netdev/list/
9308F:	drivers/net/ethernet/mellanox/mlx4/en_*
9309
9310MELLANOX ETHERNET DRIVER (mlx5e)
9311M:	Saeed Mahameed <saeedm@mellanox.com>
9312L:	netdev@vger.kernel.org
9313S:	Supported
9314W:	http://www.mellanox.com
9315Q:	http://patchwork.ozlabs.org/project/netdev/list/
9316F:	drivers/net/ethernet/mellanox/mlx5/core/en_*
9317
9318MELLANOX ETHERNET INNOVA DRIVERS
9319R:	Boris Pismenny <borisp@mellanox.com>
9320L:	netdev@vger.kernel.org
9321S:	Supported
9322W:	http://www.mellanox.com
9323Q:	http://patchwork.ozlabs.org/project/netdev/list/
9324F:	drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
9325F:	drivers/net/ethernet/mellanox/mlx5/core/accel/*
9326F:	drivers/net/ethernet/mellanox/mlx5/core/fpga/*
9327F:	include/linux/mlx5/mlx5_ifc_fpga.h
9328
9329MELLANOX ETHERNET INNOVA IPSEC DRIVER
9330R:	Boris Pismenny <borisp@mellanox.com>
9331L:	netdev@vger.kernel.org
9332S:	Supported
9333W:	http://www.mellanox.com
9334Q:	http://patchwork.ozlabs.org/project/netdev/list/
9335F:	drivers/net/ethernet/mellanox/mlx5/core/en_ipsec/*
9336F:	drivers/net/ethernet/mellanox/mlx5/core/ipsec*
9337
9338MELLANOX ETHERNET SWITCH DRIVERS
9339M:	Jiri Pirko <jiri@mellanox.com>
9340M:	Ido Schimmel <idosch@mellanox.com>
9341L:	netdev@vger.kernel.org
9342S:	Supported
9343W:	http://www.mellanox.com
9344Q:	http://patchwork.ozlabs.org/project/netdev/list/
9345F:	drivers/net/ethernet/mellanox/mlxsw/
9346F:	tools/testing/selftests/drivers/net/mlxsw/
9347
9348MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
9349M:	mlxsw@mellanox.com
9350L:	netdev@vger.kernel.org
9351S:	Supported
9352W:	http://www.mellanox.com
9353Q:	http://patchwork.ozlabs.org/project/netdev/list/
9354F:	drivers/net/ethernet/mellanox/mlxfw/
9355
9356MELLANOX HARDWARE PLATFORM SUPPORT
9357M:	Andy Shevchenko <andy@infradead.org>
9358M:	Darren Hart <dvhart@infradead.org>
9359M:	Vadim Pasternak <vadimp@mellanox.com>
9360L:	platform-driver-x86@vger.kernel.org
9361S:	Supported
9362F:	drivers/platform/mellanox/
9363
9364MELLANOX MLX4 core VPI driver
9365M:	Tariq Toukan <tariqt@mellanox.com>
9366L:	netdev@vger.kernel.org
9367L:	linux-rdma@vger.kernel.org
9368W:	http://www.mellanox.com
9369Q:	http://patchwork.ozlabs.org/project/netdev/list/
9370S:	Supported
9371F:	drivers/net/ethernet/mellanox/mlx4/
9372F:	include/linux/mlx4/
9373
9374MELLANOX MLX4 IB driver
9375M:	Yishai Hadas <yishaih@mellanox.com>
9376L:	linux-rdma@vger.kernel.org
9377W:	http://www.mellanox.com
9378Q:	http://patchwork.kernel.org/project/linux-rdma/list/
9379S:	Supported
9380F:	drivers/infiniband/hw/mlx4/
9381F:	include/linux/mlx4/
9382F:	include/uapi/rdma/mlx4-abi.h
9383
9384MELLANOX MLX5 core VPI driver
9385M:	Saeed Mahameed <saeedm@mellanox.com>
9386M:	Leon Romanovsky <leonro@mellanox.com>
9387L:	netdev@vger.kernel.org
9388L:	linux-rdma@vger.kernel.org
9389W:	http://www.mellanox.com
9390Q:	http://patchwork.ozlabs.org/project/netdev/list/
9391S:	Supported
9392F:	drivers/net/ethernet/mellanox/mlx5/core/
9393F:	include/linux/mlx5/
9394
9395MELLANOX MLX5 IB driver
9396M:	Leon Romanovsky <leonro@mellanox.com>
9397L:	linux-rdma@vger.kernel.org
9398W:	http://www.mellanox.com
9399Q:	http://patchwork.kernel.org/project/linux-rdma/list/
9400S:	Supported
9401F:	drivers/infiniband/hw/mlx5/
9402F:	include/linux/mlx5/
9403F:	include/uapi/rdma/mlx5-abi.h
9404
9405MELLANOX MLXCPLD I2C AND MUX DRIVER
9406M:	Vadim Pasternak <vadimp@mellanox.com>
9407M:	Michael Shych <michaelsh@mellanox.com>
9408L:	linux-i2c@vger.kernel.org
9409S:	Supported
9410F:	drivers/i2c/busses/i2c-mlxcpld.c
9411F:	drivers/i2c/muxes/i2c-mux-mlxcpld.c
9412F:	Documentation/i2c/busses/i2c-mlxcpld
9413
9414MELLANOX MLXCPLD LED DRIVER
9415M:	Vadim Pasternak <vadimp@mellanox.com>
9416L:	linux-leds@vger.kernel.org
9417S:	Supported
9418F:	drivers/leds/leds-mlxcpld.c
9419F:	drivers/leds/leds-mlxreg.c
9420F:	Documentation/leds/leds-mlxcpld.txt
9421
9422MELLANOX PLATFORM DRIVER
9423M:	Vadim Pasternak <vadimp@mellanox.com>
9424L:	platform-driver-x86@vger.kernel.org
9425S:	Supported
9426F:	drivers/platform/x86/mlx-platform.c
9427
9428MEMBARRIER SUPPORT
9429M:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9430M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9431L:	linux-kernel@vger.kernel.org
9432S:	Supported
9433F:	kernel/sched/membarrier.c
9434F:	include/uapi/linux/membarrier.h
9435F:	arch/powerpc/include/asm/membarrier.h
9436
9437MEMORY MANAGEMENT
9438L:	linux-mm@kvack.org
9439W:	http://www.linux-mm.org
9440S:	Maintained
9441F:	include/linux/mm.h
9442F:	include/linux/gfp.h
9443F:	include/linux/mmzone.h
9444F:	include/linux/memory_hotplug.h
9445F:	include/linux/vmalloc.h
9446F:	mm/
9447
9448MEMORY TECHNOLOGY DEVICES (MTD)
9449M:	David Woodhouse <dwmw2@infradead.org>
9450M:	Brian Norris <computersforpeace@gmail.com>
9451M:	Boris Brezillon <boris.brezillon@bootlin.com>
9452M:	Marek Vasut <marek.vasut@gmail.com>
9453M:	Richard Weinberger <richard@nod.at>
9454L:	linux-mtd@lists.infradead.org
9455W:	http://www.linux-mtd.infradead.org/
9456Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
9457T:	git git://git.infradead.org/linux-mtd.git master
9458T:	git git://git.infradead.org/linux-mtd.git mtd/next
9459S:	Maintained
9460F:	Documentation/devicetree/bindings/mtd/
9461F:	drivers/mtd/
9462F:	include/linux/mtd/
9463F:	include/uapi/mtd/
9464
9465MEN A21 WATCHDOG DRIVER
9466M:	Johannes Thumshirn <morbidrsa@gmail.com>
9467L:	linux-watchdog@vger.kernel.org
9468S:	Maintained
9469F:	drivers/watchdog/mena21_wdt.c
9470
9471MEN CHAMELEON BUS (mcb)
9472M:	Johannes Thumshirn <morbidrsa@gmail.com>
9473S:	Maintained
9474F:	drivers/mcb/
9475F:	include/linux/mcb.h
9476F:	Documentation/men-chameleon-bus.txt
9477
9478MEN F21BMC (Board Management Controller)
9479M:	Andreas Werner <andreas.werner@men.de>
9480S:	Supported
9481F:	drivers/mfd/menf21bmc.c
9482F:	drivers/watchdog/menf21bmc_wdt.c
9483F:	drivers/leds/leds-menf21bmc.c
9484F:	drivers/hwmon/menf21bmc_hwmon.c
9485F:	Documentation/hwmon/menf21bmc
9486
9487MEN Z069 WATCHDOG DRIVER
9488M:	Johannes Thumshirn <jth@kernel.org>
9489L:	linux-watchdog@vger.kernel.org
9490S:	Maintained
9491F:	drivers/watchdog/menz069_wdt.c
9492
9493MESON AO CEC DRIVER FOR AMLOGIC SOCS
9494M:	Neil Armstrong <narmstrong@baylibre.com>
9495L:	linux-media@lists.freedesktop.org
9496L:	linux-amlogic@lists.infradead.org
9497W:	http://linux-meson.com/
9498S:	Supported
9499F:	drivers/media/platform/meson/ao-cec.c
9500F:	Documentation/devicetree/bindings/media/meson-ao-cec.txt
9501T:	git git://linuxtv.org/media_tree.git
9502
9503MICROBLAZE ARCHITECTURE
9504M:	Michal Simek <monstr@monstr.eu>
9505W:	http://www.monstr.eu/fdt/
9506T:	git git://git.monstr.eu/linux-2.6-microblaze.git
9507S:	Supported
9508F:	arch/microblaze/
9509
9510MICROCHIP / ATMEL AT91 SERIAL DRIVER
9511M:	Richard Genoud <richard.genoud@gmail.com>
9512S:	Maintained
9513F:	drivers/tty/serial/atmel_serial.c
9514F:	drivers/tty/serial/atmel_serial.h
9515
9516MICROCHIP / ATMEL DMA DRIVER
9517M:	Ludovic Desroches <ludovic.desroches@microchip.com>
9518L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9519L:	dmaengine@vger.kernel.org
9520S:	Supported
9521F:	drivers/dma/at_hdmac.c
9522F:	drivers/dma/at_hdmac_regs.h
9523F:	include/linux/platform_data/dma-atmel.h
9524
9525MICROCHIP / ATMEL ECC DRIVER
9526M:	Tudor Ambarus <tudor.ambarus@microchip.com>
9527L:	linux-crypto@vger.kernel.org
9528S:	Maintained
9529F:	drivers/crypto/atmel-ecc.*
9530
9531MICROCHIP / ATMEL ISC DRIVER
9532M:	Songjun Wu <songjun.wu@microchip.com>
9533L:	linux-media@vger.kernel.org
9534S:	Supported
9535F:	drivers/media/platform/atmel/atmel-isc.c
9536F:	drivers/media/platform/atmel/atmel-isc-regs.h
9537F:	devicetree/bindings/media/atmel-isc.txt
9538
9539MICROCHIP / ATMEL NAND DRIVER
9540M:	Josh Wu <rainyfeeling@outlook.com>
9541L:	linux-mtd@lists.infradead.org
9542S:	Supported
9543F:	drivers/mtd/nand/raw/atmel/*
9544F:	Documentation/devicetree/bindings/mtd/atmel-nand.txt
9545
9546MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
9547M:	Woojung Huh <Woojung.Huh@microchip.com>
9548M:	Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
9549L:	netdev@vger.kernel.org
9550S:	Maintained
9551F:	net/dsa/tag_ksz.c
9552F:	drivers/net/dsa/microchip/*
9553F:	include/linux/platform_data/microchip-ksz.h
9554F:	Documentation/devicetree/bindings/net/dsa/ksz.txt
9555
9556MICROCHIP LAN743X ETHERNET DRIVER
9557M:	Bryan Whitehead <bryan.whitehead@microchip.com>
9558M:	Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
9559L:	netdev@vger.kernel.org
9560S:	Maintained
9561F:	drivers/net/ethernet/microchip/lan743x_*
9562
9563MICROCHIP USB251XB DRIVER
9564M:	Richard Leitner <richard.leitner@skidata.com>
9565L:	linux-usb@vger.kernel.org
9566S:	Maintained
9567F:	drivers/usb/misc/usb251xb.c
9568F:	Documentation/devicetree/bindings/usb/usb251xb.txt
9569
9570MICROSEMI MIPS SOCS
9571M:	Alexandre Belloni <alexandre.belloni@bootlin.com>
9572L:	linux-mips@linux-mips.org
9573S:	Maintained
9574F:	arch/mips/generic/board-ocelot.c
9575F:	arch/mips/configs/generic/board-ocelot.config
9576F:	arch/mips/boot/dts/mscc/
9577F:	Documentation/devicetree/bindings/mips/mscc.txt
9578
9579MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
9580M:	Don Brace <don.brace@microsemi.com>
9581L:	esc.storagedev@microsemi.com
9582L:	linux-scsi@vger.kernel.org
9583S:	Supported
9584F:	drivers/scsi/smartpqi/smartpqi*.[ch]
9585F:	drivers/scsi/smartpqi/Kconfig
9586F:	drivers/scsi/smartpqi/Makefile
9587F:	include/linux/cciss*.h
9588F:	include/uapi/linux/cciss*.h
9589F:	Documentation/scsi/smartpqi.txt
9590
9591MICROSEMI ETHERNET SWITCH DRIVER
9592M:	Alexandre Belloni <alexandre.belloni@bootlin.com>
9593L:	netdev@vger.kernel.org
9594S:	Supported
9595F:	drivers/net/ethernet/mscc/
9596
9597MICROSOFT SURFACE PRO 3 BUTTON DRIVER
9598M:	Chen Yu <yu.c.chen@intel.com>
9599L:	platform-driver-x86@vger.kernel.org
9600S:	Supported
9601F:	drivers/platform/x86/surfacepro3_button.c
9602
9603MICROTEK X6 SCANNER
9604M:	Oliver Neukum <oliver@neukum.org>
9605S:	Maintained
9606F:	drivers/usb/image/microtek.*
9607
9608MIPS
9609M:	Ralf Baechle <ralf@linux-mips.org>
9610M:	Paul Burton <paul.burton@mips.com>
9611M:	James Hogan <jhogan@kernel.org>
9612L:	linux-mips@linux-mips.org
9613W:	http://www.linux-mips.org/
9614T:	git git://git.linux-mips.org/pub/scm/ralf/linux.git
9615T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
9616Q:	http://patchwork.linux-mips.org/project/linux-mips/list/
9617S:	Supported
9618F:	Documentation/devicetree/bindings/mips/
9619F:	Documentation/mips/
9620F:	arch/mips/
9621F:	drivers/platform/mips/
9622
9623MIPS BOSTON DEVELOPMENT BOARD
9624M:	Paul Burton <paul.burton@mips.com>
9625L:	linux-mips@linux-mips.org
9626S:	Maintained
9627F:	Documentation/devicetree/bindings/clock/img,boston-clock.txt
9628F:	arch/mips/boot/dts/img/boston.dts
9629F:	arch/mips/configs/generic/board-boston.config
9630F:	drivers/clk/imgtec/clk-boston.c
9631F:	include/dt-bindings/clock/boston-clock.h
9632
9633MIPS GENERIC PLATFORM
9634M:	Paul Burton <paul.burton@mips.com>
9635L:	linux-mips@linux-mips.org
9636S:	Supported
9637F:	Documentation/devicetree/bindings/power/mti,mips-cpc.txt
9638F:	arch/mips/generic/
9639F:	arch/mips/tools/generic-board-config.sh
9640
9641MIPS/LOONGSON1 ARCHITECTURE
9642M:	Keguang Zhang <keguang.zhang@gmail.com>
9643L:	linux-mips@linux-mips.org
9644S:	Maintained
9645F:	arch/mips/loongson32/
9646F:	arch/mips/include/asm/mach-loongson32/
9647F:	drivers/*/*loongson1*
9648F:	drivers/*/*/*loongson1*
9649
9650MIPS/LOONGSON2 ARCHITECTURE
9651M:	Jiaxun Yang <jiaxun.yang@flygoat.com>
9652L:	linux-mips@linux-mips.org
9653S:	Maintained
9654F:	arch/mips/loongson64/*{2e/2f}*
9655F:	arch/mips/include/asm/mach-loongson64/
9656F:	drivers/*/*loongson2*
9657F:	drivers/*/*/*loongson2*
9658
9659MIPS/LOONGSON3 ARCHITECTURE
9660M:	Huacai Chen <chenhc@lemote.com>
9661L:	linux-mips@linux-mips.org
9662S:	Maintained
9663F:	arch/mips/loongson64/
9664F:	arch/mips/include/asm/mach-loongson64/
9665F:	drivers/platform/mips/cpu_hwmon.c
9666F:	drivers/*/*loongson3*
9667F:	drivers/*/*/*loongson3*
9668
9669MIPS RINT INSTRUCTION EMULATION
9670M:	Aleksandar Markovic <aleksandar.markovic@mips.com>
9671L:	linux-mips@linux-mips.org
9672S:	Supported
9673F:	arch/mips/math-emu/sp_rint.c
9674F:	arch/mips/math-emu/dp_rint.c
9675
9676MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
9677M:	Hans Verkuil <hverkuil@xs4all.nl>
9678L:	linux-media@vger.kernel.org
9679T:	git git://linuxtv.org/media_tree.git
9680W:	https://linuxtv.org
9681S:	Odd Fixes
9682F:	drivers/media/radio/radio-miropcm20*
9683
9684MMP SUPPORT
9685M:	Eric Miao <eric.y.miao@gmail.com>
9686M:	Haojian Zhuang <haojian.zhuang@gmail.com>
9687L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9688T:	git git://github.com/hzhuang1/linux.git
9689T:	git git://git.linaro.org/people/ycmiao/pxa-linux.git
9690S:	Maintained
9691F:	arch/arm/boot/dts/mmp*
9692F:	arch/arm/mach-mmp/
9693
9694MN88472 MEDIA DRIVER
9695M:	Antti Palosaari <crope@iki.fi>
9696L:	linux-media@vger.kernel.org
9697W:	https://linuxtv.org
9698W:	http://palosaari.fi/linux/
9699Q:	http://patchwork.linuxtv.org/project/linux-media/list/
9700S:	Maintained
9701F:	drivers/media/dvb-frontends/mn88472*
9702
9703MN88473 MEDIA DRIVER
9704M:	Antti Palosaari <crope@iki.fi>
9705L:	linux-media@vger.kernel.org
9706W:	https://linuxtv.org
9707W:	http://palosaari.fi/linux/
9708Q:	http://patchwork.linuxtv.org/project/linux-media/list/
9709S:	Maintained
9710F:	drivers/media/dvb-frontends/mn88473*
9711
9712PCI DRIVER FOR MOBIVEIL PCIE IP
9713M:	Subrahmanya Lingappa <l.subrahmanya@mobiveil.co.in>
9714L:	linux-pci@vger.kernel.org
9715S:	Supported
9716F:	Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
9717F:	drivers/pci/controller/pcie-mobiveil.c
9718
9719MODULE SUPPORT
9720M:	Jessica Yu <jeyu@kernel.org>
9721T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
9722S:	Maintained
9723F:	include/linux/module.h
9724F:	kernel/module.c
9725
9726MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
9727W:	http://popies.net/meye/
9728S:	Orphan
9729F:	Documentation/media/v4l-drivers/meye*
9730F:	drivers/media/pci/meye/
9731F:	include/uapi/linux/meye.h
9732
9733MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
9734M:	Jiri Slaby <jirislaby@gmail.com>
9735S:	Maintained
9736F:	Documentation/serial/moxa-smartio
9737F:	drivers/tty/mxser.*
9738
9739MR800 AVERMEDIA USB FM RADIO DRIVER
9740M:	Alexey Klimov <klimov.linux@gmail.com>
9741L:	linux-media@vger.kernel.org
9742T:	git git://linuxtv.org/media_tree.git
9743S:	Maintained
9744F:	drivers/media/radio/radio-mr800.c
9745
9746MRF24J40 IEEE 802.15.4 RADIO DRIVER
9747M:	Alan Ott <alan@signal11.us>
9748L:	linux-wpan@vger.kernel.org
9749S:	Maintained
9750F:	drivers/net/ieee802154/mrf24j40.c
9751F:	Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
9752
9753MSI LAPTOP SUPPORT
9754M:	"Lee, Chun-Yi" <jlee@suse.com>
9755L:	platform-driver-x86@vger.kernel.org
9756S:	Maintained
9757F:	drivers/platform/x86/msi-laptop.c
9758
9759MSI WMI SUPPORT
9760L:	platform-driver-x86@vger.kernel.org
9761S:	Orphan
9762F:	drivers/platform/x86/msi-wmi.c
9763
9764MSI001 MEDIA DRIVER
9765M:	Antti Palosaari <crope@iki.fi>
9766L:	linux-media@vger.kernel.org
9767W:	https://linuxtv.org
9768W:	http://palosaari.fi/linux/
9769Q:	http://patchwork.linuxtv.org/project/linux-media/list/
9770T:	git git://linuxtv.org/anttip/media_tree.git
9771S:	Maintained
9772F:	drivers/media/tuners/msi001*
9773
9774MSI2500 MEDIA DRIVER
9775M:	Antti Palosaari <crope@iki.fi>
9776L:	linux-media@vger.kernel.org
9777W:	https://linuxtv.org
9778W:	http://palosaari.fi/linux/
9779Q:	http://patchwork.linuxtv.org/project/linux-media/list/
9780T:	git git://linuxtv.org/anttip/media_tree.git
9781S:	Maintained
9782F:	drivers/media/usb/msi2500/
9783
9784MSYSTEMS DISKONCHIP G3 MTD DRIVER
9785M:	Robert Jarzmik <robert.jarzmik@free.fr>
9786L:	linux-mtd@lists.infradead.org
9787S:	Maintained
9788F:	drivers/mtd/devices/docg3*
9789
9790MT9M032 APTINA SENSOR DRIVER
9791M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9792L:	linux-media@vger.kernel.org
9793T:	git git://linuxtv.org/media_tree.git
9794S:	Maintained
9795F:	drivers/media/i2c/mt9m032.c
9796F:	include/media/i2c/mt9m032.h
9797
9798MT9P031 APTINA CAMERA SENSOR
9799M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9800L:	linux-media@vger.kernel.org
9801T:	git git://linuxtv.org/media_tree.git
9802S:	Maintained
9803F:	drivers/media/i2c/mt9p031.c
9804F:	include/media/i2c/mt9p031.h
9805
9806MT9T001 APTINA CAMERA SENSOR
9807M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9808L:	linux-media@vger.kernel.org
9809T:	git git://linuxtv.org/media_tree.git
9810S:	Maintained
9811F:	drivers/media/i2c/mt9t001.c
9812F:	include/media/i2c/mt9t001.h
9813
9814MT9T112 APTINA CAMERA SENSOR
9815M:	Jacopo Mondi <jacopo@jmondi.org>
9816L:	linux-media@vger.kernel.org
9817T:	git git://linuxtv.org/media_tree.git
9818S:	Odd Fixes
9819F:	drivers/media/i2c/mt9t112.c
9820F:	include/media/i2c/mt9t112.h
9821
9822MT9V032 APTINA CAMERA SENSOR
9823M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9824L:	linux-media@vger.kernel.org
9825T:	git git://linuxtv.org/media_tree.git
9826S:	Maintained
9827F:	Documentation/devicetree/bindings/media/i2c/mt9v032.txt
9828F:	drivers/media/i2c/mt9v032.c
9829F:	include/media/i2c/mt9v032.h
9830
9831MT9V111 APTINA CAMERA SENSOR
9832M:	Jacopo Mondi <jacopo@jmondi.org>
9833L:	linux-media@vger.kernel.org
9834T:	git git://linuxtv.org/media_tree.git
9835S:	Maintained
9836F:	Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
9837F:	drivers/media/i2c/mt9v111.c
9838
9839MULTIFUNCTION DEVICES (MFD)
9840M:	Lee Jones <lee.jones@linaro.org>
9841T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
9842S:	Supported
9843F:	Documentation/devicetree/bindings/mfd/
9844F:	drivers/mfd/
9845F:	include/linux/mfd/
9846F:	include/dt-bindings/mfd/
9847
9848MULTIMEDIA CARD (MMC) ETC. OVER SPI
9849S:	Orphan
9850F:	drivers/mmc/host/mmc_spi.c
9851F:	include/linux/spi/mmc_spi.h
9852
9853MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
9854M:	Ulf Hansson <ulf.hansson@linaro.org>
9855L:	linux-mmc@vger.kernel.org
9856T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
9857S:	Maintained
9858F:	Documentation/devicetree/bindings/mmc/
9859F:	drivers/mmc/
9860F:	include/linux/mmc/
9861F:	include/uapi/linux/mmc/
9862
9863MULTIPLEXER SUBSYSTEM
9864M:	Peter Rosin <peda@axentia.se>
9865S:	Maintained
9866F:	Documentation/ABI/testing/sysfs-class-mux*
9867F:	Documentation/devicetree/bindings/mux/
9868F:	include/linux/dt-bindings/mux/
9869F:	include/linux/mux/
9870F:	drivers/mux/
9871
9872MULTITECH MULTIPORT CARD (ISICOM)
9873S:	Orphan
9874F:	drivers/tty/isicom.c
9875F:	include/linux/isicom.h
9876
9877MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
9878M:	Bin Liu <b-liu@ti.com>
9879L:	linux-usb@vger.kernel.org
9880S:	Maintained
9881F:	drivers/usb/musb/
9882
9883MXL301RF MEDIA DRIVER
9884M:	Akihiro Tsukada <tskd08@gmail.com>
9885L:	linux-media@vger.kernel.org
9886S:	Odd Fixes
9887F:	drivers/media/tuners/mxl301rf*
9888
9889MXL5007T MEDIA DRIVER
9890M:	Michael Krufky <mkrufky@linuxtv.org>
9891L:	linux-media@vger.kernel.org
9892W:	https://linuxtv.org
9893W:	http://github.com/mkrufky
9894Q:	http://patchwork.linuxtv.org/project/linux-media/list/
9895T:	git git://linuxtv.org/mkrufky/tuners.git
9896S:	Maintained
9897F:	drivers/media/tuners/mxl5007t.*
9898
9899MXSFB DRM DRIVER
9900M:	Marek Vasut <marex@denx.de>
9901S:	Supported
9902F:	drivers/gpu/drm/mxsfb/
9903F:	Documentation/devicetree/bindings/display/mxsfb.txt
9904
9905MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
9906M:	Chris Lee <christopher.lee@cspi.com>
9907L:	netdev@vger.kernel.org
9908W:	https://www.cspi.com/ethernet-products/support/downloads/
9909S:	Supported
9910F:	drivers/net/ethernet/myricom/myri10ge/
9911
9912NAND FLASH SUBSYSTEM
9913M:	Boris Brezillon <boris.brezillon@bootlin.com>
9914M:	Miquel Raynal <miquel.raynal@bootlin.com>
9915R:	Richard Weinberger <richard@nod.at>
9916L:	linux-mtd@lists.infradead.org
9917W:	http://www.linux-mtd.infradead.org/
9918Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
9919T:	git git://git.infradead.org/linux-mtd.git nand/fixes
9920T:	git git://git.infradead.org/linux-mtd.git nand/next
9921S:	Maintained
9922F:	drivers/mtd/nand/
9923F:	include/linux/mtd/*nand*.h
9924
9925NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
9926M:	Daniel Mack <zonque@gmail.com>
9927S:	Maintained
9928L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
9929W:	http://www.native-instruments.com
9930F:	sound/usb/caiaq/
9931
9932NATSEMI ETHERNET DRIVER (DP8381x)
9933S:	Orphan
9934F:	drivers/net/ethernet/natsemi/natsemi.c
9935
9936NCP FILESYSTEM
9937M:	Petr Vandrovec <petr@vandrovec.name>
9938S:	Obsolete
9939F:	drivers/staging/ncpfs/
9940
9941NCR 5380 SCSI DRIVERS
9942M:	Finn Thain <fthain@telegraphics.com.au>
9943M:	Michael Schmitz <schmitzmic@gmail.com>
9944L:	linux-scsi@vger.kernel.org
9945S:	Maintained
9946F:	Documentation/scsi/g_NCR5380.txt
9947F:	drivers/scsi/NCR5380.*
9948F:	drivers/scsi/arm/cumana_1.c
9949F:	drivers/scsi/arm/oak.c
9950F:	drivers/scsi/atari_scsi.*
9951F:	drivers/scsi/dmx3191d.c
9952F:	drivers/scsi/g_NCR5380.*
9953F:	drivers/scsi/mac_scsi.*
9954F:	drivers/scsi/sun3_scsi.*
9955F:	drivers/scsi/sun3_scsi_vme.c
9956
9957NCSI LIBRARY:
9958M:	Samuel Mendoza-Jonas <sam@mendozajonas.com>
9959S:	Maintained
9960F:	net/ncsi/
9961
9962NCT6775 HARDWARE MONITOR DRIVER
9963M:	Guenter Roeck <linux@roeck-us.net>
9964L:	linux-hwmon@vger.kernel.org
9965S:	Maintained
9966F:	Documentation/hwmon/nct6775
9967F:	drivers/hwmon/nct6775.c
9968
9969NET_FAILOVER MODULE
9970M:	Sridhar Samudrala <sridhar.samudrala@intel.com>
9971L:	netdev@vger.kernel.org
9972S:	Supported
9973F:	driver/net/net_failover.c
9974F:	include/net/net_failover.h
9975F:	Documentation/networking/net_failover.rst
9976
9977NETEFFECT IWARP RNIC DRIVER (IW_NES)
9978M:	Faisal Latif <faisal.latif@intel.com>
9979L:	linux-rdma@vger.kernel.org
9980W:	http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
9981S:	Supported
9982F:	drivers/infiniband/hw/nes/
9983F:	include/uapi/rdma/nes-abi.h
9984
9985NETEM NETWORK EMULATOR
9986M:	Stephen Hemminger <stephen@networkplumber.org>
9987L:	netem@lists.linux-foundation.org (moderated for non-subscribers)
9988S:	Maintained
9989F:	net/sched/sch_netem.c
9990
9991NETERION 10GbE DRIVERS (s2io/vxge)
9992M:	Jon Mason <jdmason@kudzu.us>
9993L:	netdev@vger.kernel.org
9994S:	Supported
9995F:	Documentation/networking/s2io.txt
9996F:	Documentation/networking/vxge.txt
9997F:	drivers/net/ethernet/neterion/
9998
9999NETFILTER
10000M:	Pablo Neira Ayuso <pablo@netfilter.org>
10001M:	Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
10002M:	Florian Westphal <fw@strlen.de>
10003L:	netfilter-devel@vger.kernel.org
10004L:	coreteam@netfilter.org
10005W:	http://www.netfilter.org/
10006W:	http://www.iptables.org/
10007W:	http://www.nftables.org/
10008Q:	http://patchwork.ozlabs.org/project/netfilter-devel/list/
10009T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
10010T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
10011S:	Maintained
10012F:	include/linux/netfilter*
10013F:	include/linux/netfilter/
10014F:	include/net/netfilter/
10015F:	include/uapi/linux/netfilter*
10016F:	include/uapi/linux/netfilter/
10017F:	net/*/netfilter.c
10018F:	net/*/netfilter/
10019F:	net/netfilter/
10020F:	net/bridge/br_netfilter*.c
10021
10022NETROM NETWORK LAYER
10023M:	Ralf Baechle <ralf@linux-mips.org>
10024L:	linux-hams@vger.kernel.org
10025W:	http://www.linux-ax25.org/
10026S:	Maintained
10027F:	include/net/netrom.h
10028F:	include/uapi/linux/netrom.h
10029F:	net/netrom/
10030
10031NETRONOME ETHERNET DRIVERS
10032M:	Jakub Kicinski <jakub.kicinski@netronome.com>
10033L:	oss-drivers@netronome.com
10034S:	Maintained
10035F:	drivers/net/ethernet/netronome/
10036
10037NETWORK BLOCK DEVICE (NBD)
10038M:	Josef Bacik <josef@toxicpanda.com>
10039S:	Maintained
10040L:	linux-block@vger.kernel.org
10041L:	nbd@other.debian.org
10042F:	Documentation/blockdev/nbd.txt
10043F:	drivers/block/nbd.c
10044F:	include/uapi/linux/nbd.h
10045
10046NETWORK DROP MONITOR
10047M:	Neil Horman <nhorman@tuxdriver.com>
10048L:	netdev@vger.kernel.org
10049S:	Maintained
10050W:	https://fedorahosted.org/dropwatch/
10051F:	net/core/drop_monitor.c
10052
10053NETWORKING DRIVERS
10054M:	"David S. Miller" <davem@davemloft.net>
10055L:	netdev@vger.kernel.org
10056W:	http://www.linuxfoundation.org/en/Net
10057Q:	http://patchwork.ozlabs.org/project/netdev/list/
10058T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
10059T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
10060S:	Odd Fixes
10061F:	Documentation/devicetree/bindings/net/
10062F:	drivers/net/
10063F:	include/linux/if_*
10064F:	include/linux/netdevice.h
10065F:	include/linux/etherdevice.h
10066F:	include/linux/fcdevice.h
10067F:	include/linux/fddidevice.h
10068F:	include/linux/hippidevice.h
10069F:	include/linux/inetdevice.h
10070F:	include/uapi/linux/if_*
10071F:	include/uapi/linux/netdevice.h
10072
10073NETWORKING DRIVERS (WIRELESS)
10074M:	Kalle Valo <kvalo@codeaurora.org>
10075L:	linux-wireless@vger.kernel.org
10076Q:	http://patchwork.kernel.org/project/linux-wireless/list/
10077T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
10078T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
10079S:	Maintained
10080F:	Documentation/devicetree/bindings/net/wireless/
10081F:	drivers/net/wireless/
10082
10083NETWORKING [DSA]
10084M:	Andrew Lunn <andrew@lunn.ch>
10085M:	Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10086M:	Florian Fainelli <f.fainelli@gmail.com>
10087S:	Maintained
10088F:	Documentation/devicetree/bindings/net/dsa/
10089F:	net/dsa/
10090F:	include/net/dsa.h
10091F:	include/linux/dsa/
10092F:	drivers/net/dsa/
10093
10094NETWORKING [GENERAL]
10095M:	"David S. Miller" <davem@davemloft.net>
10096L:	netdev@vger.kernel.org
10097W:	http://www.linuxfoundation.org/en/Net
10098Q:	http://patchwork.ozlabs.org/project/netdev/list/
10099T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
10100T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
10101B:	mailto:netdev@vger.kernel.org
10102S:	Maintained
10103F:	net/
10104F:	include/net/
10105F:	include/linux/in.h
10106F:	include/linux/net.h
10107F:	include/linux/netdevice.h
10108F:	include/uapi/linux/in.h
10109F:	include/uapi/linux/net.h
10110F:	include/uapi/linux/netdevice.h
10111F:	include/uapi/linux/net_namespace.h
10112F:	tools/testing/selftests/net/
10113F:	lib/net_utils.c
10114F:	lib/random32.c
10115F:	Documentation/networking/
10116
10117NETWORKING [IPSEC]
10118M:	Steffen Klassert <steffen.klassert@secunet.com>
10119M:	Herbert Xu <herbert@gondor.apana.org.au>
10120M:	"David S. Miller" <davem@davemloft.net>
10121L:	netdev@vger.kernel.org
10122T:	git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
10123T:	git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
10124S:	Maintained
10125F:	net/core/flow.c
10126F:	net/xfrm/
10127F:	net/key/
10128F:	net/ipv4/xfrm*
10129F:	net/ipv4/esp4*
10130F:	net/ipv4/ah4.c
10131F:	net/ipv4/ipcomp.c
10132F:	net/ipv4/ip_vti.c
10133F:	net/ipv6/xfrm*
10134F:	net/ipv6/esp6*
10135F:	net/ipv6/ah6.c
10136F:	net/ipv6/ipcomp6.c
10137F:	net/ipv6/ip6_vti.c
10138F:	include/uapi/linux/xfrm.h
10139F:	include/net/xfrm.h
10140
10141NETWORKING [IPv4/IPv6]
10142M:	"David S. Miller" <davem@davemloft.net>
10143M:	Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
10144M:	Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
10145L:	netdev@vger.kernel.org
10146T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
10147S:	Maintained
10148F:	net/ipv4/
10149F:	net/ipv6/
10150F:	include/net/ip*
10151F:	arch/x86/net/*
10152
10153NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
10154M:	Paul Moore <paul@paul-moore.com>
10155W:	https://github.com/netlabel
10156L:	netdev@vger.kernel.org
10157L:	linux-security-module@vger.kernel.org
10158S:	Maintained
10159F:	Documentation/netlabel/
10160F:	include/net/calipso.h
10161F:	include/net/cipso_ipv4.h
10162F:	include/net/netlabel.h
10163F:	include/uapi/linux/netfilter/xt_SECMARK.h
10164F:	include/uapi/linux/netfilter/xt_CONNSECMARK.h
10165F:	net/netlabel/
10166F:	net/ipv4/cipso_ipv4.c
10167F:	net/ipv6/calipso.c
10168F:	net/netfilter/xt_CONNSECMARK.c
10169F:	net/netfilter/xt_SECMARK.c
10170
10171NETWORKING [TCP]
10172M:	Eric Dumazet <edumazet@google.com>
10173L:	netdev@vger.kernel.org
10174S:	Maintained
10175F:	net/ipv4/tcp*.c
10176F:	net/ipv4/syncookies.c
10177F:	net/ipv6/tcp*.c
10178F:	net/ipv6/syncookies.c
10179F:	include/uapi/linux/tcp.h
10180F:	include/net/tcp.h
10181F:	include/linux/tcp.h
10182F:	include/trace/events/tcp.h
10183
10184NETWORKING [TLS]
10185M:	Boris Pismenny <borisp@mellanox.com>
10186M:	Aviad Yehezkel <aviadye@mellanox.com>
10187M:	Dave Watson <davejwatson@fb.com>
10188L:	netdev@vger.kernel.org
10189S:	Maintained
10190F:	net/tls/*
10191F:	include/uapi/linux/tls.h
10192F:	include/net/tls.h
10193
10194NETWORKING [WIRELESS]
10195L:	linux-wireless@vger.kernel.org
10196Q:	http://patchwork.kernel.org/project/linux-wireless/list/
10197
10198NETDEVSIM
10199M:	Jakub Kicinski <jakub.kicinski@netronome.com>
10200S:	Maintained
10201F:	drivers/net/netdevsim/*
10202
10203NETXEN (1/10) GbE SUPPORT
10204M:	Manish Chopra <manish.chopra@cavium.com>
10205M:	Rahul Verma <rahul.verma@cavium.com>
10206M:	Dept-GELinuxNICDev@cavium.com
10207L:	netdev@vger.kernel.org
10208S:	Supported
10209F:	drivers/net/ethernet/qlogic/netxen/
10210
10211NFC SUBSYSTEM
10212M:	Samuel Ortiz <sameo@linux.intel.com>
10213L:	linux-wireless@vger.kernel.org
10214L:	linux-nfc@lists.01.org (subscribers-only)
10215S:	Supported
10216F:	net/nfc/
10217F:	include/net/nfc/
10218F:	include/uapi/linux/nfc.h
10219F:	drivers/nfc/
10220F:	include/linux/platform_data/nfcmrvl.h
10221F:	include/linux/platform_data/nxp-nci.h
10222F:	Documentation/devicetree/bindings/net/nfc/
10223
10224NFS, SUNRPC, AND LOCKD CLIENTS
10225M:	Trond Myklebust <trond.myklebust@hammerspace.com>
10226M:	Anna Schumaker <anna.schumaker@netapp.com>
10227L:	linux-nfs@vger.kernel.org
10228W:	http://client.linux-nfs.org
10229T:	git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
10230S:	Maintained
10231F:	fs/lockd/
10232F:	fs/nfs/
10233F:	fs/nfs_common/
10234F:	net/sunrpc/
10235F:	include/linux/lockd/
10236F:	include/linux/nfs*
10237F:	include/linux/sunrpc/
10238F:	include/uapi/linux/nfs*
10239F:	include/uapi/linux/sunrpc/
10240
10241NILFS2 FILESYSTEM
10242M:	Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
10243L:	linux-nilfs@vger.kernel.org
10244W:	https://nilfs.sourceforge.io/
10245W:	https://nilfs.osdn.jp/
10246T:	git git://github.com/konis/nilfs2.git
10247S:	Supported
10248F:	Documentation/filesystems/nilfs2.txt
10249F:	fs/nilfs2/
10250F:	include/trace/events/nilfs2.h
10251F:	include/uapi/linux/nilfs2_api.h
10252F:	include/uapi/linux/nilfs2_ondisk.h
10253
10254NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
10255M:	YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
10256W:	http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
10257S:	Maintained
10258F:	Documentation/scsi/NinjaSCSI.txt
10259F:	drivers/scsi/pcmcia/nsp_*
10260
10261NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
10262M:	GOTO Masanori <gotom@debian.or.jp>
10263M:	YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
10264W:	http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
10265S:	Maintained
10266F:	Documentation/scsi/NinjaSCSI.txt
10267F:	drivers/scsi/nsp32*
10268
10269NIOS2 ARCHITECTURE
10270M:	Ley Foon Tan <lftan@altera.com>
10271L:	nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
10272T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
10273S:	Maintained
10274F:	arch/nios2/
10275
10276NOHZ, DYNTICKS SUPPORT
10277M:	Frederic Weisbecker <fweisbec@gmail.com>
10278M:	Thomas Gleixner <tglx@linutronix.de>
10279M:	Ingo Molnar <mingo@kernel.org>
10280L:	linux-kernel@vger.kernel.org
10281T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
10282S:	Maintained
10283F:	kernel/time/tick*.*
10284F:	include/linux/tick.h
10285F:	include/linux/sched/nohz.h
10286
10287NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
10288M:	Pavel Machek <pavel@ucw.cz>
10289M:	Sakari Ailus <sakari.ailus@iki.fi>
10290L:	linux-media@vger.kernel.org
10291S:	Maintained
10292F:	drivers/media/i2c/et8ek8
10293F:	drivers/media/i2c/ad5820.c
10294
10295NOKIA N900 POWER SUPPLY DRIVERS
10296R:	Pali Rohár <pali.rohar@gmail.com>
10297F:	include/linux/power/bq2415x_charger.h
10298F:	include/linux/power/bq27xxx_battery.h
10299F:	include/linux/power/isp1704_charger.h
10300F:	drivers/power/supply/bq2415x_charger.c
10301F:	drivers/power/supply/bq27xxx_battery.c
10302F:	drivers/power/supply/bq27xxx_battery_i2c.c
10303F:	drivers/power/supply/isp1704_charger.c
10304F:	drivers/power/supply/rx51_battery.c
10305
10306NTB AMD DRIVER
10307M:	Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
10308L:	linux-ntb@googlegroups.com
10309S:	Supported
10310F:	drivers/ntb/hw/amd/
10311
10312NTB DRIVER CORE
10313M:	Jon Mason <jdmason@kudzu.us>
10314M:	Dave Jiang <dave.jiang@intel.com>
10315M:	Allen Hubbe <allenbh@gmail.com>
10316L:	linux-ntb@googlegroups.com
10317S:	Supported
10318W:	https://github.com/jonmason/ntb/wiki
10319T:	git git://github.com/jonmason/ntb.git
10320F:	drivers/ntb/
10321F:	drivers/net/ntb_netdev.c
10322F:	include/linux/ntb.h
10323F:	include/linux/ntb_transport.h
10324F:	tools/testing/selftests/ntb/
10325
10326NTB IDT DRIVER
10327M:	Serge Semin <fancer.lancer@gmail.com>
10328L:	linux-ntb@googlegroups.com
10329S:	Supported
10330F:	drivers/ntb/hw/idt/
10331
10332NTB INTEL DRIVER
10333M:	Dave Jiang <dave.jiang@intel.com>
10334L:	linux-ntb@googlegroups.com
10335S:	Supported
10336W:	https://github.com/davejiang/linux/wiki
10337T:	git https://github.com/davejiang/linux.git
10338F:	drivers/ntb/hw/intel/
10339
10340NTFS FILESYSTEM
10341M:	Anton Altaparmakov <anton@tuxera.com>
10342L:	linux-ntfs-dev@lists.sourceforge.net
10343W:	http://www.tuxera.com/
10344T:	git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
10345S:	Supported
10346F:	Documentation/filesystems/ntfs.txt
10347F:	fs/ntfs/
10348
10349NUBUS SUBSYSTEM
10350M:	Finn Thain <fthain@telegraphics.com.au>
10351L:	linux-m68k@lists.linux-m68k.org
10352S:	Maintained
10353F:	arch/*/include/asm/nubus.h
10354F:	drivers/nubus/
10355F:	include/linux/nubus.h
10356F:	include/uapi/linux/nubus.h
10357
10358NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
10359M:	Antonino Daplas <adaplas@gmail.com>
10360L:	linux-fbdev@vger.kernel.org
10361S:	Maintained
10362F:	drivers/video/fbdev/riva/
10363F:	drivers/video/fbdev/nvidia/
10364
10365NVM EXPRESS DRIVER
10366M:	Keith Busch <keith.busch@intel.com>
10367M:	Jens Axboe <axboe@fb.com>
10368M:	Christoph Hellwig <hch@lst.de>
10369M:	Sagi Grimberg <sagi@grimberg.me>
10370L:	linux-nvme@lists.infradead.org
10371T:	git://git.infradead.org/nvme.git
10372W:	http://git.infradead.org/nvme.git
10373S:	Supported
10374F:	drivers/nvme/host/
10375F:	include/linux/nvme.h
10376F:	include/uapi/linux/nvme_ioctl.h
10377
10378NVM EXPRESS FC TRANSPORT DRIVERS
10379M:	James Smart <james.smart@broadcom.com>
10380L:	linux-nvme@lists.infradead.org
10381S:	Supported
10382F:	include/linux/nvme-fc.h
10383F:	include/linux/nvme-fc-driver.h
10384F:	drivers/nvme/host/fc.c
10385F:	drivers/nvme/target/fc.c
10386F:	drivers/nvme/target/fcloop.c
10387
10388NVM EXPRESS TARGET DRIVER
10389M:	Christoph Hellwig <hch@lst.de>
10390M:	Sagi Grimberg <sagi@grimberg.me>
10391L:	linux-nvme@lists.infradead.org
10392T:	git://git.infradead.org/nvme.git
10393W:	http://git.infradead.org/nvme.git
10394S:	Supported
10395F:	drivers/nvme/target/
10396
10397NVMEM FRAMEWORK
10398M:	Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
10399S:	Maintained
10400F:	drivers/nvmem/
10401F:	Documentation/devicetree/bindings/nvmem/
10402F:	Documentation/ABI/stable/sysfs-bus-nvmem
10403F:	include/linux/nvmem-consumer.h
10404F:	include/linux/nvmem-provider.h
10405
10406NXP SGTL5000 DRIVER
10407M:	Fabio Estevam <fabio.estevam@nxp.com>
10408L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
10409S:	Maintained
10410F:	Documentation/devicetree/bindings/sound/sgtl5000.txt
10411F:	sound/soc/codecs/sgtl5000*
10412
10413NXP TDA998X DRM DRIVER
10414M:	Russell King <linux@armlinux.org.uk>
10415S:	Maintained
10416T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
10417T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
10418F:	drivers/gpu/drm/i2c/tda998x_drv.c
10419F:	include/drm/i2c/tda998x.h
10420F:	include/dt-bindings/display/tda998x.h
10421K:	"nxp,tda998x"
10422
10423NXP TFA9879 DRIVER
10424M:	Peter Rosin <peda@axentia.se>
10425L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
10426S:	Maintained
10427F:	Documentation/devicetree/bindings/sound/tfa9879.txt
10428F:	sound/soc/codecs/tfa9879*
10429
10430NXP-NCI NFC DRIVER
10431M:	Clément Perrochaud <clement.perrochaud@effinnov.com>
10432R:	Charles Gorand <charles.gorand@effinnov.com>
10433L:	linux-nfc@lists.01.org (moderated for non-subscribers)
10434S:	Supported
10435F:	drivers/nfc/nxp-nci
10436
10437OBJTOOL
10438M:	Josh Poimboeuf <jpoimboe@redhat.com>
10439M:	Peter Zijlstra <peterz@infradead.org>
10440S:	Supported
10441F:	tools/objtool/
10442
10443OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
10444M:	Frederic Barrat <fbarrat@linux.vnet.ibm.com>
10445M:	Andrew Donnellan <andrew.donnellan@au1.ibm.com>
10446L:	linuxppc-dev@lists.ozlabs.org
10447S:	Supported
10448F:	arch/powerpc/platforms/powernv/ocxl.c
10449F:	arch/powerpc/include/asm/pnv-ocxl.h
10450F:	drivers/misc/ocxl/
10451F:	include/misc/ocxl*
10452F:	include/uapi/misc/ocxl.h
10453F:	Documentation/accelerators/ocxl.rst
10454
10455OMAP AUDIO SUPPORT
10456M:	Peter Ujfalusi <peter.ujfalusi@ti.com>
10457M:	Jarkko Nikula <jarkko.nikula@bitmer.com>
10458L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
10459L:	linux-omap@vger.kernel.org
10460S:	Maintained
10461F:	sound/soc/omap/
10462
10463OMAP CLOCK FRAMEWORK SUPPORT
10464M:	Paul Walmsley <paul@pwsan.com>
10465L:	linux-omap@vger.kernel.org
10466S:	Maintained
10467F:	arch/arm/*omap*/*clock*
10468
10469OMAP DEVICE TREE SUPPORT
10470M:	Benoît Cousson <bcousson@baylibre.com>
10471M:	Tony Lindgren <tony@atomide.com>
10472L:	linux-omap@vger.kernel.org
10473L:	devicetree@vger.kernel.org
10474S:	Maintained
10475F:	arch/arm/boot/dts/*omap*
10476F:	arch/arm/boot/dts/*am3*
10477F:	arch/arm/boot/dts/*am4*
10478F:	arch/arm/boot/dts/*am5*
10479F:	arch/arm/boot/dts/*dra7*
10480
10481OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
10482L:	linux-omap@vger.kernel.org
10483L:	linux-fbdev@vger.kernel.org
10484S:	Orphan
10485F:	drivers/video/fbdev/omap2/
10486F:	Documentation/arm/OMAP/DSS
10487
10488OMAP FRAMEBUFFER SUPPORT
10489L:	linux-fbdev@vger.kernel.org
10490L:	linux-omap@vger.kernel.org
10491S:	Orphan
10492F:	drivers/video/fbdev/omap/
10493
10494OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
10495M:	Roger Quadros <rogerq@ti.com>
10496M:	Tony Lindgren <tony@atomide.com>
10497L:	linux-omap@vger.kernel.org
10498S:	Maintained
10499F:	drivers/memory/omap-gpmc.c
10500F:	arch/arm/mach-omap2/*gpmc*
10501
10502OMAP GPIO DRIVER
10503M:	Grygorii Strashko <grygorii.strashko@ti.com>
10504M:	Santosh Shilimkar <ssantosh@kernel.org>
10505M:	Kevin Hilman <khilman@kernel.org>
10506L:	linux-omap@vger.kernel.org
10507S:	Maintained
10508F:	Documentation/devicetree/bindings/gpio/gpio-omap.txt
10509F:	drivers/gpio/gpio-omap.c
10510
10511OMAP HARDWARE SPINLOCK SUPPORT
10512M:	Ohad Ben-Cohen <ohad@wizery.com>
10513L:	linux-omap@vger.kernel.org
10514S:	Maintained
10515F:	drivers/hwspinlock/omap_hwspinlock.c
10516
10517OMAP HS MMC SUPPORT
10518L:	linux-mmc@vger.kernel.org
10519L:	linux-omap@vger.kernel.org
10520S:	Orphan
10521F:	drivers/mmc/host/omap_hsmmc.c
10522
10523OMAP HWMOD DATA
10524M:	Paul Walmsley <paul@pwsan.com>
10525L:	linux-omap@vger.kernel.org
10526S:	Maintained
10527F:	arch/arm/mach-omap2/omap_hwmod*data*
10528
10529OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
10530M:	Benoît Cousson <bcousson@baylibre.com>
10531L:	linux-omap@vger.kernel.org
10532S:	Maintained
10533F:	arch/arm/mach-omap2/omap_hwmod_44xx_data.c
10534
10535OMAP HWMOD SUPPORT
10536M:	Benoît Cousson <bcousson@baylibre.com>
10537M:	Paul Walmsley <paul@pwsan.com>
10538L:	linux-omap@vger.kernel.org
10539S:	Maintained
10540F:	arch/arm/mach-omap2/omap_hwmod.*
10541
10542OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
10543M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10544L:	linux-media@vger.kernel.org
10545S:	Maintained
10546F:	Documentation/devicetree/bindings/media/ti,omap3isp.txt
10547F:	drivers/media/platform/omap3isp/
10548F:	drivers/staging/media/omap4iss/
10549
10550OMAP MMC SUPPORT
10551M:	Jarkko Lavinen <jarkko.lavinen@nokia.com>
10552L:	linux-omap@vger.kernel.org
10553S:	Maintained
10554F:	drivers/mmc/host/omap.c
10555
10556OMAP POWER MANAGEMENT SUPPORT
10557M:	Kevin Hilman <khilman@kernel.org>
10558L:	linux-omap@vger.kernel.org
10559S:	Maintained
10560F:	arch/arm/*omap*/*pm*
10561F:	drivers/cpufreq/omap-cpufreq.c
10562
10563OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
10564M:	Rajendra Nayak <rnayak@codeaurora.org>
10565M:	Paul Walmsley <paul@pwsan.com>
10566L:	linux-omap@vger.kernel.org
10567S:	Maintained
10568F:	arch/arm/mach-omap2/prm*
10569
10570OMAP RANDOM NUMBER GENERATOR SUPPORT
10571M:	Deepak Saxena <dsaxena@plexity.net>
10572S:	Maintained
10573F:	drivers/char/hw_random/omap-rng.c
10574
10575OMAP USB SUPPORT
10576L:	linux-usb@vger.kernel.org
10577L:	linux-omap@vger.kernel.org
10578S:	Orphan
10579F:	drivers/usb/*/*omap*
10580F:	arch/arm/*omap*/usb*
10581
10582OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
10583M:	Mark Jackson <mpfj@newflow.co.uk>
10584L:	linux-omap@vger.kernel.org
10585S:	Maintained
10586F:	arch/arm/boot/dts/am335x-nano.dts
10587
10588OMAP1 SUPPORT
10589M:	Aaro Koskinen <aaro.koskinen@iki.fi>
10590M:	Tony Lindgren <tony@atomide.com>
10591L:	linux-omap@vger.kernel.org
10592Q:	http://patchwork.kernel.org/project/linux-omap/list/
10593T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
10594S:	Maintained
10595F:	arch/arm/mach-omap1/
10596F:	arch/arm/plat-omap/
10597F:	arch/arm/configs/omap1_defconfig
10598F:	drivers/i2c/busses/i2c-omap.c
10599F:	include/linux/platform_data/i2c-omap.h
10600F:	include/linux/platform_data/ams-delta-fiq.h
10601
10602OMAP2+ SUPPORT
10603M:	Tony Lindgren <tony@atomide.com>
10604L:	linux-omap@vger.kernel.org
10605W:	http://www.muru.com/linux/omap/
10606W:	http://linux.omap.com/
10607Q:	http://patchwork.kernel.org/project/linux-omap/list/
10608T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
10609S:	Maintained
10610F:	arch/arm/mach-omap2/
10611F:	arch/arm/plat-omap/
10612F:	arch/arm/configs/omap2plus_defconfig
10613F:	drivers/i2c/busses/i2c-omap.c
10614F:	drivers/irqchip/irq-omap-intc.c
10615F:	drivers/mfd/*omap*.c
10616F:	drivers/mfd/menelaus.c
10617F:	drivers/mfd/palmas.c
10618F:	drivers/mfd/tps65217.c
10619F:	drivers/mfd/tps65218.c
10620F:	drivers/mfd/tps65910.c
10621F:	drivers/mfd/twl-core.[ch]
10622F:	drivers/mfd/twl4030*.c
10623F:	drivers/mfd/twl6030*.c
10624F:	drivers/mfd/twl6040*.c
10625F:	drivers/regulator/palmas-regulator*.c
10626F:	drivers/regulator/pbias-regulator.c
10627F:	drivers/regulator/tps65217-regulator.c
10628F:	drivers/regulator/tps65218-regulator.c
10629F:	drivers/regulator/tps65910-regulator.c
10630F:	drivers/regulator/twl-regulator.c
10631F:	drivers/regulator/twl6030-regulator.c
10632F:	include/linux/platform_data/i2c-omap.h
10633
10634ONION OMEGA2+ BOARD
10635M:	Harvey Hunt <harveyhuntnexus@gmail.com>
10636L:	linux-mips@linux-mips.org
10637S:	Maintained
10638F:	arch/mips/boot/dts/ralink/omega2p.dts
10639
10640OMFS FILESYSTEM
10641M:	Bob Copeland <me@bobcopeland.com>
10642L:	linux-karma-devel@lists.sourceforge.net
10643S:	Maintained
10644F:	Documentation/filesystems/omfs.txt
10645F:	fs/omfs/
10646
10647OMNIKEY CARDMAN 4000 DRIVER
10648M:	Harald Welte <laforge@gnumonks.org>
10649S:	Maintained
10650F:	drivers/char/pcmcia/cm4000_cs.c
10651F:	include/linux/cm4000_cs.h
10652F:	include/uapi/linux/cm4000_cs.h
10653
10654OMNIKEY CARDMAN 4040 DRIVER
10655M:	Harald Welte <laforge@gnumonks.org>
10656S:	Maintained
10657F:	drivers/char/pcmcia/cm4040_cs.*
10658
10659OMNIVISION OV13858 SENSOR DRIVER
10660M:	Sakari Ailus <sakari.ailus@linux.intel.com>
10661L:	linux-media@vger.kernel.org
10662T:	git git://linuxtv.org/media_tree.git
10663S:	Maintained
10664F:	drivers/media/i2c/ov13858.c
10665
10666OMNIVISION OV2680 SENSOR DRIVER
10667M:	Rui Miguel Silva <rmfrfs@gmail.com>
10668L:	linux-media@vger.kernel.org
10669T:	git git://linuxtv.org/media_tree.git
10670S:	Maintained
10671F:	drivers/media/i2c/ov2680.c
10672F:	Documentation/devicetree/bindings/media/i2c/ov2680.txt
10673
10674OMNIVISION OV2685 SENSOR DRIVER
10675M:	Shunqian Zheng <zhengsq@rock-chips.com>
10676L:	linux-media@vger.kernel.org
10677T:	git git://linuxtv.org/media_tree.git
10678S:	Maintained
10679F:	drivers/media/i2c/ov2685.c
10680
10681OMNIVISION OV5640 SENSOR DRIVER
10682M:	Steve Longerbeam <slongerbeam@gmail.com>
10683L:	linux-media@vger.kernel.org
10684T:	git git://linuxtv.org/media_tree.git
10685S:	Maintained
10686F:	drivers/media/i2c/ov5640.c
10687
10688OMNIVISION OV5647 SENSOR DRIVER
10689M:	Luis Oliveira <lolivei@synopsys.com>
10690L:	linux-media@vger.kernel.org
10691T:	git git://linuxtv.org/media_tree.git
10692S:	Maintained
10693F:	drivers/media/i2c/ov5647.c
10694
10695OMNIVISION OV5695 SENSOR DRIVER
10696M:	Shunqian Zheng <zhengsq@rock-chips.com>
10697L:	linux-media@vger.kernel.org
10698T:	git git://linuxtv.org/media_tree.git
10699S:	Maintained
10700F:	drivers/media/i2c/ov5695.c
10701
10702OMNIVISION OV7670 SENSOR DRIVER
10703M:	Jonathan Corbet <corbet@lwn.net>
10704L:	linux-media@vger.kernel.org
10705T:	git git://linuxtv.org/media_tree.git
10706S:	Maintained
10707F:	drivers/media/i2c/ov7670.c
10708F:	Documentation/devicetree/bindings/media/i2c/ov7670.txt
10709
10710OMNIVISION OV772x SENSOR DRIVER
10711M:	Jacopo Mondi <jacopo@jmondi.org>
10712L:	linux-media@vger.kernel.org
10713T:	git git://linuxtv.org/media_tree.git
10714S:	Odd fixes
10715F:	drivers/media/i2c/ov772x.c
10716F:	include/media/i2c/ov772x.h
10717F:	Documentation/devicetree/bindings/media/i2c/ov772x.txt
10718
10719OMNIVISION OV7740 SENSOR DRIVER
10720M:	Wenyou Yang <wenyou.yang@microchip.com>
10721L:	linux-media@vger.kernel.org
10722T:	git git://linuxtv.org/media_tree.git
10723S:	Maintained
10724F:	drivers/media/i2c/ov7740.c
10725F:	Documentation/devicetree/bindings/media/i2c/ov7740.txt
10726
10727OMNIVISION OV9650 SENSOR DRIVER
10728M:	Sakari Ailus <sakari.ailus@linux.intel.com>
10729R:	Akinobu Mita <akinobu.mita@gmail.com>
10730R:	Sylwester Nawrocki <s.nawrocki@samsung.com>
10731L:	linux-media@vger.kernel.org
10732T:	git git://linuxtv.org/media_tree.git
10733S:	Maintained
10734F:	drivers/media/i2c/ov9650.c
10735F:	Documentation/devicetree/bindings/media/i2c/ov9650.txt
10736
10737ONENAND FLASH DRIVER
10738M:	Kyungmin Park <kyungmin.park@samsung.com>
10739L:	linux-mtd@lists.infradead.org
10740S:	Maintained
10741F:	drivers/mtd/nand/onenand/
10742F:	include/linux/mtd/onenand*.h
10743
10744ONSTREAM SCSI TAPE DRIVER
10745M:	Willem Riede <osst@riede.org>
10746L:	osst-users@lists.sourceforge.net
10747L:	linux-scsi@vger.kernel.org
10748S:	Maintained
10749F:	Documentation/scsi/osst.txt
10750F:	drivers/scsi/osst.*
10751F:	drivers/scsi/osst_*.h
10752F:	drivers/scsi/st.h
10753
10754OP-TEE DRIVER
10755M:	Jens Wiklander <jens.wiklander@linaro.org>
10756S:	Maintained
10757F:	drivers/tee/optee/
10758
10759OPA-VNIC DRIVER
10760M:	Dennis Dalessandro <dennis.dalessandro@intel.com>
10761M:	Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
10762L:	linux-rdma@vger.kernel.org
10763S:	Supported
10764F:	drivers/infiniband/ulp/opa_vnic
10765
10766OPEN FIRMWARE AND DEVICE TREE OVERLAYS
10767M:	Pantelis Antoniou <pantelis.antoniou@konsulko.com>
10768M:	Frank Rowand <frowand.list@gmail.com>
10769L:	devicetree@vger.kernel.org
10770S:	Maintained
10771F:	Documentation/devicetree/dynamic-resolution-notes.txt
10772F:	Documentation/devicetree/overlay-notes.txt
10773F:	drivers/of/overlay.c
10774F:	drivers/of/resolver.c
10775K:	of_overlay_notifier_
10776
10777OPEN FIRMWARE AND FLATTENED DEVICE TREE
10778M:	Rob Herring <robh+dt@kernel.org>
10779M:	Frank Rowand <frowand.list@gmail.com>
10780L:	devicetree@vger.kernel.org
10781W:	http://www.devicetree.org/
10782T:	git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10783S:	Maintained
10784F:	drivers/of/
10785F:	include/linux/of*.h
10786F:	scripts/dtc/
10787F:	Documentation/ABI/testing/sysfs-firmware-ofw
10788
10789OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
10790M:	Rob Herring <robh+dt@kernel.org>
10791M:	Mark Rutland <mark.rutland@arm.com>
10792L:	devicetree@vger.kernel.org
10793T:	git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10794Q:	http://patchwork.ozlabs.org/project/devicetree-bindings/list/
10795S:	Maintained
10796F:	Documentation/devicetree/
10797F:	arch/*/boot/dts/
10798F:	include/dt-bindings/
10799
10800OPENCORES I2C BUS DRIVER
10801M:	Peter Korsgaard <peter@korsgaard.com>
10802L:	linux-i2c@vger.kernel.org
10803S:	Maintained
10804F:	Documentation/i2c/busses/i2c-ocores
10805F:	drivers/i2c/busses/i2c-ocores.c
10806
10807OPENRISC ARCHITECTURE
10808M:	Jonas Bonn <jonas@southpole.se>
10809M:	Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
10810M:	Stafford Horne <shorne@gmail.com>
10811T:	git git://github.com/openrisc/linux.git
10812L:	openrisc@lists.librecores.org
10813W:	http://openrisc.io
10814S:	Maintained
10815F:	Documentation/devicetree/bindings/openrisc/
10816F:	Documentation/openrisc/
10817F:	arch/openrisc/
10818F:	drivers/irqchip/irq-ompic.c
10819F:	drivers/irqchip/irq-or1k-*
10820
10821OPENVSWITCH
10822M:	Pravin B Shelar <pshelar@ovn.org>
10823L:	netdev@vger.kernel.org
10824L:	dev@openvswitch.org
10825W:	http://openvswitch.org
10826S:	Maintained
10827F:	net/openvswitch/
10828F:	include/uapi/linux/openvswitch.h
10829
10830OPERATING PERFORMANCE POINTS (OPP)
10831M:	Viresh Kumar <vireshk@kernel.org>
10832M:	Nishanth Menon <nm@ti.com>
10833M:	Stephen Boyd <sboyd@kernel.org>
10834L:	linux-pm@vger.kernel.org
10835S:	Maintained
10836T:	git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
10837F:	drivers/opp/
10838F:	include/linux/pm_opp.h
10839F:	Documentation/power/opp.txt
10840F:	Documentation/devicetree/bindings/opp/
10841
10842OPL4 DRIVER
10843M:	Clemens Ladisch <clemens@ladisch.de>
10844L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
10845T:	git git://git.alsa-project.org/alsa-kernel.git
10846S:	Maintained
10847F:	sound/drivers/opl4/
10848
10849OPROFILE
10850M:	Robert Richter <rric@kernel.org>
10851L:	oprofile-list@lists.sf.net
10852S:	Maintained
10853F:	arch/*/include/asm/oprofile*.h
10854F:	arch/*/oprofile/
10855F:	drivers/oprofile/
10856F:	include/linux/oprofile.h
10857
10858ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
10859M:	Mark Fasheh <mark@fasheh.com>
10860M:	Joel Becker <jlbec@evilplan.org>
10861L:	ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
10862W:	http://ocfs2.wiki.kernel.org
10863S:	Supported
10864F:	Documentation/filesystems/ocfs2.txt
10865F:	Documentation/filesystems/dlmfs.txt
10866F:	fs/ocfs2/
10867
10868ORANGEFS FILESYSTEM
10869M:	Mike Marshall <hubcap@omnibond.com>
10870R:	Martin Brandenburg <martin@omnibond.com>
10871L:	devel@lists.orangefs.org
10872T:	git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
10873S:	Supported
10874F:	fs/orangefs/
10875F:	Documentation/filesystems/orangefs.txt
10876
10877ORINOCO DRIVER
10878L:	linux-wireless@vger.kernel.org
10879W:	http://wireless.kernel.org/en/users/Drivers/orinoco
10880W:	http://www.nongnu.org/orinoco/
10881S:	Orphan
10882F:	drivers/net/wireless/intersil/orinoco/
10883
10884OSD LIBRARY and FILESYSTEM
10885M:	Boaz Harrosh <ooo@electrozaur.com>
10886S:	Maintained
10887F:	drivers/scsi/osd/
10888F:	include/scsi/osd_*
10889F:	fs/exofs/
10890
10891OV2659 OMNIVISION SENSOR DRIVER
10892M:	"Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10893L:	linux-media@vger.kernel.org
10894W:	https://linuxtv.org
10895Q:	http://patchwork.linuxtv.org/project/linux-media/list/
10896T:	git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10897S:	Maintained
10898F:	drivers/media/i2c/ov2659.c
10899F:	include/media/i2c/ov2659.h
10900
10901OVERLAY FILESYSTEM
10902M:	Miklos Szeredi <miklos@szeredi.hu>
10903L:	linux-unionfs@vger.kernel.org
10904T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
10905S:	Supported
10906F:	fs/overlayfs/
10907F:	Documentation/filesystems/overlayfs.txt
10908
10909P54 WIRELESS DRIVER
10910M:	Christian Lamparter <chunkeey@googlemail.com>
10911L:	linux-wireless@vger.kernel.org
10912W:	http://wireless.kernel.org/en/users/Drivers/p54
10913S:	Maintained
10914F:	drivers/net/wireless/intersil/p54/
10915
10916PA SEMI ETHERNET DRIVER
10917L:	netdev@vger.kernel.org
10918S:	Orphan
10919F:	drivers/net/ethernet/pasemi/*
10920
10921PA SEMI SMBUS DRIVER
10922L:	linux-i2c@vger.kernel.org
10923S:	Orphan
10924F:	drivers/i2c/busses/i2c-pasemi.c
10925
10926PADATA PARALLEL EXECUTION MECHANISM
10927M:	Steffen Klassert <steffen.klassert@secunet.com>
10928L:	linux-crypto@vger.kernel.org
10929S:	Maintained
10930F:	kernel/padata.c
10931F:	include/linux/padata.h
10932F:	Documentation/padata.txt
10933
10934PANASONIC LAPTOP ACPI EXTRAS DRIVER
10935M:	Harald Welte <laforge@gnumonks.org>
10936L:	platform-driver-x86@vger.kernel.org
10937S:	Maintained
10938F:	drivers/platform/x86/panasonic-laptop.c
10939
10940PARALLEL LCD/KEYPAD PANEL DRIVER
10941M:	Willy Tarreau <willy@haproxy.com>
10942M:	Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
10943S:	Odd Fixes
10944F:	Documentation/auxdisplay/lcd-panel-cgram.txt
10945F:	drivers/misc/panel.c
10946
10947PARALLEL PORT SUBSYSTEM
10948M:	Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10949M:	Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
10950L:	linux-parport@lists.infradead.org (subscribers-only)
10951S:	Maintained
10952F:	drivers/parport/
10953F:	include/linux/parport*.h
10954F:	drivers/char/ppdev.c
10955F:	include/uapi/linux/ppdev.h
10956F:	Documentation/parport*.txt
10957
10958PARAVIRT_OPS INTERFACE
10959M:	Juergen Gross <jgross@suse.com>
10960M:	Alok Kataria <akataria@vmware.com>
10961L:	virtualization@lists.linux-foundation.org
10962S:	Supported
10963F:	Documentation/virtual/paravirt_ops.txt
10964F:	arch/*/kernel/paravirt*
10965F:	arch/*/include/asm/paravirt*.h
10966F:	include/linux/hypervisor.h
10967
10968PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
10969M:	Tim Waugh <tim@cyberelk.net>
10970L:	linux-parport@lists.infradead.org (subscribers-only)
10971S:	Maintained
10972F:	Documentation/blockdev/paride.txt
10973F:	drivers/block/paride/
10974
10975PARISC ARCHITECTURE
10976M:	"James E.J. Bottomley" <jejb@parisc-linux.org>
10977M:	Helge Deller <deller@gmx.de>
10978L:	linux-parisc@vger.kernel.org
10979W:	http://www.parisc-linux.org/
10980Q:	http://patchwork.kernel.org/project/linux-parisc/list/
10981T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
10982T:	git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
10983S:	Maintained
10984F:	arch/parisc/
10985F:	Documentation/parisc/
10986F:	drivers/parisc/
10987F:	drivers/char/agp/parisc-agp.c
10988F:	drivers/input/serio/gscps2.c
10989F:	drivers/parport/parport_gsc.*
10990F:	drivers/tty/serial/8250/8250_gsc.c
10991F:	drivers/video/fbdev/sti*
10992F:	drivers/video/console/sti*
10993F:	drivers/video/logo/logo_parisc*
10994
10995PARMAN
10996M:	Jiri Pirko <jiri@mellanox.com>
10997L:	netdev@vger.kernel.org
10998S:	Supported
10999F:	lib/parman.c
11000F:	lib/test_parman.c
11001F:	include/linux/parman.h
11002
11003PC87360 HARDWARE MONITORING DRIVER
11004M:	Jim Cromie <jim.cromie@gmail.com>
11005L:	linux-hwmon@vger.kernel.org
11006S:	Maintained
11007F:	Documentation/hwmon/pc87360
11008F:	drivers/hwmon/pc87360.c
11009
11010PC8736x GPIO DRIVER
11011M:	Jim Cromie <jim.cromie@gmail.com>
11012S:	Maintained
11013F:	drivers/char/pc8736x_gpio.c
11014
11015PC87427 HARDWARE MONITORING DRIVER
11016M:	Jean Delvare <jdelvare@suse.com>
11017L:	linux-hwmon@vger.kernel.org
11018S:	Maintained
11019F:	Documentation/hwmon/pc87427
11020F:	drivers/hwmon/pc87427.c
11021
11022PCA9532 LED DRIVER
11023M:	Riku Voipio <riku.voipio@iki.fi>
11024S:	Maintained
11025F:	drivers/leds/leds-pca9532.c
11026F:	include/linux/leds-pca9532.h
11027
11028PCA9541 I2C BUS MASTER SELECTOR DRIVER
11029M:	Guenter Roeck <linux@roeck-us.net>
11030L:	linux-i2c@vger.kernel.org
11031S:	Maintained
11032F:	drivers/i2c/muxes/i2c-mux-pca9541.c
11033
11034PCDP - PRIMARY CONSOLE AND DEBUG PORT
11035M:	Khalid Aziz <khalid@gonehiking.org>
11036S:	Maintained
11037F:	drivers/firmware/pcdp.*
11038
11039PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
11040M:	Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
11041L:	linux-pci@vger.kernel.org
11042L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11043S:	Maintained
11044F:	Documentation/devicetree/bindings/pci/aardvark-pci.txt
11045F:	drivers/pci/controller/pci-aardvark.c
11046
11047PCI DRIVER FOR ALTERA PCIE IP
11048M:	Ley Foon Tan <lftan@altera.com>
11049L:	rfi@lists.rocketboards.org (moderated for non-subscribers)
11050L:	linux-pci@vger.kernel.org
11051S:	Supported
11052F:	Documentation/devicetree/bindings/pci/altera-pcie.txt
11053F:	drivers/pci/controller/pcie-altera.c
11054
11055PCI DRIVER FOR APPLIEDMICRO XGENE
11056M:	Tanmay Inamdar <tinamdar@apm.com>
11057L:	linux-pci@vger.kernel.org
11058L:	linux-arm-kernel@lists.infradead.org
11059S:	Maintained
11060F:	Documentation/devicetree/bindings/pci/xgene-pci.txt
11061F:	drivers/pci/controller/pci-xgene.c
11062
11063PCI DRIVER FOR ARM VERSATILE PLATFORM
11064M:	Rob Herring <robh@kernel.org>
11065L:	linux-pci@vger.kernel.org
11066L:	linux-arm-kernel@lists.infradead.org
11067S:	Maintained
11068F:	Documentation/devicetree/bindings/pci/versatile.txt
11069F:	drivers/pci/controller/pci-versatile.c
11070
11071PCI DRIVER FOR ARMADA 8K
11072M:	Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
11073L:	linux-pci@vger.kernel.org
11074L:	linux-arm-kernel@lists.infradead.org
11075S:	Maintained
11076F:	Documentation/devicetree/bindings/pci/pci-armada8k.txt
11077F:	drivers/pci/controller/dwc/pcie-armada8k.c
11078
11079PCI DRIVER FOR CADENCE PCIE IP
11080M:	Alan Douglas <adouglas@cadence.com>
11081L:	linux-pci@vger.kernel.org
11082S:	Maintained
11083F:	Documentation/devicetree/bindings/pci/cdns,*.txt
11084F:	drivers/pci/controller/pcie-cadence*
11085
11086PCI DRIVER FOR FREESCALE LAYERSCAPE
11087M:	Minghuan Lian <minghuan.Lian@nxp.com>
11088M:	Mingkai Hu <mingkai.hu@nxp.com>
11089M:	Roy Zang <roy.zang@nxp.com>
11090L:	linuxppc-dev@lists.ozlabs.org
11091L:	linux-pci@vger.kernel.org
11092L:	linux-arm-kernel@lists.infradead.org
11093S:	Maintained
11094F:	drivers/pci/controller/dwc/*layerscape*
11095
11096PCI DRIVER FOR GENERIC OF HOSTS
11097M:	Will Deacon <will.deacon@arm.com>
11098L:	linux-pci@vger.kernel.org
11099L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11100S:	Maintained
11101F:	Documentation/devicetree/bindings/pci/host-generic-pci.txt
11102F:	drivers/pci/controller/pci-host-common.c
11103F:	drivers/pci/controller/pci-host-generic.c
11104
11105PCI DRIVER FOR IMX6
11106M:	Richard Zhu <hongxing.zhu@nxp.com>
11107M:	Lucas Stach <l.stach@pengutronix.de>
11108L:	linux-pci@vger.kernel.org
11109L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11110S:	Maintained
11111F:	Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
11112F:	drivers/pci/controller/dwc/*imx6*
11113
11114PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
11115M:	Keith Busch <keith.busch@intel.com>
11116M:	Jonathan Derrick <jonathan.derrick@intel.com>
11117L:	linux-pci@vger.kernel.org
11118S:	Supported
11119F:	drivers/pci/controller/vmd.c
11120
11121PCI DRIVER FOR MICROSEMI SWITCHTEC
11122M:	Kurt Schwemmer <kurt.schwemmer@microsemi.com>
11123M:	Logan Gunthorpe <logang@deltatee.com>
11124L:	linux-pci@vger.kernel.org
11125S:	Maintained
11126F:	Documentation/switchtec.txt
11127F:	Documentation/ABI/testing/sysfs-class-switchtec
11128F:	drivers/pci/switch/switchtec*
11129F:	include/uapi/linux/switchtec_ioctl.h
11130F:	include/linux/switchtec.h
11131F:	drivers/ntb/hw/mscc/
11132
11133PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
11134M:	Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
11135M:	Jason Cooper <jason@lakedaemon.net>
11136L:	linux-pci@vger.kernel.org
11137L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11138S:	Maintained
11139F:	drivers/pci/controller/*mvebu*
11140
11141PCI DRIVER FOR NVIDIA TEGRA
11142M:	Thierry Reding <thierry.reding@gmail.com>
11143L:	linux-tegra@vger.kernel.org
11144L:	linux-pci@vger.kernel.org
11145S:	Supported
11146F:	Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
11147F:	drivers/pci/controller/pci-tegra.c
11148
11149PCI DRIVER FOR RENESAS R-CAR
11150M:	Simon Horman <horms@verge.net.au>
11151L:	linux-pci@vger.kernel.org
11152L:	linux-renesas-soc@vger.kernel.org
11153S:	Maintained
11154F:	drivers/pci/controller/*rcar*
11155
11156PCI DRIVER FOR SAMSUNG EXYNOS
11157M:	Jingoo Han <jingoohan1@gmail.com>
11158L:	linux-pci@vger.kernel.org
11159L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11160L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11161S:	Maintained
11162F:	drivers/pci/controller/dwc/pci-exynos.c
11163
11164PCI DRIVER FOR SYNOPSYS DESIGNWARE
11165M:	Jingoo Han <jingoohan1@gmail.com>
11166M:	Joao Pinto <Joao.Pinto@synopsys.com>
11167L:	linux-pci@vger.kernel.org
11168S:	Maintained
11169F:	Documentation/devicetree/bindings/pci/designware-pcie.txt
11170F:	drivers/pci/controller/dwc/*designware*
11171
11172PCI DRIVER FOR TI DRA7XX
11173M:	Kishon Vijay Abraham I <kishon@ti.com>
11174L:	linux-omap@vger.kernel.org
11175L:	linux-pci@vger.kernel.org
11176S:	Supported
11177F:	Documentation/devicetree/bindings/pci/ti-pci.txt
11178F:	drivers/pci/controller/dwc/pci-dra7xx.c
11179
11180PCI DRIVER FOR TI KEYSTONE
11181M:	Murali Karicheri <m-karicheri2@ti.com>
11182L:	linux-pci@vger.kernel.org
11183L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11184S:	Maintained
11185F:	drivers/pci/controller/dwc/*keystone*
11186
11187PCI ENDPOINT SUBSYSTEM
11188M:	Kishon Vijay Abraham I <kishon@ti.com>
11189M:	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
11190L:	linux-pci@vger.kernel.org
11191T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
11192S:	Supported
11193F:	drivers/pci/endpoint/
11194F:	drivers/misc/pci_endpoint_test.c
11195F:	tools/pci/
11196
11197PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
11198M:	Russell Currey <ruscur@russell.cc>
11199L:	linuxppc-dev@lists.ozlabs.org
11200S:	Supported
11201F:	Documentation/powerpc/eeh-pci-error-recovery.txt
11202F:	arch/powerpc/kernel/eeh*.c
11203F:	arch/powerpc/platforms/*/eeh*.c
11204F:	arch/powerpc/include/*/eeh*.h
11205
11206PCI ERROR RECOVERY
11207M:	Linas Vepstas <linasvepstas@gmail.com>
11208L:	linux-pci@vger.kernel.org
11209S:	Supported
11210F:	Documentation/PCI/pci-error-recovery.txt
11211
11212PCI MSI DRIVER FOR ALTERA MSI IP
11213M:	Ley Foon Tan <lftan@altera.com>
11214L:	rfi@lists.rocketboards.org (moderated for non-subscribers)
11215L:	linux-pci@vger.kernel.org
11216S:	Supported
11217F:	Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
11218F:	drivers/pci/controller/pcie-altera-msi.c
11219
11220PCI MSI DRIVER FOR APPLIEDMICRO XGENE
11221M:	Duc Dang <dhdang@apm.com>
11222L:	linux-pci@vger.kernel.org
11223L:	linux-arm-kernel@lists.infradead.org
11224S:	Maintained
11225F:	Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
11226F:	drivers/pci/controller/pci-xgene-msi.c
11227
11228PCI SUBSYSTEM
11229M:	Bjorn Helgaas <bhelgaas@google.com>
11230L:	linux-pci@vger.kernel.org
11231Q:	http://patchwork.ozlabs.org/project/linux-pci/list/
11232T:	git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
11233S:	Supported
11234F:	Documentation/devicetree/bindings/pci/
11235F:	Documentation/PCI/
11236F:	drivers/acpi/pci*
11237F:	drivers/pci/
11238F:	include/asm-generic/pci*
11239F:	include/linux/pci*
11240F:	include/linux/of_pci.h
11241F:	include/uapi/linux/pci*
11242F:	lib/pci*
11243F:	arch/x86/pci/
11244F:	arch/x86/kernel/quirks.c
11245
11246PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
11247M:	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
11248L:	linux-pci@vger.kernel.org
11249Q:	http://patchwork.ozlabs.org/project/linux-pci/list/
11250T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
11251S:	Supported
11252F:	drivers/pci/controller/
11253
11254PCIE DRIVER FOR AXIS ARTPEC
11255M:	Jesper Nilsson <jesper.nilsson@axis.com>
11256L:	linux-arm-kernel@axis.com
11257L:	linux-pci@vger.kernel.org
11258S:	Maintained
11259F:	Documentation/devicetree/bindings/pci/axis,artpec*
11260F:	drivers/pci/controller/dwc/*artpec*
11261
11262PCIE DRIVER FOR CAVIUM THUNDERX
11263M:	David Daney <david.daney@cavium.com>
11264L:	linux-pci@vger.kernel.org
11265L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11266S:	Supported
11267F:	Documentation/devicetree/bindings/pci/pci-thunder-*
11268F:	drivers/pci/controller/pci-thunder-*
11269
11270PCIE DRIVER FOR HISILICON
11271M:	Zhou Wang <wangzhou1@hisilicon.com>
11272L:	linux-pci@vger.kernel.org
11273S:	Maintained
11274F:	Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
11275F:	drivers/pci/controller/dwc/pcie-hisi.c
11276
11277PCIE DRIVER FOR HISILICON KIRIN
11278M:	Xiaowei Song <songxiaowei@hisilicon.com>
11279M:	Binghui Wang <wangbinghui@hisilicon.com>
11280L:	linux-pci@vger.kernel.org
11281S:	Maintained
11282F:	Documentation/devicetree/bindings/pci/kirin-pcie.txt
11283F:	drivers/pci/controller/dwc/pcie-kirin.c
11284
11285PCIE DRIVER FOR HISILICON STB
11286M:	Jianguo Sun <sunjianguo1@huawei.com>
11287M:	Shawn Guo <shawn.guo@linaro.org>
11288L:	linux-pci@vger.kernel.org
11289S:	Maintained
11290F:	Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
11291F:	drivers/pci/controller/dwc/pcie-histb.c
11292
11293PCIE DRIVER FOR MEDIATEK
11294M:	Ryder Lee <ryder.lee@mediatek.com>
11295L:	linux-pci@vger.kernel.org
11296L:	linux-mediatek@lists.infradead.org
11297S:	Supported
11298F:	Documentation/devicetree/bindings/pci/mediatek*
11299F:	drivers/pci/controller/*mediatek*
11300
11301PCIE DRIVER FOR QUALCOMM MSM
11302M:	Stanimir Varbanov <svarbanov@mm-sol.com>
11303L:	linux-pci@vger.kernel.org
11304L:	linux-arm-msm@vger.kernel.org
11305S:	Maintained
11306F:	drivers/pci/controller/dwc/*qcom*
11307
11308PCIE DRIVER FOR ROCKCHIP
11309M:	Shawn Lin <shawn.lin@rock-chips.com>
11310L:	linux-pci@vger.kernel.org
11311L:	linux-rockchip@lists.infradead.org
11312S:	Maintained
11313F:	Documentation/devicetree/bindings/pci/rockchip-pcie*
11314F:	drivers/pci/controller/pcie-rockchip*
11315
11316PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
11317M:	Linus Walleij <linus.walleij@linaro.org>
11318L:	linux-pci@vger.kernel.org
11319S:	Maintained
11320F:	Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
11321F:	drivers/pci/controller/pci-v3-semi.c
11322
11323PCIE DRIVER FOR ST SPEAR13XX
11324M:	Pratyush Anand <pratyush.anand@gmail.com>
11325L:	linux-pci@vger.kernel.org
11326S:	Maintained
11327F:	drivers/pci/controller/dwc/*spear*
11328
11329PCMCIA SUBSYSTEM
11330M:	Dominik Brodowski <linux@dominikbrodowski.net>
11331T:	git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
11332S:	Odd Fixes
11333F:	Documentation/pcmcia/
11334F:	tools/pcmcia/
11335F:	drivers/pcmcia/
11336F:	include/pcmcia/
11337
11338PCNET32 NETWORK DRIVER
11339M:	Don Fry <pcnet32@frontier.com>
11340L:	netdev@vger.kernel.org
11341S:	Maintained
11342F:	drivers/net/ethernet/amd/pcnet32.c
11343
11344PCRYPT PARALLEL CRYPTO ENGINE
11345M:	Steffen Klassert <steffen.klassert@secunet.com>
11346L:	linux-crypto@vger.kernel.org
11347S:	Maintained
11348F:	crypto/pcrypt.c
11349F:	include/crypto/pcrypt.h
11350
11351PEAQ WMI HOTKEYS DRIVER
11352M:	Hans de Goede <hdegoede@redhat.com>
11353L:	platform-driver-x86@vger.kernel.org
11354S:	Maintained
11355F:	drivers/platform/x86/peaq-wmi.c
11356
11357PER-CPU MEMORY ALLOCATOR
11358M:	Tejun Heo <tj@kernel.org>
11359M:	Christoph Lameter <cl@linux.com>
11360M:	Dennis Zhou <dennisszhou@gmail.com>
11361T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
11362S:	Maintained
11363F:	include/linux/percpu*.h
11364F:	mm/percpu*.c
11365F:	arch/*/include/asm/percpu.h
11366
11367PER-TASK DELAY ACCOUNTING
11368M:	Balbir Singh <bsingharora@gmail.com>
11369S:	Maintained
11370F:	include/linux/delayacct.h
11371F:	kernel/delayacct.c
11372
11373PERFORMANCE EVENTS SUBSYSTEM
11374M:	Peter Zijlstra <peterz@infradead.org>
11375M:	Ingo Molnar <mingo@redhat.com>
11376M:	Arnaldo Carvalho de Melo <acme@kernel.org>
11377R:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
11378R:	Jiri Olsa <jolsa@redhat.com>
11379R:	Namhyung Kim <namhyung@kernel.org>
11380L:	linux-kernel@vger.kernel.org
11381T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11382S:	Supported
11383F:	kernel/events/*
11384F:	include/linux/perf_event.h
11385F:	include/uapi/linux/perf_event.h
11386F:	arch/*/kernel/perf_event*.c
11387F:	arch/*/kernel/*/perf_event*.c
11388F:	arch/*/kernel/*/*/perf_event*.c
11389F:	arch/*/include/asm/perf_event.h
11390F:	arch/*/kernel/perf_callchain.c
11391F:	arch/*/events/*
11392F:	tools/perf/
11393
11394PERSONALITY HANDLING
11395M:	Christoph Hellwig <hch@infradead.org>
11396L:	linux-abi-devel@lists.sourceforge.net
11397S:	Maintained
11398F:	include/linux/personality.h
11399F:	include/uapi/linux/personality.h
11400
11401PHOENIX RC FLIGHT CONTROLLER ADAPTER
11402M:	Marcus Folkesson <marcus.folkesson@gmail.com>
11403L:	linux-input@vger.kernel.org
11404S:	Maintained
11405F:	Documentation/input/devices/pxrc.rst
11406F:	drivers/input/joystick/pxrc.c
11407
11408PHONET PROTOCOL
11409M:	Remi Denis-Courmont <courmisch@gmail.com>
11410S:	Supported
11411F:	Documentation/networking/phonet.txt
11412F:	include/linux/phonet.h
11413F:	include/net/phonet/
11414F:	include/uapi/linux/phonet.h
11415F:	net/phonet/
11416
11417PHRAM MTD DRIVER
11418M:	Joern Engel <joern@lazybastard.org>
11419L:	linux-mtd@lists.infradead.org
11420S:	Maintained
11421F:	drivers/mtd/devices/phram.c
11422
11423PICOLCD HID DRIVER
11424M:	Bruno Prémont <bonbons@linux-vserver.org>
11425L:	linux-input@vger.kernel.org
11426S:	Maintained
11427F:	drivers/hid/hid-picolcd*
11428
11429PICOXCELL SUPPORT
11430M:	Jamie Iles <jamie@jamieiles.com>
11431L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11432T:	git git://github.com/jamieiles/linux-2.6-ji.git
11433S:	Supported
11434F:	arch/arm/boot/dts/picoxcell*
11435F:	arch/arm/mach-picoxcell/
11436F:	drivers/crypto/picoxcell*
11437
11438PIN CONTROL SUBSYSTEM
11439M:	Linus Walleij <linus.walleij@linaro.org>
11440L:	linux-gpio@vger.kernel.org
11441T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
11442S:	Maintained
11443F:	Documentation/devicetree/bindings/pinctrl/
11444F:	Documentation/driver-api/pinctl.rst
11445F:	drivers/pinctrl/
11446F:	include/linux/pinctrl/
11447
11448PIN CONTROLLER - ATMEL AT91
11449M:	Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
11450L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11451S:	Maintained
11452F:	drivers/pinctrl/pinctrl-at91.*
11453
11454PIN CONTROLLER - ATMEL AT91 PIO4
11455M:	Ludovic Desroches <ludovic.desroches@microchip.com>
11456L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11457L:	linux-gpio@vger.kernel.org
11458S:	Supported
11459F:	drivers/pinctrl/pinctrl-at91-pio4.*
11460
11461PIN CONTROLLER - FREESCALE
11462M:	Dong Aisheng <aisheng.dong@nxp.com>
11463M:	Fabio Estevam <festevam@gmail.com>
11464M:	Shawn Guo <shawnguo@kernel.org>
11465M:	Stefan Agner <stefan@agner.ch>
11466R:	Pengutronix Kernel Team <kernel@pengutronix.de>
11467L:	linux-gpio@vger.kernel.org
11468S:	Maintained
11469F:	drivers/pinctrl/freescale/
11470F:	Documentation/devicetree/bindings/pinctrl/fsl,*
11471
11472PIN CONTROLLER - INTEL
11473M:	Mika Westerberg <mika.westerberg@linux.intel.com>
11474M:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
11475S:	Maintained
11476F:	drivers/pinctrl/intel/
11477
11478PIN CONTROLLER - MEDIATEK
11479M:	Sean Wang <sean.wang@mediatek.com>
11480L:	linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11481S:	Maintained
11482F:	Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
11483F:	Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
11484F:	drivers/pinctrl/mediatek/mtk-eint.*
11485F:	drivers/pinctrl/mediatek/pinctrl-mtk-common.*
11486F:	drivers/pinctrl/mediatek/pinctrl-mt2701.c
11487F:	drivers/pinctrl/mediatek/pinctrl-mt7622.c
11488
11489PIN CONTROLLER - QUALCOMM
11490M:	Bjorn Andersson <bjorn.andersson@linaro.org>
11491S:	Maintained
11492L:	linux-arm-msm@vger.kernel.org
11493F:	Documentation/devicetree/bindings/pinctrl/qcom,*.txt
11494F:	drivers/pinctrl/qcom/
11495
11496PIN CONTROLLER - RENESAS
11497M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11498M:	Geert Uytterhoeven <geert+renesas@glider.be>
11499L:	linux-renesas-soc@vger.kernel.org
11500T:	git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
11501S:	Maintained
11502F:	drivers/pinctrl/sh-pfc/
11503
11504PIN CONTROLLER - SAMSUNG
11505M:	Tomasz Figa <tomasz.figa@gmail.com>
11506M:	Krzysztof Kozlowski <krzk@kernel.org>
11507M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
11508L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11509L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11510Q:	https://patchwork.kernel.org/project/linux-samsung-soc/list/
11511T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
11512S:	Maintained
11513F:	drivers/pinctrl/samsung/
11514F:	include/dt-bindings/pinctrl/samsung.h
11515F:	Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
11516
11517PIN CONTROLLER - SINGLE
11518M:	Tony Lindgren <tony@atomide.com>
11519M:	Haojian Zhuang <haojian.zhuang@linaro.org>
11520L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11521L:	linux-omap@vger.kernel.org
11522S:	Maintained
11523F:	drivers/pinctrl/pinctrl-single.c
11524
11525PIN CONTROLLER - ST SPEAR
11526M:	Viresh Kumar <vireshk@kernel.org>
11527L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11528W:	http://www.st.com/spear
11529S:	Maintained
11530F:	drivers/pinctrl/spear/
11531
11532PISTACHIO SOC SUPPORT
11533M:	James Hartley <james.hartley@sondrel.com>
11534L:	linux-mips@linux-mips.org
11535S:	Odd Fixes
11536F:	arch/mips/pistachio/
11537F:	arch/mips/include/asm/mach-pistachio/
11538F:	arch/mips/boot/dts/img/pistachio*
11539F:	arch/mips/configs/pistachio*_defconfig
11540
11541PKTCDVD DRIVER
11542S:	Orphan
11543M:	linux-block@vger.kernel.org
11544F:	drivers/block/pktcdvd.c
11545F:	include/linux/pktcdvd.h
11546F:	include/uapi/linux/pktcdvd.h
11547
11548PKUNITY SOC DRIVERS
11549M:	Guan Xuetao <gxt@pku.edu.cn>
11550W:	http://mprc.pku.edu.cn/~guanxuetao/linux
11551S:	Maintained
11552T:	git git://github.com/gxt/linux.git
11553F:	drivers/input/serio/i8042-unicore32io.h
11554F:	drivers/i2c/busses/i2c-puv3.c
11555F:	drivers/video/fbdev/fb-puv3.c
11556F:	drivers/rtc/rtc-puv3.c
11557
11558PMBUS HARDWARE MONITORING DRIVERS
11559M:	Guenter Roeck <linux@roeck-us.net>
11560L:	linux-hwmon@vger.kernel.org
11561W:	http://hwmon.wiki.kernel.org/
11562W:	http://www.roeck-us.net/linux/drivers/
11563T:	git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
11564S:	Maintained
11565F:	Documentation/hwmon/pmbus
11566F:	drivers/hwmon/pmbus/
11567F:	include/linux/pmbus.h
11568
11569PMC SIERRA MaxRAID DRIVER
11570L:	linux-scsi@vger.kernel.org
11571W:	http://www.pmc-sierra.com/
11572S:	Orphan
11573F:	drivers/scsi/pmcraid.*
11574
11575PMC SIERRA PM8001 DRIVER
11576M:	Jack Wang <jinpu.wang@profitbricks.com>
11577M:	lindar_liu@usish.com
11578L:	linux-scsi@vger.kernel.org
11579S:	Supported
11580F:	drivers/scsi/pm8001/
11581
11582PNP SUPPORT
11583M:	"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
11584S:	Maintained
11585F:	drivers/pnp/
11586
11587POSIX CLOCKS and TIMERS
11588M:	Thomas Gleixner <tglx@linutronix.de>
11589L:	linux-kernel@vger.kernel.org
11590T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
11591S:	Maintained
11592F:	fs/timerfd.c
11593F:	include/linux/timer*
11594F:	kernel/time/*timer*
11595
11596POWER MANAGEMENT CORE
11597M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
11598L:	linux-pm@vger.kernel.org
11599T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
11600B:	https://bugzilla.kernel.org
11601S:	Supported
11602F:	drivers/base/power/
11603F:	include/linux/pm.h
11604F:	include/linux/pm_*
11605F:	include/linux/powercap.h
11606F:	drivers/powercap/
11607F:	kernel/configs/nopm.config
11608
11609POWER STATE COORDINATION INTERFACE (PSCI)
11610M:	Mark Rutland <mark.rutland@arm.com>
11611M:	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
11612L:	linux-arm-kernel@lists.infradead.org
11613S:	Maintained
11614F:	drivers/firmware/psci*.c
11615F:	include/linux/psci.h
11616F:	include/uapi/linux/psci.h
11617
11618POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
11619M:	Sebastian Reichel <sre@kernel.org>
11620L:	linux-pm@vger.kernel.org
11621T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
11622S:	Maintained
11623F:	Documentation/ABI/testing/sysfs-class-power
11624F:	Documentation/devicetree/bindings/power/supply/
11625F:	include/linux/power_supply.h
11626F:	drivers/power/supply/
11627
11628POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
11629M:	Suraj Jitindar Singh <sjitindarsingh@gmail.com>
11630L:	linuxppc-dev@lists.ozlabs.org
11631S:	Maintained
11632F:	drivers/char/powernv-op-panel.c
11633
11634PPP OVER ATM (RFC 2364)
11635M:	Mitchell Blank Jr <mitch@sfgoth.com>
11636S:	Maintained
11637F:	net/atm/pppoatm.c
11638F:	include/uapi/linux/atmppp.h
11639
11640PPP OVER ETHERNET
11641M:	Michal Ostrowski <mostrows@earthlink.net>
11642S:	Maintained
11643F:	drivers/net/ppp/pppoe.c
11644F:	drivers/net/ppp/pppox.c
11645
11646PPP OVER L2TP
11647M:	James Chapman <jchapman@katalix.com>
11648S:	Maintained
11649F:	net/l2tp/l2tp_ppp.c
11650F:	include/linux/if_pppol2tp.h
11651F:	include/uapi/linux/if_pppol2tp.h
11652
11653PPP PROTOCOL DRIVERS AND COMPRESSORS
11654M:	Paul Mackerras <paulus@samba.org>
11655L:	linux-ppp@vger.kernel.org
11656S:	Maintained
11657F:	drivers/net/ppp/ppp_*
11658
11659PPS SUPPORT
11660M:	Rodolfo Giometti <giometti@enneenne.com>
11661W:	http://wiki.enneenne.com/index.php/LinuxPPS_support
11662L:	linuxpps@ml.enneenne.com (subscribers-only)
11663S:	Maintained
11664F:	Documentation/pps/
11665F:	Documentation/devicetree/bindings/pps/pps-gpio.txt
11666F:	Documentation/ABI/testing/sysfs-pps
11667F:	drivers/pps/
11668F:	include/linux/pps*.h
11669F:	include/uapi/linux/pps.h
11670
11671PPTP DRIVER
11672M:	Dmitry Kozlov <xeb@mail.ru>
11673L:	netdev@vger.kernel.org
11674S:	Maintained
11675F:	drivers/net/ppp/pptp.c
11676W:	http://sourceforge.net/projects/accel-pptp
11677
11678PREEMPTIBLE KERNEL
11679M:	Robert Love <rml@tech9.net>
11680L:	kpreempt-tech@lists.sourceforge.net
11681W:	https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
11682S:	Supported
11683F:	Documentation/preempt-locking.txt
11684F:	include/linux/preempt.h
11685
11686PRINTK
11687M:	Petr Mladek <pmladek@suse.com>
11688M:	Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
11689R:	Steven Rostedt <rostedt@goodmis.org>
11690S:	Maintained
11691F:	kernel/printk/
11692F:	include/linux/printk.h
11693
11694PRISM54 WIRELESS DRIVER
11695M:	"Luis R. Rodriguez" <mcgrof@gmail.com>
11696L:	linux-wireless@vger.kernel.org
11697W:	http://wireless.kernel.org/en/users/Drivers/p54
11698S:	Obsolete
11699F:	drivers/net/wireless/intersil/prism54/
11700
11701PROC FILESYSTEM
11702R:	Alexey Dobriyan <adobriyan@gmail.com>
11703L:	linux-kernel@vger.kernel.org
11704L:	linux-fsdevel@vger.kernel.org
11705S:	Maintained
11706F:	fs/proc/
11707F:	include/linux/proc_fs.h
11708F:	tools/testing/selftests/proc/
11709
11710PROC SYSCTL
11711M:	"Luis R. Rodriguez" <mcgrof@kernel.org>
11712M:	Kees Cook <keescook@chromium.org>
11713L:	linux-kernel@vger.kernel.org
11714L:	linux-fsdevel@vger.kernel.org
11715S:	Maintained
11716F:	fs/proc/proc_sysctl.c
11717F:	include/linux/sysctl.h
11718F:	kernel/sysctl.c
11719F:	tools/testing/selftests/sysctl/
11720
11721PS3 NETWORK SUPPORT
11722M:	Geoff Levand <geoff@infradead.org>
11723L:	netdev@vger.kernel.org
11724L:	linuxppc-dev@lists.ozlabs.org
11725S:	Maintained
11726F:	drivers/net/ethernet/toshiba/ps3_gelic_net.*
11727
11728PS3 PLATFORM SUPPORT
11729M:	Geoff Levand <geoff@infradead.org>
11730L:	linuxppc-dev@lists.ozlabs.org
11731S:	Maintained
11732F:	arch/powerpc/boot/ps3*
11733F:	arch/powerpc/include/asm/lv1call.h
11734F:	arch/powerpc/include/asm/ps3*.h
11735F:	arch/powerpc/platforms/ps3/
11736F:	drivers/*/ps3*
11737F:	drivers/ps3/
11738F:	drivers/rtc/rtc-ps3.c
11739F:	drivers/usb/host/*ps3.c
11740F:	sound/ppc/snd_ps3*
11741
11742PS3VRAM DRIVER
11743M:	Jim Paris <jim@jtan.com>
11744M:	Geoff Levand <geoff@infradead.org>
11745L:	linuxppc-dev@lists.ozlabs.org
11746S:	Maintained
11747F:	drivers/block/ps3vram.c
11748
11749PSAMPLE PACKET SAMPLING SUPPORT:
11750M:	Yotam Gigi <yotam.gi@gmail.com>
11751S:	Maintained
11752F:	net/psample
11753F:	include/net/psample.h
11754F:	include/uapi/linux/psample.h
11755
11756PSTORE FILESYSTEM
11757M:	Kees Cook <keescook@chromium.org>
11758M:	Anton Vorontsov <anton@enomsg.org>
11759M:	Colin Cross <ccross@android.com>
11760M:	Tony Luck <tony.luck@intel.com>
11761S:	Maintained
11762T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
11763F:	fs/pstore/
11764F:	include/linux/pstore*
11765F:	drivers/firmware/efi/efi-pstore.c
11766F:	drivers/acpi/apei/erst.c
11767F:	Documentation/admin-guide/ramoops.rst
11768F:	Documentation/devicetree/bindings/reserved-memory/ramoops.txt
11769K:	\b(pstore|ramoops)
11770
11771PTP HARDWARE CLOCK SUPPORT
11772M:	Richard Cochran <richardcochran@gmail.com>
11773L:	netdev@vger.kernel.org
11774S:	Maintained
11775W:	http://linuxptp.sourceforge.net/
11776F:	Documentation/ABI/testing/sysfs-ptp
11777F:	Documentation/ptp/*
11778F:	drivers/net/phy/dp83640*
11779F:	drivers/ptp/*
11780F:	include/linux/ptp_cl*
11781
11782PTRACE SUPPORT
11783M:	Oleg Nesterov <oleg@redhat.com>
11784S:	Maintained
11785F:	include/asm-generic/syscall.h
11786F:	include/linux/ptrace.h
11787F:	include/linux/regset.h
11788F:	include/linux/tracehook.h
11789F:	include/uapi/linux/ptrace.h
11790F:	include/uapi/linux/ptrace.h
11791F:	include/asm-generic/ptrace.h
11792F:	kernel/ptrace.c
11793F:	arch/*/ptrace*.c
11794F:	arch/*/*/ptrace*.c
11795F:	arch/*/include/asm/ptrace*.h
11796
11797PULSE8-CEC DRIVER
11798M:	Hans Verkuil <hverkuil@xs4all.nl>
11799L:	linux-media@vger.kernel.org
11800T:	git git://linuxtv.org/media_tree.git
11801S:	Maintained
11802F:	drivers/media/usb/pulse8-cec/*
11803F:	Documentation/media/cec-drivers/pulse8-cec.rst
11804
11805PVRUSB2 VIDEO4LINUX DRIVER
11806M:	Mike Isely <isely@pobox.com>
11807L:	pvrusb2@isely.net	(subscribers-only)
11808L:	linux-media@vger.kernel.org
11809W:	http://www.isely.net/pvrusb2/
11810T:	git git://linuxtv.org/media_tree.git
11811S:	Maintained
11812F:	Documentation/media/v4l-drivers/pvrusb2*
11813F:	drivers/media/usb/pvrusb2/
11814
11815PWC WEBCAM DRIVER
11816M:	Hans Verkuil <hverkuil@xs4all.nl>
11817L:	linux-media@vger.kernel.org
11818T:	git git://linuxtv.org/media_tree.git
11819S:	Odd Fixes
11820F:	drivers/media/usb/pwc/*
11821
11822PWM FAN DRIVER
11823M:	Kamil Debski <kamil@wypas.org>
11824M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11825L:	linux-hwmon@vger.kernel.org
11826S:	Supported
11827F:	Documentation/devicetree/bindings/hwmon/pwm-fan.txt
11828F:	Documentation/hwmon/pwm-fan
11829F:	drivers/hwmon/pwm-fan.c
11830
11831PWM IR Transmitter
11832M:	Sean Young <sean@mess.org>
11833L:	linux-media@vger.kernel.org
11834S:	Maintained
11835F:	drivers/media/rc/pwm-ir-tx.c
11836
11837PWM SUBSYSTEM
11838M:	Thierry Reding <thierry.reding@gmail.com>
11839L:	linux-pwm@vger.kernel.org
11840S:	Maintained
11841T:	git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
11842F:	Documentation/pwm.txt
11843F:	Documentation/devicetree/bindings/pwm/
11844F:	include/linux/pwm.h
11845F:	drivers/pwm/
11846F:	drivers/video/backlight/pwm_bl.c
11847F:	include/linux/pwm_backlight.h
11848F:	drivers/gpio/gpio-mvebu.c
11849F:	Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
11850
11851PXA GPIO DRIVER
11852M:	Robert Jarzmik <robert.jarzmik@free.fr>
11853L:	linux-gpio@vger.kernel.org
11854S:	Maintained
11855F:	drivers/gpio/gpio-pxa.c
11856
11857PXA MMCI DRIVER
11858S:	Orphan
11859
11860PXA RTC DRIVER
11861M:	Robert Jarzmik <robert.jarzmik@free.fr>
11862L:	linux-rtc@vger.kernel.org
11863S:	Maintained
11864
11865PXA2xx/PXA3xx SUPPORT
11866M:	Daniel Mack <daniel@zonque.org>
11867M:	Haojian Zhuang <haojian.zhuang@gmail.com>
11868M:	Robert Jarzmik <robert.jarzmik@free.fr>
11869L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11870T:	git git://github.com/hzhuang1/linux.git
11871T:	git git://github.com/rjarzmik/linux.git
11872S:	Maintained
11873F:	arch/arm/boot/dts/pxa*
11874F:	arch/arm/mach-pxa/
11875F:	drivers/dma/pxa*
11876F:	drivers/pcmcia/pxa2xx*
11877F:	drivers/pinctrl/pxa/
11878F:	drivers/spi/spi-pxa2xx*
11879F:	drivers/usb/gadget/udc/pxa2*
11880F:	include/sound/pxa2xx-lib.h
11881F:	sound/arm/pxa*
11882F:	sound/soc/pxa/
11883
11884QAT DRIVER
11885M:	Giovanni Cabiddu <giovanni.cabiddu@intel.com>
11886L:	qat-linux@intel.com
11887S:	Supported
11888F:	drivers/crypto/qat/
11889
11890QCOM AUDIO (ASoC) DRIVERS
11891M:	Patrick Lai <plai@codeaurora.org>
11892M:	Banajit Goswami <bgoswami@codeaurora.org>
11893L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
11894S:	Supported
11895F:	sound/soc/qcom/
11896
11897QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
11898M:	Gabriel Somlo <somlo@cmu.edu>
11899M:	"Michael S. Tsirkin" <mst@redhat.com>
11900L:	qemu-devel@nongnu.org
11901S:	Maintained
11902F:	drivers/firmware/qemu_fw_cfg.c
11903F:	include/uapi/linux/qemu_fw_cfg.h
11904
11905QIB DRIVER
11906M:	Dennis Dalessandro <dennis.dalessandro@intel.com>
11907M:	Mike Marciniszyn <mike.marciniszyn@intel.com>
11908L:	linux-rdma@vger.kernel.org
11909S:	Supported
11910F:	drivers/infiniband/hw/qib/
11911
11912QLOGIC QL41xxx FCOE DRIVER
11913M:	QLogic-Storage-Upstream@cavium.com
11914L:	linux-scsi@vger.kernel.org
11915S:	Supported
11916F:	drivers/scsi/qedf/
11917
11918QLOGIC QL41xxx ISCSI DRIVER
11919M:	QLogic-Storage-Upstream@cavium.com
11920L:	linux-scsi@vger.kernel.org
11921S:	Supported
11922F:	drivers/scsi/qedi/
11923
11924QLOGIC QL4xxx ETHERNET DRIVER
11925M:	Ariel Elior <Ariel.Elior@cavium.com>
11926M:	everest-linux-l2@cavium.com
11927L:	netdev@vger.kernel.org
11928S:	Supported
11929F:	drivers/net/ethernet/qlogic/qed/
11930F:	include/linux/qed/
11931F:	drivers/net/ethernet/qlogic/qede/
11932
11933QLOGIC QL4xxx RDMA DRIVER
11934M:	Michal Kalderon <Michal.Kalderon@cavium.com>
11935M:	Ariel Elior <Ariel.Elior@cavium.com>
11936L:	linux-rdma@vger.kernel.org
11937S:	Supported
11938F:	drivers/infiniband/hw/qedr/
11939F:	include/uapi/rdma/qedr-abi.h
11940
11941QLOGIC QLA1280 SCSI DRIVER
11942M:	Michael Reed <mdr@sgi.com>
11943L:	linux-scsi@vger.kernel.org
11944S:	Maintained
11945F:	drivers/scsi/qla1280.[ch]
11946
11947QLOGIC QLA2XXX FC-SCSI DRIVER
11948M:	qla2xxx-upstream@qlogic.com
11949L:	linux-scsi@vger.kernel.org
11950S:	Supported
11951F:	Documentation/scsi/LICENSE.qla2xxx
11952F:	drivers/scsi/qla2xxx/
11953
11954QLOGIC QLA3XXX NETWORK DRIVER
11955M:	Dept-GELinuxNICDev@cavium.com
11956L:	netdev@vger.kernel.org
11957S:	Supported
11958F:	Documentation/networking/LICENSE.qla3xxx
11959F:	drivers/net/ethernet/qlogic/qla3xxx.*
11960
11961QLOGIC QLA4XXX iSCSI DRIVER
11962M:	QLogic-Storage-Upstream@qlogic.com
11963L:	linux-scsi@vger.kernel.org
11964S:	Supported
11965F:	Documentation/scsi/LICENSE.qla4xxx
11966F:	drivers/scsi/qla4xxx/
11967
11968QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
11969M:	Harish Patil <harish.patil@cavium.com>
11970M:	Manish Chopra <manish.chopra@cavium.com>
11971M:	Dept-GELinuxNICDev@cavium.com
11972L:	netdev@vger.kernel.org
11973S:	Supported
11974F:	drivers/net/ethernet/qlogic/qlcnic/
11975
11976QLOGIC QLGE 10Gb ETHERNET DRIVER
11977M:	Harish Patil <harish.patil@cavium.com>
11978M:	Manish Chopra <manish.chopra@cavium.com>
11979M:	Dept-GELinuxNICDev@cavium.com
11980L:	netdev@vger.kernel.org
11981S:	Supported
11982F:	drivers/net/ethernet/qlogic/qlge/
11983
11984QM1D1B0004 MEDIA DRIVER
11985M:	Akihiro Tsukada <tskd08@gmail.com>
11986L:	linux-media@vger.kernel.org
11987S:	Odd Fixes
11988F:	drivers/media/tuners/qm1d1b0004*
11989
11990QM1D1C0042 MEDIA DRIVER
11991M:	Akihiro Tsukada <tskd08@gmail.com>
11992L:	linux-media@vger.kernel.org
11993S:	Odd Fixes
11994F:	drivers/media/tuners/qm1d1c0042*
11995
11996QNX4 FILESYSTEM
11997M:	Anders Larsen <al@alarsen.net>
11998W:	http://www.alarsen.net/linux/qnx4fs/
11999S:	Maintained
12000F:	fs/qnx4/
12001F:	include/uapi/linux/qnx4_fs.h
12002F:	include/uapi/linux/qnxtypes.h
12003
12004QORIQ DPAA2 FSL-MC BUS DRIVER
12005M:	Stuart Yoder <stuyoder@gmail.com>
12006M:	Laurentiu Tudor <laurentiu.tudor@nxp.com>
12007L:	linux-kernel@vger.kernel.org
12008S:	Maintained
12009F:	drivers/bus/fsl-mc/
12010F:	Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
12011F:	Documentation/networking/dpaa2/overview.rst
12012
12013QT1010 MEDIA DRIVER
12014M:	Antti Palosaari <crope@iki.fi>
12015L:	linux-media@vger.kernel.org
12016W:	https://linuxtv.org
12017W:	http://palosaari.fi/linux/
12018Q:	http://patchwork.linuxtv.org/project/linux-media/list/
12019T:	git git://linuxtv.org/anttip/media_tree.git
12020S:	Maintained
12021F:	drivers/media/tuners/qt1010*
12022
12023QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
12024M:	Kalle Valo <kvalo@codeaurora.org>
12025L:	ath10k@lists.infradead.org
12026W:	http://wireless.kernel.org/en/users/Drivers/ath10k
12027T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
12028S:	Supported
12029F:	drivers/net/wireless/ath/ath10k/
12030
12031QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
12032M:	QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
12033L:	linux-wireless@vger.kernel.org
12034W:	http://wireless.kernel.org/en/users/Drivers/ath9k
12035S:	Supported
12036F:	drivers/net/wireless/ath/ath9k/
12037
12038QUALCOMM CAMERA SUBSYSTEM DRIVER
12039M:	Todor Tomov <todor.tomov@linaro.org>
12040L:	linux-media@vger.kernel.org
12041S:	Maintained
12042F:	Documentation/devicetree/bindings/media/qcom,camss.txt
12043F:	Documentation/media/v4l-drivers/qcom_camss.rst
12044F:	drivers/media/platform/qcom/camss/
12045
12046QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
12047M:  Ilia Lin <ilia.lin@gmail.com>
12048L:  linux-pm@vger.kernel.org
12049S:  Maintained
12050F:  Documentation/devicetree/bindings/opp/kryo-cpufreq.txt
12051F:  drivers/cpufreq/qcom-cpufreq-kryo.c
12052
12053QUALCOMM EMAC GIGABIT ETHERNET DRIVER
12054M:	Timur Tabi <timur@kernel.org>
12055L:	netdev@vger.kernel.org
12056S:	Maintained
12057F:	drivers/net/ethernet/qualcomm/emac/
12058
12059QUALCOMM GENERIC INTERFACE I2C DRIVER
12060M:	Alok Chauhan <alokc@codeaurora.org>
12061M:	Karthikeyan Ramasubramanian <kramasub@codeaurora.org>
12062L:	linux-i2c@vger.kernel.org
12063L:	linux-arm-msm@vger.kernel.org
12064S:	Supported
12065F:	drivers/i2c/busses/i2c-qcom-geni.c
12066
12067QUALCOMM HEXAGON ARCHITECTURE
12068M:	Richard Kuo <rkuo@codeaurora.org>
12069L:	linux-hexagon@vger.kernel.org
12070T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
12071S:	Supported
12072F:	arch/hexagon/
12073
12074QUALCOMM HIDMA DRIVER
12075M:	Sinan Kaya <okaya@kernel.org>
12076L:	linux-arm-kernel@lists.infradead.org
12077L:	linux-arm-msm@vger.kernel.org
12078L:	dmaengine@vger.kernel.org
12079S:	Supported
12080F:	drivers/dma/qcom/hidma*
12081
12082QUALCOMM IOMMU
12083M:	Rob Clark <robdclark@gmail.com>
12084L:	iommu@lists.linux-foundation.org
12085L:	linux-arm-msm@vger.kernel.org
12086S:	Maintained
12087F:	drivers/iommu/qcom_iommu.c
12088
12089QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
12090M:	Stanimir Varbanov <stanimir.varbanov@linaro.org>
12091L:	linux-media@vger.kernel.org
12092L:	linux-arm-msm@vger.kernel.org
12093T:	git git://linuxtv.org/media_tree.git
12094S:	Maintained
12095F:	drivers/media/platform/qcom/venus/
12096
12097QUALCOMM WCN36XX WIRELESS DRIVER
12098M:	Kalle Valo <kvalo@codeaurora.org>
12099L:	wcn36xx@lists.infradead.org
12100W:	http://wireless.kernel.org/en/users/Drivers/wcn36xx
12101T:	git git://github.com/KrasnikovEugene/wcn36xx.git
12102S:	Supported
12103F:	drivers/net/wireless/ath/wcn36xx/
12104
12105QUANTENNA QTNFMAC WIRELESS DRIVER
12106M:	Igor Mitsyanko <imitsyanko@quantenna.com>
12107M:	Avinash Patil <avinashp@quantenna.com>
12108M:	Sergey Matyukevich <smatyukevich@quantenna.com>
12109L:	linux-wireless@vger.kernel.org
12110S:	Maintained
12111F:	drivers/net/wireless/quantenna
12112
12113RADEON and AMDGPU DRM DRIVERS
12114M:	Alex Deucher <alexander.deucher@amd.com>
12115M:	Christian König <christian.koenig@amd.com>
12116M:	David (ChunMing) Zhou <David1.Zhou@amd.com>
12117L:	amd-gfx@lists.freedesktop.org
12118T:	git git://people.freedesktop.org/~agd5f/linux
12119S:	Supported
12120F:	drivers/gpu/drm/radeon/
12121F:	include/uapi/drm/radeon_drm.h
12122F:	drivers/gpu/drm/amd/
12123F:	include/uapi/drm/amdgpu_drm.h
12124
12125RADEON FRAMEBUFFER DISPLAY DRIVER
12126M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
12127L:	linux-fbdev@vger.kernel.org
12128S:	Maintained
12129F:	drivers/video/fbdev/aty/radeon*
12130F:	include/uapi/linux/radeonfb.h
12131
12132RADIOSHARK RADIO DRIVER
12133M:	Hans Verkuil <hverkuil@xs4all.nl>
12134L:	linux-media@vger.kernel.org
12135T:	git git://linuxtv.org/media_tree.git
12136S:	Maintained
12137F:	drivers/media/radio/radio-shark.c
12138
12139RADIOSHARK2 RADIO DRIVER
12140M:	Hans Verkuil <hverkuil@xs4all.nl>
12141L:	linux-media@vger.kernel.org
12142T:	git git://linuxtv.org/media_tree.git
12143S:	Maintained
12144F:	drivers/media/radio/radio-shark2.c
12145F:	drivers/media/radio/radio-tea5777.c
12146
12147RADOS BLOCK DEVICE (RBD)
12148M:	Ilya Dryomov <idryomov@gmail.com>
12149M:	Sage Weil <sage@redhat.com>
12150M:	Alex Elder <elder@kernel.org>
12151L:	ceph-devel@vger.kernel.org
12152W:	http://ceph.com/
12153T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
12154T:	git git://github.com/ceph/ceph-client.git
12155S:	Supported
12156F:	Documentation/ABI/testing/sysfs-bus-rbd
12157F:	drivers/block/rbd.c
12158F:	drivers/block/rbd_types.h
12159
12160RAGE128 FRAMEBUFFER DISPLAY DRIVER
12161M:	Paul Mackerras <paulus@samba.org>
12162L:	linux-fbdev@vger.kernel.org
12163S:	Maintained
12164F:	drivers/video/fbdev/aty/aty128fb.c
12165
12166RAINSHADOW-CEC DRIVER
12167M:	Hans Verkuil <hverkuil@xs4all.nl>
12168L:	linux-media@vger.kernel.org
12169T:	git git://linuxtv.org/media_tree.git
12170S:	Maintained
12171F:	drivers/media/usb/rainshadow-cec/*
12172
12173RALINK MIPS ARCHITECTURE
12174M:	John Crispin <john@phrozen.org>
12175L:	linux-mips@linux-mips.org
12176S:	Maintained
12177F:	arch/mips/ralink
12178
12179RALINK RT2X00 WIRELESS LAN DRIVER
12180P:	rt2x00 project
12181M:	Stanislaw Gruszka <sgruszka@redhat.com>
12182M:	Helmut Schaa <helmut.schaa@googlemail.com>
12183L:	linux-wireless@vger.kernel.org
12184S:	Maintained
12185F:	drivers/net/wireless/ralink/rt2x00/
12186
12187RAMDISK RAM BLOCK DEVICE DRIVER
12188M:	Jens Axboe <axboe@kernel.dk>
12189S:	Maintained
12190F:	Documentation/blockdev/ramdisk.txt
12191F:	drivers/block/brd.c
12192
12193RANCHU VIRTUAL BOARD FOR MIPS
12194M:	Miodrag Dinic <miodrag.dinic@mips.com>
12195L:	linux-mips@linux-mips.org
12196S:	Supported
12197F:	arch/mips/generic/board-ranchu.c
12198F:	arch/mips/configs/generic/board-ranchu.config
12199
12200RANDOM NUMBER DRIVER
12201M:	"Theodore Ts'o" <tytso@mit.edu>
12202S:	Maintained
12203F:	drivers/char/random.c
12204
12205RAPIDIO SUBSYSTEM
12206M:	Matt Porter <mporter@kernel.crashing.org>
12207M:	Alexandre Bounine <alex.bou9@gmail.com>
12208S:	Maintained
12209F:	drivers/rapidio/
12210
12211RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
12212L:	linux-wireless@vger.kernel.org
12213S:	Orphan
12214F:	drivers/net/wireless/ray*
12215
12216RCUTORTURE TEST FRAMEWORK
12217M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12218M:	Josh Triplett <josh@joshtriplett.org>
12219R:	Steven Rostedt <rostedt@goodmis.org>
12220R:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12221R:	Lai Jiangshan <jiangshanlai@gmail.com>
12222L:	linux-kernel@vger.kernel.org
12223S:	Supported
12224T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12225F:	tools/testing/selftests/rcutorture
12226
12227RDC R-321X SoC
12228M:	Florian Fainelli <florian@openwrt.org>
12229S:	Maintained
12230
12231RDC R6040 FAST ETHERNET DRIVER
12232M:	Florian Fainelli <f.fainelli@gmail.com>
12233L:	netdev@vger.kernel.org
12234S:	Maintained
12235F:	drivers/net/ethernet/rdc/r6040.c
12236
12237RDMAVT - RDMA verbs software
12238M:	Dennis Dalessandro <dennis.dalessandro@intel.com>
12239M:	Mike Marciniszyn <mike.marciniszyn@intel.com>
12240L:	linux-rdma@vger.kernel.org
12241S:	Supported
12242F:	drivers/infiniband/sw/rdmavt
12243
12244RDS - RELIABLE DATAGRAM SOCKETS
12245M:	Santosh Shilimkar <santosh.shilimkar@oracle.com>
12246L:	netdev@vger.kernel.org
12247L:	linux-rdma@vger.kernel.org
12248L:	rds-devel@oss.oracle.com (moderated for non-subscribers)
12249W:	https://oss.oracle.com/projects/rds/
12250S:	Supported
12251F:	net/rds/
12252F:	Documentation/networking/rds.txt
12253
12254RDT - RESOURCE ALLOCATION
12255M:	Fenghua Yu <fenghua.yu@intel.com>
12256L:	linux-kernel@vger.kernel.org
12257S:	Supported
12258F:	arch/x86/kernel/cpu/intel_rdt*
12259F:	arch/x86/include/asm/intel_rdt_sched.h
12260F:	Documentation/x86/intel_rdt*
12261
12262READ-COPY UPDATE (RCU)
12263M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12264M:	Josh Triplett <josh@joshtriplett.org>
12265R:	Steven Rostedt <rostedt@goodmis.org>
12266R:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12267R:	Lai Jiangshan <jiangshanlai@gmail.com>
12268L:	linux-kernel@vger.kernel.org
12269W:	http://www.rdrop.com/users/paulmck/RCU/
12270S:	Supported
12271T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12272F:	Documentation/RCU/
12273X:	Documentation/RCU/torture.txt
12274F:	include/linux/rcu*
12275X:	include/linux/srcu*.h
12276F:	kernel/rcu/
12277X:	kernel/rcu/srcu*.c
12278
12279REAL TIME CLOCK (RTC) SUBSYSTEM
12280M:	Alessandro Zummo <a.zummo@towertech.it>
12281M:	Alexandre Belloni <alexandre.belloni@bootlin.com>
12282L:	linux-rtc@vger.kernel.org
12283Q:	http://patchwork.ozlabs.org/project/rtc-linux/list/
12284T:	git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
12285S:	Maintained
12286F:	Documentation/devicetree/bindings/rtc/
12287F:	Documentation/rtc.txt
12288F:	drivers/rtc/
12289F:	include/linux/rtc.h
12290F:	include/uapi/linux/rtc.h
12291F:	include/linux/rtc/
12292F:	include/linux/platform_data/rtc-*
12293F:	tools/testing/selftests/rtc/
12294
12295REALTEK AUDIO CODECS
12296M:	Bard Liao <bardliao@realtek.com>
12297M:	Oder Chiou <oder_chiou@realtek.com>
12298S:	Maintained
12299F:	sound/soc/codecs/rt*
12300F:	include/sound/rt*.h
12301
12302REALTEK RTL83xx SMI DSA ROUTER CHIPS
12303M:	Linus Walleij <linus.walleij@linaro.org>
12304S:	Maintained
12305F:	Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
12306F:	drivers/net/dsa/realtek-smi*
12307F:	drivers/net/dsa/rtl83*
12308
12309REGISTER MAP ABSTRACTION
12310M:	Mark Brown <broonie@kernel.org>
12311L:	linux-kernel@vger.kernel.org
12312T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
12313S:	Supported
12314F:	Documentation/devicetree/bindings/regmap/
12315F:	drivers/base/regmap/
12316F:	include/linux/regmap.h
12317
12318REISERFS FILE SYSTEM
12319L:	reiserfs-devel@vger.kernel.org
12320S:	Supported
12321F:	fs/reiserfs/
12322
12323REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
12324M:	Ohad Ben-Cohen <ohad@wizery.com>
12325M:	Bjorn Andersson <bjorn.andersson@linaro.org>
12326L:	linux-remoteproc@vger.kernel.org
12327T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
12328S:	Maintained
12329F:	Documentation/devicetree/bindings/remoteproc/
12330F:	Documentation/remoteproc.txt
12331F:	drivers/remoteproc/
12332F:	include/linux/remoteproc.h
12333
12334REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
12335M:	Ohad Ben-Cohen <ohad@wizery.com>
12336M:	Bjorn Andersson <bjorn.andersson@linaro.org>
12337L:	linux-remoteproc@vger.kernel.org
12338T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
12339S:	Maintained
12340F:	drivers/rpmsg/
12341F:	Documentation/rpmsg.txt
12342F:	include/linux/rpmsg.h
12343F:	include/linux/rpmsg/
12344
12345RENESAS CLOCK DRIVERS
12346M:	Geert Uytterhoeven <geert+renesas@glider.be>
12347L:	linux-renesas-soc@vger.kernel.org
12348T:	git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
12349S:	Supported
12350F:	drivers/clk/renesas/
12351
12352RENESAS EMEV2 I2C DRIVER
12353M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
12354S:	Supported
12355F:	drivers/i2c/busses/i2c-emev2.c
12356
12357RENESAS ETHERNET DRIVERS
12358R:	Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
12359L:	netdev@vger.kernel.org
12360L:	linux-renesas-soc@vger.kernel.org
12361F:	Documentation/devicetree/bindings/net/renesas,*.txt
12362F:	Documentation/devicetree/bindings/net/sh_eth.txt
12363F:	drivers/net/ethernet/renesas/
12364F:	include/linux/sh_eth.h
12365
12366RENESAS R-CAR GYROADC DRIVER
12367M:	Marek Vasut <marek.vasut@gmail.com>
12368L:	linux-iio@vger.kernel.org
12369S:	Supported
12370F:	drivers/iio/adc/rcar_gyro_adc.c
12371
12372RENESAS R-CAR I2C DRIVERS
12373M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
12374S:	Supported
12375F:	drivers/i2c/busses/i2c-rcar.c
12376F:	drivers/i2c/busses/i2c-sh_mobile.c
12377
12378RENESAS USB PHY DRIVER
12379M:	Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
12380L:	linux-renesas-soc@vger.kernel.org
12381S:	Maintained
12382F:	drivers/phy/renesas/phy-rcar-gen3-usb*.c
12383
12384RESET CONTROLLER FRAMEWORK
12385M:	Philipp Zabel <p.zabel@pengutronix.de>
12386T:	git git://git.pengutronix.de/git/pza/linux
12387S:	Maintained
12388F:	drivers/reset/
12389F:	Documentation/devicetree/bindings/reset/
12390F:	include/dt-bindings/reset/
12391F:	include/linux/reset.h
12392F:	include/linux/reset-controller.h
12393
12394RESTARTABLE SEQUENCES SUPPORT
12395M:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12396M:	Peter Zijlstra <peterz@infradead.org>
12397M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12398M:	Boqun Feng <boqun.feng@gmail.com>
12399L:	linux-kernel@vger.kernel.org
12400S:	Supported
12401F:	kernel/rseq.c
12402F:	include/uapi/linux/rseq.h
12403F:	include/trace/events/rseq.h
12404F:	tools/testing/selftests/rseq/
12405
12406RFKILL
12407M:	Johannes Berg <johannes@sipsolutions.net>
12408L:	linux-wireless@vger.kernel.org
12409W:	http://wireless.kernel.org/
12410T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
12411T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
12412S:	Maintained
12413F:	Documentation/rfkill.txt
12414F:	Documentation/ABI/stable/sysfs-class-rfkill
12415F:	net/rfkill/
12416F:	include/linux/rfkill.h
12417F:	include/uapi/linux/rfkill.h
12418
12419RHASHTABLE
12420M:	Thomas Graf <tgraf@suug.ch>
12421M:	Herbert Xu <herbert@gondor.apana.org.au>
12422L:	netdev@vger.kernel.org
12423S:	Maintained
12424F:	lib/rhashtable.c
12425F:	lib/test_rhashtable.c
12426F:	include/linux/rhashtable.h
12427F:	include/linux/rhashtable-types.h
12428
12429RICOH R5C592 MEMORYSTICK DRIVER
12430M:	Maxim Levitsky <maximlevitsky@gmail.com>
12431S:	Maintained
12432F:	drivers/memstick/host/r592.*
12433
12434RICOH SMARTMEDIA/XD DRIVER
12435M:	Maxim Levitsky <maximlevitsky@gmail.com>
12436S:	Maintained
12437F:	drivers/mtd/nand/raw/r852.c
12438F:	drivers/mtd/nand/raw/r852.h
12439
12440RISC-V ARCHITECTURE
12441M:	Palmer Dabbelt <palmer@sifive.com>
12442M:	Albert Ou <aou@eecs.berkeley.edu>
12443L:	linux-riscv@lists.infradead.org
12444T:	git git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git
12445S:	Supported
12446F:	arch/riscv/
12447K:	riscv
12448N:	riscv
12449
12450ROCCAT DRIVERS
12451M:	Stefan Achatz <erazor_de@users.sourceforge.net>
12452W:	http://sourceforge.net/projects/roccat/
12453S:	Maintained
12454F:	drivers/hid/hid-roccat*
12455F:	include/linux/hid-roccat*
12456F:	Documentation/ABI/*/sysfs-driver-hid-roccat*
12457
12458ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
12459M:	Jacob chen <jacob2.chen@rock-chips.com>
12460L:	linux-media@vger.kernel.org
12461S:	Maintained
12462F:	drivers/media/platform/rockchip/rga/
12463F:	Documentation/devicetree/bindings/media/rockchip-rga.txt
12464
12465ROCKER DRIVER
12466M:	Jiri Pirko <jiri@resnulli.us>
12467L:	netdev@vger.kernel.org
12468S:	Supported
12469F:	drivers/net/ethernet/rocker/
12470
12471ROCKETPORT DRIVER
12472P:	Comtrol Corp.
12473W:	http://www.comtrol.com
12474S:	Maintained
12475F:	Documentation/serial/rocket.txt
12476F:	drivers/tty/rocket*
12477
12478ROCKETPORT EXPRESS/INFINITY DRIVER
12479M:	Kevin Cernekee <cernekee@gmail.com>
12480L:	linux-serial@vger.kernel.org
12481S:	Odd Fixes
12482F:	drivers/tty/serial/rp2.*
12483
12484ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
12485M:	Marek Vasut <marek.vasut+renesas@gmail.com>
12486L:	linux-kernel@vger.kernel.org
12487L:	linux-renesas-soc@vger.kernel.org
12488S:	Supported
12489F:	drivers/mfd/bd9571mwv.c
12490F:	drivers/regulator/bd9571mwv-regulator.c
12491F:	drivers/gpio/gpio-bd9571mwv.c
12492F:	include/linux/mfd/bd9571mwv.h
12493F:	Documentation/devicetree/bindings/mfd/bd9571mwv.txt
12494
12495ROSE NETWORK LAYER
12496M:	Ralf Baechle <ralf@linux-mips.org>
12497L:	linux-hams@vger.kernel.org
12498W:	http://www.linux-ax25.org/
12499S:	Maintained
12500F:	include/net/rose.h
12501F:	include/uapi/linux/rose.h
12502F:	net/rose/
12503
12504RTL2830 MEDIA DRIVER
12505M:	Antti Palosaari <crope@iki.fi>
12506L:	linux-media@vger.kernel.org
12507W:	https://linuxtv.org
12508W:	http://palosaari.fi/linux/
12509Q:	http://patchwork.linuxtv.org/project/linux-media/list/
12510T:	git git://linuxtv.org/anttip/media_tree.git
12511S:	Maintained
12512F:	drivers/media/dvb-frontends/rtl2830*
12513
12514RTL2832 MEDIA DRIVER
12515M:	Antti Palosaari <crope@iki.fi>
12516L:	linux-media@vger.kernel.org
12517W:	https://linuxtv.org
12518W:	http://palosaari.fi/linux/
12519Q:	http://patchwork.linuxtv.org/project/linux-media/list/
12520T:	git git://linuxtv.org/anttip/media_tree.git
12521S:	Maintained
12522F:	drivers/media/dvb-frontends/rtl2832*
12523
12524RTL2832_SDR MEDIA DRIVER
12525M:	Antti Palosaari <crope@iki.fi>
12526L:	linux-media@vger.kernel.org
12527W:	https://linuxtv.org
12528W:	http://palosaari.fi/linux/
12529Q:	http://patchwork.linuxtv.org/project/linux-media/list/
12530T:	git git://linuxtv.org/anttip/media_tree.git
12531S:	Maintained
12532F:	drivers/media/dvb-frontends/rtl2832_sdr*
12533
12534RTL8180 WIRELESS DRIVER
12535L:	linux-wireless@vger.kernel.org
12536W:	http://wireless.kernel.org/
12537T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
12538S:	Orphan
12539F:	drivers/net/wireless/realtek/rtl818x/rtl8180/
12540
12541RTL8187 WIRELESS DRIVER
12542M:	Herton Ronaldo Krzesinski <herton@canonical.com>
12543M:	Hin-Tak Leung <htl10@users.sourceforge.net>
12544M:	Larry Finger <Larry.Finger@lwfinger.net>
12545L:	linux-wireless@vger.kernel.org
12546W:	http://wireless.kernel.org/
12547T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
12548S:	Maintained
12549F:	drivers/net/wireless/realtek/rtl818x/rtl8187/
12550
12551REALTEK WIRELESS DRIVER (rtlwifi family)
12552M:	Ping-Ke Shih <pkshih@realtek.com>
12553L:	linux-wireless@vger.kernel.org
12554W:	http://wireless.kernel.org/
12555T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
12556S:	Maintained
12557F:	drivers/net/wireless/realtek/rtlwifi/
12558
12559RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
12560M:	Jes Sorensen <Jes.Sorensen@gmail.com>
12561L:	linux-wireless@vger.kernel.org
12562T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
12563S:	Maintained
12564F:	drivers/net/wireless/realtek/rtl8xxxu/
12565
12566RXRPC SOCKETS (AF_RXRPC)
12567M:	David Howells <dhowells@redhat.com>
12568L:	linux-afs@lists.infradead.org
12569S:	Supported
12570F:	net/rxrpc/
12571F:	include/keys/rxrpc-type.h
12572F:	include/net/af_rxrpc.h
12573F:	include/trace/events/rxrpc.h
12574F:	include/uapi/linux/rxrpc.h
12575F:	Documentation/networking/rxrpc.txt
12576W:	https://www.infradead.org/~dhowells/kafs/
12577
12578S3 SAVAGE FRAMEBUFFER DRIVER
12579M:	Antonino Daplas <adaplas@gmail.com>
12580L:	linux-fbdev@vger.kernel.org
12581S:	Maintained
12582F:	drivers/video/fbdev/savage/
12583
12584S390
12585M:	Martin Schwidefsky <schwidefsky@de.ibm.com>
12586M:	Heiko Carstens <heiko.carstens@de.ibm.com>
12587L:	linux-s390@vger.kernel.org
12588W:	http://www.ibm.com/developerworks/linux/linux390/
12589T:	git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
12590S:	Supported
12591F:	arch/s390/
12592F:	drivers/s390/
12593F:	Documentation/s390/
12594F:	Documentation/driver-api/s390-drivers.rst
12595
12596S390 COMMON I/O LAYER
12597M:	Sebastian Ott <sebott@linux.ibm.com>
12598M:	Peter Oberparleiter <oberpar@linux.ibm.com>
12599L:	linux-s390@vger.kernel.org
12600W:	http://www.ibm.com/developerworks/linux/linux390/
12601S:	Supported
12602F:	drivers/s390/cio/
12603
12604S390 DASD DRIVER
12605M:	Stefan Haberland <sth@linux.ibm.com>
12606M:	Jan Hoeppner <hoeppner@linux.ibm.com>
12607L:	linux-s390@vger.kernel.org
12608W:	http://www.ibm.com/developerworks/linux/linux390/
12609S:	Supported
12610F:	drivers/s390/block/dasd*
12611F:	block/partitions/ibm.c
12612
12613S390 IOMMU (PCI)
12614M:	Gerald Schaefer <gerald.schaefer@de.ibm.com>
12615L:	linux-s390@vger.kernel.org
12616W:	http://www.ibm.com/developerworks/linux/linux390/
12617S:	Supported
12618F:	drivers/iommu/s390-iommu.c
12619
12620S390 IUCV NETWORK LAYER
12621M:	Julian Wiedmann <jwi@linux.ibm.com>
12622M:	Ursula Braun <ubraun@linux.ibm.com>
12623L:	linux-s390@vger.kernel.org
12624W:	http://www.ibm.com/developerworks/linux/linux390/
12625S:	Supported
12626F:	drivers/s390/net/*iucv*
12627F:	include/net/iucv/
12628F:	net/iucv/
12629
12630S390 NETWORK DRIVERS
12631M:	Julian Wiedmann <jwi@linux.ibm.com>
12632M:	Ursula Braun <ubraun@linux.ibm.com>
12633L:	linux-s390@vger.kernel.org
12634W:	http://www.ibm.com/developerworks/linux/linux390/
12635S:	Supported
12636F:	drivers/s390/net/
12637
12638S390 PCI SUBSYSTEM
12639M:	Sebastian Ott <sebott@linux.ibm.com>
12640M:	Gerald Schaefer <gerald.schaefer@de.ibm.com>
12641L:	linux-s390@vger.kernel.org
12642W:	http://www.ibm.com/developerworks/linux/linux390/
12643S:	Supported
12644F:	arch/s390/pci/
12645F:	drivers/pci/hotplug/s390_pci_hpc.c
12646
12647S390 VFIO-CCW DRIVER
12648M:	Cornelia Huck <cohuck@redhat.com>
12649M:	Halil Pasic <pasic@linux.ibm.com>
12650L:	linux-s390@vger.kernel.org
12651L:	kvm@vger.kernel.org
12652S:	Supported
12653F:	drivers/s390/cio/vfio_ccw*
12654F:	Documentation/s390/vfio-ccw.txt
12655F:	include/uapi/linux/vfio_ccw.h
12656
12657S390 ZCRYPT DRIVER
12658M:	Harald Freudenberger <freude@linux.ibm.com>
12659L:	linux-s390@vger.kernel.org
12660W:	http://www.ibm.com/developerworks/linux/linux390/
12661S:	Supported
12662F:	drivers/s390/crypto/
12663
12664S390 ZFCP DRIVER
12665M:	Steffen Maier <maier@linux.ibm.com>
12666M:	Benjamin Block <bblock@linux.ibm.com>
12667L:	linux-s390@vger.kernel.org
12668W:	http://www.ibm.com/developerworks/linux/linux390/
12669S:	Supported
12670F:	drivers/s390/scsi/zfcp_*
12671
12672S3C24XX SD/MMC Driver
12673M:	Ben Dooks <ben-linux@fluff.org>
12674L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12675S:	Supported
12676F:	drivers/mmc/host/s3cmci.*
12677
12678SAA6588 RDS RECEIVER DRIVER
12679M:	Hans Verkuil <hverkuil@xs4all.nl>
12680L:	linux-media@vger.kernel.org
12681T:	git git://linuxtv.org/media_tree.git
12682W:	https://linuxtv.org
12683S:	Odd Fixes
12684F:	drivers/media/i2c/saa6588*
12685
12686SAA7134 VIDEO4LINUX DRIVER
12687M:	Mauro Carvalho Chehab <mchehab@kernel.org>
12688L:	linux-media@vger.kernel.org
12689W:	https://linuxtv.org
12690T:	git git://linuxtv.org/media_tree.git
12691S:	Odd fixes
12692F:	Documentation/media/v4l-drivers/saa7134*
12693F:	drivers/media/pci/saa7134/
12694
12695SAA7146 VIDEO4LINUX-2 DRIVER
12696M:	Hans Verkuil <hverkuil@xs4all.nl>
12697L:	linux-media@vger.kernel.org
12698T:	git git://linuxtv.org/media_tree.git
12699S:	Maintained
12700F:	drivers/media/common/saa7146/
12701F:	drivers/media/pci/saa7146/
12702F:	include/media/saa7146*
12703
12704SAMSUNG AUDIO (ASoC) DRIVERS
12705M:	Krzysztof Kozlowski <krzk@kernel.org>
12706M:	Sangbeom Kim <sbkim73@samsung.com>
12707M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
12708L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
12709S:	Supported
12710F:	sound/soc/samsung/
12711F:	Documentation/devicetree/bindings/sound/samsung*
12712
12713SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
12714M:	Krzysztof Kozlowski <krzk@kernel.org>
12715L:	linux-crypto@vger.kernel.org
12716L:	linux-samsung-soc@vger.kernel.org
12717S:	Maintained
12718F:	drivers/crypto/exynos-rng.c
12719F:	Documentation/devicetree/bindings/rng/samsung,exynos4-rng.txt
12720
12721SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
12722M:	Łukasz Stelmach <l.stelmach@samsung.com>
12723L:	linux-samsung-soc@vger.kernel.org
12724S:	Maintained
12725F:	drivers/char/hw_random/exynos-trng.c
12726F:	Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
12727
12728SAMSUNG FRAMEBUFFER DRIVER
12729M:	Jingoo Han <jingoohan1@gmail.com>
12730L:	linux-fbdev@vger.kernel.org
12731S:	Maintained
12732F:	drivers/video/fbdev/s3c-fb.c
12733
12734SAMSUNG LAPTOP DRIVER
12735M:	Corentin Chary <corentin.chary@gmail.com>
12736L:	platform-driver-x86@vger.kernel.org
12737S:	Maintained
12738F:	drivers/platform/x86/samsung-laptop.c
12739
12740SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
12741M:	Sangbeom Kim <sbkim73@samsung.com>
12742M:	Krzysztof Kozlowski <krzk@kernel.org>
12743M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12744L:	linux-kernel@vger.kernel.org
12745L:	linux-samsung-soc@vger.kernel.org
12746S:	Supported
12747F:	drivers/mfd/sec*.c
12748F:	drivers/regulator/s2m*.c
12749F:	drivers/regulator/s5m*.c
12750F:	drivers/clk/clk-s2mps11.c
12751F:	drivers/rtc/rtc-s5m.c
12752F:	include/linux/mfd/samsung/
12753F:	Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
12754F:	Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
12755F:	Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
12756F:	Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
12757
12758SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
12759M:	Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
12760L:	linux-media@vger.kernel.org
12761L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12762S:	Maintained
12763F:	drivers/media/platform/s3c-camif/
12764F:	include/media/drv-intf/s3c_camif.h
12765
12766SAMSUNG S3FWRN5 NFC DRIVER
12767M:	Robert Baldyga <r.baldyga@samsung.com>
12768M:	Krzysztof Opasiak <k.opasiak@samsung.com>
12769L:	linux-nfc@lists.01.org (moderated for non-subscribers)
12770S:	Supported
12771F:	drivers/nfc/s3fwrn5
12772
12773SAMSUNG S5C73M3 CAMERA DRIVER
12774M:	Kyungmin Park <kyungmin.park@samsung.com>
12775M:	Andrzej Hajda <a.hajda@samsung.com>
12776L:	linux-media@vger.kernel.org
12777S:	Supported
12778F:	drivers/media/i2c/s5c73m3/*
12779
12780SAMSUNG S5K5BAF CAMERA DRIVER
12781M:	Kyungmin Park <kyungmin.park@samsung.com>
12782M:	Andrzej Hajda <a.hajda@samsung.com>
12783L:	linux-media@vger.kernel.org
12784S:	Supported
12785F:	drivers/media/i2c/s5k5baf.c
12786
12787SAMSUNG S5P Security SubSystem (SSS) DRIVER
12788M:	Krzysztof Kozlowski <krzk@kernel.org>
12789M:	Vladimir Zapolskiy <vz@mleia.com>
12790M:	Kamil Konieczny <k.konieczny@partner.samsung.com>
12791L:	linux-crypto@vger.kernel.org
12792L:	linux-samsung-soc@vger.kernel.org
12793S:	Maintained
12794F:	drivers/crypto/s5p-sss.c
12795
12796SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
12797M:	Kyungmin Park <kyungmin.park@samsung.com>
12798M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
12799L:	linux-media@vger.kernel.org
12800Q:	https://patchwork.linuxtv.org/project/linux-media/list/
12801S:	Supported
12802F:	drivers/media/platform/exynos4-is/
12803
12804SAMSUNG SOC CLOCK DRIVERS
12805M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
12806M:	Tomasz Figa <tomasz.figa@gmail.com>
12807M:	Chanwoo Choi <cw00.choi@samsung.com>
12808S:	Supported
12809L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12810T:	git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
12811F:	drivers/clk/samsung/
12812F:	include/dt-bindings/clock/exynos*.h
12813F:	Documentation/devicetree/bindings/clock/exynos*.txt
12814
12815SAMSUNG SPI DRIVERS
12816M:	Kukjin Kim <kgene@kernel.org>
12817M:	Krzysztof Kozlowski <krzk@kernel.org>
12818M:	Andi Shyti <andi@etezian.org>
12819L:	linux-spi@vger.kernel.org
12820L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12821S:	Maintained
12822F:	Documentation/devicetree/bindings/spi/spi-samsung.txt
12823F:	drivers/spi/spi-s3c*
12824F:	include/linux/platform_data/spi-s3c64xx.h
12825
12826SAMSUNG SXGBE DRIVERS
12827M:	Byungho An <bh74.an@samsung.com>
12828M:	Girish K S <ks.giri@samsung.com>
12829M:	Vipul Pandya <vipul.pandya@samsung.com>
12830S:	Supported
12831L:	netdev@vger.kernel.org
12832F:	drivers/net/ethernet/samsung/sxgbe/
12833
12834SAMSUNG THERMAL DRIVER
12835M:	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12836L:	linux-pm@vger.kernel.org
12837L:	linux-samsung-soc@vger.kernel.org
12838S:	Supported
12839T:	git https://github.com/lmajewski/linux-samsung-thermal.git
12840F:	drivers/thermal/samsung/
12841
12842SAMSUNG USB2 PHY DRIVER
12843M:	Kamil Debski <kamil@wypas.org>
12844M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
12845L:	linux-kernel@vger.kernel.org
12846S:	Supported
12847F:	Documentation/devicetree/bindings/phy/samsung-phy.txt
12848F:	Documentation/phy/samsung-usb2.txt
12849F:	drivers/phy/samsung/phy-exynos4210-usb2.c
12850F:	drivers/phy/samsung/phy-exynos4x12-usb2.c
12851F:	drivers/phy/samsung/phy-exynos5250-usb2.c
12852F:	drivers/phy/samsung/phy-s5pv210-usb2.c
12853F:	drivers/phy/samsung/phy-samsung-usb2.c
12854F:	drivers/phy/samsung/phy-samsung-usb2.h
12855
12856SC1200 WDT DRIVER
12857M:	Zwane Mwaikambo <zwanem@gmail.com>
12858S:	Maintained
12859F:	drivers/watchdog/sc1200wdt.c
12860
12861SCHEDULER
12862M:	Ingo Molnar <mingo@redhat.com>
12863M:	Peter Zijlstra <peterz@infradead.org>
12864L:	linux-kernel@vger.kernel.org
12865T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
12866S:	Maintained
12867F:	kernel/sched/
12868F:	include/linux/sched.h
12869F:	include/uapi/linux/sched.h
12870F:	include/linux/wait.h
12871
12872SCR24X CHIP CARD INTERFACE DRIVER
12873M:	Lubomir Rintel <lkundrak@v3.sk>
12874S:	Supported
12875F:	drivers/char/pcmcia/scr24x_cs.c
12876
12877SCSI CDROM DRIVER
12878M:	Jens Axboe <axboe@kernel.dk>
12879L:	linux-scsi@vger.kernel.org
12880W:	http://www.kernel.dk
12881S:	Maintained
12882F:	drivers/scsi/sr*
12883
12884SCSI RDMA PROTOCOL (SRP) INITIATOR
12885M:	Bart Van Assche <bvanassche@acm.org>
12886L:	linux-rdma@vger.kernel.org
12887S:	Supported
12888Q:	http://patchwork.kernel.org/project/linux-rdma/list/
12889F:	drivers/infiniband/ulp/srp/
12890F:	include/scsi/srp.h
12891
12892SCSI RDMA PROTOCOL (SRP) TARGET
12893M:	Bart Van Assche <bvanassche@acm.org>
12894L:	linux-rdma@vger.kernel.org
12895L:	target-devel@vger.kernel.org
12896S:	Supported
12897Q:	http://patchwork.kernel.org/project/linux-rdma/list/
12898F:	drivers/infiniband/ulp/srpt/
12899
12900SCSI SG DRIVER
12901M:	Doug Gilbert <dgilbert@interlog.com>
12902L:	linux-scsi@vger.kernel.org
12903W:	http://sg.danny.cz/sg
12904S:	Maintained
12905F:	Documentation/scsi/scsi-generic.txt
12906F:	drivers/scsi/sg.c
12907F:	include/scsi/sg.h
12908
12909SCSI SUBSYSTEM
12910M:	"James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
12911T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
12912M:	"Martin K. Petersen" <martin.petersen@oracle.com>
12913T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
12914L:	linux-scsi@vger.kernel.org
12915S:	Maintained
12916F:	Documentation/devicetree/bindings/scsi/
12917F:	drivers/scsi/
12918F:	include/scsi/
12919
12920SCSI TAPE DRIVER
12921M:	Kai Mäkisara <Kai.Makisara@kolumbus.fi>
12922L:	linux-scsi@vger.kernel.org
12923S:	Maintained
12924F:	Documentation/scsi/st.txt
12925F:	drivers/scsi/st.*
12926F:	drivers/scsi/st_*.h
12927
12928SCTP PROTOCOL
12929M:	Vlad Yasevich <vyasevich@gmail.com>
12930M:	Neil Horman <nhorman@tuxdriver.com>
12931M:	Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
12932L:	linux-sctp@vger.kernel.org
12933W:	http://lksctp.sourceforge.net
12934S:	Maintained
12935F:	Documentation/networking/sctp.txt
12936F:	include/linux/sctp.h
12937F:	include/uapi/linux/sctp.h
12938F:	include/net/sctp/
12939F:	net/sctp/
12940
12941SCx200 CPU SUPPORT
12942M:	Jim Cromie <jim.cromie@gmail.com>
12943S:	Odd Fixes
12944F:	Documentation/i2c/busses/scx200_acb
12945F:	arch/x86/platform/scx200/
12946F:	drivers/watchdog/scx200_wdt.c
12947F:	drivers/i2c/busses/scx200*
12948F:	drivers/mtd/maps/scx200_docflash.c
12949F:	include/linux/scx200.h
12950
12951SCx200 GPIO DRIVER
12952M:	Jim Cromie <jim.cromie@gmail.com>
12953S:	Maintained
12954F:	drivers/char/scx200_gpio.c
12955F:	include/linux/scx200_gpio.h
12956
12957SCx200 HRT CLOCKSOURCE DRIVER
12958M:	Jim Cromie <jim.cromie@gmail.com>
12959S:	Maintained
12960F:	drivers/clocksource/scx200_hrt.c
12961
12962SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
12963M:	Sascha Sommer <saschasommer@freenet.de>
12964L:	sdricohcs-devel@lists.sourceforge.net (subscribers-only)
12965S:	Maintained
12966F:	drivers/mmc/host/sdricoh_cs.c
12967
12968SECURE COMPUTING
12969M:	Kees Cook <keescook@chromium.org>
12970R:	Andy Lutomirski <luto@amacapital.net>
12971R:	Will Drewry <wad@chromium.org>
12972T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
12973S:	Supported
12974F:	kernel/seccomp.c
12975F:	include/uapi/linux/seccomp.h
12976F:	include/linux/seccomp.h
12977F:	tools/testing/selftests/seccomp/*
12978F:	tools/testing/selftests/kselftest_harness.h
12979F:	Documentation/userspace-api/seccomp_filter.rst
12980K:	\bsecure_computing
12981K:	\bTIF_SECCOMP\b
12982
12983SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
12984M:	Al Cooper <alcooperx@gmail.com>
12985L:	linux-mmc@vger.kernel.org
12986L:	bcm-kernel-feedback-list@broadcom.com
12987S:	Maintained
12988F:	drivers/mmc/host/sdhci-brcmstb*
12989
12990SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
12991M:	Adrian Hunter <adrian.hunter@intel.com>
12992L:	linux-mmc@vger.kernel.org
12993T:	git git://git.infradead.org/users/ahunter/linux-sdhci.git
12994S:	Maintained
12995F:	drivers/mmc/host/sdhci*
12996F:	include/linux/mmc/sdhci*
12997
12998SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
12999M:	Prabu Thangamuthu <prabu.t@synopsys.com>
13000M:	Manjunath M B <manjumb@synopsys.com>
13001L:	linux-mmc@vger.kernel.org
13002S:	Maintained
13003F:	drivers/mmc/host/sdhci-pci-dwc-mshc.c
13004
13005SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
13006M:	Ben Dooks <ben-linux@fluff.org>
13007M:	Jaehoon Chung <jh80.chung@samsung.com>
13008L:	linux-mmc@vger.kernel.org
13009S:	Maintained
13010F:	drivers/mmc/host/sdhci-s3c*
13011
13012SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
13013M:	Viresh Kumar <vireshk@kernel.org>
13014L:	linux-mmc@vger.kernel.org
13015S:	Maintained
13016F:	drivers/mmc/host/sdhci-spear.c
13017
13018SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
13019M:	Kishon Vijay Abraham I <kishon@ti.com>
13020L:	linux-mmc@vger.kernel.org
13021S:	Maintained
13022F:	drivers/mmc/host/sdhci-omap.c
13023
13024SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
13025M:	Scott Bauer <scott.bauer@intel.com>
13026M:	Jonathan Derrick <jonathan.derrick@intel.com>
13027L:	linux-block@vger.kernel.org
13028S:	Supported
13029F:	block/sed*
13030F:	block/opal_proto.h
13031F:	include/linux/sed*
13032F:	include/uapi/linux/sed*
13033
13034SECURITY CONTACT
13035M:	Security Officers <security@kernel.org>
13036S:	Supported
13037
13038SECURITY SUBSYSTEM
13039M:	James Morris <jmorris@namei.org>
13040M:	"Serge E. Hallyn" <serge@hallyn.com>
13041L:	linux-security-module@vger.kernel.org (suggested Cc:)
13042T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
13043W:	http://kernsec.org/
13044S:	Supported
13045F:	security/
13046X:	security/selinux/
13047
13048SELINUX SECURITY MODULE
13049M:	Paul Moore <paul@paul-moore.com>
13050M:	Stephen Smalley <sds@tycho.nsa.gov>
13051M:	Eric Paris <eparis@parisplace.org>
13052L:	selinux@tycho.nsa.gov (moderated for non-subscribers)
13053W:	https://selinuxproject.org
13054W:	https://github.com/SELinuxProject
13055T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
13056S:	Supported
13057F:	include/linux/selinux*
13058F:	security/selinux/
13059F:	scripts/selinux/
13060F:	Documentation/admin-guide/LSM/SELinux.rst
13061
13062SENSABLE PHANTOM
13063M:	Jiri Slaby <jirislaby@gmail.com>
13064S:	Maintained
13065F:	drivers/misc/phantom.c
13066F:	include/uapi/linux/phantom.h
13067
13068SERIAL DEVICE BUS
13069M:	Rob Herring <robh@kernel.org>
13070L:	linux-serial@vger.kernel.org
13071S:	Maintained
13072F:	Documentation/devicetree/bindings/serial/slave-device.txt
13073F:	drivers/tty/serdev/
13074F:	include/linux/serdev.h
13075
13076SERIAL DRIVERS
13077M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13078L:	linux-serial@vger.kernel.org
13079S:	Maintained
13080F:	Documentation/devicetree/bindings/serial/
13081F:	drivers/tty/serial/
13082
13083SERIAL IR RECEIVER
13084M:	Sean Young <sean@mess.org>
13085L:	linux-media@vger.kernel.org
13086S:	Maintained
13087F:	drivers/media/rc/serial_ir.c
13088
13089SFC NETWORK DRIVER
13090M:	Solarflare linux maintainers <linux-net-drivers@solarflare.com>
13091M:	Edward Cree <ecree@solarflare.com>
13092M:	Bert Kenward <bkenward@solarflare.com>
13093L:	netdev@vger.kernel.org
13094S:	Supported
13095F:	drivers/net/ethernet/sfc/
13096
13097SGI GRU DRIVER
13098M:	Dimitri Sivanich <sivanich@sgi.com>
13099S:	Maintained
13100F:	drivers/misc/sgi-gru/
13101
13102SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
13103M:	Pat Gefre <pfg@sgi.com>
13104L:	linux-ia64@vger.kernel.org
13105S:	Supported
13106F:	Documentation/ia64/serial.txt
13107F:	drivers/tty/serial/ioc?_serial.c
13108F:	include/linux/ioc?.h
13109
13110SGI XP/XPC/XPNET DRIVER
13111M:	Cliff Whickman <cpw@sgi.com>
13112M:	Robin Holt <robinmholt@gmail.com>
13113S:	Maintained
13114F:	drivers/misc/sgi-xp/
13115
13116SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
13117M:	Ursula Braun <ubraun@linux.ibm.com>
13118L:	linux-s390@vger.kernel.org
13119W:	http://www.ibm.com/developerworks/linux/linux390/
13120S:	Supported
13121F:	net/smc/
13122
13123SHARP RJ54N1CB0C SENSOR DRIVER
13124M:	Jacopo Mondi <jacopo@jmondi.org>
13125L:	linux-media@vger.kernel.org
13126T:	git git://linuxtv.org/media_tree.git
13127S:	Odd fixes
13128F:	drivers/media/i2c/rj54n1cb0c.c
13129F:	include/media/i2c/rj54n1cb0c.h
13130
13131SH_VEU V4L2 MEM2MEM DRIVER
13132L:	linux-media@vger.kernel.org
13133S:	Orphan
13134F:	drivers/media/platform/sh_veu.c
13135
13136SH_VOU V4L2 OUTPUT DRIVER
13137L:	linux-media@vger.kernel.org
13138S:	Orphan
13139F:	drivers/media/platform/sh_vou.c
13140F:	include/media/drv-intf/sh_vou.h
13141
13142SI2157 MEDIA DRIVER
13143M:	Antti Palosaari <crope@iki.fi>
13144L:	linux-media@vger.kernel.org
13145W:	https://linuxtv.org
13146W:	http://palosaari.fi/linux/
13147Q:	http://patchwork.linuxtv.org/project/linux-media/list/
13148T:	git git://linuxtv.org/anttip/media_tree.git
13149S:	Maintained
13150F:	drivers/media/tuners/si2157*
13151
13152SI2165 MEDIA DRIVER
13153M:	Matthias Schwarzott <zzam@gentoo.org>
13154L:	linux-media@vger.kernel.org
13155W:	https://linuxtv.org
13156Q:	http://patchwork.linuxtv.org/project/linux-media/list/
13157S:	Maintained
13158F:	drivers/media/dvb-frontends/si2165*
13159
13160SI2168 MEDIA DRIVER
13161M:	Antti Palosaari <crope@iki.fi>
13162L:	linux-media@vger.kernel.org
13163W:	https://linuxtv.org
13164W:	http://palosaari.fi/linux/
13165Q:	http://patchwork.linuxtv.org/project/linux-media/list/
13166T:	git git://linuxtv.org/anttip/media_tree.git
13167S:	Maintained
13168F:	drivers/media/dvb-frontends/si2168*
13169
13170SI470X FM RADIO RECEIVER I2C DRIVER
13171M:	Hans Verkuil <hverkuil@xs4all.nl>
13172L:	linux-media@vger.kernel.org
13173T:	git git://linuxtv.org/media_tree.git
13174W:	https://linuxtv.org
13175S:	Odd Fixes
13176F:	drivers/media/radio/si470x/radio-si470x-i2c.c
13177
13178SI470X FM RADIO RECEIVER USB DRIVER
13179M:	Hans Verkuil <hverkuil@xs4all.nl>
13180L:	linux-media@vger.kernel.org
13181T:	git git://linuxtv.org/media_tree.git
13182W:	https://linuxtv.org
13183S:	Maintained
13184F:	drivers/media/radio/si470x/radio-si470x-common.c
13185F:	drivers/media/radio/si470x/radio-si470x.h
13186F:	drivers/media/radio/si470x/radio-si470x-usb.c
13187
13188SI4713 FM RADIO TRANSMITTER I2C DRIVER
13189M:	Eduardo Valentin <edubezval@gmail.com>
13190L:	linux-media@vger.kernel.org
13191T:	git git://linuxtv.org/media_tree.git
13192W:	https://linuxtv.org
13193S:	Odd Fixes
13194F:	drivers/media/radio/si4713/si4713.?
13195
13196SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
13197M:	Eduardo Valentin <edubezval@gmail.com>
13198L:	linux-media@vger.kernel.org
13199T:	git git://linuxtv.org/media_tree.git
13200W:	https://linuxtv.org
13201S:	Odd Fixes
13202F:	drivers/media/radio/si4713/radio-platform-si4713.c
13203
13204SI4713 FM RADIO TRANSMITTER USB DRIVER
13205M:	Hans Verkuil <hverkuil@xs4all.nl>
13206L:	linux-media@vger.kernel.org
13207T:	git git://linuxtv.org/media_tree.git
13208W:	https://linuxtv.org
13209S:	Maintained
13210F:	drivers/media/radio/si4713/radio-usb-si4713.c
13211
13212SIANO DVB DRIVER
13213M:	Mauro Carvalho Chehab <mchehab@kernel.org>
13214L:	linux-media@vger.kernel.org
13215W:	https://linuxtv.org
13216T:	git git://linuxtv.org/media_tree.git
13217S:	Odd fixes
13218F:	drivers/media/common/siano/
13219F:	drivers/media/usb/siano/
13220F:	drivers/media/usb/siano/
13221F:	drivers/media/mmc/siano/
13222
13223SIFIVE DRIVERS
13224M:	Palmer Dabbelt <palmer@sifive.com>
13225L:	linux-riscv@lists.infradead.org
13226T:	git git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git
13227S:	Supported
13228K:	sifive
13229N:	sifive
13230
13231SILEAD TOUCHSCREEN DRIVER
13232M:	Hans de Goede <hdegoede@redhat.com>
13233L:	linux-input@vger.kernel.org
13234L:	platform-driver-x86@vger.kernel.org
13235S:	Maintained
13236F:	drivers/input/touchscreen/silead.c
13237F:	drivers/platform/x86/touchscreen_dmi.c
13238
13239SILICON MOTION SM712 FRAME BUFFER DRIVER
13240M:	Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13241M:	Teddy Wang <teddy.wang@siliconmotion.com>
13242M:	Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13243L:	linux-fbdev@vger.kernel.org
13244S:	Maintained
13245F:	drivers/video/fbdev/sm712*
13246F:	Documentation/fb/sm712fb.txt
13247
13248SIMPLE FIRMWARE INTERFACE (SFI)
13249M:	Len Brown <lenb@kernel.org>
13250L:	sfi-devel@simplefirmware.org
13251W:	http://simplefirmware.org/
13252T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
13253S:	Supported
13254F:	arch/x86/platform/sfi/
13255F:	drivers/sfi/
13256F:	include/linux/sfi*.h
13257
13258SIMPLEFB FB DRIVER
13259M:	Hans de Goede <hdegoede@redhat.com>
13260L:	linux-fbdev@vger.kernel.org
13261S:	Maintained
13262F:	Documentation/devicetree/bindings/display/simple-framebuffer.txt
13263F:	drivers/video/fbdev/simplefb.c
13264F:	include/linux/platform_data/simplefb.h
13265
13266SIMTEC EB110ATX (Chalice CATS)
13267P:	Ben Dooks
13268P:	Vincent Sanders <vince@simtec.co.uk>
13269M:	Simtec Linux Team <linux@simtec.co.uk>
13270W:	http://www.simtec.co.uk/products/EB110ATX/
13271S:	Supported
13272
13273SIMTEC EB2410ITX (BAST)
13274P:	Ben Dooks
13275P:	Vincent Sanders <vince@simtec.co.uk>
13276M:	Simtec Linux Team <linux@simtec.co.uk>
13277W:	http://www.simtec.co.uk/products/EB2410ITX/
13278S:	Supported
13279F:	arch/arm/mach-s3c24xx/mach-bast.c
13280F:	arch/arm/mach-s3c24xx/bast-ide.c
13281F:	arch/arm/mach-s3c24xx/bast-irq.c
13282
13283SIPHASH PRF ROUTINES
13284M:	Jason A. Donenfeld <Jason@zx2c4.com>
13285S:	Maintained
13286F:	lib/siphash.c
13287F:	lib/test_siphash.c
13288F:	include/linux/siphash.h
13289
13290SIOX
13291M:	Gavin Schenk <g.schenk@eckelmann.de>
13292M:	Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13293R:	Pengutronix Kernel Team <kernel@pengutronix.de>
13294S:	Supported
13295F:	drivers/siox/*
13296F:	include/trace/events/siox.h
13297
13298SIS 190 ETHERNET DRIVER
13299M:	Francois Romieu <romieu@fr.zoreil.com>
13300L:	netdev@vger.kernel.org
13301S:	Maintained
13302F:	drivers/net/ethernet/sis/sis190.c
13303
13304SIS 900/7016 FAST ETHERNET DRIVER
13305M:	Daniele Venzano <venza@brownhat.org>
13306W:	http://www.brownhat.org/sis900.html
13307L:	netdev@vger.kernel.org
13308S:	Maintained
13309F:	drivers/net/ethernet/sis/sis900.*
13310
13311SIS FRAMEBUFFER DRIVER
13312M:	Thomas Winischhofer <thomas@winischhofer.net>
13313W:	http://www.winischhofer.net/linuxsisvga.shtml
13314S:	Maintained
13315F:	Documentation/fb/sisfb.txt
13316F:	drivers/video/fbdev/sis/
13317F:	include/video/sisfb.h
13318
13319SIS USB2VGA DRIVER
13320M:	Thomas Winischhofer <thomas@winischhofer.net>
13321W:	http://www.winischhofer.at/linuxsisusbvga.shtml
13322S:	Maintained
13323F:	drivers/usb/misc/sisusbvga/
13324
13325SLAB ALLOCATOR
13326M:	Christoph Lameter <cl@linux.com>
13327M:	Pekka Enberg <penberg@kernel.org>
13328M:	David Rientjes <rientjes@google.com>
13329M:	Joonsoo Kim <iamjoonsoo.kim@lge.com>
13330M:	Andrew Morton <akpm@linux-foundation.org>
13331L:	linux-mm@kvack.org
13332S:	Maintained
13333F:	include/linux/sl?b*.h
13334F:	mm/sl?b*
13335
13336SLEEPABLE READ-COPY UPDATE (SRCU)
13337M:	Lai Jiangshan <jiangshanlai@gmail.com>
13338M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
13339M:	Josh Triplett <josh@joshtriplett.org>
13340R:	Steven Rostedt <rostedt@goodmis.org>
13341R:	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13342L:	linux-kernel@vger.kernel.org
13343W:	http://www.rdrop.com/users/paulmck/RCU/
13344S:	Supported
13345T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
13346F:	include/linux/srcu*.h
13347F:	kernel/rcu/srcu*.c
13348
13349SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
13350M:	Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13351L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13352S:	Maintained
13353F:	drivers/slimbus/
13354F:	Documentation/devicetree/bindings/slimbus/
13355F:	include/linux/slimbus.h
13356
13357SMACK SECURITY MODULE
13358M:	Casey Schaufler <casey@schaufler-ca.com>
13359L:	linux-security-module@vger.kernel.org
13360W:	http://schaufler-ca.com
13361T:	git git://github.com/cschaufler/smack-next
13362S:	Maintained
13363F:	Documentation/admin-guide/LSM/Smack.rst
13364F:	security/smack/
13365
13366SMC91x ETHERNET DRIVER
13367M:	Nicolas Pitre <nico@fluxnic.net>
13368S:	Odd Fixes
13369F:	drivers/net/ethernet/smsc/smc91x.*
13370
13371SMIA AND SMIA++ IMAGE SENSOR DRIVER
13372M:	Sakari Ailus <sakari.ailus@iki.fi>
13373L:	linux-media@vger.kernel.org
13374S:	Maintained
13375F:	drivers/media/i2c/smiapp/
13376F:	include/media/i2c/smiapp.h
13377F:	drivers/media/i2c/smiapp-pll.c
13378F:	drivers/media/i2c/smiapp-pll.h
13379F:	include/uapi/linux/smiapp.h
13380F:	Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
13381
13382SMM665 HARDWARE MONITOR DRIVER
13383M:	Guenter Roeck <linux@roeck-us.net>
13384L:	linux-hwmon@vger.kernel.org
13385S:	Maintained
13386F:	Documentation/hwmon/smm665
13387F:	drivers/hwmon/smm665.c
13388
13389SMSC EMC2103 HARDWARE MONITOR DRIVER
13390M:	Steve Glendinning <steve.glendinning@shawell.net>
13391L:	linux-hwmon@vger.kernel.org
13392S:	Maintained
13393F:	Documentation/hwmon/emc2103
13394F:	drivers/hwmon/emc2103.c
13395
13396SMSC SCH5627 HARDWARE MONITOR DRIVER
13397M:	Hans de Goede <hdegoede@redhat.com>
13398L:	linux-hwmon@vger.kernel.org
13399S:	Supported
13400F:	Documentation/hwmon/sch5627
13401F:	drivers/hwmon/sch5627.c
13402
13403SMSC UFX6000 and UFX7000 USB to VGA DRIVER
13404M:	Steve Glendinning <steve.glendinning@shawell.net>
13405L:	linux-fbdev@vger.kernel.org
13406S:	Maintained
13407F:	drivers/video/fbdev/smscufx.c
13408
13409SMSC47B397 HARDWARE MONITOR DRIVER
13410M:	Jean Delvare <jdelvare@suse.com>
13411L:	linux-hwmon@vger.kernel.org
13412S:	Maintained
13413F:	Documentation/hwmon/smsc47b397
13414F:	drivers/hwmon/smsc47b397.c
13415
13416SMSC911x ETHERNET DRIVER
13417M:	Steve Glendinning <steve.glendinning@shawell.net>
13418L:	netdev@vger.kernel.org
13419S:	Maintained
13420F:	include/linux/smsc911x.h
13421F:	drivers/net/ethernet/smsc/smsc911x.*
13422
13423SMSC9420 PCI ETHERNET DRIVER
13424M:	Steve Glendinning <steve.glendinning@shawell.net>
13425L:	netdev@vger.kernel.org
13426S:	Maintained
13427F:	drivers/net/ethernet/smsc/smsc9420.*
13428
13429SOC-CAMERA V4L2 SUBSYSTEM
13430L:	linux-media@vger.kernel.org
13431T:	git git://linuxtv.org/media_tree.git
13432S:	Orphan
13433F:	include/media/soc*
13434F:	drivers/media/i2c/soc_camera/
13435F:	drivers/media/platform/soc_camera/
13436
13437SOCIONEXT SYNQUACER I2C DRIVER
13438M:	Ard Biesheuvel <ard.biesheuvel@linaro.org>
13439L:	linux-i2c@vger.kernel.org
13440S:	Maintained
13441F:	drivers/i2c/busses/i2c-synquacer.c
13442F:	Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
13443
13444SOCIONEXT UNIPHIER SOUND DRIVER
13445M:	Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
13446L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13447S:	Maintained
13448F:	sound/soc/uniphier/
13449
13450SOEKRIS NET48XX LED SUPPORT
13451M:	Chris Boot <bootc@bootc.net>
13452S:	Maintained
13453F:	drivers/leds/leds-net48xx.c
13454
13455SOFT-ROCE DRIVER (rxe)
13456M:	Moni Shoua <monis@mellanox.com>
13457L:	linux-rdma@vger.kernel.org
13458S:	Supported
13459W:	https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
13460Q:	http://patchwork.kernel.org/project/linux-rdma/list/
13461F:	drivers/infiniband/sw/rxe/
13462F:	include/uapi/rdma/rdma_user_rxe.h
13463
13464SOFTLOGIC 6x10 MPEG CODEC
13465M:	Bluecherry Maintainers <maintainers@bluecherrydvr.com>
13466M:	Anton Sviridenko <anton@corp.bluecherry.net>
13467M:	Andrey Utkin <andrey.utkin@corp.bluecherry.net>
13468M:	Andrey Utkin <andrey_utkin@fastmail.com>
13469M:	Ismael Luceno <ismael@iodev.co.uk>
13470L:	linux-media@vger.kernel.org
13471S:	Supported
13472F:	drivers/media/pci/solo6x10/
13473
13474SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
13475M:	James Morse <james.morse@arm.com>
13476L:	linux-arm-kernel@lists.infradead.org
13477S:	Maintained
13478F:	Documentation/devicetree/bindings/arm/firmware/sdei.txt
13479F:	drivers/firmware/arm_sdei.c
13480F:	include/linux/sdei.h
13481F:	include/uapi/linux/sdei.h
13482
13483SOFTWARE RAID (Multiple Disks) SUPPORT
13484M:	Shaohua Li <shli@kernel.org>
13485L:	linux-raid@vger.kernel.org
13486T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
13487S:	Supported
13488F:	drivers/md/Makefile
13489F:	drivers/md/Kconfig
13490F:	drivers/md/md*
13491F:	drivers/md/raid*
13492F:	include/linux/raid/
13493F:	include/uapi/linux/raid/
13494
13495SOCIONEXT (SNI) NETSEC NETWORK DRIVER
13496M:	Jassi Brar <jaswinder.singh@linaro.org>
13497L:	netdev@vger.kernel.org
13498S:	Maintained
13499F:	drivers/net/ethernet/socionext/netsec.c
13500F:	Documentation/devicetree/bindings/net/socionext-netsec.txt
13501
13502SOLIDRUN CLEARFOG SUPPORT
13503M:	Russell King <linux@armlinux.org.uk>
13504S:	Maintained
13505F:	arch/arm/boot/dts/armada-388-clearfog*
13506F:	arch/arm/boot/dts/armada-38x-solidrun-*
13507
13508SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
13509M:	Russell King <linux@armlinux.org.uk>
13510S:	Maintained
13511F:	arch/arm/boot/dts/imx6*-cubox-i*
13512F:	arch/arm/boot/dts/imx6*-hummingboard*
13513F:	arch/arm/boot/dts/imx6*-sr-*
13514
13515SONIC NETWORK DRIVER
13516M:	Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13517L:	netdev@vger.kernel.org
13518S:	Maintained
13519F:	drivers/net/ethernet/natsemi/sonic.*
13520
13521SONICS SILICON BACKPLANE DRIVER (SSB)
13522M:	Michael Buesch <m@bues.ch>
13523L:	linux-wireless@vger.kernel.org
13524S:	Maintained
13525F:	drivers/ssb/
13526F:	include/linux/ssb/
13527
13528SONY IMX258 SENSOR DRIVER
13529M:	Sakari Ailus <sakari.ailus@linux.intel.com>
13530L:	linux-media@vger.kernel.org
13531T:	git git://linuxtv.org/media_tree.git
13532S:	Maintained
13533F:	drivers/media/i2c/imx258.c
13534
13535SONY IMX274 SENSOR DRIVER
13536M:	Leon Luo <leonl@leopardimaging.com>
13537L:	linux-media@vger.kernel.org
13538T:	git git://linuxtv.org/media_tree.git
13539S:	Maintained
13540F:	drivers/media/i2c/imx274.c
13541F:	Documentation/devicetree/bindings/media/i2c/imx274.txt
13542
13543SONY MEMORYSTICK CARD SUPPORT
13544M:	Alex Dubov <oakad@yahoo.com>
13545W:	http://tifmxx.berlios.de/
13546S:	Maintained
13547F:	drivers/memstick/host/tifm_ms.c
13548
13549SONY MEMORYSTICK STANDARD SUPPORT
13550M:	Maxim Levitsky <maximlevitsky@gmail.com>
13551S:	Maintained
13552F:	drivers/memstick/core/ms_block.*
13553
13554SONY VAIO CONTROL DEVICE DRIVER
13555M:	Mattia Dongili <malattia@linux.it>
13556L:	platform-driver-x86@vger.kernel.org
13557W:	http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
13558S:	Maintained
13559F:	Documentation/laptops/sony-laptop.txt
13560F:	drivers/char/sonypi.c
13561F:	drivers/platform/x86/sony-laptop.c
13562F:	include/linux/sony-laptop.h
13563
13564SOUND
13565M:	Jaroslav Kysela <perex@perex.cz>
13566M:	Takashi Iwai <tiwai@suse.com>
13567L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13568W:	http://www.alsa-project.org/
13569T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13570T:	git git://git.alsa-project.org/alsa-kernel.git
13571Q:	http://patchwork.kernel.org/project/alsa-devel/list/
13572S:	Maintained
13573F:	Documentation/sound/
13574F:	include/sound/
13575F:	include/uapi/sound/
13576F:	sound/
13577
13578SOUND - COMPRESSED AUDIO
13579M:	Vinod Koul <vkoul@kernel.org>
13580L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13581T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13582S:	Supported
13583F:	Documentation/sound/designs/compress-offload.rst
13584F:	include/sound/compress_driver.h
13585F:	include/uapi/sound/compress_*
13586F:	sound/core/compress_offload.c
13587F:	sound/soc/soc-compress.c
13588
13589SOUND - DMAENGINE HELPERS
13590M:	Lars-Peter Clausen <lars@metafoo.de>
13591S:	Supported
13592F:	include/sound/dmaengine_pcm.h
13593F:	sound/core/pcm_dmaengine.c
13594F:	sound/soc/soc-generic-dmaengine-pcm.c
13595
13596SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
13597M:	Liam Girdwood <lgirdwood@gmail.com>
13598M:	Mark Brown <broonie@kernel.org>
13599T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
13600L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13601W:	http://alsa-project.org/main/index.php/ASoC
13602S:	Supported
13603F:	Documentation/devicetree/bindings/sound/
13604F:	Documentation/sound/soc/
13605F:	sound/soc/
13606F:	include/sound/soc*
13607
13608SOUNDWIRE SUBSYSTEM
13609M:	Vinod Koul <vinod.koul@intel.com>
13610M:	Sanyog Kale <sanyog.r.kale@intel.com>
13611R:	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
13612L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13613S:	Supported
13614F:	Documentation/driver-api/soundwire/
13615F:	drivers/soundwire/
13616F:	include/linux/soundwire/
13617
13618SP2 MEDIA DRIVER
13619M:	Olli Salonen <olli.salonen@iki.fi>
13620L:	linux-media@vger.kernel.org
13621W:	https://linuxtv.org
13622Q:	http://patchwork.linuxtv.org/project/linux-media/list/
13623S:	Maintained
13624F:	drivers/media/dvb-frontends/sp2*
13625
13626SPARC + UltraSPARC (sparc/sparc64)
13627M:	"David S. Miller" <davem@davemloft.net>
13628L:	sparclinux@vger.kernel.org
13629Q:	http://patchwork.ozlabs.org/project/sparclinux/list/
13630T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
13631T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
13632S:	Maintained
13633F:	arch/sparc/
13634F:	drivers/sbus/
13635
13636SPARC SERIAL DRIVERS
13637M:	"David S. Miller" <davem@davemloft.net>
13638L:	sparclinux@vger.kernel.org
13639T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
13640T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
13641S:	Maintained
13642F:	include/linux/sunserialcore.h
13643F:	drivers/tty/serial/suncore.c
13644F:	drivers/tty/serial/sunhv.c
13645F:	drivers/tty/serial/sunsab.c
13646F:	drivers/tty/serial/sunsab.h
13647F:	drivers/tty/serial/sunsu.c
13648F:	drivers/tty/serial/sunzilog.c
13649F:	drivers/tty/serial/sunzilog.h
13650F:	drivers/tty/vcc.c
13651
13652SPARSE CHECKER
13653M:	"Christopher Li" <sparse@chrisli.org>
13654L:	linux-sparse@vger.kernel.org
13655W:	https://sparse.wiki.kernel.org/
13656T:	git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
13657T:	git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
13658S:	Maintained
13659F:	include/linux/compiler.h
13660
13661SPEAR CLOCK FRAMEWORK SUPPORT
13662M:	Viresh Kumar <vireshk@kernel.org>
13663L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13664W:	http://www.st.com/spear
13665S:	Maintained
13666F:	drivers/clk/spear/
13667
13668SPEAR PLATFORM SUPPORT
13669M:	Viresh Kumar <vireshk@kernel.org>
13670M:	Shiraz Hashim <shiraz.linux.kernel@gmail.com>
13671L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13672W:	http://www.st.com/spear
13673S:	Maintained
13674F:	arch/arm/boot/dts/spear*
13675F:	arch/arm/mach-spear/
13676
13677SPI NOR SUBSYSTEM
13678M:	Marek Vasut <marek.vasut@gmail.com>
13679L:	linux-mtd@lists.infradead.org
13680W:	http://www.linux-mtd.infradead.org/
13681Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
13682T:	git git://git.infradead.org/linux-mtd.git spi-nor/fixes
13683T:	git git://git.infradead.org/linux-mtd.git spi-nor/next
13684S:	Maintained
13685F:	drivers/mtd/spi-nor/
13686F:	include/linux/mtd/spi-nor.h
13687
13688SPI SUBSYSTEM
13689M:	Mark Brown <broonie@kernel.org>
13690L:	linux-spi@vger.kernel.org
13691T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
13692Q:	http://patchwork.kernel.org/project/spi-devel-general/list/
13693S:	Maintained
13694F:	Documentation/devicetree/bindings/spi/
13695F:	Documentation/spi/
13696F:	drivers/spi/
13697F:	include/linux/spi/
13698F:	include/uapi/linux/spi/
13699F:	tools/spi/
13700
13701SPIDERNET NETWORK DRIVER for CELL
13702M:	Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
13703L:	netdev@vger.kernel.org
13704S:	Supported
13705F:	Documentation/networking/spider_net.txt
13706F:	drivers/net/ethernet/toshiba/spider_net*
13707
13708SPMI SUBSYSTEM
13709R:	Stephen Boyd <sboyd@kernel.org>
13710L:	linux-arm-msm@vger.kernel.org
13711F:	Documentation/devicetree/bindings/spmi/
13712F:	drivers/spmi/
13713F:	include/dt-bindings/spmi/spmi.h
13714F:	include/linux/spmi.h
13715F:	include/trace/events/spmi.h
13716
13717SPU FILE SYSTEM
13718M:	Jeremy Kerr <jk@ozlabs.org>
13719L:	linuxppc-dev@lists.ozlabs.org
13720W:	http://www.ibm.com/developerworks/power/cell/
13721S:	Supported
13722F:	Documentation/filesystems/spufs.txt
13723F:	arch/powerpc/platforms/cell/spufs/
13724
13725SQUASHFS FILE SYSTEM
13726M:	Phillip Lougher <phillip@squashfs.org.uk>
13727L:	squashfs-devel@lists.sourceforge.net (subscribers-only)
13728W:	http://squashfs.org.uk
13729T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
13730S:	Maintained
13731F:	Documentation/filesystems/squashfs.txt
13732F:	fs/squashfs/
13733
13734SRM (Alpha) environment access
13735M:	Jan-Benedict Glaw <jbglaw@lug-owl.de>
13736S:	Maintained
13737F:	arch/alpha/kernel/srm_env.c
13738
13739ST STM32 I2C/SMBUS DRIVER
13740M:	Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
13741L:	linux-i2c@vger.kernel.org
13742S:	Maintained
13743F:	drivers/i2c/busses/i2c-stm32*
13744
13745STABLE BRANCH
13746M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13747L:	stable@vger.kernel.org
13748S:	Supported
13749F:	Documentation/process/stable-kernel-rules.rst
13750
13751STAGING - COMEDI
13752M:	Ian Abbott <abbotti@mev.co.uk>
13753M:	H Hartley Sweeten <hsweeten@visionengravers.com>
13754S:	Odd Fixes
13755F:	drivers/staging/comedi/
13756
13757STAGING - EROFS FILE SYSTEM
13758M:	Gao Xiang <gaoxiang25@huawei.com>
13759M:	Chao Yu <yuchao0@huawei.com>
13760L:	linux-erofs@lists.ozlabs.org
13761S:	Maintained
13762F:	drivers/staging/erofs/
13763
13764STAGING - FLARION FT1000 DRIVERS
13765M:	Marek Belisko <marek.belisko@gmail.com>
13766S:	Odd Fixes
13767F:	drivers/staging/ft1000/
13768
13769STAGING - INDUSTRIAL IO
13770M:	Jonathan Cameron <jic23@kernel.org>
13771L:	linux-iio@vger.kernel.org
13772S:	Odd Fixes
13773F:	Documentation/devicetree/bindings/staging/iio/
13774F:	drivers/staging/iio/
13775
13776STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
13777M:	Marc Dietrich <marvin24@gmx.de>
13778L:	ac100@lists.launchpad.net (moderated for non-subscribers)
13779L:	linux-tegra@vger.kernel.org
13780S:	Maintained
13781F:	drivers/staging/nvec/
13782
13783STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
13784M:	Jens Frederich <jfrederich@gmail.com>
13785M:	Daniel Drake <dsd@laptop.org>
13786M:	Jon Nettleton <jon.nettleton@gmail.com>
13787W:	http://wiki.laptop.org/go/DCON
13788S:	Maintained
13789F:	drivers/staging/olpc_dcon/
13790
13791STAGING - REALTEK RTL8712U DRIVERS
13792M:	Larry Finger <Larry.Finger@lwfinger.net>
13793M:	Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
13794S:	Odd Fixes
13795F:	drivers/staging/rtl8712/
13796
13797STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
13798M:	Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13799M:	Teddy Wang <teddy.wang@siliconmotion.com>
13800M:	Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13801L:	linux-fbdev@vger.kernel.org
13802S:	Maintained
13803F:	drivers/staging/sm750fb/
13804
13805STAGING - SPEAKUP CONSOLE SPEECH DRIVER
13806M:	William Hubbs <w.d.hubbs@gmail.com>
13807M:	Chris Brannon <chris@the-brannons.com>
13808M:	Kirk Reiser <kirk@reisers.ca>
13809M:	Samuel Thibault <samuel.thibault@ens-lyon.org>
13810L:	speakup@linux-speakup.org
13811W:	http://www.linux-speakup.org/
13812S:	Odd Fixes
13813F:	drivers/staging/speakup/
13814
13815STAGING - VIA VT665X DRIVERS
13816M:	Forest Bond <forest@alittletooquiet.net>
13817S:	Odd Fixes
13818F:	drivers/staging/vt665?/
13819
13820STAGING - WILC1000 WIFI DRIVER
13821M:	Aditya Shankar <aditya.shankar@microchip.com>
13822M:	Ganesh Krishna <ganesh.krishna@microchip.com>
13823L:	linux-wireless@vger.kernel.org
13824S:	Supported
13825F:	drivers/staging/wilc1000/
13826
13827STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
13828M:	Arnaud Patard <arnaud.patard@rtp-net.org>
13829S:	Odd Fixes
13830F:	drivers/staging/xgifb/
13831
13832STAGING SUBSYSTEM
13833M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13834T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
13835L:	devel@driverdev.osuosl.org
13836S:	Supported
13837F:	drivers/staging/
13838
13839STARFIRE/DURALAN NETWORK DRIVER
13840M:	Ion Badulescu <ionut@badula.org>
13841S:	Odd Fixes
13842F:	drivers/net/ethernet/adaptec/starfire*
13843
13844STEC S1220 SKD DRIVER
13845M:	Bart Van Assche <bart.vanassche@wdc.com>
13846L:	linux-block@vger.kernel.org
13847S:	Maintained
13848F:	drivers/block/skd*[ch]
13849
13850STI AUDIO (ASoC) DRIVERS
13851M:	Arnaud Pouliquen <arnaud.pouliquen@st.com>
13852L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13853S:	Maintained
13854F:	Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
13855F:	sound/soc/sti/
13856
13857STI CEC DRIVER
13858M:	Benjamin Gaignard <benjamin.gaignard@linaro.org>
13859S:	Maintained
13860F:	drivers/staging/media/st-cec/
13861F:	Documentation/devicetree/bindings/media/stih-cec.txt
13862
13863STK1160 USB VIDEO CAPTURE DRIVER
13864M:	Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
13865L:	linux-media@vger.kernel.org
13866T:	git git://linuxtv.org/media_tree.git
13867S:	Maintained
13868F:	drivers/media/usb/stk1160/
13869
13870STM32 AUDIO (ASoC) DRIVERS
13871M:	Olivier Moysan <olivier.moysan@st.com>
13872M:	Arnaud Pouliquen <arnaud.pouliquen@st.com>
13873L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
13874S:	Maintained
13875F:	Documentation/devicetree/bindings/sound/st,stm32-*.txt
13876F:	sound/soc/stm/
13877
13878STM32 TIMER/LPTIMER DRIVERS
13879M:	Fabrice Gasnier <fabrice.gasnier@st.com>
13880S:	Maintained
13881F:	drivers/*/stm32-*timer*
13882F:	drivers/pwm/pwm-stm32*
13883F:	include/linux/*/stm32-*tim*
13884F:	Documentation/ABI/testing/*timer-stm32
13885F:	Documentation/devicetree/bindings/*/stm32-*timer*
13886F:	Documentation/devicetree/bindings/pwm/pwm-stm32*
13887
13888STMMAC ETHERNET DRIVER
13889M:	Giuseppe Cavallaro <peppe.cavallaro@st.com>
13890M:	Alexandre Torgue <alexandre.torgue@st.com>
13891M:	Jose Abreu <joabreu@synopsys.com>
13892L:	netdev@vger.kernel.org
13893W:	http://www.stlinux.com
13894S:	Supported
13895F:	drivers/net/ethernet/stmicro/stmmac/
13896
13897SUN3/3X
13898M:	Sam Creasey <sammy@sammy.net>
13899W:	http://sammy.net/sun3/
13900S:	Maintained
13901F:	arch/m68k/kernel/*sun3*
13902F:	arch/m68k/sun3*/
13903F:	arch/m68k/include/asm/sun3*
13904F:	drivers/net/ethernet/i825xx/sun3*
13905
13906SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
13907M:	Hans de Goede <hdegoede@redhat.com>
13908L:	linux-input@vger.kernel.org
13909S:	Maintained
13910F:	Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
13911F:	drivers/input/keyboard/sun4i-lradc-keys.c
13912
13913SUNDANCE NETWORK DRIVER
13914M:	Denis Kirjanov <kda@linux-powerpc.org>
13915L:	netdev@vger.kernel.org
13916S:	Maintained
13917F:	drivers/net/ethernet/dlink/sundance.c
13918
13919SUPERH
13920M:	Yoshinori Sato <ysato@users.sourceforge.jp>
13921M:	Rich Felker <dalias@libc.org>
13922L:	linux-sh@vger.kernel.org
13923Q:	http://patchwork.kernel.org/project/linux-sh/list/
13924S:	Maintained
13925F:	Documentation/sh/
13926F:	arch/sh/
13927F:	drivers/sh/
13928
13929SUSPEND TO RAM
13930M:	"Rafael J. Wysocki" <rjw@rjwysocki.net>
13931M:	Len Brown <len.brown@intel.com>
13932M:	Pavel Machek <pavel@ucw.cz>
13933L:	linux-pm@vger.kernel.org
13934B:	https://bugzilla.kernel.org
13935S:	Supported
13936F:	Documentation/power/
13937F:	arch/x86/kernel/acpi/
13938F:	drivers/base/power/
13939F:	kernel/power/
13940F:	include/linux/suspend.h
13941F:	include/linux/freezer.h
13942F:	include/linux/pm.h
13943
13944SVGA HANDLING
13945M:	Martin Mares <mj@ucw.cz>
13946L:	linux-video@atrey.karlin.mff.cuni.cz
13947S:	Maintained
13948F:	Documentation/svga.txt
13949F:	arch/x86/boot/video*
13950
13951SWIOTLB SUBSYSTEM
13952M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
13953L:	iommu@lists.linux-foundation.org
13954T:	git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
13955S:	Supported
13956F:	kernel/dma/swiotlb.c
13957F:	arch/*/kernel/pci-swiotlb.c
13958F:	include/linux/swiotlb.h
13959
13960SWITCHDEV
13961M:	Jiri Pirko <jiri@resnulli.us>
13962M:	Ivan Vecera <ivecera@redhat.com>
13963L:	netdev@vger.kernel.org
13964S:	Supported
13965F:	net/switchdev/
13966F:	include/net/switchdev.h
13967
13968SY8106A REGULATOR DRIVER
13969M:	Icenowy Zheng <icenowy@aosc.io>
13970S:	Maintained
13971F:	drivers/regulator/sy8106a-regulator.c
13972F:	Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
13973
13974SYNC FILE FRAMEWORK
13975M:	Sumit Semwal <sumit.semwal@linaro.org>
13976R:	Gustavo Padovan <gustavo@padovan.org>
13977S:	Maintained
13978L:	linux-media@vger.kernel.org
13979L:	dri-devel@lists.freedesktop.org
13980F:	drivers/dma-buf/sync_*
13981F:	drivers/dma-buf/dma-fence*
13982F:	drivers/dma-buf/sw_sync.c
13983F:	include/linux/sync_file.h
13984F:	include/uapi/linux/sync_file.h
13985F:	Documentation/sync_file.txt
13986T:	git git://anongit.freedesktop.org/drm/drm-misc
13987
13988SYNOPSYS ARC ARCHITECTURE
13989M:	Vineet Gupta <vgupta@synopsys.com>
13990L:	linux-snps-arc@lists.infradead.org
13991S:	Supported
13992F:	arch/arc/
13993F:	Documentation/devicetree/bindings/arc/*
13994F:	Documentation/devicetree/bindings/interrupt-controller/snps,arc*
13995F:	drivers/clocksource/arc_timer.c
13996F:	drivers/tty/serial/arc_uart.c
13997T:	git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
13998
13999SYNOPSYS ARC HSDK SDP pll clock driver
14000M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
14001S:	Supported
14002F:	drivers/clk/clk-hsdk-pll.c
14003F:	Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
14004
14005SYNOPSYS ARC SDP clock driver
14006M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
14007S:	Supported
14008F:	drivers/clk/axs10x/*
14009F:	Documentation/devicetree/bindings/clock/snps,pll-clock.txt
14010
14011SYNOPSYS ARC SDP platform support
14012M:	Alexey Brodkin <abrodkin@synopsys.com>
14013S:	Supported
14014F:	arch/arc/plat-axs10x
14015F:	arch/arc/boot/dts/ax*
14016F:	Documentation/devicetree/bindings/arc/axs10*
14017
14018SYNOPSYS AXS10x RESET CONTROLLER DRIVER
14019M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
14020S:	Supported
14021F:	drivers/reset/reset-axs10x.c
14022F:	Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
14023
14024SYNOPSYS DESIGNWARE 8250 UART DRIVER
14025R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
14026S:	Maintained
14027F:	drivers/tty/serial/8250/8250_dw.c
14028
14029SYNOPSYS DESIGNWARE APB GPIO DRIVER
14030M:	Hoan Tran <hotran@apm.com>
14031L:	linux-gpio@vger.kernel.org
14032S:	Maintained
14033F:	drivers/gpio/gpio-dwapb.c
14034F:	Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
14035
14036SYNOPSYS DESIGNWARE AXI DMAC DRIVER
14037M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
14038S:	Maintained
14039F:	drivers/dma/dwi-axi-dmac/
14040F:	Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
14041
14042SYNOPSYS DESIGNWARE DMAC DRIVER
14043M:	Viresh Kumar <vireshk@kernel.org>
14044R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
14045S:	Maintained
14046F:	include/linux/dma/dw.h
14047F:	include/linux/platform_data/dma-dw.h
14048F:	drivers/dma/dw/
14049
14050SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
14051M:	Jose Abreu <Jose.Abreu@synopsys.com>
14052L:	netdev@vger.kernel.org
14053S:	Supported
14054F:	drivers/net/ethernet/synopsys/
14055
14056SYNOPSYS DESIGNWARE I2C DRIVER
14057M:	Jarkko Nikula <jarkko.nikula@linux.intel.com>
14058R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
14059R:	Mika Westerberg <mika.westerberg@linux.intel.com>
14060L:	linux-i2c@vger.kernel.org
14061S:	Maintained
14062F:	drivers/i2c/busses/i2c-designware-*
14063F:	include/linux/platform_data/i2c-designware.h
14064
14065SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
14066M:	Jaehoon Chung <jh80.chung@samsung.com>
14067L:	linux-mmc@vger.kernel.org
14068S:	Maintained
14069F:	drivers/mmc/host/dw_mmc*
14070
14071SYNOPSYS HSDK RESET CONTROLLER DRIVER
14072M:	Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
14073S:	Supported
14074F:	drivers/reset/reset-hsdk.c
14075F:	include/dt-bindings/reset/snps,hsdk-reset.h
14076F:	Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
14077
14078SYSTEM CONFIGURATION (SYSCON)
14079M:	Lee Jones <lee.jones@linaro.org>
14080M:	Arnd Bergmann <arnd@arndb.de>
14081T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14082S:	Supported
14083F:	drivers/mfd/syscon.c
14084
14085SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
14086M:	Sudeep Holla <sudeep.holla@arm.com>
14087L:	linux-arm-kernel@lists.infradead.org
14088S:	Maintained
14089F:	Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
14090F:	drivers/clk/clk-sc[mp]i.c
14091F:	drivers/cpufreq/sc[mp]i-cpufreq.c
14092F:	drivers/firmware/arm_scpi.c
14093F:	drivers/firmware/arm_scmi/
14094F:	include/linux/sc[mp]i_protocol.h
14095
14096SYSTEM RESET/SHUTDOWN DRIVERS
14097M:	Sebastian Reichel <sre@kernel.org>
14098L:	linux-pm@vger.kernel.org
14099T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14100S:	Maintained
14101F:	Documentation/devicetree/bindings/power/reset/
14102F:	drivers/power/reset/
14103
14104SYSTEM TRACE MODULE CLASS
14105M:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
14106S:	Maintained
14107T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
14108F:	Documentation/trace/stm.rst
14109F:	drivers/hwtracing/stm/
14110F:	include/linux/stm.h
14111F:	include/uapi/linux/stm.h
14112
14113SYSV FILESYSTEM
14114M:	Christoph Hellwig <hch@infradead.org>
14115S:	Maintained
14116F:	Documentation/filesystems/sysv-fs.txt
14117F:	fs/sysv/
14118F:	include/linux/sysv_fs.h
14119
14120TARGET SUBSYSTEM
14121M:	"Nicholas A. Bellinger" <nab@linux-iscsi.org>
14122L:	linux-scsi@vger.kernel.org
14123L:	target-devel@vger.kernel.org
14124W:	http://www.linux-iscsi.org
14125W:	http://groups.google.com/group/linux-iscsi-target-dev
14126T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
14127S:	Supported
14128F:	drivers/target/
14129F:	include/target/
14130F:	Documentation/target/
14131
14132TASKSTATS STATISTICS INTERFACE
14133M:	Balbir Singh <bsingharora@gmail.com>
14134S:	Maintained
14135F:	Documentation/accounting/taskstats*
14136F:	include/linux/taskstats*
14137F:	kernel/taskstats.c
14138
14139TC subsystem
14140M:	Jamal Hadi Salim <jhs@mojatatu.com>
14141M:	Cong Wang <xiyou.wangcong@gmail.com>
14142M:	Jiri Pirko <jiri@resnulli.us>
14143L:	netdev@vger.kernel.org
14144S:	Maintained
14145F:	include/net/pkt_cls.h
14146F:	include/net/pkt_sched.h
14147F:	include/net/tc_act/
14148F:	include/uapi/linux/pkt_cls.h
14149F:	include/uapi/linux/pkt_sched.h
14150F:	include/uapi/linux/tc_act/
14151F:	include/uapi/linux/tc_ematch/
14152F:	net/sched/
14153
14154TC90522 MEDIA DRIVER
14155M:	Akihiro Tsukada <tskd08@gmail.com>
14156L:	linux-media@vger.kernel.org
14157S:	Odd Fixes
14158F:	drivers/media/dvb-frontends/tc90522*
14159
14160TCP LOW PRIORITY MODULE
14161M:	"Wong Hoi Sing, Edison" <hswong3i@gmail.com>
14162M:	"Hung Hing Lun, Mike" <hlhung3i@gmail.com>
14163W:	http://tcp-lp-mod.sourceforge.net/
14164S:	Maintained
14165F:	net/ipv4/tcp_lp.c
14166
14167TDA10071 MEDIA DRIVER
14168M:	Antti Palosaari <crope@iki.fi>
14169L:	linux-media@vger.kernel.org
14170W:	https://linuxtv.org
14171W:	http://palosaari.fi/linux/
14172Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14173T:	git git://linuxtv.org/anttip/media_tree.git
14174S:	Maintained
14175F:	drivers/media/dvb-frontends/tda10071*
14176
14177TDA18212 MEDIA DRIVER
14178M:	Antti Palosaari <crope@iki.fi>
14179L:	linux-media@vger.kernel.org
14180W:	https://linuxtv.org
14181W:	http://palosaari.fi/linux/
14182Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14183T:	git git://linuxtv.org/anttip/media_tree.git
14184S:	Maintained
14185F:	drivers/media/tuners/tda18212*
14186
14187TDA18218 MEDIA DRIVER
14188M:	Antti Palosaari <crope@iki.fi>
14189L:	linux-media@vger.kernel.org
14190W:	https://linuxtv.org
14191W:	http://palosaari.fi/linux/
14192Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14193T:	git git://linuxtv.org/anttip/media_tree.git
14194S:	Maintained
14195F:	drivers/media/tuners/tda18218*
14196
14197TDA18250 MEDIA DRIVER
14198M:	Olli Salonen <olli.salonen@iki.fi>
14199L:	linux-media@vger.kernel.org
14200W:	https://linuxtv.org
14201Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14202T:	git git://linuxtv.org/media_tree.git
14203S:	Maintained
14204F:	drivers/media/tuners/tda18250*
14205
14206TDA18271 MEDIA DRIVER
14207M:	Michael Krufky <mkrufky@linuxtv.org>
14208L:	linux-media@vger.kernel.org
14209W:	https://linuxtv.org
14210W:	http://github.com/mkrufky
14211Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14212T:	git git://linuxtv.org/mkrufky/tuners.git
14213S:	Maintained
14214F:	drivers/media/tuners/tda18271*
14215
14216TDA1997x MEDIA DRIVER
14217M:	Tim Harvey <tharvey@gateworks.com>
14218L:	linux-media@vger.kernel.org
14219W:	https://linuxtv.org
14220Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14221S:	Maintained
14222F:	drivers/media/i2c/tda1997x.*
14223
14224TDA827x MEDIA DRIVER
14225M:	Michael Krufky <mkrufky@linuxtv.org>
14226L:	linux-media@vger.kernel.org
14227W:	https://linuxtv.org
14228W:	http://github.com/mkrufky
14229Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14230T:	git git://linuxtv.org/mkrufky/tuners.git
14231S:	Maintained
14232F:	drivers/media/tuners/tda8290.*
14233
14234TDA8290 MEDIA DRIVER
14235M:	Michael Krufky <mkrufky@linuxtv.org>
14236L:	linux-media@vger.kernel.org
14237W:	https://linuxtv.org
14238W:	http://github.com/mkrufky
14239Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14240T:	git git://linuxtv.org/mkrufky/tuners.git
14241S:	Maintained
14242F:	drivers/media/tuners/tda8290.*
14243
14244TDA9840 MEDIA DRIVER
14245M:	Hans Verkuil <hverkuil@xs4all.nl>
14246L:	linux-media@vger.kernel.org
14247T:	git git://linuxtv.org/media_tree.git
14248W:	https://linuxtv.org
14249S:	Maintained
14250F:	drivers/media/i2c/tda9840*
14251
14252TEA5761 TUNER DRIVER
14253M:	Mauro Carvalho Chehab <mchehab@kernel.org>
14254L:	linux-media@vger.kernel.org
14255W:	https://linuxtv.org
14256T:	git git://linuxtv.org/media_tree.git
14257S:	Odd fixes
14258F:	drivers/media/tuners/tea5761.*
14259
14260TEA5767 TUNER DRIVER
14261M:	Mauro Carvalho Chehab <mchehab@kernel.org>
14262L:	linux-media@vger.kernel.org
14263W:	https://linuxtv.org
14264T:	git git://linuxtv.org/media_tree.git
14265S:	Maintained
14266F:	drivers/media/tuners/tea5767.*
14267
14268TEA6415C MEDIA DRIVER
14269M:	Hans Verkuil <hverkuil@xs4all.nl>
14270L:	linux-media@vger.kernel.org
14271T:	git git://linuxtv.org/media_tree.git
14272W:	https://linuxtv.org
14273S:	Maintained
14274F:	drivers/media/i2c/tea6415c*
14275
14276TEA6420 MEDIA DRIVER
14277M:	Hans Verkuil <hverkuil@xs4all.nl>
14278L:	linux-media@vger.kernel.org
14279T:	git git://linuxtv.org/media_tree.git
14280W:	https://linuxtv.org
14281S:	Maintained
14282F:	drivers/media/i2c/tea6420*
14283
14284TEAM DRIVER
14285M:	Jiri Pirko <jiri@resnulli.us>
14286L:	netdev@vger.kernel.org
14287S:	Supported
14288F:	drivers/net/team/
14289F:	include/linux/if_team.h
14290F:	include/uapi/linux/if_team.h
14291
14292TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
14293M:	"Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
14294S:	Maintained
14295F:	arch/x86/platform/ts5500/
14296
14297TECHNOTREND USB IR RECEIVER
14298M:	Sean Young <sean@mess.org>
14299L:	linux-media@vger.kernel.org
14300S:	Maintained
14301F:	drivers/media/rc/ttusbir.c
14302
14303TECHWELL TW9910 VIDEO DECODER
14304L:	linux-media@vger.kernel.org
14305S:	Orphan
14306F:	drivers/media/i2c/tw9910.c
14307F:	include/media/i2c/tw9910.h
14308
14309TEE SUBSYSTEM
14310M:	Jens Wiklander <jens.wiklander@linaro.org>
14311S:	Maintained
14312F:	include/linux/tee_drv.h
14313F:	include/uapi/linux/tee.h
14314F:	drivers/tee/
14315F:	Documentation/tee.txt
14316
14317TEGRA ARCHITECTURE SUPPORT
14318M:	Thierry Reding <thierry.reding@gmail.com>
14319M:	Jonathan Hunter <jonathanh@nvidia.com>
14320L:	linux-tegra@vger.kernel.org
14321Q:	http://patchwork.ozlabs.org/project/linux-tegra/list/
14322T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
14323S:	Supported
14324N:	[^a-z]tegra
14325
14326TEGRA CLOCK DRIVER
14327M:	Peter De Schrijver <pdeschrijver@nvidia.com>
14328M:	Prashant Gaikwad <pgaikwad@nvidia.com>
14329S:	Supported
14330F:	drivers/clk/tegra/
14331
14332TEGRA DMA DRIVERS
14333M:	Laxman Dewangan <ldewangan@nvidia.com>
14334M:	Jon Hunter <jonathanh@nvidia.com>
14335S:	Supported
14336F:	drivers/dma/tegra*
14337
14338TEGRA I2C DRIVER
14339M:	Laxman Dewangan <ldewangan@nvidia.com>
14340S:	Supported
14341F:	drivers/i2c/busses/i2c-tegra.c
14342
14343TEGRA IOMMU DRIVERS
14344M:	Thierry Reding <thierry.reding@gmail.com>
14345L:	linux-tegra@vger.kernel.org
14346S:	Supported
14347F:	drivers/iommu/tegra*
14348
14349TEGRA KBC DRIVER
14350M:	Laxman Dewangan <ldewangan@nvidia.com>
14351S:	Supported
14352F:	drivers/input/keyboard/tegra-kbc.c
14353
14354TEGRA NAND DRIVER
14355M:	Stefan Agner <stefan@agner.ch>
14356M:	Lucas Stach <dev@lynxeye.de>
14357S:	Maintained
14358F:	Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
14359F:	drivers/mtd/nand/raw/tegra_nand.c
14360
14361TEGRA PWM DRIVER
14362M:	Thierry Reding <thierry.reding@gmail.com>
14363S:	Supported
14364F:	drivers/pwm/pwm-tegra.c
14365
14366TEGRA SERIAL DRIVER
14367M:	Laxman Dewangan <ldewangan@nvidia.com>
14368S:	Supported
14369F:	drivers/tty/serial/serial-tegra.c
14370
14371TEGRA SPI DRIVER
14372M:	Laxman Dewangan <ldewangan@nvidia.com>
14373S:	Supported
14374F:	drivers/spi/spi-tegra*
14375
14376TEHUTI ETHERNET DRIVER
14377M:	Andy Gospodarek <andy@greyhouse.net>
14378L:	netdev@vger.kernel.org
14379S:	Supported
14380F:	drivers/net/ethernet/tehuti/*
14381
14382Telecom Clock Driver for MCPL0010
14383M:	Mark Gross <mark.gross@intel.com>
14384S:	Supported
14385F:	drivers/char/tlclk.c
14386
14387TENSILICA XTENSA PORT (xtensa)
14388M:	Chris Zankel <chris@zankel.net>
14389M:	Max Filippov <jcmvbkbc@gmail.com>
14390L:	linux-xtensa@linux-xtensa.org
14391T:	git git://github.com/czankel/xtensa-linux.git
14392S:	Maintained
14393F:	arch/xtensa/
14394F:	drivers/irqchip/irq-xtensa-*
14395
14396Texas Instruments' System Control Interface (TISCI) Protocol Driver
14397M:	Nishanth Menon <nm@ti.com>
14398M:	Tero Kristo <t-kristo@ti.com>
14399M:	Santosh Shilimkar <ssantosh@kernel.org>
14400L:	linux-arm-kernel@lists.infradead.org
14401S:	Maintained
14402F:	Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
14403F:	drivers/firmware/ti_sci*
14404F:	include/linux/soc/ti/ti_sci_protocol.h
14405F:	Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
14406F:	include/dt-bindings/genpd/k2g.h
14407F:	drivers/soc/ti/ti_sci_pm_domains.c
14408F:	Documentation/devicetree/bindings/reset/ti,sci-reset.txt
14409F:	Documentation/devicetree/bindings/clock/ti,sci-clk.txt
14410F:	drivers/clk/keystone/sci-clk.c
14411F:	drivers/reset/reset-ti-sci.c
14412
14413THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
14414M:	Hans Verkuil <hverkuil@xs4all.nl>
14415L:	linux-media@vger.kernel.org
14416T:	git git://linuxtv.org/media_tree.git
14417W:	https://linuxtv.org
14418S:	Maintained
14419F:	drivers/media/radio/radio-raremono.c
14420
14421THERMAL
14422M:	Zhang Rui <rui.zhang@intel.com>
14423M:	Eduardo Valentin <edubezval@gmail.com>
14424R:	Daniel Lezcano <daniel.lezcano@linaro.org>
14425L:	linux-pm@vger.kernel.org
14426T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
14427T:	git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
14428Q:	https://patchwork.kernel.org/project/linux-pm/list/
14429S:	Supported
14430F:	drivers/thermal/
14431F:	include/linux/thermal.h
14432F:	include/uapi/linux/thermal.h
14433F:	include/linux/cpu_cooling.h
14434F:	Documentation/devicetree/bindings/thermal/
14435
14436THERMAL/CPU_COOLING
14437M:	Amit Daniel Kachhap <amit.kachhap@gmail.com>
14438M:	Viresh Kumar <viresh.kumar@linaro.org>
14439M:	Javi Merino <javi.merino@kernel.org>
14440L:	linux-pm@vger.kernel.org
14441S:	Supported
14442F:	Documentation/thermal/cpu-cooling-api.txt
14443F:	drivers/thermal/cpu_cooling.c
14444F:	include/linux/cpu_cooling.h
14445
14446THINKPAD ACPI EXTRAS DRIVER
14447M:	Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
14448L:	ibm-acpi-devel@lists.sourceforge.net
14449L:	platform-driver-x86@vger.kernel.org
14450W:	http://ibm-acpi.sourceforge.net
14451W:	http://thinkwiki.org/wiki/Ibm-acpi
14452T:	git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
14453S:	Maintained
14454F:	drivers/platform/x86/thinkpad_acpi.c
14455
14456THUNDERBOLT DRIVER
14457M:	Andreas Noever <andreas.noever@gmail.com>
14458M:	Michael Jamet <michael.jamet@intel.com>
14459M:	Mika Westerberg <mika.westerberg@linux.intel.com>
14460M:	Yehezkel Bernat <YehezkelShB@gmail.com>
14461T:	git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
14462S:	Maintained
14463F:	Documentation/admin-guide/thunderbolt.rst
14464F:	drivers/thunderbolt/
14465F:	include/linux/thunderbolt.h
14466
14467THUNDERBOLT NETWORK DRIVER
14468M:	Michael Jamet <michael.jamet@intel.com>
14469M:	Mika Westerberg <mika.westerberg@linux.intel.com>
14470M:	Yehezkel Bernat <YehezkelShB@gmail.com>
14471L:	netdev@vger.kernel.org
14472S:	Maintained
14473F:	drivers/net/thunderbolt.c
14474
14475THUNDERX GPIO DRIVER
14476M:	David Daney <david.daney@cavium.com>
14477S:	Maintained
14478F:	drivers/gpio/gpio-thunderx.c
14479
14480TI AM437X VPFE DRIVER
14481M:	"Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14482L:	linux-media@vger.kernel.org
14483W:	https://linuxtv.org
14484Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14485T:	git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14486S:	Maintained
14487F:	drivers/media/platform/am437x/
14488
14489TI BANDGAP AND THERMAL DRIVER
14490M:	Eduardo Valentin <edubezval@gmail.com>
14491M:	Keerthy <j-keerthy@ti.com>
14492L:	linux-pm@vger.kernel.org
14493L:	linux-omap@vger.kernel.org
14494S:	Maintained
14495F:	drivers/thermal/ti-soc-thermal/
14496
14497TI BQ27XXX POWER SUPPLY DRIVER
14498R:	Andrew F. Davis <afd@ti.com>
14499F:	include/linux/power/bq27xxx_battery.h
14500F:	drivers/power/supply/bq27xxx_battery.c
14501F:	drivers/power/supply/bq27xxx_battery_i2c.c
14502
14503TI CDCE706 CLOCK DRIVER
14504M:	Max Filippov <jcmvbkbc@gmail.com>
14505S:	Maintained
14506F:	drivers/clk/clk-cdce706.c
14507
14508TI CLOCK DRIVER
14509M:	Tero Kristo <t-kristo@ti.com>
14510L:	linux-omap@vger.kernel.org
14511S:	Maintained
14512F:	drivers/clk/ti/
14513F:	include/linux/clk/ti.h
14514
14515TI DAVINCI MACHINE SUPPORT
14516M:	Sekhar Nori <nsekhar@ti.com>
14517M:	Kevin Hilman <khilman@kernel.org>
14518L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14519T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
14520S:	Supported
14521F:	arch/arm/mach-davinci/
14522F:	drivers/i2c/busses/i2c-davinci.c
14523F:	arch/arm/boot/dts/da850*
14524
14525TI DAVINCI SERIES CLOCK DRIVER
14526M:	David Lechner <david@lechnology.com>
14527R:	Sekhar Nori <nsekhar@ti.com>
14528S:	Maintained
14529F:	Documentation/devicetree/bindings/clock/ti/davinci/
14530F:	drivers/clk/davinci/
14531
14532TI DAVINCI SERIES GPIO DRIVER
14533M:	Keerthy <j-keerthy@ti.com>
14534L:	linux-gpio@vger.kernel.org
14535S:	Maintained
14536F:	Documentation/devicetree/bindings/gpio/gpio-davinci.txt
14537F:	drivers/gpio/gpio-davinci.c
14538
14539TI DAVINCI SERIES MEDIA DRIVER
14540M:	"Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14541L:	linux-media@vger.kernel.org
14542W:	https://linuxtv.org
14543Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14544T:	git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14545S:	Maintained
14546F:	drivers/media/platform/davinci/
14547F:	include/media/davinci/
14548
14549TI ETHERNET SWITCH DRIVER (CPSW)
14550R:	Grygorii Strashko <grygorii.strashko@ti.com>
14551L:	linux-omap@vger.kernel.org
14552L:	netdev@vger.kernel.org
14553S:	Maintained
14554F:	drivers/net/ethernet/ti/cpsw*
14555F:	drivers/net/ethernet/ti/davinci*
14556
14557TI FLASH MEDIA INTERFACE DRIVER
14558M:	Alex Dubov <oakad@yahoo.com>
14559S:	Maintained
14560F:	drivers/misc/tifm*
14561F:	drivers/mmc/host/tifm_sd.c
14562F:	include/linux/tifm.h
14563
14564TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
14565M:	Santosh Shilimkar <ssantosh@kernel.org>
14566L:	linux-kernel@vger.kernel.org
14567L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14568S:	Maintained
14569F:	drivers/soc/ti/*
14570T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
14571
14572TI LM49xxx FAMILY ASoC CODEC DRIVERS
14573M:	M R Swami Reddy <mr.swami.reddy@ti.com>
14574M:	Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
14575L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
14576S:	Maintained
14577F:	sound/soc/codecs/lm49453*
14578F:	sound/soc/codecs/isabelle*
14579
14580TI LP855x BACKLIGHT DRIVER
14581M:	Milo Kim <milo.kim@ti.com>
14582S:	Maintained
14583F:	Documentation/backlight/lp855x-driver.txt
14584F:	drivers/video/backlight/lp855x_bl.c
14585F:	include/linux/platform_data/lp855x.h
14586
14587TI LP8727 CHARGER DRIVER
14588M:	Milo Kim <milo.kim@ti.com>
14589S:	Maintained
14590F:	drivers/power/supply/lp8727_charger.c
14591F:	include/linux/platform_data/lp8727.h
14592
14593TI LP8788 MFD DRIVER
14594M:	Milo Kim <milo.kim@ti.com>
14595S:	Maintained
14596F:	drivers/iio/adc/lp8788_adc.c
14597F:	drivers/leds/leds-lp8788.c
14598F:	drivers/mfd/lp8788*.c
14599F:	drivers/power/supply/lp8788-charger.c
14600F:	drivers/regulator/lp8788-*.c
14601F:	include/linux/mfd/lp8788*.h
14602
14603TI NETCP ETHERNET DRIVER
14604M:	Wingman Kwok <w-kwok2@ti.com>
14605M:	Murali Karicheri <m-karicheri2@ti.com>
14606L:	netdev@vger.kernel.org
14607S:	Maintained
14608F:	drivers/net/ethernet/ti/netcp*
14609
14610TI TAS571X FAMILY ASoC CODEC DRIVER
14611M:	Kevin Cernekee <cernekee@chromium.org>
14612L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
14613S:	Odd Fixes
14614F:	sound/soc/codecs/tas571x*
14615
14616TI TRF7970A NFC DRIVER
14617M:	Mark Greer <mgreer@animalcreek.com>
14618L:	linux-wireless@vger.kernel.org
14619L:	linux-nfc@lists.01.org (moderated for non-subscribers)
14620S:	Supported
14621F:	drivers/nfc/trf7970a.c
14622F:	Documentation/devicetree/bindings/net/nfc/trf7970a.txt
14623
14624TI TWL4030 SERIES SOC CODEC DRIVER
14625M:	Peter Ujfalusi <peter.ujfalusi@ti.com>
14626L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
14627S:	Maintained
14628F:	sound/soc/codecs/twl4030*
14629
14630TI VPE/CAL DRIVERS
14631M:	Benoit Parrot <bparrot@ti.com>
14632L:	linux-media@vger.kernel.org
14633W:	http://linuxtv.org/
14634Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14635S:	Maintained
14636F:	drivers/media/platform/ti-vpe/
14637
14638TI WILINK WIRELESS DRIVERS
14639L:	linux-wireless@vger.kernel.org
14640W:	http://wireless.kernel.org/en/users/Drivers/wl12xx
14641W:	http://wireless.kernel.org/en/users/Drivers/wl1251
14642T:	git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
14643S:	Orphan
14644F:	drivers/net/wireless/ti/
14645F:	include/linux/wl12xx.h
14646
14647TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
14648M:	John Stultz <john.stultz@linaro.org>
14649M:	Thomas Gleixner <tglx@linutronix.de>
14650R:	Stephen Boyd <sboyd@kernel.org>
14651L:	linux-kernel@vger.kernel.org
14652T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14653S:	Supported
14654F:	include/linux/clocksource.h
14655F:	include/linux/time.h
14656F:	include/linux/timex.h
14657F:	include/uapi/linux/time.h
14658F:	include/uapi/linux/timex.h
14659F:	kernel/time/clocksource.c
14660F:	kernel/time/time*.c
14661F:	kernel/time/alarmtimer.c
14662F:	kernel/time/ntp.c
14663F:	tools/testing/selftests/timers/
14664
14665TIPC NETWORK LAYER
14666M:	Jon Maloy <jon.maloy@ericsson.com>
14667M:	Ying Xue <ying.xue@windriver.com>
14668L:	netdev@vger.kernel.org (core kernel code)
14669L:	tipc-discussion@lists.sourceforge.net (user apps, general discussion)
14670W:	http://tipc.sourceforge.net/
14671S:	Maintained
14672F:	include/uapi/linux/tipc*.h
14673F:	net/tipc/
14674
14675TLAN NETWORK DRIVER
14676M:	Samuel Chessman <chessman@tux.org>
14677L:	tlan-devel@lists.sourceforge.net (subscribers-only)
14678W:	http://sourceforge.net/projects/tlan/
14679S:	Maintained
14680F:	Documentation/networking/tlan.txt
14681F:	drivers/net/ethernet/ti/tlan.*
14682
14683TM6000 VIDEO4LINUX DRIVER
14684M:	Mauro Carvalho Chehab <mchehab@kernel.org>
14685L:	linux-media@vger.kernel.org
14686W:	https://linuxtv.org
14687T:	git git://linuxtv.org/media_tree.git
14688S:	Odd fixes
14689F:	drivers/media/usb/tm6000/
14690F:	Documentation/media/v4l-drivers/tm6000*
14691
14692TMIO/SDHI MMC DRIVER
14693M:	Wolfram Sang <wsa+renesas@sang-engineering.com>
14694L:	linux-mmc@vger.kernel.org
14695S:	Supported
14696F:	drivers/mmc/host/tmio_mmc*
14697F:	drivers/mmc/host/renesas_sdhi*
14698F:	include/linux/mfd/tmio.h
14699
14700TMP401 HARDWARE MONITOR DRIVER
14701M:	Guenter Roeck <linux@roeck-us.net>
14702L:	linux-hwmon@vger.kernel.org
14703S:	Maintained
14704F:	Documentation/hwmon/tmp401
14705F:	drivers/hwmon/tmp401.c
14706
14707TMPFS (SHMEM FILESYSTEM)
14708M:	Hugh Dickins <hughd@google.com>
14709L:	linux-mm@kvack.org
14710S:	Maintained
14711F:	include/linux/shmem_fs.h
14712F:	mm/shmem.c
14713
14714TOMOYO SECURITY MODULE
14715M:	Kentaro Takeda <takedakn@nttdata.co.jp>
14716M:	Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
14717L:	tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
14718L:	tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
14719L:	tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
14720L:	tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
14721W:	http://tomoyo.sourceforge.jp/
14722T:	quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
14723S:	Maintained
14724F:	security/tomoyo/
14725
14726TOPSTAR LAPTOP EXTRAS DRIVER
14727M:	Herton Ronaldo Krzesinski <herton@canonical.com>
14728L:	platform-driver-x86@vger.kernel.org
14729S:	Maintained
14730F:	drivers/platform/x86/topstar-laptop.c
14731
14732TORTURE-TEST MODULES
14733M:	Davidlohr Bueso <dave@stgolabs.net>
14734M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
14735M:	Josh Triplett <josh@joshtriplett.org>
14736L:	linux-kernel@vger.kernel.org
14737S:	Supported
14738T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
14739F:	Documentation/RCU/torture.txt
14740F:	kernel/torture.c
14741F:	kernel/rcu/rcutorture.c
14742F:	kernel/rcu/rcuperf.c
14743F:	kernel/locking/locktorture.c
14744
14745TOSHIBA ACPI EXTRAS DRIVER
14746M:	Azael Avalos <coproscefalo@gmail.com>
14747L:	platform-driver-x86@vger.kernel.org
14748S:	Maintained
14749F:	drivers/platform/x86/toshiba_acpi.c
14750
14751TOSHIBA BLUETOOTH DRIVER
14752M:	Azael Avalos <coproscefalo@gmail.com>
14753L:	platform-driver-x86@vger.kernel.org
14754S:	Maintained
14755F:	drivers/platform/x86/toshiba_bluetooth.c
14756
14757TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
14758M:	Azael Avalos <coproscefalo@gmail.com>
14759L:	platform-driver-x86@vger.kernel.org
14760S:	Maintained
14761F:	drivers/platform/x86/toshiba_haps.c
14762
14763TOSHIBA SMM DRIVER
14764M:	Jonathan Buzzard <jonathan@buzzard.org.uk>
14765W:	http://www.buzzard.org.uk/toshiba/
14766S:	Maintained
14767F:	drivers/char/toshiba.c
14768F:	include/linux/toshiba.h
14769F:	include/uapi/linux/toshiba.h
14770
14771TOSHIBA TC358743 DRIVER
14772M:	Mats Randgaard <matrandg@cisco.com>
14773L:	linux-media@vger.kernel.org
14774S:	Maintained
14775F:	drivers/media/i2c/tc358743*
14776F:	include/media/i2c/tc358743.h
14777
14778TOSHIBA WMI HOTKEYS DRIVER
14779M:	Azael Avalos <coproscefalo@gmail.com>
14780L:	platform-driver-x86@vger.kernel.org
14781S:	Maintained
14782F:	drivers/platform/x86/toshiba-wmi.c
14783
14784TPM DEVICE DRIVER
14785M:	Peter Huewe <peterhuewe@gmx.de>
14786M:	Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
14787R:	Jason Gunthorpe <jgg@ziepe.ca>
14788L:	linux-integrity@vger.kernel.org
14789Q:	https://patchwork.kernel.org/project/linux-integrity/list/
14790W:	https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
14791T:	git git://git.infradead.org/users/jjs/linux-tpmdd.git
14792S:	Maintained
14793F:	drivers/char/tpm/
14794
14795TRACING
14796M:	Steven Rostedt <rostedt@goodmis.org>
14797M:	Ingo Molnar <mingo@redhat.com>
14798T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14799S:	Maintained
14800F:	Documentation/trace/ftrace.rst
14801F:	arch/*/*/*/ftrace.h
14802F:	arch/*/kernel/ftrace.c
14803F:	include/*/ftrace.h
14804F:	include/linux/trace*.h
14805F:	include/trace/
14806F:	kernel/trace/
14807F:	tools/testing/selftests/ftrace/
14808
14809TRACING MMIO ACCESSES (MMIOTRACE)
14810M:	Steven Rostedt <rostedt@goodmis.org>
14811M:	Ingo Molnar <mingo@kernel.org>
14812R:	Karol Herbst <karolherbst@gmail.com>
14813R:	Pekka Paalanen <ppaalanen@gmail.com>
14814S:	Maintained
14815L:	linux-kernel@vger.kernel.org
14816L:	nouveau@lists.freedesktop.org
14817F:	kernel/trace/trace_mmiotrace.c
14818F:	include/linux/mmiotrace.h
14819F:	arch/x86/mm/kmmio.c
14820F:	arch/x86/mm/mmio-mod.c
14821F:	arch/x86/mm/testmmiotrace.c
14822
14823TRIVIAL PATCHES
14824M:	Jiri Kosina <trivial@kernel.org>
14825T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
14826S:	Maintained
14827K:	^Subject:.*(?i)trivial
14828
14829TEMPO SEMICONDUCTOR DRIVERS
14830M:	Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
14831S:	Maintained
14832F:	sound/soc/codecs/tscs*.c
14833F:	sound/soc/codecs/tscs*.h
14834F:	Documentation/devicetree/bindings/sound/tscs*.txt
14835
14836TTY LAYER
14837M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14838M:	Jiri Slaby <jslaby@suse.com>
14839S:	Supported
14840T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
14841F:	Documentation/serial/
14842F:	drivers/tty/
14843F:	drivers/tty/serial/serial_core.c
14844F:	include/linux/serial_core.h
14845F:	include/linux/serial.h
14846F:	include/linux/tty.h
14847F:	include/uapi/linux/serial_core.h
14848F:	include/uapi/linux/serial.h
14849F:	include/uapi/linux/tty.h
14850
14851TUA9001 MEDIA DRIVER
14852M:	Antti Palosaari <crope@iki.fi>
14853L:	linux-media@vger.kernel.org
14854W:	https://linuxtv.org
14855W:	http://palosaari.fi/linux/
14856Q:	http://patchwork.linuxtv.org/project/linux-media/list/
14857T:	git git://linuxtv.org/anttip/media_tree.git
14858S:	Maintained
14859F:	drivers/media/tuners/tua9001*
14860
14861TULIP NETWORK DRIVERS
14862L:	netdev@vger.kernel.org
14863L:	linux-parisc@vger.kernel.org
14864S:	Orphan
14865F:	drivers/net/ethernet/dec/tulip/
14866
14867TUN/TAP driver
14868M:	Maxim Krasnyansky <maxk@qti.qualcomm.com>
14869W:	http://vtun.sourceforge.net/tun
14870S:	Maintained
14871F:	Documentation/networking/tuntap.txt
14872F:	arch/um/os-Linux/drivers/
14873
14874TURBOCHANNEL SUBSYSTEM
14875M:	"Maciej W. Rozycki" <macro@linux-mips.org>
14876M:	Ralf Baechle <ralf@linux-mips.org>
14877L:	linux-mips@linux-mips.org
14878Q:	http://patchwork.linux-mips.org/project/linux-mips/list/
14879S:	Maintained
14880F:	drivers/tc/
14881F:	include/linux/tc.h
14882
14883TURBOSTAT UTILITY
14884M:	"Len Brown" <lenb@kernel.org>
14885L:	linux-pm@vger.kernel.org
14886B:	https://bugzilla.kernel.org
14887Q:	https://patchwork.kernel.org/project/linux-pm/list/
14888T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
14889S:	Supported
14890F:	tools/power/x86/turbostat/
14891
14892TW5864 VIDEO4LINUX DRIVER
14893M:	Bluecherry Maintainers <maintainers@bluecherrydvr.com>
14894M:	Anton Sviridenko <anton@corp.bluecherry.net>
14895M:	Andrey Utkin <andrey.utkin@corp.bluecherry.net>
14896M:	Andrey Utkin <andrey_utkin@fastmail.com>
14897L:	linux-media@vger.kernel.org
14898S:	Supported
14899F:	drivers/media/pci/tw5864/
14900
14901TW68 VIDEO4LINUX DRIVER
14902M:	Hans Verkuil <hverkuil@xs4all.nl>
14903L:	linux-media@vger.kernel.org
14904T:	git git://linuxtv.org/media_tree.git
14905W:	https://linuxtv.org
14906S:	Odd Fixes
14907F:	drivers/media/pci/tw68/
14908
14909TW686X VIDEO4LINUX DRIVER
14910M:	Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
14911L:	linux-media@vger.kernel.org
14912T:	git git://linuxtv.org/media_tree.git
14913W:	http://linuxtv.org
14914S:	Maintained
14915F:	drivers/media/pci/tw686x/
14916
14917UBI FILE SYSTEM (UBIFS)
14918M:	Richard Weinberger <richard@nod.at>
14919M:	Artem Bityutskiy <dedekind1@gmail.com>
14920M:	Adrian Hunter <adrian.hunter@intel.com>
14921L:	linux-mtd@lists.infradead.org
14922T:	git git://git.infradead.org/ubifs-2.6.git
14923W:	http://www.linux-mtd.infradead.org/doc/ubifs.html
14924S:	Supported
14925F:	Documentation/filesystems/ubifs.txt
14926F:	fs/ubifs/
14927
14928UCLINUX (M68KNOMMU AND COLDFIRE)
14929M:	Greg Ungerer <gerg@linux-m68k.org>
14930W:	http://www.linux-m68k.org/
14931W:	http://www.uclinux.org/
14932L:	linux-m68k@lists.linux-m68k.org
14933L:	uclinux-dev@uclinux.org  (subscribers-only)
14934T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
14935S:	Maintained
14936F:	arch/m68k/coldfire/
14937F:	arch/m68k/68*/
14938F:	arch/m68k/*/*_no.*
14939F:	arch/m68k/include/asm/*_no.*
14940
14941UDF FILESYSTEM
14942M:	Jan Kara <jack@suse.com>
14943S:	Maintained
14944F:	Documentation/filesystems/udf.txt
14945F:	fs/udf/
14946
14947UDRAW TABLET
14948M:	Bastien Nocera <hadess@hadess.net>
14949L:	linux-input@vger.kernel.org
14950S:	Maintained
14951F:	drivers/hid/hid-udraw-ps3.c
14952
14953UFS FILESYSTEM
14954M:	Evgeniy Dushistov <dushistov@mail.ru>
14955S:	Maintained
14956F:	Documentation/filesystems/ufs.txt
14957F:	fs/ufs/
14958
14959UHID USERSPACE HID IO DRIVER:
14960M:	David Herrmann <dh.herrmann@googlemail.com>
14961L:	linux-input@vger.kernel.org
14962S:	Maintained
14963F:	drivers/hid/uhid.c
14964F:	include/uapi/linux/uhid.h
14965
14966ULPI BUS
14967M:	Heikki Krogerus <heikki.krogerus@linux.intel.com>
14968L:	linux-usb@vger.kernel.org
14969S:	Maintained
14970F:	drivers/usb/common/ulpi.c
14971F:	include/linux/ulpi/
14972
14973ULTRA-WIDEBAND (UWB) SUBSYSTEM:
14974L:	linux-usb@vger.kernel.org
14975S:	Orphan
14976F:	drivers/uwb/
14977F:	include/linux/uwb.h
14978F:	include/linux/uwb/
14979
14980UNICORE32 ARCHITECTURE:
14981M:	Guan Xuetao <gxt@pku.edu.cn>
14982W:	http://mprc.pku.edu.cn/~guanxuetao/linux
14983S:	Maintained
14984T:	git git://github.com/gxt/linux.git
14985F:	arch/unicore32/
14986
14987UNIFDEF
14988M:	Tony Finch <dot@dotat.at>
14989W:	http://dotat.at/prog/unifdef
14990S:	Maintained
14991F:	scripts/unifdef.c
14992
14993UNIFORM CDROM DRIVER
14994M:	Jens Axboe <axboe@kernel.dk>
14995W:	http://www.kernel.dk
14996S:	Maintained
14997F:	Documentation/cdrom/
14998F:	drivers/cdrom/cdrom.c
14999F:	include/linux/cdrom.h
15000F:	include/uapi/linux/cdrom.h
15001
15002UNISYS S-PAR DRIVERS
15003M:	David Kershner <david.kershner@unisys.com>
15004L:	sparmaintainer@unisys.com (Unisys internal)
15005S:	Supported
15006F:	include/linux/visorbus.h
15007F:	drivers/visorbus/
15008F:	drivers/staging/unisys/
15009
15010UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
15011M:	Vinayak Holikatti <vinholikatti@gmail.com>
15012L:	linux-scsi@vger.kernel.org
15013S:	Supported
15014F:	Documentation/scsi/ufs.txt
15015F:	drivers/scsi/ufs/
15016
15017UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
15018M:	Joao Pinto <jpinto@synopsys.com>
15019L:	linux-scsi@vger.kernel.org
15020S:	Supported
15021F:	drivers/scsi/ufs/*dwc*
15022
15023UNSORTED BLOCK IMAGES (UBI)
15024M:	Artem Bityutskiy <dedekind1@gmail.com>
15025M:	Richard Weinberger <richard@nod.at>
15026W:	http://www.linux-mtd.infradead.org/
15027L:	linux-mtd@lists.infradead.org
15028T:	git git://git.infradead.org/ubifs-2.6.git
15029S:	Supported
15030F:	drivers/mtd/ubi/
15031F:	include/linux/mtd/ubi.h
15032F:	include/uapi/mtd/ubi-user.h
15033
15034USB "USBNET" DRIVER FRAMEWORK
15035M:	Oliver Neukum <oneukum@suse.com>
15036L:	netdev@vger.kernel.org
15037W:	http://www.linux-usb.org/usbnet
15038S:	Maintained
15039F:	drivers/net/usb/usbnet.c
15040F:	include/linux/usb/usbnet.h
15041
15042USB ACM DRIVER
15043M:	Oliver Neukum <oneukum@suse.com>
15044L:	linux-usb@vger.kernel.org
15045S:	Maintained
15046F:	Documentation/usb/acm.txt
15047F:	drivers/usb/class/cdc-acm.*
15048
15049USB AR5523 WIRELESS DRIVER
15050M:	Pontus Fuchs <pontus.fuchs@gmail.com>
15051L:	linux-wireless@vger.kernel.org
15052S:	Maintained
15053F:	drivers/net/wireless/ath/ar5523/
15054
15055USB ATTACHED SCSI
15056M:	Oliver Neukum <oneukum@suse.com>
15057L:	linux-usb@vger.kernel.org
15058L:	linux-scsi@vger.kernel.org
15059S:	Maintained
15060F:	drivers/usb/storage/uas.c
15061
15062USB CDC ETHERNET DRIVER
15063M:	Oliver Neukum <oliver@neukum.org>
15064L:	linux-usb@vger.kernel.org
15065S:	Maintained
15066F:	drivers/net/usb/cdc_*.c
15067F:	include/uapi/linux/usb/cdc.h
15068
15069USB CHAOSKEY DRIVER
15070M:	Keith Packard <keithp@keithp.com>
15071L:	linux-usb@vger.kernel.org
15072S:	Maintained
15073F:	drivers/usb/misc/chaoskey.c
15074
15075USB CYPRESS C67X00 DRIVER
15076M:	Peter Korsgaard <jacmet@sunsite.dk>
15077L:	linux-usb@vger.kernel.org
15078S:	Maintained
15079F:	drivers/usb/c67x00/
15080
15081USB DAVICOM DM9601 DRIVER
15082M:	Peter Korsgaard <jacmet@sunsite.dk>
15083L:	netdev@vger.kernel.org
15084W:	http://www.linux-usb.org/usbnet
15085S:	Maintained
15086F:	drivers/net/usb/dm9601.c
15087
15088USB DIAMOND RIO500 DRIVER
15089M:	Cesar Miquel <miquel@df.uba.ar>
15090L:	rio500-users@lists.sourceforge.net
15091W:	http://rio500.sourceforge.net
15092S:	Maintained
15093F:	drivers/usb/misc/rio500*
15094
15095USB EHCI DRIVER
15096M:	Alan Stern <stern@rowland.harvard.edu>
15097L:	linux-usb@vger.kernel.org
15098S:	Maintained
15099F:	Documentation/usb/ehci.txt
15100F:	drivers/usb/host/ehci*
15101
15102USB GADGET/PERIPHERAL SUBSYSTEM
15103M:	Felipe Balbi <balbi@kernel.org>
15104L:	linux-usb@vger.kernel.org
15105W:	http://www.linux-usb.org/gadget
15106T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
15107S:	Maintained
15108F:	drivers/usb/gadget/
15109F:	include/linux/usb/gadget*
15110
15111USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
15112M:	Jiri Kosina <jikos@kernel.org>
15113R:	Benjamin Tissoires <benjamin.tissoires@redhat.com>
15114L:	linux-usb@vger.kernel.org
15115T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
15116S:	Maintained
15117F:	Documentation/hid/hiddev.txt
15118F:	drivers/hid/usbhid/
15119
15120USB INTEL XHCI ROLE MUX DRIVER
15121M:	Hans de Goede <hdegoede@redhat.com>
15122L:	linux-usb@vger.kernel.org
15123S:	Maintained
15124F:	drivers/usb/roles/intel-xhci-usb-role-switch.c
15125
15126USB ISP116X DRIVER
15127M:	Olav Kongas <ok@artecdesign.ee>
15128L:	linux-usb@vger.kernel.org
15129S:	Maintained
15130F:	drivers/usb/host/isp116x*
15131F:	include/linux/usb/isp116x.h
15132
15133USB LAN78XX ETHERNET DRIVER
15134M:	Woojung Huh <woojung.huh@microchip.com>
15135M:	Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
15136L:	netdev@vger.kernel.org
15137S:	Maintained
15138F:	Documentation/devicetree/bindings/net/microchip,lan78xx.txt
15139F:	drivers/net/usb/lan78xx.*
15140F:	include/dt-bindings/net/microchip-lan78xx.h
15141
15142USB MASS STORAGE DRIVER
15143M:	Alan Stern <stern@rowland.harvard.edu>
15144L:	linux-usb@vger.kernel.org
15145L:	usb-storage@lists.one-eyed-alien.net
15146S:	Maintained
15147W:	http://www.one-eyed-alien.net/~mdharm/linux-usb/
15148F:	drivers/usb/storage/
15149
15150USB MIDI DRIVER
15151M:	Clemens Ladisch <clemens@ladisch.de>
15152L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
15153T:	git git://git.alsa-project.org/alsa-kernel.git
15154S:	Maintained
15155F:	sound/usb/midi.*
15156
15157USB NETWORKING DRIVERS
15158L:	linux-usb@vger.kernel.org
15159S:	Odd Fixes
15160F:	drivers/net/usb/
15161
15162USB OHCI DRIVER
15163M:	Alan Stern <stern@rowland.harvard.edu>
15164L:	linux-usb@vger.kernel.org
15165S:	Maintained
15166F:	Documentation/usb/ohci.txt
15167F:	drivers/usb/host/ohci*
15168
15169USB OTG FSM (Finite State Machine)
15170M:	Peter Chen <Peter.Chen@nxp.com>
15171T:	git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
15172L:	linux-usb@vger.kernel.org
15173S:	Maintained
15174F:	drivers/usb/common/usb-otg-fsm.c
15175
15176USB OVER IP DRIVER
15177M:	Valentina Manea <valentina.manea.m@gmail.com>
15178M:	Shuah Khan <shuah@kernel.org>
15179L:	linux-usb@vger.kernel.org
15180S:	Maintained
15181F:	Documentation/usb/usbip_protocol.txt
15182F:	drivers/usb/usbip/
15183F:	tools/usb/usbip/
15184F:	tools/testing/selftests/drivers/usb/usbip/
15185
15186USB PEGASUS DRIVER
15187M:	Petko Manolov <petkan@nucleusys.com>
15188L:	linux-usb@vger.kernel.org
15189L:	netdev@vger.kernel.org
15190T:	git git://github.com/petkan/pegasus.git
15191W:	https://github.com/petkan/pegasus
15192S:	Maintained
15193F:	drivers/net/usb/pegasus.*
15194
15195USB PHY LAYER
15196M:	Felipe Balbi <balbi@kernel.org>
15197L:	linux-usb@vger.kernel.org
15198T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
15199S:	Maintained
15200F:	drivers/usb/phy/
15201
15202USB PRINTER DRIVER (usblp)
15203M:	Pete Zaitcev <zaitcev@redhat.com>
15204L:	linux-usb@vger.kernel.org
15205S:	Supported
15206F:	drivers/usb/class/usblp.c
15207
15208USB QMI WWAN NETWORK DRIVER
15209M:	Bjørn Mork <bjorn@mork.no>
15210L:	netdev@vger.kernel.org
15211S:	Maintained
15212F:	Documentation/ABI/testing/sysfs-class-net-qmi
15213F:	drivers/net/usb/qmi_wwan.c
15214
15215USB RTL8150 DRIVER
15216M:	Petko Manolov <petkan@nucleusys.com>
15217L:	linux-usb@vger.kernel.org
15218L:	netdev@vger.kernel.org
15219T:	git git://github.com/petkan/rtl8150.git
15220W:	https://github.com/petkan/rtl8150
15221S:	Maintained
15222F:	drivers/net/usb/rtl8150.c
15223
15224USB SERIAL SUBSYSTEM
15225M:	Johan Hovold <johan@kernel.org>
15226L:	linux-usb@vger.kernel.org
15227T:	git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
15228S:	Maintained
15229F:	Documentation/usb/usb-serial.txt
15230F:	drivers/usb/serial/
15231F:	include/linux/usb/serial.h
15232
15233USB SMSC75XX ETHERNET DRIVER
15234M:	Steve Glendinning <steve.glendinning@shawell.net>
15235L:	netdev@vger.kernel.org
15236S:	Maintained
15237F:	drivers/net/usb/smsc75xx.*
15238
15239USB SMSC95XX ETHERNET DRIVER
15240M:	Steve Glendinning <steve.glendinning@shawell.net>
15241M:	Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
15242L:	netdev@vger.kernel.org
15243S:	Maintained
15244F:	drivers/net/usb/smsc95xx.*
15245
15246USB SUBSYSTEM
15247M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15248L:	linux-usb@vger.kernel.org
15249W:	http://www.linux-usb.org
15250T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
15251S:	Supported
15252F:	Documentation/devicetree/bindings/usb/
15253F:	Documentation/usb/
15254F:	drivers/usb/
15255F:	include/linux/usb.h
15256F:	include/linux/usb/
15257
15258USB TYPEC PI3USB30532 MUX DRIVER
15259M:	Hans de Goede <hdegoede@redhat.com>
15260L:	linux-usb@vger.kernel.org
15261S:	Maintained
15262F:	drivers/usb/typec/mux/pi3usb30532.c
15263
15264USB TYPEC CLASS
15265M:	Heikki Krogerus <heikki.krogerus@linux.intel.com>
15266L:	linux-usb@vger.kernel.org
15267S:	Maintained
15268F:	Documentation/ABI/testing/sysfs-class-typec
15269F:	Documentation/driver-api/usb/typec.rst
15270F:	drivers/usb/typec/
15271F:	include/linux/usb/typec.h
15272
15273USB TYPEC BUS FOR ALTERNATE MODES
15274M:	Heikki Krogerus <heikki.krogerus@linux.intel.com>
15275L:	linux-usb@vger.kernel.org
15276S:	Maintained
15277F:	Documentation/ABI/testing/sysfs-bus-typec
15278F:	Documentation/driver-api/usb/typec_bus.rst
15279F:	drivers/usb/typec/altmodes/
15280F:	include/linux/usb/typec_altmode.h
15281
15282USB UHCI DRIVER
15283M:	Alan Stern <stern@rowland.harvard.edu>
15284L:	linux-usb@vger.kernel.org
15285S:	Maintained
15286F:	drivers/usb/host/uhci*
15287
15288USB VIDEO CLASS
15289M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15290L:	linux-uvc-devel@lists.sourceforge.net (subscribers-only)
15291L:	linux-media@vger.kernel.org
15292T:	git git://linuxtv.org/media_tree.git
15293W:	http://www.ideasonboard.org/uvc/
15294S:	Maintained
15295F:	drivers/media/usb/uvc/
15296F:	include/uapi/linux/uvcvideo.h
15297
15298USB VISION DRIVER
15299M:	Hans Verkuil <hverkuil@xs4all.nl>
15300L:	linux-media@vger.kernel.org
15301T:	git git://linuxtv.org/media_tree.git
15302W:	https://linuxtv.org
15303S:	Odd Fixes
15304F:	drivers/media/usb/usbvision/
15305
15306USB WEBCAM GADGET
15307M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15308L:	linux-usb@vger.kernel.org
15309S:	Maintained
15310F:	drivers/usb/gadget/function/*uvc*
15311F:	drivers/usb/gadget/legacy/webcam.c
15312F:	include/uapi/linux/usb/g_uvc.h
15313
15314USB WIRELESS RNDIS DRIVER (rndis_wlan)
15315M:	Jussi Kivilinna <jussi.kivilinna@iki.fi>
15316L:	linux-wireless@vger.kernel.org
15317S:	Maintained
15318F:	drivers/net/wireless/rndis_wlan.c
15319
15320USB XHCI DRIVER
15321M:	Mathias Nyman <mathias.nyman@intel.com>
15322L:	linux-usb@vger.kernel.org
15323S:	Supported
15324F:	drivers/usb/host/xhci*
15325F:	drivers/usb/host/pci-quirks*
15326
15327USB ZD1201 DRIVER
15328L:	linux-wireless@vger.kernel.org
15329W:	http://linux-lc100020.sourceforge.net
15330S:	Orphan
15331F:	drivers/net/wireless/zydas/zd1201.*
15332
15333USB ZR364XX DRIVER
15334M:	Antoine Jacquet <royale@zerezo.com>
15335L:	linux-usb@vger.kernel.org
15336L:	linux-media@vger.kernel.org
15337T:	git git://linuxtv.org/media_tree.git
15338W:	http://royale.zerezo.com/zr364xx/
15339S:	Maintained
15340F:	Documentation/media/v4l-drivers/zr364xx*
15341F:	drivers/media/usb/zr364xx/
15342
15343USER-MODE LINUX (UML)
15344M:	Jeff Dike <jdike@addtoit.com>
15345M:	Richard Weinberger <richard@nod.at>
15346L:	linux-um@lists.infradead.org
15347W:	http://user-mode-linux.sourceforge.net
15348T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
15349S:	Maintained
15350F:	Documentation/virtual/uml/
15351F:	arch/um/
15352F:	arch/x86/um/
15353F:	fs/hostfs/
15354F:	fs/hppfs/
15355
15356USERSPACE I/O (UIO)
15357M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15358S:	Maintained
15359T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
15360F:	Documentation/driver-api/uio-howto.rst
15361F:	drivers/uio/
15362F:	include/linux/uio*.h
15363
15364UTIL-LINUX PACKAGE
15365M:	Karel Zak <kzak@redhat.com>
15366L:	util-linux@vger.kernel.org
15367W:	http://en.wikipedia.org/wiki/Util-linux
15368T:	git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
15369S:	Maintained
15370
15371UUID HELPERS
15372M:	Christoph Hellwig <hch@lst.de>
15373R:	Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15374L:	linux-kernel@vger.kernel.org
15375T:	git git://git.infradead.org/users/hch/uuid.git
15376F:	lib/uuid.c
15377F:	lib/test_uuid.c
15378F:	include/linux/uuid.h
15379F:	include/uapi/linux/uuid.h
15380S:	Maintained
15381
15382UVESAFB DRIVER
15383M:	Michal Januszewski <spock@gentoo.org>
15384L:	linux-fbdev@vger.kernel.org
15385W:	http://dev.gentoo.org/~spock/projects/uvesafb/
15386S:	Maintained
15387F:	Documentation/fb/uvesafb.txt
15388F:	drivers/video/fbdev/uvesafb.*
15389
15390VF610 NAND DRIVER
15391M:	Stefan Agner <stefan@agner.ch>
15392L:	linux-mtd@lists.infradead.org
15393S:	Supported
15394F:	drivers/mtd/nand/raw/vf610_nfc.c
15395
15396VFAT/FAT/MSDOS FILESYSTEM
15397M:	OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
15398S:	Maintained
15399F:	Documentation/filesystems/vfat.txt
15400F:	fs/fat/
15401
15402VFIO DRIVER
15403M:	Alex Williamson <alex.williamson@redhat.com>
15404L:	kvm@vger.kernel.org
15405T:	git git://github.com/awilliam/linux-vfio.git
15406S:	Maintained
15407F:	Documentation/vfio.txt
15408F:	drivers/vfio/
15409F:	include/linux/vfio.h
15410F:	include/uapi/linux/vfio.h
15411
15412VFIO MEDIATED DEVICE DRIVERS
15413M:	Kirti Wankhede <kwankhede@nvidia.com>
15414L:	kvm@vger.kernel.org
15415S:	Maintained
15416F:	Documentation/vfio-mediated-device.txt
15417F:	drivers/vfio/mdev/
15418F:	include/linux/mdev.h
15419F:	samples/vfio-mdev/
15420
15421VFIO PLATFORM DRIVER
15422M:	Eric Auger <eric.auger@redhat.com>
15423L:	kvm@vger.kernel.org
15424S:	Maintained
15425F:	drivers/vfio/platform/
15426
15427VGA_SWITCHEROO
15428R:	Lukas Wunner <lukas@wunner.de>
15429S:	Maintained
15430F:	Documentation/gpu/vga-switcheroo.rst
15431F:	drivers/gpu/vga/vga_switcheroo.c
15432F:	include/linux/vga_switcheroo.h
15433T:	git git://anongit.freedesktop.org/drm/drm-misc
15434
15435VIA RHINE NETWORK DRIVER
15436S:	Orphan
15437F:	drivers/net/ethernet/via/via-rhine.c
15438
15439VIA SD/MMC CARD CONTROLLER DRIVER
15440M:	Bruce Chang <brucechang@via.com.tw>
15441M:	Harald Welte <HaraldWelte@viatech.com>
15442S:	Maintained
15443F:	drivers/mmc/host/via-sdmmc.c
15444
15445VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
15446M:	Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
15447L:	linux-fbdev@vger.kernel.org
15448S:	Maintained
15449F:	include/linux/via-core.h
15450F:	include/linux/via-gpio.h
15451F:	include/linux/via_i2c.h
15452F:	drivers/video/fbdev/via/
15453
15454VIA VELOCITY NETWORK DRIVER
15455M:	Francois Romieu <romieu@fr.zoreil.com>
15456L:	netdev@vger.kernel.org
15457S:	Maintained
15458F:	drivers/net/ethernet/via/via-velocity.*
15459
15460VICODEC VIRTUAL CODEC DRIVER
15461M:	Hans Verkuil <hans.verkuil@cisco.com>
15462L:	linux-media@vger.kernel.org
15463T:	git git://linuxtv.org/media_tree.git
15464W:	https://linuxtv.org
15465S:	Maintained
15466F:	drivers/media/platform/vicodec/*
15467
15468VIDEO MULTIPLEXER DRIVER
15469M:	Philipp Zabel <p.zabel@pengutronix.de>
15470L:	linux-media@vger.kernel.org
15471S:	Maintained
15472F:	drivers/media/platform/video-mux.c
15473
15474VIDEO I2C POLLING DRIVER
15475M:	Matt Ranostay <matt.ranostay@konsulko.com>
15476L:	linux-media@vger.kernel.org
15477S:	Maintained
15478F:	drivers/media/i2c/video-i2c.c
15479
15480VIDEOBUF2 FRAMEWORK
15481M:	Pawel Osciak <pawel@osciak.com>
15482M:	Marek Szyprowski <m.szyprowski@samsung.com>
15483M:	Kyungmin Park <kyungmin.park@samsung.com>
15484L:	linux-media@vger.kernel.org
15485S:	Maintained
15486F:	drivers/media/v4l2-core/videobuf2-*
15487F:	include/media/videobuf2-*
15488
15489VIMC VIRTUAL MEDIA CONTROLLER DRIVER
15490M:	Helen Koike <helen.koike@collabora.com>
15491L:	linux-media@vger.kernel.org
15492T:	git git://linuxtv.org/media_tree.git
15493W:	https://linuxtv.org
15494S:	Maintained
15495F:	drivers/media/platform/vimc/*
15496
15497VIRT LIB
15498M:	Alex Williamson <alex.williamson@redhat.com>
15499M:	Paolo Bonzini <pbonzini@redhat.com>
15500L:	kvm@vger.kernel.org
15501S:	Supported
15502F:	virt/lib/
15503
15504VIRTIO AND VHOST VSOCK DRIVER
15505M:	Stefan Hajnoczi <stefanha@redhat.com>
15506L:	kvm@vger.kernel.org
15507L:	virtualization@lists.linux-foundation.org
15508L:	netdev@vger.kernel.org
15509S:	Maintained
15510F:	include/linux/virtio_vsock.h
15511F:	include/uapi/linux/virtio_vsock.h
15512F:	include/uapi/linux/vsockmon.h
15513F:	include/uapi/linux/vm_sockets_diag.h
15514F:	net/vmw_vsock/diag.c
15515F:	net/vmw_vsock/af_vsock_tap.c
15516F:	net/vmw_vsock/virtio_transport_common.c
15517F:	net/vmw_vsock/virtio_transport.c
15518F:	drivers/net/vsockmon.c
15519F:	drivers/vhost/vsock.c
15520F:	drivers/vhost/vsock.h
15521F:	tools/testing/vsock/
15522
15523VIRTIO CONSOLE DRIVER
15524M:	Amit Shah <amit@kernel.org>
15525L:	virtualization@lists.linux-foundation.org
15526S:	Maintained
15527F:	drivers/char/virtio_console.c
15528F:	include/linux/virtio_console.h
15529F:	include/uapi/linux/virtio_console.h
15530
15531VIRTIO CORE, NET AND BLOCK DRIVERS
15532M:	"Michael S. Tsirkin" <mst@redhat.com>
15533M:	Jason Wang <jasowang@redhat.com>
15534L:	virtualization@lists.linux-foundation.org
15535S:	Maintained
15536F:	Documentation/devicetree/bindings/virtio/
15537F:	drivers/virtio/
15538F:	tools/virtio/
15539F:	drivers/net/virtio_net.c
15540F:	drivers/block/virtio_blk.c
15541F:	include/linux/virtio*.h
15542F:	include/uapi/linux/virtio_*.h
15543F:	drivers/crypto/virtio/
15544F:	mm/balloon_compaction.c
15545
15546VIRTIO CRYPTO DRIVER
15547M:	Gonglei <arei.gonglei@huawei.com>
15548L:	virtualization@lists.linux-foundation.org
15549L:	linux-crypto@vger.kernel.org
15550S:	Maintained
15551F:	drivers/crypto/virtio/
15552F:	include/uapi/linux/virtio_crypto.h
15553
15554VIRTIO DRIVERS FOR S390
15555M:	Cornelia Huck <cohuck@redhat.com>
15556M:	Halil Pasic <pasic@linux.ibm.com>
15557L:	linux-s390@vger.kernel.org
15558L:	virtualization@lists.linux-foundation.org
15559L:	kvm@vger.kernel.org
15560S:	Supported
15561F:	drivers/s390/virtio/
15562F:	arch/s390/include/uapi/asm/virtio-ccw.h
15563
15564VIRTIO GPU DRIVER
15565M:	David Airlie <airlied@linux.ie>
15566M:	Gerd Hoffmann <kraxel@redhat.com>
15567L:	dri-devel@lists.freedesktop.org
15568L:	virtualization@lists.linux-foundation.org
15569T:	git git://anongit.freedesktop.org/drm/drm-misc
15570S:	Maintained
15571F:	drivers/gpu/drm/virtio/
15572F:	include/uapi/linux/virtio_gpu.h
15573
15574VIRTIO HOST (VHOST)
15575M:	"Michael S. Tsirkin" <mst@redhat.com>
15576M:	Jason Wang <jasowang@redhat.com>
15577L:	kvm@vger.kernel.org
15578L:	virtualization@lists.linux-foundation.org
15579L:	netdev@vger.kernel.org
15580T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
15581S:	Maintained
15582F:	drivers/vhost/
15583F:	include/uapi/linux/vhost.h
15584
15585VIRTIO INPUT DRIVER
15586M:	Gerd Hoffmann <kraxel@redhat.com>
15587S:	Maintained
15588F:	drivers/virtio/virtio_input.c
15589F:	include/uapi/linux/virtio_input.h
15590
15591VIRTUAL BOX GUEST DEVICE DRIVER
15592M:	Hans de Goede <hdegoede@redhat.com>
15593M:	Arnd Bergmann <arnd@arndb.de>
15594M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15595S:	Maintained
15596F:	include/linux/vbox_utils.h
15597F:	include/uapi/linux/vbox*.h
15598F:	drivers/virt/vboxguest/
15599
15600VIRTUAL SERIO DEVICE DRIVER
15601M:	Stephen Chandler Paul <thatslyude@gmail.com>
15602S:	Maintained
15603F:	drivers/input/serio/userio.c
15604F:	include/uapi/linux/userio.h
15605
15606VIVID VIRTUAL VIDEO DRIVER
15607M:	Hans Verkuil <hverkuil@xs4all.nl>
15608L:	linux-media@vger.kernel.org
15609T:	git git://linuxtv.org/media_tree.git
15610W:	https://linuxtv.org
15611S:	Maintained
15612F:	drivers/media/platform/vivid/*
15613
15614VLYNQ BUS
15615M:	Florian Fainelli <f.fainelli@gmail.com>
15616L:	openwrt-devel@lists.openwrt.org (subscribers-only)
15617S:	Maintained
15618F:	drivers/vlynq/vlynq.c
15619F:	include/linux/vlynq.h
15620
15621VME SUBSYSTEM
15622M:	Martyn Welch <martyn@welchs.me.uk>
15623M:	Manohar Vanga <manohar.vanga@gmail.com>
15624M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15625L:	devel@driverdev.osuosl.org
15626S:	Maintained
15627T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
15628F:	Documentation/driver-api/vme.rst
15629F:	drivers/staging/vme/
15630F:	drivers/vme/
15631F:	include/linux/vme*
15632
15633VMWARE BALLOON DRIVER
15634M:	Xavier Deguillard <xdeguillard@vmware.com>
15635M:	Nadav Amit <namit@vmware.com>
15636M:	"VMware, Inc." <pv-drivers@vmware.com>
15637L:	linux-kernel@vger.kernel.org
15638S:	Maintained
15639F:	drivers/misc/vmw_balloon.c
15640
15641VMWARE HYPERVISOR INTERFACE
15642M:	Alok Kataria <akataria@vmware.com>
15643L:	virtualization@lists.linux-foundation.org
15644S:	Supported
15645F:	arch/x86/kernel/cpu/vmware.c
15646
15647VMWARE PVRDMA DRIVER
15648M:	Adit Ranadive <aditr@vmware.com>
15649M:	VMware PV-Drivers <pv-drivers@vmware.com>
15650L:	linux-rdma@vger.kernel.org
15651S:	Maintained
15652F:	drivers/infiniband/hw/vmw_pvrdma/
15653
15654VMware PVSCSI driver
15655M:	Jim Gill <jgill@vmware.com>
15656M:	VMware PV-Drivers <pv-drivers@vmware.com>
15657L:	linux-scsi@vger.kernel.org
15658S:	Maintained
15659F:	drivers/scsi/vmw_pvscsi.c
15660F:	drivers/scsi/vmw_pvscsi.h
15661
15662VMWARE VMMOUSE SUBDRIVER
15663M:	"VMware Graphics" <linux-graphics-maintainer@vmware.com>
15664M:	"VMware, Inc." <pv-drivers@vmware.com>
15665L:	linux-input@vger.kernel.org
15666S:	Maintained
15667F:	drivers/input/mouse/vmmouse.c
15668F:	drivers/input/mouse/vmmouse.h
15669
15670VMWARE VMXNET3 ETHERNET DRIVER
15671M:	Ronak Doshi <doshir@vmware.com>
15672M:	"VMware, Inc." <pv-drivers@vmware.com>
15673L:	netdev@vger.kernel.org
15674S:	Maintained
15675F:	drivers/net/vmxnet3/
15676
15677VOCORE VOCORE2 BOARD
15678M:	Harvey Hunt <harveyhuntnexus@gmail.com>
15679L:	linux-mips@linux-mips.org
15680S:	Maintained
15681F:	arch/mips/boot/dts/ralink/vocore2.dts
15682
15683VOLTAGE AND CURRENT REGULATOR FRAMEWORK
15684M:	Liam Girdwood <lgirdwood@gmail.com>
15685M:	Mark Brown <broonie@kernel.org>
15686L:	linux-kernel@vger.kernel.org
15687W:	http://www.slimlogic.co.uk/?p=48
15688T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
15689S:	Supported
15690F:	Documentation/devicetree/bindings/regulator/
15691F:	Documentation/power/regulator/
15692F:	drivers/regulator/
15693F:	include/dt-bindings/regulator/
15694F:	include/linux/regulator/
15695
15696VRF
15697M:	David Ahern <dsa@cumulusnetworks.com>
15698M:	Shrijeet Mukherjee <shm@cumulusnetworks.com>
15699L:	netdev@vger.kernel.org
15700S:	Maintained
15701F:	drivers/net/vrf.c
15702F:	Documentation/networking/vrf.txt
15703
15704VT1211 HARDWARE MONITOR DRIVER
15705M:	Juerg Haefliger <juergh@gmail.com>
15706L:	linux-hwmon@vger.kernel.org
15707S:	Maintained
15708F:	Documentation/hwmon/vt1211
15709F:	drivers/hwmon/vt1211.c
15710
15711VT8231 HARDWARE MONITOR DRIVER
15712M:	Roger Lucas <vt8231@hiddenengine.co.uk>
15713L:	linux-hwmon@vger.kernel.org
15714S:	Maintained
15715F:	drivers/hwmon/vt8231.c
15716
15717VUB300 USB to SDIO/SD/MMC bridge chip
15718M:	Tony Olech <tony.olech@elandigitalsystems.com>
15719L:	linux-mmc@vger.kernel.org
15720L:	linux-usb@vger.kernel.org
15721S:	Supported
15722F:	drivers/mmc/host/vub300.c
15723
15724W1 DALLAS'S 1-WIRE BUS
15725M:	Evgeniy Polyakov <zbr@ioremap.net>
15726S:	Maintained
15727F:	Documentation/devicetree/bindings/w1/
15728F:	Documentation/w1/
15729F:	drivers/w1/
15730F:	include/linux/w1.h
15731
15732W83791D HARDWARE MONITORING DRIVER
15733M:	Marc Hulsman <m.hulsman@tudelft.nl>
15734L:	linux-hwmon@vger.kernel.org
15735S:	Maintained
15736F:	Documentation/hwmon/w83791d
15737F:	drivers/hwmon/w83791d.c
15738
15739W83793 HARDWARE MONITORING DRIVER
15740M:	Rudolf Marek <r.marek@assembler.cz>
15741L:	linux-hwmon@vger.kernel.org
15742S:	Maintained
15743F:	Documentation/hwmon/w83793
15744F:	drivers/hwmon/w83793.c
15745
15746W83795 HARDWARE MONITORING DRIVER
15747M:	Jean Delvare <jdelvare@suse.com>
15748L:	linux-hwmon@vger.kernel.org
15749S:	Maintained
15750F:	drivers/hwmon/w83795.c
15751
15752W83L51xD SD/MMC CARD INTERFACE DRIVER
15753M:	Pierre Ossman <pierre@ossman.eu>
15754S:	Maintained
15755F:	drivers/mmc/host/wbsd.*
15756
15757WACOM PROTOCOL 4 SERIAL TABLETS
15758M:	Julian Squires <julian@cipht.net>
15759M:	Hans de Goede <hdegoede@redhat.com>
15760L:	linux-input@vger.kernel.org
15761S:	Maintained
15762F:	drivers/input/tablet/wacom_serial4.c
15763
15764WATCHDOG DEVICE DRIVERS
15765M:	Wim Van Sebroeck <wim@linux-watchdog.org>
15766M:	Guenter Roeck <linux@roeck-us.net>
15767L:	linux-watchdog@vger.kernel.org
15768W:	http://www.linux-watchdog.org/
15769T:	git git://www.linux-watchdog.org/linux-watchdog.git
15770S:	Maintained
15771F:	Documentation/devicetree/bindings/watchdog/
15772F:	Documentation/watchdog/
15773F:	drivers/watchdog/
15774F:	include/linux/watchdog.h
15775F:	include/uapi/linux/watchdog.h
15776
15777WHISKEYCOVE PMIC GPIO DRIVER
15778M:	Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
15779L:	linux-gpio@vger.kernel.org
15780S:	Maintained
15781F:	drivers/gpio/gpio-wcove.c
15782
15783WIIMOTE HID DRIVER
15784M:	David Herrmann <dh.herrmann@googlemail.com>
15785L:	linux-input@vger.kernel.org
15786S:	Maintained
15787F:	drivers/hid/hid-wiimote*
15788
15789WILOCITY WIL6210 WIRELESS DRIVER
15790M:	Maya Erez <merez@codeaurora.org>
15791L:	linux-wireless@vger.kernel.org
15792L:	wil6210@qti.qualcomm.com
15793S:	Supported
15794W:	http://wireless.kernel.org/en/users/Drivers/wil6210
15795F:	drivers/net/wireless/ath/wil6210/
15796
15797WIMAX STACK
15798M:	Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
15799M:	linux-wimax@intel.com
15800L:	wimax@linuxwimax.org (subscribers-only)
15801S:	Supported
15802W:	http://linuxwimax.org
15803F:	Documentation/wimax/README.wimax
15804F:	include/linux/wimax/debug.h
15805F:	include/net/wimax.h
15806F:	include/uapi/linux/wimax.h
15807F:	net/wimax/
15808
15809WINBOND CIR DRIVER
15810M:	David Härdeman <david@hardeman.nu>
15811S:	Maintained
15812F:	drivers/media/rc/winbond-cir.c
15813
15814WINSYSTEMS EBC-C384 WATCHDOG DRIVER
15815M:	William Breathitt Gray <vilhelm.gray@gmail.com>
15816L:	linux-watchdog@vger.kernel.org
15817S:	Maintained
15818F:	drivers/watchdog/ebc-c384_wdt.c
15819
15820WINSYSTEMS WS16C48 GPIO DRIVER
15821M:	William Breathitt Gray <vilhelm.gray@gmail.com>
15822L:	linux-gpio@vger.kernel.org
15823S:	Maintained
15824F:	drivers/gpio/gpio-ws16c48.c
15825
15826WISTRON LAPTOP BUTTON DRIVER
15827M:	Miloslav Trmac <mitr@volny.cz>
15828S:	Maintained
15829F:	drivers/input/misc/wistron_btns.c
15830
15831WL3501 WIRELESS PCMCIA CARD DRIVER
15832L:	linux-wireless@vger.kernel.org
15833S:	Odd fixes
15834F:	drivers/net/wireless/wl3501*
15835
15836WOLFSON MICROELECTRONICS DRIVERS
15837L:	patches@opensource.cirrus.com
15838T:	git https://github.com/CirrusLogic/linux-drivers.git
15839W:	https://github.com/CirrusLogic/linux-drivers/wiki
15840S:	Supported
15841F:	Documentation/hwmon/wm83??
15842F:	Documentation/devicetree/bindings/extcon/extcon-arizona.txt
15843F:	Documentation/devicetree/bindings/regulator/arizona-regulator.txt
15844F:	Documentation/devicetree/bindings/mfd/arizona.txt
15845F:	Documentation/devicetree/bindings/mfd/wm831x.txt
15846F:	Documentation/devicetree/bindings/sound/wlf,arizona.txt
15847F:	arch/arm/mach-s3c64xx/mach-crag6410*
15848F:	drivers/clk/clk-wm83*.c
15849F:	drivers/extcon/extcon-arizona.c
15850F:	drivers/leds/leds-wm83*.c
15851F:	drivers/gpio/gpio-*wm*.c
15852F:	drivers/gpio/gpio-arizona.c
15853F:	drivers/hwmon/wm83??-hwmon.c
15854F:	drivers/input/misc/wm831x-on.c
15855F:	drivers/input/touchscreen/wm831x-ts.c
15856F:	drivers/input/touchscreen/wm97*.c
15857F:	drivers/mfd/arizona*
15858F:	drivers/mfd/wm*.c
15859F:	drivers/mfd/cs47l24*
15860F:	drivers/power/supply/wm83*.c
15861F:	drivers/rtc/rtc-wm83*.c
15862F:	drivers/regulator/wm8*.c
15863F:	drivers/regulator/arizona*
15864F:	drivers/video/backlight/wm83*_bl.c
15865F:	drivers/watchdog/wm83*_wdt.c
15866F:	include/linux/mfd/arizona/
15867F:	include/linux/mfd/wm831x/
15868F:	include/linux/mfd/wm8350/
15869F:	include/linux/mfd/wm8400*
15870F:	include/linux/regulator/arizona*
15871F:	include/linux/wm97xx.h
15872F:	include/sound/wm????.h
15873F:	sound/soc/codecs/arizona.?
15874F:	sound/soc/codecs/wm*
15875F:	sound/soc/codecs/cs47l24*
15876
15877WORKQUEUE
15878M:	Tejun Heo <tj@kernel.org>
15879R:	Lai Jiangshan <jiangshanlai@gmail.com>
15880T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
15881S:	Maintained
15882F:	include/linux/workqueue.h
15883F:	kernel/workqueue.c
15884F:	Documentation/core-api/workqueue.rst
15885
15886X-POWERS AXP288 PMIC DRIVERS
15887M:	Hans de Goede <hdegoede@redhat.com>
15888S:	Maintained
15889N:	axp288
15890F:	drivers/acpi/pmic/intel_pmic_xpower.c
15891
15892X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
15893M:	Chen-Yu Tsai <wens@csie.org>
15894L:	linux-kernel@vger.kernel.org
15895S:	Maintained
15896N:	axp[128]
15897
15898X.25 NETWORK LAYER
15899M:	Andrew Hendry <andrew.hendry@gmail.com>
15900L:	linux-x25@vger.kernel.org
15901S:	Odd Fixes
15902F:	Documentation/networking/x25*
15903F:	include/net/x25*
15904F:	net/x25/
15905
15906X86 ARCHITECTURE (32-BIT AND 64-BIT)
15907M:	Thomas Gleixner <tglx@linutronix.de>
15908M:	Ingo Molnar <mingo@redhat.com>
15909R:	"H. Peter Anvin" <hpa@zytor.com>
15910M:	x86@kernel.org
15911L:	linux-kernel@vger.kernel.org
15912T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15913S:	Maintained
15914F:	Documentation/devicetree/bindings/x86/
15915F:	Documentation/x86/
15916F:	arch/x86/
15917
15918X86 ENTRY CODE
15919M:	Andy Lutomirski <luto@kernel.org>
15920L:	linux-kernel@vger.kernel.org
15921T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
15922S:	Maintained
15923F:	arch/x86/entry/
15924
15925X86 MCE INFRASTRUCTURE
15926M:	Tony Luck <tony.luck@intel.com>
15927M:	Borislav Petkov <bp@alien8.de>
15928L:	linux-edac@vger.kernel.org
15929S:	Maintained
15930F:	arch/x86/kernel/cpu/mcheck/*
15931
15932X86 MICROCODE UPDATE SUPPORT
15933M:	Borislav Petkov <bp@alien8.de>
15934S:	Maintained
15935F:	arch/x86/kernel/cpu/microcode/*
15936
15937X86 PLATFORM DRIVERS
15938M:	Darren Hart <dvhart@infradead.org>
15939M:	Andy Shevchenko <andy@infradead.org>
15940L:	platform-driver-x86@vger.kernel.org
15941T:	git git://git.infradead.org/linux-platform-drivers-x86.git
15942S:	Maintained
15943F:	drivers/platform/x86/
15944F:	drivers/platform/olpc/
15945
15946X86 VDSO
15947M:	Andy Lutomirski <luto@kernel.org>
15948L:	linux-kernel@vger.kernel.org
15949T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
15950S:	Maintained
15951F:	arch/x86/entry/vdso/
15952
15953XC2028/3028 TUNER DRIVER
15954M:	Mauro Carvalho Chehab <mchehab@kernel.org>
15955L:	linux-media@vger.kernel.org
15956W:	https://linuxtv.org
15957T:	git git://linuxtv.org/media_tree.git
15958S:	Maintained
15959F:	drivers/media/tuners/tuner-xc2028.*
15960
15961XDP SOCKETS (AF_XDP)
15962M:	Björn Töpel <bjorn.topel@intel.com>
15963M:	Magnus Karlsson <magnus.karlsson@intel.com>
15964L:	netdev@vger.kernel.org
15965S:	Maintained
15966F:	kernel/bpf/xskmap.c
15967F:	net/xdp/
15968
15969XEN BLOCK SUBSYSTEM
15970M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15971M:	Roger Pau Monné <roger.pau@citrix.com>
15972L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
15973S:	Supported
15974F:	drivers/block/xen-blkback/*
15975F:	drivers/block/xen*
15976
15977XEN HYPERVISOR ARM
15978M:	Stefano Stabellini <sstabellini@kernel.org>
15979L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
15980S:	Maintained
15981F:	arch/arm/xen/
15982F:	arch/arm/include/asm/xen/
15983
15984XEN HYPERVISOR ARM64
15985M:	Stefano Stabellini <sstabellini@kernel.org>
15986L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
15987S:	Maintained
15988F:	arch/arm64/xen/
15989F:	arch/arm64/include/asm/xen/
15990
15991XEN HYPERVISOR INTERFACE
15992M:	Boris Ostrovsky <boris.ostrovsky@oracle.com>
15993M:	Juergen Gross <jgross@suse.com>
15994L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
15995T:	git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
15996S:	Supported
15997F:	arch/x86/xen/
15998F:	drivers/*/xen-*front.c
15999F:	drivers/xen/
16000F:	arch/x86/include/asm/xen/
16001F:	arch/x86/include/asm/pvclock-abi.h
16002F:	include/xen/
16003F:	include/uapi/xen/
16004F:	Documentation/ABI/stable/sysfs-hypervisor-xen
16005F:	Documentation/ABI/testing/sysfs-hypervisor-xen
16006
16007XEN NETWORK BACKEND DRIVER
16008M:	Wei Liu <wei.liu2@citrix.com>
16009M:	Paul Durrant <paul.durrant@citrix.com>
16010L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
16011L:	netdev@vger.kernel.org
16012S:	Supported
16013F:	drivers/net/xen-netback/*
16014
16015XEN PCI SUBSYSTEM
16016M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16017L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
16018S:	Supported
16019F:	arch/x86/pci/*xen*
16020F:	drivers/pci/*xen*
16021
16022XEN PVSCSI DRIVERS
16023M:	Juergen Gross <jgross@suse.com>
16024L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
16025L:	linux-scsi@vger.kernel.org
16026S:	Supported
16027F:	drivers/scsi/xen-scsifront.c
16028F:	drivers/xen/xen-scsiback.c
16029F:	include/xen/interface/io/vscsiif.h
16030
16031XEN SWIOTLB SUBSYSTEM
16032M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16033L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
16034L:	iommu@lists.linux-foundation.org
16035S:	Supported
16036F:	arch/x86/xen/*swiotlb*
16037F:	drivers/xen/*swiotlb*
16038
16039XEN SOUND FRONTEND DRIVER
16040M:	Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
16041L:	xen-devel@lists.xenproject.org (moderated for non-subscribers)
16042L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
16043S:	Supported
16044F:	sound/xen/*
16045
16046XFS FILESYSTEM
16047M:	Darrick J. Wong <darrick.wong@oracle.com>
16048M:	linux-xfs@vger.kernel.org
16049L:	linux-xfs@vger.kernel.org
16050W:	http://xfs.org/
16051T:	git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
16052S:	Supported
16053F:	Documentation/filesystems/xfs.txt
16054F:	fs/xfs/
16055
16056XILINX AXI ETHERNET DRIVER
16057M:	Anirudha Sarangi <anirudh@xilinx.com>
16058M:	John Linn <John.Linn@xilinx.com>
16059S:	Maintained
16060F:	drivers/net/ethernet/xilinx/xilinx_axienet*
16061
16062XILINX UARTLITE SERIAL DRIVER
16063M:	Peter Korsgaard <jacmet@sunsite.dk>
16064L:	linux-serial@vger.kernel.org
16065S:	Maintained
16066F:	drivers/tty/serial/uartlite.c
16067
16068XILINX VIDEO IP CORES
16069M:	Hyun Kwon <hyun.kwon@xilinx.com>
16070M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
16071L:	linux-media@vger.kernel.org
16072T:	git git://linuxtv.org/media_tree.git
16073S:	Supported
16074F:	Documentation/devicetree/bindings/media/xilinx/
16075F:	drivers/media/platform/xilinx/
16076F:	include/uapi/linux/xilinx-v4l2-controls.h
16077
16078XILLYBUS DRIVER
16079M:	Eli Billauer <eli.billauer@gmail.com>
16080L:	linux-kernel@vger.kernel.org
16081S:	Supported
16082F:	drivers/char/xillybus/
16083
16084XLP9XX I2C DRIVER
16085M:	George Cherian <george.cherian@cavium.com>
16086M:	Jan Glauber <jglauber@cavium.com>
16087L:	linux-i2c@vger.kernel.org
16088W:	http://www.cavium.com
16089S:	Supported
16090F:	drivers/i2c/busses/i2c-xlp9xx.c
16091
16092XRA1403 GPIO EXPANDER
16093M:	Nandor Han <nandor.han@ge.com>
16094M:	Semi Malinen <semi.malinen@ge.com>
16095L:	linux-gpio@vger.kernel.org
16096S:	Maintained
16097F:	drivers/gpio/gpio-xra1403.c
16098F:	Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
16099
16100XTENSA XTFPGA PLATFORM SUPPORT
16101M:	Max Filippov <jcmvbkbc@gmail.com>
16102L:	linux-xtensa@linux-xtensa.org
16103S:	Maintained
16104F:	drivers/spi/spi-xtensa-xtfpga.c
16105F:	sound/soc/xtensa/xtfpga-i2s.c
16106
16107YAM DRIVER FOR AX.25
16108M:	Jean-Paul Roubelat <jpr@f6fbb.org>
16109L:	linux-hams@vger.kernel.org
16110S:	Maintained
16111F:	drivers/net/hamradio/yam*
16112F:	include/linux/yam.h
16113
16114YAMA SECURITY MODULE
16115M:	Kees Cook <keescook@chromium.org>
16116T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
16117S:	Supported
16118F:	security/yama/
16119F:	Documentation/admin-guide/LSM/Yama.rst
16120
16121YEALINK PHONE DRIVER
16122M:	Henk Vergonet <Henk.Vergonet@gmail.com>
16123L:	usbb2k-api-dev@nongnu.org
16124S:	Maintained
16125F:	Documentation/input/devices/yealink.rst
16126F:	drivers/input/misc/yealink.*
16127
16128Z8530 DRIVER FOR AX.25
16129M:	Joerg Reuter <jreuter@yaina.de>
16130W:	http://yaina.de/jreuter/
16131W:	http://www.qsl.net/dl1bke/
16132L:	linux-hams@vger.kernel.org
16133S:	Maintained
16134F:	Documentation/networking/z8530drv.txt
16135F:	drivers/net/hamradio/*scc.c
16136F:	drivers/net/hamradio/z8530.h
16137
16138ZBUD COMPRESSED PAGE ALLOCATOR
16139M:	Seth Jennings <sjenning@redhat.com>
16140M:	Dan Streetman <ddstreet@ieee.org>
16141L:	linux-mm@kvack.org
16142S:	Maintained
16143F:	mm/zbud.c
16144F:	include/linux/zbud.h
16145
16146ZD1211RW WIRELESS DRIVER
16147M:	Daniel Drake <dsd@gentoo.org>
16148M:	Ulrich Kunitz <kune@deine-taler.de>
16149W:	http://zd1211.ath.cx/wiki/DriverRewrite
16150L:	linux-wireless@vger.kernel.org
16151L:	zd1211-devs@lists.sourceforge.net (subscribers-only)
16152S:	Maintained
16153F:	drivers/net/wireless/zydas/zd1211rw/
16154
16155ZD1301 MEDIA DRIVER
16156M:	Antti Palosaari <crope@iki.fi>
16157L:	linux-media@vger.kernel.org
16158W:	https://linuxtv.org/
16159W:	http://palosaari.fi/linux/
16160Q:	https://patchwork.linuxtv.org/project/linux-media/list/
16161S:	Maintained
16162F:	drivers/media/usb/dvb-usb-v2/zd1301*
16163
16164ZD1301_DEMOD MEDIA DRIVER
16165M:	Antti Palosaari <crope@iki.fi>
16166L:	linux-media@vger.kernel.org
16167W:	https://linuxtv.org/
16168W:	http://palosaari.fi/linux/
16169Q:	https://patchwork.linuxtv.org/project/linux-media/list/
16170S:	Maintained
16171F:	drivers/media/dvb-frontends/zd1301_demod*
16172
16173ZPOOL COMPRESSED PAGE STORAGE API
16174M:	Dan Streetman <ddstreet@ieee.org>
16175L:	linux-mm@kvack.org
16176S:	Maintained
16177F:	mm/zpool.c
16178F:	include/linux/zpool.h
16179
16180ZR36067 VIDEO FOR LINUX DRIVER
16181L:	mjpeg-users@lists.sourceforge.net
16182L:	linux-media@vger.kernel.org
16183W:	http://mjpeg.sourceforge.net/driver-zoran/
16184T:	hg https://linuxtv.org/hg/v4l-dvb
16185S:	Odd Fixes
16186F:	drivers/staging/media/zoran/
16187
16188ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
16189M:	Minchan Kim <minchan@kernel.org>
16190M:	Nitin Gupta <ngupta@vflare.org>
16191R:	Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
16192L:	linux-kernel@vger.kernel.org
16193S:	Maintained
16194F:	drivers/block/zram/
16195F:	Documentation/blockdev/zram.txt
16196
16197ZS DECSTATION Z85C30 SERIAL DRIVER
16198M:	"Maciej W. Rozycki" <macro@linux-mips.org>
16199S:	Maintained
16200F:	drivers/tty/serial/zs.*
16201
16202ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
16203M:	Minchan Kim <minchan@kernel.org>
16204M:	Nitin Gupta <ngupta@vflare.org>
16205R:	Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
16206L:	linux-mm@kvack.org
16207S:	Maintained
16208F:	mm/zsmalloc.c
16209F:	include/linux/zsmalloc.h
16210F:	Documentation/vm/zsmalloc.rst
16211
16212ZSWAP COMPRESSED SWAP CACHING
16213M:	Seth Jennings <sjenning@redhat.com>
16214M:	Dan Streetman <ddstreet@ieee.org>
16215L:	linux-mm@kvack.org
16216S:	Maintained
16217F:	mm/zswap.c
16218
16219THE REST
16220M:	Linus Torvalds <torvalds@linux-foundation.org>
16221L:	linux-kernel@vger.kernel.org
16222Q:	http://patchwork.kernel.org/project/LKML/list/
16223T:	git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
16224S:	Buried alive in reporters
16225F:	*
16226F:	*/
16227