4ad9d6a4c3ac8cda713c484b48e635c2e11ad884
[sfrench/cifs-2.6.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      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
20 3.      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
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      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
59 6.      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
63 7.      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
75 8.      Happy hacking.
76
77 Descriptions 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
131 Note: For the hard of thinking, this list is meant to remain in alphabetical
132 order. If you could add yourselves to it in alphabetical order that would be
133 so much easier [Ed]
134
135 Maintainers List (try to look for most precise areas first)
136
137                 -----------------------------------
138
139 3C59X NETWORK DRIVER
140 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
141 L:      netdev@vger.kernel.org
142 S:      Maintained
143 F:      Documentation/networking/vortex.txt
144 F:      drivers/net/ethernet/3com/3c59x.c
145
146 3CR990 NETWORK DRIVER
147 M:      David Dillow <dave@thedillows.org>
148 L:      netdev@vger.kernel.org
149 S:      Maintained
150 F:      drivers/net/ethernet/3com/typhoon*
151
152 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
153 M:      Adam Radford <aradford@gmail.com>
154 L:      linux-scsi@vger.kernel.org
155 W:      http://www.lsi.com
156 S:      Supported
157 F:      drivers/scsi/3w-*
158
159 53C700 AND 53C700-66 SCSI DRIVER
160 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Maintained
163 F:      drivers/scsi/53c700*
164
165 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
166 M:      Alexander Aring <alex.aring@gmail.com>
167 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
168 L:      linux-bluetooth@vger.kernel.org
169 L:      linux-wpan@vger.kernel.org
170 S:      Maintained
171 F:      net/6lowpan/
172 F:      include/net/6lowpan.h
173 F:      Documentation/networking/6lowpan.txt
174
175 6PACK NETWORK DRIVER FOR AX.25
176 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
177 L:      linux-hams@vger.kernel.org
178 S:      Maintained
179 F:      drivers/net/hamradio/6pack.c
180
181 8169 10/100/1000 GIGABIT ETHERNET DRIVER
182 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
183 L:      netdev@vger.kernel.org
184 S:      Maintained
185 F:      drivers/net/ethernet/realtek/r8169.c
186
187 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
188 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
189 L:      linux-serial@vger.kernel.org
190 S:      Maintained
191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
192 F:      drivers/tty/serial/8250*
193 F:      include/linux/serial_8250.h
194
195 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
196 L:      netdev@vger.kernel.org
197 S:      Orphan / Obsolete
198 F:      drivers/net/ethernet/8390/
199
200 9P FILE SYSTEM
201 M:      Eric Van Hensbergen <ericvh@gmail.com>
202 M:      Ron Minnich <rminnich@sandia.gov>
203 M:      Latchesar Ionkov <lucho@ionkov.net>
204 L:      v9fs-developer@lists.sourceforge.net
205 W:      http://swik.net/v9fs
206 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
208 S:      Maintained
209 F:      Documentation/filesystems/9p.txt
210 F:      fs/9p/
211 F:      net/9p/
212 F:      include/net/9p/
213 F:      include/uapi/linux/virtio_9p.h
214 F:      include/trace/events/9p.h
215
216 A8293 MEDIA DRIVER
217 M:      Antti Palosaari <crope@iki.fi>
218 L:      linux-media@vger.kernel.org
219 W:      https://linuxtv.org
220 W:      http://palosaari.fi/linux/
221 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
222 T:      git git://linuxtv.org/anttip/media_tree.git
223 S:      Maintained
224 F:      drivers/media/dvb-frontends/a8293*
225
226 AACRAID SCSI RAID DRIVER
227 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
228 L:      linux-scsi@vger.kernel.org
229 W:      http://www.adaptec.com/
230 S:      Supported
231 F:      Documentation/scsi/aacraid.txt
232 F:      drivers/scsi/aacraid/
233
234 ABI/API
235 L:      linux-api@vger.kernel.org
236 F:      include/linux/syscalls.h
237 F:      kernel/sys_ni.c
238
239 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
240 M:      Hans de Goede <hdegoede@redhat.com>
241 L:      linux-hwmon@vger.kernel.org
242 S:      Maintained
243 F:      drivers/hwmon/abituguru.c
244
245 ABIT UGURU 3 HARDWARE MONITOR DRIVER
246 M:      Alistair John Strachan <alistair@devzero.co.uk>
247 L:      linux-hwmon@vger.kernel.org
248 S:      Maintained
249 F:      drivers/hwmon/abituguru3.c
250
251 ACCES 104-DIO-48E GPIO DRIVER
252 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
253 L:      linux-gpio@vger.kernel.org
254 S:      Maintained
255 F:      drivers/gpio/gpio-104-dio-48e.c
256
257 ACCES 104-IDI-48 GPIO DRIVER
258 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
259 L:      linux-gpio@vger.kernel.org
260 S:      Maintained
261 F:      drivers/gpio/gpio-104-idi-48.c
262
263 ACCES 104-IDIO-16 GPIO DRIVER
264 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
265 L:      linux-gpio@vger.kernel.org
266 S:      Maintained
267 F:      drivers/gpio/gpio-104-idio-16.c
268
269 ACCES 104-QUAD-8 IIO DRIVER
270 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
271 L:      linux-iio@vger.kernel.org
272 S:      Maintained
273 F:      drivers/iio/counter/104-quad-8.c
274
275 ACCES PCI-IDIO-16 GPIO DRIVER
276 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
277 L:      linux-gpio@vger.kernel.org
278 S:      Maintained
279 F:      drivers/gpio/gpio-pci-idio-16.c
280
281 ACENIC DRIVER
282 M:      Jes Sorensen <jes@trained-monkey.org>
283 L:      linux-acenic@sunsite.dk
284 S:      Maintained
285 F:      drivers/net/ethernet/alteon/acenic*
286
287 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
288 M:      Peter Feuerer <peter@piie.net>
289 L:      platform-driver-x86@vger.kernel.org
290 W:      http://piie.net/?section=acerhdf
291 S:      Maintained
292 F:      drivers/platform/x86/acerhdf.c
293
294 ACER WMI LAPTOP EXTRAS
295 M:      "Lee, Chun-Yi" <jlee@suse.com>
296 L:      platform-driver-x86@vger.kernel.org
297 S:      Maintained
298 F:      drivers/platform/x86/acer-wmi.c
299
300 ACPI
301 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
302 M:      Len Brown <lenb@kernel.org>
303 L:      linux-acpi@vger.kernel.org
304 W:      https://01.org/linux-acpi
305 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
307 B:      https://bugzilla.kernel.org
308 S:      Supported
309 F:      drivers/acpi/
310 F:      drivers/pnp/pnpacpi/
311 F:      include/linux/acpi.h
312 F:      include/linux/fwnode.h
313 F:      include/acpi/
314 F:      Documentation/acpi/
315 F:      Documentation/ABI/testing/sysfs-bus-acpi
316 F:      Documentation/ABI/testing/configfs-acpi
317 F:      drivers/pci/*acpi*
318 F:      drivers/pci/*/*acpi*
319 F:      drivers/pci/*/*/*acpi*
320 F:      tools/power/acpi/
321
322 ACPI APEI
323 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
324 M:      Len Brown <lenb@kernel.org>
325 L:      linux-acpi@vger.kernel.org
326 R:      Tony Luck <tony.luck@intel.com>
327 R:      Borislav Petkov <bp@alien8.de>
328 F:      drivers/acpi/apei/
329
330 ACPI COMPONENT ARCHITECTURE (ACPICA)
331 M:      Robert Moore <robert.moore@intel.com>
332 M:      Erik Schmauss <erik.schmauss@intel.com>
333 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
334 L:      linux-acpi@vger.kernel.org
335 L:      devel@acpica.org
336 W:      https://acpica.org/
337 W:      https://github.com/acpica/acpica/
338 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
340 B:      https://bugzilla.kernel.org
341 B:      https://bugs.acpica.org
342 S:      Supported
343 F:      drivers/acpi/acpica/
344 F:      include/acpi/
345 F:      tools/power/acpi/
346
347 ACPI FAN DRIVER
348 M:      Zhang Rui <rui.zhang@intel.com>
349 L:      linux-acpi@vger.kernel.org
350 W:      https://01.org/linux-acpi
351 B:      https://bugzilla.kernel.org
352 S:      Supported
353 F:      drivers/acpi/fan.c
354
355 ACPI FOR ARM64 (ACPI/arm64)
356 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
357 M:      Hanjun Guo <hanjun.guo@linaro.org>
358 M:      Sudeep Holla <sudeep.holla@arm.com>
359 L:      linux-acpi@vger.kernel.org
360 S:      Maintained
361 F:      drivers/acpi/arm64
362
363 ACPI PMIC DRIVERS
364 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
365 M:      Len Brown <lenb@kernel.org>
366 R:      Andy Shevchenko <andy@infradead.org>
367 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
368 L:      linux-acpi@vger.kernel.org
369 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
371 B:      https://bugzilla.kernel.org
372 S:      Supported
373 F:      drivers/acpi/pmic/
374
375 ACPI THERMAL DRIVER
376 M:      Zhang Rui <rui.zhang@intel.com>
377 L:      linux-acpi@vger.kernel.org
378 W:      https://01.org/linux-acpi
379 B:      https://bugzilla.kernel.org
380 S:      Supported
381 F:      drivers/acpi/*thermal*
382
383 ACPI VIDEO DRIVER
384 M:      Zhang Rui <rui.zhang@intel.com>
385 L:      linux-acpi@vger.kernel.org
386 W:      https://01.org/linux-acpi
387 B:      https://bugzilla.kernel.org
388 S:      Supported
389 F:      drivers/acpi/acpi_video.c
390
391 ACPI WMI DRIVER
392 L:      platform-driver-x86@vger.kernel.org
393 S:      Orphan
394 F:      drivers/platform/x86/wmi.c
395 F:      include/uapi/linux/wmi.h
396
397 AD1889 ALSA SOUND DRIVER
398 M:      Thibaut Varene <T-Bone@parisc-linux.org>
399 W:      http://wiki.parisc-linux.org/AD1889
400 L:      linux-parisc@vger.kernel.org
401 S:      Maintained
402 F:      sound/pci/ad1889.*
403
404 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
405 M:      Michael Hennerich <michael.hennerich@analog.com>
406 W:      http://wiki.analog.com/AD5254
407 W:      http://ez.analog.com/community/linux-device-drivers
408 S:      Supported
409 F:      drivers/misc/ad525x_dpot.c
410
411 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
412 M:      Michael Hennerich <michael.hennerich@analog.com>
413 W:      http://wiki.analog.com/AD5398
414 W:      http://ez.analog.com/community/linux-device-drivers
415 S:      Supported
416 F:      drivers/regulator/ad5398.c
417
418 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
419 M:      Michael Hennerich <michael.hennerich@analog.com>
420 W:      http://wiki.analog.com/AD7142
421 W:      http://ez.analog.com/community/linux-device-drivers
422 S:      Supported
423 F:      drivers/input/misc/ad714x.c
424
425 AD7877 TOUCHSCREEN DRIVER
426 M:      Michael Hennerich <michael.hennerich@analog.com>
427 W:      http://wiki.analog.com/AD7877
428 W:      http://ez.analog.com/community/linux-device-drivers
429 S:      Supported
430 F:      drivers/input/touchscreen/ad7877.c
431
432 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
433 M:      Michael Hennerich <michael.hennerich@analog.com>
434 W:      http://wiki.analog.com/AD7879
435 W:      http://ez.analog.com/community/linux-device-drivers
436 S:      Supported
437 F:      drivers/input/touchscreen/ad7879.c
438
439 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
440 M:      Jiri Kosina <jikos@kernel.org>
441 S:      Maintained
442
443 ADF7242 IEEE 802.15.4 RADIO DRIVER
444 M:      Michael Hennerich <michael.hennerich@analog.com>
445 W:      https://wiki.analog.com/ADF7242
446 W:      http://ez.analog.com/community/linux-device-drivers
447 L:      linux-wpan@vger.kernel.org
448 S:      Supported
449 F:      drivers/net/ieee802154/adf7242.c
450 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
451
452 ADM1025 HARDWARE MONITOR DRIVER
453 M:      Jean Delvare <jdelvare@suse.com>
454 L:      linux-hwmon@vger.kernel.org
455 S:      Maintained
456 F:      Documentation/hwmon/adm1025
457 F:      drivers/hwmon/adm1025.c
458
459 ADM1029 HARDWARE MONITOR DRIVER
460 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
461 L:      linux-hwmon@vger.kernel.org
462 S:      Maintained
463 F:      drivers/hwmon/adm1029.c
464
465 ADM8211 WIRELESS DRIVER
466 L:      linux-wireless@vger.kernel.org
467 W:      http://wireless.kernel.org/
468 S:      Orphan
469 F:      drivers/net/wireless/admtek/adm8211.*
470
471 ADP1653 FLASH CONTROLLER DRIVER
472 M:      Sakari Ailus <sakari.ailus@iki.fi>
473 L:      linux-media@vger.kernel.org
474 S:      Maintained
475 F:      drivers/media/i2c/adp1653.c
476 F:      include/media/i2c/adp1653.h
477
478 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
479 M:      Michael Hennerich <michael.hennerich@analog.com>
480 W:      http://wiki.analog.com/ADP5520
481 W:      http://ez.analog.com/community/linux-device-drivers
482 S:      Supported
483 F:      drivers/mfd/adp5520.c
484 F:      drivers/video/backlight/adp5520_bl.c
485 F:      drivers/leds/leds-adp5520.c
486 F:      drivers/gpio/gpio-adp5520.c
487 F:      drivers/input/keyboard/adp5520-keys.c
488
489 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
490 M:      Michael Hennerich <michael.hennerich@analog.com>
491 W:      http://wiki.analog.com/ADP5588
492 W:      http://ez.analog.com/community/linux-device-drivers
493 S:      Supported
494 F:      drivers/input/keyboard/adp5588-keys.c
495 F:      drivers/gpio/gpio-adp5588.c
496
497 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 W:      http://wiki.analog.com/ADP8860
500 W:      http://ez.analog.com/community/linux-device-drivers
501 S:      Supported
502 F:      drivers/video/backlight/adp8860_bl.c
503
504 ADS1015 HARDWARE MONITOR DRIVER
505 M:      Dirk Eibach <eibach@gdsys.de>
506 L:      linux-hwmon@vger.kernel.org
507 S:      Maintained
508 F:      Documentation/hwmon/ads1015
509 F:      drivers/hwmon/ads1015.c
510 F:      include/linux/platform_data/ads1015.h
511
512 ADT746X FAN DRIVER
513 M:      Colin Leroy <colin@colino.net>
514 S:      Maintained
515 F:      drivers/macintosh/therm_adt746x.c
516
517 ADT7475 HARDWARE MONITOR DRIVER
518 M:      Jean Delvare <jdelvare@suse.com>
519 L:      linux-hwmon@vger.kernel.org
520 S:      Maintained
521 F:      Documentation/hwmon/adt7475
522 F:      drivers/hwmon/adt7475.c
523
524 ADVANSYS SCSI DRIVER
525 M:      Matthew Wilcox <matthew@wil.cx>
526 M:      Hannes Reinecke <hare@suse.com>
527 L:      linux-scsi@vger.kernel.org
528 S:      Maintained
529 F:      Documentation/scsi/advansys.txt
530 F:      drivers/scsi/advansys.c
531
532 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
533 M:      Michael Hennerich <michael.hennerich@analog.com>
534 W:      http://wiki.analog.com/ADXL345
535 W:      http://ez.analog.com/community/linux-device-drivers
536 S:      Supported
537 F:      drivers/input/misc/adxl34x.c
538
539 AF9013 MEDIA DRIVER
540 M:      Antti Palosaari <crope@iki.fi>
541 L:      linux-media@vger.kernel.org
542 W:      https://linuxtv.org
543 W:      http://palosaari.fi/linux/
544 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
545 T:      git git://linuxtv.org/anttip/media_tree.git
546 S:      Maintained
547 F:      drivers/media/dvb-frontends/af9013*
548
549 AF9033 MEDIA DRIVER
550 M:      Antti Palosaari <crope@iki.fi>
551 L:      linux-media@vger.kernel.org
552 W:      https://linuxtv.org
553 W:      http://palosaari.fi/linux/
554 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
555 T:      git git://linuxtv.org/anttip/media_tree.git
556 S:      Maintained
557 F:      drivers/media/dvb-frontends/af9033*
558
559 AFFS FILE SYSTEM
560 L:      linux-fsdevel@vger.kernel.org
561 S:      Orphan
562 F:      Documentation/filesystems/affs.txt
563 F:      fs/affs/
564
565 AFS FILESYSTEM
566 M:      David Howells <dhowells@redhat.com>
567 L:      linux-afs@lists.infradead.org
568 S:      Supported
569 F:      fs/afs/
570 F:      include/trace/events/afs.h
571 F:      Documentation/filesystems/afs.txt
572 W:      https://www.infradead.org/~dhowells/kafs/
573
574 AGPGART DRIVER
575 M:      David Airlie <airlied@linux.ie>
576 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
577 S:      Maintained
578 F:      drivers/char/agp/
579 F:      include/linux/agp*
580 F:      include/uapi/linux/agp*
581
582 AHA152X SCSI DRIVER
583 M:      "Juergen E. Fischer" <fischer@norbit.de>
584 L:      linux-scsi@vger.kernel.org
585 S:      Maintained
586 F:      drivers/scsi/aha152x*
587 F:      drivers/scsi/pcmcia/aha152x*
588
589 AIC7XXX / AIC79XX SCSI DRIVER
590 M:      Hannes Reinecke <hare@suse.com>
591 L:      linux-scsi@vger.kernel.org
592 S:      Maintained
593 F:      drivers/scsi/aic7xxx/
594
595 AIMSLAB FM RADIO RECEIVER DRIVER
596 M:      Hans Verkuil <hverkuil@xs4all.nl>
597 L:      linux-media@vger.kernel.org
598 T:      git git://linuxtv.org/media_tree.git
599 W:      https://linuxtv.org
600 S:      Maintained
601 F:      drivers/media/radio/radio-aimslab*
602
603 AIO
604 M:      Benjamin LaHaise <bcrl@kvack.org>
605 L:      linux-aio@kvack.org
606 S:      Supported
607 F:      fs/aio.c
608 F:      include/linux/*aio*.h
609
610 AIRSPY MEDIA DRIVER
611 M:      Antti Palosaari <crope@iki.fi>
612 L:      linux-media@vger.kernel.org
613 W:      https://linuxtv.org
614 W:      http://palosaari.fi/linux/
615 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
616 T:      git git://linuxtv.org/anttip/media_tree.git
617 S:      Maintained
618 F:      drivers/media/usb/airspy/
619
620 ALACRITECH GIGABIT ETHERNET DRIVER
621 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
622 S:      Maintained
623 F:      drivers/net/ethernet/alacritech/*
624
625 ALCATEL SPEEDTOUCH USB DRIVER
626 M:      Duncan Sands <duncan.sands@free.fr>
627 L:      linux-usb@vger.kernel.org
628 W:      http://www.linux-usb.org/SpeedTouch/
629 S:      Maintained
630 F:      drivers/usb/atm/speedtch.c
631 F:      drivers/usb/atm/usbatm.c
632
633 ALCHEMY AU1XX0 MMC DRIVER
634 M:      Manuel Lauss <manuel.lauss@gmail.com>
635 S:      Maintained
636 F:      drivers/mmc/host/au1xmmc.c
637
638 ALI1563 I2C DRIVER
639 M:      Rudolf Marek <r.marek@assembler.cz>
640 L:      linux-i2c@vger.kernel.org
641 S:      Maintained
642 F:      Documentation/i2c/busses/i2c-ali1563
643 F:      drivers/i2c/busses/i2c-ali1563.c
644
645 ALLWINNER SECURITY SYSTEM
646 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
647 L:      linux-crypto@vger.kernel.org
648 S:      Maintained
649 F:      drivers/crypto/sunxi-ss/
650
651 ALPHA PORT
652 M:      Richard Henderson <rth@twiddle.net>
653 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
654 M:      Matt Turner <mattst88@gmail.com>
655 S:      Odd Fixes
656 L:      linux-alpha@vger.kernel.org
657 F:      arch/alpha/
658
659 ALPS PS/2 TOUCHPAD DRIVER
660 R:      Pali Rohár <pali.rohar@gmail.com>
661 F:      drivers/input/mouse/alps.*
662
663 ALTERA I2C CONTROLLER DRIVER
664 M:      Thor Thayer <thor.thayer@linux.intel.com>
665 S:      Maintained
666 F:      drivers/i2c/busses/i2c-altera.c
667
668 ALTERA MAILBOX DRIVER
669 M:      Ley Foon Tan <lftan@altera.com>
670 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
671 S:      Maintained
672 F:      drivers/mailbox/mailbox-altera.c
673
674 ALTERA PIO DRIVER
675 M:      Tien Hock Loh <thloh@altera.com>
676 L:      linux-gpio@vger.kernel.org
677 S:      Maintained
678 F:      drivers/gpio/gpio-altera.c
679
680 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
681 M:      Thor Thayer <thor.thayer@linux.intel.com>
682 S:      Maintained
683 F:      drivers/gpio/gpio-altera-a10sr.c
684 F:      drivers/mfd/altera-a10sr.c
685 F:      drivers/reset/reset-a10sr.c
686 F:      include/linux/mfd/altera-a10sr.h
687 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
688
689 ALTERA TRIPLE SPEED ETHERNET DRIVER
690 M:      Vince Bridgers <vbridger@opensource.altera.com>
691 L:      netdev@vger.kernel.org
692 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
693 S:      Maintained
694 F:      drivers/net/ethernet/altera/
695
696 ALTERA UART/JTAG UART SERIAL DRIVERS
697 M:      Tobias Klauser <tklauser@distanz.ch>
698 L:      linux-serial@vger.kernel.org
699 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
700 S:      Maintained
701 F:      drivers/tty/serial/altera_uart.c
702 F:      drivers/tty/serial/altera_jtaguart.c
703 F:      include/linux/altera_uart.h
704 F:      include/linux/altera_jtaguart.h
705
706 AMAZON ETHERNET DRIVERS
707 M:      Netanel Belgazal <netanel@amazon.com>
708 R:      Saeed Bishara <saeedb@amazon.com>
709 R:      Zorik Machulsky <zorik@amazon.com>
710 L:      netdev@vger.kernel.org
711 S:      Supported
712 F:      Documentation/networking/ena.txt
713 F:      drivers/net/ethernet/amazon/
714
715 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
716 M:      Tom Lendacky <thomas.lendacky@amd.com>
717 M:      Gary Hook <gary.hook@amd.com>
718 L:      linux-crypto@vger.kernel.org
719 S:      Supported
720 F:      drivers/crypto/ccp/
721 F:      include/linux/ccp.h
722
723 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
724 M:      Huang Rui <ray.huang@amd.com>
725 L:      linux-hwmon@vger.kernel.org
726 S:      Supported
727 F:      Documentation/hwmon/fam15h_power
728 F:      drivers/hwmon/fam15h_power.c
729
730 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
731 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
732 S:      Orphan
733 F:      drivers/usb/gadget/udc/amd5536udc.*
734
735 AMD GEODE PROCESSOR/CHIPSET SUPPORT
736 P:      Andres Salomon <dilinger@queued.net>
737 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
738 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
739 S:      Supported
740 F:      drivers/char/hw_random/geode-rng.c
741 F:      drivers/crypto/geode*
742 F:      drivers/video/fbdev/geode/
743 F:      arch/x86/include/asm/geode.h
744
745 AMD IOMMU (AMD-VI)
746 M:      Joerg Roedel <joro@8bytes.org>
747 L:      iommu@lists.linux-foundation.org
748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
749 S:      Maintained
750 F:      drivers/iommu/amd_iommu*.[ch]
751 F:      include/linux/amd-iommu.h
752
753 AMD KFD
754 M:      Oded Gabbay <oded.gabbay@gmail.com>
755 L:      dri-devel@lists.freedesktop.org
756 T:      git git://people.freedesktop.org/~gabbayo/linux.git
757 S:      Supported
758 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
759 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
760 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
761 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
762 F:      drivers/gpu/drm/amd/amdkfd/
763 F:      drivers/gpu/drm/amd/include/cik_structs.h
764 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
765 F:      drivers/gpu/drm/amd/include/vi_structs.h
766 F:      include/uapi/linux/kfd_ioctl.h
767
768 AMD SEATTLE DEVICE TREE SUPPORT
769 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
770 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
771 M:      Tom Lendacky <thomas.lendacky@amd.com>
772 S:      Supported
773 F:      arch/arm64/boot/dts/amd/
774
775 AMD XGBE DRIVER
776 M:      Tom Lendacky <thomas.lendacky@amd.com>
777 L:      netdev@vger.kernel.org
778 S:      Supported
779 F:      drivers/net/ethernet/amd/xgbe/
780 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
781
782 AMS (Apple Motion Sensor) DRIVER
783 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
784 S:      Supported
785 F:      drivers/macintosh/ams/
786
787 ANALOG DEVICES INC AD9389B DRIVER
788 M:      Hans Verkuil <hans.verkuil@cisco.com>
789 L:      linux-media@vger.kernel.org
790 S:      Maintained
791 F:      drivers/media/i2c/ad9389b*
792
793 ANALOG DEVICES INC ADV7180 DRIVER
794 M:      Lars-Peter Clausen <lars@metafoo.de>
795 L:      linux-media@vger.kernel.org
796 W:      http://ez.analog.com/community/linux-device-drivers
797 S:      Supported
798 F:      drivers/media/i2c/adv7180.c
799
800 ANALOG DEVICES INC ADV748X DRIVER
801 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
802 L:      linux-media@vger.kernel.org
803 S:      Maintained
804 F:      drivers/media/i2c/adv748x/*
805
806 ANALOG DEVICES INC ADV7511 DRIVER
807 M:      Hans Verkuil <hans.verkuil@cisco.com>
808 L:      linux-media@vger.kernel.org
809 S:      Maintained
810 F:      drivers/media/i2c/adv7511*
811
812 ANALOG DEVICES INC ADV7604 DRIVER
813 M:      Hans Verkuil <hans.verkuil@cisco.com>
814 L:      linux-media@vger.kernel.org
815 S:      Maintained
816 F:      drivers/media/i2c/adv7604*
817
818 ANALOG DEVICES INC ADV7842 DRIVER
819 M:      Hans Verkuil <hans.verkuil@cisco.com>
820 L:      linux-media@vger.kernel.org
821 S:      Maintained
822 F:      drivers/media/i2c/adv7842*
823
824 ANALOG DEVICES INC ASOC CODEC DRIVERS
825 M:      Lars-Peter Clausen <lars@metafoo.de>
826 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
827 W:      http://wiki.analog.com/
828 W:      http://ez.analog.com/community/linux-device-drivers
829 S:      Supported
830 F:      sound/soc/codecs/adau*
831 F:      sound/soc/codecs/adav*
832 F:      sound/soc/codecs/ad1*
833 F:      sound/soc/codecs/ad7*
834 F:      sound/soc/codecs/ssm*
835 F:      sound/soc/codecs/sigmadsp.*
836
837 ANALOG DEVICES INC ASOC DRIVERS
838 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
839 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
840 W:      http://blackfin.uclinux.org/
841 S:      Supported
842 F:      sound/soc/blackfin/*
843
844 ANALOG DEVICES INC DMA DRIVERS
845 M:      Lars-Peter Clausen <lars@metafoo.de>
846 W:      http://ez.analog.com/community/linux-device-drivers
847 S:      Supported
848 F:      drivers/dma/dma-axi-dmac.c
849
850 ANALOG DEVICES INC IIO DRIVERS
851 M:      Lars-Peter Clausen <lars@metafoo.de>
852 M:      Michael Hennerich <Michael.Hennerich@analog.com>
853 W:      http://wiki.analog.com/
854 W:      http://ez.analog.com/community/linux-device-drivers
855 S:      Supported
856 F:      drivers/iio/*/ad*
857 F:      drivers/iio/adc/ltc2497*
858 X:      drivers/iio/*/adjd*
859 F:      drivers/staging/iio/*/ad*
860 F:      drivers/staging/iio/trigger/iio-trig-bfin-timer.c
861
862 ANDROID CONFIG FRAGMENTS
863 M:      Rob Herring <robh@kernel.org>
864 S:      Supported
865 F:      kernel/configs/android*
866
867 ANDROID DRIVERS
868 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
869 M:      Arve Hjønnevåg <arve@android.com>
870 M:      Todd Kjos <tkjos@android.com>
871 M:      Martijn Coenen <maco@android.com>
872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
873 L:      devel@driverdev.osuosl.org
874 S:      Supported
875 F:      drivers/android/
876 F:      drivers/staging/android/
877
878 ANDROID GOLDFISH PIC DRIVER
879 M:      Miodrag Dinic <miodrag.dinic@mips.com>
880 S:      Supported
881 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
882 F:      drivers/irqchip/irq-goldfish-pic.c
883
884 ANDROID GOLDFISH RTC DRIVER
885 M:      Miodrag Dinic <miodrag.dinic@mips.com>
886 S:      Supported
887 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
888 F:      drivers/rtc/rtc-goldfish.c
889
890 ANDROID ION DRIVER
891 M:      Laura Abbott <labbott@redhat.com>
892 M:      Sumit Semwal <sumit.semwal@linaro.org>
893 L:      devel@driverdev.osuosl.org
894 S:      Supported
895 F:      drivers/staging/android/ion
896 F:      drivers/staging/android/uapi/ion.h
897 F:      drivers/staging/android/uapi/ion_test.h
898
899 AOA (Apple Onboard Audio) ALSA DRIVER
900 M:      Johannes Berg <johannes@sipsolutions.net>
901 L:      linuxppc-dev@lists.ozlabs.org
902 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
903 S:      Maintained
904 F:      sound/aoa/
905
906 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
907 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
908 L:      linux-iio@vger.kernel.org
909 S:      Maintained
910 F:      drivers/iio/adc/stx104.c
911
912 APM DRIVER
913 M:      Jiri Kosina <jikos@kernel.org>
914 S:      Odd fixes
915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
916 F:      arch/x86/kernel/apm_32.c
917 F:      include/linux/apm_bios.h
918 F:      include/uapi/linux/apm_bios.h
919 F:      drivers/char/apm-emulation.c
920
921 APPARMOR SECURITY MODULE
922 M:      John Johansen <john.johansen@canonical.com>
923 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
924 W:      apparmor.wiki.kernel.org
925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
926 S:      Supported
927 F:      security/apparmor/
928 F:      Documentation/admin-guide/LSM/apparmor.rst
929
930 APPLE BCM5974 MULTITOUCH DRIVER
931 M:      Henrik Rydberg <rydberg@bitmath.org>
932 L:      linux-input@vger.kernel.org
933 S:      Odd fixes
934 F:      drivers/input/mouse/bcm5974.c
935
936 APPLE SMC DRIVER
937 M:      Henrik Rydberg <rydberg@bitmath.org>
938 L:      linux-hwmon@vger.kernel.org
939 S:      Odd fixes
940 F:      drivers/hwmon/applesmc.c
941
942 APPLETALK NETWORK LAYER
943 L:      netdev@vger.kernel.org
944 S:      Odd fixes
945 F:      drivers/net/appletalk/
946 F:      net/appletalk/
947
948 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
949 M:      Duc Dang <dhdang@apm.com>
950 S:      Supported
951 F:      arch/arm64/boot/dts/apm/
952
953 APPLIED MICRO (APM) X-GENE SOC EDAC
954 M:      Loc Ho <lho@apm.com>
955 S:      Supported
956 F:      drivers/edac/xgene_edac.c
957 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
958
959 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
960 M:      Iyappan Subramanian <isubramanian@apm.com>
961 M:      Keyur Chudgar <kchudgar@apm.com>
962 S:      Supported
963 F:      drivers/net/ethernet/apm/xgene-v2/
964
965 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
966 M:      Iyappan Subramanian <isubramanian@apm.com>
967 M:      Keyur Chudgar <kchudgar@apm.com>
968 M:      Quan Nguyen <qnguyen@apm.com>
969 S:      Supported
970 F:      drivers/net/ethernet/apm/xgene/
971 F:      drivers/net/phy/mdio-xgene.c
972 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
973 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
974
975 APPLIED MICRO (APM) X-GENE SOC PMU
976 M:      Tai Nguyen <ttnguyen@apm.com>
977 S:      Supported
978 F:      drivers/perf/xgene_pmu.c
979 F:      Documentation/perf/xgene-pmu.txt
980 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
981
982 APTINA CAMERA SENSOR PLL
983 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
984 L:      linux-media@vger.kernel.org
985 S:      Maintained
986 F:      drivers/media/i2c/aptina-pll.*
987
988 ARC FRAMEBUFFER DRIVER
989 M:      Jaya Kumar <jayalk@intworks.biz>
990 S:      Maintained
991 F:      drivers/video/fbdev/arcfb.c
992 F:      drivers/video/fbdev/core/fb_defio.c
993
994 ARC PGU DRM DRIVER
995 M:      Alexey Brodkin <abrodkin@synopsys.com>
996 S:      Supported
997 F:      drivers/gpu/drm/arc/
998 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
999
1000 ARCNET NETWORK LAYER
1001 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1002 L:      netdev@vger.kernel.org
1003 S:      Maintained
1004 F:      drivers/net/arcnet/
1005 F:      include/uapi/linux/if_arcnet.h
1006
1007 ARM ARCHITECTED TIMER DRIVER
1008 M:      Mark Rutland <mark.rutland@arm.com>
1009 M:      Marc Zyngier <marc.zyngier@arm.com>
1010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1011 S:      Maintained
1012 F:      arch/arm/include/asm/arch_timer.h
1013 F:      arch/arm64/include/asm/arch_timer.h
1014 F:      drivers/clocksource/arm_arch_timer.c
1015
1016 ARM HDLCD DRM DRIVER
1017 M:      Liviu Dudau <liviu.dudau@arm.com>
1018 S:      Supported
1019 F:      drivers/gpu/drm/arm/hdlcd_*
1020 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1021
1022 ARM MALI-DP DRM DRIVER
1023 M:      Liviu Dudau <liviu.dudau@arm.com>
1024 M:      Brian Starkey <brian.starkey@arm.com>
1025 M:      Mali DP Maintainers <malidp@foss.arm.com>
1026 S:      Supported
1027 F:      drivers/gpu/drm/arm/
1028 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1029
1030 ARM MFM AND FLOPPY DRIVERS
1031 M:      Ian Molton <spyro@f2s.com>
1032 S:      Maintained
1033 F:      arch/arm/lib/floppydma.S
1034 F:      arch/arm/include/asm/floppy.h
1035
1036 ARM PMU PROFILING AND DEBUGGING
1037 M:      Will Deacon <will.deacon@arm.com>
1038 M:      Mark Rutland <mark.rutland@arm.com>
1039 S:      Maintained
1040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1041 F:      arch/arm*/kernel/perf_*
1042 F:      arch/arm/oprofile/common.c
1043 F:      arch/arm*/kernel/hw_breakpoint.c
1044 F:      arch/arm*/include/asm/hw_breakpoint.h
1045 F:      arch/arm*/include/asm/perf_event.h
1046 F:      drivers/perf/*
1047 F:      include/linux/perf/arm_pmu.h
1048 F:      Documentation/devicetree/bindings/arm/pmu.txt
1049 F:      Documentation/devicetree/bindings/perf/
1050
1051 ARM PORT
1052 M:      Russell King <linux@armlinux.org.uk>
1053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1054 W:      http://www.armlinux.org.uk/
1055 S:      Maintained
1056 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1057 F:      arch/arm/
1058
1059 ARM PRIMECELL AACI PL041 DRIVER
1060 M:      Russell King <linux@armlinux.org.uk>
1061 S:      Maintained
1062 F:      sound/arm/aaci.*
1063
1064 ARM PRIMECELL BUS SUPPORT
1065 M:      Russell King <linux@armlinux.org.uk>
1066 S:      Maintained
1067 F:      drivers/amba/
1068 F:      include/linux/amba/bus.h
1069
1070 ARM PRIMECELL CLCD PL110 DRIVER
1071 M:      Russell King <linux@armlinux.org.uk>
1072 S:      Maintained
1073 F:      drivers/video/fbdev/amba-clcd.*
1074
1075 ARM PRIMECELL KMI PL050 DRIVER
1076 M:      Russell King <linux@armlinux.org.uk>
1077 S:      Maintained
1078 F:      drivers/input/serio/ambakmi.*
1079 F:      include/linux/amba/kmi.h
1080
1081 ARM PRIMECELL MMCI PL180/1 DRIVER
1082 M:      Russell King <linux@armlinux.org.uk>
1083 S:      Maintained
1084 F:      drivers/mmc/host/mmci.*
1085 F:      include/linux/amba/mmci.h
1086
1087 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1088 M:      Russell King <linux@armlinux.org.uk>
1089 S:      Maintained
1090 F:      drivers/tty/serial/amba-pl01*.c
1091 F:      include/linux/amba/serial.h
1092
1093 ARM SMMU DRIVERS
1094 M:      Will Deacon <will.deacon@arm.com>
1095 R:      Robin Murphy <robin.murphy@arm.com>
1096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1097 S:      Maintained
1098 F:      drivers/iommu/arm-smmu.c
1099 F:      drivers/iommu/arm-smmu-v3.c
1100 F:      drivers/iommu/io-pgtable-arm.c
1101 F:      drivers/iommu/io-pgtable-arm-v7s.c
1102
1103 ARM SUB-ARCHITECTURES
1104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1105 S:      Maintained
1106 F:      arch/arm/mach-*/
1107 F:      arch/arm/plat-*/
1108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1109
1110 ARM/ACTIONS SEMI ARCHITECTURE
1111 M:      Andreas Färber <afaerber@suse.de>
1112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1113 S:      Maintained
1114 N:      owl
1115 F:      arch/arm/mach-actions/
1116 F:      arch/arm/boot/dts/owl-*
1117 F:      arch/arm64/boot/dts/actions/
1118 F:      drivers/clocksource/owl-*
1119 F:      drivers/soc/actions/
1120 F:      include/dt-bindings/power/owl-*
1121 F:      include/linux/soc/actions/
1122 F:      Documentation/devicetree/bindings/arm/actions.txt
1123 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1124 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1125
1126 ARM/ADS SPHERE MACHINE SUPPORT
1127 M:      Lennert Buytenhek <kernel@wantstofly.org>
1128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1129 S:      Maintained
1130
1131 ARM/AFEB9260 MACHINE SUPPORT
1132 M:      Sergey Lapin <slapin@ossfans.org>
1133 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1134 S:      Maintained
1135
1136 ARM/AJECO 1ARM MACHINE SUPPORT
1137 M:      Lennert Buytenhek <kernel@wantstofly.org>
1138 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1139 S:      Maintained
1140
1141 ARM/Allwinner SoC Clock Support
1142 M:      Emilio López <emilio@elopez.com.ar>
1143 S:      Maintained
1144 F:      drivers/clk/sunxi/
1145
1146 ARM/Allwinner sunXi SoC support
1147 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
1148 M:      Chen-Yu Tsai <wens@csie.org>
1149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1150 S:      Maintained
1151 N:      sun[x456789]i
1152 N:      sun50i
1153 F:      arch/arm/mach-sunxi/
1154 F:      arch/arm64/boot/dts/allwinner/
1155 F:      drivers/clk/sunxi-ng/
1156 F:      drivers/pinctrl/sunxi/
1157 F:      drivers/soc/sunxi/
1158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1159
1160 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1161 M:      Neil Armstrong <narmstrong@baylibre.com>
1162 M:      Jerome Brunet <jbrunet@baylibre.com>
1163 L:      linux-amlogic@lists.infradead.org
1164 S:      Maintained
1165 F:      drivers/clk/meson/
1166 F:      include/dt-bindings/clock/meson*
1167 F:      include/dt-bindings/clock/gxbb*
1168 F:      Documentation/devicetree/bindings/clock/amlogic*
1169
1170 ARM/Amlogic Meson SoC support
1171 M:      Carlo Caione <carlo@caione.org>
1172 M:      Kevin Hilman <khilman@baylibre.com>
1173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1174 L:      linux-amlogic@lists.infradead.org
1175 W:      http://linux-meson.com/
1176 S:      Maintained
1177 F:      arch/arm/mach-meson/
1178 F:      arch/arm/boot/dts/meson*
1179 F:      arch/arm64/boot/dts/amlogic/
1180 F:      drivers/pinctrl/meson/
1181 F:      drivers/mmc/host/meson*
1182 N:      meson
1183
1184 ARM/Annapurna Labs ALPINE ARCHITECTURE
1185 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1186 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
1187 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1188 S:      Maintained
1189 F:      arch/arm/mach-alpine/
1190 F:      arch/arm/boot/dts/alpine*
1191 F:      arch/arm64/boot/dts/al/
1192 F:      drivers/*/*alpine*
1193
1194 ARM/ARTPEC MACHINE SUPPORT
1195 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1196 M:      Lars Persson <lars.persson@axis.com>
1197 M:      Niklas Cassel <niklas.cassel@axis.com>
1198 S:      Maintained
1199 L:      linux-arm-kernel@axis.com
1200 F:      arch/arm/mach-artpec
1201 F:      arch/arm/boot/dts/artpec6*
1202 F:      drivers/clk/axis
1203 F:      drivers/crypto/axis
1204 F:      drivers/pinctrl/pinctrl-artpec*
1205 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1206
1207 ARM/ASPEED I2C DRIVER
1208 M:      Brendan Higgins <brendanhiggins@google.com>
1209 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1210 R:      Joel Stanley <joel@jms.id.au>
1211 L:      linux-i2c@vger.kernel.org
1212 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1213 S:      Maintained
1214 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1215 F:      drivers/i2c/busses/i2c-aspeed.c
1216 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1217 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1218
1219 ARM/ASPEED MACHINE SUPPORT
1220 M:      Joel Stanley <joel@jms.id.au>
1221 S:      Maintained
1222 F:      arch/arm/mach-aspeed/
1223 F:      arch/arm/boot/dts/aspeed-*
1224 F:      drivers/*/*aspeed*
1225
1226 ARM/ATMEL AT91 Clock Support
1227 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
1228 S:      Maintained
1229 F:      drivers/clk/at91
1230
1231 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1232 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
1233 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
1234 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1235 W:      http://www.linux4sam.org
1236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1237 S:      Supported
1238 N:      at91
1239 N:      atmel
1240 F:      arch/arm/mach-at91/
1241 F:      include/soc/at91/
1242 F:      arch/arm/boot/dts/at91*.dts
1243 F:      arch/arm/boot/dts/at91*.dtsi
1244 F:      arch/arm/boot/dts/sama*.dts
1245 F:      arch/arm/boot/dts/sama*.dtsi
1246 F:      arch/arm/include/debug/at91.S
1247 F:      drivers/memory/atmel*
1248 F:      drivers/watchdog/sama5d4_wdt.c
1249 X:      drivers/input/touchscreen/atmel_mxt_ts.c
1250 X:      drivers/net/wireless/atmel/
1251
1252 ARM/CALXEDA HIGHBANK ARCHITECTURE
1253 M:      Rob Herring <robh@kernel.org>
1254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1255 S:      Maintained
1256 F:      arch/arm/mach-highbank/
1257 F:      arch/arm/boot/dts/highbank.dts
1258 F:      arch/arm/boot/dts/ecx-*.dts*
1259
1260 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1261 M:      Krzysztof Halasa <khalasa@piap.pl>
1262 S:      Maintained
1263 F:      arch/arm/mach-cns3xxx/
1264
1265 ARM/CAVIUM THUNDER NETWORK DRIVER
1266 M:      Sunil Goutham <sgoutham@cavium.com>
1267 M:      Robert Richter <rric@kernel.org>
1268 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1269 S:      Supported
1270 F:      drivers/net/ethernet/cavium/thunder/
1271
1272 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1273 M:      Alexander Shiyan <shc_work@mail.ru>
1274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1275 S:      Odd Fixes
1276 N:      clps711x
1277
1278 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1279 M:      Lennert Buytenhek <kernel@wantstofly.org>
1280 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1281 S:      Maintained
1282
1283 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1284 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1285 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1287 S:      Maintained
1288 F:      arch/arm/mach-ep93xx/
1289 F:      arch/arm/mach-ep93xx/include/mach/
1290
1291 ARM/CLKDEV SUPPORT
1292 M:      Russell King <linux@armlinux.org.uk>
1293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1294 S:      Maintained
1295 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1296 F:      arch/arm/include/asm/clkdev.h
1297 F:      drivers/clk/clkdev.c
1298
1299 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1300 M:      Mike Rapoport <mike@compulab.co.il>
1301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1302 S:      Maintained
1303
1304 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1305 M:      Baruch Siach <baruch@tkos.co.il>
1306 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1307 S:      Maintained
1308 F:      arch/arm/boot/dts/cx92755*
1309 N:      digicolor
1310
1311 ARM/CONTEC MICRO9 MACHINE SUPPORT
1312 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1313 S:      Maintained
1314 F:      arch/arm/mach-ep93xx/micro9.c
1315
1316 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1317 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1319 S:      Maintained
1320 F:      drivers/hwtracing/coresight/*
1321 F:      Documentation/trace/coresight.txt
1322 F:      Documentation/trace/coresight-cpu-debug.txt
1323 F:      Documentation/devicetree/bindings/arm/coresight.txt
1324 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1325 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1326 F:      tools/perf/arch/arm/util/pmu.c
1327 F:      tools/perf/arch/arm/util/auxtrace.c
1328 F:      tools/perf/arch/arm/util/cs-etm.c
1329 F:      tools/perf/arch/arm/util/cs-etm.h
1330 F:      tools/perf/util/cs-etm.h
1331
1332 ARM/CORGI MACHINE SUPPORT
1333 M:      Richard Purdie <rpurdie@rpsys.net>
1334 S:      Maintained
1335
1336 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1337 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1338 M:      Linus Walleij <linus.walleij@linaro.org>
1339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1340 T:      git git://github.com/ulli-kroll/linux.git
1341 S:      Maintained
1342 F:      Documentation/devicetree/bindings/arm/gemini.txt
1343 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1344 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1345 F:      arch/arm/mach-gemini/
1346 F:      drivers/pinctrl/pinctrl-gemini.c
1347 F:      drivers/rtc/rtc-ftrtc010.c
1348
1349 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1350 M:      Barry Song <baohua@kernel.org>
1351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1353 S:      Maintained
1354 F:      arch/arm/boot/dts/prima2*
1355 F:      arch/arm/mach-prima2/
1356 F:      drivers/clk/sirf/
1357 F:      drivers/clocksource/timer-prima2.c
1358 F:      drivers/clocksource/timer-atlas7.c
1359 N:      [^a-z]sirf
1360
1361 ARM/EBSA110 MACHINE SUPPORT
1362 M:      Russell King <linux@armlinux.org.uk>
1363 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1364 W:      http://www.armlinux.org.uk/
1365 S:      Maintained
1366 F:      arch/arm/mach-ebsa110/
1367 F:      drivers/net/ethernet/amd/am79c961a.*
1368
1369 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1370 M:      Uwe Kleine-König <kernel@pengutronix.de>
1371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1372 S:      Maintained
1373 N:      efm32
1374
1375 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1376 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1378 S:      Maintained
1379 F:      arch/arm/mach-pxa/ezx.c
1380
1381 ARM/FARADAY FA526 PORT
1382 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1383 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1384 S:      Maintained
1385 T:      git git://git.berlios.de/gemini-board
1386 F:      arch/arm/mm/*-fa*
1387
1388 ARM/FOOTBRIDGE ARCHITECTURE
1389 M:      Russell King <linux@armlinux.org.uk>
1390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1391 W:      http://www.armlinux.org.uk/
1392 S:      Maintained
1393 F:      arch/arm/include/asm/hardware/dec21285.h
1394 F:      arch/arm/mach-footbridge/
1395
1396 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1397 M:      Shawn Guo <shawnguo@kernel.org>
1398 M:      Sascha Hauer <kernel@pengutronix.de>
1399 R:      Fabio Estevam <fabio.estevam@nxp.com>
1400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1401 S:      Maintained
1402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1403 F:      arch/arm/mach-imx/
1404 F:      arch/arm/mach-mxs/
1405 F:      arch/arm/boot/dts/imx*
1406 F:      arch/arm/configs/imx*_defconfig
1407 F:      drivers/clk/imx/
1408 F:      drivers/soc/imx/
1409 F:      include/soc/imx/
1410
1411 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1412 M:      Shawn Guo <shawnguo@kernel.org>
1413 M:      Sascha Hauer <kernel@pengutronix.de>
1414 R:      Stefan Agner <stefan@agner.ch>
1415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1416 S:      Maintained
1417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1418 F:      arch/arm/mach-imx/*vf610*
1419 F:      arch/arm/boot/dts/vf*
1420
1421 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1422 M:      Lennert Buytenhek <kernel@wantstofly.org>
1423 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1424 S:      Maintained
1425
1426 ARM/GUMSTIX MACHINE SUPPORT
1427 M:      Steve Sakoman <sakoman@gmail.com>
1428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1429 S:      Maintained
1430
1431 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1432 M:      Philipp Zabel <philipp.zabel@gmail.com>
1433 M:      Paul Parsons <lost.distance@yahoo.com>
1434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1435 S:      Maintained
1436 F:      arch/arm/mach-pxa/hx4700.c
1437 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1438 F:      sound/soc/pxa/hx4700.c
1439
1440 ARM/HISILICON SOC SUPPORT
1441 M:      Wei Xu <xuwei5@hisilicon.com>
1442 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1443 W:      http://www.hisilicon.com
1444 S:      Supported
1445 T:      git git://github.com/hisilicon/linux-hisi.git
1446 F:      arch/arm/mach-hisi/
1447 F:      arch/arm/boot/dts/hi3*
1448 F:      arch/arm/boot/dts/hip*
1449 F:      arch/arm/boot/dts/hisi*
1450 F:      arch/arm64/boot/dts/hisilicon/
1451
1452 ARM/HP JORNADA 7XX MACHINE SUPPORT
1453 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1454 W:      www.jlime.com
1455 S:      Maintained
1456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1457 F:      arch/arm/mach-sa1100/jornada720.c
1458 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1459
1460 ARM/IGEP MACHINE SUPPORT
1461 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1462 M:      Javier Martinez Canillas <javier@dowhile0.org>
1463 L:      linux-omap@vger.kernel.org
1464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1465 S:      Maintained
1466 F:      arch/arm/boot/dts/omap3-igep*
1467
1468 ARM/INCOME PXA270 SUPPORT
1469 M:      Marek Vasut <marek.vasut@gmail.com>
1470 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1471 S:      Maintained
1472 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1473
1474 ARM/INTEL IOP13XX ARM ARCHITECTURE
1475 M:      Lennert Buytenhek <kernel@wantstofly.org>
1476 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1477 S:      Maintained
1478
1479 ARM/INTEL IOP32X ARM ARCHITECTURE
1480 M:      Lennert Buytenhek <kernel@wantstofly.org>
1481 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1482 S:      Maintained
1483
1484 ARM/INTEL IOP33X ARM ARCHITECTURE
1485 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1486 S:      Orphan
1487
1488 ARM/INTEL IQ81342EX MACHINE SUPPORT
1489 M:      Lennert Buytenhek <kernel@wantstofly.org>
1490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1491 S:      Maintained
1492
1493 ARM/INTEL IXDP2850 MACHINE SUPPORT
1494 M:      Lennert Buytenhek <kernel@wantstofly.org>
1495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1496 S:      Maintained
1497
1498 ARM/INTEL IXP4XX ARM ARCHITECTURE
1499 M:      Imre Kaloz <kaloz@openwrt.org>
1500 M:      Krzysztof Halasa <khalasa@piap.pl>
1501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 S:      Maintained
1503 F:      arch/arm/mach-ixp4xx/
1504
1505 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1506 M:      Jonathan Cameron <jic23@cam.ac.uk>
1507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1508 S:      Maintained
1509 F:      arch/arm/mach-pxa/stargate2.c
1510 F:      drivers/pcmcia/pxa2xx_stargate2.c
1511
1512 ARM/INTEL XSC3 (MANZANO) ARM CORE
1513 M:      Lennert Buytenhek <kernel@wantstofly.org>
1514 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1515 S:      Maintained
1516
1517 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1518 M:      Lennert Buytenhek <kernel@wantstofly.org>
1519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1520 S:      Maintained
1521
1522 ARM/LG1K ARCHITECTURE
1523 M:      Chanho Min <chanho.min@lge.com>
1524 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1525 S:      Maintained
1526 F:      arch/arm64/boot/dts/lg/
1527
1528 ARM/LOGICPD PXA270 MACHINE SUPPORT
1529 M:      Lennert Buytenhek <kernel@wantstofly.org>
1530 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1531 S:      Maintained
1532
1533 ARM/LPC18XX ARCHITECTURE
1534 M:      Joachim Eastwood <manabian@gmail.com>
1535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1536 S:      Maintained
1537 F:      arch/arm/boot/dts/lpc43*
1538 F:      drivers/clk/nxp/clk-lpc18xx*
1539 F:      drivers/clocksource/time-lpc32xx.c
1540 F:      drivers/i2c/busses/i2c-lpc2k.c
1541 F:      drivers/memory/pl172.c
1542 F:      drivers/mtd/spi-nor/nxp-spifi.c
1543 F:      drivers/rtc/rtc-lpc24xx.c
1544 N:      lpc18xx
1545
1546 ARM/LPC32XX SOC SUPPORT
1547 M:      Vladimir Zapolskiy <vz@mleia.com>
1548 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1550 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1551 S:      Maintained
1552 F:      arch/arm/boot/dts/lpc32*
1553 F:      arch/arm/mach-lpc32xx/
1554 F:      drivers/i2c/busses/i2c-pnx.c
1555 F:      drivers/net/ethernet/nxp/lpc_eth.c
1556 F:      drivers/usb/host/ohci-nxp.c
1557 F:      drivers/watchdog/pnx4008_wdt.c
1558 N:      lpc32xx
1559
1560 ARM/MAGICIAN MACHINE SUPPORT
1561 M:      Philipp Zabel <philipp.zabel@gmail.com>
1562 S:      Maintained
1563
1564 ARM/Marvell Berlin SoC support
1565 M:      Jisheng Zhang <jszhang@marvell.com>
1566 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 S:      Maintained
1569 F:      arch/arm/mach-berlin/
1570 F:      arch/arm/boot/dts/berlin*
1571 F:      arch/arm64/boot/dts/marvell/berlin*
1572
1573 ARM/Marvell Dove/MV78xx0/Orion SOC support
1574 M:      Jason Cooper <jason@lakedaemon.net>
1575 M:      Andrew Lunn <andrew@lunn.ch>
1576 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1577 M:      Gregory Clement <gregory.clement@free-electrons.com>
1578 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1579 S:      Maintained
1580 F:      Documentation/devicetree/bindings/soc/dove/
1581 F:      arch/arm/mach-dove/
1582 F:      arch/arm/mach-mv78xx0/
1583 F:      arch/arm/mach-orion5x/
1584 F:      arch/arm/plat-orion/
1585 F:      arch/arm/boot/dts/dove*
1586 F:      arch/arm/boot/dts/orion5x*
1587
1588 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1589 M:      Jason Cooper <jason@lakedaemon.net>
1590 M:      Andrew Lunn <andrew@lunn.ch>
1591 M:      Gregory Clement <gregory.clement@free-electrons.com>
1592 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 S:      Maintained
1595 F:      arch/arm/boot/dts/armada*
1596 F:      arch/arm/boot/dts/kirkwood*
1597 F:      arch/arm/configs/mvebu_*_defconfig
1598 F:      arch/arm/mach-mvebu/
1599 F:      arch/arm64/boot/dts/marvell/armada*
1600 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1601 F:      drivers/cpufreq/mvebu-cpufreq.c
1602 F:      drivers/irqchip/irq-armada-370-xp.c
1603 F:      drivers/irqchip/irq-mvebu-*
1604 F:      drivers/pinctrl/mvebu/
1605 F:      drivers/rtc/rtc-armada38x.c
1606
1607 ARM/Mediatek RTC DRIVER
1608 M:      Eddie Huang <eddie.huang@mediatek.com>
1609 M:      Sean Wang <sean.wang@mediatek.com>
1610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1611 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1612 S:      Maintained
1613 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1614 F:      drivers/rtc/rtc-mt6397.c
1615 F:      drivers/rtc/rtc-mt7622.c
1616
1617 ARM/Mediatek SoC support
1618 M:      Matthias Brugger <matthias.bgg@gmail.com>
1619 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1620 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1621 S:      Maintained
1622 F:      arch/arm/boot/dts/mt6*
1623 F:      arch/arm/boot/dts/mt7*
1624 F:      arch/arm/boot/dts/mt8*
1625 F:      arch/arm/mach-mediatek/
1626 F:      arch/arm64/boot/dts/mediatek/
1627 N:      mtk
1628 K:      mediatek
1629
1630 ARM/Mediatek USB3 PHY DRIVER
1631 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1632 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1633 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1634 S:      Maintained
1635 F:      drivers/phy/mediatek/phy-mtk-tphy.c
1636
1637 ARM/MICREL KS8695 ARCHITECTURE
1638 M:      Greg Ungerer <gerg@uclinux.org>
1639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1640 F:      arch/arm/mach-ks8695/
1641 S:      Odd Fixes
1642
1643 ARM/MIOA701 MACHINE SUPPORT
1644 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1645 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1646 F:      arch/arm/mach-pxa/mioa701.c
1647 S:      Maintained
1648
1649 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1650 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1651 S:      Maintained
1652
1653 ARM/NOMADIK ARCHITECTURE
1654 M:      Alessandro Rubini <rubini@unipv.it>
1655 M:      Linus Walleij <linus.walleij@linaro.org>
1656 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1657 S:      Maintained
1658 F:      arch/arm/mach-nomadik/
1659 F:      drivers/pinctrl/nomadik/
1660 F:      drivers/i2c/busses/i2c-nomadik.c
1661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1662
1663 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1664 M:      Wan ZongShun <mcuos.com@gmail.com>
1665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1666 W:      http://www.mcuos.com
1667 S:      Maintained
1668 F:      arch/arm/mach-w90x900/
1669 F:      drivers/input/keyboard/w90p910_keypad.c
1670 F:      drivers/input/touchscreen/w90p910_ts.c
1671 F:      drivers/watchdog/nuc900_wdt.c
1672 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1673 F:      drivers/mtd/nand/nuc900_nand.c
1674 F:      drivers/rtc/rtc-nuc900.c
1675 F:      drivers/spi/spi-nuc900.c
1676 F:      drivers/usb/host/ehci-w90x900.c
1677 F:      drivers/video/fbdev/nuc900fb.c
1678
1679 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1680 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1681 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1682 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1683 S:      Supported
1684
1685 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1686 M:      Alexander Clouter <alex@digriz.org.uk>
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 W:      http://www.digriz.org.uk/ts78xx/kernel
1689 S:      Maintained
1690 F:      arch/arm/mach-orion5x/ts78xx-*
1691
1692 ARM/OXNAS platform support
1693 M:      Neil Armstrong <narmstrong@baylibre.com>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 L:      linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers)
1696 S:      Maintained
1697 F:      arch/arm/mach-oxnas/
1698 F:      arch/arm/boot/dts/ox8*.dtsi
1699 F:      arch/arm/boot/dts/wd-mbwe.dts
1700 F:      arch/arm/boot/dts/cloudengines-pogoplug-series-3.dts
1701 N:      oxnas
1702
1703 ARM/PALM TREO SUPPORT
1704 M:      Tomas Cech <sleep_walker@suse.com>
1705 L:      linux-arm-kernel@lists.infradead.org
1706 W:      http://hackndev.com
1707 S:      Maintained
1708 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1709 F:      arch/arm/mach-pxa/palmtreo.c
1710
1711 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1712 M:      Marek Vasut <marek.vasut@gmail.com>
1713 L:      linux-arm-kernel@lists.infradead.org
1714 W:      http://hackndev.com
1715 S:      Maintained
1716 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1717 F:      arch/arm/mach-pxa/palmtx.c
1718 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1719 F:      arch/arm/mach-pxa/palmt5.c
1720 F:      arch/arm/mach-pxa/include/mach/palmld.h
1721 F:      arch/arm/mach-pxa/palmld.c
1722 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1723 F:      arch/arm/mach-pxa/palmte2.c
1724 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1725 F:      arch/arm/mach-pxa/palmtc.c
1726
1727 ARM/PALMZ72 SUPPORT
1728 M:      Sergey Lapin <slapin@ossfans.org>
1729 L:      linux-arm-kernel@lists.infradead.org
1730 W:      http://hackndev.com
1731 S:      Maintained
1732 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1733 F:      arch/arm/mach-pxa/palmz72.c
1734
1735 ARM/PLEB SUPPORT
1736 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1737 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1738 S:      Maintained
1739
1740 ARM/PT DIGITAL BOARD PORT
1741 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1743 W:      http://www.armlinux.org.uk/
1744 S:      Maintained
1745
1746 ARM/QUALCOMM SUPPORT
1747 M:      Andy Gross <andy.gross@linaro.org>
1748 M:      David Brown <david.brown@linaro.org>
1749 L:      linux-arm-msm@vger.kernel.org
1750 L:      linux-soc@vger.kernel.org
1751 S:      Maintained
1752 F:      Documentation/devicetree/bindings/soc/qcom/
1753 F:      arch/arm/boot/dts/qcom-*.dts
1754 F:      arch/arm/boot/dts/qcom-*.dtsi
1755 F:      arch/arm/mach-qcom/
1756 F:      arch/arm64/boot/dts/qcom/*
1757 F:      drivers/i2c/busses/i2c-qup.c
1758 F:      drivers/clk/qcom/
1759 F:      drivers/dma/qcom/
1760 F:      drivers/soc/qcom/
1761 F:      drivers/spi/spi-qup.c
1762 F:      drivers/tty/serial/msm_serial.h
1763 F:      drivers/tty/serial/msm_serial.c
1764 F:      drivers/*/pm8???-*
1765 F:      drivers/mfd/ssbi.c
1766 F:      drivers/firmware/qcom_scm.c
1767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1768
1769 ARM/RADISYS ENP2611 MACHINE SUPPORT
1770 M:      Lennert Buytenhek <kernel@wantstofly.org>
1771 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1772 S:      Maintained
1773
1774 ARM/REALTEK ARCHITECTURE
1775 M:      Andreas Färber <afaerber@suse.de>
1776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1777 S:      Maintained
1778 F:      arch/arm64/boot/dts/realtek/
1779 F:      Documentation/devicetree/bindings/arm/realtek.txt
1780
1781 ARM/RENESAS ARM64 ARCHITECTURE
1782 M:      Simon Horman <horms@verge.net.au>
1783 M:      Magnus Damm <magnus.damm@gmail.com>
1784 L:      linux-renesas-soc@vger.kernel.org
1785 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1787 S:      Supported
1788 F:      arch/arm64/boot/dts/renesas/
1789 F:      Documentation/devicetree/bindings/arm/shmobile.txt
1790 F:      drivers/soc/renesas/
1791 F:      include/linux/soc/renesas/
1792
1793 ARM/RISCPC ARCHITECTURE
1794 M:      Russell King <linux@armlinux.org.uk>
1795 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1796 W:      http://www.armlinux.org.uk/
1797 S:      Maintained
1798 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1799 F:      arch/arm/include/asm/hardware/ioc.h
1800 F:      arch/arm/include/asm/hardware/iomd.h
1801 F:      arch/arm/include/asm/hardware/memc.h
1802 F:      arch/arm/mach-rpc/
1803 F:      drivers/net/ethernet/8390/etherh.c
1804 F:      drivers/net/ethernet/i825xx/ether1*
1805 F:      drivers/net/ethernet/seeq/ether3*
1806 F:      drivers/scsi/arm/
1807
1808 ARM/Rockchip SoC support
1809 M:      Heiko Stuebner <heiko@sntech.de>
1810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1811 L:      linux-rockchip@lists.infradead.org
1812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1813 S:      Maintained
1814 F:      arch/arm/boot/dts/rk3*
1815 F:      arch/arm/boot/dts/rv1108*
1816 F:      arch/arm/mach-rockchip/
1817 F:      drivers/clk/rockchip/
1818 F:      drivers/i2c/busses/i2c-rk3x.c
1819 F:      drivers/*/*rockchip*
1820 F:      drivers/*/*/*rockchip*
1821 F:      sound/soc/rockchip/
1822 N:      rockchip
1823
1824 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1825 M:      Kukjin Kim <kgene@kernel.org>
1826 M:      Krzysztof Kozlowski <krzk@kernel.org>
1827 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1828 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1829 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
1830 S:      Maintained
1831 F:      arch/arm/boot/dts/s3c*
1832 F:      arch/arm/boot/dts/s5p*
1833 F:      arch/arm/boot/dts/samsung*
1834 F:      arch/arm/boot/dts/exynos*
1835 F:      arch/arm64/boot/dts/exynos/
1836 F:      arch/arm/plat-samsung/
1837 F:      arch/arm/mach-s3c24*/
1838 F:      arch/arm/mach-s3c64xx/
1839 F:      arch/arm/mach-s5p*/
1840 F:      arch/arm/mach-exynos*/
1841 F:      drivers/*/*s3c24*
1842 F:      drivers/*/*/*s3c24*
1843 F:      drivers/*/*s3c64xx*
1844 F:      drivers/*/*s5pv210*
1845 F:      drivers/memory/samsung/*
1846 F:      drivers/soc/samsung/*
1847 F:      Documentation/arm/Samsung/
1848 F:      Documentation/devicetree/bindings/arm/samsung/
1849 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1850 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1851 N:      exynos
1852
1853 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1854 M:      Kyungmin Park <kyungmin.park@samsung.com>
1855 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1856 S:      Maintained
1857 F:      arch/arm/mach-s5pv210/
1858
1859 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1860 M:      Kyungmin Park <kyungmin.park@samsung.com>
1861 M:      Kamil Debski <kamil@wypas.org>
1862 M:      Andrzej Hajda <a.hajda@samsung.com>
1863 L:      linux-arm-kernel@lists.infradead.org
1864 L:      linux-media@vger.kernel.org
1865 S:      Maintained
1866 F:      drivers/media/platform/s5p-g2d/
1867
1868 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1869 M:      Marek Szyprowski <m.szyprowski@samsung.com>
1870 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1871 L:      linux-media@vger.kernel.org
1872 S:      Maintained
1873 F:      drivers/media/platform/s5p-cec/
1874 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
1875
1876 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1877 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1878 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
1879 L:      linux-arm-kernel@lists.infradead.org
1880 L:      linux-media@vger.kernel.org
1881 S:      Maintained
1882 F:      drivers/media/platform/s5p-jpeg/
1883
1884 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1885 M:      Kyungmin Park <kyungmin.park@samsung.com>
1886 M:      Kamil Debski <kamil@wypas.org>
1887 M:      Jeongtae Park <jtp.park@samsung.com>
1888 M:      Andrzej Hajda <a.hajda@samsung.com>
1889 L:      linux-arm-kernel@lists.infradead.org
1890 L:      linux-media@vger.kernel.org
1891 S:      Maintained
1892 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1893 F:      drivers/media/platform/s5p-mfc/
1894
1895 ARM/SHMOBILE ARM ARCHITECTURE
1896 M:      Simon Horman <horms@verge.net.au>
1897 M:      Magnus Damm <magnus.damm@gmail.com>
1898 L:      linux-renesas-soc@vger.kernel.org
1899 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1901 S:      Supported
1902 F:      arch/arm/boot/dts/emev2*
1903 F:      arch/arm/boot/dts/r7s*
1904 F:      arch/arm/boot/dts/r8a*
1905 F:      arch/arm/boot/dts/sh*
1906 F:      arch/arm/configs/shmobile_defconfig
1907 F:      arch/arm/include/debug/renesas-scif.S
1908 F:      arch/arm/mach-shmobile/
1909 F:      Documentation/devicetree/bindings/arm/shmobile.txt
1910 F:      drivers/soc/renesas/
1911 F:      include/linux/soc/renesas/
1912
1913 ARM/SOCFPGA ARCHITECTURE
1914 M:      Dinh Nguyen <dinguyen@kernel.org>
1915 S:      Maintained
1916 F:      arch/arm/mach-socfpga/
1917 F:      arch/arm/boot/dts/socfpga*
1918 F:      arch/arm/configs/socfpga_defconfig
1919 F:      arch/arm64/boot/dts/altera/
1920 W:      http://www.rocketboards.org
1921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1922
1923 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1924 M:      Dinh Nguyen <dinguyen@kernel.org>
1925 S:      Maintained
1926 F:      drivers/clk/socfpga/
1927
1928 ARM/SOCFPGA EDAC SUPPORT
1929 M:      Thor Thayer <thor.thayer@linux.intel.com>
1930 S:      Maintained
1931 F:      drivers/edac/altera_edac.
1932
1933 ARM/STI ARCHITECTURE
1934 M:      Patrice Chotard <patrice.chotard@st.com>
1935 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1936 W:      http://www.stlinux.com
1937 S:      Maintained
1938 F:      arch/arm/mach-sti/
1939 F:      arch/arm/boot/dts/sti*
1940 F:      drivers/char/hw_random/st-rng.c
1941 F:      drivers/clocksource/arm_global_timer.c
1942 F:      drivers/clocksource/clksrc_st_lpc.c
1943 F:      drivers/cpufreq/sti-cpufreq.c
1944 F:      drivers/dma/st_fdma*
1945 F:      drivers/i2c/busses/i2c-st.c
1946 F:      drivers/media/rc/st_rc.c
1947 F:      drivers/media/platform/sti/c8sectpfe/
1948 F:      drivers/mmc/host/sdhci-st.c
1949 F:      drivers/phy/st/phy-miphy28lp.c
1950 F:      drivers/phy/st/phy-stih407-usb.c
1951 F:      drivers/pinctrl/pinctrl-st.c
1952 F:      drivers/remoteproc/st_remoteproc.c
1953 F:      drivers/remoteproc/st_slim_rproc.c
1954 F:      drivers/reset/sti/
1955 F:      drivers/rtc/rtc-st-lpc.c
1956 F:      drivers/tty/serial/st-asc.c
1957 F:      drivers/usb/dwc3/dwc3-st.c
1958 F:      drivers/usb/host/ehci-st.c
1959 F:      drivers/usb/host/ohci-st.c
1960 F:      drivers/watchdog/st_lpc_wdt.c
1961 F:      drivers/ata/ahci_st.c
1962 F:      include/linux/remoteproc/st_slim_rproc.h
1963
1964 ARM/STM32 ARCHITECTURE
1965 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1966 M:      Alexandre Torgue <alexandre.torgue@st.com>
1967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1968 S:      Maintained
1969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1970 N:      stm32
1971 F:      drivers/clocksource/armv7m_systick.c
1972
1973 ARM/TANGO ARCHITECTURE
1974 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1975 L:      linux-arm-kernel@lists.infradead.org
1976 S:      Maintained
1977 N:      tango
1978
1979 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1980 M:      Lennert Buytenhek <kernel@wantstofly.org>
1981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1982 S:      Maintained
1983
1984 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
1985 M:      Hans Verkuil <hans.verkuil@cisco.com>
1986 L:      linux-tegra@vger.kernel.org
1987 L:      linux-media@vger.kernel.org
1988 S:      Maintained
1989 F:      drivers/media/platform/tegra-cec/
1990 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
1991
1992 ARM/TETON BGA MACHINE SUPPORT
1993 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1995 S:      Maintained
1996
1997 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1998 M:      Santosh Shilimkar <ssantosh@kernel.org>
1999 L:      linux-kernel@vger.kernel.org
2000 S:      Maintained
2001 F:      drivers/memory/*emif*
2002
2003 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2004 M:      Santosh Shilimkar <ssantosh@kernel.org>
2005 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2006 S:      Maintained
2007 F:      arch/arm/mach-keystone/
2008 F:      arch/arm/boot/dts/keystone-*
2009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2010
2011 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2012 M:      Santosh Shilimkar <ssantosh@kernel.org>
2013 L:      linux-kernel@vger.kernel.org
2014 S:      Maintained
2015 F:      drivers/clk/keystone/
2016
2017 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2018 M:      Santosh Shilimkar <ssantosh@kernel.org>
2019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2020 L:      linux-kernel@vger.kernel.org
2021 S:      Maintained
2022 F:      drivers/clocksource/timer-keystone.c
2023
2024 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2025 M:      Santosh Shilimkar <ssantosh@kernel.org>
2026 L:      linux-kernel@vger.kernel.org
2027 S:      Maintained
2028 F:      drivers/power/reset/keystone-reset.c
2029
2030 ARM/THECUS N2100 MACHINE SUPPORT
2031 M:      Lennert Buytenhek <kernel@wantstofly.org>
2032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2033 S:      Maintained
2034
2035 ARM/TOSA MACHINE SUPPORT
2036 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2037 M:      Dirk Opfer <dirk@opfer-online.de>
2038 S:      Maintained
2039
2040 ARM/U300 MACHINE SUPPORT
2041 M:      Linus Walleij <linus.walleij@linaro.org>
2042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2043 S:      Supported
2044 F:      arch/arm/mach-u300/
2045 F:      drivers/clocksource/timer-u300.c
2046 F:      drivers/i2c/busses/i2c-stu300.c
2047 F:      drivers/rtc/rtc-coh901331.c
2048 F:      drivers/watchdog/coh901327_wdt.c
2049 F:      drivers/dma/coh901318*
2050 F:      drivers/mfd/ab3100*
2051 F:      drivers/rtc/rtc-ab3100.c
2052 F:      drivers/rtc/rtc-coh901331.c
2053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
2054
2055 ARM/UNIPHIER ARCHITECTURE
2056 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2059 S:      Maintained
2060 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2061 F:      arch/arm/boot/dts/uniphier*
2062 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2063 F:      arch/arm/mach-uniphier/
2064 F:      arch/arm/mm/cache-uniphier.c
2065 F:      arch/arm64/boot/dts/socionext/uniphier*
2066 F:      drivers/bus/uniphier-system-bus.c
2067 F:      drivers/clk/uniphier/
2068 F:      drivers/gpio/gpio-uniphier.c
2069 F:      drivers/i2c/busses/i2c-uniphier*
2070 F:      drivers/irqchip/irq-uniphier-aidet.c
2071 F:      drivers/pinctrl/uniphier/
2072 F:      drivers/reset/reset-uniphier.c
2073 F:      drivers/tty/serial/8250/8250_uniphier.c
2074 N:      uniphier
2075
2076 ARM/Ux500 ARM ARCHITECTURE
2077 M:      Linus Walleij <linus.walleij@linaro.org>
2078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2079 S:      Maintained
2080 F:      arch/arm/mach-ux500/
2081 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2082 F:      drivers/dma/ste_dma40*
2083 F:      drivers/hwspinlock/u8500_hsem.c
2084 F:      drivers/mfd/abx500*
2085 F:      drivers/mfd/ab8500*
2086 F:      drivers/mfd/dbx500*
2087 F:      drivers/mfd/db8500*
2088 F:      drivers/pinctrl/nomadik/pinctrl-ab*
2089 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
2090 F:      drivers/rtc/rtc-ab8500.c
2091 F:      drivers/rtc/rtc-pl031.c
2092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
2093
2094 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2095 M:      Ulf Hansson <ulf.hansson@linaro.org>
2096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2097 T:      git git://git.linaro.org/people/ulfh/clk.git
2098 S:      Maintained
2099 F:      drivers/clk/ux500/
2100
2101 ARM/VERSATILE EXPRESS PLATFORM
2102 M:      Liviu Dudau <liviu.dudau@arm.com>
2103 M:      Sudeep Holla <sudeep.holla@arm.com>
2104 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2106 S:      Maintained
2107 F:      arch/arm/boot/dts/vexpress*
2108 F:      arch/arm64/boot/dts/arm/
2109 F:      arch/arm/mach-vexpress/
2110 F:      */*/vexpress*
2111 F:      */*/*/vexpress*
2112 F:      drivers/clk/versatile/clk-vexpress-osc.c
2113 F:      drivers/clocksource/versatile.c
2114 N:      mps2
2115
2116 ARM/VFP SUPPORT
2117 M:      Russell King <linux@armlinux.org.uk>
2118 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2119 W:      http://www.armlinux.org.uk/
2120 S:      Maintained
2121 F:      arch/arm/vfp/
2122
2123 ARM/VOIPAC PXA270 SUPPORT
2124 M:      Marek Vasut <marek.vasut@gmail.com>
2125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2126 S:      Maintained
2127 F:      arch/arm/mach-pxa/vpac270.c
2128 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2129
2130 ARM/VT8500 ARM ARCHITECTURE
2131 M:      Tony Prisk <linux@prisktech.co.nz>
2132 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2133 S:      Maintained
2134 F:      arch/arm/mach-vt8500/
2135 F:      drivers/clocksource/vt8500_timer.c
2136 F:      drivers/i2c/busses/i2c-wmt.c
2137 F:      drivers/mmc/host/wmt-sdmmc.c
2138 F:      drivers/pwm/pwm-vt8500.c
2139 F:      drivers/rtc/rtc-vt8500.c
2140 F:      drivers/tty/serial/vt8500_serial.c
2141 F:      drivers/usb/host/ehci-platform.c
2142 F:      drivers/usb/host/uhci-platform.c
2143 F:      drivers/video/fbdev/vt8500lcdfb.*
2144 F:      drivers/video/fbdev/wm8505fb*
2145 F:      drivers/video/fbdev/wmt_ge_rops.*
2146
2147 ARM/ZIPIT Z2 SUPPORT
2148 M:      Marek Vasut <marek.vasut@gmail.com>
2149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2150 S:      Maintained
2151 F:      arch/arm/mach-pxa/z2.c
2152 F:      arch/arm/mach-pxa/include/mach/z2.h
2153
2154 ARM/ZTE ARCHITECTURE
2155 M:      Jun Nie <jun.nie@linaro.org>
2156 M:      Baoyou Xie <baoyou.xie@linaro.org>
2157 M:      Shawn Guo <shawnguo@kernel.org>
2158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2159 S:      Maintained
2160 F:      arch/arm/boot/dts/zx2967*
2161 F:      arch/arm/mach-zx/
2162 F:      arch/arm64/boot/dts/zte/
2163 F:      drivers/clk/zte/
2164 F:      drivers/dma/zx_dma.c
2165 F:      drivers/gpio/gpio-zx.c
2166 F:      drivers/i2c/busses/i2c-zx2967.c
2167 F:      drivers/mmc/host/dw_mmc-zx.*
2168 F:      drivers/pinctrl/zte/
2169 F:      drivers/soc/zte/
2170 F:      drivers/thermal/zx2967_thermal.c
2171 F:      drivers/watchdog/zx2967_wdt.c
2172 F:      Documentation/devicetree/bindings/arm/zte.txt
2173 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2174 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2175 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2176 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2177 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2178 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2179 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2180 F:      Documentation/devicetree/bindings/soc/zte/
2181 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2182 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2183 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2184 F:      include/dt-bindings/clock/zx2967*.h
2185 F:      include/dt-bindings/soc/zte,*.h
2186 F:      sound/soc/codecs/zx_aud96p22.c
2187 F:      sound/soc/zte/
2188
2189 ARM/ZYNQ ARCHITECTURE
2190 M:      Michal Simek <michal.simek@xilinx.com>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 W:      http://wiki.xilinx.com
2193 T:      git https://github.com/Xilinx/linux-xlnx.git
2194 S:      Supported
2195 F:      arch/arm/mach-zynq/
2196 F:      drivers/cpuidle/cpuidle-zynq.c
2197 F:      drivers/block/xsysace.c
2198 N:      zynq
2199 N:      xilinx
2200 F:      drivers/clocksource/cadence_ttc_timer.c
2201 F:      drivers/i2c/busses/i2c-cadence.c
2202 F:      drivers/mmc/host/sdhci-of-arasan.c
2203 F:      drivers/edac/synopsys_edac.c
2204
2205 ARM64 PORT (AARCH64 ARCHITECTURE)
2206 M:      Catalin Marinas <catalin.marinas@arm.com>
2207 M:      Will Deacon <will.deacon@arm.com>
2208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2210 S:      Maintained
2211 F:      arch/arm64/
2212 F:      Documentation/arm64/
2213
2214 AS3645A LED FLASH CONTROLLER DRIVER
2215 M:      Sakari Ailus <sakari.ailus@iki.fi>
2216 L:      linux-leds@vger.kernel.org
2217 S:      Maintained
2218 F:      drivers/leds/leds-as3645a.c
2219
2220 AS3645A LED FLASH CONTROLLER DRIVER
2221 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2222 L:      linux-media@vger.kernel.org
2223 T:      git git://linuxtv.org/media_tree.git
2224 S:      Maintained
2225 F:      drivers/media/i2c/as3645a.c
2226 F:      include/media/i2c/as3645a.h
2227
2228 ASAHI KASEI AK8974 DRIVER
2229 M:      Linus Walleij <linus.walleij@linaro.org>
2230 L:      linux-iio@vger.kernel.org
2231 W:      http://www.akm.com/
2232 S:      Supported
2233 F:      drivers/iio/magnetometer/ak8974.c
2234
2235 ASC7621 HARDWARE MONITOR DRIVER
2236 M:      George Joseph <george.joseph@fairview5.com>
2237 L:      linux-hwmon@vger.kernel.org
2238 S:      Maintained
2239 F:      Documentation/hwmon/asc7621
2240 F:      drivers/hwmon/asc7621.c
2241
2242 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2243 M:      Corentin Chary <corentin.chary@gmail.com>
2244 L:      acpi4asus-user@lists.sourceforge.net
2245 L:      platform-driver-x86@vger.kernel.org
2246 W:      http://acpi4asus.sf.net
2247 S:      Maintained
2248 F:      drivers/platform/x86/asus*.c
2249 F:      drivers/platform/x86/eeepc*.c
2250
2251 ASUS WIRELESS RADIO CONTROL DRIVER
2252 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2253 L:      platform-driver-x86@vger.kernel.org
2254 S:      Maintained
2255 F:      drivers/platform/x86/asus-wireless.c
2256
2257 ASYMMETRIC KEYS
2258 M:      David Howells <dhowells@redhat.com>
2259 L:      keyrings@vger.kernel.org
2260 S:      Maintained
2261 F:      Documentation/crypto/asymmetric-keys.txt
2262 F:      include/linux/verification.h
2263 F:      include/crypto/public_key.h
2264 F:      include/crypto/pkcs7.h
2265 F:      crypto/asymmetric_keys/
2266
2267 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2268 R:      Dan Williams <dan.j.williams@intel.com>
2269 W:      http://sourceforge.net/projects/xscaleiop
2270 S:      Odd fixes
2271 F:      Documentation/crypto/async-tx-api.txt
2272 F:      crypto/async_tx/
2273 F:      drivers/dma/
2274 F:      include/linux/dmaengine.h
2275 F:      include/linux/async_tx.h
2276
2277 AT24 EEPROM DRIVER
2278 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2279 L:      linux-i2c@vger.kernel.org
2280 S:      Maintained
2281 F:      drivers/misc/eeprom/at24.c
2282 F:      include/linux/platform_data/at24.h
2283
2284 ATA OVER ETHERNET (AOE) DRIVER
2285 M:      "Ed L. Cashin" <ed.cashin@acm.org>
2286 W:      http://www.openaoe.org/
2287 S:      Supported
2288 F:      Documentation/aoe/
2289 F:      drivers/block/aoe/
2290
2291 ATHEROS 71XX/9XXX GPIO DRIVER
2292 M:      Alban Bedel <albeu@free.fr>
2293 W:      https://github.com/AlbanBedel/linux
2294 T:      git git://github.com/AlbanBedel/linux
2295 S:      Maintained
2296 F:      drivers/gpio/gpio-ath79.c
2297 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2298
2299 ATHEROS ATH GENERIC UTILITIES
2300 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2301 L:      linux-wireless@vger.kernel.org
2302 S:      Supported
2303 F:      drivers/net/wireless/ath/*
2304
2305 ATHEROS ATH5K WIRELESS DRIVER
2306 M:      Jiri Slaby <jirislaby@gmail.com>
2307 M:      Nick Kossifidis <mickflemm@gmail.com>
2308 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2309 L:      linux-wireless@vger.kernel.org
2310 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2311 S:      Maintained
2312 F:      drivers/net/wireless/ath/ath5k/
2313
2314 ATHEROS ATH6KL WIRELESS DRIVER
2315 M:      Kalle Valo <kvalo@qca.qualcomm.com>
2316 L:      linux-wireless@vger.kernel.org
2317 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2319 S:      Supported
2320 F:      drivers/net/wireless/ath/ath6kl/
2321
2322 ATI_REMOTE2 DRIVER
2323 M:      Ville Syrjala <syrjala@sci.fi>
2324 S:      Maintained
2325 F:      drivers/input/misc/ati_remote2.c
2326
2327 ATK0110 HWMON DRIVER
2328 M:      Luca Tettamanti <kronos.it@gmail.com>
2329 L:      linux-hwmon@vger.kernel.org
2330 S:      Maintained
2331 F:      drivers/hwmon/asus_atk0110.c
2332
2333 ATLX ETHERNET DRIVERS
2334 M:      Jay Cliburn <jcliburn@gmail.com>
2335 M:      Chris Snook <chris.snook@gmail.com>
2336 L:      netdev@vger.kernel.org
2337 W:      http://sourceforge.net/projects/atl1
2338 W:      http://atl1.sourceforge.net
2339 S:      Maintained
2340 F:      drivers/net/ethernet/atheros/
2341
2342 ATM
2343 M:      Chas Williams <3chas3@gmail.com>
2344 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2345 L:      netdev@vger.kernel.org
2346 W:      http://linux-atm.sourceforge.net
2347 S:      Maintained
2348 F:      drivers/atm/
2349 F:      include/linux/atm*
2350 F:      include/uapi/linux/atm*
2351
2352 ATMEL AT91 / AT32 MCI DRIVER
2353 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2354 S:      Maintained
2355 F:      drivers/mmc/host/atmel-mci.c
2356
2357 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2358 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2359 S:      Supported
2360 F:      drivers/power/reset/at91-sama5d2_shdwc.c
2361
2362 ATMEL Audio ALSA driver
2363 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2364 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2365 S:      Supported
2366 F:      sound/soc/atmel
2367
2368 ATMEL I2C DRIVER
2369 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2370 L:      linux-i2c@vger.kernel.org
2371 S:      Supported
2372 F:      drivers/i2c/busses/i2c-at91.c
2373
2374 ATMEL ISI DRIVER
2375 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2376 L:      linux-media@vger.kernel.org
2377 S:      Supported
2378 F:      drivers/media/platform/atmel/atmel-isi.c
2379 F:      include/media/atmel-isi.h
2380
2381 ATMEL LCDFB DRIVER
2382 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2383 L:      linux-fbdev@vger.kernel.org
2384 S:      Maintained
2385 F:      drivers/video/fbdev/atmel_lcdfb.c
2386 F:      include/video/atmel_lcdc.h
2387
2388 ATMEL MACB ETHERNET DRIVER
2389 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2390 S:      Supported
2391 F:      drivers/net/ethernet/cadence/
2392
2393 ATMEL MAXTOUCH DRIVER
2394 M:      Nick Dyer <nick@shmanahar.org>
2395 T:      git git://github.com/ndyer/linux.git
2396 S:      Maintained
2397 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2398 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2399 F:      include/linux/platform_data/atmel_mxt_ts.h
2400
2401 ATMEL SAMA5D2 ADC DRIVER
2402 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2403 L:      linux-iio@vger.kernel.org
2404 S:      Supported
2405 F:      drivers/iio/adc/at91-sama5d2_adc.c
2406
2407 ATMEL SDMMC DRIVER
2408 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2409 L:      linux-mmc@vger.kernel.org
2410 S:      Supported
2411 F:      drivers/mmc/host/sdhci-of-at91.c
2412
2413 ATMEL SPI DRIVER
2414 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2415 S:      Supported
2416 F:      drivers/spi/spi-atmel.*
2417
2418 ATMEL SSC DRIVER
2419 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2421 S:      Supported
2422 F:      drivers/misc/atmel-ssc.c
2423 F:      include/linux/atmel-ssc.h
2424
2425 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2426 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2428 S:      Supported
2429 F:      drivers/misc/atmel_tclib.c
2430 F:      drivers/clocksource/tcb_clksrc.c
2431
2432 ATMEL USBA UDC DRIVER
2433 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2435 S:      Supported
2436 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2437
2438 ATMEL WIRELESS DRIVER
2439 M:      Simon Kelley <simon@thekelleys.org.uk>
2440 L:      linux-wireless@vger.kernel.org
2441 W:      http://www.thekelleys.org.uk/atmel
2442 W:      http://atmelwlandriver.sourceforge.net/
2443 S:      Maintained
2444 F:      drivers/net/wireless/atmel/atmel*
2445
2446 ATMEL XDMA DRIVER
2447 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2448 L:      linux-arm-kernel@lists.infradead.org
2449 L:      dmaengine@vger.kernel.org
2450 S:      Supported
2451 F:      drivers/dma/at_xdmac.c
2452
2453 ATOMIC INFRASTRUCTURE
2454 M:      Will Deacon <will.deacon@arm.com>
2455 M:      Peter Zijlstra <peterz@infradead.org>
2456 R:      Boqun Feng <boqun.feng@gmail.com>
2457 L:      linux-kernel@vger.kernel.org
2458 S:      Maintained
2459 F:      arch/*/include/asm/atomic*.h
2460 F:      include/*/atomic*.h
2461
2462 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2463 M:      Bradley Grove <linuxdrivers@attotech.com>
2464 L:      linux-scsi@vger.kernel.org
2465 W:      http://www.attotech.com
2466 S:      Supported
2467 F:      drivers/scsi/esas2r
2468
2469 ATUSB IEEE 802.15.4 RADIO DRIVER
2470 M:      Stefan Schmidt <stefan@osg.samsung.com>
2471 L:      linux-wpan@vger.kernel.org
2472 S:      Maintained
2473 F:      drivers/net/ieee802154/atusb.c
2474 F:      drivers/net/ieee802154/atusb.h
2475 F:      drivers/net/ieee802154/at86rf230.h
2476
2477 AUDIT SUBSYSTEM
2478 M:      Paul Moore <paul@paul-moore.com>
2479 M:      Eric Paris <eparis@redhat.com>
2480 L:      linux-audit@redhat.com (moderated for non-subscribers)
2481 W:      https://github.com/linux-audit
2482 W:      https://people.redhat.com/sgrubb/audit
2483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2484 S:      Supported
2485 F:      include/linux/audit.h
2486 F:      include/uapi/linux/audit.h
2487 F:      kernel/audit*
2488
2489 AUXILIARY DISPLAY DRIVERS
2490 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2491 W:      http://miguelojeda.es/auxdisplay.htm
2492 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2493 S:      Maintained
2494 F:      drivers/auxdisplay/
2495 F:      include/linux/cfag12864b.h
2496
2497 AX.25 NETWORK LAYER
2498 M:      Ralf Baechle <ralf@linux-mips.org>
2499 L:      linux-hams@vger.kernel.org
2500 W:      http://www.linux-ax25.org/
2501 S:      Maintained
2502 F:      include/uapi/linux/ax25.h
2503 F:      include/net/ax25.h
2504 F:      net/ax25/
2505
2506 AXENTIA ARM DEVICES
2507 M:      Peter Rosin <peda@axentia.se>
2508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2509 S:      Maintained
2510 F:      Documentation/devicetree/bindings/arm/axentia.txt
2511 F:      arch/arm/boot/dts/at91-linea.dtsi
2512 F:      arch/arm/boot/dts/at91-tse850-3.dts
2513
2514 AXENTIA ASOC DRIVERS
2515 M:      Peter Rosin <peda@axentia.se>
2516 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2517 S:      Maintained
2518 F:      Documentation/devicetree/bindings/sound/axentia,*
2519 F:      sound/soc/atmel/tse850-pcm5142.c
2520
2521 AZ6007 DVB DRIVER
2522 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2523 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2524 L:      linux-media@vger.kernel.org
2525 W:      https://linuxtv.org
2526 T:      git git://linuxtv.org/media_tree.git
2527 S:      Maintained
2528 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2529
2530 AZTECH FM RADIO RECEIVER DRIVER
2531 M:      Hans Verkuil <hverkuil@xs4all.nl>
2532 L:      linux-media@vger.kernel.org
2533 T:      git git://linuxtv.org/media_tree.git
2534 W:      https://linuxtv.org
2535 S:      Maintained
2536 F:      drivers/media/radio/radio-aztech*
2537
2538 B43 WIRELESS DRIVER
2539 L:      linux-wireless@vger.kernel.org
2540 L:      b43-dev@lists.infradead.org
2541 W:      http://wireless.kernel.org/en/users/Drivers/b43
2542 S:      Odd Fixes
2543 F:      drivers/net/wireless/broadcom/b43/
2544
2545 B43LEGACY WIRELESS DRIVER
2546 M:      Larry Finger <Larry.Finger@lwfinger.net>
2547 L:      linux-wireless@vger.kernel.org
2548 L:      b43-dev@lists.infradead.org
2549 W:      http://wireless.kernel.org/en/users/Drivers/b43
2550 S:      Maintained
2551 F:      drivers/net/wireless/broadcom/b43legacy/
2552
2553 BACKLIGHT CLASS/SUBSYSTEM
2554 M:      Lee Jones <lee.jones@linaro.org>
2555 M:      Daniel Thompson <daniel.thompson@linaro.org>
2556 M:      Jingoo Han <jingoohan1@gmail.com>
2557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2558 S:      Maintained
2559 F:      drivers/video/backlight/
2560 F:      include/linux/backlight.h
2561 F:      include/linux/pwm_backlight.h
2562 F:      Documentation/devicetree/bindings/leds/backlight
2563
2564 BATMAN ADVANCED
2565 M:      Marek Lindner <mareklindner@neomailbox.ch>
2566 M:      Simon Wunderlich <sw@simonwunderlich.de>
2567 M:      Antonio Quartulli <a@unstable.cc>
2568 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2569 W:      https://www.open-mesh.org/
2570 Q:      https://patchwork.open-mesh.org/project/batman/list/
2571 S:      Maintained
2572 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2573 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2574 F:      Documentation/networking/batman-adv.rst
2575 F:      include/uapi/linux/batman_adv.h
2576 F:      net/batman-adv/
2577
2578 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2579 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2580 L:      linux-hams@vger.kernel.org
2581 W:      http://www.baycom.org/~tom/ham/ham.html
2582 S:      Maintained
2583 F:      drivers/net/hamradio/baycom*
2584
2585 BCACHE (BLOCK LAYER CACHE)
2586 M:      Michael Lyle <mlyle@lyle.org>
2587 M:      Kent Overstreet <kent.overstreet@gmail.com>
2588 L:      linux-bcache@vger.kernel.org
2589 W:      http://bcache.evilpiepirate.org
2590 C:      irc://irc.oftc.net/bcache
2591 S:      Maintained
2592 F:      drivers/md/bcache/
2593
2594 BDISP ST MEDIA DRIVER
2595 M:      Fabien Dessenne <fabien.dessenne@st.com>
2596 L:      linux-media@vger.kernel.org
2597 T:      git git://linuxtv.org/media_tree.git
2598 W:      https://linuxtv.org
2599 S:      Supported
2600 F:      drivers/media/platform/sti/bdisp
2601
2602 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2603 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2604 L:      netdev@vger.kernel.org
2605 S:      Maintained
2606 F:      drivers/net/ethernet/ec_bhf.c
2607
2608 BEFS FILE SYSTEM
2609 M:      Luis de Bethencourt <luisbg@kernel.org>
2610 M:      Salah Triki <salah.triki@gmail.com>
2611 S:      Maintained
2612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2613 F:      Documentation/filesystems/befs.txt
2614 F:      fs/befs/
2615
2616 BFQ I/O SCHEDULER
2617 M:      Paolo Valente <paolo.valente@linaro.org>
2618 M:      Jens Axboe <axboe@kernel.dk>
2619 L:      linux-block@vger.kernel.org
2620 S:      Maintained
2621 F:      block/bfq-*
2622 F:      Documentation/block/bfq-iosched.txt
2623
2624 BFS FILE SYSTEM
2625 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2626 S:      Maintained
2627 F:      Documentation/filesystems/bfs.txt
2628 F:      fs/bfs/
2629 F:      include/uapi/linux/bfs_fs.h
2630
2631 BLACKFIN ARCHITECTURE
2632 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2633 T:      git git://git.code.sf.net/p/adi-linux/code
2634 W:      http://blackfin.uclinux.org
2635 S:      Orphan
2636 F:      arch/blackfin/
2637
2638 BLACKFIN EMAC DRIVER
2639 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2640 W:      http://blackfin.uclinux.org
2641 S:      Orphan
2642 F:      drivers/net/ethernet/adi/
2643
2644 BLACKFIN MEDIA DRIVER
2645 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2646 W:      http://blackfin.uclinux.org/
2647 S:      Orphan
2648 F:      drivers/media/platform/blackfin/
2649 F:      drivers/media/i2c/adv7183*
2650 F:      drivers/media/i2c/vs6624*
2651
2652 BLACKFIN RTC DRIVER
2653 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2654 W:      http://blackfin.uclinux.org
2655 S:      Orphan
2656 F:      drivers/rtc/rtc-bfin.c
2657
2658 BLACKFIN SDH DRIVER
2659 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2660 W:      http://blackfin.uclinux.org
2661 S:      Orphan
2662 F:      drivers/mmc/host/bfin_sdh.c
2663
2664 BLACKFIN SERIAL DRIVER
2665 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2666 W:      http://blackfin.uclinux.org
2667 S:      Orphan
2668 F:      drivers/tty/serial/bfin_uart.c
2669
2670 BLACKFIN WATCHDOG DRIVER
2671 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2672 W:      http://blackfin.uclinux.org
2673 S:      Orphan
2674 F:      drivers/watchdog/bfin_wdt.c
2675
2676 BLINKM RGB LED DRIVER
2677 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2678 S:      Maintained
2679 F:      drivers/leds/leds-blinkm.c
2680
2681 BLOCK LAYER
2682 M:      Jens Axboe <axboe@kernel.dk>
2683 L:      linux-block@vger.kernel.org
2684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2685 S:      Maintained
2686 F:      block/
2687 F:      kernel/trace/blktrace.c
2688 F:      lib/sbitmap.c
2689
2690 BLOCK2MTD DRIVER
2691 M:      Joern Engel <joern@lazybastard.org>
2692 L:      linux-mtd@lists.infradead.org
2693 S:      Maintained
2694 F:      drivers/mtd/devices/block2mtd.c
2695
2696 BLUETOOTH DRIVERS
2697 M:      Marcel Holtmann <marcel@holtmann.org>
2698 M:      Gustavo Padovan <gustavo@padovan.org>
2699 M:      Johan Hedberg <johan.hedberg@gmail.com>
2700 L:      linux-bluetooth@vger.kernel.org
2701 W:      http://www.bluez.org/
2702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2704 S:      Maintained
2705 F:      drivers/bluetooth/
2706
2707 BLUETOOTH SUBSYSTEM
2708 M:      Marcel Holtmann <marcel@holtmann.org>
2709 M:      Gustavo Padovan <gustavo@padovan.org>
2710 M:      Johan Hedberg <johan.hedberg@gmail.com>
2711 L:      linux-bluetooth@vger.kernel.org
2712 W:      http://www.bluez.org/
2713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2715 S:      Maintained
2716 F:      net/bluetooth/
2717 F:      include/net/bluetooth/
2718
2719 BONDING DRIVER
2720 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2721 M:      Veaceslav Falico <vfalico@gmail.com>
2722 M:      Andy Gospodarek <andy@greyhouse.net>
2723 L:      netdev@vger.kernel.org
2724 W:      http://sourceforge.net/projects/bonding/
2725 S:      Supported
2726 F:      drivers/net/bonding/
2727 F:      include/uapi/linux/if_bonding.h
2728
2729 BPF (Safe dynamic programs and tools)
2730 M:      Alexei Starovoitov <ast@kernel.org>
2731 M:      Daniel Borkmann <daniel@iogearbox.net>
2732 L:      netdev@vger.kernel.org
2733 L:      linux-kernel@vger.kernel.org
2734 S:      Supported
2735 F:      arch/x86/net/bpf_jit*
2736 F:      Documentation/networking/filter.txt
2737 F:      Documentation/bpf/
2738 F:      include/linux/bpf*
2739 F:      include/linux/filter.h
2740 F:      include/uapi/linux/bpf*
2741 F:      include/uapi/linux/filter.h
2742 F:      kernel/bpf/
2743 F:      kernel/trace/bpf_trace.c
2744 F:      lib/test_bpf.c
2745 F:      net/bpf/
2746 F:      net/core/filter.c
2747 F:      net/sched/act_bpf.c
2748 F:      net/sched/cls_bpf.c
2749 F:      samples/bpf/
2750 F:      tools/bpf/
2751 F:      tools/testing/selftests/bpf/
2752
2753 BROADCOM B44 10/100 ETHERNET DRIVER
2754 M:      Michael Chan <michael.chan@broadcom.com>
2755 L:      netdev@vger.kernel.org
2756 S:      Supported
2757 F:      drivers/net/ethernet/broadcom/b44.*
2758
2759 BROADCOM B53 ETHERNET SWITCH DRIVER
2760 M:      Florian Fainelli <f.fainelli@gmail.com>
2761 L:      netdev@vger.kernel.org
2762 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
2763 S:      Supported
2764 F:      drivers/net/dsa/b53/*
2765 F:      include/linux/platform_data/b53.h
2766
2767 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2768 M:      Florian Fainelli <f.fainelli@gmail.com>
2769 M:      Ray Jui <rjui@broadcom.com>
2770 M:      Scott Branden <sbranden@broadcom.com>
2771 M:      bcm-kernel-feedback-list@broadcom.com
2772 T:      git git://github.com/broadcom/mach-bcm
2773 S:      Maintained
2774 N:      bcm281*
2775 N:      bcm113*
2776 N:      bcm216*
2777 N:      kona
2778 F:      arch/arm/mach-bcm/
2779
2780 BROADCOM BCM2835 ARM ARCHITECTURE
2781 M:      Eric Anholt <eric@anholt.net>
2782 M:      Stefan Wahren <stefan.wahren@i2se.com>
2783 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2785 T:      git git://github.com/anholt/linux
2786 S:      Maintained
2787 N:      bcm2835
2788 F:      drivers/staging/vc04_services
2789
2790 BROADCOM BCM47XX MIPS ARCHITECTURE
2791 M:      Hauke Mehrtens <hauke@hauke-m.de>
2792 M:      Rafał Miłecki <zajec5@gmail.com>
2793 L:      linux-mips@linux-mips.org
2794 S:      Maintained
2795 F:      Documentation/devicetree/bindings/mips/brcm/
2796 F:      arch/mips/bcm47xx/*
2797 F:      arch/mips/include/asm/mach-bcm47xx/*
2798
2799 BROADCOM BCM5301X ARM ARCHITECTURE
2800 M:      Hauke Mehrtens <hauke@hauke-m.de>
2801 M:      Rafał Miłecki <zajec5@gmail.com>
2802 M:      Jon Mason <jonmason@broadcom.com>
2803 M:      bcm-kernel-feedback-list@broadcom.com
2804 L:      linux-arm-kernel@lists.infradead.org
2805 S:      Maintained
2806 F:      arch/arm/mach-bcm/bcm_5301x.c
2807 F:      arch/arm/boot/dts/bcm5301x*.dtsi
2808 F:      arch/arm/boot/dts/bcm470*
2809 F:      arch/arm/boot/dts/bcm953012*
2810
2811 BROADCOM BCM53573 ARM ARCHITECTURE
2812 M:      Rafał Miłecki <rafal@milecki.pl>
2813 L:      linux-arm-kernel@lists.infradead.org
2814 S:      Maintained
2815 F:      arch/arm/boot/dts/bcm53573*
2816 F:      arch/arm/boot/dts/bcm47189*
2817
2818 BROADCOM BCM63XX ARM ARCHITECTURE
2819 M:      Florian Fainelli <f.fainelli@gmail.com>
2820 M:      bcm-kernel-feedback-list@broadcom.com
2821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2822 T:      git git://github.com/broadcom/stblinux.git
2823 S:      Maintained
2824 N:      bcm63xx
2825
2826 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2827 M:      Kevin Cernekee <cernekee@gmail.com>
2828 L:      linux-usb@vger.kernel.org
2829 S:      Maintained
2830 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2831
2832 BROADCOM BCM7XXX ARM ARCHITECTURE
2833 M:      Brian Norris <computersforpeace@gmail.com>
2834 M:      Gregory Fong <gregory.0xf0@gmail.com>
2835 M:      Florian Fainelli <f.fainelli@gmail.com>
2836 M:      bcm-kernel-feedback-list@broadcom.com
2837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2838 T:      git git://github.com/broadcom/stblinux.git
2839 S:      Maintained
2840 F:      arch/arm/mach-bcm/*brcmstb*
2841 F:      arch/arm/boot/dts/bcm7*.dts*
2842 F:      drivers/bus/brcmstb_gisb.c
2843 N:      brcmstb
2844
2845 BROADCOM BMIPS CPUFREQ DRIVER
2846 M:      Markus Mayer <mmayer@broadcom.com>
2847 M:      bcm-kernel-feedback-list@broadcom.com
2848 L:      linux-pm@vger.kernel.org
2849 S:      Maintained
2850 F:      drivers/cpufreq/bmips-cpufreq.c
2851
2852 BROADCOM BMIPS MIPS ARCHITECTURE
2853 M:      Kevin Cernekee <cernekee@gmail.com>
2854 M:      Florian Fainelli <f.fainelli@gmail.com>
2855 L:      linux-mips@linux-mips.org
2856 T:      git git://github.com/broadcom/stblinux.git
2857 S:      Maintained
2858 F:      arch/mips/bmips/*
2859 F:      arch/mips/include/asm/mach-bmips/*
2860 F:      arch/mips/kernel/*bmips*
2861 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2862 F:      drivers/irqchip/irq-bcm63*
2863 F:      drivers/irqchip/irq-bcm7*
2864 F:      drivers/irqchip/irq-brcmstb*
2865 F:      include/linux/bcm963xx_nvram.h
2866 F:      include/linux/bcm963xx_tag.h
2867
2868 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2869 M:      Rasesh Mody <rasesh.mody@cavium.com>
2870 M:      Harish Patil <harish.patil@cavium.com>
2871 M:      Dept-GELinuxNICDev@cavium.com
2872 L:      netdev@vger.kernel.org
2873 S:      Supported
2874 F:      drivers/net/ethernet/broadcom/bnx2.*
2875 F:      drivers/net/ethernet/broadcom/bnx2_*
2876
2877 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2878 M:      QLogic-Storage-Upstream@qlogic.com
2879 L:      linux-scsi@vger.kernel.org
2880 S:      Supported
2881 F:      drivers/scsi/bnx2fc/
2882
2883 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2884 M:      QLogic-Storage-Upstream@qlogic.com
2885 L:      linux-scsi@vger.kernel.org
2886 S:      Supported
2887 F:      drivers/scsi/bnx2i/
2888
2889 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2890 M:      Ariel Elior <ariel.elior@cavium.com>
2891 M:      everest-linux-l2@cavium.com
2892 L:      netdev@vger.kernel.org
2893 S:      Supported
2894 F:      drivers/net/ethernet/broadcom/bnx2x/
2895
2896 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2897 M:      Michael Chan <michael.chan@broadcom.com>
2898 L:      netdev@vger.kernel.org
2899 S:      Supported
2900 F:      drivers/net/ethernet/broadcom/bnxt/
2901
2902 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2903 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
2904 M:      Franky Lin <franky.lin@broadcom.com>
2905 M:      Hante Meuleman <hante.meuleman@broadcom.com>
2906 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
2907 M:      Wright Feng <wright.feng@cypress.com>
2908 L:      linux-wireless@vger.kernel.org
2909 L:      brcm80211-dev-list.pdl@broadcom.com
2910 L:      brcm80211-dev-list@cypress.com
2911 S:      Supported
2912 F:      drivers/net/wireless/broadcom/brcm80211/
2913
2914 BROADCOM BRCMSTB GPIO DRIVER
2915 M:      Gregory Fong <gregory.0xf0@gmail.com>
2916 L:      bcm-kernel-feedback-list@broadcom.com
2917 S:      Supported
2918 F:      drivers/gpio/gpio-brcmstb.c
2919 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2920
2921 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
2922 M:      Al Cooper <alcooperx@gmail.com>
2923 L:      linux-kernel@vger.kernel.org
2924 L:      bcm-kernel-feedback-list@broadcom.com
2925 S:      Maintained
2926 F:      drivers/phy/broadcom/phy-brcm-usb*
2927
2928 BROADCOM GENET ETHERNET DRIVER
2929 M:      Doug Berger <opendmb@gmail.com>
2930 M:      Florian Fainelli <f.fainelli@gmail.com>
2931 L:      netdev@vger.kernel.org
2932 S:      Supported
2933 F:      drivers/net/ethernet/broadcom/genet/
2934
2935 BROADCOM IPROC ARM ARCHITECTURE
2936 M:      Ray Jui <rjui@broadcom.com>
2937 M:      Scott Branden <sbranden@broadcom.com>
2938 M:      Jon Mason <jonmason@broadcom.com>
2939 M:      bcm-kernel-feedback-list@broadcom.com
2940 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2941 T:      git git://github.com/broadcom/cygnus-linux.git
2942 S:      Maintained
2943 N:      iproc
2944 N:      cygnus
2945 N:      bcm[-_]nsp
2946 N:      bcm9113*
2947 N:      bcm9583*
2948 N:      bcm9585*
2949 N:      bcm9586*
2950 N:      bcm988312
2951 N:      bcm113*
2952 N:      bcm583*
2953 N:      bcm585*
2954 N:      bcm586*
2955 N:      bcm88312
2956 N:      hr2
2957 F:      arch/arm64/boot/dts/broadcom/ns2*
2958 F:      drivers/clk/bcm/clk-ns*
2959 F:      drivers/pinctrl/bcm/pinctrl-ns*
2960
2961 BROADCOM KONA GPIO DRIVER
2962 M:      Ray Jui <rjui@broadcom.com>
2963 L:      bcm-kernel-feedback-list@broadcom.com
2964 S:      Supported
2965 F:      drivers/gpio/gpio-bcm-kona.c
2966 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2967
2968 BROADCOM NETXTREME-E ROCE DRIVER
2969 M:      Selvin Xavier <selvin.xavier@broadcom.com>
2970 M:      Devesh Sharma <devesh.sharma@broadcom.com>
2971 M:      Somnath Kotur <somnath.kotur@broadcom.com>
2972 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
2973 L:      linux-rdma@vger.kernel.org
2974 W:      http://www.broadcom.com
2975 S:      Supported
2976 F:      drivers/infiniband/hw/bnxt_re/
2977 F:      include/uapi/rdma/bnxt_re-abi.h
2978
2979 BROADCOM NVRAM DRIVER
2980 M:      Rafał Miłecki <zajec5@gmail.com>
2981 L:      linux-mips@linux-mips.org
2982 S:      Maintained
2983 F:      drivers/firmware/broadcom/*
2984
2985 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2986 M:      Rafał Miłecki <zajec5@gmail.com>
2987 L:      linux-wireless@vger.kernel.org
2988 S:      Maintained
2989 F:      drivers/bcma/
2990 F:      include/linux/bcma/
2991
2992 BROADCOM STB AVS CPUFREQ DRIVER
2993 M:      Markus Mayer <mmayer@broadcom.com>
2994 M:      bcm-kernel-feedback-list@broadcom.com
2995 L:      linux-pm@vger.kernel.org
2996 S:      Maintained
2997 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
2998 F:      drivers/cpufreq/brcmstb*
2999
3000 BROADCOM STB AVS TMON DRIVER
3001 M:      Markus Mayer <mmayer@broadcom.com>
3002 M:      bcm-kernel-feedback-list@broadcom.com
3003 L:      linux-pm@vger.kernel.org
3004 S:      Maintained
3005 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3006 F:      drivers/thermal/broadcom/brcmstb*
3007
3008 BROADCOM STB NAND FLASH DRIVER
3009 M:      Brian Norris <computersforpeace@gmail.com>
3010 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3011 L:      linux-mtd@lists.infradead.org
3012 L:      bcm-kernel-feedback-list@broadcom.com
3013 S:      Maintained
3014 F:      drivers/mtd/nand/brcmnand/
3015
3016 BROADCOM STB DPFE DRIVER
3017 M:      Markus Mayer <mmayer@broadcom.com>
3018 M:      bcm-kernel-feedback-list@broadcom.com
3019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3020 S:      Maintained
3021 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3022 F:      drivers/memory/brcmstb_dpfe.c
3023
3024 BROADCOM SYSTEMPORT ETHERNET DRIVER
3025 M:      Florian Fainelli <f.fainelli@gmail.com>
3026 L:      netdev@vger.kernel.org
3027 S:      Supported
3028 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3029
3030 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3031 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3032 M:      Prashant Sreedharan <prashant@broadcom.com>
3033 M:      Michael Chan <mchan@broadcom.com>
3034 L:      netdev@vger.kernel.org
3035 S:      Supported
3036 F:      drivers/net/ethernet/broadcom/tg3.*
3037
3038 BROCADE BFA FC SCSI DRIVER
3039 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3040 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3041 L:      linux-scsi@vger.kernel.org
3042 S:      Supported
3043 F:      drivers/scsi/bfa/
3044
3045 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3046 M:      Rasesh Mody <rasesh.mody@cavium.com>
3047 M:      Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
3048 M:      Dept-GELinuxNICDev@cavium.com
3049 L:      netdev@vger.kernel.org
3050 S:      Supported
3051 F:      drivers/net/ethernet/brocade/bna/
3052
3053 BSG (block layer generic sg v4 driver)
3054 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3055 L:      linux-scsi@vger.kernel.org
3056 S:      Supported
3057 F:      block/bsg.c
3058 F:      include/linux/bsg.h
3059 F:      include/uapi/linux/bsg.h
3060
3061 BT87X AUDIO DRIVER
3062 M:      Clemens Ladisch <clemens@ladisch.de>
3063 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3064 T:      git git://git.alsa-project.org/alsa-kernel.git
3065 S:      Maintained
3066 F:      Documentation/sound/alsa/Bt87x.txt
3067 F:      sound/pci/bt87x.c
3068
3069 BT8XXGPIO DRIVER
3070 M:      Michael Buesch <m@bues.ch>
3071 W:      http://bu3sch.de/btgpio.php
3072 S:      Maintained
3073 F:      drivers/gpio/gpio-bt8xx.c
3074
3075 BTRFS FILE SYSTEM
3076 M:      Chris Mason <clm@fb.com>
3077 M:      Josef Bacik <jbacik@fb.com>
3078 M:      David Sterba <dsterba@suse.com>
3079 L:      linux-btrfs@vger.kernel.org
3080 W:      http://btrfs.wiki.kernel.org/
3081 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3083 S:      Maintained
3084 F:      Documentation/filesystems/btrfs.txt
3085 F:      fs/btrfs/
3086 F:      include/linux/btrfs*
3087 F:      include/uapi/linux/btrfs*
3088
3089 BTTV VIDEO4LINUX DRIVER
3090 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
3091 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3092 L:      linux-media@vger.kernel.org
3093 W:      https://linuxtv.org
3094 T:      git git://linuxtv.org/media_tree.git
3095 S:      Odd fixes
3096 F:      Documentation/media/v4l-drivers/bttv*
3097 F:      drivers/media/pci/bt8xx/bttv*
3098
3099 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3100 M:      Chanwoo Choi <cw00.choi@samsung.com>
3101 L:      linux-pm@vger.kernel.org
3102 L:      linux-samsung-soc@vger.kernel.org
3103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3104 S:      Maintained
3105 F:      drivers/devfreq/exynos-bus.c
3106 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3107
3108 BUSLOGIC SCSI DRIVER
3109 M:      Khalid Aziz <khalid@gonehiking.org>
3110 L:      linux-scsi@vger.kernel.org
3111 S:      Maintained
3112 F:      drivers/scsi/BusLogic.*
3113 F:      drivers/scsi/FlashPoint.*
3114
3115 C-MEDIA CMI8788 DRIVER
3116 M:      Clemens Ladisch <clemens@ladisch.de>
3117 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3118 T:      git git://git.alsa-project.org/alsa-kernel.git
3119 S:      Maintained
3120 F:      sound/pci/oxygen/
3121
3122 C6X ARCHITECTURE
3123 M:      Mark Salter <msalter@redhat.com>
3124 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3125 L:      linux-c6x-dev@linux-c6x.org
3126 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3127 S:      Maintained
3128 F:      arch/c6x/
3129
3130 CA8210 IEEE-802.15.4 RADIO DRIVER
3131 M:      Harry Morris <h.morris@cascoda.com>
3132 L:      linux-wpan@vger.kernel.org
3133 W:      https://github.com/Cascoda/ca8210-linux.git
3134 S:      Maintained
3135 F:      drivers/net/ieee802154/ca8210.c
3136 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3137
3138 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3139 M:      David Howells <dhowells@redhat.com>
3140 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3141 S:      Supported
3142 F:      Documentation/filesystems/caching/cachefiles.txt
3143 F:      fs/cachefiles/
3144
3145 CADET FM/AM RADIO RECEIVER DRIVER
3146 M:      Hans Verkuil <hverkuil@xs4all.nl>
3147 L:      linux-media@vger.kernel.org
3148 T:      git git://linuxtv.org/media_tree.git
3149 W:      https://linuxtv.org
3150 S:      Maintained
3151 F:      drivers/media/radio/radio-cadet*
3152
3153 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3154 M:      Jonathan Corbet <corbet@lwn.net>
3155 L:      linux-media@vger.kernel.org
3156 T:      git git://linuxtv.org/media_tree.git
3157 S:      Maintained
3158 F:      Documentation/media/v4l-drivers/cafe_ccic*
3159 F:      drivers/media/platform/marvell-ccic/
3160
3161 CAIF NETWORK LAYER
3162 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3163 L:      netdev@vger.kernel.org
3164 S:      Supported
3165 F:      Documentation/networking/caif/
3166 F:      drivers/net/caif/
3167 F:      include/uapi/linux/caif/
3168 F:      include/net/caif/
3169 F:      net/caif/
3170
3171 CALGARY x86-64 IOMMU
3172 M:      Muli Ben-Yehuda <mulix@mulix.org>
3173 M:      Jon Mason <jdmason@kudzu.us>
3174 L:      iommu@lists.linux-foundation.org
3175 S:      Maintained
3176 F:      arch/x86/kernel/pci-calgary_64.c
3177 F:      arch/x86/kernel/tce_64.c
3178 F:      arch/x86/include/asm/calgary.h
3179 F:      arch/x86/include/asm/tce.h
3180
3181 CAN NETWORK DRIVERS
3182 M:      Wolfgang Grandegger <wg@grandegger.com>
3183 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3184 L:      linux-can@vger.kernel.org
3185 W:      https://github.com/linux-can
3186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3188 S:      Maintained
3189 F:      Documentation/devicetree/bindings/net/can/
3190 F:      drivers/net/can/
3191 F:      include/linux/can/dev.h
3192 F:      include/linux/can/platform/
3193 F:      include/uapi/linux/can/error.h
3194 F:      include/uapi/linux/can/netlink.h
3195
3196 CAN NETWORK LAYER
3197 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3198 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3199 L:      linux-can@vger.kernel.org
3200 W:      https://github.com/linux-can
3201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3203 S:      Maintained
3204 F:      Documentation/networking/can.txt
3205 F:      net/can/
3206 F:      include/linux/can/core.h
3207 F:      include/uapi/linux/can.h
3208 F:      include/uapi/linux/can/bcm.h
3209 F:      include/uapi/linux/can/raw.h
3210 F:      include/uapi/linux/can/gw.h
3211
3212 CAPABILITIES
3213 M:      Serge Hallyn <serge@hallyn.com>
3214 L:      linux-security-module@vger.kernel.org
3215 S:      Supported
3216 F:      include/linux/capability.h
3217 F:      include/uapi/linux/capability.h
3218 F:      security/commoncap.c
3219 F:      kernel/capability.c
3220
3221 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3222 M:      Kevin Tsai <ktsai@capellamicro.com>
3223 S:      Maintained
3224 F:      drivers/iio/light/cm*
3225
3226 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3227 M:      Christian Lamparter <chunkeey@googlemail.com>
3228 L:      linux-wireless@vger.kernel.org
3229 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3230 S:      Maintained
3231 F:      drivers/net/wireless/ath/carl9170/
3232
3233 CAVIUM I2C DRIVER
3234 M:      Jan Glauber <jglauber@cavium.com>
3235 M:      David Daney <david.daney@cavium.com>
3236 W:      http://www.cavium.com
3237 S:      Supported
3238 F:      drivers/i2c/busses/i2c-octeon*
3239 F:      drivers/i2c/busses/i2c-thunderx*
3240
3241 CAVIUM LIQUIDIO NETWORK DRIVER
3242 M:      Derek Chickles <derek.chickles@caviumnetworks.com>
3243 M:      Satanand Burla <satananda.burla@caviumnetworks.com>
3244 M:      Felix Manlunas <felix.manlunas@caviumnetworks.com>
3245 M:      Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3246 L:      netdev@vger.kernel.org
3247 W:      http://www.cavium.com
3248 S:      Supported
3249 F:      drivers/net/ethernet/cavium/liquidio/
3250
3251 CAVIUM MMC DRIVER
3252 M:      Jan Glauber <jglauber@cavium.com>
3253 M:      David Daney <david.daney@cavium.com>
3254 M:      Steven J. Hill <Steven.Hill@cavium.com>
3255 W:      http://www.cavium.com
3256 S:      Supported
3257 F:      drivers/mmc/host/cavium*
3258
3259 CAVIUM OCTEON-TX CRYPTO DRIVER
3260 M:      George Cherian <george.cherian@cavium.com>
3261 L:      linux-crypto@vger.kernel.org
3262 W:      http://www.cavium.com
3263 S:      Supported
3264 F:      drivers/crypto/cavium/cpt/
3265
3266 CAVIUM THUNDERX2 ARM64 SOC
3267 M:      Robert Richter <rrichter@cavium.com>
3268 M:      Jayachandran C <jnair@caviumnetworks.com>
3269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3270 S:      Maintained
3271 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3272 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3273
3274 CC2520 IEEE-802.15.4 RADIO DRIVER
3275 M:      Varka Bhadram <varkabhadram@gmail.com>
3276 L:      linux-wpan@vger.kernel.org
3277 S:      Maintained
3278 F:      drivers/net/ieee802154/cc2520.c
3279 F:      include/linux/spi/cc2520.h
3280 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3281
3282 CCREE ARM TRUSTZONE CRYPTOCELL 700 REE DRIVER
3283 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3284 L:      linux-crypto@vger.kernel.org
3285 L:      driverdev-devel@linuxdriverproject.org
3286 S:      Supported
3287 F:      drivers/staging/ccree/
3288 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3289
3290 CEC FRAMEWORK
3291 M:      Hans Verkuil <hans.verkuil@cisco.com>
3292 L:      linux-media@vger.kernel.org
3293 T:      git git://linuxtv.org/media_tree.git
3294 W:      http://linuxtv.org
3295 S:      Supported
3296 F:      Documentation/media/kapi/cec-core.rst
3297 F:      Documentation/media/uapi/cec
3298 F:      drivers/media/cec/
3299 F:      drivers/media/rc/keymaps/rc-cec.c
3300 F:      include/media/cec.h
3301 F:      include/media/cec-notifier.h
3302 F:      include/uapi/linux/cec.h
3303 F:      include/uapi/linux/cec-funcs.h
3304 F:      Documentation/devicetree/bindings/media/cec.txt
3305
3306 CEC GPIO DRIVER
3307 M:      Hans Verkuil <hans.verkuil@cisco.com>
3308 L:      linux-media@vger.kernel.org
3309 T:      git git://linuxtv.org/media_tree.git
3310 W:      http://linuxtv.org
3311 S:      Supported
3312 F:      drivers/media/platform/cec-gpio/
3313 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3314
3315 CELL BROADBAND ENGINE ARCHITECTURE
3316 M:      Arnd Bergmann <arnd@arndb.de>
3317 L:      linuxppc-dev@lists.ozlabs.org
3318 W:      http://www.ibm.com/developerworks/power/cell/
3319 S:      Supported
3320 F:      arch/powerpc/include/asm/cell*.h
3321 F:      arch/powerpc/include/asm/spu*.h
3322 F:      arch/powerpc/include/uapi/asm/spu*.h
3323 F:      arch/powerpc/oprofile/*cell*
3324 F:      arch/powerpc/platforms/cell/
3325
3326 CEPH COMMON CODE (LIBCEPH)
3327 M:      Ilya Dryomov <idryomov@gmail.com>
3328 M:      "Yan, Zheng" <zyan@redhat.com>
3329 M:      Sage Weil <sage@redhat.com>
3330 L:      ceph-devel@vger.kernel.org
3331 W:      http://ceph.com/
3332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3333 T:      git git://github.com/ceph/ceph-client.git
3334 S:      Supported
3335 F:      net/ceph/
3336 F:      include/linux/ceph/
3337 F:      include/linux/crush/
3338
3339 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3340 M:      "Yan, Zheng" <zyan@redhat.com>
3341 M:      Sage Weil <sage@redhat.com>
3342 M:      Ilya Dryomov <idryomov@gmail.com>
3343 L:      ceph-devel@vger.kernel.org
3344 W:      http://ceph.com/
3345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3346 T:      git git://github.com/ceph/ceph-client.git
3347 S:      Supported
3348 F:      Documentation/filesystems/ceph.txt
3349 F:      fs/ceph/
3350
3351 CERTIFICATE HANDLING:
3352 M:      David Howells <dhowells@redhat.com>
3353 M:      David Woodhouse <dwmw2@infradead.org>
3354 L:      keyrings@vger.kernel.org
3355 S:      Maintained
3356 F:      Documentation/module-signing.txt
3357 F:      certs/
3358 F:      scripts/sign-file.c
3359 F:      scripts/extract-cert.c
3360
3361 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3362 L:      linux-usb@vger.kernel.org
3363 S:      Orphan
3364 F:      Documentation/usb/WUSB-Design-overview.txt
3365 F:      Documentation/usb/wusb-cbaf
3366 F:      drivers/usb/host/hwa-hc.c
3367 F:      drivers/usb/host/whci/
3368 F:      drivers/usb/wusbcore/
3369 F:      include/linux/usb/wusb*
3370
3371 CFAG12864B LCD DRIVER
3372 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3373 W:      http://miguelojeda.es/auxdisplay.htm
3374 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3375 S:      Maintained
3376 F:      drivers/auxdisplay/cfag12864b.c
3377 F:      include/linux/cfag12864b.h
3378
3379 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3380 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3381 W:      http://miguelojeda.es/auxdisplay.htm
3382 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3383 S:      Maintained
3384 F:      drivers/auxdisplay/cfag12864bfb.c
3385 F:      include/linux/cfag12864b.h
3386
3387 802.11 (including CFG80211/NL80211)
3388 M:      Johannes Berg <johannes@sipsolutions.net>
3389 L:      linux-wireless@vger.kernel.org
3390 W:      http://wireless.kernel.org/
3391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3393 S:      Maintained
3394 F:      net/wireless/
3395 F:      include/uapi/linux/nl80211.h
3396 F:      include/linux/ieee80211.h
3397 F:      include/net/wext.h
3398 F:      include/net/cfg80211.h
3399 F:      include/net/iw_handler.h
3400 F:      include/net/ieee80211_radiotap.h
3401 F:      Documentation/driver-api/80211/cfg80211.rst
3402 F:      Documentation/networking/regulatory.txt
3403
3404 CHAR and MISC DRIVERS
3405 M:      Arnd Bergmann <arnd@arndb.de>
3406 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3408 S:      Supported
3409 F:      drivers/char/*
3410 F:      drivers/misc/*
3411 F:      include/linux/miscdevice.h
3412
3413 CHECKPATCH
3414 M:      Andy Whitcroft <apw@canonical.com>
3415 M:      Joe Perches <joe@perches.com>
3416 S:      Maintained
3417 F:      scripts/checkpatch.pl
3418
3419 CHINESE DOCUMENTATION
3420 M:      Harry Wei <harryxiyou@gmail.com>
3421 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3422 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
3423 S:      Maintained
3424 F:      Documentation/translations/zh_CN/
3425
3426 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3427 M:      Peter Chen <Peter.Chen@nxp.com>
3428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3429 L:      linux-usb@vger.kernel.org
3430 S:      Maintained
3431 F:      drivers/usb/chipidea/
3432
3433 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3434 M:      Hans de Goede <hdegoede@redhat.com>
3435 L:      linux-input@vger.kernel.org
3436 S:      Maintained
3437 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3438 F:      drivers/input/touchscreen/chipone_icn8318.c
3439
3440 CHROME HARDWARE PLATFORM SUPPORT
3441 M:      Benson Leung <bleung@chromium.org>
3442 M:      Olof Johansson <olof@lixom.net>
3443 S:      Maintained
3444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform.git
3445 F:      drivers/platform/chrome/
3446
3447 CIRRUS LOGIC AUDIO CODEC DRIVERS
3448 M:      Brian Austin <brian.austin@cirrus.com>
3449 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3450 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3451 S:      Maintained
3452 F:      sound/soc/codecs/cs*
3453
3454 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3455 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3456 L:      netdev@vger.kernel.org
3457 S:      Maintained
3458 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3459
3460 CISCO FCOE HBA DRIVER
3461 M:      Satish Kharat <satishkh@cisco.com>
3462 M:      Sesidhar Baddela <sebaddel@cisco.com>
3463 M:      Karan Tilak Kumar <kartilak@cisco.com>
3464 L:      linux-scsi@vger.kernel.org
3465 S:      Supported
3466 F:      drivers/scsi/fnic/
3467
3468 CISCO SCSI HBA DRIVER
3469 M:      Karan Tilak Kumar <kartilak@cisco.com>
3470 M:      Sesidhar Baddela <sebaddel@cisco.com>
3471 L:      linux-scsi@vger.kernel.org
3472 S:      Supported
3473 F:      drivers/scsi/snic/
3474
3475 CISCO VIC ETHERNET NIC DRIVER
3476 M:      Christian Benvenuti <benve@cisco.com>
3477 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3478 M:      Parvi Kaustubhi <pkaustub@cisco.com>
3479 S:      Supported
3480 F:      drivers/net/ethernet/cisco/enic/
3481
3482 CISCO VIC LOW LATENCY NIC DRIVER
3483 M:      Christian Benvenuti <benve@cisco.com>
3484 M:      Dave Goodell <dgoodell@cisco.com>
3485 S:      Supported
3486 F:      drivers/infiniband/hw/usnic/
3487
3488 CLEANCACHE API
3489 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3490 L:      linux-kernel@vger.kernel.org
3491 S:      Maintained
3492 F:      mm/cleancache.c
3493 F:      include/linux/cleancache.h
3494
3495 CLK API
3496 M:      Russell King <linux@armlinux.org.uk>
3497 L:      linux-clk@vger.kernel.org
3498 S:      Maintained
3499 F:      include/linux/clk.h
3500
3501 CLOCKSOURCE, CLOCKEVENT DRIVERS
3502 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3503 M:      Thomas Gleixner <tglx@linutronix.de>
3504 L:      linux-kernel@vger.kernel.org
3505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3506 S:      Supported
3507 F:      drivers/clocksource/
3508 F:      Documentation/devicetree/bindings/timer/
3509
3510 CMPC ACPI DRIVER
3511 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3512 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3513 L:      platform-driver-x86@vger.kernel.org
3514 S:      Supported
3515 F:      drivers/platform/x86/classmate-laptop.c
3516
3517 COBALT MEDIA DRIVER
3518 M:      Hans Verkuil <hans.verkuil@cisco.com>
3519 L:      linux-media@vger.kernel.org
3520 T:      git git://linuxtv.org/media_tree.git
3521 W:      https://linuxtv.org
3522 S:      Supported
3523 F:      drivers/media/pci/cobalt/
3524
3525 COCCINELLE/Semantic Patches (SmPL)
3526 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3527 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3528 M:      Nicolas Palix <nicolas.palix@imag.fr>
3529 M:      Michal Marek <michal.lkml@markovi.net>
3530 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3532 W:      http://coccinelle.lip6.fr/
3533 S:      Supported
3534 F:      Documentation/dev-tools/coccinelle.rst
3535 F:      scripts/coccinelle/
3536 F:      scripts/coccicheck
3537
3538 CODA FILE SYSTEM
3539 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3540 M:      coda@cs.cmu.edu
3541 L:      codalist@coda.cs.cmu.edu
3542 W:      http://www.coda.cs.cmu.edu/
3543 S:      Maintained
3544 F:      Documentation/filesystems/coda.txt
3545 F:      fs/coda/
3546 F:      include/linux/coda*.h
3547 F:      include/uapi/linux/coda*.h
3548
3549 CODA V4L2 MEM2MEM DRIVER
3550 M:      Philipp Zabel <p.zabel@pengutronix.de>
3551 L:      linux-media@vger.kernel.org
3552 S:      Maintained
3553 F:      Documentation/devicetree/bindings/media/coda.txt
3554 F:      drivers/media/platform/coda/
3555
3556 COMMON CLK FRAMEWORK
3557 M:      Michael Turquette <mturquette@baylibre.com>
3558 M:      Stephen Boyd <sboyd@codeaurora.org>
3559 L:      linux-clk@vger.kernel.org
3560 Q:      http://patchwork.kernel.org/project/linux-clk/list/
3561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3562 S:      Maintained
3563 F:      Documentation/devicetree/bindings/clock/
3564 F:      drivers/clk/
3565 X:      drivers/clk/clkdev.c
3566 F:      include/linux/clk-pr*
3567 F:      include/linux/clk/
3568
3569 COMMON INTERNET FILE SYSTEM (CIFS)
3570 M:      Steve French <sfrench@samba.org>
3571 L:      linux-cifs@vger.kernel.org
3572 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3573 W:      http://linux-cifs.samba.org/
3574 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3575 S:      Supported
3576 F:      Documentation/filesystems/cifs/
3577 F:      fs/cifs/
3578
3579 COMPACTPCI HOTPLUG CORE
3580 M:      Scott Murray <scott@spiteful.org>
3581 L:      linux-pci@vger.kernel.org
3582 S:      Maintained
3583 F:      drivers/pci/hotplug/cpci_hotplug*
3584
3585 COMPACTPCI HOTPLUG GENERIC DRIVER
3586 M:      Scott Murray <scott@spiteful.org>
3587 L:      linux-pci@vger.kernel.org
3588 S:      Maintained
3589 F:      drivers/pci/hotplug/cpcihp_generic.c
3590
3591 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3592 M:      Scott Murray <scott@spiteful.org>
3593 L:      linux-pci@vger.kernel.org
3594 S:      Maintained
3595 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3596
3597 COMPAL LAPTOP SUPPORT
3598 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3599 L:      platform-driver-x86@vger.kernel.org
3600 S:      Maintained
3601 F:      drivers/platform/x86/compal-laptop.c
3602
3603 CONEXANT ACCESSRUNNER USB DRIVER
3604 L:      accessrunner-general@lists.sourceforge.net
3605 W:      http://accessrunner.sourceforge.net/
3606 S:      Orphan
3607 F:      drivers/usb/atm/cxacru.c
3608
3609 CONFIGFS
3610 M:      Joel Becker <jlbec@evilplan.org>
3611 M:      Christoph Hellwig <hch@lst.de>
3612 T:      git git://git.infradead.org/users/hch/configfs.git
3613 S:      Supported
3614 F:      fs/configfs/
3615 F:      include/linux/configfs.h
3616
3617 CONNECTOR
3618 M:      Evgeniy Polyakov <zbr@ioremap.net>
3619 L:      netdev@vger.kernel.org
3620 S:      Maintained
3621 F:      drivers/connector/
3622
3623 CONTROL GROUP (CGROUP)
3624 M:      Tejun Heo <tj@kernel.org>
3625 M:      Li Zefan <lizefan@huawei.com>
3626 M:      Johannes Weiner <hannes@cmpxchg.org>
3627 L:      cgroups@vger.kernel.org
3628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3629 S:      Maintained
3630 F:      Documentation/cgroup*
3631 F:      include/linux/cgroup*
3632 F:      kernel/cgroup*
3633
3634 CONTROL GROUP - CPUSET
3635 M:      Li Zefan <lizefan@huawei.com>
3636 L:      cgroups@vger.kernel.org
3637 W:      http://www.bullopensource.org/cpuset/
3638 W:      http://oss.sgi.com/projects/cpusets/
3639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3640 S:      Maintained
3641 F:      Documentation/cgroup-v1/cpusets.txt
3642 F:      include/linux/cpuset.h
3643 F:      kernel/cgroup/cpuset.c
3644
3645 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3646 M:      Johannes Weiner <hannes@cmpxchg.org>
3647 M:      Michal Hocko <mhocko@kernel.org>
3648 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
3649 L:      cgroups@vger.kernel.org
3650 L:      linux-mm@kvack.org
3651 S:      Maintained
3652 F:      mm/memcontrol.c
3653 F:      mm/swap_cgroup.c
3654
3655 CORETEMP HARDWARE MONITORING DRIVER
3656 M:      Fenghua Yu <fenghua.yu@intel.com>
3657 L:      linux-hwmon@vger.kernel.org
3658 S:      Maintained
3659 F:      Documentation/hwmon/coretemp
3660 F:      drivers/hwmon/coretemp.c
3661
3662 COSA/SRP SYNC SERIAL DRIVER
3663 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3664 W:      http://www.fi.muni.cz/~kas/cosa/
3665 S:      Maintained
3666 F:      drivers/net/wan/cosa*
3667
3668 CPMAC ETHERNET DRIVER
3669 M:      Florian Fainelli <f.fainelli@gmail.com>
3670 L:      netdev@vger.kernel.org
3671 S:      Maintained
3672 F:      drivers/net/ethernet/ti/cpmac.c
3673
3674 CPU FREQUENCY DRIVERS
3675 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3676 M:      Viresh Kumar <viresh.kumar@linaro.org>
3677 L:      linux-pm@vger.kernel.org
3678 S:      Maintained
3679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3680 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3681 B:      https://bugzilla.kernel.org
3682 F:      Documentation/cpu-freq/
3683 F:      Documentation/devicetree/bindings/cpufreq/
3684 F:      drivers/cpufreq/
3685 F:      include/linux/cpufreq.h
3686 F:      tools/testing/selftests/cpufreq/
3687
3688 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3689 M:      Viresh Kumar <viresh.kumar@linaro.org>
3690 M:      Sudeep Holla <sudeep.holla@arm.com>
3691 L:      linux-pm@vger.kernel.org
3692 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3693 S:      Maintained
3694 F:      drivers/cpufreq/arm_big_little.h
3695 F:      drivers/cpufreq/arm_big_little.c
3696 F:      drivers/cpufreq/arm_big_little_dt.c
3697
3698 CPU POWER MONITORING SUBSYSTEM
3699 M:      Thomas Renninger <trenn@suse.com>
3700 M:      Shuah Khan <shuahkh@osg.samsung.com>
3701 M:      Shuah Khan <shuah@kernel.org>
3702 L:      linux-pm@vger.kernel.org
3703 S:      Maintained
3704 F:      tools/power/cpupower/
3705
3706 CPUID/MSR DRIVER
3707 M:      "H. Peter Anvin" <hpa@zytor.com>
3708 S:      Maintained
3709 F:      arch/x86/kernel/cpuid.c
3710 F:      arch/x86/kernel/msr.c
3711
3712 CPUIDLE DRIVER - ARM BIG LITTLE
3713 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3714 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3715 L:      linux-pm@vger.kernel.org
3716 L:      linux-arm-kernel@lists.infradead.org
3717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3718 S:      Maintained
3719 F:      drivers/cpuidle/cpuidle-big_little.c
3720
3721 CPUIDLE DRIVER - ARM EXYNOS
3722 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3723 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3724 M:      Kukjin Kim <kgene@kernel.org>
3725 L:      linux-pm@vger.kernel.org
3726 L:      linux-samsung-soc@vger.kernel.org
3727 S:      Supported
3728 F:      drivers/cpuidle/cpuidle-exynos.c
3729 F:      arch/arm/mach-exynos/pm.c
3730
3731 CPUIDLE DRIVERS
3732 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3733 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3734 L:      linux-pm@vger.kernel.org
3735 S:      Maintained
3736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3737 B:      https://bugzilla.kernel.org
3738 F:      drivers/cpuidle/*
3739 F:      include/linux/cpuidle.h
3740
3741 CRAMFS FILESYSTEM
3742 M:      Nicolas Pitre <nico@linaro.org>
3743 S:      Maintained
3744 F:      Documentation/filesystems/cramfs.txt
3745 F:      fs/cramfs/
3746
3747 CRIS PORT
3748 M:      Mikael Starvik <starvik@axis.com>
3749 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3750 L:      linux-cris-kernel@axis.com
3751 W:      http://developer.axis.com
3752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3753 S:      Maintained
3754 F:      arch/cris/
3755 F:      drivers/tty/serial/crisv10.*
3756
3757 CRYPTO API
3758 M:      Herbert Xu <herbert@gondor.apana.org.au>
3759 M:      "David S. Miller" <davem@davemloft.net>
3760 L:      linux-crypto@vger.kernel.org
3761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3763 S:      Maintained
3764 F:      Documentation/crypto/
3765 F:      Documentation/devicetree/bindings/crypto/
3766 F:      arch/*/crypto/
3767 F:      crypto/
3768 F:      drivers/crypto/
3769 F:      include/crypto/
3770 F:      include/linux/crypto*
3771
3772 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3773 M:      Neil Horman <nhorman@tuxdriver.com>
3774 L:      linux-crypto@vger.kernel.org
3775 S:      Maintained
3776 F:      crypto/ansi_cprng.c
3777 F:      crypto/rng.c
3778
3779 CS3308 MEDIA DRIVER
3780 M:      Hans Verkuil <hverkuil@xs4all.nl>
3781 L:      linux-media@vger.kernel.org
3782 T:      git git://linuxtv.org/media_tree.git
3783 W:      http://linuxtv.org
3784 S:      Odd Fixes
3785 F:      drivers/media/i2c/cs3308.c
3786 F:      drivers/media/i2c/cs3308.h
3787
3788 CS5535 Audio ALSA driver
3789 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3790 S:      Maintained
3791 F:      sound/pci/cs5535audio/
3792
3793 CW1200 WLAN driver
3794 M:      Solomon Peachy <pizza@shaftnet.org>
3795 S:      Maintained
3796 F:      drivers/net/wireless/st/cw1200/
3797
3798 CX18 VIDEO4LINUX DRIVER
3799 M:      Andy Walls <awalls@md.metrocast.net>
3800 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3801 L:      linux-media@vger.kernel.org
3802 T:      git git://linuxtv.org/media_tree.git
3803 W:      https://linuxtv.org
3804 W:      http://www.ivtvdriver.org/index.php/Cx18
3805 S:      Maintained
3806 F:      Documentation/media/v4l-drivers/cx18*
3807 F:      drivers/media/pci/cx18/
3808 F:      include/uapi/linux/ivtv*
3809
3810 CX2341X MPEG ENCODER HELPER MODULE
3811 M:      Hans Verkuil <hverkuil@xs4all.nl>
3812 L:      linux-media@vger.kernel.org
3813 T:      git git://linuxtv.org/media_tree.git
3814 W:      https://linuxtv.org
3815 S:      Maintained
3816 F:      drivers/media/common/cx2341x*
3817 F:      include/media/cx2341x*
3818
3819 CX24120 MEDIA DRIVER
3820 M:      Jemma Denson <jdenson@gmail.com>
3821 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3822 L:      linux-media@vger.kernel.org
3823 W:      https://linuxtv.org
3824 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3825 S:      Maintained
3826 F:      drivers/media/dvb-frontends/cx24120*
3827
3828 CX88 VIDEO4LINUX DRIVER
3829 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
3830 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3831 L:      linux-media@vger.kernel.org
3832 W:      https://linuxtv.org
3833 T:      git git://linuxtv.org/media_tree.git
3834 S:      Odd fixes
3835 F:      Documentation/media/v4l-drivers/cx88*
3836 F:      drivers/media/pci/cx88/
3837
3838 CXD2820R MEDIA DRIVER
3839 M:      Antti Palosaari <crope@iki.fi>
3840 L:      linux-media@vger.kernel.org
3841 W:      https://linuxtv.org
3842 W:      http://palosaari.fi/linux/
3843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3844 T:      git git://linuxtv.org/anttip/media_tree.git
3845 S:      Maintained
3846 F:      drivers/media/dvb-frontends/cxd2820r*
3847
3848 CXGB3 ETHERNET DRIVER (CXGB3)
3849 M:      Santosh Raspatur <santosh@chelsio.com>
3850 L:      netdev@vger.kernel.org
3851 W:      http://www.chelsio.com
3852 S:      Supported
3853 F:      drivers/net/ethernet/chelsio/cxgb3/
3854
3855 CXGB3 ISCSI DRIVER (CXGB3I)
3856 M:      Karen Xie <kxie@chelsio.com>
3857 L:      linux-scsi@vger.kernel.org
3858 W:      http://www.chelsio.com
3859 S:      Supported
3860 F:      drivers/scsi/cxgbi/cxgb3i
3861
3862 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3863 M:      Steve Wise <swise@chelsio.com>
3864 L:      linux-rdma@vger.kernel.org
3865 W:      http://www.openfabrics.org
3866 S:      Supported
3867 F:      drivers/infiniband/hw/cxgb3/
3868 F:      include/uapi/rdma/cxgb3-abi.h
3869
3870 CXGB4 CRYPTO DRIVER (chcr)
3871 M:      Harsh Jain <harsh@chelsio.com>
3872 L:      linux-crypto@vger.kernel.org
3873 W:      http://www.chelsio.com
3874 S:      Supported
3875 F:      drivers/crypto/chelsio
3876
3877 CXGB4 ETHERNET DRIVER (CXGB4)
3878 M:      Ganesh Goudar <ganeshgr@chelsio.com>
3879 L:      netdev@vger.kernel.org
3880 W:      http://www.chelsio.com
3881 S:      Supported
3882 F:      drivers/net/ethernet/chelsio/cxgb4/
3883
3884 CXGB4 ISCSI DRIVER (CXGB4I)
3885 M:      Karen Xie <kxie@chelsio.com>
3886 L:      linux-scsi@vger.kernel.org
3887 W:      http://www.chelsio.com
3888 S:      Supported
3889 F:      drivers/scsi/cxgbi/cxgb4i
3890
3891 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3892 M:      Steve Wise <swise@chelsio.com>
3893 L:      linux-rdma@vger.kernel.org
3894 W:      http://www.openfabrics.org
3895 S:      Supported
3896 F:      drivers/infiniband/hw/cxgb4/
3897 F:      include/uapi/rdma/cxgb4-abi.h
3898
3899 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3900 M:      Casey Leedom <leedom@chelsio.com>
3901 L:      netdev@vger.kernel.org
3902 W:      http://www.chelsio.com
3903 S:      Supported
3904 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3905
3906 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3907 M:      Frederic Barrat <fbarrat@linux.vnet.ibm.com>
3908 M:      Andrew Donnellan <andrew.donnellan@au1.ibm.com>
3909 L:      linuxppc-dev@lists.ozlabs.org
3910 S:      Supported
3911 F:      arch/powerpc/platforms/powernv/pci-cxl.c
3912 F:      drivers/misc/cxl/
3913 F:      include/misc/cxl*
3914 F:      include/uapi/misc/cxl.h
3915 F:      Documentation/powerpc/cxl.txt
3916 F:      Documentation/ABI/testing/sysfs-class-cxl
3917
3918 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3919 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3920 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3921 M:      Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3922 L:      linux-scsi@vger.kernel.org
3923 S:      Supported
3924 F:      drivers/scsi/cxlflash/
3925 F:      include/uapi/scsi/cxlflash_ioctls.h
3926 F:      Documentation/powerpc/cxlflash.txt
3927
3928 CYBERPRO FB DRIVER
3929 M:      Russell King <linux@armlinux.org.uk>
3930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3931 W:      http://www.armlinux.org.uk/
3932 S:      Maintained
3933 F:      drivers/video/fbdev/cyber2000fb.*
3934
3935 CYCLADES ASYNC MUX DRIVER
3936 W:      http://www.cyclades.com/
3937 S:      Orphan
3938 F:      drivers/tty/cyclades.c
3939 F:      include/linux/cyclades.h
3940 F:      include/uapi/linux/cyclades.h
3941
3942 CYCLADES PC300 DRIVER
3943 W:      http://www.cyclades.com/
3944 S:      Orphan
3945 F:      drivers/net/wan/pc300*
3946
3947 CYPRESS_FIRMWARE MEDIA DRIVER
3948 M:      Antti Palosaari <crope@iki.fi>
3949 L:      linux-media@vger.kernel.org
3950 W:      https://linuxtv.org
3951 W:      http://palosaari.fi/linux/
3952 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3953 T:      git git://linuxtv.org/anttip/media_tree.git
3954 S:      Maintained
3955 F:      drivers/media/common/cypress_firmware*
3956
3957 CYTTSP TOUCHSCREEN DRIVER
3958 M:      Ferruh Yigit <fery@cypress.com>
3959 L:      linux-input@vger.kernel.org
3960 S:      Supported
3961 F:      drivers/input/touchscreen/cyttsp*
3962 F:      include/linux/input/cyttsp.h
3963
3964 D-LINK DIR-685 TOUCHKEYS DRIVER
3965 M:      Linus Walleij <linus.walleij@linaro.org>
3966 L:      linux-input@vger.kernel.org
3967 S:      Supported
3968 F:      drivers/input/dlink-dir685-touchkeys.c
3969
3970 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3971 M:      Joshua Kinard <kumba@gentoo.org>
3972 S:      Maintained
3973 F:      drivers/rtc/rtc-ds1685.c
3974 F:      include/linux/rtc/ds1685.h
3975
3976 DAMA SLAVE for AX.25
3977 M:      Joerg Reuter <jreuter@yaina.de>
3978 W:      http://yaina.de/jreuter/
3979 W:      http://www.qsl.net/dl1bke/
3980 L:      linux-hams@vger.kernel.org
3981 S:      Maintained
3982 F:      net/ax25/af_ax25.c
3983 F:      net/ax25/ax25_dev.c
3984 F:      net/ax25/ax25_ds_*
3985 F:      net/ax25/ax25_in.c
3986 F:      net/ax25/ax25_out.c
3987 F:      net/ax25/ax25_timer.c
3988 F:      net/ax25/sysctl_net_ax25.c
3989
3990 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3991 L:      netdev@vger.kernel.org
3992 S:      Orphan
3993 F:      Documentation/networking/dmfe.txt
3994 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3995
3996 DC390/AM53C974 SCSI driver
3997 M:      Hannes Reinecke <hare@suse.com>
3998 L:      linux-scsi@vger.kernel.org
3999 S:      Maintained
4000 F:      drivers/scsi/am53c974.c
4001
4002 DC395x SCSI driver
4003 M:      Oliver Neukum <oliver@neukum.org>
4004 M:      Ali Akcaagac <aliakc@web.de>
4005 M:      Jamie Lenehan <lenehan@twibble.org>
4006 L:      dc395x@twibble.org
4007 W:      http://twibble.org/dist/dc395x/
4008 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4009 S:      Maintained
4010 F:      Documentation/scsi/dc395x.txt
4011 F:      drivers/scsi/dc395x.*
4012
4013 DCCP PROTOCOL
4014 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4015 L:      dccp@vger.kernel.org
4016 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4017 S:      Maintained
4018 F:      include/linux/dccp.h
4019 F:      include/uapi/linux/dccp.h
4020 F:      include/linux/tfrc.h
4021 F:      net/dccp/
4022
4023 DECnet NETWORK LAYER
4024 W:      http://linux-decnet.sourceforge.net
4025 L:      linux-decnet-user@lists.sourceforge.net
4026 S:      Orphan
4027 F:      Documentation/networking/decnet.txt
4028 F:      net/decnet/
4029
4030 DECSTATION PLATFORM SUPPORT
4031 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4032 L:      linux-mips@linux-mips.org
4033 W:      http://www.linux-mips.org/wiki/DECstation
4034 S:      Maintained
4035 F:      arch/mips/dec/
4036 F:      arch/mips/include/asm/dec/
4037 F:      arch/mips/include/asm/mach-dec/
4038
4039 DEFXX FDDI NETWORK DRIVER
4040 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4041 S:      Maintained
4042 F:      drivers/net/fddi/defxx.*
4043
4044 DELL SMBIOS DRIVER
4045 M:      Pali Rohár <pali.rohar@gmail.com>
4046 M:      Mario Limonciello <mario.limonciello@dell.com>
4047 L:      platform-driver-x86@vger.kernel.org
4048 S:      Maintained
4049 F:      drivers/platform/x86/dell-smbios.*
4050
4051 DELL SMBIOS SMM DRIVER
4052 M:      Mario Limonciello <mario.limonciello@dell.com>
4053 L:      platform-driver-x86@vger.kernel.org
4054 S:      Maintained
4055 F:      drivers/platform/x86/dell-smbios-smm.c
4056
4057 DELL SMBIOS WMI DRIVER
4058 M:      Mario Limonciello <mario.limonciello@dell.com>
4059 L:      platform-driver-x86@vger.kernel.org
4060 S:      Maintained
4061 F:      drivers/platform/x86/dell-smbios-wmi.c
4062 F:      tools/wmi/dell-smbios-example.c
4063
4064 DELL LAPTOP DRIVER
4065 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4066 M:      Pali Rohár <pali.rohar@gmail.com>
4067 L:      platform-driver-x86@vger.kernel.org
4068 S:      Maintained
4069 F:      drivers/platform/x86/dell-laptop.c
4070
4071 DELL LAPTOP FREEFALL DRIVER
4072 M:      Pali Rohár <pali.rohar@gmail.com>
4073 S:      Maintained
4074 F:      drivers/platform/x86/dell-smo8800.c
4075
4076 DELL LAPTOP RBTN DRIVER
4077 M:      Pali Rohár <pali.rohar@gmail.com>
4078 S:      Maintained
4079 F:      drivers/platform/x86/dell-rbtn.*
4080
4081 DELL LAPTOP SMM DRIVER
4082 M:      Pali Rohár <pali.rohar@gmail.com>
4083 S:      Maintained
4084 F:      drivers/hwmon/dell-smm-hwmon.c
4085 F:      include/uapi/linux/i8k.h
4086
4087 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4088 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
4089 S:      Maintained
4090 F:      Documentation/dcdbas.txt
4091 F:      drivers/firmware/dcdbas.*
4092
4093 DELL WMI NOTIFICATIONS DRIVER
4094 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4095 M:      Pali Rohár <pali.rohar@gmail.com>
4096 S:      Maintained
4097 F:      drivers/platform/x86/dell-wmi.c
4098
4099 DELL WMI DESCRIPTOR DRIVER
4100 M:      Mario Limonciello <mario.limonciello@dell.com>
4101 S:      Maintained
4102 F:      drivers/platform/x86/dell-wmi-descriptor.c
4103
4104 DELTA ST MEDIA DRIVER
4105 M:      Hugues Fruchet <hugues.fruchet@st.com>
4106 L:      linux-media@vger.kernel.org
4107 T:      git git://linuxtv.org/media_tree.git
4108 W:      https://linuxtv.org
4109 S:      Supported
4110 F:      drivers/media/platform/sti/delta
4111
4112 DENALI NAND DRIVER
4113 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4114 L:      linux-mtd@lists.infradead.org
4115 S:      Supported
4116 F:      drivers/mtd/nand/denali*
4117
4118 DESIGNWARE USB2 DRD IP DRIVER
4119 M:      John Youn <johnyoun@synopsys.com>
4120 L:      linux-usb@vger.kernel.org
4121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4122 S:      Maintained
4123 F:      drivers/usb/dwc2/
4124
4125 DESIGNWARE USB3 DRD IP DRIVER
4126 M:      Felipe Balbi <balbi@kernel.org>
4127 L:      linux-usb@vger.kernel.org
4128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4129 S:      Maintained
4130 F:      drivers/usb/dwc3/
4131
4132 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4133 M:      Andreas Klinger <ak@it-klinger.de>
4134 L:      linux-iio@vger.kernel.org
4135 S:      Maintained
4136 F:      drivers/iio/proximity/srf*.c
4137
4138 DEVICE COREDUMP (DEV_COREDUMP)
4139 M:      Johannes Berg <johannes@sipsolutions.net>
4140 L:      linux-kernel@vger.kernel.org
4141 S:      Maintained
4142 F:      drivers/base/devcoredump.c
4143 F:      include/linux/devcoredump.h
4144
4145 DEVICE FREQUENCY (DEVFREQ)
4146 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4147 M:      Kyungmin Park <kyungmin.park@samsung.com>
4148 R:      Chanwoo Choi <cw00.choi@samsung.com>
4149 L:      linux-pm@vger.kernel.org
4150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4151 S:      Maintained
4152 F:      drivers/devfreq/
4153 F:      include/linux/devfreq.h
4154 F:      Documentation/devicetree/bindings/devfreq/
4155
4156 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4157 M:      Chanwoo Choi <cw00.choi@samsung.com>
4158 L:      linux-pm@vger.kernel.org
4159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4160 S:      Supported
4161 F:      drivers/devfreq/event/
4162 F:      drivers/devfreq/devfreq-event.c
4163 F:      include/linux/devfreq-event.h
4164 F:      Documentation/devicetree/bindings/devfreq/event/
4165
4166 DEVICE NUMBER REGISTRY
4167 M:      Torben Mathiasen <device@lanana.org>
4168 W:      http://lanana.org/docs/device-list/index.html
4169 S:      Maintained
4170
4171 DEVICE-MAPPER  (LVM)
4172 M:      Alasdair Kergon <agk@redhat.com>
4173 M:      Mike Snitzer <snitzer@redhat.com>
4174 M:      dm-devel@redhat.com
4175 L:      dm-devel@redhat.com
4176 W:      http://sources.redhat.com/dm
4177 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4179 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4180 S:      Maintained
4181 F:      Documentation/device-mapper/
4182 F:      drivers/md/Makefile
4183 F:      drivers/md/Kconfig
4184 F:      drivers/md/dm*
4185 F:      drivers/md/persistent-data/
4186 F:      include/linux/device-mapper.h
4187 F:      include/linux/dm-*.h
4188 F:      include/uapi/linux/dm-*.h
4189
4190 DEVLINK
4191 M:      Jiri Pirko <jiri@mellanox.com>
4192 L:      netdev@vger.kernel.org
4193 S:      Supported
4194 F:      net/core/devlink.c
4195 F:      include/net/devlink.h
4196 F:      include/uapi/linux/devlink.h
4197
4198 DIALOG SEMICONDUCTOR DRIVERS
4199 M:      Support Opensource <support.opensource@diasemi.com>
4200 W:      http://www.dialog-semiconductor.com/products
4201 S:      Supported
4202 F:      Documentation/hwmon/da90??
4203 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4204 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4205 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4206 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4207 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4208 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4209 F:      drivers/gpio/gpio-da90??.c
4210 F:      drivers/hwmon/da90??-hwmon.c
4211 F:      drivers/iio/adc/da91??-*.c
4212 F:      drivers/input/misc/da90??_onkey.c
4213 F:      drivers/input/touchscreen/da9052_tsi.c
4214 F:      drivers/leds/leds-da90??.c
4215 F:      drivers/mfd/da903x.c
4216 F:      drivers/mfd/da90??-*.c
4217 F:      drivers/mfd/da91??-*.c
4218 F:      drivers/power/supply/da9052-battery.c
4219 F:      drivers/power/supply/da91??-*.c
4220 F:      drivers/regulator/da903x.c
4221 F:      drivers/regulator/da9???-regulator.[ch]
4222 F:      drivers/thermal/da90??-thermal.c
4223 F:      drivers/rtc/rtc-da90??.c
4224 F:      drivers/video/backlight/da90??_bl.c
4225 F:      drivers/watchdog/da90??_wdt.c
4226 F:      include/linux/mfd/da903x.h
4227 F:      include/linux/mfd/da9052/
4228 F:      include/linux/mfd/da9055/
4229 F:      include/linux/mfd/da9062/
4230 F:      include/linux/mfd/da9063/
4231 F:      include/linux/mfd/da9150/
4232 F:      include/linux/regulator/da9211.h
4233 F:      include/sound/da[79]*.h
4234 F:      sound/soc/codecs/da[79]*.[ch]
4235
4236 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4237 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4238 L:      linux-gpio@vger.kernel.org
4239 S:      Maintained
4240 F:      drivers/gpio/gpio-gpio-mm.c
4241
4242 DIGI NEO AND CLASSIC PCI PRODUCTS
4243 M:      Lidza Louina <lidza.louina@gmail.com>
4244 M:      Mark Hounschell <markh@compro.net>
4245 L:      driverdev-devel@linuxdriverproject.org
4246 S:      Maintained
4247 F:      drivers/staging/dgnc/
4248
4249 DIOLAN U2C-12 I2C DRIVER
4250 M:      Guenter Roeck <linux@roeck-us.net>
4251 L:      linux-i2c@vger.kernel.org
4252 S:      Maintained
4253 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4254
4255 FILESYSTEM DIRECT ACCESS (DAX)
4256 M:      Matthew Wilcox <mawilcox@microsoft.com>
4257 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
4258 L:      linux-fsdevel@vger.kernel.org
4259 S:      Supported
4260 F:      fs/dax.c
4261 F:      include/linux/dax.h
4262 F:      include/trace/events/fs_dax.h
4263
4264 DEVICE DIRECT ACCESS (DAX)
4265 M:      Dan Williams <dan.j.williams@intel.com>
4266 L:      linux-nvdimm@lists.01.org
4267 S:      Supported
4268 F:      drivers/dax/
4269
4270 DIRECTORY NOTIFICATION (DNOTIFY)
4271 M:      Jan Kara <jack@suse.cz>
4272 R:      Amir Goldstein <amir73il@gmail.com>
4273 L:      linux-fsdevel@vger.kernel.org
4274 S:      Maintained
4275 F:      Documentation/filesystems/dnotify.txt
4276 F:      fs/notify/dnotify/
4277 F:      include/linux/dnotify.h
4278
4279 DISK GEOMETRY AND PARTITION HANDLING
4280 M:      Andries Brouwer <aeb@cwi.nl>
4281 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4282 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4283 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4284 S:      Maintained
4285
4286 DISKQUOTA
4287 M:      Jan Kara <jack@suse.com>
4288 S:      Maintained
4289 F:      Documentation/filesystems/quota.txt
4290 F:      fs/quota/
4291 F:      include/linux/quota*.h
4292 F:      include/uapi/linux/quota*.h
4293
4294 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4295 M:      Bernie Thompson <bernie@plugable.com>
4296 L:      linux-fbdev@vger.kernel.org
4297 S:      Maintained
4298 W:      http://plugable.com/category/projects/udlfb/
4299 F:      drivers/video/fbdev/udlfb.c
4300 F:      include/video/udlfb.h
4301 F:      Documentation/fb/udlfb.txt
4302
4303 DISTRIBUTED LOCK MANAGER (DLM)
4304 M:      Christine Caulfield <ccaulfie@redhat.com>
4305 M:      David Teigland <teigland@redhat.com>
4306 L:      cluster-devel@redhat.com
4307 W:      http://sources.redhat.com/cluster/
4308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4309 S:      Supported
4310 F:      fs/dlm/
4311
4312 DMA BUFFER SHARING FRAMEWORK
4313 M:      Sumit Semwal <sumit.semwal@linaro.org>
4314 S:      Maintained
4315 L:      linux-media@vger.kernel.org
4316 L:      dri-devel@lists.freedesktop.org
4317 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4318 F:      drivers/dma-buf/
4319 F:      include/linux/dma-buf*
4320 F:      include/linux/reservation.h
4321 F:      include/linux/*fence.h
4322 F:      Documentation/driver-api/dma-buf.rst
4323 T:      git git://anongit.freedesktop.org/drm/drm-misc
4324
4325 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4326 M:      Vinod Koul <vinod.koul@intel.com>
4327 L:      dmaengine@vger.kernel.org
4328 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4329 S:      Maintained
4330 F:      drivers/dma/
4331 F:      include/linux/dmaengine.h
4332 F:      Documentation/devicetree/bindings/dma/
4333 F:      Documentation/driver-api/dmaengine/
4334 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4335
4336 DMA MAPPING HELPERS
4337 M:      Christoph Hellwig <hch@lst.de>
4338 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4339 R:      Robin Murphy <robin.murphy@arm.com>
4340 L:      iommu@lists.linux-foundation.org
4341 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4342 W:      http://git.infradead.org/users/hch/dma-mapping.git
4343 S:      Supported
4344 F:      lib/dma-debug.c
4345 F:      lib/dma-noop.c
4346 F:      lib/dma-virt.c
4347 F:      drivers/base/dma-mapping.c
4348 F:      drivers/base/dma-coherent.c
4349 F:      include/linux/dma-mapping.h
4350
4351 DME1737 HARDWARE MONITOR DRIVER
4352 M:      Juerg Haefliger <juergh@gmail.com>
4353 L:      linux-hwmon@vger.kernel.org
4354 S:      Maintained
4355 F:      Documentation/hwmon/dme1737
4356 F:      drivers/hwmon/dme1737.c
4357
4358 DMI/SMBIOS SUPPORT
4359 M:      Jean Delvare <jdelvare@suse.com>
4360 S:      Maintained
4361 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4362 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4363 F:      drivers/firmware/dmi-id.c
4364 F:      drivers/firmware/dmi_scan.c
4365 F:      include/linux/dmi.h
4366
4367 DOCUMENTATION
4368 M:      Jonathan Corbet <corbet@lwn.net>
4369 L:      linux-doc@vger.kernel.org
4370 S:      Maintained
4371 F:      Documentation/
4372 F:      scripts/kernel-doc
4373 X:      Documentation/ABI/
4374 X:      Documentation/devicetree/
4375 X:      Documentation/acpi
4376 X:      Documentation/power
4377 X:      Documentation/spi
4378 X:      Documentation/media
4379 T:      git git://git.lwn.net/linux.git docs-next
4380
4381 DONGWOON DW9714 LENS VOICE COIL DRIVER
4382 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
4383 L:      linux-media@vger.kernel.org
4384 T:      git git://linuxtv.org/media_tree.git
4385 S:      Maintained
4386 F:      drivers/media/i2c/dw9714.c
4387
4388 DOUBLETALK DRIVER
4389 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
4390 L:      blinux-list@redhat.com
4391 S:      Maintained
4392 F:      drivers/char/dtlk.c
4393 F:      include/linux/dtlk.h
4394
4395 DPAA2 DATAPATH I/O (DPIO) DRIVER
4396 M:      Roy Pledge <Roy.Pledge@nxp.com>
4397 L:      linux-kernel@vger.kernel.org
4398 S:      Maintained
4399 F:      drivers/staging/fsl-mc/bus/dpio
4400
4401 DPAA2 ETHERNET DRIVER
4402 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
4403 L:      linux-kernel@vger.kernel.org
4404 S:      Maintained
4405 F:      drivers/staging/fsl-dpaa2/ethernet
4406
4407 DPT_I2O SCSI RAID DRIVER
4408 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4409 L:      linux-scsi@vger.kernel.org
4410 W:      http://www.adaptec.com/
4411 S:      Maintained
4412 F:      drivers/scsi/dpt*
4413 F:      drivers/scsi/dpt/
4414
4415 DRBD DRIVER
4416 M:      Philipp Reisner <philipp.reisner@linbit.com>
4417 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
4418 L:      drbd-dev@lists.linbit.com
4419 W:      http://www.drbd.org
4420 T:      git git://git.linbit.com/linux-drbd.git
4421 T:      git git://git.linbit.com/drbd-8.4.git
4422 S:      Supported
4423 F:      drivers/block/drbd/
4424 F:      lib/lru_cache.c
4425 F:      Documentation/blockdev/drbd/
4426
4427 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4428 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4430 S:      Supported
4431 F:      Documentation/kobject.txt
4432 F:      drivers/base/
4433 F:      fs/debugfs/
4434 F:      fs/sysfs/
4435 F:      include/linux/debugfs.h
4436 F:      include/linux/kobj*
4437 F:      lib/kobj*
4438
4439 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
4440 M:      Kevin Hilman <khilman@kernel.org>
4441 M:      Nishanth Menon <nm@ti.com>
4442 S:      Maintained
4443 F:      drivers/power/avs/
4444 F:      include/linux/power/smartreflex.h
4445 L:      linux-pm@vger.kernel.org
4446
4447 DRM DRIVER FOR ARM PL111 CLCD
4448 M:      Eric Anholt <eric@anholt.net>
4449 T:      git git://anongit.freedesktop.org/drm/drm-misc
4450 S:      Supported
4451 F:      drivers/gpu/drm/pl111/
4452
4453 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4454 M:      Dave Airlie <airlied@redhat.com>
4455 S:      Odd Fixes
4456 F:      drivers/gpu/drm/ast/
4457
4458 DRM DRIVER FOR BOCHS VIRTUAL GPU
4459 M:      Gerd Hoffmann <kraxel@redhat.com>
4460 L:      virtualization@lists.linux-foundation.org
4461 T:      git git://anongit.freedesktop.org/drm/drm-misc
4462 S:      Maintained
4463 F:      drivers/gpu/drm/bochs/
4464
4465 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
4466 M:      Linus Walleij <linus.walleij@linaro.org>
4467 T:      git git://anongit.freedesktop.org/drm/drm-misc
4468 S:      Maintained
4469 F:      drivers/gpu/drm/tve200/
4470
4471 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4472 S:      Orphan / Obsolete
4473 F:      drivers/gpu/drm/i810/
4474 F:      include/uapi/drm/i810_drm.h
4475
4476 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4477 S:      Orphan / Obsolete
4478 F:      drivers/gpu/drm/mga/
4479 F:      include/uapi/drm/mga_drm.h
4480
4481 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4482 M:      Dave Airlie <airlied@redhat.com>
4483 S:      Odd Fixes
4484 F:      drivers/gpu/drm/mgag200/
4485
4486 DRM DRIVER FOR MI0283QT
4487 M:      Noralf Trønnes <noralf@tronnes.org>
4488 S:      Maintained
4489 F:      drivers/gpu/drm/tinydrm/mi0283qt.c
4490 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
4491
4492 DRM DRIVER FOR MSM ADRENO GPU
4493 M:      Rob Clark <robdclark@gmail.com>
4494 L:      linux-arm-msm@vger.kernel.org
4495 L:      dri-devel@lists.freedesktop.org
4496 L:      freedreno@lists.freedesktop.org
4497 T:      git git://people.freedesktop.org/~robclark/linux
4498 S:      Maintained
4499 F:      drivers/gpu/drm/msm/
4500 F:      include/uapi/drm/msm_drm.h
4501 F:      Documentation/devicetree/bindings/display/msm/
4502
4503 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4504 M:      Ben Skeggs <bskeggs@redhat.com>
4505 L:      dri-devel@lists.freedesktop.org
4506 L:      nouveau@lists.freedesktop.org
4507 T:      git git://github.com/skeggsb/linux
4508 S:      Supported
4509 F:      drivers/gpu/drm/nouveau/
4510 F:      include/uapi/drm/nouveau_drm.h
4511
4512 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
4513 M:      Noralf Trønnes <noralf@tronnes.org>
4514 S:      Maintained
4515 F:      drivers/gpu/drm/tinydrm/repaper.c
4516 F:      Documentation/devicetree/bindings/display/repaper.txt
4517
4518 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4519 M:      Dave Airlie <airlied@redhat.com>
4520 M:      Gerd Hoffmann <kraxel@redhat.com>
4521 L:      virtualization@lists.linux-foundation.org
4522 T:      git git://anongit.freedesktop.org/drm/drm-misc
4523 S:      Obsolete
4524 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
4525 F:      drivers/gpu/drm/cirrus/
4526
4527 DRM DRIVER FOR QXL VIRTUAL GPU
4528 M:      Dave Airlie <airlied@redhat.com>
4529 M:      Gerd Hoffmann <kraxel@redhat.com>
4530 L:      virtualization@lists.linux-foundation.org
4531 T:      git git://anongit.freedesktop.org/drm/drm-misc
4532 S:      Maintained
4533 F:      drivers/gpu/drm/qxl/
4534 F:      include/uapi/drm/qxl_drm.h
4535
4536 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4537 S:      Orphan / Obsolete
4538 F:      drivers/gpu/drm/r128/
4539 F:      include/uapi/drm/r128_drm.h
4540
4541 DRM DRIVER FOR SAVAGE VIDEO CARDS
4542 S:      Orphan / Obsolete
4543 F:      drivers/gpu/drm/savage/
4544 F:      include/uapi/drm/savage_drm.h
4545
4546 DRM DRIVER FOR SIS VIDEO CARDS
4547 S:      Orphan / Obsolete
4548 F:      drivers/gpu/drm/sis/
4549 F:      include/uapi/drm/sis_drm.h
4550
4551 DRM DRIVER FOR SITRONIX ST7586 PANELS
4552 M:      David Lechner <david@lechnology.com>
4553 S:      Maintained
4554 F:      drivers/gpu/drm/tinydrm/st7586.c
4555 F:      Documentation/devicetree/bindings/display/st7586.txt
4556
4557 DRM DRIVER FOR TDFX VIDEO CARDS
4558 S:      Orphan / Obsolete
4559 F:      drivers/gpu/drm/tdfx/
4560
4561 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4562 M:      Dave Airlie <airlied@redhat.com>
4563 S:      Odd Fixes
4564 F:      drivers/gpu/drm/udl/
4565
4566 DRM DRIVER FOR VMWARE VIRTUAL GPU
4567 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4568 M:      Sinclair Yeh <syeh@vmware.com>
4569 M:      Thomas Hellstrom <thellstrom@vmware.com>
4570 L:      dri-devel@lists.freedesktop.org
4571 T:      git git://people.freedesktop.org/~syeh/repos_linux
4572 T:      git git://people.freedesktop.org/~thomash/linux
4573 S:      Supported
4574 F:      drivers/gpu/drm/vmwgfx/
4575 F:      include/uapi/drm/vmwgfx_drm.h
4576
4577 DRM DRIVERS
4578 M:      David Airlie <airlied@linux.ie>
4579 L:      dri-devel@lists.freedesktop.org
4580 T:      git git://people.freedesktop.org/~airlied/linux
4581 B:      https://bugs.freedesktop.org/
4582 C:      irc://chat.freenode.net/dri-devel
4583 S:      Maintained
4584 F:      drivers/gpu/drm/
4585 F:      drivers/gpu/vga/
4586 F:      Documentation/devicetree/bindings/display/
4587 F:      Documentation/devicetree/bindings/gpu/
4588 F:      Documentation/devicetree/bindings/video/
4589 F:      Documentation/gpu/
4590 F:      include/drm/
4591 F:      include/uapi/drm/
4592 F:      include/linux/vga*
4593
4594 DRM DRIVERS AND MISC GPU PATCHES
4595 M:      Daniel Vetter <daniel.vetter@intel.com>
4596 M:      Jani Nikula <jani.nikula@linux.intel.com>
4597 M:      Sean Paul <seanpaul@chromium.org>
4598 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
4599 S:      Maintained
4600 T:      git git://anongit.freedesktop.org/drm/drm-misc
4601 F:      Documentation/gpu/
4602 F:      drivers/gpu/vga/
4603 F:      drivers/gpu/drm/*
4604 F:      include/drm/drm*
4605 F:      include/uapi/drm/drm*
4606 F:      include/linux/vga*
4607
4608 DRM DRIVERS FOR ALLWINNER A10
4609 M:      Maxime Ripard  <maxime.ripard@free-electrons.com>
4610 L:      dri-devel@lists.freedesktop.org
4611 S:      Supported
4612 F:      drivers/gpu/drm/sun4i/
4613 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4614 T:      git git://anongit.freedesktop.org/drm/drm-misc
4615
4616 DRM DRIVERS FOR AMLOGIC SOCS
4617 M:      Neil Armstrong <narmstrong@baylibre.com>
4618 L:      dri-devel@lists.freedesktop.org
4619 L:      linux-amlogic@lists.infradead.org
4620 W:      http://linux-meson.com/
4621 S:      Supported
4622 F:      drivers/gpu/drm/meson/
4623 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
4624 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
4625 F:      Documentation/gpu/meson.rst
4626 T:      git git://anongit.freedesktop.org/drm/drm-misc
4627
4628 DRM DRIVERS FOR ATMEL HLCDC
4629 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
4630 L:      dri-devel@lists.freedesktop.org
4631 S:      Supported
4632 F:      drivers/gpu/drm/atmel-hlcdc/
4633 F:      Documentation/devicetree/bindings/drm/atmel/
4634 T:      git git://anongit.freedesktop.org/drm/drm-misc
4635
4636 DRM DRIVERS FOR BRIDGE CHIPS
4637 M:      Archit Taneja <architt@codeaurora.org>
4638 M:      Andrzej Hajda <a.hajda@samsung.com>
4639 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
4640 S:      Maintained
4641 T:      git git://anongit.freedesktop.org/drm/drm-misc
4642 F:      drivers/gpu/drm/bridge/
4643
4644 DRM DRIVERS FOR EXYNOS
4645 M:      Inki Dae <inki.dae@samsung.com>
4646 M:      Joonyoung Shim <jy0922.shim@samsung.com>
4647 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
4648 M:      Kyungmin Park <kyungmin.park@samsung.com>
4649 L:      dri-devel@lists.freedesktop.org
4650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4651 S:      Supported
4652 F:      drivers/gpu/drm/exynos/
4653 F:      include/uapi/drm/exynos_drm.h
4654 F:      Documentation/devicetree/bindings/display/exynos/
4655
4656 DRM DRIVERS FOR FREESCALE DCU
4657 M:      Stefan Agner <stefan@agner.ch>
4658 M:      Alison Wang <alison.wang@freescale.com>
4659 L:      dri-devel@lists.freedesktop.org
4660 S:      Supported
4661 F:      drivers/gpu/drm/fsl-dcu/
4662 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
4663 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
4664 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
4665
4666 DRM DRIVERS FOR FREESCALE IMX
4667 M:      Philipp Zabel <p.zabel@pengutronix.de>
4668 L:      dri-devel@lists.freedesktop.org
4669 S:      Maintained
4670 F:      drivers/gpu/drm/imx/
4671 F:      drivers/gpu/ipu-v3/
4672 F:      Documentation/devicetree/bindings/display/imx/
4673
4674 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4675 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4676 L:      dri-devel@lists.freedesktop.org
4677 T:      git git://github.com/patjak/drm-gma500
4678 S:      Maintained
4679 F:      drivers/gpu/drm/gma500/
4680
4681 DRM DRIVERS FOR HISILICON
4682 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
4683 M:      Rongrong Zou <zourongrong@gmail.com>
4684 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
4685 R:      Chen Feng <puck.chen@hisilicon.com>
4686 L:      dri-devel@lists.freedesktop.org
4687 T:      git git://github.com/xin3liang/linux.git
4688 S:      Maintained
4689 F:      drivers/gpu/drm/hisilicon/
4690 F:      Documentation/devicetree/bindings/display/hisilicon/
4691
4692 DRM DRIVERS FOR MEDIATEK
4693 M:      CK Hu <ck.hu@mediatek.com>
4694 M:      Philipp Zabel <p.zabel@pengutronix.de>
4695 L:      dri-devel@lists.freedesktop.org
4696 S:      Supported
4697 F:      drivers/gpu/drm/mediatek/
4698 F:      Documentation/devicetree/bindings/display/mediatek/
4699
4700 DRM DRIVERS FOR NVIDIA TEGRA
4701 M:      Thierry Reding <thierry.reding@gmail.com>
4702 L:      dri-devel@lists.freedesktop.org
4703 L:      linux-tegra@vger.kernel.org
4704 T:      git git://anongit.freedesktop.org/tegra/linux.git
4705 S:      Supported
4706 F:      drivers/gpu/drm/tegra/
4707 F:      drivers/gpu/host1x/
4708 F:      include/linux/host1x.h
4709 F:      include/uapi/drm/tegra_drm.h
4710 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4711
4712 DRM DRIVERS FOR RENESAS
4713 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4714 L:      dri-devel@lists.freedesktop.org
4715 L:      linux-renesas-soc@vger.kernel.org
4716 T:      git git://linuxtv.org/pinchartl/fbdev
4717 S:      Supported
4718 F:      drivers/gpu/drm/rcar-du/
4719 F:      drivers/gpu/drm/shmobile/
4720 F:      include/linux/platform_data/shmob_drm.h
4721 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
4722 F:      Documentation/devicetree/bindings/display/renesas,du.txt
4723
4724 DRM DRIVERS FOR ROCKCHIP
4725 M:      Mark Yao <mark.yao@rock-chips.com>
4726 L:      dri-devel@lists.freedesktop.org
4727 S:      Maintained
4728 F:      drivers/gpu/drm/rockchip/
4729 F:      Documentation/devicetree/bindings/display/rockchip/
4730 T:      git git://anongit.freedesktop.org/drm/drm-misc
4731
4732 DRM DRIVERS FOR STI
4733 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
4734 M:      Vincent Abriou <vincent.abriou@st.com>
4735 L:      dri-devel@lists.freedesktop.org
4736 T:      git git://anongit.freedesktop.org/drm/drm-misc
4737 S:      Maintained
4738 F:      drivers/gpu/drm/sti
4739 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
4740
4741 DRM DRIVERS FOR STM
4742 M:      Yannick Fertre <yannick.fertre@st.com>
4743 M:      Philippe Cornu <philippe.cornu@st.com>
4744 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
4745 M:      Vincent Abriou <vincent.abriou@st.com>
4746 L:      dri-devel@lists.freedesktop.org
4747 T:      git git://anongit.freedesktop.org/drm/drm-misc
4748 S:      Maintained
4749 F:      drivers/gpu/drm/stm
4750 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
4751
4752 DRM DRIVERS FOR TI LCDC
4753 M:      Jyri Sarha <jsarha@ti.com>
4754 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4755 L:      dri-devel@lists.freedesktop.org
4756 S:      Maintained
4757 F:      drivers/gpu/drm/tilcdc/
4758 F:      Documentation/devicetree/bindings/display/tilcdc/
4759
4760 DRM DRIVERS FOR TI OMAP
4761 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4762 L:      dri-devel@lists.freedesktop.org
4763 S:      Maintained
4764 F:      drivers/gpu/drm/omapdrm/
4765 F:      Documentation/devicetree/bindings/display/ti/
4766
4767 DRM DRIVERS FOR VC4
4768 M:      Eric Anholt <eric@anholt.net>
4769 T:      git git://github.com/anholt/linux
4770 S:      Supported
4771 F:      drivers/gpu/drm/vc4/
4772 F:      include/uapi/drm/vc4_drm.h
4773 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4774 T:      git git://anongit.freedesktop.org/drm/drm-misc
4775
4776 DRM DRIVERS FOR VIVANTE GPU IP
4777 M:      Lucas Stach <l.stach@pengutronix.de>
4778 R:      Russell King <linux+etnaviv@armlinux.org.uk>
4779 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
4780 L:      etnaviv@lists.freedesktop.org
4781 L:      dri-devel@lists.freedesktop.org
4782 S:      Maintained
4783 F:      drivers/gpu/drm/etnaviv/
4784 F:      include/uapi/drm/etnaviv_drm.h
4785 F:      Documentation/devicetree/bindings/display/etnaviv/
4786
4787 DRM DRIVERS FOR ZTE ZX
4788 M:      Shawn Guo <shawnguo@kernel.org>
4789 L:      dri-devel@lists.freedesktop.org
4790 S:      Maintained
4791 F:      drivers/gpu/drm/zte/
4792 F:      Documentation/devicetree/bindings/display/zte,vou.txt
4793 T:      git git://anongit.freedesktop.org/drm/drm-misc
4794
4795 DRM PANEL DRIVERS
4796 M:      Thierry Reding <thierry.reding@gmail.com>
4797 L:      dri-devel@lists.freedesktop.org
4798 T:      git git://anongit.freedesktop.org/drm/drm-misc
4799 S:      Maintained
4800 F:      drivers/gpu/drm/drm_panel.c
4801 F:      drivers/gpu/drm/panel/
4802 F:      include/drm/drm_panel.h
4803 F:      Documentation/devicetree/bindings/display/panel/
4804
4805 DRM TINYDRM DRIVERS
4806 M:      Noralf Trønnes <noralf@tronnes.org>
4807 W:      https://github.com/notro/tinydrm/wiki/Development
4808 T:      git git://anongit.freedesktop.org/drm/drm-misc
4809 S:      Maintained
4810 F:      drivers/gpu/drm/tinydrm/
4811 F:      include/drm/tinydrm/
4812
4813 DSBR100 USB FM RADIO DRIVER
4814 M:      Alexey Klimov <klimov.linux@gmail.com>
4815 L:      linux-media@vger.kernel.org
4816 T:      git git://linuxtv.org/media_tree.git
4817 S:      Maintained
4818 F:      drivers/media/radio/dsbr100.c
4819
4820 DSCC4 DRIVER
4821 M:      Francois Romieu <romieu@fr.zoreil.com>
4822 L:      netdev@vger.kernel.org
4823 S:      Maintained
4824 F:      drivers/net/wan/dscc4.c
4825
4826 DT3155 MEDIA DRIVER
4827 M:      Hans Verkuil <hverkuil@xs4all.nl>
4828 L:      linux-media@vger.kernel.org
4829 T:      git git://linuxtv.org/media_tree.git
4830 W:      https://linuxtv.org
4831 S:      Odd Fixes
4832 F:      drivers/media/pci/dt3155/
4833
4834 DVB_USB_AF9015 MEDIA DRIVER
4835 M:      Antti Palosaari <crope@iki.fi>
4836 L:      linux-media@vger.kernel.org
4837 W:      https://linuxtv.org
4838 W:      http://palosaari.fi/linux/
4839 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4840 T:      git git://linuxtv.org/anttip/media_tree.git
4841 S:      Maintained
4842 F:      drivers/media/usb/dvb-usb-v2/af9015*
4843
4844 DVB_USB_AF9035 MEDIA DRIVER
4845 M:      Antti Palosaari <crope@iki.fi>
4846 L:      linux-media@vger.kernel.org
4847 W:      https://linuxtv.org
4848 W:      http://palosaari.fi/linux/
4849 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4850 T:      git git://linuxtv.org/anttip/media_tree.git
4851 S:      Maintained
4852 F:      drivers/media/usb/dvb-usb-v2/af9035*
4853
4854 DVB_USB_ANYSEE MEDIA DRIVER
4855 M:      Antti Palosaari <crope@iki.fi>
4856 L:      linux-media@vger.kernel.org
4857 W:      https://linuxtv.org
4858 W:      http://palosaari.fi/linux/
4859 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4860 T:      git git://linuxtv.org/anttip/media_tree.git
4861 S:      Maintained
4862 F:      drivers/media/usb/dvb-usb-v2/anysee*
4863
4864 DVB_USB_AU6610 MEDIA DRIVER
4865 M:      Antti Palosaari <crope@iki.fi>
4866 L:      linux-media@vger.kernel.org
4867 W:      https://linuxtv.org
4868 W:      http://palosaari.fi/linux/
4869 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4870 T:      git git://linuxtv.org/anttip/media_tree.git
4871 S:      Maintained
4872 F:      drivers/media/usb/dvb-usb-v2/au6610*
4873
4874 DVB_USB_CE6230 MEDIA DRIVER
4875 M:      Antti Palosaari <crope@iki.fi>
4876 L:      linux-media@vger.kernel.org
4877 W:      https://linuxtv.org
4878 W:      http://palosaari.fi/linux/
4879 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4880 T:      git git://linuxtv.org/anttip/media_tree.git
4881 S:      Maintained
4882 F:      drivers/media/usb/dvb-usb-v2/ce6230*
4883
4884 DVB_USB_CXUSB MEDIA DRIVER
4885 M:      Michael Krufky <mkrufky@linuxtv.org>
4886 L:      linux-media@vger.kernel.org
4887 W:      https://linuxtv.org
4888 W:      http://github.com/mkrufky
4889 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4890 T:      git git://linuxtv.org/media_tree.git
4891 S:      Maintained
4892 F:      drivers/media/usb/dvb-usb/cxusb*
4893
4894 DVB_USB_EC168 MEDIA DRIVER
4895 M:      Antti Palosaari <crope@iki.fi>
4896 L:      linux-media@vger.kernel.org
4897 W:      https://linuxtv.org
4898 W:      http://palosaari.fi/linux/
4899 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4900 T:      git git://linuxtv.org/anttip/media_tree.git
4901 S:      Maintained
4902 F:      drivers/media/usb/dvb-usb-v2/ec168*
4903
4904 DVB_USB_GL861 MEDIA DRIVER
4905 M:      Antti Palosaari <crope@iki.fi>
4906 L:      linux-media@vger.kernel.org
4907 W:      https://linuxtv.org
4908 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4909 T:      git git://linuxtv.org/anttip/media_tree.git
4910 S:      Maintained
4911 F:      drivers/media/usb/dvb-usb-v2/gl861*
4912
4913 DVB_USB_MXL111SF MEDIA DRIVER
4914 M:      Michael Krufky <mkrufky@linuxtv.org>
4915 L:      linux-media@vger.kernel.org
4916 W:      https://linuxtv.org
4917 W:      http://github.com/mkrufky
4918 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4919 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4920 S:      Maintained
4921 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4922
4923 DVB_USB_RTL28XXU MEDIA DRIVER
4924 M:      Antti Palosaari <crope@iki.fi>
4925 L:      linux-media@vger.kernel.org
4926 W:      https://linuxtv.org
4927 W:      http://palosaari.fi/linux/
4928 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4929 T:      git git://linuxtv.org/anttip/media_tree.git
4930 S:      Maintained
4931 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4932
4933 DVB_USB_V2 MEDIA DRIVER
4934 M:      Antti Palosaari <crope@iki.fi>
4935 L:      linux-media@vger.kernel.org
4936 W:      https://linuxtv.org
4937 W:      http://palosaari.fi/linux/
4938 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4939 T:      git git://linuxtv.org/anttip/media_tree.git
4940 S:      Maintained
4941 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4942 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4943
4944 DYNAMIC DEBUG
4945 M:      Jason Baron <jbaron@akamai.com>
4946 S:      Maintained
4947 F:      lib/dynamic_debug.c
4948 F:      include/linux/dynamic_debug.h
4949
4950 DZ DECSTATION DZ11 SERIAL DRIVER
4951 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4952 S:      Maintained
4953 F:      drivers/tty/serial/dz.*
4954
4955 E3X0 POWER BUTTON DRIVER
4956 M:      Moritz Fischer <moritz.fischer@ettus.com>
4957 L:      usrp-users@lists.ettus.com
4958 W:      http://www.ettus.com
4959 S:      Supported
4960 F:      drivers/input/misc/e3x0-button.c
4961 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4962
4963 E4000 MEDIA DRIVER
4964 M:      Antti Palosaari <crope@iki.fi>
4965 L:      linux-media@vger.kernel.org
4966 W:      https://linuxtv.org
4967 W:      http://palosaari.fi/linux/
4968 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4969 T:      git git://linuxtv.org/anttip/media_tree.git
4970 S:      Maintained
4971 F:      drivers/media/tuners/e4000*
4972
4973 EATA ISA/EISA/PCI SCSI DRIVER
4974 M:      Dario Ballabio <ballabio_dario@emc.com>
4975 L:      linux-scsi@vger.kernel.org
4976 S:      Maintained
4977 F:      drivers/scsi/eata.c
4978
4979 EC100 MEDIA DRIVER
4980 M:      Antti Palosaari <crope@iki.fi>
4981 L:      linux-media@vger.kernel.org
4982 W:      https://linuxtv.org
4983 W:      http://palosaari.fi/linux/
4984 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4985 T:      git git://linuxtv.org/anttip/media_tree.git
4986 S:      Maintained
4987 F:      drivers/media/dvb-frontends/ec100*
4988
4989 ECRYPT FILE SYSTEM
4990 M:      Tyler Hicks <tyhicks@canonical.com>
4991 L:      ecryptfs@vger.kernel.org
4992 W:      http://ecryptfs.org
4993 W:      https://launchpad.net/ecryptfs
4994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4995 S:      Supported
4996 F:      Documentation/filesystems/ecryptfs.txt
4997 F:      fs/ecryptfs/
4998
4999 EDAC-AMD64
5000 M:      Borislav Petkov <bp@alien8.de>
5001 L:      linux-edac@vger.kernel.org
5002 S:      Maintained
5003 F:      drivers/edac/amd64_edac*
5004
5005 EDAC-CALXEDA
5006 M:      Robert Richter <rric@kernel.org>
5007 L:      linux-edac@vger.kernel.org
5008 S:      Maintained
5009 F:      drivers/edac/highbank*
5010
5011 EDAC-CAVIUM OCTEON
5012 M:      Ralf Baechle <ralf@linux-mips.org>
5013 M:      David Daney <david.daney@cavium.com>
5014 L:      linux-edac@vger.kernel.org
5015 L:      linux-mips@linux-mips.org
5016 S:      Supported
5017 F:      drivers/edac/octeon_edac*
5018
5019 EDAC-CAVIUM THUNDERX
5020 M:      David Daney <david.daney@cavium.com>
5021 M:      Jan Glauber <jglauber@cavium.com>
5022 L:      linux-edac@vger.kernel.org
5023 S:      Supported
5024 F:      drivers/edac/thunderx_edac*
5025
5026 EDAC-CORE
5027 M:      Borislav Petkov <bp@alien8.de>
5028 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5029 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5030 L:      linux-edac@vger.kernel.org
5031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
5032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
5033 S:      Supported
5034 F:      Documentation/admin-guide/ras.rst
5035 F:      Documentation/driver-api/edac.rst
5036 F:      drivers/edac/
5037 F:      include/linux/edac.h
5038
5039 EDAC-E752X
5040 M:      Mark Gross <mark.gross@intel.com>
5041 L:      linux-edac@vger.kernel.org
5042 S:      Maintained
5043 F:      drivers/edac/e752x_edac.c
5044
5045 EDAC-E7XXX
5046 L:      linux-edac@vger.kernel.org
5047 S:      Maintained
5048 F:      drivers/edac/e7xxx_edac.c
5049
5050 EDAC-FSL_DDR
5051 M:      York Sun <york.sun@nxp.com>
5052 L:      linux-edac@vger.kernel.org
5053 S:      Maintained
5054 F:      drivers/edac/fsl_ddr_edac.*
5055
5056 EDAC-GHES
5057 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5058 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5059 L:      linux-edac@vger.kernel.org
5060 S:      Maintained
5061 F:      drivers/edac/ghes_edac.c
5062
5063 EDAC-I3000
5064 L:      linux-edac@vger.kernel.org
5065 S:      Orphan
5066 F:      drivers/edac/i3000_edac.c
5067
5068 EDAC-I5000
5069 L:      linux-edac@vger.kernel.org
5070 S:      Maintained
5071 F:      drivers/edac/i5000_edac.c
5072
5073 EDAC-I5400
5074 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5075 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5076 L:      linux-edac@vger.kernel.org
5077 S:      Maintained
5078 F:      drivers/edac/i5400_edac.c
5079
5080 EDAC-I7300
5081 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5082 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5083 L:      linux-edac@vger.kernel.org
5084 S:      Maintained
5085 F:      drivers/edac/i7300_edac.c
5086
5087 EDAC-I7CORE
5088 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5089 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5090 L:      linux-edac@vger.kernel.org
5091 S:      Maintained
5092 F:      drivers/edac/i7core_edac.c
5093
5094 EDAC-I82443BXGX
5095 M:      Tim Small <tim@buttersideup.com>
5096 L:      linux-edac@vger.kernel.org
5097 S:      Maintained
5098 F:      drivers/edac/i82443bxgx_edac.c
5099
5100 EDAC-I82975X
5101 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
5102 M:      "Arvind R." <arvino55@gmail.com>
5103 L:      linux-edac@vger.kernel.org
5104 S:      Maintained
5105 F:      drivers/edac/i82975x_edac.c
5106
5107 EDAC-IE31200
5108 M:      Jason Baron <jbaron@akamai.com>
5109 L:      linux-edac@vger.kernel.org
5110 S:      Maintained
5111 F:      drivers/edac/ie31200_edac.c
5112
5113 EDAC-MPC85XX
5114 M:      Johannes Thumshirn <morbidrsa@gmail.com>
5115 L:      linux-edac@vger.kernel.org
5116 S:      Maintained
5117 F:      drivers/edac/mpc85xx_edac.[ch]
5118
5119 EDAC-PASEMI
5120 M:      Egor Martovetsky <egor@pasemi.com>
5121 L:      linux-edac@vger.kernel.org
5122 S:      Maintained
5123 F:      drivers/edac/pasemi_edac.c
5124
5125 EDAC-PND2
5126 M:      Tony Luck <tony.luck@intel.com>
5127 L:      linux-edac@vger.kernel.org
5128 S:      Maintained
5129 F:      drivers/edac/pnd2_edac.[ch]
5130
5131 EDAC-R82600
5132 M:      Tim Small <tim@buttersideup.com>
5133 L:      linux-edac@vger.kernel.org
5134 S:      Maintained
5135 F:      drivers/edac/r82600_edac.c
5136
5137 EDAC-SBRIDGE
5138 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5139 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5140 L:      linux-edac@vger.kernel.org
5141 S:      Maintained
5142 F:      drivers/edac/sb_edac.c
5143
5144 EDAC-SKYLAKE
5145 M:      Tony Luck <tony.luck@intel.com>
5146 L:      linux-edac@vger.kernel.org
5147 S:      Maintained
5148 F:      drivers/edac/skx_edac.c
5149
5150 EDAC-TI
5151 M:      Tero Kristo <t-kristo@ti.com>
5152 L:      linux-edac@vger.kernel.org
5153 S:      Maintained
5154 F:      drivers/edac/ti_edac.c
5155
5156 EDIROL UA-101/UA-1000 DRIVER
5157 M:      Clemens Ladisch <clemens@ladisch.de>
5158 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5159 T:      git git://git.alsa-project.org/alsa-kernel.git
5160 S:      Maintained
5161 F:      sound/usb/misc/ua101.c
5162
5163 EFI TEST DRIVER
5164 L:      linux-efi@vger.kernel.org
5165 M:      Ivan Hu <ivan.hu@canonical.com>
5166 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5167 S:      Maintained
5168 F:      drivers/firmware/efi/test/
5169
5170 EFI VARIABLE FILESYSTEM
5171 M:      Matthew Garrett <matthew.garrett@nebula.com>
5172 M:      Jeremy Kerr <jk@ozlabs.org>
5173 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5175 L:      linux-efi@vger.kernel.org
5176 S:      Maintained
5177 F:      fs/efivarfs/
5178
5179 EFIFB FRAMEBUFFER DRIVER
5180 L:      linux-fbdev@vger.kernel.org
5181 M:      Peter Jones <pjones@redhat.com>
5182 S:      Maintained
5183 F:      drivers/video/fbdev/efifb.c
5184
5185 EFS FILESYSTEM
5186 W:      http://aeschi.ch.eu.org/efs/
5187 S:      Orphan
5188 F:      fs/efs/
5189
5190 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
5191 M:      Douglas Miller <dougmill@linux.vnet.ibm.com>
5192 L:      netdev@vger.kernel.org
5193 S:      Maintained
5194 F:      drivers/net/ethernet/ibm/ehea/
5195
5196 EM28XX VIDEO4LINUX DRIVER
5197 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5198 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5199 L:      linux-media@vger.kernel.org
5200 W:      https://linuxtv.org
5201 T:      git git://linuxtv.org/media_tree.git
5202 S:      Maintained
5203 F:      drivers/media/usb/em28xx/
5204 F:      Documentation/media/v4l-drivers/em28xx*
5205
5206 EMBEDDED LINUX
5207 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
5208 M:      Matt Mackall <mpm@selenic.com>
5209 M:      David Woodhouse <dwmw2@infradead.org>
5210 L:      linux-embedded@vger.kernel.org
5211 S:      Maintained
5212
5213 Emulex 10Gbps iSCSI - OneConnect DRIVER
5214 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
5215 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
5216 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
5217 L:      linux-scsi@vger.kernel.org
5218 W:      http://www.broadcom.com
5219 S:      Supported
5220 F:      drivers/scsi/be2iscsi/
5221
5222 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
5223 M:      Sathya Perla <sathya.perla@broadcom.com>
5224 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
5225 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
5226 M:      Somnath Kotur <somnath.kotur@broadcom.com>
5227 L:      netdev@vger.kernel.org
5228 W:      http://www.emulex.com
5229 S:      Supported
5230 F:      drivers/net/ethernet/emulex/benet/
5231
5232 EMULEX ONECONNECT ROCE DRIVER
5233 M:      Selvin Xavier <selvin.xavier@broadcom.com>
5234 M:      Devesh Sharma <devesh.sharma@broadcom.com>
5235 L:      linux-rdma@vger.kernel.org
5236 W:      http://www.broadcom.com
5237 S:      Odd Fixes
5238 F:      drivers/infiniband/hw/ocrdma/
5239 F:      include/uapi/rdma/ocrdma-abi.h
5240
5241 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
5242 M:      James Smart <james.smart@broadcom.com>
5243 M:      Dick Kennedy <dick.kennedy@broadcom.com>
5244 L:      linux-scsi@vger.kernel.org
5245 W:      http://www.broadcom.com
5246 S:      Supported
5247 F:      drivers/scsi/lpfc/
5248
5249 ENE CB710 FLASH CARD READER DRIVER
5250 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
5251 S:      Maintained
5252 F:      drivers/misc/cb710/
5253 F:      drivers/mmc/host/cb710-mmc.*
5254 F:      include/linux/cb710.h
5255
5256 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
5257 M:      Maxim Levitsky <maximlevitsky@gmail.com>
5258 S:      Maintained
5259 F:      drivers/media/rc/ene_ir.*
5260
5261 EPSON S1D13XXX FRAMEBUFFER DRIVER
5262 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
5263 S:      Maintained
5264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
5265 F:      drivers/video/fbdev/s1d13xxxfb.c
5266 F:      include/video/s1d13xxxfb.h
5267
5268 ERRSEQ ERROR TRACKING INFRASTRUCTURE
5269 M:      Jeff Layton <jlayton@kernel.org>
5270 S:      Maintained
5271 F:      lib/errseq.c
5272 F:      include/linux/errseq.h
5273
5274 ET131X NETWORK DRIVER
5275 M:      Mark Einon <mark.einon@gmail.com>
5276 S:      Odd Fixes
5277 F:      drivers/net/ethernet/agere/
5278
5279 ETHERNET BRIDGE
5280 M:      Stephen Hemminger <stephen@networkplumber.org>
5281 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
5282 L:      netdev@vger.kernel.org
5283 W:      http://www.linuxfoundation.org/en/Net:Bridge
5284 S:      Maintained
5285 F:      include/linux/netfilter_bridge/
5286 F:      net/bridge/
5287
5288 ETHERNET PHY LIBRARY
5289 M:      Andrew Lunn <andrew@lunn.ch>
5290 M:      Florian Fainelli <f.fainelli@gmail.com>
5291 L:      netdev@vger.kernel.org
5292 S:      Maintained
5293 F:      Documentation/ABI/testing/sysfs-bus-mdio
5294 F:      Documentation/devicetree/bindings/net/mdio*
5295 F:      Documentation/networking/phy.txt
5296 F:      drivers/net/phy/
5297 F:      drivers/of/of_mdio.c
5298 F:      drivers/of/of_net.c
5299 F:      include/linux/*mdio*.h
5300 F:      include/linux/of_net.h
5301 F:      include/linux/phy.h
5302 F:      include/linux/phy_fixed.h
5303 F:      include/linux/platform_data/mdio-gpio.h
5304 F:      include/linux/platform_data/mdio-bcm-unimac.h
5305 F:      include/trace/events/mdio.h
5306 F:      include/uapi/linux/mdio.h
5307 F:      include/uapi/linux/mii.h
5308
5309 EXT2 FILE SYSTEM
5310 M:      Jan Kara <jack@suse.com>
5311 L:      linux-ext4@vger.kernel.org
5312 S:      Maintained
5313 F:      Documentation/filesystems/ext2.txt
5314 F:      fs/ext2/
5315 F:      include/linux/ext2*
5316
5317 EXT4 FILE SYSTEM
5318 M:      "Theodore Ts'o" <tytso@mit.edu>
5319 M:      Andreas Dilger <adilger.kernel@dilger.ca>
5320 L:      linux-ext4@vger.kernel.org
5321 W:      http://ext4.wiki.kernel.org
5322 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
5323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5324 S:      Maintained
5325 F:      Documentation/filesystems/ext4.txt
5326 F:      fs/ext4/
5327
5328 Extended Verification Module (EVM)
5329 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5330 L:      linux-integrity@vger.kernel.org
5331 S:      Supported
5332 F:      security/integrity/evm/
5333
5334 EXTENSIBLE FIRMWARE INTERFACE (EFI)
5335 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5336 L:      linux-efi@vger.kernel.org
5337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5338 S:      Maintained
5339 F:      Documentation/efi-stub.txt
5340 F:      arch/*/kernel/efi.c
5341 F:      arch/x86/boot/compressed/eboot.[ch]
5342 F:      arch/*/include/asm/efi.h
5343 F:      arch/x86/platform/efi/
5344 F:      drivers/firmware/efi/
5345 F:      include/linux/efi*.h
5346 F:      arch/arm/boot/compressed/efi-header.S
5347 F:      arch/arm64/kernel/efi-entry.S
5348
5349 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5350 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5351 M:      Chanwoo Choi <cw00.choi@samsung.com>
5352 L:      linux-kernel@vger.kernel.org
5353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
5354 S:      Maintained
5355 F:      drivers/extcon/
5356 F:      include/linux/extcon/
5357 F:      include/linux/extcon.h
5358 F:      Documentation/extcon/
5359 F:      Documentation/devicetree/bindings/extcon/
5360
5361 EXYNOS DP DRIVER
5362 M:      Jingoo Han <jingoohan1@gmail.com>
5363 L:      dri-devel@lists.freedesktop.org
5364 S:      Maintained
5365 F:      drivers/gpu/drm/exynos/exynos_dp*
5366
5367 EXYNOS SYSMMU (IOMMU) driver
5368 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5369 L:      iommu@lists.linux-foundation.org
5370 S:      Maintained
5371 F:      drivers/iommu/exynos-iommu.c
5372
5373 EZchip NPS platform support
5374 M:      Elad Kanfi <eladkan@mellanox.com>
5375 M:      Vineet Gupta <vgupta@synopsys.com>
5376 S:      Supported
5377 F:      arch/arc/plat-eznps
5378 F:      arch/arc/boot/dts/eznps.dts
5379
5380 F2FS FILE SYSTEM
5381 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5382 M:      Chao Yu <yuchao0@huawei.com>
5383 L:      linux-f2fs-devel@lists.sourceforge.net
5384 W:      https://f2fs.wiki.kernel.org/
5385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5386 S:      Maintained
5387 F:      Documentation/filesystems/f2fs.txt
5388 F:      Documentation/ABI/testing/sysfs-fs-f2fs
5389 F:      fs/f2fs/
5390 F:      include/linux/f2fs_fs.h
5391 F:      include/trace/events/f2fs.h
5392
5393 F71805F HARDWARE MONITORING DRIVER
5394 M:      Jean Delvare <jdelvare@suse.com>
5395 L:      linux-hwmon@vger.kernel.org
5396 S:      Maintained
5397 F:      Documentation/hwmon/f71805f
5398 F:      drivers/hwmon/f71805f.c
5399
5400 FANOTIFY
5401 M:      Jan Kara <jack@suse.cz>
5402 R:      Amir Goldstein <amir73il@gmail.com>
5403 L:      linux-fsdevel@vger.kernel.org
5404 S:      Maintained
5405 F:      fs/notify/fanotify/
5406 F:      include/linux/fanotify.h
5407 F:      include/uapi/linux/fanotify.h
5408
5409 FARSYNC SYNCHRONOUS DRIVER
5410 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
5411 W:      http://www.farsite.co.uk/
5412 S:      Supported
5413 F:      drivers/net/wan/farsync.*
5414
5415 FAULT INJECTION SUPPORT
5416 M:      Akinobu Mita <akinobu.mita@gmail.com>
5417 S:      Supported
5418 F:      Documentation/fault-injection/
5419 F:      lib/fault-inject.c
5420
5421 FBTFT Framebuffer drivers
5422 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5423 S:      Maintained
5424 F:      drivers/staging/fbtft/
5425
5426 FC0011 TUNER DRIVER
5427 M:      Michael Buesch <m@bues.ch>
5428 L:      linux-media@vger.kernel.org
5429 S:      Maintained
5430 F:      drivers/media/tuners/fc0011.h
5431 F:      drivers/media/tuners/fc0011.c
5432
5433 FC2580 MEDIA DRIVER
5434 M:      Antti Palosaari <crope@iki.fi>
5435 L:      linux-media@vger.kernel.org
5436 W:      https://linuxtv.org
5437 W:      http://palosaari.fi/linux/
5438 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5439 T:      git git://linuxtv.org/anttip/media_tree.git
5440 S:      Maintained
5441 F:      drivers/media/tuners/fc2580*
5442
5443 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
5444 M:      Johannes Thumshirn <jth@kernel.org>
5445 L:      linux-scsi@vger.kernel.org
5446 W:      www.Open-FCoE.org
5447 S:      Supported
5448 F:      drivers/scsi/libfc/
5449 F:      drivers/scsi/fcoe/
5450 F:      include/scsi/fc/
5451 F:      include/scsi/libfc.h
5452 F:      include/scsi/libfcoe.h
5453 F:      include/uapi/scsi/fc/
5454
5455 FILE LOCKING (flock() and fcntl()/lockf())
5456 M:      Jeff Layton <jlayton@kernel.org>
5457 M:      "J. Bruce Fields" <bfields@fieldses.org>
5458 L:      linux-fsdevel@vger.kernel.org
5459 S:      Maintained
5460 F:      include/linux/fcntl.h
5461 F:      include/uapi/linux/fcntl.h
5462 F:      fs/fcntl.c
5463 F:      fs/locks.c
5464
5465 FILESYSTEMS (VFS and infrastructure)
5466 M:      Alexander Viro <viro@zeniv.linux.org.uk>
5467 L:      linux-fsdevel@vger.kernel.org
5468 S:      Maintained
5469 F:      fs/*
5470 F:      include/linux/fs.h
5471 F:      include/uapi/linux/fs.h
5472
5473 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5474 M:      Riku Voipio <riku.voipio@iki.fi>
5475 L:      linux-hwmon@vger.kernel.org
5476 S:      Maintained
5477 F:      drivers/hwmon/f75375s.c
5478 F:      include/linux/f75375s.h
5479
5480 FIREWIRE AUDIO DRIVERS
5481 M:      Clemens Ladisch <clemens@ladisch.de>
5482 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5483 T:      git git://git.alsa-project.org/alsa-kernel.git
5484 S:      Maintained
5485 F:      sound/firewire/
5486
5487 FIREWIRE MEDIA DRIVERS (firedtv)
5488 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
5489 L:      linux-media@vger.kernel.org
5490 L:      linux1394-devel@lists.sourceforge.net
5491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
5492 S:      Maintained
5493 F:      drivers/media/firewire/
5494
5495 FIREWIRE SBP-2 TARGET
5496 M:      Chris Boot <bootc@bootc.net>
5497 L:      linux-scsi@vger.kernel.org
5498 L:      target-devel@vger.kernel.org
5499 L:      linux1394-devel@lists.sourceforge.net
5500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
5501 S:      Maintained
5502 F:      drivers/target/sbp/
5503
5504 FIREWIRE SUBSYSTEM
5505 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
5506 L:      linux1394-devel@lists.sourceforge.net
5507 W:      http://ieee1394.wiki.kernel.org/
5508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
5509 S:      Maintained
5510 F:      drivers/firewire/
5511 F:      include/linux/firewire.h
5512 F:      include/uapi/linux/firewire*.h
5513 F:      tools/firewire/
5514
5515 FIRMWARE LOADER (request_firmware)
5516 M:      Luis R. Rodriguez <mcgrof@kernel.org>
5517 L:      linux-kernel@vger.kernel.org
5518 S:      Maintained
5519 F:      Documentation/firmware_class/
5520 F:      drivers/base/firmware*.c
5521 F:      include/linux/firmware.h
5522
5523 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
5524 M:      Joshua Morris <josh.h.morris@us.ibm.com>
5525 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
5526 S:      Maintained
5527 F:      drivers/block/rsxx/
5528
5529 FLOPPY DRIVER
5530 M:      Jiri Kosina <jikos@kernel.org>
5531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
5532 S:      Odd fixes
5533 F:      drivers/block/floppy.c
5534
5535 FMC SUBSYSTEM
5536 M:      Alessandro Rubini <rubini@gnudd.com>
5537 W:      http://www.ohwr.org/projects/fmc-bus
5538 S:      Supported
5539 F:      drivers/fmc/
5540 F:      include/linux/fmc*.h
5541 F:      include/linux/ipmi-fru.h
5542 K:      fmc_d.*register
5543
5544 FPGA MANAGER FRAMEWORK
5545 M:      Alan Tull <atull@kernel.org>
5546 M:      Moritz Fischer <mdf@kernel.org>
5547 L:      linux-fpga@vger.kernel.org
5548 S:      Maintained
5549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
5550 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
5551 F:      Documentation/fpga/
5552 F:      Documentation/devicetree/bindings/fpga/
5553 F:      drivers/fpga/
5554 F:      include/linux/fpga/
5555 W:      http://www.rocketboards.org
5556
5557 FPU EMULATOR
5558 M:      Bill Metzenthen <billm@melbpc.org.au>
5559 W:      http://floatingpoint.sourceforge.net/emulator/index.html
5560 S:      Maintained
5561 F:      arch/x86/math-emu/
5562
5563 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
5564 L:      netdev@vger.kernel.org
5565 S:      Orphan
5566 F:      drivers/net/wan/dlci.c
5567 F:      drivers/net/wan/sdla.c
5568
5569 FRAMEBUFFER LAYER
5570 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5571 L:      dri-devel@lists.freedesktop.org
5572 L:      linux-fbdev@vger.kernel.org
5573 T:      git git://github.com/bzolnier/linux.git
5574 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
5575 S:      Maintained
5576 F:      Documentation/fb/
5577 F:      drivers/video/
5578 F:      include/video/
5579 F:      include/linux/fb.h
5580 F:      include/uapi/video/
5581 F:      include/uapi/linux/fb.h
5582
5583 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
5584 M:      Horia Geantă <horia.geanta@nxp.com>
5585 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
5586 L:      linux-crypto@vger.kernel.org
5587 S:      Maintained
5588 F:      drivers/crypto/caam/
5589 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
5590
5591 FREESCALE DIU FRAMEBUFFER DRIVER
5592 M:      Timur Tabi <timur@tabi.org>
5593 L:      linux-fbdev@vger.kernel.org
5594 S:      Maintained
5595 F:      drivers/video/fbdev/fsl-diu-fb.*
5596
5597 FREESCALE DMA DRIVER
5598 M:      Li Yang <leoyang.li@nxp.com>
5599 M:      Zhang Wei <zw@zh-kernel.org>
5600 L:      linuxppc-dev@lists.ozlabs.org
5601 S:      Maintained
5602 F:      drivers/dma/fsldma.*
5603
5604 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5605 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
5606 L:      netdev@vger.kernel.org
5607 S:      Maintained
5608 F:      drivers/net/ethernet/freescale/gianfar*
5609 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
5610 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5611
5612 FREESCALE GPMI NAND DRIVER
5613 M:      Han Xu <han.xu@nxp.com>
5614 L:      linux-mtd@lists.infradead.org
5615 S:      Maintained
5616 F:      drivers/mtd/nand/gpmi-nand/*
5617
5618 FREESCALE I2C CPM DRIVER
5619 M:      Jochen Friedrich <jochen@scram.de>
5620 L:      linuxppc-dev@lists.ozlabs.org
5621 L:      linux-i2c@vger.kernel.org
5622 S:      Maintained
5623 F:      drivers/i2c/busses/i2c-cpm.c
5624
5625 FREESCALE IMX / MXC FEC DRIVER
5626 M:      Fugang Duan <fugang.duan@nxp.com>
5627 L:      netdev@vger.kernel.org
5628 S:      Maintained
5629 F:      drivers/net/ethernet/freescale/fec_main.c
5630 F:      drivers/net/ethernet/freescale/fec_ptp.c
5631 F:      drivers/net/ethernet/freescale/fec.h
5632 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
5633
5634 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
5635 M:      Sascha Hauer <kernel@pengutronix.de>
5636 L:      linux-fbdev@vger.kernel.org
5637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5638 S:      Maintained
5639 F:      include/linux/platform_data/video-imxfb.h
5640 F:      drivers/video/fbdev/imxfb.c
5641
5642 FREESCALE QORIQ DPAA ETHERNET DRIVER
5643 M:      Madalin Bucur <madalin.bucur@nxp.com>
5644 L:      netdev@vger.kernel.org
5645 S:      Maintained
5646 F:      drivers/net/ethernet/freescale/dpaa
5647
5648 FREESCALE QORIQ DPAA FMAN DRIVER
5649 M:      Madalin Bucur <madalin.bucur@nxp.com>
5650 L:      netdev@vger.kernel.org
5651 S:      Maintained
5652 F:      drivers/net/ethernet/freescale/fman
5653 F:      Documentation/devicetree/bindings/powerpc/fsl/fman.txt
5654
5655 FREESCALE QUAD SPI DRIVER
5656 M:      Han Xu <han.xu@nxp.com>
5657 L:      linux-mtd@lists.infradead.org
5658 S:      Maintained
5659 F:      drivers/mtd/spi-nor/fsl-quadspi.c
5660
5661 FREESCALE QUICC ENGINE LIBRARY
5662 M:      Qiang Zhao <qiang.zhao@nxp.com>
5663 L:      linuxppc-dev@lists.ozlabs.org
5664 S:      Maintained
5665 F:      drivers/soc/fsl/qe/
5666 F:      include/soc/fsl/*qe*.h
5667 F:      include/soc/fsl/*ucc*.h
5668
5669 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5670 M:      Li Yang <leoyang.li@nxp.com>
5671 L:      netdev@vger.kernel.org
5672 L:      linuxppc-dev@lists.ozlabs.org
5673 S:      Maintained
5674 F:      drivers/net/ethernet/freescale/ucc_geth*
5675
5676 FREESCALE QUICC ENGINE UCC HDLC DRIVER
5677 M:      Zhao Qiang <qiang.zhao@nxp.com>
5678 L:      netdev@vger.kernel.org
5679 L:      linuxppc-dev@lists.ozlabs.org
5680 S:      Maintained
5681 F:      drivers/net/wan/fsl_ucc_hdlc*
5682
5683 FREESCALE QUICC ENGINE UCC UART DRIVER
5684 M:      Timur Tabi <timur@tabi.org>
5685 L:      linuxppc-dev@lists.ozlabs.org
5686 S:      Maintained
5687 F:      drivers/tty/serial/ucc_uart.c
5688
5689 FREESCALE SOC DRIVERS
5690 M:      Li Yang <leoyang.li@nxp.com>
5691 L:      linuxppc-dev@lists.ozlabs.org
5692 L:      linux-arm-kernel@lists.infradead.org
5693 S:      Maintained
5694 F:      Documentation/devicetree/bindings/soc/fsl/
5695 F:      drivers/soc/fsl/
5696 F:      include/linux/fsl/
5697
5698 FREESCALE SOC FS_ENET DRIVER
5699 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
5700 M:      Vitaly Bordug <vbordug@ru.mvista.com>
5701 L:      linuxppc-dev@lists.ozlabs.org
5702 L:      netdev@vger.kernel.org
5703 S:      Maintained
5704 F:      drivers/net/ethernet/freescale/fs_enet/
5705 F:      include/linux/fs_enet_pd.h
5706
5707 FREESCALE SOC SOUND DRIVERS
5708 M:      Timur Tabi <timur@tabi.org>
5709 M:      Nicolin Chen <nicoleotsuka@gmail.com>
5710 M:      Xiubo Li <Xiubo.Lee@gmail.com>
5711 R:      Fabio Estevam <fabio.estevam@nxp.com>
5712 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5713 L:      linuxppc-dev@lists.ozlabs.org
5714 S:      Maintained
5715 F:      sound/soc/fsl/fsl*
5716 F:      sound/soc/fsl/imx*
5717 F:      sound/soc/fsl/mpc8610_hpcd.c
5718
5719 FREESCALE USB PERIPHERAL DRIVERS
5720 M:      Li Yang <leoyang.li@nxp.com>
5721 L:      linux-usb@vger.kernel.org
5722 L:      linuxppc-dev@lists.ozlabs.org
5723 S:      Maintained
5724 F:      drivers/usb/gadget/udc/fsl*
5725
5726 FREEVXFS FILESYSTEM
5727 M:      Christoph Hellwig <hch@infradead.org>
5728 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
5729 S:      Maintained
5730 F:      fs/freevxfs/
5731
5732 FREEZER
5733 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5734 M:      Pavel Machek <pavel@ucw.cz>
5735 L:      linux-pm@vger.kernel.org
5736 S:      Supported
5737 F:      Documentation/power/freezing-of-tasks.txt
5738 F:      include/linux/freezer.h
5739 F:      kernel/freezer.c
5740
5741 FRONTSWAP API
5742 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
5743 L:      linux-kernel@vger.kernel.org
5744 S:      Maintained
5745 F:      mm/frontswap.c
5746 F:      include/linux/frontswap.h
5747
5748 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5749 M:      David Howells <dhowells@redhat.com>
5750 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
5751 S:      Supported
5752 F:      Documentation/filesystems/caching/
5753 F:      fs/fscache/
5754 F:      include/linux/fscache*.h
5755
5756 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5757 M:      Theodore Y. Ts'o <tytso@mit.edu>
5758 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5759 L:      linux-fscrypt@vger.kernel.org
5760 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
5761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git
5762 S:      Supported
5763 F:      fs/crypto/
5764 F:      include/linux/fscrypt*.h
5765 F:      Documentation/filesystems/fscrypt.rst
5766
5767 FUJITSU FR-V (FRV) PORT
5768 S:      Orphan
5769 F:      arch/frv/
5770
5771 FUJITSU LAPTOP EXTRAS
5772 M:      Jonathan Woithe <jwoithe@just42.net>
5773 L:      platform-driver-x86@vger.kernel.org
5774 S:      Maintained
5775 F:      drivers/platform/x86/fujitsu-laptop.c
5776
5777 FUJITSU M-5MO LS CAMERA ISP DRIVER
5778 M:      Kyungmin Park <kyungmin.park@samsung.com>
5779 M:      Heungjun Kim <riverful.kim@samsung.com>
5780 L:      linux-media@vger.kernel.org
5781 S:      Maintained
5782 F:      drivers/media/i2c/m5mols/
5783 F:      include/media/i2c/m5mols.h
5784
5785 FUJITSU TABLET EXTRAS
5786 M:      Robert Gerlach <khnz@gmx.de>
5787 L:      platform-driver-x86@vger.kernel.org
5788 S:      Maintained
5789 F:      drivers/platform/x86/fujitsu-tablet.c
5790
5791 FUSE: FILESYSTEM IN USERSPACE
5792 M:      Miklos Szeredi <miklos@szeredi.hu>
5793 L:      linux-fsdevel@vger.kernel.org
5794 W:      http://fuse.sourceforge.net/
5795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5796 S:      Maintained
5797 F:      fs/fuse/
5798 F:      include/uapi/linux/fuse.h
5799 F:      Documentation/filesystems/fuse.txt
5800
5801 FUTEX SUBSYSTEM
5802 M:      Thomas Gleixner <tglx@linutronix.de>
5803 M:      Ingo Molnar <mingo@redhat.com>
5804 R:      Peter Zijlstra <peterz@infradead.org>
5805 R:      Darren Hart <dvhart@infradead.org>
5806 L:      linux-kernel@vger.kernel.org
5807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
5808 S:      Maintained
5809 F:      kernel/futex.c
5810 F:      kernel/futex_compat.c
5811 F:      include/asm-generic/futex.h
5812 F:      include/linux/futex.h
5813 F:      include/uapi/linux/futex.h
5814 F:      tools/testing/selftests/futex/
5815 F:      tools/perf/bench/futex*
5816 F:      Documentation/*futex*
5817
5818 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5819 M:      Rik Faith <faith@cs.unc.edu>
5820 L:      linux-scsi@vger.kernel.org
5821 S:      Odd Fixes (e.g., new signatures)
5822 F:      drivers/scsi/fdomain.*
5823
5824 GCC PLUGINS
5825 M:      Kees Cook <keescook@chromium.org>
5826 R:      Emese Revfy <re.emese@gmail.com>
5827 L:      kernel-hardening@lists.openwall.com
5828 S:      Maintained
5829 F:      scripts/gcc-plugins/
5830 F:      scripts/gcc-plugin.sh
5831 F:      scripts/Makefile.gcc-plugins
5832 F:      Documentation/gcc-plugins.txt
5833
5834 GCOV BASED KERNEL PROFILING
5835 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
5836 S:      Maintained
5837 F:      kernel/gcov/
5838 F:      Documentation/dev-tools/gcov.rst
5839
5840 GDB KERNEL DEBUGGING HELPER SCRIPTS
5841 M:      Jan Kiszka <jan.kiszka@siemens.com>
5842 M:      Kieran Bingham <kieran@bingham.xyz>
5843 S:      Supported
5844 F:      scripts/gdb/
5845
5846 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5847 M:      Achim Leubner <achim_leubner@adaptec.com>
5848 L:      linux-scsi@vger.kernel.org
5849 W:      http://www.icp-vortex.com/
5850 S:      Supported
5851 F:      drivers/scsi/gdt*
5852
5853 GEMTEK FM RADIO RECEIVER DRIVER
5854 M:      Hans Verkuil <hverkuil@xs4all.nl>
5855 L:      linux-media@vger.kernel.org
5856 T:      git git://linuxtv.org/media_tree.git
5857 W:      https://linuxtv.org
5858 S:      Maintained
5859 F:      drivers/media/radio/radio-gemtek*
5860
5861 GENERIC GPIO I2C DRIVER
5862 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
5863 S:      Supported
5864 F:      drivers/i2c/busses/i2c-gpio.c
5865 F:      include/linux/i2c-gpio.h
5866
5867 GENERIC GPIO I2C MULTIPLEXER DRIVER
5868 M:      Peter Korsgaard <peter.korsgaard@barco.com>
5869 L:      linux-i2c@vger.kernel.org
5870 S:      Supported
5871 F:      drivers/i2c/muxes/i2c-mux-gpio.c
5872 F:      include/linux/i2c-mux-gpio.h
5873 F:      Documentation/i2c/muxes/i2c-mux-gpio
5874
5875 GENERIC HDLC (WAN) DRIVERS
5876 M:      Krzysztof Halasa <khc@pm.waw.pl>
5877 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
5878 S:      Maintained
5879 F:      drivers/net/wan/c101.c
5880 F:      drivers/net/wan/hd6457*
5881 F:      drivers/net/wan/hdlc*
5882 F:      drivers/net/wan/n2.c
5883 F:      drivers/net/wan/pc300too.c
5884 F:      drivers/net/wan/pci200syn.c
5885 F:      drivers/net/wan/wanxl*
5886
5887 GENERIC INCLUDE/ASM HEADER FILES
5888 M:      Arnd Bergmann <arnd@arndb.de>
5889 L:      linux-arch@vger.kernel.org
5890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5891 S:      Maintained
5892 F:      include/asm-generic/
5893 F:      include/uapi/asm-generic/
5894
5895 GENERIC PHY FRAMEWORK
5896 M:      Kishon Vijay Abraham I <kishon@ti.com>
5897 L:      linux-kernel@vger.kernel.org
5898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5899 S:      Supported
5900 F:      drivers/phy/
5901 F:      include/linux/phy/
5902
5903 GENERIC PM DOMAINS
5904 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5905 M:      Kevin Hilman <khilman@kernel.org>
5906 M:      Ulf Hansson <ulf.hansson@linaro.org>
5907 L:      linux-pm@vger.kernel.org
5908 S:      Supported
5909 F:      drivers/base/power/domain*.c
5910 F:      include/linux/pm_domain.h
5911 F:      Documentation/devicetree/bindings/power/power_domain.txt
5912
5913 GENERIC UIO DRIVER FOR PCI DEVICES
5914 M:      "Michael S. Tsirkin" <mst@redhat.com>
5915 L:      kvm@vger.kernel.org
5916 S:      Supported
5917 F:      drivers/uio/uio_pci_generic.c
5918
5919 GENWQE (IBM Generic Workqueue Card)
5920 M:      Frank Haverkamp <haver@linux.vnet.ibm.com>
5921 M:      Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
5922 S:      Supported
5923 F:      drivers/misc/genwqe/
5924
5925 GET_MAINTAINER SCRIPT
5926 M:      Joe Perches <joe@perches.com>
5927 S:      Maintained
5928 F:      scripts/get_maintainer.pl
5929
5930 GFS2 FILE SYSTEM
5931 M:      Steven Whitehouse <swhiteho@redhat.com>
5932 M:      Bob Peterson <rpeterso@redhat.com>
5933 L:      cluster-devel@redhat.com
5934 W:      http://sources.redhat.com/cluster/
5935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5936 S:      Supported
5937 F:      Documentation/filesystems/gfs2*.txt
5938 F:      fs/gfs2/
5939 F:      include/uapi/linux/gfs2_ondisk.h
5940
5941 GIGASET ISDN DRIVERS
5942 M:      Paul Bolle <pebolle@tiscali.nl>
5943 L:      gigaset307x-common@lists.sourceforge.net
5944 W:      http://gigaset307x.sourceforge.net/
5945 S:      Odd Fixes
5946 F:      Documentation/isdn/README.gigaset
5947 F:      drivers/isdn/gigaset/
5948 F:      include/uapi/linux/gigaset_dev.h
5949
5950 GO7007 MPEG CODEC
5951 M:      Hans Verkuil <hans.verkuil@cisco.com>
5952 L:      linux-media@vger.kernel.org
5953 S:      Maintained
5954 F:      drivers/media/usb/go7007/
5955
5956 GOODIX TOUCHSCREEN
5957 M:      Bastien Nocera <hadess@hadess.net>
5958 L:      linux-input@vger.kernel.org
5959 S:      Maintained
5960 F:      drivers/input/touchscreen/goodix.c
5961
5962 GPIO ACPI SUPPORT
5963 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5964 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
5965 L:      linux-gpio@vger.kernel.org
5966 L:      linux-acpi@vger.kernel.org
5967 S:      Maintained
5968 F:      Documentation/acpi/gpio-properties.txt
5969 F:      drivers/gpio/gpiolib-acpi.c
5970
5971 GPIO IR Transmitter
5972 M:      Sean Young <sean@mess.org>
5973 L:      linux-media@vger.kernel.org
5974 S:      Maintained
5975 F:      drivers/media/rc/gpio-ir-tx.c
5976
5977 GPIO MOCKUP DRIVER
5978 M:      Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
5979 L:      linux-gpio@vger.kernel.org
5980 S:      Maintained
5981 F:      drivers/gpio/gpio-mockup.c
5982 F:      tools/testing/selftests/gpio/
5983
5984 GPIO SUBSYSTEM
5985 M:      Linus Walleij <linus.walleij@linaro.org>
5986 L:      linux-gpio@vger.kernel.org
5987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
5988 S:      Maintained
5989 F:      Documentation/devicetree/bindings/gpio/
5990 F:      Documentation/gpio/
5991 F:      Documentation/ABI/testing/gpio-cdev
5992 F:      Documentation/ABI/obsolete/sysfs-gpio
5993 F:      drivers/gpio/
5994 F:      include/linux/gpio/
5995 F:      include/linux/gpio.h
5996 F:      include/asm-generic/gpio.h
5997 F:      include/uapi/linux/gpio.h
5998 F:      tools/gpio/
5999
6000 GRE DEMULTIPLEXER DRIVER
6001 M:      Dmitry Kozlov <xeb@mail.ru>
6002 L:      netdev@vger.kernel.org
6003 S:      Maintained
6004 F:      net/ipv4/gre_demux.c
6005 F:      net/ipv4/gre_offload.c
6006 F:      include/net/gre.h
6007
6008 GRETH 10/100/1G Ethernet MAC device driver
6009 M:      Andreas Larsson <andreas@gaisler.com>
6010 L:      netdev@vger.kernel.org
6011 S:      Maintained
6012 F:      drivers/net/ethernet/aeroflex/
6013
6014 GREYBUS AUDIO PROTOCOLS DRIVERS
6015 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
6016 M:      Mark Greer <mgreer@animalcreek.com>
6017 S:      Maintained
6018 F:      drivers/staging/greybus/audio_apbridgea.c
6019 F:      drivers/staging/greybus/audio_apbridgea.h
6020 F:      drivers/staging/greybus/audio_codec.c
6021 F:      drivers/staging/greybus/audio_codec.h
6022 F:      drivers/staging/greybus/audio_gb.c
6023 F:      drivers/staging/greybus/audio_manager.c
6024 F:      drivers/staging/greybus/audio_manager.h
6025 F:      drivers/staging/greybus/audio_manager_module.c
6026 F:      drivers/staging/greybus/audio_manager_private.h
6027 F:      drivers/staging/greybus/audio_manager_sysfs.c
6028 F:      drivers/staging/greybus/audio_module.c
6029 F:      drivers/staging/greybus/audio_topology.c
6030
6031 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
6032 M:      Viresh Kumar <vireshk@kernel.org>
6033 S:      Maintained
6034 F:      drivers/staging/greybus/authentication.c
6035 F:      drivers/staging/greybus/bootrom.c
6036 F:      drivers/staging/greybus/firmware.h
6037 F:      drivers/staging/greybus/fw-core.c
6038 F:      drivers/staging/greybus/fw-download.c
6039 F:      drivers/staging/greybus/fw-managament.c
6040 F:      drivers/staging/greybus/greybus_authentication.h
6041 F:      drivers/staging/greybus/greybus_firmware.h
6042 F:      drivers/staging/greybus/hid.c
6043 F:      drivers/staging/greybus/i2c.c
6044 F:      drivers/staging/greybus/spi.c
6045 F:      drivers/staging/greybus/spilib.c
6046 F:      drivers/staging/greybus/spilib.h
6047
6048 GREYBUS LOOPBACK/TIME PROTOCOLS DRIVERS
6049 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
6050 S:      Maintained
6051 F:      drivers/staging/greybus/loopback.c
6052 F:      drivers/staging/greybus/timesync.c
6053 F:      drivers/staging/greybus/timesync_platform.c
6054
6055 GREYBUS PLATFORM DRIVERS
6056 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
6057 S:      Maintained
6058 F:      drivers/staging/greybus/arche-platform.c
6059 F:      drivers/staging/greybus/arche-apb-ctrl.c
6060 F:      drivers/staging/greybus/arche_platform.h
6061
6062 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
6063 M:      Rui Miguel Silva <rmfrfs@gmail.com>
6064 S:      Maintained
6065 F:      drivers/staging/greybus/sdio.c
6066 F:      drivers/staging/greybus/light.c
6067 F:      drivers/staging/greybus/gpio.c
6068 F:      drivers/staging/greybus/power_supply.c
6069 F:      drivers/staging/greybus/spi.c
6070 F:      drivers/staging/greybus/spilib.c
6071
6072 GREYBUS SUBSYSTEM
6073 M:      Johan Hovold <johan@kernel.org>
6074 M:      Alex Elder <elder@kernel.org>
6075 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6076 S:      Maintained
6077 F:      drivers/staging/greybus/
6078 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
6079
6080 GREYBUS UART PROTOCOLS DRIVERS
6081 M:      David Lin <dtwlin@gmail.com>
6082 S:      Maintained
6083 F:      drivers/staging/greybus/uart.c
6084 F:      drivers/staging/greybus/log.c
6085
6086 GS1662 VIDEO SERIALIZER
6087 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
6088 L:      linux-media@vger.kernel.org
6089 T:      git git://linuxtv.org/media_tree.git
6090 S:      Maintained
6091 F:      drivers/media/spi/gs1662.c
6092
6093 GSPCA FINEPIX SUBDRIVER
6094 M:      Frank Zago <frank@zago.net>
6095 L:      linux-media@vger.kernel.org
6096 T:      git git://linuxtv.org/media_tree.git
6097 S:      Maintained
6098 F:      drivers/media/usb/gspca/finepix.c
6099
6100 GSPCA GL860 SUBDRIVER
6101 M:      Olivier Lorin <o.lorin@laposte.net>
6102 L:      linux-media@vger.kernel.org
6103 T:      git git://linuxtv.org/media_tree.git
6104 S:      Maintained
6105 F:      drivers/media/usb/gspca/gl860/
6106
6107 GSPCA M5602 SUBDRIVER
6108 M:      Erik Andren <erik.andren@gmail.com>
6109 L:      linux-media@vger.kernel.org
6110 T:      git git://linuxtv.org/media_tree.git
6111 S:      Maintained
6112 F:      drivers/media/usb/gspca/m5602/
6113
6114 GSPCA PAC207 SONIXB SUBDRIVER
6115 M:      Hans Verkuil <hverkuil@xs4all.nl>
6116 L:      linux-media@vger.kernel.org
6117 T:      git git://linuxtv.org/media_tree.git
6118 S:      Odd Fixes
6119 F:      drivers/media/usb/gspca/pac207.c
6120
6121 GSPCA SN9C20X SUBDRIVER
6122 M:      Brian Johnson <brijohn@gmail.com>
6123 L:      linux-media@vger.kernel.org
6124 T:      git git://linuxtv.org/media_tree.git
6125 S:      Maintained
6126 F:      drivers/media/usb/gspca/sn9c20x.c
6127
6128 GSPCA T613 SUBDRIVER
6129 M:      Leandro Costantino <lcostantino@gmail.com>
6130 L:      linux-media@vger.kernel.org
6131 T:      git git://linuxtv.org/media_tree.git
6132 S:      Maintained
6133 F:      drivers/media/usb/gspca/t613.c
6134
6135 GSPCA USB WEBCAM DRIVER
6136 M:      Hans Verkuil <hverkuil@xs4all.nl>
6137 L:      linux-media@vger.kernel.org
6138 T:      git git://linuxtv.org/media_tree.git
6139 S:      Odd Fixes
6140 F:      drivers/media/usb/gspca/
6141
6142 GTP (GPRS Tunneling Protocol)
6143 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6144 M:      Harald Welte <laforge@gnumonks.org>
6145 L:      osmocom-net-gprs@lists.osmocom.org
6146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
6147 S:      Maintained
6148 F:      drivers/net/gtp.c
6149
6150 GUID PARTITION TABLE (GPT)
6151 M:      Davidlohr Bueso <dave@stgolabs.net>
6152 L:      linux-efi@vger.kernel.org
6153 S:      Maintained
6154 F:      block/partitions/efi.*
6155
6156 H8/300 ARCHITECTURE
6157 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
6158 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
6159 W:      http://uclinux-h8.sourceforge.jp
6160 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
6161 S:      Maintained
6162 F:      arch/h8300/
6163 F:      drivers/clocksource/h8300_*.c
6164 F:      drivers/clk/h8300/
6165 F:      drivers/irqchip/irq-renesas-h8*.c
6166
6167 HACKRF MEDIA DRIVER
6168 M:      Antti Palosaari <crope@iki.fi>
6169 L:      linux-media@vger.kernel.org
6170 W:      https://linuxtv.org
6171 W:      http://palosaari.fi/linux/
6172 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6173 T:      git git://linuxtv.org/anttip/media_tree.git
6174 S:      Maintained
6175 F:      drivers/media/usb/hackrf/
6176
6177 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
6178 M:      Frank Seidel <frank@f-seidel.de>
6179 L:      platform-driver-x86@vger.kernel.org
6180 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
6181 S:      Maintained
6182 F:      drivers/platform/x86/hdaps.c
6183
6184 HARDWARE MONITORING
6185 M:      Jean Delvare <jdelvare@suse.com>
6186 M:      Guenter Roeck <linux@roeck-us.net>
6187 L:      linux-hwmon@vger.kernel.org
6188 W:      http://hwmon.wiki.kernel.org/
6189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6190 S:      Maintained
6191 F:      Documentation/hwmon/
6192 F:      drivers/hwmon/
6193 F:      include/linux/hwmon*.h
6194
6195 HARDWARE RANDOM NUMBER GENERATOR CORE
6196 M:      Matt Mackall <mpm@selenic.com>
6197 M:      Herbert Xu <herbert@gondor.apana.org.au>
6198 L:      linux-crypto@vger.kernel.org
6199 S:      Odd fixes
6200 F:      Documentation/devicetree/bindings/rng/
6201 F:      Documentation/hw_random.txt
6202 F:      drivers/char/hw_random/
6203 F:      include/linux/hw_random.h
6204
6205 HARDWARE SPINLOCK CORE
6206 M:      Ohad Ben-Cohen <ohad@wizery.com>
6207 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
6208 L:      linux-remoteproc@vger.kernel.org
6209 S:      Maintained
6210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
6211 F:      Documentation/devicetree/bindings/hwlock/
6212 F:      Documentation/hwspinlock.txt
6213 F:      drivers/hwspinlock/
6214 F:      include/linux/hwspinlock.h
6215
6216 HARMONY SOUND DRIVER
6217 L:      linux-parisc@vger.kernel.org
6218 S:      Maintained
6219 F:      sound/parisc/harmony.*
6220
6221 HDPVR USB VIDEO ENCODER DRIVER
6222 M:      Hans Verkuil <hverkuil@xs4all.nl>
6223 L:      linux-media@vger.kernel.org
6224 T:      git git://linuxtv.org/media_tree.git
6225 W:      https://linuxtv.org
6226 S:      Odd Fixes
6227 F:      drivers/media/usb/hdpvr/
6228
6229 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
6230 M:      Jimmy Vance <jimmy.vance@hpe.com>
6231 S:      Supported
6232 F:      Documentation/watchdog/hpwdt.txt
6233 F:      drivers/watchdog/hpwdt.c
6234
6235 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
6236 M:      Don Brace <don.brace@microsemi.com>
6237 L:      esc.storagedev@microsemi.com
6238 L:      linux-scsi@vger.kernel.org
6239 S:      Supported
6240 F:      Documentation/scsi/hpsa.txt
6241 F:      drivers/scsi/hpsa*.[ch]
6242 F:      include/linux/cciss*.h
6243 F:      include/uapi/linux/cciss*.h
6244
6245 HFI1 DRIVER
6246 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
6247 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
6248 L:      linux-rdma@vger.kernel.org
6249 S:      Supported
6250 F:      drivers/infiniband/hw/hfi1
6251
6252 HFS FILESYSTEM
6253 L:      linux-fsdevel@vger.kernel.org
6254 S:      Orphan
6255 F:      Documentation/filesystems/hfs.txt
6256 F:      fs/hfs/
6257
6258 HFSPLUS FILESYSTEM
6259 L:      linux-fsdevel@vger.kernel.org
6260 S:      Orphan
6261 F:      Documentation/filesystems/hfsplus.txt
6262 F:      fs/hfsplus/
6263
6264 HGA FRAMEBUFFER DRIVER
6265 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
6266 L:      linux-nvidia@lists.surfsouth.com
6267 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
6268 S:      Maintained
6269 F:      drivers/video/fbdev/hgafb.c
6270
6271 HIBERNATION (aka Software Suspend, aka swsusp)
6272 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6273 M:      Pavel Machek <pavel@ucw.cz>
6274 L:      linux-pm@vger.kernel.org
6275 B:      https://bugzilla.kernel.org
6276 S:      Supported
6277 F:      arch/x86/power/
6278 F:      drivers/base/power/
6279 F:      kernel/power/
6280 F:      include/linux/suspend.h
6281 F:      include/linux/freezer.h
6282 F:      include/linux/pm.h
6283 F:      arch/*/include/asm/suspend*.h
6284
6285 HID CORE LAYER
6286 M:      Jiri Kosina <jikos@kernel.org>
6287 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
6288 L:      linux-input@vger.kernel.org
6289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
6290 S:      Maintained
6291 F:      drivers/hid/
6292 F:      include/linux/hid*
6293 F:      include/uapi/linux/hid*
6294
6295 HID SENSOR HUB DRIVERS
6296 M:      Jiri Kosina <jikos@kernel.org>
6297 M:      Jonathan Cameron <jic23@kernel.org>
6298 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6299 L:      linux-input@vger.kernel.org
6300 L:      linux-iio@vger.kernel.org
6301 S:      Maintained
6302 F:      Documentation/hid/hid-sensor*
6303 F:      drivers/hid/hid-sensor-*
6304 F:      drivers/iio/*/hid-*
6305 F:      include/linux/hid-sensor-*
6306
6307 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
6308 M:      Thomas Gleixner <tglx@linutronix.de>
6309 L:      linux-kernel@vger.kernel.org
6310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6311 S:      Maintained
6312 F:      Documentation/timers/
6313 F:      kernel/time/hrtimer.c
6314 F:      kernel/time/clockevents.c
6315 F:      kernel/time/timer_*.c
6316 F:      include/linux/clockchips.h
6317 F:      include/linux/hrtimer.h
6318
6319 HIGH-SPEED SCC DRIVER FOR AX.25
6320 L:      linux-hams@vger.kernel.org
6321 S:      Orphan
6322 F:      drivers/net/hamradio/dmascc.c
6323 F:      drivers/net/hamradio/scc.c
6324
6325 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
6326 M:      HighPoint Linux Team <linux@highpoint-tech.com>
6327 W:      http://www.highpoint-tech.com
6328 S:      Supported
6329 F:      Documentation/scsi/hptiop.txt
6330 F:      drivers/scsi/hptiop.c
6331
6332 HIPPI
6333 M:      Jes Sorensen <jes@trained-monkey.org>
6334 L:      linux-hippi@sunsite.dk
6335 S:      Maintained
6336 F:      include/linux/hippidevice.h
6337 F:      include/uapi/linux/if_hippi.h
6338 F:      net/802/hippi.c
6339 F:      drivers/net/hippi/
6340
6341 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
6342 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
6343 M:      Salil Mehta <salil.mehta@huawei.com>
6344 L:      netdev@vger.kernel.org
6345 W:      http://www.hisilicon.com
6346 S:      Maintained
6347 F:      drivers/net/ethernet/hisilicon/hns3/
6348
6349 HISILICON NETWORK SUBSYSTEM DRIVER
6350 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
6351 M:      Salil Mehta <salil.mehta@huawei.com>
6352 L:      netdev@vger.kernel.org
6353 W:      http://www.hisilicon.com
6354 S:      Maintained
6355 F:      drivers/net/ethernet/hisilicon/
6356 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
6357
6358 HISILICON PMU DRIVER
6359 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
6360 W:      http://www.hisilicon.com
6361 S:      Supported
6362 F:      drivers/perf/hisilicon
6363 F:      Documentation/perf/hisi-pmu.txt
6364
6365 HISILICON ROCE DRIVER
6366 M:      Lijun Ou <oulijun@huawei.com>
6367 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
6368 L:      linux-rdma@vger.kernel.org
6369 S:      Maintained
6370 F:      drivers/infiniband/hw/hns/
6371 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
6372
6373 HISILICON SAS Controller
6374 M:      John Garry <john.garry@huawei.com>
6375 W:      http://www.hisilicon.com
6376 S:      Supported
6377 F:      drivers/scsi/hisi_sas/
6378 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
6379
6380 HMM - Heterogeneous Memory Management
6381 M:      Jérôme Glisse <jglisse@redhat.com>
6382 L:      linux-mm@kvack.org
6383 S:      Maintained
6384 F:      mm/hmm*
6385 F:      include/linux/hmm*
6386
6387 HOST AP DRIVER
6388 M:      Jouni Malinen <j@w1.fi>
6389 L:      linux-wireless@vger.kernel.org
6390 W:      http://w1.fi/hostap-driver.html
6391 S:      Obsolete
6392 F:      drivers/net/wireless/intersil/hostap/
6393
6394 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
6395 L:      platform-driver-x86@vger.kernel.org
6396 S:      Orphan
6397 F:      drivers/platform/x86/tc1100-wmi.c
6398
6399 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
6400 M:      Jaroslav Kysela <perex@perex.cz>
6401 S:      Maintained
6402 F:      drivers/net/ethernet/hp/hp100.*
6403
6404 HPET:   High Precision Event Timers driver
6405 M:      Clemens Ladisch <clemens@ladisch.de>
6406 S:      Maintained
6407 F:      Documentation/timers/hpet.txt
6408 F:      drivers/char/hpet.c
6409 F:      include/linux/hpet.h
6410 F:      include/uapi/linux/hpet.h
6411
6412 HPET:   x86
6413 S:      Orphan
6414 F:      arch/x86/kernel/hpet.c
6415 F:      arch/x86/include/asm/hpet.h
6416
6417 HPFS FILESYSTEM
6418 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
6419 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
6420 S:      Maintained
6421 F:      fs/hpfs/
6422
6423 HSI SUBSYSTEM
6424 M:      Sebastian Reichel <sre@kernel.org>
6425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
6426 S:      Maintained
6427 F:      Documentation/ABI/testing/sysfs-bus-hsi
6428 F:      Documentation/driver-api/hsi.rst
6429 F:      drivers/hsi/
6430 F:      include/linux/hsi/
6431 F:      include/uapi/linux/hsi/
6432
6433 HSO 3G MODEM DRIVER
6434 L:      linux-usb@vger.kernel.org
6435 S:      Orphan
6436 F:      drivers/net/usb/hso.c
6437
6438 HSR NETWORK PROTOCOL
6439 M:      Arvid Brodin <arvid.brodin@alten.se>
6440 L:      netdev@vger.kernel.org
6441 S:      Maintained
6442 F:      net/hsr/
6443
6444 HT16K33 LED CONTROLLER DRIVER
6445 M:      Robin van der Gracht <robin@protonic.nl>
6446 S:      Maintained
6447 F:      drivers/auxdisplay/ht16k33.c
6448 F:      Documentation/devicetree/bindings/display/ht16k33.txt
6449
6450 HTCPEN TOUCHSCREEN DRIVER
6451 M:      Pau Oliva Fora <pof@eslack.org>
6452 L:      linux-input@vger.kernel.org
6453 S:      Maintained
6454 F:      drivers/input/touchscreen/htcpen.c
6455
6456 HUAWEI ETHERNET DRIVER
6457 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
6458 L:      netdev@vger.kernel.org
6459 S:      Supported
6460 F:      Documentation/networking/hinic.txt
6461 F:      drivers/net/ethernet/huawei/hinic/
6462
6463 HUGETLB FILESYSTEM
6464 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
6465 S:      Maintained
6466 F:      fs/hugetlbfs/
6467
6468 HVA ST MEDIA DRIVER
6469 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
6470 L:      linux-media@vger.kernel.org
6471 T:      git git://linuxtv.org/media_tree.git
6472 W:      https://linuxtv.org
6473 S:      Supported
6474 F:      drivers/media/platform/sti/hva
6475
6476 HWPOISON MEMORY FAILURE HANDLING
6477 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
6478 L:      linux-mm@kvack.org
6479 S:      Maintained
6480 F:      mm/memory-failure.c
6481 F:      mm/hwpoison-inject.c
6482
6483 Hyper-V CORE AND DRIVERS
6484 M:      "K. Y. Srinivasan" <kys@microsoft.com>
6485 M:      Haiyang Zhang <haiyangz@microsoft.com>
6486 M:      Stephen Hemminger <sthemmin@microsoft.com>
6487 L:      devel@linuxdriverproject.org
6488 S:      Maintained
6489 F:      Documentation/networking/netvsc.txt
6490 F:      arch/x86/include/asm/mshyperv.h
6491 F:      arch/x86/include/asm/trace/hyperv.h
6492 F:      arch/x86/include/uapi/asm/hyperv.h
6493 F:      arch/x86/kernel/cpu/mshyperv.c
6494 F:      arch/x86/hyperv
6495 F:      drivers/hid/hid-hyperv.c
6496 F:      drivers/hv/
6497 F:      drivers/input/serio/hyperv-keyboard.c
6498 F:      drivers/pci/host/pci-hyperv.c
6499 F:      drivers/net/hyperv/
6500 F:      drivers/scsi/storvsc_drv.c
6501 F:      drivers/uio/uio_hv_generic.c
6502 F:      drivers/video/fbdev/hyperv_fb.c
6503 F:      net/vmw_vsock/hyperv_transport.c
6504 F:      include/linux/hyperv.h
6505 F:      include/uapi/linux/hyperv.h
6506 F:      tools/hv/
6507 F:      Documentation/ABI/stable/sysfs-bus-vmbus
6508
6509 HYPERVISOR VIRTUAL CONSOLE DRIVER
6510 L:      linuxppc-dev@lists.ozlabs.org
6511 S:      Odd Fixes
6512 F:      drivers/tty/hvc/
6513
6514 I2C ACPI SUPPORT
6515 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6516 L:      linux-i2c@vger.kernel.org
6517 L:      linux-acpi@vger.kernel.org
6518 S:      Maintained
6519 F:      drivers/i2c/i2c-core-acpi.c
6520
6521 I2C MUXES
6522 M:      Peter Rosin <peda@axentia.se>
6523 L:      linux-i2c@vger.kernel.org
6524 S:      Maintained
6525 F:      Documentation/i2c/i2c-topology
6526 F:      Documentation/i2c/muxes/
6527 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
6528 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
6529 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
6530 F:      drivers/i2c/i2c-mux.c
6531 F:      drivers/i2c/muxes/
6532 F:      include/linux/i2c-mux.h
6533
6534 I2C OVER PARALLEL PORT
6535 M:      Jean Delvare <jdelvare@suse.com>
6536 L:      linux-i2c@vger.kernel.org
6537 S:      Maintained
6538 F:      Documentation/i2c/busses/i2c-parport
6539 F:      Documentation/i2c/busses/i2c-parport-light
6540 F:      drivers/i2c/busses/i2c-parport.c
6541 F:      drivers/i2c/busses/i2c-parport-light.c
6542
6543 I2C SUBSYSTEM
6544 M:      Wolfram Sang <wsa@the-dreams.de>
6545 L:      linux-i2c@vger.kernel.org
6546 W:      https://i2c.wiki.kernel.org/
6547 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
6548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6549 S:      Maintained
6550 F:      Documentation/devicetree/bindings/i2c/
6551 F:      Documentation/i2c/
6552 F:      drivers/i2c/
6553 F:      drivers/i2c/*/
6554 F:      include/linux/i2c.h
6555 F:      include/linux/i2c-*.h
6556 F:      include/uapi/linux/i2c.h
6557 F:      include/uapi/linux/i2c-*.h
6558
6559 I2C-TAOS-EVM DRIVER
6560 M:      Jean Delvare <jdelvare@suse.com>
6561 L:      linux-i2c@vger.kernel.org
6562 S:      Maintained
6563 F:      Documentation/i2c/busses/i2c-taos-evm
6564 F:      drivers/i2c/busses/i2c-taos-evm.c
6565
6566 I2C-TINY-USB DRIVER
6567 M:      Till Harbaum <till@harbaum.org>
6568 L:      linux-i2c@vger.kernel.org
6569 W:      http://www.harbaum.org/till/i2c_tiny_usb
6570 S:      Maintained
6571 F:      drivers/i2c/busses/i2c-tiny-usb.c
6572
6573 I2C/SMBUS CONTROLLER DRIVERS FOR PC
6574 M:      Jean Delvare <jdelvare@suse.com>
6575 L:      linux-i2c@vger.kernel.org
6576 S:      Maintained
6577 F:      Documentation/i2c/busses/i2c-ali1535
6578 F:      Documentation/i2c/busses/i2c-ali1563
6579 F:      Documentation/i2c/busses/i2c-ali15x3
6580 F:      Documentation/i2c/busses/i2c-amd756
6581 F:      Documentation/i2c/busses/i2c-amd8111
6582 F:      Documentation/i2c/busses/i2c-i801
6583 F:      Documentation/i2c/busses/i2c-nforce2
6584 F:      Documentation/i2c/busses/i2c-piix4
6585 F:      Documentation/i2c/busses/i2c-sis5595
6586 F:      Documentation/i2c/busses/i2c-sis630
6587 F:      Documentation/i2c/busses/i2c-sis96x
6588 F:      Documentation/i2c/busses/i2c-via
6589 F:      Documentation/i2c/busses/i2c-viapro
6590 F:      drivers/i2c/busses/i2c-ali1535.c
6591 F:      drivers/i2c/busses/i2c-ali1563.c
6592 F:      drivers/i2c/busses/i2c-ali15x3.c
6593 F:      drivers/i2c/busses/i2c-amd756.c
6594 F:      drivers/i2c/busses/i2c-amd756-s4882.c
6595 F:      drivers/i2c/busses/i2c-amd8111.c
6596 F:      drivers/i2c/busses/i2c-i801.c
6597 F:      drivers/i2c/busses/i2c-isch.c
6598 F:      drivers/i2c/busses/i2c-nforce2.c
6599 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
6600 F:      drivers/i2c/busses/i2c-piix4.c
6601 F:      drivers/i2c/busses/i2c-sis5595.c
6602 F:      drivers/i2c/busses/i2c-sis630.c
6603 F:      drivers/i2c/busses/i2c-sis96x.c
6604 F:      drivers/i2c/busses/i2c-via.c
6605 F:      drivers/i2c/busses/i2c-viapro.c
6606
6607 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
6608 M:      Hans de Goede <hdegoede@redhat.com>
6609 L:      linux-i2c@vger.kernel.org
6610 S:      Maintained
6611 F:      drivers/i2c/busses/i2c-cht-wc.c
6612
6613 I2C/SMBUS ISMT DRIVER
6614 M:      Seth Heasley <seth.heasley@intel.com>
6615 M:      Neil Horman <nhorman@tuxdriver.com>
6616 L:      linux-i2c@vger.kernel.org
6617 F:      drivers/i2c/busses/i2c-ismt.c
6618 F:      Documentation/i2c/busses/i2c-ismt
6619
6620 I2C/SMBUS STUB DRIVER
6621 M:      Jean Delvare <jdelvare@suse.com>
6622 L:      linux-i2c@vger.kernel.org
6623 S:      Maintained
6624 F:      drivers/i2c/i2c-stub.c
6625
6626 IA64 (Itanium) PLATFORM
6627 M:      Tony Luck <tony.luck@intel.com>
6628 M:      Fenghua Yu <fenghua.yu@intel.com>
6629 L:      linux-ia64@vger.kernel.org
6630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
6631 S:      Maintained
6632 F:      arch/ia64/
6633
6634 IBM Power 842 compression accelerator
6635 M:      Haren Myneni <haren@us.ibm.com>
6636 S:      Supported
6637 F:      drivers/crypto/nx/Makefile
6638 F:      drivers/crypto/nx/Kconfig
6639 F:      drivers/crypto/nx/nx-842*
6640 F:      include/linux/sw842.h
6641 F:      crypto/842.c
6642 F:      lib/842/
6643
6644 IBM Power in-Nest Crypto Acceleration
6645 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6646 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6647 L:      linux-crypto@vger.kernel.org
6648 S:      Supported
6649 F:      drivers/crypto/nx/Makefile
6650 F:      drivers/crypto/nx/Kconfig
6651 F:      drivers/crypto/nx/nx-aes*
6652 F:      drivers/crypto/nx/nx-sha*
6653 F:      drivers/crypto/nx/nx.*
6654 F:      drivers/crypto/nx/nx_csbcpb.h
6655 F:      drivers/crypto/nx/nx_debugfs.h
6656
6657 IBM Power Linux RAID adapter
6658 M:      Brian King <brking@us.ibm.com>
6659 S:      Supported
6660 F:      drivers/scsi/ipr.*
6661
6662 IBM Power SRIOV Virtual NIC Device Driver
6663 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6664 M:      John Allen <jallen@linux.vnet.ibm.com>
6665 L:      netdev@vger.kernel.org
6666 S:      Supported
6667 F:      drivers/net/ethernet/ibm/ibmvnic.*
6668
6669 IBM Power Virtual Accelerator Switchboard
6670 M:      Sukadev Bhattiprolu
6671 L:      linuxppc-dev@lists.ozlabs.org
6672 S:      Supported
6673 F:      arch/powerpc/platforms/powernv/vas*
6674 F:      arch/powerpc/platforms/powernv/copy-paste.h
6675 F:      arch/powerpc/include/asm/vas.h
6676 F:      arch/powerpc/include/uapi/asm/vas.h
6677
6678 IBM Power Virtual Ethernet Device Driver
6679 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6680 L:      netdev@vger.kernel.org
6681 S:      Supported
6682 F:      drivers/net/ethernet/ibm/ibmveth.*
6683
6684 IBM Power Virtual FC Device Drivers
6685 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6686 L:      linux-scsi@vger.kernel.org
6687 S:      Supported
6688 F:      drivers/scsi/ibmvscsi/ibmvfc*
6689
6690 IBM Power Virtual SCSI Device Drivers
6691 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6692 L:      linux-scsi@vger.kernel.org
6693 S:      Supported
6694 F:      drivers/scsi/ibmvscsi/ibmvscsi*
6695 F:      include/scsi/viosrp.h
6696
6697 IBM Power Virtual SCSI Device Target Driver
6698 M:      Bryant G. Ly <bryantly@linux.vnet.ibm.com>
6699 M:      Michael Cyr <mikecyr@linux.vnet.ibm.com>
6700 L:      linux-scsi@vger.kernel.org
6701 L:      target-devel@vger.kernel.org
6702 S:      Supported
6703 F:      drivers/scsi/ibmvscsi_tgt/
6704
6705 IBM Power VMX Cryptographic instructions
6706 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6707 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6708 L:      linux-crypto@vger.kernel.org
6709 S:      Supported
6710 F:      drivers/crypto/vmx/Makefile
6711 F:      drivers/crypto/vmx/Kconfig
6712 F:      drivers/crypto/vmx/vmx.c
6713 F:      drivers/crypto/vmx/aes*
6714 F:      drivers/crypto/vmx/ghash*
6715 F:      drivers/crypto/vmx/ppc-xlate.pl
6716
6717 IBM ServeRAID RAID DRIVER
6718 S:      Orphan
6719 F:      drivers/scsi/ips.*
6720
6721 ICH LPC AND GPIO DRIVER
6722 M:      Peter Tyser <ptyser@xes-inc.com>
6723 S:      Maintained
6724 F:      drivers/mfd/lpc_ich.c
6725 F:      drivers/gpio/gpio-ich.c
6726
6727 IDE SUBSYSTEM
6728 M:      "David S. Miller" <davem@davemloft.net>
6729 L:      linux-ide@vger.kernel.org
6730 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
6731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
6732 S:      Maintained
6733 F:      Documentation/ide/
6734 F:      drivers/ide/
6735 F:      include/linux/ide.h
6736
6737 IDE/ATAPI DRIVERS
6738 M:      Borislav Petkov <bp@alien8.de>
6739 L:      linux-ide@vger.kernel.org
6740 S:      Maintained
6741 F:      Documentation/cdrom/ide-cd
6742 F:      drivers/ide/ide-cd*
6743
6744 IDEAPAD LAPTOP EXTRAS DRIVER
6745 M:      Ike Panhc <ike.pan@canonical.com>
6746 L:      platform-driver-x86@vger.kernel.org
6747 W:      http://launchpad.net/ideapad-laptop
6748 S:      Maintained
6749 F:      drivers/platform/x86/ideapad-laptop.c
6750
6751 IDEAPAD LAPTOP SLIDEBAR DRIVER
6752 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
6753 L:      linux-input@vger.kernel.org
6754 W:      https://github.com/o2genum/ideapad-slidebar
6755 S:      Maintained
6756 F:      drivers/input/misc/ideapad_slidebar.c
6757
6758 IDT VersaClock 5 CLOCK DRIVER
6759 M:      Marek Vasut <marek.vasut@gmail.com>
6760 S:      Maintained
6761 F:      drivers/clk/clk-versaclock5.c
6762
6763 IEEE 802.15.4 SUBSYSTEM
6764 M:      Alexander Aring <alex.aring@gmail.com>
6765 M:      Stefan Schmidt <stefan@osg.samsung.com>
6766 L:      linux-wpan@vger.kernel.org
6767 W:      http://wpan.cakelab.org/
6768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
6769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
6770 S:      Maintained
6771 F:      net/ieee802154/
6772 F:      net/mac802154/
6773 F:      drivers/net/ieee802154/
6774 F:      include/linux/nl802154.h
6775 F:      include/linux/ieee802154.h
6776 F:      include/net/nl802154.h
6777 F:      include/net/mac802154.h
6778 F:      include/net/af_ieee802154.h
6779 F:      include/net/cfg802154.h
6780 F:      include/net/ieee802154_netdev.h
6781 F:      Documentation/networking/ieee802154.txt
6782
6783 IFE PROTOCOL
6784 M:      Yotam Gigi <yotam.gi@gmail.com>
6785 M:      Jamal Hadi Salim <jhs@mojatatu.com>
6786 F:      net/ife
6787 F:      include/net/ife.h
6788 F:      include/uapi/linux/ife.h
6789
6790 IGORPLUG-USB IR RECEIVER
6791 M:      Sean Young <sean@mess.org>
6792 L:      linux-media@vger.kernel.org
6793 S:      Maintained
6794 F:      drivers/media/rc/igorplugusb.c
6795
6796 IGUANAWORKS USB IR TRANSCEIVER
6797 M:      Sean Young <sean@mess.org>
6798 L:      linux-media@vger.kernel.org
6799 S:      Maintained
6800 F:      drivers/media/rc/iguanair.c
6801
6802 IIO DIGITAL POTENTIOMETER DAC
6803 M:      Peter Rosin <peda@axentia.se>
6804 L:      linux-iio@vger.kernel.org
6805 S:      Maintained
6806 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
6807 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
6808 F:      drivers/iio/dac/dpot-dac.c
6809
6810 IIO ENVELOPE DETECTOR
6811 M:      Peter Rosin <peda@axentia.se>
6812 L:      linux-iio@vger.kernel.org
6813 S:      Maintained
6814 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
6815 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
6816 F:      drivers/iio/adc/envelope-detector.c
6817
6818 IIO MULTIPLEXER
6819 M:      Peter Rosin <peda@axentia.se>
6820 L:      linux-iio@vger.kernel.org
6821 S:      Maintained
6822 F:      Documentation/devicetree/bindings/iio/multiplexer/iio-mux.txt
6823 F:      drivers/iio/multiplexer/iio-mux.c
6824
6825 IIO SUBSYSTEM AND DRIVERS
6826 M:      Jonathan Cameron <jic23@kernel.org>
6827 R:      Hartmut Knaack <knaack.h@gmx.de>
6828 R:      Lars-Peter Clausen <lars@metafoo.de>
6829 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
6830 L:      linux-iio@vger.kernel.org
6831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
6832 S:      Maintained
6833 F:      Documentation/devicetree/bindings/iio/
6834 F:      drivers/iio/
6835 F:      drivers/staging/iio/
6836 F:      include/linux/iio/
6837 F:      tools/iio/
6838
6839 IKANOS/ADI EAGLE ADSL USB DRIVER
6840 M:      Matthieu Castet <castet.matthieu@free.fr>
6841 M:      Stanislaw Gruszka <stf_xl@wp.pl>
6842 S:      Maintained
6843 F:      drivers/usb/atm/ueagle-atm.c
6844
6845 IMGTEC ASCII LCD DRIVER
6846 M:      Paul Burton <paul.burton@mips.com>
6847 S:      Maintained
6848 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
6849 F:      drivers/auxdisplay/img-ascii-lcd.c
6850
6851 IMGTEC IR DECODER DRIVER
6852 M:      James Hogan <jhogan@kernel.org>
6853 S:      Maintained
6854 F:      drivers/media/rc/img-ir/
6855
6856 IMS TWINTURBO FRAMEBUFFER DRIVER
6857 L:      linux-fbdev@vger.kernel.org
6858 S:      Orphan
6859 F:      drivers/video/fbdev/imsttfb.c
6860
6861 INA209 HARDWARE MONITOR DRIVER
6862 M:      Guenter Roeck <linux@roeck-us.net>
6863 L:      linux-hwmon@vger.kernel.org
6864 S:      Maintained
6865 F:      Documentation/hwmon/ina209
6866 F:      Documentation/devicetree/bindings/i2c/ina209.txt
6867 F:      drivers/hwmon/ina209.c
6868
6869 INA2XX HARDWARE MONITOR DRIVER
6870 M:      Guenter Roeck <linux@roeck-us.net>
6871 L:      linux-hwmon@vger.kernel.org
6872 S:      Maintained
6873 F:      Documentation/hwmon/ina2xx
6874 F:      drivers/hwmon/ina2xx.c
6875 F:      include/linux/platform_data/ina2xx.h
6876
6877 INDUSTRY PACK SUBSYSTEM (IPACK)
6878 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
6879 M:      Jens Taprogge <jens.taprogge@taprogge.org>
6880 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6881 L:      industrypack-devel@lists.sourceforge.net
6882 W:      http://industrypack.sourceforge.net
6883 S:      Maintained
6884 F:      drivers/ipack/
6885
6886 INFINIBAND SUBSYSTEM
6887 M:      Doug Ledford <dledford@redhat.com>
6888 M:      Jason Gunthorpe <jgg@mellanox.com>
6889 L:      linux-rdma@vger.kernel.org
6890 W:      http://www.openfabrics.org/
6891 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
6893 S:      Supported
6894 F:      Documentation/devicetree/bindings/infiniband/
6895 F:      Documentation/infiniband/
6896 F:      drivers/infiniband/
6897 F:      include/uapi/linux/if_infiniband.h
6898 F:      include/uapi/rdma/
6899 F:      include/rdma/
6900
6901 INGENIC JZ4780 DMA Driver
6902 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
6903 S:      Maintained
6904 F:      drivers/dma/dma-jz4780.c
6905
6906 INGENIC JZ4780 NAND DRIVER
6907 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
6908 L:      linux-mtd@lists.infradead.org
6909 S:      Maintained
6910 F:      drivers/mtd/nand/jz4780_*
6911
6912 INOTIFY
6913 M:      Jan Kara <jack@suse.cz>
6914 R:      Amir Goldstein <amir73il@gmail.com>
6915 L:      linux-fsdevel@vger.kernel.org
6916 S:      Maintained
6917 F:      Documentation/filesystems/inotify.txt
6918 F:      fs/notify/inotify/
6919 F:      include/linux/inotify.h
6920 F:      include/uapi/linux/inotify.h
6921
6922 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
6923 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
6924 L:      linux-input@vger.kernel.org
6925 Q:      http://patchwork.kernel.org/project/linux-input/list/
6926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
6927 S:      Maintained
6928 F:      drivers/input/
6929 F:      include/linux/input.h
6930 F:      include/uapi/linux/input.h
6931 F:      include/uapi/linux/input-event-codes.h
6932 F:      include/linux/input/
6933 F:      Documentation/devicetree/bindings/input/
6934 F:      Documentation/input/
6935
6936 INPUT MULTITOUCH (MT) PROTOCOL
6937 M:      Henrik Rydberg <rydberg@bitmath.org>
6938 L:      linux-input@vger.kernel.org
6939 S:      Odd fixes
6940 F:      Documentation/input/multi-touch-protocol.rst
6941 F:      drivers/input/input-mt.c
6942 K:      \b(ABS|SYN)_MT_
6943
6944 INSIDE SECURE CRYPTO DRIVER
6945 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
6946 F:      drivers/crypto/inside-secure/
6947 S:      Maintained
6948 L:      linux-crypto@vger.kernel.org
6949
6950 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
6951 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6952 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
6953 L:      linux-integrity@vger.kernel.org
6954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
6955 S:      Supported
6956 F:      security/integrity/ima/
6957
6958 INTEL 810/815 FRAMEBUFFER DRIVER
6959 M:      Antonino Daplas <adaplas@gmail.com>
6960 L:      linux-fbdev@vger.kernel.org
6961 S:      Maintained
6962 F:      drivers/video/fbdev/i810/
6963
6964 INTEL ASoC BDW/HSW DRIVERS
6965 M:      Jie Yang <yang.jie@linux.intel.com>
6966 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6967 S:      Supported
6968 F:      sound/soc/intel/common/sst-dsp*
6969 F:      sound/soc/intel/common/sst-firmware.c
6970 F:      sound/soc/intel/boards/broadwell.c
6971 F:      sound/soc/intel/haswell/
6972
6973 INTEL C600 SERIES SAS CONTROLLER DRIVER
6974 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
6975 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
6976 L:      linux-scsi@vger.kernel.org
6977 T:      git git://git.code.sf.net/p/intel-sas/isci
6978 S:      Supported
6979 F:      drivers/scsi/isci/
6980
6981 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
6982 M:      Jani Nikula <jani.nikula@linux.intel.com>
6983 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
6984 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
6985 L:      intel-gfx@lists.freedesktop.org
6986 W:      https://01.org/linuxgraphics/
6987 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
6988 C:      irc://chat.freenode.net/intel-gfx
6989 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
6990 T:      git git://anongit.freedesktop.org/drm-intel
6991 S:      Supported
6992 F:      drivers/gpu/drm/i915/
6993 F:      include/drm/i915*
6994 F:      include/uapi/drm/i915_drm.h
6995 F:      Documentation/gpu/i915.rst
6996
6997 INTEL ETHERNET DRIVERS
6998 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
6999 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
7000 W:      http://www.intel.com/support/feedback.htm
7001 W:      http://e1000.sourceforge.net/
7002 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
7003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
7004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
7005 S:      Supported
7006 F:      Documentation/networking/e100.txt
7007 F:      Documentation/networking/e1000.txt
7008 F:      Documentation/networking/e1000e.txt
7009 F:      Documentation/networking/igb.txt
7010 F:      Documentation/networking/igbvf.txt
7011 F:      Documentation/networking/ixgb.txt
7012 F:      Documentation/networking/ixgbe.txt
7013 F:      Documentation/networking/ixgbevf.txt
7014 F:      Documentation/networking/i40e.txt
7015 F:      Documentation/networking/i40evf.txt
7016 F:      drivers/net/ethernet/intel/
7017 F:      drivers/net/ethernet/intel/*/
7018 F:      include/linux/avf/virtchnl.h
7019
7020 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
7021 M:      Maik Broemme <mbroemme@libmpq.org>
7022 L:      linux-fbdev@vger.kernel.org
7023 S:      Maintained
7024 F:      Documentation/fb/intelfb.txt
7025 F:      drivers/video/fbdev/intelfb/
7026
7027 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
7028 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
7029 M:      Zhi Wang <zhi.a.wang@intel.com>
7030 L:      intel-gvt-dev@lists.freedesktop.org
7031 L:      intel-gfx@lists.freedesktop.org
7032 W:      https://01.org/igvt-g
7033 T:      git https://github.com/01org/gvt-linux.git
7034 S:      Supported
7035 F:      drivers/gpu/drm/i915/gvt/
7036
7037 INTEL HID EVENT DRIVER
7038 M:      Alex Hung <alex.hung@canonical.com>
7039 L:      platform-driver-x86@vger.kernel.org
7040 S:      Maintained
7041 F:      drivers/platform/x86/intel-hid.c
7042
7043 INTEL I/OAT DMA DRIVER
7044 M:      Dave Jiang <dave.jiang@intel.com>
7045 R:      Dan Williams <dan.j.williams@intel.com>
7046 L:      dmaengine@vger.kernel.org
7047 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
7048 S:      Supported
7049 F:      drivers/dma/ioat*
7050
7051 INTEL IDLE DRIVER
7052 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
7053 M:      Len Brown <lenb@kernel.org>
7054 L:      linux-pm@vger.kernel.org
7055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
7056 B:      https://bugzilla.kernel.org
7057 S:      Supported
7058 F:      drivers/idle/intel_idle.c
7059
7060 INTEL INTEGRATED SENSOR HUB DRIVER
7061 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7062 M:      Jiri Kosina <jikos@kernel.org>
7063 L:      linux-input@vger.kernel.org
7064 S:      Maintained
7065 F:      drivers/hid/intel-ish-hid/
7066
7067 INTEL IOMMU (VT-d)
7068 M:      David Woodhouse <dwmw2@infradead.org>
7069 L:      iommu@lists.linux-foundation.org
7070 T:      git git://git.infradead.org/iommu-2.6.git
7071 S:      Supported
7072 F:      drivers/iommu/intel-iommu.c
7073 F:      include/linux/intel-iommu.h
7074
7075 INTEL IOP-ADMA DMA DRIVER
7076 R:      Dan Williams <dan.j.williams@intel.com>
7077 S:      Odd fixes
7078 F:      drivers/dma/iop-adma.c
7079
7080 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
7081 M:      Krzysztof Halasa <khalasa@piap.pl>
7082 S:      Maintained
7083 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
7084 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
7085 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
7086 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
7087 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
7088 F:      drivers/net/wan/ixp4xx_hss.c
7089
7090 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
7091 M:      Deepak Saxena <dsaxena@plexity.net>
7092 S:      Maintained
7093 F:      drivers/char/hw_random/ixp4xx-rng.c
7094
7095 INTEL MANAGEMENT ENGINE (mei)
7096 M:      Tomas Winkler <tomas.winkler@intel.com>
7097 L:      linux-kernel@vger.kernel.org
7098 S:      Supported
7099 F:      include/uapi/linux/mei.h
7100 F:      include/linux/mei_cl_bus.h
7101 F:      drivers/misc/mei/*
7102 F:      drivers/watchdog/mei_wdt.c
7103 F:      Documentation/misc-devices/mei/*
7104 F:      samples/mei/*
7105
7106 INTEL MENLOW THERMAL DRIVER
7107 M:      Sujith Thomas <sujith.thomas@intel.com>
7108 L:      platform-driver-x86@vger.kernel.org
7109 W:      https://01.org/linux-acpi
7110 S:      Supported
7111 F:      drivers/platform/x86/intel_menlow.c
7112
7113 INTEL MERRIFIELD GPIO DRIVER
7114 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7115 L:      linux-gpio@vger.kernel.org
7116 S:      Maintained
7117 F:      drivers/gpio/gpio-merrifield.c
7118
7119 INTEL MIC DRIVERS (mic)
7120 M:      Sudeep Dutt <sudeep.dutt@intel.com>
7121 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
7122 S:      Supported
7123 W:      https://github.com/sudeepdutt/mic
7124 W:      http://software.intel.com/en-us/mic-developer
7125 F:      include/linux/mic_bus.h
7126 F:      include/linux/scif.h
7127 F:      include/uapi/linux/mic_common.h
7128 F:      include/uapi/linux/mic_ioctl.h
7129 F:      include/uapi/linux/scif_ioctl.h
7130 F:      drivers/misc/mic/
7131 F:      drivers/dma/mic_x100_dma.c
7132 F:      drivers/dma/mic_x100_dma.h
7133 F:      Documentation/mic/
7134
7135 INTEL PMC CORE DRIVER
7136 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
7137 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
7138 L:      platform-driver-x86@vger.kernel.org
7139 S:      Maintained
7140 F:      arch/x86/include/asm/pmc_core.h
7141 F:      drivers/platform/x86/intel_pmc_core*
7142
7143 INTEL PMC/P-Unit IPC DRIVER
7144 M:      Zha Qipeng<qipeng.zha@intel.com>
7145 L:      platform-driver-x86@vger.kernel.org
7146 S:      Maintained
7147 F:      drivers/platform/x86/intel_pmc_ipc.c
7148 F:      drivers/platform/x86/intel_punit_ipc.c
7149 F:      arch/x86/include/asm/intel_pmc_ipc.h
7150 F:      arch/x86/include/asm/intel_punit_ipc.h
7151
7152 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
7153 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
7154 L:      linux-wireless@vger.kernel.org
7155 S:      Maintained
7156 F:      Documentation/networking/README.ipw2100
7157 F:      Documentation/networking/README.ipw2200
7158 F:      drivers/net/wireless/intel/ipw2x00/
7159
7160 INTEL PSTATE DRIVER
7161 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7162 M:      Len Brown <lenb@kernel.org>
7163 L:      linux-pm@vger.kernel.org
7164 S:      Supported
7165 F:      drivers/cpufreq/intel_pstate.c
7166
7167 INTEL RDMA RNIC DRIVER
7168 M:      Faisal Latif <faisal.latif@intel.com>
7169 M:      Shiraz Saleem <shiraz.saleem@intel.com>
7170 L:      linux-rdma@vger.kernel.org
7171 S:      Supported
7172 F:      drivers/infiniband/hw/i40iw/
7173
7174 INTEL TELEMETRY DRIVER
7175 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
7176 L:      platform-driver-x86@vger.kernel.org
7177 S:      Maintained
7178 F:      arch/x86/include/asm/intel_telemetry.h
7179 F:      drivers/platform/x86/intel_telemetry*
7180
7181 INTEL VIRTUAL BUTTON DRIVER
7182 M:      AceLan Kao <acelan.kao@canonical.com>
7183 L:      platform-driver-x86@vger.kernel.org
7184 S:      Maintained
7185 F:      drivers/platform/x86/intel-vbtn.c
7186
7187 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
7188 M:      Stanislaw Gruszka <sgruszka@redhat.com>
7189 L:      linux-wireless@vger.kernel.org
7190 S:      Supported
7191 F:      drivers/net/wireless/intel/iwlegacy/
7192
7193 INTEL WIRELESS WIFI LINK (iwlwifi)
7194 M:      Johannes Berg <johannes.berg@intel.com>
7195 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
7196 M:      Luca Coelho <luciano.coelho@intel.com>
7197 M:      Intel Linux Wireless <linuxwifi@intel.com>
7198 L:      linux-wireless@vger.kernel.org
7199 W:      http://intellinuxwireless.org
7200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
7201 S:      Supported
7202 F:      drivers/net/wireless/intel/iwlwifi/
7203
7204 INTEL WIRELESS WIMAX CONNECTION 2400
7205 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
7206 M:      linux-wimax@intel.com
7207 L:      wimax@linuxwimax.org (subscribers-only)
7208 S:      Supported
7209 W:      http://linuxwimax.org
7210 F:      Documentation/wimax/README.i2400m
7211 F:      drivers/net/wimax/i2400m/
7212 F:      include/uapi/linux/wimax/i2400m.h
7213
7214 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
7215 M:      Mario Limonciello <mario.limonciello@dell.com>
7216 S:      Maintained
7217 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
7218
7219 INTEL(R) TRACE HUB
7220 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7221 S:      Supported
7222 F:      Documentation/trace/intel_th.txt
7223 F:      drivers/hwtracing/intel_th/
7224
7225 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
7226 M:      Ning Sun <ning.sun@intel.com>
7227 L:      tboot-devel@lists.sourceforge.net
7228 W:      http://tboot.sourceforge.net
7229 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
7230 S:      Supported
7231 F:      Documentation/intel_txt.txt
7232 F:      include/linux/tboot.h
7233 F:      arch/x86/kernel/tboot.c
7234
7235 INTEL-MID GPIO DRIVER
7236 M:      David Cohen <david.a.cohen@linux.intel.com>
7237 L:      linux-gpio@vger.kernel.org
7238 S:      Maintained
7239 F:      drivers/gpio/gpio-intel-mid.c
7240
7241 INVENSENSE MPU-3050 GYROSCOPE DRIVER
7242 M:      Linus Walleij <linus.walleij@linaro.org>
7243 L:      linux-iio@vger.kernel.org
7244 S:      Maintained
7245 F:      drivers/iio/gyro/mpu3050*
7246 F:      Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt
7247
7248 IOC3 ETHERNET DRIVER
7249 M:      Ralf Baechle <ralf@linux-mips.org>
7250 L:      linux-mips@linux-mips.org
7251 S:      Maintained
7252 F:      drivers/net/ethernet/sgi/ioc3-eth.c
7253
7254 IOC3 SERIAL DRIVER
7255 M:      Pat Gefre <pfg@sgi.com>
7256 L:      linux-serial@vger.kernel.org
7257 S:      Maintained
7258 F:      drivers/tty/serial/ioc3_serial.c
7259
7260 IOMMU DRIVERS
7261 M:      Joerg Roedel <joro@8bytes.org>
7262 L:      iommu@lists.linux-foundation.org
7263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
7264 S:      Maintained
7265 F:      Documentation/devicetree/bindings/iommu/
7266 F:      drivers/iommu/
7267 F:      include/linux/iommu.h
7268 F:      include/linux/iova.h
7269
7270 IP MASQUERADING
7271 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
7272 S:      Maintained
7273 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
7274
7275 IPMI SUBSYSTEM
7276 M:      Corey Minyard <minyard@acm.org>
7277 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
7278 W:      http://openipmi.sourceforge.net/
7279 S:      Supported
7280 F:      Documentation/IPMI.txt
7281 F:      drivers/char/ipmi/
7282 F:      include/linux/ipmi*
7283 F:      include/uapi/linux/ipmi*
7284
7285 IPS SCSI RAID DRIVER
7286 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
7287 L:      linux-scsi@vger.kernel.org
7288 W:      http://www.adaptec.com/
7289 S:      Maintained
7290 F:      drivers/scsi/ips*
7291
7292 IPVS
7293 M:      Wensong Zhang <wensong@linux-vs.org>
7294 M:      Simon Horman <horms@verge.net.au>
7295 M:      Julian Anastasov <ja@ssi.bg>
7296 L:      netdev@vger.kernel.org
7297 L:      lvs-devel@vger.kernel.org
7298 S:      Maintained
7299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
7300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
7301 F:      Documentation/networking/ipvs-sysctl.txt
7302 F:      include/net/ip_vs.h
7303 F:      include/uapi/linux/ip_vs.h
7304 F:      net/netfilter/ipvs/
7305
7306 IPWIRELESS DRIVER
7307 M:      Jiri Kosina <jikos@kernel.org>
7308 M:      David Sterba <dsterba@suse.com>
7309 S:      Odd Fixes
7310 F:      drivers/tty/ipwireless/
7311
7312 IPX NETWORK LAYER
7313 L:      netdev@vger.kernel.org
7314 S:      Odd fixes
7315 F:      include/net/ipx.h
7316 F:      include/uapi/linux/ipx.h
7317 F:      net/ipx/
7318
7319 IRDA SUBSYSTEM
7320 M:      Samuel Ortiz <samuel@sortiz.org>
7321 L:      irda-users@lists.sourceforge.net (subscribers-only)
7322 L:      netdev@vger.kernel.org
7323 W:      http://irda.sourceforge.net/
7324 S:      Maintained
7325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
7326 F:      Documentation/networking/irda.txt
7327 F:      drivers/staging/irda/
7328
7329 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
7330 M:      Marc Zyngier <marc.zyngier@arm.com>
7331 S:      Maintained
7332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7333 F:      Documentation/IRQ-domain.txt
7334 F:      include/linux/irqdomain.h
7335 F:      kernel/irq/irqdomain.c
7336 F:      kernel/irq/msi.c
7337
7338 IRQ SUBSYSTEM
7339 M:      Thomas Gleixner <tglx@linutronix.de>
7340 L:      linux-kernel@vger.kernel.org
7341 S:      Maintained
7342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7343 F:      kernel/irq/
7344
7345 IRQCHIP DRIVERS
7346 M:      Thomas Gleixner <tglx@linutronix.de>
7347 M:      Jason Cooper <jason@lakedaemon.net>
7348 M:      Marc Zyngier <marc.zyngier@arm.com>
7349 L:      linux-kernel@vger.kernel.org
7350 S:      Maintained
7351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7352 F:      Documentation/devicetree/bindings/interrupt-controller/
7353 F:      drivers/irqchip/
7354
7355 ISA
7356 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
7357 S:      Maintained
7358 F:      Documentation/isa.txt
7359 F:      drivers/base/isa.c
7360 F:      include/linux/isa.h
7361
7362 ISA RADIO MODULE
7363 M:      Hans Verkuil <hverkuil@xs4all.nl>
7364 L:      linux-media@vger.kernel.org
7365 T:      git git://linuxtv.org/media_tree.git
7366 W:      https://linuxtv.org
7367 S:      Maintained
7368 F:      drivers/media/radio/radio-isa*
7369
7370 ISAPNP
7371 M:      Jaroslav Kysela <perex@perex.cz>
7372 S:      Maintained
7373 F:      Documentation/isapnp.txt
7374 F:      drivers/pnp/isapnp/
7375 F:      include/linux/isapnp.h
7376
7377 ISCSI
7378 M:      Lee Duncan <lduncan@suse.com>
7379 M:      Chris Leech <cleech@redhat.com>
7380 L:      open-iscsi@googlegroups.com
7381 W:      www.open-iscsi.com
7382 S:      Maintained
7383 F:      drivers/scsi/*iscsi*
7384 F:      include/scsi/*iscsi*
7385
7386 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
7387 M:      Peter Jones <pjones@redhat.com>
7388 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
7389 S:      Maintained
7390 F:      drivers/firmware/iscsi_ibft*
7391
7392 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
7393 M:      Or Gerlitz <ogerlitz@mellanox.com>
7394 M:      Sagi Grimberg <sagi@grimberg.me>
7395 M:      Roi Dayan <roid@mellanox.com>
7396 L:      linux-rdma@vger.kernel.org
7397 S:      Supported
7398 W:      http://www.openfabrics.org
7399 W:      www.open-iscsi.org
7400 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7401 F:      drivers/infiniband/ulp/iser/
7402
7403 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
7404 M:      Sagi Grimberg <sagi@grimberg.me>
7405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
7406 L:      linux-rdma@vger.kernel.org
7407 L:      target-devel@vger.kernel.org
7408 S:      Supported
7409 W:      http://www.linux-iscsi.org
7410 F:      drivers/infiniband/ulp/isert
7411
7412 ISDN SUBSYSTEM
7413 M:      Karsten Keil <isdn@linux-pingi.de>
7414 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
7415 L:      netdev@vger.kernel.org
7416 W:      http://www.isdn4linux.de
7417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
7418 S:      Maintained
7419 F:      Documentation/isdn/
7420 F:      drivers/isdn/
7421 F:      include/linux/isdn.h
7422 F:      include/linux/isdn/
7423 F:      include/uapi/linux/isdn.h
7424 F:      include/uapi/linux/isdn/
7425
7426 ISDN SUBSYSTEM (Eicon active card driver)
7427 M:      Armin Schindler <mac@melware.de>
7428 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
7429 W:      http://www.melware.de
7430 S:      Maintained
7431 F:      drivers/isdn/hardware/eicon/
7432
7433 IT87 HARDWARE MONITORING DRIVER
7434 M:      Jean Delvare <jdelvare@suse.com>
7435 L:      linux-hwmon@vger.kernel.org
7436 S:      Maintained
7437 F:      Documentation/hwmon/it87
7438 F:      drivers/hwmon/it87.c
7439
7440 IT913X MEDIA DRIVER
7441 M:      Antti Palosaari <crope@iki.fi>
7442 L:      linux-media@vger.kernel.org
7443 W:      https://linuxtv.org
7444 W:      http://palosaari.fi/linux/
7445 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7446 T:      git git://linuxtv.org/anttip/media_tree.git
7447 S:      Maintained
7448 F:      drivers/media/tuners/it913x*
7449
7450 IVTV VIDEO4LINUX DRIVER
7451 M:      Andy Walls <awalls@md.metrocast.net>
7452 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
7453 L:      linux-media@vger.kernel.org
7454 T:      git git://linuxtv.org/media_tree.git
7455 W:      http://www.ivtvdriver.org
7456 S:      Maintained
7457 F:      Documentation/media/v4l-drivers/ivtv*
7458 F:      drivers/media/pci/ivtv/
7459 F:      include/uapi/linux/ivtv*
7460
7461 IX2505V MEDIA DRIVER
7462 M:      Malcolm Priestley <tvboxspy@gmail.com>
7463 L:      linux-media@vger.kernel.org
7464 W:      https://linuxtv.org
7465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7466 S:      Maintained
7467 F:      drivers/media/dvb-frontends/ix2505v*
7468
7469 JC42.4 TEMPERATURE SENSOR DRIVER
7470 M:      Guenter Roeck <linux@roeck-us.net>
7471 L:      linux-hwmon@vger.kernel.org
7472 S:      Maintained
7473 F:      drivers/hwmon/jc42.c
7474 F:      Documentation/hwmon/jc42
7475
7476 JFS FILESYSTEM
7477 M:      Dave Kleikamp <shaggy@kernel.org>
7478 L:      jfs-discussion@lists.sourceforge.net
7479 W:      http://jfs.sourceforge.net/
7480 T:      git git://github.com/kleikamp/linux-shaggy.git
7481 S:      Maintained
7482 F:      Documentation/filesystems/jfs.txt
7483 F:      fs/jfs/
7484
7485 JME NETWORK DRIVER
7486 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
7487 L:      netdev@vger.kernel.org
7488 S:      Maintained
7489 F:      drivers/net/ethernet/jme.*
7490
7491 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
7492 M:      David Woodhouse <dwmw2@infradead.org>
7493 L:      linux-mtd@lists.infradead.org
7494 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
7495 S:      Maintained
7496 F:      fs/jffs2/
7497 F:      include/uapi/linux/jffs2.h
7498
7499 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
7500 M:      "Theodore Ts'o" <tytso@mit.edu>
7501 M:      Jan Kara <jack@suse.com>
7502 L:      linux-ext4@vger.kernel.org
7503 S:      Maintained
7504 F:      fs/jbd2/
7505 F:      include/linux/jbd2.h
7506
7507 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
7508 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
7509 L:      linux-media@vger.kernel.org
7510 S:      Maintained
7511 F:      drivers/media/platform/rcar_jpu.c
7512
7513 JSM Neo PCI based serial card
7514 M:      Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
7515 L:      linux-serial@vger.kernel.org
7516 S:      Maintained
7517 F:      drivers/tty/serial/jsm/
7518
7519 K10TEMP HARDWARE MONITORING DRIVER
7520 M:      Clemens Ladisch <clemens@ladisch.de>
7521 L:      linux-hwmon@vger.kernel.org
7522 S:      Maintained
7523 F:      Documentation/hwmon/k10temp
7524 F:      drivers/hwmon/k10temp.c
7525
7526 K8TEMP HARDWARE MONITORING DRIVER
7527 M:      Rudolf Marek <r.marek@assembler.cz>
7528 L:      linux-hwmon@vger.kernel.org
7529 S:      Maintained
7530 F:      Documentation/hwmon/k8temp
7531 F:      drivers/hwmon/k8temp.c
7532
7533 KASAN
7534 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
7535 R:      Alexander Potapenko <glider@google.com>
7536 R:      Dmitry Vyukov <dvyukov@google.com>
7537 L:      kasan-dev@googlegroups.com
7538 S:      Maintained
7539 F:      arch/*/include/asm/kasan.h
7540 F:      arch/*/mm/kasan_init*
7541 F:      Documentation/dev-tools/kasan.rst
7542 F:      include/linux/kasan*.h
7543 F:      lib/test_kasan.c
7544 F:      mm/kasan/
7545 F:      scripts/Makefile.kasan
7546
7547 KCONFIG
7548 L:      linux-kbuild@vger.kernel.org
7549 S:      Orphan
7550 F:      Documentation/kbuild/kconfig-language.txt
7551 F:      scripts/kconfig/
7552
7553 KDUMP
7554 M:      Dave Young <dyoung@redhat.com>
7555 M:      Baoquan He <bhe@redhat.com>
7556 R:      Vivek Goyal <vgoyal@redhat.com>
7557 L:      kexec@lists.infradead.org
7558 W:      http://lse.sourceforge.net/kdump/
7559 S:      Maintained
7560 F:      Documentation/kdump/
7561
7562 KEENE FM RADIO TRANSMITTER DRIVER
7563 M:      Hans Verkuil <hverkuil@xs4all.nl>
7564 L:      linux-media@vger.kernel.org
7565 T:      git git://linuxtv.org/media_tree.git
7566 W:      https://linuxtv.org
7567 S:      Maintained
7568 F:      drivers/media/radio/radio-keene*
7569
7570 KERNEL AUTOMOUNTER v4 (AUTOFS4)
7571 M:      Ian Kent <raven@themaw.net>
7572 L:      autofs@vger.kernel.org
7573 S:      Maintained
7574 F:      fs/autofs4/
7575
7576 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
7577 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
7578 M:      Michal Marek <michal.lkml@markovi.net>
7579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
7580 L:      linux-kbuild@vger.kernel.org
7581 S:      Maintained
7582 F:      Documentation/kbuild/
7583 F:      Makefile
7584 F:      scripts/Makefile.*
7585 F:      scripts/basic/
7586 F:      scripts/mk*
7587 F:      scripts/package/
7588
7589 KERNEL JANITORS
7590 L:      kernel-janitors@vger.kernel.org
7591 W:      http://kernelnewbies.org/KernelJanitors
7592 S:      Odd Fixes
7593
7594 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
7595 M:      "J. Bruce Fields" <bfields@fieldses.org>
7596 M:      Jeff Layton <jlayton@kernel.org>
7597 L:      linux-nfs@vger.kernel.org
7598 W:      http://nfs.sourceforge.net/
7599 T:      git git://linux-nfs.org/~bfields/linux.git
7600 S:      Supported
7601 F:      fs/nfsd/
7602 F:      include/uapi/linux/nfsd/
7603 F:      fs/lockd/
7604 F:      fs/nfs_common/
7605 F:      net/sunrpc/
7606 F:      include/linux/lockd/
7607 F:      include/linux/sunrpc/
7608 F:      include/uapi/linux/sunrpc/
7609
7610 KERNEL SELFTEST FRAMEWORK
7611 M:      Shuah Khan <shuahkh@osg.samsung.com>
7612 M:      Shuah Khan <shuah@kernel.org>
7613 L:      linux-kselftest@vger.kernel.org
7614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
7615 S:      Maintained
7616 F:      tools/testing/selftests/
7617 F:      Documentation/dev-tools/kselftest*
7618
7619 KERNEL USERMODE HELPER
7620 M:      "Luis R. Rodriguez" <mcgrof@kernel.org>
7621 L:      linux-kernel@vger.kernel.org
7622 S:      Maintained
7623 F:      kernel/umh.c
7624 F:      include/linux/umh.h
7625
7626 KERNEL VIRTUAL MACHINE (KVM)
7627 M:      Paolo Bonzini <pbonzini@redhat.com>
7628 M:      Radim Krčmář <rkrcmar@redhat.com>
7629 L:      kvm@vger.kernel.org
7630 W:      http://www.linux-kvm.org
7631 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7632 S:      Supported
7633 F:      Documentation/virtual/kvm/
7634 F:      include/trace/events/kvm.h
7635 F:      include/uapi/asm-generic/kvm*
7636 F:      include/uapi/linux/kvm*
7637 F:      include/asm-generic/kvm*
7638 F:      include/linux/kvm*
7639 F:      include/kvm/iodev.h
7640 F:      virt/kvm/*
7641 F:      tools/kvm/
7642
7643 KERNEL VIRTUAL MACHINE FOR AMD-V (KVM/amd)
7644 M:      Joerg Roedel <joro@8bytes.org>
7645 L:      kvm@vger.kernel.org
7646 W:      http://www.linux-kvm.org/
7647 S:      Maintained
7648 F:      arch/x86/include/asm/svm.h
7649 F:      arch/x86/kvm/svm.c
7650
7651 KERNEL VIRTUAL MACHINE FOR ARM (KVM/arm)
7652 M:      Christoffer Dall <christoffer.dall@linaro.org>
7653 M:      Marc Zyngier <marc.zyngier@arm.com>
7654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7655 L:      kvmarm@lists.cs.columbia.edu
7656 W:      http://systems.cs.columbia.edu/projects/kvm-arm
7657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
7658 S:      Supported
7659 F:      arch/arm/include/uapi/asm/kvm*
7660 F:      arch/arm/include/asm/kvm*
7661 F:      arch/arm/kvm/
7662 F:      virt/kvm/arm/
7663 F:      include/kvm/arm_*
7664
7665 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
7666 M:      Christoffer Dall <christoffer.dall@linaro.org>
7667 M:      Marc Zyngier <marc.zyngier@arm.com>
7668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7669 L:      kvmarm@lists.cs.columbia.edu
7670 S:      Maintained
7671 F:      arch/arm64/include/uapi/asm/kvm*
7672 F:      arch/arm64/include/asm/kvm*
7673 F:      arch/arm64/kvm/
7674
7675 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
7676 M:      James Hogan <jhogan@kernel.org>
7677 L:      linux-mips@linux-mips.org
7678 S:      Supported
7679 F:      arch/mips/include/uapi/asm/kvm*
7680 F:      arch/mips/include/asm/kvm*
7681 F:      arch/mips/kvm/
7682
7683 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
7684 M:      Paul Mackerras <paulus@ozlabs.org>
7685 L:      kvm-ppc@vger.kernel.org
7686 W:      http://www.linux-kvm.org/
7687 T:      git git://github.com/agraf/linux-2.6.git
7688 S:      Supported
7689 F:      arch/powerpc/include/uapi/asm/kvm*
7690 F:      arch/powerpc/include/asm/kvm*
7691 F:      arch/powerpc/kvm/
7692 F:      arch/powerpc/kernel/kvm*
7693
7694 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
7695 M:      Christian Borntraeger <borntraeger@de.ibm.com>
7696 M:      Cornelia Huck <cohuck@redhat.com>
7697 L:      linux-s390@vger.kernel.org
7698 W:      http://www.ibm.com/developerworks/linux/linux390/
7699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
7700 S:      Supported
7701 F:      arch/s390/include/uapi/asm/kvm*
7702 F:      arch/s390/include/asm/gmap.h
7703 F:      arch/s390/include/asm/kvm*
7704 F:      arch/s390/kvm/
7705 F:      arch/s390/mm/gmap.c
7706
7707 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
7708 M:      Paolo Bonzini <pbonzini@redhat.com>
7709 M:      Radim Krčmář <rkrcmar@redhat.com>
7710 L:      kvm@vger.kernel.org
7711 W:      http://www.linux-kvm.org
7712 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7713 S:      Supported
7714 F:      arch/x86/kvm/
7715 F:      arch/x86/include/uapi/asm/kvm*
7716 F:      arch/x86/include/asm/kvm*
7717 F:      arch/x86/include/asm/pvclock-abi.h
7718 F:      arch/x86/kernel/kvm.c
7719 F:      arch/x86/kernel/kvmclock.c
7720
7721 KERNFS
7722 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7723 M:      Tejun Heo <tj@kernel.org>
7724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7725 S:      Supported
7726 F:      include/linux/kernfs.h
7727 F:      fs/kernfs/
7728
7729 KEXEC
7730 M:      Eric Biederman <ebiederm@xmission.com>
7731 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
7732 L:      kexec@lists.infradead.org
7733 S:      Maintained
7734 F:      include/linux/kexec.h
7735 F:      include/uapi/linux/kexec.h
7736 F:      kernel/kexec*
7737
7738 KEYS-ENCRYPTED
7739 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
7740 L:      linux-integrity@vger.kernel.org
7741 L:      keyrings@vger.kernel.org
7742 S:      Supported
7743 F:      Documentation/security/keys/trusted-encrypted.rst
7744 F:      include/keys/encrypted-type.h
7745 F:      security/keys/encrypted-keys/
7746
7747 KEYS-TRUSTED
7748 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
7749 L:      linux-integrity@vger.kernel.org
7750 L:      keyrings@vger.kernel.org
7751 S:      Supported
7752 F:      Documentation/security/keys/trusted-encrypted.rst
7753 F:      include/keys/trusted-type.h
7754 F:      security/keys/trusted.c
7755 F:      security/keys/trusted.h
7756
7757 KEYS/KEYRINGS:
7758 M:      David Howells <dhowells@redhat.com>
7759 L:      keyrings@vger.kernel.org
7760 S:      Maintained
7761 F:      Documentation/security/keys/core.rst
7762 F:      include/linux/key.h
7763 F:      include/linux/key-type.h
7764 F:      include/linux/keyctl.h
7765 F:      include/uapi/linux/keyctl.h
7766 F:      include/keys/
7767 F:      security/keys/
7768
7769 KGDB / KDB /debug_core
7770 M:      Jason Wessel <jason.wessel@windriver.com>
7771 M:      Daniel Thompson <daniel.thompson@linaro.org>
7772 W:      http://kgdb.wiki.kernel.org/
7773 L:      kgdb-bugreport@lists.sourceforge.net
7774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
7775 S:      Maintained
7776 F:      Documentation/dev-tools/kgdb.rst
7777 F:      drivers/misc/kgdbts.c
7778 F:      drivers/tty/serial/kgdboc.c
7779 F:      include/linux/kdb.h
7780 F:      include/linux/kgdb.h
7781 F:      kernel/debug/
7782
7783 KMEMLEAK
7784 M:      Catalin Marinas <catalin.marinas@arm.com>
7785 S:      Maintained
7786 F:      Documentation/dev-tools/kmemleak.rst
7787 F:      include/linux/kmemleak.h
7788 F:      mm/kmemleak.c
7789 F:      mm/kmemleak-test.c
7790
7791 KMOD KERNEL MODULE LOADER - USERMODE HELPER
7792 M:      "Luis R. Rodriguez" <mcgrof@kernel.org>
7793 L:      linux-kernel@vger.kernel.org
7794 S:      Maintained
7795 F:      kernel/kmod.c
7796 F:      include/linux/kmod.h
7797 F:      lib/test_kmod.c
7798 F:      tools/testing/selftests/kmod/
7799
7800 KPROBES
7801 M:      Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
7802 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
7803 M:      "David S. Miller" <davem@davemloft.net>
7804 M:      Masami Hiramatsu <mhiramat@kernel.org>
7805 S:      Maintained
7806 F:      Documentation/kprobes.txt
7807 F:      include/linux/kprobes.h
7808 F:      include/asm-generic/kprobes.h
7809 F:      kernel/kprobes.c
7810
7811 KS0108 LCD CONTROLLER DRIVER
7812 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
7813 W:      http://miguelojeda.es/auxdisplay.htm
7814 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
7815 S:      Maintained
7816 F:      Documentation/auxdisplay/ks0108
7817 F:      drivers/auxdisplay/ks0108.c
7818 F:      include/linux/ks0108.h
7819
7820 L3MDEV
7821 M:      David Ahern <dsa@cumulusnetworks.com>
7822 L:      netdev@vger.kernel.org
7823 S:      Maintained
7824 F:      net/l3mdev
7825 F:      include/net/l3mdev.h
7826
7827 LANTIQ MIPS ARCHITECTURE
7828 M:      John Crispin <john@phrozen.org>
7829 L:      linux-mips@linux-mips.org
7830 S:      Maintained
7831 F:      arch/mips/lantiq
7832 F:      drivers/soc/lantiq
7833
7834 LAPB module
7835 L:      linux-x25@vger.kernel.org
7836 S:      Orphan
7837 F:      Documentation/networking/lapb-module.txt
7838 F:      include/*/lapb.h
7839 F:      net/lapb/
7840
7841 LASI 53c700 driver for PARISC
7842 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7843 L:      linux-scsi@vger.kernel.org
7844 S:      Maintained
7845 F:      Documentation/scsi/53c700.txt
7846 F:      drivers/scsi/53c700*
7847
7848 LEAKING_ADDRESSES
7849 M:      Tobin C. Harding <me@tobin.cc>
7850 S:      Maintained
7851 F:      scripts/leaking_addresses.pl
7852
7853 LED SUBSYSTEM
7854 M:      Richard Purdie <rpurdie@rpsys.net>
7855 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
7856 M:      Pavel Machek <pavel@ucw.cz>
7857 L:      linux-leds@vger.kernel.org
7858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
7859 S:      Maintained
7860 F:      Documentation/devicetree/bindings/leds/
7861 F:      drivers/leds/
7862 F:      include/linux/leds.h
7863
7864 LEGACY EEPROM DRIVER
7865 M:      Jean Delvare <jdelvare@suse.com>
7866 S:      Maintained
7867 F:      Documentation/misc-devices/eeprom
7868 F:      drivers/misc/eeprom/eeprom.c
7869
7870 LEGO USB Tower driver
7871 M:      Juergen Stuber <starblue@users.sourceforge.net>
7872 L:      legousb-devel@lists.sourceforge.net
7873 W:      http://legousb.sourceforge.net/
7874 S:      Maintained
7875 F:      drivers/usb/misc/legousbtower.c
7876
7877 LG2160 MEDIA DRIVER
7878 M:      Michael Krufky <mkrufky@linuxtv.org>
7879 L:      linux-media@vger.kernel.org
7880 W:      https://linuxtv.org
7881 W:      http://github.com/mkrufky
7882 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7883 T:      git git://linuxtv.org/mkrufky/tuners.git
7884 S:      Maintained
7885 F:      drivers/media/dvb-frontends/lg2160.*
7886
7887 LGDT3305 MEDIA DRIVER
7888 M:      Michael Krufky <mkrufky@linuxtv.org>
7889 L:      linux-media@vger.kernel.org
7890 W:      https://linuxtv.org
7891 W:      http://github.com/mkrufky
7892 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7893 T:      git git://linuxtv.org/mkrufky/tuners.git
7894 S:      Maintained
7895 F:      drivers/media/dvb-frontends/lgdt3305.*
7896
7897 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
7898 M:      Viresh Kumar <vireshk@kernel.org>
7899 L:      linux-ide@vger.kernel.org
7900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7901 S:      Maintained
7902 F:      include/linux/pata_arasan_cf_data.h
7903 F:      drivers/ata/pata_arasan_cf.c
7904
7905 LIBATA PATA DRIVERS
7906 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7907 M:      Tejun Heo <tj@kernel.org>
7908 L:      linux-ide@vger.kernel.org
7909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7910 S:      Maintained
7911 F:      drivers/ata/pata_*.c
7912 F:      drivers/ata/ata_generic.c
7913
7914 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
7915 M:      Linus Walleij <linus.walleij@linaro.org>
7916 L:      linux-ide@vger.kernel.org
7917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7918 S:      Maintained
7919 F:      drivers/ata/pata_ftide010.c
7920 F:      drivers/ata/sata_gemini.c
7921 F:      drivers/ata/sata_gemini.h
7922
7923 LIBATA SATA AHCI PLATFORM devices support
7924 M:      Hans de Goede <hdegoede@redhat.com>
7925 M:      Tejun Heo <tj@kernel.org>
7926 L:      linux-ide@vger.kernel.org
7927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7928 S:      Maintained
7929 F:      drivers/ata/ahci_platform.c
7930 F:      drivers/ata/libahci_platform.c
7931 F:      include/linux/ahci_platform.h
7932
7933 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
7934 M:      Mikael Pettersson <mikpelinux@gmail.com>
7935 L:      linux-ide@vger.kernel.org
7936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7937 S:      Maintained
7938 F:      drivers/ata/sata_promise.*
7939
7940 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
7941 M:      Tejun Heo <tj@kernel.org>
7942 L:      linux-ide@vger.kernel.org
7943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7944 S:      Maintained
7945 F:      drivers/ata/
7946 F:      include/linux/ata.h
7947 F:      include/linux/libata.h
7948 F:      Documentation/devicetree/bindings/ata/
7949
7950 LIBLOCKDEP
7951 M:      Sasha Levin <alexander.levin@verizon.com>
7952 S:      Maintained
7953 F:      tools/lib/lockdep/
7954
7955 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
7956 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
7957 L:      linux-nvdimm@lists.01.org
7958 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7959 S:      Supported
7960 F:      drivers/nvdimm/blk.c
7961 F:      drivers/nvdimm/region_devs.c
7962
7963 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
7964 M:      Vishal Verma <vishal.l.verma@intel.com>
7965 L:      linux-nvdimm@lists.01.org
7966 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7967 S:      Supported
7968 F:      drivers/nvdimm/btt*
7969
7970 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
7971 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
7972 L:      linux-nvdimm@lists.01.org
7973 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7974 S:      Supported
7975 F:      drivers/nvdimm/pmem*
7976
7977 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
7978 M:      Dan Williams <dan.j.williams@intel.com>
7979 L:      linux-nvdimm@lists.01.org
7980 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
7982 S:      Supported
7983 F:      drivers/nvdimm/*
7984 F:      drivers/acpi/nfit/*
7985 F:      include/linux/nd.h
7986 F:      include/linux/libnvdimm.h
7987 F:      include/uapi/linux/ndctl.h
7988
7989 LIGHTNVM PLATFORM SUPPORT
7990 M:      Matias Bjorling <mb@lightnvm.io>
7991 W:      http://github/OpenChannelSSD
7992 L:      linux-block@vger.kernel.org
7993 S:      Maintained
7994 F:      drivers/lightnvm/
7995 F:      include/linux/lightnvm.h
7996 F:      include/uapi/linux/lightnvm.h
7997
7998 LINUX FOR POWER MACINTOSH
7999 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8000 W:      http://www.penguinppc.org/
8001 L:      linuxppc-dev@lists.ozlabs.org
8002 S:      Maintained
8003 F:      arch/powerpc/platforms/powermac/
8004 F:      drivers/macintosh/
8005
8006 LINUX FOR POWERPC (32-BIT AND 64-BIT)
8007 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8008 M:      Paul Mackerras <paulus@samba.org>
8009 M:      Michael Ellerman <mpe@ellerman.id.au>
8010 W:      https://github.com/linuxppc/linux/wiki
8011 L:      linuxppc-dev@lists.ozlabs.org
8012 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
8013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
8014 S:      Supported
8015 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
8016 F:      Documentation/devicetree/bindings/powerpc/
8017 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
8018 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
8019 F:      Documentation/powerpc/
8020 F:      arch/powerpc/
8021 F:      drivers/char/tpm/tpm_ibmvtpm*
8022 F:      drivers/crypto/nx/
8023 F:      drivers/crypto/vmx/
8024 F:      drivers/i2c/busses/i2c-opal.c
8025 F:      drivers/net/ethernet/ibm/ibmveth.*
8026 F:      drivers/net/ethernet/ibm/ibmvnic.*
8027 F:      drivers/pci/hotplug/pnv_php.c
8028 F:      drivers/pci/hotplug/rpa*
8029 F:      drivers/rtc/rtc-opal.c
8030 F:      drivers/scsi/ibmvscsi/
8031 F:      drivers/tty/hvc/hvc_opal.c
8032 F:      drivers/watchdog/wdrtas.c
8033 F:      tools/testing/selftests/powerpc
8034 N:      /pmac
8035 N:      powermac
8036 N:      powernv
8037 N:      [^a-z0-9]ps3
8038 N:      pseries
8039
8040 LINUX FOR POWERPC EMBEDDED MPC5XXX
8041 M:      Anatolij Gustschin <agust@denx.de>
8042 L:      linuxppc-dev@lists.ozlabs.org
8043 T:      git git://git.denx.de/linux-denx-agust.git
8044 S:      Maintained
8045 F:      arch/powerpc/platforms/512x/
8046 F:      arch/powerpc/platforms/52xx/
8047
8048 LINUX FOR POWERPC EMBEDDED PPC4XX
8049 M:      Alistair Popple <alistair@popple.id.au>
8050 M:      Matt Porter <mporter@kernel.crashing.org>
8051 W:      http://www.penguinppc.org/
8052 L:      linuxppc-dev@lists.ozlabs.org
8053 S:      Maintained
8054 F:      arch/powerpc/platforms/40x/
8055 F:      arch/powerpc/platforms/44x/
8056
8057 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
8058 M:      Scott Wood <oss@buserror.net>
8059 M:      Kumar Gala <galak@kernel.crashing.org>
8060 W:      http://www.penguinppc.org/
8061 L:      linuxppc-dev@lists.ozlabs.org
8062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
8063 S:      Maintained
8064 F:      arch/powerpc/platforms/83xx/
8065 F:      arch/powerpc/platforms/85xx/
8066 F:      Documentation/devicetree/bindings/powerpc/fsl/
8067
8068 LINUX FOR POWERPC EMBEDDED PPC8XX
8069 M:      Vitaly Bordug <vitb@kernel.crashing.org>
8070 W:      http://www.penguinppc.org/
8071 L:      linuxppc-dev@lists.ozlabs.org
8072 S:      Maintained
8073 F:      arch/powerpc/platforms/8xx/
8074
8075 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
8076 L:      linuxppc-dev@lists.ozlabs.org
8077 S:      Orphan
8078 F:      arch/powerpc/*/*virtex*
8079 F:      arch/powerpc/*/*/*virtex*
8080
8081 LINUX FOR POWERPC PA SEMI PWRFICIENT
8082 L:      linuxppc-dev@lists.ozlabs.org
8083 S:      Orphan
8084 F:      arch/powerpc/platforms/pasemi/
8085 F:      drivers/*/*pasemi*
8086 F:      drivers/*/*/*pasemi*
8087
8088 LINUX KERNEL DUMP TEST MODULE (LKDTM)
8089 M:      Kees Cook <keescook@chromium.org>
8090 S:      Maintained
8091 F:      drivers/misc/lkdtm*
8092
8093 LINUX SECURITY MODULE (LSM) FRAMEWORK
8094 M:      Chris Wright <chrisw@sous-sol.org>
8095 L:      linux-security-module@vger.kernel.org
8096 S:      Supported
8097
8098 LIS3LV02D ACCELEROMETER DRIVER
8099 M:      Eric Piel <eric.piel@tremplin-utc.net>
8100 S:      Maintained
8101 F:      Documentation/misc-devices/lis3lv02d
8102 F:      drivers/misc/lis3lv02d/
8103 F:      drivers/platform/x86/hp_accel.c
8104
8105 LIVE PATCHING
8106 M:      Josh Poimboeuf <jpoimboe@redhat.com>
8107 M:      Jessica Yu <jeyu@kernel.org>
8108 M:      Jiri Kosina <jikos@kernel.org>
8109 M:      Miroslav Benes <mbenes@suse.cz>
8110 R:      Petr Mladek <pmladek@suse.com>
8111 S:      Maintained
8112 F:      kernel/livepatch/
8113 F:      include/linux/livepatch.h
8114 F:      arch/x86/include/asm/livepatch.h
8115 F:      arch/x86/kernel/livepatch.c
8116 F:      Documentation/livepatch/
8117 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
8118 F:      samples/livepatch/
8119 L:      live-patching@vger.kernel.org
8120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
8121
8122 LLC (802.2)
8123 L:      netdev@vger.kernel.org
8124 S:      Odd fixes
8125 F:      include/linux/llc.h
8126 F:      include/uapi/linux/llc.h
8127 F:      include/net/llc*
8128 F:      net/llc/
8129
8130 LM73 HARDWARE MONITOR DRIVER
8131 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
8132 L:      linux-hwmon@vger.kernel.org
8133 S:      Maintained
8134 F:      drivers/hwmon/lm73.c
8135
8136 LM78 HARDWARE MONITOR DRIVER
8137 M:      Jean Delvare <jdelvare@suse.com>
8138 L:      linux-hwmon@vger.kernel.org
8139 S:      Maintained
8140 F:      Documentation/hwmon/lm78
8141 F:      drivers/hwmon/lm78.c
8142
8143 LM83 HARDWARE MONITOR DRIVER
8144 M:      Jean Delvare <jdelvare@suse.com>
8145 L:      linux-hwmon@vger.kernel.org
8146 S:      Maintained
8147 F:      Documentation/hwmon/lm83
8148 F:      drivers/hwmon/lm83.c
8149
8150 LM90 HARDWARE MONITOR DRIVER
8151 M:      Jean Delvare <jdelvare@suse.com>
8152 L:      linux-hwmon@vger.kernel.org
8153 S:      Maintained
8154 F:      Documentation/hwmon/lm90
8155 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
8156 F:      drivers/hwmon/lm90.c
8157 F:      include/dt-bindings/thermal/lm90.h
8158
8159 LM95234 HARDWARE MONITOR DRIVER
8160 M:      Guenter Roeck <linux@roeck-us.net>
8161 L:      linux-hwmon@vger.kernel.org
8162 S:      Maintained
8163 F:      Documentation/hwmon/lm95234
8164 F:      drivers/hwmon/lm95234.c
8165
8166 LME2510 MEDIA DRIVER
8167 M:      Malcolm Priestley <tvboxspy@gmail.com>
8168 L:      linux-media@vger.kernel.org
8169 W:      https://linuxtv.org
8170 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8171 S:      Maintained
8172 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
8173
8174 LOADPIN SECURITY MODULE
8175 M:      Kees Cook <keescook@chromium.org>
8176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
8177 S:      Supported
8178 F:      security/loadpin/
8179 F:      Documentation/admin-guide/LSM/LoadPin.rst
8180
8181 LOCKING PRIMITIVES
8182 M:      Peter Zijlstra <peterz@infradead.org>
8183 M:      Ingo Molnar <mingo@redhat.com>
8184 L:      linux-kernel@vger.kernel.org
8185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8186 S:      Maintained
8187 F:      Documentation/locking/
8188 F:      include/linux/lockdep.h
8189 F:      include/linux/spinlock*.h
8190 F:      arch/*/include/asm/spinlock*.h
8191 F:      include/linux/rwlock*.h
8192 F:      include/linux/mutex*.h
8193 F:      arch/*/include/asm/mutex*.h
8194 F:      include/linux/rwsem*.h
8195 F:      arch/*/include/asm/rwsem.h
8196 F:      include/linux/seqlock.h
8197 F:      lib/locking*.[ch]
8198 F:      kernel/locking/
8199
8200 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
8201 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
8202 L:      linux-ntfs-dev@lists.sourceforge.net
8203 W:      http://www.linux-ntfs.org/content/view/19/37/
8204 S:      Maintained
8205 F:      Documentation/ldm.txt
8206 F:      block/partitions/ldm.*
8207
8208 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
8209 M:      Sathya Prakash <sathya.prakash@broadcom.com>
8210 M:      Chaitra P B <chaitra.basappa@broadcom.com>
8211 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
8212 L:      MPT-FusionLinux.pdl@broadcom.com
8213 L:      linux-scsi@vger.kernel.org
8214 W:      http://www.avagotech.com/support/
8215 S:      Supported
8216 F:      drivers/message/fusion/
8217 F:      drivers/scsi/mpt2sas/
8218 F:      drivers/scsi/mpt3sas/
8219
8220 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
8221 M:      Matthew Wilcox <matthew@wil.cx>
8222 L:      linux-scsi@vger.kernel.org
8223 S:      Maintained
8224 F:      drivers/scsi/sym53c8xx_2/
8225
8226 LTC4261 HARDWARE MONITOR DRIVER
8227 M:      Guenter Roeck <linux@roeck-us.net>
8228 L:      linux-hwmon@vger.kernel.org
8229 S:      Maintained
8230 F:      Documentation/hwmon/ltc4261
8231 F:      drivers/hwmon/ltc4261.c
8232
8233 LTC4306 I2C MULTIPLEXER DRIVER
8234 M:      Michael Hennerich <michael.hennerich@analog.com>
8235 W:      http://ez.analog.com/community/linux-device-drivers
8236 L:      linux-i2c@vger.kernel.org
8237 S:      Supported
8238 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
8239 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
8240
8241 LTP (Linux Test Project)
8242 M:      Mike Frysinger <vapier@gentoo.org>
8243 M:      Cyril Hrubis <chrubis@suse.cz>
8244 M:      Wanlong Gao <wanlong.gao@gmail.com>
8245 M:      Jan Stancek <jstancek@redhat.com>
8246 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
8247 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
8248 L:      ltp@lists.linux.it (subscribers-only)
8249 W:      http://linux-test-project.github.io/
8250 T:      git git://github.com/linux-test-project/ltp.git
8251 S:      Maintained
8252
8253 M32R ARCHITECTURE
8254 W:      http://www.linux-m32r.org/
8255 S:      Orphan
8256 F:      arch/m32r/
8257
8258 M68K ARCHITECTURE
8259 M:      Geert Uytterhoeven <geert@linux-m68k.org>
8260 L:      linux-m68k@lists.linux-m68k.org
8261 W:      http://www.linux-m68k.org/
8262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
8263 S:      Maintained
8264 F:      arch/m68k/
8265 F:      drivers/zorro/
8266
8267 M68K ON APPLE MACINTOSH
8268 M:      Joshua Thompson <funaho@jurai.org>
8269 W:      http://www.mac.linux-m68k.org/
8270 L:      linux-m68k@lists.linux-m68k.org
8271 S:      Maintained
8272 F:      arch/m68k/mac/
8273
8274 M68K ON HP9000/300
8275 M:      Philip Blundell <philb@gnu.org>
8276 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
8277 S:      Maintained
8278 F:      arch/m68k/hp300/
8279
8280 M88DS3103 MEDIA DRIVER
8281 M:      Antti Palosaari <crope@iki.fi>
8282 L:      linux-media@vger.kernel.org
8283 W:      https://linuxtv.org
8284 W:      http://palosaari.fi/linux/
8285 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8286 T:      git git://linuxtv.org/anttip/media_tree.git
8287 S:      Maintained
8288 F:      drivers/media/dvb-frontends/m88ds3103*
8289
8290 M88RS2000 MEDIA DRIVER
8291 M:      Malcolm Priestley <tvboxspy@gmail.com>
8292 L:      linux-media@vger.kernel.org
8293 W:      https://linuxtv.org
8294 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8295 S:      Maintained
8296 F:      drivers/media/dvb-frontends/m88rs2000*
8297
8298 MA901 MASTERKIT USB FM RADIO DRIVER
8299 M:      Alexey Klimov <klimov.linux@gmail.com>
8300 L:      linux-media@vger.kernel.org
8301 T:      git git://linuxtv.org/media_tree.git
8302 S:      Maintained
8303 F:      drivers/media/radio/radio-ma901.c
8304
8305 MAC80211
8306 M:      Johannes Berg <johannes@sipsolutions.net>
8307 L:      linux-wireless@vger.kernel.org
8308 W:      http://wireless.kernel.org/
8309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8311 S:      Maintained
8312 F:      Documentation/networking/mac80211-injection.txt
8313 F:      include/net/mac80211.h
8314 F:      net/mac80211/
8315 F:      drivers/net/wireless/mac80211_hwsim.[ch]
8316 F:      Documentation/networking/mac80211_hwsim/README
8317
8318 MAILBOX API
8319 M:      Jassi Brar <jassisinghbrar@gmail.com>
8320 L:      linux-kernel@vger.kernel.org
8321 S:      Maintained
8322 F:      drivers/mailbox/
8323 F:      include/linux/mailbox_client.h
8324 F:      include/linux/mailbox_controller.h
8325
8326 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
8327 M:      Michael Kerrisk <mtk.manpages@gmail.com>
8328 W:      http://www.kernel.org/doc/man-pages
8329 L:      linux-man@vger.kernel.org
8330 S:      Maintained
8331
8332 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
8333 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
8334 L:      linux-mips@linux-mips.org
8335 S:      Maintained
8336 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
8337
8338 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
8339 M:      Andrew Lunn <andrew@lunn.ch>
8340 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8341 L:      netdev@vger.kernel.org
8342 S:      Maintained
8343 F:      drivers/net/dsa/mv88e6xxx/
8344 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
8345
8346 MARVELL ARMADA DRM SUPPORT
8347 M:      Russell King <linux@armlinux.org.uk>
8348 S:      Maintained
8349 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
8350 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
8351 F:      drivers/gpu/drm/armada/
8352 F:      include/uapi/drm/armada_drm.h
8353 F:      Documentation/devicetree/bindings/display/armada/
8354
8355 MARVELL CRYPTO DRIVER
8356 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
8357 M:      Arnaud Ebalard <arno@natisbad.org>
8358 F:      drivers/crypto/marvell/
8359 S:      Maintained
8360 L:      linux-crypto@vger.kernel.org
8361
8362 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
8363 M:      Mirko Lindner <mlindner@marvell.com>
8364 M:      Stephen Hemminger <stephen@networkplumber.org>
8365 L:      netdev@vger.kernel.org
8366 S:      Maintained
8367 F:      drivers/net/ethernet/marvell/sk*
8368
8369 MARVELL LIBERTAS WIRELESS DRIVER
8370 L:      libertas-dev@lists.infradead.org
8371 S:      Orphan
8372 F:      drivers/net/wireless/marvell/libertas/
8373
8374 MARVELL MACCHIATOBIN SUPPORT
8375 M:      Russell King <rmk@armlinux.org.uk>
8376 L:      linux-arm-kernel@lists.infradead.org
8377 S:      Maintained
8378 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
8379
8380 MARVELL MV643XX ETHERNET DRIVER
8381 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
8382 L:      netdev@vger.kernel.org
8383 S:      Maintained
8384 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
8385 F:      include/linux/mv643xx.h
8386
8387 MARVELL MV88X3310 PHY DRIVER
8388 M:      Russell King <rmk@armlinux.org.uk>
8389 L:      netdev@vger.kernel.org
8390 S:      Maintained
8391 F:      drivers/net/phy/marvell10g.c
8392
8393 MARVELL MVNETA ETHERNET DRIVER
8394 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8395 L:      netdev@vger.kernel.org
8396 S:      Maintained
8397 F:      drivers/net/ethernet/marvell/mvneta.*
8398
8399 MARVELL MWIFIEX WIRELESS DRIVER
8400 M:      Amitkumar Karwar <amitkarwar@gmail.com>
8401 M:      Nishant Sarmukadam <nishants@marvell.com>
8402 M:      Ganapathi Bhat <gbhat@marvell.com>
8403 M:      Xinming Hu <huxm@marvell.com>
8404 L:      linux-wireless@vger.kernel.org
8405 S:      Maintained
8406 F:      drivers/net/wireless/marvell/mwifiex/
8407
8408 MARVELL MWL8K WIRELESS DRIVER
8409 M:      Lennert Buytenhek <buytenh@wantstofly.org>
8410 L:      linux-wireless@vger.kernel.org
8411 S:      Odd Fixes
8412 F:      drivers/net/wireless/marvell/mwl8k.c
8413
8414 MARVELL NAND CONTROLLER DRIVER
8415 M:      Miquel Raynal <miquel.raynal@free-electrons.com>
8416 L:      linux-mtd@lists.infradead.org
8417 S:      Maintained
8418 F:      drivers/mtd/nand/marvell_nand.c
8419 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
8420
8421 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
8422 M:      Nicolas Pitre <nico@fluxnic.net>
8423 S:      Odd Fixes
8424 F:      drivers/mmc/host/mvsdio.*
8425
8426 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
8427 M:      Hu Ziji <huziji@marvell.com>
8428 L:      linux-mmc@vger.kernel.org
8429 S:      Supported
8430 F:      drivers/mmc/host/sdhci-xenon*
8431 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
8432
8433 MATROX FRAMEBUFFER DRIVER
8434 L:      linux-fbdev@vger.kernel.org
8435 S:      Orphan
8436 F:      drivers/video/fbdev/matrox/matroxfb_*
8437 F:      include/uapi/linux/matroxfb.h
8438
8439 MAX16065 HARDWARE MONITOR DRIVER
8440 M:      Guenter Roeck <linux@roeck-us.net>
8441 L:      linux-hwmon@vger.kernel.org
8442 S:      Maintained
8443 F:      Documentation/hwmon/max16065
8444 F:      drivers/hwmon/max16065.c
8445
8446 MAX20751 HARDWARE MONITOR DRIVER
8447 M:      Guenter Roeck <linux@roeck-us.net>
8448 L:      linux-hwmon@vger.kernel.org
8449 S:      Maintained
8450 F:      Documentation/hwmon/max20751
8451 F:      drivers/hwmon/max20751.c
8452
8453 MAX2175 SDR TUNER DRIVER
8454 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8455 L:      linux-media@vger.kernel.org
8456 T:      git git://linuxtv.org/media_tree.git
8457 S:      Maintained
8458 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
8459 F:      Documentation/media/v4l-drivers/max2175.rst
8460 F:      drivers/media/i2c/max2175*
8461 F:      include/uapi/linux/max2175.h
8462
8463 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8464 L:      linux-hwmon@vger.kernel.org
8465 S:      Orphan
8466 F:      Documentation/hwmon/max6650
8467 F:      drivers/hwmon/max6650.c
8468
8469 MAX6697 HARDWARE MONITOR DRIVER
8470 M:      Guenter Roeck <linux@roeck-us.net>
8471 L:      linux-hwmon@vger.kernel.org
8472 S:      Maintained
8473 F:      Documentation/hwmon/max6697
8474 F:      Documentation/devicetree/bindings/i2c/max6697.txt
8475 F:      drivers/hwmon/max6697.c
8476 F:      include/linux/platform_data/max6697.h
8477
8478 MAX9860 MONO AUDIO VOICE CODEC DRIVER
8479 M:      Peter Rosin <peda@axentia.se>
8480 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8481 S:      Maintained
8482 F:      Documentation/devicetree/bindings/sound/max9860.txt
8483 F:      sound/soc/codecs/max9860.*
8484
8485 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
8486 M:      Javier Martinez Canillas <javier@dowhile0.org>
8487 L:      linux-kernel@vger.kernel.org
8488 S:      Supported
8489 F:      drivers/regulator/max77802-regulator.c
8490 F:      Documentation/devicetree/bindings/*/*max77802.txt
8491 F:      include/dt-bindings/*/*max77802.h
8492
8493 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
8494 M:      Krzysztof Kozlowski <krzk@kernel.org>
8495 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8496 L:      linux-pm@vger.kernel.org
8497 S:      Supported
8498 F:      drivers/power/supply/max14577_charger.c
8499 F:      drivers/power/supply/max77693_charger.c
8500
8501 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
8502 M:      Chanwoo Choi <cw00.choi@samsung.com>
8503 M:      Krzysztof Kozlowski <krzk@kernel.org>
8504 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8505 L:      linux-kernel@vger.kernel.org
8506 S:      Supported
8507 F:      drivers/*/max14577*.c
8508 F:      drivers/*/max77686*.c
8509 F:      drivers/*/max77693*.c
8510 F:      drivers/extcon/extcon-max14577.c
8511 F:      drivers/extcon/extcon-max77693.c
8512 F:      drivers/rtc/rtc-max77686.c
8513 F:      drivers/clk/clk-max77686.c
8514 F:      Documentation/devicetree/bindings/mfd/max14577.txt
8515 F:      Documentation/devicetree/bindings/*/max77686.txt
8516 F:      Documentation/devicetree/bindings/mfd/max77693.txt
8517 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
8518 F:      include/linux/mfd/max14577*.h
8519 F:      include/linux/mfd/max77686*.h
8520 F:      include/linux/mfd/max77693*.h
8521
8522 MAXIRADIO FM RADIO RECEIVER DRIVER
8523 M:      Hans Verkuil <hverkuil@xs4all.nl>
8524 L:      linux-media@vger.kernel.org
8525 T:      git git://linuxtv.org/media_tree.git
8526 W:      https://linuxtv.org
8527 S:      Maintained
8528 F:      drivers/media/radio/radio-maxiradio*
8529
8530 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
8531 M:      Peter Rosin <peda@axentia.se>
8532 L:      linux-iio@vger.kernel.org
8533 S:      Maintained
8534 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
8535 F:      drivers/iio/potentiometer/mcp4531.c
8536
8537 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
8538 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8539 L:      linux-iio@vger.kernel.org
8540 S:      Maintained
8541 F:      drivers/iio/dac/cio-dac.c
8542
8543 MEDIA DRIVERS FOR ASCOT2E
8544 M:      Sergey Kozlov <serjk@netup.ru>
8545 M:      Abylay Ospan <aospan@netup.ru>
8546 L:      linux-media@vger.kernel.org
8547 W:      https://linuxtv.org
8548 W:      http://netup.tv/
8549 T:      git git://linuxtv.org/media_tree.git
8550 S:      Supported
8551 F:      drivers/media/dvb-frontends/ascot2e*
8552
8553 MEDIA DRIVERS FOR CXD2841ER
8554 M:      Sergey Kozlov <serjk@netup.ru>
8555 M:      Abylay Ospan <aospan@netup.ru>
8556 L:      linux-media@vger.kernel.org
8557 W:      https://linuxtv.org
8558 W:      http://netup.tv/
8559 T:      git git://linuxtv.org/media_tree.git
8560 S:      Supported
8561 F:      drivers/media/dvb-frontends/cxd2841er*
8562
8563 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
8564 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8565 L:      linux-media@vger.kernel.org
8566 W:      https://linuxtv.org
8567 T:      git git://linuxtv.org/media_tree.git
8568 S:      Maintained
8569 F:      drivers/media/pci/ddbridge/*
8570
8571 MEDIA DRIVERS FOR FREESCALE IMX
8572 M:      Steve Longerbeam <slongerbeam@gmail.com>
8573 M:      Philipp Zabel <p.zabel@pengutronix.de>
8574 L:      linux-media@vger.kernel.org
8575 T:      git git://linuxtv.org/media_tree.git
8576 S:      Maintained
8577 F:      Documentation/devicetree/bindings/media/imx.txt
8578 F:      Documentation/media/v4l-drivers/imx.rst
8579 F:      drivers/staging/media/imx/
8580 F:      include/linux/imx-media.h
8581 F:      include/media/imx.h
8582
8583 MEDIA DRIVERS FOR HELENE
8584 M:      Abylay Ospan <aospan@netup.ru>
8585 L:      linux-media@vger.kernel.org
8586 W:      https://linuxtv.org
8587 W:      http://netup.tv/
8588 T:      git git://linuxtv.org/media_tree.git
8589 S:      Supported
8590 F:      drivers/media/dvb-frontends/helene*
8591
8592 MEDIA DRIVERS FOR HORUS3A
8593 M:      Sergey Kozlov <serjk@netup.ru>
8594 M:      Abylay Ospan <aospan@netup.ru>
8595 L:      linux-media@vger.kernel.org
8596 W:      https://linuxtv.org
8597 W:      http://netup.tv/
8598 T:      git git://linuxtv.org/media_tree.git
8599 S:      Supported
8600 F:      drivers/media/dvb-frontends/horus3a*
8601
8602 MEDIA DRIVERS FOR LNBH25
8603 M:      Sergey Kozlov <serjk@netup.ru>
8604 M:      Abylay Ospan <aospan@netup.ru>
8605 L:      linux-media@vger.kernel.org
8606 W:      https://linuxtv.org
8607 W:      http://netup.tv/
8608 T:      git git://linuxtv.org/media_tree.git
8609 S:      Supported
8610 F:      drivers/media/dvb-frontends/lnbh25*
8611
8612 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
8613 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8614 L:      linux-media@vger.kernel.org
8615 W:      https://linuxtv.org
8616 T:      git git://linuxtv.org/media_tree.git
8617 S:      Maintained
8618 F:      drivers/media/dvb-frontends/mxl5xx*
8619
8620 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
8621 M:      Sergey Kozlov <serjk@netup.ru>
8622 M:      Abylay Ospan <aospan@netup.ru>
8623 L:      linux-media@vger.kernel.org
8624 W:      https://linuxtv.org
8625 W:      http://netup.tv/
8626 T:      git git://linuxtv.org/media_tree.git
8627 S:      Supported
8628 F:      drivers/media/pci/netup_unidvb/*
8629
8630 MEDIA DRIVERS FOR RENESAS - DRIF
8631 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8632 L:      linux-media@vger.kernel.org
8633 L:      linux-renesas-soc@vger.kernel.org
8634 T:      git git://linuxtv.org/media_tree.git
8635 S:      Supported
8636 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
8637 F:      drivers/media/platform/rcar_drif.c
8638
8639 MEDIA DRIVERS FOR RENESAS - FCP
8640 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8641 L:      linux-media@vger.kernel.org
8642 L:      linux-renesas-soc@vger.kernel.org
8643 T:      git git://linuxtv.org/media_tree.git
8644 S:      Supported
8645 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
8646 F:      drivers/media/platform/rcar-fcp.c
8647 F:      include/media/rcar-fcp.h
8648
8649 MEDIA DRIVERS FOR RENESAS - FDP1
8650 M:      Kieran Bingham <kieran@bingham.xyz>
8651 L:      linux-media@vger.kernel.org
8652 L:      linux-renesas-soc@vger.kernel.org
8653 T:      git git://linuxtv.org/media_tree.git
8654 S:      Supported
8655 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
8656 F:      drivers/media/platform/rcar_fdp1.c
8657
8658 MEDIA DRIVERS FOR RENESAS - VIN
8659 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
8660 L:      linux-media@vger.kernel.org
8661 L:      linux-renesas-soc@vger.kernel.org
8662 T:      git git://linuxtv.org/media_tree.git
8663 S:      Supported
8664 F:      Documentation/devicetree/bindings/media/rcar_vin.txt
8665 F:      drivers/media/platform/rcar-vin/
8666
8667 MEDIA DRIVERS FOR RENESAS - VSP1
8668 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8669 L:      linux-media@vger.kernel.org
8670 L:      linux-renesas-soc@vger.kernel.org
8671 T:      git git://linuxtv.org/media_tree.git
8672 S:      Supported
8673 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
8674 F:      drivers/media/platform/vsp1/
8675
8676 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
8677 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8678 L:      linux-media@vger.kernel.org
8679 W:      https://linuxtv.org
8680 T:      git git://linuxtv.org/media_tree.git
8681 S:      Maintained
8682 F:      drivers/media/dvb-frontends/stv0910*
8683
8684 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
8685 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8686 L:      linux-media@vger.kernel.org
8687 W:      https://linuxtv.org
8688 T:      git git://linuxtv.org/media_tree.git
8689 S:      Maintained
8690 F:      drivers/media/dvb-frontends/stv6111*
8691
8692 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
8693 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
8694 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
8695 P:      LinuxTV.org Project
8696 L:      linux-media@vger.kernel.org
8697 W:      https://linuxtv.org
8698 Q:      http://patchwork.kernel.org/project/linux-media/list/
8699 T:      git git://linuxtv.org/media_tree.git
8700 S:      Maintained
8701 F:      Documentation/devicetree/bindings/media/
8702 F:      Documentation/media/
8703 F:      drivers/media/
8704 F:      drivers/staging/media/
8705 F:      include/linux/platform_data/media/
8706 F:      include/media/
8707 F:      include/uapi/linux/dvb/
8708 F:      include/uapi/linux/videodev2.h
8709 F:      include/uapi/linux/media.h
8710 F:      include/uapi/linux/v4l2-*
8711 F:      include/uapi/linux/meye.h
8712 F:      include/uapi/linux/ivtv*
8713 F:      include/uapi/linux/uvcvideo.h
8714
8715 MEDIATEK CIR DRIVER
8716 M:      Sean Wang <sean.wang@mediatek.com>
8717 S:      Maintained
8718 F:      drivers/media/rc/mtk-cir.c
8719
8720 MEDIATEK PMIC LED DRIVER
8721 M:      Sean Wang <sean.wang@mediatek.com>
8722 S:      Maintained
8723 F:      drivers/leds/leds-mt6323.c
8724 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
8725
8726 MEDIATEK ETHERNET DRIVER
8727 M:      Felix Fietkau <nbd@openwrt.org>
8728 M:      John Crispin <john@phrozen.org>
8729 M:      Sean Wang <sean.wang@mediatek.com>
8730 M:      Nelson Chang <nelson.chang@mediatek.com>
8731 L:      netdev@vger.kernel.org
8732 S:      Maintained
8733 F:      drivers/net/ethernet/mediatek/
8734
8735 MEDIATEK JPEG DRIVER
8736 M:      Rick Chang <rick.chang@mediatek.com>
8737 M:      Bin Liu <bin.liu@mediatek.com>
8738 S:      Supported
8739 F:      drivers/media/platform/mtk-jpeg/
8740 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
8741
8742 MEDIATEK MDP DRIVER
8743 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
8744 M:      Houlong Wei <houlong.wei@mediatek.com>
8745 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8746 S:      Supported
8747 F:      drivers/media/platform/mtk-mdp/
8748 F:      drivers/media/platform/mtk-vpu/
8749 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
8750
8751 MEDIATEK MEDIA DRIVER
8752 M:      Tiffany Lin <tiffany.lin@mediatek.com>
8753 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8754 S:      Supported
8755 F:      drivers/media/platform/mtk-vcodec/
8756 F:      drivers/media/platform/mtk-vpu/
8757 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
8758 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
8759
8760 MEDIATEK MT7601U WIRELESS LAN DRIVER
8761 M:      Jakub Kicinski <kubakici@wp.pl>
8762 L:      linux-wireless@vger.kernel.org
8763 S:      Maintained
8764 F:      drivers/net/wireless/mediatek/mt7601u/
8765
8766 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
8767 M:      Sean Wang <sean.wang@mediatek.com>
8768 S:      Maintained
8769 F:      drivers/char/hw_random/mtk-rng.c
8770
8771 MEDIATEK USB3 DRD IP DRIVER
8772 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
8773 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
8774 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8775 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
8776 S:      Maintained
8777 F:      drivers/usb/mtu3/
8778
8779 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
8780 M:      Peter Senna Tschudin <peter.senna@collabora.com>
8781 M:      Martin Donnelly <martin.donnelly@ge.com>
8782 M:      Martyn Welch <martyn.welch@collabora.co.uk>
8783 S:      Maintained
8784 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
8785 F:      Documentation/devicetree/bindings/video/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
8786
8787 MEGARAID SCSI/SAS DRIVERS
8788 M:      Kashyap Desai <kashyap.desai@broadcom.com>
8789 M:      Sumit Saxena <sumit.saxena@broadcom.com>
8790 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
8791 L:      megaraidlinux.pdl@broadcom.com
8792 L:      linux-scsi@vger.kernel.org
8793 W:      http://www.avagotech.com/support/
8794 S:      Maintained
8795 F:      Documentation/scsi/megaraid.txt
8796 F:      drivers/scsi/megaraid.*
8797 F:      drivers/scsi/megaraid/
8798
8799 MELEXIS MLX90614 DRIVER
8800 M:      Crt Mori <cmo@melexis.com>
8801 L:      linux-iio@vger.kernel.org
8802 W:      http://www.melexis.com
8803 S:      Supported
8804 F:      drivers/iio/temperature/mlx90614.c
8805
8806 MELFAS MIP4 TOUCHSCREEN DRIVER
8807 M:      Sangwon Jee <jeesw@melfas.com>
8808 W:      http://www.melfas.com
8809 S:      Supported
8810 F:      drivers/input/touchscreen/melfas_mip4.c
8811 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
8812
8813 MELLANOX ETHERNET DRIVER (mlx4_en)
8814 M:      Tariq Toukan <tariqt@mellanox.com>
8815 L:      netdev@vger.kernel.org
8816 S:      Supported
8817 W:      http://www.mellanox.com
8818 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8819 F:      drivers/net/ethernet/mellanox/mlx4/en_*
8820
8821 MELLANOX ETHERNET DRIVER (mlx5e)
8822 M:      Saeed Mahameed <saeedm@mellanox.com>
8823 L:      netdev@vger.kernel.org
8824 S:      Supported
8825 W:      http://www.mellanox.com
8826 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8827 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
8828
8829 MELLANOX ETHERNET INNOVA DRIVER
8830 M:      Ilan Tayari <ilant@mellanox.com>
8831 R:      Boris Pismenny <borisp@mellanox.com>
8832 L:      netdev@vger.kernel.org
8833 S:      Supported
8834 W:      http://www.mellanox.com
8835 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8836 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
8837 F:      include/linux/mlx5/mlx5_ifc_fpga.h
8838
8839 MELLANOX ETHERNET INNOVA IPSEC DRIVER
8840 M:      Ilan Tayari <ilant@mellanox.com>
8841 R:      Boris Pismenny <borisp@mellanox.com>
8842 L:      netdev@vger.kernel.org
8843 S:      Supported
8844 W:      http://www.mellanox.com
8845 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8846 F:      drivers/net/ethernet/mellanox/mlx5/core/en_ipsec/*
8847 F:      drivers/net/ethernet/mellanox/mlx5/core/ipsec*
8848
8849 MELLANOX ETHERNET SWITCH DRIVERS
8850 M:      Jiri Pirko <jiri@mellanox.com>
8851 M:      Ido Schimmel <idosch@mellanox.com>
8852 L:      netdev@vger.kernel.org
8853 S:      Supported
8854 W:      http://www.mellanox.com
8855 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8856 F:      drivers/net/ethernet/mellanox/mlxsw/
8857
8858 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
8859 M:      mlxsw@mellanox.com
8860 L:      netdev@vger.kernel.org
8861 S:      Supported
8862 W:      http://www.mellanox.com
8863 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8864 F:      drivers/net/ethernet/mellanox/mlxfw/
8865
8866 MELLANOX MLX CPLD HOTPLUG DRIVER
8867 M:      Vadim Pasternak <vadimp@mellanox.com>
8868 L:      platform-driver-x86@vger.kernel.org
8869 S:      Supported
8870 F:      drivers/platform/x86/mlxcpld-hotplug.c
8871 F:      include/linux/platform_data/mlxcpld-hotplug.h
8872
8873 MELLANOX MLX4 core VPI driver
8874 M:      Tariq Toukan <tariqt@mellanox.com>
8875 L:      netdev@vger.kernel.org
8876 L:      linux-rdma@vger.kernel.org
8877 W:      http://www.mellanox.com
8878 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8879 S:      Supported
8880 F:      drivers/net/ethernet/mellanox/mlx4/
8881 F:      include/linux/mlx4/
8882
8883 MELLANOX MLX4 IB driver
8884 M:      Yishai Hadas <yishaih@mellanox.com>
8885 L:      linux-rdma@vger.kernel.org
8886 W:      http://www.mellanox.com
8887 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8888 S:      Supported
8889 F:      drivers/infiniband/hw/mlx4/
8890 F:      include/linux/mlx4/
8891 F:      include/uapi/rdma/mlx4-abi.h
8892
8893 MELLANOX MLX5 core VPI driver
8894 M:      Saeed Mahameed <saeedm@mellanox.com>
8895 M:      Matan Barak <matanb@mellanox.com>
8896 M:      Leon Romanovsky <leonro@mellanox.com>
8897 L:      netdev@vger.kernel.org
8898 L:      linux-rdma@vger.kernel.org
8899 W:      http://www.mellanox.com
8900 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8901 S:      Supported
8902 F:      drivers/net/ethernet/mellanox/mlx5/core/
8903 F:      include/linux/mlx5/
8904
8905 MELLANOX MLX5 IB driver
8906 M:      Matan Barak <matanb@mellanox.com>
8907 M:      Leon Romanovsky <leonro@mellanox.com>
8908 L:      linux-rdma@vger.kernel.org
8909 W:      http://www.mellanox.com
8910 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8911 S:      Supported
8912 F:      drivers/infiniband/hw/mlx5/
8913 F:      include/linux/mlx5/
8914 F:      include/uapi/rdma/mlx5-abi.h
8915
8916 MELLANOX MLXCPLD I2C AND MUX DRIVER
8917 M:      Vadim Pasternak <vadimp@mellanox.com>
8918 M:      Michael Shych <michaelsh@mellanox.com>
8919 L:      linux-i2c@vger.kernel.org
8920 S:      Supported
8921 F:      drivers/i2c/busses/i2c-mlxcpld.c
8922 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
8923 F:      Documentation/i2c/busses/i2c-mlxcpld
8924
8925 MELLANOX MLXCPLD LED DRIVER
8926 M:      Vadim Pasternak <vadimp@mellanox.com>
8927 L:      linux-leds@vger.kernel.org
8928 S:      Supported
8929 F:      drivers/leds/leds-mlxcpld.c
8930 F:      Documentation/leds/leds-mlxcpld.txt
8931
8932 MELLANOX PLATFORM DRIVER
8933 M:      Vadim Pasternak <vadimp@mellanox.com>
8934 L:      platform-driver-x86@vger.kernel.org
8935 S:      Supported
8936 F:      drivers/platform/x86/mlx-platform.c
8937
8938 MEMBARRIER SUPPORT
8939 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8940 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8941 L:      linux-kernel@vger.kernel.org
8942 S:      Supported
8943 F:      kernel/sched/membarrier.c
8944 F:      include/uapi/linux/membarrier.h
8945
8946 MEMORY MANAGEMENT
8947 L:      linux-mm@kvack.org
8948 W:      http://www.linux-mm.org
8949 S:      Maintained
8950 F:      include/linux/mm.h
8951 F:      include/linux/gfp.h
8952 F:      include/linux/mmzone.h
8953 F:      include/linux/memory_hotplug.h
8954 F:      include/linux/vmalloc.h
8955 F:      mm/
8956
8957 MEMORY TECHNOLOGY DEVICES (MTD)
8958 M:      David Woodhouse <dwmw2@infradead.org>
8959 M:      Brian Norris <computersforpeace@gmail.com>
8960 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
8961 M:      Marek Vasut <marek.vasut@gmail.com>
8962 M:      Richard Weinberger <richard@nod.at>
8963 M:      Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
8964 L:      linux-mtd@lists.infradead.org
8965 W:      http://www.linux-mtd.infradead.org/
8966 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8967 T:      git git://git.infradead.org/linux-mtd.git master
8968 T:      git git://git.infradead.org/linux-mtd.git mtd/next
8969 S:      Maintained
8970 F:      Documentation/devicetree/bindings/mtd/
8971 F:      drivers/mtd/
8972 F:      include/linux/mtd/
8973 F:      include/uapi/mtd/
8974
8975 MEN A21 WATCHDOG DRIVER
8976 M:      Johannes Thumshirn <morbidrsa@gmail.com>
8977 L:      linux-watchdog@vger.kernel.org
8978 S:      Maintained
8979 F:      drivers/watchdog/mena21_wdt.c
8980
8981 MEN CHAMELEON BUS (mcb)
8982 M:      Johannes Thumshirn <morbidrsa@gmail.com>
8983 S:      Maintained
8984 F:      drivers/mcb/
8985 F:      include/linux/mcb.h
8986 F:      Documentation/men-chameleon-bus.txt
8987
8988 MEN F21BMC (Board Management Controller)
8989 M:      Andreas Werner <andreas.werner@men.de>
8990 S:      Supported
8991 F:      drivers/mfd/menf21bmc.c
8992 F:      drivers/watchdog/menf21bmc_wdt.c
8993 F:      drivers/leds/leds-menf21bmc.c
8994 F:      drivers/hwmon/menf21bmc_hwmon.c
8995 F:      Documentation/hwmon/menf21bmc
8996
8997 MESON AO CEC DRIVER FOR AMLOGIC SOCS
8998 M:      Neil Armstrong <narmstrong@baylibre.com>
8999 L:      linux-media@lists.freedesktop.org
9000 L:      linux-amlogic@lists.infradead.org
9001 W:      http://linux-meson.com/
9002 S:      Supported
9003 F:      drivers/media/platform/meson/ao-cec.c
9004 F:      Documentation/devicetree/bindings/media/meson-ao-cec.txt
9005 T:      git git://linuxtv.org/media_tree.git
9006
9007 METAG ARCHITECTURE
9008 M:      James Hogan <jhogan@kernel.org>
9009 L:      linux-metag@vger.kernel.org
9010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
9011 S:      Odd Fixes
9012 F:      arch/metag/
9013 F:      Documentation/metag/
9014 F:      Documentation/devicetree/bindings/metag/
9015 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
9016 F:      drivers/clocksource/metag_generic.c
9017 F:      drivers/irqchip/irq-metag.c
9018 F:      drivers/irqchip/irq-metag-ext.c
9019 F:      drivers/tty/metag_da.c
9020
9021 MICROBLAZE ARCHITECTURE
9022 M:      Michal Simek <monstr@monstr.eu>
9023 W:      http://www.monstr.eu/fdt/
9024 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
9025 S:      Supported
9026 F:      arch/microblaze/
9027
9028 MICROCHIP / ATMEL AT91 SERIAL DRIVER
9029 M:      Richard Genoud <richard.genoud@gmail.com>
9030 S:      Maintained
9031 F:      drivers/tty/serial/atmel_serial.c
9032 F:      drivers/tty/serial/atmel_serial.h
9033
9034 MICROCHIP / ATMEL DMA DRIVER
9035 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
9036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9037 L:      dmaengine@vger.kernel.org
9038 S:      Supported
9039 F:      drivers/dma/at_hdmac.c
9040 F:      drivers/dma/at_hdmac_regs.h
9041 F:      include/linux/platform_data/dma-atmel.h
9042
9043 MICROCHIP / ATMEL ECC DRIVER
9044 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
9045 L:      linux-crypto@vger.kernel.org
9046 S:      Maintained
9047 F:      drivers/crypto/atmel-ecc.*
9048
9049 MICROCHIP / ATMEL ISC DRIVER
9050 M:      Songjun Wu <songjun.wu@microchip.com>
9051 L:      linux-media@vger.kernel.org
9052 S:      Supported
9053 F:      drivers/media/platform/atmel/atmel-isc.c
9054 F:      drivers/media/platform/atmel/atmel-isc-regs.h
9055 F:      devicetree/bindings/media/atmel-isc.txt
9056
9057 MICROCHIP / ATMEL NAND DRIVER
9058 M:      Wenyou Yang <wenyou.yang@microchip.com>
9059 M:      Josh Wu <rainyfeeling@outlook.com>
9060 L:      linux-mtd@lists.infradead.org
9061 S:      Supported
9062 F:      drivers/mtd/nand/atmel/*
9063 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
9064
9065 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
9066 M:      Woojung Huh <Woojung.Huh@microchip.com>
9067 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
9068 L:      netdev@vger.kernel.org
9069 S:      Maintained
9070 F:      net/dsa/tag_ksz.c
9071 F:      drivers/net/dsa/microchip/*
9072 F:      include/linux/platform_data/microchip-ksz.h
9073 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
9074
9075 MICROCHIP USB251XB DRIVER
9076 M:      Richard Leitner <richard.leitner@skidata.com>
9077 L:      linux-usb@vger.kernel.org
9078 S:      Maintained
9079 F:      drivers/usb/misc/usb251xb.c
9080 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
9081
9082 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
9083 M:      Don Brace <don.brace@microsemi.com>
9084 L:      esc.storagedev@microsemi.com
9085 L:      linux-scsi@vger.kernel.org
9086 S:      Supported
9087 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
9088 F:      drivers/scsi/smartpqi/Kconfig
9089 F:      drivers/scsi/smartpqi/Makefile
9090 F:      include/linux/cciss*.h
9091 F:      include/uapi/linux/cciss*.h
9092 F:      Documentation/scsi/smartpqi.txt
9093
9094 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
9095 M:      Chen Yu <yu.c.chen@intel.com>
9096 L:      platform-driver-x86@vger.kernel.org
9097 S:      Supported
9098 F:      drivers/platform/x86/surfacepro3_button.c
9099
9100 MICROTEK X6 SCANNER
9101 M:      Oliver Neukum <oliver@neukum.org>
9102 S:      Maintained
9103 F:      drivers/usb/image/microtek.*
9104
9105 MIPS
9106 M:      Ralf Baechle <ralf@linux-mips.org>
9107 M:      James Hogan <jhogan@kernel.org>
9108 L:      linux-mips@linux-mips.org
9109 W:      http://www.linux-mips.org/
9110 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
9111 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
9112 S:      Supported
9113 F:      Documentation/devicetree/bindings/mips/
9114 F:      Documentation/mips/
9115 F:      arch/mips/
9116
9117 MIPS BOSTON DEVELOPMENT BOARD
9118 M:      Paul Burton <paul.burton@mips.com>
9119 L:      linux-mips@linux-mips.org
9120 S:      Maintained
9121 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
9122 F:      arch/mips/boot/dts/img/boston.dts
9123 F:      arch/mips/configs/generic/board-boston.config
9124 F:      drivers/clk/imgtec/clk-boston.c
9125 F:      include/dt-bindings/clock/boston-clock.h
9126
9127 MIPS GENERIC PLATFORM
9128 M:      Paul Burton <paul.burton@mips.com>
9129 L:      linux-mips@linux-mips.org
9130 S:      Supported
9131 F:      arch/mips/generic/
9132 F:      arch/mips/tools/generic-board-config.sh
9133
9134 MIPS/LOONGSON1 ARCHITECTURE
9135 M:      Keguang Zhang <keguang.zhang@gmail.com>
9136 L:      linux-mips@linux-mips.org
9137 S:      Maintained
9138 F:      arch/mips/loongson32/
9139 F:      arch/mips/include/asm/mach-loongson32/
9140 F:      drivers/*/*loongson1*
9141 F:      drivers/*/*/*loongson1*
9142
9143 MIPS RINT INSTRUCTION EMULATION
9144 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
9145 L:      linux-mips@linux-mips.org
9146 S:      Supported
9147 F:      arch/mips/math-emu/sp_rint.c
9148 F:      arch/mips/math-emu/dp_rint.c
9149
9150 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
9151 M:      Hans Verkuil <hverkuil@xs4all.nl>
9152 L:      linux-media@vger.kernel.org
9153 T:      git git://linuxtv.org/media_tree.git
9154 W:      https://linuxtv.org
9155 S:      Odd Fixes
9156 F:      drivers/media/radio/radio-miropcm20*
9157
9158 MMP SUPPORT
9159 M:      Eric Miao <eric.y.miao@gmail.com>
9160 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9162 T:      git git://github.com/hzhuang1/linux.git
9163 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
9164 S:      Maintained
9165 F:      arch/arm/boot/dts/mmp*
9166 F:      arch/arm/mach-mmp/
9167
9168 MN88472 MEDIA DRIVER
9169 M:      Antti Palosaari <crope@iki.fi>
9170 L:      linux-media@vger.kernel.org
9171 W:      https://linuxtv.org
9172 W:      http://palosaari.fi/linux/
9173 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9174 S:      Maintained
9175 F:      drivers/media/dvb-frontends/mn88472*
9176
9177 MN88473 MEDIA DRIVER
9178 M:      Antti Palosaari <crope@iki.fi>
9179 L:      linux-media@vger.kernel.org
9180 W:      https://linuxtv.org
9181 W:      http://palosaari.fi/linux/
9182 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9183 S:      Maintained
9184 F:      drivers/media/dvb-frontends/mn88473*
9185
9186 MODULE SUPPORT
9187 M:      Jessica Yu <jeyu@kernel.org>
9188 M:      Rusty Russell <rusty@rustcorp.com.au>
9189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
9190 S:      Maintained
9191 F:      include/linux/module.h
9192 F:      kernel/module.c
9193
9194 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
9195 W:      http://popies.net/meye/
9196 S:      Orphan
9197 F:      Documentation/media/v4l-drivers/meye*
9198 F:      drivers/media/pci/meye/
9199 F:      include/uapi/linux/meye.h
9200
9201 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
9202 M:      Jiri Slaby <jirislaby@gmail.com>
9203 S:      Maintained
9204 F:      Documentation/serial/moxa-smartio
9205 F:      drivers/tty/mxser.*
9206
9207 MR800 AVERMEDIA USB FM RADIO DRIVER
9208 M:      Alexey Klimov <klimov.linux@gmail.com>
9209 L:      linux-media@vger.kernel.org
9210 T:      git git://linuxtv.org/media_tree.git
9211 S:      Maintained
9212 F:      drivers/media/radio/radio-mr800.c
9213
9214 MRF24J40 IEEE 802.15.4 RADIO DRIVER
9215 M:      Alan Ott <alan@signal11.us>
9216 L:      linux-wpan@vger.kernel.org
9217 S:      Maintained
9218 F:      drivers/net/ieee802154/mrf24j40.c
9219 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
9220
9221 MSI LAPTOP SUPPORT
9222 M:      "Lee, Chun-Yi" <jlee@suse.com>
9223 L:      platform-driver-x86@vger.kernel.org
9224 S:      Maintained
9225 F:      drivers/platform/x86/msi-laptop.c
9226
9227 MSI WMI SUPPORT
9228 L:      platform-driver-x86@vger.kernel.org
9229 S:      Orphan
9230 F:      drivers/platform/x86/msi-wmi.c
9231
9232 MSI001 MEDIA DRIVER
9233 M:      Antti Palosaari <crope@iki.fi>
9234 L:      linux-media@vger.kernel.org
9235 W:      https://linuxtv.org
9236 W:      http://palosaari.fi/linux/
9237 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9238 T:      git git://linuxtv.org/anttip/media_tree.git
9239 S:      Maintained
9240 F:      drivers/media/tuners/msi001*
9241
9242 MSI2500 MEDIA DRIVER
9243 M:      Antti Palosaari <crope@iki.fi>
9244 L:      linux-media@vger.kernel.org
9245 W:      https://linuxtv.org
9246 W:      http://palosaari.fi/linux/
9247 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9248 T:      git git://linuxtv.org/anttip/media_tree.git
9249 S:      Maintained
9250 F:      drivers/media/usb/msi2500/
9251
9252 MSYSTEMS DISKONCHIP G3 MTD DRIVER
9253 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9254 L:      linux-mtd@lists.infradead.org
9255 S:      Maintained
9256 F:      drivers/mtd/devices/docg3*
9257
9258 MT9M032 APTINA SENSOR DRIVER
9259 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9260 L:      linux-media@vger.kernel.org
9261 T:      git git://linuxtv.org/media_tree.git
9262 S:      Maintained
9263 F:      drivers/media/i2c/mt9m032.c
9264 F:      include/media/i2c/mt9m032.h
9265
9266 MT9P031 APTINA CAMERA SENSOR
9267 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9268 L:      linux-media@vger.kernel.org
9269 T:      git git://linuxtv.org/media_tree.git
9270 S:      Maintained
9271 F:      drivers/media/i2c/mt9p031.c
9272 F:      include/media/i2c/mt9p031.h
9273
9274 MT9T001 APTINA CAMERA SENSOR
9275 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9276 L:      linux-media@vger.kernel.org
9277 T:      git git://linuxtv.org/media_tree.git
9278 S:      Maintained
9279 F:      drivers/media/i2c/mt9t001.c
9280 F:      include/media/i2c/mt9t001.h
9281
9282 MT9V032 APTINA CAMERA SENSOR
9283 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9284 L:      linux-media@vger.kernel.org
9285 T:      git git://linuxtv.org/media_tree.git
9286 S:      Maintained
9287 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
9288 F:      drivers/media/i2c/mt9v032.c
9289 F:      include/media/i2c/mt9v032.h
9290
9291 MULTIFUNCTION DEVICES (MFD)
9292 M:      Lee Jones <lee.jones@linaro.org>
9293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
9294 S:      Supported
9295 F:      Documentation/devicetree/bindings/mfd/
9296 F:      drivers/mfd/
9297 F:      include/linux/mfd/
9298 F:      include/dt-bindings/mfd/
9299
9300 MULTIMEDIA CARD (MMC) ETC. OVER SPI
9301 S:      Orphan
9302 F:      drivers/mmc/host/mmc_spi.c
9303 F:      include/linux/spi/mmc_spi.h
9304
9305 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
9306 M:      Ulf Hansson <ulf.hansson@linaro.org>
9307 L:      linux-mmc@vger.kernel.org
9308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
9309 S:      Maintained
9310 F:      Documentation/devicetree/bindings/mmc/
9311 F:      drivers/mmc/
9312 F:      include/linux/mmc/
9313 F:      include/uapi/linux/mmc/
9314
9315 MULTIPLEXER SUBSYSTEM
9316 M:      Peter Rosin <peda@axentia.se>
9317 S:      Maintained
9318 F:      Documentation/ABI/testing/mux/sysfs-class-mux*
9319 F:      Documentation/devicetree/bindings/mux/
9320 F:      include/linux/dt-bindings/mux/
9321 F:      include/linux/mux/
9322 F:      drivers/mux/
9323
9324 MULTITECH MULTIPORT CARD (ISICOM)
9325 S:      Orphan
9326 F:      drivers/tty/isicom.c
9327 F:      include/linux/isicom.h
9328
9329 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
9330 M:      Bin Liu <b-liu@ti.com>
9331 L:      linux-usb@vger.kernel.org
9332 S:      Maintained
9333 F:      drivers/usb/musb/
9334
9335 MXL5007T MEDIA DRIVER
9336 M:      Michael Krufky <mkrufky@linuxtv.org>
9337 L:      linux-media@vger.kernel.org
9338 W:      https://linuxtv.org
9339 W:      http://github.com/mkrufky
9340 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9341 T:      git git://linuxtv.org/mkrufky/tuners.git
9342 S:      Maintained
9343 F:      drivers/media/tuners/mxl5007t.*
9344
9345 MXSFB DRM DRIVER
9346 M:      Marek Vasut <marex@denx.de>
9347 S:      Supported
9348 F:      drivers/gpu/drm/mxsfb/
9349 F:      Documentation/devicetree/bindings/display/mxsfb-drm.txt
9350
9351 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
9352 M:      Chris Lee <christopher.lee@cspi.com>
9353 L:      netdev@vger.kernel.org
9354 W:      https://www.cspi.com/ethernet-products/support/downloads/
9355 S:      Supported
9356 F:      drivers/net/ethernet/myricom/myri10ge/
9357
9358 NAND FLASH SUBSYSTEM
9359 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
9360 R:      Richard Weinberger <richard@nod.at>
9361 L:      linux-mtd@lists.infradead.org
9362 W:      http://www.linux-mtd.infradead.org/
9363 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9364 T:      git git://git.infradead.org/linux-mtd.git nand/fixes
9365 T:      git git://git.infradead.org/linux-mtd.git nand/next
9366 S:      Maintained
9367 F:      drivers/mtd/nand/
9368 F:      include/linux/mtd/*nand*.h
9369
9370 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
9371 M:      Daniel Mack <zonque@gmail.com>
9372 S:      Maintained
9373 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9374 W:      http://www.native-instruments.com
9375 F:      sound/usb/caiaq/
9376
9377 NATSEMI ETHERNET DRIVER (DP8381x)
9378 S:      Orphan
9379 F:      drivers/net/ethernet/natsemi/natsemi.c
9380
9381 NCP FILESYSTEM
9382 M:      Petr Vandrovec <petr@vandrovec.name>
9383 S:      Odd Fixes
9384 F:      fs/ncpfs/
9385
9386 NCR 5380 SCSI DRIVERS
9387 M:      Finn Thain <fthain@telegraphics.com.au>
9388 M:      Michael Schmitz <schmitzmic@gmail.com>
9389 L:      linux-scsi@vger.kernel.org
9390 S:      Maintained
9391 F:      Documentation/scsi/g_NCR5380.txt
9392 F:      drivers/scsi/NCR5380.*
9393 F:      drivers/scsi/arm/cumana_1.c
9394 F:      drivers/scsi/arm/oak.c
9395 F:      drivers/scsi/atari_scsi.*
9396 F:      drivers/scsi/dmx3191d.c
9397 F:      drivers/scsi/g_NCR5380.*
9398 F:      drivers/scsi/mac_scsi.*
9399 F:      drivers/scsi/sun3_scsi.*
9400 F:      drivers/scsi/sun3_scsi_vme.c
9401
9402 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
9403 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9404 L:      linux-scsi@vger.kernel.org
9405 S:      Maintained
9406 F:      drivers/scsi/NCR_D700.*
9407
9408 NCT6775 HARDWARE MONITOR DRIVER
9409 M:      Guenter Roeck <linux@roeck-us.net>
9410 L:      linux-hwmon@vger.kernel.org
9411 S:      Maintained
9412 F:      Documentation/hwmon/nct6775
9413 F:      drivers/hwmon/nct6775.c
9414
9415 NETEFFECT IWARP RNIC DRIVER (IW_NES)
9416 M:      Faisal Latif <faisal.latif@intel.com>
9417 L:      linux-rdma@vger.kernel.org
9418 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
9419 S:      Supported
9420 F:      drivers/infiniband/hw/nes/
9421 F:      include/uapi/rdma/nes-abi.h
9422
9423 NETEM NETWORK EMULATOR
9424 M:      Stephen Hemminger <stephen@networkplumber.org>
9425 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
9426 S:      Maintained
9427 F:      net/sched/sch_netem.c
9428
9429 NETERION 10GbE DRIVERS (s2io/vxge)
9430 M:      Jon Mason <jdmason@kudzu.us>
9431 L:      netdev@vger.kernel.org
9432 S:      Supported
9433 F:      Documentation/networking/s2io.txt
9434 F:      Documentation/networking/vxge.txt
9435 F:      drivers/net/ethernet/neterion/
9436
9437 NETFILTER
9438 M:      Pablo Neira Ayuso <pablo@netfilter.org>
9439 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
9440 M:      Florian Westphal <fw@strlen.de>
9441 L:      netfilter-devel@vger.kernel.org
9442 L:      coreteam@netfilter.org
9443 W:      http://www.netfilter.org/
9444 W:      http://www.iptables.org/
9445 W:      http://www.nftables.org/
9446 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
9447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
9448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
9449 S:      Maintained
9450 F:      include/linux/netfilter*
9451 F:      include/linux/netfilter/
9452 F:      include/net/netfilter/
9453 F:      include/uapi/linux/netfilter*
9454 F:      include/uapi/linux/netfilter/
9455 F:      net/*/netfilter.c
9456 F:      net/*/netfilter/
9457 F:      net/netfilter/
9458 F:      net/bridge/br_netfilter*.c
9459
9460 NETROM NETWORK LAYER
9461 M:      Ralf Baechle <ralf@linux-mips.org>
9462 L:      linux-hams@vger.kernel.org
9463 W:      http://www.linux-ax25.org/
9464 S:      Maintained
9465 F:      include/net/netrom.h
9466 F:      include/uapi/linux/netrom.h
9467 F:      net/netrom/
9468
9469 NETRONOME ETHERNET DRIVERS
9470 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
9471 L:      oss-drivers@netronome.com
9472 S:      Maintained
9473 F:      drivers/net/ethernet/netronome/
9474
9475 NETWORK BLOCK DEVICE (NBD)
9476 M:      Josef Bacik <jbacik@fb.com>
9477 S:      Maintained
9478 L:      linux-block@vger.kernel.org
9479 L:      nbd@other.debian.org
9480 F:      Documentation/blockdev/nbd.txt
9481 F:      drivers/block/nbd.c
9482 F:      include/uapi/linux/nbd.h
9483
9484 NETWORK DROP MONITOR
9485 M:      Neil Horman <nhorman@tuxdriver.com>
9486 L:      netdev@vger.kernel.org
9487 S:      Maintained
9488 W:      https://fedorahosted.org/dropwatch/
9489 F:      net/core/drop_monitor.c
9490
9491 NETWORKING DRIVERS
9492 L:      netdev@vger.kernel.org
9493 W:      http://www.linuxfoundation.org/en/Net
9494 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9497 S:      Odd Fixes
9498 F:      Documentation/devicetree/bindings/net/
9499 F:      drivers/net/
9500 F:      include/linux/if_*
9501 F:      include/linux/netdevice.h
9502 F:      include/linux/etherdevice.h
9503 F:      include/linux/fcdevice.h
9504 F:      include/linux/fddidevice.h
9505 F:      include/linux/hippidevice.h
9506 F:      include/linux/inetdevice.h
9507 F:      include/uapi/linux/if_*
9508 F:      include/uapi/linux/netdevice.h
9509
9510 NETWORKING DRIVERS (WIRELESS)
9511 M:      Kalle Valo <kvalo@codeaurora.org>
9512 L:      linux-wireless@vger.kernel.org
9513 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
9514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
9515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
9516 S:      Maintained
9517 F:      Documentation/devicetree/bindings/net/wireless/
9518 F:      drivers/net/wireless/
9519
9520 NETWORKING [DSA]
9521 M:      Andrew Lunn <andrew@lunn.ch>
9522 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9523 M:      Florian Fainelli <f.fainelli@gmail.com>
9524 S:      Maintained
9525 F:      net/dsa/
9526 F:      include/net/dsa.h
9527 F:      include/linux/dsa/
9528 F:      drivers/net/dsa/
9529
9530 NETWORKING [GENERAL]
9531 M:      "David S. Miller" <davem@davemloft.net>
9532 L:      netdev@vger.kernel.org
9533 W:      http://www.linuxfoundation.org/en/Net
9534 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9537 B:      mailto:netdev@vger.kernel.org
9538 S:      Maintained
9539 F:      net/
9540 F:      include/net/
9541 F:      include/linux/in.h
9542 F:      include/linux/net.h
9543 F:      include/linux/netdevice.h
9544 F:      include/uapi/linux/in.h
9545 F:      include/uapi/linux/net.h
9546 F:      include/uapi/linux/netdevice.h
9547 F:      include/uapi/linux/net_namespace.h
9548 F:      tools/testing/selftests/net/
9549 F:      lib/net_utils.c
9550 F:      lib/random32.c
9551
9552 NETWORKING [IPSEC]
9553 M:      Steffen Klassert <steffen.klassert@secunet.com>
9554 M:      Herbert Xu <herbert@gondor.apana.org.au>
9555 M:      "David S. Miller" <davem@davemloft.net>
9556 L:      netdev@vger.kernel.org
9557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
9558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
9559 S:      Maintained
9560 F:      net/core/flow.c
9561 F:      net/xfrm/
9562 F:      net/key/
9563 F:      net/ipv4/xfrm*
9564 F:      net/ipv4/esp4*
9565 F:      net/ipv4/ah4.c
9566 F:      net/ipv4/ipcomp.c
9567 F:      net/ipv4/ip_vti.c
9568 F:      net/ipv6/xfrm*
9569 F:      net/ipv6/esp6*
9570 F:      net/ipv6/ah6.c
9571 F:      net/ipv6/ipcomp6.c
9572 F:      net/ipv6/ip6_vti.c
9573 F:      include/uapi/linux/xfrm.h
9574 F:      include/net/xfrm.h
9575
9576 NETWORKING [IPv4/IPv6]
9577 M:      "David S. Miller" <davem@davemloft.net>
9578 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9579 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9580 L:      netdev@vger.kernel.org
9581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9582 S:      Maintained
9583 F:      net/ipv4/
9584 F:      net/ipv6/
9585 F:      include/net/ip*
9586 F:      arch/x86/net/*
9587
9588 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
9589 M:      Paul Moore <paul@paul-moore.com>
9590 W:      https://github.com/netlabel
9591 L:      netdev@vger.kernel.org
9592 L:      linux-security-module@vger.kernel.org
9593 S:      Maintained
9594 F:      Documentation/netlabel/
9595 F:      include/net/calipso.h
9596 F:      include/net/cipso_ipv4.h
9597 F:      include/net/netlabel.h
9598 F:      include/uapi/linux/netfilter/xt_SECMARK.h
9599 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
9600 F:      net/netlabel/
9601 F:      net/ipv4/cipso_ipv4.c
9602 F:      net/ipv6/calipso.c
9603 F:      net/netfilter/xt_CONNSECMARK.c
9604 F:      net/netfilter/xt_SECMARK.c
9605
9606 NETWORKING [TLS]
9607 M:      Ilya Lesokhin <ilyal@mellanox.com>
9608 M:      Aviad Yehezkel <aviadye@mellanox.com>
9609 M:      Dave Watson <davejwatson@fb.com>
9610 L:      netdev@vger.kernel.org
9611 S:      Maintained
9612 F:      net/tls/*
9613 F:      include/uapi/linux/tls.h
9614 F:      include/net/tls.h
9615
9616 NETWORKING [WIRELESS]
9617 L:      linux-wireless@vger.kernel.org
9618 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
9619
9620 NETXEN (1/10) GbE SUPPORT
9621 M:      Manish Chopra <manish.chopra@cavium.com>
9622 M:      Rahul Verma <rahul.verma@cavium.com>
9623 M:      Dept-GELinuxNICDev@cavium.com
9624 L:      netdev@vger.kernel.org
9625 S:      Supported
9626 F:      drivers/net/ethernet/qlogic/netxen/
9627
9628 NFC SUBSYSTEM
9629 M:      Samuel Ortiz <sameo@linux.intel.com>
9630 L:      linux-wireless@vger.kernel.org
9631 L:      linux-nfc@lists.01.org (subscribers-only)
9632 S:      Supported
9633 F:      net/nfc/
9634 F:      include/net/nfc/
9635 F:      include/uapi/linux/nfc.h
9636 F:      drivers/nfc/
9637 F:      include/linux/platform_data/nfcmrvl.h
9638 F:      include/linux/platform_data/nxp-nci.h
9639 F:      Documentation/devicetree/bindings/net/nfc/
9640
9641 NFS, SUNRPC, AND LOCKD CLIENTS
9642 M:      Trond Myklebust <trond.myklebust@primarydata.com>
9643 M:      Anna Schumaker <anna.schumaker@netapp.com>
9644 L:      linux-nfs@vger.kernel.org
9645 W:      http://client.linux-nfs.org
9646 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
9647 S:      Maintained
9648 F:      fs/lockd/
9649 F:      fs/nfs/
9650 F:      fs/nfs_common/
9651 F:      net/sunrpc/
9652 F:      include/linux/lockd/
9653 F:      include/linux/nfs*
9654 F:      include/linux/sunrpc/
9655 F:      include/uapi/linux/nfs*
9656 F:      include/uapi/linux/sunrpc/
9657
9658 NILFS2 FILESYSTEM
9659 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
9660 L:      linux-nilfs@vger.kernel.org
9661 W:      https://nilfs.sourceforge.io/
9662 W:      https://nilfs.osdn.jp/
9663 T:      git git://github.com/konis/nilfs2.git
9664 S:      Supported
9665 F:      Documentation/filesystems/nilfs2.txt
9666 F:      fs/nilfs2/
9667 F:      include/trace/events/nilfs2.h
9668 F:      include/uapi/linux/nilfs2_api.h
9669 F:      include/uapi/linux/nilfs2_ondisk.h
9670
9671 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
9672 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9673 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9674 S:      Maintained
9675 F:      Documentation/scsi/NinjaSCSI.txt
9676 F:      drivers/scsi/pcmcia/nsp_*
9677
9678 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
9679 M:      GOTO Masanori <gotom@debian.or.jp>
9680 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9681 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9682 S:      Maintained
9683 F:      Documentation/scsi/NinjaSCSI.txt
9684 F:      drivers/scsi/nsp32*
9685
9686 NIOS2 ARCHITECTURE
9687 M:      Ley Foon Tan <lftan@altera.com>
9688 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
9689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
9690 S:      Maintained
9691 F:      arch/nios2/
9692
9693 NOHZ, DYNTICKS SUPPORT
9694 M:      Frederic Weisbecker <fweisbec@gmail.com>
9695 M:      Thomas Gleixner <tglx@linutronix.de>
9696 M:      Ingo Molnar <mingo@kernel.org>
9697 L:      linux-kernel@vger.kernel.org
9698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
9699 S:      Maintained
9700 F:      kernel/time/tick*.*
9701 F:      include/linux/tick.h
9702 F:      include/linux/sched/nohz.h
9703
9704 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9705 M:      Pavel Machek <pavel@ucw.cz>
9706 M:      Sakari Ailus <sakari.ailus@iki.fi>
9707 L:      linux-media@vger.kernel.org
9708 S:      Maintained
9709 F:      drivers/media/i2c/et8ek8
9710 F:      drivers/media/i2c/ad5820.c
9711
9712 NOKIA N900 POWER SUPPLY DRIVERS
9713 R:      Pali Rohár <pali.rohar@gmail.com>
9714 F:      include/linux/power/bq2415x_charger.h
9715 F:      include/linux/power/bq27xxx_battery.h
9716 F:      include/linux/power/isp1704_charger.h
9717 F:      drivers/power/supply/bq2415x_charger.c
9718 F:      drivers/power/supply/bq27xxx_battery.c
9719 F:      drivers/power/supply/bq27xxx_battery_i2c.c
9720 F:      drivers/power/supply/isp1704_charger.c
9721 F:      drivers/power/supply/rx51_battery.c
9722
9723 NTB AMD DRIVER
9724 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
9725 L:      linux-ntb@googlegroups.com
9726 S:      Supported
9727 F:      drivers/ntb/hw/amd/
9728
9729 NTB DRIVER CORE
9730 M:      Jon Mason <jdmason@kudzu.us>
9731 M:      Dave Jiang <dave.jiang@intel.com>
9732 M:      Allen Hubbe <Allen.Hubbe@emc.com>
9733 L:      linux-ntb@googlegroups.com
9734 S:      Supported
9735 W:      https://github.com/jonmason/ntb/wiki
9736 T:      git git://github.com/jonmason/ntb.git
9737 F:      drivers/ntb/
9738 F:      drivers/net/ntb_netdev.c
9739 F:      include/linux/ntb.h
9740 F:      include/linux/ntb_transport.h
9741 F:      tools/testing/selftests/ntb/
9742
9743 NTB IDT DRIVER
9744 M:      Serge Semin <fancer.lancer@gmail.com>
9745 L:      linux-ntb@googlegroups.com
9746 S:      Supported
9747 F:      drivers/ntb/hw/idt/
9748
9749 NTB INTEL DRIVER
9750 M:      Dave Jiang <dave.jiang@intel.com>
9751 L:      linux-ntb@googlegroups.com
9752 S:      Supported
9753 W:      https://github.com/davejiang/linux/wiki
9754 T:      git https://github.com/davejiang/linux.git
9755 F:      drivers/ntb/hw/intel/
9756
9757 NTFS FILESYSTEM
9758 M:      Anton Altaparmakov <anton@tuxera.com>
9759 L:      linux-ntfs-dev@lists.sourceforge.net
9760 W:      http://www.tuxera.com/
9761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
9762 S:      Supported
9763 F:      Documentation/filesystems/ntfs.txt
9764 F:      fs/ntfs/
9765
9766 NUBUS SUBSYSTEM
9767 M:      Finn Thain <fthain@telegraphics.com.au>
9768 L:      linux-m68k@lists.linux-m68k.org
9769 S:      Maintained
9770 F:      arch/*/include/asm/nubus.h
9771 F:      drivers/nubus/
9772 F:      include/linux/nubus.h
9773 F:      include/uapi/linux/nubus.h
9774
9775 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
9776 M:      Antonino Daplas <adaplas@gmail.com>
9777 L:      linux-fbdev@vger.kernel.org
9778 S:      Maintained
9779 F:      drivers/video/fbdev/riva/
9780 F:      drivers/video/fbdev/nvidia/
9781
9782 NVM EXPRESS DRIVER
9783 M:      Keith Busch <keith.busch@intel.com>
9784 M:      Jens Axboe <axboe@fb.com>
9785 M:      Christoph Hellwig <hch@lst.de>
9786 M:      Sagi Grimberg <sagi@grimberg.me>
9787 L:      linux-nvme@lists.infradead.org
9788 T:      git://git.infradead.org/nvme.git
9789 W:      http://git.infradead.org/nvme.git
9790 S:      Supported
9791 F:      drivers/nvme/host/
9792 F:      include/linux/nvme.h
9793 F:      include/uapi/linux/nvme_ioctl.h
9794
9795 NVM EXPRESS FC TRANSPORT DRIVERS
9796 M:      James Smart <james.smart@broadcom.com>
9797 L:      linux-nvme@lists.infradead.org
9798 S:      Supported
9799 F:      include/linux/nvme-fc.h
9800 F:      include/linux/nvme-fc-driver.h
9801 F:      drivers/nvme/host/fc.c
9802 F:      drivers/nvme/target/fc.c
9803 F:      drivers/nvme/target/fcloop.c
9804
9805 NVM EXPRESS TARGET DRIVER
9806 M:      Christoph Hellwig <hch@lst.de>
9807 M:      Sagi Grimberg <sagi@grimberg.me>
9808 L:      linux-nvme@lists.infradead.org
9809 T:      git://git.infradead.org/nvme.git
9810 W:      http://git.infradead.org/nvme.git
9811 S:      Supported
9812 F:      drivers/nvme/target/
9813
9814 NVMEM FRAMEWORK
9815 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
9816 S:      Maintained
9817 F:      drivers/nvmem/
9818 F:      Documentation/devicetree/bindings/nvmem/
9819 F:      Documentation/ABI/stable/sysfs-bus-nvmem
9820 F:      include/linux/nvmem-consumer.h
9821 F:      include/linux/nvmem-provider.h
9822
9823 NXP TDA998X DRM DRIVER
9824 M:      Russell King <linux@armlinux.org.uk>
9825 S:      Supported
9826 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
9827 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
9828 F:      drivers/gpu/drm/i2c/tda998x_drv.c
9829 F:      include/drm/i2c/tda998x.h
9830
9831 NXP TFA9879 DRIVER
9832 M:      Peter Rosin <peda@axentia.se>
9833 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9834 S:      Maintained
9835 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
9836 F:      sound/soc/codecs/tfa9879*
9837
9838 NXP-NCI NFC DRIVER
9839 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
9840 R:      Charles Gorand <charles.gorand@effinnov.com>
9841 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9842 S:      Supported
9843 F:      drivers/nfc/nxp-nci
9844
9845 OBJTOOL
9846 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9847 S:      Supported
9848 F:      tools/objtool/
9849
9850 OMAP AUDIO SUPPORT
9851 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
9852 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
9853 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9854 L:      linux-omap@vger.kernel.org
9855 S:      Maintained
9856 F:      sound/soc/omap/
9857
9858 OMAP CLOCK FRAMEWORK SUPPORT
9859 M:      Paul Walmsley <paul@pwsan.com>
9860 L:      linux-omap@vger.kernel.org
9861 S:      Maintained
9862 F:      arch/arm/*omap*/*clock*
9863
9864 OMAP DEVICE TREE SUPPORT
9865 M:      Benoît Cousson <bcousson@baylibre.com>
9866 M:      Tony Lindgren <tony@atomide.com>
9867 L:      linux-omap@vger.kernel.org
9868 L:      devicetree@vger.kernel.org
9869 S:      Maintained
9870 F:      arch/arm/boot/dts/*omap*
9871 F:      arch/arm/boot/dts/*am3*
9872 F:      arch/arm/boot/dts/*am4*
9873 F:      arch/arm/boot/dts/*am5*
9874 F:      arch/arm/boot/dts/*dra7*
9875
9876 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
9877 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
9878 L:      linux-omap@vger.kernel.org
9879 L:      linux-fbdev@vger.kernel.org
9880 S:      Maintained
9881 F:      drivers/video/fbdev/omap2/
9882 F:      Documentation/arm/OMAP/DSS
9883
9884 OMAP FRAMEBUFFER SUPPORT
9885 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
9886 L:      linux-fbdev@vger.kernel.org
9887 L:      linux-omap@vger.kernel.org
9888 S:      Maintained
9889 F:      drivers/video/fbdev/omap/
9890
9891 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
9892 M:      Roger Quadros <rogerq@ti.com>
9893 M:      Tony Lindgren <tony@atomide.com>
9894 L:      linux-omap@vger.kernel.org
9895 S:      Maintained
9896 F:      drivers/memory/omap-gpmc.c
9897 F:      arch/arm/mach-omap2/*gpmc*
9898
9899 OMAP GPIO DRIVER
9900 M:      Grygorii Strashko <grygorii.strashko@ti.com>
9901 M:      Santosh Shilimkar <ssantosh@kernel.org>
9902 M:      Kevin Hilman <khilman@kernel.org>
9903 L:      linux-omap@vger.kernel.org
9904 S:      Maintained
9905 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
9906 F:      drivers/gpio/gpio-omap.c
9907
9908 OMAP HARDWARE SPINLOCK SUPPORT
9909 M:      Ohad Ben-Cohen <ohad@wizery.com>
9910 L:      linux-omap@vger.kernel.org
9911 S:      Maintained
9912 F:      drivers/hwspinlock/omap_hwspinlock.c
9913
9914 OMAP HS MMC SUPPORT
9915 L:      linux-mmc@vger.kernel.org
9916 L:      linux-omap@vger.kernel.org
9917 S:      Orphan
9918 F:      drivers/mmc/host/omap_hsmmc.c
9919
9920 OMAP HWMOD DATA
9921 M:      Paul Walmsley <paul@pwsan.com>
9922 L:      linux-omap@vger.kernel.org
9923 S:      Maintained
9924 F:      arch/arm/mach-omap2/omap_hwmod*data*
9925
9926 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
9927 M:      Benoît Cousson <bcousson@baylibre.com>
9928 L:      linux-omap@vger.kernel.org
9929 S:      Maintained
9930 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
9931
9932 OMAP HWMOD SUPPORT
9933 M:      Benoît Cousson <bcousson@baylibre.com>
9934 M:      Paul Walmsley <paul@pwsan.com>
9935 L:      linux-omap@vger.kernel.org
9936 S:      Maintained
9937 F:      arch/arm/mach-omap2/omap_hwmod.*
9938
9939 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
9940 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9941 L:      linux-media@vger.kernel.org
9942 S:      Maintained
9943 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
9944 F:      drivers/media/platform/omap3isp/
9945 F:      drivers/staging/media/omap4iss/
9946
9947 OMAP MMC SUPPORT
9948 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
9949 L:      linux-omap@vger.kernel.org
9950 S:      Maintained
9951 F:      drivers/mmc/host/omap.c
9952
9953 OMAP POWER MANAGEMENT SUPPORT
9954 M:      Kevin Hilman <khilman@kernel.org>
9955 L:      linux-omap@vger.kernel.org
9956 S:      Maintained
9957 F:      arch/arm/*omap*/*pm*
9958 F:      drivers/cpufreq/omap-cpufreq.c
9959
9960 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
9961 M:      Rajendra Nayak <rnayak@codeaurora.org>
9962 M:      Paul Walmsley <paul@pwsan.com>
9963 L:      linux-omap@vger.kernel.org
9964 S:      Maintained
9965 F:      arch/arm/mach-omap2/prm*
9966
9967 OMAP RANDOM NUMBER GENERATOR SUPPORT
9968 M:      Deepak Saxena <dsaxena@plexity.net>
9969 S:      Maintained
9970 F:      drivers/char/hw_random/omap-rng.c
9971
9972 OMAP USB SUPPORT
9973 L:      linux-usb@vger.kernel.org
9974 L:      linux-omap@vger.kernel.org
9975 S:      Orphan
9976 F:      drivers/usb/*/*omap*
9977 F:      arch/arm/*omap*/usb*
9978
9979 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
9980 M:      Mark Jackson <mpfj@newflow.co.uk>
9981 L:      linux-omap@vger.kernel.org
9982 S:      Maintained
9983 F:      arch/arm/boot/dts/am335x-nano.dts
9984
9985 OMAP1 SUPPORT
9986 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
9987 M:      Tony Lindgren <tony@atomide.com>
9988 L:      linux-omap@vger.kernel.org
9989 Q:      http://patchwork.kernel.org/project/linux-omap/list/
9990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
9991 S:      Maintained
9992 F:      arch/arm/mach-omap1/
9993 F:      arch/arm/plat-omap/
9994 F:      arch/arm/configs/omap1_defconfig
9995 F:      drivers/i2c/busses/i2c-omap.c
9996 F:      include/linux/i2c-omap.h
9997
9998 OMAP2+ SUPPORT
9999 M:      Tony Lindgren <tony@atomide.com>
10000 L:      linux-omap@vger.kernel.org
10001 W:      http://www.muru.com/linux/omap/
10002 W:      http://linux.omap.com/
10003 Q:      http://patchwork.kernel.org/project/linux-omap/list/
10004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
10005 S:      Maintained
10006 F:      arch/arm/mach-omap2/
10007 F:      arch/arm/plat-omap/
10008 F:      arch/arm/configs/omap2plus_defconfig
10009 F:      drivers/i2c/busses/i2c-omap.c
10010 F:      drivers/irqchip/irq-omap-intc.c
10011 F:      drivers/mfd/*omap*.c
10012 F:      drivers/mfd/menelaus.c
10013 F:      drivers/mfd/palmas.c
10014 F:      drivers/mfd/tps65217.c
10015 F:      drivers/mfd/tps65218.c
10016 F:      drivers/mfd/tps65910.c
10017 F:      drivers/mfd/twl-core.[ch]
10018 F:      drivers/mfd/twl4030*.c
10019 F:      drivers/mfd/twl6030*.c
10020 F:      drivers/mfd/twl6040*.c
10021 F:      drivers/regulator/palmas-regulator*.c
10022 F:      drivers/regulator/pbias-regulator.c
10023 F:      drivers/regulator/tps65217-regulator.c
10024 F:      drivers/regulator/tps65218-regulator.c
10025 F:      drivers/regulator/tps65910-regulator.c
10026 F:      drivers/regulator/twl-regulator.c
10027 F:      drivers/regulator/twl6030-regulator.c
10028 F:      include/linux/i2c-omap.h
10029
10030 ONION OMEGA2+ BOARD
10031 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
10032 L:      linux-mips@linux-mips.org
10033 S:      Maintained
10034 F:      arch/mips/boot/dts/ralink/omega2p.dts
10035
10036 OMFS FILESYSTEM
10037 M:      Bob Copeland <me@bobcopeland.com>
10038 L:      linux-karma-devel@lists.sourceforge.net
10039 S:      Maintained
10040 F:      Documentation/filesystems/omfs.txt
10041 F:      fs/omfs/
10042
10043 OMNIKEY CARDMAN 4000 DRIVER
10044 M:      Harald Welte <laforge@gnumonks.org>
10045 S:      Maintained
10046 F:      drivers/char/pcmcia/cm4000_cs.c
10047 F:      include/linux/cm4000_cs.h
10048 F:      include/uapi/linux/cm4000_cs.h
10049
10050 OMNIKEY CARDMAN 4040 DRIVER
10051 M:      Harald Welte <laforge@gnumonks.org>
10052 S:      Maintained
10053 F:      drivers/char/pcmcia/cm4040_cs.*
10054
10055 OMNIVISION OV13858 SENSOR DRIVER
10056 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10057 L:      linux-media@vger.kernel.org
10058 T:      git git://linuxtv.org/media_tree.git
10059 S:      Maintained
10060 F:      drivers/media/i2c/ov13858.c
10061
10062 OMNIVISION OV5640 SENSOR DRIVER
10063 M:      Steve Longerbeam <slongerbeam@gmail.com>
10064 L:      linux-media@vger.kernel.org
10065 T:      git git://linuxtv.org/media_tree.git
10066 S:      Maintained
10067 F:      drivers/media/i2c/ov5640.c
10068
10069 OMNIVISION OV5647 SENSOR DRIVER
10070 M:      Luis Oliveira <lolivei@synopsys.com>
10071 L:      linux-media@vger.kernel.org
10072 T:      git git://linuxtv.org/media_tree.git
10073 S:      Maintained
10074 F:      drivers/media/i2c/ov5647.c
10075
10076 OMNIVISION OV7670 SENSOR DRIVER
10077 M:      Jonathan Corbet <corbet@lwn.net>
10078 L:      linux-media@vger.kernel.org
10079 T:      git git://linuxtv.org/media_tree.git
10080 S:      Maintained
10081 F:      drivers/media/i2c/ov7670.c
10082 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
10083
10084 ONENAND FLASH DRIVER
10085 M:      Kyungmin Park <kyungmin.park@samsung.com>
10086 L:      linux-mtd@lists.infradead.org
10087 S:      Maintained
10088 F:      drivers/mtd/onenand/
10089 F:      include/linux/mtd/onenand*.h
10090
10091 ONSTREAM SCSI TAPE DRIVER
10092 M:      Willem Riede <osst@riede.org>
10093 L:      osst-users@lists.sourceforge.net
10094 L:      linux-scsi@vger.kernel.org
10095 S:      Maintained
10096 F:      Documentation/scsi/osst.txt
10097 F:      drivers/scsi/osst.*
10098 F:      drivers/scsi/osst_*.h
10099 F:      drivers/scsi/st.h
10100
10101 OP-TEE DRIVER
10102 M:      Jens Wiklander <jens.wiklander@linaro.org>
10103 S:      Maintained
10104 F:      drivers/tee/optee/
10105
10106 OPA-VNIC DRIVER
10107 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
10108 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
10109 L:      linux-rdma@vger.kernel.org
10110 S:      Supported
10111 F:      drivers/infiniband/ulp/opa_vnic
10112
10113 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
10114 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
10115 L:      devicetree@vger.kernel.org
10116 S:      Maintained
10117 F:      Documentation/devicetree/dynamic-resolution-notes.txt
10118 F:      Documentation/devicetree/overlay-notes.txt
10119 F:      drivers/of/overlay.c
10120 F:      drivers/of/resolver.c
10121
10122 OPEN FIRMWARE AND FLATTENED DEVICE TREE
10123 M:      Rob Herring <robh+dt@kernel.org>
10124 M:      Frank Rowand <frowand.list@gmail.com>
10125 L:      devicetree@vger.kernel.org
10126 W:      http://www.devicetree.org/
10127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10128 S:      Maintained
10129 F:      drivers/of/
10130 F:      include/linux/of*.h
10131 F:      scripts/dtc/
10132 F:      Documentation/ABI/testing/sysfs-firmware-ofw
10133
10134 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
10135 M:      Rob Herring <robh+dt@kernel.org>
10136 M:      Mark Rutland <mark.rutland@arm.com>
10137 L:      devicetree@vger.kernel.org
10138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10139 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
10140 S:      Maintained
10141 F:      Documentation/devicetree/
10142 F:      arch/*/boot/dts/
10143 F:      include/dt-bindings/
10144
10145 OPENCORES I2C BUS DRIVER
10146 M:      Peter Korsgaard <jacmet@sunsite.dk>
10147 L:      linux-i2c@vger.kernel.org
10148 S:      Maintained
10149 F:      Documentation/i2c/busses/i2c-ocores
10150 F:      drivers/i2c/busses/i2c-ocores.c
10151
10152 OPENRISC ARCHITECTURE
10153 M:      Jonas Bonn <jonas@southpole.se>
10154 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
10155 M:      Stafford Horne <shorne@gmail.com>
10156 T:      git git://github.com/openrisc/linux.git
10157 L:      openrisc@lists.librecores.org
10158 W:      http://openrisc.io
10159 S:      Maintained
10160 F:      Documentation/devicetree/bindings/openrisc/
10161 F:      Documentation/openrisc/
10162 F:      arch/openrisc/
10163 F:      drivers/irqchip/irq-ompic.c
10164 F:      drivers/irqchip/irq-or1k-*
10165
10166 OPENVSWITCH
10167 M:      Pravin B Shelar <pshelar@ovn.org>
10168 L:      netdev@vger.kernel.org
10169 L:      dev@openvswitch.org
10170 W:      http://openvswitch.org
10171 S:      Maintained
10172 F:      net/openvswitch/
10173 F:      include/uapi/linux/openvswitch.h
10174
10175 OPERATING PERFORMANCE POINTS (OPP)
10176 M:      Viresh Kumar <vireshk@kernel.org>
10177 M:      Nishanth Menon <nm@ti.com>
10178 M:      Stephen Boyd <sboyd@codeaurora.org>
10179 L:      linux-pm@vger.kernel.org
10180 S:      Maintained
10181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
10182 F:      drivers/opp/
10183 F:      include/linux/pm_opp.h
10184 F:      Documentation/power/opp.txt
10185 F:      Documentation/devicetree/bindings/opp/
10186
10187 OPL4 DRIVER
10188 M:      Clemens Ladisch <clemens@ladisch.de>
10189 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10190 T:      git git://git.alsa-project.org/alsa-kernel.git
10191 S:      Maintained
10192 F:      sound/drivers/opl4/
10193
10194 OPROFILE
10195 M:      Robert Richter <rric@kernel.org>
10196 L:      oprofile-list@lists.sf.net
10197 S:      Maintained
10198 F:      arch/*/include/asm/oprofile*.h
10199 F:      arch/*/oprofile/
10200 F:      drivers/oprofile/
10201 F:      include/linux/oprofile.h
10202
10203 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
10204 M:      Mark Fasheh <mfasheh@versity.com>
10205 M:      Joel Becker <jlbec@evilplan.org>
10206 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
10207 W:      http://ocfs2.wiki.kernel.org
10208 S:      Supported
10209 F:      Documentation/filesystems/ocfs2.txt
10210 F:      Documentation/filesystems/dlmfs.txt
10211 F:      fs/ocfs2/
10212
10213 ORANGEFS FILESYSTEM
10214 M:      Mike Marshall <hubcap@omnibond.com>
10215 L:      pvfs2-developers@beowulf-underground.org (subscribers-only)
10216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
10217 S:      Supported
10218 F:      fs/orangefs/
10219 F:      Documentation/filesystems/orangefs.txt
10220
10221 ORINOCO DRIVER
10222 L:      linux-wireless@vger.kernel.org
10223 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
10224 W:      http://www.nongnu.org/orinoco/
10225 S:      Orphan
10226 F:      drivers/net/wireless/intersil/orinoco/
10227
10228 OSD LIBRARY and FILESYSTEM
10229 M:      Boaz Harrosh <ooo@electrozaur.com>
10230 S:      Maintained
10231 F:      drivers/scsi/osd/
10232 F:      include/scsi/osd_*
10233 F:      fs/exofs/
10234
10235 OV2659 OMNIVISION SENSOR DRIVER
10236 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10237 L:      linux-media@vger.kernel.org
10238 W:      https://linuxtv.org
10239 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10240 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10241 S:      Maintained
10242 F:      drivers/media/i2c/ov2659.c
10243 F:      include/media/i2c/ov2659.h
10244
10245 OVERLAY FILESYSTEM
10246 M:      Miklos Szeredi <miklos@szeredi.hu>
10247 L:      linux-unionfs@vger.kernel.org
10248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
10249 S:      Supported
10250 F:      fs/overlayfs/
10251 F:      Documentation/filesystems/overlayfs.txt
10252
10253 P54 WIRELESS DRIVER
10254 M:      Christian Lamparter <chunkeey@googlemail.com>
10255 L:      linux-wireless@vger.kernel.org
10256 W:      http://wireless.kernel.org/en/users/Drivers/p54
10257 S:      Maintained
10258 F:      drivers/net/wireless/intersil/p54/
10259
10260 PA SEMI ETHERNET DRIVER
10261 L:      netdev@vger.kernel.org
10262 S:      Orphan
10263 F:      drivers/net/ethernet/pasemi/*
10264
10265 PA SEMI SMBUS DRIVER
10266 L:      linux-i2c@vger.kernel.org
10267 S:      Orphan
10268 F:      drivers/i2c/busses/i2c-pasemi.c
10269
10270 PADATA PARALLEL EXECUTION MECHANISM
10271 M:      Steffen Klassert <steffen.klassert@secunet.com>
10272 L:      linux-crypto@vger.kernel.org
10273 S:      Maintained
10274 F:      kernel/padata.c
10275 F:      include/linux/padata.h
10276 F:      Documentation/padata.txt
10277
10278 PANASONIC LAPTOP ACPI EXTRAS DRIVER
10279 M:      Harald Welte <laforge@gnumonks.org>
10280 L:      platform-driver-x86@vger.kernel.org
10281 S:      Maintained
10282 F:      drivers/platform/x86/panasonic-laptop.c
10283
10284 PANASONIC MN10300/AM33/AM34 PORT
10285 M:      David Howells <dhowells@redhat.com>
10286 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
10287 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
10288 S:      Maintained
10289 F:      Documentation/mn10300/
10290 F:      arch/mn10300/
10291
10292 PARALLEL LCD/KEYPAD PANEL DRIVER
10293 M:      Willy Tarreau <willy@haproxy.com>
10294 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
10295 S:      Odd Fixes
10296 F:      Documentation/misc-devices/lcd-panel-cgram.txt
10297 F:      drivers/misc/panel.c
10298
10299 PARALLEL PORT SUBSYSTEM
10300 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10301 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
10302 L:      linux-parport@lists.infradead.org (subscribers-only)
10303 S:      Maintained
10304 F:      drivers/parport/
10305 F:      include/linux/parport*.h
10306 F:      drivers/char/ppdev.c
10307 F:      include/uapi/linux/ppdev.h
10308 F:      Documentation/parport*.txt
10309
10310 PARAVIRT_OPS INTERFACE
10311 M:      Juergen Gross <jgross@suse.com>
10312 M:      Alok Kataria <akataria@vmware.com>
10313 M:      Rusty Russell <rusty@rustcorp.com.au>
10314 L:      virtualization@lists.linux-foundation.org
10315 S:      Supported
10316 F:      Documentation/virtual/paravirt_ops.txt
10317 F:      arch/*/kernel/paravirt*
10318 F:      arch/*/include/asm/paravirt*.h
10319 F:      include/linux/hypervisor.h
10320
10321 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
10322 M:      Tim Waugh <tim@cyberelk.net>
10323 L:      linux-parport@lists.infradead.org (subscribers-only)
10324 S:      Maintained
10325 F:      Documentation/blockdev/paride.txt
10326 F:      drivers/block/paride/
10327
10328 PARISC ARCHITECTURE
10329 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
10330 M:      Helge Deller <deller@gmx.de>
10331 L:      linux-parisc@vger.kernel.org
10332 W:      http://www.parisc-linux.org/
10333 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
10334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
10335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
10336 S:      Maintained
10337 F:      arch/parisc/
10338 F:      Documentation/parisc/
10339 F:      drivers/parisc/
10340 F:      drivers/char/agp/parisc-agp.c
10341 F:      drivers/input/serio/gscps2.c
10342 F:      drivers/parport/parport_gsc.*
10343 F:      drivers/tty/serial/8250/8250_gsc.c
10344 F:      drivers/video/fbdev/sti*
10345 F:      drivers/video/console/sti*
10346 F:      drivers/video/logo/logo_parisc*
10347
10348 PARMAN
10349 M:      Jiri Pirko <jiri@mellanox.com>
10350 L:      netdev@vger.kernel.org
10351 S:      Supported
10352 F:      lib/parman.c
10353 F:      lib/test_parman.c
10354 F:      include/linux/parman.h
10355
10356 PC87360 HARDWARE MONITORING DRIVER
10357 M:      Jim Cromie <jim.cromie@gmail.com>
10358 L:      linux-hwmon@vger.kernel.org
10359 S:      Maintained
10360 F:      Documentation/hwmon/pc87360
10361 F:      drivers/hwmon/pc87360.c
10362
10363 PC8736x GPIO DRIVER
10364 M:      Jim Cromie <jim.cromie@gmail.com>
10365 S:      Maintained
10366 F:      drivers/char/pc8736x_gpio.c
10367
10368 PC87427 HARDWARE MONITORING DRIVER
10369 M:      Jean Delvare <jdelvare@suse.com>
10370 L:      linux-hwmon@vger.kernel.org
10371 S:      Maintained
10372 F:      Documentation/hwmon/pc87427
10373 F:      drivers/hwmon/pc87427.c
10374
10375 PCA9532 LED DRIVER
10376 M:      Riku Voipio <riku.voipio@iki.fi>
10377 S:      Maintained
10378 F:      drivers/leds/leds-pca9532.c
10379 F:      include/linux/leds-pca9532.h
10380
10381 PCA9541 I2C BUS MASTER SELECTOR DRIVER
10382 M:      Guenter Roeck <linux@roeck-us.net>
10383 L:      linux-i2c@vger.kernel.org
10384 S:      Maintained
10385 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
10386
10387 PCDP - PRIMARY CONSOLE AND DEBUG PORT
10388 M:      Khalid Aziz <khalid@gonehiking.org>
10389 S:      Maintained
10390 F:      drivers/firmware/pcdp.*
10391
10392 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
10393 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10394 L:      linux-pci@vger.kernel.org
10395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10396 S:      Maintained
10397 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
10398 F:      drivers/pci/host/pci-aardvark.c
10399
10400 PCI DRIVER FOR ALTERA PCIE IP
10401 M:      Ley Foon Tan <lftan@altera.com>
10402 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
10403 L:      linux-pci@vger.kernel.org
10404 S:      Supported
10405 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
10406 F:      drivers/pci/host/pcie-altera.c
10407
10408 PCI DRIVER FOR APPLIEDMICRO XGENE
10409 M:      Tanmay Inamdar <tinamdar@apm.com>
10410 L:      linux-pci@vger.kernel.org
10411 L:      linux-arm-kernel@lists.infradead.org
10412 S:      Maintained
10413 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
10414 F:      drivers/pci/host/pci-xgene.c
10415
10416 PCI DRIVER FOR ARM VERSATILE PLATFORM
10417 M:      Rob Herring <robh@kernel.org>
10418 L:      linux-pci@vger.kernel.org
10419 L:      linux-arm-kernel@lists.infradead.org
10420 S:      Maintained
10421 F:      Documentation/devicetree/bindings/pci/versatile.txt
10422 F:      drivers/pci/host/pci-versatile.c
10423
10424 PCI DRIVER FOR ARMADA 8K
10425 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10426 L:      linux-pci@vger.kernel.org
10427 L:      linux-arm-kernel@lists.infradead.org
10428 S:      Maintained
10429 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
10430 F:      drivers/pci/dwc/pcie-armada8k.c
10431
10432 PCI DRIVER FOR FREESCALE LAYERSCAPE
10433 M:      Minghuan Lian <minghuan.Lian@freescale.com>
10434 M:      Mingkai Hu <mingkai.hu@freescale.com>
10435 M:      Roy Zang <tie-fei.zang@freescale.com>
10436 L:      linuxppc-dev@lists.ozlabs.org
10437 L:      linux-pci@vger.kernel.org
10438 L:      linux-arm-kernel@lists.infradead.org
10439 S:      Maintained
10440 F:      drivers/pci/dwc/*layerscape*
10441
10442 PCI DRIVER FOR GENERIC OF HOSTS
10443 M:      Will Deacon <will.deacon@arm.com>
10444 L:      linux-pci@vger.kernel.org
10445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10446 S:      Maintained
10447 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
10448 F:      drivers/pci/host/pci-host-common.c
10449 F:      drivers/pci/host/pci-host-generic.c
10450
10451 PCI DRIVER FOR IMX6
10452 M:      Richard Zhu <hongxing.zhu@nxp.com>
10453 M:      Lucas Stach <l.stach@pengutronix.de>
10454 L:      linux-pci@vger.kernel.org
10455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10456 S:      Maintained
10457 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
10458 F:      drivers/pci/dwc/*imx6*
10459
10460 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
10461 M:      Keith Busch <keith.busch@intel.com>
10462 M:      Jonathan Derrick <jonathan.derrick@intel.com>
10463 L:      linux-pci@vger.kernel.org
10464 S:      Supported
10465 F:      drivers/pci/host/vmd.c
10466
10467 PCI DRIVER FOR MICROSEMI SWITCHTEC
10468 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
10469 M:      Logan Gunthorpe <logang@deltatee.com>
10470 L:      linux-pci@vger.kernel.org
10471 S:      Maintained
10472 F:      Documentation/switchtec.txt
10473 F:      Documentation/ABI/testing/sysfs-class-switchtec
10474 F:      drivers/pci/switch/switchtec*
10475 F:      include/uapi/linux/switchtec_ioctl.h
10476 F:      include/linux/switchtec.h
10477 F:      drivers/ntb/hw/mscc/
10478
10479 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
10480 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10481 M:      Jason Cooper <jason@lakedaemon.net>
10482 L:      linux-pci@vger.kernel.org
10483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10484 S:      Maintained
10485 F:      drivers/pci/host/*mvebu*
10486
10487 PCI DRIVER FOR NVIDIA TEGRA
10488 M:      Thierry Reding <thierry.reding@gmail.com>
10489 L:      linux-tegra@vger.kernel.org
10490 L:      linux-pci@vger.kernel.org
10491 S:      Supported
10492 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
10493 F:      drivers/pci/host/pci-tegra.c
10494
10495 PCI DRIVER FOR RENESAS R-CAR
10496 M:      Simon Horman <horms@verge.net.au>
10497 L:      linux-pci@vger.kernel.org
10498 L:      linux-renesas-soc@vger.kernel.org
10499 S:      Maintained
10500 F:      drivers/pci/host/*rcar*
10501
10502 PCI DRIVER FOR SAMSUNG EXYNOS
10503 M:      Jingoo Han <jingoohan1@gmail.com>
10504 L:      linux-pci@vger.kernel.org
10505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10506 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10507 S:      Maintained
10508 F:      drivers/pci/dwc/pci-exynos.c
10509
10510 PCI DRIVER FOR SYNOPSYS DESIGNWARE
10511 M:      Jingoo Han <jingoohan1@gmail.com>
10512 M:      Joao Pinto <Joao.Pinto@synopsys.com>
10513 L:      linux-pci@vger.kernel.org
10514 S:      Maintained
10515 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
10516 F:      drivers/pci/dwc/*designware*
10517
10518 PCI DRIVER FOR TI DRA7XX
10519 M:      Kishon Vijay Abraham I <kishon@ti.com>
10520 L:      linux-omap@vger.kernel.org
10521 L:      linux-pci@vger.kernel.org
10522 S:      Supported
10523 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
10524 F:      drivers/pci/dwc/pci-dra7xx.c
10525
10526 PCI DRIVER FOR TI KEYSTONE
10527 M:      Murali Karicheri <m-karicheri2@ti.com>
10528 L:      linux-pci@vger.kernel.org
10529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10530 S:      Maintained
10531 F:      drivers/pci/dwc/*keystone*
10532
10533 PCI ENDPOINT SUBSYSTEM
10534 M:      Kishon Vijay Abraham I <kishon@ti.com>
10535 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10536 L:      linux-pci@vger.kernel.org
10537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
10538 S:      Supported
10539 F:      drivers/pci/endpoint/
10540 F:      drivers/misc/pci_endpoint_test.c
10541 F:      tools/pci/
10542
10543 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
10544 M:      Russell Currey <ruscur@russell.cc>
10545 L:      linuxppc-dev@lists.ozlabs.org
10546 S:      Supported
10547 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
10548 F:      arch/powerpc/kernel/eeh*.c
10549 F:      arch/powerpc/platforms/*/eeh*.c
10550 F:      arch/powerpc/include/*/eeh*.h
10551
10552 PCI ERROR RECOVERY
10553 M:      Linas Vepstas <linasvepstas@gmail.com>
10554 L:      linux-pci@vger.kernel.org
10555 S:      Supported
10556 F:      Documentation/PCI/pci-error-recovery.txt
10557
10558 PCI MSI DRIVER FOR ALTERA MSI IP
10559 M:      Ley Foon Tan <lftan@altera.com>
10560 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
10561 L:      linux-pci@vger.kernel.org
10562 S:      Supported
10563 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
10564 F:      drivers/pci/host/pcie-altera-msi.c
10565
10566 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
10567 M:      Duc Dang <dhdang@apm.com>
10568 L:      linux-pci@vger.kernel.org
10569 L:      linux-arm-kernel@lists.infradead.org
10570 S:      Maintained
10571 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
10572 F:      drivers/pci/host/pci-xgene-msi.c
10573
10574 PCI SUBSYSTEM
10575 M:      Bjorn Helgaas <bhelgaas@google.com>
10576 L:      linux-pci@vger.kernel.org
10577 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
10578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
10579 S:      Supported
10580 F:      Documentation/devicetree/bindings/pci/
10581 F:      Documentation/PCI/
10582 F:      drivers/pci/
10583 F:      include/linux/pci*
10584 F:      arch/x86/pci/
10585 F:      arch/x86/kernel/quirks.c
10586
10587 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
10588 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10589 L:      linux-pci@vger.kernel.org
10590 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
10591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
10592 S:      Supported
10593 F:      drivers/pci/host/
10594 F:      drivers/pci/dwc/
10595
10596 PCIE DRIVER FOR AXIS ARTPEC
10597 M:      Niklas Cassel <niklas.cassel@axis.com>
10598 M:      Jesper Nilsson <jesper.nilsson@axis.com>
10599 L:      linux-arm-kernel@axis.com
10600 L:      linux-pci@vger.kernel.org
10601 S:      Maintained
10602 F:      Documentation/devicetree/bindings/pci/axis,artpec*
10603 F:      drivers/pci/dwc/*artpec*
10604
10605 PCIE DRIVER FOR CAVIUM THUNDERX
10606 M:      David Daney <david.daney@cavium.com>
10607 L:      linux-pci@vger.kernel.org
10608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10609 S:      Supported
10610 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
10611 F:      drivers/pci/host/pci-thunder-*
10612
10613 PCIE DRIVER FOR HISILICON
10614 M:      Zhou Wang <wangzhou1@hisilicon.com>
10615 L:      linux-pci@vger.kernel.org
10616 S:      Maintained
10617 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
10618 F:      drivers/pci/dwc/pcie-hisi.c
10619
10620 PCIE DRIVER FOR HISILICON KIRIN
10621 M:      Xiaowei Song <songxiaowei@hisilicon.com>
10622 M:      Binghui Wang <wangbinghui@hisilicon.com>
10623 L:      linux-pci@vger.kernel.org
10624 S:      Maintained
10625 F:      Documentation/devicetree/bindings/pci/pcie-kirin.txt
10626 F:      drivers/pci/dwc/pcie-kirin.c
10627
10628 PCIE DRIVER FOR HISILICON STB
10629 M:      Jianguo Sun <sunjianguo1@huawei.com>
10630 M:      Shawn Guo <shawn.guo@linaro.org>
10631 L:      linux-pci@vger.kernel.org
10632 S:      Maintained
10633 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
10634 F:      drivers/pci/dwc/pcie-histb.c
10635
10636 PCIE DRIVER FOR MEDIATEK
10637 M:      Ryder Lee <ryder.lee@mediatek.com>
10638 L:      linux-pci@vger.kernel.org
10639 L:      linux-mediatek@lists.infradead.org
10640 S:      Supported
10641 F:      Documentation/devicetree/bindings/pci/mediatek*
10642 F:      drivers/pci/host/*mediatek*
10643
10644 PCIE DRIVER FOR QUALCOMM MSM
10645 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
10646 L:      linux-pci@vger.kernel.org
10647 L:      linux-arm-msm@vger.kernel.org
10648 S:      Maintained
10649 F:      drivers/pci/dwc/*qcom*
10650
10651 PCIE DRIVER FOR ROCKCHIP
10652 M:      Shawn Lin <shawn.lin@rock-chips.com>
10653 L:      linux-pci@vger.kernel.org
10654 L:      linux-rockchip@lists.infradead.org
10655 S:      Maintained
10656 F:      Documentation/devicetree/bindings/pci/rockchip-pcie.txt
10657 F:      drivers/pci/host/pcie-rockchip.c
10658
10659 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
10660 M:      Linus Walleij <linus.walleij@linaro.org>
10661 L:      linux-pci@vger.kernel.org
10662 S:      Maintained
10663 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
10664 F:      drivers/pci/host/pci-v3-semi.c
10665
10666 PCIE DRIVER FOR ST SPEAR13XX
10667 M:      Pratyush Anand <pratyush.anand@gmail.com>
10668 L:      linux-pci@vger.kernel.org
10669 S:      Maintained
10670 F:      drivers/pci/dwc/*spear*
10671
10672 PCMCIA SUBSYSTEM
10673 P:      Linux PCMCIA Team
10674 L:      linux-pcmcia@lists.infradead.org
10675 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
10676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
10677 S:      Maintained
10678 F:      Documentation/pcmcia/
10679 F:      tools/pcmcia/
10680 F:      drivers/pcmcia/
10681 F:      include/pcmcia/
10682
10683 PCNET32 NETWORK DRIVER
10684 M:      Don Fry <pcnet32@frontier.com>
10685 L:      netdev@vger.kernel.org
10686 S:      Maintained
10687 F:      drivers/net/ethernet/amd/pcnet32.c
10688
10689 PCRYPT PARALLEL CRYPTO ENGINE
10690 M:      Steffen Klassert <steffen.klassert@secunet.com>
10691 L:      linux-crypto@vger.kernel.org
10692 S:      Maintained
10693 F:      crypto/pcrypt.c
10694 F:      include/crypto/pcrypt.h
10695
10696 PEAQ WMI HOTKEYS DRIVER
10697 M:      Hans de Goede <hdegoede@redhat.com>
10698 L:      platform-driver-x86@vger.kernel.org
10699 S:      Maintained
10700 F:      drivers/platform/x86/peaq-wmi.c
10701
10702 PER-CPU MEMORY ALLOCATOR
10703 M:      Tejun Heo <tj@kernel.org>
10704 M:      Christoph Lameter <cl@linux.com>
10705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
10706 S:      Maintained
10707 F:      include/linux/percpu*.h
10708 F:      mm/percpu*.c
10709 F:      arch/*/include/asm/percpu.h
10710
10711 PER-TASK DELAY ACCOUNTING
10712 M:      Balbir Singh <bsingharora@gmail.com>
10713 S:      Maintained
10714 F:      include/linux/delayacct.h
10715 F:      kernel/delayacct.c
10716
10717 PERFORMANCE EVENTS SUBSYSTEM
10718 M:      Peter Zijlstra <peterz@infradead.org>
10719 M:      Ingo Molnar <mingo@redhat.com>
10720 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
10721 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10722 R:      Jiri Olsa <jolsa@redhat.com>
10723 R:      Namhyung Kim <namhyung@kernel.org>
10724 L:      linux-kernel@vger.kernel.org
10725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10726 S:      Supported
10727 F:      kernel/events/*
10728 F:      include/linux/perf_event.h
10729 F:      include/uapi/linux/perf_event.h
10730 F:      arch/*/kernel/perf_event*.c
10731 F:      arch/*/kernel/*/perf_event*.c
10732 F:      arch/*/kernel/*/*/perf_event*.c
10733 F:      arch/*/include/asm/perf_event.h
10734 F:      arch/*/kernel/perf_callchain.c
10735 F:      arch/*/events/*
10736 F:      tools/perf/
10737
10738 PERSONALITY HANDLING
10739 M:      Christoph Hellwig <hch@infradead.org>
10740 L:      linux-abi-devel@lists.sourceforge.net
10741 S:      Maintained
10742 F:      include/linux/personality.h
10743 F:      include/uapi/linux/personality.h
10744
10745 PHONET PROTOCOL
10746 M:      Remi Denis-Courmont <courmisch@gmail.com>
10747 S:      Supported
10748 F:      Documentation/networking/phonet.txt
10749 F:      include/linux/phonet.h
10750 F:      include/net/phonet/
10751 F:      include/uapi/linux/phonet.h
10752 F:      net/phonet/
10753
10754 PHRAM MTD DRIVER
10755 M:      Joern Engel <joern@lazybastard.org>
10756 L:      linux-mtd@lists.infradead.org
10757 S:      Maintained
10758 F:      drivers/mtd/devices/phram.c
10759
10760 PICOLCD HID DRIVER
10761 M:      Bruno Prémont <bonbons@linux-vserver.org>
10762 L:      linux-input@vger.kernel.org
10763 S:      Maintained
10764 F:      drivers/hid/hid-picolcd*
10765
10766 PICOXCELL SUPPORT
10767 M:      Jamie Iles <jamie@jamieiles.com>
10768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10769 T:      git git://github.com/jamieiles/linux-2.6-ji.git
10770 S:      Supported
10771 F:      arch/arm/boot/dts/picoxcell*
10772 F:      arch/arm/mach-picoxcell/
10773 F:      drivers/crypto/picoxcell*
10774
10775 PIN CONTROL SUBSYSTEM
10776 M:      Linus Walleij <linus.walleij@linaro.org>
10777 L:      linux-gpio@vger.kernel.org
10778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
10779 S:      Maintained
10780 F:      Documentation/devicetree/bindings/pinctrl/
10781 F:      Documentation/driver-api/pinctl.rst
10782 F:      drivers/pinctrl/
10783 F:      include/linux/pinctrl/
10784
10785 PIN CONTROLLER - ATMEL AT91
10786 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
10787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10788 S:      Maintained
10789 F:      drivers/pinctrl/pinctrl-at91.*
10790
10791 PIN CONTROLLER - ATMEL AT91 PIO4
10792 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10793 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10794 L:      linux-gpio@vger.kernel.org
10795 S:      Supported
10796 F:      drivers/pinctrl/pinctrl-at91-pio4.*
10797
10798 PIN CONTROLLER - INTEL
10799 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10800 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
10801 S:      Maintained
10802 F:      drivers/pinctrl/intel/
10803
10804 PIN CONTROLLER - QUALCOMM
10805 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
10806 S:      Maintained
10807 L:      linux-arm-msm@vger.kernel.org
10808 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
10809 F:      drivers/pinctrl/qcom/
10810
10811 PIN CONTROLLER - RENESAS
10812 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10813 M:      Geert Uytterhoeven <geert+renesas@glider.be>
10814 L:      linux-renesas-soc@vger.kernel.org
10815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
10816 S:      Maintained
10817 F:      drivers/pinctrl/sh-pfc/
10818
10819 PIN CONTROLLER - SAMSUNG
10820 M:      Tomasz Figa <tomasz.figa@gmail.com>
10821 M:      Krzysztof Kozlowski <krzk@kernel.org>
10822 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10824 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10825 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
10826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
10827 S:      Maintained
10828 F:      drivers/pinctrl/samsung/
10829 F:      include/dt-bindings/pinctrl/samsung.h
10830 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
10831
10832 PIN CONTROLLER - SINGLE
10833 M:      Tony Lindgren <tony@atomide.com>
10834 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
10835 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10836 L:      linux-omap@vger.kernel.org
10837 S:      Maintained
10838 F:      drivers/pinctrl/pinctrl-single.c
10839
10840 PIN CONTROLLER - ST SPEAR
10841 M:      Viresh Kumar <vireshk@kernel.org>
10842 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10843 W:      http://www.st.com/spear
10844 S:      Maintained
10845 F:      drivers/pinctrl/spear/
10846
10847 PISTACHIO SOC SUPPORT
10848 M:      James Hartley <james.hartley@sondrel.com>
10849 L:      linux-mips@linux-mips.org
10850 S:      Odd Fixes
10851 F:      arch/mips/pistachio/
10852 F:      arch/mips/include/asm/mach-pistachio/
10853 F:      arch/mips/boot/dts/img/pistachio*
10854 F:      arch/mips/configs/pistachio*_defconfig
10855
10856 PKTCDVD DRIVER
10857 S:      Orphan
10858 M:      linux-block@vger.kernel.org
10859 F:      drivers/block/pktcdvd.c
10860 F:      include/linux/pktcdvd.h
10861 F:      include/uapi/linux/pktcdvd.h
10862
10863 PKUNITY SOC DRIVERS
10864 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10865 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10866 S:      Maintained
10867 T:      git git://github.com/gxt/linux.git
10868 F:      drivers/input/serio/i8042-unicore32io.h
10869 F:      drivers/i2c/busses/i2c-puv3.c
10870 F:      drivers/video/fbdev/fb-puv3.c
10871 F:      drivers/rtc/rtc-puv3.c
10872
10873 PMBUS HARDWARE MONITORING DRIVERS
10874 M:      Guenter Roeck <linux@roeck-us.net>
10875 L:      linux-hwmon@vger.kernel.org
10876 W:      http://hwmon.wiki.kernel.org/
10877 W:      http://www.roeck-us.net/linux/drivers/
10878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
10879 S:      Maintained
10880 F:      Documentation/hwmon/pmbus
10881 F:      drivers/hwmon/pmbus/
10882 F:      include/linux/pmbus.h
10883
10884 PMC SIERRA MaxRAID DRIVER
10885 L:      linux-scsi@vger.kernel.org
10886 W:      http://www.pmc-sierra.com/
10887 S:      Orphan
10888 F:      drivers/scsi/pmcraid.*
10889
10890 PMC SIERRA PM8001 DRIVER
10891 M:      Jack Wang <jinpu.wang@profitbricks.com>
10892 M:      lindar_liu@usish.com
10893 L:      linux-scsi@vger.kernel.org
10894 S:      Supported
10895 F:      drivers/scsi/pm8001/
10896
10897 PNP SUPPORT
10898 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
10899 S:      Maintained
10900 F:      drivers/pnp/
10901
10902 POSIX CLOCKS and TIMERS
10903 M:      Thomas Gleixner <tglx@linutronix.de>
10904 L:      linux-kernel@vger.kernel.org
10905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
10906 S:      Maintained
10907 F:      fs/timerfd.c
10908 F:      include/linux/timer*
10909 F:      kernel/time/*timer*
10910
10911 POWER MANAGEMENT CORE
10912 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10913 L:      linux-pm@vger.kernel.org
10914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
10915 B:      https://bugzilla.kernel.org
10916 S:      Supported
10917 F:      drivers/base/power/
10918 F:      include/linux/pm.h
10919 F:      include/linux/pm_*
10920 F:      include/linux/powercap.h
10921 F:      drivers/powercap/
10922 F:      kernel/configs/nopm.config
10923
10924 POWER STATE COORDINATION INTERFACE (PSCI)
10925 M:      Mark Rutland <mark.rutland@arm.com>
10926 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10927 L:      linux-arm-kernel@lists.infradead.org
10928 S:      Maintained
10929 F:      drivers/firmware/psci*.c
10930 F:      include/linux/psci.h
10931 F:      include/uapi/linux/psci.h
10932
10933 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
10934 M:      Sebastian Reichel <sre@kernel.org>
10935 L:      linux-pm@vger.kernel.org
10936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
10937 S:      Maintained
10938 F:      Documentation/devicetree/bindings/power/supply/
10939 F:      include/linux/power_supply.h
10940 F:      drivers/power/supply/
10941
10942 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
10943 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
10944 L:      linuxppc-dev@lists.ozlabs.org
10945 S:      Maintained
10946 F:      drivers/char/powernv-op-panel.c
10947
10948 PPP OVER ATM (RFC 2364)
10949 M:      Mitchell Blank Jr <mitch@sfgoth.com>
10950 S:      Maintained
10951 F:      net/atm/pppoatm.c
10952 F:      include/uapi/linux/atmppp.h
10953
10954 PPP OVER ETHERNET
10955 M:      Michal Ostrowski <mostrows@earthlink.net>
10956 S:      Maintained
10957 F:      drivers/net/ppp/pppoe.c
10958 F:      drivers/net/ppp/pppox.c
10959
10960 PPP OVER L2TP
10961 M:      James Chapman <jchapman@katalix.com>
10962 S:      Maintained
10963 F:      net/l2tp/l2tp_ppp.c
10964 F:      include/linux/if_pppol2tp.h
10965 F:      include/uapi/linux/if_pppol2tp.h
10966
10967 PPP PROTOCOL DRIVERS AND COMPRESSORS
10968 M:      Paul Mackerras <paulus@samba.org>
10969 L:      linux-ppp@vger.kernel.org
10970 S:      Maintained
10971 F:      drivers/net/ppp/ppp_*
10972
10973 PPS SUPPORT
10974 M:      Rodolfo Giometti <giometti@enneenne.com>
10975 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
10976 L:      linuxpps@ml.enneenne.com (subscribers-only)
10977 S:      Maintained
10978 F:      Documentation/pps/
10979 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
10980 F:      Documentation/ABI/testing/sysfs-pps
10981 F:      drivers/pps/
10982 F:      include/linux/pps*.h
10983 F:      include/uapi/linux/pps.h
10984
10985 PPTP DRIVER
10986 M:      Dmitry Kozlov <xeb@mail.ru>
10987 L:      netdev@vger.kernel.org
10988 S:      Maintained
10989 F:      drivers/net/ppp/pptp.c
10990 W:      http://sourceforge.net/projects/accel-pptp
10991
10992 PREEMPTIBLE KERNEL
10993 M:      Robert Love <rml@tech9.net>
10994 L:      kpreempt-tech@lists.sourceforge.net
10995 W:      https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
10996 S:      Supported
10997 F:      Documentation/preempt-locking.txt
10998 F:      include/linux/preempt.h
10999
11000 PRINTK
11001 M:      Petr Mladek <pmladek@suse.com>
11002 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
11003 R:      Steven Rostedt <rostedt@goodmis.org>
11004 S:      Maintained
11005 F:      kernel/printk/
11006 F:      include/linux/printk.h
11007
11008 PRISM54 WIRELESS DRIVER
11009 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
11010 L:      linux-wireless@vger.kernel.org
11011 W:      http://wireless.kernel.org/en/users/Drivers/p54
11012 S:      Obsolete
11013 F:      drivers/net/wireless/intersil/prism54/
11014
11015 PROC SYSCTL
11016 M:      "Luis R. Rodriguez" <mcgrof@kernel.org>
11017 M:      Kees Cook <keescook@chromium.org>
11018 L:      linux-kernel@vger.kernel.org
11019 L:      linux-fsdevel@vger.kernel.org
11020 S:      Maintained
11021 F:      fs/proc/proc_sysctl.c
11022 F:      include/linux/sysctl.h
11023 F:      kernel/sysctl.c
11024 F:      tools/testing/selftests/sysctl/
11025
11026 PS3 NETWORK SUPPORT
11027 M:      Geoff Levand <geoff@infradead.org>
11028 L:      netdev@vger.kernel.org
11029 L:      linuxppc-dev@lists.ozlabs.org
11030 S:      Maintained
11031 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
11032
11033 PS3 PLATFORM SUPPORT
11034 M:      Geoff Levand <geoff@infradead.org>
11035 L:      linuxppc-dev@lists.ozlabs.org
11036 S:      Maintained
11037 F:      arch/powerpc/boot/ps3*
11038 F:      arch/powerpc/include/asm/lv1call.h
11039 F:      arch/powerpc/include/asm/ps3*.h
11040 F:      arch/powerpc/platforms/ps3/
11041 F:      drivers/*/ps3*
11042 F:      drivers/ps3/
11043 F:      drivers/rtc/rtc-ps3.c
11044 F:      drivers/usb/host/*ps3.c
11045 F:      sound/ppc/snd_ps3*
11046
11047 PS3VRAM DRIVER
11048 M:      Jim Paris <jim@jtan.com>
11049 M:      Geoff Levand <geoff@infradead.org>
11050 L:      linuxppc-dev@lists.ozlabs.org
11051 S:      Maintained
11052 F:      drivers/block/ps3vram.c
11053
11054 PSAMPLE PACKET SAMPLING SUPPORT:
11055 M:      Yotam Gigi <yotam.gi@gmail.com>
11056 S:      Maintained
11057 F:      net/psample
11058 F:      include/net/psample.h
11059 F:      include/uapi/linux/psample.h
11060
11061 PSTORE FILESYSTEM
11062 M:      Kees Cook <keescook@chromium.org>
11063 M:      Anton Vorontsov <anton@enomsg.org>
11064 M:      Colin Cross <ccross@android.com>
11065 M:      Tony Luck <tony.luck@intel.com>
11066 S:      Maintained
11067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
11068 F:      fs/pstore/
11069 F:      include/linux/pstore*
11070 F:      drivers/firmware/efi/efi-pstore.c
11071 F:      drivers/acpi/apei/erst.c
11072 F:      Documentation/admin-guide/ramoops.rst
11073 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
11074 K:      \b(pstore|ramoops)
11075
11076 PTP HARDWARE CLOCK SUPPORT
11077 M:      Richard Cochran <richardcochran@gmail.com>
11078 L:      netdev@vger.kernel.org
11079 S:      Maintained
11080 W:      http://linuxptp.sourceforge.net/
11081 F:      Documentation/ABI/testing/sysfs-ptp
11082 F:      Documentation/ptp/*
11083 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
11084 F:      drivers/net/phy/dp83640*
11085 F:      drivers/ptp/*
11086 F:      include/linux/ptp_cl*
11087
11088 PTRACE SUPPORT
11089 M:      Oleg Nesterov <oleg@redhat.com>
11090 S:      Maintained
11091 F:      include/asm-generic/syscall.h
11092 F:      include/linux/ptrace.h
11093 F:      include/linux/regset.h
11094 F:      include/linux/tracehook.h
11095 F:      include/uapi/linux/ptrace.h
11096 F:      include/uapi/linux/ptrace.h
11097 F:      include/asm-generic/ptrace.h
11098 F:      kernel/ptrace.c
11099 F:      arch/*/ptrace*.c
11100 F:      arch/*/*/ptrace*.c
11101 F:      arch/*/include/asm/ptrace*.h
11102
11103 PULSE8-CEC DRIVER
11104 M:      Hans Verkuil <hverkuil@xs4all.nl>
11105 L:      linux-media@vger.kernel.org
11106 T:      git git://linuxtv.org/media_tree.git
11107 S:      Maintained
11108 F:      drivers/media/usb/pulse8-cec/*
11109 F:      Documentation/media/cec-drivers/pulse8-cec.rst
11110
11111 PVRUSB2 VIDEO4LINUX DRIVER
11112 M:      Mike Isely <isely@pobox.com>
11113 L:      pvrusb2@isely.net       (subscribers-only)
11114 L:      linux-media@vger.kernel.org
11115 W:      http://www.isely.net/pvrusb2/
11116 T:      git git://linuxtv.org/media_tree.git
11117 S:      Maintained
11118 F:      Documentation/media/v4l-drivers/pvrusb2*
11119 F:      drivers/media/usb/pvrusb2/
11120
11121 PWC WEBCAM DRIVER
11122 M:      Hans Verkuil <hverkuil@xs4all.nl>
11123 L:      linux-media@vger.kernel.org
11124 T:      git git://linuxtv.org/media_tree.git
11125 S:      Odd Fixes
11126 F:      drivers/media/usb/pwc/*
11127
11128 PWM FAN DRIVER
11129 M:      Kamil Debski <kamil@wypas.org>
11130 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11131 L:      linux-hwmon@vger.kernel.org
11132 S:      Supported
11133 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
11134 F:      Documentation/hwmon/pwm-fan
11135 F:      drivers/hwmon/pwm-fan.c
11136
11137 PWM IR Transmitter
11138 M:      Sean Young <sean@mess.org>
11139 L:      linux-media@vger.kernel.org
11140 S:      Maintained
11141 F:      drivers/media/rc/pwm-ir-tx.c
11142
11143 PWM SUBSYSTEM
11144 M:      Thierry Reding <thierry.reding@gmail.com>
11145 L:      linux-pwm@vger.kernel.org
11146 S:      Maintained
11147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
11148 F:      Documentation/pwm.txt
11149 F:      Documentation/devicetree/bindings/pwm/
11150 F:      include/linux/pwm.h
11151 F:      drivers/pwm/
11152 F:      drivers/video/backlight/pwm_bl.c
11153 F:      include/linux/pwm_backlight.h
11154 F:      drivers/gpio/gpio-mvebu.c
11155 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
11156
11157 PXA GPIO DRIVER
11158 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11159 L:      linux-gpio@vger.kernel.org
11160 S:      Maintained
11161 F:      drivers/gpio/gpio-pxa.c
11162
11163 PXA MMCI DRIVER
11164 S:      Orphan
11165
11166 PXA RTC DRIVER
11167 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11168 L:      linux-rtc@vger.kernel.org
11169 S:      Maintained
11170
11171 PXA2xx/PXA3xx SUPPORT
11172 M:      Daniel Mack <daniel@zonque.org>
11173 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
11174 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11176 T:      git git://github.com/hzhuang1/linux.git
11177 T:      git git://github.com/rjarzmik/linux.git
11178 S:      Maintained
11179 F:      arch/arm/boot/dts/pxa*
11180 F:      arch/arm/mach-pxa/
11181 F:      drivers/dma/pxa*
11182 F:      drivers/pcmcia/pxa2xx*
11183 F:      drivers/pinctrl/pxa/
11184 F:      drivers/spi/spi-pxa2xx*
11185 F:      drivers/usb/gadget/udc/pxa2*
11186 F:      include/sound/pxa2xx-lib.h
11187 F:      sound/arm/pxa*
11188 F:      sound/soc/pxa/
11189
11190 PXA3xx NAND FLASH DRIVER
11191 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
11192 L:      linux-mtd@lists.infradead.org
11193 S:      Maintained
11194 F:      drivers/mtd/nand/pxa3xx_nand.c
11195
11196 QAT DRIVER
11197 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
11198 L:      qat-linux@intel.com
11199 S:      Supported
11200 F:      drivers/crypto/qat/
11201
11202 QCOM AUDIO (ASoC) DRIVERS
11203 M:      Patrick Lai <plai@codeaurora.org>
11204 M:      Banajit Goswami <bgoswami@codeaurora.org>
11205 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11206 S:      Supported
11207 F:      sound/soc/qcom/
11208
11209 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
11210 M:      Gabriel Somlo <somlo@cmu.edu>
11211 M:      "Michael S. Tsirkin" <mst@redhat.com>
11212 L:      qemu-devel@nongnu.org
11213 S:      Maintained
11214 F:      drivers/firmware/qemu_fw_cfg.c
11215
11216 QIB DRIVER
11217 M:      Mike Marciniszyn <infinipath@intel.com>
11218 L:      linux-rdma@vger.kernel.org
11219 S:      Supported
11220 F:      drivers/infiniband/hw/qib/
11221
11222 QLOGIC QL41xxx FCOE DRIVER
11223 M:      QLogic-Storage-Upstream@cavium.com
11224 L:      linux-scsi@vger.kernel.org
11225 S:      Supported
11226 F:      drivers/scsi/qedf/
11227
11228 QLOGIC QL41xxx ISCSI DRIVER
11229 M:      QLogic-Storage-Upstream@cavium.com
11230 L:      linux-scsi@vger.kernel.org
11231 S:      Supported
11232 F:      drivers/scsi/qedi/
11233
11234 QLOGIC QL4xxx ETHERNET DRIVER
11235 M:      Ariel Elior <Ariel.Elior@cavium.com>
11236 M:      everest-linux-l2@cavium.com
11237 L:      netdev@vger.kernel.org
11238 S:      Supported
11239 F:      drivers/net/ethernet/qlogic/qed/
11240 F:      include/linux/qed/
11241 F:      drivers/net/ethernet/qlogic/qede/
11242
11243 QLOGIC QL4xxx RDMA DRIVER
11244 M:      Ram Amrani <Ram.Amrani@cavium.com>
11245 M:      Michal Kalderon <Michal.Kalderon@cavium.com>
11246 M:      Ariel Elior <Ariel.Elior@cavium.com>
11247 L:      linux-rdma@vger.kernel.org
11248 S:      Supported
11249 F:      drivers/infiniband/hw/qedr/
11250 F:      include/uapi/rdma/qedr-abi.h
11251
11252 QLOGIC QLA1280 SCSI DRIVER
11253 M:      Michael Reed <mdr@sgi.com>
11254 L:      linux-scsi@vger.kernel.org
11255 S:      Maintained
11256 F:      drivers/scsi/qla1280.[ch]
11257
11258 QLOGIC QLA2XXX FC-SCSI DRIVER
11259 M:      qla2xxx-upstream@qlogic.com
11260 L:      linux-scsi@vger.kernel.org
11261 S:      Supported
11262 F:      Documentation/scsi/LICENSE.qla2xxx
11263 F:      drivers/scsi/qla2xxx/
11264
11265 QLOGIC QLA3XXX NETWORK DRIVER
11266 M:      Dept-GELinuxNICDev@cavium.com
11267 L:      netdev@vger.kernel.org
11268 S:      Supported
11269 F:      Documentation/networking/LICENSE.qla3xxx
11270 F:      drivers/net/ethernet/qlogic/qla3xxx.*
11271
11272 QLOGIC QLA4XXX iSCSI DRIVER
11273 M:      QLogic-Storage-Upstream@qlogic.com
11274 L:      linux-scsi@vger.kernel.org
11275 S:      Supported
11276 F:      Documentation/scsi/LICENSE.qla4xxx
11277 F:      drivers/scsi/qla4xxx/
11278
11279 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
11280 M:      Harish Patil <harish.patil@cavium.com>
11281 M:      Manish Chopra <manish.chopra@cavium.com>
11282 M:      Dept-GELinuxNICDev@cavium.com
11283 L:      netdev@vger.kernel.org
11284 S:      Supported
11285 F:      drivers/net/ethernet/qlogic/qlcnic/
11286
11287 QLOGIC QLGE 10Gb ETHERNET DRIVER
11288 M:      Harish Patil <harish.patil@cavium.com>
11289 M:      Manish Chopra <manish.chopra@cavium.com>
11290 M:      Dept-GELinuxNICDev@cavium.com
11291 L:      netdev@vger.kernel.org
11292 S:      Supported
11293 F:      drivers/net/ethernet/qlogic/qlge/
11294
11295 QNX4 FILESYSTEM
11296 M:      Anders Larsen <al@alarsen.net>
11297 W:      http://www.alarsen.net/linux/qnx4fs/
11298 S:      Maintained
11299 F:      fs/qnx4/
11300 F:      include/uapi/linux/qnx4_fs.h
11301 F:      include/uapi/linux/qnxtypes.h
11302
11303 QORIQ DPAA2 FSL-MC BUS DRIVER
11304 M:      Stuart Yoder <stuyoder@gmail.com>
11305 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
11306 L:      linux-kernel@vger.kernel.org
11307 S:      Maintained
11308 F:      drivers/staging/fsl-mc/
11309 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
11310
11311 QT1010 MEDIA DRIVER
11312 M:      Antti Palosaari <crope@iki.fi>
11313 L:      linux-media@vger.kernel.org
11314 W:      https://linuxtv.org
11315 W:      http://palosaari.fi/linux/
11316 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11317 T:      git git://linuxtv.org/anttip/media_tree.git
11318 S:      Maintained
11319 F:      drivers/media/tuners/qt1010*
11320
11321 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
11322 M:      Kalle Valo <kvalo@qca.qualcomm.com>
11323 L:      ath10k@lists.infradead.org
11324 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
11325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
11326 S:      Supported
11327 F:      drivers/net/wireless/ath/ath10k/
11328
11329 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
11330 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
11331 L:      linux-wireless@vger.kernel.org
11332 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
11333 S:      Supported
11334 F:      drivers/net/wireless/ath/ath9k/
11335
11336 QUALCOMM CAMERA SUBSYSTEM DRIVER
11337 M:      Todor Tomov <todor.tomov@linaro.org>
11338 L:      linux-media@vger.kernel.org
11339 S:      Maintained
11340 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
11341 F:      Documentation/media/v4l-drivers/qcom_camss.rst
11342 F:      drivers/media/platform/qcom/camss-8x16/
11343
11344 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
11345 M:      Timur Tabi <timur@codeaurora.org>
11346 L:      netdev@vger.kernel.org
11347 S:      Supported
11348 F:      drivers/net/ethernet/qualcomm/emac/
11349
11350 QUALCOMM HEXAGON ARCHITECTURE
11351 M:      Richard Kuo <rkuo@codeaurora.org>
11352 L:      linux-hexagon@vger.kernel.org
11353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
11354 S:      Supported
11355 F:      arch/hexagon/
11356
11357 QUALCOMM IOMMU
11358 M:      Rob Clark <robdclark@gmail.com>
11359 L:      iommu@lists.linux-foundation.org
11360 L:      linux-arm-msm@vger.kernel.org
11361 S:      Maintained
11362 F:      drivers/iommu/qcom_iommu.c
11363
11364 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
11365 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
11366 L:      linux-media@vger.kernel.org
11367 L:      linux-arm-msm@vger.kernel.org
11368 T:      git git://linuxtv.org/media_tree.git
11369 S:      Maintained
11370 F:      drivers/media/platform/qcom/venus/
11371
11372 QUALCOMM WCN36XX WIRELESS DRIVER
11373 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
11374 L:      wcn36xx@lists.infradead.org
11375 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
11376 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
11377 S:      Supported
11378 F:      drivers/net/wireless/ath/wcn36xx/
11379
11380 QUANTENNA QTNFMAC WIRELESS DRIVER
11381 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
11382 M:      Avinash Patil <avinashp@quantenna.com>
11383 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
11384 L:      linux-wireless@vger.kernel.org
11385 S:      Maintained
11386 F:      drivers/net/wireless/quantenna
11387
11388 RADEON and AMDGPU DRM DRIVERS
11389 M:      Alex Deucher <alexander.deucher@amd.com>
11390 M:      Christian König <christian.koenig@amd.com>
11391 L:      amd-gfx@lists.freedesktop.org
11392 T:      git git://people.freedesktop.org/~agd5f/linux
11393 S:      Supported
11394 F:      drivers/gpu/drm/radeon/
11395 F:      include/uapi/drm/radeon_drm.h
11396 F:      drivers/gpu/drm/amd/
11397 F:      include/uapi/drm/amdgpu_drm.h
11398
11399 RADEON FRAMEBUFFER DISPLAY DRIVER
11400 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11401 L:      linux-fbdev@vger.kernel.org
11402 S:      Maintained
11403 F:      drivers/video/fbdev/aty/radeon*
11404 F:      include/uapi/linux/radeonfb.h
11405
11406 RADIOSHARK RADIO DRIVER
11407 M:      Hans Verkuil <hverkuil@xs4all.nl>
11408 L:      linux-media@vger.kernel.org
11409 T:      git git://linuxtv.org/media_tree.git
11410 S:      Maintained
11411 F:      drivers/media/radio/radio-shark.c
11412
11413 RADIOSHARK2 RADIO DRIVER
11414 M:      Hans Verkuil <hverkuil@xs4all.nl>
11415 L:      linux-media@vger.kernel.org
11416 T:      git git://linuxtv.org/media_tree.git
11417 S:      Maintained
11418 F:      drivers/media/radio/radio-shark2.c
11419 F:      drivers/media/radio/radio-tea5777.c
11420
11421 RADOS BLOCK DEVICE (RBD)
11422 M:      Ilya Dryomov <idryomov@gmail.com>
11423 M:      Sage Weil <sage@redhat.com>
11424 M:      Alex Elder <elder@kernel.org>
11425 L:      ceph-devel@vger.kernel.org
11426 W:      http://ceph.com/
11427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
11428 T:      git git://github.com/ceph/ceph-client.git
11429 S:      Supported
11430 F:      Documentation/ABI/testing/sysfs-bus-rbd
11431 F:      drivers/block/rbd.c
11432 F:      drivers/block/rbd_types.h
11433
11434 RAGE128 FRAMEBUFFER DISPLAY DRIVER
11435 M:      Paul Mackerras <paulus@samba.org>
11436 L:      linux-fbdev@vger.kernel.org
11437 S:      Maintained
11438 F:      drivers/video/fbdev/aty/aty128fb.c
11439
11440 RAINSHADOW-CEC DRIVER
11441 M:      Hans Verkuil <hverkuil@xs4all.nl>
11442 L:      linux-media@vger.kernel.org
11443 T:      git git://linuxtv.org/media_tree.git
11444 S:      Maintained
11445 F:      drivers/media/usb/rainshadow-cec/*
11446
11447 RALINK MIPS ARCHITECTURE
11448 M:      John Crispin <john@phrozen.org>
11449 L:      linux-mips@linux-mips.org
11450 S:      Maintained
11451 F:      arch/mips/ralink
11452
11453 RALINK RT2X00 WIRELESS LAN DRIVER
11454 P:      rt2x00 project
11455 M:      Stanislaw Gruszka <sgruszka@redhat.com>
11456 M:      Helmut Schaa <helmut.schaa@googlemail.com>
11457 L:      linux-wireless@vger.kernel.org
11458 S:      Maintained
11459 F:      drivers/net/wireless/ralink/rt2x00/
11460
11461 RAMDISK RAM BLOCK DEVICE DRIVER
11462 M:      Jens Axboe <axboe@kernel.dk>
11463 S:      Maintained
11464 F:      Documentation/blockdev/ramdisk.txt
11465 F:      drivers/block/brd.c
11466
11467 RANDOM NUMBER DRIVER
11468 M:      "Theodore Ts'o" <tytso@mit.edu>
11469 S:      Maintained
11470 F:      drivers/char/random.c
11471
11472 RAPIDIO SUBSYSTEM
11473 M:      Matt Porter <mporter@kernel.crashing.org>
11474 M:      Alexandre Bounine <alexandre.bounine@idt.com>
11475 S:      Maintained
11476 F:      drivers/rapidio/
11477
11478 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
11479 L:      linux-wireless@vger.kernel.org
11480 S:      Orphan
11481 F:      drivers/net/wireless/ray*
11482
11483 RCUTORTURE MODULE
11484 M:      Josh Triplett <josh@joshtriplett.org>
11485 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11486 L:      linux-kernel@vger.kernel.org
11487 S:      Supported
11488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11489 F:      Documentation/RCU/torture.txt
11490 F:      kernel/rcu/rcutorture.c
11491
11492 RCUTORTURE TEST FRAMEWORK
11493 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11494 M:      Josh Triplett <josh@joshtriplett.org>
11495 R:      Steven Rostedt <rostedt@goodmis.org>
11496 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11497 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11498 L:      linux-kernel@vger.kernel.org
11499 S:      Supported
11500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11501 F:      tools/testing/selftests/rcutorture
11502
11503 RDC R-321X SoC
11504 M:      Florian Fainelli <florian@openwrt.org>
11505 S:      Maintained
11506
11507 RDC R6040 FAST ETHERNET DRIVER
11508 M:      Florian Fainelli <f.fainelli@gmail.com>
11509 L:      netdev@vger.kernel.org
11510 S:      Maintained
11511 F:      drivers/net/ethernet/rdc/r6040.c
11512
11513 RDMAVT - RDMA verbs software
11514 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
11515 L:      linux-rdma@vger.kernel.org
11516 S:      Supported
11517 F:      drivers/infiniband/sw/rdmavt
11518
11519 RDS - RELIABLE DATAGRAM SOCKETS
11520 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
11521 L:      netdev@vger.kernel.org
11522 L:      linux-rdma@vger.kernel.org
11523 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
11524 W:      https://oss.oracle.com/projects/rds/
11525 S:      Supported
11526 F:      net/rds/
11527 F:      Documentation/networking/rds.txt
11528
11529 RDT - RESOURCE ALLOCATION
11530 M:      Fenghua Yu <fenghua.yu@intel.com>
11531 L:      linux-kernel@vger.kernel.org
11532 S:      Supported
11533 F:      arch/x86/kernel/cpu/intel_rdt*
11534 F:      arch/x86/include/asm/intel_rdt_sched.h
11535 F:      Documentation/x86/intel_rdt*
11536
11537 READ-COPY UPDATE (RCU)
11538 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11539 M:      Josh Triplett <josh@joshtriplett.org>
11540 R:      Steven Rostedt <rostedt@goodmis.org>
11541 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11542 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11543 L:      linux-kernel@vger.kernel.org
11544 W:      http://www.rdrop.com/users/paulmck/RCU/
11545 S:      Supported
11546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11547 F:      Documentation/RCU/
11548 X:      Documentation/RCU/torture.txt
11549 F:      include/linux/rcu*
11550 X:      include/linux/srcu.h
11551 F:      kernel/rcu/
11552 X:      kernel/torture.c
11553
11554 REAL TIME CLOCK (RTC) SUBSYSTEM
11555 M:      Alessandro Zummo <a.zummo@towertech.it>
11556 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
11557 L:      linux-rtc@vger.kernel.org
11558 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
11559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
11560 S:      Maintained
11561 F:      Documentation/devicetree/bindings/rtc/
11562 F:      Documentation/rtc.txt
11563 F:      drivers/rtc/
11564 F:      include/linux/rtc.h
11565 F:      include/uapi/linux/rtc.h
11566 F:      include/linux/rtc/
11567 F:      include/linux/platform_data/rtc-*
11568 F:      tools/testing/selftests/timers/rtctest.c
11569
11570 REALTEK AUDIO CODECS
11571 M:      Bard Liao <bardliao@realtek.com>
11572 M:      Oder Chiou <oder_chiou@realtek.com>
11573 S:      Maintained
11574 F:      sound/soc/codecs/rt*
11575 F:      include/sound/rt*.h
11576
11577 REGISTER MAP ABSTRACTION
11578 M:      Mark Brown <broonie@kernel.org>
11579 L:      linux-kernel@vger.kernel.org
11580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
11581 S:      Supported
11582 F:      Documentation/devicetree/bindings/regmap/
11583 F:      drivers/base/regmap/
11584 F:      include/linux/regmap.h
11585
11586 REISERFS FILE SYSTEM
11587 L:      reiserfs-devel@vger.kernel.org
11588 S:      Supported
11589 F:      fs/reiserfs/
11590
11591 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
11592 M:      Ohad Ben-Cohen <ohad@wizery.com>
11593 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
11594 L:      linux-remoteproc@vger.kernel.org
11595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
11596 S:      Maintained
11597 F:      Documentation/devicetree/bindings/remoteproc/
11598 F:      Documentation/remoteproc.txt
11599 F:      drivers/remoteproc/
11600 F:      include/linux/remoteproc.h
11601
11602 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
11603 M:      Ohad Ben-Cohen <ohad@wizery.com>
11604 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
11605 L:      linux-remoteproc@vger.kernel.org
11606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
11607 S:      Maintained
11608 F:      drivers/rpmsg/
11609 F:      Documentation/rpmsg.txt
11610 F:      include/linux/rpmsg.h
11611 F:      include/linux/rpmsg/
11612
11613 RENESAS CLOCK DRIVERS
11614 M:      Geert Uytterhoeven <geert+renesas@glider.be>
11615 L:      linux-renesas-soc@vger.kernel.org
11616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
11617 S:      Supported
11618 F:      drivers/clk/renesas/
11619
11620 RENESAS ETHERNET DRIVERS
11621 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
11622 L:      netdev@vger.kernel.org
11623 L:      linux-renesas-soc@vger.kernel.org
11624 F:      Documentation/devicetree/bindings/net/renesas,*.txt
11625 F:      Documentation/devicetree/bindings/net/sh_eth.txt
11626 F:      drivers/net/ethernet/renesas/
11627 F:      include/linux/sh_eth.h
11628
11629 RENESAS R-CAR GYROADC DRIVER
11630 M:      Marek Vasut <marek.vasut@gmail.com>
11631 L:      linux-iio@vger.kernel.org
11632 S:      Supported
11633 F:      drivers/iio/adc/rcar_gyro_adc.c
11634
11635 RENESAS USB PHY DRIVER
11636 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
11637 L:      linux-renesas-soc@vger.kernel.org
11638 S:      Maintained
11639 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
11640
11641 RESET CONTROLLER FRAMEWORK
11642 M:      Philipp Zabel <p.zabel@pengutronix.de>
11643 T:      git git://git.pengutronix.de/git/pza/linux
11644 S:      Maintained
11645 F:      drivers/reset/
11646 F:      Documentation/devicetree/bindings/reset/
11647 F:      include/dt-bindings/reset/
11648 F:      include/linux/reset.h
11649 F:      include/linux/reset-controller.h
11650
11651 RFKILL
11652 M:      Johannes Berg <johannes@sipsolutions.net>
11653 L:      linux-wireless@vger.kernel.org
11654 W:      http://wireless.kernel.org/
11655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11657 S:      Maintained
11658 F:      Documentation/rfkill.txt
11659 F:      Documentation/ABI/stable/sysfs-class-rfkill
11660 F:      net/rfkill/
11661
11662 RHASHTABLE
11663 M:      Thomas Graf <tgraf@suug.ch>
11664 M:      Herbert Xu <herbert@gondor.apana.org.au>
11665 L:      netdev@vger.kernel.org
11666 S:      Maintained
11667 F:      lib/rhashtable.c
11668 F:      include/linux/rhashtable.h
11669
11670 RICOH R5C592 MEMORYSTICK DRIVER
11671 M:      Maxim Levitsky <maximlevitsky@gmail.com>
11672 S:      Maintained
11673 F:      drivers/memstick/host/r592.*
11674
11675 RICOH SMARTMEDIA/XD DRIVER
11676 M:      Maxim Levitsky <maximlevitsky@gmail.com>
11677 S:      Maintained
11678 F:      drivers/mtd/nand/r852.c
11679 F:      drivers/mtd/nand/r852.h
11680
11681 RISC-V ARCHITECTURE
11682 M:      Palmer Dabbelt <palmer@sifive.com>
11683 M:      Albert Ou <albert@sifive.com>
11684 L:      linux-riscv@lists.infradead.org
11685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git
11686 S:      Supported
11687 F:      arch/riscv/
11688 K:      riscv
11689 N:      riscv
11690
11691 ROCCAT DRIVERS
11692 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
11693 W:      http://sourceforge.net/projects/roccat/
11694 S:      Maintained
11695 F:      drivers/hid/hid-roccat*
11696 F:      include/linux/hid-roccat*
11697 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
11698
11699 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
11700 M:      Jacob chen <jacob2.chen@rock-chips.com>
11701 L:      linux-media@vger.kernel.org
11702 S:      Maintained
11703 F:      drivers/media/platform/rockchip/rga/
11704 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
11705
11706 ROCKER DRIVER
11707 M:      Jiri Pirko <jiri@resnulli.us>
11708 L:      netdev@vger.kernel.org
11709 S:      Supported
11710 F:      drivers/net/ethernet/rocker/
11711
11712 ROCKETPORT DRIVER
11713 P:      Comtrol Corp.
11714 W:      http://www.comtrol.com
11715 S:      Maintained
11716 F:      Documentation/serial/rocket.txt
11717 F:      drivers/tty/rocket*
11718
11719 ROCKETPORT EXPRESS/INFINITY DRIVER
11720 M:      Kevin Cernekee <cernekee@gmail.com>
11721 L:      linux-serial@vger.kernel.org
11722 S:      Odd Fixes
11723 F:      drivers/tty/serial/rp2.*
11724
11725 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
11726 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
11727 L:      linux-kernel@vger.kernel.org
11728 L:      linux-renesas-soc@vger.kernel.org
11729 S:      Supported
11730 F:      drivers/mfd/bd9571mwv.c
11731 F:      drivers/regulator/bd9571mwv-regulator.c
11732 F:      drivers/gpio/gpio-bd9571mwv.c
11733 F:      include/linux/mfd/bd9571mwv.h
11734 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
11735
11736 ROSE NETWORK LAYER
11737 M:      Ralf Baechle <ralf@linux-mips.org>
11738 L:      linux-hams@vger.kernel.org
11739 W:      http://www.linux-ax25.org/
11740 S:      Maintained
11741 F:      include/net/rose.h
11742 F:      include/uapi/linux/rose.h
11743 F:      net/rose/
11744
11745 RTL2830 MEDIA DRIVER
11746 M:      Antti Palosaari <crope@iki.fi>
11747 L:      linux-media@vger.kernel.org
11748 W:      https://linuxtv.org
11749 W:      http://palosaari.fi/linux/
11750 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11751 T:      git git://linuxtv.org/anttip/media_tree.git
11752 S:      Maintained
11753 F:      drivers/media/dvb-frontends/rtl2830*
11754
11755 RTL2832 MEDIA DRIVER
11756 M:      Antti Palosaari <crope@iki.fi>
11757 L:      linux-media@vger.kernel.org
11758 W:      https://linuxtv.org
11759 W:      http://palosaari.fi/linux/
11760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11761 T:      git git://linuxtv.org/anttip/media_tree.git
11762 S:      Maintained
11763 F:      drivers/media/dvb-frontends/rtl2832*
11764
11765 RTL2832_SDR MEDIA DRIVER
11766 M:      Antti Palosaari <crope@iki.fi>
11767 L:      linux-media@vger.kernel.org
11768 W:      https://linuxtv.org
11769 W:      http://palosaari.fi/linux/
11770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11771 T:      git git://linuxtv.org/anttip/media_tree.git
11772 S:      Maintained
11773 F:      drivers/media/dvb-frontends/rtl2832_sdr*
11774
11775 RTL8180 WIRELESS DRIVER
11776 L:      linux-wireless@vger.kernel.org
11777 W:      http://wireless.kernel.org/
11778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11779 S:      Orphan
11780 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
11781
11782 RTL8187 WIRELESS DRIVER
11783 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11784 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
11785 M:      Larry Finger <Larry.Finger@lwfinger.net>
11786 L:      linux-wireless@vger.kernel.org
11787 W:      http://wireless.kernel.org/
11788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11789 S:      Maintained
11790 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
11791
11792 RTL8192CE WIRELESS DRIVER
11793 M:      Larry Finger <Larry.Finger@lwfinger.net>
11794 M:      Chaoming Li <chaoming_li@realsil.com.cn>
11795 L:      linux-wireless@vger.kernel.org
11796 W:      http://wireless.kernel.org/
11797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11798 S:      Maintained
11799 F:      drivers/net/wireless/realtek/rtlwifi/
11800 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
11801
11802 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
11803 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
11804 L:      linux-wireless@vger.kernel.org
11805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
11806 S:      Maintained
11807 F:      drivers/net/wireless/realtek/rtl8xxxu/
11808
11809 RXRPC SOCKETS (AF_RXRPC)
11810 M:      David Howells <dhowells@redhat.com>
11811 L:      linux-afs@lists.infradead.org
11812 S:      Supported
11813 F:      net/rxrpc/
11814 F:      include/keys/rxrpc-type.h
11815 F:      include/net/af_rxrpc.h
11816 F:      include/trace/events/rxrpc.h
11817 F:      include/uapi/linux/rxrpc.h
11818 F:      Documentation/networking/rxrpc.txt
11819 W:      https://www.infradead.org/~dhowells/kafs/
11820
11821 S3 SAVAGE FRAMEBUFFER DRIVER
11822 M:      Antonino Daplas <adaplas@gmail.com>
11823 L:      linux-fbdev@vger.kernel.org
11824 S:      Maintained
11825 F:      drivers/video/fbdev/savage/
11826
11827 S390
11828 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
11829 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
11830 L:      linux-s390@vger.kernel.org
11831 W:      http://www.ibm.com/developerworks/linux/linux390/
11832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
11833 S:      Supported
11834 F:      arch/s390/
11835 F:      drivers/s390/
11836 F:      Documentation/s390/
11837 F:      Documentation/driver-api/s390-drivers.rst
11838
11839 S390 COMMON I/O LAYER
11840 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
11841 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
11842 L:      linux-s390@vger.kernel.org
11843 W:      http://www.ibm.com/developerworks/linux/linux390/
11844 S:      Supported
11845 F:      drivers/s390/cio/
11846
11847 S390 DASD DRIVER
11848 M:      Stefan Haberland <sth@linux.vnet.ibm.com>
11849 M:      Jan Hoeppner <hoeppner@linux.vnet.ibm.com>
11850 L:      linux-s390@vger.kernel.org
11851 W:      http://www.ibm.com/developerworks/linux/linux390/
11852 S:      Supported
11853 F:      drivers/s390/block/dasd*
11854 F:      block/partitions/ibm.c
11855
11856 S390 IOMMU (PCI)
11857 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
11858 L:      linux-s390@vger.kernel.org
11859 W:      http://www.ibm.com/developerworks/linux/linux390/
11860 S:      Supported
11861 F:      drivers/iommu/s390-iommu.c
11862
11863 S390 IUCV NETWORK LAYER
11864 M:      Julian Wiedmann <jwi@linux.vnet.ibm.com>
11865 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
11866 L:      linux-s390@vger.kernel.org
11867 W:      http://www.ibm.com/developerworks/linux/linux390/
11868 S:      Supported
11869 F:      drivers/s390/net/*iucv*
11870 F:      include/net/iucv/
11871 F:      net/iucv/
11872
11873 S390 NETWORK DRIVERS
11874 M:      Julian Wiedmann <jwi@linux.vnet.ibm.com>
11875 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
11876 L:      linux-s390@vger.kernel.org
11877 W:      http://www.ibm.com/developerworks/linux/linux390/
11878 S:      Supported
11879 F:      drivers/s390/net/
11880
11881 S390 PCI SUBSYSTEM
11882 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
11883 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
11884 L:      linux-s390@vger.kernel.org
11885 W:      http://www.ibm.com/developerworks/linux/linux390/
11886 S:      Supported
11887 F:      arch/s390/pci/
11888 F:      drivers/pci/hotplug/s390_pci_hpc.c
11889
11890 S390 VFIO-CCW DRIVER
11891 M:      Cornelia Huck <cohuck@redhat.com>
11892 M:      Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com>
11893 L:      linux-s390@vger.kernel.org
11894 L:      kvm@vger.kernel.org
11895 S:      Supported
11896 F:      drivers/s390/cio/vfio_ccw*
11897 F:      Documentation/s390/vfio-ccw.txt
11898 F:      include/uapi/linux/vfio_ccw.h
11899
11900 S390 ZCRYPT DRIVER
11901 M:      Harald Freudenberger <freude@de.ibm.com>
11902 L:      linux-s390@vger.kernel.org
11903 W:      http://www.ibm.com/developerworks/linux/linux390/
11904 S:      Supported
11905 F:      drivers/s390/crypto/
11906
11907 S390 ZFCP DRIVER
11908 M:      Steffen Maier <maier@linux.vnet.ibm.com>
11909 M:      Benjamin Block <bblock@linux.vnet.ibm.com>
11910 L:      linux-s390@vger.kernel.org
11911 W:      http://www.ibm.com/developerworks/linux/linux390/
11912 S:      Supported
11913 F:      drivers/s390/scsi/zfcp_*
11914
11915 S3C24XX SD/MMC Driver
11916 M:      Ben Dooks <ben-linux@fluff.org>
11917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11918 S:      Supported
11919 F:      drivers/mmc/host/s3cmci.*
11920
11921 SAA6588 RDS RECEIVER DRIVER
11922 M:      Hans Verkuil <hverkuil@xs4all.nl>
11923 L:      linux-media@vger.kernel.org
11924 T:      git git://linuxtv.org/media_tree.git
11925 W:      https://linuxtv.org
11926 S:      Odd Fixes
11927 F:      drivers/media/i2c/saa6588*
11928
11929 SAA7134 VIDEO4LINUX DRIVER
11930 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11931 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11932 L:      linux-media@vger.kernel.org
11933 W:      https://linuxtv.org
11934 T:      git git://linuxtv.org/media_tree.git
11935 S:      Odd fixes
11936 F:      Documentation/media/v4l-drivers/saa7134*
11937 F:      drivers/media/pci/saa7134/
11938
11939 SAA7146 VIDEO4LINUX-2 DRIVER
11940 M:      Hans Verkuil <hverkuil@xs4all.nl>
11941 L:      linux-media@vger.kernel.org
11942 T:      git git://linuxtv.org/media_tree.git
11943 S:      Maintained
11944 F:      drivers/media/common/saa7146/
11945 F:      drivers/media/pci/saa7146/
11946 F:      include/media/saa7146*
11947
11948 SAMSUNG AUDIO (ASoC) DRIVERS
11949 M:      Krzysztof Kozlowski <krzk@kernel.org>
11950 M:      Sangbeom Kim <sbkim73@samsung.com>
11951 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
11952 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11953 S:      Supported
11954 F:      sound/soc/samsung/
11955
11956 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
11957 M:      Krzysztof Kozlowski <krzk@kernel.org>
11958 L:      linux-crypto@vger.kernel.org
11959 L:      linux-samsung-soc@vger.kernel.org
11960 S:      Maintained
11961 F:      drivers/crypto/exynos-rng.c
11962 F:      Documentation/devicetree/bindings/crypto/samsung,exynos-rng4.txt
11963
11964 SAMSUNG FRAMEBUFFER DRIVER
11965 M:      Jingoo Han <jingoohan1@gmail.com>
11966 L:      linux-fbdev@vger.kernel.org
11967 S:      Maintained
11968 F:      drivers/video/fbdev/s3c-fb.c
11969
11970 SAMSUNG LAPTOP DRIVER
11971 M:      Corentin Chary <corentin.chary@gmail.com>
11972 L:      platform-driver-x86@vger.kernel.org
11973 S:      Maintained
11974 F:      drivers/platform/x86/samsung-laptop.c
11975
11976 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
11977 M:      Sangbeom Kim <sbkim73@samsung.com>
11978 M:      Krzysztof Kozlowski <krzk@kernel.org>
11979 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11980 L:      linux-kernel@vger.kernel.org
11981 L:      linux-samsung-soc@vger.kernel.org
11982 S:      Supported
11983 F:      drivers/mfd/sec*.c
11984 F:      drivers/regulator/s2m*.c
11985 F:      drivers/regulator/s5m*.c
11986 F:      drivers/clk/clk-s2mps11.c
11987 F:      drivers/rtc/rtc-s5m.c
11988 F:      include/linux/mfd/samsung/
11989 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
11990 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
11991 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
11992 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
11993
11994 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
11995 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
11996 L:      linux-media@vger.kernel.org
11997 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11998 S:      Maintained
11999 F:      drivers/media/platform/s3c-camif/
12000 F:      include/media/drv-intf/s3c_camif.h
12001
12002 SAMSUNG S3FWRN5 NFC DRIVER
12003 M:      Robert Baldyga <r.baldyga@samsung.com>
12004 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
12005 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12006 S:      Supported
12007 F:      drivers/nfc/s3fwrn5
12008
12009 SAMSUNG S5C73M3 CAMERA DRIVER
12010 M:      Kyungmin Park <kyungmin.park@samsung.com>
12011 M:      Andrzej Hajda <a.hajda@samsung.com>
12012 L:      linux-media@vger.kernel.org
12013 S:      Supported
12014 F:      drivers/media/i2c/s5c73m3/*
12015
12016 SAMSUNG S5K5BAF CAMERA DRIVER
12017 M:      Kyungmin Park <kyungmin.park@samsung.com>
12018 M:      Andrzej Hajda <a.hajda@samsung.com>
12019 L:      linux-media@vger.kernel.org
12020 S:      Supported
12021 F:      drivers/media/i2c/s5k5baf.c
12022
12023 SAMSUNG S5P Security SubSystem (SSS) DRIVER
12024 M:      Krzysztof Kozlowski <krzk@kernel.org>
12025 M:      Vladimir Zapolskiy <vz@mleia.com>
12026 L:      linux-crypto@vger.kernel.org
12027 L:      linux-samsung-soc@vger.kernel.org
12028 S:      Maintained
12029 F:      drivers/crypto/s5p-sss.c
12030
12031 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
12032 M:      Kyungmin Park <kyungmin.park@samsung.com>
12033 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12034 L:      linux-media@vger.kernel.org
12035 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
12036 S:      Supported
12037 F:      drivers/media/platform/exynos4-is/
12038
12039 SAMSUNG SOC CLOCK DRIVERS
12040 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12041 M:      Tomasz Figa <tomasz.figa@gmail.com>
12042 M:      Chanwoo Choi <cw00.choi@samsung.com>
12043 S:      Supported
12044 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12045 F:      drivers/clk/samsung/
12046 F:      include/dt-bindings/clock/exynos*.h
12047 F:      Documentation/devicetree/bindings/clock/exynos*.txt
12048
12049 SAMSUNG SPI DRIVERS
12050 M:      Kukjin Kim <kgene@kernel.org>
12051 M:      Krzysztof Kozlowski <krzk@kernel.org>
12052 M:      Andi Shyti <andi.shyti@samsung.com>
12053 L:      linux-spi@vger.kernel.org
12054 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12055 S:      Maintained
12056 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
12057 F:      drivers/spi/spi-s3c*
12058 F:      include/linux/platform_data/spi-s3c64xx.h
12059
12060 SAMSUNG SXGBE DRIVERS
12061 M:      Byungho An <bh74.an@samsung.com>
12062 M:      Girish K S <ks.giri@samsung.com>
12063 M:      Vipul Pandya <vipul.pandya@samsung.com>
12064 S:      Supported
12065 L:      netdev@vger.kernel.org
12066 F:      drivers/net/ethernet/samsung/sxgbe/
12067
12068 SAMSUNG THERMAL DRIVER
12069 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12070 L:      linux-pm@vger.kernel.org
12071 L:      linux-samsung-soc@vger.kernel.org
12072 S:      Supported
12073 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
12074 F:      drivers/thermal/samsung/
12075
12076 SAMSUNG USB2 PHY DRIVER
12077 M:      Kamil Debski <kamil@wypas.org>
12078 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12079 L:      linux-kernel@vger.kernel.org
12080 S:      Supported
12081 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
12082 F:      Documentation/phy/samsung-usb2.txt
12083 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
12084 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
12085 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
12086 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
12087 F:      drivers/phy/samsung/phy-samsung-usb2.c
12088 F:      drivers/phy/samsung/phy-samsung-usb2.h
12089
12090 SC1200 WDT DRIVER
12091 M:      Zwane Mwaikambo <zwanem@gmail.com>
12092 S:      Maintained
12093 F:      drivers/watchdog/sc1200wdt.c
12094
12095 SCHEDULER
12096 M:      Ingo Molnar <mingo@redhat.com>
12097 M:      Peter Zijlstra <peterz@infradead.org>
12098 L:      linux-kernel@vger.kernel.org
12099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
12100 S:      Maintained
12101 F:      kernel/sched/
12102 F:      include/linux/sched.h
12103 F:      include/uapi/linux/sched.h
12104 F:      include/linux/wait.h
12105
12106 SCORE ARCHITECTURE
12107 M:      Chen Liqin <liqin.linux@gmail.com>
12108 M:      Lennox Wu <lennox.wu@gmail.com>
12109 W:      http://www.sunplus.com
12110 S:      Supported
12111 F:      arch/score/
12112
12113 SCR24X CHIP CARD INTERFACE DRIVER
12114 M:      Lubomir Rintel <lkundrak@v3.sk>
12115 S:      Supported
12116 F:      drivers/char/pcmcia/scr24x_cs.c
12117
12118 SCSI CDROM DRIVER
12119 M:      Jens Axboe <axboe@kernel.dk>
12120 L:      linux-scsi@vger.kernel.org
12121 W:      http://www.kernel.dk
12122 S:      Maintained
12123 F:      drivers/scsi/sr*
12124
12125 SCSI RDMA PROTOCOL (SRP) INITIATOR
12126 M:      Bart Van Assche <bart.vanassche@sandisk.com>
12127 L:      linux-rdma@vger.kernel.org
12128 S:      Supported
12129 W:      http://www.openfabrics.org
12130 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
12132 F:      drivers/infiniband/ulp/srp/
12133 F:      include/scsi/srp.h
12134
12135 SCSI SG DRIVER
12136 M:      Doug Gilbert <dgilbert@interlog.com>
12137 L:      linux-scsi@vger.kernel.org
12138 W:      http://sg.danny.cz/sg
12139 S:      Maintained
12140 F:      Documentation/scsi/scsi-generic.txt
12141 F:      drivers/scsi/sg.c
12142 F:      include/scsi/sg.h
12143
12144 SCSI SUBSYSTEM
12145 M:      "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
12146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
12147 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
12148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
12149 L:      linux-scsi@vger.kernel.org
12150 S:      Maintained
12151 F:      Documentation/devicetree/bindings/scsi/
12152 F:      drivers/scsi/
12153 F:      include/scsi/
12154
12155 SCSI TAPE DRIVER
12156 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
12157 L:      linux-scsi@vger.kernel.org
12158 S:      Maintained
12159 F:      Documentation/scsi/st.txt
12160 F:      drivers/scsi/st.*
12161 F:      drivers/scsi/st_*.h
12162
12163 SCTP PROTOCOL
12164 M:      Vlad Yasevich <vyasevich@gmail.com>
12165 M:      Neil Horman <nhorman@tuxdriver.com>
12166 L:      linux-sctp@vger.kernel.org
12167 W:      http://lksctp.sourceforge.net
12168 S:      Maintained
12169 F:      Documentation/networking/sctp.txt
12170 F:      include/linux/sctp.h
12171 F:      include/uapi/linux/sctp.h
12172 F:      include/net/sctp/
12173 F:      net/sctp/
12174
12175 SCx200 CPU SUPPORT
12176 M:      Jim Cromie <jim.cromie@gmail.com>
12177 S:      Odd Fixes
12178 F:      Documentation/i2c/busses/scx200_acb
12179 F:      arch/x86/platform/scx200/
12180 F:      drivers/watchdog/scx200_wdt.c
12181 F:      drivers/i2c/busses/scx200*
12182 F:      drivers/mtd/maps/scx200_docflash.c
12183 F:      include/linux/scx200.h
12184
12185 SCx200 GPIO DRIVER
12186 M:      Jim Cromie <jim.cromie@gmail.com>
12187 S:      Maintained
12188 F:      drivers/char/scx200_gpio.c
12189 F:      include/linux/scx200_gpio.h
12190
12191 SCx200 HRT CLOCKSOURCE DRIVER
12192 M:      Jim Cromie <jim.cromie@gmail.com>
12193 S:      Maintained
12194 F:      drivers/clocksource/scx200_hrt.c
12195
12196 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
12197 M:      Sascha Sommer <saschasommer@freenet.de>
12198 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
12199 S:      Maintained
12200 F:      drivers/mmc/host/sdricoh_cs.c
12201
12202 SECURE COMPUTING
12203 M:      Kees Cook <keescook@chromium.org>
12204 R:      Andy Lutomirski <luto@amacapital.net>
12205 R:      Will Drewry <wad@chromium.org>
12206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
12207 S:      Supported
12208 F:      kernel/seccomp.c
12209 F:      include/uapi/linux/seccomp.h
12210 F:      include/linux/seccomp.h
12211 F:      tools/testing/selftests/seccomp/*
12212 F:      tools/testing/selftests/kselftest_harness.h
12213 F:      Documentation/userspace-api/seccomp_filter.rst
12214 K:      \bsecure_computing
12215 K:      \bTIF_SECCOMP\b
12216
12217 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
12218 M:      Al Cooper <alcooperx@gmail.com>
12219 L:      linux-mmc@vger.kernel.org
12220 L:      bcm-kernel-feedback-list@broadcom.com
12221 S:      Maintained
12222 F:      drivers/mmc/host/sdhci-brcmstb*
12223
12224 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
12225 M:      Adrian Hunter <adrian.hunter@intel.com>
12226 L:      linux-mmc@vger.kernel.org
12227 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
12228 S:      Maintained
12229 F:      drivers/mmc/host/sdhci*
12230 F:      include/linux/mmc/sdhci*
12231
12232 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
12233 M:      Ben Dooks <ben-linux@fluff.org>
12234 M:      Jaehoon Chung <jh80.chung@samsung.com>
12235 L:      linux-mmc@vger.kernel.org
12236 S:      Maintained
12237 F:      drivers/mmc/host/sdhci-s3c*
12238
12239 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
12240 M:      Viresh Kumar <vireshk@kernel.org>
12241 L:      linux-mmc@vger.kernel.org
12242 S:      Maintained
12243 F:      drivers/mmc/host/sdhci-spear.c
12244
12245 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
12246 M:      Kishon Vijay Abraham I <kishon@ti.com>
12247 L:      linux-mmc@vger.kernel.org
12248 S:      Maintained
12249 F:      drivers/mmc/host/sdhci-omap.c
12250
12251 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
12252 M:      Scott Bauer <scott.bauer@intel.com>
12253 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12254 L:      linux-block@vger.kernel.org
12255 S:      Supported
12256 F:      block/sed*
12257 F:      block/opal_proto.h
12258 F:      include/linux/sed*
12259 F:      include/uapi/linux/sed*
12260
12261 SECURITY CONTACT
12262 M:      Security Officers <security@kernel.org>
12263 S:      Supported
12264
12265 SECURITY SUBSYSTEM
12266 M:      James Morris <jmorris@namei.org>
12267 M:      "Serge E. Hallyn" <serge@hallyn.com>
12268 L:      linux-security-module@vger.kernel.org (suggested Cc:)
12269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
12270 W:      http://kernsec.org/
12271 S:      Supported
12272 F:      security/
12273
12274 SELINUX SECURITY MODULE
12275 M:      Paul Moore <paul@paul-moore.com>
12276 M:      Stephen Smalley <sds@tycho.nsa.gov>
12277 M:      Eric Paris <eparis@parisplace.org>
12278 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
12279 W:      https://selinuxproject.org
12280 W:      https://github.com/SELinuxProject
12281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
12282 S:      Supported
12283 F:      include/linux/selinux*
12284 F:      security/selinux/
12285 F:      scripts/selinux/
12286 F:      Documentation/admin-guide/LSM/SELinux.rst
12287
12288 SENSABLE PHANTOM
12289 M:      Jiri Slaby <jirislaby@gmail.com>
12290 S:      Maintained
12291 F:      drivers/misc/phantom.c
12292 F:      include/uapi/linux/phantom.h
12293
12294 SERIAL DEVICE BUS
12295 M:      Rob Herring <robh@kernel.org>
12296 L:      linux-serial@vger.kernel.org
12297 S:      Maintained
12298 F:      Documentation/devicetree/bindings/serial/slave-device.txt
12299 F:      drivers/tty/serdev/
12300 F:      include/linux/serdev.h
12301
12302 SERIAL DRIVERS
12303 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12304 L:      linux-serial@vger.kernel.org
12305 S:      Maintained
12306 F:      Documentation/devicetree/bindings/serial/
12307 F:      drivers/tty/serial/
12308
12309 SERIAL IR RECEIVER
12310 M:      Sean Young <sean@mess.org>
12311 L:      linux-media@vger.kernel.org
12312 S:      Maintained
12313 F:      drivers/media/rc/serial_ir.c
12314
12315 SFC NETWORK DRIVER
12316 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
12317 M:      Edward Cree <ecree@solarflare.com>
12318 M:      Bert Kenward <bkenward@solarflare.com>
12319 L:      netdev@vger.kernel.org
12320 S:      Supported
12321 F:      drivers/net/ethernet/sfc/
12322
12323 SGI GRU DRIVER
12324 M:      Dimitri Sivanich <sivanich@sgi.com>
12325 S:      Maintained
12326 F:      drivers/misc/sgi-gru/
12327
12328 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
12329 M:      Pat Gefre <pfg@sgi.com>
12330 L:      linux-ia64@vger.kernel.org
12331 S:      Supported
12332 F:      Documentation/ia64/serial.txt
12333 F:      drivers/tty/serial/ioc?_serial.c
12334 F:      include/linux/ioc?.h
12335
12336 SGI XP/XPC/XPNET DRIVER
12337 M:      Cliff Whickman <cpw@sgi.com>
12338 M:      Robin Holt <robinmholt@gmail.com>
12339 S:      Maintained
12340 F:      drivers/misc/sgi-xp/
12341
12342 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
12343 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
12344 L:      linux-s390@vger.kernel.org
12345 W:      http://www.ibm.com/developerworks/linux/linux390/
12346 S:      Supported
12347 F:      net/smc/
12348
12349 SH_VEU V4L2 MEM2MEM DRIVER
12350 L:      linux-media@vger.kernel.org
12351 S:      Orphan
12352 F:      drivers/media/platform/sh_veu.c
12353
12354 SH_VOU V4L2 OUTPUT DRIVER
12355 L:      linux-media@vger.kernel.org
12356 S:      Orphan
12357 F:      drivers/media/platform/sh_vou.c
12358 F:      include/media/drv-intf/sh_vou.h
12359
12360 SI2157 MEDIA DRIVER
12361 M:      Antti Palosaari <crope@iki.fi>
12362 L:      linux-media@vger.kernel.org
12363 W:      https://linuxtv.org
12364 W:      http://palosaari.fi/linux/
12365 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12366 T:      git git://linuxtv.org/anttip/media_tree.git
12367 S:      Maintained
12368 F:      drivers/media/tuners/si2157*
12369
12370 SI2168 MEDIA DRIVER
12371 M:      Antti Palosaari <crope@iki.fi>
12372 L:      linux-media@vger.kernel.org
12373 W:      https://linuxtv.org
12374 W:      http://palosaari.fi/linux/
12375 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12376 T:      git git://linuxtv.org/anttip/media_tree.git
12377 S:      Maintained
12378 F:      drivers/media/dvb-frontends/si2168*
12379
12380 SI470X FM RADIO RECEIVER I2C DRIVER
12381 M:      Hans Verkuil <hverkuil@xs4all.nl>
12382 L:      linux-media@vger.kernel.org
12383 T:      git git://linuxtv.org/media_tree.git
12384 W:      https://linuxtv.org
12385 S:      Odd Fixes
12386 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
12387
12388 SI470X FM RADIO RECEIVER USB DRIVER
12389 M:      Hans Verkuil <hverkuil@xs4all.nl>
12390 L:      linux-media@vger.kernel.org
12391 T:      git git://linuxtv.org/media_tree.git
12392 W:      https://linuxtv.org
12393 S:      Maintained
12394 F:      drivers/media/radio/si470x/radio-si470x-common.c
12395 F:      drivers/media/radio/si470x/radio-si470x.h
12396 F:      drivers/media/radio/si470x/radio-si470x-usb.c
12397
12398 SI4713 FM RADIO TRANSMITTER I2C DRIVER
12399 M:      Eduardo Valentin <edubezval@gmail.com>
12400 L:      linux-media@vger.kernel.org
12401 T:      git git://linuxtv.org/media_tree.git
12402 W:      https://linuxtv.org
12403 S:      Odd Fixes
12404 F:      drivers/media/radio/si4713/si4713.?
12405
12406 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
12407 M:      Eduardo Valentin <edubezval@gmail.com>
12408 L:      linux-media@vger.kernel.org
12409 T:      git git://linuxtv.org/media_tree.git
12410 W:      https://linuxtv.org
12411 S:      Odd Fixes
12412 F:      drivers/media/radio/si4713/radio-platform-si4713.c
12413
12414 SI4713 FM RADIO TRANSMITTER USB DRIVER
12415 M:      Hans Verkuil <hverkuil@xs4all.nl>
12416 L:      linux-media@vger.kernel.org
12417 T:      git git://linuxtv.org/media_tree.git
12418 W:      https://linuxtv.org
12419 S:      Maintained
12420 F:      drivers/media/radio/si4713/radio-usb-si4713.c
12421
12422 SIANO DVB DRIVER
12423 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
12424 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12425 L:      linux-media@vger.kernel.org
12426 W:      https://linuxtv.org
12427 T:      git git://linuxtv.org/media_tree.git
12428 S:      Odd fixes
12429 F:      drivers/media/common/siano/
12430 F:      drivers/media/usb/siano/
12431 F:      drivers/media/usb/siano/
12432 F:      drivers/media/mmc/siano/
12433
12434 SILEAD TOUCHSCREEN DRIVER
12435 M:      Hans de Goede <hdegoede@redhat.com>
12436 L:      linux-input@vger.kernel.org
12437 L:      platform-driver-x86@vger.kernel.org
12438 S:      Maintained
12439 F:      drivers/input/touchscreen/silead.c
12440 F:      drivers/platform/x86/silead_dmi.c
12441
12442 SILICON MOTION SM712 FRAME BUFFER DRIVER
12443 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12444 M:      Teddy Wang <teddy.wang@siliconmotion.com>
12445 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12446 L:      linux-fbdev@vger.kernel.org
12447 S:      Maintained
12448 F:      drivers/video/fbdev/sm712*
12449 F:      Documentation/fb/sm712fb.txt
12450
12451 SIMPLE FIRMWARE INTERFACE (SFI)
12452 M:      Len Brown <lenb@kernel.org>
12453 L:      sfi-devel@simplefirmware.org
12454 W:      http://simplefirmware.org/
12455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
12456 S:      Supported
12457 F:      arch/x86/platform/sfi/
12458 F:      drivers/sfi/
12459 F:      include/linux/sfi*.h
12460
12461 SIMPLEFB FB DRIVER
12462 M:      Hans de Goede <hdegoede@redhat.com>
12463 L:      linux-fbdev@vger.kernel.org
12464 S:      Maintained
12465 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
12466 F:      drivers/video/fbdev/simplefb.c
12467 F:      include/linux/platform_data/simplefb.h
12468
12469 SIMTEC EB110ATX (Chalice CATS)
12470 P:      Ben Dooks
12471 P:      Vincent Sanders <vince@simtec.co.uk>
12472 M:      Simtec Linux Team <linux@simtec.co.uk>
12473 W:      http://www.simtec.co.uk/products/EB110ATX/
12474 S:      Supported
12475
12476 SIMTEC EB2410ITX (BAST)
12477 P:      Ben Dooks
12478 P:      Vincent Sanders <vince@simtec.co.uk>
12479 M:      Simtec Linux Team <linux@simtec.co.uk>
12480 W:      http://www.simtec.co.uk/products/EB2410ITX/
12481 S:      Supported
12482 F:      arch/arm/mach-s3c24xx/mach-bast.c
12483 F:      arch/arm/mach-s3c24xx/bast-ide.c
12484 F:      arch/arm/mach-s3c24xx/bast-irq.c
12485
12486 SIPHASH PRF ROUTINES
12487 M:      Jason A. Donenfeld <Jason@zx2c4.com>
12488 S:      Maintained
12489 F:      lib/siphash.c
12490 F:      lib/test_siphash.c
12491 F:      include/linux/siphash.h
12492
12493 SIS 190 ETHERNET DRIVER
12494 M:      Francois Romieu <romieu@fr.zoreil.com>
12495 L:      netdev@vger.kernel.org
12496 S:      Maintained
12497 F:      drivers/net/ethernet/sis/sis190.c
12498
12499 SIS 900/7016 FAST ETHERNET DRIVER
12500 M:      Daniele Venzano <venza@brownhat.org>
12501 W:      http://www.brownhat.org/sis900.html
12502 L:      netdev@vger.kernel.org
12503 S:      Maintained
12504 F:      drivers/net/ethernet/sis/sis900.*
12505
12506 SIS FRAMEBUFFER DRIVER
12507 M:      Thomas Winischhofer <thomas@winischhofer.net>
12508 W:      http://www.winischhofer.net/linuxsisvga.shtml
12509 S:      Maintained
12510 F:      Documentation/fb/sisfb.txt
12511 F:      drivers/video/fbdev/sis/
12512 F:      include/video/sisfb.h
12513
12514 SIS USB2VGA DRIVER
12515 M:      Thomas Winischhofer <thomas@winischhofer.net>
12516 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
12517 S:      Maintained
12518 F:      drivers/usb/misc/sisusbvga/
12519
12520 SLAB ALLOCATOR
12521 M:      Christoph Lameter <cl@linux.com>
12522 M:      Pekka Enberg <penberg@kernel.org>
12523 M:      David Rientjes <rientjes@google.com>
12524 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
12525 M:      Andrew Morton <akpm@linux-foundation.org>
12526 L:      linux-mm@kvack.org
12527 S:      Maintained
12528 F:      include/linux/sl?b*.h
12529 F:      mm/sl?b*
12530
12531 SLEEPABLE READ-COPY UPDATE (SRCU)
12532 M:      Lai Jiangshan <jiangshanlai@gmail.com>
12533 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12534 M:      Josh Triplett <josh@joshtriplett.org>
12535 R:      Steven Rostedt <rostedt@goodmis.org>
12536 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12537 L:      linux-kernel@vger.kernel.org
12538 W:      http://www.rdrop.com/users/paulmck/RCU/
12539 S:      Supported
12540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12541 F:      include/linux/srcu.h
12542 F:      kernel/rcu/srcu.c
12543
12544 SMACK SECURITY MODULE
12545 M:      Casey Schaufler <casey@schaufler-ca.com>
12546 L:      linux-security-module@vger.kernel.org
12547 W:      http://schaufler-ca.com
12548 T:      git git://github.com/cschaufler/smack-next
12549 S:      Maintained
12550 F:      Documentation/admin-guide/LSM/Smack.rst
12551 F:      security/smack/
12552
12553 SMC91x ETHERNET DRIVER
12554 M:      Nicolas Pitre <nico@fluxnic.net>
12555 S:      Odd Fixes
12556 F:      drivers/net/ethernet/smsc/smc91x.*
12557
12558 SMIA AND SMIA++ IMAGE SENSOR DRIVER
12559 M:      Sakari Ailus <sakari.ailus@iki.fi>
12560 L:      linux-media@vger.kernel.org
12561 S:      Maintained
12562 F:      drivers/media/i2c/smiapp/
12563 F:      include/media/i2c/smiapp.h
12564 F:      drivers/media/i2c/smiapp-pll.c
12565 F:      drivers/media/i2c/smiapp-pll.h
12566 F:      include/uapi/linux/smiapp.h
12567 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
12568
12569 SMM665 HARDWARE MONITOR DRIVER
12570 M:      Guenter Roeck <linux@roeck-us.net>
12571 L:      linux-hwmon@vger.kernel.org
12572 S:      Maintained
12573 F:      Documentation/hwmon/smm665
12574 F:      drivers/hwmon/smm665.c
12575
12576 SMSC EMC2103 HARDWARE MONITOR DRIVER
12577 M:      Steve Glendinning <steve.glendinning@shawell.net>
12578 L:      linux-hwmon@vger.kernel.org
12579 S:      Maintained
12580 F:      Documentation/hwmon/emc2103
12581 F:      drivers/hwmon/emc2103.c
12582
12583 SMSC SCH5627 HARDWARE MONITOR DRIVER
12584 M:      Hans de Goede <hdegoede@redhat.com>
12585 L:      linux-hwmon@vger.kernel.org
12586 S:      Supported
12587 F:      Documentation/hwmon/sch5627
12588 F:      drivers/hwmon/sch5627.c
12589
12590 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
12591 M:      Steve Glendinning <steve.glendinning@shawell.net>
12592 L:      linux-fbdev@vger.kernel.org
12593 S:      Maintained
12594 F:      drivers/video/fbdev/smscufx.c
12595
12596 SMSC47B397 HARDWARE MONITOR DRIVER
12597 M:      Jean Delvare <jdelvare@suse.com>
12598 L:      linux-hwmon@vger.kernel.org
12599 S:      Maintained
12600 F:      Documentation/hwmon/smsc47b397
12601 F:      drivers/hwmon/smsc47b397.c
12602
12603 SMSC911x ETHERNET DRIVER
12604 M:      Steve Glendinning <steve.glendinning@shawell.net>
12605 L:      netdev@vger.kernel.org
12606 S:      Maintained
12607 F:      include/linux/smsc911x.h
12608 F:      drivers/net/ethernet/smsc/smsc911x.*
12609
12610 SMSC9420 PCI ETHERNET DRIVER
12611 M:      Steve Glendinning <steve.glendinning@shawell.net>
12612 L:      netdev@vger.kernel.org
12613 S:      Maintained
12614 F:      drivers/net/ethernet/smsc/smsc9420.*
12615
12616 SOC-CAMERA V4L2 SUBSYSTEM
12617 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
12618 L:      linux-media@vger.kernel.org
12619 T:      git git://linuxtv.org/media_tree.git
12620 S:      Maintained
12621 F:      include/media/soc*
12622 F:      drivers/media/i2c/soc_camera/
12623 F:      drivers/media/platform/soc_camera/
12624
12625 SOCIONEXT UNIPHIER SOUND DRIVER
12626 M:      Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
12627 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12628 S:      Maintained
12629 F:      sound/soc/uniphier/
12630
12631 SOEKRIS NET48XX LED SUPPORT
12632 M:      Chris Boot <bootc@bootc.net>
12633 S:      Maintained
12634 F:      drivers/leds/leds-net48xx.c
12635
12636 SOFT-ROCE DRIVER (rxe)
12637 M:      Moni Shoua <monis@mellanox.com>
12638 L:      linux-rdma@vger.kernel.org
12639 S:      Supported
12640 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
12641 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12642 F:      drivers/infiniband/sw/rxe/
12643 F:      include/uapi/rdma/rdma_user_rxe.h
12644
12645 SOFTLOGIC 6x10 MPEG CODEC
12646 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
12647 M:      Anton Sviridenko <anton@corp.bluecherry.net>
12648 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
12649 M:      Andrey Utkin <andrey_utkin@fastmail.com>
12650 M:      Ismael Luceno <ismael@iodev.co.uk>
12651 L:      linux-media@vger.kernel.org
12652 S:      Supported
12653 F:      drivers/media/pci/solo6x10/
12654
12655 SOFTWARE RAID (Multiple Disks) SUPPORT
12656 M:      Shaohua Li <shli@kernel.org>
12657 L:      linux-raid@vger.kernel.org
12658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
12659 S:      Supported
12660 F:      drivers/md/Makefile
12661 F:      drivers/md/Kconfig
12662 F:      drivers/md/md*
12663 F:      drivers/md/raid*
12664 F:      include/linux/raid/
12665 F:      include/uapi/linux/raid/
12666
12667 SONIC NETWORK DRIVER
12668 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12669 L:      netdev@vger.kernel.org
12670 S:      Maintained
12671 F:      drivers/net/ethernet/natsemi/sonic.*
12672
12673 SONICS SILICON BACKPLANE DRIVER (SSB)
12674 M:      Michael Buesch <m@bues.ch>
12675 L:      linux-wireless@vger.kernel.org
12676 S:      Maintained
12677 F:      drivers/ssb/
12678 F:      include/linux/ssb/
12679
12680 SONY IMX274 SENSOR DRIVER
12681 M:      Leon Luo <leonl@leopardimaging.com>
12682 L:      linux-media@vger.kernel.org
12683 T:      git git://linuxtv.org/media_tree.git
12684 S:      Maintained
12685 F:      drivers/media/i2c/imx274.c
12686 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
12687
12688 SONY MEMORYSTICK CARD SUPPORT
12689 M:      Alex Dubov <oakad@yahoo.com>
12690 W:      http://tifmxx.berlios.de/
12691 S:      Maintained
12692 F:      drivers/memstick/host/tifm_ms.c
12693
12694 SONY MEMORYSTICK STANDARD SUPPORT
12695 M:      Maxim Levitsky <maximlevitsky@gmail.com>
12696 S:      Maintained
12697 F:      drivers/memstick/core/ms_block.*
12698
12699 SONY VAIO CONTROL DEVICE DRIVER
12700 M:      Mattia Dongili <malattia@linux.it>
12701 L:      platform-driver-x86@vger.kernel.org
12702 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
12703 S:      Maintained
12704 F:      Documentation/laptops/sony-laptop.txt
12705 F:      drivers/char/sonypi.c
12706 F:      drivers/platform/x86/sony-laptop.c
12707 F:      include/linux/sony-laptop.h
12708
12709 SOUND
12710 M:      Jaroslav Kysela <perex@perex.cz>
12711 M:      Takashi Iwai <tiwai@suse.com>
12712 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12713 W:      http://www.alsa-project.org/
12714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12715 T:      git git://git.alsa-project.org/alsa-kernel.git
12716 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
12717 S:      Maintained
12718 F:      Documentation/sound/
12719 F:      include/sound/
12720 F:      include/uapi/sound/
12721 F:      sound/
12722
12723 SOUND - COMPRESSED AUDIO
12724 M:      Vinod Koul <vinod.koul@intel.com>
12725 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12727 S:      Supported
12728 F:      Documentation/sound/alsa/compress_offload.txt
12729 F:      include/sound/compress_driver.h
12730 F:      include/uapi/sound/compress_*
12731 F:      sound/core/compress_offload.c
12732 F:      sound/soc/soc-compress.c
12733
12734 SOUND - DMAENGINE HELPERS
12735 M:      Lars-Peter Clausen <lars@metafoo.de>
12736 S:      Supported
12737 F:      include/sound/dmaengine_pcm.h
12738 F:      sound/core/pcm_dmaengine.c
12739 F:      sound/soc/soc-generic-dmaengine-pcm.c
12740
12741 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
12742 M:      Liam Girdwood <lgirdwood@gmail.com>
12743 M:      Mark Brown <broonie@kernel.org>
12744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
12745 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12746 W:      http://alsa-project.org/main/index.php/ASoC
12747 S:      Supported
12748 F:      Documentation/devicetree/bindings/sound/
12749 F:      Documentation/sound/alsa/soc/
12750 F:      sound/soc/
12751 F:      include/sound/soc*
12752
12753 SP2 MEDIA DRIVER
12754 M:      Olli Salonen <olli.salonen@iki.fi>
12755 L:      linux-media@vger.kernel.org
12756 W:      https://linuxtv.org
12757 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12758 S:      Maintained
12759 F:      drivers/media/dvb-frontends/sp2*
12760
12761 SPARC + UltraSPARC (sparc/sparc64)
12762 M:      "David S. Miller" <davem@davemloft.net>
12763 L:      sparclinux@vger.kernel.org
12764 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
12765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12767 S:      Maintained
12768 F:      arch/sparc/
12769 F:      drivers/sbus/
12770
12771 SPARC SERIAL DRIVERS
12772 M:      "David S. Miller" <davem@davemloft.net>
12773 L:      sparclinux@vger.kernel.org
12774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12776 S:      Maintained
12777 F:      include/linux/sunserialcore.h
12778 F:      drivers/tty/serial/suncore.c
12779 F:      drivers/tty/serial/sunhv.c
12780 F:      drivers/tty/serial/sunsab.c
12781 F:      drivers/tty/serial/sunsab.h
12782 F:      drivers/tty/serial/sunsu.c
12783 F:      drivers/tty/serial/sunzilog.c
12784 F:      drivers/tty/serial/sunzilog.h
12785 F:      drivers/tty/vcc.c
12786
12787 SPARSE CHECKER
12788 M:      "Christopher Li" <sparse@chrisli.org>
12789 L:      linux-sparse@vger.kernel.org
12790 W:      https://sparse.wiki.kernel.org/
12791 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
12792 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
12793 S:      Maintained
12794 F:      include/linux/compiler.h
12795
12796 SPEAR CLOCK FRAMEWORK SUPPORT
12797 M:      Viresh Kumar <vireshk@kernel.org>
12798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12799 W:      http://www.st.com/spear
12800 S:      Maintained
12801 F:      drivers/clk/spear/
12802
12803 SPEAR PLATFORM SUPPORT
12804 M:      Viresh Kumar <vireshk@kernel.org>
12805 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
12806 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12807 W:      http://www.st.com/spear
12808 S:      Maintained
12809 F:      arch/arm/boot/dts/spear*
12810 F:      arch/arm/mach-spear/
12811
12812 SPI NOR SUBSYSTEM
12813 M:      Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
12814 M:      Marek Vasut <marek.vasut@gmail.com>
12815 L:      linux-mtd@lists.infradead.org
12816 W:      http://www.linux-mtd.infradead.org/
12817 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12818 T:      git git://git.infradead.org/linux-mtd.git spi-nor/fixes
12819 T:      git git://git.infradead.org/linux-mtd.git spi-nor/next
12820 S:      Maintained
12821 F:      drivers/mtd/spi-nor/
12822 F:      include/linux/mtd/spi-nor.h
12823
12824 SPI SUBSYSTEM
12825 M:      Mark Brown <broonie@kernel.org>
12826 L:      linux-spi@vger.kernel.org
12827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
12828 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
12829 S:      Maintained
12830 F:      Documentation/devicetree/bindings/spi/
12831 F:      Documentation/spi/
12832 F:      drivers/spi/
12833 F:      include/linux/spi/
12834 F:      include/uapi/linux/spi/
12835 F:      tools/spi/
12836
12837 SPIDERNET NETWORK DRIVER for CELL
12838 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
12839 L:      netdev@vger.kernel.org
12840 S:      Supported
12841 F:      Documentation/networking/spider_net.txt
12842 F:      drivers/net/ethernet/toshiba/spider_net*
12843
12844 SPMI SUBSYSTEM
12845 R:      Stephen Boyd <sboyd@codeaurora.org>
12846 L:      linux-arm-msm@vger.kernel.org
12847 F:      Documentation/devicetree/bindings/spmi/
12848 F:      drivers/spmi/
12849 F:      include/dt-bindings/spmi/spmi.h
12850 F:      include/linux/spmi.h
12851 F:      include/trace/events/spmi.h
12852
12853 SPU FILE SYSTEM
12854 M:      Jeremy Kerr <jk@ozlabs.org>
12855 L:      linuxppc-dev@lists.ozlabs.org
12856 W:      http://www.ibm.com/developerworks/power/cell/
12857 S:      Supported
12858 F:      Documentation/filesystems/spufs.txt
12859 F:      arch/powerpc/platforms/cell/spufs/
12860
12861 SQUASHFS FILE SYSTEM
12862 M:      Phillip Lougher <phillip@squashfs.org.uk>
12863 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
12864 W:      http://squashfs.org.uk
12865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
12866 S:      Maintained
12867 F:      Documentation/filesystems/squashfs.txt
12868 F:      fs/squashfs/
12869
12870 SRM (Alpha) environment access
12871 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
12872 S:      Maintained
12873 F:      arch/alpha/kernel/srm_env.c
12874
12875 STABLE BRANCH
12876 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12877 L:      stable@vger.kernel.org
12878 S:      Supported
12879 F:      Documentation/process/stable-kernel-rules.rst
12880
12881 STAGING - ATOMISP DRIVER
12882 M:      Alan Cox <alan@linux.intel.com>
12883 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12884 L:      linux-media@vger.kernel.org
12885 S:      Maintained
12886 F:      drivers/staging/media/atomisp/
12887
12888 STAGING - COMEDI
12889 M:      Ian Abbott <abbotti@mev.co.uk>
12890 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
12891 S:      Odd Fixes
12892 F:      drivers/staging/comedi/
12893
12894 STAGING - FLARION FT1000 DRIVERS
12895 M:      Marek Belisko <marek.belisko@gmail.com>
12896 S:      Odd Fixes
12897 F:      drivers/staging/ft1000/
12898
12899 STAGING - INDUSTRIAL IO
12900 M:      Jonathan Cameron <jic23@kernel.org>
12901 L:      linux-iio@vger.kernel.org
12902 S:      Odd Fixes
12903 F:      Documentation/devicetree/bindings/staging/iio/
12904 F:      drivers/staging/iio/
12905
12906 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
12907 M:      Jarod Wilson <jarod@wilsonet.com>
12908 W:      http://www.lirc.org/
12909 S:      Odd Fixes
12910 F:      drivers/staging/media/lirc/
12911
12912 STAGING - LUSTRE PARALLEL FILESYSTEM
12913 M:      Oleg Drokin <oleg.drokin@intel.com>
12914 M:      Andreas Dilger <andreas.dilger@intel.com>
12915 M:      James Simmons <jsimmons@infradead.org>
12916 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
12917 W:      http://wiki.lustre.org/
12918 S:      Maintained
12919 F:      drivers/staging/lustre
12920
12921 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
12922 M:      Marc Dietrich <marvin24@gmx.de>
12923 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
12924 L:      linux-tegra@vger.kernel.org
12925 S:      Maintained
12926 F:      drivers/staging/nvec/
12927
12928 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
12929 M:      Jens Frederich <jfrederich@gmail.com>
12930 M:      Daniel Drake <dsd@laptop.org>
12931 M:      Jon Nettleton <jon.nettleton@gmail.com>
12932 W:      http://wiki.laptop.org/go/DCON
12933 S:      Maintained
12934 F:      drivers/staging/olpc_dcon/
12935
12936 STAGING - REALTEK RTL8712U DRIVERS
12937 M:      Larry Finger <Larry.Finger@lwfinger.net>
12938 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
12939 S:      Odd Fixes
12940 F:      drivers/staging/rtl8712/
12941
12942 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
12943 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12944 M:      Teddy Wang <teddy.wang@siliconmotion.com>
12945 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12946 L:      linux-fbdev@vger.kernel.org
12947 S:      Maintained
12948 F:      drivers/staging/sm750fb/
12949
12950 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
12951 M:      William Hubbs <w.d.hubbs@gmail.com>
12952 M:      Chris Brannon <chris@the-brannons.com>
12953 M:      Kirk Reiser <kirk@reisers.ca>
12954 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
12955 L:      speakup@linux-speakup.org
12956 W:      http://www.linux-speakup.org/
12957 S:      Odd Fixes
12958 F:      drivers/staging/speakup/
12959
12960 STAGING - VIA VT665X DRIVERS
12961 M:      Forest Bond <forest@alittletooquiet.net>
12962 S:      Odd Fixes
12963 F:      drivers/staging/vt665?/
12964
12965 STAGING - WILC1000 WIFI DRIVER
12966 M:      Aditya Shankar <aditya.shankar@microchip.com>
12967 M:      Ganesh Krishna <ganesh.krishna@microchip.com>
12968 L:      linux-wireless@vger.kernel.org
12969 S:      Supported
12970 F:      drivers/staging/wilc1000/
12971
12972 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
12973 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
12974 S:      Odd Fixes
12975 F:      drivers/staging/xgifb/
12976
12977 STAGING SUBSYSTEM
12978 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
12980 L:      devel@driverdev.osuosl.org
12981 S:      Supported
12982 F:      drivers/staging/
12983
12984 STARFIRE/DURALAN NETWORK DRIVER
12985 M:      Ion Badulescu <ionut@badula.org>
12986 S:      Odd Fixes
12987 F:      drivers/net/ethernet/adaptec/starfire*
12988
12989 STEC S1220 SKD DRIVER
12990 M:      Bart Van Assche <bart.vanassche@wdc.com>
12991 L:      linux-block@vger.kernel.org
12992 S:      Maintained
12993 F:      drivers/block/skd*[ch]
12994
12995 STI CEC DRIVER
12996 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
12997 S:      Maintained
12998 F:      drivers/staging/media/st-cec/
12999 F:      Documentation/devicetree/bindings/media/stih-cec.txt
13000
13001 STK1160 USB VIDEO CAPTURE DRIVER
13002 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
13003 L:      linux-media@vger.kernel.org
13004 T:      git git://linuxtv.org/media_tree.git
13005 S:      Maintained
13006 F:      drivers/media/usb/stk1160/
13007
13008 STMMAC ETHERNET DRIVER
13009 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
13010 M:      Alexandre Torgue <alexandre.torgue@st.com>
13011 L:      netdev@vger.kernel.org
13012 W:      http://www.stlinux.com
13013 S:      Supported
13014 F:      drivers/net/ethernet/stmicro/stmmac/
13015
13016 SUN3/3X
13017 M:      Sam Creasey <sammy@sammy.net>
13018 W:      http://sammy.net/sun3/
13019 S:      Maintained
13020 F:      arch/m68k/kernel/*sun3*
13021 F:      arch/m68k/sun3*/
13022 F:      arch/m68k/include/asm/sun3*
13023 F:      drivers/net/ethernet/i825xx/sun3*
13024
13025 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
13026 M:      Hans de Goede <hdegoede@redhat.com>
13027 L:      linux-input@vger.kernel.org
13028 S:      Maintained
13029 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
13030 F:      drivers/input/keyboard/sun4i-lradc-keys.c
13031
13032 SUNDANCE NETWORK DRIVER
13033 M:      Denis Kirjanov <kda@linux-powerpc.org>
13034 L:      netdev@vger.kernel.org
13035 S:      Maintained
13036 F:      drivers/net/ethernet/dlink/sundance.c
13037
13038 SUPERH
13039 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
13040 M:      Rich Felker <dalias@libc.org>
13041 L:      linux-sh@vger.kernel.org
13042 Q:      http://patchwork.kernel.org/project/linux-sh/list/
13043 S:      Maintained
13044 F:      Documentation/sh/
13045 F:      arch/sh/
13046 F:      drivers/sh/
13047
13048 SUSPEND TO RAM
13049 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13050 M:      Len Brown <len.brown@intel.com>
13051 M:      Pavel Machek <pavel@ucw.cz>
13052 L:      linux-pm@vger.kernel.org
13053 B:      https://bugzilla.kernel.org
13054 S:      Supported
13055 F:      Documentation/power/
13056 F:      arch/x86/kernel/acpi/
13057 F:      drivers/base/power/
13058 F:      kernel/power/
13059 F:      include/linux/suspend.h
13060 F:      include/linux/freezer.h
13061 F:      include/linux/pm.h
13062
13063 SVGA HANDLING
13064 M:      Martin Mares <mj@ucw.cz>
13065 L:      linux-video@atrey.karlin.mff.cuni.cz
13066 S:      Maintained
13067 F:      Documentation/svga.txt
13068 F:      arch/x86/boot/video*
13069
13070 SWIOTLB SUBSYSTEM
13071 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
13072 L:      linux-kernel@vger.kernel.org
13073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
13074 S:      Supported
13075 F:      lib/swiotlb.c
13076 F:      arch/*/kernel/pci-swiotlb.c
13077 F:      include/linux/swiotlb.h
13078
13079 SWITCHDEV
13080 M:      Jiri Pirko <jiri@resnulli.us>
13081 M:      Ivan Vecera <ivecera@redhat.com>
13082 L:      netdev@vger.kernel.org
13083 S:      Supported
13084 F:      net/switchdev/
13085 F:      include/net/switchdev.h
13086
13087 SYNC FILE FRAMEWORK
13088 M:      Sumit Semwal <sumit.semwal@linaro.org>
13089 R:      Gustavo Padovan <gustavo@padovan.org>
13090 S:      Maintained
13091 L:      linux-media@vger.kernel.org
13092 L:      dri-devel@lists.freedesktop.org
13093 F:      drivers/dma-buf/sync_*
13094 F:      drivers/dma-buf/dma-fence*
13095 F:      drivers/dma-buf/sw_sync.c
13096 F:      include/linux/sync_file.h
13097 F:      include/uapi/linux/sync_file.h
13098 F:      Documentation/sync_file.txt
13099 T:      git git://anongit.freedesktop.org/drm/drm-misc
13100
13101 SYNOPSYS ARC ARCHITECTURE
13102 M:      Vineet Gupta <vgupta@synopsys.com>
13103 L:      linux-snps-arc@lists.infradead.org
13104 S:      Supported
13105 F:      arch/arc/
13106 F:      Documentation/devicetree/bindings/arc/*
13107 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
13108 F:      drivers/clocksource/arc_timer.c
13109 F:      drivers/tty/serial/arc_uart.c
13110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
13111
13112 SYNOPSYS ARC HSDK SDP pll clock driver
13113 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13114 S:      Supported
13115 F:      drivers/clk/clk-hsdk-pll.c
13116 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
13117
13118 SYNOPSYS ARC SDP clock driver
13119 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13120 S:      Supported
13121 F:      drivers/clk/axs10x/*
13122 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
13123
13124 SYNOPSYS ARC SDP platform support
13125 M:      Alexey Brodkin <abrodkin@synopsys.com>
13126 S:      Supported
13127 F:      arch/arc/plat-axs10x
13128 F:      arch/arc/boot/dts/ax*
13129 F:      Documentation/devicetree/bindings/arc/axs10*
13130
13131 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
13132 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13133 S:      Supported
13134 F:      drivers/reset/reset-axs10x.c
13135 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
13136
13137 SYNOPSYS DESIGNWARE APB GPIO DRIVER
13138 M:      Hoan Tran <hotran@apm.com>
13139 L:      linux-gpio@vger.kernel.org
13140 S:      Maintained
13141 F:      drivers/gpio/gpio-dwapb.c
13142 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
13143
13144 SYNOPSYS DESIGNWARE DMAC DRIVER
13145 M:      Viresh Kumar <vireshk@kernel.org>
13146 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13147 S:      Maintained
13148 F:      include/linux/dma/dw.h
13149 F:      include/linux/platform_data/dma-dw.h
13150 F:      drivers/dma/dw/
13151
13152 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
13153 M:      Jie Deng <jiedeng@synopsys.com>
13154 M:      Jose Abreu <Jose.Abreu@synopsys.com>
13155 L:      netdev@vger.kernel.org
13156 S:      Supported
13157 F:      drivers/net/ethernet/synopsys/
13158
13159 SYNOPSYS DESIGNWARE I2C DRIVER
13160 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
13161 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13162 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
13163 L:      linux-i2c@vger.kernel.org
13164 S:      Maintained
13165 F:      drivers/i2c/busses/i2c-designware-*
13166 F:      include/linux/platform_data/i2c-designware.h
13167
13168 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
13169 M:      Jaehoon Chung <jh80.chung@samsung.com>
13170 L:      linux-mmc@vger.kernel.org
13171 S:      Maintained
13172 F:      drivers/mmc/host/dw_mmc*
13173
13174 SYNOPSYS HSDK RESET CONTROLLER DRIVER
13175 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13176 S:      Supported
13177 F:      drivers/reset/reset-hsdk.c
13178 F:      include/dt-bindings/reset/snps,hsdk-reset.h
13179 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
13180
13181 SYSTEM CONFIGURATION (SYSCON)
13182 M:      Lee Jones <lee.jones@linaro.org>
13183 M:      Arnd Bergmann <arnd@arndb.de>
13184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13185 S:      Supported
13186 F:      drivers/mfd/syscon.c
13187
13188 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
13189 M:      Sudeep Holla <sudeep.holla@arm.com>
13190 L:      linux-arm-kernel@lists.infradead.org
13191 S:      Maintained
13192 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
13193 F:      drivers/clk/clk-scpi.c
13194 F:      drivers/cpufreq/scpi-cpufreq.c
13195 F:      drivers/firmware/arm_scpi.c
13196 F:      include/linux/scpi_protocol.h
13197
13198 SYSTEM RESET/SHUTDOWN DRIVERS
13199 M:      Sebastian Reichel <sre@kernel.org>
13200 L:      linux-pm@vger.kernel.org
13201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13202 S:      Maintained
13203 F:      Documentation/devicetree/bindings/power/reset/
13204 F:      drivers/power/reset/
13205
13206 SYSTEM TRACE MODULE CLASS
13207 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13208 S:      Maintained
13209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
13210 F:      Documentation/trace/stm.txt
13211 F:      drivers/hwtracing/stm/
13212 F:      include/linux/stm.h
13213 F:      include/uapi/linux/stm.h
13214
13215 SYSV FILESYSTEM
13216 M:      Christoph Hellwig <hch@infradead.org>
13217 S:      Maintained
13218 F:      Documentation/filesystems/sysv-fs.txt
13219 F:      fs/sysv/
13220 F:      include/linux/sysv_fs.h
13221
13222 TARGET SUBSYSTEM
13223 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
13224 L:      linux-scsi@vger.kernel.org
13225 L:      target-devel@vger.kernel.org
13226 W:      http://www.linux-iscsi.org
13227 W:      http://groups.google.com/group/linux-iscsi-target-dev
13228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
13229 S:      Supported
13230 F:      drivers/target/
13231 F:      include/target/
13232 F:      Documentation/target/
13233
13234 TASKSTATS STATISTICS INTERFACE
13235 M:      Balbir Singh <bsingharora@gmail.com>
13236 S:      Maintained
13237 F:      Documentation/accounting/taskstats*
13238 F:      include/linux/taskstats*
13239 F:      kernel/taskstats.c
13240
13241 TC subsystem
13242 M:      Jamal Hadi Salim <jhs@mojatatu.com>
13243 M:      Cong Wang <xiyou.wangcong@gmail.com>
13244 M:      Jiri Pirko <jiri@resnulli.us>
13245 L:      netdev@vger.kernel.org
13246 S:      Maintained
13247 F:      include/net/pkt_cls.h
13248 F:      include/net/pkt_sched.h
13249 F:      include/net/tc_act/
13250 F:      include/uapi/linux/pkt_cls.h
13251 F:      include/uapi/linux/pkt_sched.h
13252 F:      include/uapi/linux/tc_act/
13253 F:      include/uapi/linux/tc_ematch/
13254 F:      net/sched/
13255
13256 TCP LOW PRIORITY MODULE
13257 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
13258 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
13259 W:      http://tcp-lp-mod.sourceforge.net/
13260 S:      Maintained
13261 F:      net/ipv4/tcp_lp.c
13262
13263 TDA10071 MEDIA DRIVER
13264 M:      Antti Palosaari <crope@iki.fi>
13265 L:      linux-media@vger.kernel.org
13266 W:      https://linuxtv.org
13267 W:      http://palosaari.fi/linux/
13268 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13269 T:      git git://linuxtv.org/anttip/media_tree.git
13270 S:      Maintained
13271 F:      drivers/media/dvb-frontends/tda10071*
13272
13273 TDA18212 MEDIA DRIVER
13274 M:      Antti Palosaari <crope@iki.fi>
13275 L:      linux-media@vger.kernel.org
13276 W:      https://linuxtv.org
13277 W:      http://palosaari.fi/linux/
13278 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13279 T:      git git://linuxtv.org/anttip/media_tree.git
13280 S:      Maintained
13281 F:      drivers/media/tuners/tda18212*
13282
13283 TDA18218 MEDIA DRIVER
13284 M:      Antti Palosaari <crope@iki.fi>
13285 L:      linux-media@vger.kernel.org
13286 W:      https://linuxtv.org
13287 W:      http://palosaari.fi/linux/
13288 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13289 T:      git git://linuxtv.org/anttip/media_tree.git
13290 S:      Maintained
13291 F:      drivers/media/tuners/tda18218*
13292
13293 TDA18271 MEDIA DRIVER
13294 M:      Michael Krufky <mkrufky@linuxtv.org>
13295 L:      linux-media@vger.kernel.org
13296 W:      https://linuxtv.org
13297 W:      http://github.com/mkrufky
13298 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13299 T:      git git://linuxtv.org/mkrufky/tuners.git
13300 S:      Maintained
13301 F:      drivers/media/tuners/tda18271*
13302
13303 TDA827x MEDIA DRIVER
13304 M:      Michael Krufky <mkrufky@linuxtv.org>
13305 L:      linux-media@vger.kernel.org
13306 W:      https://linuxtv.org
13307 W:      http://github.com/mkrufky
13308 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13309 T:      git git://linuxtv.org/mkrufky/tuners.git
13310 S:      Maintained
13311 F:      drivers/media/tuners/tda8290.*
13312
13313 TDA8290 MEDIA DRIVER
13314 M:      Michael Krufky <mkrufky@linuxtv.org>
13315 L:      linux-media@vger.kernel.org
13316 W:      https://linuxtv.org
13317 W:      http://github.com/mkrufky
13318 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13319 T:      git git://linuxtv.org/mkrufky/tuners.git
13320 S:      Maintained
13321 F:      drivers/media/tuners/tda8290.*
13322
13323 TDA9840 MEDIA DRIVER
13324 M:      Hans Verkuil <hverkuil@xs4all.nl>
13325 L:      linux-media@vger.kernel.org
13326 T:      git git://linuxtv.org/media_tree.git
13327 W:      https://linuxtv.org
13328 S:      Maintained
13329 F:      drivers/media/i2c/tda9840*
13330
13331 TEA5761 TUNER DRIVER
13332 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13333 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13334 L:      linux-media@vger.kernel.org
13335 W:      https://linuxtv.org
13336 T:      git git://linuxtv.org/media_tree.git
13337 S:      Odd fixes
13338 F:      drivers/media/tuners/tea5761.*
13339
13340 TEA5767 TUNER DRIVER
13341 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13342 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13343 L:      linux-media@vger.kernel.org
13344 W:      https://linuxtv.org
13345 T:      git git://linuxtv.org/media_tree.git
13346 S:      Maintained
13347 F:      drivers/media/tuners/tea5767.*
13348
13349 TEA6415C MEDIA DRIVER
13350 M:      Hans Verkuil <hverkuil@xs4all.nl>
13351 L:      linux-media@vger.kernel.org
13352 T:      git git://linuxtv.org/media_tree.git
13353 W:      https://linuxtv.org
13354 S:      Maintained
13355 F:      drivers/media/i2c/tea6415c*
13356
13357 TEA6420 MEDIA DRIVER
13358 M:      Hans Verkuil <hverkuil@xs4all.nl>
13359 L:      linux-media@vger.kernel.org
13360 T:      git git://linuxtv.org/media_tree.git
13361 W:      https://linuxtv.org
13362 S:      Maintained
13363 F:      drivers/media/i2c/tea6420*
13364
13365 TEAM DRIVER
13366 M:      Jiri Pirko <jiri@resnulli.us>
13367 L:      netdev@vger.kernel.org
13368 S:      Supported
13369 F:      drivers/net/team/
13370 F:      include/linux/if_team.h
13371 F:      include/uapi/linux/if_team.h
13372
13373 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
13374 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
13375 S:      Maintained
13376 F:      arch/x86/platform/ts5500/
13377
13378 TECHNOTREND USB IR RECEIVER
13379 M:      Sean Young <sean@mess.org>
13380 L:      linux-media@vger.kernel.org
13381 S:      Maintained
13382 F:      drivers/media/rc/ttusbir.c
13383
13384 TEE SUBSYSTEM
13385 M:      Jens Wiklander <jens.wiklander@linaro.org>
13386 S:      Maintained
13387 F:      include/linux/tee_drv.h
13388 F:      include/uapi/linux/tee.h
13389 F:      drivers/tee/
13390 F:      Documentation/tee.txt
13391
13392 TEGRA ARCHITECTURE SUPPORT
13393 M:      Thierry Reding <thierry.reding@gmail.com>
13394 M:      Jonathan Hunter <jonathanh@nvidia.com>
13395 L:      linux-tegra@vger.kernel.org
13396 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
13397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
13398 S:      Supported
13399 N:      [^a-z]tegra
13400
13401 TEGRA CLOCK DRIVER
13402 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
13403 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
13404 S:      Supported
13405 F:      drivers/clk/tegra/
13406
13407 TEGRA DMA DRIVERS
13408 M:      Laxman Dewangan <ldewangan@nvidia.com>
13409 M:      Jon Hunter <jonathanh@nvidia.com>
13410 S:      Supported
13411 F:      drivers/dma/tegra*
13412
13413 TEGRA I2C DRIVER
13414 M:      Laxman Dewangan <ldewangan@nvidia.com>
13415 S:      Supported
13416 F:      drivers/i2c/busses/i2c-tegra.c
13417
13418 TEGRA IOMMU DRIVERS
13419 M:      Hiroshi Doyu <hdoyu@nvidia.com>
13420 S:      Supported
13421 F:      drivers/iommu/tegra*
13422
13423 TEGRA KBC DRIVER
13424 M:      Rakesh Iyer <riyer@nvidia.com>
13425 M:      Laxman Dewangan <ldewangan@nvidia.com>
13426 S:      Supported
13427 F:      drivers/input/keyboard/tegra-kbc.c
13428
13429 TEGRA PWM DRIVER
13430 M:      Thierry Reding <thierry.reding@gmail.com>
13431 S:      Supported
13432 F:      drivers/pwm/pwm-tegra.c
13433
13434 TEGRA SERIAL DRIVER
13435 M:      Laxman Dewangan <ldewangan@nvidia.com>
13436 S:      Supported
13437 F:      drivers/tty/serial/serial-tegra.c
13438
13439 TEGRA SPI DRIVER
13440 M:      Laxman Dewangan <ldewangan@nvidia.com>
13441 S:      Supported
13442 F:      drivers/spi/spi-tegra*
13443
13444 TEHUTI ETHERNET DRIVER
13445 M:      Andy Gospodarek <andy@greyhouse.net>
13446 L:      netdev@vger.kernel.org
13447 S:      Supported
13448 F:      drivers/net/ethernet/tehuti/*
13449
13450 Telecom Clock Driver for MCPL0010
13451 M:      Mark Gross <mark.gross@intel.com>
13452 S:      Supported
13453 F:      drivers/char/tlclk.c
13454
13455 TENSILICA XTENSA PORT (xtensa)
13456 M:      Chris Zankel <chris@zankel.net>
13457 M:      Max Filippov <jcmvbkbc@gmail.com>
13458 L:      linux-xtensa@linux-xtensa.org
13459 T:      git git://github.com/czankel/xtensa-linux.git
13460 S:      Maintained
13461 F:      arch/xtensa/
13462 F:      drivers/irqchip/irq-xtensa-*
13463
13464 Texas Instruments' System Control Interface (TISCI) Protocol Driver
13465 M:      Nishanth Menon <nm@ti.com>
13466 M:      Tero Kristo <t-kristo@ti.com>
13467 M:      Santosh Shilimkar <ssantosh@kernel.org>
13468 L:      linux-arm-kernel@lists.infradead.org
13469 S:      Maintained
13470 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
13471 F:      drivers/firmware/ti_sci*
13472 F:      include/linux/soc/ti/ti_sci_protocol.h
13473 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
13474 F:      include/dt-bindings/genpd/k2g.h
13475 F:      drivers/soc/ti/ti_sci_pm_domains.c
13476 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
13477 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
13478 F:      drivers/clk/keystone/sci-clk.c
13479 F:      drivers/reset/reset-ti-sci.c
13480
13481 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
13482 M:      Hans Verkuil <hverkuil@xs4all.nl>
13483 L:      linux-media@vger.kernel.org
13484 T:      git git://linuxtv.org/media_tree.git
13485 W:      https://linuxtv.org
13486 S:      Maintained
13487 F:      drivers/media/radio/radio-raremono.c
13488
13489 THERMAL
13490 M:      Zhang Rui <rui.zhang@intel.com>
13491 M:      Eduardo Valentin <edubezval@gmail.com>
13492 L:      linux-pm@vger.kernel.org
13493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
13494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
13495 Q:      https://patchwork.kernel.org/project/linux-pm/list/
13496 S:      Supported
13497 F:      drivers/thermal/
13498 F:      include/linux/thermal.h
13499 F:      include/uapi/linux/thermal.h
13500 F:      include/linux/cpu_cooling.h
13501 F:      Documentation/devicetree/bindings/thermal/
13502
13503 THERMAL/CPU_COOLING
13504 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
13505 M:      Viresh Kumar <viresh.kumar@linaro.org>
13506 M:      Javi Merino <javi.merino@kernel.org>
13507 L:      linux-pm@vger.kernel.org
13508 S:      Supported
13509 F:      Documentation/thermal/cpu-cooling-api.txt
13510 F:      drivers/thermal/cpu_cooling.c
13511 F:      include/linux/cpu_cooling.h
13512
13513 THINKPAD ACPI EXTRAS DRIVER
13514 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
13515 L:      ibm-acpi-devel@lists.sourceforge.net
13516 L:      platform-driver-x86@vger.kernel.org
13517 W:      http://ibm-acpi.sourceforge.net
13518 W:      http://thinkwiki.org/wiki/Ibm-acpi
13519 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
13520 S:      Maintained
13521 F:      drivers/platform/x86/thinkpad_acpi.c
13522
13523 THUNDERBOLT DRIVER
13524 M:      Andreas Noever <andreas.noever@gmail.com>
13525 M:      Michael Jamet <michael.jamet@intel.com>
13526 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13527 M:      Yehezkel Bernat <yehezkel.bernat@intel.com>
13528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
13529 S:      Maintained
13530 F:      Documentation/admin-guide/thunderbolt.rst
13531 F:      drivers/thunderbolt/
13532 F:      include/linux/thunderbolt.h
13533
13534 THUNDERBOLT NETWORK DRIVER
13535 M:      Michael Jamet <michael.jamet@intel.com>
13536 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13537 M:      Yehezkel Bernat <yehezkel.bernat@intel.com>
13538 L:      netdev@vger.kernel.org
13539 S:      Maintained
13540 F:      drivers/net/thunderbolt.c
13541
13542 THUNDERX GPIO DRIVER
13543 M:      David Daney <david.daney@cavium.com>
13544 S:      Maintained
13545 F:      drivers/gpio/gpio-thunderx.c
13546
13547 TI AM437X VPFE DRIVER
13548 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13549 L:      linux-media@vger.kernel.org
13550 W:      https://linuxtv.org
13551 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13552 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13553 S:      Maintained
13554 F:      drivers/media/platform/am437x/
13555
13556 TI BANDGAP AND THERMAL DRIVER
13557 M:      Eduardo Valentin <edubezval@gmail.com>
13558 M:      Keerthy <j-keerthy@ti.com>
13559 L:      linux-pm@vger.kernel.org
13560 L:      linux-omap@vger.kernel.org
13561 S:      Maintained
13562 F:      drivers/thermal/ti-soc-thermal/
13563
13564 TI BQ27XXX POWER SUPPLY DRIVER
13565 R:      Andrew F. Davis <afd@ti.com>
13566 F:      include/linux/power/bq27xxx_battery.h
13567 F:      drivers/power/supply/bq27xxx_battery.c
13568 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13569
13570 TI CDCE706 CLOCK DRIVER
13571 M:      Max Filippov <jcmvbkbc@gmail.com>
13572 S:      Maintained
13573 F:      drivers/clk/clk-cdce706.c
13574
13575 TI CLOCK DRIVER
13576 M:      Tero Kristo <t-kristo@ti.com>
13577 L:      linux-omap@vger.kernel.org
13578 S:      Maintained
13579 F:      drivers/clk/ti/
13580 F:      include/linux/clk/ti.h
13581
13582 TI DAVINCI MACHINE SUPPORT
13583 M:      Sekhar Nori <nsekhar@ti.com>
13584 M:      Kevin Hilman <khilman@kernel.org>
13585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
13587 S:      Supported
13588 F:      arch/arm/mach-davinci/
13589 F:      drivers/i2c/busses/i2c-davinci.c
13590 F:      arch/arm/boot/dts/da850*
13591
13592 TI DAVINCI SERIES GPIO DRIVER
13593 M:      Keerthy <j-keerthy@ti.com>
13594 L:      linux-gpio@vger.kernel.org
13595 S:      Maintained
13596 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
13597 F:      drivers/gpio/gpio-davinci.c
13598
13599 TI DAVINCI SERIES MEDIA DRIVER
13600 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13601 L:      linux-media@vger.kernel.org
13602 W:      https://linuxtv.org
13603 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13604 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13605 S:      Maintained
13606 F:      drivers/media/platform/davinci/
13607 F:      include/media/davinci/
13608
13609 TI ETHERNET SWITCH DRIVER (CPSW)
13610 R:      Grygorii Strashko <grygorii.strashko@ti.com>
13611 L:      linux-omap@vger.kernel.org
13612 L:      netdev@vger.kernel.org
13613 S:      Maintained
13614 F:      drivers/net/ethernet/ti/cpsw*
13615 F:      drivers/net/ethernet/ti/davinci*
13616
13617 TI FLASH MEDIA INTERFACE DRIVER
13618 M:      Alex Dubov <oakad@yahoo.com>
13619 S:      Maintained
13620 F:      drivers/misc/tifm*
13621 F:      drivers/mmc/host/tifm_sd.c
13622 F:      include/linux/tifm.h
13623
13624 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
13625 M:      Santosh Shilimkar <ssantosh@kernel.org>
13626 L:      linux-kernel@vger.kernel.org
13627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13628 S:      Maintained
13629 F:      drivers/soc/ti/*
13630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
13631
13632 TI LM49xxx FAMILY ASoC CODEC DRIVERS
13633 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
13634 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
13635 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13636 S:      Maintained
13637 F:      sound/soc/codecs/lm49453*
13638 F:      sound/soc/codecs/isabelle*
13639
13640 TI LP855x BACKLIGHT DRIVER
13641 M:      Milo Kim <milo.kim@ti.com>
13642 S:      Maintained
13643 F:      Documentation/backlight/lp855x-driver.txt
13644 F:      drivers/video/backlight/lp855x_bl.c
13645 F:      include/linux/platform_data/lp855x.h
13646
13647 TI LP8727 CHARGER DRIVER
13648 M:      Milo Kim <milo.kim@ti.com>
13649 S:      Maintained
13650 F:      drivers/power/supply/lp8727_charger.c
13651 F:      include/linux/platform_data/lp8727.h
13652
13653 TI LP8788 MFD DRIVER
13654 M:      Milo Kim <milo.kim@ti.com>
13655 S:      Maintained
13656 F:      drivers/iio/adc/lp8788_adc.c
13657 F:      drivers/leds/leds-lp8788.c
13658 F:      drivers/mfd/lp8788*.c
13659 F:      drivers/power/supply/lp8788-charger.c
13660 F:      drivers/regulator/lp8788-*.c
13661 F:      include/linux/mfd/lp8788*.h
13662
13663 TI NETCP ETHERNET DRIVER
13664 M:      Wingman Kwok <w-kwok2@ti.com>
13665 M:      Murali Karicheri <m-karicheri2@ti.com>
13666 L:      netdev@vger.kernel.org
13667 S:      Maintained
13668 F:      drivers/net/ethernet/ti/netcp*
13669
13670 TI TAS571X FAMILY ASoC CODEC DRIVER
13671 M:      Kevin Cernekee <cernekee@chromium.org>
13672 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13673 S:      Odd Fixes
13674 F:      sound/soc/codecs/tas571x*
13675
13676 TI TRF7970A NFC DRIVER
13677 M:      Mark Greer <mgreer@animalcreek.com>
13678 L:      linux-wireless@vger.kernel.org
13679 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
13680 S:      Supported
13681 F:      drivers/nfc/trf7970a.c
13682 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
13683
13684 TI TWL4030 SERIES SOC CODEC DRIVER
13685 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
13686 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13687 S:      Maintained
13688 F:      sound/soc/codecs/twl4030*
13689
13690 TI VPE/CAL DRIVERS
13691 M:      Benoit Parrot <bparrot@ti.com>
13692 L:      linux-media@vger.kernel.org
13693 W:      http://linuxtv.org/
13694 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13695 S:      Maintained
13696 F:      drivers/media/platform/ti-vpe/
13697
13698 TI WILINK WIRELESS DRIVERS
13699 L:      linux-wireless@vger.kernel.org
13700 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
13701 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
13702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
13703 S:      Orphan
13704 F:      drivers/net/wireless/ti/
13705 F:      include/linux/wl12xx.h
13706
13707 TILE ARCHITECTURE
13708 W:      http://www.mellanox.com/repository/solutions/tile-scm/
13709 S:      Orphan
13710 F:      arch/tile/
13711 F:      drivers/char/tile-srom.c
13712 F:      drivers/edac/tile_edac.c
13713 F:      drivers/net/ethernet/tile/
13714 F:      drivers/rtc/rtc-tile.c
13715 F:      drivers/tty/hvc/hvc_tile.c
13716 F:      drivers/tty/serial/tilegx.c
13717 F:      drivers/usb/host/*-tilegx.c
13718 F:      include/linux/usb/tilegx.h
13719
13720 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
13721 M:      John Stultz <john.stultz@linaro.org>
13722 M:      Thomas Gleixner <tglx@linutronix.de>
13723 R:      Stephen Boyd <sboyd@codeaurora.org>
13724 L:      linux-kernel@vger.kernel.org
13725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13726 S:      Supported
13727 F:      include/linux/clocksource.h
13728 F:      include/linux/time.h
13729 F:      include/linux/timex.h
13730 F:      include/uapi/linux/time.h
13731 F:      include/uapi/linux/timex.h
13732 F:      kernel/time/clocksource.c
13733 F:      kernel/time/time*.c
13734 F:      kernel/time/alarmtimer.c
13735 F:      kernel/time/ntp.c
13736 F:      tools/testing/selftests/timers/
13737
13738 TIPC NETWORK LAYER
13739 M:      Jon Maloy <jon.maloy@ericsson.com>
13740 M:      Ying Xue <ying.xue@windriver.com>
13741 L:      netdev@vger.kernel.org (core kernel code)
13742 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
13743 W:      http://tipc.sourceforge.net/
13744 S:      Maintained
13745 F:      include/uapi/linux/tipc*.h
13746 F:      net/tipc/
13747
13748 TLAN NETWORK DRIVER
13749 M:      Samuel Chessman <chessman@tux.org>
13750 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
13751 W:      http://sourceforge.net/projects/tlan/
13752 S:      Maintained
13753 F:      Documentation/networking/tlan.txt
13754 F:      drivers/net/ethernet/ti/tlan.*
13755
13756 TM6000 VIDEO4LINUX DRIVER
13757 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13758 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13759 L:      linux-media@vger.kernel.org
13760 W:      https://linuxtv.org
13761 T:      git git://linuxtv.org/media_tree.git
13762 S:      Odd fixes
13763 F:      drivers/media/usb/tm6000/
13764 F:      Documentation/media/v4l-drivers/tm6000*
13765
13766 TMIO/SDHI MMC DRIVER
13767 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13768 L:      linux-mmc@vger.kernel.org
13769 S:      Supported
13770 F:      drivers/mmc/host/tmio_mmc*
13771 F:      drivers/mmc/host/renesas_sdhi*
13772 F:      include/linux/mfd/tmio.h
13773
13774 TMP401 HARDWARE MONITOR DRIVER
13775 M:      Guenter Roeck <linux@roeck-us.net>
13776 L:      linux-hwmon@vger.kernel.org
13777 S:      Maintained
13778 F:      Documentation/hwmon/tmp401
13779 F:      drivers/hwmon/tmp401.c
13780
13781 TMPFS (SHMEM FILESYSTEM)
13782 M:      Hugh Dickins <hughd@google.com>
13783 L:      linux-mm@kvack.org
13784 S:      Maintained
13785 F:      include/linux/shmem_fs.h
13786 F:      mm/shmem.c
13787
13788 TOMOYO SECURITY MODULE
13789 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
13790 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
13791 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
13792 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
13793 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
13794 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
13795 W:      http://tomoyo.sourceforge.jp/
13796 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
13797 S:      Maintained
13798 F:      security/tomoyo/
13799
13800 TOPSTAR LAPTOP EXTRAS DRIVER
13801 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
13802 L:      platform-driver-x86@vger.kernel.org
13803 S:      Maintained
13804 F:      drivers/platform/x86/topstar-laptop.c
13805
13806 TOSHIBA ACPI EXTRAS DRIVER
13807 M:      Azael Avalos <coproscefalo@gmail.com>
13808 L:      platform-driver-x86@vger.kernel.org
13809 S:      Maintained
13810 F:      drivers/platform/x86/toshiba_acpi.c
13811
13812 TOSHIBA BLUETOOTH DRIVER
13813 M:      Azael Avalos <coproscefalo@gmail.com>
13814 L:      platform-driver-x86@vger.kernel.org
13815 S:      Maintained
13816 F:      drivers/platform/x86/toshiba_bluetooth.c
13817
13818 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
13819 M:      Azael Avalos <coproscefalo@gmail.com>
13820 L:      platform-driver-x86@vger.kernel.org
13821 S:      Maintained
13822 F:      drivers/platform/x86/toshiba_haps.c
13823
13824 TOSHIBA SMM DRIVER
13825 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
13826 W:      http://www.buzzard.org.uk/toshiba/
13827 S:      Maintained
13828 F:      drivers/char/toshiba.c
13829 F:      include/linux/toshiba.h
13830 F:      include/uapi/linux/toshiba.h
13831
13832 TOSHIBA TC358743 DRIVER
13833 M:      Mats Randgaard <matrandg@cisco.com>
13834 L:      linux-media@vger.kernel.org
13835 S:      Maintained
13836 F:      drivers/media/i2c/tc358743*
13837 F:      include/media/i2c/tc358743.h
13838
13839 TOSHIBA WMI HOTKEYS DRIVER
13840 M:      Azael Avalos <coproscefalo@gmail.com>
13841 L:      platform-driver-x86@vger.kernel.org
13842 S:      Maintained
13843 F:      drivers/platform/x86/toshiba-wmi.c
13844
13845 TPM DEVICE DRIVER
13846 M:      Peter Huewe <peterhuewe@gmx.de>
13847 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
13848 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
13849 L:      linux-integrity@vger.kernel.org
13850 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
13851 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
13852 S:      Maintained
13853 F:      drivers/char/tpm/
13854
13855 TRACING
13856 M:      Steven Rostedt <rostedt@goodmis.org>
13857 M:      Ingo Molnar <mingo@redhat.com>
13858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13859 S:      Maintained
13860 F:      Documentation/trace/ftrace.txt
13861 F:      arch/*/*/*/ftrace.h
13862 F:      arch/*/kernel/ftrace.c
13863 F:      include/*/ftrace.h
13864 F:      include/linux/trace*.h
13865 F:      include/trace/
13866 F:      kernel/trace/
13867 F:      tools/testing/selftests/ftrace/
13868
13869 TRACING MMIO ACCESSES (MMIOTRACE)
13870 M:      Steven Rostedt <rostedt@goodmis.org>
13871 M:      Ingo Molnar <mingo@kernel.org>
13872 R:      Karol Herbst <karolherbst@gmail.com>
13873 R:      Pekka Paalanen <ppaalanen@gmail.com>
13874 S:      Maintained
13875 L:      linux-kernel@vger.kernel.org
13876 L:      nouveau@lists.freedesktop.org
13877 F:      kernel/trace/trace_mmiotrace.c
13878 F:      include/linux/mmiotrace.h
13879 F:      arch/x86/mm/kmmio.c
13880 F:      arch/x86/mm/mmio-mod.c
13881 F:      arch/x86/mm/testmmiotrace.c
13882
13883 TRIVIAL PATCHES
13884 M:      Jiri Kosina <trivial@kernel.org>
13885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
13886 S:      Maintained
13887 K:      ^Subject:.*(?i)trivial
13888
13889 TEMPO SEMICONDUCTOR DRIVERS
13890 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
13891 S:      Maintained
13892 F:      sound/soc/codecs/tscs*.c
13893 F:      sound/soc/codecs/tscs*.h
13894 F:      Documentation/devicetree/bindings/sound/tscs*.txt
13895
13896 TTY LAYER
13897 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13898 M:      Jiri Slaby <jslaby@suse.com>
13899 S:      Supported
13900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
13901 F:      Documentation/serial/
13902 F:      drivers/tty/
13903 F:      drivers/tty/serial/serial_core.c
13904 F:      include/linux/serial_core.h
13905 F:      include/linux/serial.h
13906 F:      include/linux/tty.h
13907 F:      include/uapi/linux/serial_core.h
13908 F:      include/uapi/linux/serial.h
13909 F:      include/uapi/linux/tty.h
13910
13911 TUA9001 MEDIA DRIVER
13912 M:      Antti Palosaari <crope@iki.fi>
13913 L:      linux-media@vger.kernel.org
13914 W:      https://linuxtv.org
13915 W:      http://palosaari.fi/linux/
13916 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13917 T:      git git://linuxtv.org/anttip/media_tree.git
13918 S:      Maintained
13919 F:      drivers/media/tuners/tua9001*
13920
13921 TULIP NETWORK DRIVERS
13922 L:      netdev@vger.kernel.org
13923 L:      linux-parisc@vger.kernel.org
13924 S:      Orphan
13925 F:      drivers/net/ethernet/dec/tulip/
13926
13927 TUN/TAP driver
13928 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
13929 W:      http://vtun.sourceforge.net/tun
13930 S:      Maintained
13931 F:      Documentation/networking/tuntap.txt
13932 F:      arch/um/os-Linux/drivers/
13933
13934 TURBOCHANNEL SUBSYSTEM
13935 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
13936 M:      Ralf Baechle <ralf@linux-mips.org>
13937 L:      linux-mips@linux-mips.org
13938 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
13939 S:      Maintained
13940 F:      drivers/tc/
13941 F:      include/linux/tc.h
13942
13943 TW5864 VIDEO4LINUX DRIVER
13944 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
13945 M:      Anton Sviridenko <anton@corp.bluecherry.net>
13946 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
13947 M:      Andrey Utkin <andrey_utkin@fastmail.com>
13948 L:      linux-media@vger.kernel.org
13949 S:      Supported
13950 F:      drivers/media/pci/tw5864/
13951
13952 TW68 VIDEO4LINUX DRIVER
13953 M:      Hans Verkuil <hverkuil@xs4all.nl>
13954 L:      linux-media@vger.kernel.org
13955 T:      git git://linuxtv.org/media_tree.git
13956 W:      https://linuxtv.org
13957 S:      Odd Fixes
13958 F:      drivers/media/pci/tw68/
13959
13960 TW686X VIDEO4LINUX DRIVER
13961 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
13962 L:      linux-media@vger.kernel.org
13963 T:      git git://linuxtv.org/media_tree.git
13964 W:      http://linuxtv.org
13965 S:      Maintained
13966 F:      drivers/media/pci/tw686x/
13967
13968 UBI FILE SYSTEM (UBIFS)
13969 M:      Richard Weinberger <richard@nod.at>
13970 M:      Artem Bityutskiy <dedekind1@gmail.com>
13971 M:      Adrian Hunter <adrian.hunter@intel.com>
13972 L:      linux-mtd@lists.infradead.org
13973 T:      git git://git.infradead.org/ubifs-2.6.git
13974 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
13975 S:      Supported
13976 F:      Documentation/filesystems/ubifs.txt
13977 F:      fs/ubifs/
13978
13979 UCLINUX (M68KNOMMU AND COLDFIRE)
13980 M:      Greg Ungerer <gerg@linux-m68k.org>
13981 W:      http://www.linux-m68k.org/
13982 W:      http://www.uclinux.org/
13983 L:      linux-m68k@lists.linux-m68k.org
13984 L:      uclinux-dev@uclinux.org  (subscribers-only)
13985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
13986 S:      Maintained
13987 F:      arch/m68k/coldfire/
13988 F:      arch/m68k/68*/
13989 F:      arch/m68k/*/*_no.*
13990 F:      arch/m68k/include/asm/*_no.*
13991
13992 UDF FILESYSTEM
13993 M:      Jan Kara <jack@suse.com>
13994 S:      Maintained
13995 F:      Documentation/filesystems/udf.txt
13996 F:      fs/udf/
13997
13998 UDRAW TABLET
13999 M:      Bastien Nocera <hadess@hadess.net>
14000 L:      linux-input@vger.kernel.org
14001 S:      Maintained
14002 F:      drivers/hid/hid-udraw-ps3.c
14003
14004 UFS FILESYSTEM
14005 M:      Evgeniy Dushistov <dushistov@mail.ru>
14006 S:      Maintained
14007 F:      Documentation/filesystems/ufs.txt
14008 F:      fs/ufs/
14009
14010 UHID USERSPACE HID IO DRIVER:
14011 M:      David Herrmann <dh.herrmann@googlemail.com>
14012 L:      linux-input@vger.kernel.org
14013 S:      Maintained
14014 F:      drivers/hid/uhid.c
14015 F:      include/uapi/linux/uhid.h
14016
14017 ULPI BUS
14018 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
14019 L:      linux-usb@vger.kernel.org
14020 S:      Maintained
14021 F:      drivers/usb/common/ulpi.c
14022 F:      include/linux/ulpi/
14023
14024 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
14025 L:      linux-usb@vger.kernel.org
14026 S:      Orphan
14027 F:      drivers/uwb/
14028 F:      include/linux/uwb.h
14029 F:      include/linux/uwb/
14030
14031 UNICORE32 ARCHITECTURE:
14032 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
14033 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
14034 S:      Maintained
14035 T:      git git://github.com/gxt/linux.git
14036 F:      arch/unicore32/
14037
14038 UNIFDEF
14039 M:      Tony Finch <dot@dotat.at>
14040 W:      http://dotat.at/prog/unifdef
14041 S:      Maintained
14042 F:      scripts/unifdef.c
14043
14044 UNIFORM CDROM DRIVER
14045 M:      Jens Axboe <axboe@kernel.dk>
14046 W:      http://www.kernel.dk
14047 S:      Maintained
14048 F:      Documentation/cdrom/
14049 F:      drivers/cdrom/cdrom.c
14050 F:      include/linux/cdrom.h
14051 F:      include/uapi/linux/cdrom.h
14052
14053 UNISYS S-PAR DRIVERS
14054 M:      David Kershner <david.kershner@unisys.com>
14055 L:      sparmaintainer@unisys.com (Unisys internal)
14056 S:      Supported
14057 F:      drivers/staging/unisys/
14058
14059 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
14060 M:      Vinayak Holikatti <vinholikatti@gmail.com>
14061 L:      linux-scsi@vger.kernel.org
14062 S:      Supported
14063 F:      Documentation/scsi/ufs.txt
14064 F:      drivers/scsi/ufs/
14065
14066 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
14067 M:      Joao Pinto <jpinto@synopsys.com>
14068 L:      linux-scsi@vger.kernel.org
14069 S:      Supported
14070 F:      drivers/scsi/ufs/*dwc*
14071
14072 UNSORTED BLOCK IMAGES (UBI)
14073 M:      Artem Bityutskiy <dedekind1@gmail.com>
14074 M:      Richard Weinberger <richard@nod.at>
14075 W:      http://www.linux-mtd.infradead.org/
14076 L:      linux-mtd@lists.infradead.org
14077 T:      git git://git.infradead.org/ubifs-2.6.git
14078 S:      Supported
14079 F:      drivers/mtd/ubi/
14080 F:      include/linux/mtd/ubi.h
14081 F:      include/uapi/mtd/ubi-user.h
14082
14083 USB "USBNET" DRIVER FRAMEWORK
14084 M:      Oliver Neukum <oneukum@suse.com>
14085 L:      netdev@vger.kernel.org
14086 W:      http://www.linux-usb.org/usbnet
14087 S:      Maintained
14088 F:      drivers/net/usb/usbnet.c
14089 F:      include/linux/usb/usbnet.h
14090
14091 USB ACM DRIVER
14092 M:      Oliver Neukum <oneukum@suse.com>
14093 L:      linux-usb@vger.kernel.org
14094 S:      Maintained
14095 F:      Documentation/usb/acm.txt
14096 F:      drivers/usb/class/cdc-acm.*
14097
14098 USB AR5523 WIRELESS DRIVER
14099 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
14100 L:      linux-wireless@vger.kernel.org
14101 S:      Maintained
14102 F:      drivers/net/wireless/ath/ar5523/
14103
14104 USB ATTACHED SCSI
14105 M:      Oliver Neukum <oneukum@suse.com>
14106 L:      linux-usb@vger.kernel.org
14107 L:      linux-scsi@vger.kernel.org
14108 S:      Maintained
14109 F:      drivers/usb/storage/uas.c
14110
14111 USB CDC ETHERNET DRIVER
14112 M:      Oliver Neukum <oliver@neukum.org>
14113 L:      linux-usb@vger.kernel.org
14114 S:      Maintained
14115 F:      drivers/net/usb/cdc_*.c
14116 F:      include/uapi/linux/usb/cdc.h
14117
14118 USB CHAOSKEY DRIVER
14119 M:      Keith Packard <keithp@keithp.com>
14120 L:      linux-usb@vger.kernel.org
14121 S:      Maintained
14122 F:      drivers/usb/misc/chaoskey.c
14123
14124 USB CYPRESS C67X00 DRIVER
14125 M:      Peter Korsgaard <jacmet@sunsite.dk>
14126 L:      linux-usb@vger.kernel.org
14127 S:      Maintained
14128 F:      drivers/usb/c67x00/
14129
14130 USB DAVICOM DM9601 DRIVER
14131 M:      Peter Korsgaard <jacmet@sunsite.dk>
14132 L:      netdev@vger.kernel.org
14133 W:      http://www.linux-usb.org/usbnet
14134 S:      Maintained
14135 F:      drivers/net/usb/dm9601.c
14136
14137 USB DIAMOND RIO500 DRIVER
14138 M:      Cesar Miquel <miquel@df.uba.ar>
14139 L:      rio500-users@lists.sourceforge.net
14140 W:      http://rio500.sourceforge.net
14141 S:      Maintained
14142 F:      drivers/usb/misc/rio500*
14143
14144 USB EHCI DRIVER
14145 M:      Alan Stern <stern@rowland.harvard.edu>
14146 L:      linux-usb@vger.kernel.org
14147 S:      Maintained
14148 F:      Documentation/usb/ehci.txt
14149 F:      drivers/usb/host/ehci*
14150
14151 USB GADGET/PERIPHERAL SUBSYSTEM
14152 M:      Felipe Balbi <balbi@kernel.org>
14153 L:      linux-usb@vger.kernel.org
14154 W:      http://www.linux-usb.org/gadget
14155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
14156 S:      Maintained
14157 F:      drivers/usb/gadget/
14158 F:      include/linux/usb/gadget*
14159
14160 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
14161 M:      Jiri Kosina <jikos@kernel.org>
14162 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
14163 L:      linux-usb@vger.kernel.org
14164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
14165 S:      Maintained
14166 F:      Documentation/hid/hiddev.txt
14167 F:      drivers/hid/usbhid/
14168
14169 USB ISP116X DRIVER
14170 M:      Olav Kongas <ok@artecdesign.ee>
14171 L:      linux-usb@vger.kernel.org
14172 S:      Maintained
14173 F:      drivers/usb/host/isp116x*
14174 F:      include/linux/usb/isp116x.h
14175
14176 USB LAN78XX ETHERNET DRIVER
14177 M:      Woojung Huh <woojung.huh@microchip.com>
14178 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
14179 L:      netdev@vger.kernel.org
14180 S:      Maintained
14181 F:      drivers/net/usb/lan78xx.*
14182
14183 USB MASS STORAGE DRIVER
14184 M:      Alan Stern <stern@rowland.harvard.edu>
14185 L:      linux-usb@vger.kernel.org
14186 L:      usb-storage@lists.one-eyed-alien.net
14187 S:      Maintained
14188 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
14189 F:      drivers/usb/storage/
14190
14191 USB MIDI DRIVER
14192 M:      Clemens Ladisch <clemens@ladisch.de>
14193 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14194 T:      git git://git.alsa-project.org/alsa-kernel.git
14195 S:      Maintained
14196 F:      sound/usb/midi.*
14197
14198 USB NETWORKING DRIVERS
14199 L:      linux-usb@vger.kernel.org
14200 S:      Odd Fixes
14201 F:      drivers/net/usb/
14202
14203 USB OHCI DRIVER
14204 M:      Alan Stern <stern@rowland.harvard.edu>
14205 L:      linux-usb@vger.kernel.org
14206 S:      Maintained
14207 F:      Documentation/usb/ohci.txt
14208 F:      drivers/usb/host/ohci*
14209
14210 USB OTG FSM (Finite State Machine)
14211 M:      Peter Chen <Peter.Chen@nxp.com>
14212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
14213 L:      linux-usb@vger.kernel.org
14214 S:      Maintained
14215 F:      drivers/usb/common/usb-otg-fsm.c
14216
14217 USB OVER IP DRIVER
14218 M:      Valentina Manea <valentina.manea.m@gmail.com>
14219 M:      Shuah Khan <shuahkh@osg.samsung.com>
14220 M:      Shuah Khan <shuah@kernel.org>
14221 L:      linux-usb@vger.kernel.org
14222 S:      Maintained
14223 F:      Documentation/usb/usbip_protocol.txt
14224 F:      drivers/usb/usbip/
14225 F:      tools/usb/usbip/
14226
14227 USB PEGASUS DRIVER
14228 M:      Petko Manolov <petkan@nucleusys.com>
14229 L:      linux-usb@vger.kernel.org
14230 L:      netdev@vger.kernel.org
14231 T:      git git://github.com/petkan/pegasus.git
14232 W:      https://github.com/petkan/pegasus
14233 S:      Maintained
14234 F:      drivers/net/usb/pegasus.*
14235
14236 USB PHY LAYER
14237 M:      Felipe Balbi <balbi@kernel.org>
14238 L:      linux-usb@vger.kernel.org
14239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
14240 S:      Maintained
14241 F:      drivers/usb/phy/
14242
14243 USB PRINTER DRIVER (usblp)
14244 M:      Pete Zaitcev <zaitcev@redhat.com>
14245 L:      linux-usb@vger.kernel.org
14246 S:      Supported
14247 F:      drivers/usb/class/usblp.c
14248
14249 USB QMI WWAN NETWORK DRIVER
14250 M:      Bjørn Mork <bjorn@mork.no>
14251 L:      netdev@vger.kernel.org
14252 S:      Maintained
14253 F:      Documentation/ABI/testing/sysfs-class-net-qmi
14254 F:      drivers/net/usb/qmi_wwan.c
14255
14256 USB RTL8150 DRIVER
14257 M:      Petko Manolov <petkan@nucleusys.com>
14258 L:      linux-usb@vger.kernel.org
14259 L:      netdev@vger.kernel.org
14260 T:      git git://github.com/petkan/rtl8150.git
14261 W:      https://github.com/petkan/rtl8150
14262 S:      Maintained
14263 F:      drivers/net/usb/rtl8150.c
14264
14265 USB SERIAL SUBSYSTEM
14266 M:      Johan Hovold <johan@kernel.org>
14267 L:      linux-usb@vger.kernel.org
14268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
14269 S:      Maintained
14270 F:      Documentation/usb/usb-serial.txt
14271 F:      drivers/usb/serial/
14272 F:      include/linux/usb/serial.h
14273
14274 USB SMSC75XX ETHERNET DRIVER
14275 M:      Steve Glendinning <steve.glendinning@shawell.net>
14276 L:      netdev@vger.kernel.org
14277 S:      Maintained
14278 F:      drivers/net/usb/smsc75xx.*
14279
14280 USB SMSC95XX ETHERNET DRIVER
14281 M:      Steve Glendinning <steve.glendinning@shawell.net>
14282 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
14283 L:      netdev@vger.kernel.org
14284 S:      Maintained
14285 F:      drivers/net/usb/smsc95xx.*
14286
14287 USB SUBSYSTEM
14288 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14289 L:      linux-usb@vger.kernel.org
14290 W:      http://www.linux-usb.org
14291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
14292 S:      Supported
14293 F:      Documentation/devicetree/bindings/usb/
14294 F:      Documentation/usb/
14295 F:      drivers/usb/
14296 F:      include/linux/usb.h
14297 F:      include/linux/usb/
14298
14299 USB TYPEC SUBSYSTEM
14300 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
14301 L:      linux-usb@vger.kernel.org
14302 S:      Maintained
14303 F:      Documentation/ABI/testing/sysfs-class-typec
14304 F:      Documentation/usb/typec.rst
14305 F:      drivers/usb/typec/
14306 F:      include/linux/usb/typec.h
14307
14308 USB UHCI DRIVER
14309 M:      Alan Stern <stern@rowland.harvard.edu>
14310 L:      linux-usb@vger.kernel.org
14311 S:      Maintained
14312 F:      drivers/usb/host/uhci*
14313
14314 USB VIDEO CLASS
14315 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14316 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
14317 L:      linux-media@vger.kernel.org
14318 T:      git git://linuxtv.org/media_tree.git
14319 W:      http://www.ideasonboard.org/uvc/
14320 S:      Maintained
14321 F:      drivers/media/usb/uvc/
14322 F:      include/uapi/linux/uvcvideo.h
14323
14324 USB VISION DRIVER
14325 M:      Hans Verkuil <hverkuil@xs4all.nl>
14326 L:      linux-media@vger.kernel.org
14327 T:      git git://linuxtv.org/media_tree.git
14328 W:      https://linuxtv.org
14329 S:      Odd Fixes
14330 F:      drivers/media/usb/usbvision/
14331
14332 USB WEBCAM GADGET
14333 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14334 L:      linux-usb@vger.kernel.org
14335 S:      Maintained
14336 F:      drivers/usb/gadget/function/*uvc*
14337 F:      drivers/usb/gadget/legacy/webcam.c
14338
14339 USB WIRELESS RNDIS DRIVER (rndis_wlan)
14340 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
14341 L:      linux-wireless@vger.kernel.org
14342 S:      Maintained
14343 F:      drivers/net/wireless/rndis_wlan.c
14344
14345 USB XHCI DRIVER
14346 M:      Mathias Nyman <mathias.nyman@intel.com>
14347 L:      linux-usb@vger.kernel.org
14348 S:      Supported
14349 F:      drivers/usb/host/xhci*
14350 F:      drivers/usb/host/pci-quirks*
14351
14352 USB ZD1201 DRIVER
14353 L:      linux-wireless@vger.kernel.org
14354 W:      http://linux-lc100020.sourceforge.net
14355 S:      Orphan
14356 F:      drivers/net/wireless/zydas/zd1201.*
14357
14358 USB ZR364XX DRIVER
14359 M:      Antoine Jacquet <royale@zerezo.com>
14360 L:      linux-usb@vger.kernel.org
14361 L:      linux-media@vger.kernel.org
14362 T:      git git://linuxtv.org/media_tree.git
14363 W:      http://royale.zerezo.com/zr364xx/
14364 S:      Maintained
14365 F:      Documentation/media/v4l-drivers/zr364xx*
14366 F:      drivers/media/usb/zr364xx/
14367
14368 USER-MODE LINUX (UML)
14369 M:      Jeff Dike <jdike@addtoit.com>
14370 M:      Richard Weinberger <richard@nod.at>
14371 L:      user-mode-linux-devel@lists.sourceforge.net
14372 L:      user-mode-linux-user@lists.sourceforge.net
14373 W:      http://user-mode-linux.sourceforge.net
14374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
14375 S:      Maintained
14376 F:      Documentation/virtual/uml/
14377 F:      arch/um/
14378 F:      arch/x86/um/
14379 F:      fs/hostfs/
14380 F:      fs/hppfs/
14381
14382 USERSPACE I/O (UIO)
14383 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14384 S:      Maintained
14385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
14386 F:      Documentation/driver-api/uio-howto.rst
14387 F:      drivers/uio/
14388 F:      include/linux/uio*.h
14389
14390 UTIL-LINUX PACKAGE
14391 M:      Karel Zak <kzak@redhat.com>
14392 L:      util-linux@vger.kernel.org
14393 W:      http://en.wikipedia.org/wiki/Util-linux
14394 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
14395 S:      Maintained
14396
14397 UUID HELPERS
14398 M:      Christoph Hellwig <hch@lst.de>
14399 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
14400 L:      linux-kernel@vger.kernel.org
14401 T:      git git://git.infradead.org/users/hch/uuid.git
14402 F:      lib/uuid.c
14403 F:      lib/test_uuid.c
14404 F:      include/linux/uuid.h
14405 F:      include/uapi/linux/uuid.h
14406 S:      Maintained
14407
14408 UVESAFB DRIVER
14409 M:      Michal Januszewski <spock@gentoo.org>
14410 L:      linux-fbdev@vger.kernel.org
14411 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
14412 S:      Maintained
14413 F:      Documentation/fb/uvesafb.txt
14414 F:      drivers/video/fbdev/uvesafb.*
14415
14416 VF610 NAND DRIVER
14417 M:      Stefan Agner <stefan@agner.ch>
14418 L:      linux-mtd@lists.infradead.org
14419 S:      Supported
14420 F:      drivers/mtd/nand/vf610_nfc.c
14421
14422 VFAT/FAT/MSDOS FILESYSTEM
14423 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
14424 S:      Maintained
14425 F:      Documentation/filesystems/vfat.txt
14426 F:      fs/fat/
14427
14428 VFIO DRIVER
14429 M:      Alex Williamson <alex.williamson@redhat.com>
14430 L:      kvm@vger.kernel.org
14431 T:      git git://github.com/awilliam/linux-vfio.git
14432 S:      Maintained
14433 F:      Documentation/vfio.txt
14434 F:      drivers/vfio/
14435 F:      include/linux/vfio.h
14436 F:      include/uapi/linux/vfio.h
14437
14438 VFIO MEDIATED DEVICE DRIVERS
14439 M:      Kirti Wankhede <kwankhede@nvidia.com>
14440 L:      kvm@vger.kernel.org
14441 S:      Maintained
14442 F:      Documentation/vfio-mediated-device.txt
14443 F:      drivers/vfio/mdev/
14444 F:      include/linux/mdev.h
14445 F:      samples/vfio-mdev/
14446
14447 VFIO PLATFORM DRIVER
14448 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
14449 L:      kvm@vger.kernel.org
14450 S:      Maintained
14451 F:      drivers/vfio/platform/
14452
14453 VGA_SWITCHEROO
14454 R:      Lukas Wunner <lukas@wunner.de>
14455 S:      Maintained
14456 F:      Documentation/gpu/vga-switcheroo.rst
14457 F:      drivers/gpu/vga/vga_switcheroo.c
14458 F:      include/linux/vga_switcheroo.h
14459 T:      git git://anongit.freedesktop.org/drm/drm-misc
14460
14461 VIA RHINE NETWORK DRIVER
14462 S:      Orphan
14463 F:      drivers/net/ethernet/via/via-rhine.c
14464
14465 VIA SD/MMC CARD CONTROLLER DRIVER
14466 M:      Bruce Chang <brucechang@via.com.tw>
14467 M:      Harald Welte <HaraldWelte@viatech.com>
14468 S:      Maintained
14469 F:      drivers/mmc/host/via-sdmmc.c
14470
14471 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
14472 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
14473 L:      linux-fbdev@vger.kernel.org
14474 S:      Maintained
14475 F:      include/linux/via-core.h
14476 F:      include/linux/via-gpio.h
14477 F:      include/linux/via_i2c.h
14478 F:      drivers/video/fbdev/via/
14479
14480 VIA VELOCITY NETWORK DRIVER
14481 M:      Francois Romieu <romieu@fr.zoreil.com>
14482 L:      netdev@vger.kernel.org
14483 S:      Maintained
14484 F:      drivers/net/ethernet/via/via-velocity.*
14485
14486 VIDEO MULTIPLEXER DRIVER
14487 M:      Philipp Zabel <p.zabel@pengutronix.de>
14488 L:      linux-media@vger.kernel.org
14489 S:      Maintained
14490 F:      drivers/media/platform/video-mux.c
14491
14492 VIDEOBUF2 FRAMEWORK
14493 M:      Pawel Osciak <pawel@osciak.com>
14494 M:      Marek Szyprowski <m.szyprowski@samsung.com>
14495 M:      Kyungmin Park <kyungmin.park@samsung.com>
14496 L:      linux-media@vger.kernel.org
14497 S:      Maintained
14498 F:      drivers/media/v4l2-core/videobuf2-*
14499 F:      include/media/videobuf2-*
14500
14501 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
14502 M:      Helen Koike <helen.koike@collabora.com>
14503 L:      linux-media@vger.kernel.org
14504 T:      git git://linuxtv.org/media_tree.git
14505 W:      https://linuxtv.org
14506 S:      Maintained
14507 F:      drivers/media/platform/vimc/*
14508
14509 VIRT LIB
14510 M:      Alex Williamson <alex.williamson@redhat.com>
14511 M:      Paolo Bonzini <pbonzini@redhat.com>
14512 L:      kvm@vger.kernel.org
14513 S:      Supported
14514 F:      virt/lib/
14515
14516 VIRTIO AND VHOST VSOCK DRIVER
14517 M:      Stefan Hajnoczi <stefanha@redhat.com>
14518 L:      kvm@vger.kernel.org
14519 L:      virtualization@lists.linux-foundation.org
14520 L:      netdev@vger.kernel.org
14521 S:      Maintained
14522 F:      include/linux/virtio_vsock.h
14523 F:      include/uapi/linux/virtio_vsock.h
14524 F:      include/uapi/linux/vsockmon.h
14525 F:      include/uapi/linux/vm_sockets_diag.h
14526 F:      net/vmw_vsock/diag.c
14527 F:      net/vmw_vsock/af_vsock_tap.c
14528 F:      net/vmw_vsock/virtio_transport_common.c
14529 F:      net/vmw_vsock/virtio_transport.c
14530 F:      drivers/net/vsockmon.c
14531 F:      drivers/vhost/vsock.c
14532 F:      drivers/vhost/vsock.h
14533 F:      tools/testing/vsock/
14534
14535 VIRTIO CONSOLE DRIVER
14536 M:      Amit Shah <amit@kernel.org>
14537 L:      virtualization@lists.linux-foundation.org
14538 S:      Maintained
14539 F:      drivers/char/virtio_console.c
14540 F:      include/linux/virtio_console.h
14541 F:      include/uapi/linux/virtio_console.h
14542
14543 VIRTIO CORE, NET AND BLOCK DRIVERS
14544 M:      "Michael S. Tsirkin" <mst@redhat.com>
14545 M:      Jason Wang <jasowang@redhat.com>
14546 L:      virtualization@lists.linux-foundation.org
14547 S:      Maintained
14548 F:      Documentation/devicetree/bindings/virtio/
14549 F:      drivers/virtio/
14550 F:      tools/virtio/
14551 F:      drivers/net/virtio_net.c
14552 F:      drivers/block/virtio_blk.c
14553 F:      include/linux/virtio*.h
14554 F:      include/uapi/linux/virtio_*.h
14555 F:      drivers/crypto/virtio/
14556 F:      mm/balloon_compaction.c
14557
14558 VIRTIO CRYPTO DRIVER
14559 M:      Gonglei <arei.gonglei@huawei.com>
14560 L:      virtualization@lists.linux-foundation.org
14561 L:      linux-crypto@vger.kernel.org
14562 S:      Maintained
14563 F:      drivers/crypto/virtio/
14564 F:      include/uapi/linux/virtio_crypto.h
14565
14566 VIRTIO DRIVERS FOR S390
14567 M:      Cornelia Huck <cohuck@redhat.com>
14568 M:      Halil Pasic <pasic@linux.vnet.ibm.com>
14569 L:      linux-s390@vger.kernel.org
14570 L:      virtualization@lists.linux-foundation.org
14571 L:      kvm@vger.kernel.org
14572 S:      Supported
14573 F:      drivers/s390/virtio/
14574 F:      arch/s390/include/uapi/asm/virtio-ccw.h
14575
14576 VIRTIO GPU DRIVER
14577 M:      David Airlie <airlied@linux.ie>
14578 M:      Gerd Hoffmann <kraxel@redhat.com>
14579 L:      dri-devel@lists.freedesktop.org
14580 L:      virtualization@lists.linux-foundation.org
14581 T:      git git://anongit.freedesktop.org/drm/drm-misc
14582 S:      Maintained
14583 F:      drivers/gpu/drm/virtio/
14584 F:      include/uapi/linux/virtio_gpu.h
14585
14586 VIRTIO HOST (VHOST)
14587 M:      "Michael S. Tsirkin" <mst@redhat.com>
14588 M:      Jason Wang <jasowang@redhat.com>
14589 L:      kvm@vger.kernel.org
14590 L:      virtualization@lists.linux-foundation.org
14591 L:      netdev@vger.kernel.org
14592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
14593 S:      Maintained
14594 F:      drivers/vhost/
14595 F:      include/uapi/linux/vhost.h
14596
14597 VIRTIO INPUT DRIVER
14598 M:      Gerd Hoffmann <kraxel@redhat.com>
14599 S:      Maintained
14600 F:      drivers/virtio/virtio_input.c
14601 F:      include/uapi/linux/virtio_input.h
14602
14603 VIRTUAL SERIO DEVICE DRIVER
14604 M:      Stephen Chandler Paul <thatslyude@gmail.com>
14605 S:      Maintained
14606 F:      drivers/input/serio/userio.c
14607 F:      include/uapi/linux/userio.h
14608
14609 VIVID VIRTUAL VIDEO DRIVER
14610 M:      Hans Verkuil <hverkuil@xs4all.nl>
14611 L:      linux-media@vger.kernel.org
14612 T:      git git://linuxtv.org/media_tree.git
14613 W:      https://linuxtv.org
14614 S:      Maintained
14615 F:      drivers/media/platform/vivid/*
14616
14617 VLYNQ BUS
14618 M:      Florian Fainelli <f.fainelli@gmail.com>
14619 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
14620 S:      Maintained
14621 F:      drivers/vlynq/vlynq.c
14622 F:      include/linux/vlynq.h
14623
14624 VME SUBSYSTEM
14625 M:      Martyn Welch <martyn@welchs.me.uk>
14626 M:      Manohar Vanga <manohar.vanga@gmail.com>
14627 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14628 L:      devel@driverdev.osuosl.org
14629 S:      Maintained
14630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
14631 F:      Documentation/driver-api/vme.rst
14632 F:      drivers/staging/vme/
14633 F:      drivers/vme/
14634 F:      include/linux/vme*
14635
14636 VMWARE BALLOON DRIVER
14637 M:      Xavier Deguillard <xdeguillard@vmware.com>
14638 M:      Philip Moltmann <moltmann@vmware.com>
14639 M:      "VMware, Inc." <pv-drivers@vmware.com>
14640 L:      linux-kernel@vger.kernel.org
14641 S:      Maintained
14642 F:      drivers/misc/vmw_balloon.c
14643
14644 VMWARE HYPERVISOR INTERFACE
14645 M:      Alok Kataria <akataria@vmware.com>
14646 L:      virtualization@lists.linux-foundation.org
14647 S:      Supported
14648 F:      arch/x86/kernel/cpu/vmware.c
14649
14650 VMWARE PVRDMA DRIVER
14651 M:      Adit Ranadive <aditr@vmware.com>
14652 M:      VMware PV-Drivers <pv-drivers@vmware.com>
14653 L:      linux-rdma@vger.kernel.org
14654 S:      Maintained
14655 F:      drivers/infiniband/hw/vmw_pvrdma/
14656
14657 VMware PVSCSI driver
14658 M:      Jim Gill <jgill@vmware.com>
14659 M:      VMware PV-Drivers <pv-drivers@vmware.com>
14660 L:      linux-scsi@vger.kernel.org
14661 S:      Maintained
14662 F:      drivers/scsi/vmw_pvscsi.c
14663 F:      drivers/scsi/vmw_pvscsi.h
14664
14665 VMWARE VMMOUSE SUBDRIVER
14666 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
14667 M:      "VMware, Inc." <pv-drivers@vmware.com>
14668 L:      linux-input@vger.kernel.org
14669 S:      Maintained
14670 F:      drivers/input/mouse/vmmouse.c
14671 F:      drivers/input/mouse/vmmouse.h
14672
14673 VMWARE VMXNET3 ETHERNET DRIVER
14674 M:      Shrikrishna Khare <skhare@vmware.com>
14675 M:      "VMware, Inc." <pv-drivers@vmware.com>
14676 L:      netdev@vger.kernel.org
14677 S:      Maintained
14678 F:      drivers/net/vmxnet3/
14679
14680 VOCORE VOCORE2 BOARD
14681 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14682 L:      linux-mips@linux-mips.org
14683 S:      Maintained
14684 F:      arch/mips/boot/dts/ralink/vocore2.dts
14685
14686 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
14687 M:      Liam Girdwood <lgirdwood@gmail.com>
14688 M:      Mark Brown <broonie@kernel.org>
14689 L:      linux-kernel@vger.kernel.org
14690 W:      http://www.slimlogic.co.uk/?p=48
14691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
14692 S:      Supported
14693 F:      Documentation/devicetree/bindings/regulator/
14694 F:      Documentation/power/regulator/
14695 F:      drivers/regulator/
14696 F:      include/dt-bindings/regulator/
14697 F:      include/linux/regulator/
14698
14699 VRF
14700 M:      David Ahern <dsa@cumulusnetworks.com>
14701 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
14702 L:      netdev@vger.kernel.org
14703 S:      Maintained
14704 F:      drivers/net/vrf.c
14705 F:      Documentation/networking/vrf.txt
14706
14707 VT1211 HARDWARE MONITOR DRIVER
14708 M:      Juerg Haefliger <juergh@gmail.com>
14709 L:      linux-hwmon@vger.kernel.org
14710 S:      Maintained
14711 F:      Documentation/hwmon/vt1211
14712 F:      drivers/hwmon/vt1211.c
14713
14714 VT8231 HARDWARE MONITOR DRIVER
14715 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
14716 L:      linux-hwmon@vger.kernel.org
14717 S:      Maintained
14718 F:      drivers/hwmon/vt8231.c
14719
14720 VUB300 USB to SDIO/SD/MMC bridge chip
14721 M:      Tony Olech <tony.olech@elandigitalsystems.com>
14722 L:      linux-mmc@vger.kernel.org
14723 L:      linux-usb@vger.kernel.org
14724 S:      Supported
14725 F:      drivers/mmc/host/vub300.c
14726
14727 W1 DALLAS'S 1-WIRE BUS
14728 M:      Evgeniy Polyakov <zbr@ioremap.net>
14729 S:      Maintained
14730 F:      Documentation/w1/
14731 F:      drivers/w1/
14732 F:      include/linux/w1.h
14733
14734 W83791D HARDWARE MONITORING DRIVER
14735 M:      Marc Hulsman <m.hulsman@tudelft.nl>
14736 L:      linux-hwmon@vger.kernel.org
14737 S:      Maintained
14738 F:      Documentation/hwmon/w83791d
14739 F:      drivers/hwmon/w83791d.c
14740
14741 W83793 HARDWARE MONITORING DRIVER
14742 M:      Rudolf Marek <r.marek@assembler.cz>
14743 L:      linux-hwmon@vger.kernel.org
14744 S:      Maintained
14745 F:      Documentation/hwmon/w83793
14746 F:      drivers/hwmon/w83793.c
14747
14748 W83795 HARDWARE MONITORING DRIVER
14749 M:      Jean Delvare <jdelvare@suse.com>
14750 L:      linux-hwmon@vger.kernel.org
14751 S:      Maintained
14752 F:      drivers/hwmon/w83795.c
14753
14754 W83L51xD SD/MMC CARD INTERFACE DRIVER
14755 M:      Pierre Ossman <pierre@ossman.eu>
14756 S:      Maintained
14757 F:      drivers/mmc/host/wbsd.*
14758
14759 WACOM PROTOCOL 4 SERIAL TABLETS
14760 M:      Julian Squires <julian@cipht.net>
14761 M:      Hans de Goede <hdegoede@redhat.com>
14762 L:      linux-input@vger.kernel.org
14763 S:      Maintained
14764 F:      drivers/input/tablet/wacom_serial4.c
14765
14766 WATCHDOG DEVICE DRIVERS
14767 M:      Wim Van Sebroeck <wim@iguana.be>
14768 R:      Guenter Roeck <linux@roeck-us.net>
14769 L:      linux-watchdog@vger.kernel.org
14770 W:      http://www.linux-watchdog.org/
14771 T:      git git://www.linux-watchdog.org/linux-watchdog.git
14772 S:      Maintained
14773 F:      Documentation/devicetree/bindings/watchdog/
14774 F:      Documentation/watchdog/
14775 F:      drivers/watchdog/
14776 F:      include/linux/watchdog.h
14777 F:      include/uapi/linux/watchdog.h
14778
14779 WHISKEYCOVE PMIC GPIO DRIVER
14780 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
14781 L:      linux-gpio@vger.kernel.org
14782 S:      Maintained
14783 F:      drivers/gpio/gpio-wcove.c
14784
14785 WIIMOTE HID DRIVER
14786 M:      David Herrmann <dh.herrmann@googlemail.com>
14787 L:      linux-input@vger.kernel.org
14788 S:      Maintained
14789 F:      drivers/hid/hid-wiimote*
14790
14791 WILOCITY WIL6210 WIRELESS DRIVER
14792 M:      Maya Erez <qca_merez@qca.qualcomm.com>
14793 L:      linux-wireless@vger.kernel.org
14794 L:      wil6210@qca.qualcomm.com
14795 S:      Supported
14796 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
14797 F:      drivers/net/wireless/ath/wil6210/
14798
14799 WIMAX STACK
14800 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
14801 M:      linux-wimax@intel.com
14802 L:      wimax@linuxwimax.org (subscribers-only)
14803 S:      Supported
14804 W:      http://linuxwimax.org
14805 F:      Documentation/wimax/README.wimax
14806 F:      include/linux/wimax/debug.h
14807 F:      include/net/wimax.h
14808 F:      include/uapi/linux/wimax.h
14809 F:      net/wimax/
14810
14811 WINBOND CIR DRIVER
14812 M:      David Härdeman <david@hardeman.nu>
14813 S:      Maintained
14814 F:      drivers/media/rc/winbond-cir.c
14815
14816 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
14817 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
14818 L:      linux-watchdog@vger.kernel.org
14819 S:      Maintained
14820 F:      drivers/watchdog/ebc-c384_wdt.c
14821
14822 WINSYSTEMS WS16C48 GPIO DRIVER
14823 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
14824 L:      linux-gpio@vger.kernel.org
14825 S:      Maintained
14826 F:      drivers/gpio/gpio-ws16c48.c
14827
14828 WISTRON LAPTOP BUTTON DRIVER
14829 M:      Miloslav Trmac <mitr@volny.cz>
14830 S:      Maintained
14831 F:      drivers/input/misc/wistron_btns.c
14832
14833 WL3501 WIRELESS PCMCIA CARD DRIVER
14834 L:      linux-wireless@vger.kernel.org
14835 S:      Odd fixes
14836 F:      drivers/net/wireless/wl3501*
14837
14838 WOLFSON MICROELECTRONICS DRIVERS
14839 L:      patches@opensource.cirrus.com
14840 T:      git https://github.com/CirrusLogic/linux-drivers.git
14841 W:      https://github.com/CirrusLogic/linux-drivers/wiki
14842 S:      Supported
14843 F:      Documentation/hwmon/wm83??
14844 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
14845 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
14846 F:      Documentation/devicetree/bindings/mfd/arizona.txt
14847 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
14848 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
14849 F:      arch/arm/mach-s3c64xx/mach-crag6410*
14850 F:      drivers/clk/clk-wm83*.c
14851 F:      drivers/extcon/extcon-arizona.c
14852 F:      drivers/leds/leds-wm83*.c
14853 F:      drivers/gpio/gpio-*wm*.c
14854 F:      drivers/gpio/gpio-arizona.c
14855 F:      drivers/hwmon/wm83??-hwmon.c
14856 F:      drivers/input/misc/wm831x-on.c
14857 F:      drivers/input/touchscreen/wm831x-ts.c
14858 F:      drivers/input/touchscreen/wm97*.c
14859 F:      drivers/mfd/arizona*
14860 F:      drivers/mfd/wm*.c
14861 F:      drivers/mfd/cs47l24*
14862 F:      drivers/power/supply/wm83*.c
14863 F:      drivers/rtc/rtc-wm83*.c
14864 F:      drivers/regulator/wm8*.c
14865 F:      drivers/regulator/arizona*
14866 F:      drivers/video/backlight/wm83*_bl.c
14867 F:      drivers/watchdog/wm83*_wdt.c
14868 F:      include/linux/mfd/arizona/
14869 F:      include/linux/mfd/wm831x/
14870 F:      include/linux/mfd/wm8350/
14871 F:      include/linux/mfd/wm8400*
14872 F:      include/linux/regulator/arizona*
14873 F:      include/linux/wm97xx.h
14874 F:      include/sound/wm????.h
14875 F:      sound/soc/codecs/arizona.?
14876 F:      sound/soc/codecs/wm*
14877 F:      sound/soc/codecs/cs47l24*
14878
14879 WORKQUEUE
14880 M:      Tejun Heo <tj@kernel.org>
14881 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
14883 S:      Maintained
14884 F:      include/linux/workqueue.h
14885 F:      kernel/workqueue.c
14886 F:      Documentation/core-api/workqueue.rst
14887
14888 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
14889 M:      Chen-Yu Tsai <wens@csie.org>
14890 L:      linux-kernel@vger.kernel.org
14891 S:      Maintained
14892 N:      axp[128]
14893
14894 X.25 NETWORK LAYER
14895 M:      Andrew Hendry <andrew.hendry@gmail.com>
14896 L:      linux-x25@vger.kernel.org
14897 S:      Odd Fixes
14898 F:      Documentation/networking/x25*
14899 F:      include/net/x25*
14900 F:      net/x25/
14901
14902 X86 ARCHITECTURE (32-BIT AND 64-BIT)
14903 M:      Thomas Gleixner <tglx@linutronix.de>
14904 M:      Ingo Molnar <mingo@redhat.com>
14905 R:      "H. Peter Anvin" <hpa@zytor.com>
14906 M:      x86@kernel.org
14907 L:      linux-kernel@vger.kernel.org
14908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14909 S:      Maintained
14910 F:      Documentation/x86/
14911 F:      arch/x86/
14912
14913 X86 MCE INFRASTRUCTURE
14914 M:      Tony Luck <tony.luck@intel.com>
14915 M:      Borislav Petkov <bp@alien8.de>
14916 L:      linux-edac@vger.kernel.org
14917 S:      Maintained
14918 F:      arch/x86/kernel/cpu/mcheck/*
14919
14920 X86 MICROCODE UPDATE SUPPORT
14921 M:      Borislav Petkov <bp@alien8.de>
14922 S:      Maintained
14923 F:      arch/x86/kernel/cpu/microcode/*
14924
14925 X86 PLATFORM DRIVERS
14926 M:      Darren Hart <dvhart@infradead.org>
14927 M:      Andy Shevchenko <andy@infradead.org>
14928 L:      platform-driver-x86@vger.kernel.org
14929 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
14930 S:      Maintained
14931 F:      drivers/platform/x86/
14932 F:      drivers/platform/olpc/
14933
14934 X86 VDSO
14935 M:      Andy Lutomirski <luto@amacapital.net>
14936 L:      linux-kernel@vger.kernel.org
14937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
14938 S:      Maintained
14939 F:      arch/x86/entry/vdso/
14940
14941 XC2028/3028 TUNER DRIVER
14942 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
14943 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14944 L:      linux-media@vger.kernel.org
14945 W:      https://linuxtv.org
14946 T:      git git://linuxtv.org/media_tree.git
14947 S:      Maintained
14948 F:      drivers/media/tuners/tuner-xc2028.*
14949
14950 XEN BLOCK SUBSYSTEM
14951 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14952 M:      Roger Pau Monné <roger.pau@citrix.com>
14953 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14954 S:      Supported
14955 F:      drivers/block/xen-blkback/*
14956 F:      drivers/block/xen*
14957
14958 XEN HYPERVISOR ARM
14959 M:      Stefano Stabellini <sstabellini@kernel.org>
14960 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14961 S:      Maintained
14962 F:      arch/arm/xen/
14963 F:      arch/arm/include/asm/xen/
14964
14965 XEN HYPERVISOR ARM64
14966 M:      Stefano Stabellini <sstabellini@kernel.org>
14967 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14968 S:      Maintained
14969 F:      arch/arm64/xen/
14970 F:      arch/arm64/include/asm/xen/
14971
14972 XEN HYPERVISOR INTERFACE
14973 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
14974 M:      Juergen Gross <jgross@suse.com>
14975 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
14977 S:      Supported
14978 F:      arch/x86/xen/
14979 F:      drivers/*/xen-*front.c
14980 F:      drivers/xen/
14981 F:      arch/x86/include/asm/xen/
14982 F:      arch/x86/include/asm/pvclock-abi.h
14983 F:      include/xen/
14984 F:      include/uapi/xen/
14985 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
14986 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
14987
14988 XEN NETWORK BACKEND DRIVER
14989 M:      Wei Liu <wei.liu2@citrix.com>
14990 M:      Paul Durrant <paul.durrant@citrix.com>
14991 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14992 L:      netdev@vger.kernel.org
14993 S:      Supported
14994 F:      drivers/net/xen-netback/*
14995
14996 XEN PCI SUBSYSTEM
14997 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14998 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14999 S:      Supported
15000 F:      arch/x86/pci/*xen*
15001 F:      drivers/pci/*xen*
15002
15003 XEN PVSCSI DRIVERS
15004 M:      Juergen Gross <jgross@suse.com>
15005 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15006 L:      linux-scsi@vger.kernel.org
15007 S:      Supported
15008 F:      drivers/scsi/xen-scsifront.c
15009 F:      drivers/xen/xen-scsiback.c
15010 F:      include/xen/interface/io/vscsiif.h
15011
15012 XEN SWIOTLB SUBSYSTEM
15013 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15014 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15015 S:      Supported
15016 F:      arch/x86/xen/*swiotlb*
15017 F:      drivers/xen/*swiotlb*
15018
15019 XFS FILESYSTEM
15020 M:      Darrick J. Wong <darrick.wong@oracle.com>
15021 M:      linux-xfs@vger.kernel.org
15022 L:      linux-xfs@vger.kernel.org
15023 W:      http://xfs.org/
15024 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
15025 S:      Supported
15026 F:      Documentation/filesystems/xfs.txt
15027 F:      fs/xfs/
15028
15029 XILINX AXI ETHERNET DRIVER
15030 M:      Anirudha Sarangi <anirudh@xilinx.com>
15031 M:      John Linn <John.Linn@xilinx.com>
15032 S:      Maintained
15033 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
15034
15035 XILINX UARTLITE SERIAL DRIVER
15036 M:      Peter Korsgaard <jacmet@sunsite.dk>
15037 L:      linux-serial@vger.kernel.org
15038 S:      Maintained
15039 F:      drivers/tty/serial/uartlite.c
15040
15041 XILINX VIDEO IP CORES
15042 M:      Hyun Kwon <hyun.kwon@xilinx.com>
15043 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15044 L:      linux-media@vger.kernel.org
15045 T:      git git://linuxtv.org/media_tree.git
15046 S:      Supported
15047 F:      Documentation/devicetree/bindings/media/xilinx/
15048 F:      drivers/media/platform/xilinx/
15049 F:      include/uapi/linux/xilinx-v4l2-controls.h
15050
15051 XILLYBUS DRIVER
15052 M:      Eli Billauer <eli.billauer@gmail.com>
15053 L:      linux-kernel@vger.kernel.org
15054 S:      Supported
15055 F:      drivers/char/xillybus/
15056
15057 XRA1403 GPIO EXPANDER
15058 M:      Nandor Han <nandor.han@ge.com>
15059 M:      Semi Malinen <semi.malinen@ge.com>
15060 L:      linux-gpio@vger.kernel.org
15061 S:      Maintained
15062 F:      drivers/gpio/gpio-xra1403.c
15063 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
15064
15065 XTENSA XTFPGA PLATFORM SUPPORT
15066 M:      Max Filippov <jcmvbkbc@gmail.com>
15067 L:      linux-xtensa@linux-xtensa.org
15068 S:      Maintained
15069 F:      drivers/spi/spi-xtensa-xtfpga.c
15070 F:      sound/soc/xtensa/xtfpga-i2s.c
15071
15072 YAM DRIVER FOR AX.25
15073 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
15074 L:      linux-hams@vger.kernel.org
15075 S:      Maintained
15076 F:      drivers/net/hamradio/yam*
15077 F:      include/linux/yam.h
15078
15079 YAMA SECURITY MODULE
15080 M:      Kees Cook <keescook@chromium.org>
15081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
15082 S:      Supported
15083 F:      security/yama/
15084 F:      Documentation/admin-guide/LSM/Yama.rst
15085
15086 YEALINK PHONE DRIVER
15087 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
15088 L:      usbb2k-api-dev@nongnu.org
15089 S:      Maintained
15090 F:      Documentation/input/yealink.rst
15091 F:      drivers/input/misc/yealink.*
15092
15093 Z8530 DRIVER FOR AX.25
15094 M:      Joerg Reuter <jreuter@yaina.de>
15095 W:      http://yaina.de/jreuter/
15096 W:      http://www.qsl.net/dl1bke/
15097 L:      linux-hams@vger.kernel.org
15098 S:      Maintained
15099 F:      Documentation/networking/z8530drv.txt
15100 F:      drivers/net/hamradio/*scc.c
15101 F:      drivers/net/hamradio/z8530.h
15102
15103 ZBUD COMPRESSED PAGE ALLOCATOR
15104 M:      Seth Jennings <sjenning@redhat.com>
15105 M:      Dan Streetman <ddstreet@ieee.org>
15106 L:      linux-mm@kvack.org
15107 S:      Maintained
15108 F:      mm/zbud.c
15109 F:      include/linux/zbud.h
15110
15111 ZD1211RW WIRELESS DRIVER
15112 M:      Daniel Drake <dsd@gentoo.org>
15113 M:      Ulrich Kunitz <kune@deine-taler.de>
15114 W:      http://zd1211.ath.cx/wiki/DriverRewrite
15115 L:      linux-wireless@vger.kernel.org
15116 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
15117 S:      Maintained
15118 F:      drivers/net/wireless/zydas/zd1211rw/
15119
15120 ZD1301 MEDIA DRIVER
15121 M:      Antti Palosaari <crope@iki.fi>
15122 L:      linux-media@vger.kernel.org
15123 W:      https://linuxtv.org/
15124 W:      http://palosaari.fi/linux/
15125 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15126 S:      Maintained
15127 F:      drivers/media/usb/dvb-usb-v2/zd1301*
15128
15129 ZD1301_DEMOD MEDIA DRIVER
15130 M:      Antti Palosaari <crope@iki.fi>
15131 L:      linux-media@vger.kernel.org
15132 W:      https://linuxtv.org/
15133 W:      http://palosaari.fi/linux/
15134 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15135 S:      Maintained
15136 F:      drivers/media/dvb-frontends/zd1301_demod*
15137
15138 ZPOOL COMPRESSED PAGE STORAGE API
15139 M:      Dan Streetman <ddstreet@ieee.org>
15140 L:      linux-mm@kvack.org
15141 S:      Maintained
15142 F:      mm/zpool.c
15143 F:      include/linux/zpool.h
15144
15145 ZR36067 VIDEO FOR LINUX DRIVER
15146 L:      mjpeg-users@lists.sourceforge.net
15147 L:      linux-media@vger.kernel.org
15148 W:      http://mjpeg.sourceforge.net/driver-zoran/
15149 T:      hg https://linuxtv.org/hg/v4l-dvb
15150 S:      Odd Fixes
15151 F:      drivers/media/pci/zoran/
15152
15153 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
15154 M:      Minchan Kim <minchan@kernel.org>
15155 M:      Nitin Gupta <ngupta@vflare.org>
15156 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
15157 L:      linux-kernel@vger.kernel.org
15158 S:      Maintained
15159 F:      drivers/block/zram/
15160 F:      Documentation/blockdev/zram.txt
15161
15162 ZS DECSTATION Z85C30 SERIAL DRIVER
15163 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
15164 S:      Maintained
15165 F:      drivers/tty/serial/zs.*
15166
15167 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
15168 M:      Minchan Kim <minchan@kernel.org>
15169 M:      Nitin Gupta <ngupta@vflare.org>
15170 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
15171 L:      linux-mm@kvack.org
15172 S:      Maintained
15173 F:      mm/zsmalloc.c
15174 F:      include/linux/zsmalloc.h
15175 F:      Documentation/vm/zsmalloc.txt
15176
15177 ZSWAP COMPRESSED SWAP CACHING
15178 M:      Seth Jennings <sjenning@redhat.com>
15179 M:      Dan Streetman <ddstreet@ieee.org>
15180 L:      linux-mm@kvack.org
15181 S:      Maintained
15182 F:      mm/zswap.c
15183
15184 THE REST
15185 M:      Linus Torvalds <torvalds@linux-foundation.org>
15186 L:      linux-kernel@vger.kernel.org
15187 Q:      http://patchwork.kernel.org/project/LKML/list/
15188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
15189 S:      Buried alive in reporters
15190 F:      *
15191 F:      */