]> asedeno.scripts.mit.edu Git - linux.git/blob - MAINTAINERS
Merge tag 'hsi-for-4.21' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi
[linux.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@kernel.org>
141 L:      netdev@vger.kernel.org
142 S:      Odd Fixes
143 F:      Documentation/networking/device_drivers/3com/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 M:      Heiner Kallweit <hkallweit1@gmail.com>
184 L:      netdev@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/ethernet/realtek/r8169.c
187
188 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
189 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
190 L:      linux-serial@vger.kernel.org
191 S:      Maintained
192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
193 F:      drivers/tty/serial/8250*
194 F:      include/linux/serial_8250.h
195
196 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
197 L:      netdev@vger.kernel.org
198 S:      Orphan / Obsolete
199 F:      drivers/net/ethernet/8390/
200
201 9P FILE SYSTEM
202 M:      Eric Van Hensbergen <ericvh@gmail.com>
203 M:      Latchesar Ionkov <lucho@ionkov.net>
204 M:      Dominique Martinet <asmadeus@codewreck.org>
205 L:      v9fs-developer@lists.sourceforge.net
206 W:      http://swik.net/v9fs
207 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
209 T:      git git://github.com/martinetd/linux.git
210 S:      Maintained
211 F:      Documentation/filesystems/9p.txt
212 F:      fs/9p/
213 F:      net/9p/
214 F:      include/net/9p/
215 F:      include/uapi/linux/virtio_9p.h
216 F:      include/trace/events/9p.h
217
218 A8293 MEDIA DRIVER
219 M:      Antti Palosaari <crope@iki.fi>
220 L:      linux-media@vger.kernel.org
221 W:      https://linuxtv.org
222 W:      http://palosaari.fi/linux/
223 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
224 T:      git git://linuxtv.org/anttip/media_tree.git
225 S:      Maintained
226 F:      drivers/media/dvb-frontends/a8293*
227
228 AACRAID SCSI RAID DRIVER
229 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
230 L:      linux-scsi@vger.kernel.org
231 W:      http://www.adaptec.com/
232 S:      Supported
233 F:      Documentation/scsi/aacraid.txt
234 F:      drivers/scsi/aacraid/
235
236 ABI/API
237 L:      linux-api@vger.kernel.org
238 F:      include/linux/syscalls.h
239 F:      kernel/sys_ni.c
240
241 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
242 M:      Hans de Goede <hdegoede@redhat.com>
243 L:      linux-hwmon@vger.kernel.org
244 S:      Maintained
245 F:      drivers/hwmon/abituguru.c
246
247 ABIT UGURU 3 HARDWARE MONITOR DRIVER
248 M:      Alistair John Strachan <alistair@devzero.co.uk>
249 L:      linux-hwmon@vger.kernel.org
250 S:      Maintained
251 F:      drivers/hwmon/abituguru3.c
252
253 ACCES 104-DIO-48E GPIO DRIVER
254 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
255 L:      linux-gpio@vger.kernel.org
256 S:      Maintained
257 F:      drivers/gpio/gpio-104-dio-48e.c
258
259 ACCES 104-IDI-48 GPIO DRIVER
260 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
261 L:      linux-gpio@vger.kernel.org
262 S:      Maintained
263 F:      drivers/gpio/gpio-104-idi-48.c
264
265 ACCES 104-IDIO-16 GPIO DRIVER
266 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
267 L:      linux-gpio@vger.kernel.org
268 S:      Maintained
269 F:      drivers/gpio/gpio-104-idio-16.c
270
271 ACCES 104-QUAD-8 IIO DRIVER
272 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
273 L:      linux-iio@vger.kernel.org
274 S:      Maintained
275 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
276 F:      drivers/iio/counter/104-quad-8.c
277
278 ACCES PCI-IDIO-16 GPIO DRIVER
279 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
280 L:      linux-gpio@vger.kernel.org
281 S:      Maintained
282 F:      drivers/gpio/gpio-pci-idio-16.c
283
284 ACCES PCIe-IDIO-24 GPIO DRIVER
285 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
286 L:      linux-gpio@vger.kernel.org
287 S:      Maintained
288 F:      drivers/gpio/gpio-pcie-idio-24.c
289
290 ACENIC DRIVER
291 M:      Jes Sorensen <jes@trained-monkey.org>
292 L:      linux-acenic@sunsite.dk
293 S:      Maintained
294 F:      drivers/net/ethernet/alteon/acenic*
295
296 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
297 M:      Peter Feuerer <peter@piie.net>
298 L:      platform-driver-x86@vger.kernel.org
299 W:      http://piie.net/?section=acerhdf
300 S:      Maintained
301 F:      drivers/platform/x86/acerhdf.c
302
303 ACER WMI LAPTOP EXTRAS
304 M:      "Lee, Chun-Yi" <jlee@suse.com>
305 L:      platform-driver-x86@vger.kernel.org
306 S:      Maintained
307 F:      drivers/platform/x86/acer-wmi.c
308
309 ACPI
310 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
311 M:      Len Brown <lenb@kernel.org>
312 L:      linux-acpi@vger.kernel.org
313 W:      https://01.org/linux-acpi
314 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
316 B:      https://bugzilla.kernel.org
317 S:      Supported
318 F:      drivers/acpi/
319 F:      drivers/pnp/pnpacpi/
320 F:      include/linux/acpi.h
321 F:      include/linux/fwnode.h
322 F:      include/acpi/
323 F:      Documentation/acpi/
324 F:      Documentation/ABI/testing/sysfs-bus-acpi
325 F:      Documentation/ABI/testing/configfs-acpi
326 F:      drivers/pci/*acpi*
327 F:      drivers/pci/*/*acpi*
328 F:      tools/power/acpi/
329
330 ACPI APEI
331 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
332 M:      Len Brown <lenb@kernel.org>
333 L:      linux-acpi@vger.kernel.org
334 R:      Tony Luck <tony.luck@intel.com>
335 R:      Borislav Petkov <bp@alien8.de>
336 F:      drivers/acpi/apei/
337
338 ACPI COMPONENT ARCHITECTURE (ACPICA)
339 M:      Robert Moore <robert.moore@intel.com>
340 M:      Erik Schmauss <erik.schmauss@intel.com>
341 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
342 L:      linux-acpi@vger.kernel.org
343 L:      devel@acpica.org
344 W:      https://acpica.org/
345 W:      https://github.com/acpica/acpica/
346 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
348 B:      https://bugzilla.kernel.org
349 B:      https://bugs.acpica.org
350 S:      Supported
351 F:      drivers/acpi/acpica/
352 F:      include/acpi/
353 F:      tools/power/acpi/
354
355 ACPI FAN DRIVER
356 M:      Zhang Rui <rui.zhang@intel.com>
357 L:      linux-acpi@vger.kernel.org
358 W:      https://01.org/linux-acpi
359 B:      https://bugzilla.kernel.org
360 S:      Supported
361 F:      drivers/acpi/fan.c
362
363 ACPI FOR ARM64 (ACPI/arm64)
364 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
365 M:      Hanjun Guo <hanjun.guo@linaro.org>
366 M:      Sudeep Holla <sudeep.holla@arm.com>
367 L:      linux-acpi@vger.kernel.org
368 S:      Maintained
369 F:      drivers/acpi/arm64
370
371 ACPI I2C MULTI INSTANTIATE DRIVER
372 M:      Hans de Goede <hdegoede@redhat.com>
373 L:      platform-driver-x86@vger.kernel.org
374 S:      Maintained
375 F:      drivers/platform/x86/i2c-multi-instantiate.c
376
377 ACPI PMIC DRIVERS
378 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
379 M:      Len Brown <lenb@kernel.org>
380 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
381 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
382 L:      linux-acpi@vger.kernel.org
383 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
385 B:      https://bugzilla.kernel.org
386 S:      Supported
387 F:      drivers/acpi/pmic/
388
389 ACPI THERMAL DRIVER
390 M:      Zhang Rui <rui.zhang@intel.com>
391 L:      linux-acpi@vger.kernel.org
392 W:      https://01.org/linux-acpi
393 B:      https://bugzilla.kernel.org
394 S:      Supported
395 F:      drivers/acpi/*thermal*
396
397 ACPI VIDEO DRIVER
398 M:      Zhang Rui <rui.zhang@intel.com>
399 L:      linux-acpi@vger.kernel.org
400 W:      https://01.org/linux-acpi
401 B:      https://bugzilla.kernel.org
402 S:      Supported
403 F:      drivers/acpi/acpi_video.c
404
405 ACPI WMI DRIVER
406 L:      platform-driver-x86@vger.kernel.org
407 S:      Orphan
408 F:      drivers/platform/x86/wmi.c
409 F:      include/uapi/linux/wmi.h
410
411 AD1889 ALSA SOUND DRIVER
412 M:      Thibaut Varene <T-Bone@parisc-linux.org>
413 W:      http://wiki.parisc-linux.org/AD1889
414 L:      linux-parisc@vger.kernel.org
415 S:      Maintained
416 F:      sound/pci/ad1889.*
417
418 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
419 M:      Michael Hennerich <michael.hennerich@analog.com>
420 W:      http://wiki.analog.com/AD5254
421 W:      http://ez.analog.com/community/linux-device-drivers
422 S:      Supported
423 F:      drivers/misc/ad525x_dpot.c
424
425 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
426 M:      Michael Hennerich <michael.hennerich@analog.com>
427 W:      http://wiki.analog.com/AD5398
428 W:      http://ez.analog.com/community/linux-device-drivers
429 S:      Supported
430 F:      drivers/regulator/ad5398.c
431
432 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
433 M:      Michael Hennerich <michael.hennerich@analog.com>
434 W:      http://wiki.analog.com/AD7142
435 W:      http://ez.analog.com/community/linux-device-drivers
436 S:      Supported
437 F:      drivers/input/misc/ad714x.c
438
439 AD7877 TOUCHSCREEN DRIVER
440 M:      Michael Hennerich <michael.hennerich@analog.com>
441 W:      http://wiki.analog.com/AD7877
442 W:      http://ez.analog.com/community/linux-device-drivers
443 S:      Supported
444 F:      drivers/input/touchscreen/ad7877.c
445
446 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
447 M:      Michael Hennerich <michael.hennerich@analog.com>
448 W:      http://wiki.analog.com/AD7879
449 W:      http://ez.analog.com/community/linux-device-drivers
450 S:      Supported
451 F:      drivers/input/touchscreen/ad7879.c
452
453 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
454 M:      Jiri Kosina <jikos@kernel.org>
455 S:      Maintained
456
457 ADF7242 IEEE 802.15.4 RADIO DRIVER
458 M:      Michael Hennerich <michael.hennerich@analog.com>
459 W:      https://wiki.analog.com/ADF7242
460 W:      http://ez.analog.com/community/linux-device-drivers
461 L:      linux-wpan@vger.kernel.org
462 S:      Supported
463 F:      drivers/net/ieee802154/adf7242.c
464 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
465
466 ADM1025 HARDWARE MONITOR DRIVER
467 M:      Jean Delvare <jdelvare@suse.com>
468 L:      linux-hwmon@vger.kernel.org
469 S:      Maintained
470 F:      Documentation/hwmon/adm1025
471 F:      drivers/hwmon/adm1025.c
472
473 ADM1029 HARDWARE MONITOR DRIVER
474 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
475 L:      linux-hwmon@vger.kernel.org
476 S:      Maintained
477 F:      drivers/hwmon/adm1029.c
478
479 ADM8211 WIRELESS DRIVER
480 L:      linux-wireless@vger.kernel.org
481 W:      http://wireless.kernel.org/
482 S:      Orphan
483 F:      drivers/net/wireless/admtek/adm8211.*
484
485 ADP1653 FLASH CONTROLLER DRIVER
486 M:      Sakari Ailus <sakari.ailus@iki.fi>
487 L:      linux-media@vger.kernel.org
488 S:      Maintained
489 F:      drivers/media/i2c/adp1653.c
490 F:      include/media/i2c/adp1653.h
491
492 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
493 M:      Michael Hennerich <michael.hennerich@analog.com>
494 W:      http://wiki.analog.com/ADP5520
495 W:      http://ez.analog.com/community/linux-device-drivers
496 S:      Supported
497 F:      drivers/mfd/adp5520.c
498 F:      drivers/video/backlight/adp5520_bl.c
499 F:      drivers/leds/leds-adp5520.c
500 F:      drivers/gpio/gpio-adp5520.c
501 F:      drivers/input/keyboard/adp5520-keys.c
502
503 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
504 M:      Michael Hennerich <michael.hennerich@analog.com>
505 W:      http://wiki.analog.com/ADP5588
506 W:      http://ez.analog.com/community/linux-device-drivers
507 S:      Supported
508 F:      drivers/input/keyboard/adp5588-keys.c
509 F:      drivers/gpio/gpio-adp5588.c
510
511 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
512 M:      Michael Hennerich <michael.hennerich@analog.com>
513 W:      http://wiki.analog.com/ADP8860
514 W:      http://ez.analog.com/community/linux-device-drivers
515 S:      Supported
516 F:      drivers/video/backlight/adp8860_bl.c
517
518 ADS1015 HARDWARE MONITOR DRIVER
519 M:      Dirk Eibach <eibach@gdsys.de>
520 L:      linux-hwmon@vger.kernel.org
521 S:      Maintained
522 F:      Documentation/hwmon/ads1015
523 F:      drivers/hwmon/ads1015.c
524 F:      include/linux/platform_data/ads1015.h
525
526 ADT746X FAN DRIVER
527 M:      Colin Leroy <colin@colino.net>
528 S:      Maintained
529 F:      drivers/macintosh/therm_adt746x.c
530
531 ADT7475 HARDWARE MONITOR DRIVER
532 M:      Jean Delvare <jdelvare@suse.com>
533 L:      linux-hwmon@vger.kernel.org
534 S:      Maintained
535 F:      Documentation/hwmon/adt7475
536 F:      drivers/hwmon/adt7475.c
537
538 ADVANSYS SCSI DRIVER
539 M:      Matthew Wilcox <willy@infradead.org>
540 M:      Hannes Reinecke <hare@suse.com>
541 L:      linux-scsi@vger.kernel.org
542 S:      Maintained
543 F:      Documentation/scsi/advansys.txt
544 F:      drivers/scsi/advansys.c
545
546 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
547 M:      Michael Hennerich <michael.hennerich@analog.com>
548 W:      http://wiki.analog.com/ADXL345
549 W:      http://ez.analog.com/community/linux-device-drivers
550 S:      Supported
551 F:      drivers/input/misc/adxl34x.c
552
553 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
554 M:      Stefan Popa <stefan.popa@analog.com>
555 W:      http://ez.analog.com/community/linux-device-drivers
556 S:      Supported
557 F:      drivers/iio/accel/adxl372.c
558 F:      drivers/iio/accel/adxl372_spi.c
559 F:      drivers/iio/accel/adxl372_i2c.c
560 F:      Documentation/devicetree/bindings/iio/accel/adxl372.txt
561
562 AF9013 MEDIA DRIVER
563 M:      Antti Palosaari <crope@iki.fi>
564 L:      linux-media@vger.kernel.org
565 W:      https://linuxtv.org
566 W:      http://palosaari.fi/linux/
567 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
568 T:      git git://linuxtv.org/anttip/media_tree.git
569 S:      Maintained
570 F:      drivers/media/dvb-frontends/af9013*
571
572 AF9033 MEDIA DRIVER
573 M:      Antti Palosaari <crope@iki.fi>
574 L:      linux-media@vger.kernel.org
575 W:      https://linuxtv.org
576 W:      http://palosaari.fi/linux/
577 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
578 T:      git git://linuxtv.org/anttip/media_tree.git
579 S:      Maintained
580 F:      drivers/media/dvb-frontends/af9033*
581
582 AFFS FILE SYSTEM
583 M:      David Sterba <dsterba@suse.com>
584 L:      linux-fsdevel@vger.kernel.org
585 S:      Odd Fixes
586 F:      Documentation/filesystems/affs.txt
587 F:      fs/affs/
588
589 AFS FILESYSTEM
590 M:      David Howells <dhowells@redhat.com>
591 L:      linux-afs@lists.infradead.org
592 S:      Supported
593 F:      fs/afs/
594 F:      include/trace/events/afs.h
595 F:      Documentation/filesystems/afs.txt
596 W:      https://www.infradead.org/~dhowells/kafs/
597
598 AGPGART DRIVER
599 M:      David Airlie <airlied@linux.ie>
600 T:      git git://anongit.freedesktop.org/drm/drm
601 S:      Maintained
602 F:      drivers/char/agp/
603 F:      include/linux/agp*
604 F:      include/uapi/linux/agp*
605
606 AHA152X SCSI DRIVER
607 M:      "Juergen E. Fischer" <fischer@norbit.de>
608 L:      linux-scsi@vger.kernel.org
609 S:      Maintained
610 F:      drivers/scsi/aha152x*
611 F:      drivers/scsi/pcmcia/aha152x*
612
613 AIC7XXX / AIC79XX SCSI DRIVER
614 M:      Hannes Reinecke <hare@suse.com>
615 L:      linux-scsi@vger.kernel.org
616 S:      Maintained
617 F:      drivers/scsi/aic7xxx/
618
619 AIMSLAB FM RADIO RECEIVER DRIVER
620 M:      Hans Verkuil <hverkuil@xs4all.nl>
621 L:      linux-media@vger.kernel.org
622 T:      git git://linuxtv.org/media_tree.git
623 W:      https://linuxtv.org
624 S:      Maintained
625 F:      drivers/media/radio/radio-aimslab*
626
627 AIO
628 M:      Benjamin LaHaise <bcrl@kvack.org>
629 L:      linux-aio@kvack.org
630 S:      Supported
631 F:      fs/aio.c
632 F:      include/linux/*aio*.h
633
634 AIRSPY MEDIA DRIVER
635 M:      Antti Palosaari <crope@iki.fi>
636 L:      linux-media@vger.kernel.org
637 W:      https://linuxtv.org
638 W:      http://palosaari.fi/linux/
639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
640 T:      git git://linuxtv.org/anttip/media_tree.git
641 S:      Maintained
642 F:      drivers/media/usb/airspy/
643
644 ALACRITECH GIGABIT ETHERNET DRIVER
645 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
646 S:      Maintained
647 F:      drivers/net/ethernet/alacritech/*
648
649 ALCATEL SPEEDTOUCH USB DRIVER
650 M:      Duncan Sands <duncan.sands@free.fr>
651 L:      linux-usb@vger.kernel.org
652 W:      http://www.linux-usb.org/SpeedTouch/
653 S:      Maintained
654 F:      drivers/usb/atm/speedtch.c
655 F:      drivers/usb/atm/usbatm.c
656
657 ALCHEMY AU1XX0 MMC DRIVER
658 M:      Manuel Lauss <manuel.lauss@gmail.com>
659 S:      Maintained
660 F:      drivers/mmc/host/au1xmmc.c
661
662 ALI1563 I2C DRIVER
663 M:      Rudolf Marek <r.marek@assembler.cz>
664 L:      linux-i2c@vger.kernel.org
665 S:      Maintained
666 F:      Documentation/i2c/busses/i2c-ali1563
667 F:      drivers/i2c/busses/i2c-ali1563.c
668
669 ALLWINNER SECURITY SYSTEM
670 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
671 L:      linux-crypto@vger.kernel.org
672 S:      Maintained
673 F:      drivers/crypto/sunxi-ss/
674
675 ALLWINNER VPU DRIVER
676 M:      Maxime Ripard <maxime.ripard@bootlin.com>
677 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
678 L:      linux-media@vger.kernel.org
679 S:      Maintained
680 F:      drivers/staging/media/sunxi/cedrus/
681
682 ALPHA PORT
683 M:      Richard Henderson <rth@twiddle.net>
684 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
685 M:      Matt Turner <mattst88@gmail.com>
686 S:      Odd Fixes
687 L:      linux-alpha@vger.kernel.org
688 F:      arch/alpha/
689
690 ALPS PS/2 TOUCHPAD DRIVER
691 R:      Pali Rohár <pali.rohar@gmail.com>
692 F:      drivers/input/mouse/alps.*
693
694 ALTERA I2C CONTROLLER DRIVER
695 M:      Thor Thayer <thor.thayer@linux.intel.com>
696 S:      Maintained
697 F:      drivers/i2c/busses/i2c-altera.c
698
699 ALTERA MAILBOX DRIVER
700 M:      Ley Foon Tan <lftan@altera.com>
701 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
702 S:      Maintained
703 F:      drivers/mailbox/mailbox-altera.c
704
705 ALTERA PIO DRIVER
706 M:      Tien Hock Loh <thloh@altera.com>
707 L:      linux-gpio@vger.kernel.org
708 S:      Maintained
709 F:      drivers/gpio/gpio-altera.c
710
711 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
712 M:      Thor Thayer <thor.thayer@linux.intel.com>
713 S:      Maintained
714 F:      drivers/gpio/gpio-altera-a10sr.c
715 F:      drivers/mfd/altera-a10sr.c
716 F:      drivers/reset/reset-a10sr.c
717 F:      include/linux/mfd/altera-a10sr.h
718 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
719
720 ALTERA TRIPLE SPEED ETHERNET DRIVER
721 M:      Thor Thayer <thor.thayer@linux.intel.com>
722 L:      netdev@vger.kernel.org
723 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
724 S:      Maintained
725 F:      drivers/net/ethernet/altera/
726
727 ALTERA UART/JTAG UART SERIAL DRIVERS
728 M:      Tobias Klauser <tklauser@distanz.ch>
729 L:      linux-serial@vger.kernel.org
730 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
731 S:      Maintained
732 F:      drivers/tty/serial/altera_uart.c
733 F:      drivers/tty/serial/altera_jtaguart.c
734 F:      include/linux/altera_uart.h
735 F:      include/linux/altera_jtaguart.h
736
737 AMAZON ETHERNET DRIVERS
738 M:      Netanel Belgazal <netanel@amazon.com>
739 R:      Saeed Bishara <saeedb@amazon.com>
740 R:      Zorik Machulsky <zorik@amazon.com>
741 L:      netdev@vger.kernel.org
742 S:      Supported
743 F:      Documentation/networking/device_drivers/amazon/ena.txt
744 F:      drivers/net/ethernet/amazon/
745
746 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
747 M:      Tom Lendacky <thomas.lendacky@amd.com>
748 M:      Gary Hook <gary.hook@amd.com>
749 L:      linux-crypto@vger.kernel.org
750 S:      Supported
751 F:      drivers/crypto/ccp/
752 F:      include/linux/ccp.h
753
754 AMD DISPLAY CORE
755 M:      Harry Wentland <harry.wentland@amd.com>
756 M:      Leo Li <sunpeng.li@amd.com>
757 L:      amd-gfx@lists.freedesktop.org
758 T:      git git://people.freedesktop.org/~agd5f/linux
759 S:      Supported
760 F:      drivers/gpu/drm/amd/display/
761
762 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
763 M:      Huang Rui <ray.huang@amd.com>
764 L:      linux-hwmon@vger.kernel.org
765 S:      Supported
766 F:      Documentation/hwmon/fam15h_power
767 F:      drivers/hwmon/fam15h_power.c
768
769 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
770 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
771 S:      Orphan
772 F:      drivers/usb/gadget/udc/amd5536udc.*
773
774 AMD GEODE PROCESSOR/CHIPSET SUPPORT
775 P:      Andres Salomon <dilinger@queued.net>
776 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
777 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
778 S:      Supported
779 F:      drivers/char/hw_random/geode-rng.c
780 F:      drivers/crypto/geode*
781 F:      drivers/video/fbdev/geode/
782 F:      arch/x86/include/asm/geode.h
783
784 AMD IOMMU (AMD-VI)
785 M:      Joerg Roedel <joro@8bytes.org>
786 L:      iommu@lists.linux-foundation.org
787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
788 S:      Maintained
789 F:      drivers/iommu/amd_iommu*.[ch]
790 F:      include/linux/amd-iommu.h
791
792 AMD KFD
793 M:      Oded Gabbay <oded.gabbay@gmail.com>
794 L:      dri-devel@lists.freedesktop.org
795 T:      git git://people.freedesktop.org/~gabbayo/linux.git
796 S:      Supported
797 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
798 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
799 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
800 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
801 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
802 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_fence.c
803 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
804 F:      drivers/gpu/drm/amd/amdkfd/
805 F:      drivers/gpu/drm/amd/include/cik_structs.h
806 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
807 F:      drivers/gpu/drm/amd/include/vi_structs.h
808 F:      drivers/gpu/drm/amd/include/v9_structs.h
809 F:      include/uapi/linux/kfd_ioctl.h
810
811 AMD POWERPLAY
812 M:      Rex Zhu <rex.zhu@amd.com>
813 M:      Evan Quan <evan.quan@amd.com>
814 L:      amd-gfx@lists.freedesktop.org
815 S:      Supported
816 F:      drivers/gpu/drm/amd/powerplay/
817 T:      git git://people.freedesktop.org/~agd5f/linux
818
819 AMD SEATTLE DEVICE TREE SUPPORT
820 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
821 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
822 M:      Tom Lendacky <thomas.lendacky@amd.com>
823 S:      Supported
824 F:      arch/arm64/boot/dts/amd/
825
826 AMD XGBE DRIVER
827 M:      Tom Lendacky <thomas.lendacky@amd.com>
828 L:      netdev@vger.kernel.org
829 S:      Supported
830 F:      drivers/net/ethernet/amd/xgbe/
831 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
832
833 ANALOG DEVICES INC AD5686 DRIVER
834 M:      Stefan Popa <stefan.popa@analog.com>
835 L:      linux-pm@vger.kernel.org
836 W:      http://ez.analog.com/community/linux-device-drivers
837 S:      Supported
838 F:      drivers/iio/dac/ad5686*
839 F:      drivers/iio/dac/ad5696*
840
841 ANALOG DEVICES INC AD5758 DRIVER
842 M:      Stefan Popa <stefan.popa@analog.com>
843 L:      linux-iio@vger.kernel.org
844 W:      http://ez.analog.com/community/linux-device-drivers
845 S:      Supported
846 F:      drivers/iio/dac/ad5758.c
847 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
848
849 ANALOG DEVICES INC AD9389B DRIVER
850 M:      Hans Verkuil <hans.verkuil@cisco.com>
851 L:      linux-media@vger.kernel.org
852 S:      Maintained
853 F:      drivers/media/i2c/ad9389b*
854
855 ANALOG DEVICES INC ADGS1408 DRIVER
856 M:      Mircea Caprioru <mircea.caprioru@analog.com>
857 S:      Supported
858 F:      drivers/mux/adgs1408.c
859 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
860
861 ANALOG DEVICES INC ADP5061 DRIVER
862 M:      Stefan Popa <stefan.popa@analog.com>
863 L:      linux-pm@vger.kernel.org
864 W:      http://ez.analog.com/community/linux-device-drivers
865 S:      Supported
866 F:      drivers/power/supply/adp5061.c
867
868 ANALOG DEVICES INC ADV7180 DRIVER
869 M:      Lars-Peter Clausen <lars@metafoo.de>
870 L:      linux-media@vger.kernel.org
871 W:      http://ez.analog.com/community/linux-device-drivers
872 S:      Supported
873 F:      drivers/media/i2c/adv7180.c
874
875 ANALOG DEVICES INC ADV748X DRIVER
876 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
877 L:      linux-media@vger.kernel.org
878 S:      Maintained
879 F:      drivers/media/i2c/adv748x/*
880
881 ANALOG DEVICES INC ADV7511 DRIVER
882 M:      Hans Verkuil <hans.verkuil@cisco.com>
883 L:      linux-media@vger.kernel.org
884 S:      Maintained
885 F:      drivers/media/i2c/adv7511*
886
887 ANALOG DEVICES INC ADV7604 DRIVER
888 M:      Hans Verkuil <hans.verkuil@cisco.com>
889 L:      linux-media@vger.kernel.org
890 S:      Maintained
891 F:      drivers/media/i2c/adv7604*
892
893 ANALOG DEVICES INC ADV7842 DRIVER
894 M:      Hans Verkuil <hans.verkuil@cisco.com>
895 L:      linux-media@vger.kernel.org
896 S:      Maintained
897 F:      drivers/media/i2c/adv7842*
898
899 ANALOG DEVICES INC ASOC CODEC DRIVERS
900 M:      Lars-Peter Clausen <lars@metafoo.de>
901 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
902 W:      http://wiki.analog.com/
903 W:      http://ez.analog.com/community/linux-device-drivers
904 S:      Supported
905 F:      sound/soc/codecs/adau*
906 F:      sound/soc/codecs/adav*
907 F:      sound/soc/codecs/ad1*
908 F:      sound/soc/codecs/ad7*
909 F:      sound/soc/codecs/ssm*
910 F:      sound/soc/codecs/sigmadsp.*
911
912 ANALOG DEVICES INC DMA DRIVERS
913 M:      Lars-Peter Clausen <lars@metafoo.de>
914 W:      http://ez.analog.com/community/linux-device-drivers
915 S:      Supported
916 F:      drivers/dma/dma-axi-dmac.c
917
918 ANALOG DEVICES INC IIO DRIVERS
919 M:      Lars-Peter Clausen <lars@metafoo.de>
920 M:      Michael Hennerich <Michael.Hennerich@analog.com>
921 W:      http://wiki.analog.com/
922 W:      http://ez.analog.com/community/linux-device-drivers
923 S:      Supported
924 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
925 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
926 F:      drivers/iio/*/ad*
927 F:      drivers/iio/adc/ltc2497*
928 X:      drivers/iio/*/adjd*
929 F:      drivers/staging/iio/*/ad*
930
931 ANDES ARCHITECTURE
932 M:      Greentime Hu <green.hu@gmail.com>
933 M:      Vincent Chen <deanbo422@gmail.com>
934 T:      git https://github.com/andestech/linux.git
935 S:      Supported
936 F:      arch/nds32/
937 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
938 F:      Documentation/devicetree/bindings/nds32/
939 K:      nds32
940 N:      nds32
941
942 ANDROID CONFIG FRAGMENTS
943 M:      Rob Herring <robh@kernel.org>
944 S:      Supported
945 F:      kernel/configs/android*
946
947 ANDROID DRIVERS
948 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
949 M:      Arve Hjønnevåg <arve@android.com>
950 M:      Todd Kjos <tkjos@android.com>
951 M:      Martijn Coenen <maco@android.com>
952 M:      Joel Fernandes <joel@joelfernandes.org>
953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
954 L:      devel@driverdev.osuosl.org
955 S:      Supported
956 F:      drivers/android/
957 F:      drivers/staging/android/
958
959 ANDROID GOLDFISH PIC DRIVER
960 M:      Miodrag Dinic <miodrag.dinic@mips.com>
961 S:      Supported
962 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
963 F:      drivers/irqchip/irq-goldfish-pic.c
964
965 ANDROID GOLDFISH RTC DRIVER
966 M:      Miodrag Dinic <miodrag.dinic@mips.com>
967 S:      Supported
968 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
969 F:      drivers/rtc/rtc-goldfish.c
970
971 ANDROID ION DRIVER
972 M:      Laura Abbott <labbott@redhat.com>
973 M:      Sumit Semwal <sumit.semwal@linaro.org>
974 L:      devel@driverdev.osuosl.org
975 L:      dri-devel@lists.freedesktop.org
976 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
977 S:      Supported
978 F:      drivers/staging/android/ion
979 F:      drivers/staging/android/uapi/ion.h
980
981 AOA (Apple Onboard Audio) ALSA DRIVER
982 M:      Johannes Berg <johannes@sipsolutions.net>
983 L:      linuxppc-dev@lists.ozlabs.org
984 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
985 S:      Maintained
986 F:      sound/aoa/
987
988 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
989 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
990 L:      linux-iio@vger.kernel.org
991 S:      Maintained
992 F:      drivers/iio/adc/stx104.c
993
994 APM DRIVER
995 M:      Jiri Kosina <jikos@kernel.org>
996 S:      Odd fixes
997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
998 F:      arch/x86/kernel/apm_32.c
999 F:      include/linux/apm_bios.h
1000 F:      include/uapi/linux/apm_bios.h
1001 F:      drivers/char/apm-emulation.c
1002
1003 APPARMOR SECURITY MODULE
1004 M:      John Johansen <john.johansen@canonical.com>
1005 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1006 W:      wiki.apparmor.net
1007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1008 S:      Supported
1009 F:      security/apparmor/
1010 F:      Documentation/admin-guide/LSM/apparmor.rst
1011
1012 APPLE BCM5974 MULTITOUCH DRIVER
1013 M:      Henrik Rydberg <rydberg@bitmath.org>
1014 L:      linux-input@vger.kernel.org
1015 S:      Odd fixes
1016 F:      drivers/input/mouse/bcm5974.c
1017
1018 APPLE SMC DRIVER
1019 M:      Henrik Rydberg <rydberg@bitmath.org>
1020 L:      linux-hwmon@vger.kernel.org
1021 S:      Odd fixes
1022 F:      drivers/hwmon/applesmc.c
1023
1024 APPLETALK NETWORK LAYER
1025 L:      netdev@vger.kernel.org
1026 S:      Odd fixes
1027 F:      drivers/net/appletalk/
1028 F:      net/appletalk/
1029
1030 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1031 M:      Duc Dang <dhdang@apm.com>
1032 S:      Supported
1033 F:      arch/arm64/boot/dts/apm/
1034
1035 APPLIED MICRO (APM) X-GENE SOC EDAC
1036 M:      Loc Ho <lho@apm.com>
1037 S:      Supported
1038 F:      drivers/edac/xgene_edac.c
1039 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1040
1041 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1042 M:      Iyappan Subramanian <isubramanian@apm.com>
1043 M:      Keyur Chudgar <kchudgar@apm.com>
1044 S:      Supported
1045 F:      drivers/net/ethernet/apm/xgene-v2/
1046
1047 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1048 M:      Iyappan Subramanian <isubramanian@apm.com>
1049 M:      Keyur Chudgar <kchudgar@apm.com>
1050 M:      Quan Nguyen <qnguyen@apm.com>
1051 S:      Supported
1052 F:      drivers/net/ethernet/apm/xgene/
1053 F:      drivers/net/phy/mdio-xgene.c
1054 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1055 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1056
1057 APPLIED MICRO (APM) X-GENE SOC PMU
1058 M:      Tai Nguyen <ttnguyen@apm.com>
1059 S:      Supported
1060 F:      drivers/perf/xgene_pmu.c
1061 F:      Documentation/perf/xgene-pmu.txt
1062 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1063
1064 APTINA CAMERA SENSOR PLL
1065 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1066 L:      linux-media@vger.kernel.org
1067 S:      Maintained
1068 F:      drivers/media/i2c/aptina-pll.*
1069
1070 ARC FRAMEBUFFER DRIVER
1071 M:      Jaya Kumar <jayalk@intworks.biz>
1072 S:      Maintained
1073 F:      drivers/video/fbdev/arcfb.c
1074 F:      drivers/video/fbdev/core/fb_defio.c
1075
1076 ARC PGU DRM DRIVER
1077 M:      Alexey Brodkin <abrodkin@synopsys.com>
1078 S:      Supported
1079 F:      drivers/gpu/drm/arc/
1080 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1081
1082 ARCNET NETWORK LAYER
1083 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1084 L:      netdev@vger.kernel.org
1085 S:      Maintained
1086 F:      drivers/net/arcnet/
1087 F:      include/uapi/linux/if_arcnet.h
1088
1089 ARM ARCHITECTED TIMER DRIVER
1090 M:      Mark Rutland <mark.rutland@arm.com>
1091 M:      Marc Zyngier <marc.zyngier@arm.com>
1092 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1093 S:      Maintained
1094 F:      arch/arm/include/asm/arch_timer.h
1095 F:      arch/arm64/include/asm/arch_timer.h
1096 F:      drivers/clocksource/arm_arch_timer.c
1097
1098 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1099 M:      Linus Walleij <linus.walleij@linaro.org>
1100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1101 S:      Maintained
1102 F:      Documentation/devicetree/bindings/arm/arm-boards
1103 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1104 F:      Documentation/devicetree/bindings/clock/arm-integrator.txt
1105 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1106 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1107 F:      arch/arm/mach-integrator/
1108 F:      arch/arm/mach-realview/
1109 F:      arch/arm/mach-versatile/
1110 F:      arch/arm/plat-versatile/
1111 F:      arch/arm/boot/dts/arm-realview-*
1112 F:      arch/arm/boot/dts/integrator*
1113 F:      arch/arm/boot/dts/versatile*
1114 F:      drivers/clk/versatile/
1115 F:      drivers/i2c/busses/i2c-versatile.c
1116 F:      drivers/irqchip/irq-versatile-fpga.c
1117 F:      drivers/mtd/maps/physmap_of_versatile.c
1118 F:      drivers/power/reset/arm-versatile-reboot.c
1119 F:      drivers/soc/versatile/
1120
1121 ARM HDLCD DRM DRIVER
1122 M:      Liviu Dudau <liviu.dudau@arm.com>
1123 S:      Supported
1124 F:      drivers/gpu/drm/arm/hdlcd_*
1125 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1126
1127 ARM MALI-DP DRM DRIVER
1128 M:      Liviu Dudau <liviu.dudau@arm.com>
1129 M:      Brian Starkey <brian.starkey@arm.com>
1130 M:      Mali DP Maintainers <malidp@foss.arm.com>
1131 S:      Supported
1132 F:      drivers/gpu/drm/arm/
1133 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1134
1135 ARM MFM AND FLOPPY DRIVERS
1136 M:      Ian Molton <spyro@f2s.com>
1137 S:      Maintained
1138 F:      arch/arm/lib/floppydma.S
1139 F:      arch/arm/include/asm/floppy.h
1140
1141 ARM PMU PROFILING AND DEBUGGING
1142 M:      Will Deacon <will.deacon@arm.com>
1143 M:      Mark Rutland <mark.rutland@arm.com>
1144 S:      Maintained
1145 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1146 F:      arch/arm*/kernel/perf_*
1147 F:      arch/arm/oprofile/common.c
1148 F:      arch/arm*/kernel/hw_breakpoint.c
1149 F:      arch/arm*/include/asm/hw_breakpoint.h
1150 F:      arch/arm*/include/asm/perf_event.h
1151 F:      drivers/perf/*
1152 F:      include/linux/perf/arm_pmu.h
1153 F:      Documentation/devicetree/bindings/arm/pmu.txt
1154 F:      Documentation/devicetree/bindings/perf/
1155
1156 ARM PORT
1157 M:      Russell King <linux@armlinux.org.uk>
1158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1159 W:      http://www.armlinux.org.uk/
1160 S:      Odd Fixes
1161 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1162 F:      arch/arm/
1163 X:      arch/arm/boot/dts/
1164
1165 ARM PRIMECELL AACI PL041 DRIVER
1166 M:      Russell King <linux@armlinux.org.uk>
1167 S:      Odd Fixes
1168 F:      sound/arm/aaci.*
1169
1170 ARM PRIMECELL BUS SUPPORT
1171 M:      Russell King <linux@armlinux.org.uk>
1172 S:      Odd Fixes
1173 F:      drivers/amba/
1174 F:      include/linux/amba/bus.h
1175
1176 ARM PRIMECELL CLCD PL110 DRIVER
1177 M:      Russell King <linux@armlinux.org.uk>
1178 S:      Odd Fixes
1179 F:      drivers/video/fbdev/amba-clcd.*
1180
1181 ARM PRIMECELL KMI PL050 DRIVER
1182 M:      Russell King <linux@armlinux.org.uk>
1183 S:      Odd Fixes
1184 F:      drivers/input/serio/ambakmi.*
1185 F:      include/linux/amba/kmi.h
1186
1187 ARM PRIMECELL MMCI PL180/1 DRIVER
1188 M:      Russell King <linux@armlinux.org.uk>
1189 S:      Odd Fixes
1190 F:      drivers/mmc/host/mmci.*
1191 F:      include/linux/amba/mmci.h
1192
1193 ARM PRIMECELL SSP PL022 SPI DRIVER
1194 M:      Linus Walleij <linus.walleij@linaro.org>
1195 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1196 S:      Maintained
1197 F:      Documentation/devicetree/bindings/spi/spi_pl022.txt
1198 F:      drivers/spi/spi-pl022.c
1199
1200 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1201 M:      Russell King <linux@armlinux.org.uk>
1202 S:      Odd Fixes
1203 F:      drivers/tty/serial/amba-pl01*.c
1204 F:      include/linux/amba/serial.h
1205
1206 ARM PRIMECELL VIC PL190/PL192 DRIVER
1207 M:      Linus Walleij <linus.walleij@linaro.org>
1208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1209 S:      Maintained
1210 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1211 F:      drivers/irqchip/irq-vic.c
1212
1213 ARM SMMU DRIVERS
1214 M:      Will Deacon <will.deacon@arm.com>
1215 R:      Robin Murphy <robin.murphy@arm.com>
1216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1217 S:      Maintained
1218 F:      drivers/iommu/arm-smmu.c
1219 F:      drivers/iommu/arm-smmu-v3.c
1220 F:      drivers/iommu/io-pgtable-arm.c
1221 F:      drivers/iommu/io-pgtable-arm-v7s.c
1222
1223 ARM SUB-ARCHITECTURES
1224 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1225 S:      Maintained
1226 F:      arch/arm/mach-*/
1227 F:      arch/arm/plat-*/
1228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1229
1230 ARM/ACTIONS SEMI ARCHITECTURE
1231 M:      Andreas Färber <afaerber@suse.de>
1232 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234 S:      Maintained
1235 N:      owl
1236 F:      arch/arm/mach-actions/
1237 F:      arch/arm/boot/dts/owl-*
1238 F:      arch/arm64/boot/dts/actions/
1239 F:      drivers/clk/actions/
1240 F:      drivers/clocksource/timer-owl*
1241 F:      drivers/dma/owl-dma.c
1242 F:      drivers/i2c/busses/i2c-owl.c
1243 F:      drivers/pinctrl/actions/*
1244 F:      drivers/soc/actions/
1245 F:      include/dt-bindings/power/owl-*
1246 F:      include/linux/soc/actions/
1247 F:      Documentation/devicetree/bindings/arm/actions.txt
1248 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1249 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1250 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1251 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1252 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1253 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1254
1255 ARM/ADS SPHERE MACHINE SUPPORT
1256 M:      Lennert Buytenhek <kernel@wantstofly.org>
1257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1258 S:      Maintained
1259
1260 ARM/AFEB9260 MACHINE SUPPORT
1261 M:      Sergey Lapin <slapin@ossfans.org>
1262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1263 S:      Maintained
1264
1265 ARM/AJECO 1ARM MACHINE SUPPORT
1266 M:      Lennert Buytenhek <kernel@wantstofly.org>
1267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1268 S:      Maintained
1269
1270 ARM/Allwinner SoC Clock Support
1271 M:      Emilio López <emilio@elopez.com.ar>
1272 S:      Maintained
1273 F:      drivers/clk/sunxi/
1274
1275 ARM/Allwinner sunXi SoC support
1276 M:      Maxime Ripard <maxime.ripard@bootlin.com>
1277 M:      Chen-Yu Tsai <wens@csie.org>
1278 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1279 S:      Maintained
1280 N:      sun[x456789]i
1281 N:      sun50i
1282 F:      arch/arm/mach-sunxi/
1283 F:      arch/arm64/boot/dts/allwinner/
1284 F:      drivers/clk/sunxi-ng/
1285 F:      drivers/pinctrl/sunxi/
1286 F:      drivers/soc/sunxi/
1287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1288
1289 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1290 M:      Neil Armstrong <narmstrong@baylibre.com>
1291 M:      Jerome Brunet <jbrunet@baylibre.com>
1292 L:      linux-amlogic@lists.infradead.org
1293 S:      Maintained
1294 F:      drivers/clk/meson/
1295 F:      include/dt-bindings/clock/meson*
1296 F:      include/dt-bindings/clock/gxbb*
1297 F:      Documentation/devicetree/bindings/clock/amlogic*
1298
1299 ARM/Amlogic Meson SoC support
1300 M:      Carlo Caione <carlo@caione.org>
1301 M:      Kevin Hilman <khilman@baylibre.com>
1302 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1303 L:      linux-amlogic@lists.infradead.org
1304 W:      http://linux-meson.com/
1305 S:      Maintained
1306 F:      arch/arm/mach-meson/
1307 F:      arch/arm/boot/dts/meson*
1308 F:      arch/arm64/boot/dts/amlogic/
1309 F:      drivers/pinctrl/meson/
1310 F:      drivers/mmc/host/meson*
1311 N:      meson
1312
1313 ARM/Amlogic Meson SoC Sound Drivers
1314 M:      Jerome Brunet <jbrunet@baylibre.com>
1315 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1316 S:      Maintained
1317 F:      sound/soc/meson/
1318 F:      Documentation/devicetree/bindings/sound/amlogic*
1319
1320 ARM/Annapurna Labs ALPINE ARCHITECTURE
1321 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1322 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324 S:      Maintained
1325 F:      arch/arm/mach-alpine/
1326 F:      arch/arm/boot/dts/alpine*
1327 F:      arch/arm64/boot/dts/al/
1328 F:      drivers/*/*alpine*
1329
1330 ARM/ARTPEC MACHINE SUPPORT
1331 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1332 M:      Lars Persson <lars.persson@axis.com>
1333 S:      Maintained
1334 L:      linux-arm-kernel@axis.com
1335 F:      arch/arm/mach-artpec
1336 F:      arch/arm/boot/dts/artpec6*
1337 F:      drivers/clk/axis
1338 F:      drivers/crypto/axis
1339 F:      drivers/pinctrl/pinctrl-artpec*
1340 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1341
1342 ARM/ASPEED I2C DRIVER
1343 M:      Brendan Higgins <brendanhiggins@google.com>
1344 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1345 R:      Joel Stanley <joel@jms.id.au>
1346 L:      linux-i2c@vger.kernel.org
1347 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1348 S:      Maintained
1349 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1350 F:      drivers/i2c/busses/i2c-aspeed.c
1351 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1352 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1353
1354 ARM/ASPEED MACHINE SUPPORT
1355 M:      Joel Stanley <joel@jms.id.au>
1356 R:      Andrew Jeffery <andrew@aj.id.au>
1357 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1358 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1359 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1360 S:      Supported
1361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1362 F:      arch/arm/mach-aspeed/
1363 F:      arch/arm/boot/dts/aspeed-*
1364 N:      aspeed
1365
1366 ARM/CALXEDA HIGHBANK ARCHITECTURE
1367 M:      Rob Herring <robh@kernel.org>
1368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1369 S:      Maintained
1370 F:      arch/arm/mach-highbank/
1371 F:      arch/arm/boot/dts/highbank.dts
1372 F:      arch/arm/boot/dts/ecx-*.dts*
1373
1374 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1375 M:      Krzysztof Halasa <khalasa@piap.pl>
1376 S:      Maintained
1377 F:      arch/arm/mach-cns3xxx/
1378
1379 ARM/CAVIUM THUNDER NETWORK DRIVER
1380 M:      Sunil Goutham <sgoutham@cavium.com>
1381 M:      Robert Richter <rric@kernel.org>
1382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1383 S:      Supported
1384 F:      drivers/net/ethernet/cavium/thunder/
1385
1386 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1387 M:      Lukasz Majewski <lukma@denx.de>
1388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1389 S:      Maintained
1390 F:      arch/arm/mach-ep93xx/ts72xx.c
1391
1392 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1393 M:      Alexander Shiyan <shc_work@mail.ru>
1394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1395 S:      Odd Fixes
1396 N:      clps711x
1397
1398 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1399 M:      Lennert Buytenhek <kernel@wantstofly.org>
1400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1401 S:      Maintained
1402
1403 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1404 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1405 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1407 S:      Maintained
1408 F:      arch/arm/mach-ep93xx/
1409 F:      arch/arm/mach-ep93xx/include/mach/
1410
1411 ARM/CLKDEV SUPPORT
1412 M:      Russell King <linux@armlinux.org.uk>
1413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1414 S:      Maintained
1415 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1416 F:      drivers/clk/clkdev.c
1417
1418 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1419 M:      Mike Rapoport <mike@compulab.co.il>
1420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1421 S:      Maintained
1422
1423 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1424 M:      Baruch Siach <baruch@tkos.co.il>
1425 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1426 S:      Maintained
1427 F:      arch/arm/boot/dts/cx92755*
1428 N:      digicolor
1429
1430 ARM/CONTEC MICRO9 MACHINE SUPPORT
1431 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1432 S:      Maintained
1433 F:      arch/arm/mach-ep93xx/micro9.c
1434
1435 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1436 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1437 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1438 S:      Maintained
1439 F:      drivers/hwtracing/coresight/*
1440 F:      Documentation/trace/coresight.txt
1441 F:      Documentation/trace/coresight-cpu-debug.txt
1442 F:      Documentation/devicetree/bindings/arm/coresight.txt
1443 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1444 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1445 F:      tools/perf/arch/arm/util/pmu.c
1446 F:      tools/perf/arch/arm/util/auxtrace.c
1447 F:      tools/perf/arch/arm/util/cs-etm.c
1448 F:      tools/perf/arch/arm/util/cs-etm.h
1449 F:      tools/perf/util/cs-etm.*
1450 F:      tools/perf/util/cs-etm-decoder/*
1451
1452 ARM/CORGI MACHINE SUPPORT
1453 M:      Richard Purdie <rpurdie@rpsys.net>
1454 S:      Maintained
1455
1456 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1457 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1458 M:      Linus Walleij <linus.walleij@linaro.org>
1459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1460 T:      git git://github.com/ulli-kroll/linux.git
1461 S:      Maintained
1462 F:      Documentation/devicetree/bindings/arm/gemini.txt
1463 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1464 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1465 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1466 F:      arch/arm/mach-gemini/
1467 F:      drivers/net/ethernet/cortina/
1468 F:      drivers/pinctrl/pinctrl-gemini.c
1469 F:      drivers/rtc/rtc-ftrtc010.c
1470
1471 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1472 M:      Barry Song <baohua@kernel.org>
1473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1475 S:      Maintained
1476 F:      arch/arm/boot/dts/prima2*
1477 F:      arch/arm/mach-prima2/
1478 F:      drivers/clk/sirf/
1479 F:      drivers/clocksource/timer-prima2.c
1480 F:      drivers/clocksource/timer-atlas7.c
1481 N:      [^a-z]sirf
1482 X:      drivers/gnss
1483
1484 ARM/EBSA110 MACHINE SUPPORT
1485 M:      Russell King <linux@armlinux.org.uk>
1486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1487 W:      http://www.armlinux.org.uk/
1488 S:      Maintained
1489 F:      arch/arm/mach-ebsa110/
1490 F:      drivers/net/ethernet/amd/am79c961a.*
1491
1492 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1493 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1494 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1496 S:      Maintained
1497 N:      efm32
1498
1499 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1500 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 S:      Maintained
1503 F:      arch/arm/mach-pxa/ezx.c
1504
1505 ARM/FARADAY FA526 PORT
1506 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1508 S:      Maintained
1509 T:      git git://git.berlios.de/gemini-board
1510 F:      arch/arm/mm/*-fa*
1511
1512 ARM/FOOTBRIDGE ARCHITECTURE
1513 M:      Russell King <linux@armlinux.org.uk>
1514 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1515 W:      http://www.armlinux.org.uk/
1516 S:      Maintained
1517 F:      arch/arm/include/asm/hardware/dec21285.h
1518 F:      arch/arm/mach-footbridge/
1519
1520 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1521 M:      Shawn Guo <shawnguo@kernel.org>
1522 M:      Sascha Hauer <s.hauer@pengutronix.de>
1523 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1524 R:      Fabio Estevam <fabio.estevam@nxp.com>
1525 R:      NXP Linux Team <linux-imx@nxp.com>
1526 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1527 S:      Maintained
1528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1529 F:      arch/arm/mach-imx/
1530 F:      arch/arm/mach-mxs/
1531 F:      arch/arm/boot/dts/imx*
1532 F:      arch/arm/configs/imx*_defconfig
1533 F:      drivers/clk/imx/
1534 F:      drivers/firmware/imx/
1535 F:      drivers/soc/imx/
1536 F:      include/linux/firmware/imx/
1537 F:      include/soc/imx/
1538
1539 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1540 M:      Shawn Guo <shawnguo@kernel.org>
1541 M:      Sascha Hauer <s.hauer@pengutronix.de>
1542 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1543 R:      Stefan Agner <stefan@agner.ch>
1544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1545 S:      Maintained
1546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1547 F:      arch/arm/mach-imx/*vf610*
1548 F:      arch/arm/boot/dts/vf*
1549
1550 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1551 M:      Shawn Guo <shawnguo@kernel.org>
1552 M:      Li Yang <leoyang.li@nxp.com>
1553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1554 S:      Maintained
1555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1556 F:      arch/arm/boot/dts/ls1021a*
1557 F:      arch/arm64/boot/dts/freescale/fsl-*
1558 F:      arch/arm64/boot/dts/freescale/qoriq-*
1559
1560 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1561 M:      Lennert Buytenhek <kernel@wantstofly.org>
1562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1563 S:      Maintained
1564
1565 ARM/GUMSTIX MACHINE SUPPORT
1566 M:      Steve Sakoman <sakoman@gmail.com>
1567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 S:      Maintained
1569
1570 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1571 M:      Philipp Zabel <philipp.zabel@gmail.com>
1572 M:      Paul Parsons <lost.distance@yahoo.com>
1573 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1574 S:      Maintained
1575 F:      arch/arm/mach-pxa/hx4700.c
1576 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1577 F:      sound/soc/pxa/hx4700.c
1578
1579 ARM/HISILICON SOC SUPPORT
1580 M:      Wei Xu <xuwei5@hisilicon.com>
1581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1582 W:      http://www.hisilicon.com
1583 S:      Supported
1584 T:      git git://github.com/hisilicon/linux-hisi.git
1585 F:      arch/arm/mach-hisi/
1586 F:      arch/arm/boot/dts/hi3*
1587 F:      arch/arm/boot/dts/hip*
1588 F:      arch/arm/boot/dts/hisi*
1589 F:      arch/arm64/boot/dts/hisilicon/
1590
1591 ARM/HP JORNADA 7XX MACHINE SUPPORT
1592 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1593 W:      www.jlime.com
1594 S:      Maintained
1595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1596 F:      arch/arm/mach-sa1100/jornada720.c
1597 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1598
1599 ARM/IGEP MACHINE SUPPORT
1600 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1601 M:      Javier Martinez Canillas <javier@dowhile0.org>
1602 L:      linux-omap@vger.kernel.org
1603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1604 S:      Maintained
1605 F:      arch/arm/boot/dts/omap3-igep*
1606
1607 ARM/INCOME PXA270 SUPPORT
1608 M:      Marek Vasut <marek.vasut@gmail.com>
1609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1610 S:      Maintained
1611 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1612
1613 ARM/INTEL IOP13XX ARM ARCHITECTURE
1614 M:      Lennert Buytenhek <kernel@wantstofly.org>
1615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1616 S:      Maintained
1617
1618 ARM/INTEL IOP32X ARM ARCHITECTURE
1619 M:      Lennert Buytenhek <kernel@wantstofly.org>
1620 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1621 S:      Maintained
1622
1623 ARM/INTEL IOP33X ARM ARCHITECTURE
1624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1625 S:      Orphan
1626
1627 ARM/INTEL IQ81342EX MACHINE SUPPORT
1628 M:      Lennert Buytenhek <kernel@wantstofly.org>
1629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1630 S:      Maintained
1631
1632 ARM/INTEL IXDP2850 MACHINE SUPPORT
1633 M:      Lennert Buytenhek <kernel@wantstofly.org>
1634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1635 S:      Maintained
1636
1637 ARM/INTEL IXP4XX ARM ARCHITECTURE
1638 M:      Imre Kaloz <kaloz@openwrt.org>
1639 M:      Krzysztof Halasa <khalasa@piap.pl>
1640 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1641 S:      Maintained
1642 F:      arch/arm/mach-ixp4xx/
1643
1644 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1645 M:      Jonathan Cameron <jic23@cam.ac.uk>
1646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1647 S:      Maintained
1648 F:      arch/arm/mach-pxa/stargate2.c
1649 F:      drivers/pcmcia/pxa2xx_stargate2.c
1650
1651 ARM/INTEL XSC3 (MANZANO) ARM CORE
1652 M:      Lennert Buytenhek <kernel@wantstofly.org>
1653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1654 S:      Maintained
1655
1656 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1657 M:      Lennert Buytenhek <kernel@wantstofly.org>
1658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1659 S:      Maintained
1660
1661 ARM/LG1K ARCHITECTURE
1662 M:      Chanho Min <chanho.min@lge.com>
1663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1664 S:      Maintained
1665 F:      arch/arm64/boot/dts/lg/
1666
1667 ARM/LOGICPD PXA270 MACHINE SUPPORT
1668 M:      Lennert Buytenhek <kernel@wantstofly.org>
1669 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1670 S:      Maintained
1671
1672 ARM/LPC18XX ARCHITECTURE
1673 M:      Vladimir Zapolskiy <vz@mleia.com>
1674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1675 S:      Maintained
1676 F:      arch/arm/boot/dts/lpc43*
1677 F:      drivers/i2c/busses/i2c-lpc2k.c
1678 F:      drivers/memory/pl172.c
1679 F:      drivers/mtd/spi-nor/nxp-spifi.c
1680 F:      drivers/rtc/rtc-lpc24xx.c
1681 N:      lpc18xx
1682
1683 ARM/LPC32XX SOC SUPPORT
1684 M:      Vladimir Zapolskiy <vz@mleia.com>
1685 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1687 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1688 S:      Maintained
1689 F:      arch/arm/boot/dts/lpc32*
1690 F:      arch/arm/mach-lpc32xx/
1691 F:      drivers/i2c/busses/i2c-pnx.c
1692 F:      drivers/net/ethernet/nxp/lpc_eth.c
1693 F:      drivers/usb/host/ohci-nxp.c
1694 F:      drivers/watchdog/pnx4008_wdt.c
1695 N:      lpc32xx
1696
1697 ARM/MAGICIAN MACHINE SUPPORT
1698 M:      Philipp Zabel <philipp.zabel@gmail.com>
1699 S:      Maintained
1700
1701 ARM/Marvell Dove/MV78xx0/Orion SOC support
1702 M:      Jason Cooper <jason@lakedaemon.net>
1703 M:      Andrew Lunn <andrew@lunn.ch>
1704 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1705 M:      Gregory Clement <gregory.clement@bootlin.com>
1706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 S:      Maintained
1708 F:      Documentation/devicetree/bindings/soc/dove/
1709 F:      arch/arm/mach-dove/
1710 F:      arch/arm/mach-mv78xx0/
1711 F:      arch/arm/mach-orion5x/
1712 F:      arch/arm/plat-orion/
1713 F:      arch/arm/boot/dts/dove*
1714 F:      arch/arm/boot/dts/orion5x*
1715
1716 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1717 M:      Jason Cooper <jason@lakedaemon.net>
1718 M:      Andrew Lunn <andrew@lunn.ch>
1719 M:      Gregory Clement <gregory.clement@bootlin.com>
1720 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1721 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1722 S:      Maintained
1723 F:      arch/arm/boot/dts/armada*
1724 F:      arch/arm/boot/dts/kirkwood*
1725 F:      arch/arm/configs/mvebu_*_defconfig
1726 F:      arch/arm/mach-mvebu/
1727 F:      arch/arm64/boot/dts/marvell/armada*
1728 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1729 F:      drivers/cpufreq/mvebu-cpufreq.c
1730 F:      drivers/irqchip/irq-armada-370-xp.c
1731 F:      drivers/irqchip/irq-mvebu-*
1732 F:      drivers/pinctrl/mvebu/
1733 F:      drivers/rtc/rtc-armada38x.c
1734
1735 ARM/Mediatek RTC DRIVER
1736 M:      Eddie Huang <eddie.huang@mediatek.com>
1737 M:      Sean Wang <sean.wang@mediatek.com>
1738 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1739 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1740 S:      Maintained
1741 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1742 F:      drivers/rtc/rtc-mt6397.c
1743 F:      drivers/rtc/rtc-mt7622.c
1744
1745 ARM/Mediatek SoC support
1746 M:      Matthias Brugger <matthias.bgg@gmail.com>
1747 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1748 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1749 W:      https://mtk.bcnfs.org/
1750 C:      irc://chat.freenode.net/linux-mediatek
1751 S:      Maintained
1752 F:      arch/arm/boot/dts/mt6*
1753 F:      arch/arm/boot/dts/mt7*
1754 F:      arch/arm/boot/dts/mt8*
1755 F:      arch/arm/mach-mediatek/
1756 F:      arch/arm64/boot/dts/mediatek/
1757 F:      drivers/soc/mediatek/
1758 N:      mtk
1759 N:      mt[678]
1760 K:      mediatek
1761
1762 ARM/Mediatek USB3 PHY DRIVER
1763 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1764 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1765 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1766 S:      Maintained
1767 F:      drivers/phy/mediatek/
1768 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
1769
1770 ARM/MICREL KS8695 ARCHITECTURE
1771 M:      Greg Ungerer <gerg@uclinux.org>
1772 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1773 F:      arch/arm/mach-ks8695/
1774 S:      Odd Fixes
1775
1776 ARM/Microchip (AT91) SoC support
1777 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
1778 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
1779 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
1780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1781 W:      http://www.linux4sam.org
1782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
1783 S:      Supported
1784 N:      at91
1785 N:      atmel
1786 F:      arch/arm/mach-at91/
1787 F:      include/soc/at91/
1788 F:      arch/arm/boot/dts/at91*.dts
1789 F:      arch/arm/boot/dts/at91*.dtsi
1790 F:      arch/arm/boot/dts/sama*.dts
1791 F:      arch/arm/boot/dts/sama*.dtsi
1792 F:      arch/arm/include/debug/at91.S
1793 F:      drivers/memory/atmel*
1794 F:      drivers/watchdog/sama5d4_wdt.c
1795 X:      drivers/input/touchscreen/atmel_mxt_ts.c
1796 X:      drivers/net/wireless/atmel/
1797
1798 ARM/MIOA701 MACHINE SUPPORT
1799 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1801 F:      arch/arm/mach-pxa/mioa701.c
1802 S:      Maintained
1803
1804 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1805 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1806 S:      Maintained
1807
1808 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
1809 M:      Linus Walleij <linus.walleij@linaro.org>
1810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1811 S:      Maintained
1812 F:      arch/arm/mach-nomadik/
1813 F:      arch/arm/mach-u300/
1814 F:      arch/arm/mach-ux500/
1815 F:      arch/arm/boot/dts/ste-*
1816 F:      drivers/clk/clk-nomadik.c
1817 F:      drivers/clk/clk-u300.c
1818 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1819 F:      drivers/clocksource/timer-u300.c
1820 F:      drivers/dma/coh901318*
1821 F:      drivers/dma/ste_dma40*
1822 F:      drivers/hwspinlock/u8500_hsem.c
1823 F:      drivers/i2c/busses/i2c-nomadik.c
1824 F:      drivers/i2c/busses/i2c-stu300.c
1825 F:      drivers/mfd/ab3100*
1826 F:      drivers/mfd/ab8500*
1827 F:      drivers/mfd/abx500*
1828 F:      drivers/mfd/dbx500*
1829 F:      drivers/mfd/db8500*
1830 F:      drivers/pinctrl/nomadik/
1831 F:      drivers/pinctrl/pinctrl-coh901*
1832 F:      drivers/pinctrl/pinctrl-u300.c
1833 F:      drivers/rtc/rtc-ab3100.c
1834 F:      drivers/rtc/rtc-ab8500.c
1835 F:      drivers/rtc/rtc-coh901331.c
1836 F:      drivers/rtc/rtc-pl031.c
1837 F:      drivers/watchdog/coh901327_wdt.c
1838 F:      Documentation/devicetree/bindings/arm/ste-*
1839 F:      Documentation/devicetree/bindings/arm/ux500/
1840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1841
1842 ARM/NUVOTON NPCM ARCHITECTURE
1843 M:      Avi Fishman <avifishman70@gmail.com>
1844 M:      Tomer Maimon <tmaimon77@gmail.com>
1845 R:      Patrick Venture <venture@google.com>
1846 R:      Nancy Yuen <yuenn@google.com>
1847 R:      Brendan Higgins <brendanhiggins@google.com>
1848 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1849 S:      Supported
1850 F:      arch/arm/mach-npcm/
1851 F:      arch/arm/boot/dts/nuvoton-npcm*
1852 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clks.h
1853 F:      drivers/*/*npcm*
1854 F:      Documentation/devicetree/bindings/*/*npcm*
1855 F:      Documentation/devicetree/bindings/*/*/*npcm*
1856
1857 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1858 M:      Wan ZongShun <mcuos.com@gmail.com>
1859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1860 W:      http://www.mcuos.com
1861 S:      Maintained
1862 F:      arch/arm/mach-w90x900/
1863 F:      drivers/input/keyboard/w90p910_keypad.c
1864 F:      drivers/input/touchscreen/w90p910_ts.c
1865 F:      drivers/watchdog/nuc900_wdt.c
1866 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1867 F:      drivers/mtd/nand/raw/nuc900_nand.c
1868 F:      drivers/rtc/rtc-nuc900.c
1869 F:      drivers/spi/spi-nuc900.c
1870 F:      drivers/usb/host/ehci-w90x900.c
1871 F:      drivers/video/fbdev/nuc900fb.c
1872
1873 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1874 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1875 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1876 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1877 S:      Supported
1878
1879 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1880 M:      Alexander Clouter <alex@digriz.org.uk>
1881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1882 W:      http://www.digriz.org.uk/ts78xx/kernel
1883 S:      Maintained
1884 F:      arch/arm/mach-orion5x/ts78xx-*
1885
1886 ARM/OXNAS platform support
1887 M:      Neil Armstrong <narmstrong@baylibre.com>
1888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1889 L:      linux-oxnas@groups.io (moderated for non-subscribers)
1890 S:      Maintained
1891 F:      arch/arm/mach-oxnas/
1892 F:      arch/arm/boot/dts/ox8*.dts*
1893 N:      oxnas
1894
1895 ARM/PALM TREO SUPPORT
1896 M:      Tomas Cech <sleep_walker@suse.com>
1897 L:      linux-arm-kernel@lists.infradead.org
1898 W:      http://hackndev.com
1899 S:      Maintained
1900 F:      arch/arm/mach-pxa/palmtreo.*
1901
1902 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1903 M:      Marek Vasut <marek.vasut@gmail.com>
1904 L:      linux-arm-kernel@lists.infradead.org
1905 W:      http://hackndev.com
1906 S:      Maintained
1907 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1908 F:      arch/arm/mach-pxa/palmtx.c
1909 F:      arch/arm/mach-pxa/palmt5.*
1910 F:      arch/arm/mach-pxa/include/mach/palmld.h
1911 F:      arch/arm/mach-pxa/palmld.c
1912 F:      arch/arm/mach-pxa/palmte2.*
1913 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1914 F:      arch/arm/mach-pxa/palmtc.c
1915
1916 ARM/PALMZ72 SUPPORT
1917 M:      Sergey Lapin <slapin@ossfans.org>
1918 L:      linux-arm-kernel@lists.infradead.org
1919 W:      http://hackndev.com
1920 S:      Maintained
1921 F:      arch/arm/mach-pxa/palmz72.*
1922
1923 ARM/PLEB SUPPORT
1924 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1925 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1926 S:      Maintained
1927
1928 ARM/PT DIGITAL BOARD PORT
1929 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1931 W:      http://www.armlinux.org.uk/
1932 S:      Maintained
1933
1934 ARM/QUALCOMM SUPPORT
1935 M:      Andy Gross <andy.gross@linaro.org>
1936 M:      David Brown <david.brown@linaro.org>
1937 L:      linux-arm-msm@vger.kernel.org
1938 S:      Maintained
1939 F:      Documentation/devicetree/bindings/soc/qcom/
1940 F:      arch/arm/boot/dts/qcom-*.dts
1941 F:      arch/arm/boot/dts/qcom-*.dtsi
1942 F:      arch/arm/mach-qcom/
1943 F:      arch/arm64/boot/dts/qcom/*
1944 F:      drivers/i2c/busses/i2c-qup.c
1945 F:      drivers/clk/qcom/
1946 F:      drivers/dma/qcom/
1947 F:      drivers/soc/qcom/
1948 F:      drivers/spi/spi-qup.c
1949 F:      drivers/tty/serial/msm_serial.c
1950 F:      drivers/*/pm8???-*
1951 F:      drivers/mfd/ssbi.c
1952 F:      drivers/firmware/qcom_scm*
1953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1954
1955 ARM/RADISYS ENP2611 MACHINE SUPPORT
1956 M:      Lennert Buytenhek <kernel@wantstofly.org>
1957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1958 S:      Maintained
1959
1960 ARM/REALTEK ARCHITECTURE
1961 M:      Andreas Färber <afaerber@suse.de>
1962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1963 S:      Maintained
1964 F:      arch/arm64/boot/dts/realtek/
1965 F:      Documentation/devicetree/bindings/arm/realtek.txt
1966
1967 ARM/RENESAS ARM64 ARCHITECTURE
1968 M:      Simon Horman <horms@verge.net.au>
1969 M:      Magnus Damm <magnus.damm@gmail.com>
1970 L:      linux-renesas-soc@vger.kernel.org
1971 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1973 S:      Supported
1974 F:      arch/arm64/boot/dts/renesas/
1975 F:      Documentation/devicetree/bindings/arm/shmobile.txt
1976 F:      drivers/soc/renesas/
1977 F:      include/linux/soc/renesas/
1978
1979 ARM/RISCPC ARCHITECTURE
1980 M:      Russell King <linux@armlinux.org.uk>
1981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1982 W:      http://www.armlinux.org.uk/
1983 S:      Maintained
1984 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1985 F:      arch/arm/include/asm/hardware/ioc.h
1986 F:      arch/arm/include/asm/hardware/iomd.h
1987 F:      arch/arm/include/asm/hardware/memc.h
1988 F:      arch/arm/mach-rpc/
1989 F:      drivers/net/ethernet/8390/etherh.c
1990 F:      drivers/net/ethernet/i825xx/ether1*
1991 F:      drivers/net/ethernet/seeq/ether3*
1992 F:      drivers/scsi/arm/
1993
1994 ARM/Rockchip SoC support
1995 M:      Heiko Stuebner <heiko@sntech.de>
1996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1997 L:      linux-rockchip@lists.infradead.org
1998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1999 S:      Maintained
2000 F:      arch/arm/boot/dts/rk3*
2001 F:      arch/arm/boot/dts/rv1108*
2002 F:      arch/arm/mach-rockchip/
2003 F:      drivers/clk/rockchip/
2004 F:      drivers/i2c/busses/i2c-rk3x.c
2005 F:      drivers/*/*rockchip*
2006 F:      drivers/*/*/*rockchip*
2007 F:      sound/soc/rockchip/
2008 N:      rockchip
2009
2010 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2011 M:      Kukjin Kim <kgene@kernel.org>
2012 M:      Krzysztof Kozlowski <krzk@kernel.org>
2013 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2014 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2015 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2016 S:      Maintained
2017 F:      arch/arm/boot/dts/s3c*
2018 F:      arch/arm/boot/dts/s5p*
2019 F:      arch/arm/boot/dts/exynos*
2020 F:      arch/arm64/boot/dts/exynos/
2021 F:      arch/arm/plat-samsung/
2022 F:      arch/arm/mach-s3c24*/
2023 F:      arch/arm/mach-s3c64xx/
2024 F:      arch/arm/mach-s5p*/
2025 F:      arch/arm/mach-exynos*/
2026 F:      drivers/*/*s3c24*
2027 F:      drivers/*/*/*s3c24*
2028 F:      drivers/*/*s3c64xx*
2029 F:      drivers/*/*s5pv210*
2030 F:      drivers/memory/samsung/*
2031 F:      drivers/soc/samsung/*
2032 F:      Documentation/arm/Samsung/
2033 F:      Documentation/devicetree/bindings/arm/samsung/
2034 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
2035 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
2036 N:      exynos
2037
2038 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2039 M:      Kyungmin Park <kyungmin.park@samsung.com>
2040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2041 S:      Maintained
2042 F:      arch/arm/mach-s5pv210/
2043
2044 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2045 M:      Kyungmin Park <kyungmin.park@samsung.com>
2046 M:      Kamil Debski <kamil@wypas.org>
2047 M:      Andrzej Hajda <a.hajda@samsung.com>
2048 L:      linux-arm-kernel@lists.infradead.org
2049 L:      linux-media@vger.kernel.org
2050 S:      Maintained
2051 F:      drivers/media/platform/s5p-g2d/
2052
2053 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2054 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2055 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2056 L:      linux-media@vger.kernel.org
2057 S:      Maintained
2058 F:      drivers/media/platform/s5p-cec/
2059 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2060
2061 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2062 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
2063 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2064 L:      linux-arm-kernel@lists.infradead.org
2065 L:      linux-media@vger.kernel.org
2066 S:      Maintained
2067 F:      drivers/media/platform/s5p-jpeg/
2068
2069 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2070 M:      Kyungmin Park <kyungmin.park@samsung.com>
2071 M:      Kamil Debski <kamil@wypas.org>
2072 M:      Jeongtae Park <jtp.park@samsung.com>
2073 M:      Andrzej Hajda <a.hajda@samsung.com>
2074 L:      linux-arm-kernel@lists.infradead.org
2075 L:      linux-media@vger.kernel.org
2076 S:      Maintained
2077 F:      drivers/media/platform/s5p-mfc/
2078
2079 ARM/SHMOBILE ARM ARCHITECTURE
2080 M:      Simon Horman <horms@verge.net.au>
2081 M:      Magnus Damm <magnus.damm@gmail.com>
2082 L:      linux-renesas-soc@vger.kernel.org
2083 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
2085 S:      Supported
2086 F:      arch/arm/boot/dts/emev2*
2087 F:      arch/arm/boot/dts/r7s*
2088 F:      arch/arm/boot/dts/r8a*
2089 F:      arch/arm/boot/dts/r9a*
2090 F:      arch/arm/boot/dts/sh*
2091 F:      arch/arm/configs/shmobile_defconfig
2092 F:      arch/arm/include/debug/renesas-scif.S
2093 F:      arch/arm/mach-shmobile/
2094 F:      Documentation/devicetree/bindings/arm/shmobile.txt
2095 F:      drivers/soc/renesas/
2096 F:      include/linux/soc/renesas/
2097
2098 ARM/SOCFPGA ARCHITECTURE
2099 M:      Dinh Nguyen <dinguyen@kernel.org>
2100 S:      Maintained
2101 F:      arch/arm/mach-socfpga/
2102 F:      arch/arm/boot/dts/socfpga*
2103 F:      arch/arm/configs/socfpga_defconfig
2104 F:      arch/arm64/boot/dts/altera/
2105 W:      http://www.rocketboards.org
2106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2107
2108 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2109 M:      Dinh Nguyen <dinguyen@kernel.org>
2110 S:      Maintained
2111 F:      drivers/clk/socfpga/
2112
2113 ARM/SOCFPGA EDAC SUPPORT
2114 M:      Thor Thayer <thor.thayer@linux.intel.com>
2115 S:      Maintained
2116 F:      drivers/edac/altera_edac.
2117
2118 ARM/SPREADTRUM SoC SUPPORT
2119 M:      Orson Zhai <orsonzhai@gmail.com>
2120 M:      Baolin Wang <baolin.wang@linaro.org>
2121 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2122 S:      Maintained
2123 F:      arch/arm64/boot/dts/sprd
2124 N:      sprd
2125
2126 ARM/STI ARCHITECTURE
2127 M:      Patrice Chotard <patrice.chotard@st.com>
2128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2129 W:      http://www.stlinux.com
2130 S:      Maintained
2131 F:      arch/arm/mach-sti/
2132 F:      arch/arm/boot/dts/sti*
2133 F:      drivers/char/hw_random/st-rng.c
2134 F:      drivers/clocksource/arm_global_timer.c
2135 F:      drivers/clocksource/clksrc_st_lpc.c
2136 F:      drivers/cpufreq/sti-cpufreq.c
2137 F:      drivers/dma/st_fdma*
2138 F:      drivers/i2c/busses/i2c-st.c
2139 F:      drivers/media/rc/st_rc.c
2140 F:      drivers/media/platform/sti/c8sectpfe/
2141 F:      drivers/mmc/host/sdhci-st.c
2142 F:      drivers/phy/st/phy-miphy28lp.c
2143 F:      drivers/phy/st/phy-stih407-usb.c
2144 F:      drivers/pinctrl/pinctrl-st.c
2145 F:      drivers/remoteproc/st_remoteproc.c
2146 F:      drivers/remoteproc/st_slim_rproc.c
2147 F:      drivers/reset/sti/
2148 F:      drivers/rtc/rtc-st-lpc.c
2149 F:      drivers/tty/serial/st-asc.c
2150 F:      drivers/usb/dwc3/dwc3-st.c
2151 F:      drivers/usb/host/ehci-st.c
2152 F:      drivers/usb/host/ohci-st.c
2153 F:      drivers/watchdog/st_lpc_wdt.c
2154 F:      drivers/ata/ahci_st.c
2155 F:      include/linux/remoteproc/st_slim_rproc.h
2156
2157 ARM/STM32 ARCHITECTURE
2158 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2159 M:      Alexandre Torgue <alexandre.torgue@st.com>
2160 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2162 S:      Maintained
2163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2164 N:      stm32
2165 N:      stm
2166 F:      arch/arm/boot/dts/stm32*
2167 F:      arch/arm/mach-stm32/
2168 F:      drivers/clocksource/armv7m_systick.c
2169
2170 ARM/Synaptics SoC support
2171 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2172 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2174 S:      Maintained
2175 F:      arch/arm/mach-berlin/
2176 F:      arch/arm/boot/dts/berlin*
2177 F:      arch/arm64/boot/dts/synaptics/
2178
2179 ARM/TANGO ARCHITECTURE
2180 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2181 M:      Mans Rullgard <mans@mansr.com>
2182 L:      linux-arm-kernel@lists.infradead.org
2183 S:      Odd Fixes
2184 N:      tango
2185
2186 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2187 M:      Lennert Buytenhek <kernel@wantstofly.org>
2188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2189 S:      Maintained
2190
2191 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2192 M:      Hans Verkuil <hans.verkuil@cisco.com>
2193 L:      linux-tegra@vger.kernel.org
2194 L:      linux-media@vger.kernel.org
2195 S:      Maintained
2196 F:      drivers/media/platform/tegra-cec/
2197 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2198
2199 ARM/TETON BGA MACHINE SUPPORT
2200 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2202 S:      Maintained
2203
2204 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2205 M:      Santosh Shilimkar <ssantosh@kernel.org>
2206 L:      linux-kernel@vger.kernel.org
2207 S:      Maintained
2208 F:      drivers/memory/*emif*
2209
2210 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2211 M:      Tero Kristo <t-kristo@ti.com>
2212 M:      Nishanth Menon <nm@ti.com>
2213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2214 S:      Supported
2215 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2216 F:      arch/arm64/boot/dts/ti/Makefile
2217 F:      arch/arm64/boot/dts/ti/k3-*
2218
2219 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2220 M:      Santosh Shilimkar <ssantosh@kernel.org>
2221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2222 S:      Maintained
2223 F:      arch/arm/mach-keystone/
2224 F:      arch/arm/boot/dts/keystone-*
2225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2226
2227 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2228 M:      Santosh Shilimkar <ssantosh@kernel.org>
2229 L:      linux-kernel@vger.kernel.org
2230 S:      Maintained
2231 F:      drivers/clk/keystone/
2232
2233 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2234 M:      Santosh Shilimkar <ssantosh@kernel.org>
2235 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2236 L:      linux-kernel@vger.kernel.org
2237 S:      Maintained
2238 F:      drivers/clocksource/timer-keystone.c
2239
2240 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2241 M:      Santosh Shilimkar <ssantosh@kernel.org>
2242 L:      linux-kernel@vger.kernel.org
2243 S:      Maintained
2244 F:      drivers/power/reset/keystone-reset.c
2245
2246 ARM/THECUS N2100 MACHINE SUPPORT
2247 M:      Lennert Buytenhek <kernel@wantstofly.org>
2248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2249 S:      Maintained
2250
2251 ARM/TOSA MACHINE SUPPORT
2252 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2253 M:      Dirk Opfer <dirk@opfer-online.de>
2254 S:      Maintained
2255
2256 ARM/UNIPHIER ARCHITECTURE
2257 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2258 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2260 S:      Maintained
2261 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2262 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2263 F:      arch/arm/boot/dts/uniphier*
2264 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2265 F:      arch/arm/mach-uniphier/
2266 F:      arch/arm/mm/cache-uniphier.c
2267 F:      arch/arm64/boot/dts/socionext/uniphier*
2268 F:      drivers/bus/uniphier-system-bus.c
2269 F:      drivers/clk/uniphier/
2270 F:      drivers/gpio/gpio-uniphier.c
2271 F:      drivers/i2c/busses/i2c-uniphier*
2272 F:      drivers/irqchip/irq-uniphier-aidet.c
2273 F:      drivers/mmc/host/uniphier-sd.c
2274 F:      drivers/pinctrl/uniphier/
2275 F:      drivers/reset/reset-uniphier.c
2276 F:      drivers/tty/serial/8250/8250_uniphier.c
2277 N:      uniphier
2278
2279 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2280 M:      Ulf Hansson <ulf.hansson@linaro.org>
2281 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2282 T:      git git://git.linaro.org/people/ulfh/clk.git
2283 S:      Maintained
2284 F:      drivers/clk/ux500/
2285
2286 ARM/VERSATILE EXPRESS PLATFORM
2287 M:      Liviu Dudau <liviu.dudau@arm.com>
2288 M:      Sudeep Holla <sudeep.holla@arm.com>
2289 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2291 S:      Maintained
2292 F:      arch/arm/boot/dts/vexpress*
2293 F:      arch/arm64/boot/dts/arm/
2294 F:      arch/arm/mach-vexpress/
2295 F:      */*/vexpress*
2296 F:      */*/*/vexpress*
2297 F:      drivers/clk/versatile/clk-vexpress-osc.c
2298 F:      drivers/clocksource/timer-versatile.c
2299 N:      mps2
2300
2301 ARM/VFP SUPPORT
2302 M:      Russell King <linux@armlinux.org.uk>
2303 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2304 W:      http://www.armlinux.org.uk/
2305 S:      Maintained
2306 F:      arch/arm/vfp/
2307
2308 ARM/VOIPAC PXA270 SUPPORT
2309 M:      Marek Vasut <marek.vasut@gmail.com>
2310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2311 S:      Maintained
2312 F:      arch/arm/mach-pxa/vpac270.c
2313 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2314
2315 ARM/VT8500 ARM ARCHITECTURE
2316 M:      Tony Prisk <linux@prisktech.co.nz>
2317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2318 S:      Maintained
2319 F:      arch/arm/mach-vt8500/
2320 F:      drivers/clocksource/timer-vt8500.c
2321 F:      drivers/i2c/busses/i2c-wmt.c
2322 F:      drivers/mmc/host/wmt-sdmmc.c
2323 F:      drivers/pwm/pwm-vt8500.c
2324 F:      drivers/rtc/rtc-vt8500.c
2325 F:      drivers/tty/serial/vt8500_serial.c
2326 F:      drivers/usb/host/ehci-platform.c
2327 F:      drivers/usb/host/uhci-platform.c
2328 F:      drivers/video/fbdev/vt8500lcdfb.*
2329 F:      drivers/video/fbdev/wm8505fb*
2330 F:      drivers/video/fbdev/wmt_ge_rops.*
2331
2332 ARM/ZIPIT Z2 SUPPORT
2333 M:      Marek Vasut <marek.vasut@gmail.com>
2334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2335 S:      Maintained
2336 F:      arch/arm/mach-pxa/z2.c
2337 F:      arch/arm/mach-pxa/include/mach/z2.h
2338
2339 ARM/ZTE ARCHITECTURE
2340 M:      Jun Nie <jun.nie@linaro.org>
2341 M:      Shawn Guo <shawnguo@kernel.org>
2342 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2343 S:      Maintained
2344 F:      arch/arm/boot/dts/zx2967*
2345 F:      arch/arm/mach-zx/
2346 F:      arch/arm64/boot/dts/zte/
2347 F:      drivers/clk/zte/
2348 F:      drivers/dma/zx_dma.c
2349 F:      drivers/gpio/gpio-zx.c
2350 F:      drivers/i2c/busses/i2c-zx2967.c
2351 F:      drivers/mmc/host/dw_mmc-zx.*
2352 F:      drivers/pinctrl/zte/
2353 F:      drivers/soc/zte/
2354 F:      drivers/thermal/zx2967_thermal.c
2355 F:      drivers/watchdog/zx2967_wdt.c
2356 F:      Documentation/devicetree/bindings/arm/zte.yaml
2357 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2358 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2359 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2360 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2361 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2362 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2363 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2364 F:      Documentation/devicetree/bindings/soc/zte/
2365 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2366 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2367 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2368 F:      include/dt-bindings/clock/zx2967*.h
2369 F:      include/dt-bindings/soc/zte,*.h
2370 F:      sound/soc/codecs/zx_aud96p22.c
2371 F:      sound/soc/zte/
2372
2373 ARM/ZYNQ ARCHITECTURE
2374 M:      Michal Simek <michal.simek@xilinx.com>
2375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2376 W:      http://wiki.xilinx.com
2377 T:      git https://github.com/Xilinx/linux-xlnx.git
2378 S:      Supported
2379 F:      arch/arm/mach-zynq/
2380 F:      drivers/cpuidle/cpuidle-zynq.c
2381 F:      drivers/block/xsysace.c
2382 N:      zynq
2383 N:      xilinx
2384 F:      drivers/clocksource/timer-cadence-ttc.c
2385 F:      drivers/i2c/busses/i2c-cadence.c
2386 F:      drivers/mmc/host/sdhci-of-arasan.c
2387 F:      drivers/edac/synopsys_edac.c
2388 F:      drivers/i2c/busses/i2c-xiic.c
2389
2390 ARM64 PORT (AARCH64 ARCHITECTURE)
2391 M:      Catalin Marinas <catalin.marinas@arm.com>
2392 M:      Will Deacon <will.deacon@arm.com>
2393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2395 S:      Maintained
2396 F:      arch/arm64/
2397 X:      arch/arm64/boot/dts/
2398 F:      Documentation/arm64/
2399
2400 AS3645A LED FLASH CONTROLLER DRIVER
2401 M:      Sakari Ailus <sakari.ailus@iki.fi>
2402 L:      linux-leds@vger.kernel.org
2403 S:      Maintained
2404 F:      drivers/leds/leds-as3645a.c
2405
2406 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2407 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2408 L:      linux-media@vger.kernel.org
2409 T:      git git://linuxtv.org/media_tree.git
2410 S:      Maintained
2411 F:      drivers/media/i2c/ak7375.c
2412 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2413
2414 ASAHI KASEI AK8974 DRIVER
2415 M:      Linus Walleij <linus.walleij@linaro.org>
2416 L:      linux-iio@vger.kernel.org
2417 W:      http://www.akm.com/
2418 S:      Supported
2419 F:      drivers/iio/magnetometer/ak8974.c
2420
2421 ASC7621 HARDWARE MONITOR DRIVER
2422 M:      George Joseph <george.joseph@fairview5.com>
2423 L:      linux-hwmon@vger.kernel.org
2424 S:      Maintained
2425 F:      Documentation/hwmon/asc7621
2426 F:      drivers/hwmon/asc7621.c
2427
2428 ASPEED VIDEO ENGINE DRIVER
2429 M:      Eddie James <eajames@linux.ibm.com>
2430 L:      linux-media@vger.kernel.org
2431 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2432 S:      Maintained
2433 F:      drivers/media/platform/aspeed-video.c
2434 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2435
2436 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2437 M:      Corentin Chary <corentin.chary@gmail.com>
2438 L:      acpi4asus-user@lists.sourceforge.net
2439 L:      platform-driver-x86@vger.kernel.org
2440 W:      http://acpi4asus.sf.net
2441 S:      Maintained
2442 F:      drivers/platform/x86/asus*.c
2443 F:      drivers/platform/x86/eeepc*.c
2444
2445 ASUS WIRELESS RADIO CONTROL DRIVER
2446 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2447 L:      platform-driver-x86@vger.kernel.org
2448 S:      Maintained
2449 F:      drivers/platform/x86/asus-wireless.c
2450
2451 ASYMMETRIC KEYS
2452 M:      David Howells <dhowells@redhat.com>
2453 L:      keyrings@vger.kernel.org
2454 S:      Maintained
2455 F:      Documentation/crypto/asymmetric-keys.txt
2456 F:      include/linux/verification.h
2457 F:      include/crypto/public_key.h
2458 F:      include/crypto/pkcs7.h
2459 F:      crypto/asymmetric_keys/
2460
2461 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2462 R:      Dan Williams <dan.j.williams@intel.com>
2463 W:      http://sourceforge.net/projects/xscaleiop
2464 S:      Odd fixes
2465 F:      Documentation/crypto/async-tx-api.txt
2466 F:      crypto/async_tx/
2467 F:      drivers/dma/
2468 F:      include/linux/dmaengine.h
2469 F:      include/linux/async_tx.h
2470
2471 AT24 EEPROM DRIVER
2472 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2473 L:      linux-i2c@vger.kernel.org
2474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2475 S:      Maintained
2476 F:      Documentation/devicetree/bindings/eeprom/at24.txt
2477 F:      drivers/misc/eeprom/at24.c
2478 F:      include/linux/platform_data/at24.h
2479
2480 ATA OVER ETHERNET (AOE) DRIVER
2481 M:      "Ed L. Cashin" <ed.cashin@acm.org>
2482 W:      http://www.openaoe.org/
2483 S:      Supported
2484 F:      Documentation/aoe/
2485 F:      drivers/block/aoe/
2486
2487 ATHEROS 71XX/9XXX GPIO DRIVER
2488 M:      Alban Bedel <albeu@free.fr>
2489 W:      https://github.com/AlbanBedel/linux
2490 T:      git git://github.com/AlbanBedel/linux
2491 S:      Maintained
2492 F:      drivers/gpio/gpio-ath79.c
2493 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2494
2495 ATHEROS 71XX/9XXX USB PHY DRIVER
2496 M:      Alban Bedel <albeu@free.fr>
2497 W:      https://github.com/AlbanBedel/linux
2498 T:      git git://github.com/AlbanBedel/linux
2499 S:      Maintained
2500 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2501 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2502
2503 ATHEROS ATH GENERIC UTILITIES
2504 M:      Kalle Valo <kvalo@codeaurora.org>
2505 L:      linux-wireless@vger.kernel.org
2506 S:      Supported
2507 F:      drivers/net/wireless/ath/*
2508
2509 ATHEROS ATH5K WIRELESS DRIVER
2510 M:      Jiri Slaby <jirislaby@gmail.com>
2511 M:      Nick Kossifidis <mickflemm@gmail.com>
2512 M:      Luis Chamberlain <mcgrof@kernel.org>
2513 L:      linux-wireless@vger.kernel.org
2514 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2515 S:      Maintained
2516 F:      drivers/net/wireless/ath/ath5k/
2517
2518 ATHEROS ATH6KL WIRELESS DRIVER
2519 M:      Kalle Valo <kvalo@codeaurora.org>
2520 L:      linux-wireless@vger.kernel.org
2521 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2523 S:      Supported
2524 F:      drivers/net/wireless/ath/ath6kl/
2525
2526 ATI_REMOTE2 DRIVER
2527 M:      Ville Syrjala <syrjala@sci.fi>
2528 S:      Maintained
2529 F:      drivers/input/misc/ati_remote2.c
2530
2531 ATK0110 HWMON DRIVER
2532 M:      Luca Tettamanti <kronos.it@gmail.com>
2533 L:      linux-hwmon@vger.kernel.org
2534 S:      Maintained
2535 F:      drivers/hwmon/asus_atk0110.c
2536
2537 ATLX ETHERNET DRIVERS
2538 M:      Jay Cliburn <jcliburn@gmail.com>
2539 M:      Chris Snook <chris.snook@gmail.com>
2540 L:      netdev@vger.kernel.org
2541 W:      http://sourceforge.net/projects/atl1
2542 W:      http://atl1.sourceforge.net
2543 S:      Maintained
2544 F:      drivers/net/ethernet/atheros/
2545
2546 ATM
2547 M:      Chas Williams <3chas3@gmail.com>
2548 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2549 L:      netdev@vger.kernel.org
2550 W:      http://linux-atm.sourceforge.net
2551 S:      Maintained
2552 F:      drivers/atm/
2553 F:      include/linux/atm*
2554 F:      include/uapi/linux/atm*
2555
2556 ATMEL MACB ETHERNET DRIVER
2557 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2558 S:      Supported
2559 F:      drivers/net/ethernet/cadence/
2560
2561 ATMEL MAXTOUCH DRIVER
2562 M:      Nick Dyer <nick@shmanahar.org>
2563 T:      git git://github.com/ndyer/linux.git
2564 S:      Maintained
2565 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2566 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2567
2568 ATMEL WIRELESS DRIVER
2569 M:      Simon Kelley <simon@thekelleys.org.uk>
2570 L:      linux-wireless@vger.kernel.org
2571 W:      http://www.thekelleys.org.uk/atmel
2572 W:      http://atmelwlandriver.sourceforge.net/
2573 S:      Maintained
2574 F:      drivers/net/wireless/atmel/atmel*
2575
2576 ATOMIC INFRASTRUCTURE
2577 M:      Will Deacon <will.deacon@arm.com>
2578 M:      Peter Zijlstra <peterz@infradead.org>
2579 R:      Boqun Feng <boqun.feng@gmail.com>
2580 L:      linux-kernel@vger.kernel.org
2581 S:      Maintained
2582 F:      arch/*/include/asm/atomic*.h
2583 F:      include/*/atomic*.h
2584
2585 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2586 M:      Bradley Grove <linuxdrivers@attotech.com>
2587 L:      linux-scsi@vger.kernel.org
2588 W:      http://www.attotech.com
2589 S:      Supported
2590 F:      drivers/scsi/esas2r
2591
2592 ATUSB IEEE 802.15.4 RADIO DRIVER
2593 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2594 L:      linux-wpan@vger.kernel.org
2595 S:      Maintained
2596 F:      drivers/net/ieee802154/atusb.c
2597 F:      drivers/net/ieee802154/atusb.h
2598 F:      drivers/net/ieee802154/at86rf230.h
2599
2600 AUDIT SUBSYSTEM
2601 M:      Paul Moore <paul@paul-moore.com>
2602 M:      Eric Paris <eparis@redhat.com>
2603 L:      linux-audit@redhat.com (moderated for non-subscribers)
2604 W:      https://github.com/linux-audit
2605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2606 S:      Supported
2607 F:      include/linux/audit.h
2608 F:      include/uapi/linux/audit.h
2609 F:      kernel/audit*
2610
2611 AUXILIARY DISPLAY DRIVERS
2612 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2613 S:      Maintained
2614 F:      drivers/auxdisplay/
2615 F:      include/linux/cfag12864b.h
2616
2617 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2618 M:      Andreas Klinger <ak@it-klinger.de>
2619 L:      linux-iio@vger.kernel.org
2620 S:      Maintained
2621 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.txt
2622 F:      drivers/iio/adc/hx711.c
2623
2624 AX.25 NETWORK LAYER
2625 M:      Ralf Baechle <ralf@linux-mips.org>
2626 L:      linux-hams@vger.kernel.org
2627 W:      http://www.linux-ax25.org/
2628 S:      Maintained
2629 F:      include/uapi/linux/ax25.h
2630 F:      include/net/ax25.h
2631 F:      net/ax25/
2632
2633 AXENTIA ARM DEVICES
2634 M:      Peter Rosin <peda@axentia.se>
2635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2636 S:      Maintained
2637 F:      Documentation/devicetree/bindings/arm/axentia.txt
2638 F:      arch/arm/boot/dts/at91-linea.dtsi
2639 F:      arch/arm/boot/dts/at91-natte.dtsi
2640 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2641 F:      arch/arm/boot/dts/at91-tse850-3.dts
2642
2643 AXENTIA ASOC DRIVERS
2644 M:      Peter Rosin <peda@axentia.se>
2645 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2646 S:      Maintained
2647 F:      Documentation/devicetree/bindings/sound/axentia,*
2648 F:      sound/soc/atmel/tse850-pcm5142.c
2649
2650 AXXIA I2C CONTROLLER
2651 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
2652 L:      linux-i2c@vger.kernel.org
2653 S:      Maintained
2654 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2655 F:      drivers/i2c/busses/i2c-axxia.c
2656
2657 AZ6007 DVB DRIVER
2658 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2659 L:      linux-media@vger.kernel.org
2660 W:      https://linuxtv.org
2661 T:      git git://linuxtv.org/media_tree.git
2662 S:      Maintained
2663 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2664
2665 AZTECH FM RADIO RECEIVER DRIVER
2666 M:      Hans Verkuil <hverkuil@xs4all.nl>
2667 L:      linux-media@vger.kernel.org
2668 T:      git git://linuxtv.org/media_tree.git
2669 W:      https://linuxtv.org
2670 S:      Maintained
2671 F:      drivers/media/radio/radio-aztech*
2672
2673 B43 WIRELESS DRIVER
2674 L:      linux-wireless@vger.kernel.org
2675 L:      b43-dev@lists.infradead.org
2676 W:      http://wireless.kernel.org/en/users/Drivers/b43
2677 S:      Odd Fixes
2678 F:      drivers/net/wireless/broadcom/b43/
2679
2680 B43LEGACY WIRELESS DRIVER
2681 M:      Larry Finger <Larry.Finger@lwfinger.net>
2682 L:      linux-wireless@vger.kernel.org
2683 L:      b43-dev@lists.infradead.org
2684 W:      http://wireless.kernel.org/en/users/Drivers/b43
2685 S:      Maintained
2686 F:      drivers/net/wireless/broadcom/b43legacy/
2687
2688 BACKLIGHT CLASS/SUBSYSTEM
2689 M:      Lee Jones <lee.jones@linaro.org>
2690 M:      Daniel Thompson <daniel.thompson@linaro.org>
2691 M:      Jingoo Han <jingoohan1@gmail.com>
2692 L:      dri-devel@lists.freedesktop.org
2693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2694 S:      Maintained
2695 F:      drivers/video/backlight/
2696 F:      include/linux/backlight.h
2697 F:      include/linux/pwm_backlight.h
2698 F:      Documentation/devicetree/bindings/leds/backlight
2699
2700 BATMAN ADVANCED
2701 M:      Marek Lindner <mareklindner@neomailbox.ch>
2702 M:      Simon Wunderlich <sw@simonwunderlich.de>
2703 M:      Antonio Quartulli <a@unstable.cc>
2704 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2705 W:      https://www.open-mesh.org/
2706 Q:      https://patchwork.open-mesh.org/project/batman/list/
2707 S:      Maintained
2708 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2709 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2710 F:      Documentation/networking/batman-adv.rst
2711 F:      include/uapi/linux/batadv_packet.h
2712 F:      include/uapi/linux/batman_adv.h
2713 F:      net/batman-adv/
2714
2715 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2716 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2717 L:      linux-hams@vger.kernel.org
2718 W:      http://www.baycom.org/~tom/ham/ham.html
2719 S:      Maintained
2720 F:      drivers/net/hamradio/baycom*
2721
2722 BCACHE (BLOCK LAYER CACHE)
2723 M:      Coly Li <colyli@suse.de>
2724 M:      Kent Overstreet <kent.overstreet@gmail.com>
2725 L:      linux-bcache@vger.kernel.org
2726 W:      http://bcache.evilpiepirate.org
2727 C:      irc://irc.oftc.net/bcache
2728 S:      Maintained
2729 F:      drivers/md/bcache/
2730
2731 BDISP ST MEDIA DRIVER
2732 M:      Fabien Dessenne <fabien.dessenne@st.com>
2733 L:      linux-media@vger.kernel.org
2734 T:      git git://linuxtv.org/media_tree.git
2735 W:      https://linuxtv.org
2736 S:      Supported
2737 F:      drivers/media/platform/sti/bdisp
2738
2739 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2740 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2741 L:      netdev@vger.kernel.org
2742 S:      Maintained
2743 F:      drivers/net/ethernet/ec_bhf.c
2744
2745 BEFS FILE SYSTEM
2746 M:      Luis de Bethencourt <luisbg@kernel.org>
2747 M:      Salah Triki <salah.triki@gmail.com>
2748 S:      Maintained
2749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2750 F:      Documentation/filesystems/befs.txt
2751 F:      fs/befs/
2752
2753 BFQ I/O SCHEDULER
2754 M:      Paolo Valente <paolo.valente@linaro.org>
2755 M:      Jens Axboe <axboe@kernel.dk>
2756 L:      linux-block@vger.kernel.org
2757 S:      Maintained
2758 F:      block/bfq-*
2759 F:      Documentation/block/bfq-iosched.txt
2760
2761 BFS FILE SYSTEM
2762 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2763 S:      Maintained
2764 F:      Documentation/filesystems/bfs.txt
2765 F:      fs/bfs/
2766 F:      include/uapi/linux/bfs_fs.h
2767
2768 BLINKM RGB LED DRIVER
2769 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2770 S:      Maintained
2771 F:      drivers/leds/leds-blinkm.c
2772
2773 BLOCK LAYER
2774 M:      Jens Axboe <axboe@kernel.dk>
2775 L:      linux-block@vger.kernel.org
2776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2777 S:      Maintained
2778 F:      block/
2779 F:      drivers/block/
2780 F:      kernel/trace/blktrace.c
2781 F:      lib/sbitmap.c
2782
2783 BLOCK2MTD DRIVER
2784 M:      Joern Engel <joern@lazybastard.org>
2785 L:      linux-mtd@lists.infradead.org
2786 S:      Maintained
2787 F:      drivers/mtd/devices/block2mtd.c
2788
2789 BLUETOOTH DRIVERS
2790 M:      Marcel Holtmann <marcel@holtmann.org>
2791 M:      Johan Hedberg <johan.hedberg@gmail.com>
2792 L:      linux-bluetooth@vger.kernel.org
2793 W:      http://www.bluez.org/
2794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2796 S:      Maintained
2797 F:      drivers/bluetooth/
2798
2799 BLUETOOTH SUBSYSTEM
2800 M:      Marcel Holtmann <marcel@holtmann.org>
2801 M:      Johan Hedberg <johan.hedberg@gmail.com>
2802 L:      linux-bluetooth@vger.kernel.org
2803 W:      http://www.bluez.org/
2804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2806 S:      Maintained
2807 F:      net/bluetooth/
2808 F:      include/net/bluetooth/
2809
2810 BONDING DRIVER
2811 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2812 M:      Veaceslav Falico <vfalico@gmail.com>
2813 M:      Andy Gospodarek <andy@greyhouse.net>
2814 L:      netdev@vger.kernel.org
2815 W:      http://sourceforge.net/projects/bonding/
2816 S:      Supported
2817 F:      drivers/net/bonding/
2818 F:      include/uapi/linux/if_bonding.h
2819
2820 BPF (Safe dynamic programs and tools)
2821 M:      Alexei Starovoitov <ast@kernel.org>
2822 M:      Daniel Borkmann <daniel@iogearbox.net>
2823 L:      netdev@vger.kernel.org
2824 L:      linux-kernel@vger.kernel.org
2825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
2826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
2827 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
2828 S:      Supported
2829 F:      arch/*/net/*
2830 F:      Documentation/networking/filter.txt
2831 F:      Documentation/bpf/
2832 F:      include/linux/bpf*
2833 F:      include/linux/filter.h
2834 F:      include/trace/events/xdp.h
2835 F:      include/uapi/linux/bpf*
2836 F:      include/uapi/linux/filter.h
2837 F:      kernel/bpf/
2838 F:      kernel/trace/bpf_trace.c
2839 F:      lib/test_bpf.c
2840 F:      net/bpf/
2841 F:      net/core/filter.c
2842 F:      net/sched/act_bpf.c
2843 F:      net/sched/cls_bpf.c
2844 F:      samples/bpf/
2845 F:      tools/bpf/
2846 F:      tools/lib/bpf/
2847 F:      tools/testing/selftests/bpf/
2848
2849 BPF JIT for ARM
2850 M:      Shubham Bansal <illusionist.neo@gmail.com>
2851 L:      netdev@vger.kernel.org
2852 S:      Maintained
2853 F:      arch/arm/net/
2854
2855 BPF JIT for ARM64
2856 M:      Daniel Borkmann <daniel@iogearbox.net>
2857 M:      Alexei Starovoitov <ast@kernel.org>
2858 M:      Zi Shen Lim <zlim.lnx@gmail.com>
2859 L:      netdev@vger.kernel.org
2860 S:      Supported
2861 F:      arch/arm64/net/
2862
2863 BPF JIT for MIPS (32-BIT AND 64-BIT)
2864 M:      Paul Burton <paul.burton@mips.com>
2865 L:      netdev@vger.kernel.org
2866 S:      Maintained
2867 F:      arch/mips/net/
2868
2869 BPF JIT for NFP NICs
2870 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
2871 L:      netdev@vger.kernel.org
2872 S:      Supported
2873 F:      drivers/net/ethernet/netronome/nfp/bpf/
2874
2875 BPF JIT for POWERPC (32-BIT AND 64-BIT)
2876 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
2877 M:      Sandipan Das <sandipan@linux.ibm.com>
2878 L:      netdev@vger.kernel.org
2879 S:      Maintained
2880 F:      arch/powerpc/net/
2881
2882 BPF JIT for S390
2883 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
2884 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
2885 L:      netdev@vger.kernel.org
2886 S:      Maintained
2887 F:      arch/s390/net/
2888 X:      arch/s390/net/pnet.c
2889
2890 BPF JIT for SPARC (32-BIT AND 64-BIT)
2891 M:      David S. Miller <davem@davemloft.net>
2892 L:      netdev@vger.kernel.org
2893 S:      Maintained
2894 F:      arch/sparc/net/
2895
2896 BPF JIT for X86 32-BIT
2897 M:      Wang YanQing <udknight@gmail.com>
2898 L:      netdev@vger.kernel.org
2899 S:      Maintained
2900 F:      arch/x86/net/bpf_jit_comp32.c
2901
2902 BPF JIT for X86 64-BIT
2903 M:      Alexei Starovoitov <ast@kernel.org>
2904 M:      Daniel Borkmann <daniel@iogearbox.net>
2905 L:      netdev@vger.kernel.org
2906 S:      Supported
2907 F:      arch/x86/net/
2908 X:      arch/x86/net/bpf_jit_comp32.c
2909
2910 BROADCOM B44 10/100 ETHERNET DRIVER
2911 M:      Michael Chan <michael.chan@broadcom.com>
2912 L:      netdev@vger.kernel.org
2913 S:      Supported
2914 F:      drivers/net/ethernet/broadcom/b44.*
2915
2916 BROADCOM B53 ETHERNET SWITCH DRIVER
2917 M:      Florian Fainelli <f.fainelli@gmail.com>
2918 L:      netdev@vger.kernel.org
2919 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
2920 S:      Supported
2921 F:      drivers/net/dsa/b53/*
2922 F:      include/linux/platform_data/b53.h
2923
2924 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2925 M:      Florian Fainelli <f.fainelli@gmail.com>
2926 M:      Ray Jui <rjui@broadcom.com>
2927 M:      Scott Branden <sbranden@broadcom.com>
2928 M:      bcm-kernel-feedback-list@broadcom.com
2929 T:      git git://github.com/broadcom/mach-bcm
2930 S:      Maintained
2931 N:      bcm281*
2932 N:      bcm113*
2933 N:      bcm216*
2934 N:      kona
2935 F:      arch/arm/mach-bcm/
2936
2937 BROADCOM BCM2835 ARM ARCHITECTURE
2938 M:      Eric Anholt <eric@anholt.net>
2939 M:      Stefan Wahren <stefan.wahren@i2se.com>
2940 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2942 T:      git git://github.com/anholt/linux
2943 S:      Maintained
2944 N:      bcm2835
2945 F:      drivers/staging/vc04_services
2946
2947 BROADCOM BCM47XX MIPS ARCHITECTURE
2948 M:      Hauke Mehrtens <hauke@hauke-m.de>
2949 M:      Rafał Miłecki <zajec5@gmail.com>
2950 L:      linux-mips@vger.kernel.org
2951 S:      Maintained
2952 F:      Documentation/devicetree/bindings/mips/brcm/
2953 F:      arch/mips/bcm47xx/*
2954 F:      arch/mips/include/asm/mach-bcm47xx/*
2955
2956 BROADCOM BCM5301X ARM ARCHITECTURE
2957 M:      Hauke Mehrtens <hauke@hauke-m.de>
2958 M:      Rafał Miłecki <zajec5@gmail.com>
2959 M:      bcm-kernel-feedback-list@broadcom.com
2960 L:      linux-arm-kernel@lists.infradead.org
2961 S:      Maintained
2962 F:      arch/arm/mach-bcm/bcm_5301x.c
2963 F:      arch/arm/boot/dts/bcm5301x*.dtsi
2964 F:      arch/arm/boot/dts/bcm470*
2965 F:      arch/arm/boot/dts/bcm953012*
2966
2967 BROADCOM BCM53573 ARM ARCHITECTURE
2968 M:      Rafał Miłecki <rafal@milecki.pl>
2969 L:      linux-arm-kernel@lists.infradead.org
2970 S:      Maintained
2971 F:      arch/arm/boot/dts/bcm53573*
2972 F:      arch/arm/boot/dts/bcm47189*
2973
2974 BROADCOM BCM63XX ARM ARCHITECTURE
2975 M:      Florian Fainelli <f.fainelli@gmail.com>
2976 M:      bcm-kernel-feedback-list@broadcom.com
2977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2978 T:      git git://github.com/broadcom/stblinux.git
2979 S:      Maintained
2980 N:      bcm63xx
2981
2982 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2983 M:      Kevin Cernekee <cernekee@gmail.com>
2984 L:      linux-usb@vger.kernel.org
2985 S:      Maintained
2986 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2987
2988 BROADCOM BCM7XXX ARM ARCHITECTURE
2989 M:      Brian Norris <computersforpeace@gmail.com>
2990 M:      Gregory Fong <gregory.0xf0@gmail.com>
2991 M:      Florian Fainelli <f.fainelli@gmail.com>
2992 M:      bcm-kernel-feedback-list@broadcom.com
2993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2994 T:      git git://github.com/broadcom/stblinux.git
2995 S:      Maintained
2996 F:      arch/arm/mach-bcm/*brcmstb*
2997 F:      arch/arm/boot/dts/bcm7*.dts*
2998 F:      drivers/bus/brcmstb_gisb.c
2999 F:      arch/arm/mm/cache-b15-rac.c
3000 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3001 N:      brcmstb
3002
3003 BROADCOM BMIPS CPUFREQ DRIVER
3004 M:      Markus Mayer <mmayer@broadcom.com>
3005 M:      bcm-kernel-feedback-list@broadcom.com
3006 L:      linux-pm@vger.kernel.org
3007 S:      Maintained
3008 F:      drivers/cpufreq/bmips-cpufreq.c
3009
3010 BROADCOM BMIPS MIPS ARCHITECTURE
3011 M:      Kevin Cernekee <cernekee@gmail.com>
3012 M:      Florian Fainelli <f.fainelli@gmail.com>
3013 L:      linux-mips@vger.kernel.org
3014 T:      git git://github.com/broadcom/stblinux.git
3015 S:      Maintained
3016 F:      arch/mips/bmips/*
3017 F:      arch/mips/include/asm/mach-bmips/*
3018 F:      arch/mips/kernel/*bmips*
3019 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3020 F:      drivers/irqchip/irq-bcm63*
3021 F:      drivers/irqchip/irq-bcm7*
3022 F:      drivers/irqchip/irq-brcmstb*
3023 F:      include/linux/bcm963xx_nvram.h
3024 F:      include/linux/bcm963xx_tag.h
3025
3026 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3027 M:      Rasesh Mody <rasesh.mody@cavium.com>
3028 M:      Dept-GELinuxNICDev@cavium.com
3029 L:      netdev@vger.kernel.org
3030 S:      Supported
3031 F:      drivers/net/ethernet/broadcom/bnx2.*
3032 F:      drivers/net/ethernet/broadcom/bnx2_*
3033
3034 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3035 M:      QLogic-Storage-Upstream@qlogic.com
3036 L:      linux-scsi@vger.kernel.org
3037 S:      Supported
3038 F:      drivers/scsi/bnx2fc/
3039
3040 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3041 M:      QLogic-Storage-Upstream@qlogic.com
3042 L:      linux-scsi@vger.kernel.org
3043 S:      Supported
3044 F:      drivers/scsi/bnx2i/
3045
3046 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3047 M:      Ariel Elior <ariel.elior@cavium.com>
3048 M:      Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
3049 M:      everest-linux-l2@cavium.com
3050 L:      netdev@vger.kernel.org
3051 S:      Supported
3052 F:      drivers/net/ethernet/broadcom/bnx2x/
3053
3054 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3055 M:      Michael Chan <michael.chan@broadcom.com>
3056 L:      netdev@vger.kernel.org
3057 S:      Supported
3058 F:      drivers/net/ethernet/broadcom/bnxt/
3059
3060 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3061 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3062 M:      Franky Lin <franky.lin@broadcom.com>
3063 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3064 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3065 M:      Wright Feng <wright.feng@cypress.com>
3066 L:      linux-wireless@vger.kernel.org
3067 L:      brcm80211-dev-list.pdl@broadcom.com
3068 L:      brcm80211-dev-list@cypress.com
3069 S:      Supported
3070 F:      drivers/net/wireless/broadcom/brcm80211/
3071
3072 BROADCOM BRCMSTB GPIO DRIVER
3073 M:      Gregory Fong <gregory.0xf0@gmail.com>
3074 L:      bcm-kernel-feedback-list@broadcom.com
3075 S:      Supported
3076 F:      drivers/gpio/gpio-brcmstb.c
3077 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3078
3079 BROADCOM BRCMSTB I2C DRIVER
3080 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3081 L:      linux-i2c@vger.kernel.org
3082 L:      bcm-kernel-feedback-list@broadcom.com
3083 S:      Supported
3084 F:      drivers/i2c/busses/i2c-brcmstb.c
3085 F:      Documentation/devicetree/bindings/i2c/i2c-brcmstb.txt
3086
3087 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3088 M:      Al Cooper <alcooperx@gmail.com>
3089 L:      linux-kernel@vger.kernel.org
3090 L:      bcm-kernel-feedback-list@broadcom.com
3091 S:      Maintained
3092 F:      drivers/phy/broadcom/phy-brcm-usb*
3093
3094 BROADCOM GENET ETHERNET DRIVER
3095 M:      Doug Berger <opendmb@gmail.com>
3096 M:      Florian Fainelli <f.fainelli@gmail.com>
3097 L:      netdev@vger.kernel.org
3098 S:      Supported
3099 F:      drivers/net/ethernet/broadcom/genet/
3100
3101 BROADCOM IPROC ARM ARCHITECTURE
3102 M:      Ray Jui <rjui@broadcom.com>
3103 M:      Scott Branden <sbranden@broadcom.com>
3104 M:      bcm-kernel-feedback-list@broadcom.com
3105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3106 T:      git git://github.com/broadcom/cygnus-linux.git
3107 S:      Maintained
3108 N:      iproc
3109 N:      cygnus
3110 N:      bcm[-_]nsp
3111 N:      bcm9113*
3112 N:      bcm9583*
3113 N:      bcm9585*
3114 N:      bcm9586*
3115 N:      bcm988312
3116 N:      bcm113*
3117 N:      bcm583*
3118 N:      bcm585*
3119 N:      bcm586*
3120 N:      bcm88312
3121 N:      hr2
3122 N:      stingray
3123 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3124 F:      arch/arm64/boot/dts/broadcom/stingray/*
3125 F:      drivers/clk/bcm/clk-ns*
3126 F:      drivers/clk/bcm/clk-sr*
3127 F:      drivers/pinctrl/bcm/pinctrl-ns*
3128 F:      include/dt-bindings/clock/bcm-sr*
3129
3130 BROADCOM KONA GPIO DRIVER
3131 M:      Ray Jui <rjui@broadcom.com>
3132 L:      bcm-kernel-feedback-list@broadcom.com
3133 S:      Supported
3134 F:      drivers/gpio/gpio-bcm-kona.c
3135 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3136
3137 BROADCOM NETXTREME-E ROCE DRIVER
3138 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3139 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3140 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3141 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3142 L:      linux-rdma@vger.kernel.org
3143 W:      http://www.broadcom.com
3144 S:      Supported
3145 F:      drivers/infiniband/hw/bnxt_re/
3146 F:      include/uapi/rdma/bnxt_re-abi.h
3147
3148 BROADCOM NVRAM DRIVER
3149 M:      Rafał Miłecki <zajec5@gmail.com>
3150 L:      linux-mips@vger.kernel.org
3151 S:      Maintained
3152 F:      drivers/firmware/broadcom/*
3153
3154 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3155 M:      Rafał Miłecki <zajec5@gmail.com>
3156 L:      linux-wireless@vger.kernel.org
3157 S:      Maintained
3158 F:      drivers/bcma/
3159 F:      include/linux/bcma/
3160
3161 BROADCOM STB AVS CPUFREQ DRIVER
3162 M:      Markus Mayer <mmayer@broadcom.com>
3163 M:      bcm-kernel-feedback-list@broadcom.com
3164 L:      linux-pm@vger.kernel.org
3165 S:      Maintained
3166 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3167 F:      drivers/cpufreq/brcmstb*
3168
3169 BROADCOM STB AVS TMON DRIVER
3170 M:      Markus Mayer <mmayer@broadcom.com>
3171 M:      bcm-kernel-feedback-list@broadcom.com
3172 L:      linux-pm@vger.kernel.org
3173 S:      Maintained
3174 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3175 F:      drivers/thermal/broadcom/brcmstb*
3176
3177 BROADCOM STB NAND FLASH DRIVER
3178 M:      Brian Norris <computersforpeace@gmail.com>
3179 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3180 L:      linux-mtd@lists.infradead.org
3181 L:      bcm-kernel-feedback-list@broadcom.com
3182 S:      Maintained
3183 F:      drivers/mtd/nand/raw/brcmnand/
3184
3185 BROADCOM STB DPFE DRIVER
3186 M:      Markus Mayer <mmayer@broadcom.com>
3187 M:      bcm-kernel-feedback-list@broadcom.com
3188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3189 S:      Maintained
3190 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3191 F:      drivers/memory/brcmstb_dpfe.c
3192
3193 BROADCOM SPI DRIVER
3194 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3195 M:      bcm-kernel-feedback-list@broadcom.com
3196 S:      Maintained
3197 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3198 F:      drivers/spi/spi-bcm-qspi.*
3199 F:      drivers/spi/spi-brcmstb-qspi.c
3200 F:      drivers/spi/spi-iproc-qspi.c
3201
3202 BROADCOM SYSTEMPORT ETHERNET DRIVER
3203 M:      Florian Fainelli <f.fainelli@gmail.com>
3204 L:      netdev@vger.kernel.org
3205 S:      Supported
3206 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3207
3208 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3209 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3210 M:      Prashant Sreedharan <prashant@broadcom.com>
3211 M:      Michael Chan <mchan@broadcom.com>
3212 L:      netdev@vger.kernel.org
3213 S:      Supported
3214 F:      drivers/net/ethernet/broadcom/tg3.*
3215
3216 BROCADE BFA FC SCSI DRIVER
3217 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3218 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3219 L:      linux-scsi@vger.kernel.org
3220 S:      Supported
3221 F:      drivers/scsi/bfa/
3222
3223 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3224 M:      Rasesh Mody <rasesh.mody@cavium.com>
3225 M:      Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
3226 M:      Dept-GELinuxNICDev@cavium.com
3227 L:      netdev@vger.kernel.org
3228 S:      Supported
3229 F:      drivers/net/ethernet/brocade/bna/
3230
3231 BSG (block layer generic sg v4 driver)
3232 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3233 L:      linux-scsi@vger.kernel.org
3234 S:      Supported
3235 F:      block/bsg.c
3236 F:      include/linux/bsg.h
3237 F:      include/uapi/linux/bsg.h
3238
3239 BT87X AUDIO DRIVER
3240 M:      Clemens Ladisch <clemens@ladisch.de>
3241 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3242 T:      git git://git.alsa-project.org/alsa-kernel.git
3243 S:      Maintained
3244 F:      Documentation/sound/cards/bt87x.rst
3245 F:      sound/pci/bt87x.c
3246
3247 BT8XXGPIO DRIVER
3248 M:      Michael Buesch <m@bues.ch>
3249 W:      http://bu3sch.de/btgpio.php
3250 S:      Maintained
3251 F:      drivers/gpio/gpio-bt8xx.c
3252
3253 BTRFS FILE SYSTEM
3254 M:      Chris Mason <clm@fb.com>
3255 M:      Josef Bacik <josef@toxicpanda.com>
3256 M:      David Sterba <dsterba@suse.com>
3257 L:      linux-btrfs@vger.kernel.org
3258 W:      http://btrfs.wiki.kernel.org/
3259 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3261 S:      Maintained
3262 F:      Documentation/filesystems/btrfs.txt
3263 F:      fs/btrfs/
3264 F:      include/linux/btrfs*
3265 F:      include/uapi/linux/btrfs*
3266
3267 BTTV VIDEO4LINUX DRIVER
3268 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3269 L:      linux-media@vger.kernel.org
3270 W:      https://linuxtv.org
3271 T:      git git://linuxtv.org/media_tree.git
3272 S:      Odd fixes
3273 F:      Documentation/media/v4l-drivers/bttv*
3274 F:      drivers/media/pci/bt8xx/bttv*
3275
3276 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3277 M:      Chanwoo Choi <cw00.choi@samsung.com>
3278 L:      linux-pm@vger.kernel.org
3279 L:      linux-samsung-soc@vger.kernel.org
3280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3281 S:      Maintained
3282 F:      drivers/devfreq/exynos-bus.c
3283 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3284
3285 BUSLOGIC SCSI DRIVER
3286 M:      Khalid Aziz <khalid@gonehiking.org>
3287 L:      linux-scsi@vger.kernel.org
3288 S:      Maintained
3289 F:      drivers/scsi/BusLogic.*
3290 F:      drivers/scsi/FlashPoint.*
3291
3292 C-MEDIA CMI8788 DRIVER
3293 M:      Clemens Ladisch <clemens@ladisch.de>
3294 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3295 T:      git git://git.alsa-project.org/alsa-kernel.git
3296 S:      Maintained
3297 F:      sound/pci/oxygen/
3298
3299 C-SKY ARCHITECTURE
3300 M:      Guo Ren <guoren@kernel.org>
3301 T:      git https://github.com/c-sky/csky-linux.git
3302 S:      Supported
3303 F:      arch/csky/
3304 F:      Documentation/devicetree/bindings/csky/
3305 F:      drivers/irqchip/irq-csky-*
3306 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3307 F:      drivers/clocksource/timer-gx6605s.c
3308 F:      drivers/clocksource/timer-mp-csky.c
3309 F:      Documentation/devicetree/bindings/timer/csky,*
3310 K:      csky
3311 N:      csky
3312
3313 C6X ARCHITECTURE
3314 M:      Mark Salter <msalter@redhat.com>
3315 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3316 L:      linux-c6x-dev@linux-c6x.org
3317 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3318 S:      Maintained
3319 F:      arch/c6x/
3320
3321 CA8210 IEEE-802.15.4 RADIO DRIVER
3322 M:      Harry Morris <h.morris@cascoda.com>
3323 L:      linux-wpan@vger.kernel.org
3324 W:      https://github.com/Cascoda/ca8210-linux.git
3325 S:      Maintained
3326 F:      drivers/net/ieee802154/ca8210.c
3327 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3328
3329 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3330 M:      David Howells <dhowells@redhat.com>
3331 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3332 S:      Supported
3333 F:      Documentation/filesystems/caching/cachefiles.txt
3334 F:      fs/cachefiles/
3335
3336 CADENCE MIPI-CSI2 BRIDGES
3337 M:      Maxime Ripard <maxime.ripard@bootlin.com>
3338 L:      linux-media@vger.kernel.org
3339 S:      Maintained
3340 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3341 F:      drivers/media/platform/cadence/cdns-csi2*
3342
3343 CADET FM/AM RADIO RECEIVER DRIVER
3344 M:      Hans Verkuil <hverkuil@xs4all.nl>
3345 L:      linux-media@vger.kernel.org
3346 T:      git git://linuxtv.org/media_tree.git
3347 W:      https://linuxtv.org
3348 S:      Maintained
3349 F:      drivers/media/radio/radio-cadet*
3350
3351 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3352 M:      Jonathan Corbet <corbet@lwn.net>
3353 L:      linux-media@vger.kernel.org
3354 T:      git git://linuxtv.org/media_tree.git
3355 S:      Maintained
3356 F:      Documentation/media/v4l-drivers/cafe_ccic*
3357 F:      drivers/media/platform/marvell-ccic/
3358
3359 CAIF NETWORK LAYER
3360 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3361 L:      netdev@vger.kernel.org
3362 S:      Supported
3363 F:      Documentation/networking/caif/
3364 F:      drivers/net/caif/
3365 F:      include/uapi/linux/caif/
3366 F:      include/net/caif/
3367 F:      net/caif/
3368
3369 CAKE QDISC
3370 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3371 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3372 S:      Maintained
3373 F:      net/sched/sch_cake.c
3374
3375 CALGARY x86-64 IOMMU
3376 M:      Muli Ben-Yehuda <mulix@mulix.org>
3377 M:      Jon Mason <jdmason@kudzu.us>
3378 L:      iommu@lists.linux-foundation.org
3379 S:      Maintained
3380 F:      arch/x86/kernel/pci-calgary_64.c
3381 F:      arch/x86/kernel/tce_64.c
3382 F:      arch/x86/include/asm/calgary.h
3383 F:      arch/x86/include/asm/tce.h
3384
3385 CAN NETWORK DRIVERS
3386 M:      Wolfgang Grandegger <wg@grandegger.com>
3387 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3388 L:      linux-can@vger.kernel.org
3389 W:      https://github.com/linux-can
3390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3392 S:      Maintained
3393 F:      Documentation/devicetree/bindings/net/can/
3394 F:      drivers/net/can/
3395 F:      include/linux/can/dev.h
3396 F:      include/linux/can/platform/
3397 F:      include/uapi/linux/can/error.h
3398 F:      include/uapi/linux/can/netlink.h
3399
3400 CAN NETWORK LAYER
3401 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3402 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3403 L:      linux-can@vger.kernel.org
3404 W:      https://github.com/linux-can
3405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3407 S:      Maintained
3408 F:      Documentation/networking/can.rst
3409 F:      net/can/
3410 F:      include/linux/can/core.h
3411 F:      include/uapi/linux/can.h
3412 F:      include/uapi/linux/can/bcm.h
3413 F:      include/uapi/linux/can/raw.h
3414 F:      include/uapi/linux/can/gw.h
3415
3416 CAPABILITIES
3417 M:      Serge Hallyn <serge@hallyn.com>
3418 L:      linux-security-module@vger.kernel.org
3419 S:      Supported
3420 F:      include/linux/capability.h
3421 F:      include/uapi/linux/capability.h
3422 F:      security/commoncap.c
3423 F:      kernel/capability.c
3424
3425 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3426 M:      Kevin Tsai <ktsai@capellamicro.com>
3427 S:      Maintained
3428 F:      drivers/iio/light/cm*
3429
3430 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3431 M:      Christian Lamparter <chunkeey@googlemail.com>
3432 L:      linux-wireless@vger.kernel.org
3433 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3434 S:      Maintained
3435 F:      drivers/net/wireless/ath/carl9170/
3436
3437 CAVIUM I2C DRIVER
3438 M:      Jan Glauber <jglauber@cavium.com>
3439 M:      David Daney <david.daney@cavium.com>
3440 W:      http://www.cavium.com
3441 S:      Supported
3442 F:      drivers/i2c/busses/i2c-octeon*
3443 F:      drivers/i2c/busses/i2c-thunderx*
3444
3445 CAVIUM LIQUIDIO NETWORK DRIVER
3446 M:      Derek Chickles <derek.chickles@caviumnetworks.com>
3447 M:      Satanand Burla <satananda.burla@caviumnetworks.com>
3448 M:      Felix Manlunas <felix.manlunas@caviumnetworks.com>
3449 M:      Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3450 L:      netdev@vger.kernel.org
3451 W:      http://www.cavium.com
3452 S:      Supported
3453 F:      drivers/net/ethernet/cavium/liquidio/
3454
3455 CAVIUM MMC DRIVER
3456 M:      Jan Glauber <jglauber@cavium.com>
3457 M:      David Daney <david.daney@cavium.com>
3458 M:      Steven J. Hill <Steven.Hill@cavium.com>
3459 W:      http://www.cavium.com
3460 S:      Supported
3461 F:      drivers/mmc/host/cavium*
3462
3463 CAVIUM OCTEON-TX CRYPTO DRIVER
3464 M:      George Cherian <george.cherian@cavium.com>
3465 L:      linux-crypto@vger.kernel.org
3466 W:      http://www.cavium.com
3467 S:      Supported
3468 F:      drivers/crypto/cavium/cpt/
3469
3470 CAVIUM THUNDERX2 ARM64 SOC
3471 M:      Robert Richter <rrichter@cavium.com>
3472 M:      Jayachandran C <jnair@caviumnetworks.com>
3473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3474 S:      Maintained
3475 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3476 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3477
3478 CC2520 IEEE-802.15.4 RADIO DRIVER
3479 M:      Varka Bhadram <varkabhadram@gmail.com>
3480 L:      linux-wpan@vger.kernel.org
3481 S:      Maintained
3482 F:      drivers/net/ieee802154/cc2520.c
3483 F:      include/linux/spi/cc2520.h
3484 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3485
3486 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3487 M:      Yael Chemla <yael.chemla@foss.arm.com>
3488 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3489 L:      linux-crypto@vger.kernel.org
3490 S:      Supported
3491 F:      drivers/crypto/ccree/
3492 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3493
3494 CEC FRAMEWORK
3495 M:      Hans Verkuil <hans.verkuil@cisco.com>
3496 L:      linux-media@vger.kernel.org
3497 T:      git git://linuxtv.org/media_tree.git
3498 W:      http://linuxtv.org
3499 S:      Supported
3500 F:      Documentation/media/kapi/cec-core.rst
3501 F:      Documentation/media/uapi/cec
3502 F:      drivers/media/cec/
3503 F:      drivers/media/rc/keymaps/rc-cec.c
3504 F:      include/media/cec.h
3505 F:      include/media/cec-notifier.h
3506 F:      include/uapi/linux/cec.h
3507 F:      include/uapi/linux/cec-funcs.h
3508 F:      Documentation/devicetree/bindings/media/cec.txt
3509 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3510
3511 CEC GPIO DRIVER
3512 M:      Hans Verkuil <hans.verkuil@cisco.com>
3513 L:      linux-media@vger.kernel.org
3514 T:      git git://linuxtv.org/media_tree.git
3515 W:      http://linuxtv.org
3516 S:      Supported
3517 F:      drivers/media/platform/cec-gpio/
3518 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3519
3520 CELL BROADBAND ENGINE ARCHITECTURE
3521 M:      Arnd Bergmann <arnd@arndb.de>
3522 L:      linuxppc-dev@lists.ozlabs.org
3523 W:      http://www.ibm.com/developerworks/power/cell/
3524 S:      Supported
3525 F:      arch/powerpc/include/asm/cell*.h
3526 F:      arch/powerpc/include/asm/spu*.h
3527 F:      arch/powerpc/include/uapi/asm/spu*.h
3528 F:      arch/powerpc/oprofile/*cell*
3529 F:      arch/powerpc/platforms/cell/
3530
3531 CEPH COMMON CODE (LIBCEPH)
3532 M:      Ilya Dryomov <idryomov@gmail.com>
3533 M:      "Yan, Zheng" <zyan@redhat.com>
3534 M:      Sage Weil <sage@redhat.com>
3535 L:      ceph-devel@vger.kernel.org
3536 W:      http://ceph.com/
3537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3538 T:      git git://github.com/ceph/ceph-client.git
3539 S:      Supported
3540 F:      net/ceph/
3541 F:      include/linux/ceph/
3542 F:      include/linux/crush/
3543
3544 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3545 M:      "Yan, Zheng" <zyan@redhat.com>
3546 M:      Sage Weil <sage@redhat.com>
3547 M:      Ilya Dryomov <idryomov@gmail.com>
3548 L:      ceph-devel@vger.kernel.org
3549 W:      http://ceph.com/
3550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3551 T:      git git://github.com/ceph/ceph-client.git
3552 S:      Supported
3553 F:      Documentation/filesystems/ceph.txt
3554 F:      fs/ceph/
3555
3556 CERTIFICATE HANDLING:
3557 M:      David Howells <dhowells@redhat.com>
3558 M:      David Woodhouse <dwmw2@infradead.org>
3559 L:      keyrings@vger.kernel.org
3560 S:      Maintained
3561 F:      Documentation/admin-guide/module-signing.rst
3562 F:      certs/
3563 F:      scripts/sign-file.c
3564 F:      scripts/extract-cert.c
3565
3566 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3567 L:      linux-usb@vger.kernel.org
3568 S:      Orphan
3569 F:      Documentation/usb/WUSB-Design-overview.txt
3570 F:      Documentation/usb/wusb-cbaf
3571 F:      drivers/usb/host/hwa-hc.c
3572 F:      drivers/usb/host/whci/
3573 F:      drivers/usb/wusbcore/
3574 F:      include/linux/usb/wusb*
3575
3576 CFAG12864B LCD DRIVER
3577 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3578 S:      Maintained
3579 F:      drivers/auxdisplay/cfag12864b.c
3580 F:      include/linux/cfag12864b.h
3581
3582 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3583 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3584 S:      Maintained
3585 F:      drivers/auxdisplay/cfag12864bfb.c
3586 F:      include/linux/cfag12864b.h
3587
3588 802.11 (including CFG80211/NL80211)
3589 M:      Johannes Berg <johannes@sipsolutions.net>
3590 L:      linux-wireless@vger.kernel.org
3591 W:      http://wireless.kernel.org/
3592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3594 S:      Maintained
3595 F:      net/wireless/
3596 F:      include/uapi/linux/nl80211.h
3597 F:      include/linux/ieee80211.h
3598 F:      include/net/wext.h
3599 F:      include/net/cfg80211.h
3600 F:      include/net/iw_handler.h
3601 F:      include/net/ieee80211_radiotap.h
3602 F:      Documentation/driver-api/80211/cfg80211.rst
3603 F:      Documentation/networking/regulatory.txt
3604
3605 CHAR and MISC DRIVERS
3606 M:      Arnd Bergmann <arnd@arndb.de>
3607 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3609 S:      Supported
3610 F:      drivers/char/
3611 F:      drivers/misc/
3612 F:      include/linux/miscdevice.h
3613
3614 CHECKPATCH
3615 M:      Andy Whitcroft <apw@canonical.com>
3616 M:      Joe Perches <joe@perches.com>
3617 S:      Maintained
3618 F:      scripts/checkpatch.pl
3619
3620 CHINESE DOCUMENTATION
3621 M:      Harry Wei <harryxiyou@gmail.com>
3622 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3623 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
3624 S:      Maintained
3625 F:      Documentation/translations/zh_CN/
3626
3627 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3628 M:      Peter Chen <Peter.Chen@nxp.com>
3629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3630 L:      linux-usb@vger.kernel.org
3631 S:      Maintained
3632 F:      drivers/usb/chipidea/
3633
3634 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3635 M:      Hans de Goede <hdegoede@redhat.com>
3636 L:      linux-input@vger.kernel.org
3637 S:      Maintained
3638 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3639 F:      drivers/input/touchscreen/chipone_icn8318.c
3640
3641 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
3642 M:      Hans de Goede <hdegoede@redhat.com>
3643 L:      linux-input@vger.kernel.org
3644 S:      Maintained
3645 F:      drivers/input/touchscreen/chipone_icn8505.c
3646
3647 CHROME HARDWARE PLATFORM SUPPORT
3648 M:      Benson Leung <bleung@chromium.org>
3649 M:      Olof Johansson <olof@lixom.net>
3650 S:      Maintained
3651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform.git
3652 F:      drivers/platform/chrome/
3653
3654 CIRRUS LOGIC AUDIO CODEC DRIVERS
3655 M:      Brian Austin <brian.austin@cirrus.com>
3656 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3657 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3658 S:      Maintained
3659 F:      sound/soc/codecs/cs*
3660
3661 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3662 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3663 L:      netdev@vger.kernel.org
3664 S:      Maintained
3665 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3666
3667 CISCO FCOE HBA DRIVER
3668 M:      Satish Kharat <satishkh@cisco.com>
3669 M:      Sesidhar Baddela <sebaddel@cisco.com>
3670 M:      Karan Tilak Kumar <kartilak@cisco.com>
3671 L:      linux-scsi@vger.kernel.org
3672 S:      Supported
3673 F:      drivers/scsi/fnic/
3674
3675 CISCO SCSI HBA DRIVER
3676 M:      Karan Tilak Kumar <kartilak@cisco.com>
3677 M:      Sesidhar Baddela <sebaddel@cisco.com>
3678 L:      linux-scsi@vger.kernel.org
3679 S:      Supported
3680 F:      drivers/scsi/snic/
3681
3682 CISCO VIC ETHERNET NIC DRIVER
3683 M:      Christian Benvenuti <benve@cisco.com>
3684 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3685 M:      Parvi Kaustubhi <pkaustub@cisco.com>
3686 S:      Supported
3687 F:      drivers/net/ethernet/cisco/enic/
3688
3689 CISCO VIC LOW LATENCY NIC DRIVER
3690 M:      Christian Benvenuti <benve@cisco.com>
3691 M:      Nelson Escobar <neescoba@cisco.com>
3692 M:      Parvi Kaustubhi <pkaustub@cisco.com>
3693 S:      Supported
3694 F:      drivers/infiniband/hw/usnic/
3695
3696 CIRRUS LOGIC MADERA CODEC DRIVERS
3697 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
3698 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
3699 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3700 L:      patches@opensource.cirrus.com
3701 T:      git https://github.com/CirrusLogic/linux-drivers.git
3702 W:      https://github.com/CirrusLogic/linux-drivers/wiki
3703 S:      Supported
3704 F:      Documentation/devicetree/bindings/mfd/madera.txt
3705 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
3706 F:      include/linux/irqchip/irq-madera*
3707 F:      include/linux/mfd/madera/*
3708 F:      drivers/gpio/gpio-madera*
3709 F:      drivers/irqchip/irq-madera*
3710 F:      drivers/mfd/madera*
3711 F:      drivers/mfd/cs47l*
3712 F:      drivers/pinctrl/cirrus/*
3713
3714 CLANG-FORMAT FILE
3715 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
3716 S:      Maintained
3717 F:      .clang-format
3718
3719 CLEANCACHE API
3720 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3721 L:      linux-kernel@vger.kernel.org
3722 S:      Maintained
3723 F:      mm/cleancache.c
3724 F:      include/linux/cleancache.h
3725
3726 CLK API
3727 M:      Russell King <linux@armlinux.org.uk>
3728 L:      linux-clk@vger.kernel.org
3729 S:      Maintained
3730 F:      include/linux/clk.h
3731
3732 CLOCKSOURCE, CLOCKEVENT DRIVERS
3733 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3734 M:      Thomas Gleixner <tglx@linutronix.de>
3735 L:      linux-kernel@vger.kernel.org
3736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3737 S:      Supported
3738 F:      drivers/clocksource/
3739 F:      Documentation/devicetree/bindings/timer/
3740
3741 CMPC ACPI DRIVER
3742 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3743 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3744 L:      platform-driver-x86@vger.kernel.org
3745 S:      Supported
3746 F:      drivers/platform/x86/classmate-laptop.c
3747
3748 COBALT MEDIA DRIVER
3749 M:      Hans Verkuil <hans.verkuil@cisco.com>
3750 L:      linux-media@vger.kernel.org
3751 T:      git git://linuxtv.org/media_tree.git
3752 W:      https://linuxtv.org
3753 S:      Supported
3754 F:      drivers/media/pci/cobalt/
3755
3756 COCCINELLE/Semantic Patches (SmPL)
3757 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3758 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3759 M:      Nicolas Palix <nicolas.palix@imag.fr>
3760 M:      Michal Marek <michal.lkml@markovi.net>
3761 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3763 W:      http://coccinelle.lip6.fr/
3764 S:      Supported
3765 F:      Documentation/dev-tools/coccinelle.rst
3766 F:      scripts/coccinelle/
3767 F:      scripts/coccicheck
3768
3769 CODA FILE SYSTEM
3770 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3771 M:      coda@cs.cmu.edu
3772 L:      codalist@coda.cs.cmu.edu
3773 W:      http://www.coda.cs.cmu.edu/
3774 S:      Maintained
3775 F:      Documentation/filesystems/coda.txt
3776 F:      fs/coda/
3777 F:      include/linux/coda*.h
3778 F:      include/uapi/linux/coda*.h
3779
3780 CODA V4L2 MEM2MEM DRIVER
3781 M:      Philipp Zabel <p.zabel@pengutronix.de>
3782 L:      linux-media@vger.kernel.org
3783 S:      Maintained
3784 F:      Documentation/devicetree/bindings/media/coda.txt
3785 F:      drivers/media/platform/coda/
3786
3787 CODE OF CONDUCT
3788 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3789 S:      Supported
3790 F:      Documentation/process/code-of-conduct.rst
3791 F:      Documentation/process/code-of-conduct-interpretation.rst
3792
3793 COMMON CLK FRAMEWORK
3794 M:      Michael Turquette <mturquette@baylibre.com>
3795 M:      Stephen Boyd <sboyd@kernel.org>
3796 L:      linux-clk@vger.kernel.org
3797 Q:      http://patchwork.kernel.org/project/linux-clk/list/
3798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3799 S:      Maintained
3800 F:      Documentation/devicetree/bindings/clock/
3801 F:      drivers/clk/
3802 X:      drivers/clk/clkdev.c
3803 F:      include/linux/clk-pr*
3804 F:      include/linux/clk/
3805 F:      include/linux/of_clk.h
3806
3807 COMMON INTERNET FILE SYSTEM (CIFS)
3808 M:      Steve French <sfrench@samba.org>
3809 L:      linux-cifs@vger.kernel.org
3810 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3811 W:      http://linux-cifs.samba.org/
3812 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3813 S:      Supported
3814 F:      Documentation/filesystems/cifs/
3815 F:      fs/cifs/
3816
3817 COMPACTPCI HOTPLUG CORE
3818 M:      Scott Murray <scott@spiteful.org>
3819 L:      linux-pci@vger.kernel.org
3820 S:      Maintained
3821 F:      drivers/pci/hotplug/cpci_hotplug*
3822
3823 COMPACTPCI HOTPLUG GENERIC DRIVER
3824 M:      Scott Murray <scott@spiteful.org>
3825 L:      linux-pci@vger.kernel.org
3826 S:      Maintained
3827 F:      drivers/pci/hotplug/cpcihp_generic.c
3828
3829 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3830 M:      Scott Murray <scott@spiteful.org>
3831 L:      linux-pci@vger.kernel.org
3832 S:      Maintained
3833 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3834
3835 COMPAL LAPTOP SUPPORT
3836 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3837 L:      platform-driver-x86@vger.kernel.org
3838 S:      Maintained
3839 F:      drivers/platform/x86/compal-laptop.c
3840
3841 COMPILER ATTRIBUTES
3842 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
3843 S:      Maintained
3844 F:      include/linux/compiler_attributes.h
3845
3846 CONEXANT ACCESSRUNNER USB DRIVER
3847 L:      accessrunner-general@lists.sourceforge.net
3848 W:      http://accessrunner.sourceforge.net/
3849 S:      Orphan
3850 F:      drivers/usb/atm/cxacru.c
3851
3852 CONFIGFS
3853 M:      Joel Becker <jlbec@evilplan.org>
3854 M:      Christoph Hellwig <hch@lst.de>
3855 T:      git git://git.infradead.org/users/hch/configfs.git
3856 S:      Supported
3857 F:      fs/configfs/
3858 F:      include/linux/configfs.h
3859
3860 CONNECTOR
3861 M:      Evgeniy Polyakov <zbr@ioremap.net>
3862 L:      netdev@vger.kernel.org
3863 S:      Maintained
3864 F:      drivers/connector/
3865
3866 CONTROL GROUP (CGROUP)
3867 M:      Tejun Heo <tj@kernel.org>
3868 M:      Li Zefan <lizefan@huawei.com>
3869 M:      Johannes Weiner <hannes@cmpxchg.org>
3870 L:      cgroups@vger.kernel.org
3871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3872 S:      Maintained
3873 F:      Documentation/cgroup*
3874 F:      include/linux/cgroup*
3875 F:      kernel/cgroup*
3876
3877 CONTROL GROUP - CPUSET
3878 M:      Li Zefan <lizefan@huawei.com>
3879 L:      cgroups@vger.kernel.org
3880 W:      http://www.bullopensource.org/cpuset/
3881 W:      http://oss.sgi.com/projects/cpusets/
3882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3883 S:      Maintained
3884 F:      Documentation/cgroup-v1/cpusets.txt
3885 F:      include/linux/cpuset.h
3886 F:      kernel/cgroup/cpuset.c
3887
3888 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3889 M:      Johannes Weiner <hannes@cmpxchg.org>
3890 M:      Michal Hocko <mhocko@kernel.org>
3891 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
3892 L:      cgroups@vger.kernel.org
3893 L:      linux-mm@kvack.org
3894 S:      Maintained
3895 F:      mm/memcontrol.c
3896 F:      mm/swap_cgroup.c
3897
3898 CORETEMP HARDWARE MONITORING DRIVER
3899 M:      Fenghua Yu <fenghua.yu@intel.com>
3900 L:      linux-hwmon@vger.kernel.org
3901 S:      Maintained
3902 F:      Documentation/hwmon/coretemp
3903 F:      drivers/hwmon/coretemp.c
3904
3905 COSA/SRP SYNC SERIAL DRIVER
3906 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3907 W:      http://www.fi.muni.cz/~kas/cosa/
3908 S:      Maintained
3909 F:      drivers/net/wan/cosa*
3910
3911 CPMAC ETHERNET DRIVER
3912 M:      Florian Fainelli <f.fainelli@gmail.com>
3913 L:      netdev@vger.kernel.org
3914 S:      Maintained
3915 F:      drivers/net/ethernet/ti/cpmac.c
3916
3917 CPU FREQUENCY DRIVERS
3918 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3919 M:      Viresh Kumar <viresh.kumar@linaro.org>
3920 L:      linux-pm@vger.kernel.org
3921 S:      Maintained
3922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3923 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3924 B:      https://bugzilla.kernel.org
3925 F:      Documentation/cpu-freq/
3926 F:      Documentation/devicetree/bindings/cpufreq/
3927 F:      drivers/cpufreq/
3928 F:      include/linux/cpufreq.h
3929 F:      tools/testing/selftests/cpufreq/
3930
3931 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3932 M:      Viresh Kumar <viresh.kumar@linaro.org>
3933 M:      Sudeep Holla <sudeep.holla@arm.com>
3934 L:      linux-pm@vger.kernel.org
3935 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3936 S:      Maintained
3937 F:      drivers/cpufreq/arm_big_little.h
3938 F:      drivers/cpufreq/arm_big_little.c
3939
3940 CPU POWER MONITORING SUBSYSTEM
3941 M:      Thomas Renninger <trenn@suse.com>
3942 M:      Shuah Khan <shuah@kernel.org>
3943 L:      linux-pm@vger.kernel.org
3944 S:      Maintained
3945 F:      tools/power/cpupower/
3946
3947 CPUID/MSR DRIVER
3948 M:      "H. Peter Anvin" <hpa@zytor.com>
3949 S:      Maintained
3950 F:      arch/x86/kernel/cpuid.c
3951 F:      arch/x86/kernel/msr.c
3952
3953 CPUIDLE DRIVER - ARM BIG LITTLE
3954 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3955 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3956 L:      linux-pm@vger.kernel.org
3957 L:      linux-arm-kernel@lists.infradead.org
3958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3959 S:      Maintained
3960 F:      drivers/cpuidle/cpuidle-big_little.c
3961
3962 CPUIDLE DRIVER - ARM EXYNOS
3963 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3964 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3965 M:      Kukjin Kim <kgene@kernel.org>
3966 L:      linux-pm@vger.kernel.org
3967 L:      linux-samsung-soc@vger.kernel.org
3968 S:      Supported
3969 F:      drivers/cpuidle/cpuidle-exynos.c
3970 F:      arch/arm/mach-exynos/pm.c
3971
3972 CPUIDLE DRIVERS
3973 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3974 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3975 L:      linux-pm@vger.kernel.org
3976 S:      Maintained
3977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3978 B:      https://bugzilla.kernel.org
3979 F:      drivers/cpuidle/*
3980 F:      include/linux/cpuidle.h
3981
3982 CRAMFS FILESYSTEM
3983 M:      Nicolas Pitre <nico@linaro.org>
3984 S:      Maintained
3985 F:      Documentation/filesystems/cramfs.txt
3986 F:      fs/cramfs/
3987
3988 CRYPTO API
3989 M:      Herbert Xu <herbert@gondor.apana.org.au>
3990 M:      "David S. Miller" <davem@davemloft.net>
3991 L:      linux-crypto@vger.kernel.org
3992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3994 S:      Maintained
3995 F:      Documentation/crypto/
3996 F:      Documentation/devicetree/bindings/crypto/
3997 F:      arch/*/crypto/
3998 F:      crypto/
3999 F:      drivers/crypto/
4000 F:      include/crypto/
4001 F:      include/linux/crypto*
4002
4003 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4004 M:      Neil Horman <nhorman@tuxdriver.com>
4005 L:      linux-crypto@vger.kernel.org
4006 S:      Maintained
4007 F:      crypto/ansi_cprng.c
4008 F:      crypto/rng.c
4009
4010 CS3308 MEDIA DRIVER
4011 M:      Hans Verkuil <hverkuil@xs4all.nl>
4012 L:      linux-media@vger.kernel.org
4013 T:      git git://linuxtv.org/media_tree.git
4014 W:      http://linuxtv.org
4015 S:      Odd Fixes
4016 F:      drivers/media/i2c/cs3308.c
4017
4018 CS5535 Audio ALSA driver
4019 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4020 S:      Maintained
4021 F:      sound/pci/cs5535audio/
4022
4023 CSI DRIVERS FOR ALLWINNER V3s
4024 M:      Yong Deng <yong.deng@magewell.com>
4025 L:      linux-media@vger.kernel.org
4026 T:      git git://linuxtv.org/media_tree.git
4027 S:      Maintained
4028 F:      drivers/media/platform/sunxi/sun6i-csi/
4029 F:      Documentation/devicetree/bindings/media/sun6i-csi.txt
4030
4031 CW1200 WLAN driver
4032 M:      Solomon Peachy <pizza@shaftnet.org>
4033 S:      Maintained
4034 F:      drivers/net/wireless/st/cw1200/
4035
4036 CX18 VIDEO4LINUX DRIVER
4037 M:      Andy Walls <awalls@md.metrocast.net>
4038 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
4039 L:      linux-media@vger.kernel.org
4040 T:      git git://linuxtv.org/media_tree.git
4041 W:      https://linuxtv.org
4042 W:      http://www.ivtvdriver.org/index.php/Cx18
4043 S:      Maintained
4044 F:      Documentation/media/v4l-drivers/cx18*
4045 F:      drivers/media/pci/cx18/
4046 F:      include/uapi/linux/ivtv*
4047
4048 CX2341X MPEG ENCODER HELPER MODULE
4049 M:      Hans Verkuil <hverkuil@xs4all.nl>
4050 L:      linux-media@vger.kernel.org
4051 T:      git git://linuxtv.org/media_tree.git
4052 W:      https://linuxtv.org
4053 S:      Maintained
4054 F:      drivers/media/common/cx2341x*
4055 F:      include/media/drv-intf/cx2341x.h
4056
4057 CX24120 MEDIA DRIVER
4058 M:      Jemma Denson <jdenson@gmail.com>
4059 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4060 L:      linux-media@vger.kernel.org
4061 W:      https://linuxtv.org
4062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4063 S:      Maintained
4064 F:      drivers/media/dvb-frontends/cx24120*
4065
4066 CX88 VIDEO4LINUX DRIVER
4067 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4068 L:      linux-media@vger.kernel.org
4069 W:      https://linuxtv.org
4070 T:      git git://linuxtv.org/media_tree.git
4071 S:      Odd fixes
4072 F:      Documentation/media/v4l-drivers/cx88*
4073 F:      drivers/media/pci/cx88/
4074
4075 CXD2820R MEDIA DRIVER
4076 M:      Antti Palosaari <crope@iki.fi>
4077 L:      linux-media@vger.kernel.org
4078 W:      https://linuxtv.org
4079 W:      http://palosaari.fi/linux/
4080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4081 T:      git git://linuxtv.org/anttip/media_tree.git
4082 S:      Maintained
4083 F:      drivers/media/dvb-frontends/cxd2820r*
4084
4085 CXGB3 ETHERNET DRIVER (CXGB3)
4086 M:      Arjun Vynipadath <arjun@chelsio.com>
4087 L:      netdev@vger.kernel.org
4088 W:      http://www.chelsio.com
4089 S:      Supported
4090 F:      drivers/net/ethernet/chelsio/cxgb3/
4091
4092 CXGB3 ISCSI DRIVER (CXGB3I)
4093 M:      Karen Xie <kxie@chelsio.com>
4094 L:      linux-scsi@vger.kernel.org
4095 W:      http://www.chelsio.com
4096 S:      Supported
4097 F:      drivers/scsi/cxgbi/cxgb3i
4098
4099 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
4100 M:      Steve Wise <swise@chelsio.com>
4101 L:      linux-rdma@vger.kernel.org
4102 W:      http://www.openfabrics.org
4103 S:      Supported
4104 F:      drivers/infiniband/hw/cxgb3/
4105 F:      include/uapi/rdma/cxgb3-abi.h
4106
4107 CXGB4 CRYPTO DRIVER (chcr)
4108 M:      Harsh Jain <harsh@chelsio.com>
4109 L:      linux-crypto@vger.kernel.org
4110 W:      http://www.chelsio.com
4111 S:      Supported
4112 F:      drivers/crypto/chelsio
4113
4114 CXGB4 ETHERNET DRIVER (CXGB4)
4115 M:      Arjun Vynipadath <arjun@chelsio.com>
4116 L:      netdev@vger.kernel.org
4117 W:      http://www.chelsio.com
4118 S:      Supported
4119 F:      drivers/net/ethernet/chelsio/cxgb4/
4120
4121 CXGB4 ISCSI DRIVER (CXGB4I)
4122 M:      Karen Xie <kxie@chelsio.com>
4123 L:      linux-scsi@vger.kernel.org
4124 W:      http://www.chelsio.com
4125 S:      Supported
4126 F:      drivers/scsi/cxgbi/cxgb4i
4127
4128 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4129 M:      Steve Wise <swise@chelsio.com>
4130 L:      linux-rdma@vger.kernel.org
4131 W:      http://www.openfabrics.org
4132 S:      Supported
4133 F:      drivers/infiniband/hw/cxgb4/
4134 F:      include/uapi/rdma/cxgb4-abi.h
4135
4136 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4137 M:      Casey Leedom <leedom@chelsio.com>
4138 L:      netdev@vger.kernel.org
4139 W:      http://www.chelsio.com
4140 S:      Supported
4141 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4142
4143 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4144 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4145 M:      Andrew Donnellan <andrew.donnellan@au1.ibm.com>
4146 L:      linuxppc-dev@lists.ozlabs.org
4147 S:      Supported
4148 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4149 F:      drivers/misc/cxl/
4150 F:      include/misc/cxl*
4151 F:      include/uapi/misc/cxl.h
4152 F:      Documentation/powerpc/cxl.txt
4153 F:      Documentation/ABI/testing/sysfs-class-cxl
4154
4155 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4156 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4157 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4158 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4159 L:      linux-scsi@vger.kernel.org
4160 S:      Supported
4161 F:      drivers/scsi/cxlflash/
4162 F:      include/uapi/scsi/cxlflash_ioctl.h
4163 F:      Documentation/powerpc/cxlflash.txt
4164
4165 CYBERPRO FB DRIVER
4166 M:      Russell King <linux@armlinux.org.uk>
4167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4168 W:      http://www.armlinux.org.uk/
4169 S:      Maintained
4170 F:      drivers/video/fbdev/cyber2000fb.*
4171
4172 CYCLADES ASYNC MUX DRIVER
4173 W:      http://www.cyclades.com/
4174 S:      Orphan
4175 F:      drivers/tty/cyclades.c
4176 F:      include/linux/cyclades.h
4177 F:      include/uapi/linux/cyclades.h
4178
4179 CYCLADES PC300 DRIVER
4180 W:      http://www.cyclades.com/
4181 S:      Orphan
4182 F:      drivers/net/wan/pc300*
4183
4184 CYPRESS_FIRMWARE MEDIA DRIVER
4185 M:      Antti Palosaari <crope@iki.fi>
4186 L:      linux-media@vger.kernel.org
4187 W:      https://linuxtv.org
4188 W:      http://palosaari.fi/linux/
4189 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4190 T:      git git://linuxtv.org/anttip/media_tree.git
4191 S:      Maintained
4192 F:      drivers/media/common/cypress_firmware*
4193
4194 CYTTSP TOUCHSCREEN DRIVER
4195 M:      Ferruh Yigit <fery@cypress.com>
4196 L:      linux-input@vger.kernel.org
4197 S:      Supported
4198 F:      drivers/input/touchscreen/cyttsp*
4199 F:      include/linux/input/cyttsp.h
4200
4201 D-LINK DIR-685 TOUCHKEYS DRIVER
4202 M:      Linus Walleij <linus.walleij@linaro.org>
4203 L:      linux-input@vger.kernel.org
4204 S:      Supported
4205 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4206
4207 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4208 M:      Joshua Kinard <kumba@gentoo.org>
4209 S:      Maintained
4210 F:      drivers/rtc/rtc-ds1685.c
4211 F:      include/linux/rtc/ds1685.h
4212
4213 DAMA SLAVE for AX.25
4214 M:      Joerg Reuter <jreuter@yaina.de>
4215 W:      http://yaina.de/jreuter/
4216 W:      http://www.qsl.net/dl1bke/
4217 L:      linux-hams@vger.kernel.org
4218 S:      Maintained
4219 F:      net/ax25/af_ax25.c
4220 F:      net/ax25/ax25_dev.c
4221 F:      net/ax25/ax25_ds_*
4222 F:      net/ax25/ax25_in.c
4223 F:      net/ax25/ax25_out.c
4224 F:      net/ax25/ax25_timer.c
4225 F:      net/ax25/sysctl_net_ax25.c
4226
4227 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4228 L:      netdev@vger.kernel.org
4229 S:      Orphan
4230 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4231 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4232
4233 DC390/AM53C974 SCSI driver
4234 M:      Hannes Reinecke <hare@suse.com>
4235 L:      linux-scsi@vger.kernel.org
4236 S:      Maintained
4237 F:      drivers/scsi/am53c974.c
4238
4239 DC395x SCSI driver
4240 M:      Oliver Neukum <oliver@neukum.org>
4241 M:      Ali Akcaagac <aliakc@web.de>
4242 M:      Jamie Lenehan <lenehan@twibble.org>
4243 L:      dc395x@twibble.org
4244 W:      http://twibble.org/dist/dc395x/
4245 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4246 S:      Maintained
4247 F:      Documentation/scsi/dc395x.txt
4248 F:      drivers/scsi/dc395x.*
4249
4250 DCCP PROTOCOL
4251 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4252 L:      dccp@vger.kernel.org
4253 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4254 S:      Maintained
4255 F:      include/linux/dccp.h
4256 F:      include/uapi/linux/dccp.h
4257 F:      include/linux/tfrc.h
4258 F:      net/dccp/
4259
4260 DECnet NETWORK LAYER
4261 W:      http://linux-decnet.sourceforge.net
4262 L:      linux-decnet-user@lists.sourceforge.net
4263 S:      Orphan
4264 F:      Documentation/networking/decnet.txt
4265 F:      net/decnet/
4266
4267 DECSTATION PLATFORM SUPPORT
4268 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4269 L:      linux-mips@vger.kernel.org
4270 W:      http://www.linux-mips.org/wiki/DECstation
4271 S:      Maintained
4272 F:      arch/mips/dec/
4273 F:      arch/mips/include/asm/dec/
4274 F:      arch/mips/include/asm/mach-dec/
4275
4276 DEFXX FDDI NETWORK DRIVER
4277 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4278 S:      Maintained
4279 F:      drivers/net/fddi/defxx.*
4280
4281 DELL SMBIOS DRIVER
4282 M:      Pali Rohár <pali.rohar@gmail.com>
4283 M:      Mario Limonciello <mario.limonciello@dell.com>
4284 L:      platform-driver-x86@vger.kernel.org
4285 S:      Maintained
4286 F:      drivers/platform/x86/dell-smbios.*
4287
4288 DELL SMBIOS SMM DRIVER
4289 M:      Mario Limonciello <mario.limonciello@dell.com>
4290 L:      platform-driver-x86@vger.kernel.org
4291 S:      Maintained
4292 F:      drivers/platform/x86/dell-smbios-smm.c
4293
4294 DELL SMBIOS WMI DRIVER
4295 M:      Mario Limonciello <mario.limonciello@dell.com>
4296 L:      platform-driver-x86@vger.kernel.org
4297 S:      Maintained
4298 F:      drivers/platform/x86/dell-smbios-wmi.c
4299 F:      tools/wmi/dell-smbios-example.c
4300
4301 DEFZA FDDI NETWORK DRIVER
4302 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4303 S:      Maintained
4304 F:      drivers/net/fddi/defza.*
4305
4306 DELL LAPTOP DRIVER
4307 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4308 M:      Pali Rohár <pali.rohar@gmail.com>
4309 L:      platform-driver-x86@vger.kernel.org
4310 S:      Maintained
4311 F:      drivers/platform/x86/dell-laptop.c
4312
4313 DELL LAPTOP FREEFALL DRIVER
4314 M:      Pali Rohár <pali.rohar@gmail.com>
4315 S:      Maintained
4316 F:      drivers/platform/x86/dell-smo8800.c
4317
4318 DELL LAPTOP RBTN DRIVER
4319 M:      Pali Rohár <pali.rohar@gmail.com>
4320 S:      Maintained
4321 F:      drivers/platform/x86/dell-rbtn.*
4322
4323 DELL REMOTE BIOS UPDATE DRIVER
4324 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4325 L:      platform-driver-x86@vger.kernel.org
4326 S:      Maintained
4327 F:      drivers/platform/x86/dell_rbu.c
4328
4329 DELL LAPTOP SMM DRIVER
4330 M:      Pali Rohár <pali.rohar@gmail.com>
4331 S:      Maintained
4332 F:      drivers/hwmon/dell-smm-hwmon.c
4333 F:      include/uapi/linux/i8k.h
4334
4335 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4336 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4337 L:      platform-driver-x86@vger.kernel.org
4338 S:      Maintained
4339 F:      Documentation/dcdbas.txt
4340 F:      drivers/platform/x86/dcdbas.*
4341
4342 DELL WMI NOTIFICATIONS DRIVER
4343 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4344 M:      Pali Rohár <pali.rohar@gmail.com>
4345 S:      Maintained
4346 F:      drivers/platform/x86/dell-wmi.c
4347
4348 DELL WMI DESCRIPTOR DRIVER
4349 M:      Mario Limonciello <mario.limonciello@dell.com>
4350 S:      Maintained
4351 F:      drivers/platform/x86/dell-wmi-descriptor.c
4352
4353 DELTA ST MEDIA DRIVER
4354 M:      Hugues Fruchet <hugues.fruchet@st.com>
4355 L:      linux-media@vger.kernel.org
4356 T:      git git://linuxtv.org/media_tree.git
4357 W:      https://linuxtv.org
4358 S:      Supported
4359 F:      drivers/media/platform/sti/delta
4360
4361 DENALI NAND DRIVER
4362 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4363 L:      linux-mtd@lists.infradead.org
4364 S:      Supported
4365 F:      drivers/mtd/nand/raw/denali*
4366
4367 DESIGNWARE USB2 DRD IP DRIVER
4368 M:      Minas Harutyunyan <hminas@synopsys.com>
4369 L:      linux-usb@vger.kernel.org
4370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4371 S:      Maintained
4372 F:      drivers/usb/dwc2/
4373
4374 DESIGNWARE USB3 DRD IP DRIVER
4375 M:      Felipe Balbi <balbi@kernel.org>
4376 L:      linux-usb@vger.kernel.org
4377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4378 S:      Maintained
4379 F:      drivers/usb/dwc3/
4380
4381 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4382 M:      Andreas Klinger <ak@it-klinger.de>
4383 L:      linux-iio@vger.kernel.org
4384 S:      Maintained
4385 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4386 F:      drivers/iio/proximity/srf*.c
4387
4388 DEVICE COREDUMP (DEV_COREDUMP)
4389 M:      Johannes Berg <johannes@sipsolutions.net>
4390 L:      linux-kernel@vger.kernel.org
4391 S:      Maintained
4392 F:      drivers/base/devcoredump.c
4393 F:      include/linux/devcoredump.h
4394
4395 DEVICE FREQUENCY (DEVFREQ)
4396 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4397 M:      Kyungmin Park <kyungmin.park@samsung.com>
4398 R:      Chanwoo Choi <cw00.choi@samsung.com>
4399 L:      linux-pm@vger.kernel.org
4400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4401 S:      Maintained
4402 F:      drivers/devfreq/
4403 F:      include/linux/devfreq.h
4404 F:      Documentation/devicetree/bindings/devfreq/
4405
4406 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4407 M:      Chanwoo Choi <cw00.choi@samsung.com>
4408 L:      linux-pm@vger.kernel.org
4409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4410 S:      Supported
4411 F:      drivers/devfreq/event/
4412 F:      drivers/devfreq/devfreq-event.c
4413 F:      include/linux/devfreq-event.h
4414 F:      Documentation/devicetree/bindings/devfreq/event/
4415
4416 DEVICE NUMBER REGISTRY
4417 M:      Torben Mathiasen <device@lanana.org>
4418 W:      http://lanana.org/docs/device-list/index.html
4419 S:      Maintained
4420
4421 DEVICE-MAPPER  (LVM)
4422 M:      Alasdair Kergon <agk@redhat.com>
4423 M:      Mike Snitzer <snitzer@redhat.com>
4424 M:      dm-devel@redhat.com
4425 L:      dm-devel@redhat.com
4426 W:      http://sources.redhat.com/dm
4427 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4429 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4430 S:      Maintained
4431 F:      Documentation/device-mapper/
4432 F:      drivers/md/Makefile
4433 F:      drivers/md/Kconfig
4434 F:      drivers/md/dm*
4435 F:      drivers/md/persistent-data/
4436 F:      include/linux/device-mapper.h
4437 F:      include/linux/dm-*.h
4438 F:      include/uapi/linux/dm-*.h
4439
4440 DEVLINK
4441 M:      Jiri Pirko <jiri@mellanox.com>
4442 L:      netdev@vger.kernel.org
4443 S:      Supported
4444 F:      net/core/devlink.c
4445 F:      include/net/devlink.h
4446 F:      include/uapi/linux/devlink.h
4447
4448 DIALOG SEMICONDUCTOR DRIVERS
4449 M:      Support Opensource <support.opensource@diasemi.com>
4450 W:      http://www.dialog-semiconductor.com/products
4451 S:      Supported
4452 F:      Documentation/hwmon/da90??
4453 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4454 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4455 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4456 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4457 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4458 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4459 F:      drivers/gpio/gpio-da90??.c
4460 F:      drivers/hwmon/da90??-hwmon.c
4461 F:      drivers/iio/adc/da91??-*.c
4462 F:      drivers/input/misc/da90??_onkey.c
4463 F:      drivers/input/touchscreen/da9052_tsi.c
4464 F:      drivers/leds/leds-da90??.c
4465 F:      drivers/mfd/da903x.c
4466 F:      drivers/mfd/da90??-*.c
4467 F:      drivers/mfd/da91??-*.c
4468 F:      drivers/power/supply/da9052-battery.c
4469 F:      drivers/power/supply/da91??-*.c
4470 F:      drivers/regulator/da903x.c
4471 F:      drivers/regulator/da9???-regulator.[ch]
4472 F:      drivers/thermal/da90??-thermal.c
4473 F:      drivers/rtc/rtc-da90??.c
4474 F:      drivers/video/backlight/da90??_bl.c
4475 F:      drivers/watchdog/da90??_wdt.c
4476 F:      include/linux/mfd/da903x.h
4477 F:      include/linux/mfd/da9052/
4478 F:      include/linux/mfd/da9055/
4479 F:      include/linux/mfd/da9062/
4480 F:      include/linux/mfd/da9063/
4481 F:      include/linux/mfd/da9150/
4482 F:      include/linux/regulator/da9211.h
4483 F:      include/sound/da[79]*.h
4484 F:      sound/soc/codecs/da[79]*.[ch]
4485
4486 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4487 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4488 L:      linux-gpio@vger.kernel.org
4489 S:      Maintained
4490 F:      drivers/gpio/gpio-gpio-mm.c
4491
4492 DIOLAN U2C-12 I2C DRIVER
4493 M:      Guenter Roeck <linux@roeck-us.net>
4494 L:      linux-i2c@vger.kernel.org
4495 S:      Maintained
4496 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4497
4498 FILESYSTEM DIRECT ACCESS (DAX)
4499 M:      Matthew Wilcox <willy@infradead.org>
4500 M:      Ross Zwisler <zwisler@kernel.org>
4501 M:      Jan Kara <jack@suse.cz>
4502 L:      linux-fsdevel@vger.kernel.org
4503 S:      Supported
4504 F:      fs/dax.c
4505 F:      include/linux/dax.h
4506 F:      include/trace/events/fs_dax.h
4507
4508 DEVICE DIRECT ACCESS (DAX)
4509 M:      Dan Williams <dan.j.williams@intel.com>
4510 M:      Dave Jiang <dave.jiang@intel.com>
4511 M:      Ross Zwisler <zwisler@kernel.org>
4512 M:      Vishal Verma <vishal.l.verma@intel.com>
4513 L:      linux-nvdimm@lists.01.org
4514 S:      Supported
4515 F:      drivers/dax/
4516
4517 DIRECTORY NOTIFICATION (DNOTIFY)
4518 M:      Jan Kara <jack@suse.cz>
4519 R:      Amir Goldstein <amir73il@gmail.com>
4520 L:      linux-fsdevel@vger.kernel.org
4521 S:      Maintained
4522 F:      Documentation/filesystems/dnotify.txt
4523 F:      fs/notify/dnotify/
4524 F:      include/linux/dnotify.h
4525
4526 DISK GEOMETRY AND PARTITION HANDLING
4527 M:      Andries Brouwer <aeb@cwi.nl>
4528 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4529 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4530 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4531 S:      Maintained
4532
4533 DISKQUOTA
4534 M:      Jan Kara <jack@suse.com>
4535 S:      Maintained
4536 F:      Documentation/filesystems/quota.txt
4537 F:      fs/quota/
4538 F:      include/linux/quota*.h
4539 F:      include/uapi/linux/quota*.h
4540
4541 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4542 M:      Bernie Thompson <bernie@plugable.com>
4543 L:      linux-fbdev@vger.kernel.org
4544 S:      Maintained
4545 W:      http://plugable.com/category/projects/udlfb/
4546 F:      drivers/video/fbdev/udlfb.c
4547 F:      include/video/udlfb.h
4548 F:      Documentation/fb/udlfb.txt
4549
4550 DISTRIBUTED LOCK MANAGER (DLM)
4551 M:      Christine Caulfield <ccaulfie@redhat.com>
4552 M:      David Teigland <teigland@redhat.com>
4553 L:      cluster-devel@redhat.com
4554 W:      http://sources.redhat.com/cluster/
4555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4556 S:      Supported
4557 F:      fs/dlm/
4558
4559 DMA BUFFER SHARING FRAMEWORK
4560 M:      Sumit Semwal <sumit.semwal@linaro.org>
4561 S:      Maintained
4562 L:      linux-media@vger.kernel.org
4563 L:      dri-devel@lists.freedesktop.org
4564 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4565 F:      drivers/dma-buf/
4566 F:      include/linux/dma-buf*
4567 F:      include/linux/reservation.h
4568 F:      include/linux/*fence.h
4569 F:      Documentation/driver-api/dma-buf.rst
4570 T:      git git://anongit.freedesktop.org/drm/drm-misc
4571
4572 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4573 M:      Vinod Koul <vkoul@kernel.org>
4574 L:      dmaengine@vger.kernel.org
4575 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4576 S:      Maintained
4577 F:      drivers/dma/
4578 F:      include/linux/dmaengine.h
4579 F:      include/linux/of_dma.h
4580 F:      Documentation/devicetree/bindings/dma/
4581 F:      Documentation/driver-api/dmaengine/
4582 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4583
4584 DMA MAPPING HELPERS
4585 M:      Christoph Hellwig <hch@lst.de>
4586 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4587 R:      Robin Murphy <robin.murphy@arm.com>
4588 L:      iommu@lists.linux-foundation.org
4589 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4590 W:      http://git.infradead.org/users/hch/dma-mapping.git
4591 S:      Supported
4592 F:      kernel/dma/
4593 F:      include/asm-generic/dma-mapping.h
4594 F:      include/linux/dma-direct.h
4595 F:      include/linux/dma-mapping.h
4596 F:      include/linux/dma-noncoherent.h
4597
4598 DME1737 HARDWARE MONITOR DRIVER
4599 M:      Juerg Haefliger <juergh@gmail.com>
4600 L:      linux-hwmon@vger.kernel.org
4601 S:      Maintained
4602 F:      Documentation/hwmon/dme1737
4603 F:      drivers/hwmon/dme1737.c
4604
4605 DMI/SMBIOS SUPPORT
4606 M:      Jean Delvare <jdelvare@suse.com>
4607 S:      Maintained
4608 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4609 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4610 F:      drivers/firmware/dmi-id.c
4611 F:      drivers/firmware/dmi_scan.c
4612 F:      include/linux/dmi.h
4613
4614 DOCUMENTATION
4615 M:      Jonathan Corbet <corbet@lwn.net>
4616 L:      linux-doc@vger.kernel.org
4617 S:      Maintained
4618 F:      Documentation/
4619 F:      scripts/kernel-doc
4620 X:      Documentation/ABI/
4621 X:      Documentation/acpi/
4622 X:      Documentation/devicetree/
4623 X:      Documentation/i2c/
4624 X:      Documentation/media/
4625 X:      Documentation/power/
4626 X:      Documentation/spi/
4627 T:      git git://git.lwn.net/linux.git docs-next
4628
4629 DOCUMENTATION/ITALIAN
4630 M:      Federico Vaga <federico.vaga@vaga.pv.it>
4631 L:      linux-doc@vger.kernel.org
4632 S:      Maintained
4633 F:      Documentation/translations/it_IT
4634
4635 DONGWOON DW9714 LENS VOICE COIL DRIVER
4636 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
4637 L:      linux-media@vger.kernel.org
4638 T:      git git://linuxtv.org/media_tree.git
4639 S:      Maintained
4640 F:      drivers/media/i2c/dw9714.c
4641 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
4642
4643 DONGWOON DW9807 LENS VOICE COIL DRIVER
4644 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
4645 L:      linux-media@vger.kernel.org
4646 T:      git git://linuxtv.org/media_tree.git
4647 S:      Maintained
4648 F:      drivers/media/i2c/dw9807-vcm.c
4649 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
4650
4651 DOUBLETALK DRIVER
4652 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
4653 L:      blinux-list@redhat.com
4654 S:      Maintained
4655 F:      drivers/char/dtlk.c
4656 F:      include/linux/dtlk.h
4657
4658 DPAA2 DATAPATH I/O (DPIO) DRIVER
4659 M:      Roy Pledge <Roy.Pledge@nxp.com>
4660 L:      linux-kernel@vger.kernel.org
4661 S:      Maintained
4662 F:      drivers/soc/fsl/dpio
4663
4664 DPAA2 ETHERNET DRIVER
4665 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
4666 L:      netdev@vger.kernel.org
4667 S:      Maintained
4668 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
4669 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
4670 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
4671 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
4672 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
4673
4674 DPAA2 ETHERNET SWITCH DRIVER
4675 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
4676 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
4677 L:      linux-kernel@vger.kernel.org
4678 S:      Maintained
4679 F:      drivers/staging/fsl-dpaa2/ethsw
4680
4681 DPAA2 PTP CLOCK DRIVER
4682 M:      Yangbo Lu <yangbo.lu@nxp.com>
4683 L:      netdev@vger.kernel.org
4684 S:      Maintained
4685 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
4686 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
4687
4688 DPT_I2O SCSI RAID DRIVER
4689 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
4690 L:      linux-scsi@vger.kernel.org
4691 W:      http://www.adaptec.com/
4692 S:      Maintained
4693 F:      drivers/scsi/dpt*
4694 F:      drivers/scsi/dpt/
4695
4696 DRBD DRIVER
4697 M:      Philipp Reisner <philipp.reisner@linbit.com>
4698 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
4699 L:      drbd-dev@lists.linbit.com
4700 W:      http://www.drbd.org
4701 T:      git git://git.linbit.com/linux-drbd.git
4702 T:      git git://git.linbit.com/drbd-8.4.git
4703 S:      Supported
4704 F:      drivers/block/drbd/
4705 F:      lib/lru_cache.c
4706 F:      Documentation/blockdev/drbd/
4707
4708 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4709 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4710 R:      "Rafael J. Wysocki" <rafael@kernel.org>
4711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4712 S:      Supported
4713 F:      Documentation/kobject.txt
4714 F:      drivers/base/
4715 F:      fs/debugfs/
4716 F:      fs/sysfs/
4717 F:      include/linux/debugfs.h
4718 F:      include/linux/kobj*
4719 F:      lib/kobj*
4720
4721 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
4722 M:      Kevin Hilman <khilman@kernel.org>
4723 M:      Nishanth Menon <nm@ti.com>
4724 S:      Maintained
4725 F:      drivers/power/avs/
4726 F:      include/linux/power/smartreflex.h
4727 L:      linux-pm@vger.kernel.org
4728
4729 DRM DRIVER FOR ARM PL111 CLCD
4730 M:      Eric Anholt <eric@anholt.net>
4731 T:      git git://anongit.freedesktop.org/drm/drm-misc
4732 S:      Supported
4733 F:      drivers/gpu/drm/pl111/
4734
4735 DRM DRIVER FOR ARM VERSATILE TFT PANELS
4736 M:      Linus Walleij <linus.walleij@linaro.org>
4737 T:      git git://anongit.freedesktop.org/drm/drm-misc
4738 S:      Maintained
4739 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
4740 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
4741
4742 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4743 M:      Dave Airlie <airlied@redhat.com>
4744 S:      Odd Fixes
4745 F:      drivers/gpu/drm/ast/
4746
4747 DRM DRIVER FOR BOCHS VIRTUAL GPU
4748 M:      Gerd Hoffmann <kraxel@redhat.com>
4749 L:      virtualization@lists.linux-foundation.org
4750 T:      git git://anongit.freedesktop.org/drm/drm-misc
4751 S:      Maintained
4752 F:      drivers/gpu/drm/bochs/
4753
4754 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
4755 M:      Linus Walleij <linus.walleij@linaro.org>
4756 T:      git git://anongit.freedesktop.org/drm/drm-misc
4757 S:      Maintained
4758 F:      drivers/gpu/drm/tve200/
4759
4760 DRM DRIVER FOR ILITEK ILI9225 PANELS
4761 M:      David Lechner <david@lechnology.com>
4762 S:      Maintained
4763 F:      drivers/gpu/drm/tinydrm/ili9225.c
4764 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
4765
4766 DRM DRIVER FOR HX8357D PANELS
4767 M:      Eric Anholt <eric@anholt.net>
4768 T:      git git://anongit.freedesktop.org/drm/drm-misc
4769 S:      Maintained
4770 F:      drivers/gpu/drm/tinydrm/hx8357d.c
4771 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
4772
4773 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4774 S:      Orphan / Obsolete
4775 F:      drivers/gpu/drm/i810/
4776 F:      include/uapi/drm/i810_drm.h
4777
4778 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4779 S:      Orphan / Obsolete
4780 F:      drivers/gpu/drm/mga/
4781 F:      include/uapi/drm/mga_drm.h
4782
4783 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4784 M:      Dave Airlie <airlied@redhat.com>
4785 S:      Odd Fixes
4786 F:      drivers/gpu/drm/mgag200/
4787
4788 DRM DRIVER FOR MI0283QT
4789 M:      Noralf Trønnes <noralf@tronnes.org>
4790 S:      Maintained
4791 F:      drivers/gpu/drm/tinydrm/mi0283qt.c
4792 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
4793
4794 DRM DRIVER FOR MSM ADRENO GPU
4795 M:      Rob Clark <robdclark@gmail.com>
4796 L:      linux-arm-msm@vger.kernel.org
4797 L:      dri-devel@lists.freedesktop.org
4798 L:      freedreno@lists.freedesktop.org
4799 T:      git git://people.freedesktop.org/~robclark/linux
4800 S:      Maintained
4801 F:      drivers/gpu/drm/msm/
4802 F:      include/uapi/drm/msm_drm.h
4803 F:      Documentation/devicetree/bindings/display/msm/
4804
4805 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4806 M:      Ben Skeggs <bskeggs@redhat.com>
4807 L:      dri-devel@lists.freedesktop.org
4808 L:      nouveau@lists.freedesktop.org
4809 T:      git git://github.com/skeggsb/linux
4810 S:      Supported
4811 F:      drivers/gpu/drm/nouveau/
4812 F:      include/uapi/drm/nouveau_drm.h
4813
4814 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
4815 M:      Stefan Mavrodiev <stefan@olimex.com>
4816 S:      Maintained
4817 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
4818 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
4819
4820 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
4821 M:      Noralf Trønnes <noralf@tronnes.org>
4822 S:      Maintained
4823 F:      drivers/gpu/drm/tinydrm/repaper.c
4824 F:      Documentation/devicetree/bindings/display/repaper.txt
4825
4826 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4827 M:      Dave Airlie <airlied@redhat.com>
4828 M:      Gerd Hoffmann <kraxel@redhat.com>
4829 L:      virtualization@lists.linux-foundation.org
4830 T:      git git://anongit.freedesktop.org/drm/drm-misc
4831 S:      Obsolete
4832 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
4833 F:      drivers/gpu/drm/cirrus/
4834
4835 DRM DRIVER FOR QXL VIRTUAL GPU
4836 M:      Dave Airlie <airlied@redhat.com>
4837 M:      Gerd Hoffmann <kraxel@redhat.com>
4838 L:      virtualization@lists.linux-foundation.org
4839 T:      git git://anongit.freedesktop.org/drm/drm-misc
4840 S:      Maintained
4841 F:      drivers/gpu/drm/qxl/
4842 F:      include/uapi/drm/qxl_drm.h
4843
4844 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4845 S:      Orphan / Obsolete
4846 F:      drivers/gpu/drm/r128/
4847 F:      include/uapi/drm/r128_drm.h
4848
4849 DRM DRIVER FOR SAVAGE VIDEO CARDS
4850 S:      Orphan / Obsolete
4851 F:      drivers/gpu/drm/savage/
4852 F:      include/uapi/drm/savage_drm.h
4853
4854 DRM DRIVER FOR SIS VIDEO CARDS
4855 S:      Orphan / Obsolete
4856 F:      drivers/gpu/drm/sis/
4857 F:      include/uapi/drm/sis_drm.h
4858
4859 DRM DRIVER FOR SITRONIX ST7586 PANELS
4860 M:      David Lechner <david@lechnology.com>
4861 S:      Maintained
4862 F:      drivers/gpu/drm/tinydrm/st7586.c
4863 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
4864
4865 DRM DRIVER FOR SITRONIX ST7735R PANELS
4866 M:      David Lechner <david@lechnology.com>
4867 S:      Maintained
4868 F:      drivers/gpu/drm/tinydrm/st7735r.c
4869 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.txt
4870
4871 DRM DRIVER FOR TDFX VIDEO CARDS
4872 S:      Orphan / Obsolete
4873 F:      drivers/gpu/drm/tdfx/
4874
4875 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4876 M:      Dave Airlie <airlied@redhat.com>
4877 R:      Sean Paul <sean@poorly.run>
4878 L:      dri-devel@lists.freedesktop.org
4879 S:      Odd Fixes
4880 F:      drivers/gpu/drm/udl/
4881 T:      git git://anongit.freedesktop.org/drm/drm-misc
4882
4883 DRM DRIVER FOR VMWARE VIRTUAL GPU
4884 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4885 M:      Thomas Hellstrom <thellstrom@vmware.com>
4886 L:      dri-devel@lists.freedesktop.org
4887 T:      git git://people.freedesktop.org/~thomash/linux
4888 S:      Supported
4889 F:      drivers/gpu/drm/vmwgfx/
4890 F:      include/uapi/drm/vmwgfx_drm.h
4891
4892 DRM DRIVERS
4893 M:      David Airlie <airlied@linux.ie>
4894 M:      Daniel Vetter <daniel@ffwll.ch>
4895 L:      dri-devel@lists.freedesktop.org
4896 T:      git git://anongit.freedesktop.org/drm/drm
4897 B:      https://bugs.freedesktop.org/
4898 C:      irc://chat.freenode.net/dri-devel
4899 S:      Maintained
4900 F:      drivers/gpu/drm/
4901 F:      drivers/gpu/vga/
4902 F:      Documentation/devicetree/bindings/display/
4903 F:      Documentation/devicetree/bindings/gpu/
4904 F:      Documentation/gpu/
4905 F:      include/drm/
4906 F:      include/uapi/drm/
4907 F:      include/linux/vga*
4908
4909 DRM DRIVERS AND MISC GPU PATCHES
4910 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
4911 M:      Maxime Ripard <maxime.ripard@bootlin.com>
4912 M:      Sean Paul <sean@poorly.run>
4913 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
4914 S:      Maintained
4915 T:      git git://anongit.freedesktop.org/drm/drm-misc
4916 F:      Documentation/gpu/
4917 F:      drivers/gpu/vga/
4918 F:      drivers/gpu/drm/*
4919 F:      include/drm/drm*
4920 F:      include/uapi/drm/drm*
4921 F:      include/linux/vga*
4922
4923 DRM DRIVERS FOR ALLWINNER A10
4924 M:      Maxime Ripard  <maxime.ripard@bootlin.com>
4925 L:      dri-devel@lists.freedesktop.org
4926 S:      Supported
4927 F:      drivers/gpu/drm/sun4i/
4928 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4929 T:      git git://anongit.freedesktop.org/drm/drm-misc
4930
4931 DRM DRIVERS FOR AMLOGIC SOCS
4932 M:      Neil Armstrong <narmstrong@baylibre.com>
4933 L:      dri-devel@lists.freedesktop.org
4934 L:      linux-amlogic@lists.infradead.org
4935 W:      http://linux-meson.com/
4936 S:      Supported
4937 F:      drivers/gpu/drm/meson/
4938 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
4939 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
4940 F:      Documentation/gpu/meson.rst
4941 T:      git git://anongit.freedesktop.org/drm/drm-misc
4942
4943 DRM DRIVERS FOR ATMEL HLCDC
4944 M:      Boris Brezillon <bbrezillon@kernel.org>
4945 L:      dri-devel@lists.freedesktop.org
4946 S:      Supported
4947 F:      drivers/gpu/drm/atmel-hlcdc/
4948 F:      Documentation/devicetree/bindings/display/atmel/
4949 T:      git git://anongit.freedesktop.org/drm/drm-misc
4950
4951 DRM DRIVERS FOR BRIDGE CHIPS
4952 M:      Archit Taneja <architt@codeaurora.org>
4953 M:      Andrzej Hajda <a.hajda@samsung.com>
4954 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
4955 S:      Maintained
4956 T:      git git://anongit.freedesktop.org/drm/drm-misc
4957 F:      drivers/gpu/drm/bridge/
4958
4959 DRM DRIVERS FOR EXYNOS
4960 M:      Inki Dae <inki.dae@samsung.com>
4961 M:      Joonyoung Shim <jy0922.shim@samsung.com>
4962 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
4963 M:      Kyungmin Park <kyungmin.park@samsung.com>
4964 L:      dri-devel@lists.freedesktop.org
4965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4966 S:      Supported
4967 F:      drivers/gpu/drm/exynos/
4968 F:      include/uapi/drm/exynos_drm.h
4969 F:      Documentation/devicetree/bindings/display/exynos/
4970
4971 DRM DRIVERS FOR FREESCALE DCU
4972 M:      Stefan Agner <stefan@agner.ch>
4973 M:      Alison Wang <alison.wang@nxp.com>
4974 L:      dri-devel@lists.freedesktop.org
4975 S:      Supported
4976 F:      drivers/gpu/drm/fsl-dcu/
4977 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
4978 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
4979 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19-05b.txt
4980 T:      git git://anongit.freedesktop.org/drm/drm-misc
4981
4982 DRM DRIVERS FOR FREESCALE IMX
4983 M:      Philipp Zabel <p.zabel@pengutronix.de>
4984 L:      dri-devel@lists.freedesktop.org
4985 S:      Maintained
4986 F:      drivers/gpu/drm/imx/
4987 F:      drivers/gpu/ipu-v3/
4988 F:      Documentation/devicetree/bindings/display/imx/
4989
4990 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4991 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4992 L:      dri-devel@lists.freedesktop.org
4993 T:      git git://github.com/patjak/drm-gma500
4994 S:      Maintained
4995 F:      drivers/gpu/drm/gma500/
4996
4997 DRM DRIVERS FOR HISILICON
4998 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
4999 M:      Rongrong Zou <zourongrong@gmail.com>
5000 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5001 R:      Chen Feng <puck.chen@hisilicon.com>
5002 L:      dri-devel@lists.freedesktop.org
5003 T:      git git://github.com/xin3liang/linux.git
5004 S:      Maintained
5005 F:      drivers/gpu/drm/hisilicon/
5006 F:      Documentation/devicetree/bindings/display/hisilicon/
5007
5008 DRM DRIVERS FOR MEDIATEK
5009 M:      CK Hu <ck.hu@mediatek.com>
5010 M:      Philipp Zabel <p.zabel@pengutronix.de>
5011 L:      dri-devel@lists.freedesktop.org
5012 S:      Supported
5013 F:      drivers/gpu/drm/mediatek/
5014 F:      Documentation/devicetree/bindings/display/mediatek/
5015
5016 DRM DRIVERS FOR NVIDIA TEGRA
5017 M:      Thierry Reding <thierry.reding@gmail.com>
5018 L:      dri-devel@lists.freedesktop.org
5019 L:      linux-tegra@vger.kernel.org
5020 T:      git git://anongit.freedesktop.org/tegra/linux.git
5021 S:      Supported
5022 F:      drivers/gpu/drm/tegra/
5023 F:      drivers/gpu/host1x/
5024 F:      include/linux/host1x.h
5025 F:      include/uapi/drm/tegra_drm.h
5026 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5027
5028 DRM DRIVERS FOR RENESAS
5029 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5030 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5031 L:      dri-devel@lists.freedesktop.org
5032 L:      linux-renesas-soc@vger.kernel.org
5033 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5034 S:      Supported
5035 F:      drivers/gpu/drm/rcar-du/
5036 F:      drivers/gpu/drm/shmobile/
5037 F:      include/linux/platform_data/shmob_drm.h
5038 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5039 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5040 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5041
5042 DRM DRIVERS FOR ROCKCHIP
5043 M:      Sandy Huang <hjc@rock-chips.com>
5044 M:      Heiko Stübner <heiko@sntech.de>
5045 L:      dri-devel@lists.freedesktop.org
5046 S:      Maintained
5047 F:      drivers/gpu/drm/rockchip/
5048 F:      Documentation/devicetree/bindings/display/rockchip/
5049 T:      git git://anongit.freedesktop.org/drm/drm-misc
5050
5051 DRM DRIVERS FOR STI
5052 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5053 M:      Vincent Abriou <vincent.abriou@st.com>
5054 L:      dri-devel@lists.freedesktop.org
5055 T:      git git://anongit.freedesktop.org/drm/drm-misc
5056 S:      Maintained
5057 F:      drivers/gpu/drm/sti
5058 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5059
5060 DRM DRIVERS FOR STM
5061 M:      Yannick Fertre <yannick.fertre@st.com>
5062 M:      Philippe Cornu <philippe.cornu@st.com>
5063 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5064 M:      Vincent Abriou <vincent.abriou@st.com>
5065 L:      dri-devel@lists.freedesktop.org
5066 T:      git git://anongit.freedesktop.org/drm/drm-misc
5067 S:      Maintained
5068 F:      drivers/gpu/drm/stm
5069 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
5070
5071 DRM DRIVERS FOR TI LCDC
5072 M:      Jyri Sarha <jsarha@ti.com>
5073 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5074 L:      dri-devel@lists.freedesktop.org
5075 S:      Maintained
5076 F:      drivers/gpu/drm/tilcdc/
5077 F:      Documentation/devicetree/bindings/display/tilcdc/
5078
5079 DRM DRIVERS FOR TI OMAP
5080 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5081 L:      dri-devel@lists.freedesktop.org
5082 S:      Maintained
5083 F:      drivers/gpu/drm/omapdrm/
5084 F:      Documentation/devicetree/bindings/display/ti/
5085
5086 DRM DRIVERS FOR V3D
5087 M:      Eric Anholt <eric@anholt.net>
5088 S:      Supported
5089 F:      drivers/gpu/drm/v3d/
5090 F:      include/uapi/drm/v3d_drm.h
5091 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5092 T:      git git://anongit.freedesktop.org/drm/drm-misc
5093
5094 DRM DRIVERS FOR VC4
5095 M:      Eric Anholt <eric@anholt.net>
5096 T:      git git://github.com/anholt/linux
5097 S:      Supported
5098 F:      drivers/gpu/drm/vc4/
5099 F:      include/uapi/drm/vc4_drm.h
5100 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5101 T:      git git://anongit.freedesktop.org/drm/drm-misc
5102
5103 DRM DRIVERS FOR VIVANTE GPU IP
5104 M:      Lucas Stach <l.stach@pengutronix.de>
5105 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5106 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5107 L:      etnaviv@lists.freedesktop.org
5108 L:      dri-devel@lists.freedesktop.org
5109 S:      Maintained
5110 F:      drivers/gpu/drm/etnaviv/
5111 F:      include/uapi/drm/etnaviv_drm.h
5112 F:      Documentation/devicetree/bindings/display/etnaviv/
5113
5114 DRM DRIVERS FOR ZTE ZX
5115 M:      Shawn Guo <shawnguo@kernel.org>
5116 L:      dri-devel@lists.freedesktop.org
5117 S:      Maintained
5118 F:      drivers/gpu/drm/zte/
5119 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5120 T:      git git://anongit.freedesktop.org/drm/drm-misc
5121
5122 DRM PANEL DRIVERS
5123 M:      Thierry Reding <thierry.reding@gmail.com>
5124 L:      dri-devel@lists.freedesktop.org
5125 T:      git git://anongit.freedesktop.org/drm/drm-misc
5126 S:      Maintained
5127 F:      drivers/gpu/drm/drm_panel.c
5128 F:      drivers/gpu/drm/panel/
5129 F:      include/drm/drm_panel.h
5130 F:      Documentation/devicetree/bindings/display/panel/
5131
5132 DRM TINYDRM DRIVERS
5133 M:      Noralf Trønnes <noralf@tronnes.org>
5134 W:      https://github.com/notro/tinydrm/wiki/Development
5135 T:      git git://anongit.freedesktop.org/drm/drm-misc
5136 S:      Maintained
5137 F:      drivers/gpu/drm/tinydrm/
5138 F:      include/drm/tinydrm/
5139
5140 DRM DRIVERS FOR XEN
5141 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5142 T:      git git://anongit.freedesktop.org/drm/drm-misc
5143 L:      dri-devel@lists.freedesktop.org
5144 L:      xen-devel@lists.xen.org
5145 S:      Supported
5146 F:      drivers/gpu/drm/xen/
5147 F:      Documentation/gpu/xen-front.rst
5148
5149 DRM TTM SUBSYSTEM
5150 M:      Christian Koenig <christian.koenig@amd.com>
5151 M:      Huang Rui <ray.huang@amd.com>
5152 M:      Junwei Zhang <Jerry.Zhang@amd.com>
5153 T:      git git://people.freedesktop.org/~agd5f/linux
5154 S:      Maintained
5155 L:      dri-devel@lists.freedesktop.org
5156 F:      include/drm/ttm/
5157 F:      drivers/gpu/drm/ttm/
5158
5159 DSBR100 USB FM RADIO DRIVER
5160 M:      Alexey Klimov <klimov.linux@gmail.com>
5161 L:      linux-media@vger.kernel.org
5162 T:      git git://linuxtv.org/media_tree.git
5163 S:      Maintained
5164 F:      drivers/media/radio/dsbr100.c
5165
5166 DSCC4 DRIVER
5167 M:      Francois Romieu <romieu@fr.zoreil.com>
5168 L:      netdev@vger.kernel.org
5169 S:      Maintained
5170 F:      drivers/net/wan/dscc4.c
5171
5172 DT3155 MEDIA DRIVER
5173 M:      Hans Verkuil <hverkuil@xs4all.nl>
5174 L:      linux-media@vger.kernel.org
5175 T:      git git://linuxtv.org/media_tree.git
5176 W:      https://linuxtv.org
5177 S:      Odd Fixes
5178 F:      drivers/media/pci/dt3155/
5179
5180 DVB_USB_AF9015 MEDIA DRIVER
5181 M:      Antti Palosaari <crope@iki.fi>
5182 L:      linux-media@vger.kernel.org
5183 W:      https://linuxtv.org
5184 W:      http://palosaari.fi/linux/
5185 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5186 T:      git git://linuxtv.org/anttip/media_tree.git
5187 S:      Maintained
5188 F:      drivers/media/usb/dvb-usb-v2/af9015*
5189
5190 DVB_USB_AF9035 MEDIA DRIVER
5191 M:      Antti Palosaari <crope@iki.fi>
5192 L:      linux-media@vger.kernel.org
5193 W:      https://linuxtv.org
5194 W:      http://palosaari.fi/linux/
5195 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5196 T:      git git://linuxtv.org/anttip/media_tree.git
5197 S:      Maintained
5198 F:      drivers/media/usb/dvb-usb-v2/af9035*
5199
5200 DVB_USB_ANYSEE MEDIA DRIVER
5201 M:      Antti Palosaari <crope@iki.fi>
5202 L:      linux-media@vger.kernel.org
5203 W:      https://linuxtv.org
5204 W:      http://palosaari.fi/linux/
5205 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5206 T:      git git://linuxtv.org/anttip/media_tree.git
5207 S:      Maintained
5208 F:      drivers/media/usb/dvb-usb-v2/anysee*
5209
5210 DVB_USB_AU6610 MEDIA DRIVER
5211 M:      Antti Palosaari <crope@iki.fi>
5212 L:      linux-media@vger.kernel.org
5213 W:      https://linuxtv.org
5214 W:      http://palosaari.fi/linux/
5215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5216 T:      git git://linuxtv.org/anttip/media_tree.git
5217 S:      Maintained
5218 F:      drivers/media/usb/dvb-usb-v2/au6610*
5219
5220 DVB_USB_CE6230 MEDIA DRIVER
5221 M:      Antti Palosaari <crope@iki.fi>
5222 L:      linux-media@vger.kernel.org
5223 W:      https://linuxtv.org
5224 W:      http://palosaari.fi/linux/
5225 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5226 T:      git git://linuxtv.org/anttip/media_tree.git
5227 S:      Maintained
5228 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5229
5230 DVB_USB_CXUSB MEDIA DRIVER
5231 M:      Michael Krufky <mkrufky@linuxtv.org>
5232 L:      linux-media@vger.kernel.org
5233 W:      https://linuxtv.org
5234 W:      http://github.com/mkrufky
5235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5236 T:      git git://linuxtv.org/media_tree.git
5237 S:      Maintained
5238 F:      drivers/media/usb/dvb-usb/cxusb*
5239
5240 DVB_USB_EC168 MEDIA DRIVER
5241 M:      Antti Palosaari <crope@iki.fi>
5242 L:      linux-media@vger.kernel.org
5243 W:      https://linuxtv.org
5244 W:      http://palosaari.fi/linux/
5245 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5246 T:      git git://linuxtv.org/anttip/media_tree.git
5247 S:      Maintained
5248 F:      drivers/media/usb/dvb-usb-v2/ec168*
5249
5250 DVB_USB_GL861 MEDIA DRIVER
5251 M:      Antti Palosaari <crope@iki.fi>
5252 L:      linux-media@vger.kernel.org
5253 W:      https://linuxtv.org
5254 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5255 T:      git git://linuxtv.org/anttip/media_tree.git
5256 S:      Maintained
5257 F:      drivers/media/usb/dvb-usb-v2/gl861*
5258
5259 DVB_USB_MXL111SF MEDIA DRIVER
5260 M:      Michael Krufky <mkrufky@linuxtv.org>
5261 L:      linux-media@vger.kernel.org
5262 W:      https://linuxtv.org
5263 W:      http://github.com/mkrufky
5264 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5265 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5266 S:      Maintained
5267 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5268
5269 DVB_USB_RTL28XXU MEDIA DRIVER
5270 M:      Antti Palosaari <crope@iki.fi>
5271 L:      linux-media@vger.kernel.org
5272 W:      https://linuxtv.org
5273 W:      http://palosaari.fi/linux/
5274 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5275 T:      git git://linuxtv.org/anttip/media_tree.git
5276 S:      Maintained
5277 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5278
5279 DVB_USB_V2 MEDIA DRIVER
5280 M:      Antti Palosaari <crope@iki.fi>
5281 L:      linux-media@vger.kernel.org
5282 W:      https://linuxtv.org
5283 W:      http://palosaari.fi/linux/
5284 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5285 T:      git git://linuxtv.org/anttip/media_tree.git
5286 S:      Maintained
5287 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5288 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5289
5290 DYNAMIC DEBUG
5291 M:      Jason Baron <jbaron@akamai.com>
5292 S:      Maintained
5293 F:      lib/dynamic_debug.c
5294 F:      include/linux/dynamic_debug.h
5295
5296 DYNAMIC INTERRUPT MODERATION
5297 M:      Tal Gilboa <talgi@mellanox.com>
5298 S:      Maintained
5299 F:      include/linux/net_dim.h
5300
5301 DZ DECSTATION DZ11 SERIAL DRIVER
5302 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
5303 S:      Maintained
5304 F:      drivers/tty/serial/dz.*
5305
5306 E3X0 POWER BUTTON DRIVER
5307 M:      Moritz Fischer <moritz.fischer@ettus.com>
5308 L:      usrp-users@lists.ettus.com
5309 W:      http://www.ettus.com
5310 S:      Supported
5311 F:      drivers/input/misc/e3x0-button.c
5312 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5313
5314 E4000 MEDIA DRIVER
5315 M:      Antti Palosaari <crope@iki.fi>
5316 L:      linux-media@vger.kernel.org
5317 W:      https://linuxtv.org
5318 W:      http://palosaari.fi/linux/
5319 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5320 T:      git git://linuxtv.org/anttip/media_tree.git
5321 S:      Maintained
5322 F:      drivers/media/tuners/e4000*
5323
5324 EARTH_PT1 MEDIA DRIVER
5325 M:      Akihiro Tsukada <tskd08@gmail.com>
5326 L:      linux-media@vger.kernel.org
5327 S:      Odd Fixes
5328 F:      drivers/media/pci/pt1/
5329
5330 EARTH_PT3 MEDIA DRIVER
5331 M:      Akihiro Tsukada <tskd08@gmail.com>
5332 L:      linux-media@vger.kernel.org
5333 S:      Odd Fixes
5334 F:      drivers/media/pci/pt3/
5335
5336 EC100 MEDIA DRIVER
5337 M:      Antti Palosaari <crope@iki.fi>
5338 L:      linux-media@vger.kernel.org
5339 W:      https://linuxtv.org
5340 W:      http://palosaari.fi/linux/
5341 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5342 T:      git git://linuxtv.org/anttip/media_tree.git
5343 S:      Maintained
5344 F:      drivers/media/dvb-frontends/ec100*
5345
5346 ECRYPT FILE SYSTEM
5347 M:      Tyler Hicks <tyhicks@canonical.com>
5348 L:      ecryptfs@vger.kernel.org
5349 W:      http://ecryptfs.org
5350 W:      https://launchpad.net/ecryptfs
5351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5352 S:      Supported
5353 F:      Documentation/filesystems/ecryptfs.txt
5354 F:      fs/ecryptfs/
5355
5356 EDAC-AMD64
5357 M:      Borislav Petkov <bp@alien8.de>
5358 L:      linux-edac@vger.kernel.org
5359 S:      Maintained
5360 F:      drivers/edac/amd64_edac*
5361
5362 EDAC-CALXEDA
5363 M:      Robert Richter <rric@kernel.org>
5364 L:      linux-edac@vger.kernel.org
5365 S:      Maintained
5366 F:      drivers/edac/highbank*
5367
5368 EDAC-CAVIUM OCTEON
5369 M:      Ralf Baechle <ralf@linux-mips.org>
5370 M:      David Daney <david.daney@cavium.com>
5371 L:      linux-edac@vger.kernel.org
5372 L:      linux-mips@vger.kernel.org
5373 S:      Supported
5374 F:      drivers/edac/octeon_edac*
5375
5376 EDAC-CAVIUM THUNDERX
5377 M:      David Daney <david.daney@cavium.com>
5378 M:      Jan Glauber <jglauber@cavium.com>
5379 L:      linux-edac@vger.kernel.org
5380 S:      Supported
5381 F:      drivers/edac/thunderx_edac*
5382
5383 EDAC-CORE
5384 M:      Borislav Petkov <bp@alien8.de>
5385 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5386 L:      linux-edac@vger.kernel.org
5387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
5388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
5389 S:      Supported
5390 F:      Documentation/admin-guide/ras.rst
5391 F:      Documentation/driver-api/edac.rst
5392 F:      drivers/edac/
5393 F:      include/linux/edac.h
5394
5395 EDAC-E752X
5396 M:      Mark Gross <mark.gross@intel.com>
5397 L:      linux-edac@vger.kernel.org
5398 S:      Maintained
5399 F:      drivers/edac/e752x_edac.c
5400
5401 EDAC-E7XXX
5402 L:      linux-edac@vger.kernel.org
5403 S:      Maintained
5404 F:      drivers/edac/e7xxx_edac.c
5405
5406 EDAC-FSL_DDR
5407 M:      York Sun <york.sun@nxp.com>
5408 L:      linux-edac@vger.kernel.org
5409 S:      Maintained
5410 F:      drivers/edac/fsl_ddr_edac.*
5411
5412 EDAC-GHES
5413 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5414 L:      linux-edac@vger.kernel.org
5415 S:      Maintained
5416 F:      drivers/edac/ghes_edac.c
5417
5418 EDAC-I3000
5419 L:      linux-edac@vger.kernel.org
5420 S:      Orphan
5421 F:      drivers/edac/i3000_edac.c
5422
5423 EDAC-I5000
5424 L:      linux-edac@vger.kernel.org
5425 S:      Maintained
5426 F:      drivers/edac/i5000_edac.c
5427
5428 EDAC-I5400
5429 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5430 L:      linux-edac@vger.kernel.org
5431 S:      Maintained
5432 F:      drivers/edac/i5400_edac.c
5433
5434 EDAC-I7300
5435 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5436 L:      linux-edac@vger.kernel.org
5437 S:      Maintained
5438 F:      drivers/edac/i7300_edac.c
5439
5440 EDAC-I7CORE
5441 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5442 L:      linux-edac@vger.kernel.org
5443 S:      Maintained
5444 F:      drivers/edac/i7core_edac.c
5445
5446 EDAC-I82443BXGX
5447 M:      Tim Small <tim@buttersideup.com>
5448 L:      linux-edac@vger.kernel.org
5449 S:      Maintained
5450 F:      drivers/edac/i82443bxgx_edac.c
5451
5452 EDAC-I82975X
5453 M:      "Arvind R." <arvino55@gmail.com>
5454 L:      linux-edac@vger.kernel.org
5455 S:      Maintained
5456 F:      drivers/edac/i82975x_edac.c
5457
5458 EDAC-IE31200
5459 M:      Jason Baron <jbaron@akamai.com>
5460 L:      linux-edac@vger.kernel.org
5461 S:      Maintained
5462 F:      drivers/edac/ie31200_edac.c
5463
5464 EDAC-MPC85XX
5465 M:      Johannes Thumshirn <morbidrsa@gmail.com>
5466 L:      linux-edac@vger.kernel.org
5467 S:      Maintained
5468 F:      drivers/edac/mpc85xx_edac.[ch]
5469
5470 EDAC-PASEMI
5471 M:      Egor Martovetsky <egor@pasemi.com>
5472 L:      linux-edac@vger.kernel.org
5473 S:      Maintained
5474 F:      drivers/edac/pasemi_edac.c
5475
5476 EDAC-PND2
5477 M:      Tony Luck <tony.luck@intel.com>
5478 L:      linux-edac@vger.kernel.org
5479 S:      Maintained
5480 F:      drivers/edac/pnd2_edac.[ch]
5481
5482 EDAC-R82600
5483 M:      Tim Small <tim@buttersideup.com>
5484 L:      linux-edac@vger.kernel.org
5485 S:      Maintained
5486 F:      drivers/edac/r82600_edac.c
5487
5488 EDAC-SBRIDGE
5489 M:      Tony Luck <tony.luck@intel.com>
5490 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
5491 L:      linux-edac@vger.kernel.org
5492 S:      Maintained
5493 F:      drivers/edac/sb_edac.c
5494
5495 EDAC-SKYLAKE
5496 M:      Tony Luck <tony.luck@intel.com>
5497 L:      linux-edac@vger.kernel.org
5498 S:      Maintained
5499 F:      drivers/edac/skx_edac.c
5500
5501 EDAC-TI
5502 M:      Tero Kristo <t-kristo@ti.com>
5503 L:      linux-edac@vger.kernel.org
5504 S:      Maintained
5505 F:      drivers/edac/ti_edac.c
5506
5507 EDAC-QCOM
5508 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
5509 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
5510 L:      linux-arm-msm@vger.kernel.org
5511 L:      linux-edac@vger.kernel.org
5512 S:      Maintained
5513 F:      drivers/edac/qcom_edac.c
5514
5515 EDIROL UA-101/UA-1000 DRIVER
5516 M:      Clemens Ladisch <clemens@ladisch.de>
5517 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5518 T:      git git://git.alsa-project.org/alsa-kernel.git
5519 S:      Maintained
5520 F:      sound/usb/misc/ua101.c
5521
5522 EFI TEST DRIVER
5523 L:      linux-efi@vger.kernel.org
5524 M:      Ivan Hu <ivan.hu@canonical.com>
5525 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5526 S:      Maintained
5527 F:      drivers/firmware/efi/test/
5528
5529 EFI VARIABLE FILESYSTEM
5530 M:      Matthew Garrett <matthew.garrett@nebula.com>
5531 M:      Jeremy Kerr <jk@ozlabs.org>
5532 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5534 L:      linux-efi@vger.kernel.org
5535 S:      Maintained
5536 F:      fs/efivarfs/
5537
5538 EFIFB FRAMEBUFFER DRIVER
5539 L:      linux-fbdev@vger.kernel.org
5540 M:      Peter Jones <pjones@redhat.com>
5541 S:      Maintained
5542 F:      drivers/video/fbdev/efifb.c
5543
5544 EFS FILESYSTEM
5545 W:      http://aeschi.ch.eu.org/efs/
5546 S:      Orphan
5547 F:      fs/efs/
5548
5549 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
5550 M:      Douglas Miller <dougmill@linux.ibm.com>
5551 L:      netdev@vger.kernel.org
5552 S:      Maintained
5553 F:      drivers/net/ethernet/ibm/ehea/
5554
5555 EM28XX VIDEO4LINUX DRIVER
5556 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5557 L:      linux-media@vger.kernel.org
5558 W:      https://linuxtv.org
5559 T:      git git://linuxtv.org/media_tree.git
5560 S:      Maintained
5561 F:      drivers/media/usb/em28xx/
5562 F:      Documentation/media/v4l-drivers/em28xx*
5563
5564 EMBEDDED LINUX
5565 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
5566 M:      Matt Mackall <mpm@selenic.com>
5567 M:      David Woodhouse <dwmw2@infradead.org>
5568 L:      linux-embedded@vger.kernel.org
5569 S:      Maintained
5570
5571 Emulex 10Gbps iSCSI - OneConnect DRIVER
5572 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
5573 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
5574 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
5575 L:      linux-scsi@vger.kernel.org
5576 W:      http://www.broadcom.com
5577 S:      Supported
5578 F:      drivers/scsi/be2iscsi/
5579
5580 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
5581 M:      Sathya Perla <sathya.perla@broadcom.com>
5582 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
5583 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
5584 M:      Somnath Kotur <somnath.kotur@broadcom.com>
5585 L:      netdev@vger.kernel.org
5586 W:      http://www.emulex.com
5587 S:      Supported
5588 F:      drivers/net/ethernet/emulex/benet/
5589
5590 EMULEX ONECONNECT ROCE DRIVER
5591 M:      Selvin Xavier <selvin.xavier@broadcom.com>
5592 M:      Devesh Sharma <devesh.sharma@broadcom.com>
5593 L:      linux-rdma@vger.kernel.org
5594 W:      http://www.broadcom.com
5595 S:      Odd Fixes
5596 F:      drivers/infiniband/hw/ocrdma/
5597 F:      include/uapi/rdma/ocrdma-abi.h
5598
5599 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
5600 M:      James Smart <james.smart@broadcom.com>
5601 M:      Dick Kennedy <dick.kennedy@broadcom.com>
5602 L:      linux-scsi@vger.kernel.org
5603 W:      http://www.broadcom.com
5604 S:      Supported
5605 F:      drivers/scsi/lpfc/
5606
5607 ENE CB710 FLASH CARD READER DRIVER
5608 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
5609 S:      Maintained
5610 F:      drivers/misc/cb710/
5611 F:      drivers/mmc/host/cb710-mmc.*
5612 F:      include/linux/cb710.h
5613
5614 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
5615 M:      Maxim Levitsky <maximlevitsky@gmail.com>
5616 S:      Maintained
5617 F:      drivers/media/rc/ene_ir.*
5618
5619 EPSON S1D13XXX FRAMEBUFFER DRIVER
5620 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
5621 S:      Maintained
5622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
5623 F:      drivers/video/fbdev/s1d13xxxfb.c
5624 F:      include/video/s1d13xxxfb.h
5625
5626 ERRSEQ ERROR TRACKING INFRASTRUCTURE
5627 M:      Jeff Layton <jlayton@kernel.org>
5628 S:      Maintained
5629 F:      lib/errseq.c
5630 F:      include/linux/errseq.h
5631
5632 ET131X NETWORK DRIVER
5633 M:      Mark Einon <mark.einon@gmail.com>
5634 S:      Odd Fixes
5635 F:      drivers/net/ethernet/agere/
5636
5637 ETHERNET BRIDGE
5638 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
5639 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
5640 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
5641 L:      netdev@vger.kernel.org
5642 W:      http://www.linuxfoundation.org/en/Net:Bridge
5643 S:      Maintained
5644 F:      include/linux/netfilter_bridge/
5645 F:      net/bridge/
5646
5647 ETHERNET PHY LIBRARY
5648 M:      Andrew Lunn <andrew@lunn.ch>
5649 M:      Florian Fainelli <f.fainelli@gmail.com>
5650 M:      Heiner Kallweit <hkallweit1@gmail.com>
5651 L:      netdev@vger.kernel.org
5652 S:      Maintained
5653 F:      Documentation/ABI/testing/sysfs-bus-mdio
5654 F:      Documentation/devicetree/bindings/net/mdio*
5655 F:      Documentation/networking/phy.txt
5656 F:      drivers/net/phy/
5657 F:      drivers/of/of_mdio.c
5658 F:      drivers/of/of_net.c
5659 F:      include/linux/*mdio*.h
5660 F:      include/linux/of_net.h
5661 F:      include/linux/phy.h
5662 F:      include/linux/phy_fixed.h
5663 F:      include/linux/platform_data/mdio-bcm-unimac.h
5664 F:      include/linux/platform_data/mdio-gpio.h
5665 F:      include/trace/events/mdio.h
5666 F:      include/uapi/linux/mdio.h
5667 F:      include/uapi/linux/mii.h
5668
5669 EXT2 FILE SYSTEM
5670 M:      Jan Kara <jack@suse.com>
5671 L:      linux-ext4@vger.kernel.org
5672 S:      Maintained
5673 F:      Documentation/filesystems/ext2.txt
5674 F:      fs/ext2/
5675 F:      include/linux/ext2*
5676
5677 EXT4 FILE SYSTEM
5678 M:      "Theodore Ts'o" <tytso@mit.edu>
5679 M:      Andreas Dilger <adilger.kernel@dilger.ca>
5680 L:      linux-ext4@vger.kernel.org
5681 W:      http://ext4.wiki.kernel.org
5682 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
5683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5684 S:      Maintained
5685 F:      Documentation/filesystems/ext4/ext4.rst
5686 F:      fs/ext4/
5687
5688 Extended Verification Module (EVM)
5689 M:      Mimi Zohar <zohar@linux.ibm.com>
5690 L:      linux-integrity@vger.kernel.org
5691 S:      Supported
5692 F:      security/integrity/evm/
5693
5694 EXTENSIBLE FIRMWARE INTERFACE (EFI)
5695 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5696 L:      linux-efi@vger.kernel.org
5697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5698 S:      Maintained
5699 F:      Documentation/efi-stub.txt
5700 F:      arch/*/kernel/efi.c
5701 F:      arch/x86/boot/compressed/eboot.[ch]
5702 F:      arch/*/include/asm/efi.h
5703 F:      arch/x86/platform/efi/
5704 F:      drivers/firmware/efi/
5705 F:      include/linux/efi*.h
5706 F:      arch/arm/boot/compressed/efi-header.S
5707 F:      arch/arm64/kernel/efi-entry.S
5708
5709 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5710 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5711 M:      Chanwoo Choi <cw00.choi@samsung.com>
5712 L:      linux-kernel@vger.kernel.org
5713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
5714 S:      Maintained
5715 F:      drivers/extcon/
5716 F:      include/linux/extcon/
5717 F:      include/linux/extcon.h
5718 F:      Documentation/extcon/
5719 F:      Documentation/devicetree/bindings/extcon/
5720
5721 EXYNOS DP DRIVER
5722 M:      Jingoo Han <jingoohan1@gmail.com>
5723 L:      dri-devel@lists.freedesktop.org
5724 S:      Maintained
5725 F:      drivers/gpu/drm/exynos/exynos_dp*
5726
5727 EXYNOS SYSMMU (IOMMU) driver
5728 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5729 L:      iommu@lists.linux-foundation.org
5730 S:      Maintained
5731 F:      drivers/iommu/exynos-iommu.c
5732
5733 EZchip NPS platform support
5734 M:      Vineet Gupta <vgupta@synopsys.com>
5735 M:      Ofer Levi <oferle@mellanox.com>
5736 S:      Supported
5737 F:      arch/arc/plat-eznps
5738 F:      arch/arc/boot/dts/eznps.dts
5739
5740 F2FS FILE SYSTEM
5741 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5742 M:      Chao Yu <yuchao0@huawei.com>
5743 L:      linux-f2fs-devel@lists.sourceforge.net
5744 W:      https://f2fs.wiki.kernel.org/
5745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5746 S:      Maintained
5747 F:      Documentation/filesystems/f2fs.txt
5748 F:      Documentation/ABI/testing/sysfs-fs-f2fs
5749 F:      fs/f2fs/
5750 F:      include/linux/f2fs_fs.h
5751 F:      include/trace/events/f2fs.h
5752
5753 F71805F HARDWARE MONITORING DRIVER
5754 M:      Jean Delvare <jdelvare@suse.com>
5755 L:      linux-hwmon@vger.kernel.org
5756 S:      Maintained
5757 F:      Documentation/hwmon/f71805f
5758 F:      drivers/hwmon/f71805f.c
5759
5760 FADDR2LINE
5761 M:      Josh Poimboeuf <jpoimboe@redhat.com>
5762 S:      Maintained
5763 F:      scripts/faddr2line
5764
5765 FAILOVER MODULE
5766 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
5767 L:      netdev@vger.kernel.org
5768 S:      Supported
5769 F:      net/core/failover.c
5770 F:      include/net/failover.h
5771 F:      Documentation/networking/failover.rst
5772
5773 FANOTIFY
5774 M:      Jan Kara <jack@suse.cz>
5775 R:      Amir Goldstein <amir73il@gmail.com>
5776 L:      linux-fsdevel@vger.kernel.org
5777 S:      Maintained
5778 F:      fs/notify/fanotify/
5779 F:      include/linux/fanotify.h
5780 F:      include/uapi/linux/fanotify.h
5781
5782 FARSYNC SYNCHRONOUS DRIVER
5783 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
5784 W:      http://www.farsite.co.uk/
5785 S:      Supported
5786 F:      drivers/net/wan/farsync.*
5787
5788 FAULT INJECTION SUPPORT
5789 M:      Akinobu Mita <akinobu.mita@gmail.com>
5790 S:      Supported
5791 F:      Documentation/fault-injection/
5792 F:      lib/fault-inject.c
5793
5794 FBTFT Framebuffer drivers
5795 S:      Orphan
5796 L:      dri-devel@lists.freedesktop.org
5797 L:      linux-fbdev@vger.kernel.org
5798 F:      drivers/staging/fbtft/
5799
5800 FC0011 TUNER DRIVER
5801 M:      Michael Buesch <m@bues.ch>
5802 L:      linux-media@vger.kernel.org
5803 S:      Maintained
5804 F:      drivers/media/tuners/fc0011.h
5805 F:      drivers/media/tuners/fc0011.c
5806
5807 FC2580 MEDIA DRIVER
5808 M:      Antti Palosaari <crope@iki.fi>
5809 L:      linux-media@vger.kernel.org
5810 W:      https://linuxtv.org
5811 W:      http://palosaari.fi/linux/
5812 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5813 T:      git git://linuxtv.org/anttip/media_tree.git
5814 S:      Maintained
5815 F:      drivers/media/tuners/fc2580*
5816
5817 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
5818 M:      Johannes Thumshirn <jth@kernel.org>
5819 L:      linux-scsi@vger.kernel.org
5820 W:      www.Open-FCoE.org
5821 S:      Supported
5822 F:      drivers/scsi/libfc/
5823 F:      drivers/scsi/fcoe/
5824 F:      include/scsi/fc/
5825 F:      include/scsi/libfc.h
5826 F:      include/scsi/libfcoe.h
5827 F:      include/uapi/scsi/fc/
5828
5829 FILE LOCKING (flock() and fcntl()/lockf())
5830 M:      Jeff Layton <jlayton@kernel.org>
5831 M:      "J. Bruce Fields" <bfields@fieldses.org>
5832 L:      linux-fsdevel@vger.kernel.org
5833 S:      Maintained
5834 F:      include/linux/fcntl.h
5835 F:      include/uapi/linux/fcntl.h
5836 F:      fs/fcntl.c
5837 F:      fs/locks.c
5838
5839 FILESYSTEMS (VFS and infrastructure)
5840 M:      Alexander Viro <viro@zeniv.linux.org.uk>
5841 L:      linux-fsdevel@vger.kernel.org
5842 S:      Maintained
5843 F:      fs/*
5844 F:      include/linux/fs.h
5845 F:      include/uapi/linux/fs.h
5846
5847 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5848 M:      Riku Voipio <riku.voipio@iki.fi>
5849 L:      linux-hwmon@vger.kernel.org
5850 S:      Maintained
5851 F:      drivers/hwmon/f75375s.c
5852 F:      include/linux/f75375s.h
5853
5854 FIREWIRE AUDIO DRIVERS
5855 M:      Clemens Ladisch <clemens@ladisch.de>
5856 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5857 T:      git git://git.alsa-project.org/alsa-kernel.git
5858 S:      Maintained
5859 F:      sound/firewire/
5860
5861 FIREWIRE MEDIA DRIVERS (firedtv)
5862 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
5863 L:      linux-media@vger.kernel.org
5864 L:      linux1394-devel@lists.sourceforge.net
5865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
5866 S:      Maintained
5867 F:      drivers/media/firewire/
5868
5869 FIREWIRE SBP-2 TARGET
5870 M:      Chris Boot <bootc@bootc.net>
5871 L:      linux-scsi@vger.kernel.org
5872 L:      target-devel@vger.kernel.org
5873 L:      linux1394-devel@lists.sourceforge.net
5874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
5875 S:      Maintained
5876 F:      drivers/target/sbp/
5877
5878 FIREWIRE SUBSYSTEM
5879 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
5880 L:      linux1394-devel@lists.sourceforge.net
5881 W:      http://ieee1394.wiki.kernel.org/
5882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
5883 S:      Maintained
5884 F:      drivers/firewire/
5885 F:      include/linux/firewire.h
5886 F:      include/uapi/linux/firewire*.h
5887 F:      tools/firewire/
5888
5889 FIRMWARE LOADER (request_firmware)
5890 M:      Luis Chamberlain <mcgrof@kernel.org>
5891 L:      linux-kernel@vger.kernel.org
5892 S:      Maintained
5893 F:      Documentation/firmware_class/
5894 F:      drivers/base/firmware_loader/
5895 F:      include/linux/firmware.h
5896
5897 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
5898 M:      Joshua Morris <josh.h.morris@us.ibm.com>
5899 M:      Philip Kelleher <pjk1939@linux.ibm.com>
5900 S:      Maintained
5901 F:      drivers/block/rsxx/
5902
5903 FLOPPY DRIVER
5904 M:      Jiri Kosina <jikos@kernel.org>
5905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
5906 S:      Odd fixes
5907 F:      drivers/block/floppy.c
5908
5909 FMC SUBSYSTEM
5910 M:      Alessandro Rubini <rubini@gnudd.com>
5911 W:      http://www.ohwr.org/projects/fmc-bus
5912 S:      Supported
5913 F:      drivers/fmc/
5914 F:      include/linux/fmc*.h
5915 F:      include/linux/ipmi-fru.h
5916 K:      fmc_d.*register
5917
5918 FPGA MANAGER FRAMEWORK
5919 M:      Alan Tull <atull@kernel.org>
5920 M:      Moritz Fischer <mdf@kernel.org>
5921 L:      linux-fpga@vger.kernel.org
5922 S:      Maintained
5923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
5924 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
5925 F:      Documentation/fpga/
5926 F:      Documentation/driver-api/fpga/
5927 F:      Documentation/devicetree/bindings/fpga/
5928 F:      drivers/fpga/
5929 F:      include/linux/fpga/
5930 W:      http://www.rocketboards.org
5931
5932 FPGA DFL DRIVERS
5933 M:      Wu Hao <hao.wu@intel.com>
5934 L:      linux-fpga@vger.kernel.org
5935 S:      Maintained
5936 F:      Documentation/fpga/dfl.txt
5937 F:      include/uapi/linux/fpga-dfl.h
5938 F:      drivers/fpga/dfl*
5939
5940 FPU EMULATOR
5941 M:      Bill Metzenthen <billm@melbpc.org.au>
5942 W:      http://floatingpoint.sourceforge.net/emulator/index.html
5943 S:      Maintained
5944 F:      arch/x86/math-emu/
5945
5946 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
5947 L:      netdev@vger.kernel.org
5948 S:      Orphan
5949 F:      drivers/net/wan/dlci.c
5950 F:      drivers/net/wan/sdla.c
5951
5952 FRAMEBUFFER LAYER
5953 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5954 L:      dri-devel@lists.freedesktop.org
5955 L:      linux-fbdev@vger.kernel.org
5956 T:      git git://github.com/bzolnier/linux.git
5957 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
5958 S:      Maintained
5959 F:      Documentation/fb/
5960 F:      drivers/video/
5961 F:      include/video/
5962 F:      include/linux/fb.h
5963 F:      include/uapi/video/
5964 F:      include/uapi/linux/fb.h
5965
5966 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
5967 M:      Horia Geantă <horia.geanta@nxp.com>
5968 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
5969 L:      linux-crypto@vger.kernel.org
5970 S:      Maintained
5971 F:      drivers/crypto/caam/
5972 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
5973
5974 FREESCALE DIU FRAMEBUFFER DRIVER
5975 M:      Timur Tabi <timur@kernel.org>
5976 L:      linux-fbdev@vger.kernel.org
5977 S:      Maintained
5978 F:      drivers/video/fbdev/fsl-diu-fb.*
5979
5980 FREESCALE DMA DRIVER
5981 M:      Li Yang <leoyang.li@nxp.com>
5982 M:      Zhang Wei <zw@zh-kernel.org>
5983 L:      linuxppc-dev@lists.ozlabs.org
5984 S:      Maintained
5985 F:      drivers/dma/fsldma.*
5986
5987 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5988 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
5989 L:      netdev@vger.kernel.org
5990 S:      Maintained
5991 F:      drivers/net/ethernet/freescale/gianfar*
5992 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5993
5994 FREESCALE GPMI NAND DRIVER
5995 M:      Han Xu <han.xu@nxp.com>
5996 L:      linux-mtd@lists.infradead.org
5997 S:      Maintained
5998 F:      drivers/mtd/nand/raw/gpmi-nand/*
5999
6000 FREESCALE I2C CPM DRIVER
6001 M:      Jochen Friedrich <jochen@scram.de>
6002 L:      linuxppc-dev@lists.ozlabs.org
6003 L:      linux-i2c@vger.kernel.org
6004 S:      Maintained
6005 F:      drivers/i2c/busses/i2c-cpm.c
6006
6007 FREESCALE IMX LPI2C DRIVER
6008 M:      Dong Aisheng <aisheng.dong@nxp.com>
6009 L:      linux-i2c@vger.kernel.org
6010 L:      linux-imx@nxp.com
6011 S:      Maintained
6012 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6013 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6014
6015 FREESCALE IMX / MXC FEC DRIVER
6016 M:      Fugang Duan <fugang.duan@nxp.com>
6017 L:      netdev@vger.kernel.org
6018 S:      Maintained
6019 F:      drivers/net/ethernet/freescale/fec_main.c
6020 F:      drivers/net/ethernet/freescale/fec_ptp.c
6021 F:      drivers/net/ethernet/freescale/fec.h
6022 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6023
6024 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6025 M:      Sascha Hauer <s.hauer@pengutronix.de>
6026 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6027 L:      linux-fbdev@vger.kernel.org
6028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6029 S:      Maintained
6030 F:      include/linux/platform_data/video-imxfb.h
6031 F:      drivers/video/fbdev/imxfb.c
6032
6033 FREESCALE QORIQ DPAA ETHERNET DRIVER
6034 M:      Madalin Bucur <madalin.bucur@nxp.com>
6035 L:      netdev@vger.kernel.org
6036 S:      Maintained
6037 F:      drivers/net/ethernet/freescale/dpaa
6038
6039 FREESCALE QORIQ DPAA FMAN DRIVER
6040 M:      Madalin Bucur <madalin.bucur@nxp.com>
6041 L:      netdev@vger.kernel.org
6042 S:      Maintained
6043 F:      drivers/net/ethernet/freescale/fman
6044 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6045
6046 FREESCALE QORIQ PTP CLOCK DRIVER
6047 M:      Yangbo Lu <yangbo.lu@nxp.com>
6048 L:      netdev@vger.kernel.org
6049 S:      Maintained
6050 F:      drivers/ptp/ptp_qoriq.c
6051 F:      include/linux/fsl/ptp_qoriq.h
6052 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6053
6054 FREESCALE QUAD SPI DRIVER
6055 M:      Han Xu <han.xu@nxp.com>
6056 L:      linux-mtd@lists.infradead.org
6057 S:      Maintained
6058 F:      drivers/mtd/spi-nor/fsl-quadspi.c
6059
6060 FREESCALE QUICC ENGINE LIBRARY
6061 M:      Qiang Zhao <qiang.zhao@nxp.com>
6062 L:      linuxppc-dev@lists.ozlabs.org
6063 S:      Maintained
6064 F:      drivers/soc/fsl/qe/
6065 F:      include/soc/fsl/*qe*.h
6066 F:      include/soc/fsl/*ucc*.h
6067
6068 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6069 M:      Li Yang <leoyang.li@nxp.com>
6070 L:      netdev@vger.kernel.org
6071 L:      linuxppc-dev@lists.ozlabs.org
6072 S:      Maintained
6073 F:      drivers/net/ethernet/freescale/ucc_geth*
6074
6075 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6076 M:      Zhao Qiang <qiang.zhao@nxp.com>
6077 L:      netdev@vger.kernel.org
6078 L:      linuxppc-dev@lists.ozlabs.org
6079 S:      Maintained
6080 F:      drivers/net/wan/fsl_ucc_hdlc*
6081
6082 FREESCALE QUICC ENGINE UCC UART DRIVER
6083 M:      Timur Tabi <timur@kernel.org>
6084 L:      linuxppc-dev@lists.ozlabs.org
6085 S:      Maintained
6086 F:      drivers/tty/serial/ucc_uart.c
6087
6088 FREESCALE SOC DRIVERS
6089 M:      Li Yang <leoyang.li@nxp.com>
6090 L:      linuxppc-dev@lists.ozlabs.org
6091 L:      linux-arm-kernel@lists.infradead.org
6092 S:      Maintained
6093 F:      Documentation/devicetree/bindings/soc/fsl/
6094 F:      drivers/soc/fsl/
6095 F:      include/linux/fsl/
6096
6097 FREESCALE SOC FS_ENET DRIVER
6098 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6099 L:      linuxppc-dev@lists.ozlabs.org
6100 L:      netdev@vger.kernel.org
6101 S:      Maintained
6102 F:      drivers/net/ethernet/freescale/fs_enet/
6103 F:      include/linux/fs_enet_pd.h
6104
6105 FREESCALE SOC SOUND DRIVERS
6106 M:      Timur Tabi <timur@kernel.org>
6107 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6108 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6109 R:      Fabio Estevam <fabio.estevam@nxp.com>
6110 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6111 L:      linuxppc-dev@lists.ozlabs.org
6112 S:      Maintained
6113 F:      sound/soc/fsl/fsl*
6114 F:      sound/soc/fsl/imx*
6115 F:      sound/soc/fsl/mpc8610_hpcd.c
6116
6117 FREESCALE USB PERIPHERAL DRIVERS
6118 M:      Li Yang <leoyang.li@nxp.com>
6119 L:      linux-usb@vger.kernel.org
6120 L:      linuxppc-dev@lists.ozlabs.org
6121 S:      Maintained
6122 F:      drivers/usb/gadget/udc/fsl*
6123
6124 FREEVXFS FILESYSTEM
6125 M:      Christoph Hellwig <hch@infradead.org>
6126 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6127 S:      Maintained
6128 F:      fs/freevxfs/
6129
6130 FREEZER
6131 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6132 M:      Pavel Machek <pavel@ucw.cz>
6133 L:      linux-pm@vger.kernel.org
6134 S:      Supported
6135 F:      Documentation/power/freezing-of-tasks.txt
6136 F:      include/linux/freezer.h
6137 F:      kernel/freezer.c
6138
6139 FRONTSWAP API
6140 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6141 L:      linux-kernel@vger.kernel.org
6142 S:      Maintained
6143 F:      mm/frontswap.c
6144 F:      include/linux/frontswap.h
6145
6146 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6147 M:      David Howells <dhowells@redhat.com>
6148 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6149 S:      Supported
6150 F:      Documentation/filesystems/caching/
6151 F:      fs/fscache/
6152 F:      include/linux/fscache*.h
6153
6154 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6155 M:      Theodore Y. Ts'o <tytso@mit.edu>
6156 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6157 L:      linux-fscrypt@vger.kernel.org
6158 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git
6160 S:      Supported
6161 F:      fs/crypto/
6162 F:      include/linux/fscrypt*.h
6163 F:      Documentation/filesystems/fscrypt.rst
6164
6165 FSI-ATTACHED I2C DRIVER
6166 M:      Eddie James <eajames@linux.ibm.com>
6167 L:      linux-i2c@vger.kernel.org
6168 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
6169 S:      Maintained
6170 F:      drivers/i2c/busses/i2c-fsi.c
6171 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6172
6173 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6174 M:      Jan Kara <jack@suse.cz>
6175 R:      Amir Goldstein <amir73il@gmail.com>
6176 L:      linux-fsdevel@vger.kernel.org
6177 S:      Maintained
6178 F:      fs/notify/
6179 F:      include/linux/fsnotify*.h
6180
6181 FUJITSU LAPTOP EXTRAS
6182 M:      Jonathan Woithe <jwoithe@just42.net>
6183 L:      platform-driver-x86@vger.kernel.org
6184 S:      Maintained
6185 F:      drivers/platform/x86/fujitsu-laptop.c
6186
6187 FUJITSU M-5MO LS CAMERA ISP DRIVER
6188 M:      Kyungmin Park <kyungmin.park@samsung.com>
6189 M:      Heungjun Kim <riverful.kim@samsung.com>
6190 L:      linux-media@vger.kernel.org
6191 S:      Maintained
6192 F:      drivers/media/i2c/m5mols/
6193 F:      include/media/i2c/m5mols.h
6194
6195 FUJITSU TABLET EXTRAS
6196 M:      Robert Gerlach <khnz@gmx.de>
6197 L:      platform-driver-x86@vger.kernel.org
6198 S:      Maintained
6199 F:      drivers/platform/x86/fujitsu-tablet.c
6200
6201 FUSE: FILESYSTEM IN USERSPACE
6202 M:      Miklos Szeredi <miklos@szeredi.hu>
6203 L:      linux-fsdevel@vger.kernel.org
6204 W:      http://fuse.sourceforge.net/
6205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6206 S:      Maintained
6207 F:      fs/fuse/
6208 F:      include/uapi/linux/fuse.h
6209 F:      Documentation/filesystems/fuse.txt
6210
6211 FUTEX SUBSYSTEM
6212 M:      Thomas Gleixner <tglx@linutronix.de>
6213 M:      Ingo Molnar <mingo@redhat.com>
6214 R:      Peter Zijlstra <peterz@infradead.org>
6215 R:      Darren Hart <dvhart@infradead.org>
6216 L:      linux-kernel@vger.kernel.org
6217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
6218 S:      Maintained
6219 F:      kernel/futex.c
6220 F:      kernel/futex_compat.c
6221 F:      include/asm-generic/futex.h
6222 F:      include/linux/futex.h
6223 F:      include/uapi/linux/futex.h
6224 F:      tools/testing/selftests/futex/
6225 F:      tools/perf/bench/futex*
6226 F:      Documentation/*futex*
6227
6228 GCC PLUGINS
6229 M:      Kees Cook <keescook@chromium.org>
6230 R:      Emese Revfy <re.emese@gmail.com>
6231 L:      kernel-hardening@lists.openwall.com
6232 S:      Maintained
6233 F:      scripts/gcc-plugins/
6234 F:      scripts/gcc-plugin.sh
6235 F:      scripts/Makefile.gcc-plugins
6236 F:      Documentation/gcc-plugins.txt
6237
6238 GASKET DRIVER FRAMEWORK
6239 M:      Rob Springer <rspringer@google.com>
6240 M:      Todd Poynor <toddpoynor@google.com>
6241 M:      Ben Chan <benchan@chromium.org>
6242 S:      Maintained
6243 F:      drivers/staging/gasket/
6244
6245 GCOV BASED KERNEL PROFILING
6246 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
6247 S:      Maintained
6248 F:      kernel/gcov/
6249 F:      Documentation/dev-tools/gcov.rst
6250
6251 GDB KERNEL DEBUGGING HELPER SCRIPTS
6252 M:      Jan Kiszka <jan.kiszka@siemens.com>
6253 M:      Kieran Bingham <kbingham@kernel.org>
6254 S:      Supported
6255 F:      scripts/gdb/
6256
6257 GDT SCSI DISK ARRAY CONTROLLER DRIVER
6258 M:      Achim Leubner <achim_leubner@adaptec.com>
6259 L:      linux-scsi@vger.kernel.org
6260 W:      http://www.icp-vortex.com/
6261 S:      Supported
6262 F:      drivers/scsi/gdt*
6263
6264 GEMTEK FM RADIO RECEIVER DRIVER
6265 M:      Hans Verkuil <hverkuil@xs4all.nl>
6266 L:      linux-media@vger.kernel.org
6267 T:      git git://linuxtv.org/media_tree.git
6268 W:      https://linuxtv.org
6269 S:      Maintained
6270 F:      drivers/media/radio/radio-gemtek*
6271
6272 GENERIC GPIO I2C DRIVER
6273 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
6274 S:      Supported
6275 F:      drivers/i2c/busses/i2c-gpio.c
6276 F:      include/linux/platform_data/i2c-gpio.h
6277
6278 GENERIC GPIO I2C MULTIPLEXER DRIVER
6279 M:      Peter Korsgaard <peter.korsgaard@barco.com>
6280 L:      linux-i2c@vger.kernel.org
6281 S:      Supported
6282 F:      drivers/i2c/muxes/i2c-mux-gpio.c
6283 F:      include/linux/platform_data/i2c-mux-gpio.h
6284 F:      Documentation/i2c/muxes/i2c-mux-gpio
6285
6286 GENERIC HDLC (WAN) DRIVERS
6287 M:      Krzysztof Halasa <khc@pm.waw.pl>
6288 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
6289 S:      Maintained
6290 F:      drivers/net/wan/c101.c
6291 F:      drivers/net/wan/hd6457*
6292 F:      drivers/net/wan/hdlc*
6293 F:      drivers/net/wan/n2.c
6294 F:      drivers/net/wan/pc300too.c
6295 F:      drivers/net/wan/pci200syn.c
6296 F:      drivers/net/wan/wanxl*
6297
6298 GENERIC INCLUDE/ASM HEADER FILES
6299 M:      Arnd Bergmann <arnd@arndb.de>
6300 L:      linux-arch@vger.kernel.org
6301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
6302 S:      Maintained
6303 F:      include/asm-generic/
6304 F:      include/uapi/asm-generic/
6305
6306 GENERIC PHY FRAMEWORK
6307 M:      Kishon Vijay Abraham I <kishon@ti.com>
6308 L:      linux-kernel@vger.kernel.org
6309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
6310 S:      Supported
6311 F:      drivers/phy/
6312 F:      include/linux/phy/
6313
6314 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
6315 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6316 S:      Supported
6317 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
6318
6319 GENERIC PM DOMAINS
6320 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6321 M:      Kevin Hilman <khilman@kernel.org>
6322 M:      Ulf Hansson <ulf.hansson@linaro.org>
6323 L:      linux-pm@vger.kernel.org
6324 S:      Supported
6325 F:      drivers/base/power/domain*.c
6326 F:      include/linux/pm_domain.h
6327 F:      Documentation/devicetree/bindings/power/power_domain.txt
6328
6329 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
6330 M:      Eugen Hristev <eugen.hristev@microchip.com>
6331 L:      linux-input@vger.kernel.org
6332 S:      Maintained
6333 F:      drivers/input/touchscreen/resistive-adc-touch.c
6334
6335 GENERIC UIO DRIVER FOR PCI DEVICES
6336 M:      "Michael S. Tsirkin" <mst@redhat.com>
6337 L:      kvm@vger.kernel.org
6338 S:      Supported
6339 F:      drivers/uio/uio_pci_generic.c
6340
6341 GENWQE (IBM Generic Workqueue Card)
6342 M:      Frank Haverkamp <haver@linux.ibm.com>
6343 S:      Supported
6344 F:      drivers/misc/genwqe/
6345
6346 GET_MAINTAINER SCRIPT
6347 M:      Joe Perches <joe@perches.com>
6348 S:      Maintained
6349 F:      scripts/get_maintainer.pl
6350
6351 GFS2 FILE SYSTEM
6352 M:      Bob Peterson <rpeterso@redhat.com>
6353 M:      Andreas Gruenbacher <agruenba@redhat.com>
6354 L:      cluster-devel@redhat.com
6355 W:      http://sources.redhat.com/cluster/
6356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
6357 S:      Supported
6358 F:      Documentation/filesystems/gfs2*.txt
6359 F:      fs/gfs2/
6360 F:      include/uapi/linux/gfs2_ondisk.h
6361
6362 GIGASET ISDN DRIVERS
6363 M:      Paul Bolle <pebolle@tiscali.nl>
6364 L:      gigaset307x-common@lists.sourceforge.net
6365 W:      http://gigaset307x.sourceforge.net/
6366 S:      Odd Fixes
6367 F:      Documentation/isdn/README.gigaset
6368 F:      drivers/isdn/gigaset/
6369 F:      include/uapi/linux/gigaset_dev.h
6370
6371 GNSS SUBSYSTEM
6372 M:      Johan Hovold <johan@kernel.org>
6373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
6374 S:      Maintained
6375 F:      Documentation/ABI/testing/sysfs-class-gnss
6376 F:      Documentation/devicetree/bindings/gnss/
6377 F:      drivers/gnss/
6378 F:      include/linux/gnss.h
6379
6380 GO7007 MPEG CODEC
6381 M:      Hans Verkuil <hans.verkuil@cisco.com>
6382 L:      linux-media@vger.kernel.org
6383 S:      Maintained
6384 F:      drivers/media/usb/go7007/
6385
6386 GOODIX TOUCHSCREEN
6387 M:      Bastien Nocera <hadess@hadess.net>
6388 L:      linux-input@vger.kernel.org
6389 S:      Maintained
6390 F:      drivers/input/touchscreen/goodix.c
6391
6392 GPD POCKET FAN DRIVER
6393 M:      Hans de Goede <hdegoede@redhat.com>
6394 L:      platform-driver-x86@vger.kernel.org
6395 S:      Maintained
6396 F:      drivers/platform/x86/gpd-pocket-fan.c
6397
6398 GPIO ACPI SUPPORT
6399 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6400 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6401 L:      linux-gpio@vger.kernel.org
6402 L:      linux-acpi@vger.kernel.org
6403 S:      Maintained
6404 F:      Documentation/acpi/gpio-properties.txt
6405 F:      drivers/gpio/gpiolib-acpi.c
6406
6407 GPIO IR Transmitter
6408 M:      Sean Young <sean@mess.org>
6409 L:      linux-media@vger.kernel.org
6410 S:      Maintained
6411 F:      drivers/media/rc/gpio-ir-tx.c
6412
6413 GPIO MOCKUP DRIVER
6414 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
6415 L:      linux-gpio@vger.kernel.org
6416 S:      Maintained
6417 F:      drivers/gpio/gpio-mockup.c
6418 F:      tools/testing/selftests/gpio/
6419
6420 GPIO SUBSYSTEM
6421 M:      Linus Walleij <linus.walleij@linaro.org>
6422 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
6423 L:      linux-gpio@vger.kernel.org
6424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
6425 S:      Maintained
6426 F:      Documentation/devicetree/bindings/gpio/
6427 F:      Documentation/driver-api/gpio/
6428 F:      Documentation/gpio/
6429 F:      Documentation/ABI/testing/gpio-cdev
6430 F:      Documentation/ABI/obsolete/sysfs-gpio
6431 F:      drivers/gpio/
6432 F:      include/linux/gpio/
6433 F:      include/linux/gpio.h
6434 F:      include/linux/of_gpio.h
6435 F:      include/asm-generic/gpio.h
6436 F:      include/uapi/linux/gpio.h
6437 F:      tools/gpio/
6438
6439 GRE DEMULTIPLEXER DRIVER
6440 M:      Dmitry Kozlov <xeb@mail.ru>
6441 L:      netdev@vger.kernel.org
6442 S:      Maintained
6443 F:      net/ipv4/gre_demux.c
6444 F:      net/ipv4/gre_offload.c
6445 F:      include/net/gre.h
6446
6447 GRETH 10/100/1G Ethernet MAC device driver
6448 M:      Andreas Larsson <andreas@gaisler.com>
6449 L:      netdev@vger.kernel.org
6450 S:      Maintained
6451 F:      drivers/net/ethernet/aeroflex/
6452
6453 GREYBUS AUDIO PROTOCOLS DRIVERS
6454 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
6455 M:      Mark Greer <mgreer@animalcreek.com>
6456 S:      Maintained
6457 F:      drivers/staging/greybus/audio_apbridgea.c
6458 F:      drivers/staging/greybus/audio_apbridgea.h
6459 F:      drivers/staging/greybus/audio_codec.c
6460 F:      drivers/staging/greybus/audio_codec.h
6461 F:      drivers/staging/greybus/audio_gb.c
6462 F:      drivers/staging/greybus/audio_manager.c
6463 F:      drivers/staging/greybus/audio_manager.h
6464 F:      drivers/staging/greybus/audio_manager_module.c
6465 F:      drivers/staging/greybus/audio_manager_private.h
6466 F:      drivers/staging/greybus/audio_manager_sysfs.c
6467 F:      drivers/staging/greybus/audio_module.c
6468 F:      drivers/staging/greybus/audio_topology.c
6469
6470 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
6471 M:      Viresh Kumar <vireshk@kernel.org>
6472 S:      Maintained
6473 F:      drivers/staging/greybus/authentication.c
6474 F:      drivers/staging/greybus/bootrom.c
6475 F:      drivers/staging/greybus/firmware.h
6476 F:      drivers/staging/greybus/fw-core.c
6477 F:      drivers/staging/greybus/fw-download.c
6478 F:      drivers/staging/greybus/fw-management.c
6479 F:      drivers/staging/greybus/greybus_authentication.h
6480 F:      drivers/staging/greybus/greybus_firmware.h
6481 F:      drivers/staging/greybus/hid.c
6482 F:      drivers/staging/greybus/i2c.c
6483 F:      drivers/staging/greybus/spi.c
6484 F:      drivers/staging/greybus/spilib.c
6485 F:      drivers/staging/greybus/spilib.h
6486
6487 GREYBUS LOOPBACK DRIVER
6488 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
6489 S:      Maintained
6490 F:      drivers/staging/greybus/loopback.c
6491
6492 GREYBUS PLATFORM DRIVERS
6493 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
6494 S:      Maintained
6495 F:      drivers/staging/greybus/arche-platform.c
6496 F:      drivers/staging/greybus/arche-apb-ctrl.c
6497 F:      drivers/staging/greybus/arche_platform.h
6498
6499 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
6500 M:      Rui Miguel Silva <rmfrfs@gmail.com>
6501 S:      Maintained
6502 F:      drivers/staging/greybus/sdio.c
6503 F:      drivers/staging/greybus/light.c
6504 F:      drivers/staging/greybus/gpio.c
6505 F:      drivers/staging/greybus/power_supply.c
6506 F:      drivers/staging/greybus/spi.c
6507 F:      drivers/staging/greybus/spilib.c
6508
6509 GREYBUS SUBSYSTEM
6510 M:      Johan Hovold <johan@kernel.org>
6511 M:      Alex Elder <elder@kernel.org>
6512 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6513 S:      Maintained
6514 F:      drivers/staging/greybus/
6515 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
6516
6517 GREYBUS UART PROTOCOLS DRIVERS
6518 M:      David Lin <dtwlin@gmail.com>
6519 S:      Maintained
6520 F:      drivers/staging/greybus/uart.c
6521 F:      drivers/staging/greybus/log.c
6522
6523 GS1662 VIDEO SERIALIZER
6524 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
6525 L:      linux-media@vger.kernel.org
6526 T:      git git://linuxtv.org/media_tree.git
6527 S:      Maintained
6528 F:      drivers/media/spi/gs1662.c
6529
6530 GSPCA FINEPIX SUBDRIVER
6531 M:      Frank Zago <frank@zago.net>
6532 L:      linux-media@vger.kernel.org
6533 T:      git git://linuxtv.org/media_tree.git
6534 S:      Maintained
6535 F:      drivers/media/usb/gspca/finepix.c
6536
6537 GSPCA GL860 SUBDRIVER
6538 M:      Olivier Lorin <o.lorin@laposte.net>
6539 L:      linux-media@vger.kernel.org
6540 T:      git git://linuxtv.org/media_tree.git
6541 S:      Maintained
6542 F:      drivers/media/usb/gspca/gl860/
6543
6544 GSPCA M5602 SUBDRIVER
6545 M:      Erik Andren <erik.andren@gmail.com>
6546 L:      linux-media@vger.kernel.org
6547 T:      git git://linuxtv.org/media_tree.git
6548 S:      Maintained
6549 F:      drivers/media/usb/gspca/m5602/
6550
6551 GSPCA PAC207 SONIXB SUBDRIVER
6552 M:      Hans Verkuil <hverkuil@xs4all.nl>
6553 L:      linux-media@vger.kernel.org
6554 T:      git git://linuxtv.org/media_tree.git
6555 S:      Odd Fixes
6556 F:      drivers/media/usb/gspca/pac207.c
6557
6558 GSPCA SN9C20X SUBDRIVER
6559 M:      Brian Johnson <brijohn@gmail.com>
6560 L:      linux-media@vger.kernel.org
6561 T:      git git://linuxtv.org/media_tree.git
6562 S:      Maintained
6563 F:      drivers/media/usb/gspca/sn9c20x.c
6564
6565 GSPCA T613 SUBDRIVER
6566 M:      Leandro Costantino <lcostantino@gmail.com>
6567 L:      linux-media@vger.kernel.org
6568 T:      git git://linuxtv.org/media_tree.git
6569 S:      Maintained
6570 F:      drivers/media/usb/gspca/t613.c
6571
6572 GSPCA USB WEBCAM DRIVER
6573 M:      Hans Verkuil <hverkuil@xs4all.nl>
6574 L:      linux-media@vger.kernel.org
6575 T:      git git://linuxtv.org/media_tree.git
6576 S:      Odd Fixes
6577 F:      drivers/media/usb/gspca/
6578
6579 GTP (GPRS Tunneling Protocol)
6580 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6581 M:      Harald Welte <laforge@gnumonks.org>
6582 L:      osmocom-net-gprs@lists.osmocom.org
6583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
6584 S:      Maintained
6585 F:      drivers/net/gtp.c
6586
6587 GUID PARTITION TABLE (GPT)
6588 M:      Davidlohr Bueso <dave@stgolabs.net>
6589 L:      linux-efi@vger.kernel.org
6590 S:      Maintained
6591 F:      block/partitions/efi.*
6592
6593 H8/300 ARCHITECTURE
6594 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
6595 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
6596 W:      http://uclinux-h8.sourceforge.jp
6597 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
6598 S:      Maintained
6599 F:      arch/h8300/
6600 F:      drivers/clocksource/h8300_*.c
6601 F:      drivers/clk/h8300/
6602 F:      drivers/irqchip/irq-renesas-h8*.c
6603
6604 HACKRF MEDIA DRIVER
6605 M:      Antti Palosaari <crope@iki.fi>
6606 L:      linux-media@vger.kernel.org
6607 W:      https://linuxtv.org
6608 W:      http://palosaari.fi/linux/
6609 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6610 T:      git git://linuxtv.org/anttip/media_tree.git
6611 S:      Maintained
6612 F:      drivers/media/usb/hackrf/
6613
6614 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
6615 M:      Frank Seidel <frank@f-seidel.de>
6616 L:      platform-driver-x86@vger.kernel.org
6617 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
6618 S:      Maintained
6619 F:      drivers/platform/x86/hdaps.c
6620
6621 HARDWARE MONITORING
6622 M:      Jean Delvare <jdelvare@suse.com>
6623 M:      Guenter Roeck <linux@roeck-us.net>
6624 L:      linux-hwmon@vger.kernel.org
6625 W:      http://hwmon.wiki.kernel.org/
6626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6627 S:      Maintained
6628 F:      Documentation/devicetree/bindings/hwmon/
6629 F:      Documentation/hwmon/
6630 F:      drivers/hwmon/
6631 F:      include/linux/hwmon*.h
6632 F:      include/trace/events/hwmon*.h
6633
6634 HARDWARE RANDOM NUMBER GENERATOR CORE
6635 M:      Matt Mackall <mpm@selenic.com>
6636 M:      Herbert Xu <herbert@gondor.apana.org.au>
6637 L:      linux-crypto@vger.kernel.org
6638 S:      Odd fixes
6639 F:      Documentation/devicetree/bindings/rng/
6640 F:      Documentation/hw_random.txt
6641 F:      drivers/char/hw_random/
6642 F:      include/linux/hw_random.h
6643
6644 HARDWARE TRACING FACILITIES
6645 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
6646 S:      Maintained
6647 F:      drivers/hwtracing/
6648
6649 HARDWARE SPINLOCK CORE
6650 M:      Ohad Ben-Cohen <ohad@wizery.com>
6651 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
6652 L:      linux-remoteproc@vger.kernel.org
6653 S:      Maintained
6654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
6655 F:      Documentation/devicetree/bindings/hwlock/
6656 F:      Documentation/hwspinlock.txt
6657 F:      drivers/hwspinlock/
6658 F:      include/linux/hwspinlock.h
6659
6660 HARMONY SOUND DRIVER
6661 L:      linux-parisc@vger.kernel.org
6662 S:      Maintained
6663 F:      sound/parisc/harmony.*
6664
6665 HDPVR USB VIDEO ENCODER DRIVER
6666 M:      Hans Verkuil <hverkuil@xs4all.nl>
6667 L:      linux-media@vger.kernel.org
6668 T:      git git://linuxtv.org/media_tree.git
6669 W:      https://linuxtv.org
6670 S:      Odd Fixes
6671 F:      drivers/media/usb/hdpvr/
6672
6673 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
6674 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
6675 S:      Supported
6676 F:      Documentation/watchdog/hpwdt.txt
6677 F:      drivers/watchdog/hpwdt.c
6678
6679 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
6680 M:      Don Brace <don.brace@microsemi.com>
6681 L:      esc.storagedev@microsemi.com
6682 L:      linux-scsi@vger.kernel.org
6683 S:      Supported
6684 F:      Documentation/scsi/hpsa.txt
6685 F:      drivers/scsi/hpsa*.[ch]
6686 F:      include/linux/cciss*.h
6687 F:      include/uapi/linux/cciss*.h
6688
6689 HFI1 DRIVER
6690 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
6691 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
6692 L:      linux-rdma@vger.kernel.org
6693 S:      Supported
6694 F:      drivers/infiniband/hw/hfi1
6695
6696 HFS FILESYSTEM
6697 L:      linux-fsdevel@vger.kernel.org
6698 S:      Orphan
6699 F:      Documentation/filesystems/hfs.txt
6700 F:      fs/hfs/
6701
6702 HFSPLUS FILESYSTEM
6703 L:      linux-fsdevel@vger.kernel.org
6704 S:      Orphan
6705 F:      Documentation/filesystems/hfsplus.txt
6706 F:      fs/hfsplus/
6707
6708 HGA FRAMEBUFFER DRIVER
6709 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
6710 L:      linux-nvidia@lists.surfsouth.com
6711 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
6712 S:      Maintained
6713 F:      drivers/video/fbdev/hgafb.c
6714
6715 HIBERNATION (aka Software Suspend, aka swsusp)
6716 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6717 M:      Pavel Machek <pavel@ucw.cz>
6718 L:      linux-pm@vger.kernel.org
6719 B:      https://bugzilla.kernel.org
6720 S:      Supported
6721 F:      arch/x86/power/
6722 F:      drivers/base/power/
6723 F:      kernel/power/
6724 F:      include/linux/suspend.h
6725 F:      include/linux/freezer.h
6726 F:      include/linux/pm.h
6727 F:      arch/*/include/asm/suspend*.h
6728
6729 HID CORE LAYER
6730 M:      Jiri Kosina <jikos@kernel.org>
6731 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
6732 L:      linux-input@vger.kernel.org
6733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
6734 S:      Maintained
6735 F:      drivers/hid/
6736 F:      include/linux/hid*
6737 F:      include/uapi/linux/hid*
6738
6739 HID SENSOR HUB DRIVERS
6740 M:      Jiri Kosina <jikos@kernel.org>
6741 M:      Jonathan Cameron <jic23@kernel.org>
6742 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6743 L:      linux-input@vger.kernel.org
6744 L:      linux-iio@vger.kernel.org
6745 S:      Maintained
6746 F:      Documentation/hid/hid-sensor*
6747 F:      drivers/hid/hid-sensor-*
6748 F:      drivers/iio/*/hid-*
6749 F:      include/linux/hid-sensor-*
6750
6751 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
6752 M:      Thomas Gleixner <tglx@linutronix.de>
6753 L:      linux-kernel@vger.kernel.org
6754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6755 S:      Maintained
6756 F:      Documentation/timers/
6757 F:      kernel/time/hrtimer.c
6758 F:      kernel/time/clockevents.c
6759 F:      kernel/time/timer_*.c
6760 F:      include/linux/clockchips.h
6761 F:      include/linux/hrtimer.h
6762
6763 HIGH-SPEED SCC DRIVER FOR AX.25
6764 L:      linux-hams@vger.kernel.org
6765 S:      Orphan
6766 F:      drivers/net/hamradio/dmascc.c
6767 F:      drivers/net/hamradio/scc.c
6768
6769 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
6770 M:      HighPoint Linux Team <linux@highpoint-tech.com>
6771 W:      http://www.highpoint-tech.com
6772 S:      Supported
6773 F:      Documentation/scsi/hptiop.txt
6774 F:      drivers/scsi/hptiop.c
6775
6776 HIPPI
6777 M:      Jes Sorensen <jes@trained-monkey.org>
6778 L:      linux-hippi@sunsite.dk
6779 S:      Maintained
6780 F:      include/linux/hippidevice.h
6781 F:      include/uapi/linux/if_hippi.h
6782 F:      net/802/hippi.c
6783 F:      drivers/net/hippi/
6784
6785 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
6786 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
6787 M:      Salil Mehta <salil.mehta@huawei.com>
6788 L:      netdev@vger.kernel.org
6789 W:      http://www.hisilicon.com
6790 S:      Maintained
6791 F:      drivers/net/ethernet/hisilicon/hns3/
6792
6793 HISILICON LPC BUS DRIVER
6794 M:      john.garry@huawei.com
6795 W:      http://www.hisilicon.com
6796 S:      Maintained
6797 F:      drivers/bus/hisi_lpc.c
6798 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
6799
6800 HISILICON NETWORK SUBSYSTEM DRIVER
6801 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
6802 M:      Salil Mehta <salil.mehta@huawei.com>
6803 L:      netdev@vger.kernel.org
6804 W:      http://www.hisilicon.com
6805 S:      Maintained
6806 F:      drivers/net/ethernet/hisilicon/
6807 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
6808
6809 HISILICON PMU DRIVER
6810 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
6811 W:      http://www.hisilicon.com
6812 S:      Supported
6813 F:      drivers/perf/hisilicon
6814 F:      Documentation/perf/hisi-pmu.txt
6815
6816 HISILICON ROCE DRIVER
6817 M:      Lijun Ou <oulijun@huawei.com>
6818 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
6819 L:      linux-rdma@vger.kernel.org
6820 S:      Maintained
6821 F:      drivers/infiniband/hw/hns/
6822 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
6823
6824 HISILICON SAS Controller
6825 M:      John Garry <john.garry@huawei.com>
6826 W:      http://www.hisilicon.com
6827 S:      Supported
6828 F:      drivers/scsi/hisi_sas/
6829 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
6830
6831 HMM - Heterogeneous Memory Management
6832 M:      Jérôme Glisse <jglisse@redhat.com>
6833 L:      linux-mm@kvack.org
6834 S:      Maintained
6835 F:      mm/hmm*
6836 F:      include/linux/hmm*
6837 F:      Documentation/vm/hmm.rst
6838
6839 HOST AP DRIVER
6840 M:      Jouni Malinen <j@w1.fi>
6841 L:      linux-wireless@vger.kernel.org
6842 W:      http://w1.fi/hostap-driver.html
6843 S:      Obsolete
6844 F:      drivers/net/wireless/intersil/hostap/
6845
6846 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
6847 L:      platform-driver-x86@vger.kernel.org
6848 S:      Orphan
6849 F:      drivers/platform/x86/tc1100-wmi.c
6850
6851 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
6852 M:      Jaroslav Kysela <perex@perex.cz>
6853 S:      Maintained
6854 F:      drivers/net/ethernet/hp/hp100.*
6855
6856 HPET:   High Precision Event Timers driver
6857 M:      Clemens Ladisch <clemens@ladisch.de>
6858 S:      Maintained
6859 F:      Documentation/timers/hpet.txt
6860 F:      drivers/char/hpet.c
6861 F:      include/linux/hpet.h
6862 F:      include/uapi/linux/hpet.h
6863
6864 HPET:   x86
6865 S:      Orphan
6866 F:      arch/x86/kernel/hpet.c
6867 F:      arch/x86/include/asm/hpet.h
6868
6869 HPFS FILESYSTEM
6870 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
6871 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
6872 S:      Maintained
6873 F:      fs/hpfs/
6874
6875 HSI SUBSYSTEM
6876 M:      Sebastian Reichel <sre@kernel.org>
6877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
6878 S:      Maintained
6879 F:      Documentation/ABI/testing/sysfs-bus-hsi
6880 F:      Documentation/driver-api/hsi.rst
6881 F:      drivers/hsi/
6882 F:      include/linux/hsi/
6883 F:      include/uapi/linux/hsi/
6884
6885 HSO 3G MODEM DRIVER
6886 L:      linux-usb@vger.kernel.org
6887 S:      Orphan
6888 F:      drivers/net/usb/hso.c
6889
6890 HSR NETWORK PROTOCOL
6891 M:      Arvid Brodin <arvid.brodin@alten.se>
6892 L:      netdev@vger.kernel.org
6893 S:      Maintained
6894 F:      net/hsr/
6895
6896 HT16K33 LED CONTROLLER DRIVER
6897 M:      Robin van der Gracht <robin@protonic.nl>
6898 S:      Maintained
6899 F:      drivers/auxdisplay/ht16k33.c
6900 F:      Documentation/devicetree/bindings/display/ht16k33.txt
6901
6902 HTCPEN TOUCHSCREEN DRIVER
6903 M:      Pau Oliva Fora <pof@eslack.org>
6904 L:      linux-input@vger.kernel.org
6905 S:      Maintained
6906 F:      drivers/input/touchscreen/htcpen.c
6907
6908 HUAWEI ETHERNET DRIVER
6909 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
6910 L:      netdev@vger.kernel.org
6911 S:      Supported
6912 F:      Documentation/networking/hinic.txt
6913 F:      drivers/net/ethernet/huawei/hinic/
6914
6915 HUGETLB FILESYSTEM
6916 M:      Mike Kravetz <mike.kravetz@oracle.com>
6917 L:      linux-mm@kvack.org
6918 S:      Maintained
6919 F:      fs/hugetlbfs/
6920 F:      mm/hugetlb.c
6921 F:      include/linux/hugetlb.h
6922 F:      Documentation/admin-guide/mm/hugetlbpage.rst
6923 F:      Documentation/vm/hugetlbfs_reserv.rst
6924 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
6925
6926 HVA ST MEDIA DRIVER
6927 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
6928 L:      linux-media@vger.kernel.org
6929 T:      git git://linuxtv.org/media_tree.git
6930 W:      https://linuxtv.org
6931 S:      Supported
6932 F:      drivers/media/platform/sti/hva
6933
6934 HWPOISON MEMORY FAILURE HANDLING
6935 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
6936 L:      linux-mm@kvack.org
6937 S:      Maintained
6938 F:      mm/memory-failure.c
6939 F:      mm/hwpoison-inject.c
6940
6941 HYGON PROCESSOR SUPPORT
6942 M:      Pu Wen <puwen@hygon.cn>
6943 L:      linux-kernel@vger.kernel.org
6944 S:      Maintained
6945 F:      arch/x86/kernel/cpu/hygon.c
6946
6947 Hyper-V CORE AND DRIVERS
6948 M:      "K. Y. Srinivasan" <kys@microsoft.com>
6949 M:      Haiyang Zhang <haiyangz@microsoft.com>
6950 M:      Stephen Hemminger <sthemmin@microsoft.com>
6951 M:      Sasha Levin <sashal@kernel.org>
6952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
6953 L:      devel@linuxdriverproject.org
6954 S:      Supported
6955 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
6956 F:      arch/x86/include/asm/mshyperv.h
6957 F:      arch/x86/include/asm/trace/hyperv.h
6958 F:      arch/x86/include/asm/hyperv-tlfs.h
6959 F:      arch/x86/kernel/cpu/mshyperv.c
6960 F:      arch/x86/hyperv
6961 F:      drivers/hid/hid-hyperv.c
6962 F:      drivers/hv/
6963 F:      drivers/input/serio/hyperv-keyboard.c
6964 F:      drivers/pci/controller/pci-hyperv.c
6965 F:      drivers/net/hyperv/
6966 F:      drivers/scsi/storvsc_drv.c
6967 F:      drivers/uio/uio_hv_generic.c
6968 F:      drivers/video/fbdev/hyperv_fb.c
6969 F:      net/vmw_vsock/hyperv_transport.c
6970 F:      include/linux/hyperv.h
6971 F:      include/uapi/linux/hyperv.h
6972 F:      tools/hv/
6973 F:      Documentation/ABI/stable/sysfs-bus-vmbus
6974
6975 HYPERVISOR VIRTUAL CONSOLE DRIVER
6976 L:      linuxppc-dev@lists.ozlabs.org
6977 S:      Odd Fixes
6978 F:      drivers/tty/hvc/
6979
6980 I2C ACPI SUPPORT
6981 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6982 L:      linux-i2c@vger.kernel.org
6983 L:      linux-acpi@vger.kernel.org
6984 S:      Maintained
6985 F:      drivers/i2c/i2c-core-acpi.c
6986
6987 I2C CONTROLLER DRIVER FOR NVIDIA GPU
6988 M:      Ajay Gupta <ajayg@nvidia.com>
6989 L:      linux-i2c@vger.kernel.org
6990 S:      Maintained
6991 F:      Documentation/i2c/busses/i2c-nvidia-gpu
6992 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
6993
6994 I2C MUXES
6995 M:      Peter Rosin <peda@axentia.se>
6996 L:      linux-i2c@vger.kernel.org
6997 S:      Maintained
6998 F:      Documentation/i2c/i2c-topology
6999 F:      Documentation/i2c/muxes/
7000 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7001 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7002 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7003 F:      drivers/i2c/i2c-mux.c
7004 F:      drivers/i2c/muxes/
7005 F:      include/linux/i2c-mux.h
7006
7007 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7008 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
7009 L:      linux-i2c@vger.kernel.org
7010 S:      Maintained
7011 F:      drivers/i2c/busses/i2c-mv64xxx.c
7012
7013 I2C OVER PARALLEL PORT
7014 M:      Jean Delvare <jdelvare@suse.com>
7015 L:      linux-i2c@vger.kernel.org
7016 S:      Maintained
7017 F:      Documentation/i2c/busses/i2c-parport
7018 F:      Documentation/i2c/busses/i2c-parport-light
7019 F:      drivers/i2c/busses/i2c-parport.c
7020 F:      drivers/i2c/busses/i2c-parport-light.c
7021
7022 I2C SUBSYSTEM
7023 M:      Wolfram Sang <wsa@the-dreams.de>
7024 L:      linux-i2c@vger.kernel.org
7025 W:      https://i2c.wiki.kernel.org/
7026 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7028 S:      Maintained
7029 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7030 F:      Documentation/i2c/
7031 F:      drivers/i2c/*
7032 F:      include/linux/i2c.h
7033 F:      include/linux/i2c-dev.h
7034 F:      include/linux/i2c-smbus.h
7035 F:      include/uapi/linux/i2c.h
7036 F:      include/uapi/linux/i2c-*.h
7037
7038 I2C SUBSYSTEM HOST DRIVERS
7039 L:      linux-i2c@vger.kernel.org
7040 W:      https://i2c.wiki.kernel.org/
7041 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7043 S:      Odd Fixes
7044 F:      Documentation/devicetree/bindings/i2c/
7045 F:      drivers/i2c/algos/
7046 F:      drivers/i2c/busses/
7047
7048 I2C-TAOS-EVM DRIVER
7049 M:      Jean Delvare <jdelvare@suse.com>
7050 L:      linux-i2c@vger.kernel.org
7051 S:      Maintained
7052 F:      Documentation/i2c/busses/i2c-taos-evm
7053 F:      drivers/i2c/busses/i2c-taos-evm.c
7054
7055 I2C-TINY-USB DRIVER
7056 M:      Till Harbaum <till@harbaum.org>
7057 L:      linux-i2c@vger.kernel.org
7058 W:      http://www.harbaum.org/till/i2c_tiny_usb
7059 S:      Maintained
7060 F:      drivers/i2c/busses/i2c-tiny-usb.c
7061
7062 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7063 M:      Jean Delvare <jdelvare@suse.com>
7064 L:      linux-i2c@vger.kernel.org
7065 S:      Maintained
7066 F:      Documentation/i2c/busses/i2c-ali1535
7067 F:      Documentation/i2c/busses/i2c-ali1563
7068 F:      Documentation/i2c/busses/i2c-ali15x3
7069 F:      Documentation/i2c/busses/i2c-amd756
7070 F:      Documentation/i2c/busses/i2c-amd8111
7071 F:      Documentation/i2c/busses/i2c-i801
7072 F:      Documentation/i2c/busses/i2c-nforce2
7073 F:      Documentation/i2c/busses/i2c-piix4
7074 F:      Documentation/i2c/busses/i2c-sis5595
7075 F:      Documentation/i2c/busses/i2c-sis630
7076 F:      Documentation/i2c/busses/i2c-sis96x
7077 F:      Documentation/i2c/busses/i2c-via
7078 F:      Documentation/i2c/busses/i2c-viapro
7079 F:      drivers/i2c/busses/i2c-ali1535.c
7080 F:      drivers/i2c/busses/i2c-ali1563.c
7081 F:      drivers/i2c/busses/i2c-ali15x3.c
7082 F:      drivers/i2c/busses/i2c-amd756.c
7083 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7084 F:      drivers/i2c/busses/i2c-amd8111.c
7085 F:      drivers/i2c/busses/i2c-i801.c
7086 F:      drivers/i2c/busses/i2c-isch.c
7087 F:      drivers/i2c/busses/i2c-nforce2.c
7088 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7089 F:      drivers/i2c/busses/i2c-piix4.c
7090 F:      drivers/i2c/busses/i2c-sis5595.c
7091 F:      drivers/i2c/busses/i2c-sis630.c
7092 F:      drivers/i2c/busses/i2c-sis96x.c
7093 F:      drivers/i2c/busses/i2c-via.c
7094 F:      drivers/i2c/busses/i2c-viapro.c
7095
7096 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7097 M:      Hans de Goede <hdegoede@redhat.com>
7098 L:      linux-i2c@vger.kernel.org
7099 S:      Maintained
7100 F:      drivers/i2c/busses/i2c-cht-wc.c
7101
7102 I2C/SMBUS ISMT DRIVER
7103 M:      Seth Heasley <seth.heasley@intel.com>
7104 M:      Neil Horman <nhorman@tuxdriver.com>
7105 L:      linux-i2c@vger.kernel.org
7106 F:      drivers/i2c/busses/i2c-ismt.c
7107 F:      Documentation/i2c/busses/i2c-ismt
7108
7109 I2C/SMBUS STUB DRIVER
7110 M:      Jean Delvare <jdelvare@suse.com>
7111 L:      linux-i2c@vger.kernel.org
7112 S:      Maintained
7113 F:      drivers/i2c/i2c-stub.c
7114
7115 I3C SUBSYSTEM
7116 M:      Boris Brezillon <bbrezillon@kernel.org>
7117 L:      linux-i3c@lists.infradead.org
7118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
7119 S:      Maintained
7120 F:      Documentation/ABI/testing/sysfs-bus-i3c
7121 F:      Documentation/devicetree/bindings/i3c/
7122 F:      Documentation/driver-api/i3c
7123 F:      drivers/i3c/
7124 F:      include/linux/i3c/
7125 F:      include/dt-bindings/i3c/
7126
7127 I3C DRIVER FOR SYNOPSYS DESIGNWARE
7128 M:      Vitor Soares <vitor.soares@synopsys.com>
7129 S:      Maintained
7130 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
7131 F:      drivers/i3c/master/dw*
7132
7133 IA64 (Itanium) PLATFORM
7134 M:      Tony Luck <tony.luck@intel.com>
7135 M:      Fenghua Yu <fenghua.yu@intel.com>
7136 L:      linux-ia64@vger.kernel.org
7137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
7138 S:      Maintained
7139 F:      arch/ia64/
7140
7141 IBM Power 842 compression accelerator
7142 M:      Haren Myneni <haren@us.ibm.com>
7143 S:      Supported
7144 F:      drivers/crypto/nx/Makefile
7145 F:      drivers/crypto/nx/Kconfig
7146 F:      drivers/crypto/nx/nx-842*
7147 F:      include/linux/sw842.h
7148 F:      crypto/842.c
7149 F:      lib/842/
7150
7151 IBM Power in-Nest Crypto Acceleration
7152 M:      Breno Leitão <leitao@debian.org>
7153 M:      Nayna Jain <nayna@linux.ibm.com>
7154 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7155 L:      linux-crypto@vger.kernel.org
7156 S:      Supported
7157 F:      drivers/crypto/nx/Makefile
7158 F:      drivers/crypto/nx/Kconfig
7159 F:      drivers/crypto/nx/nx-aes*
7160 F:      drivers/crypto/nx/nx-sha*
7161 F:      drivers/crypto/nx/nx.*
7162 F:      drivers/crypto/nx/nx_csbcpb.h
7163 F:      drivers/crypto/nx/nx_debugfs.h
7164
7165 IBM Power Linux RAID adapter
7166 M:      Brian King <brking@us.ibm.com>
7167 S:      Supported
7168 F:      drivers/scsi/ipr.*
7169
7170 IBM Power SRIOV Virtual NIC Device Driver
7171 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7172 M:      John Allen <jallen@linux.ibm.com>
7173 L:      netdev@vger.kernel.org
7174 S:      Supported
7175 F:      drivers/net/ethernet/ibm/ibmvnic.*
7176
7177 IBM Power Virtual Accelerator Switchboard
7178 M:      Sukadev Bhattiprolu
7179 L:      linuxppc-dev@lists.ozlabs.org
7180 S:      Supported
7181 F:      arch/powerpc/platforms/powernv/vas*
7182 F:      arch/powerpc/platforms/powernv/copy-paste.h
7183 F:      arch/powerpc/include/asm/vas.h
7184 F:      arch/powerpc/include/uapi/asm/vas.h
7185
7186 IBM Power Virtual Ethernet Device Driver
7187 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7188 L:      netdev@vger.kernel.org
7189 S:      Supported
7190 F:      drivers/net/ethernet/ibm/ibmveth.*
7191
7192 IBM Power Virtual FC Device Drivers
7193 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7194 L:      linux-scsi@vger.kernel.org
7195 S:      Supported
7196 F:      drivers/scsi/ibmvscsi/ibmvfc*
7197
7198 IBM Power Virtual Management Channel Driver
7199 M:      Steven Royer <seroyer@linux.ibm.com>
7200 S:      Supported
7201 F:      drivers/misc/ibmvmc.*
7202
7203 IBM Power Virtual SCSI Device Drivers
7204 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7205 L:      linux-scsi@vger.kernel.org
7206 S:      Supported
7207 F:      drivers/scsi/ibmvscsi/ibmvscsi*
7208 F:      include/scsi/viosrp.h
7209
7210 IBM Power Virtual SCSI Device Target Driver
7211 M:      Michael Cyr <mikecyr@linux.ibm.com>
7212 L:      linux-scsi@vger.kernel.org
7213 L:      target-devel@vger.kernel.org
7214 S:      Supported
7215 F:      drivers/scsi/ibmvscsi_tgt/
7216
7217 IBM Power VMX Cryptographic instructions
7218 M:      Breno Leitão <leitao@debian.org>
7219 M:      Nayna Jain <nayna@linux.ibm.com>
7220 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7221 L:      linux-crypto@vger.kernel.org
7222 S:      Supported
7223 F:      drivers/crypto/vmx/Makefile
7224 F:      drivers/crypto/vmx/Kconfig
7225 F:      drivers/crypto/vmx/vmx.c
7226 F:      drivers/crypto/vmx/aes*
7227 F:      drivers/crypto/vmx/ghash*
7228 F:      drivers/crypto/vmx/ppc-xlate.pl
7229
7230 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
7231 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
7232 L:      linux-pci@vger.kernel.org
7233 L:      linuxppc-dev@lists.ozlabs.org
7234 S:      Supported
7235 F:      drivers/pci/hotplug/rpaphp*
7236
7237 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
7238 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
7239 L:      linux-pci@vger.kernel.org
7240 L:      linuxppc-dev@lists.ozlabs.org
7241 S:      Supported
7242 F:      drivers/pci/hotplug/rpadlpar*
7243
7244 IBM ServeRAID RAID DRIVER
7245 S:      Orphan
7246 F:      drivers/scsi/ips.*
7247
7248 ICH LPC AND GPIO DRIVER
7249 M:      Peter Tyser <ptyser@xes-inc.com>
7250 S:      Maintained
7251 F:      drivers/mfd/lpc_ich.c
7252 F:      drivers/gpio/gpio-ich.c
7253
7254 IDE SUBSYSTEM
7255 M:      "David S. Miller" <davem@davemloft.net>
7256 L:      linux-ide@vger.kernel.org
7257 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
7258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
7259 S:      Maintained
7260 F:      Documentation/ide/
7261 F:      drivers/ide/
7262 F:      include/linux/ide.h
7263
7264 IDE/ATAPI DRIVERS
7265 M:      Borislav Petkov <bp@alien8.de>
7266 L:      linux-ide@vger.kernel.org
7267 S:      Maintained
7268 F:      Documentation/cdrom/ide-cd
7269 F:      drivers/ide/ide-cd*
7270
7271 IDEAPAD LAPTOP EXTRAS DRIVER
7272 M:      Ike Panhc <ike.pan@canonical.com>
7273 L:      platform-driver-x86@vger.kernel.org
7274 W:      http://launchpad.net/ideapad-laptop
7275 S:      Maintained
7276 F:      drivers/platform/x86/ideapad-laptop.c
7277
7278 IDEAPAD LAPTOP SLIDEBAR DRIVER
7279 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
7280 L:      linux-input@vger.kernel.org
7281 W:      https://github.com/o2genum/ideapad-slidebar
7282 S:      Maintained
7283 F:      drivers/input/misc/ideapad_slidebar.c
7284
7285 IDT VersaClock 5 CLOCK DRIVER
7286 M:      Marek Vasut <marek.vasut@gmail.com>
7287 S:      Maintained
7288 F:      drivers/clk/clk-versaclock5.c
7289
7290 IEEE 802.15.4 SUBSYSTEM
7291 M:      Alexander Aring <alex.aring@gmail.com>
7292 M:      Stefan Schmidt <stefan@datenfreihafen.org>
7293 L:      linux-wpan@vger.kernel.org
7294 W:      http://wpan.cakelab.org/
7295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
7296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
7297 S:      Maintained
7298 F:      net/ieee802154/
7299 F:      net/mac802154/
7300 F:      drivers/net/ieee802154/
7301 F:      include/linux/nl802154.h
7302 F:      include/linux/ieee802154.h
7303 F:      include/net/nl802154.h
7304 F:      include/net/mac802154.h
7305 F:      include/net/af_ieee802154.h
7306 F:      include/net/cfg802154.h
7307 F:      include/net/ieee802154_netdev.h
7308 F:      Documentation/networking/ieee802154.txt
7309
7310 IFE PROTOCOL
7311 M:      Yotam Gigi <yotam.gi@gmail.com>
7312 M:      Jamal Hadi Salim <jhs@mojatatu.com>
7313 F:      net/ife
7314 F:      include/net/ife.h
7315 F:      include/uapi/linux/ife.h
7316
7317 IGORPLUG-USB IR RECEIVER
7318 M:      Sean Young <sean@mess.org>
7319 L:      linux-media@vger.kernel.org
7320 S:      Maintained
7321 F:      drivers/media/rc/igorplugusb.c
7322
7323 IGUANAWORKS USB IR TRANSCEIVER
7324 M:      Sean Young <sean@mess.org>
7325 L:      linux-media@vger.kernel.org
7326 S:      Maintained
7327 F:      drivers/media/rc/iguanair.c
7328
7329 IIO DIGITAL POTENTIOMETER DAC
7330 M:      Peter Rosin <peda@axentia.se>
7331 L:      linux-iio@vger.kernel.org
7332 S:      Maintained
7333 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
7334 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
7335 F:      drivers/iio/dac/dpot-dac.c
7336
7337 IIO ENVELOPE DETECTOR
7338 M:      Peter Rosin <peda@axentia.se>
7339 L:      linux-iio@vger.kernel.org
7340 S:      Maintained
7341 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
7342 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
7343 F:      drivers/iio/adc/envelope-detector.c
7344
7345 IIO MULTIPLEXER
7346 M:      Peter Rosin <peda@axentia.se>
7347 L:      linux-iio@vger.kernel.org
7348 S:      Maintained
7349 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
7350 F:      drivers/iio/multiplexer/iio-mux.c
7351
7352 IIO SUBSYSTEM AND DRIVERS
7353 M:      Jonathan Cameron <jic23@kernel.org>
7354 R:      Hartmut Knaack <knaack.h@gmx.de>
7355 R:      Lars-Peter Clausen <lars@metafoo.de>
7356 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
7357 L:      linux-iio@vger.kernel.org
7358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
7359 S:      Maintained
7360 F:      Documentation/ABI/testing/configfs-iio*
7361 F:      Documentation/ABI/testing/sysfs-bus-iio*
7362 F:      Documentation/devicetree/bindings/iio/
7363 F:      drivers/iio/
7364 F:      drivers/staging/iio/
7365 F:      include/linux/iio/
7366 F:      tools/iio/
7367
7368 IIO UNIT CONVERTER
7369 M:      Peter Rosin <peda@axentia.se>
7370 L:      linux-iio@vger.kernel.org
7371 S:      Maintained
7372 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
7373 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
7374 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
7375 F:      drivers/iio/afe/iio-rescale.c
7376
7377 IKANOS/ADI EAGLE ADSL USB DRIVER
7378 M:      Matthieu Castet <castet.matthieu@free.fr>
7379 M:      Stanislaw Gruszka <stf_xl@wp.pl>
7380 S:      Maintained
7381 F:      drivers/usb/atm/ueagle-atm.c
7382
7383 IMGTEC ASCII LCD DRIVER
7384 M:      Paul Burton <paul.burton@mips.com>
7385 S:      Maintained
7386 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
7387 F:      drivers/auxdisplay/img-ascii-lcd.c
7388
7389 IMGTEC IR DECODER DRIVER
7390 M:      James Hogan <jhogan@kernel.org>
7391 S:      Maintained
7392 F:      drivers/media/rc/img-ir/
7393
7394 IMON SOUNDGRAPH USB IR RECEIVER
7395 M:      Sean Young <sean@mess.org>
7396 L:      linux-media@vger.kernel.org
7397 S:      Maintained
7398 F:      drivers/media/rc/imon_raw.c
7399 F:      drivers/media/rc/imon.c
7400
7401 IMS TWINTURBO FRAMEBUFFER DRIVER
7402 L:      linux-fbdev@vger.kernel.org
7403 S:      Orphan
7404 F:      drivers/video/fbdev/imsttfb.c
7405
7406 INA209 HARDWARE MONITOR DRIVER
7407 M:      Guenter Roeck <linux@roeck-us.net>
7408 L:      linux-hwmon@vger.kernel.org
7409 S:      Maintained
7410 F:      Documentation/hwmon/ina209
7411 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
7412 F:      drivers/hwmon/ina209.c
7413
7414 INA2XX HARDWARE MONITOR DRIVER
7415 M:      Guenter Roeck <linux@roeck-us.net>
7416 L:      linux-hwmon@vger.kernel.org
7417 S:      Maintained
7418 F:      Documentation/hwmon/ina2xx
7419 F:      drivers/hwmon/ina2xx.c
7420 F:      include/linux/platform_data/ina2xx.h
7421
7422 INDUSTRY PACK SUBSYSTEM (IPACK)
7423 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
7424 M:      Jens Taprogge <jens.taprogge@taprogge.org>
7425 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7426 L:      industrypack-devel@lists.sourceforge.net
7427 W:      http://industrypack.sourceforge.net
7428 S:      Maintained
7429 F:      drivers/ipack/
7430
7431 INFINIBAND SUBSYSTEM
7432 M:      Doug Ledford <dledford@redhat.com>
7433 M:      Jason Gunthorpe <jgg@mellanox.com>
7434 L:      linux-rdma@vger.kernel.org
7435 W:      https://github.com/linux-rdma/rdma-core
7436 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
7438 S:      Supported
7439 F:      Documentation/devicetree/bindings/infiniband/
7440 F:      Documentation/infiniband/
7441 F:      drivers/infiniband/
7442 F:      include/uapi/linux/if_infiniband.h
7443 F:      include/uapi/rdma/
7444 F:      include/rdma/
7445
7446 INGENIC JZ4780 DMA Driver
7447 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
7448 S:      Maintained
7449 F:      drivers/dma/dma-jz4780.c
7450
7451 INGENIC JZ4780 NAND DRIVER
7452 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
7453 L:      linux-mtd@lists.infradead.org
7454 S:      Maintained
7455 F:      drivers/mtd/nand/raw/jz4780_*
7456
7457 INOTIFY
7458 M:      Jan Kara <jack@suse.cz>
7459 R:      Amir Goldstein <amir73il@gmail.com>
7460 L:      linux-fsdevel@vger.kernel.org
7461 S:      Maintained
7462 F:      Documentation/filesystems/inotify.txt
7463 F:      fs/notify/inotify/
7464 F:      include/linux/inotify.h
7465 F:      include/uapi/linux/inotify.h
7466
7467 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
7468 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
7469 L:      linux-input@vger.kernel.org
7470 Q:      http://patchwork.kernel.org/project/linux-input/list/
7471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
7472 S:      Maintained
7473 F:      drivers/input/
7474 F:      include/linux/input.h
7475 F:      include/uapi/linux/input.h
7476 F:      include/uapi/linux/input-event-codes.h
7477 F:      include/linux/input/
7478 F:      Documentation/devicetree/bindings/input/
7479 F:      Documentation/devicetree/bindings/serio/
7480 F:      Documentation/input/
7481
7482 INPUT MULTITOUCH (MT) PROTOCOL
7483 M:      Henrik Rydberg <rydberg@bitmath.org>
7484 L:      linux-input@vger.kernel.org
7485 S:      Odd fixes
7486 F:      Documentation/input/multi-touch-protocol.rst
7487 F:      drivers/input/input-mt.c
7488 K:      \b(ABS|SYN)_MT_
7489
7490 INSIDE SECURE CRYPTO DRIVER
7491 M:      Antoine Tenart <antoine.tenart@bootlin.com>
7492 F:      drivers/crypto/inside-secure/
7493 S:      Maintained
7494 L:      linux-crypto@vger.kernel.org
7495
7496 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
7497 M:      Mimi Zohar <zohar@linux.ibm.com>
7498 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
7499 L:      linux-integrity@vger.kernel.org
7500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7501 S:      Supported
7502 F:      security/integrity/ima/
7503
7504 INTEL 810/815 FRAMEBUFFER DRIVER
7505 M:      Antonino Daplas <adaplas@gmail.com>
7506 L:      linux-fbdev@vger.kernel.org
7507 S:      Maintained
7508 F:      drivers/video/fbdev/i810/
7509
7510 INTEL ASoC DRIVERS
7511 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
7512 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
7513 M:      Jie Yang <yang.jie@linux.intel.com>
7514 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7515 S:      Supported
7516 F:      sound/soc/intel/
7517
7518 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
7519 M:      Hans de Goede <hdegoede@redhat.com>
7520 L:      platform-driver-x86@vger.kernel.org
7521 S:      Maintained
7522 F:      drivers/platform/x86/intel_atomisp2_pm.c
7523
7524 INTEL C600 SERIES SAS CONTROLLER DRIVER
7525 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
7526 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
7527 L:      linux-scsi@vger.kernel.org
7528 T:      git git://git.code.sf.net/p/intel-sas/isci
7529 S:      Supported
7530 F:      drivers/scsi/isci/
7531
7532 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
7533 M:      Jani Nikula <jani.nikula@linux.intel.com>
7534 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
7535 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
7536 L:      intel-gfx@lists.freedesktop.org
7537 W:      https://01.org/linuxgraphics/
7538 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
7539 C:      irc://chat.freenode.net/intel-gfx
7540 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
7541 T:      git git://anongit.freedesktop.org/drm-intel
7542 S:      Supported
7543 F:      drivers/gpu/drm/i915/
7544 F:      include/drm/i915*
7545 F:      include/uapi/drm/i915_drm.h
7546 F:      Documentation/gpu/i915.rst
7547
7548 INTEL ETHERNET DRIVERS
7549 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
7550 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
7551 W:      http://www.intel.com/support/feedback.htm
7552 W:      http://e1000.sourceforge.net/
7553 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
7554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
7555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
7556 S:      Supported
7557 F:      Documentation/networking/device_drivers/intel/e100.rst
7558 F:      Documentation/networking/device_drivers/intel/e1000.rst
7559 F:      Documentation/networking/device_drivers/intel/e1000e.rst
7560 F:      Documentation/networking/device_drivers/intel/fm10k.rst
7561 F:      Documentation/networking/device_drivers/intel/igb.rst
7562 F:      Documentation/networking/device_drivers/intel/igbvf.rst
7563 F:      Documentation/networking/device_drivers/intel/ixgb.rst
7564 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
7565 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
7566 F:      Documentation/networking/device_drivers/intel/i40e.rst
7567 F:      Documentation/networking/device_drivers/intel/iavf.rst
7568 F:      Documentation/networking/device_drivers/intel/ice.rst
7569 F:      drivers/net/ethernet/intel/
7570 F:      drivers/net/ethernet/intel/*/
7571 F:      include/linux/avf/virtchnl.h
7572
7573 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
7574 M:      Maik Broemme <mbroemme@libmpq.org>
7575 L:      linux-fbdev@vger.kernel.org
7576 S:      Maintained
7577 F:      Documentation/fb/intelfb.txt
7578 F:      drivers/video/fbdev/intelfb/
7579
7580 INTEL GPIO DRIVERS
7581 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7582 L:      linux-gpio@vger.kernel.org
7583 S:      Maintained
7584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7585 F:      drivers/gpio/gpio-ich.c
7586 F:      drivers/gpio/gpio-intel-mid.c
7587 F:      drivers/gpio/gpio-lynxpoint.c
7588 F:      drivers/gpio/gpio-merrifield.c
7589 F:      drivers/gpio/gpio-ml-ioh.c
7590 F:      drivers/gpio/gpio-pch.c
7591 F:      drivers/gpio/gpio-sch.c
7592 F:      drivers/gpio/gpio-sodaville.c
7593
7594 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
7595 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
7596 M:      Zhi Wang <zhi.a.wang@intel.com>
7597 L:      intel-gvt-dev@lists.freedesktop.org
7598 L:      intel-gfx@lists.freedesktop.org
7599 W:      https://01.org/igvt-g
7600 T:      git https://github.com/intel/gvt-linux.git
7601 S:      Supported
7602 F:      drivers/gpu/drm/i915/gvt/
7603
7604 INTEL HID EVENT DRIVER
7605 M:      Alex Hung <alex.hung@canonical.com>
7606 L:      platform-driver-x86@vger.kernel.org
7607 S:      Maintained
7608 F:      drivers/platform/x86/intel-hid.c
7609
7610 INTEL I/OAT DMA DRIVER
7611 M:      Dave Jiang <dave.jiang@intel.com>
7612 R:      Dan Williams <dan.j.williams@intel.com>
7613 L:      dmaengine@vger.kernel.org
7614 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
7615 S:      Supported
7616 F:      drivers/dma/ioat*
7617
7618 INTEL IDLE DRIVER
7619 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
7620 M:      Len Brown <lenb@kernel.org>
7621 L:      linux-pm@vger.kernel.org
7622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
7623 B:      https://bugzilla.kernel.org
7624 S:      Supported
7625 F:      drivers/idle/intel_idle.c
7626
7627 INTEL INTEGRATED SENSOR HUB DRIVER
7628 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7629 M:      Jiri Kosina <jikos@kernel.org>
7630 L:      linux-input@vger.kernel.org
7631 S:      Maintained
7632 F:      drivers/hid/intel-ish-hid/
7633
7634 INTEL IOMMU (VT-d)
7635 M:      David Woodhouse <dwmw2@infradead.org>
7636 L:      iommu@lists.linux-foundation.org
7637 T:      git git://git.infradead.org/iommu-2.6.git
7638 S:      Supported
7639 F:      drivers/iommu/intel-iommu.c
7640 F:      include/linux/intel-iommu.h
7641
7642 INTEL IOP-ADMA DMA DRIVER
7643 R:      Dan Williams <dan.j.williams@intel.com>
7644 S:      Odd fixes
7645 F:      drivers/dma/iop-adma.c
7646
7647 INTEL IPU3 CSI-2 CIO2 DRIVER
7648 M:      Yong Zhi <yong.zhi@intel.com>
7649 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
7650 M:      Bingbu Cao <bingbu.cao@intel.com>
7651 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
7652 R:      Jian Xu Zheng <jian.xu.zheng@intel.com>
7653 L:      linux-media@vger.kernel.org
7654 S:      Maintained
7655 F:      drivers/media/pci/intel/ipu3/
7656 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
7657
7658 INTEL IPU3 CSI-2 IMGU DRIVER
7659 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
7660 L:      linux-media@vger.kernel.org
7661 S:      Maintained
7662 F:      drivers/staging/media/ipu3/
7663 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
7664 F:      Documentation/media/v4l-drivers/ipu3.rst
7665
7666 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
7667 M:      Krzysztof Halasa <khalasa@piap.pl>
7668 S:      Maintained
7669 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
7670 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
7671 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
7672 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
7673 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
7674 F:      drivers/net/wan/ixp4xx_hss.c
7675
7676 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
7677 M:      Deepak Saxena <dsaxena@plexity.net>
7678 S:      Maintained
7679 F:      drivers/char/hw_random/ixp4xx-rng.c
7680
7681 INTEL MANAGEMENT ENGINE (mei)
7682 M:      Tomas Winkler <tomas.winkler@intel.com>
7683 L:      linux-kernel@vger.kernel.org
7684 S:      Supported
7685 F:      include/uapi/linux/mei.h
7686 F:      include/linux/mei_cl_bus.h
7687 F:      drivers/misc/mei/*
7688 F:      drivers/watchdog/mei_wdt.c
7689 F:      Documentation/misc-devices/mei/*
7690 F:      samples/mei/*
7691
7692 INTEL MENLOW THERMAL DRIVER
7693 M:      Sujith Thomas <sujith.thomas@intel.com>
7694 L:      platform-driver-x86@vger.kernel.org
7695 W:      https://01.org/linux-acpi
7696 S:      Supported
7697 F:      drivers/platform/x86/intel_menlow.c
7698
7699 INTEL MIC DRIVERS (mic)
7700 M:      Sudeep Dutt <sudeep.dutt@intel.com>
7701 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
7702 S:      Supported
7703 W:      https://github.com/sudeepdutt/mic
7704 W:      http://software.intel.com/en-us/mic-developer
7705 F:      include/linux/mic_bus.h
7706 F:      include/linux/scif.h
7707 F:      include/uapi/linux/mic_common.h
7708 F:      include/uapi/linux/mic_ioctl.h
7709 F:      include/uapi/linux/scif_ioctl.h
7710 F:      drivers/misc/mic/
7711 F:      drivers/dma/mic_x100_dma.c
7712 F:      drivers/dma/mic_x100_dma.h
7713 F:      Documentation/mic/
7714
7715 INTEL PMC CORE DRIVER
7716 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
7717 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
7718 L:      platform-driver-x86@vger.kernel.org
7719 S:      Maintained
7720 F:      drivers/platform/x86/intel_pmc_core*
7721
7722 INTEL PMC/P-Unit IPC DRIVER
7723 M:      Zha Qipeng<qipeng.zha@intel.com>
7724 L:      platform-driver-x86@vger.kernel.org
7725 S:      Maintained
7726 F:      drivers/platform/x86/intel_pmc_ipc.c
7727 F:      drivers/platform/x86/intel_punit_ipc.c
7728 F:      arch/x86/include/asm/intel_pmc_ipc.h
7729 F:      arch/x86/include/asm/intel_punit_ipc.h
7730
7731 INTEL PMIC GPIO DRIVERS
7732 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7733 S:      Maintained
7734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7735 F:      drivers/gpio/gpio-*cove.c
7736 F:      drivers/gpio/gpio-msic.c
7737
7738 INTEL MULTIFUNCTION PMIC DEVICE DRIVERS
7739 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7740 S:      Maintained
7741 F:      drivers/mfd/intel_msic.c
7742 F:      drivers/mfd/intel_soc_pmic*
7743 F:      include/linux/mfd/intel_msic.h
7744 F:      include/linux/mfd/intel_soc_pmic*
7745
7746 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
7747 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
7748 L:      linux-wireless@vger.kernel.org
7749 S:      Maintained
7750 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
7751 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
7752 F:      drivers/net/wireless/intel/ipw2x00/
7753
7754 INTEL PSTATE DRIVER
7755 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7756 M:      Len Brown <lenb@kernel.org>
7757 L:      linux-pm@vger.kernel.org
7758 S:      Supported
7759 F:      drivers/cpufreq/intel_pstate.c
7760
7761 INTEL RDMA RNIC DRIVER
7762 M:      Faisal Latif <faisal.latif@intel.com>
7763 M:      Shiraz Saleem <shiraz.saleem@intel.com>
7764 L:      linux-rdma@vger.kernel.org
7765 S:      Supported
7766 F:      drivers/infiniband/hw/i40iw/
7767 F:      include/uapi/rdma/i40iw-abi.h
7768
7769 INTEL TELEMETRY DRIVER
7770 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
7771 M:      "David E. Box" <david.e.box@linux.intel.com>
7772 L:      platform-driver-x86@vger.kernel.org
7773 S:      Maintained
7774 F:      arch/x86/include/asm/intel_telemetry.h
7775 F:      drivers/platform/x86/intel_telemetry*
7776
7777 INTEL VIRTUAL BUTTON DRIVER
7778 M:      AceLan Kao <acelan.kao@canonical.com>
7779 L:      platform-driver-x86@vger.kernel.org
7780 S:      Maintained
7781 F:      drivers/platform/x86/intel-vbtn.c
7782
7783 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
7784 M:      Stanislaw Gruszka <sgruszka@redhat.com>
7785 L:      linux-wireless@vger.kernel.org
7786 S:      Supported
7787 F:      drivers/net/wireless/intel/iwlegacy/
7788
7789 INTEL WIRELESS WIFI LINK (iwlwifi)
7790 M:      Johannes Berg <johannes.berg@intel.com>
7791 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
7792 M:      Luca Coelho <luciano.coelho@intel.com>
7793 M:      Intel Linux Wireless <linuxwifi@intel.com>
7794 L:      linux-wireless@vger.kernel.org
7795 W:      http://intellinuxwireless.org
7796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
7797 S:      Supported
7798 F:      drivers/net/wireless/intel/iwlwifi/
7799
7800 INTEL WIRELESS WIMAX CONNECTION 2400
7801 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
7802 M:      linux-wimax@intel.com
7803 L:      wimax@linuxwimax.org (subscribers-only)
7804 S:      Supported
7805 W:      http://linuxwimax.org
7806 F:      Documentation/wimax/README.i2400m
7807 F:      drivers/net/wimax/i2400m/
7808 F:      include/uapi/linux/wimax/i2400m.h
7809
7810 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
7811 M:      Mario Limonciello <mario.limonciello@dell.com>
7812 S:      Maintained
7813 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
7814
7815 INTEL(R) TRACE HUB
7816 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7817 S:      Supported
7818 F:      Documentation/trace/intel_th.rst
7819 F:      drivers/hwtracing/intel_th/
7820
7821 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
7822 M:      Ning Sun <ning.sun@intel.com>
7823 L:      tboot-devel@lists.sourceforge.net
7824 W:      http://tboot.sourceforge.net
7825 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
7826 S:      Supported
7827 F:      Documentation/intel_txt.txt
7828 F:      include/linux/tboot.h
7829 F:      arch/x86/kernel/tboot.c
7830
7831 INTEL-MID GPIO DRIVER
7832 M:      David Cohen <david.a.cohen@linux.intel.com>
7833 L:      linux-gpio@vger.kernel.org
7834 S:      Maintained
7835 F:      drivers/gpio/gpio-intel-mid.c
7836
7837 INVENSENSE MPU-3050 GYROSCOPE DRIVER
7838 M:      Linus Walleij <linus.walleij@linaro.org>
7839 L:      linux-iio@vger.kernel.org
7840 S:      Maintained
7841 F:      drivers/iio/gyro/mpu3050*
7842 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
7843
7844 IOC3 ETHERNET DRIVER
7845 M:      Ralf Baechle <ralf@linux-mips.org>
7846 L:      linux-mips@vger.kernel.org
7847 S:      Maintained
7848 F:      drivers/net/ethernet/sgi/ioc3-eth.c
7849
7850 IOC3 SERIAL DRIVER
7851 M:      Pat Gefre <pfg@sgi.com>
7852 L:      linux-serial@vger.kernel.org
7853 S:      Maintained
7854 F:      drivers/tty/serial/ioc3_serial.c
7855
7856 IOMMU DRIVERS
7857 M:      Joerg Roedel <joro@8bytes.org>
7858 L:      iommu@lists.linux-foundation.org
7859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
7860 S:      Maintained
7861 F:      Documentation/devicetree/bindings/iommu/
7862 F:      drivers/iommu/
7863 F:      include/linux/iommu.h
7864 F:      include/linux/of_iommu.h
7865 F:      include/linux/iova.h
7866
7867 IP MASQUERADING
7868 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
7869 S:      Maintained
7870 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
7871
7872 IPMI SUBSYSTEM
7873 M:      Corey Minyard <minyard@acm.org>
7874 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
7875 W:      http://openipmi.sourceforge.net/
7876 S:      Supported
7877 F:      Documentation/devicetree/bindings/ipmi/
7878 F:      Documentation/IPMI.txt
7879 F:      drivers/char/ipmi/
7880 F:      include/linux/ipmi*
7881 F:      include/uapi/linux/ipmi*
7882
7883 IPS SCSI RAID DRIVER
7884 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
7885 L:      linux-scsi@vger.kernel.org
7886 W:      http://www.adaptec.com/
7887 S:      Maintained
7888 F:      drivers/scsi/ips*
7889
7890 IPVS
7891 M:      Wensong Zhang <wensong@linux-vs.org>
7892 M:      Simon Horman <horms@verge.net.au>
7893 M:      Julian Anastasov <ja@ssi.bg>
7894 L:      netdev@vger.kernel.org
7895 L:      lvs-devel@vger.kernel.org
7896 S:      Maintained
7897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
7898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
7899 F:      Documentation/networking/ipvs-sysctl.txt
7900 F:      include/net/ip_vs.h
7901 F:      include/uapi/linux/ip_vs.h
7902 F:      net/netfilter/ipvs/
7903
7904 IPWIRELESS DRIVER
7905 M:      Jiri Kosina <jikos@kernel.org>
7906 M:      David Sterba <dsterba@suse.com>
7907 S:      Odd Fixes
7908 F:      drivers/tty/ipwireless/
7909
7910 IPX NETWORK LAYER
7911 L:      netdev@vger.kernel.org
7912 S:      Obsolete
7913 F:      include/uapi/linux/ipx.h
7914
7915 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
7916 M:      Marc Zyngier <marc.zyngier@arm.com>
7917 S:      Maintained
7918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7919 F:      Documentation/IRQ-domain.txt
7920 F:      include/linux/irqdomain.h
7921 F:      kernel/irq/irqdomain.c
7922 F:      kernel/irq/msi.c
7923
7924 IRQ SUBSYSTEM
7925 M:      Thomas Gleixner <tglx@linutronix.de>
7926 L:      linux-kernel@vger.kernel.org
7927 S:      Maintained
7928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7929 F:      kernel/irq/
7930
7931 IRQCHIP DRIVERS
7932 M:      Thomas Gleixner <tglx@linutronix.de>
7933 M:      Jason Cooper <jason@lakedaemon.net>
7934 M:      Marc Zyngier <marc.zyngier@arm.com>
7935 L:      linux-kernel@vger.kernel.org
7936 S:      Maintained
7937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7938 F:      Documentation/devicetree/bindings/interrupt-controller/
7939 F:      drivers/irqchip/
7940
7941 ISA
7942 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
7943 S:      Maintained
7944 F:      Documentation/isa.txt
7945 F:      drivers/base/isa.c
7946 F:      include/linux/isa.h
7947
7948 ISA RADIO MODULE
7949 M:      Hans Verkuil <hverkuil@xs4all.nl>
7950 L:      linux-media@vger.kernel.org
7951 T:      git git://linuxtv.org/media_tree.git
7952 W:      https://linuxtv.org
7953 S:      Maintained
7954 F:      drivers/media/radio/radio-isa*
7955
7956 ISAPNP
7957 M:      Jaroslav Kysela <perex@perex.cz>
7958 S:      Maintained
7959 F:      Documentation/isapnp.txt
7960 F:      drivers/pnp/isapnp/
7961 F:      include/linux/isapnp.h
7962
7963 ISCSI
7964 M:      Lee Duncan <lduncan@suse.com>
7965 M:      Chris Leech <cleech@redhat.com>
7966 L:      open-iscsi@googlegroups.com
7967 W:      www.open-iscsi.com
7968 S:      Maintained
7969 F:      drivers/scsi/*iscsi*
7970 F:      include/scsi/*iscsi*
7971
7972 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
7973 M:      Peter Jones <pjones@redhat.com>
7974 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
7975 S:      Maintained
7976 F:      drivers/firmware/iscsi_ibft*
7977
7978 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
7979 M:      Sagi Grimberg <sagi@grimberg.me>
7980 M:      Max Gurtovoy <maxg@mellanox.com>
7981 L:      linux-rdma@vger.kernel.org
7982 S:      Supported
7983 W:      http://www.openfabrics.org
7984 W:      www.open-iscsi.org
7985 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7986 F:      drivers/infiniband/ulp/iser/
7987
7988 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
7989 M:      Sagi Grimberg <sagi@grimberg.me>
7990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
7991 L:      linux-rdma@vger.kernel.org
7992 L:      target-devel@vger.kernel.org
7993 S:      Supported
7994 W:      http://www.linux-iscsi.org
7995 F:      drivers/infiniband/ulp/isert
7996
7997 ISDN SUBSYSTEM
7998 M:      Karsten Keil <isdn@linux-pingi.de>
7999 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8000 L:      netdev@vger.kernel.org
8001 W:      http://www.isdn4linux.de
8002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
8003 S:      Maintained
8004 F:      Documentation/isdn/
8005 F:      drivers/isdn/
8006 F:      include/linux/isdn.h
8007 F:      include/linux/isdn/
8008 F:      include/uapi/linux/isdn.h
8009 F:      include/uapi/linux/isdn/
8010
8011 IT87 HARDWARE MONITORING DRIVER
8012 M:      Jean Delvare <jdelvare@suse.com>
8013 L:      linux-hwmon@vger.kernel.org
8014 S:      Maintained
8015 F:      Documentation/hwmon/it87
8016 F:      drivers/hwmon/it87.c
8017
8018 IT913X MEDIA DRIVER
8019 M:      Antti Palosaari <crope@iki.fi>
8020 L:      linux-media@vger.kernel.org
8021 W:      https://linuxtv.org
8022 W:      http://palosaari.fi/linux/
8023 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8024 T:      git git://linuxtv.org/anttip/media_tree.git
8025 S:      Maintained
8026 F:      drivers/media/tuners/it913x*
8027
8028 IVTV VIDEO4LINUX DRIVER
8029 M:      Andy Walls <awalls@md.metrocast.net>
8030 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
8031 L:      linux-media@vger.kernel.org
8032 T:      git git://linuxtv.org/media_tree.git
8033 W:      http://www.ivtvdriver.org
8034 S:      Maintained
8035 F:      Documentation/media/v4l-drivers/ivtv*
8036 F:      drivers/media/pci/ivtv/
8037 F:      include/uapi/linux/ivtv*
8038
8039 IX2505V MEDIA DRIVER
8040 M:      Malcolm Priestley <tvboxspy@gmail.com>
8041 L:      linux-media@vger.kernel.org
8042 W:      https://linuxtv.org
8043 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8044 S:      Maintained
8045 F:      drivers/media/dvb-frontends/ix2505v*
8046
8047 JAILHOUSE HYPERVISOR INTERFACE
8048 M:      Jan Kiszka <jan.kiszka@siemens.com>
8049 L:      jailhouse-dev@googlegroups.com
8050 S:      Maintained
8051 F:      arch/x86/kernel/jailhouse.c
8052 F:      arch/x86/include/asm/jailhouse_para.h
8053
8054 JC42.4 TEMPERATURE SENSOR DRIVER
8055 M:      Guenter Roeck <linux@roeck-us.net>
8056 L:      linux-hwmon@vger.kernel.org
8057 S:      Maintained
8058 F:      drivers/hwmon/jc42.c
8059 F:      Documentation/hwmon/jc42
8060
8061 JFS FILESYSTEM
8062 M:      Dave Kleikamp <shaggy@kernel.org>
8063 L:      jfs-discussion@lists.sourceforge.net
8064 W:      http://jfs.sourceforge.net/
8065 T:      git git://github.com/kleikamp/linux-shaggy.git
8066 S:      Maintained
8067 F:      Documentation/filesystems/jfs.txt
8068 F:      fs/jfs/
8069
8070 JME NETWORK DRIVER
8071 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
8072 L:      netdev@vger.kernel.org
8073 S:      Maintained
8074 F:      drivers/net/ethernet/jme.*
8075
8076 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
8077 M:      David Woodhouse <dwmw2@infradead.org>
8078 L:      linux-mtd@lists.infradead.org
8079 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
8080 S:      Maintained
8081 F:      fs/jffs2/
8082 F:      include/uapi/linux/jffs2.h
8083
8084 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
8085 M:      "Theodore Ts'o" <tytso@mit.edu>
8086 M:      Jan Kara <jack@suse.com>
8087 L:      linux-ext4@vger.kernel.org
8088 S:      Maintained
8089 F:      fs/jbd2/
8090 F:      include/linux/jbd2.h
8091
8092 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
8093 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
8094 L:      linux-media@vger.kernel.org
8095 S:      Maintained
8096 F:      drivers/media/platform/rcar_jpu.c
8097
8098 JSM Neo PCI based serial card
8099 L:      linux-serial@vger.kernel.org
8100 S:      Orphan
8101 F:      drivers/tty/serial/jsm/
8102
8103 K10TEMP HARDWARE MONITORING DRIVER
8104 M:      Clemens Ladisch <clemens@ladisch.de>
8105 L:      linux-hwmon@vger.kernel.org
8106 S:      Maintained
8107 F:      Documentation/hwmon/k10temp
8108 F:      drivers/hwmon/k10temp.c
8109
8110 K8TEMP HARDWARE MONITORING DRIVER
8111 M:      Rudolf Marek <r.marek@assembler.cz>
8112 L:      linux-hwmon@vger.kernel.org
8113 S:      Maintained
8114 F:      Documentation/hwmon/k8temp
8115 F:      drivers/hwmon/k8temp.c
8116
8117 KASAN
8118 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
8119 R:      Alexander Potapenko <glider@google.com>
8120 R:      Dmitry Vyukov <dvyukov@google.com>
8121 L:      kasan-dev@googlegroups.com
8122 S:      Maintained
8123 F:      arch/*/include/asm/kasan.h
8124 F:      arch/*/mm/kasan_init*
8125 F:      Documentation/dev-tools/kasan.rst
8126 F:      include/linux/kasan*.h
8127 F:      lib/test_kasan.c
8128 F:      mm/kasan/
8129 F:      scripts/Makefile.kasan
8130
8131 KCONFIG
8132 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
8134 L:      linux-kbuild@vger.kernel.org
8135 S:      Maintained
8136 F:      Documentation/kbuild/kconfig*
8137 F:      scripts/kconfig/
8138 F:      scripts/Kconfig.include
8139
8140 KDUMP
8141 M:      Dave Young <dyoung@redhat.com>
8142 M:      Baoquan He <bhe@redhat.com>
8143 R:      Vivek Goyal <vgoyal@redhat.com>
8144 L:      kexec@lists.infradead.org
8145 W:      http://lse.sourceforge.net/kdump/
8146 S:      Maintained
8147 F:      Documentation/kdump/
8148
8149 KEENE FM RADIO TRANSMITTER DRIVER
8150 M:      Hans Verkuil <hverkuil@xs4all.nl>
8151 L:      linux-media@vger.kernel.org
8152 T:      git git://linuxtv.org/media_tree.git
8153 W:      https://linuxtv.org
8154 S:      Maintained
8155 F:      drivers/media/radio/radio-keene*
8156
8157 KERNEL AUTOMOUNTER
8158 M:      Ian Kent <raven@themaw.net>
8159 L:      autofs@vger.kernel.org
8160 S:      Maintained
8161 F:      fs/autofs/
8162
8163 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
8164 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8165 M:      Michal Marek <michal.lkml@markovi.net>
8166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
8167 L:      linux-kbuild@vger.kernel.org
8168 S:      Maintained
8169 F:      Documentation/kbuild/
8170 F:      Makefile
8171 F:      scripts/Kbuild*
8172 F:      scripts/Makefile*
8173 F:      scripts/basic/
8174 F:      scripts/mk*
8175 F:      scripts/mod/
8176 F:      scripts/package/
8177
8178 KERNEL JANITORS
8179 L:      kernel-janitors@vger.kernel.org
8180 W:      http://kernelnewbies.org/KernelJanitors
8181 S:      Odd Fixes
8182
8183 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
8184 M:      "J. Bruce Fields" <bfields@fieldses.org>
8185 M:      Jeff Layton <jlayton@kernel.org>
8186 L:      linux-nfs@vger.kernel.org
8187 W:      http://nfs.sourceforge.net/
8188 T:      git git://linux-nfs.org/~bfields/linux.git
8189 S:      Supported
8190 F:      fs/nfsd/
8191 F:      include/uapi/linux/nfsd/
8192 F:      fs/lockd/
8193 F:      fs/nfs_common/
8194 F:      net/sunrpc/
8195 F:      include/linux/lockd/
8196 F:      include/linux/sunrpc/
8197 F:      include/uapi/linux/sunrpc/
8198
8199 KERNEL SELFTEST FRAMEWORK
8200 M:      Shuah Khan <shuah@kernel.org>
8201 L:      linux-kselftest@vger.kernel.org
8202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
8203 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
8204 S:      Maintained
8205 F:      tools/testing/selftests/
8206 F:      Documentation/dev-tools/kselftest*
8207
8208 KERNEL USERMODE HELPER
8209 M:      Luis Chamberlain <mcgrof@kernel.org>
8210 L:      linux-kernel@vger.kernel.org
8211 S:      Maintained
8212 F:      kernel/umh.c
8213 F:      include/linux/umh.h
8214
8215 KERNEL VIRTUAL MACHINE (KVM)
8216 M:      Paolo Bonzini <pbonzini@redhat.com>
8217 M:      Radim Krčmář <rkrcmar@redhat.com>
8218 L:      kvm@vger.kernel.org
8219 W:      http://www.linux-kvm.org
8220 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8221 S:      Supported
8222 F:      Documentation/virtual/kvm/
8223 F:      include/trace/events/kvm.h
8224 F:      include/uapi/asm-generic/kvm*
8225 F:      include/uapi/linux/kvm*
8226 F:      include/asm-generic/kvm*
8227 F:      include/linux/kvm*
8228 F:      include/kvm/iodev.h
8229 F:      virt/kvm/*
8230 F:      tools/kvm/
8231
8232 KERNEL VIRTUAL MACHINE FOR AMD-V (KVM/amd)
8233 M:      Joerg Roedel <joro@8bytes.org>
8234 L:      kvm@vger.kernel.org
8235 W:      http://www.linux-kvm.org/
8236 S:      Maintained
8237 F:      arch/x86/include/asm/svm.h
8238 F:      arch/x86/kvm/svm.c
8239
8240 KERNEL VIRTUAL MACHINE FOR ARM (KVM/arm)
8241 M:      Christoffer Dall <christoffer.dall@arm.com>
8242 M:      Marc Zyngier <marc.zyngier@arm.com>
8243 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8244 L:      kvmarm@lists.cs.columbia.edu
8245 W:      http://systems.cs.columbia.edu/projects/kvm-arm
8246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
8247 S:      Supported
8248 F:      arch/arm/include/uapi/asm/kvm*
8249 F:      arch/arm/include/asm/kvm*
8250 F:      arch/arm/kvm/
8251 F:      virt/kvm/arm/
8252 F:      include/kvm/arm_*
8253
8254 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
8255 M:      Christoffer Dall <christoffer.dall@arm.com>
8256 M:      Marc Zyngier <marc.zyngier@arm.com>
8257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8258 L:      kvmarm@lists.cs.columbia.edu
8259 S:      Maintained
8260 F:      arch/arm64/include/uapi/asm/kvm*
8261 F:      arch/arm64/include/asm/kvm*
8262 F:      arch/arm64/kvm/
8263
8264 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
8265 M:      James Hogan <jhogan@kernel.org>
8266 L:      linux-mips@vger.kernel.org
8267 S:      Supported
8268 F:      arch/mips/include/uapi/asm/kvm*
8269 F:      arch/mips/include/asm/kvm*
8270 F:      arch/mips/kvm/
8271
8272 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
8273 M:      Paul Mackerras <paulus@ozlabs.org>
8274 L:      kvm-ppc@vger.kernel.org
8275 W:      http://www.linux-kvm.org/
8276 T:      git git://github.com/agraf/linux-2.6.git
8277 S:      Supported
8278 F:      arch/powerpc/include/uapi/asm/kvm*
8279 F:      arch/powerpc/include/asm/kvm*
8280 F:      arch/powerpc/kvm/
8281 F:      arch/powerpc/kernel/kvm*
8282
8283 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
8284 M:      Christian Borntraeger <borntraeger@de.ibm.com>
8285 M:      Janosch Frank <frankja@linux.ibm.com>
8286 R:      David Hildenbrand <david@redhat.com>
8287 R:      Cornelia Huck <cohuck@redhat.com>
8288 L:      linux-s390@vger.kernel.org
8289 W:      http://www.ibm.com/developerworks/linux/linux390/
8290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
8291 S:      Supported
8292 F:      arch/s390/include/uapi/asm/kvm*
8293 F:      arch/s390/include/asm/gmap.h
8294 F:      arch/s390/include/asm/kvm*
8295 F:      arch/s390/kvm/
8296 F:      arch/s390/mm/gmap.c
8297
8298 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
8299 M:      Paolo Bonzini <pbonzini@redhat.com>
8300 M:      Radim Krčmář <rkrcmar@redhat.com>
8301 L:      kvm@vger.kernel.org
8302 W:      http://www.linux-kvm.org
8303 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8304 S:      Supported
8305 F:      arch/x86/kvm/
8306 F:      arch/x86/kvm/*/
8307 F:      arch/x86/include/uapi/asm/kvm*
8308 F:      arch/x86/include/asm/kvm*
8309 F:      arch/x86/include/asm/pvclock-abi.h
8310 F:      arch/x86/kernel/kvm.c
8311 F:      arch/x86/kernel/kvmclock.c
8312
8313 KERNFS
8314 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8315 M:      Tejun Heo <tj@kernel.org>
8316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8317 S:      Supported
8318 F:      include/linux/kernfs.h
8319 F:      fs/kernfs/
8320
8321 KEXEC
8322 M:      Eric Biederman <ebiederm@xmission.com>
8323 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
8324 L:      kexec@lists.infradead.org
8325 S:      Maintained
8326 F:      include/linux/kexec.h
8327 F:      include/uapi/linux/kexec.h
8328 F:      kernel/kexec*
8329
8330 KEYS-ENCRYPTED
8331 M:      Mimi Zohar <zohar@linux.ibm.com>
8332 L:      linux-integrity@vger.kernel.org
8333 L:      keyrings@vger.kernel.org
8334 S:      Supported
8335 F:      Documentation/security/keys/trusted-encrypted.rst
8336 F:      include/keys/encrypted-type.h
8337 F:      security/keys/encrypted-keys/
8338
8339 KEYS-TRUSTED
8340 M:      James Bottomley <jejb@linux.ibm.com>
8341 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
8342 M:      Mimi Zohar <zohar@linuxibm.com>
8343 L:      linux-integrity@vger.kernel.org
8344 L:      keyrings@vger.kernel.org
8345 S:      Supported
8346 F:      Documentation/security/keys/trusted-encrypted.rst
8347 F:      include/keys/trusted-type.h
8348 F:      security/keys/trusted.c
8349 F:      security/keys/trusted.h
8350
8351 KEYS/KEYRINGS:
8352 M:      David Howells <dhowells@redhat.com>
8353 L:      keyrings@vger.kernel.org
8354 S:      Maintained
8355 F:      Documentation/security/keys/core.rst
8356 F:      include/linux/key.h
8357 F:      include/linux/key-type.h
8358 F:      include/linux/keyctl.h
8359 F:      include/uapi/linux/keyctl.h
8360 F:      include/keys/
8361 F:      security/keys/
8362
8363 KGDB / KDB /debug_core
8364 M:      Jason Wessel <jason.wessel@windriver.com>
8365 M:      Daniel Thompson <daniel.thompson@linaro.org>
8366 W:      http://kgdb.wiki.kernel.org/
8367 L:      kgdb-bugreport@lists.sourceforge.net
8368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
8369 S:      Maintained
8370 F:      Documentation/dev-tools/kgdb.rst
8371 F:      drivers/misc/kgdbts.c
8372 F:      drivers/tty/serial/kgdboc.c
8373 F:      include/linux/kdb.h
8374 F:      include/linux/kgdb.h
8375 F:      kernel/debug/
8376
8377 KMEMLEAK
8378 M:      Catalin Marinas <catalin.marinas@arm.com>
8379 S:      Maintained
8380 F:      Documentation/dev-tools/kmemleak.rst
8381 F:      include/linux/kmemleak.h
8382 F:      mm/kmemleak.c
8383 F:      mm/kmemleak-test.c
8384
8385 KMOD KERNEL MODULE LOADER - USERMODE HELPER
8386 M:      Luis Chamberlain <mcgrof@kernel.org>
8387 L:      linux-kernel@vger.kernel.org
8388 S:      Maintained
8389 F:      kernel/kmod.c
8390 F:      include/linux/kmod.h
8391 F:      lib/test_kmod.c
8392 F:      tools/testing/selftests/kmod/
8393
8394 KPROBES
8395 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
8396 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
8397 M:      "David S. Miller" <davem@davemloft.net>
8398 M:      Masami Hiramatsu <mhiramat@kernel.org>
8399 S:      Maintained
8400 F:      Documentation/kprobes.txt
8401 F:      include/linux/kprobes.h
8402 F:      include/asm-generic/kprobes.h
8403 F:      kernel/kprobes.c
8404
8405 KS0108 LCD CONTROLLER DRIVER
8406 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
8407 S:      Maintained
8408 F:      Documentation/auxdisplay/ks0108
8409 F:      drivers/auxdisplay/ks0108.c
8410 F:      include/linux/ks0108.h
8411
8412 L3MDEV
8413 M:      David Ahern <dsa@cumulusnetworks.com>
8414 L:      netdev@vger.kernel.org
8415 S:      Maintained
8416 F:      net/l3mdev
8417 F:      include/net/l3mdev.h
8418
8419 L7 BPF FRAMEWORK
8420 M:      John Fastabend <john.fastabend@gmail.com>
8421 M:      Daniel Borkmann <daniel@iogearbox.net>
8422 L:      netdev@vger.kernel.org
8423 S:      Maintained
8424 F:      include/linux/skmsg.h
8425 F:      net/core/skmsg.c
8426 F:      net/core/sock_map.c
8427 F:      net/ipv4/tcp_bpf.c
8428
8429 LANTIQ / INTEL Ethernet drivers
8430 M:      Hauke Mehrtens <hauke@hauke-m.de>
8431 L:      netdev@vger.kernel.org
8432 S:      Maintained
8433 F:      net/dsa/tag_gswip.c
8434 F:      drivers/net/ethernet/lantiq_xrx200.c
8435 F:      drivers/net/dsa/lantiq_pce.h
8436 F:      drivers/net/dsa/lantiq_gswip.c
8437
8438 LANTIQ MIPS ARCHITECTURE
8439 M:      John Crispin <john@phrozen.org>
8440 L:      linux-mips@vger.kernel.org
8441 S:      Maintained
8442 F:      arch/mips/lantiq
8443 F:      drivers/soc/lantiq
8444
8445 LAPB module
8446 L:      linux-x25@vger.kernel.org
8447 S:      Orphan
8448 F:      Documentation/networking/lapb-module.txt
8449 F:      include/*/lapb.h
8450 F:      net/lapb/
8451
8452 LASI 53c700 driver for PARISC
8453 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
8454 L:      linux-scsi@vger.kernel.org
8455 S:      Maintained
8456 F:      Documentation/scsi/53c700.txt
8457 F:      drivers/scsi/53c700*
8458
8459 LEAKING_ADDRESSES
8460 M:      Tobin C. Harding <me@tobin.cc>
8461 M:      Tycho Andersen <tycho@tycho.ws>
8462 L:      kernel-hardening@lists.openwall.com
8463 S:      Maintained
8464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
8465 F:      scripts/leaking_addresses.pl
8466
8467 LED SUBSYSTEM
8468 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
8469 M:      Pavel Machek <pavel@ucw.cz>
8470 L:      linux-leds@vger.kernel.org
8471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
8472 S:      Maintained
8473 F:      Documentation/devicetree/bindings/leds/
8474 F:      drivers/leds/
8475 F:      include/linux/leds.h
8476
8477 LEGACY EEPROM DRIVER
8478 M:      Jean Delvare <jdelvare@suse.com>
8479 S:      Maintained
8480 F:      Documentation/misc-devices/eeprom
8481 F:      drivers/misc/eeprom/eeprom.c
8482
8483 LEGO MINDSTORMS EV3
8484 R:      David Lechner <david@lechnology.com>
8485 S:      Maintained
8486 F:      arch/arm/boot/dts/da850-lego-ev3.dts
8487 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
8488 F:      drivers/power/supply/lego_ev3_battery.c
8489
8490 LEGO USB Tower driver
8491 M:      Juergen Stuber <starblue@users.sourceforge.net>
8492 L:      legousb-devel@lists.sourceforge.net
8493 W:      http://legousb.sourceforge.net/
8494 S:      Maintained
8495 F:      drivers/usb/misc/legousbtower.c
8496
8497 LG LAPTOP EXTRAS
8498 M:      Matan Ziv-Av <matan@svgalib.org>
8499 L:      platform-driver-x86@vger.kernel.org
8500 S:      Maintained
8501 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
8502 F:      Documentation/laptops/lg-laptop.rst
8503 F:      drivers/platform/x86/lg-laptop.c
8504
8505 LG2160 MEDIA DRIVER
8506 M:      Michael Krufky <mkrufky@linuxtv.org>
8507 L:      linux-media@vger.kernel.org
8508 W:      https://linuxtv.org
8509 W:      http://github.com/mkrufky
8510 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8511 T:      git git://linuxtv.org/mkrufky/tuners.git
8512 S:      Maintained
8513 F:      drivers/media/dvb-frontends/lg2160.*
8514
8515 LGDT3305 MEDIA DRIVER
8516 M:      Michael Krufky <mkrufky@linuxtv.org>
8517 L:      linux-media@vger.kernel.org
8518 W:      https://linuxtv.org
8519 W:      http://github.com/mkrufky
8520 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8521 T:      git git://linuxtv.org/mkrufky/tuners.git
8522 S:      Maintained
8523 F:      drivers/media/dvb-frontends/lgdt3305.*
8524
8525 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
8526 M:      Viresh Kumar <vireshk@kernel.org>
8527 L:      linux-ide@vger.kernel.org
8528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8529 S:      Maintained
8530 F:      include/linux/pata_arasan_cf_data.h
8531 F:      drivers/ata/pata_arasan_cf.c
8532
8533 LIBATA PATA DRIVERS
8534 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8535 M:      Jens Axboe <axboe@kernel.dk>
8536 L:      linux-ide@vger.kernel.org
8537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8538 S:      Maintained
8539 F:      drivers/ata/pata_*.c
8540 F:      drivers/ata/ata_generic.c
8541
8542 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
8543 M:      Linus Walleij <linus.walleij@linaro.org>
8544 L:      linux-ide@vger.kernel.org
8545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8546 S:      Maintained
8547 F:      drivers/ata/pata_ftide010.c
8548 F:      drivers/ata/sata_gemini.c
8549 F:      drivers/ata/sata_gemini.h
8550
8551 LIBATA SATA AHCI PLATFORM devices support
8552 M:      Hans de Goede <hdegoede@redhat.com>
8553 M:      Jens Axboe <axboe@kernel.dk>
8554 L:      linux-ide@vger.kernel.org
8555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8556 S:      Maintained
8557 F:      drivers/ata/ahci_platform.c
8558 F:      drivers/ata/libahci_platform.c
8559 F:      include/linux/ahci_platform.h
8560
8561 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
8562 M:      Mikael Pettersson <mikpelinux@gmail.com>
8563 L:      linux-ide@vger.kernel.org
8564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8565 S:      Maintained
8566 F:      drivers/ata/sata_promise.*
8567
8568 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
8569 M:      Jens Axboe <axboe@kernel.dk>
8570 L:      linux-ide@vger.kernel.org
8571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8572 S:      Maintained
8573 F:      drivers/ata/
8574 F:      include/linux/ata.h
8575 F:      include/linux/libata.h
8576 F:      Documentation/devicetree/bindings/ata/
8577
8578 LIBLOCKDEP
8579 M:      Sasha Levin <alexander.levin@microsoft.com>
8580 S:      Maintained
8581 F:      tools/lib/lockdep/
8582
8583 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
8584 M:      Ross Zwisler <zwisler@kernel.org>
8585 M:      Dan Williams <dan.j.williams@intel.com>
8586 M:      Vishal Verma <vishal.l.verma@intel.com>
8587 M:      Dave Jiang <dave.jiang@intel.com>
8588 L:      linux-nvdimm@lists.01.org
8589 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8590 S:      Supported
8591 F:      drivers/nvdimm/blk.c
8592 F:      drivers/nvdimm/region_devs.c
8593
8594 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
8595 M:      Vishal Verma <vishal.l.verma@intel.com>
8596 M:      Dan Williams <dan.j.williams@intel.com>
8597 M:      Ross Zwisler <zwisler@kernel.org>
8598 M:      Dave Jiang <dave.jiang@intel.com>
8599 L:      linux-nvdimm@lists.01.org
8600 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8601 S:      Supported
8602 F:      drivers/nvdimm/btt*
8603
8604 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
8605 M:      Ross Zwisler <zwisler@kernel.org>
8606 M:      Dan Williams <dan.j.williams@intel.com>
8607 M:      Vishal Verma <vishal.l.verma@intel.com>
8608 M:      Dave Jiang <dave.jiang@intel.com>
8609 L:      linux-nvdimm@lists.01.org
8610 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8611 S:      Supported
8612 F:      drivers/nvdimm/pmem*
8613
8614 LIBNVDIMM: DEVICETREE BINDINGS
8615 M:      Oliver O'Halloran <oohall@gmail.com>
8616 L:      linux-nvdimm@lists.01.org
8617 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8618 S:      Supported
8619 F:      drivers/nvdimm/of_pmem.c
8620 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
8621
8622 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
8623 M:      Dan Williams <dan.j.williams@intel.com>
8624 M:      Ross Zwisler <zwisler@kernel.org>
8625 M:      Vishal Verma <vishal.l.verma@intel.com>
8626 M:      Dave Jiang <dave.jiang@intel.com>
8627 L:      linux-nvdimm@lists.01.org
8628 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
8630 S:      Supported
8631 F:      drivers/nvdimm/*
8632 F:      drivers/acpi/nfit/*
8633 F:      include/linux/nd.h
8634 F:      include/linux/libnvdimm.h
8635 F:      include/uapi/linux/ndctl.h
8636
8637 LIGHTNVM PLATFORM SUPPORT
8638 M:      Matias Bjorling <mb@lightnvm.io>
8639 W:      http://github/OpenChannelSSD
8640 L:      linux-block@vger.kernel.org
8641 S:      Maintained
8642 F:      drivers/lightnvm/
8643 F:      include/linux/lightnvm.h
8644 F:      include/uapi/linux/lightnvm.h
8645
8646 LINUX FOR POWER MACINTOSH
8647 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8648 W:      http://www.penguinppc.org/
8649 L:      linuxppc-dev@lists.ozlabs.org
8650 S:      Maintained
8651 F:      arch/powerpc/platforms/powermac/
8652 F:      drivers/macintosh/
8653
8654 LINUX FOR POWERPC (32-BIT AND 64-BIT)
8655 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8656 M:      Paul Mackerras <paulus@samba.org>
8657 M:      Michael Ellerman <mpe@ellerman.id.au>
8658 W:      https://github.com/linuxppc/linux/wiki
8659 L:      linuxppc-dev@lists.ozlabs.org
8660 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
8661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
8662 S:      Supported
8663 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
8664 F:      Documentation/devicetree/bindings/powerpc/
8665 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
8666 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
8667 F:      Documentation/powerpc/
8668 F:      arch/powerpc/
8669 F:      drivers/char/tpm/tpm_ibmvtpm*
8670 F:      drivers/crypto/nx/
8671 F:      drivers/crypto/vmx/
8672 F:      drivers/i2c/busses/i2c-opal.c
8673 F:      drivers/net/ethernet/ibm/ibmveth.*
8674 F:      drivers/net/ethernet/ibm/ibmvnic.*
8675 F:      drivers/pci/hotplug/pnv_php.c
8676 F:      drivers/pci/hotplug/rpa*
8677 F:      drivers/rtc/rtc-opal.c
8678 F:      drivers/scsi/ibmvscsi/
8679 F:      drivers/tty/hvc/hvc_opal.c
8680 F:      drivers/watchdog/wdrtas.c
8681 F:      tools/testing/selftests/powerpc
8682 N:      /pmac
8683 N:      powermac
8684 N:      powernv
8685 N:      [^a-z0-9]ps3
8686 N:      pseries
8687
8688 LINUX FOR POWERPC EMBEDDED MPC5XXX
8689 M:      Anatolij Gustschin <agust@denx.de>
8690 L:      linuxppc-dev@lists.ozlabs.org
8691 T:      git git://git.denx.de/linux-denx-agust.git
8692 S:      Maintained
8693 F:      arch/powerpc/platforms/512x/
8694 F:      arch/powerpc/platforms/52xx/
8695
8696 LINUX FOR POWERPC EMBEDDED PPC4XX
8697 M:      Alistair Popple <alistair@popple.id.au>
8698 M:      Matt Porter <mporter@kernel.crashing.org>
8699 W:      http://www.penguinppc.org/
8700 L:      linuxppc-dev@lists.ozlabs.org
8701 S:      Maintained
8702 F:      arch/powerpc/platforms/40x/
8703 F:      arch/powerpc/platforms/44x/
8704
8705 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
8706 M:      Scott Wood <oss@buserror.net>
8707 M:      Kumar Gala <galak@kernel.crashing.org>
8708 W:      http://www.penguinppc.org/
8709 L:      linuxppc-dev@lists.ozlabs.org
8710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
8711 S:      Maintained
8712 F:      arch/powerpc/platforms/83xx/
8713 F:      arch/powerpc/platforms/85xx/
8714 F:      Documentation/devicetree/bindings/powerpc/fsl/
8715
8716 LINUX FOR POWERPC EMBEDDED PPC8XX
8717 M:      Vitaly Bordug <vitb@kernel.crashing.org>
8718 W:      http://www.penguinppc.org/
8719 L:      linuxppc-dev@lists.ozlabs.org
8720 S:      Maintained
8721 F:      arch/powerpc/platforms/8xx/
8722
8723 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
8724 L:      linuxppc-dev@lists.ozlabs.org
8725 S:      Orphan
8726 F:      arch/powerpc/*/*virtex*
8727 F:      arch/powerpc/*/*/*virtex*
8728
8729 LINUX FOR POWERPC PA SEMI PWRFICIENT
8730 L:      linuxppc-dev@lists.ozlabs.org
8731 S:      Orphan
8732 F:      arch/powerpc/platforms/pasemi/
8733 F:      drivers/*/*pasemi*
8734 F:      drivers/*/*/*pasemi*
8735
8736 LINUX KERNEL DUMP TEST MODULE (LKDTM)
8737 M:      Kees Cook <keescook@chromium.org>
8738 S:      Maintained
8739 F:      drivers/misc/lkdtm/*
8740
8741 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
8742 M:      Alan Stern <stern@rowland.harvard.edu>
8743 M:      Andrea Parri <andrea.parri@amarulasolutions.com>
8744 M:      Will Deacon <will.deacon@arm.com>
8745 M:      Peter Zijlstra <peterz@infradead.org>
8746 M:      Boqun Feng <boqun.feng@gmail.com>
8747 M:      Nicholas Piggin <npiggin@gmail.com>
8748 M:      David Howells <dhowells@redhat.com>
8749 M:      Jade Alglave <j.alglave@ucl.ac.uk>
8750 M:      Luc Maranget <luc.maranget@inria.fr>
8751 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
8752 R:      Akira Yokosawa <akiyks@gmail.com>
8753 R:      Daniel Lustig <dlustig@nvidia.com>
8754 L:      linux-kernel@vger.kernel.org
8755 L:      linux-arch@vger.kernel.org
8756 S:      Supported
8757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8758 F:      tools/memory-model/
8759 F:      Documentation/atomic_bitops.txt
8760 F:      Documentation/atomic_t.txt
8761 F:      Documentation/core-api/atomic_ops.rst
8762 F:      Documentation/core-api/refcount-vs-atomic.rst
8763 F:      Documentation/memory-barriers.txt
8764
8765 LIS3LV02D ACCELEROMETER DRIVER
8766 M:      Eric Piel <eric.piel@tremplin-utc.net>
8767 S:      Maintained
8768 F:      Documentation/misc-devices/lis3lv02d
8769 F:      drivers/misc/lis3lv02d/
8770 F:      drivers/platform/x86/hp_accel.c
8771
8772 LIVE PATCHING
8773 M:      Josh Poimboeuf <jpoimboe@redhat.com>
8774 M:      Jessica Yu <jeyu@kernel.org>
8775 M:      Jiri Kosina <jikos@kernel.org>
8776 M:      Miroslav Benes <mbenes@suse.cz>
8777 R:      Petr Mladek <pmladek@suse.com>
8778 S:      Maintained
8779 F:      kernel/livepatch/
8780 F:      include/linux/livepatch.h
8781 F:      arch/x86/include/asm/livepatch.h
8782 F:      arch/x86/kernel/livepatch.c
8783 F:      Documentation/livepatch/
8784 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
8785 F:      samples/livepatch/
8786 L:      live-patching@vger.kernel.org
8787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
8788
8789 LLC (802.2)
8790 L:      netdev@vger.kernel.org
8791 S:      Odd fixes
8792 F:      include/linux/llc.h
8793 F:      include/uapi/linux/llc.h
8794 F:      include/net/llc*
8795 F:      net/llc/
8796
8797 LM73 HARDWARE MONITOR DRIVER
8798 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
8799 L:      linux-hwmon@vger.kernel.org
8800 S:      Maintained
8801 F:      drivers/hwmon/lm73.c
8802
8803 LM78 HARDWARE MONITOR DRIVER
8804 M:      Jean Delvare <jdelvare@suse.com>
8805 L:      linux-hwmon@vger.kernel.org
8806 S:      Maintained
8807 F:      Documentation/hwmon/lm78
8808 F:      drivers/hwmon/lm78.c
8809
8810 LM83 HARDWARE MONITOR DRIVER
8811 M:      Jean Delvare <jdelvare@suse.com>
8812 L:      linux-hwmon@vger.kernel.org
8813 S:      Maintained
8814 F:      Documentation/hwmon/lm83
8815 F:      drivers/hwmon/lm83.c
8816
8817 LM90 HARDWARE MONITOR DRIVER
8818 M:      Jean Delvare <jdelvare@suse.com>
8819 L:      linux-hwmon@vger.kernel.org
8820 S:      Maintained
8821 F:      Documentation/hwmon/lm90
8822 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
8823 F:      drivers/hwmon/lm90.c
8824 F:      include/dt-bindings/thermal/lm90.h
8825
8826 LM95234 HARDWARE MONITOR DRIVER
8827 M:      Guenter Roeck <linux@roeck-us.net>
8828 L:      linux-hwmon@vger.kernel.org
8829 S:      Maintained
8830 F:      Documentation/hwmon/lm95234
8831 F:      drivers/hwmon/lm95234.c
8832
8833 LME2510 MEDIA DRIVER
8834 M:      Malcolm Priestley <tvboxspy@gmail.com>
8835 L:      linux-media@vger.kernel.org
8836 W:      https://linuxtv.org
8837 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8838 S:      Maintained
8839 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
8840
8841 LOADPIN SECURITY MODULE
8842 M:      Kees Cook <keescook@chromium.org>
8843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
8844 S:      Supported
8845 F:      security/loadpin/
8846 F:      Documentation/admin-guide/LSM/LoadPin.rst
8847
8848 LOCKING PRIMITIVES
8849 M:      Peter Zijlstra <peterz@infradead.org>
8850 M:      Ingo Molnar <mingo@redhat.com>
8851 M:      Will Deacon <will.deacon@arm.com>
8852 L:      linux-kernel@vger.kernel.org
8853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8854 S:      Maintained
8855 F:      Documentation/locking/
8856 F:      include/linux/lockdep.h
8857 F:      include/linux/spinlock*.h
8858 F:      arch/*/include/asm/spinlock*.h
8859 F:      include/linux/rwlock*.h
8860 F:      include/linux/mutex*.h
8861 F:      include/linux/rwsem*.h
8862 F:      arch/*/include/asm/rwsem.h
8863 F:      include/linux/seqlock.h
8864 F:      lib/locking*.[ch]
8865 F:      kernel/locking/
8866 X:      kernel/locking/locktorture.c
8867
8868 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
8869 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
8870 L:      linux-ntfs-dev@lists.sourceforge.net
8871 W:      http://www.linux-ntfs.org/content/view/19/37/
8872 S:      Maintained
8873 F:      Documentation/ldm.txt
8874 F:      block/partitions/ldm.*
8875
8876 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
8877 M:      Sathya Prakash <sathya.prakash@broadcom.com>
8878 M:      Chaitra P B <chaitra.basappa@broadcom.com>
8879 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
8880 L:      MPT-FusionLinux.pdl@broadcom.com
8881 L:      linux-scsi@vger.kernel.org
8882 W:      http://www.avagotech.com/support/
8883 S:      Supported
8884 F:      drivers/message/fusion/
8885 F:      drivers/scsi/mpt3sas/
8886
8887 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
8888 M:      Matthew Wilcox <willy@infradead.org>
8889 L:      linux-scsi@vger.kernel.org
8890 S:      Maintained
8891 F:      drivers/scsi/sym53c8xx_2/
8892
8893 LTC1660 DAC DRIVER
8894 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
8895 L:      linux-iio@vger.kernel.org
8896 S:      Maintained
8897 F:      Documentation/devicetree/bindings/iio/dac/ltc1660.txt
8898 F:      drivers/iio/dac/ltc1660.c
8899
8900 LTC4261 HARDWARE MONITOR DRIVER
8901 M:      Guenter Roeck <linux@roeck-us.net>
8902 L:      linux-hwmon@vger.kernel.org
8903 S:      Maintained
8904 F:      Documentation/hwmon/ltc4261
8905 F:      drivers/hwmon/ltc4261.c
8906
8907 LTC4306 I2C MULTIPLEXER DRIVER
8908 M:      Michael Hennerich <michael.hennerich@analog.com>
8909 W:      http://ez.analog.com/community/linux-device-drivers
8910 L:      linux-i2c@vger.kernel.org
8911 S:      Supported
8912 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
8913 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
8914
8915 LTP (Linux Test Project)
8916 M:      Mike Frysinger <vapier@gentoo.org>
8917 M:      Cyril Hrubis <chrubis@suse.cz>
8918 M:      Wanlong Gao <wanlong.gao@gmail.com>
8919 M:      Jan Stancek <jstancek@redhat.com>
8920 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
8921 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
8922 L:      ltp@lists.linux.it (subscribers-only)
8923 W:      http://linux-test-project.github.io/
8924 T:      git git://github.com/linux-test-project/ltp.git
8925 S:      Maintained
8926
8927 M68K ARCHITECTURE
8928 M:      Geert Uytterhoeven <geert@linux-m68k.org>
8929 L:      linux-m68k@lists.linux-m68k.org
8930 W:      http://www.linux-m68k.org/
8931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
8932 S:      Maintained
8933 F:      arch/m68k/
8934 F:      drivers/zorro/
8935
8936 M68K ON APPLE MACINTOSH
8937 M:      Joshua Thompson <funaho@jurai.org>
8938 W:      http://www.mac.linux-m68k.org/
8939 L:      linux-m68k@lists.linux-m68k.org
8940 S:      Maintained
8941 F:      arch/m68k/mac/
8942
8943 M68K ON HP9000/300
8944 M:      Philip Blundell <philb@gnu.org>
8945 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
8946 S:      Maintained
8947 F:      arch/m68k/hp300/
8948
8949 M88DS3103 MEDIA DRIVER
8950 M:      Antti Palosaari <crope@iki.fi>
8951 L:      linux-media@vger.kernel.org
8952 W:      https://linuxtv.org
8953 W:      http://palosaari.fi/linux/
8954 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8955 T:      git git://linuxtv.org/anttip/media_tree.git
8956 S:      Maintained
8957 F:      drivers/media/dvb-frontends/m88ds3103*
8958
8959 M88RS2000 MEDIA DRIVER
8960 M:      Malcolm Priestley <tvboxspy@gmail.com>
8961 L:      linux-media@vger.kernel.org
8962 W:      https://linuxtv.org
8963 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8964 S:      Maintained
8965 F:      drivers/media/dvb-frontends/m88rs2000*
8966
8967 MA901 MASTERKIT USB FM RADIO DRIVER
8968 M:      Alexey Klimov <klimov.linux@gmail.com>
8969 L:      linux-media@vger.kernel.org
8970 T:      git git://linuxtv.org/media_tree.git
8971 S:      Maintained
8972 F:      drivers/media/radio/radio-ma901.c
8973
8974 MAC80211
8975 M:      Johannes Berg <johannes@sipsolutions.net>
8976 L:      linux-wireless@vger.kernel.org
8977 W:      http://wireless.kernel.org/
8978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8980 S:      Maintained
8981 F:      Documentation/networking/mac80211-injection.txt
8982 F:      include/net/mac80211.h
8983 F:      net/mac80211/
8984 F:      drivers/net/wireless/mac80211_hwsim.[ch]
8985 F:      Documentation/networking/mac80211_hwsim/README
8986
8987 MAILBOX API
8988 M:      Jassi Brar <jassisinghbrar@gmail.com>
8989 L:      linux-kernel@vger.kernel.org
8990 S:      Maintained
8991 F:      drivers/mailbox/
8992 F:      include/linux/mailbox_client.h
8993 F:      include/linux/mailbox_controller.h
8994
8995 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
8996 M:      Michael Kerrisk <mtk.manpages@gmail.com>
8997 W:      http://www.kernel.org/doc/man-pages
8998 L:      linux-man@vger.kernel.org
8999 S:      Maintained
9000
9001 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
9002 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
9003 L:      linux-mips@vger.kernel.org
9004 S:      Maintained
9005 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
9006
9007 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
9008 M:      Andrew Lunn <andrew@lunn.ch>
9009 M:      Vivien Didelot <vivien.didelot@gmail.com>
9010 L:      netdev@vger.kernel.org
9011 S:      Maintained
9012 F:      drivers/net/dsa/mv88e6xxx/
9013 F:      include/linux/platform_data/mv88e6xxx.h
9014 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
9015
9016 MARVELL ARMADA DRM SUPPORT
9017 M:      Russell King <linux@armlinux.org.uk>
9018 S:      Maintained
9019 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
9020 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
9021 F:      drivers/gpu/drm/armada/
9022 F:      include/uapi/drm/armada_drm.h
9023 F:      Documentation/devicetree/bindings/display/armada/
9024
9025 MARVELL CRYPTO DRIVER
9026 M:      Boris Brezillon <bbrezillon@kernel.org>
9027 M:      Arnaud Ebalard <arno@natisbad.org>
9028 F:      drivers/crypto/marvell/
9029 S:      Maintained
9030 L:      linux-crypto@vger.kernel.org
9031
9032 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
9033 M:      Mirko Lindner <mlindner@marvell.com>
9034 M:      Stephen Hemminger <stephen@networkplumber.org>
9035 L:      netdev@vger.kernel.org
9036 S:      Maintained
9037 F:      drivers/net/ethernet/marvell/sk*
9038
9039 MARVELL LIBERTAS WIRELESS DRIVER
9040 L:      libertas-dev@lists.infradead.org
9041 S:      Orphan
9042 F:      drivers/net/wireless/marvell/libertas/
9043
9044 MARVELL MACCHIATOBIN SUPPORT
9045 M:      Russell King <linux@armlinux.org.uk>
9046 L:      linux-arm-kernel@lists.infradead.org
9047 S:      Maintained
9048 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
9049
9050 MARVELL MV643XX ETHERNET DRIVER
9051 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
9052 L:      netdev@vger.kernel.org
9053 S:      Maintained
9054 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
9055 F:      include/linux/mv643xx.h
9056
9057 MARVELL MV88X3310 PHY DRIVER
9058 M:      Russell King <linux@armlinux.org.uk>
9059 L:      netdev@vger.kernel.org
9060 S:      Maintained
9061 F:      drivers/net/phy/marvell10g.c
9062
9063 MARVELL MVNETA ETHERNET DRIVER
9064 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
9065 L:      netdev@vger.kernel.org
9066 S:      Maintained
9067 F:      drivers/net/ethernet/marvell/mvneta.*
9068
9069 MARVELL MWIFIEX WIRELESS DRIVER
9070 M:      Amitkumar Karwar <amitkarwar@gmail.com>
9071 M:      Nishant Sarmukadam <nishants@marvell.com>
9072 M:      Ganapathi Bhat <gbhat@marvell.com>
9073 M:      Xinming Hu <huxinming820@gmail.com>
9074 L:      linux-wireless@vger.kernel.org
9075 S:      Maintained
9076 F:      drivers/net/wireless/marvell/mwifiex/
9077
9078 MARVELL MWL8K WIRELESS DRIVER
9079 M:      Lennert Buytenhek <buytenh@wantstofly.org>
9080 L:      linux-wireless@vger.kernel.org
9081 S:      Odd Fixes
9082 F:      drivers/net/wireless/marvell/mwl8k.c
9083
9084 MARVELL NAND CONTROLLER DRIVER
9085 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9086 L:      linux-mtd@lists.infradead.org
9087 S:      Maintained
9088 F:      drivers/mtd/nand/raw/marvell_nand.c
9089 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
9090
9091 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
9092 M:      Nicolas Pitre <nico@fluxnic.net>
9093 S:      Odd Fixes
9094 F:      drivers/mmc/host/mvsdio.*
9095
9096 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
9097 M:      Hu Ziji <huziji@marvell.com>
9098 L:      linux-mmc@vger.kernel.org
9099 S:      Supported
9100 F:      drivers/mmc/host/sdhci-xenon*
9101 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
9102
9103 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
9104 M:      Sunil Goutham <sgoutham@marvell.com>
9105 M:      Linu Cherian <lcherian@marvell.com>
9106 M:      Geetha sowjanya <gakula@marvell.com>
9107 M:      Jerin Jacob <jerinj@marvell.com>
9108 L:      netdev@vger.kernel.org
9109 S:      Supported
9110 F:      drivers/net/ethernet/marvell/octeontx2/af/
9111
9112 MATROX FRAMEBUFFER DRIVER
9113 L:      linux-fbdev@vger.kernel.org
9114 S:      Orphan
9115 F:      drivers/video/fbdev/matrox/matroxfb_*
9116 F:      include/uapi/linux/matroxfb.h
9117
9118 MAX16065 HARDWARE MONITOR DRIVER
9119 M:      Guenter Roeck <linux@roeck-us.net>
9120 L:      linux-hwmon@vger.kernel.org
9121 S:      Maintained
9122 F:      Documentation/hwmon/max16065
9123 F:      drivers/hwmon/max16065.c
9124
9125 MAX2175 SDR TUNER DRIVER
9126 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
9127 L:      linux-media@vger.kernel.org
9128 T:      git git://linuxtv.org/media_tree.git
9129 S:      Maintained
9130 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
9131 F:      Documentation/media/v4l-drivers/max2175.rst
9132 F:      drivers/media/i2c/max2175*
9133 F:      include/uapi/linux/max2175.h
9134
9135 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
9136 L:      linux-hwmon@vger.kernel.org
9137 S:      Orphan
9138 F:      Documentation/hwmon/max6650
9139 F:      drivers/hwmon/max6650.c
9140
9141 MAX6697 HARDWARE MONITOR DRIVER
9142 M:      Guenter Roeck <linux@roeck-us.net>
9143 L:      linux-hwmon@vger.kernel.org
9144 S:      Maintained
9145 F:      Documentation/hwmon/max6697
9146 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
9147 F:      drivers/hwmon/max6697.c
9148 F:      include/linux/platform_data/max6697.h
9149
9150 MAX9860 MONO AUDIO VOICE CODEC DRIVER
9151 M:      Peter Rosin <peda@axentia.se>
9152 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9153 S:      Maintained
9154 F:      Documentation/devicetree/bindings/sound/max9860.txt
9155 F:      sound/soc/codecs/max9860.*
9156
9157 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
9158 M:      Javier Martinez Canillas <javier@dowhile0.org>
9159 L:      linux-kernel@vger.kernel.org
9160 S:      Supported
9161 F:      drivers/regulator/max77802-regulator.c
9162 F:      Documentation/devicetree/bindings/*/*max77802.txt
9163 F:      include/dt-bindings/*/*max77802.h
9164
9165 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
9166 M:      Krzysztof Kozlowski <krzk@kernel.org>
9167 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9168 L:      linux-pm@vger.kernel.org
9169 S:      Supported
9170 F:      drivers/power/supply/max14577_charger.c
9171 F:      drivers/power/supply/max77693_charger.c
9172
9173 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
9174 M:      Chanwoo Choi <cw00.choi@samsung.com>
9175 M:      Krzysztof Kozlowski <krzk@kernel.org>
9176 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9177 L:      linux-kernel@vger.kernel.org
9178 S:      Supported
9179 F:      drivers/*/max14577*.c
9180 F:      drivers/*/max77686*.c
9181 F:      drivers/*/max77693*.c
9182 F:      drivers/extcon/extcon-max14577.c
9183 F:      drivers/extcon/extcon-max77693.c
9184 F:      drivers/rtc/rtc-max77686.c
9185 F:      drivers/clk/clk-max77686.c
9186 F:      Documentation/devicetree/bindings/mfd/max14577.txt
9187 F:      Documentation/devicetree/bindings/*/max77686.txt
9188 F:      Documentation/devicetree/bindings/mfd/max77693.txt
9189 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
9190 F:      include/linux/mfd/max14577*.h
9191 F:      include/linux/mfd/max77686*.h
9192 F:      include/linux/mfd/max77693*.h
9193
9194 MAXIRADIO FM RADIO RECEIVER DRIVER
9195 M:      Hans Verkuil <hverkuil@xs4all.nl>
9196 L:      linux-media@vger.kernel.org
9197 T:      git git://linuxtv.org/media_tree.git
9198 W:      https://linuxtv.org
9199 S:      Maintained
9200 F:      drivers/media/radio/radio-maxiradio*
9201
9202 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
9203 M:      Peter Rosin <peda@axentia.se>
9204 L:      linux-iio@vger.kernel.org
9205 S:      Maintained
9206 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
9207 F:      drivers/iio/potentiometer/mcp4018.c
9208 F:      drivers/iio/potentiometer/mcp4531.c
9209
9210 MCR20A IEEE-802.15.4 RADIO DRIVER
9211 M:      Xue Liu <liuxuenetmail@gmail.com>
9212 L:      linux-wpan@vger.kernel.org
9213 W:      https://github.com/xueliu/mcr20a-linux
9214 S:      Maintained
9215 F:      drivers/net/ieee802154/mcr20a.c
9216 F:      drivers/net/ieee802154/mcr20a.h
9217 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
9218
9219 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
9220 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9221 L:      linux-iio@vger.kernel.org
9222 S:      Maintained
9223 F:      drivers/iio/dac/cio-dac.c
9224
9225 MEDIA DRIVERS FOR ASCOT2E
9226 M:      Sergey Kozlov <serjk@netup.ru>
9227 M:      Abylay Ospan <aospan@netup.ru>
9228 L:      linux-media@vger.kernel.org
9229 W:      https://linuxtv.org
9230 W:      http://netup.tv/
9231 T:      git git://linuxtv.org/media_tree.git
9232 S:      Supported
9233 F:      drivers/media/dvb-frontends/ascot2e*
9234
9235 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
9236 M:      Jasmin Jessich <jasmin@anw.at>
9237 L:      linux-media@vger.kernel.org
9238 W:      https://linuxtv.org
9239 T:      git git://linuxtv.org/media_tree.git
9240 S:      Maintained
9241 F:      drivers/media/dvb-frontends/cxd2099*
9242
9243 MEDIA DRIVERS FOR CXD2841ER
9244 M:      Sergey Kozlov <serjk@netup.ru>
9245 M:      Abylay Ospan <aospan@netup.ru>
9246 L:      linux-media@vger.kernel.org
9247 W:      https://linuxtv.org
9248 W:      http://netup.tv/
9249 T:      git git://linuxtv.org/media_tree.git
9250 S:      Supported
9251 F:      drivers/media/dvb-frontends/cxd2841er*
9252
9253 MEDIA DRIVERS FOR CXD2880
9254 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
9255 L:      linux-media@vger.kernel.org
9256 W:      http://linuxtv.org/
9257 T:      git git://linuxtv.org/media_tree.git
9258 S:      Supported
9259 F:      drivers/media/dvb-frontends/cxd2880/*
9260 F:      drivers/media/spi/cxd2880*
9261
9262 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
9263 L:      linux-media@vger.kernel.org
9264 W:      https://linuxtv.org
9265 T:      git git://linuxtv.org/media_tree.git
9266 S:      Orphan
9267 F:      drivers/media/pci/ddbridge/*
9268
9269 MEDIA DRIVERS FOR FREESCALE IMX
9270 M:      Steve Longerbeam <slongerbeam@gmail.com>
9271 M:      Philipp Zabel <p.zabel@pengutronix.de>
9272 L:      linux-media@vger.kernel.org
9273 T:      git git://linuxtv.org/media_tree.git
9274 S:      Maintained
9275 F:      Documentation/devicetree/bindings/media/imx.txt
9276 F:      Documentation/media/v4l-drivers/imx.rst
9277 F:      drivers/staging/media/imx/
9278 F:      include/linux/imx-media.h
9279 F:      include/media/imx.h
9280
9281 MEDIA DRIVER FOR FREESCALE IMX PXP
9282 M:      Philipp Zabel <p.zabel@pengutronix.de>
9283 L:      linux-media@vger.kernel.org
9284 T:      git git://linuxtv.org/media_tree.git
9285 S:      Maintained
9286 F:      drivers/media/platform/imx-pxp.[ch]
9287
9288 MEDIA DRIVERS FOR HELENE
9289 M:      Abylay Ospan <aospan@netup.ru>
9290 L:      linux-media@vger.kernel.org
9291 W:      https://linuxtv.org
9292 W:      http://netup.tv/
9293 T:      git git://linuxtv.org/media_tree.git
9294 S:      Supported
9295 F:      drivers/media/dvb-frontends/helene*
9296
9297 MEDIA DRIVERS FOR HORUS3A
9298 M:      Sergey Kozlov <serjk@netup.ru>
9299 M:      Abylay Ospan <aospan@netup.ru>
9300 L:      linux-media@vger.kernel.org
9301 W:      https://linuxtv.org
9302 W:      http://netup.tv/
9303 T:      git git://linuxtv.org/media_tree.git
9304 S:      Supported
9305 F:      drivers/media/dvb-frontends/horus3a*
9306
9307 MEDIA DRIVERS FOR LNBH25
9308 M:      Sergey Kozlov <serjk@netup.ru>
9309 M:      Abylay Ospan <aospan@netup.ru>
9310 L:      linux-media@vger.kernel.org
9311 W:      https://linuxtv.org
9312 W:      http://netup.tv/
9313 T:      git git://linuxtv.org/media_tree.git
9314 S:      Supported
9315 F:      drivers/media/dvb-frontends/lnbh25*
9316
9317 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
9318 L:      linux-media@vger.kernel.org
9319 W:      https://linuxtv.org
9320 T:      git git://linuxtv.org/media_tree.git
9321 S:      Orphan
9322 F:      drivers/media/dvb-frontends/mxl5xx*
9323
9324 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
9325 M:      Sergey Kozlov <serjk@netup.ru>
9326 M:      Abylay Ospan <aospan@netup.ru>
9327 L:      linux-media@vger.kernel.org
9328 W:      https://linuxtv.org
9329 W:      http://netup.tv/
9330 T:      git git://linuxtv.org/media_tree.git
9331 S:      Supported
9332 F:      drivers/media/pci/netup_unidvb/*
9333
9334 MEDIA DRIVERS FOR RENESAS - CEU
9335 M:      Jacopo Mondi <jacopo@jmondi.org>
9336 L:      linux-media@vger.kernel.org
9337 L:      linux-renesas-soc@vger.kernel.org
9338 T:      git git://linuxtv.org/media_tree.git
9339 S:      Supported
9340 F:      Documentation/devicetree/bindings/media/renesas,ceu.txt
9341 F:      drivers/media/platform/renesas-ceu.c
9342 F:      include/media/drv-intf/renesas-ceu.h
9343
9344 MEDIA DRIVERS FOR RENESAS - DRIF
9345 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
9346 L:      linux-media@vger.kernel.org
9347 L:      linux-renesas-soc@vger.kernel.org
9348 T:      git git://linuxtv.org/media_tree.git
9349 S:      Supported
9350 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
9351 F:      drivers/media/platform/rcar_drif.c
9352
9353 MEDIA DRIVERS FOR RENESAS - FCP
9354 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9355 L:      linux-media@vger.kernel.org
9356 L:      linux-renesas-soc@vger.kernel.org
9357 T:      git git://linuxtv.org/media_tree.git
9358 S:      Supported
9359 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
9360 F:      drivers/media/platform/rcar-fcp.c
9361 F:      include/media/rcar-fcp.h
9362
9363 MEDIA DRIVERS FOR RENESAS - FDP1
9364 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
9365 L:      linux-media@vger.kernel.org
9366 L:      linux-renesas-soc@vger.kernel.org
9367 T:      git git://linuxtv.org/media_tree.git
9368 S:      Supported
9369 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
9370 F:      drivers/media/platform/rcar_fdp1.c
9371
9372 MEDIA DRIVERS FOR RENESAS - VIN
9373 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
9374 L:      linux-media@vger.kernel.org
9375 L:      linux-renesas-soc@vger.kernel.org
9376 T:      git git://linuxtv.org/media_tree.git
9377 S:      Supported
9378 F:      Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
9379 F:      Documentation/devicetree/bindings/media/rcar_vin.txt
9380 F:      drivers/media/platform/rcar-vin/
9381
9382 MEDIA DRIVERS FOR RENESAS - VSP1
9383 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9384 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
9385 L:      linux-media@vger.kernel.org
9386 L:      linux-renesas-soc@vger.kernel.org
9387 T:      git git://linuxtv.org/media_tree.git
9388 S:      Supported
9389 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
9390 F:      drivers/media/platform/vsp1/
9391
9392 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
9393 L:      linux-media@vger.kernel.org
9394 W:      https://linuxtv.org
9395 T:      git git://linuxtv.org/media_tree.git
9396 S:      Orphan
9397 F:      drivers/media/dvb-frontends/stv0910*
9398
9399 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
9400 L:      linux-media@vger.kernel.org
9401 W:      https://linuxtv.org
9402 T:      git git://linuxtv.org/media_tree.git
9403 S:      Orphan
9404 F:      drivers/media/dvb-frontends/stv6111*
9405
9406 MEDIA DRIVERS FOR STM32 - DCMI
9407 M:      Hugues Fruchet <hugues.fruchet@st.com>
9408 L:      linux-media@vger.kernel.org
9409 T:      git git://linuxtv.org/media_tree.git
9410 S:      Supported
9411 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.txt
9412 F:      drivers/media/platform/stm32/stm32-dcmi.c
9413
9414 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
9415 M:      Dmitry Osipenko <digetx@gmail.com>
9416 L:      linux-media@vger.kernel.org
9417 L:      linux-tegra@vger.kernel.org
9418 T:      git git://linuxtv.org/media_tree.git
9419 S:      Maintained
9420 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
9421 F:      drivers/staging/media/tegra-vde/
9422
9423 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
9424 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
9425 P:      LinuxTV.org Project
9426 L:      linux-media@vger.kernel.org
9427 W:      https://linuxtv.org
9428 Q:      http://patchwork.kernel.org/project/linux-media/list/
9429 T:      git git://linuxtv.org/media_tree.git
9430 S:      Maintained
9431 F:      Documentation/devicetree/bindings/media/
9432 F:      Documentation/media/
9433 F:      drivers/media/
9434 F:      drivers/staging/media/
9435 F:      include/linux/platform_data/media/
9436 F:      include/media/
9437 F:      include/uapi/linux/dvb/
9438 F:      include/uapi/linux/videodev2.h
9439 F:      include/uapi/linux/media.h
9440 F:      include/uapi/linux/v4l2-*
9441 F:      include/uapi/linux/meye.h
9442 F:      include/uapi/linux/ivtv*
9443 F:      include/uapi/linux/uvcvideo.h
9444
9445 MEDIATEK BLUETOOTH DRIVER
9446 M:      Sean Wang <sean.wang@mediatek.com>
9447 L:      linux-bluetooth@vger.kernel.org
9448 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
9449 S:      Maintained
9450 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
9451 F:      drivers/bluetooth/btmtkuart.c
9452
9453 MEDIATEK CIR DRIVER
9454 M:      Sean Wang <sean.wang@mediatek.com>
9455 S:      Maintained
9456 F:      drivers/media/rc/mtk-cir.c
9457
9458 MEDIATEK DMA DRIVER
9459 M:      Sean Wang <sean.wang@mediatek.com>
9460 L:      dmaengine@vger.kernel.org
9461 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9462 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
9463 S:      Maintained
9464 F:      Documentation/devicetree/bindings/dma/mtk-*
9465 F:      drivers/dma/mediatek/
9466
9467 MEDIATEK PMIC LED DRIVER
9468 M:      Sean Wang <sean.wang@mediatek.com>
9469 S:      Maintained
9470 F:      drivers/leds/leds-mt6323.c
9471 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
9472
9473 MEDIATEK ETHERNET DRIVER
9474 M:      Felix Fietkau <nbd@openwrt.org>
9475 M:      John Crispin <john@phrozen.org>
9476 M:      Sean Wang <sean.wang@mediatek.com>
9477 M:      Nelson Chang <nelson.chang@mediatek.com>
9478 L:      netdev@vger.kernel.org
9479 S:      Maintained
9480 F:      drivers/net/ethernet/mediatek/
9481
9482 MEDIATEK SWITCH DRIVER
9483 M:      Sean Wang <sean.wang@mediatek.com>
9484 L:      netdev@vger.kernel.org
9485 S:      Maintained
9486 F:      drivers/net/dsa/mt7530.*
9487 F:      net/dsa/tag_mtk.c
9488
9489 MEDIATEK JPEG DRIVER
9490 M:      Rick Chang <rick.chang@mediatek.com>
9491 M:      Bin Liu <bin.liu@mediatek.com>
9492 S:      Supported
9493 F:      drivers/media/platform/mtk-jpeg/
9494 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
9495
9496 MEDIATEK MDP DRIVER
9497 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
9498 M:      Houlong Wei <houlong.wei@mediatek.com>
9499 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
9500 S:      Supported
9501 F:      drivers/media/platform/mtk-mdp/
9502 F:      drivers/media/platform/mtk-vpu/
9503 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
9504
9505 MEDIATEK MEDIA DRIVER
9506 M:      Tiffany Lin <tiffany.lin@mediatek.com>
9507 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
9508 S:      Supported
9509 F:      drivers/media/platform/mtk-vcodec/
9510 F:      drivers/media/platform/mtk-vpu/
9511 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
9512 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
9513
9514 MEDIATEK MT76 WIRELESS LAN DRIVER
9515 M:      Felix Fietkau <nbd@nbd.name>
9516 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
9517 L:      linux-wireless@vger.kernel.org
9518 S:      Maintained
9519 F:      drivers/net/wireless/mediatek/mt76/
9520
9521 MEDIATEK MT7601U WIRELESS LAN DRIVER
9522 M:      Jakub Kicinski <kubakici@wp.pl>
9523 L:      linux-wireless@vger.kernel.org
9524 S:      Maintained
9525 F:      drivers/net/wireless/mediatek/mt7601u/
9526
9527 MEDIATEK NAND CONTROLLER DRIVER
9528 M:      Xiaolei Li <xiaolei.li@mediatek.com>
9529 L:      linux-mtd@lists.infradead.org
9530 S:      Maintained
9531 F:      drivers/mtd/nand/raw/mtk_*
9532 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
9533
9534 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
9535 M:      Sean Wang <sean.wang@mediatek.com>
9536 S:      Maintained
9537 F:      drivers/char/hw_random/mtk-rng.c
9538
9539 MEDIATEK USB3 DRD IP DRIVER
9540 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
9541 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
9542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9543 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
9544 S:      Maintained
9545 F:      drivers/usb/mtu3/
9546
9547 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
9548 M:      Peter Senna Tschudin <peter.senna@gmail.com>
9549 M:      Martin Donnelly <martin.donnelly@ge.com>
9550 M:      Martyn Welch <martyn.welch@collabora.co.uk>
9551 S:      Maintained
9552 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
9553 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
9554
9555 MEGARAID SCSI/SAS DRIVERS
9556 M:      Kashyap Desai <kashyap.desai@broadcom.com>
9557 M:      Sumit Saxena <sumit.saxena@broadcom.com>
9558 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
9559 L:      megaraidlinux.pdl@broadcom.com
9560 L:      linux-scsi@vger.kernel.org
9561 W:      http://www.avagotech.com/support/
9562 S:      Maintained
9563 F:      Documentation/scsi/megaraid.txt
9564 F:      drivers/scsi/megaraid.*
9565 F:      drivers/scsi/megaraid/
9566
9567 MELEXIS MLX90614 DRIVER
9568 M:      Crt Mori <cmo@melexis.com>
9569 L:      linux-iio@vger.kernel.org
9570 W:      http://www.melexis.com
9571 S:      Supported
9572 F:      drivers/iio/temperature/mlx90614.c
9573
9574 MELEXIS MLX90632 DRIVER
9575 M:      Crt Mori <cmo@melexis.com>
9576 L:      linux-iio@vger.kernel.org
9577 W:      http://www.melexis.com
9578 S:      Supported
9579 F:      drivers/iio/temperature/mlx90632.c
9580
9581 MELFAS MIP4 TOUCHSCREEN DRIVER
9582 M:      Sangwon Jee <jeesw@melfas.com>
9583 W:      http://www.melfas.com
9584 S:      Supported
9585 F:      drivers/input/touchscreen/melfas_mip4.c
9586 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
9587
9588 MELLANOX ETHERNET DRIVER (mlx4_en)
9589 M:      Tariq Toukan <tariqt@mellanox.com>
9590 L:      netdev@vger.kernel.org
9591 S:      Supported
9592 W:      http://www.mellanox.com
9593 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9594 F:      drivers/net/ethernet/mellanox/mlx4/en_*
9595
9596 MELLANOX ETHERNET DRIVER (mlx5e)
9597 M:      Saeed Mahameed <saeedm@mellanox.com>
9598 L:      netdev@vger.kernel.org
9599 S:      Supported
9600 W:      http://www.mellanox.com
9601 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9602 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
9603
9604 MELLANOX ETHERNET INNOVA DRIVERS
9605 R:      Boris Pismenny <borisp@mellanox.com>
9606 L:      netdev@vger.kernel.org
9607 S:      Supported
9608 W:      http://www.mellanox.com
9609 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9610 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
9611 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
9612 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
9613 F:      include/linux/mlx5/mlx5_ifc_fpga.h
9614
9615 MELLANOX ETHERNET INNOVA IPSEC DRIVER
9616 R:      Boris Pismenny <borisp@mellanox.com>
9617 L:      netdev@vger.kernel.org
9618 S:      Supported
9619 W:      http://www.mellanox.com
9620 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9621 F:      drivers/net/ethernet/mellanox/mlx5/core/en_ipsec/*
9622 F:      drivers/net/ethernet/mellanox/mlx5/core/ipsec*
9623
9624 MELLANOX ETHERNET SWITCH DRIVERS
9625 M:      Jiri Pirko <jiri@mellanox.com>
9626 M:      Ido Schimmel <idosch@mellanox.com>
9627 L:      netdev@vger.kernel.org
9628 S:      Supported
9629 W:      http://www.mellanox.com
9630 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9631 F:      drivers/net/ethernet/mellanox/mlxsw/
9632 F:      tools/testing/selftests/drivers/net/mlxsw/
9633
9634 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
9635 M:      mlxsw@mellanox.com
9636 L:      netdev@vger.kernel.org
9637 S:      Supported
9638 W:      http://www.mellanox.com
9639 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9640 F:      drivers/net/ethernet/mellanox/mlxfw/
9641
9642 MELLANOX HARDWARE PLATFORM SUPPORT
9643 M:      Andy Shevchenko <andy@infradead.org>
9644 M:      Darren Hart <dvhart@infradead.org>
9645 M:      Vadim Pasternak <vadimp@mellanox.com>
9646 L:      platform-driver-x86@vger.kernel.org
9647 S:      Supported
9648 F:      drivers/platform/mellanox/
9649
9650 MELLANOX MLX4 core VPI driver
9651 M:      Tariq Toukan <tariqt@mellanox.com>
9652 L:      netdev@vger.kernel.org
9653 L:      linux-rdma@vger.kernel.org
9654 W:      http://www.mellanox.com
9655 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9656 S:      Supported
9657 F:      drivers/net/ethernet/mellanox/mlx4/
9658 F:      include/linux/mlx4/
9659
9660 MELLANOX MLX4 IB driver
9661 M:      Yishai Hadas <yishaih@mellanox.com>
9662 L:      linux-rdma@vger.kernel.org
9663 W:      http://www.mellanox.com
9664 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9665 S:      Supported
9666 F:      drivers/infiniband/hw/mlx4/
9667 F:      include/linux/mlx4/
9668 F:      include/uapi/rdma/mlx4-abi.h
9669
9670 MELLANOX MLX5 core VPI driver
9671 M:      Saeed Mahameed <saeedm@mellanox.com>
9672 M:      Leon Romanovsky <leonro@mellanox.com>
9673 L:      netdev@vger.kernel.org
9674 L:      linux-rdma@vger.kernel.org
9675 W:      http://www.mellanox.com
9676 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9677 S:      Supported
9678 F:      drivers/net/ethernet/mellanox/mlx5/core/
9679 F:      include/linux/mlx5/
9680
9681 MELLANOX MLX5 IB driver
9682 M:      Leon Romanovsky <leonro@mellanox.com>
9683 L:      linux-rdma@vger.kernel.org
9684 W:      http://www.mellanox.com
9685 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9686 S:      Supported
9687 F:      drivers/infiniband/hw/mlx5/
9688 F:      include/linux/mlx5/
9689 F:      include/uapi/rdma/mlx5-abi.h
9690
9691 MELLANOX MLXCPLD I2C AND MUX DRIVER
9692 M:      Vadim Pasternak <vadimp@mellanox.com>
9693 M:      Michael Shych <michaelsh@mellanox.com>
9694 L:      linux-i2c@vger.kernel.org
9695 S:      Supported
9696 F:      drivers/i2c/busses/i2c-mlxcpld.c
9697 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
9698 F:      Documentation/i2c/busses/i2c-mlxcpld
9699
9700 MELLANOX MLXCPLD LED DRIVER
9701 M:      Vadim Pasternak <vadimp@mellanox.com>
9702 L:      linux-leds@vger.kernel.org
9703 S:      Supported
9704 F:      drivers/leds/leds-mlxcpld.c
9705 F:      drivers/leds/leds-mlxreg.c
9706 F:      Documentation/leds/leds-mlxcpld.txt
9707
9708 MELLANOX PLATFORM DRIVER
9709 M:      Vadim Pasternak <vadimp@mellanox.com>
9710 L:      platform-driver-x86@vger.kernel.org
9711 S:      Supported
9712 F:      drivers/platform/x86/mlx-platform.c
9713
9714 MEMBARRIER SUPPORT
9715 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9716 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
9717 L:      linux-kernel@vger.kernel.org
9718 S:      Supported
9719 F:      kernel/sched/membarrier.c
9720 F:      include/uapi/linux/membarrier.h
9721 F:      arch/powerpc/include/asm/membarrier.h
9722
9723 MEMORY MANAGEMENT
9724 L:      linux-mm@kvack.org
9725 W:      http://www.linux-mm.org
9726 S:      Maintained
9727 F:      include/linux/mm.h
9728 F:      include/linux/gfp.h
9729 F:      include/linux/mmzone.h
9730 F:      include/linux/memory_hotplug.h
9731 F:      include/linux/vmalloc.h
9732 F:      mm/
9733
9734 MEMORY TECHNOLOGY DEVICES (MTD)
9735 M:      David Woodhouse <dwmw2@infradead.org>
9736 M:      Brian Norris <computersforpeace@gmail.com>
9737 M:      Boris Brezillon <bbrezillon@kernel.org>
9738 M:      Marek Vasut <marek.vasut@gmail.com>
9739 M:      Richard Weinberger <richard@nod.at>
9740 L:      linux-mtd@lists.infradead.org
9741 W:      http://www.linux-mtd.infradead.org/
9742 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9743 T:      git git://git.infradead.org/linux-mtd.git master
9744 T:      git git://git.infradead.org/linux-mtd.git mtd/next
9745 S:      Maintained
9746 F:      Documentation/devicetree/bindings/mtd/
9747 F:      drivers/mtd/
9748 F:      include/linux/mtd/
9749 F:      include/uapi/mtd/
9750
9751 MEN A21 WATCHDOG DRIVER
9752 M:      Johannes Thumshirn <morbidrsa@gmail.com>
9753 L:      linux-watchdog@vger.kernel.org
9754 S:      Maintained
9755 F:      drivers/watchdog/mena21_wdt.c
9756
9757 MEN CHAMELEON BUS (mcb)
9758 M:      Johannes Thumshirn <morbidrsa@gmail.com>
9759 S:      Maintained
9760 F:      drivers/mcb/
9761 F:      include/linux/mcb.h
9762 F:      Documentation/men-chameleon-bus.txt
9763
9764 MEN F21BMC (Board Management Controller)
9765 M:      Andreas Werner <andreas.werner@men.de>
9766 S:      Supported
9767 F:      drivers/mfd/menf21bmc.c
9768 F:      drivers/watchdog/menf21bmc_wdt.c
9769 F:      drivers/leds/leds-menf21bmc.c
9770 F:      drivers/hwmon/menf21bmc_hwmon.c
9771 F:      Documentation/hwmon/menf21bmc
9772
9773 MEN Z069 WATCHDOG DRIVER
9774 M:      Johannes Thumshirn <jth@kernel.org>
9775 L:      linux-watchdog@vger.kernel.org
9776 S:      Maintained
9777 F:      drivers/watchdog/menz69_wdt.c
9778
9779 MESON AO CEC DRIVER FOR AMLOGIC SOCS
9780 M:      Neil Armstrong <narmstrong@baylibre.com>
9781 L:      linux-media@lists.freedesktop.org
9782 L:      linux-amlogic@lists.infradead.org
9783 W:      http://linux-meson.com/
9784 S:      Supported
9785 F:      drivers/media/platform/meson/ao-cec.c
9786 F:      Documentation/devicetree/bindings/media/meson-ao-cec.txt
9787 T:      git git://linuxtv.org/media_tree.git
9788
9789 MICROBLAZE ARCHITECTURE
9790 M:      Michal Simek <monstr@monstr.eu>
9791 W:      http://www.monstr.eu/fdt/
9792 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
9793 S:      Supported
9794 F:      arch/microblaze/
9795
9796 MICROCHIP AT91 SERIAL DRIVER
9797 M:      Richard Genoud <richard.genoud@gmail.com>
9798 S:      Maintained
9799 F:      drivers/tty/serial/atmel_serial.c
9800 F:      drivers/tty/serial/atmel_serial.h
9801 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
9802
9803 MICROCHIP AUDIO ASOC DRIVERS
9804 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
9805 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9806 S:      Supported
9807 F:      sound/soc/atmel
9808
9809 MICROCHIP DMA DRIVER
9810 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
9811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9812 L:      dmaengine@vger.kernel.org
9813 S:      Supported
9814 F:      drivers/dma/at_hdmac.c
9815 F:      drivers/dma/at_hdmac_regs.h
9816 F:      include/linux/platform_data/dma-atmel.h
9817 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
9818 F:      include/dt-bindings/dma/at91.h
9819
9820 MICROCHIP ECC DRIVER
9821 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
9822 L:      linux-crypto@vger.kernel.org
9823 S:      Maintained
9824 F:      drivers/crypto/atmel-ecc.*
9825
9826 MICROCHIP I2C DRIVER
9827 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
9828 L:      linux-i2c@vger.kernel.org
9829 S:      Supported
9830 F:      drivers/i2c/busses/i2c-at91.c
9831
9832 MICROCHIP ISC DRIVER
9833 M:      Eugen Hristev <eugen.hristev@microchip.com>
9834 L:      linux-media@vger.kernel.org
9835 S:      Supported
9836 F:      drivers/media/platform/atmel/atmel-isc.c
9837 F:      drivers/media/platform/atmel/atmel-isc-regs.h
9838 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
9839
9840 MICROCHIP ISI DRIVER
9841 M:      Eugen Hristev <eugen.hristev@microchip.com>
9842 L:      linux-media@vger.kernel.org
9843 S:      Supported
9844 F:      drivers/media/platform/atmel/atmel-isi.c
9845 F:      drivers/media/platform/atmel/atmel-isi.h
9846
9847 MICROCHIP AT91 USART MFD DRIVER
9848 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
9849 L:      linux-kernel@vger.kernel.org
9850 S:      Supported
9851 F:      drivers/mfd/at91-usart.c
9852 F:      include/dt-bindings/mfd/at91-usart.h
9853 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
9854
9855 MICROCHIP AT91 USART SPI DRIVER
9856 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
9857 L:      linux-spi@vger.kernel.org
9858 S:      Supported
9859 F:      drivers/spi/spi-at91-usart.c
9860 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
9861
9862 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
9863 M:      Woojung Huh <Woojung.Huh@microchip.com>
9864 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
9865 L:      netdev@vger.kernel.org
9866 S:      Maintained
9867 F:      net/dsa/tag_ksz.c
9868 F:      drivers/net/dsa/microchip/*
9869 F:      include/linux/platform_data/microchip-ksz.h
9870 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
9871
9872 MICROCHIP LAN743X ETHERNET DRIVER
9873 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
9874 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
9875 L:      netdev@vger.kernel.org
9876 S:      Maintained
9877 F:      drivers/net/ethernet/microchip/lan743x_*
9878
9879 MICROCHIP LCDFB DRIVER
9880 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
9881 L:      linux-fbdev@vger.kernel.org
9882 S:      Maintained
9883 F:      drivers/video/fbdev/atmel_lcdfb.c
9884 F:      include/video/atmel_lcdc.h
9885
9886 MICROCHIP MMC/SD/SDIO MCI DRIVER
9887 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
9888 S:      Maintained
9889 F:      drivers/mmc/host/atmel-mci.c
9890
9891 MICROCHIP MCP16502 PMIC DRIVER
9892 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
9893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9894 S:      Maintained
9895 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
9896 F:      drivers/regulator/mcp16502.c
9897
9898 MICROCHIP MCP3911 ADC DRIVER
9899 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9900 M:      Kent Gustavsson <kent@minoris.se>
9901 L:      linux-iio@vger.kernel.org
9902 S:      Supported
9903 F:      drivers/iio/adc/mcp3911.c
9904 F:      Documentation/devicetree/bindings/iio/adc/mcp3911.txt
9905
9906 MICROCHIP NAND DRIVER
9907 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
9908 L:      linux-mtd@lists.infradead.org
9909 S:      Supported
9910 F:      drivers/mtd/nand/raw/atmel/*
9911 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
9912
9913 MICROCHIP PWM DRIVER
9914 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
9915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9916 L:      linux-pwm@vger.kernel.org
9917 S:      Supported
9918 F:      drivers/pwm/pwm-atmel.c
9919 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
9920
9921 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
9922 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
9923 M:      Eugen Hristev <eugen.hristev@microchip.com>
9924 L:      linux-iio@vger.kernel.org
9925 S:      Supported
9926 F:      drivers/iio/adc/at91-sama5d2_adc.c
9927 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
9928 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
9929
9930 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
9931 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
9932 S:      Supported
9933 F:      drivers/power/reset/at91-sama5d2_shdwc.c
9934
9935 MICROCHIP SAMA5D2-COMPATIBLE PIOBU GPIO
9936 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
9937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9938 L:      linux-gpio@vger.kernel.org
9939 F:      drivers/gpio/gpio-sama5d2-piobu.c
9940
9941 MICROCHIP SPI DRIVER
9942 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
9943 S:      Supported
9944 F:      drivers/spi/spi-atmel.*
9945
9946 MICROCHIP SSC DRIVER
9947 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
9948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9949 S:      Supported
9950 F:      drivers/misc/atmel-ssc.c
9951 F:      include/linux/atmel-ssc.h
9952
9953 MICROCHIP TIMER COUNTER (TC) AND CLOCKSOURCE DRIVERS
9954 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
9955 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9956 S:      Supported
9957 F:      drivers/misc/atmel_tclib.c
9958 F:      drivers/clocksource/tcb_clksrc.c
9959
9960 MICROCHIP USBA UDC DRIVER
9961 M:      Cristian Birsan <cristian.birsan@microchip.com>
9962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9963 S:      Supported
9964 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
9965
9966 MICROCHIP USB251XB DRIVER
9967 M:      Richard Leitner <richard.leitner@skidata.com>
9968 L:      linux-usb@vger.kernel.org
9969 S:      Maintained
9970 F:      drivers/usb/misc/usb251xb.c
9971 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
9972
9973 MICROCHIP XDMA DRIVER
9974 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
9975 L:      linux-arm-kernel@lists.infradead.org
9976 L:      dmaengine@vger.kernel.org
9977 S:      Supported
9978 F:      drivers/dma/at_xdmac.c
9979
9980 MICROSEMI MIPS SOCS
9981 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9982 L:      linux-mips@vger.kernel.org
9983 S:      Maintained
9984 F:      arch/mips/generic/board-ocelot.c
9985 F:      arch/mips/configs/generic/board-ocelot.config
9986 F:      arch/mips/boot/dts/mscc/
9987 F:      Documentation/devicetree/bindings/mips/mscc.txt
9988
9989 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
9990 M:      Don Brace <don.brace@microsemi.com>
9991 L:      esc.storagedev@microsemi.com
9992 L:      linux-scsi@vger.kernel.org
9993 S:      Supported
9994 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
9995 F:      drivers/scsi/smartpqi/Kconfig
9996 F:      drivers/scsi/smartpqi/Makefile
9997 F:      include/linux/cciss*.h
9998 F:      include/uapi/linux/cciss*.h
9999 F:      Documentation/scsi/smartpqi.txt
10000
10001 MICROSEMI ETHERNET SWITCH DRIVER
10002 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10003 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10004 L:      netdev@vger.kernel.org
10005 S:      Supported
10006 F:      drivers/net/ethernet/mscc/
10007
10008 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
10009 M:      Chen Yu <yu.c.chen@intel.com>
10010 L:      platform-driver-x86@vger.kernel.org
10011 S:      Supported
10012 F:      drivers/platform/x86/surfacepro3_button.c
10013
10014 MICROTEK X6 SCANNER
10015 M:      Oliver Neukum <oliver@neukum.org>
10016 S:      Maintained
10017 F:      drivers/usb/image/microtek.*
10018
10019 MIPS
10020 M:      Ralf Baechle <ralf@linux-mips.org>
10021 M:      Paul Burton <paul.burton@mips.com>
10022 M:      James Hogan <jhogan@kernel.org>
10023 L:      linux-mips@vger.kernel.org
10024 W:      http://www.linux-mips.org/
10025 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
10026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
10027 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10028 S:      Supported
10029 F:      Documentation/devicetree/bindings/mips/
10030 F:      Documentation/mips/
10031 F:      arch/mips/
10032 F:      drivers/platform/mips/
10033
10034 MIPS BOSTON DEVELOPMENT BOARD
10035 M:      Paul Burton <paul.burton@mips.com>
10036 L:      linux-mips@vger.kernel.org
10037 S:      Maintained
10038 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
10039 F:      arch/mips/boot/dts/img/boston.dts
10040 F:      arch/mips/configs/generic/board-boston.config
10041 F:      drivers/clk/imgtec/clk-boston.c
10042 F:      include/dt-bindings/clock/boston-clock.h
10043
10044 MIPS GENERIC PLATFORM
10045 M:      Paul Burton <paul.burton@mips.com>
10046 L:      linux-mips@vger.kernel.org
10047 S:      Supported
10048 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
10049 F:      arch/mips/generic/
10050 F:      arch/mips/tools/generic-board-config.sh
10051
10052 MIPS/LOONGSON1 ARCHITECTURE
10053 M:      Keguang Zhang <keguang.zhang@gmail.com>
10054 L:      linux-mips@vger.kernel.org
10055 S:      Maintained
10056 F:      arch/mips/loongson32/
10057 F:      arch/mips/include/asm/mach-loongson32/
10058 F:      drivers/*/*loongson1*
10059 F:      drivers/*/*/*loongson1*
10060
10061 MIPS/LOONGSON2 ARCHITECTURE
10062 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
10063 L:      linux-mips@vger.kernel.org
10064 S:      Maintained
10065 F:      arch/mips/loongson64/fuloong-2e/
10066 F:      arch/mips/loongson64/lemote-2f/
10067 F:      arch/mips/include/asm/mach-loongson64/
10068 F:      drivers/*/*loongson2*
10069 F:      drivers/*/*/*loongson2*
10070
10071 MIPS/LOONGSON3 ARCHITECTURE
10072 M:      Huacai Chen <chenhc@lemote.com>
10073 L:      linux-mips@vger.kernel.org
10074 S:      Maintained
10075 F:      arch/mips/loongson64/
10076 F:      arch/mips/include/asm/mach-loongson64/
10077 F:      drivers/platform/mips/cpu_hwmon.c
10078 F:      drivers/*/*loongson3*
10079 F:      drivers/*/*/*loongson3*
10080
10081 MIPS RINT INSTRUCTION EMULATION
10082 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
10083 L:      linux-mips@vger.kernel.org
10084 S:      Supported
10085 F:      arch/mips/math-emu/sp_rint.c
10086 F:      arch/mips/math-emu/dp_rint.c
10087
10088 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
10089 M:      Hans Verkuil <hverkuil@xs4all.nl>
10090 L:      linux-media@vger.kernel.org
10091 T:      git git://linuxtv.org/media_tree.git
10092 W:      https://linuxtv.org
10093 S:      Odd Fixes
10094 F:      drivers/media/radio/radio-miropcm20*
10095
10096 MMP SUPPORT
10097 R:      Lubomir Rintel <lkundrak@v3.sk>
10098 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10099 S:      Odd Fixes
10100 F:      arch/arm/boot/dts/mmp*
10101 F:      arch/arm/mach-mmp/
10102
10103 MMU GATHER AND TLB INVALIDATION
10104 M:      Will Deacon <will.deacon@arm.com>
10105 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
10106 M:      Andrew Morton <akpm@linux-foundation.org>
10107 M:      Nick Piggin <npiggin@gmail.com>
10108 M:      Peter Zijlstra <peterz@infradead.org>
10109 L:      linux-arch@vger.kernel.org
10110 L:      linux-mm@kvack.org
10111 S:      Maintained
10112 F:      arch/*/include/asm/tlb.h
10113 F:      include/asm-generic/tlb.h
10114 F:      mm/mmu_gather.c
10115
10116 MN88472 MEDIA DRIVER
10117 M:      Antti Palosaari <crope@iki.fi>
10118 L:      linux-media@vger.kernel.org
10119 W:      https://linuxtv.org
10120 W:      http://palosaari.fi/linux/
10121 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10122 S:      Maintained
10123 F:      drivers/media/dvb-frontends/mn88472*
10124
10125 MN88473 MEDIA DRIVER
10126 M:      Antti Palosaari <crope@iki.fi>
10127 L:      linux-media@vger.kernel.org
10128 W:      https://linuxtv.org
10129 W:      http://palosaari.fi/linux/
10130 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10131 S:      Maintained
10132 F:      drivers/media/dvb-frontends/mn88473*
10133
10134 MODULE SUPPORT
10135 M:      Jessica Yu <jeyu@kernel.org>
10136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
10137 S:      Maintained
10138 F:      include/linux/module.h
10139 F:      kernel/module.c
10140
10141 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
10142 W:      http://popies.net/meye/
10143 S:      Orphan
10144 F:      Documentation/media/v4l-drivers/meye*
10145 F:      drivers/media/pci/meye/
10146 F:      include/uapi/linux/meye.h
10147
10148 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
10149 M:      Jiri Slaby <jirislaby@gmail.com>
10150 S:      Maintained
10151 F:      Documentation/serial/moxa-smartio
10152 F:      drivers/tty/mxser.*
10153
10154 MR800 AVERMEDIA USB FM RADIO DRIVER
10155 M:      Alexey Klimov <klimov.linux@gmail.com>
10156 L:      linux-media@vger.kernel.org
10157 T:      git git://linuxtv.org/media_tree.git
10158 S:      Maintained
10159 F:      drivers/media/radio/radio-mr800.c
10160
10161 MRF24J40 IEEE 802.15.4 RADIO DRIVER
10162 M:      Alan Ott <alan@signal11.us>
10163 L:      linux-wpan@vger.kernel.org
10164 S:      Maintained
10165 F:      drivers/net/ieee802154/mrf24j40.c
10166 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
10167
10168 MSI LAPTOP SUPPORT
10169 M:      "Lee, Chun-Yi" <jlee@suse.com>
10170 L:      platform-driver-x86@vger.kernel.org
10171 S:      Maintained
10172 F:      drivers/platform/x86/msi-laptop.c
10173
10174 MSI WMI SUPPORT
10175 L:      platform-driver-x86@vger.kernel.org
10176 S:      Orphan
10177 F:      drivers/platform/x86/msi-wmi.c
10178
10179 MSI001 MEDIA DRIVER
10180 M:      Antti Palosaari <crope@iki.fi>
10181 L:      linux-media@vger.kernel.org
10182 W:      https://linuxtv.org
10183 W:      http://palosaari.fi/linux/
10184 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10185 T:      git git://linuxtv.org/anttip/media_tree.git
10186 S:      Maintained
10187 F:      drivers/media/tuners/msi001*
10188
10189 MSI2500 MEDIA DRIVER
10190 M:      Antti Palosaari <crope@iki.fi>
10191 L:      linux-media@vger.kernel.org
10192 W:      https://linuxtv.org
10193 W:      http://palosaari.fi/linux/
10194 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10195 T:      git git://linuxtv.org/anttip/media_tree.git
10196 S:      Maintained
10197 F:      drivers/media/usb/msi2500/
10198
10199 MSYSTEMS DISKONCHIP G3 MTD DRIVER
10200 M:      Robert Jarzmik <robert.jarzmik@free.fr>
10201 L:      linux-mtd@lists.infradead.org
10202 S:      Maintained
10203 F:      drivers/mtd/devices/docg3*
10204
10205 MT9M032 APTINA SENSOR DRIVER
10206 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10207 L:      linux-media@vger.kernel.org
10208 T:      git git://linuxtv.org/media_tree.git
10209 S:      Maintained
10210 F:      drivers/media/i2c/mt9m032.c
10211 F:      include/media/i2c/mt9m032.h
10212
10213 MT9P031 APTINA CAMERA SENSOR
10214 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10215 L:      linux-media@vger.kernel.org
10216 T:      git git://linuxtv.org/media_tree.git
10217 S:      Maintained
10218 F:      drivers/media/i2c/mt9p031.c
10219 F:      include/media/i2c/mt9p031.h
10220
10221 MT9T001 APTINA CAMERA SENSOR
10222 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10223 L:      linux-media@vger.kernel.org
10224 T:      git git://linuxtv.org/media_tree.git
10225 S:      Maintained
10226 F:      drivers/media/i2c/mt9t001.c
10227 F:      include/media/i2c/mt9t001.h
10228
10229 MT9T112 APTINA CAMERA SENSOR
10230 M:      Jacopo Mondi <jacopo@jmondi.org>
10231 L:      linux-media@vger.kernel.org
10232 T:      git git://linuxtv.org/media_tree.git
10233 S:      Odd Fixes
10234 F:      drivers/media/i2c/mt9t112.c
10235 F:      include/media/i2c/mt9t112.h
10236
10237 MT9V032 APTINA CAMERA SENSOR
10238 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10239 L:      linux-media@vger.kernel.org
10240 T:      git git://linuxtv.org/media_tree.git
10241 S:      Maintained
10242 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
10243 F:      drivers/media/i2c/mt9v032.c
10244 F:      include/media/i2c/mt9v032.h
10245
10246 MT9V111 APTINA CAMERA SENSOR
10247 M:      Jacopo Mondi <jacopo@jmondi.org>
10248 L:      linux-media@vger.kernel.org
10249 T:      git git://linuxtv.org/media_tree.git
10250 S:      Maintained
10251 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
10252 F:      drivers/media/i2c/mt9v111.c
10253
10254 MULTIFUNCTION DEVICES (MFD)
10255 M:      Lee Jones <lee.jones@linaro.org>
10256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10257 S:      Supported
10258 F:      Documentation/devicetree/bindings/mfd/
10259 F:      drivers/mfd/
10260 F:      include/linux/mfd/
10261 F:      include/dt-bindings/mfd/
10262
10263 MULTIMEDIA CARD (MMC) ETC. OVER SPI
10264 S:      Orphan
10265 F:      drivers/mmc/host/mmc_spi.c
10266 F:      include/linux/spi/mmc_spi.h
10267
10268 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
10269 M:      Ulf Hansson <ulf.hansson@linaro.org>
10270 L:      linux-mmc@vger.kernel.org
10271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
10272 S:      Maintained
10273 F:      Documentation/devicetree/bindings/mmc/
10274 F:      drivers/mmc/
10275 F:      include/linux/mmc/
10276 F:      include/uapi/linux/mmc/
10277
10278 MULTIPLEXER SUBSYSTEM
10279 M:      Peter Rosin <peda@axentia.se>
10280 S:      Maintained
10281 F:      Documentation/ABI/testing/sysfs-class-mux*
10282 F:      Documentation/devicetree/bindings/mux/
10283 F:      include/dt-bindings/mux/
10284 F:      include/linux/mux/
10285 F:      drivers/mux/
10286
10287 MULTITECH MULTIPORT CARD (ISICOM)
10288 S:      Orphan
10289 F:      drivers/tty/isicom.c
10290 F:      include/linux/isicom.h
10291
10292 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
10293 M:      Bin Liu <b-liu@ti.com>
10294 L:      linux-usb@vger.kernel.org
10295 S:      Maintained
10296 F:      drivers/usb/musb/
10297
10298 MXL301RF MEDIA DRIVER
10299 M:      Akihiro Tsukada <tskd08@gmail.com>
10300 L:      linux-media@vger.kernel.org
10301 S:      Odd Fixes
10302 F:      drivers/media/tuners/mxl301rf*
10303
10304 MXL5007T MEDIA DRIVER
10305 M:      Michael Krufky <mkrufky@linuxtv.org>
10306 L:      linux-media@vger.kernel.org
10307 W:      https://linuxtv.org
10308 W:      http://github.com/mkrufky
10309 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10310 T:      git git://linuxtv.org/mkrufky/tuners.git
10311 S:      Maintained
10312 F:      drivers/media/tuners/mxl5007t.*
10313
10314 MXSFB DRM DRIVER
10315 M:      Marek Vasut <marex@denx.de>
10316 M:      Stefan Agner <stefan@agner.ch>
10317 L:      dri-devel@lists.freedesktop.org
10318 S:      Supported
10319 F:      drivers/gpu/drm/mxsfb/
10320 F:      Documentation/devicetree/bindings/display/mxsfb.txt
10321 T:      git git://anongit.freedesktop.org/drm/drm-misc
10322
10323 MYLEX DAC960 PCI RAID Controller
10324 M:      Hannes Reinecke <hare@kernel.org>
10325 L:      linux-scsi@vger.kernel.org
10326 S:      Supported
10327 F:      drivers/scsi/myrb.*
10328 F:      drivers/scsi/myrs.*
10329
10330 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
10331 M:      Chris Lee <christopher.lee@cspi.com>
10332 L:      netdev@vger.kernel.org
10333 W:      https://www.cspi.com/ethernet-products/support/downloads/
10334 S:      Supported
10335 F:      drivers/net/ethernet/myricom/myri10ge/
10336
10337 NAND FLASH SUBSYSTEM
10338 M:      Boris Brezillon <bbrezillon@kernel.org>
10339 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10340 R:      Richard Weinberger <richard@nod.at>
10341 L:      linux-mtd@lists.infradead.org
10342 W:      http://www.linux-mtd.infradead.org/
10343 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10344 T:      git git://git.infradead.org/linux-mtd.git nand/fixes
10345 T:      git git://git.infradead.org/linux-mtd.git nand/next
10346 S:      Maintained
10347 F:      drivers/mtd/nand/
10348 F:      include/linux/mtd/*nand*.h
10349
10350 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
10351 M:      Daniel Mack <zonque@gmail.com>
10352 S:      Maintained
10353 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10354 W:      http://www.native-instruments.com
10355 F:      sound/usb/caiaq/
10356
10357 NATSEMI ETHERNET DRIVER (DP8381x)
10358 S:      Orphan
10359 F:      drivers/net/ethernet/natsemi/natsemi.c
10360
10361 NCR 5380 SCSI DRIVERS
10362 M:      Finn Thain <fthain@telegraphics.com.au>
10363 M:      Michael Schmitz <schmitzmic@gmail.com>
10364 L:      linux-scsi@vger.kernel.org
10365 S:      Maintained
10366 F:      Documentation/scsi/g_NCR5380.txt
10367 F:      drivers/scsi/NCR5380.*
10368 F:      drivers/scsi/arm/cumana_1.c
10369 F:      drivers/scsi/arm/oak.c
10370 F:      drivers/scsi/atari_scsi.*
10371 F:      drivers/scsi/dmx3191d.c
10372 F:      drivers/scsi/g_NCR5380.*
10373 F:      drivers/scsi/mac_scsi.*
10374 F:      drivers/scsi/sun3_scsi.*
10375 F:      drivers/scsi/sun3_scsi_vme.c
10376
10377 NCSI LIBRARY:
10378 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
10379 S:      Maintained
10380 F:      net/ncsi/
10381
10382 NCT6775 HARDWARE MONITOR DRIVER
10383 M:      Guenter Roeck <linux@roeck-us.net>
10384 L:      linux-hwmon@vger.kernel.org
10385 S:      Maintained
10386 F:      Documentation/hwmon/nct6775
10387 F:      drivers/hwmon/nct6775.c
10388
10389 NET_FAILOVER MODULE
10390 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
10391 L:      netdev@vger.kernel.org
10392 S:      Supported
10393 F:      driver/net/net_failover.c
10394 F:      include/net/net_failover.h
10395 F:      Documentation/networking/net_failover.rst
10396
10397 NETEFFECT IWARP RNIC DRIVER (IW_NES)
10398 M:      Faisal Latif <faisal.latif@intel.com>
10399 L:      linux-rdma@vger.kernel.org
10400 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
10401 S:      Supported
10402 F:      drivers/infiniband/hw/nes/
10403 F:      include/uapi/rdma/nes-abi.h
10404
10405 NETEM NETWORK EMULATOR
10406 M:      Stephen Hemminger <stephen@networkplumber.org>
10407 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
10408 S:      Maintained
10409 F:      net/sched/sch_netem.c
10410
10411 NETERION 10GbE DRIVERS (s2io/vxge)
10412 M:      Jon Mason <jdmason@kudzu.us>
10413 L:      netdev@vger.kernel.org
10414 S:      Supported
10415 F:      Documentation/networking/device_drivers/neterion/s2io.txt
10416 F:      Documentation/networking/device_drivers/neterion/vxge.txt
10417 F:      drivers/net/ethernet/neterion/
10418
10419 NETFILTER
10420 M:      Pablo Neira Ayuso <pablo@netfilter.org>
10421 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
10422 M:      Florian Westphal <fw@strlen.de>
10423 L:      netfilter-devel@vger.kernel.org
10424 L:      coreteam@netfilter.org
10425 W:      http://www.netfilter.org/
10426 W:      http://www.iptables.org/
10427 W:      http://www.nftables.org/
10428 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
10429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
10430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
10431 S:      Maintained
10432 F:      include/linux/netfilter*
10433 F:      include/linux/netfilter/
10434 F:      include/net/netfilter/
10435 F:      include/uapi/linux/netfilter*
10436 F:      include/uapi/linux/netfilter/
10437 F:      net/*/netfilter.c
10438 F:      net/*/netfilter/
10439 F:      net/netfilter/
10440 F:      net/bridge/br_netfilter*.c
10441
10442 NETROM NETWORK LAYER
10443 M:      Ralf Baechle <ralf@linux-mips.org>
10444 L:      linux-hams@vger.kernel.org
10445 W:      http://www.linux-ax25.org/
10446 S:      Maintained
10447 F:      include/net/netrom.h
10448 F:      include/uapi/linux/netrom.h
10449 F:      net/netrom/
10450
10451 NETRONOME ETHERNET DRIVERS
10452 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
10453 L:      oss-drivers@netronome.com
10454 S:      Maintained
10455 F:      drivers/net/ethernet/netronome/
10456
10457 NETWORK BLOCK DEVICE (NBD)
10458 M:      Josef Bacik <josef@toxicpanda.com>
10459 S:      Maintained
10460 L:      linux-block@vger.kernel.org
10461 L:      nbd@other.debian.org
10462 F:      Documentation/blockdev/nbd.txt
10463 F:      drivers/block/nbd.c
10464 F:      include/uapi/linux/nbd.h
10465
10466 NETWORK DROP MONITOR
10467 M:      Neil Horman <nhorman@tuxdriver.com>
10468 L:      netdev@vger.kernel.org
10469 S:      Maintained
10470 W:      https://fedorahosted.org/dropwatch/
10471 F:      net/core/drop_monitor.c
10472
10473 NETWORKING DRIVERS
10474 M:      "David S. Miller" <davem@davemloft.net>
10475 L:      netdev@vger.kernel.org
10476 W:      http://www.linuxfoundation.org/en/Net
10477 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
10479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
10480 S:      Odd Fixes
10481 F:      Documentation/devicetree/bindings/net/
10482 F:      drivers/net/
10483 F:      include/linux/if_*
10484 F:      include/linux/netdevice.h
10485 F:      include/linux/etherdevice.h
10486 F:      include/linux/fcdevice.h
10487 F:      include/linux/fddidevice.h
10488 F:      include/linux/hippidevice.h
10489 F:      include/linux/inetdevice.h
10490 F:      include/uapi/linux/if_*
10491 F:      include/uapi/linux/netdevice.h
10492
10493 NETWORKING DRIVERS (WIRELESS)
10494 M:      Kalle Valo <kvalo@codeaurora.org>
10495 L:      linux-wireless@vger.kernel.org
10496 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
10497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
10498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
10499 S:      Maintained
10500 F:      Documentation/devicetree/bindings/net/wireless/
10501 F:      drivers/net/wireless/
10502
10503 NETWORKING [DSA]
10504 M:      Andrew Lunn <andrew@lunn.ch>
10505 M:      Vivien Didelot <vivien.didelot@gmail.com>
10506 M:      Florian Fainelli <f.fainelli@gmail.com>
10507 S:      Maintained
10508 F:      Documentation/devicetree/bindings/net/dsa/
10509 F:      net/dsa/
10510 F:      include/net/dsa.h
10511 F:      include/linux/dsa/
10512 F:      drivers/net/dsa/
10513
10514 NETWORKING [GENERAL]
10515 M:      "David S. Miller" <davem@davemloft.net>
10516 L:      netdev@vger.kernel.org
10517 W:      http://www.linuxfoundation.org/en/Net
10518 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
10520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
10521 B:      mailto:netdev@vger.kernel.org
10522 S:      Maintained
10523 F:      net/
10524 F:      include/net/
10525 F:      include/linux/in.h
10526 F:      include/linux/net.h
10527 F:      include/linux/netdevice.h
10528 F:      include/uapi/linux/in.h
10529 F:      include/uapi/linux/net.h
10530 F:      include/uapi/linux/netdevice.h
10531 F:      include/uapi/linux/net_namespace.h
10532 F:      tools/testing/selftests/net/
10533 F:      lib/net_utils.c
10534 F:      lib/random32.c
10535 F:      Documentation/networking/
10536
10537 NETWORKING [IPSEC]
10538 M:      Steffen Klassert <steffen.klassert@secunet.com>
10539 M:      Herbert Xu <herbert@gondor.apana.org.au>
10540 M:      "David S. Miller" <davem@davemloft.net>
10541 L:      netdev@vger.kernel.org
10542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
10543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
10544 S:      Maintained
10545 F:      net/xfrm/
10546 F:      net/key/
10547 F:      net/ipv4/xfrm*
10548 F:      net/ipv4/esp4*
10549 F:      net/ipv4/ah4.c
10550 F:      net/ipv4/ipcomp.c
10551 F:      net/ipv4/ip_vti.c
10552 F:      net/ipv6/xfrm*
10553 F:      net/ipv6/esp6*
10554 F:      net/ipv6/ah6.c
10555 F:      net/ipv6/ipcomp6.c
10556 F:      net/ipv6/ip6_vti.c
10557 F:      include/uapi/linux/xfrm.h
10558 F:      include/net/xfrm.h
10559
10560 NETWORKING [IPv4/IPv6]
10561 M:      "David S. Miller" <davem@davemloft.net>
10562 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
10563 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
10564 L:      netdev@vger.kernel.org
10565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
10566 S:      Maintained
10567 F:      net/ipv4/
10568 F:      net/ipv6/
10569 F:      include/net/ip*
10570 F:      arch/x86/net/*
10571
10572 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
10573 M:      Paul Moore <paul@paul-moore.com>
10574 W:      https://github.com/netlabel
10575 L:      netdev@vger.kernel.org
10576 L:      linux-security-module@vger.kernel.org
10577 S:      Maintained
10578 F:      Documentation/netlabel/
10579 F:      include/net/calipso.h
10580 F:      include/net/cipso_ipv4.h
10581 F:      include/net/netlabel.h
10582 F:      include/uapi/linux/netfilter/xt_SECMARK.h
10583 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
10584 F:      net/netlabel/
10585 F:      net/ipv4/cipso_ipv4.c
10586 F:      net/ipv6/calipso.c
10587 F:      net/netfilter/xt_CONNSECMARK.c
10588 F:      net/netfilter/xt_SECMARK.c
10589
10590 NETWORKING [TCP]
10591 M:      Eric Dumazet <edumazet@google.com>
10592 L:      netdev@vger.kernel.org
10593 S:      Maintained
10594 F:      net/ipv4/tcp*.c
10595 F:      net/ipv4/syncookies.c
10596 F:      net/ipv6/tcp*.c
10597 F:      net/ipv6/syncookies.c
10598 F:      include/uapi/linux/tcp.h
10599 F:      include/net/tcp.h
10600 F:      include/linux/tcp.h
10601 F:      include/trace/events/tcp.h
10602
10603 NETWORKING [TLS]
10604 M:      Boris Pismenny <borisp@mellanox.com>
10605 M:      Aviad Yehezkel <aviadye@mellanox.com>
10606 M:      Dave Watson <davejwatson@fb.com>
10607 M:      John Fastabend <john.fastabend@gmail.com>
10608 M:      Daniel Borkmann <daniel@iogearbox.net>
10609 L:      netdev@vger.kernel.org
10610 S:      Maintained
10611 F:      net/tls/*
10612 F:      include/uapi/linux/tls.h
10613 F:      include/net/tls.h
10614
10615 NETWORKING [WIRELESS]
10616 L:      linux-wireless@vger.kernel.org
10617 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
10618
10619 NETDEVSIM
10620 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
10621 S:      Maintained
10622 F:      drivers/net/netdevsim/*
10623
10624 NETXEN (1/10) GbE SUPPORT
10625 M:      Manish Chopra <manish.chopra@cavium.com>
10626 M:      Rahul Verma <rahul.verma@cavium.com>
10627 M:      Dept-GELinuxNICDev@cavium.com
10628 L:      netdev@vger.kernel.org
10629 S:      Supported
10630 F:      drivers/net/ethernet/qlogic/netxen/
10631
10632 NFC SUBSYSTEM
10633 M:      Samuel Ortiz <sameo@linux.intel.com>
10634 L:      linux-wireless@vger.kernel.org
10635 L:      linux-nfc@lists.01.org (subscribers-only)
10636 S:      Supported
10637 F:      net/nfc/
10638 F:      include/net/nfc/
10639 F:      include/uapi/linux/nfc.h
10640 F:      drivers/nfc/
10641 F:      include/linux/platform_data/nfcmrvl.h
10642 F:      include/linux/platform_data/nxp-nci.h
10643 F:      Documentation/devicetree/bindings/net/nfc/
10644
10645 NFS, SUNRPC, AND LOCKD CLIENTS
10646 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
10647 M:      Anna Schumaker <anna.schumaker@netapp.com>
10648 L:      linux-nfs@vger.kernel.org
10649 W:      http://client.linux-nfs.org
10650 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
10651 S:      Maintained
10652 F:      fs/lockd/
10653 F:      fs/nfs/
10654 F:      fs/nfs_common/
10655 F:      net/sunrpc/
10656 F:      include/linux/lockd/
10657 F:      include/linux/nfs*
10658 F:      include/linux/sunrpc/
10659 F:      include/uapi/linux/nfs*
10660 F:      include/uapi/linux/sunrpc/
10661
10662 NILFS2 FILESYSTEM
10663 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
10664 L:      linux-nilfs@vger.kernel.org
10665 W:      https://nilfs.sourceforge.io/
10666 W:      https://nilfs.osdn.jp/
10667 T:      git git://github.com/konis/nilfs2.git
10668 S:      Supported
10669 F:      Documentation/filesystems/nilfs2.txt
10670 F:      fs/nilfs2/
10671 F:      include/trace/events/nilfs2.h
10672 F:      include/uapi/linux/nilfs2_api.h
10673 F:      include/uapi/linux/nilfs2_ondisk.h
10674
10675 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
10676 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
10677 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
10678 S:      Maintained
10679 F:      Documentation/scsi/NinjaSCSI.txt
10680 F:      drivers/scsi/pcmcia/nsp_*
10681
10682 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
10683 M:      GOTO Masanori <gotom@debian.or.jp>
10684 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
10685 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
10686 S:      Maintained
10687 F:      Documentation/scsi/NinjaSCSI.txt
10688 F:      drivers/scsi/nsp32*
10689
10690 NIOS2 ARCHITECTURE
10691 M:      Ley Foon Tan <lftan@altera.com>
10692 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
10693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
10694 S:      Maintained
10695 F:      arch/nios2/
10696
10697 NOHZ, DYNTICKS SUPPORT
10698 M:      Frederic Weisbecker <fweisbec@gmail.com>
10699 M:      Thomas Gleixner <tglx@linutronix.de>
10700 M:      Ingo Molnar <mingo@kernel.org>
10701 L:      linux-kernel@vger.kernel.org
10702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
10703 S:      Maintained
10704 F:      kernel/time/tick*.*
10705 F:      include/linux/tick.h
10706 F:      include/linux/sched/nohz.h
10707
10708 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
10709 M:      Pavel Machek <pavel@ucw.cz>
10710 M:      Sakari Ailus <sakari.ailus@iki.fi>
10711 L:      linux-media@vger.kernel.org
10712 S:      Maintained
10713 F:      drivers/media/i2c/et8ek8
10714 F:      drivers/media/i2c/ad5820.c
10715
10716 NOKIA N900 POWER SUPPLY DRIVERS
10717 R:      Pali Rohár <pali.rohar@gmail.com>
10718 F:      include/linux/power/bq2415x_charger.h
10719 F:      include/linux/power/bq27xxx_battery.h
10720 F:      include/linux/power/isp1704_charger.h
10721 F:      drivers/power/supply/bq2415x_charger.c
10722 F:      drivers/power/supply/bq27xxx_battery.c
10723 F:      drivers/power/supply/bq27xxx_battery_i2c.c
10724 F:      drivers/power/supply/isp1704_charger.c
10725 F:      drivers/power/supply/rx51_battery.c
10726
10727 NTB AMD DRIVER
10728 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
10729 L:      linux-ntb@googlegroups.com
10730 S:      Supported
10731 F:      drivers/ntb/hw/amd/
10732
10733 NTB DRIVER CORE
10734 M:      Jon Mason <jdmason@kudzu.us>
10735 M:      Dave Jiang <dave.jiang@intel.com>
10736 M:      Allen Hubbe <allenbh@gmail.com>
10737 L:      linux-ntb@googlegroups.com
10738 S:      Supported
10739 W:      https://github.com/jonmason/ntb/wiki
10740 T:      git git://github.com/jonmason/ntb.git
10741 F:      drivers/ntb/
10742 F:      drivers/net/ntb_netdev.c
10743 F:      include/linux/ntb.h
10744 F:      include/linux/ntb_transport.h
10745 F:      tools/testing/selftests/ntb/
10746
10747 NTB IDT DRIVER
10748 M:      Serge Semin <fancer.lancer@gmail.com>
10749 L:      linux-ntb@googlegroups.com
10750 S:      Supported
10751 F:      drivers/ntb/hw/idt/
10752
10753 NTB INTEL DRIVER
10754 M:      Dave Jiang <dave.jiang@intel.com>
10755 L:      linux-ntb@googlegroups.com
10756 S:      Supported
10757 W:      https://github.com/davejiang/linux/wiki
10758 T:      git https://github.com/davejiang/linux.git
10759 F:      drivers/ntb/hw/intel/
10760
10761 NTFS FILESYSTEM
10762 M:      Anton Altaparmakov <anton@tuxera.com>
10763 L:      linux-ntfs-dev@lists.sourceforge.net
10764 W:      http://www.tuxera.com/
10765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
10766 S:      Supported
10767 F:      Documentation/filesystems/ntfs.txt
10768 F:      fs/ntfs/
10769
10770 NUBUS SUBSYSTEM
10771 M:      Finn Thain <fthain@telegraphics.com.au>
10772 L:      linux-m68k@lists.linux-m68k.org
10773 S:      Maintained
10774 F:      arch/*/include/asm/nubus.h
10775 F:      drivers/nubus/
10776 F:      include/linux/nubus.h
10777 F:      include/uapi/linux/nubus.h
10778
10779 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
10780 M:      Antonino Daplas <adaplas@gmail.com>
10781 L:      linux-fbdev@vger.kernel.org
10782 S:      Maintained
10783 F:      drivers/video/fbdev/riva/
10784 F:      drivers/video/fbdev/nvidia/
10785
10786 NVM EXPRESS DRIVER
10787 M:      Keith Busch <keith.busch@intel.com>
10788 M:      Jens Axboe <axboe@fb.com>
10789 M:      Christoph Hellwig <hch@lst.de>
10790 M:      Sagi Grimberg <sagi@grimberg.me>
10791 L:      linux-nvme@lists.infradead.org
10792 T:      git://git.infradead.org/nvme.git
10793 W:      http://git.infradead.org/nvme.git
10794 S:      Supported
10795 F:      drivers/nvme/host/
10796 F:      include/linux/nvme.h
10797 F:      include/uapi/linux/nvme_ioctl.h
10798
10799 NVM EXPRESS FC TRANSPORT DRIVERS
10800 M:      James Smart <james.smart@broadcom.com>
10801 L:      linux-nvme@lists.infradead.org
10802 S:      Supported
10803 F:      include/linux/nvme-fc.h
10804 F:      include/linux/nvme-fc-driver.h
10805 F:      drivers/nvme/host/fc.c
10806 F:      drivers/nvme/target/fc.c
10807 F:      drivers/nvme/target/fcloop.c
10808
10809 NVM EXPRESS TARGET DRIVER
10810 M:      Christoph Hellwig <hch@lst.de>
10811 M:      Sagi Grimberg <sagi@grimberg.me>
10812 L:      linux-nvme@lists.infradead.org
10813 T:      git://git.infradead.org/nvme.git
10814 W:      http://git.infradead.org/nvme.git
10815 S:      Supported
10816 F:      drivers/nvme/target/
10817
10818 NVMEM FRAMEWORK
10819 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
10820 S:      Maintained
10821 F:      drivers/nvmem/
10822 F:      Documentation/devicetree/bindings/nvmem/
10823 F:      Documentation/ABI/stable/sysfs-bus-nvmem
10824 F:      include/linux/nvmem-consumer.h
10825 F:      include/linux/nvmem-provider.h
10826
10827 NXP SGTL5000 DRIVER
10828 M:      Fabio Estevam <fabio.estevam@nxp.com>
10829 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10830 S:      Maintained
10831 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
10832 F:      sound/soc/codecs/sgtl5000*
10833
10834 NXP TDA998X DRM DRIVER
10835 M:      Russell King <linux@armlinux.org.uk>
10836 S:      Maintained
10837 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
10838 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
10839 F:      drivers/gpu/drm/i2c/tda998x_drv.c
10840 F:      include/drm/i2c/tda998x.h
10841 F:      include/dt-bindings/display/tda998x.h
10842 K:      "nxp,tda998x"
10843
10844 NXP TFA9879 DRIVER
10845 M:      Peter Rosin <peda@axentia.se>
10846 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10847 S:      Maintained
10848 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
10849 F:      sound/soc/codecs/tfa9879*
10850
10851 NXP-NCI NFC DRIVER
10852 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
10853 R:      Charles Gorand <charles.gorand@effinnov.com>
10854 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
10855 S:      Supported
10856 F:      drivers/nfc/nxp-nci
10857
10858 OBJAGG
10859 M:      Jiri Pirko <jiri@mellanox.com>
10860 L:      netdev@vger.kernel.org
10861 S:      Supported
10862 F:      lib/objagg.c
10863 F:      lib/test_objagg.c
10864 F:      include/linux/objagg.h
10865
10866 OBJTOOL
10867 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10868 M:      Peter Zijlstra <peterz@infradead.org>
10869 S:      Supported
10870 F:      tools/objtool/
10871
10872 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
10873 M:      Frederic Barrat <fbarrat@linux.ibm.com>
10874 M:      Andrew Donnellan <andrew.donnellan@au1.ibm.com>
10875 L:      linuxppc-dev@lists.ozlabs.org
10876 S:      Supported
10877 F:      arch/powerpc/platforms/powernv/ocxl.c
10878 F:      arch/powerpc/include/asm/pnv-ocxl.h
10879 F:      drivers/misc/ocxl/
10880 F:      include/misc/ocxl*
10881 F:      include/uapi/misc/ocxl.h
10882 F:      Documentation/accelerators/ocxl.rst
10883
10884 OMAP AUDIO SUPPORT
10885 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10886 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
10887 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10888 L:      linux-omap@vger.kernel.org
10889 S:      Maintained
10890 F:      sound/soc/ti/omap*
10891 F:      sound/soc/ti/rx51.c
10892 F:      sound/soc/ti/n810.c
10893 F:      sound/soc/ti/sdma-pcm.*
10894
10895 OMAP CLOCK FRAMEWORK SUPPORT
10896 M:      Paul Walmsley <paul@pwsan.com>
10897 L:      linux-omap@vger.kernel.org
10898 S:      Maintained
10899 F:      arch/arm/*omap*/*clock*
10900
10901 OMAP DEVICE TREE SUPPORT
10902 M:      Benoît Cousson <bcousson@baylibre.com>
10903 M:      Tony Lindgren <tony@atomide.com>
10904 L:      linux-omap@vger.kernel.org
10905 L:      devicetree@vger.kernel.org
10906 S:      Maintained
10907 F:      arch/arm/boot/dts/*omap*
10908 F:      arch/arm/boot/dts/*am3*
10909 F:      arch/arm/boot/dts/*am4*
10910 F:      arch/arm/boot/dts/*am5*
10911 F:      arch/arm/boot/dts/*dra7*
10912
10913 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
10914 L:      linux-omap@vger.kernel.org
10915 L:      linux-fbdev@vger.kernel.org
10916 S:      Orphan
10917 F:      drivers/video/fbdev/omap2/
10918 F:      Documentation/arm/OMAP/DSS
10919
10920 OMAP FRAMEBUFFER SUPPORT
10921 L:      linux-fbdev@vger.kernel.org
10922 L:      linux-omap@vger.kernel.org
10923 S:      Orphan
10924 F:      drivers/video/fbdev/omap/
10925
10926 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
10927 M:      Roger Quadros <rogerq@ti.com>
10928 M:      Tony Lindgren <tony@atomide.com>
10929 L:      linux-omap@vger.kernel.org
10930 S:      Maintained
10931 F:      drivers/memory/omap-gpmc.c
10932 F:      arch/arm/mach-omap2/*gpmc*
10933
10934 OMAP GPIO DRIVER
10935 M:      Grygorii Strashko <grygorii.strashko@ti.com>
10936 M:      Santosh Shilimkar <ssantosh@kernel.org>
10937 M:      Kevin Hilman <khilman@kernel.org>
10938 L:      linux-omap@vger.kernel.org
10939 S:      Maintained
10940 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
10941 F:      drivers/gpio/gpio-omap.c
10942
10943 OMAP HARDWARE SPINLOCK SUPPORT
10944 M:      Ohad Ben-Cohen <ohad@wizery.com>
10945 L:      linux-omap@vger.kernel.org
10946 S:      Maintained
10947 F:      drivers/hwspinlock/omap_hwspinlock.c
10948
10949 OMAP HS MMC SUPPORT
10950 L:      linux-mmc@vger.kernel.org
10951 L:      linux-omap@vger.kernel.org
10952 S:      Orphan
10953 F:      drivers/mmc/host/omap_hsmmc.c
10954
10955 OMAP HWMOD DATA
10956 M:      Paul Walmsley <paul@pwsan.com>
10957 L:      linux-omap@vger.kernel.org
10958 S:      Maintained
10959 F:      arch/arm/mach-omap2/omap_hwmod*data*
10960
10961 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
10962 M:      Benoît Cousson <bcousson@baylibre.com>
10963 L:      linux-omap@vger.kernel.org
10964 S:      Maintained
10965 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
10966
10967 OMAP HWMOD SUPPORT
10968 M:      Benoît Cousson <bcousson@baylibre.com>
10969 M:      Paul Walmsley <paul@pwsan.com>
10970 L:      linux-omap@vger.kernel.org
10971 S:      Maintained
10972 F:      arch/arm/mach-omap2/omap_hwmod.*
10973
10974 OMAP I2C DRIVER
10975 M:      Vignesh R <vigneshr@ti.com>
10976 L:      linux-omap@vger.kernel.org
10977 L:      linux-i2c@vger.kernel.org
10978 S:      Maintained
10979 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
10980 F:      drivers/i2c/busses/i2c-omap.c
10981
10982 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
10983 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10984 L:      linux-media@vger.kernel.org
10985 S:      Maintained
10986 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
10987 F:      drivers/media/platform/omap3isp/
10988 F:      drivers/staging/media/omap4iss/
10989
10990 OMAP MMC SUPPORT
10991 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
10992 L:      linux-omap@vger.kernel.org
10993 S:      Odd Fixes
10994 F:      drivers/mmc/host/omap.c
10995
10996 OMAP POWER MANAGEMENT SUPPORT
10997 M:      Kevin Hilman <khilman@kernel.org>
10998 L:      linux-omap@vger.kernel.org
10999 S:      Maintained
11000 F:      arch/arm/*omap*/*pm*
11001 F:      drivers/cpufreq/omap-cpufreq.c
11002
11003 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
11004 M:      Rajendra Nayak <rnayak@codeaurora.org>
11005 M:      Paul Walmsley <paul@pwsan.com>
11006 L:      linux-omap@vger.kernel.org
11007 S:      Maintained
11008 F:      arch/arm/mach-omap2/prm*
11009
11010 OMAP RANDOM NUMBER GENERATOR SUPPORT
11011 M:      Deepak Saxena <dsaxena@plexity.net>
11012 S:      Maintained
11013 F:      drivers/char/hw_random/omap-rng.c
11014
11015 OMAP USB SUPPORT
11016 L:      linux-usb@vger.kernel.org
11017 L:      linux-omap@vger.kernel.org
11018 S:      Orphan
11019 F:      drivers/usb/*/*omap*
11020 F:      arch/arm/*omap*/usb*
11021
11022 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
11023 M:      Mark Jackson <mpfj@newflow.co.uk>
11024 L:      linux-omap@vger.kernel.org
11025 S:      Maintained
11026 F:      arch/arm/boot/dts/am335x-nano.dts
11027
11028 OMAP1 SUPPORT
11029 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11030 M:      Tony Lindgren <tony@atomide.com>
11031 L:      linux-omap@vger.kernel.org
11032 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11034 S:      Maintained
11035 F:      arch/arm/mach-omap1/
11036 F:      arch/arm/plat-omap/
11037 F:      arch/arm/configs/omap1_defconfig
11038 F:      drivers/i2c/busses/i2c-omap.c
11039 F:      include/linux/platform_data/i2c-omap.h
11040 F:      include/linux/platform_data/ams-delta-fiq.h
11041
11042 OMAP2+ SUPPORT
11043 M:      Tony Lindgren <tony@atomide.com>
11044 L:      linux-omap@vger.kernel.org
11045 W:      http://www.muru.com/linux/omap/
11046 W:      http://linux.omap.com/
11047 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11049 S:      Maintained
11050 F:      arch/arm/mach-omap2/
11051 F:      arch/arm/plat-omap/
11052 F:      arch/arm/configs/omap2plus_defconfig
11053 F:      drivers/i2c/busses/i2c-omap.c
11054 F:      drivers/irqchip/irq-omap-intc.c
11055 F:      drivers/mfd/*omap*.c
11056 F:      drivers/mfd/menelaus.c
11057 F:      drivers/mfd/palmas.c
11058 F:      drivers/mfd/tps65217.c
11059 F:      drivers/mfd/tps65218.c
11060 F:      drivers/mfd/tps65910.c
11061 F:      drivers/mfd/twl-core.[ch]
11062 F:      drivers/mfd/twl4030*.c
11063 F:      drivers/mfd/twl6030*.c
11064 F:      drivers/mfd/twl6040*.c
11065 F:      drivers/regulator/palmas-regulator*.c
11066 F:      drivers/regulator/pbias-regulator.c
11067 F:      drivers/regulator/tps65217-regulator.c
11068 F:      drivers/regulator/tps65218-regulator.c
11069 F:      drivers/regulator/tps65910-regulator.c
11070 F:      drivers/regulator/twl-regulator.c
11071 F:      drivers/regulator/twl6030-regulator.c
11072 F:      include/linux/platform_data/i2c-omap.h
11073
11074 ONION OMEGA2+ BOARD
11075 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
11076 L:      linux-mips@vger.kernel.org
11077 S:      Maintained
11078 F:      arch/mips/boot/dts/ralink/omega2p.dts
11079
11080 OMFS FILESYSTEM
11081 M:      Bob Copeland <me@bobcopeland.com>
11082 L:      linux-karma-devel@lists.sourceforge.net
11083 S:      Maintained
11084 F:      Documentation/filesystems/omfs.txt
11085 F:      fs/omfs/
11086
11087 OMNIKEY CARDMAN 4000 DRIVER
11088 M:      Harald Welte <laforge@gnumonks.org>
11089 S:      Maintained
11090 F:      drivers/char/pcmcia/cm4000_cs.c
11091 F:      include/linux/cm4000_cs.h
11092 F:      include/uapi/linux/cm4000_cs.h
11093
11094 OMNIKEY CARDMAN 4040 DRIVER
11095 M:      Harald Welte <laforge@gnumonks.org>
11096 S:      Maintained
11097 F:      drivers/char/pcmcia/cm4040_cs.*
11098
11099 OMNIVISION OV13858 SENSOR DRIVER
11100 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11101 L:      linux-media@vger.kernel.org
11102 T:      git git://linuxtv.org/media_tree.git
11103 S:      Maintained
11104 F:      drivers/media/i2c/ov13858.c
11105
11106 OMNIVISION OV2680 SENSOR DRIVER
11107 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11108 L:      linux-media@vger.kernel.org
11109 T:      git git://linuxtv.org/media_tree.git
11110 S:      Maintained
11111 F:      drivers/media/i2c/ov2680.c
11112 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
11113
11114 OMNIVISION OV2685 SENSOR DRIVER
11115 M:      Shunqian Zheng <zhengsq@rock-chips.com>
11116 L:      linux-media@vger.kernel.org
11117 T:      git git://linuxtv.org/media_tree.git
11118 S:      Maintained
11119 F:      drivers/media/i2c/ov2685.c
11120
11121 OMNIVISION OV5640 SENSOR DRIVER
11122 M:      Steve Longerbeam <slongerbeam@gmail.com>
11123 L:      linux-media@vger.kernel.org
11124 T:      git git://linuxtv.org/media_tree.git
11125 S:      Maintained
11126 F:      drivers/media/i2c/ov5640.c
11127
11128 OMNIVISION OV5647 SENSOR DRIVER
11129 M:      Luis Oliveira <lolivei@synopsys.com>
11130 L:      linux-media@vger.kernel.org
11131 T:      git git://linuxtv.org/media_tree.git
11132 S:      Maintained
11133 F:      drivers/media/i2c/ov5647.c
11134
11135 OMNIVISION OV5695 SENSOR DRIVER
11136 M:      Shunqian Zheng <zhengsq@rock-chips.com>
11137 L:      linux-media@vger.kernel.org
11138 T:      git git://linuxtv.org/media_tree.git
11139 S:      Maintained
11140 F:      drivers/media/i2c/ov5695.c
11141
11142 OMNIVISION OV7670 SENSOR DRIVER
11143 M:      Jonathan Corbet <corbet@lwn.net>
11144 L:      linux-media@vger.kernel.org
11145 T:      git git://linuxtv.org/media_tree.git
11146 S:      Maintained
11147 F:      drivers/media/i2c/ov7670.c
11148 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
11149
11150 OMNIVISION OV772x SENSOR DRIVER
11151 M:      Jacopo Mondi <jacopo@jmondi.org>
11152 L:      linux-media@vger.kernel.org
11153 T:      git git://linuxtv.org/media_tree.git
11154 S:      Odd fixes
11155 F:      drivers/media/i2c/ov772x.c
11156 F:      include/media/i2c/ov772x.h
11157 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
11158
11159 OMNIVISION OV7740 SENSOR DRIVER
11160 M:      Wenyou Yang <wenyou.yang@microchip.com>
11161 L:      linux-media@vger.kernel.org
11162 T:      git git://linuxtv.org/media_tree.git
11163 S:      Maintained
11164 F:      drivers/media/i2c/ov7740.c
11165 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
11166
11167 OMNIVISION OV9650 SENSOR DRIVER
11168 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11169 R:      Akinobu Mita <akinobu.mita@gmail.com>
11170 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
11171 L:      linux-media@vger.kernel.org
11172 T:      git git://linuxtv.org/media_tree.git
11173 S:      Maintained
11174 F:      drivers/media/i2c/ov9650.c
11175 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
11176
11177 ONENAND FLASH DRIVER
11178 M:      Kyungmin Park <kyungmin.park@samsung.com>
11179 L:      linux-mtd@lists.infradead.org
11180 S:      Maintained
11181 F:      drivers/mtd/nand/onenand/
11182 F:      include/linux/mtd/onenand*.h
11183
11184 ONSTREAM SCSI TAPE DRIVER
11185 M:      Willem Riede <osst@riede.org>
11186 L:      osst-users@lists.sourceforge.net
11187 L:      linux-scsi@vger.kernel.org
11188 S:      Maintained
11189 F:      Documentation/scsi/osst.txt
11190 F:      drivers/scsi/osst.*
11191 F:      drivers/scsi/osst_*.h
11192 F:      drivers/scsi/st.h
11193
11194 OP-TEE DRIVER
11195 M:      Jens Wiklander <jens.wiklander@linaro.org>
11196 S:      Maintained
11197 F:      drivers/tee/optee/
11198
11199 OPA-VNIC DRIVER
11200 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
11201 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
11202 L:      linux-rdma@vger.kernel.org
11203 S:      Supported
11204 F:      drivers/infiniband/ulp/opa_vnic
11205
11206 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
11207 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
11208 M:      Frank Rowand <frowand.list@gmail.com>
11209 L:      devicetree@vger.kernel.org
11210 S:      Maintained
11211 F:      Documentation/devicetree/dynamic-resolution-notes.txt
11212 F:      Documentation/devicetree/overlay-notes.txt
11213 F:      drivers/of/overlay.c
11214 F:      drivers/of/resolver.c
11215 K:      of_overlay_notifier_
11216
11217 OPEN FIRMWARE AND FLATTENED DEVICE TREE
11218 M:      Rob Herring <robh+dt@kernel.org>
11219 M:      Frank Rowand <frowand.list@gmail.com>
11220 L:      devicetree@vger.kernel.org
11221 W:      http://www.devicetree.org/
11222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
11223 S:      Maintained
11224 F:      drivers/of/
11225 F:      include/linux/of*.h
11226 F:      scripts/dtc/
11227 F:      Documentation/ABI/testing/sysfs-firmware-ofw
11228
11229 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
11230 M:      Rob Herring <robh+dt@kernel.org>
11231 M:      Mark Rutland <mark.rutland@arm.com>
11232 L:      devicetree@vger.kernel.org
11233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
11234 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
11235 S:      Maintained
11236 F:      Documentation/devicetree/
11237 F:      arch/*/boot/dts/
11238 F:      include/dt-bindings/
11239
11240 OPENCORES I2C BUS DRIVER
11241 M:      Peter Korsgaard <peter@korsgaard.com>
11242 L:      linux-i2c@vger.kernel.org
11243 S:      Maintained
11244 F:      Documentation/i2c/busses/i2c-ocores
11245 F:      drivers/i2c/busses/i2c-ocores.c
11246
11247 OPENRISC ARCHITECTURE
11248 M:      Jonas Bonn <jonas@southpole.se>
11249 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
11250 M:      Stafford Horne <shorne@gmail.com>
11251 T:      git git://github.com/openrisc/linux.git
11252 L:      openrisc@lists.librecores.org
11253 W:      http://openrisc.io
11254 S:      Maintained
11255 F:      Documentation/devicetree/bindings/openrisc/
11256 F:      Documentation/openrisc/
11257 F:      arch/openrisc/
11258 F:      drivers/irqchip/irq-ompic.c
11259 F:      drivers/irqchip/irq-or1k-*
11260
11261 OPENVSWITCH
11262 M:      Pravin B Shelar <pshelar@ovn.org>
11263 L:      netdev@vger.kernel.org
11264 L:      dev@openvswitch.org
11265 W:      http://openvswitch.org
11266 S:      Maintained
11267 F:      net/openvswitch/
11268 F:      include/uapi/linux/openvswitch.h
11269
11270 OPERATING PERFORMANCE POINTS (OPP)
11271 M:      Viresh Kumar <vireshk@kernel.org>
11272 M:      Nishanth Menon <nm@ti.com>
11273 M:      Stephen Boyd <sboyd@kernel.org>
11274 L:      linux-pm@vger.kernel.org
11275 S:      Maintained
11276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
11277 F:      drivers/opp/
11278 F:      include/linux/pm_opp.h
11279 F:      Documentation/power/opp.txt
11280 F:      Documentation/devicetree/bindings/opp/
11281
11282 OPL4 DRIVER
11283 M:      Clemens Ladisch <clemens@ladisch.de>
11284 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11285 T:      git git://git.alsa-project.org/alsa-kernel.git
11286 S:      Maintained
11287 F:      sound/drivers/opl4/
11288
11289 OPROFILE
11290 M:      Robert Richter <rric@kernel.org>
11291 L:      oprofile-list@lists.sf.net
11292 S:      Maintained
11293 F:      arch/*/include/asm/oprofile*.h
11294 F:      arch/*/oprofile/
11295 F:      drivers/oprofile/
11296 F:      include/linux/oprofile.h
11297
11298 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
11299 M:      Mark Fasheh <mark@fasheh.com>
11300 M:      Joel Becker <jlbec@evilplan.org>
11301 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
11302 W:      http://ocfs2.wiki.kernel.org
11303 S:      Supported
11304 F:      Documentation/filesystems/ocfs2.txt
11305 F:      Documentation/filesystems/dlmfs.txt
11306 F:      fs/ocfs2/
11307
11308 ORANGEFS FILESYSTEM
11309 M:      Mike Marshall <hubcap@omnibond.com>
11310 R:      Martin Brandenburg <martin@omnibond.com>
11311 L:      devel@lists.orangefs.org
11312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
11313 S:      Supported
11314 F:      fs/orangefs/
11315 F:      Documentation/filesystems/orangefs.txt
11316
11317 ORINOCO DRIVER
11318 L:      linux-wireless@vger.kernel.org
11319 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
11320 W:      http://www.nongnu.org/orinoco/
11321 S:      Orphan
11322 F:      drivers/net/wireless/intersil/orinoco/
11323
11324 OSD LIBRARY and FILESYSTEM
11325 M:      Boaz Harrosh <ooo@electrozaur.com>
11326 S:      Maintained
11327 F:      drivers/scsi/osd/
11328 F:      include/scsi/osd_*
11329 F:      fs/exofs/
11330
11331 OV2659 OMNIVISION SENSOR DRIVER
11332 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
11333 L:      linux-media@vger.kernel.org
11334 W:      https://linuxtv.org
11335 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11336 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
11337 S:      Maintained
11338 F:      drivers/media/i2c/ov2659.c
11339 F:      include/media/i2c/ov2659.h
11340
11341 OVERLAY FILESYSTEM
11342 M:      Miklos Szeredi <miklos@szeredi.hu>
11343 L:      linux-unionfs@vger.kernel.org
11344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
11345 S:      Supported
11346 F:      fs/overlayfs/
11347 F:      Documentation/filesystems/overlayfs.txt
11348
11349 P54 WIRELESS DRIVER
11350 M:      Christian Lamparter <chunkeey@googlemail.com>
11351 L:      linux-wireless@vger.kernel.org
11352 W:      http://wireless.kernel.org/en/users/Drivers/p54
11353 S:      Maintained
11354 F:      drivers/net/wireless/intersil/p54/
11355
11356 PA SEMI ETHERNET DRIVER
11357 L:      netdev@vger.kernel.org
11358 S:      Orphan
11359 F:      drivers/net/ethernet/pasemi/*
11360
11361 PA SEMI SMBUS DRIVER
11362 L:      linux-i2c@vger.kernel.org
11363 S:      Orphan
11364 F:      drivers/i2c/busses/i2c-pasemi.c
11365
11366 PADATA PARALLEL EXECUTION MECHANISM
11367 M:      Steffen Klassert <steffen.klassert@secunet.com>
11368 L:      linux-crypto@vger.kernel.org
11369 S:      Maintained
11370 F:      kernel/padata.c
11371 F:      include/linux/padata.h
11372 F:      Documentation/padata.txt
11373
11374 PANASONIC LAPTOP ACPI EXTRAS DRIVER
11375 M:      Harald Welte <laforge@gnumonks.org>
11376 L:      platform-driver-x86@vger.kernel.org
11377 S:      Maintained
11378 F:      drivers/platform/x86/panasonic-laptop.c
11379
11380 PARALLEL LCD/KEYPAD PANEL DRIVER
11381 M:      Willy Tarreau <willy@haproxy.com>
11382 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
11383 S:      Odd Fixes
11384 F:      Documentation/auxdisplay/lcd-panel-cgram.txt
11385 F:      drivers/auxdisplay/panel.c
11386
11387 PARALLEL PORT SUBSYSTEM
11388 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
11389 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
11390 L:      linux-parport@lists.infradead.org (subscribers-only)
11391 S:      Maintained
11392 F:      drivers/parport/
11393 F:      include/linux/parport*.h
11394 F:      drivers/char/ppdev.c
11395 F:      include/uapi/linux/ppdev.h
11396 F:      Documentation/parport*.txt
11397
11398 PARAVIRT_OPS INTERFACE
11399 M:      Juergen Gross <jgross@suse.com>
11400 M:      Alok Kataria <akataria@vmware.com>
11401 L:      virtualization@lists.linux-foundation.org
11402 S:      Supported
11403 F:      Documentation/virtual/paravirt_ops.txt
11404 F:      arch/*/kernel/paravirt*
11405 F:      arch/*/include/asm/paravirt*.h
11406 F:      include/linux/hypervisor.h
11407
11408 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
11409 M:      Tim Waugh <tim@cyberelk.net>
11410 L:      linux-parport@lists.infradead.org (subscribers-only)
11411 S:      Maintained
11412 F:      Documentation/blockdev/paride.txt
11413 F:      drivers/block/paride/
11414
11415 PARISC ARCHITECTURE
11416 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
11417 M:      Helge Deller <deller@gmx.de>
11418 L:      linux-parisc@vger.kernel.org
11419 W:      http://www.parisc-linux.org/
11420 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
11421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
11422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
11423 S:      Maintained
11424 F:      arch/parisc/
11425 F:      Documentation/parisc/
11426 F:      drivers/parisc/
11427 F:      drivers/char/agp/parisc-agp.c
11428 F:      drivers/input/serio/gscps2.c
11429 F:      drivers/parport/parport_gsc.*
11430 F:      drivers/tty/serial/8250/8250_gsc.c
11431 F:      drivers/video/fbdev/sti*
11432 F:      drivers/video/console/sti*
11433 F:      drivers/video/logo/logo_parisc*
11434
11435 PARMAN
11436 M:      Jiri Pirko <jiri@mellanox.com>
11437 L:      netdev@vger.kernel.org
11438 S:      Supported
11439 F:      lib/parman.c
11440 F:      lib/test_parman.c
11441 F:      include/linux/parman.h
11442
11443 PC87360 HARDWARE MONITORING DRIVER
11444 M:      Jim Cromie <jim.cromie@gmail.com>
11445 L:      linux-hwmon@vger.kernel.org
11446 S:      Maintained
11447 F:      Documentation/hwmon/pc87360
11448 F:      drivers/hwmon/pc87360.c
11449
11450 PC8736x GPIO DRIVER
11451 M:      Jim Cromie <jim.cromie@gmail.com>
11452 S:      Maintained
11453 F:      drivers/char/pc8736x_gpio.c
11454
11455 PC87427 HARDWARE MONITORING DRIVER
11456 M:      Jean Delvare <jdelvare@suse.com>
11457 L:      linux-hwmon@vger.kernel.org
11458 S:      Maintained
11459 F:      Documentation/hwmon/pc87427
11460 F:      drivers/hwmon/pc87427.c
11461
11462 PCA9532 LED DRIVER
11463 M:      Riku Voipio <riku.voipio@iki.fi>
11464 S:      Maintained
11465 F:      drivers/leds/leds-pca9532.c
11466 F:      include/linux/leds-pca9532.h
11467
11468 PCA9541 I2C BUS MASTER SELECTOR DRIVER
11469 M:      Guenter Roeck <linux@roeck-us.net>
11470 L:      linux-i2c@vger.kernel.org
11471 S:      Maintained
11472 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
11473
11474 PCDP - PRIMARY CONSOLE AND DEBUG PORT
11475 M:      Khalid Aziz <khalid@gonehiking.org>
11476 S:      Maintained
11477 F:      drivers/firmware/pcdp.*
11478
11479 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
11480 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11481 L:      linux-pci@vger.kernel.org
11482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11483 S:      Maintained
11484 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
11485 F:      drivers/pci/controller/pci-aardvark.c
11486
11487 PCI DRIVER FOR ALTERA PCIE IP
11488 M:      Ley Foon Tan <lftan@altera.com>
11489 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
11490 L:      linux-pci@vger.kernel.org
11491 S:      Supported
11492 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
11493 F:      drivers/pci/controller/pcie-altera.c
11494
11495 PCI DRIVER FOR APPLIEDMICRO XGENE
11496 M:      Tanmay Inamdar <tinamdar@apm.com>
11497 L:      linux-pci@vger.kernel.org
11498 L:      linux-arm-kernel@lists.infradead.org
11499 S:      Maintained
11500 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
11501 F:      drivers/pci/controller/pci-xgene.c
11502
11503 PCI DRIVER FOR ARM VERSATILE PLATFORM
11504 M:      Rob Herring <robh@kernel.org>
11505 L:      linux-pci@vger.kernel.org
11506 L:      linux-arm-kernel@lists.infradead.org
11507 S:      Maintained
11508 F:      Documentation/devicetree/bindings/pci/versatile.txt
11509 F:      drivers/pci/controller/pci-versatile.c
11510
11511 PCI DRIVER FOR ARMADA 8K
11512 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11513 L:      linux-pci@vger.kernel.org
11514 L:      linux-arm-kernel@lists.infradead.org
11515 S:      Maintained
11516 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
11517 F:      drivers/pci/controller/dwc/pcie-armada8k.c
11518
11519 PCI DRIVER FOR CADENCE PCIE IP
11520 M:      Alan Douglas <adouglas@cadence.com>
11521 L:      linux-pci@vger.kernel.org
11522 S:      Maintained
11523 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
11524 F:      drivers/pci/controller/pcie-cadence*
11525
11526 PCI DRIVER FOR FREESCALE LAYERSCAPE
11527 M:      Minghuan Lian <minghuan.Lian@nxp.com>
11528 M:      Mingkai Hu <mingkai.hu@nxp.com>
11529 M:      Roy Zang <roy.zang@nxp.com>
11530 L:      linuxppc-dev@lists.ozlabs.org
11531 L:      linux-pci@vger.kernel.org
11532 L:      linux-arm-kernel@lists.infradead.org
11533 S:      Maintained
11534 F:      drivers/pci/controller/dwc/*layerscape*
11535
11536 PCI DRIVER FOR GENERIC OF HOSTS
11537 M:      Will Deacon <will.deacon@arm.com>
11538 L:      linux-pci@vger.kernel.org
11539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11540 S:      Maintained
11541 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
11542 F:      drivers/pci/controller/pci-host-common.c
11543 F:      drivers/pci/controller/pci-host-generic.c
11544
11545 PCI DRIVER FOR IMX6
11546 M:      Richard Zhu <hongxing.zhu@nxp.com>
11547 M:      Lucas Stach <l.stach@pengutronix.de>
11548 L:      linux-pci@vger.kernel.org
11549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11550 S:      Maintained
11551 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
11552 F:      drivers/pci/controller/dwc/*imx6*
11553
11554 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
11555 M:      Keith Busch <keith.busch@intel.com>
11556 M:      Jonathan Derrick <jonathan.derrick@intel.com>
11557 L:      linux-pci@vger.kernel.org
11558 S:      Supported
11559 F:      drivers/pci/controller/vmd.c
11560
11561 PCI DRIVER FOR MICROSEMI SWITCHTEC
11562 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
11563 M:      Logan Gunthorpe <logang@deltatee.com>
11564 L:      linux-pci@vger.kernel.org
11565 S:      Maintained
11566 F:      Documentation/switchtec.txt
11567 F:      Documentation/ABI/testing/sysfs-class-switchtec
11568 F:      drivers/pci/switch/switchtec*
11569 F:      include/uapi/linux/switchtec_ioctl.h
11570 F:      include/linux/switchtec.h
11571 F:      drivers/ntb/hw/mscc/
11572
11573 PCI DRIVER FOR MOBIVEIL PCIE IP
11574 M:      Subrahmanya Lingappa <l.subrahmanya@mobiveil.co.in>
11575 L:      linux-pci@vger.kernel.org
11576 S:      Supported
11577 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
11578 F:      drivers/pci/controller/pcie-mobiveil.c
11579
11580 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
11581 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11582 M:      Jason Cooper <jason@lakedaemon.net>
11583 L:      linux-pci@vger.kernel.org
11584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11585 S:      Maintained
11586 F:      drivers/pci/controller/*mvebu*
11587
11588 PCI DRIVER FOR NVIDIA TEGRA
11589 M:      Thierry Reding <thierry.reding@gmail.com>
11590 L:      linux-tegra@vger.kernel.org
11591 L:      linux-pci@vger.kernel.org
11592 S:      Supported
11593 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
11594 F:      drivers/pci/controller/pci-tegra.c
11595
11596 PCI DRIVER FOR RENESAS R-CAR
11597 M:      Simon Horman <horms@verge.net.au>
11598 L:      linux-pci@vger.kernel.org
11599 L:      linux-renesas-soc@vger.kernel.org
11600 S:      Maintained
11601 F:      drivers/pci/controller/*rcar*
11602
11603 PCI DRIVER FOR SAMSUNG EXYNOS
11604 M:      Jingoo Han <jingoohan1@gmail.com>
11605 L:      linux-pci@vger.kernel.org
11606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11607 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11608 S:      Maintained
11609 F:      drivers/pci/controller/dwc/pci-exynos.c
11610
11611 PCI DRIVER FOR SYNOPSYS DESIGNWARE
11612 M:      Jingoo Han <jingoohan1@gmail.com>
11613 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
11614 L:      linux-pci@vger.kernel.org
11615 S:      Maintained
11616 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
11617 F:      drivers/pci/controller/dwc/*designware*
11618
11619 PCI DRIVER FOR TI DRA7XX
11620 M:      Kishon Vijay Abraham I <kishon@ti.com>
11621 L:      linux-omap@vger.kernel.org
11622 L:      linux-pci@vger.kernel.org
11623 S:      Supported
11624 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
11625 F:      drivers/pci/controller/dwc/pci-dra7xx.c
11626
11627 PCI DRIVER FOR TI KEYSTONE
11628 M:      Murali Karicheri <m-karicheri2@ti.com>
11629 L:      linux-pci@vger.kernel.org
11630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11631 S:      Maintained
11632 F:      drivers/pci/controller/dwc/pci-keystone.c
11633
11634 PCI ENDPOINT SUBSYSTEM
11635 M:      Kishon Vijay Abraham I <kishon@ti.com>
11636 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
11637 L:      linux-pci@vger.kernel.org
11638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
11639 S:      Supported
11640 F:      drivers/pci/endpoint/
11641 F:      drivers/misc/pci_endpoint_test.c
11642 F:      tools/pci/
11643
11644 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
11645 M:      Russell Currey <ruscur@russell.cc>
11646 M:      Sam Bobroff <sbobroff@linux.ibm.com>
11647 M:      Oliver O'Halloran <oohall@gmail.com>
11648 L:      linuxppc-dev@lists.ozlabs.org
11649 S:      Supported
11650 F:      Documentation/PCI/pci-error-recovery.txt
11651 F:      drivers/pci/pcie/aer.c
11652 F:      drivers/pci/pcie/dpc.c
11653 F:      drivers/pci/pcie/err.c
11654 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
11655 F:      arch/powerpc/kernel/eeh*.c
11656 F:      arch/powerpc/platforms/*/eeh*.c
11657 F:      arch/powerpc/include/*/eeh*.h
11658
11659 PCI ERROR RECOVERY
11660 M:      Linas Vepstas <linasvepstas@gmail.com>
11661 L:      linux-pci@vger.kernel.org
11662 S:      Supported
11663 F:      Documentation/PCI/pci-error-recovery.txt
11664
11665 PCI MSI DRIVER FOR ALTERA MSI IP
11666 M:      Ley Foon Tan <lftan@altera.com>
11667 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
11668 L:      linux-pci@vger.kernel.org
11669 S:      Supported
11670 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
11671 F:      drivers/pci/controller/pcie-altera-msi.c
11672
11673 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
11674 M:      Duc Dang <dhdang@apm.com>
11675 L:      linux-pci@vger.kernel.org
11676 L:      linux-arm-kernel@lists.infradead.org
11677 S:      Maintained
11678 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
11679 F:      drivers/pci/controller/pci-xgene-msi.c
11680
11681 PCI SUBSYSTEM
11682 M:      Bjorn Helgaas <bhelgaas@google.com>
11683 L:      linux-pci@vger.kernel.org
11684 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
11685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
11686 S:      Supported
11687 F:      Documentation/devicetree/bindings/pci/
11688 F:      Documentation/PCI/
11689 F:      drivers/acpi/pci*
11690 F:      drivers/pci/
11691 F:      include/asm-generic/pci*
11692 F:      include/linux/pci*
11693 F:      include/linux/of_pci.h
11694 F:      include/uapi/linux/pci*
11695 F:      lib/pci*
11696 F:      arch/x86/pci/
11697 F:      arch/x86/kernel/quirks.c
11698
11699 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
11700 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
11701 L:      linux-pci@vger.kernel.org
11702 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
11703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
11704 S:      Supported
11705 F:      drivers/pci/controller/
11706
11707 PCIE DRIVER FOR AXIS ARTPEC
11708 M:      Jesper Nilsson <jesper.nilsson@axis.com>
11709 L:      linux-arm-kernel@axis.com
11710 L:      linux-pci@vger.kernel.org
11711 S:      Maintained
11712 F:      Documentation/devicetree/bindings/pci/axis,artpec*
11713 F:      drivers/pci/controller/dwc/*artpec*
11714
11715 PCIE DRIVER FOR CAVIUM THUNDERX
11716 M:      David Daney <david.daney@cavium.com>
11717 L:      linux-pci@vger.kernel.org
11718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11719 S:      Supported
11720 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
11721 F:      drivers/pci/controller/pci-thunder-*
11722
11723 PCIE DRIVER FOR HISILICON
11724 M:      Zhou Wang <wangzhou1@hisilicon.com>
11725 L:      linux-pci@vger.kernel.org
11726 S:      Maintained
11727 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
11728 F:      drivers/pci/controller/dwc/pcie-hisi.c
11729
11730 PCIE DRIVER FOR HISILICON KIRIN
11731 M:      Xiaowei Song <songxiaowei@hisilicon.com>
11732 M:      Binghui Wang <wangbinghui@hisilicon.com>
11733 L:      linux-pci@vger.kernel.org
11734 S:      Maintained
11735 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
11736 F:      drivers/pci/controller/dwc/pcie-kirin.c
11737
11738 PCIE DRIVER FOR HISILICON STB
11739 M:      Jianguo Sun <sunjianguo1@huawei.com>
11740 M:      Shawn Guo <shawn.guo@linaro.org>
11741 L:      linux-pci@vger.kernel.org
11742 S:      Maintained
11743 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
11744 F:      drivers/pci/controller/dwc/pcie-histb.c
11745
11746 PCIE DRIVER FOR MEDIATEK
11747 M:      Ryder Lee <ryder.lee@mediatek.com>
11748 L:      linux-pci@vger.kernel.org
11749 L:      linux-mediatek@lists.infradead.org
11750 S:      Supported
11751 F:      Documentation/devicetree/bindings/pci/mediatek*
11752 F:      drivers/pci/controller/*mediatek*
11753
11754 PCIE DRIVER FOR QUALCOMM MSM
11755 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
11756 L:      linux-pci@vger.kernel.org
11757 L:      linux-arm-msm@vger.kernel.org
11758 S:      Maintained
11759 F:      drivers/pci/controller/dwc/*qcom*
11760
11761 PCIE DRIVER FOR ROCKCHIP
11762 M:      Shawn Lin <shawn.lin@rock-chips.com>
11763 L:      linux-pci@vger.kernel.org
11764 L:      linux-rockchip@lists.infradead.org
11765 S:      Maintained
11766 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
11767 F:      drivers/pci/controller/pcie-rockchip*
11768
11769 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
11770 M:      Linus Walleij <linus.walleij@linaro.org>
11771 L:      linux-pci@vger.kernel.org
11772 S:      Maintained
11773 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
11774 F:      drivers/pci/controller/pci-v3-semi.c
11775
11776 PCIE DRIVER FOR ST SPEAR13XX
11777 M:      Pratyush Anand <pratyush.anand@gmail.com>
11778 L:      linux-pci@vger.kernel.org
11779 S:      Maintained
11780 F:      drivers/pci/controller/dwc/*spear*
11781
11782 PCMCIA SUBSYSTEM
11783 M:      Dominik Brodowski <linux@dominikbrodowski.net>
11784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
11785 S:      Odd Fixes
11786 F:      Documentation/pcmcia/
11787 F:      tools/pcmcia/
11788 F:      drivers/pcmcia/
11789 F:      include/pcmcia/
11790
11791 PCNET32 NETWORK DRIVER
11792 M:      Don Fry <pcnet32@frontier.com>
11793 L:      netdev@vger.kernel.org
11794 S:      Maintained
11795 F:      drivers/net/ethernet/amd/pcnet32.c
11796
11797 PCRYPT PARALLEL CRYPTO ENGINE
11798 M:      Steffen Klassert <steffen.klassert@secunet.com>
11799 L:      linux-crypto@vger.kernel.org
11800 S:      Maintained
11801 F:      crypto/pcrypt.c
11802 F:      include/crypto/pcrypt.h
11803
11804 PEAQ WMI HOTKEYS DRIVER
11805 M:      Hans de Goede <hdegoede@redhat.com>
11806 L:      platform-driver-x86@vger.kernel.org
11807 S:      Maintained
11808 F:      drivers/platform/x86/peaq-wmi.c
11809
11810 PER-CPU MEMORY ALLOCATOR
11811 M:      Dennis Zhou <dennis@kernel.org>
11812 M:      Tejun Heo <tj@kernel.org>
11813 M:      Christoph Lameter <cl@linux.com>
11814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
11815 S:      Maintained
11816 F:      include/linux/percpu*.h
11817 F:      mm/percpu*.c
11818 F:      arch/*/include/asm/percpu.h
11819
11820 PER-TASK DELAY ACCOUNTING
11821 M:      Balbir Singh <bsingharora@gmail.com>
11822 S:      Maintained
11823 F:      include/linux/delayacct.h
11824 F:      kernel/delayacct.c
11825
11826 PERFORMANCE EVENTS SUBSYSTEM
11827 M:      Peter Zijlstra <peterz@infradead.org>
11828 M:      Ingo Molnar <mingo@redhat.com>
11829 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
11830 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
11831 R:      Jiri Olsa <jolsa@redhat.com>
11832 R:      Namhyung Kim <namhyung@kernel.org>
11833 L:      linux-kernel@vger.kernel.org
11834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11835 S:      Supported
11836 F:      kernel/events/*
11837 F:      include/linux/perf_event.h
11838 F:      include/uapi/linux/perf_event.h
11839 F:      arch/*/kernel/perf_event*.c
11840 F:      arch/*/kernel/*/perf_event*.c
11841 F:      arch/*/kernel/*/*/perf_event*.c
11842 F:      arch/*/include/asm/perf_event.h
11843 F:      arch/*/kernel/perf_callchain.c
11844 F:      arch/*/events/*
11845 F:      tools/perf/
11846
11847 PERSONALITY HANDLING
11848 M:      Christoph Hellwig <hch@infradead.org>
11849 L:      linux-abi-devel@lists.sourceforge.net
11850 S:      Maintained
11851 F:      include/linux/personality.h
11852 F:      include/uapi/linux/personality.h
11853
11854 PHOENIX RC FLIGHT CONTROLLER ADAPTER
11855 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11856 L:      linux-input@vger.kernel.org
11857 S:      Maintained
11858 F:      Documentation/input/devices/pxrc.rst
11859 F:      drivers/input/joystick/pxrc.c
11860
11861 PHONET PROTOCOL
11862 M:      Remi Denis-Courmont <courmisch@gmail.com>
11863 S:      Supported
11864 F:      Documentation/networking/phonet.txt
11865 F:      include/linux/phonet.h
11866 F:      include/net/phonet/
11867 F:      include/uapi/linux/phonet.h
11868 F:      net/phonet/
11869
11870 PHRAM MTD DRIVER
11871 M:      Joern Engel <joern@lazybastard.org>
11872 L:      linux-mtd@lists.infradead.org
11873 S:      Maintained
11874 F:      drivers/mtd/devices/phram.c
11875
11876 PICOLCD HID DRIVER
11877 M:      Bruno Prémont <bonbons@linux-vserver.org>
11878 L:      linux-input@vger.kernel.org
11879 S:      Maintained
11880 F:      drivers/hid/hid-picolcd*
11881
11882 PICOXCELL SUPPORT
11883 M:      Jamie Iles <jamie@jamieiles.com>
11884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11885 T:      git git://github.com/jamieiles/linux-2.6-ji.git
11886 S:      Supported
11887 F:      arch/arm/boot/dts/picoxcell*
11888 F:      arch/arm/mach-picoxcell/
11889 F:      drivers/crypto/picoxcell*
11890
11891 PIN CONTROL SUBSYSTEM
11892 M:      Linus Walleij <linus.walleij@linaro.org>
11893 L:      linux-gpio@vger.kernel.org
11894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
11895 S:      Maintained
11896 F:      Documentation/devicetree/bindings/pinctrl/
11897 F:      Documentation/driver-api/pinctl.rst
11898 F:      drivers/pinctrl/
11899 F:      include/linux/pinctrl/
11900
11901 PIN CONTROLLER - ATMEL AT91
11902 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
11903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11904 S:      Maintained
11905 F:      drivers/pinctrl/pinctrl-at91.*
11906
11907 PIN CONTROLLER - ATMEL AT91 PIO4
11908 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11909 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11910 L:      linux-gpio@vger.kernel.org
11911 S:      Supported
11912 F:      drivers/pinctrl/pinctrl-at91-pio4.*
11913
11914 PIN CONTROLLER - FREESCALE
11915 M:      Dong Aisheng <aisheng.dong@nxp.com>
11916 M:      Fabio Estevam <festevam@gmail.com>
11917 M:      Shawn Guo <shawnguo@kernel.org>
11918 M:      Stefan Agner <stefan@agner.ch>
11919 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11920 L:      linux-gpio@vger.kernel.org
11921 S:      Maintained
11922 F:      drivers/pinctrl/freescale/
11923 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
11924
11925 PIN CONTROLLER - INTEL
11926 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
11927 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
11928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
11929 S:      Maintained
11930 F:      drivers/pinctrl/intel/
11931
11932 PIN CONTROLLER - MEDIATEK
11933 M:      Sean Wang <sean.wang@kernel.org>
11934 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11935 S:      Maintained
11936 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
11937 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
11938 F:      drivers/pinctrl/mediatek/
11939
11940 PIN CONTROLLER - QUALCOMM
11941 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
11942 S:      Maintained
11943 L:      linux-arm-msm@vger.kernel.org
11944 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
11945 F:      drivers/pinctrl/qcom/
11946
11947 PIN CONTROLLER - RENESAS
11948 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11949 M:      Geert Uytterhoeven <geert+renesas@glider.be>
11950 L:      linux-renesas-soc@vger.kernel.org
11951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
11952 S:      Maintained
11953 F:      drivers/pinctrl/sh-pfc/
11954
11955 PIN CONTROLLER - SAMSUNG
11956 M:      Tomasz Figa <tomasz.figa@gmail.com>
11957 M:      Krzysztof Kozlowski <krzk@kernel.org>
11958 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
11959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11960 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11961 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
11962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
11963 S:      Maintained
11964 F:      drivers/pinctrl/samsung/
11965 F:      include/dt-bindings/pinctrl/samsung.h
11966 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
11967
11968 PIN CONTROLLER - SINGLE
11969 M:      Tony Lindgren <tony@atomide.com>
11970 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
11971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11972 L:      linux-omap@vger.kernel.org
11973 S:      Maintained
11974 F:      drivers/pinctrl/pinctrl-single.c
11975
11976 PIN CONTROLLER - ST SPEAR
11977 M:      Viresh Kumar <vireshk@kernel.org>
11978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11979 W:      http://www.st.com/spear
11980 S:      Maintained
11981 F:      drivers/pinctrl/spear/
11982
11983 PISTACHIO SOC SUPPORT
11984 M:      James Hartley <james.hartley@sondrel.com>
11985 L:      linux-mips@vger.kernel.org
11986 S:      Odd Fixes
11987 F:      arch/mips/pistachio/
11988 F:      arch/mips/include/asm/mach-pistachio/
11989 F:      arch/mips/boot/dts/img/pistachio*
11990 F:      arch/mips/configs/pistachio*_defconfig
11991
11992 PKTCDVD DRIVER
11993 S:      Orphan
11994 M:      linux-block@vger.kernel.org
11995 F:      drivers/block/pktcdvd.c
11996 F:      include/linux/pktcdvd.h
11997 F:      include/uapi/linux/pktcdvd.h
11998
11999 PKUNITY SOC DRIVERS
12000 M:      Guan Xuetao <gxt@pku.edu.cn>
12001 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
12002 S:      Maintained
12003 T:      git git://github.com/gxt/linux.git
12004 F:      drivers/input/serio/i8042-unicore32io.h
12005 F:      drivers/i2c/busses/i2c-puv3.c
12006 F:      drivers/video/fbdev/fb-puv3.c
12007 F:      drivers/rtc/rtc-puv3.c
12008
12009 PMBUS HARDWARE MONITORING DRIVERS
12010 M:      Guenter Roeck <linux@roeck-us.net>
12011 L:      linux-hwmon@vger.kernel.org
12012 W:      http://hwmon.wiki.kernel.org/
12013 W:      http://www.roeck-us.net/linux/drivers/
12014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
12015 S:      Maintained
12016 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
12017 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
12018 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
12019 F:      Documentation/hwmon/adm1275
12020 F:      Documentation/hwmon/ibm-cffps
12021 F:      Documentation/hwmon/ir35221
12022 F:      Documentation/hwmon/lm25066
12023 F:      Documentation/hwmon/ltc2978
12024 F:      Documentation/hwmon/ltc3815
12025 F:      Documentation/hwmon/max16064
12026 F:      Documentation/hwmon/max20751
12027 F:      Documentation/hwmon/max31785
12028 F:      Documentation/hwmon/max34440
12029 F:      Documentation/hwmon/max8688
12030 F:      Documentation/hwmon/pmbus
12031 F:      Documentation/hwmon/pmbus-core
12032 F:      Documentation/hwmon/tps40422
12033 F:      Documentation/hwmon/ucd9000
12034 F:      Documentation/hwmon/ucd9200
12035 F:      Documentation/hwmon/zl6100
12036 F:      drivers/hwmon/pmbus/
12037 F:      include/linux/pmbus.h
12038
12039 PMC SIERRA MaxRAID DRIVER
12040 L:      linux-scsi@vger.kernel.org
12041 W:      http://www.pmc-sierra.com/
12042 S:      Orphan
12043 F:      drivers/scsi/pmcraid.*
12044
12045 PMC SIERRA PM8001 DRIVER
12046 M:      Jack Wang <jinpu.wang@profitbricks.com>
12047 M:      lindar_liu@usish.com
12048 L:      linux-scsi@vger.kernel.org
12049 S:      Supported
12050 F:      drivers/scsi/pm8001/
12051
12052 PNP SUPPORT
12053 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
12054 S:      Maintained
12055 F:      drivers/pnp/
12056
12057 POSIX CLOCKS and TIMERS
12058 M:      Thomas Gleixner <tglx@linutronix.de>
12059 L:      linux-kernel@vger.kernel.org
12060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
12061 S:      Maintained
12062 F:      fs/timerfd.c
12063 F:      include/linux/timer*
12064 F:      kernel/time/*timer*
12065
12066 POWER MANAGEMENT CORE
12067 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
12068 L:      linux-pm@vger.kernel.org
12069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
12070 B:      https://bugzilla.kernel.org
12071 S:      Supported
12072 F:      drivers/base/power/
12073 F:      include/linux/pm.h
12074 F:      include/linux/pm_*
12075 F:      include/linux/powercap.h
12076 F:      drivers/powercap/
12077 F:      kernel/configs/nopm.config
12078
12079 POWER STATE COORDINATION INTERFACE (PSCI)
12080 M:      Mark Rutland <mark.rutland@arm.com>
12081 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12082 L:      linux-arm-kernel@lists.infradead.org
12083 S:      Maintained
12084 F:      drivers/firmware/psci*.c
12085 F:      include/linux/psci.h
12086 F:      include/uapi/linux/psci.h
12087
12088 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
12089 M:      Sebastian Reichel <sre@kernel.org>
12090 L:      linux-pm@vger.kernel.org
12091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
12092 S:      Maintained
12093 F:      Documentation/ABI/testing/sysfs-class-power
12094 F:      Documentation/devicetree/bindings/power/supply/
12095 F:      include/linux/power_supply.h
12096 F:      drivers/power/supply/
12097
12098 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
12099 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
12100 L:      linuxppc-dev@lists.ozlabs.org
12101 S:      Maintained
12102 F:      drivers/char/powernv-op-panel.c
12103
12104 PPP OVER ATM (RFC 2364)
12105 M:      Mitchell Blank Jr <mitch@sfgoth.com>
12106 S:      Maintained
12107 F:      net/atm/pppoatm.c
12108 F:      include/uapi/linux/atmppp.h
12109
12110 PPP OVER ETHERNET
12111 M:      Michal Ostrowski <mostrows@earthlink.net>
12112 S:      Maintained
12113 F:      drivers/net/ppp/pppoe.c
12114 F:      drivers/net/ppp/pppox.c
12115
12116 PPP OVER L2TP
12117 M:      James Chapman <jchapman@katalix.com>
12118 S:      Maintained
12119 F:      net/l2tp/l2tp_ppp.c
12120 F:      include/linux/if_pppol2tp.h
12121 F:      include/uapi/linux/if_pppol2tp.h
12122
12123 PPP PROTOCOL DRIVERS AND COMPRESSORS
12124 M:      Paul Mackerras <paulus@samba.org>
12125 L:      linux-ppp@vger.kernel.org
12126 S:      Maintained
12127 F:      drivers/net/ppp/ppp_*
12128
12129 PPS SUPPORT
12130 M:      Rodolfo Giometti <giometti@enneenne.com>
12131 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
12132 L:      linuxpps@ml.enneenne.com (subscribers-only)
12133 S:      Maintained
12134 F:      Documentation/pps/
12135 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
12136 F:      Documentation/ABI/testing/sysfs-pps
12137 F:      drivers/pps/
12138 F:      include/linux/pps*.h
12139 F:      include/uapi/linux/pps.h
12140
12141 PPTP DRIVER
12142 M:      Dmitry Kozlov <xeb@mail.ru>
12143 L:      netdev@vger.kernel.org
12144 S:      Maintained
12145 F:      drivers/net/ppp/pptp.c
12146 W:      http://sourceforge.net/projects/accel-pptp
12147
12148 PREEMPTIBLE KERNEL
12149 M:      Robert Love <rml@tech9.net>
12150 L:      kpreempt-tech@lists.sourceforge.net
12151 W:      https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
12152 S:      Supported
12153 F:      Documentation/preempt-locking.txt
12154 F:      include/linux/preempt.h
12155
12156 PRINTK
12157 M:      Petr Mladek <pmladek@suse.com>
12158 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
12159 R:      Steven Rostedt <rostedt@goodmis.org>
12160 S:      Maintained
12161 F:      kernel/printk/
12162 F:      include/linux/printk.h
12163
12164 PRISM54 WIRELESS DRIVER
12165 M:      Luis Chamberlain <mcgrof@kernel.org>
12166 L:      linux-wireless@vger.kernel.org
12167 W:      http://wireless.kernel.org/en/users/Drivers/p54
12168 S:      Obsolete
12169 F:      drivers/net/wireless/intersil/prism54/
12170
12171 PROC FILESYSTEM
12172 R:      Alexey Dobriyan <adobriyan@gmail.com>
12173 L:      linux-kernel@vger.kernel.org
12174 L:      linux-fsdevel@vger.kernel.org
12175 S:      Maintained
12176 F:      fs/proc/
12177 F:      include/linux/proc_fs.h
12178 F:      tools/testing/selftests/proc/
12179 F:      Documentation/filesystems/proc.txt
12180
12181 PROC SYSCTL
12182 M:      Luis Chamberlain <mcgrof@kernel.org>
12183 M:      Kees Cook <keescook@chromium.org>
12184 L:      linux-kernel@vger.kernel.org
12185 L:      linux-fsdevel@vger.kernel.org
12186 S:      Maintained
12187 F:      fs/proc/proc_sysctl.c
12188 F:      include/linux/sysctl.h
12189 F:      kernel/sysctl.c
12190 F:      tools/testing/selftests/sysctl/
12191
12192 PS3 NETWORK SUPPORT
12193 M:      Geoff Levand <geoff@infradead.org>
12194 L:      netdev@vger.kernel.org
12195 L:      linuxppc-dev@lists.ozlabs.org
12196 S:      Maintained
12197 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
12198
12199 PS3 PLATFORM SUPPORT
12200 M:      Geoff Levand <geoff@infradead.org>
12201 L:      linuxppc-dev@lists.ozlabs.org
12202 S:      Maintained
12203 F:      arch/powerpc/boot/ps3*
12204 F:      arch/powerpc/include/asm/lv1call.h
12205 F:      arch/powerpc/include/asm/ps3*.h
12206 F:      arch/powerpc/platforms/ps3/
12207 F:      drivers/*/ps3*
12208 F:      drivers/ps3/
12209 F:      drivers/rtc/rtc-ps3.c
12210 F:      drivers/usb/host/*ps3.c
12211 F:      sound/ppc/snd_ps3*
12212
12213 PS3VRAM DRIVER
12214 M:      Jim Paris <jim@jtan.com>
12215 M:      Geoff Levand <geoff@infradead.org>
12216 L:      linuxppc-dev@lists.ozlabs.org
12217 S:      Maintained
12218 F:      drivers/block/ps3vram.c
12219
12220 PSAMPLE PACKET SAMPLING SUPPORT:
12221 M:      Yotam Gigi <yotam.gi@gmail.com>
12222 S:      Maintained
12223 F:      net/psample
12224 F:      include/net/psample.h
12225 F:      include/uapi/linux/psample.h
12226
12227 PSTORE FILESYSTEM
12228 M:      Kees Cook <keescook@chromium.org>
12229 M:      Anton Vorontsov <anton@enomsg.org>
12230 M:      Colin Cross <ccross@android.com>
12231 M:      Tony Luck <tony.luck@intel.com>
12232 S:      Maintained
12233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
12234 F:      fs/pstore/
12235 F:      include/linux/pstore*
12236 F:      drivers/firmware/efi/efi-pstore.c
12237 F:      drivers/acpi/apei/erst.c
12238 F:      Documentation/admin-guide/ramoops.rst
12239 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
12240 K:      \b(pstore|ramoops)
12241
12242 PTP HARDWARE CLOCK SUPPORT
12243 M:      Richard Cochran <richardcochran@gmail.com>
12244 L:      netdev@vger.kernel.org
12245 S:      Maintained
12246 W:      http://linuxptp.sourceforge.net/
12247 F:      Documentation/ABI/testing/sysfs-ptp
12248 F:      Documentation/ptp/*
12249 F:      drivers/net/phy/dp83640*
12250 F:      drivers/ptp/*
12251 F:      include/linux/ptp_cl*
12252
12253 PTRACE SUPPORT
12254 M:      Oleg Nesterov <oleg@redhat.com>
12255 S:      Maintained
12256 F:      include/asm-generic/syscall.h
12257 F:      include/linux/ptrace.h
12258 F:      include/linux/regset.h
12259 F:      include/linux/tracehook.h
12260 F:      include/uapi/linux/ptrace.h
12261 F:      include/uapi/linux/ptrace.h
12262 F:      include/asm-generic/ptrace.h
12263 F:      kernel/ptrace.c
12264 F:      arch/*/ptrace*.c
12265 F:      arch/*/*/ptrace*.c
12266 F:      arch/*/include/asm/ptrace*.h
12267
12268 PULSE8-CEC DRIVER
12269 M:      Hans Verkuil <hverkuil@xs4all.nl>
12270 L:      linux-media@vger.kernel.org
12271 T:      git git://linuxtv.org/media_tree.git
12272 S:      Maintained
12273 F:      drivers/media/usb/pulse8-cec/*
12274 F:      Documentation/media/cec-drivers/pulse8-cec.rst
12275
12276 PVRUSB2 VIDEO4LINUX DRIVER
12277 M:      Mike Isely <isely@pobox.com>
12278 L:      pvrusb2@isely.net       (subscribers-only)
12279 L:      linux-media@vger.kernel.org
12280 W:      http://www.isely.net/pvrusb2/
12281 T:      git git://linuxtv.org/media_tree.git
12282 S:      Maintained
12283 F:      Documentation/media/v4l-drivers/pvrusb2*
12284 F:      drivers/media/usb/pvrusb2/
12285
12286 PWC WEBCAM DRIVER
12287 M:      Hans Verkuil <hverkuil@xs4all.nl>
12288 L:      linux-media@vger.kernel.org
12289 T:      git git://linuxtv.org/media_tree.git
12290 S:      Odd Fixes
12291 F:      drivers/media/usb/pwc/*
12292
12293 PWM FAN DRIVER
12294 M:      Kamil Debski <kamil@wypas.org>
12295 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12296 L:      linux-hwmon@vger.kernel.org
12297 S:      Supported
12298 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
12299 F:      Documentation/hwmon/pwm-fan
12300 F:      drivers/hwmon/pwm-fan.c
12301
12302 PWM IR Transmitter
12303 M:      Sean Young <sean@mess.org>
12304 L:      linux-media@vger.kernel.org
12305 S:      Maintained
12306 F:      drivers/media/rc/pwm-ir-tx.c
12307
12308 PWM SUBSYSTEM
12309 M:      Thierry Reding <thierry.reding@gmail.com>
12310 L:      linux-pwm@vger.kernel.org
12311 S:      Maintained
12312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
12313 F:      Documentation/pwm.txt
12314 F:      Documentation/devicetree/bindings/pwm/
12315 F:      include/linux/pwm.h
12316 F:      drivers/pwm/
12317 F:      drivers/video/backlight/pwm_bl.c
12318 F:      include/linux/pwm_backlight.h
12319 F:      drivers/gpio/gpio-mvebu.c
12320 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
12321
12322 PXA GPIO DRIVER
12323 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12324 L:      linux-gpio@vger.kernel.org
12325 S:      Maintained
12326 F:      drivers/gpio/gpio-pxa.c
12327
12328 PXA MMCI DRIVER
12329 S:      Orphan
12330
12331 PXA RTC DRIVER
12332 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12333 L:      linux-rtc@vger.kernel.org
12334 S:      Maintained
12335
12336 PXA2xx/PXA3xx SUPPORT
12337 M:      Daniel Mack <daniel@zonque.org>
12338 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
12339 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12341 T:      git git://github.com/hzhuang1/linux.git
12342 T:      git git://github.com/rjarzmik/linux.git
12343 S:      Maintained
12344 F:      arch/arm/boot/dts/pxa*
12345 F:      arch/arm/mach-pxa/
12346 F:      drivers/dma/pxa*
12347 F:      drivers/pcmcia/pxa2xx*
12348 F:      drivers/pinctrl/pxa/
12349 F:      drivers/spi/spi-pxa2xx*
12350 F:      drivers/usb/gadget/udc/pxa2*
12351 F:      include/sound/pxa2xx-lib.h
12352 F:      sound/arm/pxa*
12353 F:      sound/soc/pxa/
12354
12355 QAT DRIVER
12356 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
12357 L:      qat-linux@intel.com
12358 S:      Supported
12359 F:      drivers/crypto/qat/
12360
12361 QCOM AUDIO (ASoC) DRIVERS
12362 M:      Patrick Lai <plai@codeaurora.org>
12363 M:      Banajit Goswami <bgoswami@codeaurora.org>
12364 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12365 S:      Supported
12366 F:      sound/soc/qcom/
12367
12368 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
12369 M:      Gabriel Somlo <somlo@cmu.edu>
12370 M:      "Michael S. Tsirkin" <mst@redhat.com>
12371 L:      qemu-devel@nongnu.org
12372 S:      Maintained
12373 F:      drivers/firmware/qemu_fw_cfg.c
12374 F:      include/uapi/linux/qemu_fw_cfg.h
12375
12376 QIB DRIVER
12377 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12378 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
12379 L:      linux-rdma@vger.kernel.org
12380 S:      Supported
12381 F:      drivers/infiniband/hw/qib/
12382
12383 QLOGIC QL41xxx FCOE DRIVER
12384 M:      QLogic-Storage-Upstream@cavium.com
12385 L:      linux-scsi@vger.kernel.org
12386 S:      Supported
12387 F:      drivers/scsi/qedf/
12388
12389 QLOGIC QL41xxx ISCSI DRIVER
12390 M:      QLogic-Storage-Upstream@cavium.com
12391 L:      linux-scsi@vger.kernel.org
12392 S:      Supported
12393 F:      drivers/scsi/qedi/
12394
12395 QLOGIC QL4xxx ETHERNET DRIVER
12396 M:      Ariel Elior <Ariel.Elior@cavium.com>
12397 M:      everest-linux-l2@cavium.com
12398 L:      netdev@vger.kernel.org
12399 S:      Supported
12400 F:      drivers/net/ethernet/qlogic/qed/
12401 F:      include/linux/qed/
12402 F:      drivers/net/ethernet/qlogic/qede/
12403
12404 QLOGIC QL4xxx RDMA DRIVER
12405 M:      Michal Kalderon <Michal.Kalderon@cavium.com>
12406 M:      Ariel Elior <Ariel.Elior@cavium.com>
12407 L:      linux-rdma@vger.kernel.org
12408 S:      Supported
12409 F:      drivers/infiniband/hw/qedr/
12410 F:      include/uapi/rdma/qedr-abi.h
12411
12412 QLOGIC QLA1280 SCSI DRIVER
12413 M:      Michael Reed <mdr@sgi.com>
12414 L:      linux-scsi@vger.kernel.org
12415 S:      Maintained
12416 F:      drivers/scsi/qla1280.[ch]
12417
12418 QLOGIC QLA2XXX FC-SCSI DRIVER
12419 M:      qla2xxx-upstream@qlogic.com
12420 L:      linux-scsi@vger.kernel.org
12421 S:      Supported
12422 F:      Documentation/scsi/LICENSE.qla2xxx
12423 F:      drivers/scsi/qla2xxx/
12424
12425 QLOGIC QLA3XXX NETWORK DRIVER
12426 M:      Dept-GELinuxNICDev@cavium.com
12427 L:      netdev@vger.kernel.org
12428 S:      Supported
12429 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
12430 F:      drivers/net/ethernet/qlogic/qla3xxx.*
12431
12432 QLOGIC QLA4XXX iSCSI DRIVER
12433 M:      QLogic-Storage-Upstream@qlogic.com
12434 L:      linux-scsi@vger.kernel.org
12435 S:      Supported
12436 F:      Documentation/scsi/LICENSE.qla4xxx
12437 F:      drivers/scsi/qla4xxx/
12438
12439 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
12440 M:      Shahed Shaikh <Shahed.Shaikh@cavium.com>
12441 M:      Manish Chopra <manish.chopra@cavium.com>
12442 M:      Dept-GELinuxNICDev@cavium.com
12443 L:      netdev@vger.kernel.org
12444 S:      Supported
12445 F:      drivers/net/ethernet/qlogic/qlcnic/
12446
12447 QLOGIC QLGE 10Gb ETHERNET DRIVER
12448 M:      Manish Chopra <manish.chopra@cavium.com>
12449 M:      Dept-GELinuxNICDev@cavium.com
12450 L:      netdev@vger.kernel.org
12451 S:      Supported
12452 F:      drivers/net/ethernet/qlogic/qlge/
12453
12454 QM1D1B0004 MEDIA DRIVER
12455 M:      Akihiro Tsukada <tskd08@gmail.com>
12456 L:      linux-media@vger.kernel.org
12457 S:      Odd Fixes
12458 F:      drivers/media/tuners/qm1d1b0004*
12459
12460 QM1D1C0042 MEDIA DRIVER
12461 M:      Akihiro Tsukada <tskd08@gmail.com>
12462 L:      linux-media@vger.kernel.org
12463 S:      Odd Fixes
12464 F:      drivers/media/tuners/qm1d1c0042*
12465
12466 QNX4 FILESYSTEM
12467 M:      Anders Larsen <al@alarsen.net>
12468 W:      http://www.alarsen.net/linux/qnx4fs/
12469 S:      Maintained
12470 F:      fs/qnx4/
12471 F:      include/uapi/linux/qnx4_fs.h
12472 F:      include/uapi/linux/qnxtypes.h
12473
12474 QORIQ DPAA2 FSL-MC BUS DRIVER
12475 M:      Stuart Yoder <stuyoder@gmail.com>
12476 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
12477 L:      linux-kernel@vger.kernel.org
12478 S:      Maintained
12479 F:      drivers/bus/fsl-mc/
12480 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
12481 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
12482
12483 QT1010 MEDIA DRIVER
12484 M:      Antti Palosaari <crope@iki.fi>
12485 L:      linux-media@vger.kernel.org
12486 W:      https://linuxtv.org
12487 W:      http://palosaari.fi/linux/
12488 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12489 T:      git git://linuxtv.org/anttip/media_tree.git
12490 S:      Maintained
12491 F:      drivers/media/tuners/qt1010*
12492
12493 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
12494 M:      Kalle Valo <kvalo@codeaurora.org>
12495 L:      ath10k@lists.infradead.org
12496 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
12497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
12498 S:      Supported
12499 F:      drivers/net/wireless/ath/ath10k/
12500
12501 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
12502 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
12503 L:      linux-wireless@vger.kernel.org
12504 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
12505 S:      Supported
12506 F:      drivers/net/wireless/ath/ath9k/
12507
12508 QUALCOMM CAMERA SUBSYSTEM DRIVER
12509 M:      Todor Tomov <todor.too@gmail.com>
12510 L:      linux-media@vger.kernel.org
12511 S:      Maintained
12512 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
12513 F:      Documentation/media/v4l-drivers/qcom_camss.rst
12514 F:      drivers/media/platform/qcom/camss/
12515
12516 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
12517 M:  Ilia Lin <ilia.lin@gmail.com>
12518 L:  linux-pm@vger.kernel.org
12519 S:  Maintained
12520 F:  Documentation/devicetree/bindings/opp/kryo-cpufreq.txt
12521 F:  drivers/cpufreq/qcom-cpufreq-kryo.c
12522
12523 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
12524 M:      Timur Tabi <timur@kernel.org>
12525 L:      netdev@vger.kernel.org
12526 S:      Maintained
12527 F:      drivers/net/ethernet/qualcomm/emac/
12528
12529 QUALCOMM GENERIC INTERFACE I2C DRIVER
12530 M:      Alok Chauhan <alokc@codeaurora.org>
12531 M:      Karthikeyan Ramasubramanian <kramasub@codeaurora.org>
12532 L:      linux-i2c@vger.kernel.org
12533 L:      linux-arm-msm@vger.kernel.org
12534 S:      Supported
12535 F:      drivers/i2c/busses/i2c-qcom-geni.c
12536
12537 QUALCOMM HEXAGON ARCHITECTURE
12538 M:      Richard Kuo <rkuo@codeaurora.org>
12539 L:      linux-hexagon@vger.kernel.org
12540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
12541 S:      Supported
12542 F:      arch/hexagon/
12543
12544 QUALCOMM HIDMA DRIVER
12545 M:      Sinan Kaya <okaya@kernel.org>
12546 L:      linux-arm-kernel@lists.infradead.org
12547 L:      linux-arm-msm@vger.kernel.org
12548 L:      dmaengine@vger.kernel.org
12549 S:      Supported
12550 F:      drivers/dma/qcom/hidma*
12551
12552 QUALCOMM IOMMU
12553 M:      Rob Clark <robdclark@gmail.com>
12554 L:      iommu@lists.linux-foundation.org
12555 L:      linux-arm-msm@vger.kernel.org
12556 S:      Maintained
12557 F:      drivers/iommu/qcom_iommu.c
12558
12559 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
12560 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
12561 L:      linux-media@vger.kernel.org
12562 L:      linux-arm-msm@vger.kernel.org
12563 T:      git git://linuxtv.org/media_tree.git
12564 S:      Maintained
12565 F:      drivers/media/platform/qcom/venus/
12566
12567 QUALCOMM WCN36XX WIRELESS DRIVER
12568 M:      Kalle Valo <kvalo@codeaurora.org>
12569 L:      wcn36xx@lists.infradead.org
12570 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
12571 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
12572 S:      Supported
12573 F:      drivers/net/wireless/ath/wcn36xx/
12574
12575 QUANTENNA QTNFMAC WIRELESS DRIVER
12576 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
12577 M:      Avinash Patil <avinashp@quantenna.com>
12578 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
12579 L:      linux-wireless@vger.kernel.org
12580 S:      Maintained
12581 F:      drivers/net/wireless/quantenna
12582
12583 RADEON and AMDGPU DRM DRIVERS
12584 M:      Alex Deucher <alexander.deucher@amd.com>
12585 M:      Christian König <christian.koenig@amd.com>
12586 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
12587 L:      amd-gfx@lists.freedesktop.org
12588 T:      git git://people.freedesktop.org/~agd5f/linux
12589 S:      Supported
12590 F:      drivers/gpu/drm/radeon/
12591 F:      include/uapi/drm/radeon_drm.h
12592 F:      drivers/gpu/drm/amd/
12593 F:      include/uapi/drm/amdgpu_drm.h
12594
12595 RADEON FRAMEBUFFER DISPLAY DRIVER
12596 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
12597 L:      linux-fbdev@vger.kernel.org
12598 S:      Maintained
12599 F:      drivers/video/fbdev/aty/radeon*
12600 F:      include/uapi/linux/radeonfb.h
12601
12602 RADIOSHARK RADIO DRIVER
12603 M:      Hans Verkuil <hverkuil@xs4all.nl>
12604 L:      linux-media@vger.kernel.org
12605 T:      git git://linuxtv.org/media_tree.git
12606 S:      Maintained
12607 F:      drivers/media/radio/radio-shark.c
12608
12609 RADIOSHARK2 RADIO DRIVER
12610 M:      Hans Verkuil <hverkuil@xs4all.nl>
12611 L:      linux-media@vger.kernel.org
12612 T:      git git://linuxtv.org/media_tree.git
12613 S:      Maintained
12614 F:      drivers/media/radio/radio-shark2.c
12615 F:      drivers/media/radio/radio-tea5777.c
12616
12617 RADOS BLOCK DEVICE (RBD)
12618 M:      Ilya Dryomov <idryomov@gmail.com>
12619 M:      Sage Weil <sage@redhat.com>
12620 M:      Alex Elder <elder@kernel.org>
12621 L:      ceph-devel@vger.kernel.org
12622 W:      http://ceph.com/
12623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
12624 T:      git git://github.com/ceph/ceph-client.git
12625 S:      Supported
12626 F:      Documentation/ABI/testing/sysfs-bus-rbd
12627 F:      drivers/block/rbd.c
12628 F:      drivers/block/rbd_types.h
12629
12630 RAGE128 FRAMEBUFFER DISPLAY DRIVER
12631 M:      Paul Mackerras <paulus@samba.org>
12632 L:      linux-fbdev@vger.kernel.org
12633 S:      Maintained
12634 F:      drivers/video/fbdev/aty/aty128fb.c
12635
12636 RAINSHADOW-CEC DRIVER
12637 M:      Hans Verkuil <hverkuil@xs4all.nl>
12638 L:      linux-media@vger.kernel.org
12639 T:      git git://linuxtv.org/media_tree.git
12640 S:      Maintained
12641 F:      drivers/media/usb/rainshadow-cec/*
12642
12643 RALINK MIPS ARCHITECTURE
12644 M:      John Crispin <john@phrozen.org>
12645 L:      linux-mips@vger.kernel.org
12646 S:      Maintained
12647 F:      arch/mips/ralink
12648
12649 RALINK RT2X00 WIRELESS LAN DRIVER
12650 P:      rt2x00 project
12651 M:      Stanislaw Gruszka <sgruszka@redhat.com>
12652 M:      Helmut Schaa <helmut.schaa@googlemail.com>
12653 L:      linux-wireless@vger.kernel.org
12654 S:      Maintained
12655 F:      drivers/net/wireless/ralink/rt2x00/
12656
12657 RAMDISK RAM BLOCK DEVICE DRIVER
12658 M:      Jens Axboe <axboe@kernel.dk>
12659 S:      Maintained
12660 F:      Documentation/blockdev/ramdisk.txt
12661 F:      drivers/block/brd.c
12662
12663 RANCHU VIRTUAL BOARD FOR MIPS
12664 M:      Miodrag Dinic <miodrag.dinic@mips.com>
12665 L:      linux-mips@vger.kernel.org
12666 S:      Supported
12667 F:      arch/mips/generic/board-ranchu.c
12668 F:      arch/mips/configs/generic/board-ranchu.config
12669
12670 RANDOM NUMBER DRIVER
12671 M:      "Theodore Ts'o" <tytso@mit.edu>
12672 S:      Maintained
12673 F:      drivers/char/random.c
12674
12675 RAPIDIO SUBSYSTEM
12676 M:      Matt Porter <mporter@kernel.crashing.org>
12677 M:      Alexandre Bounine <alex.bou9@gmail.com>
12678 S:      Maintained
12679 F:      drivers/rapidio/
12680
12681 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
12682 L:      linux-wireless@vger.kernel.org
12683 S:      Orphan
12684 F:      drivers/net/wireless/ray*
12685
12686 RCUTORTURE TEST FRAMEWORK
12687 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
12688 M:      Josh Triplett <josh@joshtriplett.org>
12689 R:      Steven Rostedt <rostedt@goodmis.org>
12690 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12691 R:      Lai Jiangshan <jiangshanlai@gmail.com>
12692 L:      linux-kernel@vger.kernel.org
12693 S:      Supported
12694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12695 F:      tools/testing/selftests/rcutorture
12696
12697 RDC R-321X SoC
12698 M:      Florian Fainelli <florian@openwrt.org>
12699 S:      Maintained
12700
12701 RDC R6040 FAST ETHERNET DRIVER
12702 M:      Florian Fainelli <f.fainelli@gmail.com>
12703 L:      netdev@vger.kernel.org
12704 S:      Maintained
12705 F:      drivers/net/ethernet/rdc/r6040.c
12706
12707 RDMAVT - RDMA verbs software
12708 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12709 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
12710 L:      linux-rdma@vger.kernel.org
12711 S:      Supported
12712 F:      drivers/infiniband/sw/rdmavt
12713
12714 RDS - RELIABLE DATAGRAM SOCKETS
12715 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
12716 L:      netdev@vger.kernel.org
12717 L:      linux-rdma@vger.kernel.org
12718 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
12719 W:      https://oss.oracle.com/projects/rds/
12720 S:      Supported
12721 F:      net/rds/
12722 F:      Documentation/networking/rds.txt
12723
12724 RDT - RESOURCE ALLOCATION
12725 M:      Fenghua Yu <fenghua.yu@intel.com>
12726 M:      Reinette Chatre <reinette.chatre@intel.com>
12727 L:      linux-kernel@vger.kernel.org
12728 S:      Supported
12729 F:      arch/x86/kernel/cpu/resctrl/
12730 F:      arch/x86/include/asm/resctrl_sched.h
12731 F:      Documentation/x86/resctrl*
12732
12733 READ-COPY UPDATE (RCU)
12734 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
12735 M:      Josh Triplett <josh@joshtriplett.org>
12736 R:      Steven Rostedt <rostedt@goodmis.org>
12737 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12738 R:      Lai Jiangshan <jiangshanlai@gmail.com>
12739 R:      Joel Fernandes <joel@joelfernandes.org>
12740 L:      linux-kernel@vger.kernel.org
12741 W:      http://www.rdrop.com/users/paulmck/RCU/
12742 S:      Supported
12743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12744 F:      Documentation/RCU/
12745 X:      Documentation/RCU/torture.txt
12746 F:      include/linux/rcu*
12747 X:      include/linux/srcu*.h
12748 F:      kernel/rcu/
12749 X:      kernel/rcu/srcu*.c
12750
12751 REAL TIME CLOCK (RTC) SUBSYSTEM
12752 M:      Alessandro Zummo <a.zummo@towertech.it>
12753 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12754 L:      linux-rtc@vger.kernel.org
12755 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
12756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
12757 S:      Maintained
12758 F:      Documentation/devicetree/bindings/rtc/
12759 F:      Documentation/rtc.txt
12760 F:      drivers/rtc/
12761 F:      include/linux/rtc.h
12762 F:      include/uapi/linux/rtc.h
12763 F:      include/linux/rtc/
12764 F:      include/linux/platform_data/rtc-*
12765 F:      tools/testing/selftests/rtc/
12766
12767 REALTEK AUDIO CODECS
12768 M:      Bard Liao <bardliao@realtek.com>
12769 M:      Oder Chiou <oder_chiou@realtek.com>
12770 S:      Maintained
12771 F:      sound/soc/codecs/rt*
12772 F:      include/sound/rt*.h
12773
12774 REALTEK RTL83xx SMI DSA ROUTER CHIPS
12775 M:      Linus Walleij <linus.walleij@linaro.org>
12776 S:      Maintained
12777 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
12778 F:      drivers/net/dsa/realtek-smi*
12779 F:      drivers/net/dsa/rtl83*
12780
12781 REGISTER MAP ABSTRACTION
12782 M:      Mark Brown <broonie@kernel.org>
12783 L:      linux-kernel@vger.kernel.org
12784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
12785 S:      Supported
12786 F:      Documentation/devicetree/bindings/regmap/
12787 F:      drivers/base/regmap/
12788 F:      include/linux/regmap.h
12789
12790 REISERFS FILE SYSTEM
12791 L:      reiserfs-devel@vger.kernel.org
12792 S:      Supported
12793 F:      fs/reiserfs/
12794
12795 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
12796 M:      Ohad Ben-Cohen <ohad@wizery.com>
12797 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
12798 L:      linux-remoteproc@vger.kernel.org
12799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
12800 S:      Maintained
12801 F:      Documentation/devicetree/bindings/remoteproc/
12802 F:      Documentation/remoteproc.txt
12803 F:      drivers/remoteproc/
12804 F:      include/linux/remoteproc.h
12805
12806 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
12807 M:      Ohad Ben-Cohen <ohad@wizery.com>
12808 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
12809 L:      linux-remoteproc@vger.kernel.org
12810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
12811 S:      Maintained
12812 F:      drivers/rpmsg/
12813 F:      Documentation/rpmsg.txt
12814 F:      include/linux/rpmsg.h
12815 F:      include/linux/rpmsg/
12816
12817 RENESAS CLOCK DRIVERS
12818 M:      Geert Uytterhoeven <geert+renesas@glider.be>
12819 L:      linux-renesas-soc@vger.kernel.org
12820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
12821 S:      Supported
12822 F:      drivers/clk/renesas/
12823
12824 RENESAS EMEV2 I2C DRIVER
12825 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
12826 S:      Supported
12827 F:      drivers/i2c/busses/i2c-emev2.c
12828
12829 RENESAS ETHERNET DRIVERS
12830 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
12831 L:      netdev@vger.kernel.org
12832 L:      linux-renesas-soc@vger.kernel.org
12833 F:      Documentation/devicetree/bindings/net/renesas,*.txt
12834 F:      Documentation/devicetree/bindings/net/sh_eth.txt
12835 F:      drivers/net/ethernet/renesas/
12836 F:      include/linux/sh_eth.h
12837
12838 RENESAS R-CAR GYROADC DRIVER
12839 M:      Marek Vasut <marek.vasut@gmail.com>
12840 L:      linux-iio@vger.kernel.org
12841 S:      Supported
12842 F:      drivers/iio/adc/rcar_gyro_adc.c
12843
12844 RENESAS R-CAR I2C DRIVERS
12845 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
12846 S:      Supported
12847 F:      drivers/i2c/busses/i2c-rcar.c
12848 F:      drivers/i2c/busses/i2c-sh_mobile.c
12849
12850 RENESAS RIIC DRIVER
12851 M:      Chris Brandt <chris.brandt@renesas.com>
12852 S:      Supported
12853 F:      Documentation/devicetree/bindings/i2c/i2c-riic.txt
12854 F:      drivers/i2c/busses/i2c-riic.c
12855
12856 RENESAS USB PHY DRIVER
12857 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
12858 L:      linux-renesas-soc@vger.kernel.org
12859 S:      Maintained
12860 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
12861
12862 RESET CONTROLLER FRAMEWORK
12863 M:      Philipp Zabel <p.zabel@pengutronix.de>
12864 T:      git git://git.pengutronix.de/git/pza/linux
12865 S:      Maintained
12866 F:      drivers/reset/
12867 F:      Documentation/devicetree/bindings/reset/
12868 F:      include/dt-bindings/reset/
12869 F:      include/linux/reset.h
12870 F:      include/linux/reset-controller.h
12871
12872 RESTARTABLE SEQUENCES SUPPORT
12873 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12874 M:      Peter Zijlstra <peterz@infradead.org>
12875 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
12876 M:      Boqun Feng <boqun.feng@gmail.com>
12877 L:      linux-kernel@vger.kernel.org
12878 S:      Supported
12879 F:      kernel/rseq.c
12880 F:      include/uapi/linux/rseq.h
12881 F:      include/trace/events/rseq.h
12882 F:      tools/testing/selftests/rseq/
12883
12884 RFKILL
12885 M:      Johannes Berg <johannes@sipsolutions.net>
12886 L:      linux-wireless@vger.kernel.org
12887 W:      http://wireless.kernel.org/
12888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
12889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
12890 S:      Maintained
12891 F:      Documentation/rfkill.txt
12892 F:      Documentation/ABI/stable/sysfs-class-rfkill
12893 F:      net/rfkill/
12894 F:      include/linux/rfkill.h
12895 F:      include/uapi/linux/rfkill.h
12896
12897 RHASHTABLE
12898 M:      Thomas Graf <tgraf@suug.ch>
12899 M:      Herbert Xu <herbert@gondor.apana.org.au>
12900 L:      netdev@vger.kernel.org
12901 S:      Maintained
12902 F:      lib/rhashtable.c
12903 F:      lib/test_rhashtable.c
12904 F:      include/linux/rhashtable.h
12905 F:      include/linux/rhashtable-types.h
12906
12907 RICOH R5C592 MEMORYSTICK DRIVER
12908 M:      Maxim Levitsky <maximlevitsky@gmail.com>
12909 S:      Maintained
12910 F:      drivers/memstick/host/r592.*
12911
12912 RICOH SMARTMEDIA/XD DRIVER
12913 M:      Maxim Levitsky <maximlevitsky@gmail.com>
12914 S:      Maintained
12915 F:      drivers/mtd/nand/raw/r852.c
12916 F:      drivers/mtd/nand/raw/r852.h
12917
12918 RISC-V ARCHITECTURE
12919 M:      Palmer Dabbelt <palmer@sifive.com>
12920 M:      Albert Ou <aou@eecs.berkeley.edu>
12921 L:      linux-riscv@lists.infradead.org
12922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git
12923 S:      Supported
12924 F:      arch/riscv/
12925 K:      riscv
12926 N:      riscv
12927
12928 ROCCAT DRIVERS
12929 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
12930 W:      http://sourceforge.net/projects/roccat/
12931 S:      Maintained
12932 F:      drivers/hid/hid-roccat*
12933 F:      include/linux/hid-roccat*
12934 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
12935
12936 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
12937 M:      Jacob chen <jacob2.chen@rock-chips.com>
12938 L:      linux-media@vger.kernel.org
12939 S:      Maintained
12940 F:      drivers/media/platform/rockchip/rga/
12941 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
12942
12943 ROCKCHIP VPU CODEC DRIVER
12944 M:      Ezequiel Garcia <ezequiel@collabora.com>
12945 L:      linux-media@vger.kernel.org
12946 S:      Maintained
12947 F:      drivers/staging/media/platform/rockchip/vpu/
12948 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
12949
12950 ROCKER DRIVER
12951 M:      Jiri Pirko <jiri@resnulli.us>
12952 L:      netdev@vger.kernel.org
12953 S:      Supported
12954 F:      drivers/net/ethernet/rocker/
12955
12956 ROCKETPORT DRIVER
12957 P:      Comtrol Corp.
12958 W:      http://www.comtrol.com
12959 S:      Maintained
12960 F:      Documentation/serial/rocket.txt
12961 F:      drivers/tty/rocket*
12962
12963 ROCKETPORT EXPRESS/INFINITY DRIVER
12964 M:      Kevin Cernekee <cernekee@gmail.com>
12965 L:      linux-serial@vger.kernel.org
12966 S:      Odd Fixes
12967 F:      drivers/tty/serial/rp2.*
12968
12969 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
12970 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
12971 L:      linux-kernel@vger.kernel.org
12972 L:      linux-renesas-soc@vger.kernel.org
12973 S:      Supported
12974 F:      drivers/mfd/bd9571mwv.c
12975 F:      drivers/regulator/bd9571mwv-regulator.c
12976 F:      drivers/gpio/gpio-bd9571mwv.c
12977 F:      include/linux/mfd/bd9571mwv.h
12978 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
12979
12980 ROSE NETWORK LAYER
12981 M:      Ralf Baechle <ralf@linux-mips.org>
12982 L:      linux-hams@vger.kernel.org
12983 W:      http://www.linux-ax25.org/
12984 S:      Maintained
12985 F:      include/net/rose.h
12986 F:      include/uapi/linux/rose.h
12987 F:      net/rose/
12988
12989 RTL2830 MEDIA DRIVER
12990 M:      Antti Palosaari <crope@iki.fi>
12991 L:      linux-media@vger.kernel.org
12992 W:      https://linuxtv.org
12993 W:      http://palosaari.fi/linux/
12994 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12995 T:      git git://linuxtv.org/anttip/media_tree.git
12996 S:      Maintained
12997 F:      drivers/media/dvb-frontends/rtl2830*
12998
12999 RTL2832 MEDIA DRIVER
13000 M:      Antti Palosaari <crope@iki.fi>
13001 L:      linux-media@vger.kernel.org
13002 W:      https://linuxtv.org
13003 W:      http://palosaari.fi/linux/
13004 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13005 T:      git git://linuxtv.org/anttip/media_tree.git
13006 S:      Maintained
13007 F:      drivers/media/dvb-frontends/rtl2832*
13008
13009 RTL2832_SDR MEDIA DRIVER
13010 M:      Antti Palosaari <crope@iki.fi>
13011 L:      linux-media@vger.kernel.org
13012 W:      https://linuxtv.org
13013 W:      http://palosaari.fi/linux/
13014 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13015 T:      git git://linuxtv.org/anttip/media_tree.git
13016 S:      Maintained
13017 F:      drivers/media/dvb-frontends/rtl2832_sdr*
13018
13019 RTL8180 WIRELESS DRIVER
13020 L:      linux-wireless@vger.kernel.org
13021 W:      http://wireless.kernel.org/
13022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13023 S:      Orphan
13024 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
13025
13026 RTL8187 WIRELESS DRIVER
13027 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
13028 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
13029 M:      Larry Finger <Larry.Finger@lwfinger.net>
13030 L:      linux-wireless@vger.kernel.org
13031 W:      http://wireless.kernel.org/
13032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13033 S:      Maintained
13034 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
13035
13036 REALTEK WIRELESS DRIVER (rtlwifi family)
13037 M:      Ping-Ke Shih <pkshih@realtek.com>
13038 L:      linux-wireless@vger.kernel.org
13039 W:      http://wireless.kernel.org/
13040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13041 S:      Maintained
13042 F:      drivers/net/wireless/realtek/rtlwifi/
13043
13044 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
13045 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
13046 L:      linux-wireless@vger.kernel.org
13047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
13048 S:      Maintained
13049 F:      drivers/net/wireless/realtek/rtl8xxxu/
13050
13051 RXRPC SOCKETS (AF_RXRPC)
13052 M:      David Howells <dhowells@redhat.com>
13053 L:      linux-afs@lists.infradead.org
13054 S:      Supported
13055 F:      net/rxrpc/
13056 F:      include/keys/rxrpc-type.h
13057 F:      include/net/af_rxrpc.h
13058 F:      include/trace/events/rxrpc.h
13059 F:      include/uapi/linux/rxrpc.h
13060 F:      Documentation/networking/rxrpc.txt
13061 W:      https://www.infradead.org/~dhowells/kafs/
13062
13063 S3 SAVAGE FRAMEBUFFER DRIVER
13064 M:      Antonino Daplas <adaplas@gmail.com>
13065 L:      linux-fbdev@vger.kernel.org
13066 S:      Maintained
13067 F:      drivers/video/fbdev/savage/
13068
13069 S390
13070 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
13071 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
13072 L:      linux-s390@vger.kernel.org
13073 W:      http://www.ibm.com/developerworks/linux/linux390/
13074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
13075 S:      Supported
13076 F:      arch/s390/
13077 F:      drivers/s390/
13078 F:      Documentation/s390/
13079 F:      Documentation/driver-api/s390-drivers.rst
13080
13081 S390 COMMON I/O LAYER
13082 M:      Sebastian Ott <sebott@linux.ibm.com>
13083 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
13084 L:      linux-s390@vger.kernel.org
13085 W:      http://www.ibm.com/developerworks/linux/linux390/
13086 S:      Supported
13087 F:      drivers/s390/cio/
13088
13089 S390 DASD DRIVER
13090 M:      Stefan Haberland <sth@linux.ibm.com>
13091 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
13092 L:      linux-s390@vger.kernel.org
13093 W:      http://www.ibm.com/developerworks/linux/linux390/
13094 S:      Supported
13095 F:      drivers/s390/block/dasd*
13096 F:      block/partitions/ibm.c
13097
13098 S390 IOMMU (PCI)
13099 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
13100 L:      linux-s390@vger.kernel.org
13101 W:      http://www.ibm.com/developerworks/linux/linux390/
13102 S:      Supported
13103 F:      drivers/iommu/s390-iommu.c
13104
13105 S390 IUCV NETWORK LAYER
13106 M:      Julian Wiedmann <jwi@linux.ibm.com>
13107 M:      Ursula Braun <ubraun@linux.ibm.com>
13108 L:      linux-s390@vger.kernel.org
13109 W:      http://www.ibm.com/developerworks/linux/linux390/
13110 S:      Supported
13111 F:      drivers/s390/net/*iucv*
13112 F:      include/net/iucv/
13113 F:      net/iucv/
13114
13115 S390 NETWORK DRIVERS
13116 M:      Julian Wiedmann <jwi@linux.ibm.com>
13117 M:      Ursula Braun <ubraun@linux.ibm.com>
13118 L:      linux-s390@vger.kernel.org
13119 W:      http://www.ibm.com/developerworks/linux/linux390/
13120 S:      Supported
13121 F:      drivers/s390/net/
13122
13123 S390 PCI SUBSYSTEM
13124 M:      Sebastian Ott <sebott@linux.ibm.com>
13125 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
13126 L:      linux-s390@vger.kernel.org
13127 W:      http://www.ibm.com/developerworks/linux/linux390/
13128 S:      Supported
13129 F:      arch/s390/pci/
13130 F:      drivers/pci/hotplug/s390_pci_hpc.c
13131
13132 S390 VFIO-CCW DRIVER
13133 M:      Cornelia Huck <cohuck@redhat.com>
13134 M:      Halil Pasic <pasic@linux.ibm.com>
13135 L:      linux-s390@vger.kernel.org
13136 L:      kvm@vger.kernel.org
13137 S:      Supported
13138 F:      drivers/s390/cio/vfio_ccw*
13139 F:      Documentation/s390/vfio-ccw.txt
13140 F:      include/uapi/linux/vfio_ccw.h
13141
13142 S390 ZCRYPT DRIVER
13143 M:      Harald Freudenberger <freude@linux.ibm.com>
13144 L:      linux-s390@vger.kernel.org
13145 W:      http://www.ibm.com/developerworks/linux/linux390/
13146 S:      Supported
13147 F:      drivers/s390/crypto/
13148
13149 S390 VFIO AP DRIVER
13150 M:      Tony Krowiak <akrowiak@linux.ibm.com>
13151 M:      Pierre Morel <pmorel@linux.ibm.com>
13152 M:      Halil Pasic <pasic@linux.ibm.com>
13153 L:      linux-s390@vger.kernel.org
13154 W:      http://www.ibm.com/developerworks/linux/linux390/
13155 S:      Supported
13156 F:      drivers/s390/crypto/vfio_ap_drv.c
13157 F:      drivers/s390/crypto/vfio_ap_private.h
13158 F:      drivers/s390/crypto/vfio_ap_ops.c
13159 F:      Documentation/s390/vfio-ap.txt
13160
13161 S390 ZFCP DRIVER
13162 M:      Steffen Maier <maier@linux.ibm.com>
13163 M:      Benjamin Block <bblock@linux.ibm.com>
13164 L:      linux-s390@vger.kernel.org
13165 W:      http://www.ibm.com/developerworks/linux/linux390/
13166 S:      Supported
13167 F:      drivers/s390/scsi/zfcp_*
13168
13169 S3C24XX SD/MMC Driver
13170 M:      Ben Dooks <ben-linux@fluff.org>
13171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13172 S:      Supported
13173 F:      drivers/mmc/host/s3cmci.*
13174
13175 SAA6588 RDS RECEIVER DRIVER
13176 M:      Hans Verkuil <hverkuil@xs4all.nl>
13177 L:      linux-media@vger.kernel.org
13178 T:      git git://linuxtv.org/media_tree.git
13179 W:      https://linuxtv.org
13180 S:      Odd Fixes
13181 F:      drivers/media/i2c/saa6588*
13182
13183 SAA7134 VIDEO4LINUX DRIVER
13184 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13185 L:      linux-media@vger.kernel.org
13186 W:      https://linuxtv.org
13187 T:      git git://linuxtv.org/media_tree.git
13188 S:      Odd fixes
13189 F:      Documentation/media/v4l-drivers/saa7134*
13190 F:      drivers/media/pci/saa7134/
13191
13192 SAA7146 VIDEO4LINUX-2 DRIVER
13193 M:      Hans Verkuil <hverkuil@xs4all.nl>
13194 L:      linux-media@vger.kernel.org
13195 T:      git git://linuxtv.org/media_tree.git
13196 S:      Maintained
13197 F:      drivers/media/common/saa7146/
13198 F:      drivers/media/pci/saa7146/
13199 F:      include/media/drv-intf/saa7146*
13200
13201 SAMSUNG AUDIO (ASoC) DRIVERS
13202 M:      Krzysztof Kozlowski <krzk@kernel.org>
13203 M:      Sangbeom Kim <sbkim73@samsung.com>
13204 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13205 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13206 S:      Supported
13207 F:      sound/soc/samsung/
13208 F:      Documentation/devicetree/bindings/sound/samsung*
13209
13210 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
13211 M:      Krzysztof Kozlowski <krzk@kernel.org>
13212 L:      linux-crypto@vger.kernel.org
13213 L:      linux-samsung-soc@vger.kernel.org
13214 S:      Maintained
13215 F:      drivers/crypto/exynos-rng.c
13216 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.txt
13217
13218 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
13219 M:      Łukasz Stelmach <l.stelmach@samsung.com>
13220 L:      linux-samsung-soc@vger.kernel.org
13221 S:      Maintained
13222 F:      drivers/char/hw_random/exynos-trng.c
13223 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
13224
13225 SAMSUNG FRAMEBUFFER DRIVER
13226 M:      Jingoo Han <jingoohan1@gmail.com>
13227 L:      linux-fbdev@vger.kernel.org
13228 S:      Maintained
13229 F:      drivers/video/fbdev/s3c-fb.c
13230
13231 SAMSUNG LAPTOP DRIVER
13232 M:      Corentin Chary <corentin.chary@gmail.com>
13233 L:      platform-driver-x86@vger.kernel.org
13234 S:      Maintained
13235 F:      drivers/platform/x86/samsung-laptop.c
13236
13237 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
13238 M:      Sangbeom Kim <sbkim73@samsung.com>
13239 M:      Krzysztof Kozlowski <krzk@kernel.org>
13240 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13241 L:      linux-kernel@vger.kernel.org
13242 L:      linux-samsung-soc@vger.kernel.org
13243 S:      Supported
13244 F:      drivers/mfd/sec*.c
13245 F:      drivers/regulator/s2m*.c
13246 F:      drivers/regulator/s5m*.c
13247 F:      drivers/clk/clk-s2mps11.c
13248 F:      drivers/rtc/rtc-s5m.c
13249 F:      include/linux/mfd/samsung/
13250 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
13251 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
13252 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
13253 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
13254
13255 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
13256 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
13257 L:      linux-media@vger.kernel.org
13258 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13259 S:      Maintained
13260 F:      drivers/media/platform/s3c-camif/
13261 F:      include/media/drv-intf/s3c_camif.h
13262
13263 SAMSUNG S3FWRN5 NFC DRIVER
13264 M:      Robert Baldyga <r.baldyga@samsung.com>
13265 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
13266 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
13267 S:      Supported
13268 F:      drivers/nfc/s3fwrn5
13269
13270 SAMSUNG S5C73M3 CAMERA DRIVER
13271 M:      Kyungmin Park <kyungmin.park@samsung.com>
13272 M:      Andrzej Hajda <a.hajda@samsung.com>
13273 L:      linux-media@vger.kernel.org
13274 S:      Supported
13275 F:      drivers/media/i2c/s5c73m3/*
13276
13277 SAMSUNG S5K5BAF CAMERA DRIVER
13278 M:      Kyungmin Park <kyungmin.park@samsung.com>
13279 M:      Andrzej Hajda <a.hajda@samsung.com>
13280 L:      linux-media@vger.kernel.org
13281 S:      Supported
13282 F:      drivers/media/i2c/s5k5baf.c
13283
13284 SAMSUNG S5P Security SubSystem (SSS) DRIVER
13285 M:      Krzysztof Kozlowski <krzk@kernel.org>
13286 M:      Vladimir Zapolskiy <vz@mleia.com>
13287 M:      Kamil Konieczny <k.konieczny@partner.samsung.com>
13288 L:      linux-crypto@vger.kernel.org
13289 L:      linux-samsung-soc@vger.kernel.org
13290 S:      Maintained
13291 F:      drivers/crypto/s5p-sss.c
13292
13293 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
13294 M:      Kyungmin Park <kyungmin.park@samsung.com>
13295 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13296 L:      linux-media@vger.kernel.org
13297 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
13298 S:      Supported
13299 F:      drivers/media/platform/exynos4-is/
13300
13301 SAMSUNG SOC CLOCK DRIVERS
13302 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13303 M:      Tomasz Figa <tomasz.figa@gmail.com>
13304 M:      Chanwoo Choi <cw00.choi@samsung.com>
13305 S:      Supported
13306 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
13308 F:      drivers/clk/samsung/
13309 F:      include/dt-bindings/clock/exynos*.h
13310 F:      Documentation/devicetree/bindings/clock/exynos*.txt
13311
13312 SAMSUNG SPI DRIVERS
13313 M:      Kukjin Kim <kgene@kernel.org>
13314 M:      Krzysztof Kozlowski <krzk@kernel.org>
13315 M:      Andi Shyti <andi@etezian.org>
13316 L:      linux-spi@vger.kernel.org
13317 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13318 S:      Maintained
13319 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
13320 F:      drivers/spi/spi-s3c*
13321 F:      include/linux/platform_data/spi-s3c64xx.h
13322
13323 SAMSUNG SXGBE DRIVERS
13324 M:      Byungho An <bh74.an@samsung.com>
13325 M:      Girish K S <ks.giri@samsung.com>
13326 M:      Vipul Pandya <vipul.pandya@samsung.com>
13327 S:      Supported
13328 L:      netdev@vger.kernel.org
13329 F:      drivers/net/ethernet/samsung/sxgbe/
13330
13331 SAMSUNG THERMAL DRIVER
13332 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13333 L:      linux-pm@vger.kernel.org
13334 L:      linux-samsung-soc@vger.kernel.org
13335 S:      Supported
13336 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
13337 F:      drivers/thermal/samsung/
13338
13339 SAMSUNG USB2 PHY DRIVER
13340 M:      Kamil Debski <kamil@wypas.org>
13341 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13342 L:      linux-kernel@vger.kernel.org
13343 S:      Supported
13344 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
13345 F:      Documentation/phy/samsung-usb2.txt
13346 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
13347 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
13348 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
13349 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
13350 F:      drivers/phy/samsung/phy-samsung-usb2.c
13351 F:      drivers/phy/samsung/phy-samsung-usb2.h
13352
13353 SC1200 WDT DRIVER
13354 M:      Zwane Mwaikambo <zwanem@gmail.com>
13355 S:      Maintained
13356 F:      drivers/watchdog/sc1200wdt.c
13357
13358 SCHEDULER
13359 M:      Ingo Molnar <mingo@redhat.com>
13360 M:      Peter Zijlstra <peterz@infradead.org>
13361 L:      linux-kernel@vger.kernel.org
13362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
13363 S:      Maintained
13364 F:      kernel/sched/
13365 F:      include/linux/sched.h
13366 F:      include/uapi/linux/sched.h
13367 F:      include/linux/wait.h
13368
13369 SCR24X CHIP CARD INTERFACE DRIVER
13370 M:      Lubomir Rintel <lkundrak@v3.sk>
13371 S:      Supported
13372 F:      drivers/char/pcmcia/scr24x_cs.c
13373
13374 SCSI CDROM DRIVER
13375 M:      Jens Axboe <axboe@kernel.dk>
13376 L:      linux-scsi@vger.kernel.org
13377 W:      http://www.kernel.dk
13378 S:      Maintained
13379 F:      drivers/scsi/sr*
13380
13381 SCSI RDMA PROTOCOL (SRP) INITIATOR
13382 M:      Bart Van Assche <bvanassche@acm.org>
13383 L:      linux-rdma@vger.kernel.org
13384 S:      Supported
13385 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13386 F:      drivers/infiniband/ulp/srp/
13387 F:      include/scsi/srp.h
13388
13389 SCSI RDMA PROTOCOL (SRP) TARGET
13390 M:      Bart Van Assche <bvanassche@acm.org>
13391 L:      linux-rdma@vger.kernel.org
13392 L:      target-devel@vger.kernel.org
13393 S:      Supported
13394 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13395 F:      drivers/infiniband/ulp/srpt/
13396
13397 SCSI SG DRIVER
13398 M:      Doug Gilbert <dgilbert@interlog.com>
13399 L:      linux-scsi@vger.kernel.org
13400 W:      http://sg.danny.cz/sg
13401 S:      Maintained
13402 F:      Documentation/scsi/scsi-generic.txt
13403 F:      drivers/scsi/sg.c
13404 F:      include/scsi/sg.h
13405
13406 SCSI SUBSYSTEM
13407 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
13408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
13409 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
13410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
13411 L:      linux-scsi@vger.kernel.org
13412 S:      Maintained
13413 F:      Documentation/devicetree/bindings/scsi/
13414 F:      drivers/scsi/
13415 F:      include/scsi/
13416
13417 SCSI TAPE DRIVER
13418 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
13419 L:      linux-scsi@vger.kernel.org
13420 S:      Maintained
13421 F:      Documentation/scsi/st.txt
13422 F:      drivers/scsi/st.*
13423 F:      drivers/scsi/st_*.h
13424
13425 SCTP PROTOCOL
13426 M:      Vlad Yasevich <vyasevich@gmail.com>
13427 M:      Neil Horman <nhorman@tuxdriver.com>
13428 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
13429 L:      linux-sctp@vger.kernel.org
13430 W:      http://lksctp.sourceforge.net
13431 S:      Maintained
13432 F:      Documentation/networking/sctp.txt
13433 F:      include/linux/sctp.h
13434 F:      include/uapi/linux/sctp.h
13435 F:      include/net/sctp/
13436 F:      net/sctp/
13437
13438 SCx200 CPU SUPPORT
13439 M:      Jim Cromie <jim.cromie@gmail.com>
13440 S:      Odd Fixes
13441 F:      Documentation/i2c/busses/scx200_acb
13442 F:      arch/x86/platform/scx200/
13443 F:      drivers/watchdog/scx200_wdt.c
13444 F:      drivers/i2c/busses/scx200*
13445 F:      drivers/mtd/maps/scx200_docflash.c
13446 F:      include/linux/scx200.h
13447
13448 SCx200 GPIO DRIVER
13449 M:      Jim Cromie <jim.cromie@gmail.com>
13450 S:      Maintained
13451 F:      drivers/char/scx200_gpio.c
13452 F:      include/linux/scx200_gpio.h
13453
13454 SCx200 HRT CLOCKSOURCE DRIVER
13455 M:      Jim Cromie <jim.cromie@gmail.com>
13456 S:      Maintained
13457 F:      drivers/clocksource/scx200_hrt.c
13458
13459 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
13460 M:      Sascha Sommer <saschasommer@freenet.de>
13461 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
13462 S:      Maintained
13463 F:      drivers/mmc/host/sdricoh_cs.c
13464
13465 SECO BOARDS CEC DRIVER
13466 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
13467 S:      Maintained
13468 F:      drivers/media/platform/seco-cec/seco-cec.c
13469 F:      drivers/media/platform/seco-cec/seco-cec.h
13470
13471 SECURE COMPUTING
13472 M:      Kees Cook <keescook@chromium.org>
13473 R:      Andy Lutomirski <luto@amacapital.net>
13474 R:      Will Drewry <wad@chromium.org>
13475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
13476 S:      Supported
13477 F:      kernel/seccomp.c
13478 F:      include/uapi/linux/seccomp.h
13479 F:      include/linux/seccomp.h
13480 F:      tools/testing/selftests/seccomp/*
13481 F:      tools/testing/selftests/kselftest_harness.h
13482 F:      Documentation/userspace-api/seccomp_filter.rst
13483 K:      \bsecure_computing
13484 K:      \bTIF_SECCOMP\b
13485
13486 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
13487 M:      Al Cooper <alcooperx@gmail.com>
13488 L:      linux-mmc@vger.kernel.org
13489 L:      bcm-kernel-feedback-list@broadcom.com
13490 S:      Maintained
13491 F:      drivers/mmc/host/sdhci-brcmstb*
13492
13493 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
13494 M:      Adrian Hunter <adrian.hunter@intel.com>
13495 L:      linux-mmc@vger.kernel.org
13496 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
13497 S:      Maintained
13498 F:      drivers/mmc/host/sdhci*
13499 F:      include/linux/mmc/sdhci*
13500
13501 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
13502 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
13503 M:      Manjunath M B <manjumb@synopsys.com>
13504 L:      linux-mmc@vger.kernel.org
13505 S:      Maintained
13506 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
13507
13508 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
13509 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13510 L:      linux-mmc@vger.kernel.org
13511 S:      Supported
13512 F:      drivers/mmc/host/sdhci-of-at91.c
13513
13514 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
13515 M:      Ben Dooks <ben-linux@fluff.org>
13516 M:      Jaehoon Chung <jh80.chung@samsung.com>
13517 L:      linux-mmc@vger.kernel.org
13518 S:      Maintained
13519 F:      drivers/mmc/host/sdhci-s3c*
13520
13521 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
13522 M:      Viresh Kumar <vireshk@kernel.org>
13523 L:      linux-mmc@vger.kernel.org
13524 S:      Maintained
13525 F:      drivers/mmc/host/sdhci-spear.c
13526
13527 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
13528 M:      Kishon Vijay Abraham I <kishon@ti.com>
13529 L:      linux-mmc@vger.kernel.org
13530 S:      Maintained
13531 F:      drivers/mmc/host/sdhci-omap.c
13532
13533 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
13534 M:      Scott Bauer <scott.bauer@intel.com>
13535 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13536 L:      linux-block@vger.kernel.org
13537 S:      Supported
13538 F:      block/sed*
13539 F:      block/opal_proto.h
13540 F:      include/linux/sed*
13541 F:      include/uapi/linux/sed*
13542
13543 SECURITY CONTACT
13544 M:      Security Officers <security@kernel.org>
13545 S:      Supported
13546
13547 SECURITY SUBSYSTEM
13548 M:      James Morris <jmorris@namei.org>
13549 M:      "Serge E. Hallyn" <serge@hallyn.com>
13550 L:      linux-security-module@vger.kernel.org (suggested Cc:)
13551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
13552 W:      http://kernsec.org/
13553 S:      Supported
13554 F:      security/
13555 X:      security/selinux/
13556
13557 SELINUX SECURITY MODULE
13558 M:      Paul Moore <paul@paul-moore.com>
13559 M:      Stephen Smalley <sds@tycho.nsa.gov>
13560 M:      Eric Paris <eparis@parisplace.org>
13561 L:      selinux@vger.kernel.org
13562 W:      https://selinuxproject.org
13563 W:      https://github.com/SELinuxProject
13564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
13565 S:      Supported
13566 F:      include/linux/selinux*
13567 F:      security/selinux/
13568 F:      scripts/selinux/
13569 F:      Documentation/admin-guide/LSM/SELinux.rst
13570
13571 SENSABLE PHANTOM
13572 M:      Jiri Slaby <jirislaby@gmail.com>
13573 S:      Maintained
13574 F:      drivers/misc/phantom.c
13575 F:      include/uapi/linux/phantom.h
13576
13577 SERIAL DEVICE BUS
13578 M:      Rob Herring <robh@kernel.org>
13579 L:      linux-serial@vger.kernel.org
13580 S:      Maintained
13581 F:      Documentation/devicetree/bindings/serial/slave-device.txt
13582 F:      drivers/tty/serdev/
13583 F:      include/linux/serdev.h
13584
13585 SERIAL DRIVERS
13586 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13587 L:      linux-serial@vger.kernel.org
13588 S:      Maintained
13589 F:      Documentation/devicetree/bindings/serial/
13590 F:      drivers/tty/serial/
13591
13592 SERIAL IR RECEIVER
13593 M:      Sean Young <sean@mess.org>
13594 L:      linux-media@vger.kernel.org
13595 S:      Maintained
13596 F:      drivers/media/rc/serial_ir.c
13597
13598 SFC NETWORK DRIVER
13599 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
13600 M:      Edward Cree <ecree@solarflare.com>
13601 M:      Bert Kenward <bkenward@solarflare.com>
13602 L:      netdev@vger.kernel.org
13603 S:      Supported
13604 F:      drivers/net/ethernet/sfc/
13605
13606 SGI GRU DRIVER
13607 M:      Dimitri Sivanich <sivanich@sgi.com>
13608 S:      Maintained
13609 F:      drivers/misc/sgi-gru/
13610
13611 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
13612 M:      Pat Gefre <pfg@sgi.com>
13613 L:      linux-ia64@vger.kernel.org
13614 S:      Supported
13615 F:      Documentation/ia64/serial.txt
13616 F:      drivers/tty/serial/ioc?_serial.c
13617 F:      include/linux/ioc?.h
13618
13619 SGI XP/XPC/XPNET DRIVER
13620 M:      Cliff Whickman <cpw@sgi.com>
13621 M:      Robin Holt <robinmholt@gmail.com>
13622 S:      Maintained
13623 F:      drivers/misc/sgi-xp/
13624
13625 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
13626 M:      Ursula Braun <ubraun@linux.ibm.com>
13627 L:      linux-s390@vger.kernel.org
13628 W:      http://www.ibm.com/developerworks/linux/linux390/
13629 S:      Supported
13630 F:      net/smc/
13631
13632 SHARP RJ54N1CB0C SENSOR DRIVER
13633 M:      Jacopo Mondi <jacopo@jmondi.org>
13634 L:      linux-media@vger.kernel.org
13635 T:      git git://linuxtv.org/media_tree.git
13636 S:      Odd fixes
13637 F:      drivers/media/i2c/rj54n1cb0c.c
13638 F:      include/media/i2c/rj54n1cb0c.h
13639
13640 SH_VEU V4L2 MEM2MEM DRIVER
13641 L:      linux-media@vger.kernel.org
13642 S:      Orphan
13643 F:      drivers/media/platform/sh_veu.c
13644
13645 SH_VOU V4L2 OUTPUT DRIVER
13646 L:      linux-media@vger.kernel.org
13647 S:      Orphan
13648 F:      drivers/media/platform/sh_vou.c
13649 F:      include/media/drv-intf/sh_vou.h
13650
13651 SI2157 MEDIA DRIVER
13652 M:      Antti Palosaari <crope@iki.fi>
13653 L:      linux-media@vger.kernel.org
13654 W:      https://linuxtv.org
13655 W:      http://palosaari.fi/linux/
13656 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13657 T:      git git://linuxtv.org/anttip/media_tree.git
13658 S:      Maintained
13659 F:      drivers/media/tuners/si2157*
13660
13661 SI2165 MEDIA DRIVER
13662 M:      Matthias Schwarzott <zzam@gentoo.org>
13663 L:      linux-media@vger.kernel.org
13664 W:      https://linuxtv.org
13665 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13666 S:      Maintained
13667 F:      drivers/media/dvb-frontends/si2165*
13668
13669 SI2168 MEDIA DRIVER
13670 M:      Antti Palosaari <crope@iki.fi>
13671 L:      linux-media@vger.kernel.org
13672 W:      https://linuxtv.org
13673 W:      http://palosaari.fi/linux/
13674 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13675 T:      git git://linuxtv.org/anttip/media_tree.git
13676 S:      Maintained
13677 F:      drivers/media/dvb-frontends/si2168*
13678
13679 SI470X FM RADIO RECEIVER I2C DRIVER
13680 M:      Hans Verkuil <hverkuil@xs4all.nl>
13681 L:      linux-media@vger.kernel.org
13682 T:      git git://linuxtv.org/media_tree.git
13683 W:      https://linuxtv.org
13684 S:      Odd Fixes
13685 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
13686
13687 SI470X FM RADIO RECEIVER USB DRIVER
13688 M:      Hans Verkuil <hverkuil@xs4all.nl>
13689 L:      linux-media@vger.kernel.org
13690 T:      git git://linuxtv.org/media_tree.git
13691 W:      https://linuxtv.org
13692 S:      Maintained
13693 F:      drivers/media/radio/si470x/radio-si470x-common.c
13694 F:      drivers/media/radio/si470x/radio-si470x.h
13695 F:      drivers/media/radio/si470x/radio-si470x-usb.c
13696
13697 SI4713 FM RADIO TRANSMITTER I2C DRIVER
13698 M:      Eduardo Valentin <edubezval@gmail.com>
13699 L:      linux-media@vger.kernel.org
13700 T:      git git://linuxtv.org/media_tree.git
13701 W:      https://linuxtv.org
13702 S:      Odd Fixes
13703 F:      drivers/media/radio/si4713/si4713.?
13704
13705 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
13706 M:      Eduardo Valentin <edubezval@gmail.com>
13707 L:      linux-media@vger.kernel.org
13708 T:      git git://linuxtv.org/media_tree.git
13709 W:      https://linuxtv.org
13710 S:      Odd Fixes
13711 F:      drivers/media/radio/si4713/radio-platform-si4713.c
13712
13713 SI4713 FM RADIO TRANSMITTER USB DRIVER
13714 M:      Hans Verkuil <hverkuil@xs4all.nl>
13715 L:      linux-media@vger.kernel.org
13716 T:      git git://linuxtv.org/media_tree.git
13717 W:      https://linuxtv.org
13718 S:      Maintained
13719 F:      drivers/media/radio/si4713/radio-usb-si4713.c
13720
13721 SIANO DVB DRIVER
13722 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13723 L:      linux-media@vger.kernel.org
13724 W:      https://linuxtv.org
13725 T:      git git://linuxtv.org/media_tree.git
13726 S:      Odd fixes
13727 F:      drivers/media/common/siano/
13728 F:      drivers/media/usb/siano/
13729 F:      drivers/media/usb/siano/
13730 F:      drivers/media/mmc/siano/
13731
13732 SIFIVE DRIVERS
13733 M:      Palmer Dabbelt <palmer@sifive.com>
13734 L:      linux-riscv@lists.infradead.org
13735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git
13736 S:      Supported
13737 K:      sifive
13738 N:      sifive
13739
13740 SILEAD TOUCHSCREEN DRIVER
13741 M:      Hans de Goede <hdegoede@redhat.com>
13742 L:      linux-input@vger.kernel.org
13743 L:      platform-driver-x86@vger.kernel.org
13744 S:      Maintained
13745 F:      drivers/input/touchscreen/silead.c
13746 F:      drivers/platform/x86/touchscreen_dmi.c
13747
13748 SILICON MOTION SM712 FRAME BUFFER DRIVER
13749 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13750 M:      Teddy Wang <teddy.wang@siliconmotion.com>
13751 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13752 L:      linux-fbdev@vger.kernel.org
13753 S:      Maintained
13754 F:      drivers/video/fbdev/sm712*
13755 F:      Documentation/fb/sm712fb.txt
13756
13757 SIMPLE FIRMWARE INTERFACE (SFI)
13758 M:      Len Brown <lenb@kernel.org>
13759 L:      sfi-devel@simplefirmware.org
13760 W:      http://simplefirmware.org/
13761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
13762 S:      Supported
13763 F:      arch/x86/platform/sfi/
13764 F:      drivers/sfi/
13765 F:      include/linux/sfi*.h
13766
13767 SIMPLEFB FB DRIVER
13768 M:      Hans de Goede <hdegoede@redhat.com>
13769 L:      linux-fbdev@vger.kernel.org
13770 S:      Maintained
13771 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
13772 F:      drivers/video/fbdev/simplefb.c
13773 F:      include/linux/platform_data/simplefb.h
13774
13775 SIMTEC EB110ATX (Chalice CATS)
13776 P:      Ben Dooks
13777 P:      Vincent Sanders <vince@simtec.co.uk>
13778 M:      Simtec Linux Team <linux@simtec.co.uk>
13779 W:      http://www.simtec.co.uk/products/EB110ATX/
13780 S:      Supported
13781
13782 SIMTEC EB2410ITX (BAST)
13783 P:      Ben Dooks
13784 P:      Vincent Sanders <vince@simtec.co.uk>
13785 M:      Simtec Linux Team <linux@simtec.co.uk>
13786 W:      http://www.simtec.co.uk/products/EB2410ITX/
13787 S:      Supported
13788 F:      arch/arm/mach-s3c24xx/mach-bast.c
13789 F:      arch/arm/mach-s3c24xx/bast-ide.c
13790 F:      arch/arm/mach-s3c24xx/bast-irq.c
13791
13792 SIPHASH PRF ROUTINES
13793 M:      Jason A. Donenfeld <Jason@zx2c4.com>
13794 S:      Maintained
13795 F:      lib/siphash.c
13796 F:      lib/test_siphash.c
13797 F:      include/linux/siphash.h
13798
13799 SIOX
13800 M:      Gavin Schenk <g.schenk@eckelmann.de>
13801 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13802 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13803 S:      Supported
13804 F:      drivers/siox/*
13805 F:      drivers/gpio/gpio-siox.c
13806 F:      include/trace/events/siox.h
13807
13808 SIS 190 ETHERNET DRIVER
13809 M:      Francois Romieu <romieu@fr.zoreil.com>
13810 L:      netdev@vger.kernel.org
13811 S:      Maintained
13812 F:      drivers/net/ethernet/sis/sis190.c
13813
13814 SIS 900/7016 FAST ETHERNET DRIVER
13815 M:      Daniele Venzano <venza@brownhat.org>
13816 W:      http://www.brownhat.org/sis900.html
13817 L:      netdev@vger.kernel.org
13818 S:      Maintained
13819 F:      drivers/net/ethernet/sis/sis900.*
13820
13821 SIS FRAMEBUFFER DRIVER
13822 M:      Thomas Winischhofer <thomas@winischhofer.net>
13823 W:      http://www.winischhofer.net/linuxsisvga.shtml
13824 S:      Maintained
13825 F:      Documentation/fb/sisfb.txt
13826 F:      drivers/video/fbdev/sis/
13827 F:      include/video/sisfb.h
13828
13829 SIS USB2VGA DRIVER
13830 M:      Thomas Winischhofer <thomas@winischhofer.net>
13831 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
13832 S:      Maintained
13833 F:      drivers/usb/misc/sisusbvga/
13834
13835 SLAB ALLOCATOR
13836 M:      Christoph Lameter <cl@linux.com>
13837 M:      Pekka Enberg <penberg@kernel.org>
13838 M:      David Rientjes <rientjes@google.com>
13839 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
13840 M:      Andrew Morton <akpm@linux-foundation.org>
13841 L:      linux-mm@kvack.org
13842 S:      Maintained
13843 F:      include/linux/sl?b*.h
13844 F:      mm/sl?b*
13845
13846 SLEEPABLE READ-COPY UPDATE (SRCU)
13847 M:      Lai Jiangshan <jiangshanlai@gmail.com>
13848 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
13849 M:      Josh Triplett <josh@joshtriplett.org>
13850 R:      Steven Rostedt <rostedt@goodmis.org>
13851 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13852 L:      linux-kernel@vger.kernel.org
13853 W:      http://www.rdrop.com/users/paulmck/RCU/
13854 S:      Supported
13855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
13856 F:      include/linux/srcu*.h
13857 F:      kernel/rcu/srcu*.c
13858
13859 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
13860 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13861 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13862 S:      Maintained
13863 F:      drivers/slimbus/
13864 F:      Documentation/devicetree/bindings/slimbus/
13865 F:      include/linux/slimbus.h
13866
13867 SMACK SECURITY MODULE
13868 M:      Casey Schaufler <casey@schaufler-ca.com>
13869 L:      linux-security-module@vger.kernel.org
13870 W:      http://schaufler-ca.com
13871 T:      git git://github.com/cschaufler/smack-next
13872 S:      Maintained
13873 F:      Documentation/admin-guide/LSM/Smack.rst
13874 F:      security/smack/
13875
13876 SMC91x ETHERNET DRIVER
13877 M:      Nicolas Pitre <nico@fluxnic.net>
13878 S:      Odd Fixes
13879 F:      drivers/net/ethernet/smsc/smc91x.*
13880
13881 SMIA AND SMIA++ IMAGE SENSOR DRIVER
13882 M:      Sakari Ailus <sakari.ailus@iki.fi>
13883 L:      linux-media@vger.kernel.org
13884 S:      Maintained
13885 F:      drivers/media/i2c/smiapp/
13886 F:      include/media/i2c/smiapp.h
13887 F:      drivers/media/i2c/smiapp-pll.c
13888 F:      drivers/media/i2c/smiapp-pll.h
13889 F:      include/uapi/linux/smiapp.h
13890 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
13891
13892 SMM665 HARDWARE MONITOR DRIVER
13893 M:      Guenter Roeck <linux@roeck-us.net>
13894 L:      linux-hwmon@vger.kernel.org
13895 S:      Maintained
13896 F:      Documentation/hwmon/smm665
13897 F:      drivers/hwmon/smm665.c
13898
13899 SMSC EMC2103 HARDWARE MONITOR DRIVER
13900 M:      Steve Glendinning <steve.glendinning@shawell.net>
13901 L:      linux-hwmon@vger.kernel.org
13902 S:      Maintained
13903 F:      Documentation/hwmon/emc2103
13904 F:      drivers/hwmon/emc2103.c
13905
13906 SMSC SCH5627 HARDWARE MONITOR DRIVER
13907 M:      Hans de Goede <hdegoede@redhat.com>
13908 L:      linux-hwmon@vger.kernel.org
13909 S:      Supported
13910 F:      Documentation/hwmon/sch5627
13911 F:      drivers/hwmon/sch5627.c
13912
13913 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
13914 M:      Steve Glendinning <steve.glendinning@shawell.net>
13915 L:      linux-fbdev@vger.kernel.org
13916 S:      Maintained
13917 F:      drivers/video/fbdev/smscufx.c
13918
13919 SMSC47B397 HARDWARE MONITOR DRIVER
13920 M:      Jean Delvare <jdelvare@suse.com>
13921 L:      linux-hwmon@vger.kernel.org
13922 S:      Maintained
13923 F:      Documentation/hwmon/smsc47b397
13924 F:      drivers/hwmon/smsc47b397.c
13925
13926 SMSC911x ETHERNET DRIVER
13927 M:      Steve Glendinning <steve.glendinning@shawell.net>
13928 L:      netdev@vger.kernel.org
13929 S:      Maintained
13930 F:      include/linux/smsc911x.h
13931 F:      drivers/net/ethernet/smsc/smsc911x.*
13932
13933 SMSC9420 PCI ETHERNET DRIVER
13934 M:      Steve Glendinning <steve.glendinning@shawell.net>
13935 L:      netdev@vger.kernel.org
13936 S:      Maintained
13937 F:      drivers/net/ethernet/smsc/smsc9420.*
13938
13939 SOC-CAMERA V4L2 SUBSYSTEM
13940 L:      linux-media@vger.kernel.org
13941 T:      git git://linuxtv.org/media_tree.git
13942 S:      Orphan
13943 F:      include/media/soc*
13944 F:      drivers/media/i2c/soc_camera/
13945 F:      drivers/media/platform/soc_camera/
13946
13947 SOCIONEXT SYNQUACER I2C DRIVER
13948 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
13949 L:      linux-i2c@vger.kernel.org
13950 S:      Maintained
13951 F:      drivers/i2c/busses/i2c-synquacer.c
13952 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
13953
13954 SOCIONEXT UNIPHIER SOUND DRIVER
13955 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13956 S:      Orphan
13957 F:      sound/soc/uniphier/
13958
13959 SOEKRIS NET48XX LED SUPPORT
13960 M:      Chris Boot <bootc@bootc.net>
13961 S:      Maintained
13962 F:      drivers/leds/leds-net48xx.c
13963
13964 SOFT-ROCE DRIVER (rxe)
13965 M:      Moni Shoua <monis@mellanox.com>
13966 L:      linux-rdma@vger.kernel.org
13967 S:      Supported
13968 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
13969 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13970 F:      drivers/infiniband/sw/rxe/
13971 F:      include/uapi/rdma/rdma_user_rxe.h
13972
13973 SOFTLOGIC 6x10 MPEG CODEC
13974 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
13975 M:      Anton Sviridenko <anton@corp.bluecherry.net>
13976 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
13977 M:      Andrey Utkin <andrey_utkin@fastmail.com>
13978 M:      Ismael Luceno <ismael@iodev.co.uk>
13979 L:      linux-media@vger.kernel.org
13980 S:      Supported
13981 F:      drivers/media/pci/solo6x10/
13982
13983 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
13984 M:      James Morse <james.morse@arm.com>
13985 L:      linux-arm-kernel@lists.infradead.org
13986 S:      Maintained
13987 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
13988 F:      drivers/firmware/arm_sdei.c
13989 F:      include/linux/arm_sdei.h
13990 F:      include/uapi/linux/arm_sdei.h
13991
13992 SOFTWARE RAID (Multiple Disks) SUPPORT
13993 M:      Shaohua Li <shli@kernel.org>
13994 L:      linux-raid@vger.kernel.org
13995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
13996 S:      Supported
13997 F:      drivers/md/Makefile
13998 F:      drivers/md/Kconfig
13999 F:      drivers/md/md*
14000 F:      drivers/md/raid*
14001 F:      include/linux/raid/
14002 F:      include/uapi/linux/raid/
14003
14004 SOCIONEXT (SNI) AVE NETWORK DRIVER
14005 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14006 L:      netdev@vger.kernel.org
14007 S:      Maintained
14008 F:      drivers/net/ethernet/socionext/sni_ave.c
14009 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
14010
14011 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
14012 M:      Jassi Brar <jaswinder.singh@linaro.org>
14013 L:      netdev@vger.kernel.org
14014 S:      Maintained
14015 F:      drivers/net/ethernet/socionext/netsec.c
14016 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
14017
14018 SOLIDRUN CLEARFOG SUPPORT
14019 M:      Russell King <linux@armlinux.org.uk>
14020 S:      Maintained
14021 F:      arch/arm/boot/dts/armada-388-clearfog*
14022 F:      arch/arm/boot/dts/armada-38x-solidrun-*
14023
14024 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
14025 M:      Russell King <linux@armlinux.org.uk>
14026 S:      Maintained
14027 F:      arch/arm/boot/dts/imx6*-cubox-i*
14028 F:      arch/arm/boot/dts/imx6*-hummingboard*
14029 F:      arch/arm/boot/dts/imx6*-sr-*
14030
14031 SONIC NETWORK DRIVER
14032 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
14033 L:      netdev@vger.kernel.org
14034 S:      Maintained
14035 F:      drivers/net/ethernet/natsemi/sonic.*
14036
14037 SONICS SILICON BACKPLANE DRIVER (SSB)
14038 M:      Michael Buesch <m@bues.ch>
14039 L:      linux-wireless@vger.kernel.org
14040 S:      Maintained
14041 F:      drivers/ssb/
14042 F:      include/linux/ssb/
14043
14044 SONY IMX214 SENSOR DRIVER
14045 M:      Ricardo Ribalda <ricardo.ribalda@gmail.com>
14046 L:      linux-media@vger.kernel.org
14047 T:      git git://linuxtv.org/media_tree.git
14048 S:      Maintained
14049 F:      drivers/media/i2c/imx214.c
14050 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
14051
14052 SONY IMX258 SENSOR DRIVER
14053 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14054 L:      linux-media@vger.kernel.org
14055 T:      git git://linuxtv.org/media_tree.git
14056 S:      Maintained
14057 F:      drivers/media/i2c/imx258.c
14058
14059 SONY IMX274 SENSOR DRIVER
14060 M:      Leon Luo <leonl@leopardimaging.com>
14061 L:      linux-media@vger.kernel.org
14062 T:      git git://linuxtv.org/media_tree.git
14063 S:      Maintained
14064 F:      drivers/media/i2c/imx274.c
14065 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
14066
14067 SONY IMX319 SENSOR DRIVER
14068 M:      Bingbu Cao <bingbu.cao@intel.com>
14069 L:      linux-media@vger.kernel.org
14070 T:      git git://linuxtv.org/media_tree.git
14071 S:      Maintained
14072 F:      drivers/media/i2c/imx319.c
14073
14074 SONY IMX355 SENSOR DRIVER
14075 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14076 L:      linux-media@vger.kernel.org
14077 T:      git git://linuxtv.org/media_tree.git
14078 S:      Maintained
14079 F:      drivers/media/i2c/imx355.c
14080
14081 SONY MEMORYSTICK CARD SUPPORT
14082 M:      Alex Dubov <oakad@yahoo.com>
14083 W:      http://tifmxx.berlios.de/
14084 S:      Maintained
14085 F:      drivers/memstick/host/tifm_ms.c
14086
14087 SONY MEMORYSTICK STANDARD SUPPORT
14088 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14089 S:      Maintained
14090 F:      drivers/memstick/core/ms_block.*
14091
14092 SONY VAIO CONTROL DEVICE DRIVER
14093 M:      Mattia Dongili <malattia@linux.it>
14094 L:      platform-driver-x86@vger.kernel.org
14095 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
14096 S:      Maintained
14097 F:      Documentation/laptops/sony-laptop.txt
14098 F:      drivers/char/sonypi.c
14099 F:      drivers/platform/x86/sony-laptop.c
14100 F:      include/linux/sony-laptop.h
14101
14102 SOUND
14103 M:      Jaroslav Kysela <perex@perex.cz>
14104 M:      Takashi Iwai <tiwai@suse.com>
14105 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14106 W:      http://www.alsa-project.org/
14107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14108 T:      git git://git.alsa-project.org/alsa-kernel.git
14109 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
14110 S:      Maintained
14111 F:      Documentation/sound/
14112 F:      include/sound/
14113 F:      include/uapi/sound/
14114 F:      sound/
14115
14116 SOUND - COMPRESSED AUDIO
14117 M:      Vinod Koul <vkoul@kernel.org>
14118 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14120 S:      Supported
14121 F:      Documentation/sound/designs/compress-offload.rst
14122 F:      include/sound/compress_driver.h
14123 F:      include/uapi/sound/compress_*
14124 F:      sound/core/compress_offload.c
14125 F:      sound/soc/soc-compress.c
14126
14127 SOUND - DMAENGINE HELPERS
14128 M:      Lars-Peter Clausen <lars@metafoo.de>
14129 S:      Supported
14130 F:      include/sound/dmaengine_pcm.h
14131 F:      sound/core/pcm_dmaengine.c
14132 F:      sound/soc/soc-generic-dmaengine-pcm.c
14133
14134 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
14135 M:      Liam Girdwood <lgirdwood@gmail.com>
14136 M:      Mark Brown <broonie@kernel.org>
14137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
14138 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14139 W:      http://alsa-project.org/main/index.php/ASoC
14140 S:      Supported
14141 F:      Documentation/devicetree/bindings/sound/
14142 F:      Documentation/sound/soc/
14143 F:      sound/soc/
14144 F:      include/dt-bindings/sound/
14145 F:      include/sound/soc*
14146
14147 SOUNDWIRE SUBSYSTEM
14148 M:      Vinod Koul <vkoul@kernel.org>
14149 M:      Sanyog Kale <sanyog.r.kale@intel.com>
14150 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
14151 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14152 S:      Supported
14153 F:      Documentation/driver-api/soundwire/
14154 F:      drivers/soundwire/
14155 F:      include/linux/soundwire/
14156
14157 SP2 MEDIA DRIVER
14158 M:      Olli Salonen <olli.salonen@iki.fi>
14159 L:      linux-media@vger.kernel.org
14160 W:      https://linuxtv.org
14161 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14162 S:      Maintained
14163 F:      drivers/media/dvb-frontends/sp2*
14164
14165 SPARC + UltraSPARC (sparc/sparc64)
14166 M:      "David S. Miller" <davem@davemloft.net>
14167 L:      sparclinux@vger.kernel.org
14168 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
14169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
14170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
14171 S:      Maintained
14172 F:      arch/sparc/
14173 F:      drivers/sbus/
14174
14175 SPARC SERIAL DRIVERS
14176 M:      "David S. Miller" <davem@davemloft.net>
14177 L:      sparclinux@vger.kernel.org
14178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
14179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
14180 S:      Maintained
14181 F:      include/linux/sunserialcore.h
14182 F:      drivers/tty/serial/suncore.c
14183 F:      drivers/tty/serial/sunhv.c
14184 F:      drivers/tty/serial/sunsab.c
14185 F:      drivers/tty/serial/sunsab.h
14186 F:      drivers/tty/serial/sunsu.c
14187 F:      drivers/tty/serial/sunzilog.c
14188 F:      drivers/tty/serial/sunzilog.h
14189 F:      drivers/tty/vcc.c
14190
14191 SPARSE CHECKER
14192 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
14193 L:      linux-sparse@vger.kernel.org
14194 W:      https://sparse.wiki.kernel.org/
14195 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
14196 S:      Maintained
14197 F:      include/linux/compiler.h
14198
14199 SPEAR CLOCK FRAMEWORK SUPPORT
14200 M:      Viresh Kumar <vireshk@kernel.org>
14201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14202 W:      http://www.st.com/spear
14203 S:      Maintained
14204 F:      drivers/clk/spear/
14205
14206 SPEAR PLATFORM SUPPORT
14207 M:      Viresh Kumar <vireshk@kernel.org>
14208 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
14209 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14210 W:      http://www.st.com/spear
14211 S:      Maintained
14212 F:      arch/arm/boot/dts/spear*
14213 F:      arch/arm/mach-spear/
14214
14215 SPI NOR SUBSYSTEM
14216 M:      Marek Vasut <marek.vasut@gmail.com>
14217 L:      linux-mtd@lists.infradead.org
14218 W:      http://www.linux-mtd.infradead.org/
14219 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14220 T:      git git://git.infradead.org/linux-mtd.git spi-nor/fixes
14221 T:      git git://git.infradead.org/linux-mtd.git spi-nor/next
14222 S:      Maintained
14223 F:      drivers/mtd/spi-nor/
14224 F:      include/linux/mtd/spi-nor.h
14225
14226 SPI SUBSYSTEM
14227 M:      Mark Brown <broonie@kernel.org>
14228 L:      linux-spi@vger.kernel.org
14229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
14230 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
14231 S:      Maintained
14232 F:      Documentation/devicetree/bindings/spi/
14233 F:      Documentation/spi/
14234 F:      drivers/spi/
14235 F:      include/linux/spi/
14236 F:      include/uapi/linux/spi/
14237 F:      tools/spi/
14238
14239 SPIDERNET NETWORK DRIVER for CELL
14240 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
14241 L:      netdev@vger.kernel.org
14242 S:      Supported
14243 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
14244 F:      drivers/net/ethernet/toshiba/spider_net*
14245
14246 SPMI SUBSYSTEM
14247 R:      Stephen Boyd <sboyd@kernel.org>
14248 L:      linux-arm-msm@vger.kernel.org
14249 F:      Documentation/devicetree/bindings/spmi/
14250 F:      drivers/spmi/
14251 F:      include/dt-bindings/spmi/spmi.h
14252 F:      include/linux/spmi.h
14253 F:      include/trace/events/spmi.h
14254
14255 SPU FILE SYSTEM
14256 M:      Jeremy Kerr <jk@ozlabs.org>
14257 L:      linuxppc-dev@lists.ozlabs.org
14258 W:      http://www.ibm.com/developerworks/power/cell/
14259 S:      Supported
14260 F:      Documentation/filesystems/spufs.txt
14261 F:      arch/powerpc/platforms/cell/spufs/
14262
14263 SQUASHFS FILE SYSTEM
14264 M:      Phillip Lougher <phillip@squashfs.org.uk>
14265 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
14266 W:      http://squashfs.org.uk
14267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
14268 S:      Maintained
14269 F:      Documentation/filesystems/squashfs.txt
14270 F:      fs/squashfs/
14271
14272 SRM (Alpha) environment access
14273 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
14274 S:      Maintained
14275 F:      arch/alpha/kernel/srm_env.c
14276
14277 ST STM32 I2C/SMBUS DRIVER
14278 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
14279 L:      linux-i2c@vger.kernel.org
14280 S:      Maintained
14281 F:      drivers/i2c/busses/i2c-stm32*
14282
14283 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
14284 M:      Song Qiang <songqiang1304521@gmail.com>
14285 L:      linux-iio@vger.kernel.org
14286 S:      Maintained
14287 F:      drivers/iio/proximity/vl53l0x-i2c.c
14288 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
14289
14290 STABLE BRANCH
14291 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14292 M:      Sasha Levin <sashal@kernel.org>
14293 L:      stable@vger.kernel.org
14294 S:      Supported
14295 F:      Documentation/process/stable-kernel-rules.rst
14296
14297 STAGING - COMEDI
14298 M:      Ian Abbott <abbotti@mev.co.uk>
14299 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
14300 S:      Odd Fixes
14301 F:      drivers/staging/comedi/
14302
14303 STAGING - EROFS FILE SYSTEM
14304 M:      Gao Xiang <gaoxiang25@huawei.com>
14305 M:      Chao Yu <yuchao0@huawei.com>
14306 L:      linux-erofs@lists.ozlabs.org
14307 S:      Maintained
14308 F:      drivers/staging/erofs/
14309
14310 STAGING - INDUSTRIAL IO
14311 M:      Jonathan Cameron <jic23@kernel.org>
14312 L:      linux-iio@vger.kernel.org
14313 S:      Odd Fixes
14314 F:      Documentation/devicetree/bindings/staging/iio/
14315 F:      drivers/staging/iio/
14316
14317 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
14318 M:      Marc Dietrich <marvin24@gmx.de>
14319 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
14320 L:      linux-tegra@vger.kernel.org
14321 S:      Maintained
14322 F:      drivers/staging/nvec/
14323
14324 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
14325 M:      Jens Frederich <jfrederich@gmail.com>
14326 M:      Daniel Drake <dsd@laptop.org>
14327 M:      Jon Nettleton <jon.nettleton@gmail.com>
14328 W:      http://wiki.laptop.org/go/DCON
14329 S:      Maintained
14330 F:      drivers/staging/olpc_dcon/
14331
14332 STAGING - REALTEK RTL8712U DRIVERS
14333 M:      Larry Finger <Larry.Finger@lwfinger.net>
14334 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
14335 S:      Odd Fixes
14336 F:      drivers/staging/rtl8712/
14337
14338 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
14339 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14340 M:      Teddy Wang <teddy.wang@siliconmotion.com>
14341 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14342 L:      linux-fbdev@vger.kernel.org
14343 S:      Maintained
14344 F:      drivers/staging/sm750fb/
14345
14346 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
14347 M:      William Hubbs <w.d.hubbs@gmail.com>
14348 M:      Chris Brannon <chris@the-brannons.com>
14349 M:      Kirk Reiser <kirk@reisers.ca>
14350 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
14351 L:      speakup@linux-speakup.org
14352 W:      http://www.linux-speakup.org/
14353 S:      Odd Fixes
14354 F:      drivers/staging/speakup/
14355
14356 STAGING - VIA VT665X DRIVERS
14357 M:      Forest Bond <forest@alittletooquiet.net>
14358 S:      Odd Fixes
14359 F:      drivers/staging/vt665?/
14360
14361 STAGING - WILC1000 WIFI DRIVER
14362 M:      Aditya Shankar <aditya.shankar@microchip.com>
14363 M:      Ganesh Krishna <ganesh.krishna@microchip.com>
14364 L:      linux-wireless@vger.kernel.org
14365 S:      Supported
14366 F:      drivers/staging/wilc1000/
14367
14368 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
14369 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
14370 S:      Odd Fixes
14371 F:      drivers/staging/xgifb/
14372
14373 STAGING SUBSYSTEM
14374 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
14376 L:      devel@driverdev.osuosl.org
14377 S:      Supported
14378 F:      drivers/staging/
14379
14380 STARFIRE/DURALAN NETWORK DRIVER
14381 M:      Ion Badulescu <ionut@badula.org>
14382 S:      Odd Fixes
14383 F:      drivers/net/ethernet/adaptec/starfire*
14384
14385 STEC S1220 SKD DRIVER
14386 M:      Bart Van Assche <bart.vanassche@wdc.com>
14387 L:      linux-block@vger.kernel.org
14388 S:      Maintained
14389 F:      drivers/block/skd*[ch]
14390
14391 STI AUDIO (ASoC) DRIVERS
14392 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
14393 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14394 S:      Maintained
14395 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
14396 F:      sound/soc/sti/
14397
14398 STI CEC DRIVER
14399 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
14400 S:      Maintained
14401 F:      drivers/media/platform/sti/cec/
14402 F:      Documentation/devicetree/bindings/media/stih-cec.txt
14403
14404 STK1160 USB VIDEO CAPTURE DRIVER
14405 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
14406 L:      linux-media@vger.kernel.org
14407 T:      git git://linuxtv.org/media_tree.git
14408 S:      Maintained
14409 F:      drivers/media/usb/stk1160/
14410
14411 STM32 AUDIO (ASoC) DRIVERS
14412 M:      Olivier Moysan <olivier.moysan@st.com>
14413 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
14414 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14415 S:      Maintained
14416 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
14417 F:      sound/soc/stm/
14418
14419 STM32 TIMER/LPTIMER DRIVERS
14420 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
14421 S:      Maintained
14422 F:      drivers/*/stm32-*timer*
14423 F:      drivers/pwm/pwm-stm32*
14424 F:      include/linux/*/stm32-*tim*
14425 F:      Documentation/ABI/testing/*timer-stm32
14426 F:      Documentation/devicetree/bindings/*/stm32-*timer*
14427 F:      Documentation/devicetree/bindings/pwm/pwm-stm32*
14428
14429 STMMAC ETHERNET DRIVER
14430 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
14431 M:      Alexandre Torgue <alexandre.torgue@st.com>
14432 M:      Jose Abreu <joabreu@synopsys.com>
14433 L:      netdev@vger.kernel.org
14434 W:      http://www.stlinux.com
14435 S:      Supported
14436 F:      drivers/net/ethernet/stmicro/stmmac/
14437
14438 SUN3/3X
14439 M:      Sam Creasey <sammy@sammy.net>
14440 W:      http://sammy.net/sun3/
14441 S:      Maintained
14442 F:      arch/m68k/kernel/*sun3*
14443 F:      arch/m68k/sun3*/
14444 F:      arch/m68k/include/asm/sun3*
14445 F:      drivers/net/ethernet/i825xx/sun3*
14446
14447 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
14448 M:      Hans de Goede <hdegoede@redhat.com>
14449 L:      linux-input@vger.kernel.org
14450 S:      Maintained
14451 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
14452 F:      drivers/input/keyboard/sun4i-lradc-keys.c
14453
14454 SUNDANCE NETWORK DRIVER
14455 M:      Denis Kirjanov <kda@linux-powerpc.org>
14456 L:      netdev@vger.kernel.org
14457 S:      Maintained
14458 F:      drivers/net/ethernet/dlink/sundance.c
14459
14460 SUPERH
14461 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
14462 M:      Rich Felker <dalias@libc.org>
14463 L:      linux-sh@vger.kernel.org
14464 Q:      http://patchwork.kernel.org/project/linux-sh/list/
14465 S:      Maintained
14466 F:      Documentation/sh/
14467 F:      arch/sh/
14468 F:      drivers/sh/
14469
14470 SUSPEND TO RAM
14471 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14472 M:      Len Brown <len.brown@intel.com>
14473 M:      Pavel Machek <pavel@ucw.cz>
14474 L:      linux-pm@vger.kernel.org
14475 B:      https://bugzilla.kernel.org
14476 S:      Supported
14477 F:      Documentation/power/
14478 F:      arch/x86/kernel/acpi/
14479 F:      drivers/base/power/
14480 F:      kernel/power/
14481 F:      include/linux/suspend.h
14482 F:      include/linux/freezer.h
14483 F:      include/linux/pm.h
14484
14485 SVGA HANDLING
14486 M:      Martin Mares <mj@ucw.cz>
14487 L:      linux-video@atrey.karlin.mff.cuni.cz
14488 S:      Maintained
14489 F:      Documentation/svga.txt
14490 F:      arch/x86/boot/video*
14491
14492 SWIOTLB SUBSYSTEM
14493 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14494 L:      iommu@lists.linux-foundation.org
14495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
14496 S:      Supported
14497 F:      kernel/dma/swiotlb.c
14498 F:      arch/*/kernel/pci-swiotlb.c
14499 F:      include/linux/swiotlb.h
14500
14501 SWITCHDEV
14502 M:      Jiri Pirko <jiri@resnulli.us>
14503 M:      Ivan Vecera <ivecera@redhat.com>
14504 L:      netdev@vger.kernel.org
14505 S:      Supported
14506 F:      net/switchdev/
14507 F:      include/net/switchdev.h
14508
14509 SY8106A REGULATOR DRIVER
14510 M:      Icenowy Zheng <icenowy@aosc.io>
14511 S:      Maintained
14512 F:      drivers/regulator/sy8106a-regulator.c
14513 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
14514
14515 SYNC FILE FRAMEWORK
14516 M:      Sumit Semwal <sumit.semwal@linaro.org>
14517 R:      Gustavo Padovan <gustavo@padovan.org>
14518 S:      Maintained
14519 L:      linux-media@vger.kernel.org
14520 L:      dri-devel@lists.freedesktop.org
14521 F:      drivers/dma-buf/sync_*
14522 F:      drivers/dma-buf/dma-fence*
14523 F:      drivers/dma-buf/sw_sync.c
14524 F:      include/linux/sync_file.h
14525 F:      include/uapi/linux/sync_file.h
14526 F:      Documentation/sync_file.txt
14527 T:      git git://anongit.freedesktop.org/drm/drm-misc
14528
14529 SYNOPSYS ARC ARCHITECTURE
14530 M:      Vineet Gupta <vgupta@synopsys.com>
14531 L:      linux-snps-arc@lists.infradead.org
14532 S:      Supported
14533 F:      arch/arc/
14534 F:      Documentation/devicetree/bindings/arc/*
14535 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
14536 F:      drivers/clocksource/arc_timer.c
14537 F:      drivers/tty/serial/arc_uart.c
14538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
14539
14540 SYNOPSYS ARC HSDK SDP pll clock driver
14541 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
14542 S:      Supported
14543 F:      drivers/clk/clk-hsdk-pll.c
14544 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
14545
14546 SYNOPSYS ARC SDP clock driver
14547 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
14548 S:      Supported
14549 F:      drivers/clk/axs10x/*
14550 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
14551
14552 SYNOPSYS ARC SDP platform support
14553 M:      Alexey Brodkin <abrodkin@synopsys.com>
14554 S:      Supported
14555 F:      arch/arc/plat-axs10x
14556 F:      arch/arc/boot/dts/ax*
14557 F:      Documentation/devicetree/bindings/arc/axs10*
14558
14559 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
14560 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
14561 S:      Supported
14562 F:      drivers/reset/reset-axs10x.c
14563 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
14564
14565 SYNOPSYS CREG GPIO DRIVER
14566 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
14567 S:      Maintained
14568 F:      drivers/gpio/gpio-creg-snps.c
14569 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
14570
14571 SYNOPSYS DESIGNWARE 8250 UART DRIVER
14572 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
14573 S:      Maintained
14574 F:      drivers/tty/serial/8250/8250_dw.c
14575
14576 SYNOPSYS DESIGNWARE APB GPIO DRIVER
14577 M:      Hoan Tran <hotran@apm.com>
14578 L:      linux-gpio@vger.kernel.org
14579 S:      Maintained
14580 F:      drivers/gpio/gpio-dwapb.c
14581 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
14582
14583 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
14584 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
14585 S:      Maintained
14586 F:      drivers/dma/dwi-axi-dmac/
14587 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
14588
14589 SYNOPSYS DESIGNWARE DMAC DRIVER
14590 M:      Viresh Kumar <vireshk@kernel.org>
14591 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
14592 S:      Maintained
14593 F:      include/linux/dma/dw.h
14594 F:      include/linux/platform_data/dma-dw.h
14595 F:      drivers/dma/dw/
14596
14597 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
14598 M:      Jose Abreu <Jose.Abreu@synopsys.com>
14599 L:      netdev@vger.kernel.org
14600 S:      Supported
14601 F:      drivers/net/ethernet/synopsys/
14602
14603 SYNOPSYS DESIGNWARE I2C DRIVER
14604 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
14605 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
14606 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
14607 L:      linux-i2c@vger.kernel.org
14608 S:      Maintained
14609 F:      drivers/i2c/busses/i2c-designware-*
14610 F:      include/linux/platform_data/i2c-designware.h
14611
14612 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
14613 M:      Jaehoon Chung <jh80.chung@samsung.com>
14614 L:      linux-mmc@vger.kernel.org
14615 S:      Maintained
14616 F:      drivers/mmc/host/dw_mmc*
14617
14618 SYNOPSYS HSDK RESET CONTROLLER DRIVER
14619 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
14620 S:      Supported
14621 F:      drivers/reset/reset-hsdk.c
14622 F:      include/dt-bindings/reset/snps,hsdk-reset.h
14623 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
14624
14625 SYSTEM CONFIGURATION (SYSCON)
14626 M:      Lee Jones <lee.jones@linaro.org>
14627 M:      Arnd Bergmann <arnd@arndb.de>
14628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14629 S:      Supported
14630 F:      drivers/mfd/syscon.c
14631
14632 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
14633 M:      Sudeep Holla <sudeep.holla@arm.com>
14634 L:      linux-arm-kernel@lists.infradead.org
14635 S:      Maintained
14636 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
14637 F:      drivers/clk/clk-sc[mp]i.c
14638 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
14639 F:      drivers/firmware/arm_scpi.c
14640 F:      drivers/firmware/arm_scmi/
14641 F:      include/linux/sc[mp]i_protocol.h
14642
14643 SYSTEM RESET/SHUTDOWN DRIVERS
14644 M:      Sebastian Reichel <sre@kernel.org>
14645 L:      linux-pm@vger.kernel.org
14646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14647 S:      Maintained
14648 F:      Documentation/devicetree/bindings/power/reset/
14649 F:      drivers/power/reset/
14650
14651 SYSTEM TRACE MODULE CLASS
14652 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14653 S:      Maintained
14654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
14655 F:      Documentation/trace/stm.rst
14656 F:      drivers/hwtracing/stm/
14657 F:      include/linux/stm.h
14658 F:      include/uapi/linux/stm.h
14659
14660 SYSV FILESYSTEM
14661 M:      Christoph Hellwig <hch@infradead.org>
14662 S:      Maintained
14663 F:      Documentation/filesystems/sysv-fs.txt
14664 F:      fs/sysv/
14665 F:      include/linux/sysv_fs.h
14666
14667 TARGET SUBSYSTEM
14668 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
14669 L:      linux-scsi@vger.kernel.org
14670 L:      target-devel@vger.kernel.org
14671 W:      http://www.linux-iscsi.org
14672 W:      http://groups.google.com/group/linux-iscsi-target-dev
14673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
14674 S:      Supported
14675 F:      drivers/target/
14676 F:      include/target/
14677 F:      Documentation/target/
14678
14679 TASKSTATS STATISTICS INTERFACE
14680 M:      Balbir Singh <bsingharora@gmail.com>
14681 S:      Maintained
14682 F:      Documentation/accounting/taskstats*
14683 F:      include/linux/taskstats*
14684 F:      kernel/taskstats.c
14685
14686 TC subsystem
14687 M:      Jamal Hadi Salim <jhs@mojatatu.com>
14688 M:      Cong Wang <xiyou.wangcong@gmail.com>
14689 M:      Jiri Pirko <jiri@resnulli.us>
14690 L:      netdev@vger.kernel.org
14691 S:      Maintained
14692 F:      include/net/pkt_cls.h
14693 F:      include/net/pkt_sched.h
14694 F:      include/net/tc_act/
14695 F:      include/uapi/linux/pkt_cls.h
14696 F:      include/uapi/linux/pkt_sched.h
14697 F:      include/uapi/linux/tc_act/
14698 F:      include/uapi/linux/tc_ematch/
14699 F:      net/sched/
14700
14701 TC90522 MEDIA DRIVER
14702 M:      Akihiro Tsukada <tskd08@gmail.com>
14703 L:      linux-media@vger.kernel.org
14704 S:      Odd Fixes
14705 F:      drivers/media/dvb-frontends/tc90522*
14706
14707 TCP LOW PRIORITY MODULE
14708 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
14709 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
14710 W:      http://tcp-lp-mod.sourceforge.net/
14711 S:      Maintained
14712 F:      net/ipv4/tcp_lp.c
14713
14714 TDA10071 MEDIA DRIVER
14715 M:      Antti Palosaari <crope@iki.fi>
14716 L:      linux-media@vger.kernel.org
14717 W:      https://linuxtv.org
14718 W:      http://palosaari.fi/linux/
14719 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14720 T:      git git://linuxtv.org/anttip/media_tree.git
14721 S:      Maintained
14722 F:      drivers/media/dvb-frontends/tda10071*
14723
14724 TDA18212 MEDIA DRIVER
14725 M:      Antti Palosaari <crope@iki.fi>
14726 L:      linux-media@vger.kernel.org
14727 W:      https://linuxtv.org
14728 W:      http://palosaari.fi/linux/
14729 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14730 T:      git git://linuxtv.org/anttip/media_tree.git
14731 S:      Maintained
14732 F:      drivers/media/tuners/tda18212*
14733
14734 TDA18218 MEDIA DRIVER
14735 M:      Antti Palosaari <crope@iki.fi>
14736 L:      linux-media@vger.kernel.org
14737 W:      https://linuxtv.org
14738 W:      http://palosaari.fi/linux/
14739 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14740 T:      git git://linuxtv.org/anttip/media_tree.git
14741 S:      Maintained
14742 F:      drivers/media/tuners/tda18218*
14743
14744 TDA18250 MEDIA DRIVER
14745 M:      Olli Salonen <olli.salonen@iki.fi>
14746 L:      linux-media@vger.kernel.org
14747 W:      https://linuxtv.org
14748 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14749 T:      git git://linuxtv.org/media_tree.git
14750 S:      Maintained
14751 F:      drivers/media/tuners/tda18250*
14752
14753 TDA18271 MEDIA DRIVER
14754 M:      Michael Krufky <mkrufky@linuxtv.org>
14755 L:      linux-media@vger.kernel.org
14756 W:      https://linuxtv.org
14757 W:      http://github.com/mkrufky
14758 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14759 T:      git git://linuxtv.org/mkrufky/tuners.git
14760 S:      Maintained
14761 F:      drivers/media/tuners/tda18271*
14762
14763 TDA1997x MEDIA DRIVER
14764 M:      Tim Harvey <tharvey@gateworks.com>
14765 L:      linux-media@vger.kernel.org
14766 W:      https://linuxtv.org
14767 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14768 S:      Maintained
14769 F:      drivers/media/i2c/tda1997x.*
14770
14771 TDA827x MEDIA DRIVER
14772 M:      Michael Krufky <mkrufky@linuxtv.org>
14773 L:      linux-media@vger.kernel.org
14774 W:      https://linuxtv.org
14775 W:      http://github.com/mkrufky
14776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14777 T:      git git://linuxtv.org/mkrufky/tuners.git
14778 S:      Maintained
14779 F:      drivers/media/tuners/tda8290.*
14780
14781 TDA8290 MEDIA DRIVER
14782 M:      Michael Krufky <mkrufky@linuxtv.org>
14783 L:      linux-media@vger.kernel.org
14784 W:      https://linuxtv.org
14785 W:      http://github.com/mkrufky
14786 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14787 T:      git git://linuxtv.org/mkrufky/tuners.git
14788 S:      Maintained
14789 F:      drivers/media/tuners/tda8290.*
14790
14791 TDA9840 MEDIA DRIVER
14792 M:      Hans Verkuil <hverkuil@xs4all.nl>
14793 L:      linux-media@vger.kernel.org
14794 T:      git git://linuxtv.org/media_tree.git
14795 W:      https://linuxtv.org
14796 S:      Maintained
14797 F:      drivers/media/i2c/tda9840*
14798
14799 TEA5761 TUNER DRIVER
14800 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14801 L:      linux-media@vger.kernel.org
14802 W:      https://linuxtv.org
14803 T:      git git://linuxtv.org/media_tree.git
14804 S:      Odd fixes
14805 F:      drivers/media/tuners/tea5761.*
14806
14807 TEA5767 TUNER DRIVER
14808 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14809 L:      linux-media@vger.kernel.org
14810 W:      https://linuxtv.org
14811 T:      git git://linuxtv.org/media_tree.git
14812 S:      Maintained
14813 F:      drivers/media/tuners/tea5767.*
14814
14815 TEA6415C MEDIA DRIVER
14816 M:      Hans Verkuil <hverkuil@xs4all.nl>
14817 L:      linux-media@vger.kernel.org
14818 T:      git git://linuxtv.org/media_tree.git
14819 W:      https://linuxtv.org
14820 S:      Maintained
14821 F:      drivers/media/i2c/tea6415c*
14822
14823 TEA6420 MEDIA DRIVER
14824 M:      Hans Verkuil <hverkuil@xs4all.nl>
14825 L:      linux-media@vger.kernel.org
14826 T:      git git://linuxtv.org/media_tree.git
14827 W:      https://linuxtv.org
14828 S:      Maintained
14829 F:      drivers/media/i2c/tea6420*
14830
14831 TEAM DRIVER
14832 M:      Jiri Pirko <jiri@resnulli.us>
14833 L:      netdev@vger.kernel.org
14834 S:      Supported
14835 F:      drivers/net/team/
14836 F:      include/linux/if_team.h
14837 F:      include/uapi/linux/if_team.h
14838
14839 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
14840 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
14841 S:      Maintained
14842 F:      arch/x86/platform/ts5500/
14843
14844 TECHNOTREND USB IR RECEIVER
14845 M:      Sean Young <sean@mess.org>
14846 L:      linux-media@vger.kernel.org
14847 S:      Maintained
14848 F:      drivers/media/rc/ttusbir.c
14849
14850 TECHWELL TW9910 VIDEO DECODER
14851 L:      linux-media@vger.kernel.org
14852 S:      Orphan
14853 F:      drivers/media/i2c/tw9910.c
14854 F:      include/media/i2c/tw9910.h
14855
14856 TEE SUBSYSTEM
14857 M:      Jens Wiklander <jens.wiklander@linaro.org>
14858 S:      Maintained
14859 F:      include/linux/tee_drv.h
14860 F:      include/uapi/linux/tee.h
14861 F:      drivers/tee/
14862 F:      Documentation/tee.txt
14863
14864 TEGRA ARCHITECTURE SUPPORT
14865 M:      Thierry Reding <thierry.reding@gmail.com>
14866 M:      Jonathan Hunter <jonathanh@nvidia.com>
14867 L:      linux-tegra@vger.kernel.org
14868 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
14869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
14870 S:      Supported
14871 N:      [^a-z]tegra
14872
14873 TEGRA CLOCK DRIVER
14874 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
14875 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
14876 S:      Supported
14877 F:      drivers/clk/tegra/
14878
14879 TEGRA DMA DRIVERS
14880 M:      Laxman Dewangan <ldewangan@nvidia.com>
14881 M:      Jon Hunter <jonathanh@nvidia.com>
14882 S:      Supported
14883 F:      drivers/dma/tegra*
14884
14885 TEGRA I2C DRIVER
14886 M:      Laxman Dewangan <ldewangan@nvidia.com>
14887 S:      Supported
14888 F:      drivers/i2c/busses/i2c-tegra.c
14889
14890 TEGRA IOMMU DRIVERS
14891 M:      Thierry Reding <thierry.reding@gmail.com>
14892 L:      linux-tegra@vger.kernel.org
14893 S:      Supported
14894 F:      drivers/iommu/tegra*
14895
14896 TEGRA KBC DRIVER
14897 M:      Laxman Dewangan <ldewangan@nvidia.com>
14898 S:      Supported
14899 F:      drivers/input/keyboard/tegra-kbc.c
14900
14901 TEGRA NAND DRIVER
14902 M:      Stefan Agner <stefan@agner.ch>
14903 M:      Lucas Stach <dev@lynxeye.de>
14904 S:      Maintained
14905 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
14906 F:      drivers/mtd/nand/raw/tegra_nand.c
14907
14908 TEGRA PWM DRIVER
14909 M:      Thierry Reding <thierry.reding@gmail.com>
14910 S:      Supported
14911 F:      drivers/pwm/pwm-tegra.c
14912
14913 TEGRA SERIAL DRIVER
14914 M:      Laxman Dewangan <ldewangan@nvidia.com>
14915 S:      Supported
14916 F:      drivers/tty/serial/serial-tegra.c
14917
14918 TEGRA SPI DRIVER
14919 M:      Laxman Dewangan <ldewangan@nvidia.com>
14920 S:      Supported
14921 F:      drivers/spi/spi-tegra*
14922
14923 TEHUTI ETHERNET DRIVER
14924 M:      Andy Gospodarek <andy@greyhouse.net>
14925 L:      netdev@vger.kernel.org
14926 S:      Supported
14927 F:      drivers/net/ethernet/tehuti/*
14928
14929 Telecom Clock Driver for MCPL0010
14930 M:      Mark Gross <mark.gross@intel.com>
14931 S:      Supported
14932 F:      drivers/char/tlclk.c
14933
14934 TENSILICA XTENSA PORT (xtensa)
14935 M:      Chris Zankel <chris@zankel.net>
14936 M:      Max Filippov <jcmvbkbc@gmail.com>
14937 L:      linux-xtensa@linux-xtensa.org
14938 T:      git git://github.com/czankel/xtensa-linux.git
14939 S:      Maintained
14940 F:      arch/xtensa/
14941 F:      drivers/irqchip/irq-xtensa-*
14942
14943 Texas Instruments' System Control Interface (TISCI) Protocol Driver
14944 M:      Nishanth Menon <nm@ti.com>
14945 M:      Tero Kristo <t-kristo@ti.com>
14946 M:      Santosh Shilimkar <ssantosh@kernel.org>
14947 L:      linux-arm-kernel@lists.infradead.org
14948 S:      Maintained
14949 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
14950 F:      drivers/firmware/ti_sci*
14951 F:      include/linux/soc/ti/ti_sci_protocol.h
14952 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
14953 F:      drivers/soc/ti/ti_sci_pm_domains.c
14954 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
14955 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
14956 F:      drivers/clk/keystone/sci-clk.c
14957 F:      drivers/reset/reset-ti-sci.c
14958
14959 Texas Instruments ASoC drivers
14960 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
14961 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14962 S:      Maintained
14963 F:      sound/soc/ti/
14964
14965 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
14966 M:      Hans Verkuil <hverkuil@xs4all.nl>
14967 L:      linux-media@vger.kernel.org
14968 T:      git git://linuxtv.org/media_tree.git
14969 W:      https://linuxtv.org
14970 S:      Maintained
14971 F:      drivers/media/radio/radio-raremono.c
14972
14973 THERMAL
14974 M:      Zhang Rui <rui.zhang@intel.com>
14975 M:      Eduardo Valentin <edubezval@gmail.com>
14976 R:      Daniel Lezcano <daniel.lezcano@linaro.org>
14977 L:      linux-pm@vger.kernel.org
14978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
14979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
14980 Q:      https://patchwork.kernel.org/project/linux-pm/list/
14981 S:      Supported
14982 F:      drivers/thermal/
14983 F:      include/linux/thermal.h
14984 F:      include/uapi/linux/thermal.h
14985 F:      include/linux/cpu_cooling.h
14986 F:      Documentation/devicetree/bindings/thermal/
14987
14988 THERMAL/CPU_COOLING
14989 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
14990 M:      Viresh Kumar <viresh.kumar@linaro.org>
14991 M:      Javi Merino <javi.merino@kernel.org>
14992 L:      linux-pm@vger.kernel.org
14993 S:      Supported
14994 F:      Documentation/thermal/cpu-cooling-api.txt
14995 F:      drivers/thermal/cpu_cooling.c
14996 F:      include/linux/cpu_cooling.h
14997
14998 THINKPAD ACPI EXTRAS DRIVER
14999 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
15000 L:      ibm-acpi-devel@lists.sourceforge.net
15001 L:      platform-driver-x86@vger.kernel.org
15002 W:      http://ibm-acpi.sourceforge.net
15003 W:      http://thinkwiki.org/wiki/Ibm-acpi
15004 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
15005 S:      Maintained
15006 F:      drivers/platform/x86/thinkpad_acpi.c
15007
15008 THUNDERBOLT DRIVER
15009 M:      Andreas Noever <andreas.noever@gmail.com>
15010 M:      Michael Jamet <michael.jamet@intel.com>
15011 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15012 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
15013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
15014 S:      Maintained
15015 F:      Documentation/admin-guide/thunderbolt.rst
15016 F:      drivers/thunderbolt/
15017 F:      include/linux/thunderbolt.h
15018
15019 THUNDERBOLT NETWORK DRIVER
15020 M:      Michael Jamet <michael.jamet@intel.com>
15021 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15022 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
15023 L:      netdev@vger.kernel.org
15024 S:      Maintained
15025 F:      drivers/net/thunderbolt.c
15026
15027 THUNDERX GPIO DRIVER
15028 M:      David Daney <david.daney@cavium.com>
15029 S:      Maintained
15030 F:      drivers/gpio/gpio-thunderx.c
15031
15032 TI AM437X VPFE DRIVER
15033 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15034 L:      linux-media@vger.kernel.org
15035 W:      https://linuxtv.org
15036 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15037 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15038 S:      Maintained
15039 F:      drivers/media/platform/am437x/
15040
15041 TI BANDGAP AND THERMAL DRIVER
15042 M:      Eduardo Valentin <edubezval@gmail.com>
15043 M:      Keerthy <j-keerthy@ti.com>
15044 L:      linux-pm@vger.kernel.org
15045 L:      linux-omap@vger.kernel.org
15046 S:      Maintained
15047 F:      drivers/thermal/ti-soc-thermal/
15048
15049 TI BQ27XXX POWER SUPPLY DRIVER
15050 R:      Andrew F. Davis <afd@ti.com>
15051 F:      include/linux/power/bq27xxx_battery.h
15052 F:      drivers/power/supply/bq27xxx_battery.c
15053 F:      drivers/power/supply/bq27xxx_battery_i2c.c
15054
15055 TI CDCE706 CLOCK DRIVER
15056 M:      Max Filippov <jcmvbkbc@gmail.com>
15057 S:      Maintained
15058 F:      drivers/clk/clk-cdce706.c
15059
15060 TI CLOCK DRIVER
15061 M:      Tero Kristo <t-kristo@ti.com>
15062 L:      linux-omap@vger.kernel.org
15063 S:      Maintained
15064 F:      drivers/clk/ti/
15065 F:      include/linux/clk/ti.h
15066
15067 TI DAVINCI MACHINE SUPPORT
15068 M:      Sekhar Nori <nsekhar@ti.com>
15069 M:      Kevin Hilman <khilman@kernel.org>
15070 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
15072 S:      Supported
15073 F:      arch/arm/mach-davinci/
15074 F:      drivers/i2c/busses/i2c-davinci.c
15075 F:      arch/arm/boot/dts/da850*
15076
15077 TI DAVINCI SERIES CLOCK DRIVER
15078 M:      David Lechner <david@lechnology.com>
15079 R:      Sekhar Nori <nsekhar@ti.com>
15080 S:      Maintained
15081 F:      Documentation/devicetree/bindings/clock/ti/davinci/
15082 F:      drivers/clk/davinci/
15083
15084 TI DAVINCI SERIES GPIO DRIVER
15085 M:      Keerthy <j-keerthy@ti.com>
15086 L:      linux-gpio@vger.kernel.org
15087 S:      Maintained
15088 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
15089 F:      drivers/gpio/gpio-davinci.c
15090
15091 TI DAVINCI SERIES MEDIA DRIVER
15092 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15093 L:      linux-media@vger.kernel.org
15094 W:      https://linuxtv.org
15095 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15096 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15097 S:      Maintained
15098 F:      drivers/media/platform/davinci/
15099 F:      include/media/davinci/
15100
15101 TI ETHERNET SWITCH DRIVER (CPSW)
15102 R:      Grygorii Strashko <grygorii.strashko@ti.com>
15103 L:      linux-omap@vger.kernel.org
15104 L:      netdev@vger.kernel.org
15105 S:      Maintained
15106 F:      drivers/net/ethernet/ti/cpsw*
15107 F:      drivers/net/ethernet/ti/davinci*
15108
15109 TI FLASH MEDIA INTERFACE DRIVER
15110 M:      Alex Dubov <oakad@yahoo.com>
15111 S:      Maintained
15112 F:      drivers/misc/tifm*
15113 F:      drivers/mmc/host/tifm_sd.c
15114 F:      include/linux/tifm.h
15115
15116 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
15117 M:      Santosh Shilimkar <ssantosh@kernel.org>
15118 L:      linux-kernel@vger.kernel.org
15119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15120 S:      Maintained
15121 F:      drivers/soc/ti/*
15122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
15123
15124 TI LM49xxx FAMILY ASoC CODEC DRIVERS
15125 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
15126 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
15127 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15128 S:      Maintained
15129 F:      sound/soc/codecs/lm49453*
15130 F:      sound/soc/codecs/isabelle*
15131
15132 TI LP855x BACKLIGHT DRIVER
15133 M:      Milo Kim <milo.kim@ti.com>
15134 S:      Maintained
15135 F:      Documentation/backlight/lp855x-driver.txt
15136 F:      drivers/video/backlight/lp855x_bl.c
15137 F:      include/linux/platform_data/lp855x.h
15138
15139 TI LP8727 CHARGER DRIVER
15140 M:      Milo Kim <milo.kim@ti.com>
15141 S:      Maintained
15142 F:      drivers/power/supply/lp8727_charger.c
15143 F:      include/linux/platform_data/lp8727.h
15144
15145 TI LP8788 MFD DRIVER
15146 M:      Milo Kim <milo.kim@ti.com>
15147 S:      Maintained
15148 F:      drivers/iio/adc/lp8788_adc.c
15149 F:      drivers/leds/leds-lp8788.c
15150 F:      drivers/mfd/lp8788*.c
15151 F:      drivers/power/supply/lp8788-charger.c
15152 F:      drivers/regulator/lp8788-*.c
15153 F:      include/linux/mfd/lp8788*.h
15154
15155 TI NETCP ETHERNET DRIVER
15156 M:      Wingman Kwok <w-kwok2@ti.com>
15157 M:      Murali Karicheri <m-karicheri2@ti.com>
15158 L:      netdev@vger.kernel.org
15159 S:      Maintained
15160 F:      drivers/net/ethernet/ti/netcp*
15161
15162 TI PCM3060 ASoC CODEC DRIVER
15163 M:      Kirill Marinushkin <kmarinushkin@birdec.tech>
15164 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15165 S:      Maintained
15166 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
15167 F:      sound/soc/codecs/pcm3060*
15168
15169 TI TAS571X FAMILY ASoC CODEC DRIVER
15170 M:      Kevin Cernekee <cernekee@chromium.org>
15171 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15172 S:      Odd Fixes
15173 F:      sound/soc/codecs/tas571x*
15174
15175 TI TRF7970A NFC DRIVER
15176 M:      Mark Greer <mgreer@animalcreek.com>
15177 L:      linux-wireless@vger.kernel.org
15178 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15179 S:      Supported
15180 F:      drivers/nfc/trf7970a.c
15181 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
15182
15183 TI TWL4030 SERIES SOC CODEC DRIVER
15184 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
15185 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15186 S:      Maintained
15187 F:      sound/soc/codecs/twl4030*
15188
15189 TI VPE/CAL DRIVERS
15190 M:      Benoit Parrot <bparrot@ti.com>
15191 L:      linux-media@vger.kernel.org
15192 W:      http://linuxtv.org/
15193 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15194 S:      Maintained
15195 F:      drivers/media/platform/ti-vpe/
15196
15197 TI WILINK WIRELESS DRIVERS
15198 L:      linux-wireless@vger.kernel.org
15199 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
15200 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
15201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
15202 S:      Orphan
15203 F:      drivers/net/wireless/ti/
15204 F:      include/linux/wl12xx.h
15205
15206 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
15207 M:      John Stultz <john.stultz@linaro.org>
15208 M:      Thomas Gleixner <tglx@linutronix.de>
15209 R:      Stephen Boyd <sboyd@kernel.org>
15210 L:      linux-kernel@vger.kernel.org
15211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15212 S:      Supported
15213 F:      include/linux/clocksource.h
15214 F:      include/linux/time.h
15215 F:      include/linux/timex.h
15216 F:      include/uapi/linux/time.h
15217 F:      include/uapi/linux/timex.h
15218 F:      kernel/time/clocksource.c
15219 F:      kernel/time/time*.c
15220 F:      kernel/time/alarmtimer.c
15221 F:      kernel/time/ntp.c
15222 F:      tools/testing/selftests/timers/
15223
15224 TIPC NETWORK LAYER
15225 M:      Jon Maloy <jon.maloy@ericsson.com>
15226 M:      Ying Xue <ying.xue@windriver.com>
15227 L:      netdev@vger.kernel.org (core kernel code)
15228 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
15229 W:      http://tipc.sourceforge.net/
15230 S:      Maintained
15231 F:      include/uapi/linux/tipc*.h
15232 F:      net/tipc/
15233
15234 TLAN NETWORK DRIVER
15235 M:      Samuel Chessman <chessman@tux.org>
15236 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
15237 W:      http://sourceforge.net/projects/tlan/
15238 S:      Maintained
15239 F:      Documentation/networking/device_drivers/ti/tlan.txt
15240 F:      drivers/net/ethernet/ti/tlan.*
15241
15242 TM6000 VIDEO4LINUX DRIVER
15243 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15244 L:      linux-media@vger.kernel.org
15245 W:      https://linuxtv.org
15246 T:      git git://linuxtv.org/media_tree.git
15247 S:      Odd fixes
15248 F:      drivers/media/usb/tm6000/
15249 F:      Documentation/media/v4l-drivers/tm6000*
15250
15251 TMIO/SDHI MMC DRIVER
15252 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15253 L:      linux-mmc@vger.kernel.org
15254 S:      Supported
15255 F:      drivers/mmc/host/tmio_mmc*
15256 F:      drivers/mmc/host/renesas_sdhi*
15257 F:      include/linux/mfd/tmio.h
15258
15259 TMP401 HARDWARE MONITOR DRIVER
15260 M:      Guenter Roeck <linux@roeck-us.net>
15261 L:      linux-hwmon@vger.kernel.org
15262 S:      Maintained
15263 F:      Documentation/hwmon/tmp401
15264 F:      drivers/hwmon/tmp401.c
15265
15266 TMPFS (SHMEM FILESYSTEM)
15267 M:      Hugh Dickins <hughd@google.com>
15268 L:      linux-mm@kvack.org
15269 S:      Maintained
15270 F:      include/linux/shmem_fs.h
15271 F:      mm/shmem.c
15272
15273 TOMOYO SECURITY MODULE
15274 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
15275 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
15276 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
15277 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
15278 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
15279 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
15280 W:      http://tomoyo.sourceforge.jp/
15281 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
15282 S:      Maintained
15283 F:      security/tomoyo/
15284
15285 TOPSTAR LAPTOP EXTRAS DRIVER
15286 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15287 L:      platform-driver-x86@vger.kernel.org
15288 S:      Maintained
15289 F:      drivers/platform/x86/topstar-laptop.c
15290
15291 TORTURE-TEST MODULES
15292 M:      Davidlohr Bueso <dave@stgolabs.net>
15293 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
15294 M:      Josh Triplett <josh@joshtriplett.org>
15295 L:      linux-kernel@vger.kernel.org
15296 S:      Supported
15297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
15298 F:      Documentation/RCU/torture.txt
15299 F:      kernel/torture.c
15300 F:      kernel/rcu/rcutorture.c
15301 F:      kernel/rcu/rcuperf.c
15302 F:      kernel/locking/locktorture.c
15303
15304 TOSHIBA ACPI EXTRAS DRIVER
15305 M:      Azael Avalos <coproscefalo@gmail.com>
15306 L:      platform-driver-x86@vger.kernel.org
15307 S:      Maintained
15308 F:      drivers/platform/x86/toshiba_acpi.c
15309
15310 TOSHIBA BLUETOOTH DRIVER
15311 M:      Azael Avalos <coproscefalo@gmail.com>
15312 L:      platform-driver-x86@vger.kernel.org
15313 S:      Maintained
15314 F:      drivers/platform/x86/toshiba_bluetooth.c
15315
15316 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
15317 M:      Azael Avalos <coproscefalo@gmail.com>
15318 L:      platform-driver-x86@vger.kernel.org
15319 S:      Maintained
15320 F:      drivers/platform/x86/toshiba_haps.c
15321
15322 TOSHIBA SMM DRIVER
15323 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
15324 W:      http://www.buzzard.org.uk/toshiba/
15325 S:      Maintained
15326 F:      drivers/char/toshiba.c
15327 F:      include/linux/toshiba.h
15328 F:      include/uapi/linux/toshiba.h
15329
15330 TOSHIBA TC358743 DRIVER
15331 M:      Mats Randgaard <matrandg@cisco.com>
15332 L:      linux-media@vger.kernel.org
15333 S:      Maintained
15334 F:      drivers/media/i2c/tc358743*
15335 F:      include/media/i2c/tc358743.h
15336
15337 TOSHIBA WMI HOTKEYS DRIVER
15338 M:      Azael Avalos <coproscefalo@gmail.com>
15339 L:      platform-driver-x86@vger.kernel.org
15340 S:      Maintained
15341 F:      drivers/platform/x86/toshiba-wmi.c
15342
15343 TPM DEVICE DRIVER
15344 M:      Peter Huewe <peterhuewe@gmx.de>
15345 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
15346 R:      Jason Gunthorpe <jgg@ziepe.ca>
15347 L:      linux-integrity@vger.kernel.org
15348 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
15349 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
15350 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
15351 S:      Maintained
15352 F:      drivers/char/tpm/
15353
15354 TRACING
15355 M:      Steven Rostedt <rostedt@goodmis.org>
15356 M:      Ingo Molnar <mingo@redhat.com>
15357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15358 S:      Maintained
15359 F:      Documentation/trace/ftrace.rst
15360 F:      arch/*/*/*/ftrace.h
15361 F:      arch/*/kernel/ftrace.c
15362 F:      include/*/ftrace.h
15363 F:      include/linux/trace*.h
15364 F:      include/trace/
15365 F:      kernel/trace/
15366 F:      tools/testing/selftests/ftrace/
15367
15368 TRACING MMIO ACCESSES (MMIOTRACE)
15369 M:      Steven Rostedt <rostedt@goodmis.org>
15370 M:      Ingo Molnar <mingo@kernel.org>
15371 R:      Karol Herbst <karolherbst@gmail.com>
15372 R:      Pekka Paalanen <ppaalanen@gmail.com>
15373 S:      Maintained
15374 L:      linux-kernel@vger.kernel.org
15375 L:      nouveau@lists.freedesktop.org
15376 F:      kernel/trace/trace_mmiotrace.c
15377 F:      include/linux/mmiotrace.h
15378 F:      arch/x86/mm/kmmio.c
15379 F:      arch/x86/mm/mmio-mod.c
15380 F:      arch/x86/mm/testmmiotrace.c
15381
15382 TRIVIAL PATCHES
15383 M:      Jiri Kosina <trivial@kernel.org>
15384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
15385 S:      Maintained
15386 K:      ^Subject:.*(?i)trivial
15387
15388 TEMPO SEMICONDUCTOR DRIVERS
15389 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
15390 S:      Maintained
15391 F:      sound/soc/codecs/tscs*.c
15392 F:      sound/soc/codecs/tscs*.h
15393 F:      Documentation/devicetree/bindings/sound/tscs*.txt
15394
15395 TTY LAYER
15396 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15397 M:      Jiri Slaby <jslaby@suse.com>
15398 S:      Supported
15399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
15400 F:      Documentation/serial/
15401 F:      drivers/tty/
15402 F:      drivers/tty/serial/serial_core.c
15403 F:      include/linux/serial_core.h
15404 F:      include/linux/serial.h
15405 F:      include/linux/tty.h
15406 F:      include/uapi/linux/serial_core.h
15407 F:      include/uapi/linux/serial.h
15408 F:      include/uapi/linux/tty.h
15409
15410 TUA9001 MEDIA DRIVER
15411 M:      Antti Palosaari <crope@iki.fi>
15412 L:      linux-media@vger.kernel.org
15413 W:      https://linuxtv.org
15414 W:      http://palosaari.fi/linux/
15415 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15416 T:      git git://linuxtv.org/anttip/media_tree.git
15417 S:      Maintained
15418 F:      drivers/media/tuners/tua9001*
15419
15420 TULIP NETWORK DRIVERS
15421 L:      netdev@vger.kernel.org
15422 L:      linux-parisc@vger.kernel.org
15423 S:      Orphan
15424 F:      drivers/net/ethernet/dec/tulip/
15425
15426 TUN/TAP driver
15427 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
15428 W:      http://vtun.sourceforge.net/tun
15429 S:      Maintained
15430 F:      Documentation/networking/tuntap.txt
15431 F:      arch/um/os-Linux/drivers/
15432
15433 TURBOCHANNEL SUBSYSTEM
15434 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
15435 M:      Ralf Baechle <ralf@linux-mips.org>
15436 L:      linux-mips@vger.kernel.org
15437 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
15438 S:      Maintained
15439 F:      drivers/tc/
15440 F:      include/linux/tc.h
15441
15442 TURBOSTAT UTILITY
15443 M:      "Len Brown" <lenb@kernel.org>
15444 L:      linux-pm@vger.kernel.org
15445 B:      https://bugzilla.kernel.org
15446 Q:      https://patchwork.kernel.org/project/linux-pm/list/
15447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
15448 S:      Supported
15449 F:      tools/power/x86/turbostat/
15450
15451 TW5864 VIDEO4LINUX DRIVER
15452 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15453 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15454 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15455 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15456 L:      linux-media@vger.kernel.org
15457 S:      Supported
15458 F:      drivers/media/pci/tw5864/
15459
15460 TW68 VIDEO4LINUX DRIVER
15461 M:      Hans Verkuil <hverkuil@xs4all.nl>
15462 L:      linux-media@vger.kernel.org
15463 T:      git git://linuxtv.org/media_tree.git
15464 W:      https://linuxtv.org
15465 S:      Odd Fixes
15466 F:      drivers/media/pci/tw68/
15467
15468 TW686X VIDEO4LINUX DRIVER
15469 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
15470 L:      linux-media@vger.kernel.org
15471 T:      git git://linuxtv.org/media_tree.git
15472 W:      http://linuxtv.org
15473 S:      Maintained
15474 F:      drivers/media/pci/tw686x/
15475
15476 UBI FILE SYSTEM (UBIFS)
15477 M:      Richard Weinberger <richard@nod.at>
15478 M:      Artem Bityutskiy <dedekind1@gmail.com>
15479 M:      Adrian Hunter <adrian.hunter@intel.com>
15480 L:      linux-mtd@lists.infradead.org
15481 T:      git git://git.infradead.org/ubifs-2.6.git
15482 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
15483 S:      Supported
15484 F:      Documentation/filesystems/ubifs.txt
15485 F:      fs/ubifs/
15486
15487 UCLINUX (M68KNOMMU AND COLDFIRE)
15488 M:      Greg Ungerer <gerg@linux-m68k.org>
15489 W:      http://www.linux-m68k.org/
15490 W:      http://www.uclinux.org/
15491 L:      linux-m68k@lists.linux-m68k.org
15492 L:      uclinux-dev@uclinux.org  (subscribers-only)
15493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
15494 S:      Maintained
15495 F:      arch/m68k/coldfire/
15496 F:      arch/m68k/68*/
15497 F:      arch/m68k/*/*_no.*
15498 F:      arch/m68k/include/asm/*_no.*
15499
15500 UDF FILESYSTEM
15501 M:      Jan Kara <jack@suse.com>
15502 S:      Maintained
15503 F:      Documentation/filesystems/udf.txt
15504 F:      fs/udf/
15505
15506 UDRAW TABLET
15507 M:      Bastien Nocera <hadess@hadess.net>
15508 L:      linux-input@vger.kernel.org
15509 S:      Maintained
15510 F:      drivers/hid/hid-udraw-ps3.c
15511
15512 UFS FILESYSTEM
15513 M:      Evgeniy Dushistov <dushistov@mail.ru>
15514 S:      Maintained
15515 F:      Documentation/filesystems/ufs.txt
15516 F:      fs/ufs/
15517
15518 UHID USERSPACE HID IO DRIVER:
15519 M:      David Herrmann <dh.herrmann@googlemail.com>
15520 L:      linux-input@vger.kernel.org
15521 S:      Maintained
15522 F:      drivers/hid/uhid.c
15523 F:      include/uapi/linux/uhid.h
15524
15525 ULPI BUS
15526 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
15527 L:      linux-usb@vger.kernel.org
15528 S:      Maintained
15529 F:      drivers/usb/common/ulpi.c
15530 F:      include/linux/ulpi/
15531
15532 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
15533 L:      linux-usb@vger.kernel.org
15534 S:      Orphan
15535 F:      drivers/uwb/
15536 F:      include/linux/uwb.h
15537 F:      include/linux/uwb/
15538
15539 UNICORE32 ARCHITECTURE:
15540 M:      Guan Xuetao <gxt@pku.edu.cn>
15541 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
15542 S:      Maintained
15543 T:      git git://github.com/gxt/linux.git
15544 F:      arch/unicore32/
15545
15546 UNIFDEF
15547 M:      Tony Finch <dot@dotat.at>
15548 W:      http://dotat.at/prog/unifdef
15549 S:      Maintained
15550 F:      scripts/unifdef.c
15551
15552 UNIFORM CDROM DRIVER
15553 M:      Jens Axboe <axboe@kernel.dk>
15554 W:      http://www.kernel.dk
15555 S:      Maintained
15556 F:      Documentation/cdrom/
15557 F:      drivers/cdrom/cdrom.c
15558 F:      include/linux/cdrom.h
15559 F:      include/uapi/linux/cdrom.h
15560
15561 UNISYS S-PAR DRIVERS
15562 M:      David Kershner <david.kershner@unisys.com>
15563 L:      sparmaintainer@unisys.com (Unisys internal)
15564 S:      Supported
15565 F:      include/linux/visorbus.h
15566 F:      drivers/visorbus/
15567 F:      drivers/staging/unisys/
15568
15569 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
15570 M:      Vinayak Holikatti <vinholikatti@gmail.com>
15571 L:      linux-scsi@vger.kernel.org
15572 S:      Supported
15573 F:      Documentation/scsi/ufs.txt
15574 F:      drivers/scsi/ufs/
15575
15576 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
15577 M:      Joao Pinto <jpinto@synopsys.com>
15578 L:      linux-scsi@vger.kernel.org
15579 S:      Supported
15580 F:      drivers/scsi/ufs/*dwc*
15581
15582 UNSORTED BLOCK IMAGES (UBI)
15583 M:      Artem Bityutskiy <dedekind1@gmail.com>
15584 M:      Richard Weinberger <richard@nod.at>
15585 W:      http://www.linux-mtd.infradead.org/
15586 L:      linux-mtd@lists.infradead.org
15587 T:      git git://git.infradead.org/ubifs-2.6.git
15588 S:      Supported
15589 F:      drivers/mtd/ubi/
15590 F:      include/linux/mtd/ubi.h
15591 F:      include/uapi/mtd/ubi-user.h
15592
15593 USB "USBNET" DRIVER FRAMEWORK
15594 M:      Oliver Neukum <oneukum@suse.com>
15595 L:      netdev@vger.kernel.org
15596 W:      http://www.linux-usb.org/usbnet
15597 S:      Maintained
15598 F:      drivers/net/usb/usbnet.c
15599 F:      include/linux/usb/usbnet.h
15600
15601 USB ACM DRIVER
15602 M:      Oliver Neukum <oneukum@suse.com>
15603 L:      linux-usb@vger.kernel.org
15604 S:      Maintained
15605 F:      Documentation/usb/acm.txt
15606 F:      drivers/usb/class/cdc-acm.*
15607
15608 USB AR5523 WIRELESS DRIVER
15609 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
15610 L:      linux-wireless@vger.kernel.org
15611 S:      Maintained
15612 F:      drivers/net/wireless/ath/ar5523/
15613
15614 USB ATTACHED SCSI
15615 M:      Oliver Neukum <oneukum@suse.com>
15616 L:      linux-usb@vger.kernel.org
15617 L:      linux-scsi@vger.kernel.org
15618 S:      Maintained
15619 F:      drivers/usb/storage/uas.c
15620
15621 USB CDC ETHERNET DRIVER
15622 M:      Oliver Neukum <oliver@neukum.org>
15623 L:      linux-usb@vger.kernel.org
15624 S:      Maintained
15625 F:      drivers/net/usb/cdc_*.c
15626 F:      include/uapi/linux/usb/cdc.h
15627
15628 USB CHAOSKEY DRIVER
15629 M:      Keith Packard <keithp@keithp.com>
15630 L:      linux-usb@vger.kernel.org
15631 S:      Maintained
15632 F:      drivers/usb/misc/chaoskey.c
15633
15634 USB CYPRESS C67X00 DRIVER
15635 M:      Peter Korsgaard <jacmet@sunsite.dk>
15636 L:      linux-usb@vger.kernel.org
15637 S:      Maintained
15638 F:      drivers/usb/c67x00/
15639
15640 USB DAVICOM DM9601 DRIVER
15641 M:      Peter Korsgaard <jacmet@sunsite.dk>
15642 L:      netdev@vger.kernel.org
15643 W:      http://www.linux-usb.org/usbnet
15644 S:      Maintained
15645 F:      drivers/net/usb/dm9601.c
15646
15647 USB DIAMOND RIO500 DRIVER
15648 M:      Cesar Miquel <miquel@df.uba.ar>
15649 L:      rio500-users@lists.sourceforge.net
15650 W:      http://rio500.sourceforge.net
15651 S:      Maintained
15652 F:      drivers/usb/misc/rio500*
15653
15654 USB EHCI DRIVER
15655 M:      Alan Stern <stern@rowland.harvard.edu>
15656 L:      linux-usb@vger.kernel.org
15657 S:      Maintained
15658 F:      Documentation/usb/ehci.txt
15659 F:      drivers/usb/host/ehci*
15660
15661 USB GADGET/PERIPHERAL SUBSYSTEM
15662 M:      Felipe Balbi <balbi@kernel.org>
15663 L:      linux-usb@vger.kernel.org
15664 W:      http://www.linux-usb.org/gadget
15665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
15666 S:      Maintained
15667 F:      drivers/usb/gadget/
15668 F:      include/linux/usb/gadget*
15669
15670 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
15671 M:      Jiri Kosina <jikos@kernel.org>
15672 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
15673 L:      linux-usb@vger.kernel.org
15674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
15675 S:      Maintained
15676 F:      Documentation/hid/hiddev.txt
15677 F:      drivers/hid/usbhid/
15678
15679 USB INTEL XHCI ROLE MUX DRIVER
15680 M:      Hans de Goede <hdegoede@redhat.com>
15681 L:      linux-usb@vger.kernel.org
15682 S:      Maintained
15683 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
15684
15685 USB ISP116X DRIVER
15686 M:      Olav Kongas <ok@artecdesign.ee>
15687 L:      linux-usb@vger.kernel.org
15688 S:      Maintained
15689 F:      drivers/usb/host/isp116x*
15690 F:      include/linux/usb/isp116x.h
15691
15692 USB LAN78XX ETHERNET DRIVER
15693 M:      Woojung Huh <woojung.huh@microchip.com>
15694 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
15695 L:      netdev@vger.kernel.org
15696 S:      Maintained
15697 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
15698 F:      drivers/net/usb/lan78xx.*
15699 F:      include/dt-bindings/net/microchip-lan78xx.h
15700
15701 USB MASS STORAGE DRIVER
15702 M:      Alan Stern <stern@rowland.harvard.edu>
15703 L:      linux-usb@vger.kernel.org
15704 L:      usb-storage@lists.one-eyed-alien.net
15705 S:      Maintained
15706 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
15707 F:      drivers/usb/storage/
15708
15709 USB MIDI DRIVER
15710 M:      Clemens Ladisch <clemens@ladisch.de>
15711 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15712 T:      git git://git.alsa-project.org/alsa-kernel.git
15713 S:      Maintained
15714 F:      sound/usb/midi.*
15715
15716 USB NETWORKING DRIVERS
15717 L:      linux-usb@vger.kernel.org
15718 S:      Odd Fixes
15719 F:      drivers/net/usb/
15720
15721 USB OHCI DRIVER
15722 M:      Alan Stern <stern@rowland.harvard.edu>
15723 L:      linux-usb@vger.kernel.org
15724 S:      Maintained
15725 F:      Documentation/usb/ohci.txt
15726 F:      drivers/usb/host/ohci*
15727
15728 USB OTG FSM (Finite State Machine)
15729 M:      Peter Chen <Peter.Chen@nxp.com>
15730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
15731 L:      linux-usb@vger.kernel.org
15732 S:      Maintained
15733 F:      drivers/usb/common/usb-otg-fsm.c
15734
15735 USB OVER IP DRIVER
15736 M:      Valentina Manea <valentina.manea.m@gmail.com>
15737 M:      Shuah Khan <shuah@kernel.org>
15738 L:      linux-usb@vger.kernel.org
15739 S:      Maintained
15740 F:      Documentation/usb/usbip_protocol.txt
15741 F:      drivers/usb/usbip/
15742 F:      tools/usb/usbip/
15743 F:      tools/testing/selftests/drivers/usb/usbip/
15744
15745 USB PEGASUS DRIVER
15746 M:      Petko Manolov <petkan@nucleusys.com>
15747 L:      linux-usb@vger.kernel.org
15748 L:      netdev@vger.kernel.org
15749 T:      git git://github.com/petkan/pegasus.git
15750 W:      https://github.com/petkan/pegasus
15751 S:      Maintained
15752 F:      drivers/net/usb/pegasus.*
15753
15754 USB PHY LAYER
15755 M:      Felipe Balbi <balbi@kernel.org>
15756 L:      linux-usb@vger.kernel.org
15757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
15758 S:      Maintained
15759 F:      drivers/usb/phy/
15760
15761 USB PRINTER DRIVER (usblp)
15762 M:      Pete Zaitcev <zaitcev@redhat.com>
15763 L:      linux-usb@vger.kernel.org
15764 S:      Supported
15765 F:      drivers/usb/class/usblp.c
15766
15767 USB QMI WWAN NETWORK DRIVER
15768 M:      Bjørn Mork <bjorn@mork.no>
15769 L:      netdev@vger.kernel.org
15770 S:      Maintained
15771 F:      Documentation/ABI/testing/sysfs-class-net-qmi
15772 F:      drivers/net/usb/qmi_wwan.c
15773
15774 USB RTL8150 DRIVER
15775 M:      Petko Manolov <petkan@nucleusys.com>
15776 L:      linux-usb@vger.kernel.org
15777 L:      netdev@vger.kernel.org
15778 T:      git git://github.com/petkan/rtl8150.git
15779 W:      https://github.com/petkan/rtl8150
15780 S:      Maintained
15781 F:      drivers/net/usb/rtl8150.c
15782
15783 USB SERIAL SUBSYSTEM
15784 M:      Johan Hovold <johan@kernel.org>
15785 L:      linux-usb@vger.kernel.org
15786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
15787 S:      Maintained
15788 F:      Documentation/usb/usb-serial.txt
15789 F:      drivers/usb/serial/
15790 F:      include/linux/usb/serial.h
15791
15792 USB SMSC75XX ETHERNET DRIVER
15793 M:      Steve Glendinning <steve.glendinning@shawell.net>
15794 L:      netdev@vger.kernel.org
15795 S:      Maintained
15796 F:      drivers/net/usb/smsc75xx.*
15797
15798 USB SMSC95XX ETHERNET DRIVER
15799 M:      Steve Glendinning <steve.glendinning@shawell.net>
15800 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
15801 L:      netdev@vger.kernel.org
15802 S:      Maintained
15803 F:      drivers/net/usb/smsc95xx.*
15804
15805 USB SUBSYSTEM
15806 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15807 L:      linux-usb@vger.kernel.org
15808 W:      http://www.linux-usb.org
15809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
15810 S:      Supported
15811 F:      Documentation/devicetree/bindings/usb/
15812 F:      Documentation/usb/
15813 F:      drivers/usb/
15814 F:      include/linux/usb.h
15815 F:      include/linux/usb/
15816
15817 USB TYPEC PI3USB30532 MUX DRIVER
15818 M:      Hans de Goede <hdegoede@redhat.com>
15819 L:      linux-usb@vger.kernel.org
15820 S:      Maintained
15821 F:      drivers/usb/typec/mux/pi3usb30532.c
15822
15823 USB TYPEC CLASS
15824 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
15825 L:      linux-usb@vger.kernel.org
15826 S:      Maintained
15827 F:      Documentation/ABI/testing/sysfs-class-typec
15828 F:      Documentation/driver-api/usb/typec.rst
15829 F:      drivers/usb/typec/
15830 F:      include/linux/usb/typec.h
15831
15832 USB TYPEC BUS FOR ALTERNATE MODES
15833 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
15834 L:      linux-usb@vger.kernel.org
15835 S:      Maintained
15836 F:      Documentation/ABI/testing/sysfs-bus-typec
15837 F:      Documentation/driver-api/usb/typec_bus.rst
15838 F:      drivers/usb/typec/altmodes/
15839 F:      include/linux/usb/typec_altmode.h
15840
15841 USB TYPEC PORT CONTROLLER DRIVERS
15842 M:      Guenter Roeck <linux@roeck-us.net>
15843 L:      linux-usb@vger.kernel.org
15844 S:      Maintained
15845 F:      drivers/usb/typec/tcpm/
15846
15847 USB UHCI DRIVER
15848 M:      Alan Stern <stern@rowland.harvard.edu>
15849 L:      linux-usb@vger.kernel.org
15850 S:      Maintained
15851 F:      drivers/usb/host/uhci*
15852
15853 USB VIDEO CLASS
15854 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15855 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
15856 L:      linux-media@vger.kernel.org
15857 T:      git git://linuxtv.org/media_tree.git
15858 W:      http://www.ideasonboard.org/uvc/
15859 S:      Maintained
15860 F:      drivers/media/usb/uvc/
15861 F:      include/uapi/linux/uvcvideo.h
15862
15863 USB VISION DRIVER
15864 M:      Hans Verkuil <hverkuil@xs4all.nl>
15865 L:      linux-media@vger.kernel.org
15866 T:      git git://linuxtv.org/media_tree.git
15867 W:      https://linuxtv.org
15868 S:      Odd Fixes
15869 F:      drivers/media/usb/usbvision/
15870
15871 USB WEBCAM GADGET
15872 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15873 L:      linux-usb@vger.kernel.org
15874 S:      Maintained
15875 F:      drivers/usb/gadget/function/*uvc*
15876 F:      drivers/usb/gadget/legacy/webcam.c
15877 F:      include/uapi/linux/usb/g_uvc.h
15878
15879 USB WIRELESS RNDIS DRIVER (rndis_wlan)
15880 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
15881 L:      linux-wireless@vger.kernel.org
15882 S:      Maintained
15883 F:      drivers/net/wireless/rndis_wlan.c
15884
15885 USB XHCI DRIVER
15886 M:      Mathias Nyman <mathias.nyman@intel.com>
15887 L:      linux-usb@vger.kernel.org
15888 S:      Supported
15889 F:      drivers/usb/host/xhci*
15890 F:      drivers/usb/host/pci-quirks*
15891
15892 USB ZD1201 DRIVER
15893 L:      linux-wireless@vger.kernel.org
15894 W:      http://linux-lc100020.sourceforge.net
15895 S:      Orphan
15896 F:      drivers/net/wireless/zydas/zd1201.*
15897
15898 USB ZR364XX DRIVER
15899 M:      Antoine Jacquet <royale@zerezo.com>
15900 L:      linux-usb@vger.kernel.org
15901 L:      linux-media@vger.kernel.org
15902 T:      git git://linuxtv.org/media_tree.git
15903 W:      http://royale.zerezo.com/zr364xx/
15904 S:      Maintained
15905 F:      Documentation/media/v4l-drivers/zr364xx*
15906 F:      drivers/media/usb/zr364xx/
15907
15908 USER-MODE LINUX (UML)
15909 M:      Jeff Dike <jdike@addtoit.com>
15910 M:      Richard Weinberger <richard@nod.at>
15911 L:      linux-um@lists.infradead.org
15912 W:      http://user-mode-linux.sourceforge.net
15913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
15914 S:      Maintained
15915 F:      Documentation/virtual/uml/
15916 F:      arch/um/
15917 F:      arch/x86/um/
15918 F:      fs/hostfs/
15919 F:      fs/hppfs/
15920
15921 USERSPACE COPYIN/COPYOUT (UIOVEC)
15922 M:      Alexander Viro <viro@zeniv.linux.org.uk>
15923 S:      Maintained
15924 F:      lib/iov_iter.c
15925 F:      include/linux/uio.h
15926
15927 USERSPACE DMA BUFFER DRIVER
15928 M:      Gerd Hoffmann <kraxel@redhat.com>
15929 S:      Maintained
15930 L:      dri-devel@lists.freedesktop.org
15931 F:      drivers/dma-buf/udmabuf.c
15932 F:      include/uapi/linux/udmabuf.h
15933 T:      git git://anongit.freedesktop.org/drm/drm-misc
15934
15935 USERSPACE I/O (UIO)
15936 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15937 S:      Maintained
15938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
15939 F:      Documentation/driver-api/uio-howto.rst
15940 F:      drivers/uio/
15941 F:      include/linux/uio_driver.h
15942
15943 UTIL-LINUX PACKAGE
15944 M:      Karel Zak <kzak@redhat.com>
15945 L:      util-linux@vger.kernel.org
15946 W:      http://en.wikipedia.org/wiki/Util-linux
15947 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
15948 S:      Maintained
15949
15950 UUID HELPERS
15951 M:      Christoph Hellwig <hch@lst.de>
15952 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15953 L:      linux-kernel@vger.kernel.org
15954 T:      git git://git.infradead.org/users/hch/uuid.git
15955 F:      lib/uuid.c
15956 F:      lib/test_uuid.c
15957 F:      include/linux/uuid.h
15958 F:      include/uapi/linux/uuid.h
15959 S:      Maintained
15960
15961 UVESAFB DRIVER
15962 M:      Michal Januszewski <spock@gentoo.org>
15963 L:      linux-fbdev@vger.kernel.org
15964 W:      https://github.com/mjanusz/v86d
15965 S:      Maintained
15966 F:      Documentation/fb/uvesafb.txt
15967 F:      drivers/video/fbdev/uvesafb.*
15968
15969 VF610 NAND DRIVER
15970 M:      Stefan Agner <stefan@agner.ch>
15971 L:      linux-mtd@lists.infradead.org
15972 S:      Supported
15973 F:      drivers/mtd/nand/raw/vf610_nfc.c
15974
15975 VFAT/FAT/MSDOS FILESYSTEM
15976 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
15977 S:      Maintained
15978 F:      Documentation/filesystems/vfat.txt
15979 F:      fs/fat/
15980
15981 VFIO DRIVER
15982 M:      Alex Williamson <alex.williamson@redhat.com>
15983 L:      kvm@vger.kernel.org
15984 T:      git git://github.com/awilliam/linux-vfio.git
15985 S:      Maintained
15986 F:      Documentation/vfio.txt
15987 F:      drivers/vfio/
15988 F:      include/linux/vfio.h
15989 F:      include/uapi/linux/vfio.h
15990
15991 VFIO MEDIATED DEVICE DRIVERS
15992 M:      Kirti Wankhede <kwankhede@nvidia.com>
15993 L:      kvm@vger.kernel.org
15994 S:      Maintained
15995 F:      Documentation/vfio-mediated-device.txt
15996 F:      drivers/vfio/mdev/
15997 F:      include/linux/mdev.h
15998 F:      samples/vfio-mdev/
15999
16000 VFIO PLATFORM DRIVER
16001 M:      Eric Auger <eric.auger@redhat.com>
16002 L:      kvm@vger.kernel.org
16003 S:      Maintained
16004 F:      drivers/vfio/platform/
16005
16006 VGA_SWITCHEROO
16007 R:      Lukas Wunner <lukas@wunner.de>
16008 S:      Maintained
16009 F:      Documentation/gpu/vga-switcheroo.rst
16010 F:      drivers/gpu/vga/vga_switcheroo.c
16011 F:      include/linux/vga_switcheroo.h
16012 T:      git git://anongit.freedesktop.org/drm/drm-misc
16013
16014 VIA RHINE NETWORK DRIVER
16015 S:      Orphan
16016 F:      drivers/net/ethernet/via/via-rhine.c
16017
16018 VIA SD/MMC CARD CONTROLLER DRIVER
16019 M:      Bruce Chang <brucechang@via.com.tw>
16020 M:      Harald Welte <HaraldWelte@viatech.com>
16021 S:      Maintained
16022 F:      drivers/mmc/host/via-sdmmc.c
16023
16024 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
16025 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
16026 L:      linux-fbdev@vger.kernel.org
16027 S:      Maintained
16028 F:      include/linux/via-core.h
16029 F:      include/linux/via-gpio.h
16030 F:      include/linux/via_i2c.h
16031 F:      drivers/video/fbdev/via/
16032
16033 VIA VELOCITY NETWORK DRIVER
16034 M:      Francois Romieu <romieu@fr.zoreil.com>
16035 L:      netdev@vger.kernel.org
16036 S:      Maintained
16037 F:      drivers/net/ethernet/via/via-velocity.*
16038
16039 VICODEC VIRTUAL CODEC DRIVER
16040 M:      Hans Verkuil <hans.verkuil@cisco.com>
16041 L:      linux-media@vger.kernel.org
16042 T:      git git://linuxtv.org/media_tree.git
16043 W:      https://linuxtv.org
16044 S:      Maintained
16045 F:      drivers/media/platform/vicodec/*
16046
16047 VIDEO MULTIPLEXER DRIVER
16048 M:      Philipp Zabel <p.zabel@pengutronix.de>
16049 L:      linux-media@vger.kernel.org
16050 S:      Maintained
16051 F:      drivers/media/platform/video-mux.c
16052
16053 VIDEO I2C POLLING DRIVER
16054 M:      Matt Ranostay <matt.ranostay@konsulko.com>
16055 L:      linux-media@vger.kernel.org
16056 S:      Maintained
16057 F:      drivers/media/i2c/video-i2c.c
16058
16059 VIDEOBUF2 FRAMEWORK
16060 M:      Pawel Osciak <pawel@osciak.com>
16061 M:      Marek Szyprowski <m.szyprowski@samsung.com>
16062 M:      Kyungmin Park <kyungmin.park@samsung.com>
16063 L:      linux-media@vger.kernel.org
16064 S:      Maintained
16065 F:      drivers/media/common/videobuf2/*
16066 F:      include/media/videobuf2-*
16067
16068 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
16069 M:      Helen Koike <helen.koike@collabora.com>
16070 L:      linux-media@vger.kernel.org
16071 T:      git git://linuxtv.org/media_tree.git
16072 W:      https://linuxtv.org
16073 S:      Maintained
16074 F:      drivers/media/platform/vimc/*
16075
16076 VIRT LIB
16077 M:      Alex Williamson <alex.williamson@redhat.com>
16078 M:      Paolo Bonzini <pbonzini@redhat.com>
16079 L:      kvm@vger.kernel.org
16080 S:      Supported
16081 F:      virt/lib/
16082
16083 VIRTIO AND VHOST VSOCK DRIVER
16084 M:      Stefan Hajnoczi <stefanha@redhat.com>
16085 L:      kvm@vger.kernel.org
16086 L:      virtualization@lists.linux-foundation.org
16087 L:      netdev@vger.kernel.org
16088 S:      Maintained
16089 F:      include/linux/virtio_vsock.h
16090 F:      include/uapi/linux/virtio_vsock.h
16091 F:      include/uapi/linux/vsockmon.h
16092 F:      include/uapi/linux/vm_sockets_diag.h
16093 F:      net/vmw_vsock/diag.c
16094 F:      net/vmw_vsock/af_vsock_tap.c
16095 F:      net/vmw_vsock/virtio_transport_common.c
16096 F:      net/vmw_vsock/virtio_transport.c
16097 F:      drivers/net/vsockmon.c
16098 F:      drivers/vhost/vsock.c
16099 F:      tools/testing/vsock/
16100
16101 VIRTIO CONSOLE DRIVER
16102 M:      Amit Shah <amit@kernel.org>
16103 L:      virtualization@lists.linux-foundation.org
16104 S:      Maintained
16105 F:      drivers/char/virtio_console.c
16106 F:      include/linux/virtio_console.h
16107 F:      include/uapi/linux/virtio_console.h
16108
16109 VIRTIO CORE, NET AND BLOCK DRIVERS
16110 M:      "Michael S. Tsirkin" <mst@redhat.com>
16111 M:      Jason Wang <jasowang@redhat.com>
16112 L:      virtualization@lists.linux-foundation.org
16113 S:      Maintained
16114 F:      Documentation/devicetree/bindings/virtio/
16115 F:      drivers/virtio/
16116 F:      tools/virtio/
16117 F:      drivers/net/virtio_net.c
16118 F:      drivers/block/virtio_blk.c
16119 F:      include/linux/virtio*.h
16120 F:      include/uapi/linux/virtio_*.h
16121 F:      drivers/crypto/virtio/
16122 F:      mm/balloon_compaction.c
16123
16124 VIRTIO CRYPTO DRIVER
16125 M:      Gonglei <arei.gonglei@huawei.com>
16126 L:      virtualization@lists.linux-foundation.org
16127 L:      linux-crypto@vger.kernel.org
16128 S:      Maintained
16129 F:      drivers/crypto/virtio/
16130 F:      include/uapi/linux/virtio_crypto.h
16131
16132 VIRTIO DRIVERS FOR S390
16133 M:      Cornelia Huck <cohuck@redhat.com>
16134 M:      Halil Pasic <pasic@linux.ibm.com>
16135 L:      linux-s390@vger.kernel.org
16136 L:      virtualization@lists.linux-foundation.org
16137 L:      kvm@vger.kernel.org
16138 S:      Supported
16139 F:      drivers/s390/virtio/
16140 F:      arch/s390/include/uapi/asm/virtio-ccw.h
16141
16142 VIRTIO GPU DRIVER
16143 M:      David Airlie <airlied@linux.ie>
16144 M:      Gerd Hoffmann <kraxel@redhat.com>
16145 L:      dri-devel@lists.freedesktop.org
16146 L:      virtualization@lists.linux-foundation.org
16147 T:      git git://anongit.freedesktop.org/drm/drm-misc
16148 S:      Maintained
16149 F:      drivers/gpu/drm/virtio/
16150 F:      include/uapi/linux/virtio_gpu.h
16151
16152 VIRTIO HOST (VHOST)
16153 M:      "Michael S. Tsirkin" <mst@redhat.com>
16154 M:      Jason Wang <jasowang@redhat.com>
16155 L:      kvm@vger.kernel.org
16156 L:      virtualization@lists.linux-foundation.org
16157 L:      netdev@vger.kernel.org
16158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
16159 S:      Maintained
16160 F:      drivers/vhost/
16161 F:      include/uapi/linux/vhost.h
16162
16163 VIRTIO INPUT DRIVER
16164 M:      Gerd Hoffmann <kraxel@redhat.com>
16165 S:      Maintained
16166 F:      drivers/virtio/virtio_input.c
16167 F:      include/uapi/linux/virtio_input.h
16168
16169 VIRTUAL BOX GUEST DEVICE DRIVER
16170 M:      Hans de Goede <hdegoede@redhat.com>
16171 M:      Arnd Bergmann <arnd@arndb.de>
16172 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16173 S:      Maintained
16174 F:      include/linux/vbox_utils.h
16175 F:      include/uapi/linux/vbox*.h
16176 F:      drivers/virt/vboxguest/
16177
16178 VIRTUAL SERIO DEVICE DRIVER
16179 M:      Stephen Chandler Paul <thatslyude@gmail.com>
16180 S:      Maintained
16181 F:      drivers/input/serio/userio.c
16182 F:      include/uapi/linux/userio.h
16183
16184 VIVID VIRTUAL VIDEO DRIVER
16185 M:      Hans Verkuil <hverkuil@xs4all.nl>
16186 L:      linux-media@vger.kernel.org
16187 T:      git git://linuxtv.org/media_tree.git
16188 W:      https://linuxtv.org
16189 S:      Maintained
16190 F:      drivers/media/platform/vivid/*
16191
16192 VLYNQ BUS
16193 M:      Florian Fainelli <f.fainelli@gmail.com>
16194 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
16195 S:      Maintained
16196 F:      drivers/vlynq/vlynq.c
16197 F:      include/linux/vlynq.h
16198
16199 VME SUBSYSTEM
16200 M:      Martyn Welch <martyn@welchs.me.uk>
16201 M:      Manohar Vanga <manohar.vanga@gmail.com>
16202 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16203 L:      devel@driverdev.osuosl.org
16204 S:      Maintained
16205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
16206 F:      Documentation/driver-api/vme.rst
16207 F:      drivers/staging/vme/
16208 F:      drivers/vme/
16209 F:      include/linux/vme*
16210
16211 VMWARE BALLOON DRIVER
16212 M:      Xavier Deguillard <xdeguillard@vmware.com>
16213 M:      Nadav Amit <namit@vmware.com>
16214 M:      "VMware, Inc." <pv-drivers@vmware.com>
16215 L:      linux-kernel@vger.kernel.org
16216 S:      Maintained
16217 F:      drivers/misc/vmw_balloon.c
16218
16219 VMWARE HYPERVISOR INTERFACE
16220 M:      Alok Kataria <akataria@vmware.com>
16221 L:      virtualization@lists.linux-foundation.org
16222 S:      Supported
16223 F:      arch/x86/kernel/cpu/vmware.c
16224
16225 VMWARE PVRDMA DRIVER
16226 M:      Adit Ranadive <aditr@vmware.com>
16227 M:      VMware PV-Drivers <pv-drivers@vmware.com>
16228 L:      linux-rdma@vger.kernel.org
16229 S:      Maintained
16230 F:      drivers/infiniband/hw/vmw_pvrdma/
16231
16232 VMware PVSCSI driver
16233 M:      Jim Gill <jgill@vmware.com>
16234 M:      VMware PV-Drivers <pv-drivers@vmware.com>
16235 L:      linux-scsi@vger.kernel.org
16236 S:      Maintained
16237 F:      drivers/scsi/vmw_pvscsi.c
16238 F:      drivers/scsi/vmw_pvscsi.h
16239
16240 VMWARE VMMOUSE SUBDRIVER
16241 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
16242 M:      "VMware, Inc." <pv-drivers@vmware.com>
16243 L:      linux-input@vger.kernel.org
16244 S:      Maintained
16245 F:      drivers/input/mouse/vmmouse.c
16246 F:      drivers/input/mouse/vmmouse.h
16247
16248 VMWARE VMXNET3 ETHERNET DRIVER
16249 M:      Ronak Doshi <doshir@vmware.com>
16250 M:      "VMware, Inc." <pv-drivers@vmware.com>
16251 L:      netdev@vger.kernel.org
16252 S:      Maintained
16253 F:      drivers/net/vmxnet3/
16254
16255 VOCORE VOCORE2 BOARD
16256 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
16257 L:      linux-mips@vger.kernel.org
16258 S:      Maintained
16259 F:      arch/mips/boot/dts/ralink/vocore2.dts
16260
16261 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
16262 M:      Liam Girdwood <lgirdwood@gmail.com>
16263 M:      Mark Brown <broonie@kernel.org>
16264 L:      linux-kernel@vger.kernel.org
16265 W:      http://www.slimlogic.co.uk/?p=48
16266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
16267 S:      Supported
16268 F:      Documentation/devicetree/bindings/regulator/
16269 F:      Documentation/power/regulator/
16270 F:      drivers/regulator/
16271 F:      include/dt-bindings/regulator/
16272 F:      include/linux/regulator/
16273
16274 VRF
16275 M:      David Ahern <dsa@cumulusnetworks.com>
16276 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
16277 L:      netdev@vger.kernel.org
16278 S:      Maintained
16279 F:      drivers/net/vrf.c
16280 F:      Documentation/networking/vrf.txt
16281
16282 VT1211 HARDWARE MONITOR DRIVER
16283 M:      Juerg Haefliger <juergh@gmail.com>
16284 L:      linux-hwmon@vger.kernel.org
16285 S:      Maintained
16286 F:      Documentation/hwmon/vt1211
16287 F:      drivers/hwmon/vt1211.c
16288
16289 VT8231 HARDWARE MONITOR DRIVER
16290 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
16291 L:      linux-hwmon@vger.kernel.org
16292 S:      Maintained
16293 F:      drivers/hwmon/vt8231.c
16294
16295 VUB300 USB to SDIO/SD/MMC bridge chip
16296 M:      Tony Olech <tony.olech@elandigitalsystems.com>
16297 L:      linux-mmc@vger.kernel.org
16298 L:      linux-usb@vger.kernel.org
16299 S:      Supported
16300 F:      drivers/mmc/host/vub300.c
16301
16302 W1 DALLAS'S 1-WIRE BUS
16303 M:      Evgeniy Polyakov <zbr@ioremap.net>
16304 S:      Maintained
16305 F:      Documentation/devicetree/bindings/w1/
16306 F:      Documentation/w1/
16307 F:      drivers/w1/
16308 F:      include/linux/w1.h
16309
16310 W83791D HARDWARE MONITORING DRIVER
16311 M:      Marc Hulsman <m.hulsman@tudelft.nl>
16312 L:      linux-hwmon@vger.kernel.org
16313 S:      Maintained
16314 F:      Documentation/hwmon/w83791d
16315 F:      drivers/hwmon/w83791d.c
16316
16317 W83793 HARDWARE MONITORING DRIVER
16318 M:      Rudolf Marek <r.marek@assembler.cz>
16319 L:      linux-hwmon@vger.kernel.org
16320 S:      Maintained
16321 F:      Documentation/hwmon/w83793
16322 F:      drivers/hwmon/w83793.c
16323
16324 W83795 HARDWARE MONITORING DRIVER
16325 M:      Jean Delvare <jdelvare@suse.com>
16326 L:      linux-hwmon@vger.kernel.org
16327 S:      Maintained
16328 F:      drivers/hwmon/w83795.c
16329
16330 W83L51xD SD/MMC CARD INTERFACE DRIVER
16331 M:      Pierre Ossman <pierre@ossman.eu>
16332 S:      Maintained
16333 F:      drivers/mmc/host/wbsd.*
16334
16335 WACOM PROTOCOL 4 SERIAL TABLETS
16336 M:      Julian Squires <julian@cipht.net>
16337 M:      Hans de Goede <hdegoede@redhat.com>
16338 L:      linux-input@vger.kernel.org
16339 S:      Maintained
16340 F:      drivers/input/tablet/wacom_serial4.c
16341
16342 WATCHDOG DEVICE DRIVERS
16343 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
16344 M:      Guenter Roeck <linux@roeck-us.net>
16345 L:      linux-watchdog@vger.kernel.org
16346 W:      http://www.linux-watchdog.org/
16347 T:      git git://www.linux-watchdog.org/linux-watchdog.git
16348 S:      Maintained
16349 F:      Documentation/devicetree/bindings/watchdog/
16350 F:      Documentation/watchdog/
16351 F:      drivers/watchdog/
16352 F:      include/linux/watchdog.h
16353 F:      include/uapi/linux/watchdog.h
16354
16355 WHISKEYCOVE PMIC GPIO DRIVER
16356 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
16357 L:      linux-gpio@vger.kernel.org
16358 S:      Maintained
16359 F:      drivers/gpio/gpio-wcove.c
16360
16361 WIIMOTE HID DRIVER
16362 M:      David Herrmann <dh.herrmann@googlemail.com>
16363 L:      linux-input@vger.kernel.org
16364 S:      Maintained
16365 F:      drivers/hid/hid-wiimote*
16366
16367 WILOCITY WIL6210 WIRELESS DRIVER
16368 M:      Maya Erez <merez@codeaurora.org>
16369 L:      linux-wireless@vger.kernel.org
16370 L:      wil6210@qti.qualcomm.com
16371 S:      Supported
16372 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
16373 F:      drivers/net/wireless/ath/wil6210/
16374
16375 WIMAX STACK
16376 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
16377 M:      linux-wimax@intel.com
16378 L:      wimax@linuxwimax.org (subscribers-only)
16379 S:      Supported
16380 W:      http://linuxwimax.org
16381 F:      Documentation/wimax/README.wimax
16382 F:      include/linux/wimax/debug.h
16383 F:      include/net/wimax.h
16384 F:      include/uapi/linux/wimax.h
16385 F:      net/wimax/
16386
16387 WINBOND CIR DRIVER
16388 M:      David Härdeman <david@hardeman.nu>
16389 S:      Maintained
16390 F:      drivers/media/rc/winbond-cir.c
16391
16392 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
16393 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
16394 L:      linux-watchdog@vger.kernel.org
16395 S:      Maintained
16396 F:      drivers/watchdog/ebc-c384_wdt.c
16397
16398 WINSYSTEMS WS16C48 GPIO DRIVER
16399 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
16400 L:      linux-gpio@vger.kernel.org
16401 S:      Maintained
16402 F:      drivers/gpio/gpio-ws16c48.c
16403
16404 WISTRON LAPTOP BUTTON DRIVER
16405 M:      Miloslav Trmac <mitr@volny.cz>
16406 S:      Maintained
16407 F:      drivers/input/misc/wistron_btns.c
16408
16409 WL3501 WIRELESS PCMCIA CARD DRIVER
16410 L:      linux-wireless@vger.kernel.org
16411 S:      Odd fixes
16412 F:      drivers/net/wireless/wl3501*
16413
16414 WOLFSON MICROELECTRONICS DRIVERS
16415 L:      patches@opensource.cirrus.com
16416 T:      git https://github.com/CirrusLogic/linux-drivers.git
16417 W:      https://github.com/CirrusLogic/linux-drivers/wiki
16418 S:      Supported
16419 F:      Documentation/hwmon/wm83??
16420 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
16421 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
16422 F:      Documentation/devicetree/bindings/mfd/arizona.txt
16423 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
16424 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
16425 F:      arch/arm/mach-s3c64xx/mach-crag6410*
16426 F:      drivers/clk/clk-wm83*.c
16427 F:      drivers/extcon/extcon-arizona.c
16428 F:      drivers/leds/leds-wm83*.c
16429 F:      drivers/gpio/gpio-*wm*.c
16430 F:      drivers/gpio/gpio-arizona.c
16431 F:      drivers/hwmon/wm83??-hwmon.c
16432 F:      drivers/input/misc/wm831x-on.c
16433 F:      drivers/input/touchscreen/wm831x-ts.c
16434 F:      drivers/input/touchscreen/wm97*.c
16435 F:      drivers/mfd/arizona*
16436 F:      drivers/mfd/wm*.c
16437 F:      drivers/mfd/cs47l24*
16438 F:      drivers/power/supply/wm83*.c
16439 F:      drivers/rtc/rtc-wm83*.c
16440 F:      drivers/regulator/wm8*.c
16441 F:      drivers/regulator/arizona*
16442 F:      drivers/video/backlight/wm83*_bl.c
16443 F:      drivers/watchdog/wm83*_wdt.c
16444 F:      include/linux/mfd/arizona/
16445 F:      include/linux/mfd/wm831x/
16446 F:      include/linux/mfd/wm8350/
16447 F:      include/linux/mfd/wm8400*
16448 F:      include/linux/regulator/arizona*
16449 F:      include/linux/wm97xx.h
16450 F:      include/sound/wm????.h
16451 F:      sound/soc/codecs/arizona.?
16452 F:      sound/soc/codecs/wm*
16453 F:      sound/soc/codecs/cs47l24*
16454
16455 WORKQUEUE
16456 M:      Tejun Heo <tj@kernel.org>
16457 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
16459 S:      Maintained
16460 F:      include/linux/workqueue.h
16461 F:      kernel/workqueue.c
16462 F:      Documentation/core-api/workqueue.rst
16463
16464 X-POWERS AXP288 PMIC DRIVERS
16465 M:      Hans de Goede <hdegoede@redhat.com>
16466 S:      Maintained
16467 N:      axp288
16468 F:      drivers/acpi/pmic/intel_pmic_xpower.c
16469
16470 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
16471 M:      Chen-Yu Tsai <wens@csie.org>
16472 L:      linux-kernel@vger.kernel.org
16473 S:      Maintained
16474 N:      axp[128]
16475
16476 X.25 NETWORK LAYER
16477 M:      Andrew Hendry <andrew.hendry@gmail.com>
16478 L:      linux-x25@vger.kernel.org
16479 S:      Odd Fixes
16480 F:      Documentation/networking/x25*
16481 F:      include/net/x25*
16482 F:      net/x25/
16483
16484 X86 ARCHITECTURE (32-BIT AND 64-BIT)
16485 M:      Thomas Gleixner <tglx@linutronix.de>
16486 M:      Ingo Molnar <mingo@redhat.com>
16487 M:      Borislav Petkov <bp@alien8.de>
16488 R:      "H. Peter Anvin" <hpa@zytor.com>
16489 M:      x86@kernel.org
16490 L:      linux-kernel@vger.kernel.org
16491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
16492 S:      Maintained
16493 F:      Documentation/devicetree/bindings/x86/
16494 F:      Documentation/x86/
16495 F:      arch/x86/
16496
16497 X86 ENTRY CODE
16498 M:      Andy Lutomirski <luto@kernel.org>
16499 L:      linux-kernel@vger.kernel.org
16500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
16501 S:      Maintained
16502 F:      arch/x86/entry/
16503
16504 X86 MCE INFRASTRUCTURE
16505 M:      Tony Luck <tony.luck@intel.com>
16506 M:      Borislav Petkov <bp@alien8.de>
16507 L:      linux-edac@vger.kernel.org
16508 S:      Maintained
16509 F:      arch/x86/kernel/cpu/mcheck/*
16510
16511 X86 MICROCODE UPDATE SUPPORT
16512 M:      Borislav Petkov <bp@alien8.de>
16513 S:      Maintained
16514 F:      arch/x86/kernel/cpu/microcode/*
16515
16516 X86 MM
16517 M:      Dave Hansen <dave.hansen@linux.intel.com>
16518 M:      Andy Lutomirski <luto@kernel.org>
16519 M:      Peter Zijlstra <peterz@infradead.org>
16520 L:      linux-kernel@vger.kernel.org
16521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
16522 S:      Maintained
16523 F:      arch/x86/mm/
16524
16525 X86 PLATFORM DRIVERS
16526 M:      Darren Hart <dvhart@infradead.org>
16527 M:      Andy Shevchenko <andy@infradead.org>
16528 L:      platform-driver-x86@vger.kernel.org
16529 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
16530 S:      Maintained
16531 F:      drivers/platform/x86/
16532 F:      drivers/platform/olpc/
16533
16534 X86 VDSO
16535 M:      Andy Lutomirski <luto@kernel.org>
16536 L:      linux-kernel@vger.kernel.org
16537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
16538 S:      Maintained
16539 F:      arch/x86/entry/vdso/
16540
16541 XARRAY
16542 M:      Matthew Wilcox <willy@infradead.org>
16543 L:      linux-fsdevel@vger.kernel.org
16544 S:      Supported
16545 F:      Documentation/core-api/xarray.rst
16546 F:      lib/idr.c
16547 F:      lib/xarray.c
16548 F:      include/linux/idr.h
16549 F:      include/linux/xarray.h
16550 F:      tools/testing/radix-tree
16551
16552 XBOX DVD IR REMOTE
16553 M:      Benjamin Valentin <benpicco@googlemail.com>
16554 S:      Maintained
16555 F:      drivers/media/rc/xbox_remote.c
16556 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
16557
16558 XC2028/3028 TUNER DRIVER
16559 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16560 L:      linux-media@vger.kernel.org
16561 W:      https://linuxtv.org
16562 T:      git git://linuxtv.org/media_tree.git
16563 S:      Maintained
16564 F:      drivers/media/tuners/tuner-xc2028.*
16565
16566 XDP SOCKETS (AF_XDP)
16567 M:      Björn Töpel <bjorn.topel@intel.com>
16568 M:      Magnus Karlsson <magnus.karlsson@intel.com>
16569 L:      netdev@vger.kernel.org
16570 S:      Maintained
16571 F:      kernel/bpf/xskmap.c
16572 F:      net/xdp/
16573
16574 XEN BLOCK SUBSYSTEM
16575 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16576 M:      Roger Pau Monné <roger.pau@citrix.com>
16577 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
16578 S:      Supported
16579 F:      drivers/block/xen-blkback/*
16580 F:      drivers/block/xen*
16581
16582 XEN HYPERVISOR ARM
16583 M:      Stefano Stabellini <sstabellini@kernel.org>
16584 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
16585 S:      Maintained
16586 F:      arch/arm/xen/
16587 F:      arch/arm/include/asm/xen/
16588
16589 XEN HYPERVISOR ARM64
16590 M:      Stefano Stabellini <sstabellini@kernel.org>
16591 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
16592 S:      Maintained
16593 F:      arch/arm64/xen/
16594 F:      arch/arm64/include/asm/xen/
16595
16596 XEN HYPERVISOR INTERFACE
16597 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
16598 M:      Juergen Gross <jgross@suse.com>
16599 R:      Stefano Stabellini <sstabellini@kernel.org>
16600 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
16601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
16602 S:      Supported
16603 F:      arch/x86/xen/
16604 F:      arch/x86/platform/pvh/
16605 F:      drivers/*/xen-*front.c
16606 F:      drivers/xen/
16607 F:      arch/x86/include/asm/xen/
16608 F:      arch/x86/include/asm/pvclock-abi.h
16609 F:      include/xen/
16610 F:      include/uapi/xen/
16611 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
16612 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
16613
16614 XEN NETWORK BACKEND DRIVER
16615 M:      Wei Liu <wei.liu2@citrix.com>
16616 M:      Paul Durrant <paul.durrant@citrix.com>
16617 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
16618 L:      netdev@vger.kernel.org
16619 S:      Supported
16620 F:      drivers/net/xen-netback/*
16621
16622 XEN PCI SUBSYSTEM
16623 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16624 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
16625 S:      Supported
16626 F:      arch/x86/pci/*xen*
16627 F:      drivers/pci/*xen*
16628
16629 XEN PVSCSI DRIVERS
16630 M:      Juergen Gross <jgross@suse.com>
16631 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
16632 L:      linux-scsi@vger.kernel.org
16633 S:      Supported
16634 F:      drivers/scsi/xen-scsifront.c
16635 F:      drivers/xen/xen-scsiback.c
16636 F:      include/xen/interface/io/vscsiif.h
16637
16638 XEN SWIOTLB SUBSYSTEM
16639 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16640 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
16641 L:      iommu@lists.linux-foundation.org
16642 S:      Supported
16643 F:      arch/x86/xen/*swiotlb*
16644 F:      drivers/xen/*swiotlb*
16645
16646 XEN SOUND FRONTEND DRIVER
16647 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
16648 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
16649 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16650 S:      Supported
16651 F:      sound/xen/*
16652
16653 XFS FILESYSTEM
16654 M:      Darrick J. Wong <darrick.wong@oracle.com>
16655 M:      linux-xfs@vger.kernel.org
16656 L:      linux-xfs@vger.kernel.org
16657 W:      http://xfs.org/
16658 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
16659 S:      Supported
16660 F:      Documentation/filesystems/xfs.txt
16661 F:      fs/xfs/
16662
16663 XILINX AXI ETHERNET DRIVER
16664 M:      Anirudha Sarangi <anirudh@xilinx.com>
16665 M:      John Linn <John.Linn@xilinx.com>
16666 S:      Maintained
16667 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
16668
16669 XILINX UARTLITE SERIAL DRIVER
16670 M:      Peter Korsgaard <jacmet@sunsite.dk>
16671 L:      linux-serial@vger.kernel.org
16672 S:      Maintained
16673 F:      drivers/tty/serial/uartlite.c
16674
16675 XILINX VIDEO IP CORES
16676 M:      Hyun Kwon <hyun.kwon@xilinx.com>
16677 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
16678 L:      linux-media@vger.kernel.org
16679 T:      git git://linuxtv.org/media_tree.git
16680 S:      Supported
16681 F:      Documentation/devicetree/bindings/media/xilinx/
16682 F:      drivers/media/platform/xilinx/
16683 F:      include/uapi/linux/xilinx-v4l2-controls.h
16684
16685 XILLYBUS DRIVER
16686 M:      Eli Billauer <eli.billauer@gmail.com>
16687 L:      linux-kernel@vger.kernel.org
16688 S:      Supported
16689 F:      drivers/char/xillybus/
16690
16691 XLP9XX I2C DRIVER
16692 M:      George Cherian <george.cherian@cavium.com>
16693 M:      Jan Glauber <jglauber@cavium.com>
16694 L:      linux-i2c@vger.kernel.org
16695 W:      http://www.cavium.com
16696 S:      Supported
16697 F:      drivers/i2c/busses/i2c-xlp9xx.c
16698
16699 XRA1403 GPIO EXPANDER
16700 M:      Nandor Han <nandor.han@ge.com>
16701 M:      Semi Malinen <semi.malinen@ge.com>
16702 L:      linux-gpio@vger.kernel.org
16703 S:      Maintained
16704 F:      drivers/gpio/gpio-xra1403.c
16705 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
16706
16707 XTENSA XTFPGA PLATFORM SUPPORT
16708 M:      Max Filippov <jcmvbkbc@gmail.com>
16709 L:      linux-xtensa@linux-xtensa.org
16710 S:      Maintained
16711 F:      drivers/spi/spi-xtensa-xtfpga.c
16712 F:      sound/soc/xtensa/xtfpga-i2s.c
16713
16714 YAM DRIVER FOR AX.25
16715 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
16716 L:      linux-hams@vger.kernel.org
16717 S:      Maintained
16718 F:      drivers/net/hamradio/yam*
16719 F:      include/linux/yam.h
16720
16721 YAMA SECURITY MODULE
16722 M:      Kees Cook <keescook@chromium.org>
16723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
16724 S:      Supported
16725 F:      security/yama/
16726 F:      Documentation/admin-guide/LSM/Yama.rst
16727
16728 YEALINK PHONE DRIVER
16729 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
16730 L:      usbb2k-api-dev@nongnu.org
16731 S:      Maintained
16732 F:      Documentation/input/devices/yealink.rst
16733 F:      drivers/input/misc/yealink.*
16734
16735 Z8530 DRIVER FOR AX.25
16736 M:      Joerg Reuter <jreuter@yaina.de>
16737 W:      http://yaina.de/jreuter/
16738 W:      http://www.qsl.net/dl1bke/
16739 L:      linux-hams@vger.kernel.org
16740 S:      Maintained
16741 F:      Documentation/networking/z8530drv.txt
16742 F:      drivers/net/hamradio/*scc.c
16743 F:      drivers/net/hamradio/z8530.h
16744
16745 ZBUD COMPRESSED PAGE ALLOCATOR
16746 M:      Seth Jennings <sjenning@redhat.com>
16747 M:      Dan Streetman <ddstreet@ieee.org>
16748 L:      linux-mm@kvack.org
16749 S:      Maintained
16750 F:      mm/zbud.c
16751 F:      include/linux/zbud.h
16752
16753 ZD1211RW WIRELESS DRIVER
16754 M:      Daniel Drake <dsd@gentoo.org>
16755 M:      Ulrich Kunitz <kune@deine-taler.de>
16756 W:      http://zd1211.ath.cx/wiki/DriverRewrite
16757 L:      linux-wireless@vger.kernel.org
16758 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
16759 S:      Maintained
16760 F:      drivers/net/wireless/zydas/zd1211rw/
16761
16762 ZD1301 MEDIA DRIVER
16763 M:      Antti Palosaari <crope@iki.fi>
16764 L:      linux-media@vger.kernel.org
16765 W:      https://linuxtv.org/
16766 W:      http://palosaari.fi/linux/
16767 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16768 S:      Maintained
16769 F:      drivers/media/usb/dvb-usb-v2/zd1301*
16770
16771 ZD1301_DEMOD MEDIA DRIVER
16772 M:      Antti Palosaari <crope@iki.fi>
16773 L:      linux-media@vger.kernel.org
16774 W:      https://linuxtv.org/
16775 W:      http://palosaari.fi/linux/
16776 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16777 S:      Maintained
16778 F:      drivers/media/dvb-frontends/zd1301_demod*
16779
16780 ZPOOL COMPRESSED PAGE STORAGE API
16781 M:      Dan Streetman <ddstreet@ieee.org>
16782 L:      linux-mm@kvack.org
16783 S:      Maintained
16784 F:      mm/zpool.c
16785 F:      include/linux/zpool.h
16786
16787 ZR36067 VIDEO FOR LINUX DRIVER
16788 L:      mjpeg-users@lists.sourceforge.net
16789 L:      linux-media@vger.kernel.org
16790 W:      http://mjpeg.sourceforge.net/driver-zoran/
16791 T:      hg https://linuxtv.org/hg/v4l-dvb
16792 S:      Odd Fixes
16793 F:      drivers/staging/media/zoran/
16794
16795 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
16796 M:      Minchan Kim <minchan@kernel.org>
16797 M:      Nitin Gupta <ngupta@vflare.org>
16798 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
16799 L:      linux-kernel@vger.kernel.org
16800 S:      Maintained
16801 F:      drivers/block/zram/
16802 F:      Documentation/blockdev/zram.txt
16803
16804 ZS DECSTATION Z85C30 SERIAL DRIVER
16805 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
16806 S:      Maintained
16807 F:      drivers/tty/serial/zs.*
16808
16809 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
16810 M:      Minchan Kim <minchan@kernel.org>
16811 M:      Nitin Gupta <ngupta@vflare.org>
16812 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
16813 L:      linux-mm@kvack.org
16814 S:      Maintained
16815 F:      mm/zsmalloc.c
16816 F:      include/linux/zsmalloc.h
16817 F:      Documentation/vm/zsmalloc.rst
16818
16819 ZSWAP COMPRESSED SWAP CACHING
16820 M:      Seth Jennings <sjenning@redhat.com>
16821 M:      Dan Streetman <ddstreet@ieee.org>
16822 L:      linux-mm@kvack.org
16823 S:      Maintained
16824 F:      mm/zswap.c
16825
16826 THE REST
16827 M:      Linus Torvalds <torvalds@linux-foundation.org>
16828 L:      linux-kernel@vger.kernel.org
16829 Q:      http://patchwork.kernel.org/project/LKML/list/
16830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
16831 S:      Buried alive in reporters
16832 F:      *
16833 F:      */