]> asedeno.scripts.mit.edu Git - linux.git/blob - MAINTAINERS
Merge tag 'regmap-v5.5' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap
[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*
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 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-counter-104-quad-8
276 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
277 F:      drivers/counter/104-quad-8.c
278
279 ACCES PCI-IDIO-16 GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-pci-idio-16.c
284
285 ACCES PCIe-IDIO-24 GPIO DRIVER
286 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-pcie-idio-24.c
290
291 ACENIC DRIVER
292 M:      Jes Sorensen <jes@trained-monkey.org>
293 L:      linux-acenic@sunsite.dk
294 S:      Maintained
295 F:      drivers/net/ethernet/alteon/acenic*
296
297 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
298 M:      Peter Feuerer <peter@piie.net>
299 L:      platform-driver-x86@vger.kernel.org
300 W:      http://piie.net/?section=acerhdf
301 S:      Maintained
302 F:      drivers/platform/x86/acerhdf.c
303
304 ACER WMI LAPTOP EXTRAS
305 M:      "Lee, Chun-Yi" <jlee@suse.com>
306 L:      platform-driver-x86@vger.kernel.org
307 S:      Maintained
308 F:      drivers/platform/x86/acer-wmi.c
309
310 ACPI
311 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
312 M:      Len Brown <lenb@kernel.org>
313 L:      linux-acpi@vger.kernel.org
314 W:      https://01.org/linux-acpi
315 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
317 B:      https://bugzilla.kernel.org
318 S:      Supported
319 F:      drivers/acpi/
320 F:      drivers/pnp/pnpacpi/
321 F:      include/linux/acpi.h
322 F:      include/linux/fwnode.h
323 F:      include/acpi/
324 F:      Documentation/firmware-guide/acpi/
325 F:      Documentation/ABI/testing/sysfs-bus-acpi
326 F:      Documentation/ABI/testing/configfs-acpi
327 F:      drivers/pci/*acpi*
328 F:      drivers/pci/*/*acpi*
329 F:      tools/power/acpi/
330
331 ACPI APEI
332 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
333 M:      Len Brown <lenb@kernel.org>
334 L:      linux-acpi@vger.kernel.org
335 R:      James Morse <james.morse@arm.com>
336 R:      Tony Luck <tony.luck@intel.com>
337 R:      Borislav Petkov <bp@alien8.de>
338 F:      drivers/acpi/apei/
339
340 ACPI COMPONENT ARCHITECTURE (ACPICA)
341 M:      Robert Moore <robert.moore@intel.com>
342 M:      Erik Schmauss <erik.schmauss@intel.com>
343 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
344 L:      linux-acpi@vger.kernel.org
345 L:      devel@acpica.org
346 W:      https://acpica.org/
347 W:      https://github.com/acpica/acpica/
348 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
350 B:      https://bugzilla.kernel.org
351 B:      https://bugs.acpica.org
352 S:      Supported
353 F:      drivers/acpi/acpica/
354 F:      include/acpi/
355 F:      tools/power/acpi/
356
357 ACPI FAN DRIVER
358 M:      Zhang Rui <rui.zhang@intel.com>
359 L:      linux-acpi@vger.kernel.org
360 W:      https://01.org/linux-acpi
361 B:      https://bugzilla.kernel.org
362 S:      Supported
363 F:      drivers/acpi/fan.c
364
365 ACPI FOR ARM64 (ACPI/arm64)
366 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
367 M:      Hanjun Guo <guohanjun@huawei.com>
368 M:      Sudeep Holla <sudeep.holla@arm.com>
369 L:      linux-acpi@vger.kernel.org
370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
371 S:      Maintained
372 F:      drivers/acpi/arm64
373
374 ACPI I2C MULTI INSTANTIATE DRIVER
375 M:      Hans de Goede <hdegoede@redhat.com>
376 L:      platform-driver-x86@vger.kernel.org
377 S:      Maintained
378 F:      drivers/platform/x86/i2c-multi-instantiate.c
379
380 ACPI PMIC DRIVERS
381 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
382 M:      Len Brown <lenb@kernel.org>
383 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
384 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
385 L:      linux-acpi@vger.kernel.org
386 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
388 B:      https://bugzilla.kernel.org
389 S:      Supported
390 F:      drivers/acpi/pmic/
391
392 ACPI THERMAL DRIVER
393 M:      Zhang Rui <rui.zhang@intel.com>
394 L:      linux-acpi@vger.kernel.org
395 W:      https://01.org/linux-acpi
396 B:      https://bugzilla.kernel.org
397 S:      Supported
398 F:      drivers/acpi/*thermal*
399
400 ACPI VIDEO DRIVER
401 M:      Zhang Rui <rui.zhang@intel.com>
402 L:      linux-acpi@vger.kernel.org
403 W:      https://01.org/linux-acpi
404 B:      https://bugzilla.kernel.org
405 S:      Supported
406 F:      drivers/acpi/acpi_video.c
407
408 ACPI WMI DRIVER
409 L:      platform-driver-x86@vger.kernel.org
410 S:      Orphan
411 F:      drivers/platform/x86/wmi.c
412 F:      include/uapi/linux/wmi.h
413
414 AD1889 ALSA SOUND DRIVER
415 W:      https://parisc.wiki.kernel.org/index.php/AD1889
416 L:      linux-parisc@vger.kernel.org
417 S:      Maintained
418 F:      sound/pci/ad1889.*
419
420 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
421 M:      Michael Hennerich <michael.hennerich@analog.com>
422 W:      http://wiki.analog.com/AD5254
423 W:      http://ez.analog.com/community/linux-device-drivers
424 S:      Supported
425 F:      drivers/misc/ad525x_dpot.c
426
427 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
428 M:      Michael Hennerich <michael.hennerich@analog.com>
429 W:      http://wiki.analog.com/AD5398
430 W:      http://ez.analog.com/community/linux-device-drivers
431 S:      Supported
432 F:      drivers/regulator/ad5398.c
433
434 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
435 M:      Michael Hennerich <michael.hennerich@analog.com>
436 W:      http://wiki.analog.com/AD7142
437 W:      http://ez.analog.com/community/linux-device-drivers
438 S:      Supported
439 F:      drivers/input/misc/ad714x.c
440
441 AD7877 TOUCHSCREEN DRIVER
442 M:      Michael Hennerich <michael.hennerich@analog.com>
443 W:      http://wiki.analog.com/AD7877
444 W:      http://ez.analog.com/community/linux-device-drivers
445 S:      Supported
446 F:      drivers/input/touchscreen/ad7877.c
447
448 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
449 M:      Michael Hennerich <michael.hennerich@analog.com>
450 W:      http://wiki.analog.com/AD7879
451 W:      http://ez.analog.com/community/linux-device-drivers
452 S:      Supported
453 F:      drivers/input/touchscreen/ad7879.c
454
455 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
456 M:      Jiri Kosina <jikos@kernel.org>
457 S:      Maintained
458
459 ADF7242 IEEE 802.15.4 RADIO DRIVER
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 W:      https://wiki.analog.com/ADF7242
462 W:      http://ez.analog.com/community/linux-device-drivers
463 L:      linux-wpan@vger.kernel.org
464 S:      Supported
465 F:      drivers/net/ieee802154/adf7242.c
466 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
467
468 ADM1025 HARDWARE MONITOR DRIVER
469 M:      Jean Delvare <jdelvare@suse.com>
470 L:      linux-hwmon@vger.kernel.org
471 S:      Maintained
472 F:      Documentation/hwmon/adm1025.rst
473 F:      drivers/hwmon/adm1025.c
474
475 ADM1029 HARDWARE MONITOR DRIVER
476 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
477 L:      linux-hwmon@vger.kernel.org
478 S:      Maintained
479 F:      drivers/hwmon/adm1029.c
480
481 ADM8211 WIRELESS DRIVER
482 L:      linux-wireless@vger.kernel.org
483 W:      http://wireless.kernel.org/
484 S:      Orphan
485 F:      drivers/net/wireless/admtek/adm8211.*
486
487 ADP1653 FLASH CONTROLLER DRIVER
488 M:      Sakari Ailus <sakari.ailus@iki.fi>
489 L:      linux-media@vger.kernel.org
490 S:      Maintained
491 F:      drivers/media/i2c/adp1653.c
492 F:      include/media/i2c/adp1653.h
493
494 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
495 M:      Michael Hennerich <michael.hennerich@analog.com>
496 W:      http://wiki.analog.com/ADP5520
497 W:      http://ez.analog.com/community/linux-device-drivers
498 S:      Supported
499 F:      drivers/mfd/adp5520.c
500 F:      drivers/video/backlight/adp5520_bl.c
501 F:      drivers/leds/leds-adp5520.c
502 F:      drivers/gpio/gpio-adp5520.c
503 F:      drivers/input/keyboard/adp5520-keys.c
504
505 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
506 M:      Michael Hennerich <michael.hennerich@analog.com>
507 W:      http://wiki.analog.com/ADP5588
508 W:      http://ez.analog.com/community/linux-device-drivers
509 S:      Supported
510 F:      drivers/input/keyboard/adp5588-keys.c
511 F:      drivers/gpio/gpio-adp5588.c
512
513 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
514 M:      Michael Hennerich <michael.hennerich@analog.com>
515 W:      http://wiki.analog.com/ADP8860
516 W:      http://ez.analog.com/community/linux-device-drivers
517 S:      Supported
518 F:      drivers/video/backlight/adp8860_bl.c
519
520 ADT746X FAN DRIVER
521 M:      Colin Leroy <colin@colino.net>
522 S:      Maintained
523 F:      drivers/macintosh/therm_adt746x.c
524
525 ADT7475 HARDWARE MONITOR DRIVER
526 M:      Jean Delvare <jdelvare@suse.com>
527 L:      linux-hwmon@vger.kernel.org
528 S:      Maintained
529 F:      Documentation/hwmon/adt7475.rst
530 F:      drivers/hwmon/adt7475.c
531
532 ADVANSYS SCSI DRIVER
533 M:      Matthew Wilcox <willy@infradead.org>
534 M:      Hannes Reinecke <hare@suse.com>
535 L:      linux-scsi@vger.kernel.org
536 S:      Maintained
537 F:      Documentation/scsi/advansys.txt
538 F:      drivers/scsi/advansys.c
539
540 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
541 M:      Michael Hennerich <michael.hennerich@analog.com>
542 W:      http://wiki.analog.com/ADXL345
543 W:      http://ez.analog.com/community/linux-device-drivers
544 S:      Supported
545 F:      drivers/input/misc/adxl34x.c
546 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
547
548 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
549 M:      Stefan Popa <stefan.popa@analog.com>
550 W:      http://ez.analog.com/community/linux-device-drivers
551 S:      Supported
552 F:      drivers/iio/accel/adxl372.c
553 F:      drivers/iio/accel/adxl372_spi.c
554 F:      drivers/iio/accel/adxl372_i2c.c
555 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
556
557 AF9013 MEDIA DRIVER
558 M:      Antti Palosaari <crope@iki.fi>
559 L:      linux-media@vger.kernel.org
560 W:      https://linuxtv.org
561 W:      http://palosaari.fi/linux/
562 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
563 T:      git git://linuxtv.org/anttip/media_tree.git
564 S:      Maintained
565 F:      drivers/media/dvb-frontends/af9013*
566
567 AF9033 MEDIA DRIVER
568 M:      Antti Palosaari <crope@iki.fi>
569 L:      linux-media@vger.kernel.org
570 W:      https://linuxtv.org
571 W:      http://palosaari.fi/linux/
572 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
573 T:      git git://linuxtv.org/anttip/media_tree.git
574 S:      Maintained
575 F:      drivers/media/dvb-frontends/af9033*
576
577 AFFS FILE SYSTEM
578 M:      David Sterba <dsterba@suse.com>
579 L:      linux-fsdevel@vger.kernel.org
580 S:      Odd Fixes
581 F:      Documentation/filesystems/affs.txt
582 F:      fs/affs/
583
584 AFS FILESYSTEM
585 M:      David Howells <dhowells@redhat.com>
586 L:      linux-afs@lists.infradead.org
587 S:      Supported
588 F:      fs/afs/
589 F:      include/trace/events/afs.h
590 F:      Documentation/filesystems/afs.txt
591 W:      https://www.infradead.org/~dhowells/kafs/
592
593 AGPGART DRIVER
594 M:      David Airlie <airlied@linux.ie>
595 T:      git git://anongit.freedesktop.org/drm/drm
596 S:      Maintained
597 F:      drivers/char/agp/
598 F:      include/linux/agp*
599 F:      include/uapi/linux/agp*
600
601 AHA152X SCSI DRIVER
602 M:      "Juergen E. Fischer" <fischer@norbit.de>
603 L:      linux-scsi@vger.kernel.org
604 S:      Maintained
605 F:      drivers/scsi/aha152x*
606 F:      drivers/scsi/pcmcia/aha152x*
607
608 AIC7XXX / AIC79XX SCSI DRIVER
609 M:      Hannes Reinecke <hare@suse.com>
610 L:      linux-scsi@vger.kernel.org
611 S:      Maintained
612 F:      drivers/scsi/aic7xxx/
613
614 AIMSLAB FM RADIO RECEIVER DRIVER
615 M:      Hans Verkuil <hverkuil@xs4all.nl>
616 L:      linux-media@vger.kernel.org
617 T:      git git://linuxtv.org/media_tree.git
618 W:      https://linuxtv.org
619 S:      Maintained
620 F:      drivers/media/radio/radio-aimslab*
621
622 AIO
623 M:      Benjamin LaHaise <bcrl@kvack.org>
624 L:      linux-aio@kvack.org
625 S:      Supported
626 F:      fs/aio.c
627 F:      include/linux/*aio*.h
628
629 AIRSPY MEDIA DRIVER
630 M:      Antti Palosaari <crope@iki.fi>
631 L:      linux-media@vger.kernel.org
632 W:      https://linuxtv.org
633 W:      http://palosaari.fi/linux/
634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
635 T:      git git://linuxtv.org/anttip/media_tree.git
636 S:      Maintained
637 F:      drivers/media/usb/airspy/
638
639 ALACRITECH GIGABIT ETHERNET DRIVER
640 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
641 S:      Maintained
642 F:      drivers/net/ethernet/alacritech/*
643
644 FORCEDETH GIGABIT ETHERNET DRIVER
645 M:      Rain River <rain.1986.08.12@gmail.com>
646 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
647 L:      netdev@vger.kernel.org
648 S:      Maintained
649 F:      drivers/net/ethernet/nvidia/*
650
651 ALCATEL SPEEDTOUCH USB DRIVER
652 M:      Duncan Sands <duncan.sands@free.fr>
653 L:      linux-usb@vger.kernel.org
654 W:      http://www.linux-usb.org/SpeedTouch/
655 S:      Maintained
656 F:      drivers/usb/atm/speedtch.c
657 F:      drivers/usb/atm/usbatm.c
658
659 ALCHEMY AU1XX0 MMC DRIVER
660 M:      Manuel Lauss <manuel.lauss@gmail.com>
661 S:      Maintained
662 F:      drivers/mmc/host/au1xmmc.c
663
664 ALI1563 I2C DRIVER
665 M:      Rudolf Marek <r.marek@assembler.cz>
666 L:      linux-i2c@vger.kernel.org
667 S:      Maintained
668 F:      Documentation/i2c/busses/i2c-ali1563.rst
669 F:      drivers/i2c/busses/i2c-ali1563.c
670
671 ALLEGRO DVT VIDEO IP CORE DRIVER
672 M:      Michael Tretter <m.tretter@pengutronix.de>
673 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
674 L:      linux-media@vger.kernel.org
675 S:      Maintained
676 F:      drivers/staging/media/allegro-dvt/
677
678 ALLWINNER CPUFREQ DRIVER
679 M:      Yangtao Li <tiny.windzz@gmail.com>
680 L:      linux-pm@vger.kernel.org
681 S:      Maintained
682 F:      Documentation/devicetree/bindings/opp/sun50i-nvmem-cpufreq.txt
683 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
684
685 ALLWINNER CRYPTO DRIVERS
686 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
687 L:      linux-crypto@vger.kernel.org
688 S:      Maintained
689 F:      drivers/crypto/allwinner/
690
691 ALLWINNER VPU DRIVER
692 M:      Maxime Ripard <mripard@kernel.org>
693 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
694 L:      linux-media@vger.kernel.org
695 S:      Maintained
696 F:      drivers/staging/media/sunxi/cedrus/
697
698 ALPHA PORT
699 M:      Richard Henderson <rth@twiddle.net>
700 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
701 M:      Matt Turner <mattst88@gmail.com>
702 S:      Odd Fixes
703 L:      linux-alpha@vger.kernel.org
704 F:      arch/alpha/
705
706 ALPS PS/2 TOUCHPAD DRIVER
707 R:      Pali Rohár <pali.rohar@gmail.com>
708 F:      drivers/input/mouse/alps.*
709
710 ALTERA I2C CONTROLLER DRIVER
711 M:      Thor Thayer <thor.thayer@linux.intel.com>
712 S:      Maintained
713 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
714 F:      drivers/i2c/busses/i2c-altera.c
715
716 ALTERA MAILBOX DRIVER
717 M:      Ley Foon Tan <lftan@altera.com>
718 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
719 S:      Maintained
720 F:      drivers/mailbox/mailbox-altera.c
721
722 ALTERA PIO DRIVER
723 M:      Tien Hock Loh <thloh@altera.com>
724 L:      linux-gpio@vger.kernel.org
725 S:      Maintained
726 F:      drivers/gpio/gpio-altera.c
727
728 ALTERA SYSTEM MANAGER DRIVER
729 M:      Thor Thayer <thor.thayer@linux.intel.com>
730 S:      Maintained
731 F:      drivers/mfd/altera-sysmgr.c
732 F:      include/linux/mfd/altera-sysmgr.h
733
734 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
735 M:      Thor Thayer <thor.thayer@linux.intel.com>
736 S:      Maintained
737 F:      drivers/gpio/gpio-altera-a10sr.c
738 F:      drivers/mfd/altera-a10sr.c
739 F:      drivers/reset/reset-a10sr.c
740 F:      include/linux/mfd/altera-a10sr.h
741 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
742
743 ALTERA TRIPLE SPEED ETHERNET DRIVER
744 M:      Thor Thayer <thor.thayer@linux.intel.com>
745 L:      netdev@vger.kernel.org
746 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
747 S:      Maintained
748 F:      drivers/net/ethernet/altera/
749
750 ALTERA UART/JTAG UART SERIAL DRIVERS
751 M:      Tobias Klauser <tklauser@distanz.ch>
752 L:      linux-serial@vger.kernel.org
753 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
754 S:      Maintained
755 F:      drivers/tty/serial/altera_uart.c
756 F:      drivers/tty/serial/altera_jtaguart.c
757 F:      include/linux/altera_uart.h
758 F:      include/linux/altera_jtaguart.h
759
760 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
761 M:      Talel Shenhar <talel@amazon.com>
762 S:      Maintained
763 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
764 F:      drivers/thermal/thermal_mmio.c
765
766 AMAZON ETHERNET DRIVERS
767 M:      Netanel Belgazal <netanel@amazon.com>
768 R:      Saeed Bishara <saeedb@amazon.com>
769 R:      Zorik Machulsky <zorik@amazon.com>
770 L:      netdev@vger.kernel.org
771 S:      Supported
772 F:      Documentation/networking/device_drivers/amazon/ena.txt
773 F:      drivers/net/ethernet/amazon/
774
775 AMAZON RDMA EFA DRIVER
776 M:      Gal Pressman <galpress@amazon.com>
777 R:      Yossi Leybovich <sleybo@amazon.com>
778 L:      linux-rdma@vger.kernel.org
779 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
780 S:      Supported
781 F:      drivers/infiniband/hw/efa/
782 F:      include/uapi/rdma/efa-abi.h
783
784 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
785 M:      Tom Lendacky <thomas.lendacky@amd.com>
786 M:      Gary Hook <gary.hook@amd.com>
787 L:      linux-crypto@vger.kernel.org
788 S:      Supported
789 F:      drivers/crypto/ccp/
790 F:      include/linux/ccp.h
791
792 AMD DISPLAY CORE
793 M:      Harry Wentland <harry.wentland@amd.com>
794 M:      Leo Li <sunpeng.li@amd.com>
795 L:      amd-gfx@lists.freedesktop.org
796 T:      git git://people.freedesktop.org/~agd5f/linux
797 S:      Supported
798 F:      drivers/gpu/drm/amd/display/
799
800 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
801 M:      Huang Rui <ray.huang@amd.com>
802 L:      linux-hwmon@vger.kernel.org
803 S:      Supported
804 F:      Documentation/hwmon/fam15h_power.rst
805 F:      drivers/hwmon/fam15h_power.c
806
807 AMD FCH GPIO DRIVER
808 M:      Enrico Weigelt, metux IT consult <info@metux.net>
809 L:      linux-gpio@vger.kernel.org
810 S:      Maintained
811 F:      drivers/gpio/gpio-amd-fch.c
812 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
813
814 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
815 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
816 S:      Orphan
817 F:      drivers/usb/gadget/udc/amd5536udc.*
818
819 AMD GEODE PROCESSOR/CHIPSET SUPPORT
820 P:      Andres Salomon <dilinger@queued.net>
821 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
822 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
823 S:      Supported
824 F:      drivers/char/hw_random/geode-rng.c
825 F:      drivers/crypto/geode*
826 F:      drivers/video/fbdev/geode/
827 F:      arch/x86/include/asm/geode.h
828
829 AMD IOMMU (AMD-VI)
830 M:      Joerg Roedel <joro@8bytes.org>
831 L:      iommu@lists.linux-foundation.org
832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
833 S:      Maintained
834 F:      drivers/iommu/amd_iommu*.[ch]
835 F:      include/linux/amd-iommu.h
836
837 AMD KFD
838 M:      Felix Kuehling <Felix.Kuehling@amd.com>
839 L:      amd-gfx@lists.freedesktop.org
840 T:      git git://people.freedesktop.org/~agd5f/linux
841 S:      Supported
842 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
843 F:      drivers/gpu/drm/amd/amdkfd/
844 F:      drivers/gpu/drm/amd/include/cik_structs.h
845 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
846 F:      drivers/gpu/drm/amd/include/vi_structs.h
847 F:      drivers/gpu/drm/amd/include/v9_structs.h
848 F:      include/uapi/linux/kfd_ioctl.h
849
850 AMD MP2 I2C DRIVER
851 M:      Elie Morisse <syniurge@gmail.com>
852 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
853 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
854 L:      linux-i2c@vger.kernel.org
855 S:      Maintained
856 F:      drivers/i2c/busses/i2c-amd-mp2*
857
858 AMD POWERPLAY
859 M:      Rex Zhu <rex.zhu@amd.com>
860 M:      Evan Quan <evan.quan@amd.com>
861 L:      amd-gfx@lists.freedesktop.org
862 S:      Supported
863 F:      drivers/gpu/drm/amd/powerplay/
864 T:      git git://people.freedesktop.org/~agd5f/linux
865
866 AMD SEATTLE DEVICE TREE SUPPORT
867 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
868 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
869 M:      Tom Lendacky <thomas.lendacky@amd.com>
870 S:      Supported
871 F:      arch/arm64/boot/dts/amd/
872
873 AMD XGBE DRIVER
874 M:      Tom Lendacky <thomas.lendacky@amd.com>
875 L:      netdev@vger.kernel.org
876 S:      Supported
877 F:      drivers/net/ethernet/amd/xgbe/
878 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
879
880 ANALOG DEVICES INC AD5686 DRIVER
881 M:      Stefan Popa <stefan.popa@analog.com>
882 L:      linux-pm@vger.kernel.org
883 W:      http://ez.analog.com/community/linux-device-drivers
884 S:      Supported
885 F:      drivers/iio/dac/ad5686*
886 F:      drivers/iio/dac/ad5696*
887
888 ANALOG DEVICES INC AD5758 DRIVER
889 M:      Stefan Popa <stefan.popa@analog.com>
890 L:      linux-iio@vger.kernel.org
891 W:      http://ez.analog.com/community/linux-device-drivers
892 S:      Supported
893 F:      drivers/iio/dac/ad5758.c
894 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
895
896 ANALOG DEVICES INC AD7124 DRIVER
897 M:      Stefan Popa <stefan.popa@analog.com>
898 L:      linux-iio@vger.kernel.org
899 W:      http://ez.analog.com/community/linux-device-drivers
900 S:      Supported
901 F:      drivers/iio/adc/ad7124.c
902 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
903
904 ANALOG DEVICES INC AD7606 DRIVER
905 M:      Stefan Popa <stefan.popa@analog.com>
906 M:      Beniamin Bia <beniamin.bia@analog.com>
907 L:      linux-iio@vger.kernel.org
908 W:      http://ez.analog.com/community/linux-device-drivers
909 S:      Supported
910 F:      drivers/iio/adc/ad7606.c
911 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
912
913 ANALOG DEVICES INC AD7768-1 DRIVER
914 M:      Stefan Popa <stefan.popa@analog.com>
915 L:      linux-iio@vger.kernel.org
916 W:      http://ez.analog.com/community/linux-device-drivers
917 S:      Supported
918 F:      drivers/iio/adc/ad7768-1.c
919 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
920
921 ANALOG DEVICES INC AD7780 DRIVER
922 M:      Michael Hennerich <Michael.Hennerich@analog.com>
923 M:      Renato Lui Geh <renatogeh@gmail.com>
924 L:      linux-iio@vger.kernel.org
925 W:      http://ez.analog.com/community/linux-device-drivers
926 S:      Supported
927 F:      drivers/iio/adc/ad7780.c
928 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
929
930 ANALOG DEVICES INC AD9389B DRIVER
931 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
932 L:      linux-media@vger.kernel.org
933 S:      Maintained
934 F:      drivers/media/i2c/ad9389b*
935
936 ANALOG DEVICES INC ADGS1408 DRIVER
937 M:      Mircea Caprioru <mircea.caprioru@analog.com>
938 S:      Supported
939 F:      drivers/mux/adgs1408.c
940 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
941
942 ANALOG DEVICES INC ADIN DRIVER
943 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
944 L:      netdev@vger.kernel.org
945 W:      http://ez.analog.com/community/linux-device-drivers
946 S:      Supported
947 F:      drivers/net/phy/adin.c
948 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
949
950 ANALOG DEVICES INC ADIS DRIVER LIBRARY
951 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
952 S:      Supported
953 L:      linux-iio@vger.kernel.org
954 F:      include/linux/iio/imu/adis.h
955 F:      drivers/iio/imu/adis.c
956
957 ANALOG DEVICES INC ADIS16460 DRIVER
958 M:      Dragos Bogdan <dragos.bogdan@analog.com>
959 S:      Supported
960 L:      linux-iio@vger.kernel.org
961 W:      http://ez.analog.com/community/linux-device-drivers
962 F:      drivers/iio/imu/adis16460.c
963 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
964
965 ANALOG DEVICES INC ADP5061 DRIVER
966 M:      Stefan Popa <stefan.popa@analog.com>
967 L:      linux-pm@vger.kernel.org
968 W:      http://ez.analog.com/community/linux-device-drivers
969 S:      Supported
970 F:      drivers/power/supply/adp5061.c
971
972 ANALOG DEVICES INC ADV7180 DRIVER
973 M:      Lars-Peter Clausen <lars@metafoo.de>
974 L:      linux-media@vger.kernel.org
975 W:      http://ez.analog.com/community/linux-device-drivers
976 S:      Supported
977 F:      drivers/media/i2c/adv7180.c
978
979 ANALOG DEVICES INC ADV748X DRIVER
980 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
981 L:      linux-media@vger.kernel.org
982 S:      Maintained
983 F:      drivers/media/i2c/adv748x/*
984
985 ANALOG DEVICES INC ADV7511 DRIVER
986 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
987 L:      linux-media@vger.kernel.org
988 S:      Maintained
989 F:      drivers/media/i2c/adv7511*
990
991 ANALOG DEVICES INC ADV7604 DRIVER
992 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
993 L:      linux-media@vger.kernel.org
994 S:      Maintained
995 F:      drivers/media/i2c/adv7604*
996
997 ANALOG DEVICES INC ADV7842 DRIVER
998 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
999 L:      linux-media@vger.kernel.org
1000 S:      Maintained
1001 F:      drivers/media/i2c/adv7842*
1002
1003 ANALOG DEVICES INC ASOC CODEC DRIVERS
1004 M:      Lars-Peter Clausen <lars@metafoo.de>
1005 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1006 W:      http://wiki.analog.com/
1007 W:      http://ez.analog.com/community/linux-device-drivers
1008 S:      Supported
1009 F:      sound/soc/codecs/adau*
1010 F:      sound/soc/codecs/adav*
1011 F:      sound/soc/codecs/ad1*
1012 F:      sound/soc/codecs/ad7*
1013 F:      sound/soc/codecs/ssm*
1014 F:      sound/soc/codecs/sigmadsp.*
1015
1016 ANALOG DEVICES INC DMA DRIVERS
1017 M:      Lars-Peter Clausen <lars@metafoo.de>
1018 W:      http://ez.analog.com/community/linux-device-drivers
1019 S:      Supported
1020 F:      drivers/dma/dma-axi-dmac.c
1021
1022 ANALOG DEVICES INC IIO DRIVERS
1023 M:      Lars-Peter Clausen <lars@metafoo.de>
1024 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1025 M:      Stefan Popa <stefan.popa@analog.com>
1026 W:      http://wiki.analog.com/
1027 W:      http://ez.analog.com/community/linux-device-drivers
1028 S:      Supported
1029 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1030 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1031 F:      drivers/iio/*/ad*
1032 F:      drivers/iio/adc/ltc2497*
1033 X:      drivers/iio/*/adjd*
1034 F:      drivers/staging/iio/*/ad*
1035
1036 ANALOGBITS PLL LIBRARIES
1037 M:      Paul Walmsley <paul.walmsley@sifive.com>
1038 S:      Supported
1039 F:      drivers/clk/analogbits/*
1040 F:      include/linux/clk/analogbits*
1041
1042 ANDES ARCHITECTURE
1043 M:      Greentime Hu <green.hu@gmail.com>
1044 M:      Vincent Chen <deanbo422@gmail.com>
1045 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1046 S:      Supported
1047 F:      arch/nds32/
1048 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1049 F:      Documentation/devicetree/bindings/nds32/
1050 K:      nds32
1051 N:      nds32
1052
1053 ANDROID CONFIG FRAGMENTS
1054 M:      Rob Herring <robh@kernel.org>
1055 S:      Supported
1056 F:      kernel/configs/android*
1057
1058 ANDROID DRIVERS
1059 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1060 M:      Arve Hjønnevåg <arve@android.com>
1061 M:      Todd Kjos <tkjos@android.com>
1062 M:      Martijn Coenen <maco@android.com>
1063 M:      Joel Fernandes <joel@joelfernandes.org>
1064 M:      Christian Brauner <christian@brauner.io>
1065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1066 L:      devel@driverdev.osuosl.org
1067 S:      Supported
1068 F:      drivers/android/
1069 F:      drivers/staging/android/
1070
1071 ANDROID GOLDFISH PIC DRIVER
1072 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1073 S:      Supported
1074 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1075 F:      drivers/irqchip/irq-goldfish-pic.c
1076
1077 ANDROID GOLDFISH RTC DRIVER
1078 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1079 S:      Supported
1080 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1081 F:      drivers/rtc/rtc-goldfish.c
1082
1083 ANDROID ION DRIVER
1084 M:      Laura Abbott <labbott@redhat.com>
1085 M:      Sumit Semwal <sumit.semwal@linaro.org>
1086 L:      devel@driverdev.osuosl.org
1087 L:      dri-devel@lists.freedesktop.org
1088 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1089 S:      Supported
1090 F:      drivers/staging/android/ion
1091 F:      drivers/staging/android/uapi/ion.h
1092
1093 AOA (Apple Onboard Audio) ALSA DRIVER
1094 M:      Johannes Berg <johannes@sipsolutions.net>
1095 L:      linuxppc-dev@lists.ozlabs.org
1096 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1097 S:      Maintained
1098 F:      sound/aoa/
1099
1100 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1101 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1102 L:      linux-iio@vger.kernel.org
1103 S:      Maintained
1104 F:      drivers/iio/adc/stx104.c
1105
1106 APM DRIVER
1107 M:      Jiri Kosina <jikos@kernel.org>
1108 S:      Odd fixes
1109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1110 F:      arch/x86/kernel/apm_32.c
1111 F:      include/linux/apm_bios.h
1112 F:      include/uapi/linux/apm_bios.h
1113 F:      drivers/char/apm-emulation.c
1114
1115 APPARMOR SECURITY MODULE
1116 M:      John Johansen <john.johansen@canonical.com>
1117 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1118 W:      wiki.apparmor.net
1119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1120 S:      Supported
1121 F:      security/apparmor/
1122 F:      Documentation/admin-guide/LSM/apparmor.rst
1123
1124 APPLE BCM5974 MULTITOUCH DRIVER
1125 M:      Henrik Rydberg <rydberg@bitmath.org>
1126 L:      linux-input@vger.kernel.org
1127 S:      Odd fixes
1128 F:      drivers/input/mouse/bcm5974.c
1129
1130 APPLE SMC DRIVER
1131 M:      Henrik Rydberg <rydberg@bitmath.org>
1132 L:      linux-hwmon@vger.kernel.org
1133 S:      Odd fixes
1134 F:      drivers/hwmon/applesmc.c
1135
1136 APPLETALK NETWORK LAYER
1137 L:      netdev@vger.kernel.org
1138 S:      Odd fixes
1139 F:      drivers/net/appletalk/
1140 F:      net/appletalk/
1141 F:      include/linux/atalk.h
1142 F:      include/uapi/linux/atalk.h
1143
1144 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1145 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1146 S:      Supported
1147 F:      arch/arm64/boot/dts/apm/
1148
1149 APPLIED MICRO (APM) X-GENE SOC EDAC
1150 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1151 S:      Supported
1152 F:      drivers/edac/xgene_edac.c
1153 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1154
1155 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1156 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1157 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1158 S:      Supported
1159 F:      drivers/net/ethernet/apm/xgene-v2/
1160
1161 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1162 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1163 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1164 M:      Quan Nguyen <quan@os.amperecomputing.com>
1165 S:      Supported
1166 F:      drivers/net/ethernet/apm/xgene/
1167 F:      drivers/net/phy/mdio-xgene.c
1168 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1169 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1170
1171 APPLIED MICRO (APM) X-GENE SOC PMU
1172 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1173 S:      Supported
1174 F:      drivers/perf/xgene_pmu.c
1175 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1176 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1177
1178 APTINA CAMERA SENSOR PLL
1179 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1180 L:      linux-media@vger.kernel.org
1181 S:      Maintained
1182 F:      drivers/media/i2c/aptina-pll.*
1183
1184 AQUANTIA ETHERNET DRIVER (atlantic)
1185 M:      Igor Russkikh <irusskikh@marvell.com>
1186 L:      netdev@vger.kernel.org
1187 S:      Supported
1188 W:      https://www.marvell.com/
1189 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1190 F:      drivers/net/ethernet/aquantia/atlantic/
1191 F:      Documentation/networking/device_drivers/aquantia/atlantic.txt
1192
1193 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1194 M:      Egor Pomozov <epomozov@marvell.com>
1195 L:      netdev@vger.kernel.org
1196 S:      Supported
1197 W:      http://www.aquantia.com
1198 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1199
1200 ARC FRAMEBUFFER DRIVER
1201 M:      Jaya Kumar <jayalk@intworks.biz>
1202 S:      Maintained
1203 F:      drivers/video/fbdev/arcfb.c
1204 F:      drivers/video/fbdev/core/fb_defio.c
1205
1206 ARC PGU DRM DRIVER
1207 M:      Alexey Brodkin <abrodkin@synopsys.com>
1208 S:      Supported
1209 F:      drivers/gpu/drm/arc/
1210 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1211
1212 ARCNET NETWORK LAYER
1213 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1214 L:      netdev@vger.kernel.org
1215 S:      Maintained
1216 F:      drivers/net/arcnet/
1217 F:      include/uapi/linux/if_arcnet.h
1218
1219 ARM ARCHITECTED TIMER DRIVER
1220 M:      Mark Rutland <mark.rutland@arm.com>
1221 M:      Marc Zyngier <maz@kernel.org>
1222 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1223 S:      Maintained
1224 F:      arch/arm/include/asm/arch_timer.h
1225 F:      arch/arm64/include/asm/arch_timer.h
1226 F:      drivers/clocksource/arm_arch_timer.c
1227
1228 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1229 M:      Linus Walleij <linus.walleij@linaro.org>
1230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1231 S:      Maintained
1232 F:      Documentation/devicetree/bindings/arm/arm-boards
1233 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1234 F:      Documentation/devicetree/bindings/clock/arm-integrator.txt
1235 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1236 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1237 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1238 F:      arch/arm/mach-integrator/
1239 F:      arch/arm/mach-realview/
1240 F:      arch/arm/mach-versatile/
1241 F:      arch/arm/plat-versatile/
1242 F:      arch/arm/boot/dts/arm-realview-*
1243 F:      arch/arm/boot/dts/integrator*
1244 F:      arch/arm/boot/dts/versatile*
1245 F:      drivers/clk/versatile/
1246 F:      drivers/i2c/busses/i2c-versatile.c
1247 F:      drivers/irqchip/irq-versatile-fpga.c
1248 F:      drivers/mtd/maps/physmap_of_versatile.c
1249 F:      drivers/power/reset/arm-versatile-reboot.c
1250 F:      drivers/soc/versatile/
1251
1252 ARM HDLCD DRM DRIVER
1253 M:      Liviu Dudau <liviu.dudau@arm.com>
1254 S:      Supported
1255 F:      drivers/gpu/drm/arm/hdlcd_*
1256 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1257
1258 ARM KOMEDA DRM-KMS DRIVER
1259 M:      James (Qian) Wang <james.qian.wang@arm.com>
1260 M:      Liviu Dudau <liviu.dudau@arm.com>
1261 L:      Mali DP Maintainers <malidp@foss.arm.com>
1262 S:      Supported
1263 T:      git git://anongit.freedesktop.org/drm/drm-misc
1264 F:      drivers/gpu/drm/arm/display/include/
1265 F:      drivers/gpu/drm/arm/display/komeda/
1266 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1267 F:      Documentation/gpu/komeda-kms.rst
1268
1269 ARM MALI-DP DRM DRIVER
1270 M:      Liviu Dudau <liviu.dudau@arm.com>
1271 M:      Brian Starkey <brian.starkey@arm.com>
1272 L:      Mali DP Maintainers <malidp@foss.arm.com>
1273 S:      Supported
1274 T:      git git://anongit.freedesktop.org/drm/drm-misc
1275 F:      drivers/gpu/drm/arm/
1276 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1277 F:      Documentation/gpu/afbc.rst
1278
1279 ARM MALI PANFROST DRM DRIVER
1280 M:      Rob Herring <robh@kernel.org>
1281 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1282 L:      dri-devel@lists.freedesktop.org
1283 S:      Supported
1284 T:      git git://anongit.freedesktop.org/drm/drm-misc
1285 F:      drivers/gpu/drm/panfrost/
1286 F:      include/uapi/drm/panfrost_drm.h
1287
1288 ARM MFM AND FLOPPY DRIVERS
1289 M:      Ian Molton <spyro@f2s.com>
1290 S:      Maintained
1291 F:      arch/arm/mach-rpc/floppydma.S
1292 F:      arch/arm/include/asm/floppy.h
1293
1294 ARM PMU PROFILING AND DEBUGGING
1295 M:      Will Deacon <will@kernel.org>
1296 M:      Mark Rutland <mark.rutland@arm.com>
1297 S:      Maintained
1298 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1299 F:      arch/arm*/kernel/perf_*
1300 F:      arch/arm/oprofile/common.c
1301 F:      arch/arm*/kernel/hw_breakpoint.c
1302 F:      arch/arm*/include/asm/hw_breakpoint.h
1303 F:      arch/arm*/include/asm/perf_event.h
1304 F:      drivers/perf/*
1305 F:      include/linux/perf/arm_pmu.h
1306 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1307 F:      Documentation/devicetree/bindings/perf/
1308
1309 ARM PORT
1310 M:      Russell King <linux@armlinux.org.uk>
1311 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1312 W:      http://www.armlinux.org.uk/
1313 S:      Odd Fixes
1314 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1315 F:      arch/arm/
1316 X:      arch/arm/boot/dts/
1317
1318 ARM PRIMECELL AACI PL041 DRIVER
1319 M:      Russell King <linux@armlinux.org.uk>
1320 S:      Odd Fixes
1321 F:      sound/arm/aaci.*
1322
1323 ARM PRIMECELL BUS SUPPORT
1324 M:      Russell King <linux@armlinux.org.uk>
1325 S:      Odd Fixes
1326 F:      drivers/amba/
1327 F:      include/linux/amba/bus.h
1328
1329 ARM PRIMECELL CLCD PL110 DRIVER
1330 M:      Russell King <linux@armlinux.org.uk>
1331 S:      Odd Fixes
1332 F:      drivers/video/fbdev/amba-clcd.*
1333
1334 ARM PRIMECELL KMI PL050 DRIVER
1335 M:      Russell King <linux@armlinux.org.uk>
1336 S:      Odd Fixes
1337 F:      drivers/input/serio/ambakmi.*
1338 F:      include/linux/amba/kmi.h
1339
1340 ARM PRIMECELL MMCI PL180/1 DRIVER
1341 M:      Russell King <linux@armlinux.org.uk>
1342 S:      Odd Fixes
1343 F:      drivers/mmc/host/mmci.*
1344 F:      include/linux/amba/mmci.h
1345
1346 ARM PRIMECELL SSP PL022 SPI DRIVER
1347 M:      Linus Walleij <linus.walleij@linaro.org>
1348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1349 S:      Maintained
1350 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1351 F:      drivers/spi/spi-pl022.c
1352
1353 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1354 M:      Russell King <linux@armlinux.org.uk>
1355 S:      Odd Fixes
1356 F:      drivers/tty/serial/amba-pl01*.c
1357 F:      include/linux/amba/serial.h
1358
1359 ARM PRIMECELL VIC PL190/PL192 DRIVER
1360 M:      Linus Walleij <linus.walleij@linaro.org>
1361 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1362 S:      Maintained
1363 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1364 F:      drivers/irqchip/irq-vic.c
1365
1366 AMAZON ANNAPURNA LABS FIC DRIVER
1367 M:      Talel Shenhar <talel@amazon.com>
1368 S:      Maintained
1369 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
1370 F:      drivers/irqchip/irq-al-fic.c
1371
1372 ARM SMMU DRIVERS
1373 M:      Will Deacon <will@kernel.org>
1374 R:      Robin Murphy <robin.murphy@arm.com>
1375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1376 S:      Maintained
1377 F:      drivers/iommu/arm-smmu*
1378 F:      drivers/iommu/io-pgtable-arm.c
1379 F:      drivers/iommu/io-pgtable-arm-v7s.c
1380
1381 ARM SUB-ARCHITECTURES
1382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1383 S:      Maintained
1384 F:      arch/arm/mach-*/
1385 F:      arch/arm/plat-*/
1386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1387
1388 ARM/ACTIONS SEMI ARCHITECTURE
1389 M:      Andreas Färber <afaerber@suse.de>
1390 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1392 S:      Maintained
1393 N:      owl
1394 F:      arch/arm/mach-actions/
1395 F:      arch/arm/boot/dts/owl-*
1396 F:      arch/arm64/boot/dts/actions/
1397 F:      drivers/clk/actions/
1398 F:      drivers/clocksource/timer-owl*
1399 F:      drivers/dma/owl-dma.c
1400 F:      drivers/i2c/busses/i2c-owl.c
1401 F:      drivers/pinctrl/actions/*
1402 F:      drivers/soc/actions/
1403 F:      include/dt-bindings/power/owl-*
1404 F:      include/linux/soc/actions/
1405 F:      Documentation/devicetree/bindings/arm/actions.yaml
1406 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1407 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1408 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1409 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1410 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1411 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1412
1413 ARM/ADS SPHERE MACHINE SUPPORT
1414 M:      Lennert Buytenhek <kernel@wantstofly.org>
1415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1416 S:      Maintained
1417
1418 ARM/AFEB9260 MACHINE SUPPORT
1419 M:      Sergey Lapin <slapin@ossfans.org>
1420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1421 S:      Maintained
1422
1423 ARM/AJECO 1ARM MACHINE SUPPORT
1424 M:      Lennert Buytenhek <kernel@wantstofly.org>
1425 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1426 S:      Maintained
1427
1428 ARM/Allwinner SoC Clock Support
1429 M:      Emilio López <emilio@elopez.com.ar>
1430 S:      Maintained
1431 F:      drivers/clk/sunxi/
1432
1433 ARM/Allwinner sunXi SoC support
1434 M:      Maxime Ripard <mripard@kernel.org>
1435 M:      Chen-Yu Tsai <wens@csie.org>
1436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1437 S:      Maintained
1438 N:      sun[x456789]i
1439 N:      sun50i
1440 F:      arch/arm/mach-sunxi/
1441 F:      arch/arm64/boot/dts/allwinner/
1442 F:      drivers/clk/sunxi-ng/
1443 F:      drivers/pinctrl/sunxi/
1444 F:      drivers/soc/sunxi/
1445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1446
1447 Allwinner A10 CSI driver
1448 M:      Maxime Ripard <mripard@kernel.org>
1449 L:      linux-media@vger.kernel.org
1450 T:      git git://linuxtv.org/media_tree.git
1451 F:      drivers/media/platform/sunxi/sun4i-csi/
1452 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
1453 S:      Maintained
1454
1455 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1456 M:      Neil Armstrong <narmstrong@baylibre.com>
1457 M:      Jerome Brunet <jbrunet@baylibre.com>
1458 L:      linux-amlogic@lists.infradead.org
1459 S:      Maintained
1460 F:      drivers/clk/meson/
1461 F:      include/dt-bindings/clock/meson*
1462 F:      include/dt-bindings/clock/gxbb*
1463 F:      Documentation/devicetree/bindings/clock/amlogic*
1464
1465 ARM/Amlogic Meson SoC support
1466 M:      Kevin Hilman <khilman@baylibre.com>
1467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1468 L:      linux-amlogic@lists.infradead.org
1469 W:      http://linux-meson.com/
1470 S:      Maintained
1471 F:      arch/arm/mach-meson/
1472 F:      arch/arm/boot/dts/meson*
1473 F:      arch/arm64/boot/dts/amlogic/
1474 F:      drivers/pinctrl/meson/
1475 F:      drivers/mmc/host/meson*
1476 F:      drivers/soc/amlogic/
1477 F:      drivers/rtc/rtc-meson*
1478 N:      meson
1479
1480 ARM/Amlogic Meson SoC Crypto Drivers
1481 M:      Corentin Labbe <clabbe@baylibre.com>
1482 L:      linux-crypto@vger.kernel.org
1483 L:      linux-amlogic@lists.infradead.org
1484 S:      Maintained
1485 F:      drivers/crypto/amlogic/
1486 F:      Documentation/devicetree/bindings/crypto/amlogic*
1487
1488 ARM/Amlogic Meson SoC Sound Drivers
1489 M:      Jerome Brunet <jbrunet@baylibre.com>
1490 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1491 S:      Maintained
1492 F:      sound/soc/meson/
1493 F:      Documentation/devicetree/bindings/sound/amlogic*
1494
1495 ARM/Annapurna Labs ALPINE ARCHITECTURE
1496 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1497 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1498 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1499 S:      Maintained
1500 F:      arch/arm/mach-alpine/
1501 F:      arch/arm/boot/dts/alpine*
1502 F:      arch/arm64/boot/dts/al/
1503 F:      drivers/*/*alpine*
1504
1505 ARM/ARTPEC MACHINE SUPPORT
1506 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1507 M:      Lars Persson <lars.persson@axis.com>
1508 S:      Maintained
1509 L:      linux-arm-kernel@axis.com
1510 F:      arch/arm/mach-artpec
1511 F:      arch/arm/boot/dts/artpec6*
1512 F:      drivers/clk/axis
1513 F:      drivers/crypto/axis
1514 F:      drivers/mmc/host/usdhi6rol0.c
1515 F:      drivers/pinctrl/pinctrl-artpec*
1516 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1517
1518 ARM/ASPEED I2C DRIVER
1519 M:      Brendan Higgins <brendanhiggins@google.com>
1520 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1521 R:      Joel Stanley <joel@jms.id.au>
1522 L:      linux-i2c@vger.kernel.org
1523 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1524 S:      Maintained
1525 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1526 F:      drivers/i2c/busses/i2c-aspeed.c
1527 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1528 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1529
1530 ARM/ASPEED MACHINE SUPPORT
1531 M:      Joel Stanley <joel@jms.id.au>
1532 R:      Andrew Jeffery <andrew@aj.id.au>
1533 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1534 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1535 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1536 S:      Supported
1537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1538 F:      arch/arm/mach-aspeed/
1539 F:      arch/arm/boot/dts/aspeed-*
1540 N:      aspeed
1541
1542 ARM/BITMAIN ARCHITECTURE
1543 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1545 S:      Maintained
1546 F:      arch/arm64/boot/dts/bitmain/
1547 F:      drivers/pinctrl/pinctrl-bm1880.c
1548 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1549 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1550
1551 ARM/CALXEDA HIGHBANK ARCHITECTURE
1552 M:      Rob Herring <robh@kernel.org>
1553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1554 S:      Maintained
1555 F:      arch/arm/mach-highbank/
1556 F:      arch/arm/boot/dts/highbank.dts
1557 F:      arch/arm/boot/dts/ecx-*.dts*
1558
1559 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1560 M:      Krzysztof Halasa <khalasa@piap.pl>
1561 S:      Maintained
1562 F:      arch/arm/mach-cns3xxx/
1563
1564 ARM/CAVIUM THUNDER NETWORK DRIVER
1565 M:      Sunil Goutham <sgoutham@cavium.com>
1566 M:      Robert Richter <rric@kernel.org>
1567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 S:      Supported
1569 F:      drivers/net/ethernet/cavium/thunder/
1570
1571 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1572 M:      Lukasz Majewski <lukma@denx.de>
1573 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1574 S:      Maintained
1575 F:      arch/arm/mach-ep93xx/ts72xx.c
1576
1577 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1578 M:      Alexander Shiyan <shc_work@mail.ru>
1579 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1580 S:      Odd Fixes
1581 N:      clps711x
1582
1583 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1584 M:      Lennert Buytenhek <kernel@wantstofly.org>
1585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1586 S:      Maintained
1587
1588 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1589 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1590 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1592 S:      Maintained
1593 F:      arch/arm/mach-ep93xx/
1594 F:      arch/arm/mach-ep93xx/include/mach/
1595
1596 ARM/CLKDEV SUPPORT
1597 M:      Russell King <linux@armlinux.org.uk>
1598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1599 S:      Maintained
1600 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1601 F:      drivers/clk/clkdev.c
1602
1603 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1604 M:      Mike Rapoport <mike@compulab.co.il>
1605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1606 S:      Maintained
1607
1608 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1609 M:      Baruch Siach <baruch@tkos.co.il>
1610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1611 S:      Maintained
1612 F:      arch/arm/boot/dts/cx92755*
1613 N:      digicolor
1614
1615 ARM/CONTEC MICRO9 MACHINE SUPPORT
1616 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1617 S:      Maintained
1618 F:      arch/arm/mach-ep93xx/micro9.c
1619
1620 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1621 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1622 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1624 S:      Maintained
1625 F:      drivers/hwtracing/coresight/*
1626 F:      Documentation/trace/coresight.rst
1627 F:      Documentation/trace/coresight-cpu-debug.rst
1628 F:      Documentation/devicetree/bindings/arm/coresight.txt
1629 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1630 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1631 F:      tools/perf/arch/arm/util/pmu.c
1632 F:      tools/perf/arch/arm/util/auxtrace.c
1633 F:      tools/perf/arch/arm/util/cs-etm.c
1634 F:      tools/perf/arch/arm/util/cs-etm.h
1635 F:      tools/perf/util/cs-etm.*
1636 F:      tools/perf/util/cs-etm-decoder/*
1637
1638 ARM/CORGI MACHINE SUPPORT
1639 M:      Richard Purdie <rpurdie@rpsys.net>
1640 S:      Maintained
1641
1642 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1643 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1644 M:      Linus Walleij <linus.walleij@linaro.org>
1645 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1646 T:      git git://github.com/ulli-kroll/linux.git
1647 S:      Maintained
1648 F:      Documentation/devicetree/bindings/arm/gemini.txt
1649 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1650 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1651 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1652 F:      arch/arm/mach-gemini/
1653 F:      drivers/net/ethernet/cortina/
1654 F:      drivers/pinctrl/pinctrl-gemini.c
1655 F:      drivers/rtc/rtc-ftrtc010.c
1656
1657 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1658 M:      Barry Song <baohua@kernel.org>
1659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1661 S:      Maintained
1662 F:      arch/arm/boot/dts/prima2*
1663 F:      arch/arm/mach-prima2/
1664 F:      drivers/clk/sirf/
1665 F:      drivers/clocksource/timer-prima2.c
1666 F:      drivers/clocksource/timer-atlas7.c
1667 N:      [^a-z]sirf
1668 X:      drivers/gnss
1669
1670 ARM/CZ.NIC TURRIS MOX SUPPORT
1671 M:      Marek Behun <marek.behun@nic.cz>
1672 W:      http://mox.turris.cz
1673 S:      Maintained
1674 F:      Documentation/ABI/testing/debugfs-moxtet
1675 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1676 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1677 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1678 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1679 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1680 F:      include/linux/moxtet.h
1681 F:      drivers/bus/moxtet.c
1682 F:      drivers/firmware/turris-mox-rwtm.c
1683 F:      drivers/gpio/gpio-moxtet.c
1684
1685 ARM/EBSA110 MACHINE SUPPORT
1686 M:      Russell King <linux@armlinux.org.uk>
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 W:      http://www.armlinux.org.uk/
1689 S:      Maintained
1690 F:      arch/arm/mach-ebsa110/
1691 F:      drivers/net/ethernet/amd/am79c961a.*
1692
1693 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1694 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1695 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1697 S:      Maintained
1698 N:      efm32
1699
1700 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1701 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1703 S:      Maintained
1704 F:      arch/arm/mach-pxa/ezx.c
1705
1706 ARM/FARADAY FA526 PORT
1707 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1709 S:      Maintained
1710 T:      git git://git.berlios.de/gemini-board
1711 F:      arch/arm/mm/*-fa*
1712
1713 ARM/FOOTBRIDGE ARCHITECTURE
1714 M:      Russell King <linux@armlinux.org.uk>
1715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1716 W:      http://www.armlinux.org.uk/
1717 S:      Maintained
1718 F:      arch/arm/include/asm/hardware/dec21285.h
1719 F:      arch/arm/mach-footbridge/
1720
1721 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1722 M:      Shawn Guo <shawnguo@kernel.org>
1723 M:      Sascha Hauer <s.hauer@pengutronix.de>
1724 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1725 R:      Fabio Estevam <festevam@gmail.com>
1726 R:      NXP Linux Team <linux-imx@nxp.com>
1727 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1728 S:      Maintained
1729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1730 N:      imx
1731 N:      mxs
1732 X:      drivers/media/i2c/
1733
1734 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1735 M:      Shawn Guo <shawnguo@kernel.org>
1736 M:      Sascha Hauer <s.hauer@pengutronix.de>
1737 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1738 R:      Stefan Agner <stefan@agner.ch>
1739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740 S:      Maintained
1741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1742 F:      arch/arm/mach-imx/*vf610*
1743 F:      arch/arm/boot/dts/vf*
1744
1745 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1746 M:      Shawn Guo <shawnguo@kernel.org>
1747 M:      Li Yang <leoyang.li@nxp.com>
1748 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1749 S:      Maintained
1750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1751 F:      arch/arm/boot/dts/ls1021a*
1752 F:      arch/arm64/boot/dts/freescale/fsl-*
1753 F:      arch/arm64/boot/dts/freescale/qoriq-*
1754
1755 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1756 M:      Lennert Buytenhek <kernel@wantstofly.org>
1757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1758 S:      Maintained
1759
1760 ARM/GUMSTIX MACHINE SUPPORT
1761 M:      Steve Sakoman <sakoman@gmail.com>
1762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763 S:      Maintained
1764
1765 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1766 M:      Philipp Zabel <philipp.zabel@gmail.com>
1767 M:      Paul Parsons <lost.distance@yahoo.com>
1768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1769 S:      Maintained
1770 F:      arch/arm/mach-pxa/hx4700.c
1771 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1772 F:      sound/soc/pxa/hx4700.c
1773
1774 ARM/HISILICON SOC SUPPORT
1775 M:      Wei Xu <xuwei5@hisilicon.com>
1776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1777 W:      http://www.hisilicon.com
1778 S:      Supported
1779 T:      git git://github.com/hisilicon/linux-hisi.git
1780 F:      arch/arm/mach-hisi/
1781 F:      arch/arm/boot/dts/hi3*
1782 F:      arch/arm/boot/dts/hip*
1783 F:      arch/arm/boot/dts/hisi*
1784 F:      arch/arm64/boot/dts/hisilicon/
1785
1786 ARM/HP JORNADA 7XX MACHINE SUPPORT
1787 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1788 W:      www.jlime.com
1789 S:      Maintained
1790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1791 F:      arch/arm/mach-sa1100/jornada720.c
1792 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1793
1794 ARM/IGEP MACHINE SUPPORT
1795 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1796 M:      Javier Martinez Canillas <javier@dowhile0.org>
1797 L:      linux-omap@vger.kernel.org
1798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1799 S:      Maintained
1800 F:      arch/arm/boot/dts/omap3-igep*
1801
1802 ARM/INCOME PXA270 SUPPORT
1803 M:      Marek Vasut <marek.vasut@gmail.com>
1804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805 S:      Maintained
1806 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1807
1808 ARM/INTEL IOP32X ARM ARCHITECTURE
1809 M:      Lennert Buytenhek <kernel@wantstofly.org>
1810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1811 S:      Maintained
1812
1813 ARM/INTEL IQ81342EX MACHINE SUPPORT
1814 M:      Lennert Buytenhek <kernel@wantstofly.org>
1815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1816 S:      Maintained
1817
1818 ARM/INTEL IXDP2850 MACHINE SUPPORT
1819 M:      Lennert Buytenhek <kernel@wantstofly.org>
1820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 S:      Maintained
1822
1823 ARM/INTEL IXP4XX ARM ARCHITECTURE
1824 M:      Linus Walleij <linusw@kernel.org>
1825 M:      Imre Kaloz <kaloz@openwrt.org>
1826 M:      Krzysztof Halasa <khalasa@piap.pl>
1827 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1828 S:      Maintained
1829 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1830 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1831 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1832 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1833 F:      arch/arm/mach-ixp4xx/
1834 F:      drivers/clocksource/timer-ixp4xx.c
1835 F:      drivers/gpio/gpio-ixp4xx.c
1836 F:      drivers/irqchip/irq-ixp4xx.c
1837 F:      include/linux/irqchip/irq-ixp4xx.h
1838 F:      include/linux/platform_data/timer-ixp4xx.h
1839
1840 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1841 M:      Jonathan Cameron <jic23@cam.ac.uk>
1842 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1843 S:      Maintained
1844 F:      arch/arm/mach-pxa/stargate2.c
1845 F:      drivers/pcmcia/pxa2xx_stargate2.c
1846
1847 ARM/INTEL XSC3 (MANZANO) ARM CORE
1848 M:      Lennert Buytenhek <kernel@wantstofly.org>
1849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1850 S:      Maintained
1851
1852 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1853 M:      Lennert Buytenhek <kernel@wantstofly.org>
1854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1855 S:      Maintained
1856
1857 ARM/LG1K ARCHITECTURE
1858 M:      Chanho Min <chanho.min@lge.com>
1859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1860 S:      Maintained
1861 F:      arch/arm64/boot/dts/lg/
1862
1863 ARM/LOGICPD PXA270 MACHINE SUPPORT
1864 M:      Lennert Buytenhek <kernel@wantstofly.org>
1865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1866 S:      Maintained
1867
1868 ARM/LPC18XX ARCHITECTURE
1869 M:      Vladimir Zapolskiy <vz@mleia.com>
1870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1871 S:      Maintained
1872 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1873 F:      arch/arm/boot/dts/lpc43*
1874 F:      drivers/i2c/busses/i2c-lpc2k.c
1875 F:      drivers/memory/pl172.c
1876 F:      drivers/mtd/spi-nor/nxp-spifi.c
1877 F:      drivers/rtc/rtc-lpc24xx.c
1878 N:      lpc18xx
1879
1880 ARM/LPC32XX SOC SUPPORT
1881 M:      Vladimir Zapolskiy <vz@mleia.com>
1882 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1884 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1885 S:      Maintained
1886 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1887 F:      arch/arm/boot/dts/lpc32*
1888 F:      arch/arm/mach-lpc32xx/
1889 F:      drivers/i2c/busses/i2c-pnx.c
1890 F:      drivers/net/ethernet/nxp/lpc_eth.c
1891 F:      drivers/usb/host/ohci-nxp.c
1892 F:      drivers/watchdog/pnx4008_wdt.c
1893 N:      lpc32xx
1894
1895 ARM/MAGICIAN MACHINE SUPPORT
1896 M:      Philipp Zabel <philipp.zabel@gmail.com>
1897 S:      Maintained
1898
1899 ARM/Marvell Dove/MV78xx0/Orion SOC support
1900 M:      Jason Cooper <jason@lakedaemon.net>
1901 M:      Andrew Lunn <andrew@lunn.ch>
1902 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1903 M:      Gregory Clement <gregory.clement@bootlin.com>
1904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1905 S:      Maintained
1906 F:      Documentation/devicetree/bindings/soc/dove/
1907 F:      arch/arm/mach-dove/
1908 F:      arch/arm/mach-mv78xx0/
1909 F:      arch/arm/mach-orion5x/
1910 F:      arch/arm/plat-orion/
1911 F:      arch/arm/boot/dts/dove*
1912 F:      arch/arm/boot/dts/orion5x*
1913 T:      git git://git.infradead.org/linux-mvebu.git
1914
1915 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1916 M:      Jason Cooper <jason@lakedaemon.net>
1917 M:      Andrew Lunn <andrew@lunn.ch>
1918 M:      Gregory Clement <gregory.clement@bootlin.com>
1919 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1920 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1921 S:      Maintained
1922 F:      arch/arm/boot/dts/armada*
1923 F:      arch/arm/boot/dts/kirkwood*
1924 F:      arch/arm/configs/mvebu_*_defconfig
1925 F:      arch/arm/mach-mvebu/
1926 F:      arch/arm64/boot/dts/marvell/armada*
1927 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1928 F:      drivers/cpufreq/armada-8k-cpufreq.c
1929 F:      drivers/cpufreq/mvebu-cpufreq.c
1930 F:      drivers/irqchip/irq-armada-370-xp.c
1931 F:      drivers/irqchip/irq-mvebu-*
1932 F:      drivers/pinctrl/mvebu/
1933 F:      drivers/rtc/rtc-armada38x.c
1934 T:      git git://git.infradead.org/linux-mvebu.git
1935
1936 ARM/Mediatek RTC DRIVER
1937 M:      Eddie Huang <eddie.huang@mediatek.com>
1938 M:      Sean Wang <sean.wang@mediatek.com>
1939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1940 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1941 S:      Maintained
1942 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1943 F:      drivers/rtc/rtc-mt6397.c
1944 F:      drivers/rtc/rtc-mt7622.c
1945
1946 ARM/Mediatek SoC support
1947 M:      Matthias Brugger <matthias.bgg@gmail.com>
1948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1949 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1950 W:      https://mtk.bcnfs.org/
1951 C:      irc://chat.freenode.net/linux-mediatek
1952 S:      Maintained
1953 F:      arch/arm/boot/dts/mt6*
1954 F:      arch/arm/boot/dts/mt7*
1955 F:      arch/arm/boot/dts/mt8*
1956 F:      arch/arm/mach-mediatek/
1957 F:      arch/arm64/boot/dts/mediatek/
1958 F:      drivers/soc/mediatek/
1959 N:      mtk
1960 N:      mt[678]
1961 K:      mediatek
1962
1963 ARM/Mediatek USB3 PHY DRIVER
1964 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1965 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1966 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1967 S:      Maintained
1968 F:      drivers/phy/mediatek/
1969 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
1970
1971 ARM/Microchip (AT91) SoC support
1972 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
1973 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
1974 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
1975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1976 W:      http://www.linux4sam.org
1977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
1978 S:      Supported
1979 N:      at91
1980 N:      atmel
1981 F:      arch/arm/mach-at91/
1982 F:      include/soc/at91/
1983 F:      arch/arm/boot/dts/at91*.dts
1984 F:      arch/arm/boot/dts/at91*.dtsi
1985 F:      arch/arm/boot/dts/sama*.dts
1986 F:      arch/arm/boot/dts/sama*.dtsi
1987 F:      arch/arm/include/debug/at91.S
1988 F:      drivers/memory/atmel*
1989 F:      drivers/watchdog/sama5d4_wdt.c
1990 X:      drivers/input/touchscreen/atmel_mxt_ts.c
1991 X:      drivers/net/wireless/atmel/
1992
1993 ARM/MIOA701 MACHINE SUPPORT
1994 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1996 F:      arch/arm/mach-pxa/mioa701.c
1997 S:      Maintained
1998
1999 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2000 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2001 S:      Maintained
2002
2003 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2004 M:      Linus Walleij <linus.walleij@linaro.org>
2005 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2006 S:      Maintained
2007 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2008 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2009 F:      arch/arm/mach-nomadik/
2010 F:      arch/arm/mach-u300/
2011 F:      arch/arm/mach-ux500/
2012 F:      drivers/soc/ux500/
2013 F:      arch/arm/boot/dts/ste-*
2014 F:      drivers/clk/clk-nomadik.c
2015 F:      drivers/clk/clk-u300.c
2016 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2017 F:      drivers/clocksource/timer-u300.c
2018 F:      drivers/dma/coh901318*
2019 F:      drivers/dma/ste_dma40*
2020 F:      drivers/hwspinlock/u8500_hsem.c
2021 F:      drivers/i2c/busses/i2c-nomadik.c
2022 F:      drivers/i2c/busses/i2c-stu300.c
2023 F:      drivers/mfd/ab3100*
2024 F:      drivers/mfd/ab8500*
2025 F:      drivers/mfd/abx500*
2026 F:      drivers/mfd/dbx500*
2027 F:      drivers/mfd/db8500*
2028 F:      drivers/pinctrl/nomadik/
2029 F:      drivers/pinctrl/pinctrl-coh901*
2030 F:      drivers/pinctrl/pinctrl-u300.c
2031 F:      drivers/rtc/rtc-ab3100.c
2032 F:      drivers/rtc/rtc-ab8500.c
2033 F:      drivers/rtc/rtc-coh901331.c
2034 F:      drivers/rtc/rtc-pl031.c
2035 F:      drivers/watchdog/coh901327_wdt.c
2036 F:      Documentation/devicetree/bindings/arm/ste-*
2037 F:      Documentation/devicetree/bindings/arm/ux500/
2038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2039
2040 ARM/NUVOTON NPCM ARCHITECTURE
2041 M:      Avi Fishman <avifishman70@gmail.com>
2042 M:      Tomer Maimon <tmaimon77@gmail.com>
2043 M:      Tali Perry <tali.perry1@gmail.com>
2044 R:      Patrick Venture <venture@google.com>
2045 R:      Nancy Yuen <yuenn@google.com>
2046 R:      Benjamin Fair <benjaminfair@google.com>
2047 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2048 S:      Supported
2049 F:      arch/arm/mach-npcm/
2050 F:      arch/arm/boot/dts/nuvoton-npcm*
2051 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2052 F:      drivers/*/*npcm*
2053 F:      Documentation/devicetree/bindings/*/*npcm*
2054 F:      Documentation/devicetree/bindings/*/*/*npcm*
2055
2056 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2057 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2058 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2059 S:      Orphan
2060 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2061 F:      arch/arm/mach-s3c24xx/gta02.h
2062
2063 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2064 M:      Alexander Clouter <alex@digriz.org.uk>
2065 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2066 W:      http://www.digriz.org.uk/ts78xx/kernel
2067 S:      Maintained
2068 F:      arch/arm/mach-orion5x/ts78xx-*
2069
2070 ARM/OXNAS platform support
2071 M:      Neil Armstrong <narmstrong@baylibre.com>
2072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2073 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2074 S:      Maintained
2075 F:      arch/arm/mach-oxnas/
2076 F:      arch/arm/boot/dts/ox8*.dts*
2077 N:      oxnas
2078
2079 ARM/PALM TREO SUPPORT
2080 M:      Tomas Cech <sleep_walker@suse.com>
2081 L:      linux-arm-kernel@lists.infradead.org
2082 W:      http://hackndev.com
2083 S:      Maintained
2084 F:      arch/arm/mach-pxa/palmtreo.*
2085
2086 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2087 M:      Marek Vasut <marek.vasut@gmail.com>
2088 L:      linux-arm-kernel@lists.infradead.org
2089 W:      http://hackndev.com
2090 S:      Maintained
2091 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2092 F:      arch/arm/mach-pxa/palmtx.c
2093 F:      arch/arm/mach-pxa/palmt5.*
2094 F:      arch/arm/mach-pxa/include/mach/palmld.h
2095 F:      arch/arm/mach-pxa/palmld.c
2096 F:      arch/arm/mach-pxa/palmte2.*
2097 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2098 F:      arch/arm/mach-pxa/palmtc.c
2099
2100 ARM/PALMZ72 SUPPORT
2101 M:      Sergey Lapin <slapin@ossfans.org>
2102 L:      linux-arm-kernel@lists.infradead.org
2103 W:      http://hackndev.com
2104 S:      Maintained
2105 F:      arch/arm/mach-pxa/palmz72.*
2106
2107 ARM/PLEB SUPPORT
2108 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2109 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2110 S:      Maintained
2111
2112 ARM/PT DIGITAL BOARD PORT
2113 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2114 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2115 W:      http://www.armlinux.org.uk/
2116 S:      Maintained
2117
2118 ARM/QUALCOMM SUPPORT
2119 M:      Andy Gross <agross@kernel.org>
2120 L:      linux-arm-msm@vger.kernel.org
2121 S:      Maintained
2122 F:      Documentation/devicetree/bindings/soc/qcom/
2123 F:      Documentation/devicetree/bindings/*/qcom*
2124 F:      arch/arm/boot/dts/qcom-*.dts
2125 F:      arch/arm/boot/dts/qcom-*.dtsi
2126 F:      arch/arm/mach-qcom/
2127 F:      arch/arm64/boot/dts/qcom/
2128 F:      drivers/*/qcom/
2129 F:      drivers/*/qcom*
2130 F:      drivers/*/*/qcom/
2131 F:      drivers/*/*/qcom*
2132 F:      drivers/*/pm8???-*
2133 F:      drivers/bluetooth/btqcomsmd.c
2134 F:      drivers/clocksource/timer-qcom.c
2135 F:      drivers/extcon/extcon-qcom*
2136 F:      drivers/iommu/msm*
2137 F:      drivers/i2c/busses/i2c-qup.c
2138 F:      drivers/i2c/busses/i2c-qcom-geni.c
2139 F:      drivers/mfd/ssbi.c
2140 F:      drivers/mmc/host/mmci_qcom*
2141 F:      drivers/mmc/host/sdhci-msm.c
2142 F:      drivers/pci/controller/dwc/pcie-qcom.c
2143 F:      drivers/phy/qualcomm/
2144 F:      drivers/power/*/msm*
2145 F:      drivers/reset/reset-qcom-*
2146 F:      drivers/scsi/ufs/ufs-qcom.*
2147 F:      drivers/spi/spi-qup.c
2148 F:      drivers/spi/spi-geni-qcom.c
2149 F:      drivers/spi/spi-qcom-qspi.c
2150 F:      drivers/tty/serial/msm_serial.c
2151 F:      drivers/usb/dwc3/dwc3-qcom.c
2152 F:      include/dt-bindings/*/qcom*
2153 F:      include/linux/*/qcom*
2154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2155
2156 ARM/RADISYS ENP2611 MACHINE SUPPORT
2157 M:      Lennert Buytenhek <kernel@wantstofly.org>
2158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2159 S:      Maintained
2160
2161 ARM/RDA MICRO ARCHITECTURE
2162 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2164 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2165 S:      Maintained
2166 F:      arch/arm/boot/dts/rda8810pl-*
2167 F:      drivers/clocksource/timer-rda.c
2168 F:      drivers/irqchip/irq-rda-intc.c
2169 F:      drivers/tty/serial/rda-uart.c
2170 F:      Documentation/devicetree/bindings/arm/rda.yaml
2171 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2172 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2173 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2174
2175 ARM/REALTEK ARCHITECTURE
2176 M:      Andreas Färber <afaerber@suse.de>
2177 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2178 S:      Maintained
2179 F:      arch/arm64/boot/dts/realtek/
2180 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2181
2182 ARM/RENESAS ARM64 ARCHITECTURE
2183 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2184 M:      Magnus Damm <magnus.damm@gmail.com>
2185 L:      linux-renesas-soc@vger.kernel.org
2186 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2188 S:      Supported
2189 F:      arch/arm64/boot/dts/renesas/
2190 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2191 F:      drivers/soc/renesas/
2192 F:      include/linux/soc/renesas/
2193
2194 ARM/RISCPC ARCHITECTURE
2195 M:      Russell King <linux@armlinux.org.uk>
2196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2197 W:      http://www.armlinux.org.uk/
2198 S:      Maintained
2199 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2200 F:      arch/arm/include/asm/hardware/ioc.h
2201 F:      arch/arm/include/asm/hardware/iomd.h
2202 F:      arch/arm/include/asm/hardware/memc.h
2203 F:      arch/arm/mach-rpc/
2204 F:      drivers/net/ethernet/8390/etherh.c
2205 F:      drivers/net/ethernet/i825xx/ether1*
2206 F:      drivers/net/ethernet/seeq/ether3*
2207 F:      drivers/scsi/arm/
2208
2209 ARM/Rockchip SoC support
2210 M:      Heiko Stuebner <heiko@sntech.de>
2211 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2212 L:      linux-rockchip@lists.infradead.org
2213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2214 S:      Maintained
2215 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.txt
2216 F:      arch/arm/boot/dts/rk3*
2217 F:      arch/arm/boot/dts/rv1108*
2218 F:      arch/arm/mach-rockchip/
2219 F:      drivers/clk/rockchip/
2220 F:      drivers/i2c/busses/i2c-rk3x.c
2221 F:      drivers/*/*rockchip*
2222 F:      drivers/*/*/*rockchip*
2223 F:      sound/soc/rockchip/
2224 N:      rockchip
2225
2226 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2227 M:      Kukjin Kim <kgene@kernel.org>
2228 M:      Krzysztof Kozlowski <krzk@kernel.org>
2229 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2230 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2231 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2232 S:      Maintained
2233 F:      arch/arm/boot/dts/s3c*
2234 F:      arch/arm/boot/dts/s5p*
2235 F:      arch/arm/boot/dts/exynos*
2236 F:      arch/arm64/boot/dts/exynos/
2237 F:      arch/arm/plat-samsung/
2238 F:      arch/arm/mach-s3c24*/
2239 F:      arch/arm/mach-s3c64xx/
2240 F:      arch/arm/mach-s5p*/
2241 F:      arch/arm/mach-exynos*/
2242 F:      drivers/*/*s3c24*
2243 F:      drivers/*/*/*s3c24*
2244 F:      drivers/*/*s3c64xx*
2245 F:      drivers/*/*s5pv210*
2246 F:      drivers/memory/samsung/
2247 F:      drivers/soc/samsung/
2248 F:      include/linux/soc/samsung/
2249 F:      Documentation/arm/samsung/
2250 F:      Documentation/devicetree/bindings/arm/samsung/
2251 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
2252 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
2253 N:      exynos
2254
2255 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2256 M:      Kyungmin Park <kyungmin.park@samsung.com>
2257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2258 S:      Maintained
2259 F:      arch/arm/mach-s5pv210/
2260
2261 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2262 M:      Kyungmin Park <kyungmin.park@samsung.com>
2263 M:      Kamil Debski <kamil@wypas.org>
2264 M:      Andrzej Hajda <a.hajda@samsung.com>
2265 L:      linux-arm-kernel@lists.infradead.org
2266 L:      linux-media@vger.kernel.org
2267 S:      Maintained
2268 F:      drivers/media/platform/s5p-g2d/
2269
2270 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2271 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2272 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2273 L:      linux-media@vger.kernel.org
2274 S:      Maintained
2275 F:      drivers/media/platform/s5p-cec/
2276 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2277
2278 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2279 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2280 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2281 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2282 L:      linux-arm-kernel@lists.infradead.org
2283 L:      linux-media@vger.kernel.org
2284 S:      Maintained
2285 F:      drivers/media/platform/s5p-jpeg/
2286
2287 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2288 M:      Kyungmin Park <kyungmin.park@samsung.com>
2289 M:      Kamil Debski <kamil@wypas.org>
2290 M:      Jeongtae Park <jtp.park@samsung.com>
2291 M:      Andrzej Hajda <a.hajda@samsung.com>
2292 L:      linux-arm-kernel@lists.infradead.org
2293 L:      linux-media@vger.kernel.org
2294 S:      Maintained
2295 F:      drivers/media/platform/s5p-mfc/
2296
2297 ARM/SHMOBILE ARM ARCHITECTURE
2298 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2299 M:      Magnus Damm <magnus.damm@gmail.com>
2300 L:      linux-renesas-soc@vger.kernel.org
2301 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2303 S:      Supported
2304 F:      arch/arm/boot/dts/emev2*
2305 F:      arch/arm/boot/dts/gr-peach*
2306 F:      arch/arm/boot/dts/iwg20d-q7*
2307 F:      arch/arm/boot/dts/r7s*
2308 F:      arch/arm/boot/dts/r8a*
2309 F:      arch/arm/boot/dts/r9a*
2310 F:      arch/arm/boot/dts/sh*
2311 F:      arch/arm/configs/shmobile_defconfig
2312 F:      arch/arm/include/debug/renesas-scif.S
2313 F:      arch/arm/mach-shmobile/
2314 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2315 F:      drivers/soc/renesas/
2316 F:      include/linux/soc/renesas/
2317
2318 ARM/SOCFPGA ARCHITECTURE
2319 M:      Dinh Nguyen <dinguyen@kernel.org>
2320 S:      Maintained
2321 F:      arch/arm/mach-socfpga/
2322 F:      arch/arm/boot/dts/socfpga*
2323 F:      arch/arm/configs/socfpga_defconfig
2324 F:      arch/arm64/boot/dts/altera/
2325 F:      arch/arm64/boot/dts/intel/
2326 W:      http://www.rocketboards.org
2327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2328
2329 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2330 M:      Dinh Nguyen <dinguyen@kernel.org>
2331 S:      Maintained
2332 F:      drivers/clk/socfpga/
2333
2334 ARM/SOCFPGA EDAC SUPPORT
2335 M:      Thor Thayer <thor.thayer@linux.intel.com>
2336 S:      Maintained
2337 F:      drivers/edac/altera_edac.
2338
2339 ARM/SPREADTRUM SoC SUPPORT
2340 M:      Orson Zhai <orsonzhai@gmail.com>
2341 M:      Baolin Wang <baolin.wang7@gmail.com>
2342 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2343 S:      Maintained
2344 F:      arch/arm64/boot/dts/sprd
2345 N:      sprd
2346 N:      sc27xx
2347 N:      sc2731
2348
2349 ARM/STI ARCHITECTURE
2350 M:      Patrice Chotard <patrice.chotard@st.com>
2351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2352 W:      http://www.stlinux.com
2353 S:      Maintained
2354 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2355 F:      arch/arm/mach-sti/
2356 F:      arch/arm/boot/dts/sti*
2357 F:      drivers/char/hw_random/st-rng.c
2358 F:      drivers/clocksource/arm_global_timer.c
2359 F:      drivers/clocksource/clksrc_st_lpc.c
2360 F:      drivers/cpufreq/sti-cpufreq.c
2361 F:      drivers/dma/st_fdma*
2362 F:      drivers/i2c/busses/i2c-st.c
2363 F:      drivers/media/rc/st_rc.c
2364 F:      drivers/media/platform/sti/c8sectpfe/
2365 F:      drivers/mmc/host/sdhci-st.c
2366 F:      drivers/phy/st/phy-miphy28lp.c
2367 F:      drivers/phy/st/phy-stih407-usb.c
2368 F:      drivers/pinctrl/pinctrl-st.c
2369 F:      drivers/remoteproc/st_remoteproc.c
2370 F:      drivers/remoteproc/st_slim_rproc.c
2371 F:      drivers/reset/sti/
2372 F:      drivers/rtc/rtc-st-lpc.c
2373 F:      drivers/tty/serial/st-asc.c
2374 F:      drivers/usb/dwc3/dwc3-st.c
2375 F:      drivers/usb/host/ehci-st.c
2376 F:      drivers/usb/host/ohci-st.c
2377 F:      drivers/watchdog/st_lpc_wdt.c
2378 F:      drivers/ata/ahci_st.c
2379 F:      include/linux/remoteproc/st_slim_rproc.h
2380
2381 ARM/STM32 ARCHITECTURE
2382 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2383 M:      Alexandre Torgue <alexandre.torgue@st.com>
2384 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2386 S:      Maintained
2387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2388 N:      stm32
2389 N:      stm
2390 F:      arch/arm/boot/dts/stm32*
2391 F:      arch/arm/mach-stm32/
2392 F:      drivers/clocksource/armv7m_systick.c
2393
2394 ARM/Synaptics SoC support
2395 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2396 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2398 S:      Maintained
2399 F:      arch/arm/mach-berlin/
2400 F:      arch/arm/boot/dts/berlin*
2401 F:      arch/arm64/boot/dts/synaptics/
2402
2403 ARM/TANGO ARCHITECTURE
2404 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2405 M:      Mans Rullgard <mans@mansr.com>
2406 L:      linux-arm-kernel@lists.infradead.org
2407 S:      Odd Fixes
2408 N:      tango
2409
2410 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2411 M:      Lennert Buytenhek <kernel@wantstofly.org>
2412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2413 S:      Maintained
2414
2415 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2416 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2417 L:      linux-tegra@vger.kernel.org
2418 L:      linux-media@vger.kernel.org
2419 S:      Maintained
2420 F:      drivers/media/platform/tegra-cec/
2421 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2422
2423 ARM/TETON BGA MACHINE SUPPORT
2424 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2425 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2426 S:      Maintained
2427
2428 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2429 M:      Santosh Shilimkar <ssantosh@kernel.org>
2430 L:      linux-kernel@vger.kernel.org
2431 S:      Maintained
2432 F:      drivers/memory/*emif*
2433
2434 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2435 M:      Tero Kristo <t-kristo@ti.com>
2436 M:      Nishanth Menon <nm@ti.com>
2437 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2438 S:      Supported
2439 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2440 F:      arch/arm64/boot/dts/ti/Makefile
2441 F:      arch/arm64/boot/dts/ti/k3-*
2442 F:      include/dt-bindings/pinctrl/k3.h
2443
2444 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2445 M:      Santosh Shilimkar <ssantosh@kernel.org>
2446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2447 S:      Maintained
2448 F:      arch/arm/mach-keystone/
2449 F:      arch/arm/boot/dts/keystone-*
2450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2451
2452 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2453 M:      Santosh Shilimkar <ssantosh@kernel.org>
2454 L:      linux-kernel@vger.kernel.org
2455 S:      Maintained
2456 F:      drivers/clk/keystone/
2457
2458 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2459 M:      Santosh Shilimkar <ssantosh@kernel.org>
2460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2461 L:      linux-kernel@vger.kernel.org
2462 S:      Maintained
2463 F:      drivers/clocksource/timer-keystone.c
2464
2465 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2466 M:      Santosh Shilimkar <ssantosh@kernel.org>
2467 L:      linux-kernel@vger.kernel.org
2468 S:      Maintained
2469 F:      drivers/power/reset/keystone-reset.c
2470
2471 ARM/THECUS N2100 MACHINE SUPPORT
2472 M:      Lennert Buytenhek <kernel@wantstofly.org>
2473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2474 S:      Maintained
2475
2476 ARM/TOSA MACHINE SUPPORT
2477 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2478 M:      Dirk Opfer <dirk@opfer-online.de>
2479 S:      Maintained
2480
2481 ARM/UNIPHIER ARCHITECTURE
2482 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2485 S:      Maintained
2486 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.txt
2487 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2488 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2489 F:      arch/arm/boot/dts/uniphier*
2490 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2491 F:      arch/arm/mach-uniphier/
2492 F:      arch/arm/mm/cache-uniphier.c
2493 F:      arch/arm64/boot/dts/socionext/uniphier*
2494 F:      drivers/bus/uniphier-system-bus.c
2495 F:      drivers/clk/uniphier/
2496 F:      drivers/dma/uniphier-mdmac.c
2497 F:      drivers/gpio/gpio-uniphier.c
2498 F:      drivers/i2c/busses/i2c-uniphier*
2499 F:      drivers/irqchip/irq-uniphier-aidet.c
2500 F:      drivers/mmc/host/uniphier-sd.c
2501 F:      drivers/pinctrl/uniphier/
2502 F:      drivers/reset/reset-uniphier.c
2503 F:      drivers/tty/serial/8250/8250_uniphier.c
2504 N:      uniphier
2505
2506 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2507 M:      Ulf Hansson <ulf.hansson@linaro.org>
2508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2509 T:      git git://git.linaro.org/people/ulfh/clk.git
2510 S:      Maintained
2511 F:      drivers/clk/ux500/
2512
2513 ARM/VERSATILE EXPRESS PLATFORM
2514 M:      Liviu Dudau <liviu.dudau@arm.com>
2515 M:      Sudeep Holla <sudeep.holla@arm.com>
2516 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2518 S:      Maintained
2519 F:      arch/arm/boot/dts/vexpress*
2520 F:      arch/arm64/boot/dts/arm/
2521 F:      arch/arm/mach-vexpress/
2522 F:      */*/vexpress*
2523 F:      */*/*/vexpress*
2524 F:      drivers/clk/versatile/clk-vexpress-osc.c
2525 F:      drivers/clocksource/timer-versatile.c
2526 N:      mps2
2527
2528 ARM/VFP SUPPORT
2529 M:      Russell King <linux@armlinux.org.uk>
2530 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2531 W:      http://www.armlinux.org.uk/
2532 S:      Maintained
2533 F:      arch/arm/vfp/
2534
2535 ARM/VOIPAC PXA270 SUPPORT
2536 M:      Marek Vasut <marek.vasut@gmail.com>
2537 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2538 S:      Maintained
2539 F:      arch/arm/mach-pxa/vpac270.c
2540 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2541
2542 ARM/VT8500 ARM ARCHITECTURE
2543 M:      Tony Prisk <linux@prisktech.co.nz>
2544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2545 S:      Maintained
2546 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2547 F:      arch/arm/mach-vt8500/
2548 F:      drivers/clocksource/timer-vt8500.c
2549 F:      drivers/i2c/busses/i2c-wmt.c
2550 F:      drivers/mmc/host/wmt-sdmmc.c
2551 F:      drivers/pwm/pwm-vt8500.c
2552 F:      drivers/rtc/rtc-vt8500.c
2553 F:      drivers/tty/serial/vt8500_serial.c
2554 F:      drivers/usb/host/ehci-platform.c
2555 F:      drivers/usb/host/uhci-platform.c
2556 F:      drivers/video/fbdev/vt8500lcdfb.*
2557 F:      drivers/video/fbdev/wm8505fb*
2558 F:      drivers/video/fbdev/wmt_ge_rops.*
2559
2560 ARM/ZIPIT Z2 SUPPORT
2561 M:      Marek Vasut <marek.vasut@gmail.com>
2562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2563 S:      Maintained
2564 F:      arch/arm/mach-pxa/z2.c
2565 F:      arch/arm/mach-pxa/include/mach/z2.h
2566
2567 ARM/ZTE ARCHITECTURE
2568 M:      Jun Nie <jun.nie@linaro.org>
2569 M:      Shawn Guo <shawnguo@kernel.org>
2570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2571 S:      Maintained
2572 F:      arch/arm/boot/dts/zx2967*
2573 F:      arch/arm/mach-zx/
2574 F:      arch/arm64/boot/dts/zte/
2575 F:      drivers/clk/zte/
2576 F:      drivers/dma/zx_dma.c
2577 F:      drivers/gpio/gpio-zx.c
2578 F:      drivers/i2c/busses/i2c-zx2967.c
2579 F:      drivers/mmc/host/dw_mmc-zx.*
2580 F:      drivers/pinctrl/zte/
2581 F:      drivers/soc/zte/
2582 F:      drivers/thermal/zx2967_thermal.c
2583 F:      drivers/watchdog/zx2967_wdt.c
2584 F:      Documentation/devicetree/bindings/arm/zte.yaml
2585 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2586 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2587 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2588 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2589 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2590 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2591 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2592 F:      Documentation/devicetree/bindings/soc/zte/
2593 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2594 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2595 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2596 F:      include/dt-bindings/clock/zx2967*.h
2597 F:      include/dt-bindings/soc/zte,*.h
2598 F:      sound/soc/codecs/zx_aud96p22.c
2599 F:      sound/soc/zte/
2600
2601 ARM/ZYNQ ARCHITECTURE
2602 M:      Michal Simek <michal.simek@xilinx.com>
2603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2604 W:      http://wiki.xilinx.com
2605 T:      git https://github.com/Xilinx/linux-xlnx.git
2606 S:      Supported
2607 F:      arch/arm/mach-zynq/
2608 F:      drivers/cpuidle/cpuidle-zynq.c
2609 F:      drivers/block/xsysace.c
2610 N:      zynq
2611 N:      xilinx
2612 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2613 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2614 F:      drivers/clocksource/timer-cadence-ttc.c
2615 F:      drivers/i2c/busses/i2c-cadence.c
2616 F:      drivers/mmc/host/sdhci-of-arasan.c
2617 F:      drivers/edac/synopsys_edac.c
2618 F:      drivers/i2c/busses/i2c-xiic.c
2619
2620 ARM64 PORT (AARCH64 ARCHITECTURE)
2621 M:      Catalin Marinas <catalin.marinas@arm.com>
2622 M:      Will Deacon <will@kernel.org>
2623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2625 S:      Maintained
2626 F:      arch/arm64/
2627 X:      arch/arm64/boot/dts/
2628 F:      Documentation/arm64/
2629 F:      tools/testing/selftests/arm64/
2630
2631 AS3645A LED FLASH CONTROLLER DRIVER
2632 M:      Sakari Ailus <sakari.ailus@iki.fi>
2633 L:      linux-leds@vger.kernel.org
2634 S:      Maintained
2635 F:      drivers/leds/leds-as3645a.c
2636
2637 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2638 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2639 L:      linux-media@vger.kernel.org
2640 T:      git git://linuxtv.org/media_tree.git
2641 S:      Maintained
2642 F:      drivers/media/i2c/ak7375.c
2643 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2644
2645 ASAHI KASEI AK8974 DRIVER
2646 M:      Linus Walleij <linus.walleij@linaro.org>
2647 L:      linux-iio@vger.kernel.org
2648 W:      http://www.akm.com/
2649 S:      Supported
2650 F:      drivers/iio/magnetometer/ak8974.c
2651
2652 ASC7621 HARDWARE MONITOR DRIVER
2653 M:      George Joseph <george.joseph@fairview5.com>
2654 L:      linux-hwmon@vger.kernel.org
2655 S:      Maintained
2656 F:      Documentation/hwmon/asc7621.rst
2657 F:      drivers/hwmon/asc7621.c
2658
2659 ASPEED PINCTRL DRIVERS
2660 M:      Andrew Jeffery <andrew@aj.id.au>
2661 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2662 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2663 L:      linux-gpio@vger.kernel.org
2664 S:      Maintained
2665 F:      drivers/pinctrl/aspeed/
2666 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2667
2668 ASPEED VIDEO ENGINE DRIVER
2669 M:      Eddie James <eajames@linux.ibm.com>
2670 L:      linux-media@vger.kernel.org
2671 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2672 S:      Maintained
2673 F:      drivers/media/platform/aspeed-video.c
2674 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2675
2676 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2677 M:      Corentin Chary <corentin.chary@gmail.com>
2678 L:      acpi4asus-user@lists.sourceforge.net
2679 L:      platform-driver-x86@vger.kernel.org
2680 W:      http://acpi4asus.sf.net
2681 S:      Maintained
2682 F:      drivers/platform/x86/asus*.c
2683 F:      drivers/platform/x86/eeepc*.c
2684
2685 ASUS WIRELESS RADIO CONTROL DRIVER
2686 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2687 L:      platform-driver-x86@vger.kernel.org
2688 S:      Maintained
2689 F:      drivers/platform/x86/asus-wireless.c
2690
2691 ASYMMETRIC KEYS
2692 M:      David Howells <dhowells@redhat.com>
2693 L:      keyrings@vger.kernel.org
2694 S:      Maintained
2695 F:      Documentation/crypto/asymmetric-keys.txt
2696 F:      include/linux/verification.h
2697 F:      include/crypto/public_key.h
2698 F:      include/crypto/pkcs7.h
2699 F:      crypto/asymmetric_keys/
2700
2701 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2702 R:      Dan Williams <dan.j.williams@intel.com>
2703 W:      http://sourceforge.net/projects/xscaleiop
2704 S:      Odd fixes
2705 F:      Documentation/crypto/async-tx-api.txt
2706 F:      crypto/async_tx/
2707 F:      drivers/dma/
2708 F:      include/linux/dmaengine.h
2709 F:      include/linux/async_tx.h
2710
2711 AT24 EEPROM DRIVER
2712 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2713 L:      linux-i2c@vger.kernel.org
2714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2715 S:      Maintained
2716 F:      Documentation/devicetree/bindings/eeprom/at24.txt
2717 F:      drivers/misc/eeprom/at24.c
2718
2719 ATA OVER ETHERNET (AOE) DRIVER
2720 M:      "Justin Sanders" <justin@coraid.com>
2721 W:      http://www.openaoe.org/
2722 S:      Supported
2723 F:      Documentation/admin-guide/aoe/
2724 F:      drivers/block/aoe/
2725
2726 ATHEROS 71XX/9XXX GPIO DRIVER
2727 M:      Alban Bedel <albeu@free.fr>
2728 W:      https://github.com/AlbanBedel/linux
2729 T:      git git://github.com/AlbanBedel/linux
2730 S:      Maintained
2731 F:      drivers/gpio/gpio-ath79.c
2732 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2733
2734 ATHEROS 71XX/9XXX USB PHY DRIVER
2735 M:      Alban Bedel <albeu@free.fr>
2736 W:      https://github.com/AlbanBedel/linux
2737 T:      git git://github.com/AlbanBedel/linux
2738 S:      Maintained
2739 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2740 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2741
2742 ATHEROS ATH GENERIC UTILITIES
2743 M:      Kalle Valo <kvalo@codeaurora.org>
2744 L:      linux-wireless@vger.kernel.org
2745 S:      Supported
2746 F:      drivers/net/wireless/ath/*
2747
2748 ATHEROS ATH5K WIRELESS DRIVER
2749 M:      Jiri Slaby <jirislaby@gmail.com>
2750 M:      Nick Kossifidis <mickflemm@gmail.com>
2751 M:      Luis Chamberlain <mcgrof@kernel.org>
2752 L:      linux-wireless@vger.kernel.org
2753 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2754 S:      Maintained
2755 F:      drivers/net/wireless/ath/ath5k/
2756
2757 ATHEROS ATH6KL WIRELESS DRIVER
2758 M:      Kalle Valo <kvalo@codeaurora.org>
2759 L:      linux-wireless@vger.kernel.org
2760 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2762 S:      Supported
2763 F:      drivers/net/wireless/ath/ath6kl/
2764
2765 ATI_REMOTE2 DRIVER
2766 M:      Ville Syrjala <syrjala@sci.fi>
2767 S:      Maintained
2768 F:      drivers/input/misc/ati_remote2.c
2769
2770 ATK0110 HWMON DRIVER
2771 M:      Luca Tettamanti <kronos.it@gmail.com>
2772 L:      linux-hwmon@vger.kernel.org
2773 S:      Maintained
2774 F:      drivers/hwmon/asus_atk0110.c
2775
2776 ATLX ETHERNET DRIVERS
2777 M:      Jay Cliburn <jcliburn@gmail.com>
2778 M:      Chris Snook <chris.snook@gmail.com>
2779 L:      netdev@vger.kernel.org
2780 W:      http://sourceforge.net/projects/atl1
2781 W:      http://atl1.sourceforge.net
2782 S:      Maintained
2783 F:      drivers/net/ethernet/atheros/
2784
2785 ATM
2786 M:      Chas Williams <3chas3@gmail.com>
2787 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2788 L:      netdev@vger.kernel.org
2789 W:      http://linux-atm.sourceforge.net
2790 S:      Maintained
2791 F:      drivers/atm/
2792 F:      include/linux/atm*
2793 F:      include/uapi/linux/atm*
2794
2795 ATMEL MACB ETHERNET DRIVER
2796 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2797 S:      Supported
2798 F:      drivers/net/ethernet/cadence/
2799
2800 ATMEL MAXTOUCH DRIVER
2801 M:      Nick Dyer <nick@shmanahar.org>
2802 T:      git git://github.com/ndyer/linux.git
2803 S:      Maintained
2804 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2805 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2806
2807 ATMEL WIRELESS DRIVER
2808 M:      Simon Kelley <simon@thekelleys.org.uk>
2809 L:      linux-wireless@vger.kernel.org
2810 W:      http://www.thekelleys.org.uk/atmel
2811 W:      http://atmelwlandriver.sourceforge.net/
2812 S:      Maintained
2813 F:      drivers/net/wireless/atmel/atmel*
2814
2815 ATOMIC INFRASTRUCTURE
2816 M:      Will Deacon <will@kernel.org>
2817 M:      Peter Zijlstra <peterz@infradead.org>
2818 R:      Boqun Feng <boqun.feng@gmail.com>
2819 L:      linux-kernel@vger.kernel.org
2820 S:      Maintained
2821 F:      arch/*/include/asm/atomic*.h
2822 F:      include/*/atomic*.h
2823 F:      scripts/atomic/
2824
2825 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2826 M:      Bradley Grove <linuxdrivers@attotech.com>
2827 L:      linux-scsi@vger.kernel.org
2828 W:      http://www.attotech.com
2829 S:      Supported
2830 F:      drivers/scsi/esas2r
2831
2832 ATUSB IEEE 802.15.4 RADIO DRIVER
2833 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2834 L:      linux-wpan@vger.kernel.org
2835 S:      Maintained
2836 F:      drivers/net/ieee802154/atusb.c
2837 F:      drivers/net/ieee802154/atusb.h
2838 F:      drivers/net/ieee802154/at86rf230.h
2839
2840 AUDIT SUBSYSTEM
2841 M:      Paul Moore <paul@paul-moore.com>
2842 M:      Eric Paris <eparis@redhat.com>
2843 L:      linux-audit@redhat.com (moderated for non-subscribers)
2844 W:      https://github.com/linux-audit
2845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2846 S:      Supported
2847 F:      include/linux/audit.h
2848 F:      include/uapi/linux/audit.h
2849 F:      kernel/audit*
2850
2851 AUXILIARY DISPLAY DRIVERS
2852 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2853 S:      Maintained
2854 F:      drivers/auxdisplay/
2855 F:      include/linux/cfag12864b.h
2856
2857 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2858 M:      Andreas Klinger <ak@it-klinger.de>
2859 L:      linux-iio@vger.kernel.org
2860 S:      Maintained
2861 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2862 F:      drivers/iio/adc/hx711.c
2863
2864 AX.25 NETWORK LAYER
2865 M:      Ralf Baechle <ralf@linux-mips.org>
2866 L:      linux-hams@vger.kernel.org
2867 W:      http://www.linux-ax25.org/
2868 S:      Maintained
2869 F:      include/uapi/linux/ax25.h
2870 F:      include/net/ax25.h
2871 F:      net/ax25/
2872
2873 AXENTIA ARM DEVICES
2874 M:      Peter Rosin <peda@axentia.se>
2875 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2876 S:      Maintained
2877 F:      Documentation/devicetree/bindings/arm/axentia.txt
2878 F:      arch/arm/boot/dts/at91-linea.dtsi
2879 F:      arch/arm/boot/dts/at91-natte.dtsi
2880 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2881 F:      arch/arm/boot/dts/at91-tse850-3.dts
2882
2883 AXENTIA ASOC DRIVERS
2884 M:      Peter Rosin <peda@axentia.se>
2885 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2886 S:      Maintained
2887 F:      Documentation/devicetree/bindings/sound/axentia,*
2888 F:      sound/soc/atmel/tse850-pcm5142.c
2889
2890 AXXIA I2C CONTROLLER
2891 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
2892 L:      linux-i2c@vger.kernel.org
2893 S:      Maintained
2894 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2895 F:      drivers/i2c/busses/i2c-axxia.c
2896
2897 AZ6007 DVB DRIVER
2898 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2899 L:      linux-media@vger.kernel.org
2900 W:      https://linuxtv.org
2901 T:      git git://linuxtv.org/media_tree.git
2902 S:      Maintained
2903 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2904
2905 AZTECH FM RADIO RECEIVER DRIVER
2906 M:      Hans Verkuil <hverkuil@xs4all.nl>
2907 L:      linux-media@vger.kernel.org
2908 T:      git git://linuxtv.org/media_tree.git
2909 W:      https://linuxtv.org
2910 S:      Maintained
2911 F:      drivers/media/radio/radio-aztech*
2912
2913 B43 WIRELESS DRIVER
2914 L:      linux-wireless@vger.kernel.org
2915 L:      b43-dev@lists.infradead.org
2916 W:      http://wireless.kernel.org/en/users/Drivers/b43
2917 S:      Odd Fixes
2918 F:      drivers/net/wireless/broadcom/b43/
2919
2920 B43LEGACY WIRELESS DRIVER
2921 M:      Larry Finger <Larry.Finger@lwfinger.net>
2922 L:      linux-wireless@vger.kernel.org
2923 L:      b43-dev@lists.infradead.org
2924 W:      http://wireless.kernel.org/en/users/Drivers/b43
2925 S:      Maintained
2926 F:      drivers/net/wireless/broadcom/b43legacy/
2927
2928 BACKLIGHT CLASS/SUBSYSTEM
2929 M:      Lee Jones <lee.jones@linaro.org>
2930 M:      Daniel Thompson <daniel.thompson@linaro.org>
2931 M:      Jingoo Han <jingoohan1@gmail.com>
2932 L:      dri-devel@lists.freedesktop.org
2933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2934 S:      Maintained
2935 F:      drivers/video/backlight/
2936 F:      include/linux/backlight.h
2937 F:      include/linux/pwm_backlight.h
2938 F:      Documentation/devicetree/bindings/leds/backlight
2939 F:      Documentation/ABI/stable/sysfs-class-backlight
2940 F:      Documentation/ABI/testing/sysfs-class-backlight
2941
2942 BATMAN ADVANCED
2943 M:      Marek Lindner <mareklindner@neomailbox.ch>
2944 M:      Simon Wunderlich <sw@simonwunderlich.de>
2945 M:      Antonio Quartulli <a@unstable.cc>
2946 M:      Sven Eckelmann <sven@narfation.org>
2947 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2948 W:      https://www.open-mesh.org/
2949 B:      https://www.open-mesh.org/projects/batman-adv/issues
2950 C:      irc://chat.freenode.net/batman
2951 Q:      https://patchwork.open-mesh.org/project/batman/list/
2952 T:      git https://git.open-mesh.org/linux-merge.git
2953 S:      Maintained
2954 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
2955 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
2956 F:      Documentation/networking/batman-adv.rst
2957 F:      include/uapi/linux/batadv_packet.h
2958 F:      include/uapi/linux/batman_adv.h
2959 F:      net/batman-adv/
2960
2961 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2962 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2963 L:      linux-hams@vger.kernel.org
2964 W:      http://www.baycom.org/~tom/ham/ham.html
2965 S:      Maintained
2966 F:      drivers/net/hamradio/baycom*
2967
2968 BCACHE (BLOCK LAYER CACHE)
2969 M:      Coly Li <colyli@suse.de>
2970 M:      Kent Overstreet <kent.overstreet@gmail.com>
2971 L:      linux-bcache@vger.kernel.org
2972 W:      http://bcache.evilpiepirate.org
2973 C:      irc://irc.oftc.net/bcache
2974 S:      Maintained
2975 F:      drivers/md/bcache/
2976
2977 BDISP ST MEDIA DRIVER
2978 M:      Fabien Dessenne <fabien.dessenne@st.com>
2979 L:      linux-media@vger.kernel.org
2980 T:      git git://linuxtv.org/media_tree.git
2981 W:      https://linuxtv.org
2982 S:      Supported
2983 F:      drivers/media/platform/sti/bdisp
2984
2985 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2986 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2987 L:      netdev@vger.kernel.org
2988 S:      Maintained
2989 F:      drivers/net/ethernet/ec_bhf.c
2990
2991 BEFS FILE SYSTEM
2992 M:      Luis de Bethencourt <luisbg@kernel.org>
2993 M:      Salah Triki <salah.triki@gmail.com>
2994 S:      Maintained
2995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2996 F:      Documentation/filesystems/befs.txt
2997 F:      fs/befs/
2998
2999 BFQ I/O SCHEDULER
3000 M:      Paolo Valente <paolo.valente@linaro.org>
3001 M:      Jens Axboe <axboe@kernel.dk>
3002 L:      linux-block@vger.kernel.org
3003 S:      Maintained
3004 F:      block/bfq-*
3005 F:      Documentation/block/bfq-iosched.rst
3006
3007 BFS FILE SYSTEM
3008 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3009 S:      Maintained
3010 F:      Documentation/filesystems/bfs.txt
3011 F:      fs/bfs/
3012 F:      include/uapi/linux/bfs_fs.h
3013
3014 BLINKM RGB LED DRIVER
3015 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3016 S:      Maintained
3017 F:      drivers/leds/leds-blinkm.c
3018
3019 BLOCK LAYER
3020 M:      Jens Axboe <axboe@kernel.dk>
3021 L:      linux-block@vger.kernel.org
3022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3023 S:      Maintained
3024 F:      block/
3025 F:      drivers/block/
3026 F:      kernel/trace/blktrace.c
3027 F:      lib/sbitmap.c
3028
3029 BLOCK2MTD DRIVER
3030 M:      Joern Engel <joern@lazybastard.org>
3031 L:      linux-mtd@lists.infradead.org
3032 S:      Maintained
3033 F:      drivers/mtd/devices/block2mtd.c
3034
3035 BLUETOOTH DRIVERS
3036 M:      Marcel Holtmann <marcel@holtmann.org>
3037 M:      Johan Hedberg <johan.hedberg@gmail.com>
3038 L:      linux-bluetooth@vger.kernel.org
3039 W:      http://www.bluez.org/
3040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3042 S:      Maintained
3043 F:      drivers/bluetooth/
3044
3045 BLUETOOTH SUBSYSTEM
3046 M:      Marcel Holtmann <marcel@holtmann.org>
3047 M:      Johan Hedberg <johan.hedberg@gmail.com>
3048 L:      linux-bluetooth@vger.kernel.org
3049 W:      http://www.bluez.org/
3050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3052 S:      Maintained
3053 F:      net/bluetooth/
3054 F:      include/net/bluetooth/
3055
3056 BONDING DRIVER
3057 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3058 M:      Veaceslav Falico <vfalico@gmail.com>
3059 M:      Andy Gospodarek <andy@greyhouse.net>
3060 L:      netdev@vger.kernel.org
3061 W:      http://sourceforge.net/projects/bonding/
3062 S:      Supported
3063 F:      drivers/net/bonding/
3064 F:      include/uapi/linux/if_bonding.h
3065
3066 BPF (Safe dynamic programs and tools)
3067 M:      Alexei Starovoitov <ast@kernel.org>
3068 M:      Daniel Borkmann <daniel@iogearbox.net>
3069 R:      Martin KaFai Lau <kafai@fb.com>
3070 R:      Song Liu <songliubraving@fb.com>
3071 R:      Yonghong Song <yhs@fb.com>
3072 R:      Andrii Nakryiko <andriin@fb.com>
3073 L:      netdev@vger.kernel.org
3074 L:      bpf@vger.kernel.org
3075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3077 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3078 S:      Supported
3079 F:      arch/*/net/*
3080 F:      Documentation/networking/filter.txt
3081 F:      Documentation/bpf/
3082 F:      include/linux/bpf*
3083 F:      include/linux/filter.h
3084 F:      include/trace/events/xdp.h
3085 F:      include/uapi/linux/bpf*
3086 F:      include/uapi/linux/filter.h
3087 F:      kernel/bpf/
3088 F:      kernel/trace/bpf_trace.c
3089 F:      lib/test_bpf.c
3090 F:      net/bpf/
3091 F:      net/core/filter.c
3092 F:      net/sched/act_bpf.c
3093 F:      net/sched/cls_bpf.c
3094 F:      samples/bpf/
3095 F:      tools/bpf/
3096 F:      tools/lib/bpf/
3097 F:      tools/testing/selftests/bpf/
3098 K:      bpf
3099 N:      bpf
3100
3101 BPF JIT for ARM
3102 M:      Shubham Bansal <illusionist.neo@gmail.com>
3103 L:      netdev@vger.kernel.org
3104 L:      bpf@vger.kernel.org
3105 S:      Maintained
3106 F:      arch/arm/net/
3107
3108 BPF JIT for ARM64
3109 M:      Daniel Borkmann <daniel@iogearbox.net>
3110 M:      Alexei Starovoitov <ast@kernel.org>
3111 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3112 L:      netdev@vger.kernel.org
3113 L:      bpf@vger.kernel.org
3114 S:      Supported
3115 F:      arch/arm64/net/
3116
3117 BPF JIT for MIPS (32-BIT AND 64-BIT)
3118 M:      Paul Burton <paulburton@kernel.org>
3119 L:      netdev@vger.kernel.org
3120 L:      bpf@vger.kernel.org
3121 S:      Maintained
3122 F:      arch/mips/net/
3123
3124 BPF JIT for NFP NICs
3125 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
3126 L:      netdev@vger.kernel.org
3127 L:      bpf@vger.kernel.org
3128 S:      Supported
3129 F:      drivers/net/ethernet/netronome/nfp/bpf/
3130
3131 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3132 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3133 M:      Sandipan Das <sandipan@linux.ibm.com>
3134 L:      netdev@vger.kernel.org
3135 L:      bpf@vger.kernel.org
3136 S:      Maintained
3137 F:      arch/powerpc/net/
3138
3139 BPF JIT for RISC-V (RV64G)
3140 M:      Björn Töpel <bjorn.topel@gmail.com>
3141 L:      netdev@vger.kernel.org
3142 S:      Maintained
3143 F:      arch/riscv/net/
3144
3145 BPF JIT for S390
3146 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3147 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3148 M:      Vasily Gorbik <gor@linux.ibm.com>
3149 L:      netdev@vger.kernel.org
3150 L:      bpf@vger.kernel.org
3151 S:      Maintained
3152 F:      arch/s390/net/
3153 X:      arch/s390/net/pnet.c
3154
3155 BPF JIT for SPARC (32-BIT AND 64-BIT)
3156 M:      David S. Miller <davem@davemloft.net>
3157 L:      netdev@vger.kernel.org
3158 L:      bpf@vger.kernel.org
3159 S:      Maintained
3160 F:      arch/sparc/net/
3161
3162 BPF JIT for X86 32-BIT
3163 M:      Wang YanQing <udknight@gmail.com>
3164 L:      netdev@vger.kernel.org
3165 L:      bpf@vger.kernel.org
3166 S:      Maintained
3167 F:      arch/x86/net/bpf_jit_comp32.c
3168
3169 BPF JIT for X86 64-BIT
3170 M:      Alexei Starovoitov <ast@kernel.org>
3171 M:      Daniel Borkmann <daniel@iogearbox.net>
3172 L:      netdev@vger.kernel.org
3173 L:      bpf@vger.kernel.org
3174 S:      Supported
3175 F:      arch/x86/net/
3176 X:      arch/x86/net/bpf_jit_comp32.c
3177
3178 BROADCOM B44 10/100 ETHERNET DRIVER
3179 M:      Michael Chan <michael.chan@broadcom.com>
3180 L:      netdev@vger.kernel.org
3181 S:      Supported
3182 F:      drivers/net/ethernet/broadcom/b44.*
3183
3184 BROADCOM B53 ETHERNET SWITCH DRIVER
3185 M:      Florian Fainelli <f.fainelli@gmail.com>
3186 L:      netdev@vger.kernel.org
3187 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3188 S:      Supported
3189 F:      drivers/net/dsa/b53/*
3190 F:      include/linux/platform_data/b53.h
3191
3192 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3193 M:      Florian Fainelli <f.fainelli@gmail.com>
3194 M:      Ray Jui <rjui@broadcom.com>
3195 M:      Scott Branden <sbranden@broadcom.com>
3196 M:      bcm-kernel-feedback-list@broadcom.com
3197 T:      git git://github.com/broadcom/mach-bcm
3198 S:      Maintained
3199 N:      bcm281*
3200 N:      bcm113*
3201 N:      bcm216*
3202 N:      kona
3203 F:      arch/arm/mach-bcm/
3204
3205 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3206 M:      Eric Anholt <eric@anholt.net>
3207 M:      Stefan Wahren <wahrenst@gmx.net>
3208 L:      bcm-kernel-feedback-list@broadcom.com
3209 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3210 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3211 T:      git git://github.com/anholt/linux
3212 S:      Maintained
3213 N:      bcm2711
3214 N:      bcm2835
3215 F:      drivers/staging/vc04_services
3216
3217 BROADCOM BCM47XX MIPS ARCHITECTURE
3218 M:      Hauke Mehrtens <hauke@hauke-m.de>
3219 M:      Rafał Miłecki <zajec5@gmail.com>
3220 L:      linux-mips@vger.kernel.org
3221 S:      Maintained
3222 F:      Documentation/devicetree/bindings/mips/brcm/
3223 F:      arch/mips/bcm47xx/*
3224 F:      arch/mips/include/asm/mach-bcm47xx/*
3225
3226 BROADCOM BCM5301X ARM ARCHITECTURE
3227 M:      Hauke Mehrtens <hauke@hauke-m.de>
3228 M:      Rafał Miłecki <zajec5@gmail.com>
3229 M:      bcm-kernel-feedback-list@broadcom.com
3230 L:      linux-arm-kernel@lists.infradead.org
3231 S:      Maintained
3232 F:      arch/arm/mach-bcm/bcm_5301x.c
3233 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3234 F:      arch/arm/boot/dts/bcm470*
3235 F:      arch/arm/boot/dts/bcm953012*
3236
3237 BROADCOM BCM53573 ARM ARCHITECTURE
3238 M:      Rafał Miłecki <rafal@milecki.pl>
3239 L:      bcm-kernel-feedback-list@broadcom.com
3240 L:      linux-arm-kernel@lists.infradead.org
3241 S:      Maintained
3242 F:      arch/arm/boot/dts/bcm53573*
3243 F:      arch/arm/boot/dts/bcm47189*
3244
3245 BROADCOM BCM63XX ARM ARCHITECTURE
3246 M:      Florian Fainelli <f.fainelli@gmail.com>
3247 M:      bcm-kernel-feedback-list@broadcom.com
3248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3249 T:      git git://github.com/broadcom/stblinux.git
3250 S:      Maintained
3251 N:      bcm63xx
3252
3253 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3254 M:      Kevin Cernekee <cernekee@gmail.com>
3255 L:      linux-usb@vger.kernel.org
3256 S:      Maintained
3257 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3258
3259 BROADCOM BCM7XXX ARM ARCHITECTURE
3260 M:      Florian Fainelli <f.fainelli@gmail.com>
3261 M:      bcm-kernel-feedback-list@broadcom.com
3262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3263 T:      git git://github.com/broadcom/stblinux.git
3264 S:      Maintained
3265 F:      arch/arm/mach-bcm/*brcmstb*
3266 F:      arch/arm/boot/dts/bcm7*.dts*
3267 F:      drivers/bus/brcmstb_gisb.c
3268 F:      arch/arm/mm/cache-b15-rac.c
3269 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3270 N:      brcmstb
3271
3272 BROADCOM BMIPS CPUFREQ DRIVER
3273 M:      Markus Mayer <mmayer@broadcom.com>
3274 M:      bcm-kernel-feedback-list@broadcom.com
3275 L:      linux-pm@vger.kernel.org
3276 S:      Maintained
3277 F:      drivers/cpufreq/bmips-cpufreq.c
3278
3279 BROADCOM BMIPS MIPS ARCHITECTURE
3280 M:      Florian Fainelli <f.fainelli@gmail.com>
3281 L:      bcm-kernel-feedback-list@broadcom.com
3282 L:      linux-mips@vger.kernel.org
3283 T:      git git://github.com/broadcom/stblinux.git
3284 S:      Maintained
3285 F:      arch/mips/bmips/*
3286 F:      arch/mips/include/asm/mach-bmips/*
3287 F:      arch/mips/kernel/*bmips*
3288 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3289 F:      drivers/irqchip/irq-bcm63*
3290 F:      drivers/irqchip/irq-bcm7*
3291 F:      drivers/irqchip/irq-brcmstb*
3292 F:      include/linux/bcm963xx_nvram.h
3293 F:      include/linux/bcm963xx_tag.h
3294
3295 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3296 M:      Rasesh Mody <rmody@marvell.com>
3297 M:      GR-Linux-NIC-Dev@marvell.com
3298 L:      netdev@vger.kernel.org
3299 S:      Supported
3300 F:      drivers/net/ethernet/broadcom/bnx2.*
3301 F:      drivers/net/ethernet/broadcom/bnx2_*
3302
3303 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3304 M:      QLogic-Storage-Upstream@qlogic.com
3305 L:      linux-scsi@vger.kernel.org
3306 S:      Supported
3307 F:      drivers/scsi/bnx2fc/
3308
3309 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3310 M:      QLogic-Storage-Upstream@qlogic.com
3311 L:      linux-scsi@vger.kernel.org
3312 S:      Supported
3313 F:      drivers/scsi/bnx2i/
3314
3315 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3316 M:      Ariel Elior <aelior@marvell.com>
3317 M:      Sudarsana Kalluru <skalluru@marvell.com>
3318 M:      GR-everest-linux-l2@marvell.com
3319 L:      netdev@vger.kernel.org
3320 S:      Supported
3321 F:      drivers/net/ethernet/broadcom/bnx2x/
3322
3323 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3324 M:      Michael Chan <michael.chan@broadcom.com>
3325 L:      netdev@vger.kernel.org
3326 S:      Supported
3327 F:      drivers/net/ethernet/broadcom/bnxt/
3328
3329 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3330 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3331 M:      Franky Lin <franky.lin@broadcom.com>
3332 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3333 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3334 M:      Wright Feng <wright.feng@cypress.com>
3335 L:      linux-wireless@vger.kernel.org
3336 L:      brcm80211-dev-list.pdl@broadcom.com
3337 L:      brcm80211-dev-list@cypress.com
3338 S:      Supported
3339 F:      drivers/net/wireless/broadcom/brcm80211/
3340
3341 BROADCOM BRCMSTB GPIO DRIVER
3342 M:      Gregory Fong <gregory.0xf0@gmail.com>
3343 L:      bcm-kernel-feedback-list@broadcom.com
3344 S:      Supported
3345 F:      drivers/gpio/gpio-brcmstb.c
3346 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3347
3348 BROADCOM BRCMSTB I2C DRIVER
3349 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3350 L:      linux-i2c@vger.kernel.org
3351 L:      bcm-kernel-feedback-list@broadcom.com
3352 S:      Supported
3353 F:      drivers/i2c/busses/i2c-brcmstb.c
3354 F:      Documentation/devicetree/bindings/i2c/i2c-brcmstb.txt
3355
3356 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3357 M:      Al Cooper <alcooperx@gmail.com>
3358 L:      linux-kernel@vger.kernel.org
3359 L:      bcm-kernel-feedback-list@broadcom.com
3360 S:      Maintained
3361 F:      drivers/phy/broadcom/phy-brcm-usb*
3362
3363 BROADCOM GENET ETHERNET DRIVER
3364 M:      Doug Berger <opendmb@gmail.com>
3365 M:      Florian Fainelli <f.fainelli@gmail.com>
3366 L:      bcm-kernel-feedback-list@broadcom.com
3367 L:      netdev@vger.kernel.org
3368 S:      Supported
3369 F:      drivers/net/ethernet/broadcom/genet/
3370
3371 BROADCOM IPROC ARM ARCHITECTURE
3372 M:      Ray Jui <rjui@broadcom.com>
3373 M:      Scott Branden <sbranden@broadcom.com>
3374 M:      bcm-kernel-feedback-list@broadcom.com
3375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3376 T:      git git://github.com/broadcom/cygnus-linux.git
3377 S:      Maintained
3378 N:      iproc
3379 N:      cygnus
3380 N:      bcm[-_]nsp
3381 N:      bcm9113*
3382 N:      bcm9583*
3383 N:      bcm9585*
3384 N:      bcm9586*
3385 N:      bcm988312
3386 N:      bcm113*
3387 N:      bcm583*
3388 N:      bcm585*
3389 N:      bcm586*
3390 N:      bcm88312
3391 N:      hr2
3392 N:      stingray
3393 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3394 F:      arch/arm64/boot/dts/broadcom/stingray/*
3395 F:      drivers/clk/bcm/clk-ns*
3396 F:      drivers/clk/bcm/clk-sr*
3397 F:      drivers/pinctrl/bcm/pinctrl-ns*
3398 F:      include/dt-bindings/clock/bcm-sr*
3399
3400 BROADCOM KONA GPIO DRIVER
3401 M:      Ray Jui <rjui@broadcom.com>
3402 L:      bcm-kernel-feedback-list@broadcom.com
3403 S:      Supported
3404 F:      drivers/gpio/gpio-bcm-kona.c
3405 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3406
3407 BROADCOM NETXTREME-E ROCE DRIVER
3408 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3409 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3410 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3411 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3412 L:      linux-rdma@vger.kernel.org
3413 W:      http://www.broadcom.com
3414 S:      Supported
3415 F:      drivers/infiniband/hw/bnxt_re/
3416 F:      include/uapi/rdma/bnxt_re-abi.h
3417
3418 BROADCOM NVRAM DRIVER
3419 M:      Rafał Miłecki <zajec5@gmail.com>
3420 L:      linux-mips@vger.kernel.org
3421 S:      Maintained
3422 F:      drivers/firmware/broadcom/*
3423
3424 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3425 M:      Rafał Miłecki <zajec5@gmail.com>
3426 L:      linux-wireless@vger.kernel.org
3427 S:      Maintained
3428 F:      drivers/bcma/
3429 F:      include/linux/bcma/
3430
3431 BROADCOM STB AVS CPUFREQ DRIVER
3432 M:      Markus Mayer <mmayer@broadcom.com>
3433 M:      bcm-kernel-feedback-list@broadcom.com
3434 L:      linux-pm@vger.kernel.org
3435 S:      Maintained
3436 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3437 F:      drivers/cpufreq/brcmstb*
3438
3439 BROADCOM STB AVS TMON DRIVER
3440 M:      Markus Mayer <mmayer@broadcom.com>
3441 M:      bcm-kernel-feedback-list@broadcom.com
3442 L:      linux-pm@vger.kernel.org
3443 S:      Maintained
3444 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3445 F:      drivers/thermal/broadcom/brcmstb*
3446
3447 BROADCOM STB NAND FLASH DRIVER
3448 M:      Brian Norris <computersforpeace@gmail.com>
3449 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3450 L:      linux-mtd@lists.infradead.org
3451 L:      bcm-kernel-feedback-list@broadcom.com
3452 S:      Maintained
3453 F:      drivers/mtd/nand/raw/brcmnand/
3454
3455 BROADCOM STB DPFE DRIVER
3456 M:      Markus Mayer <mmayer@broadcom.com>
3457 M:      bcm-kernel-feedback-list@broadcom.com
3458 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3459 S:      Maintained
3460 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3461 F:      drivers/memory/brcmstb_dpfe.c
3462
3463 BROADCOM SPI DRIVER
3464 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3465 M:      bcm-kernel-feedback-list@broadcom.com
3466 S:      Maintained
3467 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3468 F:      drivers/spi/spi-bcm-qspi.*
3469 F:      drivers/spi/spi-brcmstb-qspi.c
3470 F:      drivers/spi/spi-iproc-qspi.c
3471
3472 BROADCOM SYSTEMPORT ETHERNET DRIVER
3473 M:      Florian Fainelli <f.fainelli@gmail.com>
3474 L:      bcm-kernel-feedback-list@broadcom.com
3475 L:      netdev@vger.kernel.org
3476 S:      Supported
3477 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3478
3479 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3480 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3481 M:      Prashant Sreedharan <prashant@broadcom.com>
3482 M:      Michael Chan <mchan@broadcom.com>
3483 L:      netdev@vger.kernel.org
3484 S:      Supported
3485 F:      drivers/net/ethernet/broadcom/tg3.*
3486
3487 BROCADE BFA FC SCSI DRIVER
3488 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3489 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3490 L:      linux-scsi@vger.kernel.org
3491 S:      Supported
3492 F:      drivers/scsi/bfa/
3493
3494 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3495 M:      Rasesh Mody <rmody@marvell.com>
3496 M:      Sudarsana Kalluru <skalluru@marvell.com>
3497 M:      GR-Linux-NIC-Dev@marvell.com
3498 L:      netdev@vger.kernel.org
3499 S:      Supported
3500 F:      drivers/net/ethernet/brocade/bna/
3501
3502 BSG (block layer generic sg v4 driver)
3503 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3504 L:      linux-scsi@vger.kernel.org
3505 S:      Supported
3506 F:      block/bsg.c
3507 F:      include/linux/bsg.h
3508 F:      include/uapi/linux/bsg.h
3509
3510 BT87X AUDIO DRIVER
3511 M:      Clemens Ladisch <clemens@ladisch.de>
3512 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3514 S:      Maintained
3515 F:      Documentation/sound/cards/bt87x.rst
3516 F:      sound/pci/bt87x.c
3517
3518 BT8XXGPIO DRIVER
3519 M:      Michael Buesch <m@bues.ch>
3520 W:      http://bu3sch.de/btgpio.php
3521 S:      Maintained
3522 F:      drivers/gpio/gpio-bt8xx.c
3523
3524 BTRFS FILE SYSTEM
3525 M:      Chris Mason <clm@fb.com>
3526 M:      Josef Bacik <josef@toxicpanda.com>
3527 M:      David Sterba <dsterba@suse.com>
3528 L:      linux-btrfs@vger.kernel.org
3529 W:      http://btrfs.wiki.kernel.org/
3530 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3532 S:      Maintained
3533 F:      Documentation/filesystems/btrfs.txt
3534 F:      fs/btrfs/
3535 F:      include/linux/btrfs*
3536 F:      include/uapi/linux/btrfs*
3537
3538 BTTV VIDEO4LINUX DRIVER
3539 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3540 L:      linux-media@vger.kernel.org
3541 W:      https://linuxtv.org
3542 T:      git git://linuxtv.org/media_tree.git
3543 S:      Odd fixes
3544 F:      Documentation/media/v4l-drivers/bttv*
3545 F:      drivers/media/pci/bt8xx/bttv*
3546
3547 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3548 M:      Chanwoo Choi <cw00.choi@samsung.com>
3549 L:      linux-pm@vger.kernel.org
3550 L:      linux-samsung-soc@vger.kernel.org
3551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3552 S:      Maintained
3553 F:      drivers/devfreq/exynos-bus.c
3554 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3555
3556 BUSLOGIC SCSI DRIVER
3557 M:      Khalid Aziz <khalid@gonehiking.org>
3558 L:      linux-scsi@vger.kernel.org
3559 S:      Maintained
3560 F:      drivers/scsi/BusLogic.*
3561 F:      drivers/scsi/FlashPoint.*
3562
3563 C-MEDIA CMI8788 DRIVER
3564 M:      Clemens Ladisch <clemens@ladisch.de>
3565 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3567 S:      Maintained
3568 F:      sound/pci/oxygen/
3569
3570 C-SKY ARCHITECTURE
3571 M:      Guo Ren <guoren@kernel.org>
3572 T:      git https://github.com/c-sky/csky-linux.git
3573 S:      Supported
3574 F:      arch/csky/
3575 F:      Documentation/devicetree/bindings/csky/
3576 F:      drivers/irqchip/irq-csky-*
3577 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3578 F:      drivers/clocksource/timer-gx6605s.c
3579 F:      drivers/clocksource/timer-mp-csky.c
3580 F:      Documentation/devicetree/bindings/timer/csky,*
3581 K:      csky
3582 N:      csky
3583
3584 C6X ARCHITECTURE
3585 M:      Mark Salter <msalter@redhat.com>
3586 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3587 L:      linux-c6x-dev@linux-c6x.org
3588 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3589 S:      Maintained
3590 F:      arch/c6x/
3591
3592 CA8210 IEEE-802.15.4 RADIO DRIVER
3593 M:      Harry Morris <h.morris@cascoda.com>
3594 L:      linux-wpan@vger.kernel.org
3595 W:      https://github.com/Cascoda/ca8210-linux.git
3596 S:      Maintained
3597 F:      drivers/net/ieee802154/ca8210.c
3598 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3599
3600 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3601 M:      David Howells <dhowells@redhat.com>
3602 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3603 S:      Supported
3604 F:      Documentation/filesystems/caching/cachefiles.txt
3605 F:      fs/cachefiles/
3606
3607 CADENCE MIPI-CSI2 BRIDGES
3608 M:      Maxime Ripard <mripard@kernel.org>
3609 L:      linux-media@vger.kernel.org
3610 S:      Maintained
3611 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3612 F:      drivers/media/platform/cadence/cdns-csi2*
3613
3614 CADENCE NAND DRIVER
3615 M:      Piotr Sroka <piotrs@cadence.com>
3616 L:      linux-mtd@lists.infradead.org
3617 S:      Maintained
3618 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3619 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3620
3621 CADET FM/AM RADIO RECEIVER DRIVER
3622 M:      Hans Verkuil <hverkuil@xs4all.nl>
3623 L:      linux-media@vger.kernel.org
3624 T:      git git://linuxtv.org/media_tree.git
3625 W:      https://linuxtv.org
3626 S:      Maintained
3627 F:      drivers/media/radio/radio-cadet*
3628
3629 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3630 M:      Jonathan Corbet <corbet@lwn.net>
3631 L:      linux-media@vger.kernel.org
3632 T:      git git://linuxtv.org/media_tree.git
3633 S:      Maintained
3634 F:      Documentation/media/v4l-drivers/cafe_ccic*
3635 F:      drivers/media/platform/marvell-ccic/
3636
3637 CAIF NETWORK LAYER
3638 L:      netdev@vger.kernel.org
3639 S:      Orphan
3640 F:      Documentation/networking/caif/
3641 F:      drivers/net/caif/
3642 F:      include/uapi/linux/caif/
3643 F:      include/net/caif/
3644 F:      net/caif/
3645
3646 CAKE QDISC
3647 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3648 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3649 S:      Maintained
3650 F:      net/sched/sch_cake.c
3651
3652 CALGARY x86-64 IOMMU
3653 M:      Muli Ben-Yehuda <mulix@mulix.org>
3654 M:      Jon Mason <jdmason@kudzu.us>
3655 L:      iommu@lists.linux-foundation.org
3656 S:      Maintained
3657 F:      arch/x86/kernel/pci-calgary_64.c
3658 F:      arch/x86/kernel/tce_64.c
3659 F:      arch/x86/include/asm/calgary.h
3660 F:      arch/x86/include/asm/tce.h
3661
3662 CAN NETWORK DRIVERS
3663 M:      Wolfgang Grandegger <wg@grandegger.com>
3664 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3665 L:      linux-can@vger.kernel.org
3666 W:      https://github.com/linux-can
3667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3669 S:      Maintained
3670 F:      Documentation/devicetree/bindings/net/can/
3671 F:      drivers/net/can/
3672 F:      include/linux/can/dev.h
3673 F:      include/linux/can/led.h
3674 F:      include/linux/can/rx-offload.h
3675 F:      include/linux/can/platform/
3676 F:      include/uapi/linux/can/error.h
3677 F:      include/uapi/linux/can/netlink.h
3678 F:      include/uapi/linux/can/vxcan.h
3679
3680 CAN NETWORK LAYER
3681 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3682 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3683 L:      linux-can@vger.kernel.org
3684 W:      https://github.com/linux-can
3685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3687 S:      Maintained
3688 F:      Documentation/networking/can.rst
3689 F:      net/can/
3690 F:      include/linux/can/core.h
3691 F:      include/linux/can/skb.h
3692 F:      include/net/netns/can.h
3693 F:      include/uapi/linux/can.h
3694 F:      include/uapi/linux/can/bcm.h
3695 F:      include/uapi/linux/can/raw.h
3696 F:      include/uapi/linux/can/gw.h
3697
3698 CAN-J1939 NETWORK LAYER
3699 M:      Robin van der Gracht <robin@protonic.nl>
3700 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3701 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3702 L:      linux-can@vger.kernel.org
3703 S:      Maintained
3704 F:      Documentation/networking/j1939.txt
3705 F:      net/can/j1939/
3706 F:      include/uapi/linux/can/j1939.h
3707
3708 CAPABILITIES
3709 M:      Serge Hallyn <serge@hallyn.com>
3710 L:      linux-security-module@vger.kernel.org
3711 S:      Supported
3712 F:      include/linux/capability.h
3713 F:      include/uapi/linux/capability.h
3714 F:      security/commoncap.c
3715 F:      kernel/capability.c
3716
3717 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3718 M:      Kevin Tsai <ktsai@capellamicro.com>
3719 S:      Maintained
3720 F:      drivers/iio/light/cm*
3721
3722 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3723 M:      Christian Lamparter <chunkeey@googlemail.com>
3724 L:      linux-wireless@vger.kernel.org
3725 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3726 S:      Maintained
3727 F:      drivers/net/wireless/ath/carl9170/
3728
3729 CAVIUM I2C DRIVER
3730 M:      Jan Glauber <jglauber@cavium.com>
3731 M:      David Daney <david.daney@cavium.com>
3732 W:      http://www.cavium.com
3733 S:      Supported
3734 F:      drivers/i2c/busses/i2c-octeon*
3735 F:      drivers/i2c/busses/i2c-thunderx*
3736
3737 CAVIUM LIQUIDIO NETWORK DRIVER
3738 M:      Derek Chickles <dchickles@marvell.com>
3739 M:      Satanand Burla <sburla@marvell.com>
3740 M:      Felix Manlunas <fmanlunas@marvell.com>
3741 L:      netdev@vger.kernel.org
3742 W:      http://www.cavium.com
3743 S:      Supported
3744 F:      drivers/net/ethernet/cavium/liquidio/
3745
3746 CAVIUM MMC DRIVER
3747 M:      Jan Glauber <jglauber@cavium.com>
3748 M:      David Daney <david.daney@cavium.com>
3749 M:      Steven J. Hill <Steven.Hill@cavium.com>
3750 W:      http://www.cavium.com
3751 S:      Supported
3752 F:      drivers/mmc/host/cavium*
3753
3754 CAVIUM OCTEON-TX CRYPTO DRIVER
3755 M:      George Cherian <george.cherian@cavium.com>
3756 L:      linux-crypto@vger.kernel.org
3757 W:      http://www.cavium.com
3758 S:      Supported
3759 F:      drivers/crypto/cavium/cpt/
3760
3761 CAVIUM THUNDERX2 ARM64 SOC
3762 M:      Robert Richter <rrichter@cavium.com>
3763 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3764 S:      Maintained
3765 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3766 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3767
3768 CC2520 IEEE-802.15.4 RADIO DRIVER
3769 M:      Varka Bhadram <varkabhadram@gmail.com>
3770 L:      linux-wpan@vger.kernel.org
3771 S:      Maintained
3772 F:      drivers/net/ieee802154/cc2520.c
3773 F:      include/linux/spi/cc2520.h
3774 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3775
3776 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3777 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3778 L:      linux-crypto@vger.kernel.org
3779 S:      Supported
3780 F:      drivers/crypto/ccree/
3781 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3782
3783 CEC FRAMEWORK
3784 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3785 L:      linux-media@vger.kernel.org
3786 T:      git git://linuxtv.org/media_tree.git
3787 W:      http://linuxtv.org
3788 S:      Supported
3789 F:      Documentation/media/kapi/cec-core.rst
3790 F:      Documentation/media/uapi/cec
3791 F:      drivers/media/cec/
3792 F:      drivers/media/rc/keymaps/rc-cec.c
3793 F:      include/media/cec.h
3794 F:      include/media/cec-notifier.h
3795 F:      include/uapi/linux/cec.h
3796 F:      include/uapi/linux/cec-funcs.h
3797 F:      Documentation/devicetree/bindings/media/cec.txt
3798 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3799
3800 CEC GPIO DRIVER
3801 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3802 L:      linux-media@vger.kernel.org
3803 T:      git git://linuxtv.org/media_tree.git
3804 W:      http://linuxtv.org
3805 S:      Supported
3806 F:      drivers/media/platform/cec-gpio/
3807 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3808
3809 CELL BROADBAND ENGINE ARCHITECTURE
3810 M:      Arnd Bergmann <arnd@arndb.de>
3811 L:      linuxppc-dev@lists.ozlabs.org
3812 W:      http://www.ibm.com/developerworks/power/cell/
3813 S:      Supported
3814 F:      arch/powerpc/include/asm/cell*.h
3815 F:      arch/powerpc/include/asm/spu*.h
3816 F:      arch/powerpc/include/uapi/asm/spu*.h
3817 F:      arch/powerpc/oprofile/*cell*
3818 F:      arch/powerpc/platforms/cell/
3819
3820 CEPH COMMON CODE (LIBCEPH)
3821 M:      Ilya Dryomov <idryomov@gmail.com>
3822 M:      Jeff Layton <jlayton@kernel.org>
3823 M:      Sage Weil <sage@redhat.com>
3824 L:      ceph-devel@vger.kernel.org
3825 W:      http://ceph.com/
3826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3827 T:      git git://github.com/ceph/ceph-client.git
3828 S:      Supported
3829 F:      net/ceph/
3830 F:      include/linux/ceph/
3831 F:      include/linux/crush/
3832
3833 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3834 M:      Jeff Layton <jlayton@kernel.org>
3835 M:      Sage Weil <sage@redhat.com>
3836 M:      Ilya Dryomov <idryomov@gmail.com>
3837 L:      ceph-devel@vger.kernel.org
3838 W:      http://ceph.com/
3839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3840 T:      git git://github.com/ceph/ceph-client.git
3841 S:      Supported
3842 F:      Documentation/filesystems/ceph.txt
3843 F:      fs/ceph/
3844
3845 CERTIFICATE HANDLING:
3846 M:      David Howells <dhowells@redhat.com>
3847 M:      David Woodhouse <dwmw2@infradead.org>
3848 L:      keyrings@vger.kernel.org
3849 S:      Maintained
3850 F:      Documentation/admin-guide/module-signing.rst
3851 F:      certs/
3852 F:      scripts/sign-file.c
3853 F:      scripts/extract-cert.c
3854
3855 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3856 L:      devel@driverdev.osuosl.org
3857 S:      Obsolete
3858 F:      drivers/staging/wusbcore/
3859
3860 CFAG12864B LCD DRIVER
3861 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3862 S:      Maintained
3863 F:      drivers/auxdisplay/cfag12864b.c
3864 F:      include/linux/cfag12864b.h
3865
3866 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3867 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3868 S:      Maintained
3869 F:      drivers/auxdisplay/cfag12864bfb.c
3870 F:      include/linux/cfag12864b.h
3871
3872 802.11 (including CFG80211/NL80211)
3873 M:      Johannes Berg <johannes@sipsolutions.net>
3874 L:      linux-wireless@vger.kernel.org
3875 W:      http://wireless.kernel.org/
3876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3878 S:      Maintained
3879 F:      net/wireless/
3880 F:      include/uapi/linux/nl80211.h
3881 F:      include/linux/ieee80211.h
3882 F:      include/net/wext.h
3883 F:      include/net/cfg80211.h
3884 F:      include/net/iw_handler.h
3885 F:      include/net/ieee80211_radiotap.h
3886 F:      Documentation/driver-api/80211/cfg80211.rst
3887 F:      Documentation/networking/regulatory.txt
3888
3889 CHAR and MISC DRIVERS
3890 M:      Arnd Bergmann <arnd@arndb.de>
3891 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3893 S:      Supported
3894 F:      drivers/char/
3895 F:      drivers/misc/
3896 F:      include/linux/miscdevice.h
3897
3898 CHECKPATCH
3899 M:      Andy Whitcroft <apw@canonical.com>
3900 M:      Joe Perches <joe@perches.com>
3901 S:      Maintained
3902 F:      scripts/checkpatch.pl
3903
3904 CHINESE DOCUMENTATION
3905 M:      Harry Wei <harryxiyou@gmail.com>
3906 M:      Alex Shi <alex.shi@linux.alibaba.com>
3907 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3908 S:      Maintained
3909 F:      Documentation/translations/zh_CN/
3910
3911 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3912 M:      Peter Chen <Peter.Chen@nxp.com>
3913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3914 L:      linux-usb@vger.kernel.org
3915 S:      Maintained
3916 F:      drivers/usb/chipidea/
3917
3918 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3919 M:      Hans de Goede <hdegoede@redhat.com>
3920 L:      linux-input@vger.kernel.org
3921 S:      Maintained
3922 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3923 F:      drivers/input/touchscreen/chipone_icn8318.c
3924
3925 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
3926 M:      Hans de Goede <hdegoede@redhat.com>
3927 L:      linux-input@vger.kernel.org
3928 S:      Maintained
3929 F:      drivers/input/touchscreen/chipone_icn8505.c
3930
3931 CHROME HARDWARE PLATFORM SUPPORT
3932 M:      Benson Leung <bleung@chromium.org>
3933 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3934 S:      Maintained
3935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
3936 F:      drivers/platform/chrome/
3937
3938 CHROMEOS EC SUBDRIVERS
3939 M:      Benson Leung <bleung@chromium.org>
3940 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3941 R:      Guenter Roeck <groeck@chromium.org>
3942 S:      Maintained
3943 N:      cros_ec
3944 N:      cros-ec
3945 F:      drivers/power/supply/cros_usbpd-charger.c
3946
3947 CHROMEOS EC CODEC DRIVER
3948 M:      Cheng-Yi Chiang <cychiang@chromium.org>
3949 S:      Maintained
3950 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3951 R:      Guenter Roeck <groeck@chromium.org>
3952 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.txt
3953 F:      sound/soc/codecs/cros_ec_codec.*
3954
3955 CIRRUS LOGIC AUDIO CODEC DRIVERS
3956 M:      Brian Austin <brian.austin@cirrus.com>
3957 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3958 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3959 S:      Maintained
3960 F:      sound/soc/codecs/cs*
3961
3962 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3963 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3964 L:      netdev@vger.kernel.org
3965 S:      Maintained
3966 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3967
3968 CIRRUS LOGIC LOCHNAGAR DRIVER
3969 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
3970 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
3971 L:      patches@opensource.cirrus.com
3972 S:      Supported
3973 F:      drivers/clk/clk-lochnagar.c
3974 F:      drivers/hwmon/lochnagar-hwmon.c
3975 F:      drivers/mfd/lochnagar-i2c.c
3976 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
3977 F:      drivers/regulator/lochnagar-regulator.c
3978 F:      sound/soc/codecs/lochnagar-sc.c
3979 F:      include/dt-bindings/clk/lochnagar.h
3980 F:      include/dt-bindings/pinctrl/lochnagar.h
3981 F:      include/linux/mfd/lochnagar*
3982 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
3983 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
3984 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
3985 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
3986 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
3987 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
3988 F:      Documentation/hwmon/lochnagar.rst
3989
3990 CISCO FCOE HBA DRIVER
3991 M:      Satish Kharat <satishkh@cisco.com>
3992 M:      Sesidhar Baddela <sebaddel@cisco.com>
3993 M:      Karan Tilak Kumar <kartilak@cisco.com>
3994 L:      linux-scsi@vger.kernel.org
3995 S:      Supported
3996 F:      drivers/scsi/fnic/
3997
3998 CISCO SCSI HBA DRIVER
3999 M:      Karan Tilak Kumar <kartilak@cisco.com>
4000 M:      Sesidhar Baddela <sebaddel@cisco.com>
4001 L:      linux-scsi@vger.kernel.org
4002 S:      Supported
4003 F:      drivers/scsi/snic/
4004
4005 CISCO VIC ETHERNET NIC DRIVER
4006 M:      Christian Benvenuti <benve@cisco.com>
4007 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4008 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4009 S:      Supported
4010 F:      drivers/net/ethernet/cisco/enic/
4011
4012 CISCO VIC LOW LATENCY NIC DRIVER
4013 M:      Christian Benvenuti <benve@cisco.com>
4014 M:      Nelson Escobar <neescoba@cisco.com>
4015 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4016 S:      Supported
4017 F:      drivers/infiniband/hw/usnic/
4018
4019 CIRRUS LOGIC MADERA CODEC DRIVERS
4020 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4021 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4022 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4023 L:      patches@opensource.cirrus.com
4024 T:      git https://github.com/CirrusLogic/linux-drivers.git
4025 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4026 S:      Supported
4027 F:      Documentation/devicetree/bindings/mfd/madera.txt
4028 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4029 F:      Documentation/devicetree/bindings/sound/madera.txt
4030 F:      include/dt-bindings/sound/madera*
4031 F:      include/linux/irqchip/irq-madera*
4032 F:      include/linux/mfd/madera/*
4033 F:      include/sound/madera*
4034 F:      drivers/gpio/gpio-madera*
4035 F:      drivers/irqchip/irq-madera*
4036 F:      drivers/mfd/madera*
4037 F:      drivers/mfd/cs47l*
4038 F:      drivers/pinctrl/cirrus/*
4039 F:      sound/soc/codecs/cs47l*
4040 F:      sound/soc/codecs/madera*
4041
4042 CLANG-FORMAT FILE
4043 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4044 S:      Maintained
4045 F:      .clang-format
4046
4047 CLANG/LLVM BUILD SUPPORT
4048 L:      clang-built-linux@googlegroups.com
4049 W:      https://clangbuiltlinux.github.io/
4050 B:      https://github.com/ClangBuiltLinux/linux/issues
4051 C:      irc://chat.freenode.net/clangbuiltlinux
4052 S:      Supported
4053 K:      \b(?i:clang|llvm)\b
4054
4055 CLEANCACHE API
4056 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4057 L:      linux-kernel@vger.kernel.org
4058 S:      Maintained
4059 F:      mm/cleancache.c
4060 F:      include/linux/cleancache.h
4061
4062 CLK API
4063 M:      Russell King <linux@armlinux.org.uk>
4064 L:      linux-clk@vger.kernel.org
4065 S:      Maintained
4066 F:      include/linux/clk.h
4067
4068 CLOCKSOURCE, CLOCKEVENT DRIVERS
4069 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4070 M:      Thomas Gleixner <tglx@linutronix.de>
4071 L:      linux-kernel@vger.kernel.org
4072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4073 S:      Supported
4074 F:      drivers/clocksource/
4075 F:      Documentation/devicetree/bindings/timer/
4076
4077 CMPC ACPI DRIVER
4078 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4079 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4080 L:      platform-driver-x86@vger.kernel.org
4081 S:      Supported
4082 F:      drivers/platform/x86/classmate-laptop.c
4083
4084 COBALT MEDIA DRIVER
4085 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4086 L:      linux-media@vger.kernel.org
4087 T:      git git://linuxtv.org/media_tree.git
4088 W:      https://linuxtv.org
4089 S:      Supported
4090 F:      drivers/media/pci/cobalt/
4091
4092 COCCINELLE/Semantic Patches (SmPL)
4093 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4094 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4095 M:      Nicolas Palix <nicolas.palix@imag.fr>
4096 M:      Michal Marek <michal.lkml@markovi.net>
4097 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4099 W:      http://coccinelle.lip6.fr/
4100 S:      Supported
4101 F:      Documentation/dev-tools/coccinelle.rst
4102 F:      scripts/coccinelle/
4103 F:      scripts/coccicheck
4104
4105 CODA FILE SYSTEM
4106 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4107 M:      coda@cs.cmu.edu
4108 L:      codalist@coda.cs.cmu.edu
4109 W:      http://www.coda.cs.cmu.edu/
4110 S:      Maintained
4111 F:      Documentation/filesystems/coda.txt
4112 F:      fs/coda/
4113 F:      include/linux/coda*.h
4114 F:      include/uapi/linux/coda*.h
4115
4116 CODA V4L2 MEM2MEM DRIVER
4117 M:      Philipp Zabel <p.zabel@pengutronix.de>
4118 L:      linux-media@vger.kernel.org
4119 S:      Maintained
4120 F:      Documentation/devicetree/bindings/media/coda.txt
4121 F:      drivers/media/platform/coda/
4122
4123 CODE OF CONDUCT
4124 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4125 S:      Supported
4126 F:      Documentation/process/code-of-conduct.rst
4127 F:      Documentation/process/code-of-conduct-interpretation.rst
4128
4129 COMMON CLK FRAMEWORK
4130 M:      Michael Turquette <mturquette@baylibre.com>
4131 M:      Stephen Boyd <sboyd@kernel.org>
4132 L:      linux-clk@vger.kernel.org
4133 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4135 S:      Maintained
4136 F:      Documentation/devicetree/bindings/clock/
4137 F:      drivers/clk/
4138 X:      drivers/clk/clkdev.c
4139 F:      include/linux/clk-pr*
4140 F:      include/linux/clk/
4141 F:      include/linux/of_clk.h
4142
4143 COMMON INTERNET FILE SYSTEM (CIFS)
4144 M:      Steve French <sfrench@samba.org>
4145 L:      linux-cifs@vger.kernel.org
4146 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4147 W:      http://linux-cifs.samba.org/
4148 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4149 S:      Supported
4150 F:      Documentation/admin-guide/cifs/
4151 F:      fs/cifs/
4152
4153 COMPACTPCI HOTPLUG CORE
4154 M:      Scott Murray <scott@spiteful.org>
4155 L:      linux-pci@vger.kernel.org
4156 S:      Maintained
4157 F:      drivers/pci/hotplug/cpci_hotplug*
4158
4159 COMPACTPCI HOTPLUG GENERIC DRIVER
4160 M:      Scott Murray <scott@spiteful.org>
4161 L:      linux-pci@vger.kernel.org
4162 S:      Maintained
4163 F:      drivers/pci/hotplug/cpcihp_generic.c
4164
4165 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4166 M:      Scott Murray <scott@spiteful.org>
4167 L:      linux-pci@vger.kernel.org
4168 S:      Maintained
4169 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4170
4171 COMPAL LAPTOP SUPPORT
4172 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4173 L:      platform-driver-x86@vger.kernel.org
4174 S:      Maintained
4175 F:      drivers/platform/x86/compal-laptop.c
4176
4177 COMPILER ATTRIBUTES
4178 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4179 S:      Maintained
4180 F:      include/linux/compiler_attributes.h
4181
4182 CONEXANT ACCESSRUNNER USB DRIVER
4183 L:      accessrunner-general@lists.sourceforge.net
4184 W:      http://accessrunner.sourceforge.net/
4185 S:      Orphan
4186 F:      drivers/usb/atm/cxacru.c
4187
4188 CONFIGFS
4189 M:      Joel Becker <jlbec@evilplan.org>
4190 M:      Christoph Hellwig <hch@lst.de>
4191 T:      git git://git.infradead.org/users/hch/configfs.git
4192 S:      Supported
4193 F:      fs/configfs/
4194 F:      include/linux/configfs.h
4195
4196 CONNECTOR
4197 M:      Evgeniy Polyakov <zbr@ioremap.net>
4198 L:      netdev@vger.kernel.org
4199 S:      Maintained
4200 F:      drivers/connector/
4201
4202 CONTROL GROUP (CGROUP)
4203 M:      Tejun Heo <tj@kernel.org>
4204 M:      Li Zefan <lizefan@huawei.com>
4205 M:      Johannes Weiner <hannes@cmpxchg.org>
4206 L:      cgroups@vger.kernel.org
4207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4208 S:      Maintained
4209 F:      Documentation/admin-guide/cgroup-v2.rst
4210 F:      Documentation/admin-guide/cgroup-v1/
4211 F:      include/linux/cgroup*
4212 F:      kernel/cgroup/
4213
4214 CONTROL GROUP - CPUSET
4215 M:      Li Zefan <lizefan@huawei.com>
4216 L:      cgroups@vger.kernel.org
4217 W:      http://www.bullopensource.org/cpuset/
4218 W:      http://oss.sgi.com/projects/cpusets/
4219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4220 S:      Maintained
4221 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4222 F:      include/linux/cpuset.h
4223 F:      kernel/cgroup/cpuset.c
4224
4225 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4226 M:      Johannes Weiner <hannes@cmpxchg.org>
4227 M:      Michal Hocko <mhocko@kernel.org>
4228 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4229 L:      cgroups@vger.kernel.org
4230 L:      linux-mm@kvack.org
4231 S:      Maintained
4232 F:      mm/memcontrol.c
4233 F:      mm/swap_cgroup.c
4234
4235 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4236 M:      Tejun Heo <tj@kernel.org>
4237 M:      Jens Axboe <axboe@kernel.dk>
4238 L:      cgroups@vger.kernel.org
4239 L:      linux-block@vger.kernel.org
4240 T:      git git://git.kernel.dk/linux-block
4241 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4242 F:      block/blk-cgroup.c
4243 F:      include/linux/blk-cgroup.h
4244 F:      block/blk-throttle.c
4245 F:      block/blk-iolatency.c
4246 F:      block/bfq-cgroup.c
4247
4248 CORETEMP HARDWARE MONITORING DRIVER
4249 M:      Fenghua Yu <fenghua.yu@intel.com>
4250 L:      linux-hwmon@vger.kernel.org
4251 S:      Maintained
4252 F:      Documentation/hwmon/coretemp.rst
4253 F:      drivers/hwmon/coretemp.c
4254
4255 COSA/SRP SYNC SERIAL DRIVER
4256 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4257 W:      http://www.fi.muni.cz/~kas/cosa/
4258 S:      Maintained
4259 F:      drivers/net/wan/cosa*
4260
4261 COUNTER SUBSYSTEM
4262 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4263 L:      linux-iio@vger.kernel.org
4264 S:      Maintained
4265 F:      Documentation/ABI/testing/sysfs-bus-counter*
4266 F:      Documentation/driver-api/generic-counter.rst
4267 F:      drivers/counter/
4268 F:      include/linux/counter.h
4269 F:      include/linux/counter_enum.h
4270
4271 CPMAC ETHERNET DRIVER
4272 M:      Florian Fainelli <f.fainelli@gmail.com>
4273 L:      netdev@vger.kernel.org
4274 S:      Maintained
4275 F:      drivers/net/ethernet/ti/cpmac.c
4276
4277 CPU FREQUENCY SCALING FRAMEWORK
4278 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4279 M:      Viresh Kumar <viresh.kumar@linaro.org>
4280 L:      linux-pm@vger.kernel.org
4281 S:      Maintained
4282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4284 B:      https://bugzilla.kernel.org
4285 F:      Documentation/admin-guide/pm/cpufreq.rst
4286 F:      Documentation/admin-guide/pm/intel_pstate.rst
4287 F:      Documentation/cpu-freq/
4288 F:      Documentation/devicetree/bindings/cpufreq/
4289 F:      drivers/cpufreq/
4290 F:      kernel/sched/cpufreq*.c
4291 F:      include/linux/cpufreq.h
4292 F:      include/linux/sched/cpufreq.h
4293 F:      tools/testing/selftests/cpufreq/
4294
4295 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
4296 M:      Viresh Kumar <viresh.kumar@linaro.org>
4297 M:      Sudeep Holla <sudeep.holla@arm.com>
4298 L:      linux-pm@vger.kernel.org
4299 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4300 S:      Maintained
4301 F:      drivers/cpufreq/arm_big_little.h
4302 F:      drivers/cpufreq/arm_big_little.c
4303
4304 CPU POWER MONITORING SUBSYSTEM
4305 M:      Thomas Renninger <trenn@suse.com>
4306 M:      Shuah Khan <shuah@kernel.org>
4307 M:      Shuah Khan <skhan@linuxfoundation.org>
4308 L:      linux-pm@vger.kernel.org
4309 S:      Maintained
4310 F:      tools/power/cpupower/
4311
4312 CPUID/MSR DRIVER
4313 M:      "H. Peter Anvin" <hpa@zytor.com>
4314 S:      Maintained
4315 F:      arch/x86/kernel/cpuid.c
4316 F:      arch/x86/kernel/msr.c
4317
4318 CPUIDLE DRIVER - ARM BIG LITTLE
4319 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4320 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4321 L:      linux-pm@vger.kernel.org
4322 L:      linux-arm-kernel@lists.infradead.org
4323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4324 S:      Maintained
4325 F:      drivers/cpuidle/cpuidle-big_little.c
4326
4327 CPUIDLE DRIVER - ARM EXYNOS
4328 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4329 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4330 M:      Kukjin Kim <kgene@kernel.org>
4331 L:      linux-pm@vger.kernel.org
4332 L:      linux-samsung-soc@vger.kernel.org
4333 S:      Supported
4334 F:      drivers/cpuidle/cpuidle-exynos.c
4335 F:      arch/arm/mach-exynos/pm.c
4336
4337 CPUIDLE DRIVER - ARM PSCI
4338 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4339 M:      Sudeep Holla <sudeep.holla@arm.com>
4340 L:      linux-pm@vger.kernel.org
4341 L:      linux-arm-kernel@lists.infradead.org
4342 S:      Supported
4343 F:      drivers/cpuidle/cpuidle-psci.c
4344
4345 CPU IDLE TIME MANAGEMENT FRAMEWORK
4346 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4347 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4348 L:      linux-pm@vger.kernel.org
4349 S:      Maintained
4350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4351 B:      https://bugzilla.kernel.org
4352 F:      Documentation/admin-guide/pm/cpuidle.rst
4353 F:      Documentation/driver-api/pm/cpuidle.rst
4354 F:      drivers/cpuidle/*
4355 F:      include/linux/cpuidle.h
4356
4357 CRAMFS FILESYSTEM
4358 M:      Nicolas Pitre <nico@fluxnic.net>
4359 S:      Maintained
4360 F:      Documentation/filesystems/cramfs.txt
4361 F:      fs/cramfs/
4362
4363 CREATIVE SB0540
4364 M:      Bastien Nocera <hadess@hadess.net>
4365 L:      linux-input@vger.kernel.org
4366 S:      Maintained
4367 F:      drivers/hid/hid-creative-sb0540.c
4368
4369 CRYPTO API
4370 M:      Herbert Xu <herbert@gondor.apana.org.au>
4371 M:      "David S. Miller" <davem@davemloft.net>
4372 L:      linux-crypto@vger.kernel.org
4373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4375 S:      Maintained
4376 F:      Documentation/crypto/
4377 F:      Documentation/devicetree/bindings/crypto/
4378 F:      arch/*/crypto/
4379 F:      crypto/
4380 F:      drivers/crypto/
4381 F:      include/crypto/
4382 F:      include/linux/crypto*
4383 F:      lib/crypto/
4384
4385 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4386 M:      Neil Horman <nhorman@tuxdriver.com>
4387 L:      linux-crypto@vger.kernel.org
4388 S:      Maintained
4389 F:      crypto/ansi_cprng.c
4390 F:      crypto/rng.c
4391
4392 CS3308 MEDIA DRIVER
4393 M:      Hans Verkuil <hverkuil@xs4all.nl>
4394 L:      linux-media@vger.kernel.org
4395 T:      git git://linuxtv.org/media_tree.git
4396 W:      http://linuxtv.org
4397 S:      Odd Fixes
4398 F:      drivers/media/i2c/cs3308.c
4399
4400 CS5535 Audio ALSA driver
4401 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4402 S:      Maintained
4403 F:      sound/pci/cs5535audio/
4404
4405 CSI DRIVERS FOR ALLWINNER V3s
4406 M:      Yong Deng <yong.deng@magewell.com>
4407 L:      linux-media@vger.kernel.org
4408 T:      git git://linuxtv.org/media_tree.git
4409 S:      Maintained
4410 F:      drivers/media/platform/sunxi/sun6i-csi/
4411 F:      Documentation/devicetree/bindings/media/sun6i-csi.txt
4412
4413 CW1200 WLAN driver
4414 M:      Solomon Peachy <pizza@shaftnet.org>
4415 S:      Maintained
4416 F:      drivers/net/wireless/st/cw1200/
4417
4418 CX18 VIDEO4LINUX DRIVER
4419 M:      Andy Walls <awalls@md.metrocast.net>
4420 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
4421 L:      linux-media@vger.kernel.org
4422 T:      git git://linuxtv.org/media_tree.git
4423 W:      https://linuxtv.org
4424 W:      http://www.ivtvdriver.org/index.php/Cx18
4425 S:      Maintained
4426 F:      Documentation/media/v4l-drivers/cx18*
4427 F:      drivers/media/pci/cx18/
4428 F:      include/uapi/linux/ivtv*
4429
4430 CX2341X MPEG ENCODER HELPER MODULE
4431 M:      Hans Verkuil <hverkuil@xs4all.nl>
4432 L:      linux-media@vger.kernel.org
4433 T:      git git://linuxtv.org/media_tree.git
4434 W:      https://linuxtv.org
4435 S:      Maintained
4436 F:      drivers/media/common/cx2341x*
4437 F:      include/media/drv-intf/cx2341x.h
4438
4439 CX24120 MEDIA DRIVER
4440 M:      Jemma Denson <jdenson@gmail.com>
4441 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4442 L:      linux-media@vger.kernel.org
4443 W:      https://linuxtv.org
4444 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4445 S:      Maintained
4446 F:      drivers/media/dvb-frontends/cx24120*
4447
4448 CX88 VIDEO4LINUX DRIVER
4449 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4450 L:      linux-media@vger.kernel.org
4451 W:      https://linuxtv.org
4452 T:      git git://linuxtv.org/media_tree.git
4453 S:      Odd fixes
4454 F:      Documentation/media/v4l-drivers/cx88*
4455 F:      drivers/media/pci/cx88/
4456
4457 CXD2820R MEDIA DRIVER
4458 M:      Antti Palosaari <crope@iki.fi>
4459 L:      linux-media@vger.kernel.org
4460 W:      https://linuxtv.org
4461 W:      http://palosaari.fi/linux/
4462 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4463 T:      git git://linuxtv.org/anttip/media_tree.git
4464 S:      Maintained
4465 F:      drivers/media/dvb-frontends/cxd2820r*
4466
4467 CXGB3 ETHERNET DRIVER (CXGB3)
4468 M:      Vishal Kulkarni <vishal@chelsio.com>
4469 L:      netdev@vger.kernel.org
4470 W:      http://www.chelsio.com
4471 S:      Supported
4472 F:      drivers/net/ethernet/chelsio/cxgb3/
4473
4474 CXGB3 ISCSI DRIVER (CXGB3I)
4475 M:      Karen Xie <kxie@chelsio.com>
4476 L:      linux-scsi@vger.kernel.org
4477 W:      http://www.chelsio.com
4478 S:      Supported
4479 F:      drivers/scsi/cxgbi/cxgb3i
4480
4481 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
4482 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4483 L:      linux-rdma@vger.kernel.org
4484 W:      http://www.openfabrics.org
4485 S:      Supported
4486 F:      drivers/infiniband/hw/cxgb3/
4487 F:      include/uapi/rdma/cxgb3-abi.h
4488
4489 CXGB4 CRYPTO DRIVER (chcr)
4490 M:      Atul Gupta <atul.gupta@chelsio.com>
4491 L:      linux-crypto@vger.kernel.org
4492 W:      http://www.chelsio.com
4493 S:      Supported
4494 F:      drivers/crypto/chelsio
4495
4496 CXGB4 ETHERNET DRIVER (CXGB4)
4497 M:      Vishal Kulkarni <vishal@chelsio.com>
4498 L:      netdev@vger.kernel.org
4499 W:      http://www.chelsio.com
4500 S:      Supported
4501 F:      drivers/net/ethernet/chelsio/cxgb4/
4502
4503 CXGB4 ISCSI DRIVER (CXGB4I)
4504 M:      Karen Xie <kxie@chelsio.com>
4505 L:      linux-scsi@vger.kernel.org
4506 W:      http://www.chelsio.com
4507 S:      Supported
4508 F:      drivers/scsi/cxgbi/cxgb4i
4509
4510 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4511 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4512 L:      linux-rdma@vger.kernel.org
4513 W:      http://www.openfabrics.org
4514 S:      Supported
4515 F:      drivers/infiniband/hw/cxgb4/
4516 F:      include/uapi/rdma/cxgb4-abi.h
4517
4518 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4519 M:      Casey Leedom <leedom@chelsio.com>
4520 L:      netdev@vger.kernel.org
4521 W:      http://www.chelsio.com
4522 S:      Supported
4523 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4524
4525 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4526 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4527 M:      Andrew Donnellan <ajd@linux.ibm.com>
4528 L:      linuxppc-dev@lists.ozlabs.org
4529 S:      Supported
4530 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4531 F:      drivers/misc/cxl/
4532 F:      include/misc/cxl*
4533 F:      include/uapi/misc/cxl.h
4534 F:      Documentation/powerpc/cxl.rst
4535 F:      Documentation/ABI/testing/sysfs-class-cxl
4536
4537 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4538 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4539 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4540 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4541 L:      linux-scsi@vger.kernel.org
4542 S:      Supported
4543 F:      drivers/scsi/cxlflash/
4544 F:      include/uapi/scsi/cxlflash_ioctl.h
4545 F:      Documentation/powerpc/cxlflash.rst
4546
4547 CYBERPRO FB DRIVER
4548 M:      Russell King <linux@armlinux.org.uk>
4549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4550 W:      http://www.armlinux.org.uk/
4551 S:      Maintained
4552 F:      drivers/video/fbdev/cyber2000fb.*
4553
4554 CYCLADES ASYNC MUX DRIVER
4555 W:      http://www.cyclades.com/
4556 S:      Orphan
4557 F:      drivers/tty/cyclades.c
4558 F:      include/linux/cyclades.h
4559 F:      include/uapi/linux/cyclades.h
4560
4561 CYCLADES PC300 DRIVER
4562 W:      http://www.cyclades.com/
4563 S:      Orphan
4564 F:      drivers/net/wan/pc300*
4565
4566 CYPRESS_FIRMWARE MEDIA DRIVER
4567 M:      Antti Palosaari <crope@iki.fi>
4568 L:      linux-media@vger.kernel.org
4569 W:      https://linuxtv.org
4570 W:      http://palosaari.fi/linux/
4571 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4572 T:      git git://linuxtv.org/anttip/media_tree.git
4573 S:      Maintained
4574 F:      drivers/media/common/cypress_firmware*
4575
4576 CYTTSP TOUCHSCREEN DRIVER
4577 M:      Ferruh Yigit <fery@cypress.com>
4578 L:      linux-input@vger.kernel.org
4579 S:      Supported
4580 F:      drivers/input/touchscreen/cyttsp*
4581 F:      include/linux/input/cyttsp.h
4582
4583 D-LINK DIR-685 TOUCHKEYS DRIVER
4584 M:      Linus Walleij <linus.walleij@linaro.org>
4585 L:      linux-input@vger.kernel.org
4586 S:      Supported
4587 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4588
4589 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4590 M:      Joshua Kinard <kumba@gentoo.org>
4591 S:      Maintained
4592 F:      drivers/rtc/rtc-ds1685.c
4593 F:      include/linux/rtc/ds1685.h
4594
4595 DAMA SLAVE for AX.25
4596 M:      Joerg Reuter <jreuter@yaina.de>
4597 W:      http://yaina.de/jreuter/
4598 W:      http://www.qsl.net/dl1bke/
4599 L:      linux-hams@vger.kernel.org
4600 S:      Maintained
4601 F:      net/ax25/af_ax25.c
4602 F:      net/ax25/ax25_dev.c
4603 F:      net/ax25/ax25_ds_*
4604 F:      net/ax25/ax25_in.c
4605 F:      net/ax25/ax25_out.c
4606 F:      net/ax25/ax25_timer.c
4607 F:      net/ax25/sysctl_net_ax25.c
4608
4609 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4610 L:      netdev@vger.kernel.org
4611 S:      Orphan
4612 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4613 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4614
4615 DC390/AM53C974 SCSI driver
4616 M:      Hannes Reinecke <hare@suse.com>
4617 L:      linux-scsi@vger.kernel.org
4618 S:      Maintained
4619 F:      drivers/scsi/am53c974.c
4620
4621 DC395x SCSI driver
4622 M:      Oliver Neukum <oliver@neukum.org>
4623 M:      Ali Akcaagac <aliakc@web.de>
4624 M:      Jamie Lenehan <lenehan@twibble.org>
4625 L:      dc395x@twibble.org
4626 W:      http://twibble.org/dist/dc395x/
4627 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4628 S:      Maintained
4629 F:      Documentation/scsi/dc395x.txt
4630 F:      drivers/scsi/dc395x.*
4631
4632 DCCP PROTOCOL
4633 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4634 L:      dccp@vger.kernel.org
4635 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4636 S:      Maintained
4637 F:      include/linux/dccp.h
4638 F:      include/uapi/linux/dccp.h
4639 F:      include/linux/tfrc.h
4640 F:      net/dccp/
4641
4642 DECnet NETWORK LAYER
4643 W:      http://linux-decnet.sourceforge.net
4644 L:      linux-decnet-user@lists.sourceforge.net
4645 S:      Orphan
4646 F:      Documentation/networking/decnet.txt
4647 F:      net/decnet/
4648
4649 DECSTATION PLATFORM SUPPORT
4650 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4651 L:      linux-mips@vger.kernel.org
4652 W:      http://www.linux-mips.org/wiki/DECstation
4653 S:      Maintained
4654 F:      arch/mips/dec/
4655 F:      arch/mips/include/asm/dec/
4656 F:      arch/mips/include/asm/mach-dec/
4657
4658 DEFXX FDDI NETWORK DRIVER
4659 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4660 S:      Maintained
4661 F:      drivers/net/fddi/defxx.*
4662
4663 DELL SMBIOS DRIVER
4664 M:      Pali Rohár <pali.rohar@gmail.com>
4665 M:      Mario Limonciello <mario.limonciello@dell.com>
4666 L:      platform-driver-x86@vger.kernel.org
4667 S:      Maintained
4668 F:      drivers/platform/x86/dell-smbios.*
4669
4670 DELL SMBIOS SMM DRIVER
4671 M:      Mario Limonciello <mario.limonciello@dell.com>
4672 L:      platform-driver-x86@vger.kernel.org
4673 S:      Maintained
4674 F:      drivers/platform/x86/dell-smbios-smm.c
4675
4676 DELL SMBIOS WMI DRIVER
4677 M:      Mario Limonciello <mario.limonciello@dell.com>
4678 L:      platform-driver-x86@vger.kernel.org
4679 S:      Maintained
4680 F:      drivers/platform/x86/dell-smbios-wmi.c
4681 F:      tools/wmi/dell-smbios-example.c
4682
4683 DEFZA FDDI NETWORK DRIVER
4684 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4685 S:      Maintained
4686 F:      drivers/net/fddi/defza.*
4687
4688 DELL LAPTOP DRIVER
4689 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4690 M:      Pali Rohár <pali.rohar@gmail.com>
4691 L:      platform-driver-x86@vger.kernel.org
4692 S:      Maintained
4693 F:      drivers/platform/x86/dell-laptop.c
4694
4695 DELL LAPTOP FREEFALL DRIVER
4696 M:      Pali Rohár <pali.rohar@gmail.com>
4697 S:      Maintained
4698 F:      drivers/platform/x86/dell-smo8800.c
4699
4700 DELL LAPTOP RBTN DRIVER
4701 M:      Pali Rohár <pali.rohar@gmail.com>
4702 S:      Maintained
4703 F:      drivers/platform/x86/dell-rbtn.*
4704
4705 DELL REMOTE BIOS UPDATE DRIVER
4706 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4707 L:      platform-driver-x86@vger.kernel.org
4708 S:      Maintained
4709 F:      drivers/platform/x86/dell_rbu.c
4710
4711 DELL LAPTOP SMM DRIVER
4712 M:      Pali Rohár <pali.rohar@gmail.com>
4713 S:      Maintained
4714 F:      drivers/hwmon/dell-smm-hwmon.c
4715 F:      include/uapi/linux/i8k.h
4716
4717 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4718 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4719 L:      platform-driver-x86@vger.kernel.org
4720 S:      Maintained
4721 F:      Documentation/driver-api/dcdbas.rst
4722 F:      drivers/platform/x86/dcdbas.*
4723
4724 DELL WMI NOTIFICATIONS DRIVER
4725 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4726 M:      Pali Rohár <pali.rohar@gmail.com>
4727 S:      Maintained
4728 F:      drivers/platform/x86/dell-wmi.c
4729
4730 DELL WMI DESCRIPTOR DRIVER
4731 M:      Mario Limonciello <mario.limonciello@dell.com>
4732 S:      Maintained
4733 F:      drivers/platform/x86/dell-wmi-descriptor.c
4734
4735 DELTA ST MEDIA DRIVER
4736 M:      Hugues Fruchet <hugues.fruchet@st.com>
4737 L:      linux-media@vger.kernel.org
4738 T:      git git://linuxtv.org/media_tree.git
4739 W:      https://linuxtv.org
4740 S:      Supported
4741 F:      drivers/media/platform/sti/delta
4742
4743 DENALI NAND DRIVER
4744 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4745 L:      linux-mtd@lists.infradead.org
4746 S:      Supported
4747 F:      drivers/mtd/nand/raw/denali*
4748
4749 DESIGNWARE EDMA CORE IP DRIVER
4750 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4751 L:      dmaengine@vger.kernel.org
4752 S:      Maintained
4753 F:      drivers/dma/dw-edma/
4754 F:      include/linux/dma/edma.h
4755
4756 DESIGNWARE USB2 DRD IP DRIVER
4757 M:      Minas Harutyunyan <hminas@synopsys.com>
4758 L:      linux-usb@vger.kernel.org
4759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4760 S:      Maintained
4761 F:      drivers/usb/dwc2/
4762
4763 DESIGNWARE USB3 DRD IP DRIVER
4764 M:      Felipe Balbi <balbi@kernel.org>
4765 L:      linux-usb@vger.kernel.org
4766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4767 S:      Maintained
4768 F:      drivers/usb/dwc3/
4769
4770 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4771 M:      Andreas Klinger <ak@it-klinger.de>
4772 L:      linux-iio@vger.kernel.org
4773 S:      Maintained
4774 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4775 F:      drivers/iio/proximity/srf*.c
4776
4777 DEVICE COREDUMP (DEV_COREDUMP)
4778 M:      Johannes Berg <johannes@sipsolutions.net>
4779 L:      linux-kernel@vger.kernel.org
4780 S:      Maintained
4781 F:      drivers/base/devcoredump.c
4782 F:      include/linux/devcoredump.h
4783
4784 DEVICE FREQUENCY (DEVFREQ)
4785 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4786 M:      Kyungmin Park <kyungmin.park@samsung.com>
4787 R:      Chanwoo Choi <cw00.choi@samsung.com>
4788 L:      linux-pm@vger.kernel.org
4789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4790 S:      Maintained
4791 F:      drivers/devfreq/
4792 F:      include/linux/devfreq.h
4793 F:      Documentation/devicetree/bindings/devfreq/
4794 F:      include/trace/events/devfreq.h
4795
4796 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4797 M:      Chanwoo Choi <cw00.choi@samsung.com>
4798 L:      linux-pm@vger.kernel.org
4799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4800 S:      Supported
4801 F:      drivers/devfreq/event/
4802 F:      drivers/devfreq/devfreq-event.c
4803 F:      include/linux/devfreq-event.h
4804 F:      Documentation/devicetree/bindings/devfreq/event/
4805
4806 DEVICE NUMBER REGISTRY
4807 M:      Torben Mathiasen <device@lanana.org>
4808 W:      http://lanana.org/docs/device-list/index.html
4809 S:      Maintained
4810
4811 DEVICE-MAPPER  (LVM)
4812 M:      Alasdair Kergon <agk@redhat.com>
4813 M:      Mike Snitzer <snitzer@redhat.com>
4814 M:      dm-devel@redhat.com
4815 L:      dm-devel@redhat.com
4816 W:      http://sources.redhat.com/dm
4817 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4819 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4820 S:      Maintained
4821 F:      Documentation/admin-guide/device-mapper/
4822 F:      drivers/md/Makefile
4823 F:      drivers/md/Kconfig
4824 F:      drivers/md/dm*
4825 F:      drivers/md/persistent-data/
4826 F:      include/linux/device-mapper.h
4827 F:      include/linux/dm-*.h
4828 F:      include/uapi/linux/dm-*.h
4829
4830 DEVLINK
4831 M:      Jiri Pirko <jiri@mellanox.com>
4832 L:      netdev@vger.kernel.org
4833 S:      Supported
4834 F:      net/core/devlink.c
4835 F:      include/net/devlink.h
4836 F:      include/uapi/linux/devlink.h
4837
4838 DIALOG SEMICONDUCTOR DRIVERS
4839 M:      Support Opensource <support.opensource@diasemi.com>
4840 W:      http://www.dialog-semiconductor.com/products
4841 S:      Supported
4842 F:      Documentation/hwmon/da90??.rst
4843 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4844 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4845 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4846 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4847 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4848 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4849 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4850 F:      drivers/gpio/gpio-da90??.c
4851 F:      drivers/hwmon/da90??-hwmon.c
4852 F:      drivers/iio/adc/da91??-*.c
4853 F:      drivers/input/misc/da90??_onkey.c
4854 F:      drivers/input/touchscreen/da9052_tsi.c
4855 F:      drivers/leds/leds-da90??.c
4856 F:      drivers/mfd/da903x.c
4857 F:      drivers/mfd/da90??-*.c
4858 F:      drivers/mfd/da91??-*.c
4859 F:      drivers/power/supply/da9052-battery.c
4860 F:      drivers/power/supply/da91??-*.c
4861 F:      drivers/regulator/da903x.c
4862 F:      drivers/regulator/da9???-regulator.[ch]
4863 F:      drivers/regulator/slg51000-regulator.[ch]
4864 F:      drivers/thermal/da90??-thermal.c
4865 F:      drivers/rtc/rtc-da90??.c
4866 F:      drivers/video/backlight/da90??_bl.c
4867 F:      drivers/watchdog/da90??_wdt.c
4868 F:      include/linux/mfd/da903x.h
4869 F:      include/linux/mfd/da9052/
4870 F:      include/linux/mfd/da9055/
4871 F:      include/linux/mfd/da9062/
4872 F:      include/linux/mfd/da9063/
4873 F:      include/linux/mfd/da9150/
4874 F:      include/linux/regulator/da9211.h
4875 F:      include/sound/da[79]*.h
4876 F:      sound/soc/codecs/da[79]*.[ch]
4877
4878 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4879 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4880 L:      linux-gpio@vger.kernel.org
4881 S:      Maintained
4882 F:      drivers/gpio/gpio-gpio-mm.c
4883
4884 DIOLAN U2C-12 I2C DRIVER
4885 M:      Guenter Roeck <linux@roeck-us.net>
4886 L:      linux-i2c@vger.kernel.org
4887 S:      Maintained
4888 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4889
4890 FILESYSTEM DIRECT ACCESS (DAX)
4891 M:      Dan Williams <dan.j.williams@intel.com>
4892 R:      Matthew Wilcox <willy@infradead.org>
4893 R:      Jan Kara <jack@suse.cz>
4894 L:      linux-fsdevel@vger.kernel.org
4895 L:      linux-nvdimm@lists.01.org
4896 S:      Supported
4897 F:      fs/dax.c
4898 F:      include/linux/dax.h
4899 F:      include/trace/events/fs_dax.h
4900
4901 DEVICE DIRECT ACCESS (DAX)
4902 M:      Dan Williams <dan.j.williams@intel.com>
4903 M:      Vishal Verma <vishal.l.verma@intel.com>
4904 M:      Keith Busch <keith.busch@intel.com>
4905 M:      Dave Jiang <dave.jiang@intel.com>
4906 L:      linux-nvdimm@lists.01.org
4907 S:      Supported
4908 F:      drivers/dax/
4909
4910 DIRECTORY NOTIFICATION (DNOTIFY)
4911 M:      Jan Kara <jack@suse.cz>
4912 R:      Amir Goldstein <amir73il@gmail.com>
4913 L:      linux-fsdevel@vger.kernel.org
4914 S:      Maintained
4915 F:      Documentation/filesystems/dnotify.txt
4916 F:      fs/notify/dnotify/
4917 F:      include/linux/dnotify.h
4918
4919 DISK GEOMETRY AND PARTITION HANDLING
4920 M:      Andries Brouwer <aeb@cwi.nl>
4921 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4922 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4923 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4924 S:      Maintained
4925
4926 DISKQUOTA
4927 M:      Jan Kara <jack@suse.com>
4928 S:      Maintained
4929 F:      Documentation/filesystems/quota.txt
4930 F:      fs/quota/
4931 F:      include/linux/quota*.h
4932 F:      include/uapi/linux/quota*.h
4933
4934 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4935 M:      Bernie Thompson <bernie@plugable.com>
4936 L:      linux-fbdev@vger.kernel.org
4937 S:      Maintained
4938 W:      http://plugable.com/category/projects/udlfb/
4939 F:      drivers/video/fbdev/udlfb.c
4940 F:      include/video/udlfb.h
4941 F:      Documentation/fb/udlfb.rst
4942
4943 DISTRIBUTED LOCK MANAGER (DLM)
4944 M:      Christine Caulfield <ccaulfie@redhat.com>
4945 M:      David Teigland <teigland@redhat.com>
4946 L:      cluster-devel@redhat.com
4947 W:      http://sources.redhat.com/cluster/
4948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4949 S:      Supported
4950 F:      fs/dlm/
4951
4952 DMA BUFFER SHARING FRAMEWORK
4953 M:      Sumit Semwal <sumit.semwal@linaro.org>
4954 S:      Maintained
4955 L:      linux-media@vger.kernel.org
4956 L:      dri-devel@lists.freedesktop.org
4957 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4958 F:      drivers/dma-buf/
4959 F:      include/linux/dma-buf*
4960 F:      include/linux/reservation.h
4961 F:      include/linux/*fence.h
4962 F:      Documentation/driver-api/dma-buf.rst
4963 T:      git git://anongit.freedesktop.org/drm/drm-misc
4964
4965 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4966 M:      Vinod Koul <vkoul@kernel.org>
4967 L:      dmaengine@vger.kernel.org
4968 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4969 S:      Maintained
4970 F:      drivers/dma/
4971 F:      include/linux/dmaengine.h
4972 F:      include/linux/of_dma.h
4973 F:      Documentation/devicetree/bindings/dma/
4974 F:      Documentation/driver-api/dmaengine/
4975 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4976
4977 DMA MAPPING HELPERS
4978 M:      Christoph Hellwig <hch@lst.de>
4979 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4980 R:      Robin Murphy <robin.murphy@arm.com>
4981 L:      iommu@lists.linux-foundation.org
4982 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4983 W:      http://git.infradead.org/users/hch/dma-mapping.git
4984 S:      Supported
4985 F:      kernel/dma/
4986 F:      include/asm-generic/dma-mapping.h
4987 F:      include/linux/dma-direct.h
4988 F:      include/linux/dma-mapping.h
4989 F:      include/linux/dma-noncoherent.h
4990
4991 DME1737 HARDWARE MONITOR DRIVER
4992 M:      Juerg Haefliger <juergh@gmail.com>
4993 L:      linux-hwmon@vger.kernel.org
4994 S:      Maintained
4995 F:      Documentation/hwmon/dme1737.rst
4996 F:      drivers/hwmon/dme1737.c
4997
4998 DMI/SMBIOS SUPPORT
4999 M:      Jean Delvare <jdelvare@suse.com>
5000 S:      Maintained
5001 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5002 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5003 F:      drivers/firmware/dmi-id.c
5004 F:      drivers/firmware/dmi_scan.c
5005 F:      include/linux/dmi.h
5006
5007 DOCUMENTATION
5008 M:      Jonathan Corbet <corbet@lwn.net>
5009 L:      linux-doc@vger.kernel.org
5010 S:      Maintained
5011 F:      Documentation/
5012 F:      scripts/documentation-file-ref-check
5013 F:      scripts/kernel-doc
5014 F:      scripts/sphinx-pre-install
5015 X:      Documentation/ABI/
5016 X:      Documentation/firmware-guide/acpi/
5017 X:      Documentation/devicetree/
5018 X:      Documentation/i2c/
5019 X:      Documentation/media/
5020 X:      Documentation/power/
5021 X:      Documentation/spi/
5022 T:      git git://git.lwn.net/linux.git docs-next
5023
5024 DOCUMENTATION/ITALIAN
5025 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5026 L:      linux-doc@vger.kernel.org
5027 S:      Maintained
5028 F:      Documentation/translations/it_IT
5029
5030 DOCUMENTATION SCRIPTS
5031 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5032 L:      linux-doc@vger.kernel.org
5033 S:      Maintained
5034 F:      scripts/documentation-file-ref-check
5035 F:      scripts/sphinx-pre-install
5036 F:      Documentation/sphinx/parse-headers.pl
5037
5038 DONGWOON DW9714 LENS VOICE COIL DRIVER
5039 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5040 L:      linux-media@vger.kernel.org
5041 T:      git git://linuxtv.org/media_tree.git
5042 S:      Maintained
5043 F:      drivers/media/i2c/dw9714.c
5044 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5045
5046 DONGWOON DW9807 LENS VOICE COIL DRIVER
5047 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5048 L:      linux-media@vger.kernel.org
5049 T:      git git://linuxtv.org/media_tree.git
5050 S:      Maintained
5051 F:      drivers/media/i2c/dw9807-vcm.c
5052 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5053
5054 DOUBLETALK DRIVER
5055 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5056 L:      blinux-list@redhat.com
5057 S:      Maintained
5058 F:      drivers/char/dtlk.c
5059 F:      include/linux/dtlk.h
5060
5061 DPAA2 DATAPATH I/O (DPIO) DRIVER
5062 M:      Roy Pledge <Roy.Pledge@nxp.com>
5063 L:      linux-kernel@vger.kernel.org
5064 S:      Maintained
5065 F:      drivers/soc/fsl/dpio
5066
5067 DPAA2 ETHERNET DRIVER
5068 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5069 L:      netdev@vger.kernel.org
5070 S:      Maintained
5071 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5072 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5073 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5074 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5075 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5076 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5077 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5078 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5079 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5080
5081 DPAA2 ETHERNET SWITCH DRIVER
5082 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5083 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5084 L:      linux-kernel@vger.kernel.org
5085 S:      Maintained
5086 F:      drivers/staging/fsl-dpaa2/ethsw
5087
5088 DPT_I2O SCSI RAID DRIVER
5089 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5090 L:      linux-scsi@vger.kernel.org
5091 W:      http://www.adaptec.com/
5092 S:      Maintained
5093 F:      drivers/scsi/dpt*
5094 F:      drivers/scsi/dpt/
5095
5096 DRBD DRIVER
5097 M:      Philipp Reisner <philipp.reisner@linbit.com>
5098 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5099 L:      drbd-dev@lists.linbit.com
5100 W:      http://www.drbd.org
5101 T:      git git://git.linbit.com/linux-drbd.git
5102 T:      git git://git.linbit.com/drbd-8.4.git
5103 S:      Supported
5104 F:      drivers/block/drbd/
5105 F:      lib/lru_cache.c
5106 F:      Documentation/admin-guide/blockdev/
5107
5108 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5109 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5110 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5112 S:      Supported
5113 F:      Documentation/kobject.txt
5114 F:      drivers/base/
5115 F:      fs/debugfs/
5116 F:      fs/sysfs/
5117 F:      include/linux/debugfs.h
5118 F:      include/linux/kobj*
5119 F:      lib/kobj*
5120
5121 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5122 M:      Kevin Hilman <khilman@kernel.org>
5123 M:      Nishanth Menon <nm@ti.com>
5124 S:      Maintained
5125 F:      drivers/power/avs/
5126 F:      include/linux/power/smartreflex.h
5127 L:      linux-pm@vger.kernel.org
5128
5129 DRM DRIVER FOR ARM PL111 CLCD
5130 M:      Eric Anholt <eric@anholt.net>
5131 T:      git git://anongit.freedesktop.org/drm/drm-misc
5132 S:      Supported
5133 F:      drivers/gpu/drm/pl111/
5134
5135 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5136 M:      Linus Walleij <linus.walleij@linaro.org>
5137 T:      git git://anongit.freedesktop.org/drm/drm-misc
5138 S:      Maintained
5139 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5140 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5141
5142 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5143 M:      Dave Airlie <airlied@redhat.com>
5144 S:      Odd Fixes
5145 F:      drivers/gpu/drm/ast/
5146
5147 DRM DRIVER FOR ASPEED BMC GFX
5148 M:      Joel Stanley <joel@jms.id.au>
5149 L:      linux-aspeed@lists.ozlabs.org
5150 T:      git git://anongit.freedesktop.org/drm/drm-misc
5151 S:      Supported
5152 F:      drivers/gpu/drm/aspeed/
5153 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5154
5155 DRM DRIVER FOR BOCHS VIRTUAL GPU
5156 M:      Gerd Hoffmann <kraxel@redhat.com>
5157 L:      virtualization@lists.linux-foundation.org
5158 T:      git git://anongit.freedesktop.org/drm/drm-misc
5159 S:      Maintained
5160 F:      drivers/gpu/drm/bochs/
5161
5162 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5163 M:      Linus Walleij <linus.walleij@linaro.org>
5164 T:      git git://anongit.freedesktop.org/drm/drm-misc
5165 S:      Maintained
5166 F:      drivers/gpu/drm/tve200/
5167
5168 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5169 M:      Jagan Teki <jagan@amarulasolutions.com>
5170 S:      Maintained
5171 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5172 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5173
5174 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5175 M:      Hans de Goede <hdegoede@redhat.com>
5176 T:      git git://anongit.freedesktop.org/drm/drm-misc
5177 S:      Maintained
5178 F:      drivers/gpu/drm/tiny/gm12u320.c
5179
5180 DRM DRIVER FOR ILITEK ILI9225 PANELS
5181 M:      David Lechner <david@lechnology.com>
5182 T:      git git://anongit.freedesktop.org/drm/drm-misc
5183 S:      Maintained
5184 F:      drivers/gpu/drm/tiny/ili9225.c
5185 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5186
5187 DRM DRIVER FOR HX8357D PANELS
5188 M:      Eric Anholt <eric@anholt.net>
5189 T:      git git://anongit.freedesktop.org/drm/drm-misc
5190 S:      Maintained
5191 F:      drivers/gpu/drm/tiny/hx8357d.c
5192 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5193
5194 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5195 S:      Orphan / Obsolete
5196 F:      drivers/gpu/drm/i810/
5197 F:      include/uapi/drm/i810_drm.h
5198
5199 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5200 S:      Orphan / Obsolete
5201 F:      drivers/gpu/drm/mga/
5202 F:      include/uapi/drm/mga_drm.h
5203
5204 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5205 M:      Dave Airlie <airlied@redhat.com>
5206 S:      Odd Fixes
5207 F:      drivers/gpu/drm/mgag200/
5208
5209 DRM DRIVER FOR MI0283QT
5210 M:      Noralf Trønnes <noralf@tronnes.org>
5211 T:      git git://anongit.freedesktop.org/drm/drm-misc
5212 S:      Maintained
5213 F:      drivers/gpu/drm/tiny/mi0283qt.c
5214 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5215
5216 DRM DRIVER FOR MSM ADRENO GPU
5217 M:      Rob Clark <robdclark@gmail.com>
5218 M:      Sean Paul <sean@poorly.run>
5219 L:      linux-arm-msm@vger.kernel.org
5220 L:      dri-devel@lists.freedesktop.org
5221 L:      freedreno@lists.freedesktop.org
5222 T:      git https://gitlab.freedesktop.org/drm/msm.git
5223 S:      Maintained
5224 F:      drivers/gpu/drm/msm/
5225 F:      include/uapi/drm/msm_drm.h
5226 F:      Documentation/devicetree/bindings/display/msm/
5227
5228 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5229 M:      Ben Skeggs <bskeggs@redhat.com>
5230 L:      dri-devel@lists.freedesktop.org
5231 L:      nouveau@lists.freedesktop.org
5232 T:      git git://github.com/skeggsb/linux
5233 S:      Supported
5234 F:      drivers/gpu/drm/nouveau/
5235 F:      include/uapi/drm/nouveau_drm.h
5236
5237 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5238 M:      Stefan Mavrodiev <stefan@olimex.com>
5239 S:      Maintained
5240 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5241 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5242
5243 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5244 M:      Noralf Trønnes <noralf@tronnes.org>
5245 T:      git git://anongit.freedesktop.org/drm/drm-misc
5246 S:      Maintained
5247 F:      drivers/gpu/drm/tiny/repaper.c
5248 F:      Documentation/devicetree/bindings/display/repaper.txt
5249
5250 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5251 M:      Dave Airlie <airlied@redhat.com>
5252 M:      Gerd Hoffmann <kraxel@redhat.com>
5253 L:      virtualization@lists.linux-foundation.org
5254 T:      git git://anongit.freedesktop.org/drm/drm-misc
5255 S:      Obsolete
5256 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5257 F:      drivers/gpu/drm/cirrus/
5258
5259 DRM DRIVER FOR QXL VIRTUAL GPU
5260 M:      Dave Airlie <airlied@redhat.com>
5261 M:      Gerd Hoffmann <kraxel@redhat.com>
5262 L:      virtualization@lists.linux-foundation.org
5263 L:      spice-devel@lists.freedesktop.org
5264 T:      git git://anongit.freedesktop.org/drm/drm-misc
5265 S:      Maintained
5266 F:      drivers/gpu/drm/qxl/
5267 F:      include/uapi/drm/qxl_drm.h
5268
5269 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5270 M:      Robert Chiras <robert.chiras@nxp.com>
5271 S:      Maintained
5272 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5273 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5274
5275 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5276 S:      Orphan / Obsolete
5277 F:      drivers/gpu/drm/r128/
5278 F:      include/uapi/drm/r128_drm.h
5279
5280 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5281 M:      Guido Günther <agx@sigxcpu.org>
5282 R:      Purism Kernel Team <kernel@puri.sm>
5283 S:      Maintained
5284 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5285 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5286
5287 DRM DRIVER FOR SAVAGE VIDEO CARDS
5288 S:      Orphan / Obsolete
5289 F:      drivers/gpu/drm/savage/
5290 F:      include/uapi/drm/savage_drm.h
5291
5292 DRM DRIVER FOR SIS VIDEO CARDS
5293 S:      Orphan / Obsolete
5294 F:      drivers/gpu/drm/sis/
5295 F:      include/uapi/drm/sis_drm.h
5296
5297 DRM DRIVER FOR SITRONIX ST7701 PANELS
5298 M:      Jagan Teki <jagan@amarulasolutions.com>
5299 S:      Maintained
5300 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5301 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5302
5303 DRM DRIVER FOR SITRONIX ST7586 PANELS
5304 M:      David Lechner <david@lechnology.com>
5305 T:      git git://anongit.freedesktop.org/drm/drm-misc
5306 S:      Maintained
5307 F:      drivers/gpu/drm/tiny/st7586.c
5308 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5309
5310 DRM DRIVER FOR SITRONIX ST7735R PANELS
5311 M:      David Lechner <david@lechnology.com>
5312 T:      git git://anongit.freedesktop.org/drm/drm-misc
5313 S:      Maintained
5314 F:      drivers/gpu/drm/tiny/st7735r.c
5315 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.txt
5316
5317 DRM DRIVER FOR ST-ERICSSON MCDE
5318 M:      Linus Walleij <linus.walleij@linaro.org>
5319 T:      git git://anongit.freedesktop.org/drm/drm-misc
5320 S:      Maintained
5321 F:      drivers/gpu/drm/mcde/
5322 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5323
5324 DRM DRIVER FOR TDFX VIDEO CARDS
5325 S:      Orphan / Obsolete
5326 F:      drivers/gpu/drm/tdfx/
5327
5328 DRM DRIVER FOR TPO TPG110 PANELS
5329 M:      Linus Walleij <linus.walleij@linaro.org>
5330 T:      git git://anongit.freedesktop.org/drm/drm-misc
5331 S:      Maintained
5332 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5333 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5334
5335 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5336 M:      Dave Airlie <airlied@redhat.com>
5337 R:      Sean Paul <sean@poorly.run>
5338 L:      dri-devel@lists.freedesktop.org
5339 S:      Odd Fixes
5340 F:      drivers/gpu/drm/udl/
5341 T:      git git://anongit.freedesktop.org/drm/drm-misc
5342
5343 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5344 M:      Hans de Goede <hdegoede@redhat.com>
5345 L:      dri-devel@lists.freedesktop.org
5346 S:      Maintained
5347 F:      drivers/gpu/drm/vboxvideo/
5348 T:      git git://anongit.freedesktop.org/drm/drm-misc
5349
5350 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5351 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5352 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5353 R:      Daniel Vetter <daniel@ffwll.ch>
5354 T:      git git://anongit.freedesktop.org/drm/drm-misc
5355 S:      Maintained
5356 L:      dri-devel@lists.freedesktop.org
5357 F:      drivers/gpu/drm/vkms/
5358 F:      Documentation/gpu/vkms.rst
5359
5360 DRM DRIVER FOR VMWARE VIRTUAL GPU
5361 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5362 M:      Thomas Hellstrom <thellstrom@vmware.com>
5363 L:      dri-devel@lists.freedesktop.org
5364 T:      git git://people.freedesktop.org/~thomash/linux
5365 S:      Supported
5366 F:      drivers/gpu/drm/vmwgfx/
5367 F:      include/uapi/drm/vmwgfx_drm.h
5368
5369 DRM DRIVERS
5370 M:      David Airlie <airlied@linux.ie>
5371 M:      Daniel Vetter <daniel@ffwll.ch>
5372 L:      dri-devel@lists.freedesktop.org
5373 T:      git git://anongit.freedesktop.org/drm/drm
5374 B:      https://bugs.freedesktop.org/
5375 C:      irc://chat.freenode.net/dri-devel
5376 S:      Maintained
5377 F:      drivers/gpu/drm/
5378 F:      drivers/gpu/vga/
5379 F:      Documentation/devicetree/bindings/display/
5380 F:      Documentation/devicetree/bindings/gpu/
5381 F:      Documentation/gpu/
5382 F:      include/drm/
5383 F:      include/uapi/drm/
5384 F:      include/linux/vga*
5385
5386 DRM DRIVERS AND MISC GPU PATCHES
5387 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5388 M:      Maxime Ripard <mripard@kernel.org>
5389 M:      Sean Paul <sean@poorly.run>
5390 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5391 S:      Maintained
5392 T:      git git://anongit.freedesktop.org/drm/drm-misc
5393 F:      Documentation/gpu/
5394 F:      drivers/gpu/vga/
5395 F:      drivers/gpu/drm/*
5396 F:      include/drm/drm*
5397 F:      include/uapi/drm/drm*
5398 F:      include/linux/vga*
5399
5400 DRM DRIVERS FOR ALLWINNER A10
5401 M:      Maxime Ripard <mripard@kernel.org>
5402 L:      dri-devel@lists.freedesktop.org
5403 S:      Supported
5404 F:      drivers/gpu/drm/sun4i/
5405 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5406 T:      git git://anongit.freedesktop.org/drm/drm-misc
5407
5408 DRM DRIVERS FOR AMLOGIC SOCS
5409 M:      Neil Armstrong <narmstrong@baylibre.com>
5410 L:      dri-devel@lists.freedesktop.org
5411 L:      linux-amlogic@lists.infradead.org
5412 W:      http://linux-meson.com/
5413 S:      Supported
5414 F:      drivers/gpu/drm/meson/
5415 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5416 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5417 F:      Documentation/gpu/meson.rst
5418 T:      git git://anongit.freedesktop.org/drm/drm-misc
5419
5420 DRM DRIVERS FOR ATMEL HLCDC
5421 M:      Sam Ravnborg <sam@ravnborg.org>
5422 M:      Boris Brezillon <bbrezillon@kernel.org>
5423 L:      dri-devel@lists.freedesktop.org
5424 S:      Supported
5425 F:      drivers/gpu/drm/atmel-hlcdc/
5426 F:      Documentation/devicetree/bindings/display/atmel/
5427 T:      git git://anongit.freedesktop.org/drm/drm-misc
5428
5429 DRM DRIVERS FOR BRIDGE CHIPS
5430 M:      Andrzej Hajda <a.hajda@samsung.com>
5431 M:      Neil Armstrong <narmstrong@baylibre.com>
5432 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5433 R:      Jonas Karlman <jonas@kwiboo.se>
5434 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5435 S:      Maintained
5436 T:      git git://anongit.freedesktop.org/drm/drm-misc
5437 F:      drivers/gpu/drm/bridge/
5438
5439 DRM DRIVERS FOR EXYNOS
5440 M:      Inki Dae <inki.dae@samsung.com>
5441 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5442 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5443 M:      Kyungmin Park <kyungmin.park@samsung.com>
5444 L:      dri-devel@lists.freedesktop.org
5445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5446 S:      Supported
5447 F:      drivers/gpu/drm/exynos/
5448 F:      include/uapi/drm/exynos_drm.h
5449 F:      Documentation/devicetree/bindings/display/exynos/
5450
5451 DRM DRIVERS FOR FREESCALE DCU
5452 M:      Stefan Agner <stefan@agner.ch>
5453 M:      Alison Wang <alison.wang@nxp.com>
5454 L:      dri-devel@lists.freedesktop.org
5455 S:      Supported
5456 F:      drivers/gpu/drm/fsl-dcu/
5457 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5458 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5459 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19-05b.txt
5460 T:      git git://anongit.freedesktop.org/drm/drm-misc
5461
5462 DRM DRIVERS FOR FREESCALE IMX
5463 M:      Philipp Zabel <p.zabel@pengutronix.de>
5464 L:      dri-devel@lists.freedesktop.org
5465 S:      Maintained
5466 F:      drivers/gpu/drm/imx/
5467 F:      drivers/gpu/ipu-v3/
5468 F:      Documentation/devicetree/bindings/display/imx/
5469
5470 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5471 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5472 L:      dri-devel@lists.freedesktop.org
5473 T:      git git://github.com/patjak/drm-gma500
5474 S:      Maintained
5475 F:      drivers/gpu/drm/gma500/
5476
5477 DRM DRIVERS FOR HISILICON
5478 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
5479 M:      Rongrong Zou <zourongrong@gmail.com>
5480 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5481 R:      Chen Feng <puck.chen@hisilicon.com>
5482 L:      dri-devel@lists.freedesktop.org
5483 T:      git git://github.com/xin3liang/linux.git
5484 S:      Maintained
5485 F:      drivers/gpu/drm/hisilicon/
5486 F:      Documentation/devicetree/bindings/display/hisilicon/
5487
5488 DRM DRIVERS FOR LIMA
5489 M:      Qiang Yu <yuq825@gmail.com>
5490 L:      dri-devel@lists.freedesktop.org
5491 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5492 S:      Maintained
5493 F:      drivers/gpu/drm/lima/
5494 F:      include/uapi/drm/lima_drm.h
5495 T:      git git://anongit.freedesktop.org/drm/drm-misc
5496
5497 DRM DRIVERS FOR MEDIATEK
5498 M:      CK Hu <ck.hu@mediatek.com>
5499 M:      Philipp Zabel <p.zabel@pengutronix.de>
5500 L:      dri-devel@lists.freedesktop.org
5501 S:      Supported
5502 F:      drivers/gpu/drm/mediatek/
5503 F:      Documentation/devicetree/bindings/display/mediatek/
5504
5505 DRM DRIVERS FOR NVIDIA TEGRA
5506 M:      Thierry Reding <thierry.reding@gmail.com>
5507 L:      dri-devel@lists.freedesktop.org
5508 L:      linux-tegra@vger.kernel.org
5509 T:      git git://anongit.freedesktop.org/tegra/linux.git
5510 S:      Supported
5511 F:      drivers/gpu/drm/tegra/
5512 F:      drivers/gpu/host1x/
5513 F:      include/linux/host1x.h
5514 F:      include/uapi/drm/tegra_drm.h
5515 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5516
5517 DRM DRIVERS FOR RENESAS
5518 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5519 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5520 L:      dri-devel@lists.freedesktop.org
5521 L:      linux-renesas-soc@vger.kernel.org
5522 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5523 S:      Supported
5524 F:      drivers/gpu/drm/rcar-du/
5525 F:      drivers/gpu/drm/shmobile/
5526 F:      include/linux/platform_data/shmob_drm.h
5527 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5528 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5529 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5530
5531 DRM DRIVERS FOR ROCKCHIP
5532 M:      Sandy Huang <hjc@rock-chips.com>
5533 M:      Heiko Stübner <heiko@sntech.de>
5534 L:      dri-devel@lists.freedesktop.org
5535 S:      Maintained
5536 F:      drivers/gpu/drm/rockchip/
5537 F:      Documentation/devicetree/bindings/display/rockchip/
5538 T:      git git://anongit.freedesktop.org/drm/drm-misc
5539
5540 DRM DRIVERS FOR STI
5541 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5542 M:      Vincent Abriou <vincent.abriou@st.com>
5543 L:      dri-devel@lists.freedesktop.org
5544 T:      git git://anongit.freedesktop.org/drm/drm-misc
5545 S:      Maintained
5546 F:      drivers/gpu/drm/sti
5547 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5548
5549 DRM DRIVERS FOR STM
5550 M:      Yannick Fertre <yannick.fertre@st.com>
5551 M:      Philippe Cornu <philippe.cornu@st.com>
5552 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5553 M:      Vincent Abriou <vincent.abriou@st.com>
5554 L:      dri-devel@lists.freedesktop.org
5555 T:      git git://anongit.freedesktop.org/drm/drm-misc
5556 S:      Maintained
5557 F:      drivers/gpu/drm/stm
5558 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
5559
5560 DRM DRIVERS FOR TI LCDC
5561 M:      Jyri Sarha <jsarha@ti.com>
5562 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5563 L:      dri-devel@lists.freedesktop.org
5564 S:      Maintained
5565 F:      drivers/gpu/drm/tilcdc/
5566 F:      Documentation/devicetree/bindings/display/tilcdc/
5567
5568 DRM DRIVERS FOR TI OMAP
5569 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5570 L:      dri-devel@lists.freedesktop.org
5571 S:      Maintained
5572 F:      drivers/gpu/drm/omapdrm/
5573 F:      Documentation/devicetree/bindings/display/ti/
5574
5575 DRM DRIVERS FOR V3D
5576 M:      Eric Anholt <eric@anholt.net>
5577 S:      Supported
5578 F:      drivers/gpu/drm/v3d/
5579 F:      include/uapi/drm/v3d_drm.h
5580 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5581 T:      git git://anongit.freedesktop.org/drm/drm-misc
5582
5583 DRM DRIVERS FOR VC4
5584 M:      Eric Anholt <eric@anholt.net>
5585 T:      git git://github.com/anholt/linux
5586 S:      Supported
5587 F:      drivers/gpu/drm/vc4/
5588 F:      include/uapi/drm/vc4_drm.h
5589 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5590 T:      git git://anongit.freedesktop.org/drm/drm-misc
5591
5592 DRM DRIVERS FOR VIVANTE GPU IP
5593 M:      Lucas Stach <l.stach@pengutronix.de>
5594 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5595 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5596 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5597 L:      dri-devel@lists.freedesktop.org
5598 S:      Maintained
5599 F:      drivers/gpu/drm/etnaviv/
5600 F:      include/uapi/drm/etnaviv_drm.h
5601 F:      Documentation/devicetree/bindings/display/etnaviv/
5602
5603 DRM DRIVERS FOR ZTE ZX
5604 M:      Shawn Guo <shawnguo@kernel.org>
5605 L:      dri-devel@lists.freedesktop.org
5606 S:      Maintained
5607 F:      drivers/gpu/drm/zte/
5608 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5609 T:      git git://anongit.freedesktop.org/drm/drm-misc
5610
5611 DRM PANEL DRIVERS
5612 M:      Thierry Reding <thierry.reding@gmail.com>
5613 R:      Sam Ravnborg <sam@ravnborg.org>
5614 L:      dri-devel@lists.freedesktop.org
5615 T:      git git://anongit.freedesktop.org/drm/drm-misc
5616 S:      Maintained
5617 F:      drivers/gpu/drm/drm_panel.c
5618 F:      drivers/gpu/drm/panel/
5619 F:      include/drm/drm_panel.h
5620 F:      Documentation/devicetree/bindings/display/panel/
5621
5622 DRM DRIVERS FOR XEN
5623 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5624 T:      git git://anongit.freedesktop.org/drm/drm-misc
5625 L:      dri-devel@lists.freedesktop.org
5626 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5627 S:      Supported
5628 F:      drivers/gpu/drm/xen/
5629 F:      Documentation/gpu/xen-front.rst
5630
5631 DRM TTM SUBSYSTEM
5632 M:      Christian Koenig <christian.koenig@amd.com>
5633 M:      Huang Rui <ray.huang@amd.com>
5634 T:      git git://people.freedesktop.org/~agd5f/linux
5635 S:      Maintained
5636 L:      dri-devel@lists.freedesktop.org
5637 F:      include/drm/ttm/
5638 F:      drivers/gpu/drm/ttm/
5639
5640 DSBR100 USB FM RADIO DRIVER
5641 M:      Alexey Klimov <klimov.linux@gmail.com>
5642 L:      linux-media@vger.kernel.org
5643 T:      git git://linuxtv.org/media_tree.git
5644 S:      Maintained
5645 F:      drivers/media/radio/dsbr100.c
5646
5647 DT3155 MEDIA DRIVER
5648 M:      Hans Verkuil <hverkuil@xs4all.nl>
5649 L:      linux-media@vger.kernel.org
5650 T:      git git://linuxtv.org/media_tree.git
5651 W:      https://linuxtv.org
5652 S:      Odd Fixes
5653 F:      drivers/media/pci/dt3155/
5654
5655 DVB_USB_AF9015 MEDIA DRIVER
5656 M:      Antti Palosaari <crope@iki.fi>
5657 L:      linux-media@vger.kernel.org
5658 W:      https://linuxtv.org
5659 W:      http://palosaari.fi/linux/
5660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5661 T:      git git://linuxtv.org/anttip/media_tree.git
5662 S:      Maintained
5663 F:      drivers/media/usb/dvb-usb-v2/af9015*
5664
5665 DVB_USB_AF9035 MEDIA DRIVER
5666 M:      Antti Palosaari <crope@iki.fi>
5667 L:      linux-media@vger.kernel.org
5668 W:      https://linuxtv.org
5669 W:      http://palosaari.fi/linux/
5670 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5671 T:      git git://linuxtv.org/anttip/media_tree.git
5672 S:      Maintained
5673 F:      drivers/media/usb/dvb-usb-v2/af9035*
5674
5675 DVB_USB_ANYSEE MEDIA DRIVER
5676 M:      Antti Palosaari <crope@iki.fi>
5677 L:      linux-media@vger.kernel.org
5678 W:      https://linuxtv.org
5679 W:      http://palosaari.fi/linux/
5680 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5681 T:      git git://linuxtv.org/anttip/media_tree.git
5682 S:      Maintained
5683 F:      drivers/media/usb/dvb-usb-v2/anysee*
5684
5685 DVB_USB_AU6610 MEDIA DRIVER
5686 M:      Antti Palosaari <crope@iki.fi>
5687 L:      linux-media@vger.kernel.org
5688 W:      https://linuxtv.org
5689 W:      http://palosaari.fi/linux/
5690 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5691 T:      git git://linuxtv.org/anttip/media_tree.git
5692 S:      Maintained
5693 F:      drivers/media/usb/dvb-usb-v2/au6610*
5694
5695 DVB_USB_CE6230 MEDIA DRIVER
5696 M:      Antti Palosaari <crope@iki.fi>
5697 L:      linux-media@vger.kernel.org
5698 W:      https://linuxtv.org
5699 W:      http://palosaari.fi/linux/
5700 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5701 T:      git git://linuxtv.org/anttip/media_tree.git
5702 S:      Maintained
5703 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5704
5705 DVB_USB_CXUSB MEDIA DRIVER
5706 M:      Michael Krufky <mkrufky@linuxtv.org>
5707 L:      linux-media@vger.kernel.org
5708 W:      https://linuxtv.org
5709 W:      http://github.com/mkrufky
5710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5711 T:      git git://linuxtv.org/media_tree.git
5712 S:      Maintained
5713 F:      drivers/media/usb/dvb-usb/cxusb*
5714
5715 DVB_USB_EC168 MEDIA DRIVER
5716 M:      Antti Palosaari <crope@iki.fi>
5717 L:      linux-media@vger.kernel.org
5718 W:      https://linuxtv.org
5719 W:      http://palosaari.fi/linux/
5720 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5721 T:      git git://linuxtv.org/anttip/media_tree.git
5722 S:      Maintained
5723 F:      drivers/media/usb/dvb-usb-v2/ec168*
5724
5725 DVB_USB_GL861 MEDIA DRIVER
5726 M:      Antti Palosaari <crope@iki.fi>
5727 L:      linux-media@vger.kernel.org
5728 W:      https://linuxtv.org
5729 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5730 T:      git git://linuxtv.org/anttip/media_tree.git
5731 S:      Maintained
5732 F:      drivers/media/usb/dvb-usb-v2/gl861*
5733
5734 DVB_USB_MXL111SF MEDIA DRIVER
5735 M:      Michael Krufky <mkrufky@linuxtv.org>
5736 L:      linux-media@vger.kernel.org
5737 W:      https://linuxtv.org
5738 W:      http://github.com/mkrufky
5739 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5740 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5741 S:      Maintained
5742 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5743
5744 DVB_USB_RTL28XXU MEDIA DRIVER
5745 M:      Antti Palosaari <crope@iki.fi>
5746 L:      linux-media@vger.kernel.org
5747 W:      https://linuxtv.org
5748 W:      http://palosaari.fi/linux/
5749 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5750 T:      git git://linuxtv.org/anttip/media_tree.git
5751 S:      Maintained
5752 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5753
5754 DVB_USB_V2 MEDIA DRIVER
5755 M:      Antti Palosaari <crope@iki.fi>
5756 L:      linux-media@vger.kernel.org
5757 W:      https://linuxtv.org
5758 W:      http://palosaari.fi/linux/
5759 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5760 T:      git git://linuxtv.org/anttip/media_tree.git
5761 S:      Maintained
5762 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5763 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5764
5765 DYNAMIC DEBUG
5766 M:      Jason Baron <jbaron@akamai.com>
5767 S:      Maintained
5768 F:      lib/dynamic_debug.c
5769 F:      include/linux/dynamic_debug.h
5770
5771 DYNAMIC INTERRUPT MODERATION
5772 M:      Tal Gilboa <talgi@mellanox.com>
5773 S:      Maintained
5774 F:      include/linux/dim.h
5775 F:      lib/dim/
5776
5777 DZ DECSTATION DZ11 SERIAL DRIVER
5778 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
5779 S:      Maintained
5780 F:      drivers/tty/serial/dz.*
5781
5782 E3X0 POWER BUTTON DRIVER
5783 M:      Moritz Fischer <moritz.fischer@ettus.com>
5784 L:      usrp-users@lists.ettus.com
5785 W:      http://www.ettus.com
5786 S:      Supported
5787 F:      drivers/input/misc/e3x0-button.c
5788 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5789
5790 E4000 MEDIA DRIVER
5791 M:      Antti Palosaari <crope@iki.fi>
5792 L:      linux-media@vger.kernel.org
5793 W:      https://linuxtv.org
5794 W:      http://palosaari.fi/linux/
5795 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5796 T:      git git://linuxtv.org/anttip/media_tree.git
5797 S:      Maintained
5798 F:      drivers/media/tuners/e4000*
5799
5800 EARTH_PT1 MEDIA DRIVER
5801 M:      Akihiro Tsukada <tskd08@gmail.com>
5802 L:      linux-media@vger.kernel.org
5803 S:      Odd Fixes
5804 F:      drivers/media/pci/pt1/
5805
5806 EARTH_PT3 MEDIA DRIVER
5807 M:      Akihiro Tsukada <tskd08@gmail.com>
5808 L:      linux-media@vger.kernel.org
5809 S:      Odd Fixes
5810 F:      drivers/media/pci/pt3/
5811
5812 EC100 MEDIA DRIVER
5813 M:      Antti Palosaari <crope@iki.fi>
5814 L:      linux-media@vger.kernel.org
5815 W:      https://linuxtv.org
5816 W:      http://palosaari.fi/linux/
5817 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5818 T:      git git://linuxtv.org/anttip/media_tree.git
5819 S:      Maintained
5820 F:      drivers/media/dvb-frontends/ec100*
5821
5822 ECRYPT FILE SYSTEM
5823 M:      Tyler Hicks <tyhicks@canonical.com>
5824 L:      ecryptfs@vger.kernel.org
5825 W:      http://ecryptfs.org
5826 W:      https://launchpad.net/ecryptfs
5827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5828 S:      Supported
5829 F:      Documentation/filesystems/ecryptfs.txt
5830 F:      fs/ecryptfs/
5831
5832 EDAC-AMD64
5833 M:      Borislav Petkov <bp@alien8.de>
5834 L:      linux-edac@vger.kernel.org
5835 S:      Maintained
5836 F:      drivers/edac/amd64_edac*
5837
5838 EDAC-ARMADA
5839 M:      Jan Luebbe <jlu@pengutronix.de>
5840 L:      linux-edac@vger.kernel.org
5841 S:      Maintained
5842 F:      drivers/edac/armada_xp_*
5843
5844 EDAC-AST2500
5845 M:      Stefan Schaeckeler <sschaeck@cisco.com>
5846 S:      Supported
5847 F:      drivers/edac/aspeed_edac.c
5848 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
5849
5850 EDAC-BLUEFIELD
5851 M:      Shravan Kumar Ramani <sramani@mellanox.com>
5852 S:      Supported
5853 F:      drivers/edac/bluefield_edac.c
5854
5855 EDAC-CALXEDA
5856 M:      Robert Richter <rric@kernel.org>
5857 L:      linux-edac@vger.kernel.org
5858 S:      Maintained
5859 F:      drivers/edac/highbank*
5860
5861 EDAC-CAVIUM OCTEON
5862 M:      Ralf Baechle <ralf@linux-mips.org>
5863 M:      David Daney <david.daney@cavium.com>
5864 L:      linux-edac@vger.kernel.org
5865 L:      linux-mips@vger.kernel.org
5866 S:      Supported
5867 F:      drivers/edac/octeon_edac*
5868
5869 EDAC-CAVIUM THUNDERX
5870 M:      David Daney <david.daney@cavium.com>
5871 M:      Jan Glauber <jglauber@cavium.com>
5872 L:      linux-edac@vger.kernel.org
5873 S:      Supported
5874 F:      drivers/edac/thunderx_edac*
5875
5876 EDAC-CORE
5877 M:      Borislav Petkov <bp@alien8.de>
5878 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5879 M:      Tony Luck <tony.luck@intel.com>
5880 R:      James Morse <james.morse@arm.com>
5881 R:      Robert Richter <rrichter@marvell.com>
5882 L:      linux-edac@vger.kernel.org
5883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
5884 S:      Supported
5885 F:      Documentation/admin-guide/ras.rst
5886 F:      Documentation/driver-api/edac.rst
5887 F:      drivers/edac/
5888 F:      include/linux/edac.h
5889
5890 EDAC-E752X
5891 M:      Mark Gross <mark.gross@intel.com>
5892 L:      linux-edac@vger.kernel.org
5893 S:      Maintained
5894 F:      drivers/edac/e752x_edac.c
5895
5896 EDAC-E7XXX
5897 L:      linux-edac@vger.kernel.org
5898 S:      Maintained
5899 F:      drivers/edac/e7xxx_edac.c
5900
5901 EDAC-FSL_DDR
5902 M:      York Sun <york.sun@nxp.com>
5903 L:      linux-edac@vger.kernel.org
5904 S:      Maintained
5905 F:      drivers/edac/fsl_ddr_edac.*
5906
5907 EDAC-GHES
5908 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5909 L:      linux-edac@vger.kernel.org
5910 S:      Maintained
5911 F:      drivers/edac/ghes_edac.c
5912
5913 EDAC-I10NM
5914 M:      Tony Luck <tony.luck@intel.com>
5915 L:      linux-edac@vger.kernel.org
5916 S:      Maintained
5917 F:      drivers/edac/i10nm_base.c
5918
5919 EDAC-I3000
5920 L:      linux-edac@vger.kernel.org
5921 S:      Orphan
5922 F:      drivers/edac/i3000_edac.c
5923
5924 EDAC-I5000
5925 L:      linux-edac@vger.kernel.org
5926 S:      Maintained
5927 F:      drivers/edac/i5000_edac.c
5928
5929 EDAC-I5400
5930 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5931 L:      linux-edac@vger.kernel.org
5932 S:      Maintained
5933 F:      drivers/edac/i5400_edac.c
5934
5935 EDAC-I7300
5936 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5937 L:      linux-edac@vger.kernel.org
5938 S:      Maintained
5939 F:      drivers/edac/i7300_edac.c
5940
5941 EDAC-I7CORE
5942 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5943 L:      linux-edac@vger.kernel.org
5944 S:      Maintained
5945 F:      drivers/edac/i7core_edac.c
5946
5947 EDAC-I82443BXGX
5948 M:      Tim Small <tim@buttersideup.com>
5949 L:      linux-edac@vger.kernel.org
5950 S:      Maintained
5951 F:      drivers/edac/i82443bxgx_edac.c
5952
5953 EDAC-I82975X
5954 M:      "Arvind R." <arvino55@gmail.com>
5955 L:      linux-edac@vger.kernel.org
5956 S:      Maintained
5957 F:      drivers/edac/i82975x_edac.c
5958
5959 EDAC-IE31200
5960 M:      Jason Baron <jbaron@akamai.com>
5961 L:      linux-edac@vger.kernel.org
5962 S:      Maintained
5963 F:      drivers/edac/ie31200_edac.c
5964
5965 EDAC-MPC85XX
5966 M:      Johannes Thumshirn <morbidrsa@gmail.com>
5967 L:      linux-edac@vger.kernel.org
5968 S:      Maintained
5969 F:      drivers/edac/mpc85xx_edac.[ch]
5970
5971 EDAC-PASEMI
5972 M:      Egor Martovetsky <egor@pasemi.com>
5973 L:      linux-edac@vger.kernel.org
5974 S:      Maintained
5975 F:      drivers/edac/pasemi_edac.c
5976
5977 EDAC-PND2
5978 M:      Tony Luck <tony.luck@intel.com>
5979 L:      linux-edac@vger.kernel.org
5980 S:      Maintained
5981 F:      drivers/edac/pnd2_edac.[ch]
5982
5983 EDAC-R82600
5984 M:      Tim Small <tim@buttersideup.com>
5985 L:      linux-edac@vger.kernel.org
5986 S:      Maintained
5987 F:      drivers/edac/r82600_edac.c
5988
5989 EDAC-SBRIDGE
5990 M:      Tony Luck <tony.luck@intel.com>
5991 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
5992 L:      linux-edac@vger.kernel.org
5993 S:      Maintained
5994 F:      drivers/edac/sb_edac.c
5995
5996 EDAC-SIFIVE
5997 M:      Yash Shah <yash.shah@sifive.com>
5998 L:      linux-edac@vger.kernel.org
5999 S:      Supported
6000 F:      drivers/edac/sifive_edac.c
6001
6002 EDAC-SKYLAKE
6003 M:      Tony Luck <tony.luck@intel.com>
6004 L:      linux-edac@vger.kernel.org
6005 S:      Maintained
6006 F:      drivers/edac/skx_*.c
6007
6008 EDAC-TI
6009 M:      Tero Kristo <t-kristo@ti.com>
6010 L:      linux-edac@vger.kernel.org
6011 S:      Maintained
6012 F:      drivers/edac/ti_edac.c
6013
6014 EDAC-QCOM
6015 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6016 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6017 L:      linux-arm-msm@vger.kernel.org
6018 L:      linux-edac@vger.kernel.org
6019 S:      Maintained
6020 F:      drivers/edac/qcom_edac.c
6021
6022 EDIROL UA-101/UA-1000 DRIVER
6023 M:      Clemens Ladisch <clemens@ladisch.de>
6024 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6026 S:      Maintained
6027 F:      sound/usb/misc/ua101.c
6028
6029 EFI TEST DRIVER
6030 L:      linux-efi@vger.kernel.org
6031 M:      Ivan Hu <ivan.hu@canonical.com>
6032 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
6033 S:      Maintained
6034 F:      drivers/firmware/efi/test/
6035
6036 EFI VARIABLE FILESYSTEM
6037 M:      Matthew Garrett <matthew.garrett@nebula.com>
6038 M:      Jeremy Kerr <jk@ozlabs.org>
6039 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
6040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6041 L:      linux-efi@vger.kernel.org
6042 S:      Maintained
6043 F:      fs/efivarfs/
6044
6045 EFIFB FRAMEBUFFER DRIVER
6046 L:      linux-fbdev@vger.kernel.org
6047 M:      Peter Jones <pjones@redhat.com>
6048 S:      Maintained
6049 F:      drivers/video/fbdev/efifb.c
6050
6051 EFS FILESYSTEM
6052 W:      http://aeschi.ch.eu.org/efs/
6053 S:      Orphan
6054 F:      fs/efs/
6055
6056 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6057 M:      Douglas Miller <dougmill@linux.ibm.com>
6058 L:      netdev@vger.kernel.org
6059 S:      Maintained
6060 F:      drivers/net/ethernet/ibm/ehea/
6061
6062 EM28XX VIDEO4LINUX DRIVER
6063 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6064 L:      linux-media@vger.kernel.org
6065 W:      https://linuxtv.org
6066 T:      git git://linuxtv.org/media_tree.git
6067 S:      Maintained
6068 F:      drivers/media/usb/em28xx/
6069 F:      Documentation/media/v4l-drivers/em28xx*
6070
6071 EMBEDDED LINUX
6072 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6073 M:      Matt Mackall <mpm@selenic.com>
6074 M:      David Woodhouse <dwmw2@infradead.org>
6075 L:      linux-embedded@vger.kernel.org
6076 S:      Maintained
6077
6078 Emulex 10Gbps iSCSI - OneConnect DRIVER
6079 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6080 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6081 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6082 L:      linux-scsi@vger.kernel.org
6083 W:      http://www.broadcom.com
6084 S:      Supported
6085 F:      drivers/scsi/be2iscsi/
6086
6087 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6088 M:      Sathya Perla <sathya.perla@broadcom.com>
6089 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6090 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6091 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6092 L:      netdev@vger.kernel.org
6093 W:      http://www.emulex.com
6094 S:      Supported
6095 F:      drivers/net/ethernet/emulex/benet/
6096
6097 EMULEX ONECONNECT ROCE DRIVER
6098 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6099 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6100 L:      linux-rdma@vger.kernel.org
6101 W:      http://www.broadcom.com
6102 S:      Odd Fixes
6103 F:      drivers/infiniband/hw/ocrdma/
6104 F:      include/uapi/rdma/ocrdma-abi.h
6105
6106 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6107 M:      James Smart <james.smart@broadcom.com>
6108 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6109 L:      linux-scsi@vger.kernel.org
6110 W:      http://www.broadcom.com
6111 S:      Supported
6112 F:      drivers/scsi/lpfc/
6113
6114 ENE CB710 FLASH CARD READER DRIVER
6115 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6116 S:      Maintained
6117 F:      drivers/misc/cb710/
6118 F:      drivers/mmc/host/cb710-mmc.*
6119 F:      include/linux/cb710.h
6120
6121 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6122 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6123 S:      Maintained
6124 F:      drivers/media/rc/ene_ir.*
6125
6126 EPSON S1D13XXX FRAMEBUFFER DRIVER
6127 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6128 S:      Maintained
6129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6130 F:      drivers/video/fbdev/s1d13xxxfb.c
6131 F:      include/video/s1d13xxxfb.h
6132
6133 EROFS FILE SYSTEM
6134 M:      Gao Xiang <gaoxiang25@huawei.com>
6135 M:      Chao Yu <yuchao0@huawei.com>
6136 L:      linux-erofs@lists.ozlabs.org
6137 S:      Maintained
6138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6139 F:      Documentation/filesystems/erofs.txt
6140 F:      fs/erofs/
6141 F:      include/trace/events/erofs.h
6142
6143 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6144 M:      Jeff Layton <jlayton@kernel.org>
6145 S:      Maintained
6146 F:      lib/errseq.c
6147 F:      include/linux/errseq.h
6148
6149 ET131X NETWORK DRIVER
6150 M:      Mark Einon <mark.einon@gmail.com>
6151 S:      Odd Fixes
6152 F:      drivers/net/ethernet/agere/
6153
6154 ETHERNET BRIDGE
6155 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6156 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6157 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6158 L:      netdev@vger.kernel.org
6159 W:      http://www.linuxfoundation.org/en/Net:Bridge
6160 S:      Maintained
6161 F:      include/linux/netfilter_bridge/
6162 F:      net/bridge/
6163
6164 ETHERNET PHY LIBRARY
6165 M:      Andrew Lunn <andrew@lunn.ch>
6166 M:      Florian Fainelli <f.fainelli@gmail.com>
6167 M:      Heiner Kallweit <hkallweit1@gmail.com>
6168 L:      netdev@vger.kernel.org
6169 S:      Maintained
6170 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6171 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6172 F:      Documentation/devicetree/bindings/net/mdio*
6173 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6174 F:      Documentation/networking/phy.rst
6175 F:      drivers/net/phy/
6176 F:      drivers/of/of_mdio.c
6177 F:      drivers/of/of_net.c
6178 F:      include/dt-bindings/net/qca-ar803x.h
6179 F:      include/linux/*mdio*.h
6180 F:      include/linux/of_net.h
6181 F:      include/linux/phy.h
6182 F:      include/linux/phy_fixed.h
6183 F:      include/linux/platform_data/mdio-bcm-unimac.h
6184 F:      include/linux/platform_data/mdio-gpio.h
6185 F:      include/trace/events/mdio.h
6186 F:      include/uapi/linux/mdio.h
6187 F:      include/uapi/linux/mii.h
6188
6189 EXFAT FILE SYSTEM
6190 M:      Valdis Kletnieks <valdis.kletnieks@vt.edu>
6191 S:      Maintained
6192 F:      drivers/staging/exfat/
6193
6194 EXT2 FILE SYSTEM
6195 M:      Jan Kara <jack@suse.com>
6196 L:      linux-ext4@vger.kernel.org
6197 S:      Maintained
6198 F:      Documentation/filesystems/ext2.txt
6199 F:      fs/ext2/
6200 F:      include/linux/ext2*
6201
6202 EXT4 FILE SYSTEM
6203 M:      "Theodore Ts'o" <tytso@mit.edu>
6204 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6205 L:      linux-ext4@vger.kernel.org
6206 W:      http://ext4.wiki.kernel.org
6207 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6209 S:      Maintained
6210 F:      Documentation/filesystems/ext4/
6211 F:      fs/ext4/
6212
6213 Extended Verification Module (EVM)
6214 M:      Mimi Zohar <zohar@linux.ibm.com>
6215 L:      linux-integrity@vger.kernel.org
6216 S:      Supported
6217 F:      security/integrity/evm/
6218
6219 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6220 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
6221 L:      linux-efi@vger.kernel.org
6222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6223 S:      Maintained
6224 F:      Documentation/admin-guide/efi-stub.rst
6225 F:      arch/*/kernel/efi.c
6226 F:      arch/x86/boot/compressed/eboot.[ch]
6227 F:      arch/*/include/asm/efi.h
6228 F:      arch/x86/platform/efi/
6229 F:      drivers/firmware/efi/
6230 F:      include/linux/efi*.h
6231 F:      arch/arm/boot/compressed/efi-header.S
6232 F:      arch/arm64/kernel/efi-entry.S
6233
6234 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6235 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6236 M:      Chanwoo Choi <cw00.choi@samsung.com>
6237 L:      linux-kernel@vger.kernel.org
6238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6239 S:      Maintained
6240 F:      drivers/extcon/
6241 F:      include/linux/extcon/
6242 F:      include/linux/extcon.h
6243 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6244 F:      Documentation/devicetree/bindings/extcon/
6245
6246 EXYNOS DP DRIVER
6247 M:      Jingoo Han <jingoohan1@gmail.com>
6248 L:      dri-devel@lists.freedesktop.org
6249 S:      Maintained
6250 F:      drivers/gpu/drm/exynos/exynos_dp*
6251
6252 EXYNOS SYSMMU (IOMMU) driver
6253 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6254 L:      iommu@lists.linux-foundation.org
6255 S:      Maintained
6256 F:      drivers/iommu/exynos-iommu.c
6257
6258 EZchip NPS platform support
6259 M:      Vineet Gupta <vgupta@synopsys.com>
6260 M:      Ofer Levi <oferle@mellanox.com>
6261 S:      Supported
6262 F:      arch/arc/plat-eznps
6263 F:      arch/arc/boot/dts/eznps.dts
6264
6265 F2FS FILE SYSTEM
6266 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6267 M:      Chao Yu <yuchao0@huawei.com>
6268 L:      linux-f2fs-devel@lists.sourceforge.net
6269 W:      https://f2fs.wiki.kernel.org/
6270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6271 S:      Maintained
6272 F:      Documentation/filesystems/f2fs.txt
6273 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6274 F:      fs/f2fs/
6275 F:      include/linux/f2fs_fs.h
6276 F:      include/trace/events/f2fs.h
6277
6278 F71805F HARDWARE MONITORING DRIVER
6279 M:      Jean Delvare <jdelvare@suse.com>
6280 L:      linux-hwmon@vger.kernel.org
6281 S:      Maintained
6282 F:      Documentation/hwmon/f71805f.rst
6283 F:      drivers/hwmon/f71805f.c
6284
6285 FADDR2LINE
6286 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6287 S:      Maintained
6288 F:      scripts/faddr2line
6289
6290 FAILOVER MODULE
6291 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6292 L:      netdev@vger.kernel.org
6293 S:      Supported
6294 F:      net/core/failover.c
6295 F:      include/net/failover.h
6296 F:      Documentation/networking/failover.rst
6297
6298 FANOTIFY
6299 M:      Jan Kara <jack@suse.cz>
6300 R:      Amir Goldstein <amir73il@gmail.com>
6301 L:      linux-fsdevel@vger.kernel.org
6302 S:      Maintained
6303 F:      fs/notify/fanotify/
6304 F:      include/linux/fanotify.h
6305 F:      include/uapi/linux/fanotify.h
6306
6307 FARSYNC SYNCHRONOUS DRIVER
6308 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6309 W:      http://www.farsite.co.uk/
6310 S:      Supported
6311 F:      drivers/net/wan/farsync.*
6312
6313 FAULT INJECTION SUPPORT
6314 M:      Akinobu Mita <akinobu.mita@gmail.com>
6315 S:      Supported
6316 F:      Documentation/fault-injection/
6317 F:      lib/fault-inject.c
6318
6319 FBTFT Framebuffer drivers
6320 S:      Orphan
6321 L:      dri-devel@lists.freedesktop.org
6322 L:      linux-fbdev@vger.kernel.org
6323 F:      drivers/staging/fbtft/
6324
6325 FC0011 TUNER DRIVER
6326 M:      Michael Buesch <m@bues.ch>
6327 L:      linux-media@vger.kernel.org
6328 S:      Maintained
6329 F:      drivers/media/tuners/fc0011.h
6330 F:      drivers/media/tuners/fc0011.c
6331
6332 FC2580 MEDIA DRIVER
6333 M:      Antti Palosaari <crope@iki.fi>
6334 L:      linux-media@vger.kernel.org
6335 W:      https://linuxtv.org
6336 W:      http://palosaari.fi/linux/
6337 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6338 T:      git git://linuxtv.org/anttip/media_tree.git
6339 S:      Maintained
6340 F:      drivers/media/tuners/fc2580*
6341
6342 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6343 M:      Hannes Reinecke <hare@suse.de>
6344 L:      linux-scsi@vger.kernel.org
6345 W:      www.Open-FCoE.org
6346 S:      Supported
6347 F:      drivers/scsi/libfc/
6348 F:      drivers/scsi/fcoe/
6349 F:      include/scsi/fc/
6350 F:      include/scsi/libfc.h
6351 F:      include/scsi/libfcoe.h
6352 F:      include/uapi/scsi/fc/
6353
6354 FILE LOCKING (flock() and fcntl()/lockf())
6355 M:      Jeff Layton <jlayton@kernel.org>
6356 M:      "J. Bruce Fields" <bfields@fieldses.org>
6357 L:      linux-fsdevel@vger.kernel.org
6358 S:      Maintained
6359 F:      include/linux/fcntl.h
6360 F:      include/uapi/linux/fcntl.h
6361 F:      fs/fcntl.c
6362 F:      fs/locks.c
6363
6364 FILESYSTEMS (VFS and infrastructure)
6365 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6366 L:      linux-fsdevel@vger.kernel.org
6367 S:      Maintained
6368 F:      fs/*
6369 F:      include/linux/fs.h
6370 F:      include/linux/fs_types.h
6371 F:      include/uapi/linux/fs.h
6372
6373 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6374 M:      Riku Voipio <riku.voipio@iki.fi>
6375 L:      linux-hwmon@vger.kernel.org
6376 S:      Maintained
6377 F:      drivers/hwmon/f75375s.c
6378 F:      include/linux/f75375s.h
6379
6380 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6381 M:      Clemens Ladisch <clemens@ladisch.de>
6382 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6383 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6385 S:      Maintained
6386 F:      sound/firewire/
6387 F:      include/uapi/sound/firewire.h
6388
6389 FIREWIRE MEDIA DRIVERS (firedtv)
6390 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6391 L:      linux-media@vger.kernel.org
6392 L:      linux1394-devel@lists.sourceforge.net
6393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6394 S:      Maintained
6395 F:      drivers/media/firewire/
6396
6397 FIREWIRE SBP-2 TARGET
6398 M:      Chris Boot <bootc@bootc.net>
6399 L:      linux-scsi@vger.kernel.org
6400 L:      target-devel@vger.kernel.org
6401 L:      linux1394-devel@lists.sourceforge.net
6402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6403 S:      Maintained
6404 F:      drivers/target/sbp/
6405
6406 FIREWIRE SUBSYSTEM
6407 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6408 L:      linux1394-devel@lists.sourceforge.net
6409 W:      http://ieee1394.wiki.kernel.org/
6410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6411 S:      Maintained
6412 F:      drivers/firewire/
6413 F:      include/linux/firewire.h
6414 F:      include/uapi/linux/firewire*.h
6415 F:      tools/firewire/
6416
6417 FIRMWARE LOADER (request_firmware)
6418 M:      Luis Chamberlain <mcgrof@kernel.org>
6419 L:      linux-kernel@vger.kernel.org
6420 S:      Maintained
6421 F:      Documentation/firmware_class/
6422 F:      drivers/base/firmware_loader/
6423 F:      include/linux/firmware.h
6424
6425 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6426 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6427 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6428 S:      Maintained
6429 F:      drivers/block/rsxx/
6430
6431 FLEXTIMER FTM-QUADDEC DRIVER
6432 M:      Patrick Havelange <patrick.havelange@essensium.com>
6433 L:      linux-iio@vger.kernel.org
6434 S:      Maintained
6435 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6436 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6437 F:      drivers/counter/ftm-quaddec.c
6438
6439 FLOPPY DRIVER
6440 M:      Denis Efremov <efremov@linux.com>
6441 S:      Odd Fixes
6442 L:      linux-block@vger.kernel.org
6443 F:      drivers/block/floppy.c
6444
6445 FPGA MANAGER FRAMEWORK
6446 M:      Moritz Fischer <mdf@kernel.org>
6447 L:      linux-fpga@vger.kernel.org
6448 S:      Maintained
6449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6450 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6451 F:      Documentation/fpga/
6452 F:      Documentation/driver-api/fpga/
6453 F:      Documentation/devicetree/bindings/fpga/
6454 F:      drivers/fpga/
6455 F:      include/linux/fpga/
6456 W:      http://www.rocketboards.org
6457
6458 FPGA DFL DRIVERS
6459 M:      Wu Hao <hao.wu@intel.com>
6460 L:      linux-fpga@vger.kernel.org
6461 S:      Maintained
6462 F:      Documentation/fpga/dfl.rst
6463 F:      include/uapi/linux/fpga-dfl.h
6464 F:      drivers/fpga/dfl*
6465
6466 FPU EMULATOR
6467 M:      Bill Metzenthen <billm@melbpc.org.au>
6468 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6469 S:      Maintained
6470 F:      arch/x86/math-emu/
6471
6472 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6473 L:      netdev@vger.kernel.org
6474 S:      Orphan
6475 F:      drivers/net/wan/dlci.c
6476 F:      drivers/net/wan/sdla.c
6477
6478 FRAMEBUFFER LAYER
6479 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6480 L:      dri-devel@lists.freedesktop.org
6481 L:      linux-fbdev@vger.kernel.org
6482 T:      git git://anongit.freedesktop.org/drm/drm-misc
6483 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6484 S:      Maintained
6485 F:      Documentation/fb/
6486 F:      drivers/video/
6487 F:      include/video/
6488 F:      include/linux/fb.h
6489 F:      include/uapi/video/
6490 F:      include/uapi/linux/fb.h
6491
6492 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6493 M:      Horia Geantă <horia.geanta@nxp.com>
6494 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6495 L:      linux-crypto@vger.kernel.org
6496 S:      Maintained
6497 F:      drivers/crypto/caam/
6498 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6499
6500 FREESCALE DIU FRAMEBUFFER DRIVER
6501 M:      Timur Tabi <timur@kernel.org>
6502 L:      linux-fbdev@vger.kernel.org
6503 S:      Maintained
6504 F:      drivers/video/fbdev/fsl-diu-fb.*
6505
6506 FREESCALE DMA DRIVER
6507 M:      Li Yang <leoyang.li@nxp.com>
6508 M:      Zhang Wei <zw@zh-kernel.org>
6509 L:      linuxppc-dev@lists.ozlabs.org
6510 S:      Maintained
6511 F:      drivers/dma/fsldma.*
6512
6513 FREESCALE ENETC ETHERNET DRIVERS
6514 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6515 L:      netdev@vger.kernel.org
6516 S:      Maintained
6517 F:      drivers/net/ethernet/freescale/enetc/
6518
6519 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6520 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6521 L:      netdev@vger.kernel.org
6522 S:      Maintained
6523 F:      drivers/net/ethernet/freescale/gianfar*
6524 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6525
6526 FREESCALE GPMI NAND DRIVER
6527 M:      Han Xu <han.xu@nxp.com>
6528 L:      linux-mtd@lists.infradead.org
6529 S:      Maintained
6530 F:      drivers/mtd/nand/raw/gpmi-nand/*
6531
6532 FREESCALE I2C CPM DRIVER
6533 M:      Jochen Friedrich <jochen@scram.de>
6534 L:      linuxppc-dev@lists.ozlabs.org
6535 L:      linux-i2c@vger.kernel.org
6536 S:      Maintained
6537 F:      drivers/i2c/busses/i2c-cpm.c
6538
6539 FREESCALE IMX DDR PMU DRIVER
6540 M:      Frank Li <Frank.li@nxp.com>
6541 L:      linux-arm-kernel@lists.infradead.org
6542 S:      Maintained
6543 F:      drivers/perf/fsl_imx8_ddr_perf.c
6544 F:      Documentation/admin-guide/perf/imx-ddr.rst
6545 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6546
6547 FREESCALE IMX I2C DRIVER
6548 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6549 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6550 L:      linux-i2c@vger.kernel.org
6551 S:      Maintained
6552 F:      drivers/i2c/busses/i2c-imx.c
6553 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6554
6555 FREESCALE IMX LPI2C DRIVER
6556 M:      Dong Aisheng <aisheng.dong@nxp.com>
6557 L:      linux-i2c@vger.kernel.org
6558 L:      linux-imx@nxp.com
6559 S:      Maintained
6560 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6561 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6562
6563 FREESCALE IMX / MXC FEC DRIVER
6564 M:      Fugang Duan <fugang.duan@nxp.com>
6565 L:      netdev@vger.kernel.org
6566 S:      Maintained
6567 F:      drivers/net/ethernet/freescale/fec_main.c
6568 F:      drivers/net/ethernet/freescale/fec_ptp.c
6569 F:      drivers/net/ethernet/freescale/fec.h
6570 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6571
6572 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6573 M:      Sascha Hauer <s.hauer@pengutronix.de>
6574 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6575 L:      linux-fbdev@vger.kernel.org
6576 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6577 S:      Maintained
6578 F:      include/linux/platform_data/video-imxfb.h
6579 F:      drivers/video/fbdev/imxfb.c
6580
6581 FREESCALE QORIQ DPAA ETHERNET DRIVER
6582 M:      Madalin Bucur <madalin.bucur@nxp.com>
6583 L:      netdev@vger.kernel.org
6584 S:      Maintained
6585 F:      drivers/net/ethernet/freescale/dpaa
6586
6587 FREESCALE QORIQ DPAA FMAN DRIVER
6588 M:      Madalin Bucur <madalin.bucur@nxp.com>
6589 L:      netdev@vger.kernel.org
6590 S:      Maintained
6591 F:      drivers/net/ethernet/freescale/fman
6592 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6593
6594 FREESCALE QORIQ PTP CLOCK DRIVER
6595 M:      Yangbo Lu <yangbo.lu@nxp.com>
6596 L:      netdev@vger.kernel.org
6597 S:      Maintained
6598 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6599 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6600 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6601 F:      drivers/ptp/ptp_qoriq.c
6602 F:      drivers/ptp/ptp_qoriq_debugfs.c
6603 F:      include/linux/fsl/ptp_qoriq.h
6604 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6605
6606 FREESCALE QUAD SPI DRIVER
6607 M:      Han Xu <han.xu@nxp.com>
6608 L:      linux-spi@vger.kernel.org
6609 S:      Maintained
6610 F:      drivers/spi/spi-fsl-qspi.c
6611
6612 FREESCALE QUICC ENGINE LIBRARY
6613 M:      Qiang Zhao <qiang.zhao@nxp.com>
6614 L:      linuxppc-dev@lists.ozlabs.org
6615 S:      Maintained
6616 F:      drivers/soc/fsl/qe/
6617 F:      include/soc/fsl/*qe*.h
6618 F:      include/soc/fsl/*ucc*.h
6619
6620 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6621 M:      Li Yang <leoyang.li@nxp.com>
6622 L:      netdev@vger.kernel.org
6623 L:      linuxppc-dev@lists.ozlabs.org
6624 S:      Maintained
6625 F:      drivers/net/ethernet/freescale/ucc_geth*
6626
6627 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6628 M:      Zhao Qiang <qiang.zhao@nxp.com>
6629 L:      netdev@vger.kernel.org
6630 L:      linuxppc-dev@lists.ozlabs.org
6631 S:      Maintained
6632 F:      drivers/net/wan/fsl_ucc_hdlc*
6633
6634 FREESCALE QUICC ENGINE UCC UART DRIVER
6635 M:      Timur Tabi <timur@kernel.org>
6636 L:      linuxppc-dev@lists.ozlabs.org
6637 S:      Maintained
6638 F:      drivers/tty/serial/ucc_uart.c
6639
6640 FREESCALE SOC DRIVERS
6641 M:      Li Yang <leoyang.li@nxp.com>
6642 L:      linuxppc-dev@lists.ozlabs.org
6643 L:      linux-arm-kernel@lists.infradead.org
6644 S:      Maintained
6645 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6646 F:      Documentation/devicetree/bindings/soc/fsl/
6647 F:      drivers/soc/fsl/
6648 F:      include/linux/fsl/
6649
6650 FREESCALE SOC FS_ENET DRIVER
6651 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6652 L:      linuxppc-dev@lists.ozlabs.org
6653 L:      netdev@vger.kernel.org
6654 S:      Maintained
6655 F:      drivers/net/ethernet/freescale/fs_enet/
6656 F:      include/linux/fs_enet_pd.h
6657
6658 FREESCALE SOC SOUND DRIVERS
6659 M:      Timur Tabi <timur@kernel.org>
6660 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6661 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6662 R:      Fabio Estevam <festevam@gmail.com>
6663 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6664 L:      linuxppc-dev@lists.ozlabs.org
6665 S:      Maintained
6666 F:      sound/soc/fsl/fsl*
6667 F:      sound/soc/fsl/imx*
6668 F:      sound/soc/fsl/mpc8610_hpcd.c
6669
6670 FREESCALE USB PERIPHERAL DRIVERS
6671 M:      Li Yang <leoyang.li@nxp.com>
6672 L:      linux-usb@vger.kernel.org
6673 L:      linuxppc-dev@lists.ozlabs.org
6674 S:      Maintained
6675 F:      drivers/usb/gadget/udc/fsl*
6676
6677 FREEVXFS FILESYSTEM
6678 M:      Christoph Hellwig <hch@infradead.org>
6679 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6680 S:      Maintained
6681 F:      fs/freevxfs/
6682
6683 FREEZER
6684 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6685 M:      Pavel Machek <pavel@ucw.cz>
6686 L:      linux-pm@vger.kernel.org
6687 S:      Supported
6688 F:      Documentation/power/freezing-of-tasks.rst
6689 F:      include/linux/freezer.h
6690 F:      kernel/freezer.c
6691
6692 FRONTSWAP API
6693 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6694 L:      linux-kernel@vger.kernel.org
6695 S:      Maintained
6696 F:      mm/frontswap.c
6697 F:      include/linux/frontswap.h
6698
6699 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6700 M:      David Howells <dhowells@redhat.com>
6701 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6702 S:      Supported
6703 F:      Documentation/filesystems/caching/
6704 F:      fs/fscache/
6705 F:      include/linux/fscache*.h
6706
6707 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6708 M:      Theodore Y. Ts'o <tytso@mit.edu>
6709 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6710 M:      Eric Biggers <ebiggers@kernel.org>
6711 L:      linux-fscrypt@vger.kernel.org
6712 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6713 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6714 S:      Supported
6715 F:      fs/crypto/
6716 F:      include/linux/fscrypt*.h
6717 F:      include/uapi/linux/fscrypt.h
6718 F:      Documentation/filesystems/fscrypt.rst
6719
6720 FSI SUBSYSTEM
6721 M:      Jeremy Kerr <jk@ozlabs.org>
6722 M:      Joel Stanley <joel@jms.id.au>
6723 R:      Alistar Popple <alistair@popple.id.au>
6724 R:      Eddie James <eajames@linux.ibm.com>
6725 L:      linux-fsi@lists.ozlabs.org
6726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6727 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6728 S:      Supported
6729 F:      drivers/fsi/
6730 F:      include/linux/fsi*.h
6731 F:      include/trace/events/fsi*.h
6732
6733 FSI-ATTACHED I2C DRIVER
6734 M:      Eddie James <eajames@linux.ibm.com>
6735 L:      linux-i2c@vger.kernel.org
6736 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
6737 S:      Maintained
6738 F:      drivers/i2c/busses/i2c-fsi.c
6739 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6740
6741 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6742 M:      Jan Kara <jack@suse.cz>
6743 R:      Amir Goldstein <amir73il@gmail.com>
6744 L:      linux-fsdevel@vger.kernel.org
6745 S:      Maintained
6746 F:      fs/notify/
6747 F:      include/linux/fsnotify*.h
6748
6749 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
6750 M:      Eric Biggers <ebiggers@kernel.org>
6751 M:      Theodore Y. Ts'o <tytso@mit.edu>
6752 L:      linux-fscrypt@vger.kernel.org
6753 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6754 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
6755 S:      Supported
6756 F:      fs/verity/
6757 F:      include/linux/fsverity.h
6758 F:      include/uapi/linux/fsverity.h
6759 F:      Documentation/filesystems/fsverity.rst
6760
6761 FUJITSU LAPTOP EXTRAS
6762 M:      Jonathan Woithe <jwoithe@just42.net>
6763 L:      platform-driver-x86@vger.kernel.org
6764 S:      Maintained
6765 F:      drivers/platform/x86/fujitsu-laptop.c
6766
6767 FUJITSU M-5MO LS CAMERA ISP DRIVER
6768 M:      Kyungmin Park <kyungmin.park@samsung.com>
6769 M:      Heungjun Kim <riverful.kim@samsung.com>
6770 L:      linux-media@vger.kernel.org
6771 S:      Maintained
6772 F:      drivers/media/i2c/m5mols/
6773 F:      include/media/i2c/m5mols.h
6774
6775 FUJITSU TABLET EXTRAS
6776 M:      Robert Gerlach <khnz@gmx.de>
6777 L:      platform-driver-x86@vger.kernel.org
6778 S:      Maintained
6779 F:      drivers/platform/x86/fujitsu-tablet.c
6780
6781 FUSE: FILESYSTEM IN USERSPACE
6782 M:      Miklos Szeredi <miklos@szeredi.hu>
6783 L:      linux-fsdevel@vger.kernel.org
6784 W:      http://fuse.sourceforge.net/
6785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6786 S:      Maintained
6787 F:      fs/fuse/
6788 F:      include/uapi/linux/fuse.h
6789 F:      Documentation/filesystems/fuse.txt
6790
6791 FUTEX SUBSYSTEM
6792 M:      Thomas Gleixner <tglx@linutronix.de>
6793 M:      Ingo Molnar <mingo@redhat.com>
6794 R:      Peter Zijlstra <peterz@infradead.org>
6795 R:      Darren Hart <dvhart@infradead.org>
6796 L:      linux-kernel@vger.kernel.org
6797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
6798 S:      Maintained
6799 F:      kernel/futex.c
6800 F:      include/asm-generic/futex.h
6801 F:      include/linux/futex.h
6802 F:      include/uapi/linux/futex.h
6803 F:      tools/testing/selftests/futex/
6804 F:      tools/perf/bench/futex*
6805 F:      Documentation/*futex*
6806
6807 GCC PLUGINS
6808 M:      Kees Cook <keescook@chromium.org>
6809 R:      Emese Revfy <re.emese@gmail.com>
6810 L:      kernel-hardening@lists.openwall.com
6811 S:      Maintained
6812 F:      scripts/gcc-plugins/
6813 F:      scripts/gcc-plugin.sh
6814 F:      scripts/Makefile.gcc-plugins
6815 F:      Documentation/core-api/gcc-plugins.rst
6816
6817 GASKET DRIVER FRAMEWORK
6818 M:      Rob Springer <rspringer@google.com>
6819 M:      Todd Poynor <toddpoynor@google.com>
6820 M:      Ben Chan <benchan@chromium.org>
6821 S:      Maintained
6822 F:      drivers/staging/gasket/
6823
6824 GCOV BASED KERNEL PROFILING
6825 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
6826 S:      Maintained
6827 F:      kernel/gcov/
6828 F:      Documentation/dev-tools/gcov.rst
6829
6830 GDB KERNEL DEBUGGING HELPER SCRIPTS
6831 M:      Jan Kiszka <jan.kiszka@siemens.com>
6832 M:      Kieran Bingham <kbingham@kernel.org>
6833 S:      Supported
6834 F:      scripts/gdb/
6835
6836 GDT SCSI DISK ARRAY CONTROLLER DRIVER
6837 M:      Achim Leubner <achim_leubner@adaptec.com>
6838 L:      linux-scsi@vger.kernel.org
6839 W:      http://www.icp-vortex.com/
6840 S:      Supported
6841 F:      drivers/scsi/gdt*
6842
6843 GEMTEK FM RADIO RECEIVER DRIVER
6844 M:      Hans Verkuil <hverkuil@xs4all.nl>
6845 L:      linux-media@vger.kernel.org
6846 T:      git git://linuxtv.org/media_tree.git
6847 W:      https://linuxtv.org
6848 S:      Maintained
6849 F:      drivers/media/radio/radio-gemtek*
6850
6851 GENERIC ARCHITECTURE TOPOLOGY
6852 M:      Sudeep Holla <sudeep.holla@arm.com>
6853 L:      linux-kernel@vger.kernel.org
6854 S:      Maintained
6855 F:      drivers/base/arch_topology.c
6856 F:      include/linux/arch_topology.h
6857
6858 GENERIC GPIO I2C DRIVER
6859 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6860 S:      Supported
6861 F:      drivers/i2c/busses/i2c-gpio.c
6862 F:      include/linux/platform_data/i2c-gpio.h
6863
6864 GENERIC GPIO I2C MULTIPLEXER DRIVER
6865 M:      Peter Korsgaard <peter.korsgaard@barco.com>
6866 L:      linux-i2c@vger.kernel.org
6867 S:      Supported
6868 F:      drivers/i2c/muxes/i2c-mux-gpio.c
6869 F:      include/linux/platform_data/i2c-mux-gpio.h
6870 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
6871
6872 GENERIC HDLC (WAN) DRIVERS
6873 M:      Krzysztof Halasa <khc@pm.waw.pl>
6874 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
6875 S:      Maintained
6876 F:      drivers/net/wan/c101.c
6877 F:      drivers/net/wan/hd6457*
6878 F:      drivers/net/wan/hdlc*
6879 F:      drivers/net/wan/n2.c
6880 F:      drivers/net/wan/pc300too.c
6881 F:      drivers/net/wan/pci200syn.c
6882 F:      drivers/net/wan/wanxl*
6883
6884 GENERIC INCLUDE/ASM HEADER FILES
6885 M:      Arnd Bergmann <arnd@arndb.de>
6886 L:      linux-arch@vger.kernel.org
6887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
6888 S:      Maintained
6889 F:      include/asm-generic/
6890 F:      include/uapi/asm-generic/
6891
6892 GENERIC PHY FRAMEWORK
6893 M:      Kishon Vijay Abraham I <kishon@ti.com>
6894 L:      linux-kernel@vger.kernel.org
6895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
6896 S:      Supported
6897 F:      drivers/phy/
6898 F:      include/linux/phy/
6899 F:      Documentation/devicetree/bindings/phy/
6900
6901 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
6902 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6903 S:      Supported
6904 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
6905
6906 GENERIC PM DOMAINS
6907 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6908 M:      Kevin Hilman <khilman@kernel.org>
6909 M:      Ulf Hansson <ulf.hansson@linaro.org>
6910 L:      linux-pm@vger.kernel.org
6911 S:      Supported
6912 F:      drivers/base/power/domain*.c
6913 F:      include/linux/pm_domain.h
6914 F:      Documentation/devicetree/bindings/power/power_domain.txt
6915
6916 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
6917 M:      Eugen Hristev <eugen.hristev@microchip.com>
6918 L:      linux-input@vger.kernel.org
6919 S:      Maintained
6920 F:      drivers/input/touchscreen/resistive-adc-touch.c
6921
6922 GENERIC UIO DRIVER FOR PCI DEVICES
6923 M:      "Michael S. Tsirkin" <mst@redhat.com>
6924 L:      kvm@vger.kernel.org
6925 S:      Supported
6926 F:      drivers/uio/uio_pci_generic.c
6927
6928 GENERIC VDSO LIBRARY:
6929 M:      Andy Lutomirski <luto@kernel.org>
6930 M:      Thomas Gleixner <tglx@linutronix.de>
6931 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
6932 L:      linux-kernel@vger.kernel.org
6933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
6934 S:      Maintained
6935 F:      lib/vdso/
6936 F:      kernel/time/vsyscall.c
6937 F:      include/vdso/
6938 F:      include/asm-generic/vdso/vsyscall.h
6939
6940 GENWQE (IBM Generic Workqueue Card)
6941 M:      Frank Haverkamp <haver@linux.ibm.com>
6942 S:      Supported
6943 F:      drivers/misc/genwqe/
6944
6945 GET_MAINTAINER SCRIPT
6946 M:      Joe Perches <joe@perches.com>
6947 S:      Maintained
6948 F:      scripts/get_maintainer.pl
6949
6950 GFS2 FILE SYSTEM
6951 M:      Bob Peterson <rpeterso@redhat.com>
6952 M:      Andreas Gruenbacher <agruenba@redhat.com>
6953 L:      cluster-devel@redhat.com
6954 W:      http://sources.redhat.com/cluster/
6955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
6956 S:      Supported
6957 F:      Documentation/filesystems/gfs2*.txt
6958 F:      fs/gfs2/
6959 F:      include/uapi/linux/gfs2_ondisk.h
6960
6961 GNSS SUBSYSTEM
6962 M:      Johan Hovold <johan@kernel.org>
6963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
6964 S:      Maintained
6965 F:      Documentation/ABI/testing/sysfs-class-gnss
6966 F:      Documentation/devicetree/bindings/gnss/
6967 F:      drivers/gnss/
6968 F:      include/linux/gnss.h
6969
6970 GO7007 MPEG CODEC
6971 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
6972 L:      linux-media@vger.kernel.org
6973 S:      Maintained
6974 F:      drivers/media/usb/go7007/
6975
6976 GOODIX TOUCHSCREEN
6977 M:      Bastien Nocera <hadess@hadess.net>
6978 L:      linux-input@vger.kernel.org
6979 S:      Maintained
6980 F:      drivers/input/touchscreen/goodix.c
6981
6982 GOOGLE ETHERNET DRIVERS
6983 M:      Catherine Sullivan <csully@google.com>
6984 R:      Sagi Shahar <sagis@google.com>
6985 R:      Jon Olson <jonolson@google.com>
6986 L:      netdev@vger.kernel.org
6987 S:      Supported
6988 F:      Documentation/networking/device_drivers/google/gve.rst
6989 F:      drivers/net/ethernet/google
6990
6991 GPD POCKET FAN DRIVER
6992 M:      Hans de Goede <hdegoede@redhat.com>
6993 L:      platform-driver-x86@vger.kernel.org
6994 S:      Maintained
6995 F:      drivers/platform/x86/gpd-pocket-fan.c
6996
6997 GPIO ACPI SUPPORT
6998 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6999 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7000 L:      linux-gpio@vger.kernel.org
7001 L:      linux-acpi@vger.kernel.org
7002 S:      Maintained
7003 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7004 F:      drivers/gpio/gpiolib-acpi.c
7005
7006 GPIO IR Transmitter
7007 M:      Sean Young <sean@mess.org>
7008 L:      linux-media@vger.kernel.org
7009 S:      Maintained
7010 F:      drivers/media/rc/gpio-ir-tx.c
7011
7012 GPIO MOCKUP DRIVER
7013 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7014 L:      linux-gpio@vger.kernel.org
7015 S:      Maintained
7016 F:      drivers/gpio/gpio-mockup.c
7017 F:      tools/testing/selftests/gpio/
7018
7019 GPIO SUBSYSTEM
7020 M:      Linus Walleij <linus.walleij@linaro.org>
7021 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7022 L:      linux-gpio@vger.kernel.org
7023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7024 S:      Maintained
7025 F:      Documentation/devicetree/bindings/gpio/
7026 F:      Documentation/driver-api/gpio/
7027 F:      Documentation/admin-guide/gpio/
7028 F:      Documentation/ABI/testing/gpio-cdev
7029 F:      Documentation/ABI/obsolete/sysfs-gpio
7030 F:      drivers/gpio/
7031 F:      include/linux/gpio/
7032 F:      include/linux/gpio.h
7033 F:      include/linux/of_gpio.h
7034 F:      include/asm-generic/gpio.h
7035 F:      include/uapi/linux/gpio.h
7036 F:      tools/gpio/
7037
7038 GRE DEMULTIPLEXER DRIVER
7039 M:      Dmitry Kozlov <xeb@mail.ru>
7040 L:      netdev@vger.kernel.org
7041 S:      Maintained
7042 F:      net/ipv4/gre_demux.c
7043 F:      net/ipv4/gre_offload.c
7044 F:      include/net/gre.h
7045
7046 GRETH 10/100/1G Ethernet MAC device driver
7047 M:      Andreas Larsson <andreas@gaisler.com>
7048 L:      netdev@vger.kernel.org
7049 S:      Maintained
7050 F:      drivers/net/ethernet/aeroflex/
7051
7052 GREYBUS AUDIO PROTOCOLS DRIVERS
7053 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7054 M:      Mark Greer <mgreer@animalcreek.com>
7055 S:      Maintained
7056 F:      drivers/staging/greybus/audio_apbridgea.c
7057 F:      drivers/staging/greybus/audio_apbridgea.h
7058 F:      drivers/staging/greybus/audio_codec.c
7059 F:      drivers/staging/greybus/audio_codec.h
7060 F:      drivers/staging/greybus/audio_gb.c
7061 F:      drivers/staging/greybus/audio_manager.c
7062 F:      drivers/staging/greybus/audio_manager.h
7063 F:      drivers/staging/greybus/audio_manager_module.c
7064 F:      drivers/staging/greybus/audio_manager_private.h
7065 F:      drivers/staging/greybus/audio_manager_sysfs.c
7066 F:      drivers/staging/greybus/audio_module.c
7067 F:      drivers/staging/greybus/audio_topology.c
7068
7069 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7070 M:      Viresh Kumar <vireshk@kernel.org>
7071 S:      Maintained
7072 F:      drivers/staging/greybus/authentication.c
7073 F:      drivers/staging/greybus/bootrom.c
7074 F:      drivers/staging/greybus/firmware.h
7075 F:      drivers/staging/greybus/fw-core.c
7076 F:      drivers/staging/greybus/fw-download.c
7077 F:      drivers/staging/greybus/fw-management.c
7078 F:      drivers/staging/greybus/greybus_authentication.h
7079 F:      drivers/staging/greybus/greybus_firmware.h
7080 F:      drivers/staging/greybus/hid.c
7081 F:      drivers/staging/greybus/i2c.c
7082 F:      drivers/staging/greybus/spi.c
7083 F:      drivers/staging/greybus/spilib.c
7084 F:      drivers/staging/greybus/spilib.h
7085
7086 GREYBUS LOOPBACK DRIVER
7087 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7088 S:      Maintained
7089 F:      drivers/staging/greybus/loopback.c
7090
7091 GREYBUS PLATFORM DRIVERS
7092 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7093 S:      Maintained
7094 F:      drivers/staging/greybus/arche-platform.c
7095 F:      drivers/staging/greybus/arche-apb-ctrl.c
7096 F:      drivers/staging/greybus/arche_platform.h
7097
7098 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7099 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7100 S:      Maintained
7101 F:      drivers/staging/greybus/sdio.c
7102 F:      drivers/staging/greybus/light.c
7103 F:      drivers/staging/greybus/gpio.c
7104 F:      drivers/staging/greybus/power_supply.c
7105 F:      drivers/staging/greybus/spi.c
7106 F:      drivers/staging/greybus/spilib.c
7107
7108 GREYBUS SUBSYSTEM
7109 M:      Johan Hovold <johan@kernel.org>
7110 M:      Alex Elder <elder@kernel.org>
7111 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7112 S:      Maintained
7113 F:      drivers/staging/greybus/
7114 F:      drivers/greybus/
7115 F:      include/linux/greybus.h
7116 F:      include/linux/greybus/
7117 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7118
7119 GREYBUS UART PROTOCOLS DRIVERS
7120 M:      David Lin <dtwlin@gmail.com>
7121 S:      Maintained
7122 F:      drivers/staging/greybus/uart.c
7123 F:      drivers/staging/greybus/log.c
7124
7125 GS1662 VIDEO SERIALIZER
7126 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7127 L:      linux-media@vger.kernel.org
7128 T:      git git://linuxtv.org/media_tree.git
7129 S:      Maintained
7130 F:      drivers/media/spi/gs1662.c
7131
7132 GSPCA FINEPIX SUBDRIVER
7133 M:      Frank Zago <frank@zago.net>
7134 L:      linux-media@vger.kernel.org
7135 T:      git git://linuxtv.org/media_tree.git
7136 S:      Maintained
7137 F:      drivers/media/usb/gspca/finepix.c
7138
7139 GSPCA GL860 SUBDRIVER
7140 M:      Olivier Lorin <o.lorin@laposte.net>
7141 L:      linux-media@vger.kernel.org
7142 T:      git git://linuxtv.org/media_tree.git
7143 S:      Maintained
7144 F:      drivers/media/usb/gspca/gl860/
7145
7146 GSPCA M5602 SUBDRIVER
7147 M:      Erik Andren <erik.andren@gmail.com>
7148 L:      linux-media@vger.kernel.org
7149 T:      git git://linuxtv.org/media_tree.git
7150 S:      Maintained
7151 F:      drivers/media/usb/gspca/m5602/
7152
7153 GSPCA PAC207 SONIXB SUBDRIVER
7154 M:      Hans Verkuil <hverkuil@xs4all.nl>
7155 L:      linux-media@vger.kernel.org
7156 T:      git git://linuxtv.org/media_tree.git
7157 S:      Odd Fixes
7158 F:      drivers/media/usb/gspca/pac207.c
7159
7160 GSPCA SN9C20X SUBDRIVER
7161 M:      Brian Johnson <brijohn@gmail.com>
7162 L:      linux-media@vger.kernel.org
7163 T:      git git://linuxtv.org/media_tree.git
7164 S:      Maintained
7165 F:      drivers/media/usb/gspca/sn9c20x.c
7166
7167 GSPCA T613 SUBDRIVER
7168 M:      Leandro Costantino <lcostantino@gmail.com>
7169 L:      linux-media@vger.kernel.org
7170 T:      git git://linuxtv.org/media_tree.git
7171 S:      Maintained
7172 F:      drivers/media/usb/gspca/t613.c
7173
7174 GSPCA USB WEBCAM DRIVER
7175 M:      Hans Verkuil <hverkuil@xs4all.nl>
7176 L:      linux-media@vger.kernel.org
7177 T:      git git://linuxtv.org/media_tree.git
7178 S:      Odd Fixes
7179 F:      drivers/media/usb/gspca/
7180
7181 GTP (GPRS Tunneling Protocol)
7182 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7183 M:      Harald Welte <laforge@gnumonks.org>
7184 L:      osmocom-net-gprs@lists.osmocom.org
7185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7186 S:      Maintained
7187 F:      drivers/net/gtp.c
7188
7189 GUID PARTITION TABLE (GPT)
7190 M:      Davidlohr Bueso <dave@stgolabs.net>
7191 L:      linux-efi@vger.kernel.org
7192 S:      Maintained
7193 F:      block/partitions/efi.*
7194
7195 H8/300 ARCHITECTURE
7196 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7197 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7198 W:      http://uclinux-h8.sourceforge.jp
7199 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7200 S:      Maintained
7201 F:      arch/h8300/
7202 F:      drivers/clocksource/h8300_*.c
7203 F:      drivers/clk/h8300/
7204 F:      drivers/irqchip/irq-renesas-h8*.c
7205
7206 HABANALABS PCI DRIVER
7207 M:      Oded Gabbay <oded.gabbay@gmail.com>
7208 T:      git https://github.com/HabanaAI/linux.git
7209 S:      Supported
7210 F:      drivers/misc/habanalabs/
7211 F:      include/uapi/misc/habanalabs.h
7212 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7213 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7214
7215 HACKRF MEDIA DRIVER
7216 M:      Antti Palosaari <crope@iki.fi>
7217 L:      linux-media@vger.kernel.org
7218 W:      https://linuxtv.org
7219 W:      http://palosaari.fi/linux/
7220 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7221 T:      git git://linuxtv.org/anttip/media_tree.git
7222 S:      Maintained
7223 F:      drivers/media/usb/hackrf/
7224
7225 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7226 M:      Frank Seidel <frank@f-seidel.de>
7227 L:      platform-driver-x86@vger.kernel.org
7228 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7229 S:      Maintained
7230 F:      drivers/platform/x86/hdaps.c
7231
7232 HARDWARE MONITORING
7233 M:      Jean Delvare <jdelvare@suse.com>
7234 M:      Guenter Roeck <linux@roeck-us.net>
7235 L:      linux-hwmon@vger.kernel.org
7236 W:      http://hwmon.wiki.kernel.org/
7237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7238 S:      Maintained
7239 F:      Documentation/devicetree/bindings/hwmon/
7240 F:      Documentation/hwmon/
7241 F:      drivers/hwmon/
7242 F:      include/linux/hwmon*.h
7243 F:      include/trace/events/hwmon*.h
7244
7245 HARDWARE RANDOM NUMBER GENERATOR CORE
7246 M:      Matt Mackall <mpm@selenic.com>
7247 M:      Herbert Xu <herbert@gondor.apana.org.au>
7248 L:      linux-crypto@vger.kernel.org
7249 S:      Odd fixes
7250 F:      Documentation/devicetree/bindings/rng/
7251 F:      Documentation/admin-guide/hw_random.rst
7252 F:      drivers/char/hw_random/
7253 F:      include/linux/hw_random.h
7254
7255 HARDWARE TRACING FACILITIES
7256 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7257 S:      Maintained
7258 F:      drivers/hwtracing/
7259
7260 HARDWARE SPINLOCK CORE
7261 M:      Ohad Ben-Cohen <ohad@wizery.com>
7262 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7263 L:      linux-remoteproc@vger.kernel.org
7264 S:      Maintained
7265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
7266 F:      Documentation/devicetree/bindings/hwlock/
7267 F:      Documentation/hwspinlock.txt
7268 F:      drivers/hwspinlock/
7269 F:      include/linux/hwspinlock.h
7270
7271 HARMONY SOUND DRIVER
7272 L:      linux-parisc@vger.kernel.org
7273 S:      Maintained
7274 F:      sound/parisc/harmony.*
7275
7276 HDPVR USB VIDEO ENCODER DRIVER
7277 M:      Hans Verkuil <hverkuil@xs4all.nl>
7278 L:      linux-media@vger.kernel.org
7279 T:      git git://linuxtv.org/media_tree.git
7280 W:      https://linuxtv.org
7281 S:      Odd Fixes
7282 F:      drivers/media/usb/hdpvr/
7283
7284 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7285 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7286 S:      Supported
7287 F:      Documentation/watchdog/hpwdt.rst
7288 F:      drivers/watchdog/hpwdt.c
7289
7290 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7291 M:      Don Brace <don.brace@microsemi.com>
7292 L:      esc.storagedev@microsemi.com
7293 L:      linux-scsi@vger.kernel.org
7294 S:      Supported
7295 F:      Documentation/scsi/hpsa.txt
7296 F:      drivers/scsi/hpsa*.[ch]
7297 F:      include/linux/cciss*.h
7298 F:      include/uapi/linux/cciss*.h
7299
7300 HFI1 DRIVER
7301 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7302 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7303 L:      linux-rdma@vger.kernel.org
7304 S:      Supported
7305 F:      drivers/infiniband/hw/hfi1
7306
7307 HFS FILESYSTEM
7308 L:      linux-fsdevel@vger.kernel.org
7309 S:      Orphan
7310 F:      Documentation/filesystems/hfs.txt
7311 F:      fs/hfs/
7312
7313 HFSPLUS FILESYSTEM
7314 L:      linux-fsdevel@vger.kernel.org
7315 S:      Orphan
7316 F:      Documentation/filesystems/hfsplus.txt
7317 F:      fs/hfsplus/
7318
7319 HGA FRAMEBUFFER DRIVER
7320 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7321 L:      linux-nvidia@lists.surfsouth.com
7322 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7323 S:      Maintained
7324 F:      drivers/video/fbdev/hgafb.c
7325
7326 HIBERNATION (aka Software Suspend, aka swsusp)
7327 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7328 M:      Pavel Machek <pavel@ucw.cz>
7329 L:      linux-pm@vger.kernel.org
7330 B:      https://bugzilla.kernel.org
7331 S:      Supported
7332 F:      arch/x86/power/
7333 F:      drivers/base/power/
7334 F:      kernel/power/
7335 F:      include/linux/suspend.h
7336 F:      include/linux/freezer.h
7337 F:      include/linux/pm.h
7338 F:      arch/*/include/asm/suspend*.h
7339
7340 HID CORE LAYER
7341 M:      Jiri Kosina <jikos@kernel.org>
7342 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7343 L:      linux-input@vger.kernel.org
7344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7345 S:      Maintained
7346 F:      drivers/hid/
7347 F:      include/linux/hid*
7348 F:      include/uapi/linux/hid*
7349
7350 HID SENSOR HUB DRIVERS
7351 M:      Jiri Kosina <jikos@kernel.org>
7352 M:      Jonathan Cameron <jic23@kernel.org>
7353 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7354 L:      linux-input@vger.kernel.org
7355 L:      linux-iio@vger.kernel.org
7356 S:      Maintained
7357 F:      Documentation/hid/hid-sensor*
7358 F:      drivers/hid/hid-sensor-*
7359 F:      drivers/iio/*/hid-*
7360 F:      include/linux/hid-sensor-*
7361
7362 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7363 M:      Thomas Gleixner <tglx@linutronix.de>
7364 L:      linux-kernel@vger.kernel.org
7365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7366 S:      Maintained
7367 F:      Documentation/timers/
7368 F:      kernel/time/hrtimer.c
7369 F:      kernel/time/clockevents.c
7370 F:      kernel/time/timer_*.c
7371 F:      include/linux/clockchips.h
7372 F:      include/linux/hrtimer.h
7373
7374 HIGH-SPEED SCC DRIVER FOR AX.25
7375 L:      linux-hams@vger.kernel.org
7376 S:      Orphan
7377 F:      drivers/net/hamradio/dmascc.c
7378 F:      drivers/net/hamradio/scc.c
7379
7380 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7381 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7382 W:      http://www.highpoint-tech.com
7383 S:      Supported
7384 F:      Documentation/scsi/hptiop.txt
7385 F:      drivers/scsi/hptiop.c
7386
7387 HIPPI
7388 M:      Jes Sorensen <jes@trained-monkey.org>
7389 L:      linux-hippi@sunsite.dk
7390 S:      Maintained
7391 F:      include/linux/hippidevice.h
7392 F:      include/uapi/linux/if_hippi.h
7393 F:      net/802/hippi.c
7394 F:      drivers/net/hippi/
7395
7396 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7397 M:      Zaibo Xu <xuzaibo@huawei.com>
7398 L:      linux-crypto@vger.kernel.org
7399 S:      Maintained
7400 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7401 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7402 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7403 F:      drivers/crypto/hisilicon/sec2/sec.h
7404 F:      Documentation/ABI/testing/debugfs-hisi-sec
7405
7406 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7407 M:      Zaibo Xu <xuzaibo@huawei.com>
7408 L:      linux-crypto@vger.kernel.org
7409 S:      Maintained
7410 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7411 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7412 F:      drivers/crypto/hisilicon/hpre/hpre.h
7413 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7414
7415 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7416 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7417 M:      Salil Mehta <salil.mehta@huawei.com>
7418 L:      netdev@vger.kernel.org
7419 W:      http://www.hisilicon.com
7420 S:      Maintained
7421 F:      drivers/net/ethernet/hisilicon/hns3/
7422
7423 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7424 M:      Zaibo Xu <xuzaibo@huawei.com>
7425 S:      Maintained
7426 F:      drivers/char/hw_random/hisi-trng-v2.c
7427
7428 HISILICON LPC BUS DRIVER
7429 M:      john.garry@huawei.com
7430 W:      http://www.hisilicon.com
7431 S:      Maintained
7432 F:      drivers/bus/hisi_lpc.c
7433 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7434
7435 HISILICON NETWORK SUBSYSTEM DRIVER
7436 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7437 M:      Salil Mehta <salil.mehta@huawei.com>
7438 L:      netdev@vger.kernel.org
7439 W:      http://www.hisilicon.com
7440 S:      Maintained
7441 F:      drivers/net/ethernet/hisilicon/
7442 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7443
7444 HISILICON PMU DRIVER
7445 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7446 W:      http://www.hisilicon.com
7447 S:      Supported
7448 F:      drivers/perf/hisilicon
7449 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7450
7451 HISILICON ROCE DRIVER
7452 M:      Lijun Ou <oulijun@huawei.com>
7453 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
7454 L:      linux-rdma@vger.kernel.org
7455 S:      Maintained
7456 F:      drivers/infiniband/hw/hns/
7457 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7458
7459 HISILICON SAS Controller
7460 M:      John Garry <john.garry@huawei.com>
7461 W:      http://www.hisilicon.com
7462 S:      Supported
7463 F:      drivers/scsi/hisi_sas/
7464 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7465
7466 HISILICON QM AND ZIP Controller DRIVER
7467 M:      Zhou Wang <wangzhou1@hisilicon.com>
7468 L:      linux-crypto@vger.kernel.org
7469 S:      Maintained
7470 F:      drivers/crypto/hisilicon/qm.c
7471 F:      drivers/crypto/hisilicon/qm.h
7472 F:      drivers/crypto/hisilicon/sgl.c
7473 F:      drivers/crypto/hisilicon/zip/
7474 F:      Documentation/ABI/testing/debugfs-hisi-zip
7475
7476 HMM - Heterogeneous Memory Management
7477 M:      Jérôme Glisse <jglisse@redhat.com>
7478 L:      linux-mm@kvack.org
7479 S:      Maintained
7480 F:      mm/hmm*
7481 F:      include/linux/hmm*
7482 F:      Documentation/vm/hmm.rst
7483
7484 HOST AP DRIVER
7485 M:      Jouni Malinen <j@w1.fi>
7486 L:      linux-wireless@vger.kernel.org
7487 W:      http://w1.fi/hostap-driver.html
7488 S:      Obsolete
7489 F:      drivers/net/wireless/intersil/hostap/
7490
7491 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7492 L:      platform-driver-x86@vger.kernel.org
7493 S:      Orphan
7494 F:      drivers/platform/x86/tc1100-wmi.c
7495
7496 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7497 M:      Jaroslav Kysela <perex@perex.cz>
7498 S:      Obsolete
7499 F:      drivers/staging/hp/hp100.*
7500
7501 HPET:   High Precision Event Timers driver
7502 M:      Clemens Ladisch <clemens@ladisch.de>
7503 S:      Maintained
7504 F:      Documentation/timers/hpet.rst
7505 F:      drivers/char/hpet.c
7506 F:      include/linux/hpet.h
7507 F:      include/uapi/linux/hpet.h
7508
7509 HPET:   x86
7510 S:      Orphan
7511 F:      arch/x86/kernel/hpet.c
7512 F:      arch/x86/include/asm/hpet.h
7513
7514 HPFS FILESYSTEM
7515 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7516 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7517 S:      Maintained
7518 F:      fs/hpfs/
7519
7520 HSI SUBSYSTEM
7521 M:      Sebastian Reichel <sre@kernel.org>
7522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7523 S:      Maintained
7524 F:      Documentation/ABI/testing/sysfs-bus-hsi
7525 F:      Documentation/driver-api/hsi.rst
7526 F:      drivers/hsi/
7527 F:      include/linux/hsi/
7528 F:      include/uapi/linux/hsi/
7529
7530 HSO 3G MODEM DRIVER
7531 L:      linux-usb@vger.kernel.org
7532 S:      Orphan
7533 F:      drivers/net/usb/hso.c
7534
7535 HSR NETWORK PROTOCOL
7536 M:      Arvid Brodin <arvid.brodin@alten.se>
7537 L:      netdev@vger.kernel.org
7538 S:      Maintained
7539 F:      net/hsr/
7540
7541 HT16K33 LED CONTROLLER DRIVER
7542 M:      Robin van der Gracht <robin@protonic.nl>
7543 S:      Maintained
7544 F:      drivers/auxdisplay/ht16k33.c
7545 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7546
7547 HTCPEN TOUCHSCREEN DRIVER
7548 M:      Pau Oliva Fora <pof@eslack.org>
7549 L:      linux-input@vger.kernel.org
7550 S:      Maintained
7551 F:      drivers/input/touchscreen/htcpen.c
7552
7553 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7554 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7555 L:      linux-iio@vger.kernel.org
7556 W:      http://www.st.com/
7557 S:      Maintained
7558 F:      drivers/iio/humidity/hts221*
7559 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7560
7561 HUAWEI ETHERNET DRIVER
7562 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
7563 L:      netdev@vger.kernel.org
7564 S:      Supported
7565 F:      Documentation/networking/hinic.txt
7566 F:      drivers/net/ethernet/huawei/hinic/
7567
7568 HUGETLB FILESYSTEM
7569 M:      Mike Kravetz <mike.kravetz@oracle.com>
7570 L:      linux-mm@kvack.org
7571 S:      Maintained
7572 F:      fs/hugetlbfs/
7573 F:      mm/hugetlb.c
7574 F:      include/linux/hugetlb.h
7575 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7576 F:      Documentation/vm/hugetlbfs_reserv.rst
7577 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7578
7579 HVA ST MEDIA DRIVER
7580 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7581 L:      linux-media@vger.kernel.org
7582 T:      git git://linuxtv.org/media_tree.git
7583 W:      https://linuxtv.org
7584 S:      Supported
7585 F:      drivers/media/platform/sti/hva
7586
7587 HWPOISON MEMORY FAILURE HANDLING
7588 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
7589 L:      linux-mm@kvack.org
7590 S:      Maintained
7591 F:      mm/memory-failure.c
7592 F:      mm/hwpoison-inject.c
7593
7594 HYGON PROCESSOR SUPPORT
7595 M:      Pu Wen <puwen@hygon.cn>
7596 L:      linux-kernel@vger.kernel.org
7597 S:      Maintained
7598 F:      arch/x86/kernel/cpu/hygon.c
7599
7600 Hyper-V CORE AND DRIVERS
7601 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7602 M:      Haiyang Zhang <haiyangz@microsoft.com>
7603 M:      Stephen Hemminger <sthemmin@microsoft.com>
7604 M:      Sasha Levin <sashal@kernel.org>
7605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7606 L:      linux-hyperv@vger.kernel.org
7607 S:      Supported
7608 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7609 F:      arch/x86/include/asm/mshyperv.h
7610 F:      arch/x86/include/asm/trace/hyperv.h
7611 F:      arch/x86/include/asm/hyperv-tlfs.h
7612 F:      arch/x86/kernel/cpu/mshyperv.c
7613 F:      arch/x86/hyperv
7614 F:      drivers/clocksource/hyperv_timer.c
7615 F:      drivers/hid/hid-hyperv.c
7616 F:      drivers/hv/
7617 F:      drivers/input/serio/hyperv-keyboard.c
7618 F:      drivers/pci/controller/pci-hyperv.c
7619 F:      drivers/pci/controller/pci-hyperv-intf.c
7620 F:      drivers/net/hyperv/
7621 F:      drivers/scsi/storvsc_drv.c
7622 F:      drivers/uio/uio_hv_generic.c
7623 F:      drivers/video/fbdev/hyperv_fb.c
7624 F:      drivers/iommu/hyperv-iommu.c
7625 F:      net/vmw_vsock/hyperv_transport.c
7626 F:      include/clocksource/hyperv_timer.h
7627 F:      include/linux/hyperv.h
7628 F:      include/uapi/linux/hyperv.h
7629 F:      include/asm-generic/mshyperv.h
7630 F:      tools/hv/
7631 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7632
7633 HYPERBUS SUPPORT
7634 M:      Vignesh Raghavendra <vigneshr@ti.com>
7635 S:      Supported
7636 F:      drivers/mtd/hyperbus/
7637 F:      include/linux/mtd/hyperbus.h
7638 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7639 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7640
7641 HYPERVISOR VIRTUAL CONSOLE DRIVER
7642 L:      linuxppc-dev@lists.ozlabs.org
7643 S:      Odd Fixes
7644 F:      drivers/tty/hvc/
7645
7646 I2C ACPI SUPPORT
7647 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7648 L:      linux-i2c@vger.kernel.org
7649 L:      linux-acpi@vger.kernel.org
7650 S:      Maintained
7651 F:      drivers/i2c/i2c-core-acpi.c
7652
7653 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7654 M:      Ajay Gupta <ajayg@nvidia.com>
7655 L:      linux-i2c@vger.kernel.org
7656 S:      Maintained
7657 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7658 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7659
7660 I2C MUXES
7661 M:      Peter Rosin <peda@axentia.se>
7662 L:      linux-i2c@vger.kernel.org
7663 S:      Maintained
7664 F:      Documentation/i2c/i2c-topology.rst
7665 F:      Documentation/i2c/muxes/
7666 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7667 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7668 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7669 F:      drivers/i2c/i2c-mux.c
7670 F:      drivers/i2c/muxes/
7671 F:      include/linux/i2c-mux.h
7672
7673 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7674 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
7675 L:      linux-i2c@vger.kernel.org
7676 S:      Maintained
7677 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7678 F:      drivers/i2c/busses/i2c-mv64xxx.c
7679
7680 I2C OVER PARALLEL PORT
7681 M:      Jean Delvare <jdelvare@suse.com>
7682 L:      linux-i2c@vger.kernel.org
7683 S:      Maintained
7684 F:      Documentation/i2c/busses/i2c-parport.rst
7685 F:      Documentation/i2c/busses/i2c-parport-light.rst
7686 F:      drivers/i2c/busses/i2c-parport.c
7687 F:      drivers/i2c/busses/i2c-parport-light.c
7688
7689 I2C SUBSYSTEM
7690 M:      Wolfram Sang <wsa@the-dreams.de>
7691 L:      linux-i2c@vger.kernel.org
7692 W:      https://i2c.wiki.kernel.org/
7693 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7695 S:      Maintained
7696 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7697 F:      Documentation/i2c/
7698 F:      drivers/i2c/*
7699 F:      include/linux/i2c.h
7700 F:      include/linux/i2c-dev.h
7701 F:      include/linux/i2c-smbus.h
7702 F:      include/uapi/linux/i2c.h
7703 F:      include/uapi/linux/i2c-*.h
7704
7705 I2C SUBSYSTEM HOST DRIVERS
7706 L:      linux-i2c@vger.kernel.org
7707 W:      https://i2c.wiki.kernel.org/
7708 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7710 S:      Odd Fixes
7711 F:      Documentation/devicetree/bindings/i2c/
7712 F:      drivers/i2c/algos/
7713 F:      drivers/i2c/busses/
7714
7715 I2C-TAOS-EVM DRIVER
7716 M:      Jean Delvare <jdelvare@suse.com>
7717 L:      linux-i2c@vger.kernel.org
7718 S:      Maintained
7719 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7720 F:      drivers/i2c/busses/i2c-taos-evm.c
7721
7722 I2C-TINY-USB DRIVER
7723 M:      Till Harbaum <till@harbaum.org>
7724 L:      linux-i2c@vger.kernel.org
7725 W:      http://www.harbaum.org/till/i2c_tiny_usb
7726 S:      Maintained
7727 F:      drivers/i2c/busses/i2c-tiny-usb.c
7728
7729 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7730 M:      Jean Delvare <jdelvare@suse.com>
7731 L:      linux-i2c@vger.kernel.org
7732 S:      Maintained
7733 F:      Documentation/i2c/busses/i2c-ali1535.rst
7734 F:      Documentation/i2c/busses/i2c-ali1563.rst
7735 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7736 F:      Documentation/i2c/busses/i2c-amd756.rst
7737 F:      Documentation/i2c/busses/i2c-amd8111.rst
7738 F:      Documentation/i2c/busses/i2c-i801.rst
7739 F:      Documentation/i2c/busses/i2c-nforce2.rst
7740 F:      Documentation/i2c/busses/i2c-piix4.rst
7741 F:      Documentation/i2c/busses/i2c-sis5595.rst
7742 F:      Documentation/i2c/busses/i2c-sis630.rst
7743 F:      Documentation/i2c/busses/i2c-sis96x.rst
7744 F:      Documentation/i2c/busses/i2c-via.rst
7745 F:      Documentation/i2c/busses/i2c-viapro.rst
7746 F:      drivers/i2c/busses/i2c-ali1535.c
7747 F:      drivers/i2c/busses/i2c-ali1563.c
7748 F:      drivers/i2c/busses/i2c-ali15x3.c
7749 F:      drivers/i2c/busses/i2c-amd756.c
7750 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7751 F:      drivers/i2c/busses/i2c-amd8111.c
7752 F:      drivers/i2c/busses/i2c-i801.c
7753 F:      drivers/i2c/busses/i2c-isch.c
7754 F:      drivers/i2c/busses/i2c-nforce2.c
7755 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7756 F:      drivers/i2c/busses/i2c-piix4.c
7757 F:      drivers/i2c/busses/i2c-sis5595.c
7758 F:      drivers/i2c/busses/i2c-sis630.c
7759 F:      drivers/i2c/busses/i2c-sis96x.c
7760 F:      drivers/i2c/busses/i2c-via.c
7761 F:      drivers/i2c/busses/i2c-viapro.c
7762
7763 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7764 M:      Hans de Goede <hdegoede@redhat.com>
7765 L:      linux-i2c@vger.kernel.org
7766 S:      Maintained
7767 F:      drivers/i2c/busses/i2c-cht-wc.c
7768
7769 I2C/SMBUS ISMT DRIVER
7770 M:      Seth Heasley <seth.heasley@intel.com>
7771 M:      Neil Horman <nhorman@tuxdriver.com>
7772 L:      linux-i2c@vger.kernel.org
7773 F:      drivers/i2c/busses/i2c-ismt.c
7774 F:      Documentation/i2c/busses/i2c-ismt.rst
7775
7776 I2C/SMBUS STUB DRIVER
7777 M:      Jean Delvare <jdelvare@suse.com>
7778 L:      linux-i2c@vger.kernel.org
7779 S:      Maintained
7780 F:      drivers/i2c/i2c-stub.c
7781
7782 I3C SUBSYSTEM
7783 M:      Boris Brezillon <bbrezillon@kernel.org>
7784 L:      linux-i3c@lists.infradead.org
7785 C:      irc://chat.freenode.net/linux-i3c
7786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
7787 S:      Maintained
7788 F:      Documentation/ABI/testing/sysfs-bus-i3c
7789 F:      Documentation/devicetree/bindings/i3c/
7790 F:      Documentation/driver-api/i3c
7791 F:      drivers/i3c/
7792 F:      include/linux/i3c/
7793
7794 I3C DRIVER FOR SYNOPSYS DESIGNWARE
7795 M:      Vitor Soares <vitor.soares@synopsys.com>
7796 S:      Maintained
7797 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
7798 F:      drivers/i3c/master/dw*
7799
7800 IA64 (Itanium) PLATFORM
7801 M:      Tony Luck <tony.luck@intel.com>
7802 M:      Fenghua Yu <fenghua.yu@intel.com>
7803 L:      linux-ia64@vger.kernel.org
7804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
7805 S:      Maintained
7806 F:      arch/ia64/
7807
7808 IBM Power 842 compression accelerator
7809 M:      Haren Myneni <haren@us.ibm.com>
7810 S:      Supported
7811 F:      drivers/crypto/nx/Makefile
7812 F:      drivers/crypto/nx/Kconfig
7813 F:      drivers/crypto/nx/nx-842*
7814 F:      include/linux/sw842.h
7815 F:      crypto/842.c
7816 F:      lib/842/
7817
7818 IBM Power in-Nest Crypto Acceleration
7819 M:      Breno Leitão <leitao@debian.org>
7820 M:      Nayna Jain <nayna@linux.ibm.com>
7821 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7822 L:      linux-crypto@vger.kernel.org
7823 S:      Supported
7824 F:      drivers/crypto/nx/Makefile
7825 F:      drivers/crypto/nx/Kconfig
7826 F:      drivers/crypto/nx/nx-aes*
7827 F:      drivers/crypto/nx/nx-sha*
7828 F:      drivers/crypto/nx/nx.*
7829 F:      drivers/crypto/nx/nx_csbcpb.h
7830 F:      drivers/crypto/nx/nx_debugfs.c
7831
7832 IBM Power Linux RAID adapter
7833 M:      Brian King <brking@us.ibm.com>
7834 S:      Supported
7835 F:      drivers/scsi/ipr.*
7836
7837 IBM Power SRIOV Virtual NIC Device Driver
7838 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7839 M:      John Allen <jallen@linux.ibm.com>
7840 L:      netdev@vger.kernel.org
7841 S:      Supported
7842 F:      drivers/net/ethernet/ibm/ibmvnic.*
7843
7844 IBM Power Virtual Accelerator Switchboard
7845 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
7846 L:      linuxppc-dev@lists.ozlabs.org
7847 S:      Supported
7848 F:      arch/powerpc/platforms/powernv/vas*
7849 F:      arch/powerpc/platforms/powernv/copy-paste.h
7850 F:      arch/powerpc/include/asm/vas.h
7851
7852 IBM Power Virtual Ethernet Device Driver
7853 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7854 L:      netdev@vger.kernel.org
7855 S:      Supported
7856 F:      drivers/net/ethernet/ibm/ibmveth.*
7857
7858 IBM Power Virtual FC Device Drivers
7859 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7860 L:      linux-scsi@vger.kernel.org
7861 S:      Supported
7862 F:      drivers/scsi/ibmvscsi/ibmvfc*
7863
7864 IBM Power Virtual Management Channel Driver
7865 M:      Steven Royer <seroyer@linux.ibm.com>
7866 S:      Supported
7867 F:      drivers/misc/ibmvmc.*
7868
7869 IBM Power Virtual SCSI Device Drivers
7870 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7871 L:      linux-scsi@vger.kernel.org
7872 S:      Supported
7873 F:      drivers/scsi/ibmvscsi/ibmvscsi*
7874 F:      include/scsi/viosrp.h
7875
7876 IBM Power Virtual SCSI Device Target Driver
7877 M:      Michael Cyr <mikecyr@linux.ibm.com>
7878 L:      linux-scsi@vger.kernel.org
7879 L:      target-devel@vger.kernel.org
7880 S:      Supported
7881 F:      drivers/scsi/ibmvscsi_tgt/
7882
7883 IBM Power VMX Cryptographic instructions
7884 M:      Breno Leitão <leitao@debian.org>
7885 M:      Nayna Jain <nayna@linux.ibm.com>
7886 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7887 L:      linux-crypto@vger.kernel.org
7888 S:      Supported
7889 F:      drivers/crypto/vmx/Makefile
7890 F:      drivers/crypto/vmx/Kconfig
7891 F:      drivers/crypto/vmx/vmx.c
7892 F:      drivers/crypto/vmx/aes*
7893 F:      drivers/crypto/vmx/ghash*
7894 F:      drivers/crypto/vmx/ppc-xlate.pl
7895
7896 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
7897 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7898 L:      linux-pci@vger.kernel.org
7899 L:      linuxppc-dev@lists.ozlabs.org
7900 S:      Supported
7901 F:      drivers/pci/hotplug/rpaphp*
7902
7903 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
7904 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7905 L:      linux-pci@vger.kernel.org
7906 L:      linuxppc-dev@lists.ozlabs.org
7907 S:      Supported
7908 F:      drivers/pci/hotplug/rpadlpar*
7909
7910 IBM ServeRAID RAID DRIVER
7911 S:      Orphan
7912 F:      drivers/scsi/ips.*
7913
7914 ICH LPC AND GPIO DRIVER
7915 M:      Peter Tyser <ptyser@xes-inc.com>
7916 S:      Maintained
7917 F:      drivers/mfd/lpc_ich.c
7918 F:      drivers/gpio/gpio-ich.c
7919
7920 ICY I2C DRIVER
7921 M:      Max Staudt <max@enpas.org>
7922 L:      linux-i2c@vger.kernel.org
7923 S:      Maintained
7924 F:      drivers/i2c/busses/i2c-icy.c
7925
7926 IDE SUBSYSTEM
7927 M:      "David S. Miller" <davem@davemloft.net>
7928 L:      linux-ide@vger.kernel.org
7929 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
7930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
7931 S:      Maintained
7932 F:      Documentation/ide/
7933 F:      drivers/ide/
7934 F:      include/linux/ide.h
7935
7936 IDE/ATAPI DRIVERS
7937 M:      Borislav Petkov <bp@alien8.de>
7938 L:      linux-ide@vger.kernel.org
7939 S:      Maintained
7940 F:      Documentation/cdrom/ide-cd.rst
7941 F:      drivers/ide/ide-cd*
7942
7943 IDEAPAD LAPTOP EXTRAS DRIVER
7944 M:      Ike Panhc <ike.pan@canonical.com>
7945 L:      platform-driver-x86@vger.kernel.org
7946 W:      http://launchpad.net/ideapad-laptop
7947 S:      Maintained
7948 F:      drivers/platform/x86/ideapad-laptop.c
7949
7950 IDEAPAD LAPTOP SLIDEBAR DRIVER
7951 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
7952 L:      linux-input@vger.kernel.org
7953 W:      https://github.com/o2genum/ideapad-slidebar
7954 S:      Maintained
7955 F:      drivers/input/misc/ideapad_slidebar.c
7956
7957 IDT VersaClock 5 CLOCK DRIVER
7958 M:      Marek Vasut <marek.vasut@gmail.com>
7959 S:      Maintained
7960 F:      drivers/clk/clk-versaclock5.c
7961
7962 IEEE 802.15.4 SUBSYSTEM
7963 M:      Alexander Aring <alex.aring@gmail.com>
7964 M:      Stefan Schmidt <stefan@datenfreihafen.org>
7965 L:      linux-wpan@vger.kernel.org
7966 W:      http://wpan.cakelab.org/
7967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
7968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
7969 S:      Maintained
7970 F:      net/ieee802154/
7971 F:      net/mac802154/
7972 F:      drivers/net/ieee802154/
7973 F:      include/linux/nl802154.h
7974 F:      include/linux/ieee802154.h
7975 F:      include/net/nl802154.h
7976 F:      include/net/mac802154.h
7977 F:      include/net/af_ieee802154.h
7978 F:      include/net/cfg802154.h
7979 F:      include/net/ieee802154_netdev.h
7980 F:      Documentation/networking/ieee802154.rst
7981
7982 IFE PROTOCOL
7983 M:      Yotam Gigi <yotam.gi@gmail.com>
7984 M:      Jamal Hadi Salim <jhs@mojatatu.com>
7985 F:      net/ife
7986 F:      include/net/ife.h
7987 F:      include/uapi/linux/ife.h
7988
7989 IGORPLUG-USB IR RECEIVER
7990 M:      Sean Young <sean@mess.org>
7991 L:      linux-media@vger.kernel.org
7992 S:      Maintained
7993 F:      drivers/media/rc/igorplugusb.c
7994
7995 IGUANAWORKS USB IR TRANSCEIVER
7996 M:      Sean Young <sean@mess.org>
7997 L:      linux-media@vger.kernel.org
7998 S:      Maintained
7999 F:      drivers/media/rc/iguanair.c
8000
8001 IIO DIGITAL POTENTIOMETER DAC
8002 M:      Peter Rosin <peda@axentia.se>
8003 L:      linux-iio@vger.kernel.org
8004 S:      Maintained
8005 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8006 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8007 F:      drivers/iio/dac/dpot-dac.c
8008
8009 IIO ENVELOPE DETECTOR
8010 M:      Peter Rosin <peda@axentia.se>
8011 L:      linux-iio@vger.kernel.org
8012 S:      Maintained
8013 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8014 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8015 F:      drivers/iio/adc/envelope-detector.c
8016
8017 IIO MULTIPLEXER
8018 M:      Peter Rosin <peda@axentia.se>
8019 L:      linux-iio@vger.kernel.org
8020 S:      Maintained
8021 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8022 F:      drivers/iio/multiplexer/iio-mux.c
8023
8024 IIO SUBSYSTEM AND DRIVERS
8025 M:      Jonathan Cameron <jic23@kernel.org>
8026 R:      Hartmut Knaack <knaack.h@gmx.de>
8027 R:      Lars-Peter Clausen <lars@metafoo.de>
8028 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8029 L:      linux-iio@vger.kernel.org
8030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8031 S:      Maintained
8032 F:      Documentation/ABI/testing/configfs-iio*
8033 F:      Documentation/ABI/testing/sysfs-bus-iio*
8034 F:      Documentation/devicetree/bindings/iio/
8035 F:      drivers/iio/
8036 F:      drivers/staging/iio/
8037 F:      include/linux/iio/
8038 F:      tools/iio/
8039
8040 IIO UNIT CONVERTER
8041 M:      Peter Rosin <peda@axentia.se>
8042 L:      linux-iio@vger.kernel.org
8043 S:      Maintained
8044 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8045 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8046 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8047 F:      drivers/iio/afe/iio-rescale.c
8048
8049 IKANOS/ADI EAGLE ADSL USB DRIVER
8050 M:      Matthieu Castet <castet.matthieu@free.fr>
8051 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8052 S:      Maintained
8053 F:      drivers/usb/atm/ueagle-atm.c
8054
8055 IMGTEC ASCII LCD DRIVER
8056 M:      Paul Burton <paulburton@kernel.org>
8057 S:      Maintained
8058 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8059 F:      drivers/auxdisplay/img-ascii-lcd.c
8060
8061 IMGTEC IR DECODER DRIVER
8062 M:      James Hogan <jhogan@kernel.org>
8063 S:      Maintained
8064 F:      drivers/media/rc/img-ir/
8065
8066 IMON SOUNDGRAPH USB IR RECEIVER
8067 M:      Sean Young <sean@mess.org>
8068 L:      linux-media@vger.kernel.org
8069 S:      Maintained
8070 F:      drivers/media/rc/imon_raw.c
8071 F:      drivers/media/rc/imon.c
8072
8073 IMS TWINTURBO FRAMEBUFFER DRIVER
8074 L:      linux-fbdev@vger.kernel.org
8075 S:      Orphan
8076 F:      drivers/video/fbdev/imsttfb.c
8077
8078 INA209 HARDWARE MONITOR DRIVER
8079 M:      Guenter Roeck <linux@roeck-us.net>
8080 L:      linux-hwmon@vger.kernel.org
8081 S:      Maintained
8082 F:      Documentation/hwmon/ina209.rst
8083 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8084 F:      drivers/hwmon/ina209.c
8085
8086 INA2XX HARDWARE MONITOR DRIVER
8087 M:      Guenter Roeck <linux@roeck-us.net>
8088 L:      linux-hwmon@vger.kernel.org
8089 S:      Maintained
8090 F:      Documentation/hwmon/ina2xx.rst
8091 F:      drivers/hwmon/ina2xx.c
8092 F:      include/linux/platform_data/ina2xx.h
8093
8094 INDUSTRY PACK SUBSYSTEM (IPACK)
8095 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8096 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8097 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8098 L:      industrypack-devel@lists.sourceforge.net
8099 W:      http://industrypack.sourceforge.net
8100 S:      Maintained
8101 F:      drivers/ipack/
8102
8103 INFINEON DPS310 Driver
8104 M:      Eddie James <eajames@linux.ibm.com>
8105 L:      linux-iio@vger.kernel.org
8106 F:      drivers/iio/pressure/dps310.c
8107 S:      Maintained
8108
8109 INFINIBAND SUBSYSTEM
8110 M:      Doug Ledford <dledford@redhat.com>
8111 M:      Jason Gunthorpe <jgg@mellanox.com>
8112 L:      linux-rdma@vger.kernel.org
8113 W:      https://github.com/linux-rdma/rdma-core
8114 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8116 S:      Supported
8117 F:      Documentation/devicetree/bindings/infiniband/
8118 F:      Documentation/infiniband/
8119 F:      drivers/infiniband/
8120 F:      include/uapi/linux/if_infiniband.h
8121 F:      include/uapi/rdma/
8122 F:      include/rdma/
8123 F:      include/trace/events/ib_mad.h
8124 F:      include/trace/events/ib_umad.h
8125 F:      samples/bpf/ibumad_kern.c
8126 F:      samples/bpf/ibumad_user.c
8127
8128 INGENIC JZ4780 DMA Driver
8129 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8130 S:      Maintained
8131 F:      drivers/dma/dma-jz4780.c
8132
8133 INGENIC JZ4780 NAND DRIVER
8134 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8135 L:      linux-mtd@lists.infradead.org
8136 S:      Maintained
8137 F:      drivers/mtd/nand/raw/ingenic/
8138
8139 INGENIC JZ47xx SoCs
8140 M:      Paul Cercueil <paul@crapouillou.net>
8141 S:      Maintained
8142 F:      arch/mips/boot/dts/ingenic/
8143 F:      arch/mips/include/asm/mach-jz4740/
8144 F:      arch/mips/jz4740/
8145 F:      drivers/clk/ingenic/
8146 F:      drivers/dma/dma-jz4780.c
8147 F:      drivers/gpu/drm/ingenic/
8148 F:      drivers/i2c/busses/i2c-jz4780.c
8149 F:      drivers/iio/adc/ingenic-adc.c
8150 F:      drivers/irqchip/irq-ingenic.c
8151 F:      drivers/memory/jz4780-nemc.c
8152 F:      drivers/mmc/host/jz4740_mmc.c
8153 F:      drivers/mtd/nand/raw/ingenic/
8154 F:      drivers/pinctrl/pinctrl-ingenic.c
8155 F:      drivers/power/supply/ingenic-battery.c
8156 F:      drivers/pwm/pwm-jz4740.c
8157 F:      drivers/rtc/rtc-jz4740.c
8158 F:      drivers/tty/serial/8250/8250_ingenic.c
8159 F:      drivers/usb/musb/jz4740.c
8160 F:      drivers/watchdog/jz4740_wdt.c
8161 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8162 F:      include/linux/mfd/ingenic-tcu.h
8163 F:      sound/soc/jz4740/
8164 F:      sound/soc/codecs/jz47*
8165
8166 INOTIFY
8167 M:      Jan Kara <jack@suse.cz>
8168 R:      Amir Goldstein <amir73il@gmail.com>
8169 L:      linux-fsdevel@vger.kernel.org
8170 S:      Maintained
8171 F:      Documentation/filesystems/inotify.txt
8172 F:      fs/notify/inotify/
8173 F:      include/linux/inotify.h
8174 F:      include/uapi/linux/inotify.h
8175
8176 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8177 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8178 L:      linux-input@vger.kernel.org
8179 Q:      http://patchwork.kernel.org/project/linux-input/list/
8180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8181 S:      Maintained
8182 F:      drivers/input/
8183 F:      include/linux/input.h
8184 F:      include/uapi/linux/input.h
8185 F:      include/uapi/linux/input-event-codes.h
8186 F:      include/linux/input/
8187 F:      Documentation/devicetree/bindings/input/
8188 F:      Documentation/devicetree/bindings/serio/
8189 F:      Documentation/input/
8190
8191 INPUT MULTITOUCH (MT) PROTOCOL
8192 M:      Henrik Rydberg <rydberg@bitmath.org>
8193 L:      linux-input@vger.kernel.org
8194 S:      Odd fixes
8195 F:      Documentation/input/multi-touch-protocol.rst
8196 F:      drivers/input/input-mt.c
8197 K:      \b(ABS|SYN)_MT_
8198
8199 INSIDE SECURE CRYPTO DRIVER
8200 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8201 F:      drivers/crypto/inside-secure/
8202 S:      Maintained
8203 L:      linux-crypto@vger.kernel.org
8204
8205 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8206 M:      Mimi Zohar <zohar@linux.ibm.com>
8207 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8208 L:      linux-integrity@vger.kernel.org
8209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8210 S:      Supported
8211 F:      security/integrity/ima/
8212
8213 INTEL 810/815 FRAMEBUFFER DRIVER
8214 M:      Antonino Daplas <adaplas@gmail.com>
8215 L:      linux-fbdev@vger.kernel.org
8216 S:      Maintained
8217 F:      drivers/video/fbdev/i810/
8218
8219 INTEL ASoC DRIVERS
8220 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8221 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8222 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8223 M:      Jie Yang <yang.jie@linux.intel.com>
8224 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8225 S:      Supported
8226 F:      sound/soc/intel/
8227
8228 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8229 M:      Hans de Goede <hdegoede@redhat.com>
8230 L:      platform-driver-x86@vger.kernel.org
8231 S:      Maintained
8232 F:      drivers/platform/x86/intel_atomisp2_pm.c
8233
8234 INTEL C600 SERIES SAS CONTROLLER DRIVER
8235 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8236 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8237 L:      linux-scsi@vger.kernel.org
8238 T:      git git://git.code.sf.net/p/intel-sas/isci
8239 S:      Supported
8240 F:      drivers/scsi/isci/
8241
8242 INTEL CPU family model numbers
8243 M:      Tony Luck <tony.luck@intel.com>
8244 M:      x86@kernel.org
8245 L:      linux-kernel@vger.kernel.org
8246 S:      Supported
8247 F:      arch/x86/include/asm/intel-family.h
8248
8249 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8250 M:      Jani Nikula <jani.nikula@linux.intel.com>
8251 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8252 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8253 L:      intel-gfx@lists.freedesktop.org
8254 W:      https://01.org/linuxgraphics/
8255 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
8256 C:      irc://chat.freenode.net/intel-gfx
8257 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8258 T:      git git://anongit.freedesktop.org/drm-intel
8259 S:      Supported
8260 F:      drivers/gpu/drm/i915/
8261 F:      include/drm/i915*
8262 F:      include/uapi/drm/i915_drm.h
8263 F:      Documentation/gpu/i915.rst
8264
8265 INTEL ETHERNET DRIVERS
8266 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8267 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8268 W:      http://www.intel.com/support/feedback.htm
8269 W:      http://e1000.sourceforge.net/
8270 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8273 S:      Supported
8274 F:      Documentation/networking/device_drivers/intel/e100.rst
8275 F:      Documentation/networking/device_drivers/intel/e1000.rst
8276 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8277 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8278 F:      Documentation/networking/device_drivers/intel/igb.rst
8279 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8280 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8281 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8282 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8283 F:      Documentation/networking/device_drivers/intel/i40e.rst
8284 F:      Documentation/networking/device_drivers/intel/iavf.rst
8285 F:      Documentation/networking/device_drivers/intel/ice.rst
8286 F:      drivers/net/ethernet/intel/
8287 F:      drivers/net/ethernet/intel/*/
8288 F:      include/linux/avf/virtchnl.h
8289
8290 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8291 M:      Maik Broemme <mbroemme@libmpq.org>
8292 L:      linux-fbdev@vger.kernel.org
8293 S:      Maintained
8294 F:      Documentation/fb/intelfb.rst
8295 F:      drivers/video/fbdev/intelfb/
8296
8297 INTEL GPIO DRIVERS
8298 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8299 L:      linux-gpio@vger.kernel.org
8300 S:      Maintained
8301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8302 F:      drivers/gpio/gpio-ich.c
8303 F:      drivers/gpio/gpio-intel-mid.c
8304 F:      drivers/gpio/gpio-lynxpoint.c
8305 F:      drivers/gpio/gpio-merrifield.c
8306 F:      drivers/gpio/gpio-ml-ioh.c
8307 F:      drivers/gpio/gpio-pch.c
8308 F:      drivers/gpio/gpio-sch.c
8309 F:      drivers/gpio/gpio-sodaville.c
8310
8311 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8312 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8313 M:      Zhi Wang <zhi.a.wang@intel.com>
8314 L:      intel-gvt-dev@lists.freedesktop.org
8315 L:      intel-gfx@lists.freedesktop.org
8316 W:      https://01.org/igvt-g
8317 T:      git https://github.com/intel/gvt-linux.git
8318 S:      Supported
8319 F:      drivers/gpu/drm/i915/gvt/
8320
8321 INTEL HID EVENT DRIVER
8322 M:      Alex Hung <alex.hung@canonical.com>
8323 L:      platform-driver-x86@vger.kernel.org
8324 S:      Maintained
8325 F:      drivers/platform/x86/intel-hid.c
8326
8327 INTEL I/OAT DMA DRIVER
8328 M:      Dave Jiang <dave.jiang@intel.com>
8329 R:      Dan Williams <dan.j.williams@intel.com>
8330 L:      dmaengine@vger.kernel.org
8331 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8332 S:      Supported
8333 F:      drivers/dma/ioat*
8334
8335 INTEL IDLE DRIVER
8336 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8337 M:      Len Brown <lenb@kernel.org>
8338 L:      linux-pm@vger.kernel.org
8339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8340 B:      https://bugzilla.kernel.org
8341 S:      Supported
8342 F:      drivers/idle/intel_idle.c
8343
8344 INTEL INTEGRATED SENSOR HUB DRIVER
8345 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8346 M:      Jiri Kosina <jikos@kernel.org>
8347 L:      linux-input@vger.kernel.org
8348 S:      Maintained
8349 F:      drivers/hid/intel-ish-hid/
8350
8351 INTEL IOMMU (VT-d)
8352 M:      David Woodhouse <dwmw2@infradead.org>
8353 M:      Lu Baolu <baolu.lu@linux.intel.com>
8354 L:      iommu@lists.linux-foundation.org
8355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8356 S:      Supported
8357 F:      drivers/iommu/dmar.c
8358 F:      drivers/iommu/intel*.[ch]
8359 F:      include/linux/intel-iommu.h
8360 F:      include/linux/intel-svm.h
8361
8362 INTEL IOP-ADMA DMA DRIVER
8363 R:      Dan Williams <dan.j.williams@intel.com>
8364 S:      Odd fixes
8365 F:      drivers/dma/iop-adma.c
8366
8367 INTEL IPU3 CSI-2 CIO2 DRIVER
8368 M:      Yong Zhi <yong.zhi@intel.com>
8369 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8370 M:      Bingbu Cao <bingbu.cao@intel.com>
8371 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8372 L:      linux-media@vger.kernel.org
8373 S:      Maintained
8374 F:      drivers/media/pci/intel/ipu3/
8375 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8376
8377 INTEL IPU3 CSI-2 IMGU DRIVER
8378 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8379 L:      linux-media@vger.kernel.org
8380 S:      Maintained
8381 F:      drivers/staging/media/ipu3/
8382 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8383 F:      Documentation/media/v4l-drivers/ipu3.rst
8384
8385 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8386 M:      Krzysztof Halasa <khalasa@piap.pl>
8387 S:      Maintained
8388 F:      include/linux/soc/ixp4xx/qmgr.h
8389 F:      include/linux/soc/ixp4xx/npe.h
8390 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8391 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8392 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8393 F:      drivers/net/wan/ixp4xx_hss.c
8394
8395 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8396 M:      Deepak Saxena <dsaxena@plexity.net>
8397 S:      Maintained
8398 F:      drivers/char/hw_random/ixp4xx-rng.c
8399
8400 INTEL MANAGEMENT ENGINE (mei)
8401 M:      Tomas Winkler <tomas.winkler@intel.com>
8402 L:      linux-kernel@vger.kernel.org
8403 S:      Supported
8404 F:      include/uapi/linux/mei.h
8405 F:      include/linux/mei_cl_bus.h
8406 F:      drivers/misc/mei/*
8407 F:      drivers/watchdog/mei_wdt.c
8408 F:      Documentation/driver-api/mei/*
8409 F:      samples/mei/*
8410
8411 INTEL MENLOW THERMAL DRIVER
8412 M:      Sujith Thomas <sujith.thomas@intel.com>
8413 L:      platform-driver-x86@vger.kernel.org
8414 W:      https://01.org/linux-acpi
8415 S:      Supported
8416 F:      drivers/platform/x86/intel_menlow.c
8417
8418 INTEL MIC DRIVERS (mic)
8419 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8420 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8421 S:      Supported
8422 W:      https://github.com/sudeepdutt/mic
8423 W:      http://software.intel.com/en-us/mic-developer
8424 F:      include/linux/mic_bus.h
8425 F:      include/linux/scif.h
8426 F:      include/uapi/linux/mic_common.h
8427 F:      include/uapi/linux/mic_ioctl.h
8428 F:      include/uapi/linux/scif_ioctl.h
8429 F:      drivers/misc/mic/
8430 F:      drivers/dma/mic_x100_dma.c
8431 F:      drivers/dma/mic_x100_dma.h
8432 F:      Documentation/mic/
8433
8434 INTEL PMC CORE DRIVER
8435 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8436 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8437 L:      platform-driver-x86@vger.kernel.org
8438 S:      Maintained
8439 F:      drivers/platform/x86/intel_pmc_core*
8440
8441 INTEL PMC/P-Unit IPC DRIVER
8442 M:      Zha Qipeng<qipeng.zha@intel.com>
8443 L:      platform-driver-x86@vger.kernel.org
8444 S:      Maintained
8445 F:      drivers/platform/x86/intel_pmc_ipc.c
8446 F:      drivers/platform/x86/intel_punit_ipc.c
8447 F:      arch/x86/include/asm/intel_pmc_ipc.h
8448 F:      arch/x86/include/asm/intel_punit_ipc.h
8449
8450 INTEL PMIC GPIO DRIVERS
8451 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8452 S:      Maintained
8453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8454 F:      drivers/gpio/gpio-*cove.c
8455 F:      drivers/gpio/gpio-msic.c
8456
8457 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8458 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8459 S:      Maintained
8460 F:      drivers/mfd/intel_msic.c
8461 F:      drivers/mfd/intel_soc_pmic*
8462 F:      include/linux/mfd/intel_msic.h
8463 F:      include/linux/mfd/intel_soc_pmic*
8464
8465 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8466 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8467 L:      linux-wireless@vger.kernel.org
8468 S:      Maintained
8469 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8470 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8471 F:      drivers/net/wireless/intel/ipw2x00/
8472
8473 INTEL PSTATE DRIVER
8474 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8475 M:      Len Brown <lenb@kernel.org>
8476 L:      linux-pm@vger.kernel.org
8477 S:      Supported
8478 F:      drivers/cpufreq/intel_pstate.c
8479
8480 INTEL RDMA RNIC DRIVER
8481 M:      Faisal Latif <faisal.latif@intel.com>
8482 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8483 L:      linux-rdma@vger.kernel.org
8484 S:      Supported
8485 F:      drivers/infiniband/hw/i40iw/
8486 F:      include/uapi/rdma/i40iw-abi.h
8487
8488 INTEL SPEED SELECT TECHNOLOGY
8489 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8490 L:      platform-driver-x86@vger.kernel.org
8491 S:      Maintained
8492 F:      drivers/platform/x86/intel_speed_select_if/
8493 F:      tools/power/x86/intel-speed-select/
8494 F:      include/uapi/linux/isst_if.h
8495
8496 INTEL STRATIX10 FIRMWARE DRIVERS
8497 M:      Richard Gong <richard.gong@linux.intel.com>
8498 L:      linux-kernel@vger.kernel.org
8499 S:      Maintained
8500 F:      drivers/firmware/stratix10-rsu.c
8501 F:      drivers/firmware/stratix10-svc.c
8502 F:      include/linux/firmware/intel/stratix10-smc.h
8503 F:      include/linux/firmware/intel/stratix10-svc-client.h
8504 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8505 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8506
8507 INTEL TELEMETRY DRIVER
8508 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8509 M:      "David E. Box" <david.e.box@linux.intel.com>
8510 L:      platform-driver-x86@vger.kernel.org
8511 S:      Maintained
8512 F:      arch/x86/include/asm/intel_telemetry.h
8513 F:      drivers/platform/x86/intel_telemetry*
8514
8515 INTEL VIRTUAL BUTTON DRIVER
8516 M:      AceLan Kao <acelan.kao@canonical.com>
8517 L:      platform-driver-x86@vger.kernel.org
8518 S:      Maintained
8519 F:      drivers/platform/x86/intel-vbtn.c
8520
8521 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8522 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8523 L:      linux-wireless@vger.kernel.org
8524 S:      Supported
8525 F:      drivers/net/wireless/intel/iwlegacy/
8526
8527 INTEL WIRELESS WIFI LINK (iwlwifi)
8528 M:      Johannes Berg <johannes.berg@intel.com>
8529 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8530 M:      Luca Coelho <luciano.coelho@intel.com>
8531 M:      Intel Linux Wireless <linuxwifi@intel.com>
8532 L:      linux-wireless@vger.kernel.org
8533 W:      http://intellinuxwireless.org
8534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8535 S:      Supported
8536 F:      drivers/net/wireless/intel/iwlwifi/
8537
8538 INTEL WIRELESS WIMAX CONNECTION 2400
8539 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8540 M:      linux-wimax@intel.com
8541 L:      wimax@linuxwimax.org (subscribers-only)
8542 S:      Supported
8543 W:      http://linuxwimax.org
8544 F:      Documentation/admin-guide/wimax/i2400m.rst
8545 F:      drivers/net/wimax/i2400m/
8546 F:      include/uapi/linux/wimax/i2400m.h
8547
8548 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8549 M:      Mario Limonciello <mario.limonciello@dell.com>
8550 S:      Maintained
8551 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8552
8553 INTEL(R) TRACE HUB
8554 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8555 S:      Supported
8556 F:      Documentation/trace/intel_th.rst
8557 F:      drivers/hwtracing/intel_th/
8558 F:      include/linux/intel_th.h
8559
8560 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8561 M:      Ning Sun <ning.sun@intel.com>
8562 L:      tboot-devel@lists.sourceforge.net
8563 W:      http://tboot.sourceforge.net
8564 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8565 S:      Supported
8566 F:      Documentation/x86/intel_txt.rst
8567 F:      include/linux/tboot.h
8568 F:      arch/x86/kernel/tboot.c
8569
8570 INTERCONNECT API
8571 M:      Georgi Djakov <georgi.djakov@linaro.org>
8572 L:      linux-pm@vger.kernel.org
8573 S:      Maintained
8574 F:      Documentation/driver-api/interconnect.rst
8575 F:      Documentation/devicetree/bindings/interconnect/
8576 F:      drivers/interconnect/
8577 F:      include/dt-bindings/interconnect/
8578 F:      include/linux/interconnect-provider.h
8579 F:      include/linux/interconnect.h
8580
8581 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8582 M:      Linus Walleij <linus.walleij@linaro.org>
8583 L:      linux-iio@vger.kernel.org
8584 S:      Maintained
8585 F:      drivers/iio/gyro/mpu3050*
8586 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8587
8588 IOC3 ETHERNET DRIVER
8589 M:      Ralf Baechle <ralf@linux-mips.org>
8590 L:      linux-mips@vger.kernel.org
8591 S:      Maintained
8592 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8593
8594 IOMAP FILESYSTEM LIBRARY
8595 M:      Christoph Hellwig <hch@infradead.org>
8596 M:      Darrick J. Wong <darrick.wong@oracle.com>
8597 M:      linux-xfs@vger.kernel.org
8598 M:      linux-fsdevel@vger.kernel.org
8599 L:      linux-xfs@vger.kernel.org
8600 L:      linux-fsdevel@vger.kernel.org
8601 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8602 S:      Supported
8603 F:      fs/iomap/
8604 F:      include/linux/iomap.h
8605
8606 IOMMU DRIVERS
8607 M:      Joerg Roedel <joro@8bytes.org>
8608 L:      iommu@lists.linux-foundation.org
8609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8610 S:      Maintained
8611 F:      Documentation/devicetree/bindings/iommu/
8612 F:      drivers/iommu/
8613 F:      include/linux/iommu.h
8614 F:      include/linux/of_iommu.h
8615 F:      include/linux/iova.h
8616
8617 IO_URING
8618 M:      Jens Axboe <axboe@kernel.dk>
8619 L:      io-uring@vger.kernel.org
8620 T:      git git://git.kernel.dk/linux-block
8621 T:      git git://git.kernel.dk/liburing
8622 S:      Maintained
8623 F:      fs/io_uring.c
8624 F:      fs/io-wq.c
8625 F:      fs/io-wq.h
8626 F:      include/uapi/linux/io_uring.h
8627
8628 IPMI SUBSYSTEM
8629 M:      Corey Minyard <minyard@acm.org>
8630 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
8631 W:      http://openipmi.sourceforge.net/
8632 S:      Supported
8633 F:      Documentation/devicetree/bindings/ipmi/
8634 F:      Documentation/IPMI.txt
8635 F:      drivers/char/ipmi/
8636 F:      include/linux/ipmi*
8637 F:      include/uapi/linux/ipmi*
8638
8639 IPS SCSI RAID DRIVER
8640 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
8641 L:      linux-scsi@vger.kernel.org
8642 W:      http://www.adaptec.com/
8643 S:      Maintained
8644 F:      drivers/scsi/ips*
8645
8646 IPVS
8647 M:      Wensong Zhang <wensong@linux-vs.org>
8648 M:      Simon Horman <horms@verge.net.au>
8649 M:      Julian Anastasov <ja@ssi.bg>
8650 L:      netdev@vger.kernel.org
8651 L:      lvs-devel@vger.kernel.org
8652 S:      Maintained
8653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8655 F:      Documentation/networking/ipvs-sysctl.txt
8656 F:      include/net/ip_vs.h
8657 F:      include/uapi/linux/ip_vs.h
8658 F:      net/netfilter/ipvs/
8659
8660 IPWIRELESS DRIVER
8661 M:      Jiri Kosina <jikos@kernel.org>
8662 M:      David Sterba <dsterba@suse.com>
8663 S:      Odd Fixes
8664 F:      drivers/tty/ipwireless/
8665
8666 IPX NETWORK LAYER
8667 L:      netdev@vger.kernel.org
8668 S:      Obsolete
8669 F:      include/uapi/linux/ipx.h
8670
8671 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8672 M:      Marc Zyngier <maz@kernel.org>
8673 S:      Maintained
8674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8675 F:      Documentation/IRQ-domain.txt
8676 F:      include/linux/irqdomain.h
8677 F:      kernel/irq/irqdomain.c
8678 F:      kernel/irq/msi.c
8679
8680 IRQ SUBSYSTEM
8681 M:      Thomas Gleixner <tglx@linutronix.de>
8682 L:      linux-kernel@vger.kernel.org
8683 S:      Maintained
8684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8685 F:      kernel/irq/
8686
8687 IRQCHIP DRIVERS
8688 M:      Thomas Gleixner <tglx@linutronix.de>
8689 M:      Jason Cooper <jason@lakedaemon.net>
8690 M:      Marc Zyngier <maz@kernel.org>
8691 L:      linux-kernel@vger.kernel.org
8692 S:      Maintained
8693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8694 F:      Documentation/devicetree/bindings/interrupt-controller/
8695 F:      drivers/irqchip/
8696
8697 ISA
8698 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8699 S:      Maintained
8700 F:      Documentation/driver-api/isa.rst
8701 F:      drivers/base/isa.c
8702 F:      include/linux/isa.h
8703
8704 ISA RADIO MODULE
8705 M:      Hans Verkuil <hverkuil@xs4all.nl>
8706 L:      linux-media@vger.kernel.org
8707 T:      git git://linuxtv.org/media_tree.git
8708 W:      https://linuxtv.org
8709 S:      Maintained
8710 F:      drivers/media/radio/radio-isa*
8711
8712 ISAPNP
8713 M:      Jaroslav Kysela <perex@perex.cz>
8714 S:      Maintained
8715 F:      Documentation/driver-api/isapnp.rst
8716 F:      drivers/pnp/isapnp/
8717 F:      include/linux/isapnp.h
8718
8719 ISCSI
8720 M:      Lee Duncan <lduncan@suse.com>
8721 M:      Chris Leech <cleech@redhat.com>
8722 L:      open-iscsi@googlegroups.com
8723 W:      www.open-iscsi.com
8724 S:      Maintained
8725 F:      drivers/scsi/*iscsi*
8726 F:      include/scsi/*iscsi*
8727
8728 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8729 M:      Peter Jones <pjones@redhat.com>
8730 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
8731 S:      Maintained
8732 F:      drivers/firmware/iscsi_ibft*
8733
8734 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8735 M:      Sagi Grimberg <sagi@grimberg.me>
8736 M:      Max Gurtovoy <maxg@mellanox.com>
8737 L:      linux-rdma@vger.kernel.org
8738 S:      Supported
8739 W:      http://www.openfabrics.org
8740 W:      www.open-iscsi.org
8741 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8742 F:      drivers/infiniband/ulp/iser/
8743
8744 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
8745 M:      Sagi Grimberg <sagi@grimberg.me>
8746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
8747 L:      linux-rdma@vger.kernel.org
8748 L:      target-devel@vger.kernel.org
8749 S:      Supported
8750 W:      http://www.linux-iscsi.org
8751 F:      drivers/infiniband/ulp/isert
8752
8753 ISDN/mISDN SUBSYSTEM
8754 M:      Karsten Keil <isdn@linux-pingi.de>
8755 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8756 L:      netdev@vger.kernel.org
8757 W:      http://www.isdn4linux.de
8758 S:      Maintained
8759 F:      drivers/isdn/mISDN
8760 F:      drivers/isdn/hardware
8761
8762 ISDN/CAPI SUBSYSTEM
8763 M:      Karsten Keil <isdn@linux-pingi.de>
8764 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8765 L:      netdev@vger.kernel.org
8766 W:      http://www.isdn4linux.de
8767 S:      Odd Fixes
8768 F:      Documentation/isdn/
8769 F:      drivers/isdn/capi/
8770 F:      drivers/staging/isdn/
8771 F:      net/bluetooth/cmtp/
8772 F:      include/linux/isdn/
8773 F:      include/uapi/linux/isdn/
8774
8775 IT87 HARDWARE MONITORING DRIVER
8776 M:      Jean Delvare <jdelvare@suse.com>
8777 L:      linux-hwmon@vger.kernel.org
8778 S:      Maintained
8779 F:      Documentation/hwmon/it87.rst
8780 F:      drivers/hwmon/it87.c
8781
8782 IT913X MEDIA DRIVER
8783 M:      Antti Palosaari <crope@iki.fi>
8784 L:      linux-media@vger.kernel.org
8785 W:      https://linuxtv.org
8786 W:      http://palosaari.fi/linux/
8787 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8788 T:      git git://linuxtv.org/anttip/media_tree.git
8789 S:      Maintained
8790 F:      drivers/media/tuners/it913x*
8791
8792 IVTV VIDEO4LINUX DRIVER
8793 M:      Andy Walls <awalls@md.metrocast.net>
8794 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
8795 L:      linux-media@vger.kernel.org
8796 T:      git git://linuxtv.org/media_tree.git
8797 W:      http://www.ivtvdriver.org
8798 S:      Maintained
8799 F:      Documentation/media/v4l-drivers/ivtv*
8800 F:      drivers/media/pci/ivtv/
8801 F:      include/uapi/linux/ivtv*
8802
8803 IX2505V MEDIA DRIVER
8804 M:      Malcolm Priestley <tvboxspy@gmail.com>
8805 L:      linux-media@vger.kernel.org
8806 W:      https://linuxtv.org
8807 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8808 S:      Maintained
8809 F:      drivers/media/dvb-frontends/ix2505v*
8810
8811 JAILHOUSE HYPERVISOR INTERFACE
8812 M:      Jan Kiszka <jan.kiszka@siemens.com>
8813 L:      jailhouse-dev@googlegroups.com
8814 S:      Maintained
8815 F:      arch/x86/kernel/jailhouse.c
8816 F:      arch/x86/include/asm/jailhouse_para.h
8817
8818 JC42.4 TEMPERATURE SENSOR DRIVER
8819 M:      Guenter Roeck <linux@roeck-us.net>
8820 L:      linux-hwmon@vger.kernel.org
8821 S:      Maintained
8822 F:      drivers/hwmon/jc42.c
8823 F:      Documentation/hwmon/jc42.rst
8824
8825 JFS FILESYSTEM
8826 M:      Dave Kleikamp <shaggy@kernel.org>
8827 L:      jfs-discussion@lists.sourceforge.net
8828 W:      http://jfs.sourceforge.net/
8829 T:      git git://github.com/kleikamp/linux-shaggy.git
8830 S:      Maintained
8831 F:      Documentation/admin-guide/jfs.rst
8832 F:      fs/jfs/
8833
8834 JME NETWORK DRIVER
8835 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
8836 L:      netdev@vger.kernel.org
8837 S:      Maintained
8838 F:      drivers/net/ethernet/jme.*
8839
8840 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
8841 M:      David Woodhouse <dwmw2@infradead.org>
8842 M:      Richard Weinberger <richard@nod.at>
8843 L:      linux-mtd@lists.infradead.org
8844 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
8845 T:      git git://git.infradead.org/ubifs-2.6.git
8846 S:      Odd Fixes
8847 F:      fs/jffs2/
8848 F:      include/uapi/linux/jffs2.h
8849
8850 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
8851 M:      "Theodore Ts'o" <tytso@mit.edu>
8852 M:      Jan Kara <jack@suse.com>
8853 L:      linux-ext4@vger.kernel.org
8854 S:      Maintained
8855 F:      fs/jbd2/
8856 F:      include/linux/jbd2.h
8857
8858 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
8859 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
8860 L:      linux-media@vger.kernel.org
8861 S:      Maintained
8862 F:      drivers/media/platform/rcar_jpu.c
8863
8864 JSM Neo PCI based serial card
8865 L:      linux-serial@vger.kernel.org
8866 S:      Orphan
8867 F:      drivers/tty/serial/jsm/
8868
8869 K10TEMP HARDWARE MONITORING DRIVER
8870 M:      Clemens Ladisch <clemens@ladisch.de>
8871 L:      linux-hwmon@vger.kernel.org
8872 S:      Maintained
8873 F:      Documentation/hwmon/k10temp.rst
8874 F:      drivers/hwmon/k10temp.c
8875
8876 K8TEMP HARDWARE MONITORING DRIVER
8877 M:      Rudolf Marek <r.marek@assembler.cz>
8878 L:      linux-hwmon@vger.kernel.org
8879 S:      Maintained
8880 F:      Documentation/hwmon/k8temp.rst
8881 F:      drivers/hwmon/k8temp.c
8882
8883 KASAN
8884 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
8885 R:      Alexander Potapenko <glider@google.com>
8886 R:      Dmitry Vyukov <dvyukov@google.com>
8887 L:      kasan-dev@googlegroups.com
8888 S:      Maintained
8889 F:      arch/*/include/asm/kasan.h
8890 F:      arch/*/mm/kasan_init*
8891 F:      Documentation/dev-tools/kasan.rst
8892 F:      include/linux/kasan*.h
8893 F:      lib/test_kasan.c
8894 F:      mm/kasan/
8895 F:      scripts/Makefile.kasan
8896
8897 KCONFIG
8898 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
8900 L:      linux-kbuild@vger.kernel.org
8901 S:      Maintained
8902 F:      Documentation/kbuild/kconfig*
8903 F:      scripts/kconfig/
8904 F:      scripts/Kconfig.include
8905
8906 KDUMP
8907 M:      Dave Young <dyoung@redhat.com>
8908 M:      Baoquan He <bhe@redhat.com>
8909 R:      Vivek Goyal <vgoyal@redhat.com>
8910 L:      kexec@lists.infradead.org
8911 W:      http://lse.sourceforge.net/kdump/
8912 S:      Maintained
8913 F:      Documentation/admin-guide/kdump/
8914
8915 KEENE FM RADIO TRANSMITTER DRIVER
8916 M:      Hans Verkuil <hverkuil@xs4all.nl>
8917 L:      linux-media@vger.kernel.org
8918 T:      git git://linuxtv.org/media_tree.git
8919 W:      https://linuxtv.org
8920 S:      Maintained
8921 F:      drivers/media/radio/radio-keene*
8922
8923 KERNEL AUTOMOUNTER
8924 M:      Ian Kent <raven@themaw.net>
8925 L:      autofs@vger.kernel.org
8926 S:      Maintained
8927 F:      fs/autofs/
8928
8929 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
8930 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8931 M:      Michal Marek <michal.lkml@markovi.net>
8932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
8933 L:      linux-kbuild@vger.kernel.org
8934 S:      Maintained
8935 F:      Documentation/kbuild/
8936 F:      Makefile
8937 F:      scripts/Kbuild*
8938 F:      scripts/Makefile*
8939 F:      scripts/basic/
8940 F:      scripts/mk*
8941 F:      scripts/*vmlinux*
8942 F:      scripts/mod/
8943 F:      scripts/package/
8944
8945 KERNEL JANITORS
8946 L:      kernel-janitors@vger.kernel.org
8947 W:      http://kernelnewbies.org/KernelJanitors
8948 S:      Odd Fixes
8949
8950 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
8951 M:      "J. Bruce Fields" <bfields@fieldses.org>
8952 M:      Chuck Lever <chuck.lever@oracle.com>
8953 L:      linux-nfs@vger.kernel.org
8954 W:      http://nfs.sourceforge.net/
8955 T:      git git://linux-nfs.org/~bfields/linux.git
8956 S:      Supported
8957 F:      fs/nfsd/
8958 F:      include/uapi/linux/nfsd/
8959 F:      fs/lockd/
8960 F:      fs/nfs_common/
8961 F:      net/sunrpc/
8962 F:      include/linux/lockd/
8963 F:      include/linux/sunrpc/
8964 F:      include/uapi/linux/sunrpc/
8965
8966 KERNEL SELFTEST FRAMEWORK
8967 M:      Shuah Khan <shuah@kernel.org>
8968 M:      Shuah Khan <skhan@linuxfoundation.org>
8969 L:      linux-kselftest@vger.kernel.org
8970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
8971 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
8972 S:      Maintained
8973 F:      tools/testing/selftests/
8974 F:      Documentation/dev-tools/kselftest*
8975
8976 KERNEL UNIT TESTING FRAMEWORK (KUnit)
8977 M:      Brendan Higgins <brendanhiggins@google.com>
8978 L:      linux-kselftest@vger.kernel.org
8979 L:      kunit-dev@googlegroups.com
8980 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
8981 S:      Maintained
8982 F:      Documentation/dev-tools/kunit/
8983 F:      include/kunit/
8984 F:      lib/kunit/
8985 F:      tools/testing/kunit/
8986
8987 KERNEL USERMODE HELPER
8988 M:      Luis Chamberlain <mcgrof@kernel.org>
8989 L:      linux-kernel@vger.kernel.org
8990 S:      Maintained
8991 F:      kernel/umh.c
8992 F:      include/linux/umh.h
8993
8994 KERNEL VIRTUAL MACHINE (KVM)
8995 M:      Paolo Bonzini <pbonzini@redhat.com>
8996 M:      Radim Krčmář <rkrcmar@redhat.com>
8997 L:      kvm@vger.kernel.org
8998 W:      http://www.linux-kvm.org
8999 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9000 S:      Supported
9001 F:      Documentation/virt/kvm/
9002 F:      include/trace/events/kvm.h
9003 F:      include/uapi/asm-generic/kvm*
9004 F:      include/uapi/linux/kvm*
9005 F:      include/asm-generic/kvm*
9006 F:      include/linux/kvm*
9007 F:      include/kvm/iodev.h
9008 F:      virt/kvm/*
9009 F:      tools/kvm/
9010 F:      tools/testing/selftests/kvm/
9011
9012 KERNEL VIRTUAL MACHINE FOR ARM/ARM64 (KVM/arm, KVM/arm64)
9013 M:      Marc Zyngier <maz@kernel.org>
9014 R:      James Morse <james.morse@arm.com>
9015 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9016 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9018 L:      kvmarm@lists.cs.columbia.edu
9019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9020 S:      Maintained
9021 F:      arch/arm/include/uapi/asm/kvm*
9022 F:      arch/arm/include/asm/kvm*
9023 F:      arch/arm/kvm/
9024 F:      arch/arm64/include/uapi/asm/kvm*
9025 F:      arch/arm64/include/asm/kvm*
9026 F:      arch/arm64/kvm/
9027 F:      virt/kvm/arm/
9028 F:      include/kvm/arm_*
9029
9030 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9031 M:      James Hogan <jhogan@kernel.org>
9032 L:      linux-mips@vger.kernel.org
9033 S:      Supported
9034 F:      arch/mips/include/uapi/asm/kvm*
9035 F:      arch/mips/include/asm/kvm*
9036 F:      arch/mips/kvm/
9037
9038 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9039 M:      Paul Mackerras <paulus@ozlabs.org>
9040 L:      kvm-ppc@vger.kernel.org
9041 W:      http://www.linux-kvm.org/
9042 T:      git git://github.com/agraf/linux-2.6.git
9043 S:      Supported
9044 F:      arch/powerpc/include/uapi/asm/kvm*
9045 F:      arch/powerpc/include/asm/kvm*
9046 F:      arch/powerpc/kvm/
9047 F:      arch/powerpc/kernel/kvm*
9048
9049 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9050 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9051 M:      Janosch Frank <frankja@linux.ibm.com>
9052 R:      David Hildenbrand <david@redhat.com>
9053 R:      Cornelia Huck <cohuck@redhat.com>
9054 L:      kvm@vger.kernel.org
9055 W:      http://www.ibm.com/developerworks/linux/linux390/
9056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9057 S:      Supported
9058 F:      arch/s390/include/uapi/asm/kvm*
9059 F:      arch/s390/include/asm/gmap.h
9060 F:      arch/s390/include/asm/kvm*
9061 F:      arch/s390/kvm/
9062 F:      arch/s390/mm/gmap.c
9063 F:      tools/testing/selftests/kvm/s390x/
9064 F:      tools/testing/selftests/kvm/*/s390x/
9065
9066 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9067 M:      Paolo Bonzini <pbonzini@redhat.com>
9068 M:      Radim Krčmář <rkrcmar@redhat.com>
9069 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9070 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9071 R:      Wanpeng Li <wanpengli@tencent.com>
9072 R:      Jim Mattson <jmattson@google.com>
9073 R:      Joerg Roedel <joro@8bytes.org>
9074 L:      kvm@vger.kernel.org
9075 W:      http://www.linux-kvm.org
9076 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9077 S:      Supported
9078 F:      arch/x86/kvm/
9079 F:      arch/x86/kvm/*/
9080 F:      arch/x86/include/uapi/asm/kvm*
9081 F:      arch/x86/include/uapi/asm/vmx.h
9082 F:      arch/x86/include/uapi/asm/svm.h
9083 F:      arch/x86/include/asm/kvm*
9084 F:      arch/x86/include/asm/pvclock-abi.h
9085 F:      arch/x86/include/asm/svm.h
9086 F:      arch/x86/include/asm/vmx.h
9087 F:      arch/x86/kernel/kvm.c
9088 F:      arch/x86/kernel/kvmclock.c
9089
9090 KERNFS
9091 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9092 M:      Tejun Heo <tj@kernel.org>
9093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9094 S:      Supported
9095 F:      include/linux/kernfs.h
9096 F:      fs/kernfs/
9097
9098 KEXEC
9099 M:      Eric Biederman <ebiederm@xmission.com>
9100 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9101 L:      kexec@lists.infradead.org
9102 S:      Maintained
9103 F:      include/linux/kexec.h
9104 F:      include/uapi/linux/kexec.h
9105 F:      kernel/kexec*
9106
9107 KEYS-ENCRYPTED
9108 M:      Mimi Zohar <zohar@linux.ibm.com>
9109 L:      linux-integrity@vger.kernel.org
9110 L:      keyrings@vger.kernel.org
9111 S:      Supported
9112 F:      Documentation/security/keys/trusted-encrypted.rst
9113 F:      include/keys/encrypted-type.h
9114 F:      security/keys/encrypted-keys/
9115
9116 KEYS-TRUSTED
9117 M:      James Bottomley <jejb@linux.ibm.com>
9118 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9119 M:      Mimi Zohar <zohar@linux.ibm.com>
9120 L:      linux-integrity@vger.kernel.org
9121 L:      keyrings@vger.kernel.org
9122 S:      Supported
9123 F:      Documentation/security/keys/trusted-encrypted.rst
9124 F:      include/keys/trusted-type.h
9125 F:      security/keys/trusted.c
9126 F:      include/keys/trusted.h
9127
9128 KEYS/KEYRINGS:
9129 M:      David Howells <dhowells@redhat.com>
9130 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9131 L:      keyrings@vger.kernel.org
9132 S:      Maintained
9133 F:      Documentation/security/keys/core.rst
9134 F:      include/linux/key.h
9135 F:      include/linux/key-type.h
9136 F:      include/linux/keyctl.h
9137 F:      include/uapi/linux/keyctl.h
9138 F:      include/keys/
9139 F:      security/keys/
9140
9141 KGDB / KDB /debug_core
9142 M:      Jason Wessel <jason.wessel@windriver.com>
9143 M:      Daniel Thompson <daniel.thompson@linaro.org>
9144 R:      Douglas Anderson <dianders@chromium.org>
9145 W:      http://kgdb.wiki.kernel.org/
9146 L:      kgdb-bugreport@lists.sourceforge.net
9147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9148 S:      Maintained
9149 F:      Documentation/dev-tools/kgdb.rst
9150 F:      drivers/misc/kgdbts.c
9151 F:      drivers/tty/serial/kgdboc.c
9152 F:      include/linux/kdb.h
9153 F:      include/linux/kgdb.h
9154 F:      kernel/debug/
9155
9156 KMEMLEAK
9157 M:      Catalin Marinas <catalin.marinas@arm.com>
9158 S:      Maintained
9159 F:      Documentation/dev-tools/kmemleak.rst
9160 F:      include/linux/kmemleak.h
9161 F:      mm/kmemleak.c
9162 F:      mm/kmemleak-test.c
9163
9164 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9165 M:      Luis Chamberlain <mcgrof@kernel.org>
9166 L:      linux-kernel@vger.kernel.org
9167 S:      Maintained
9168 F:      kernel/kmod.c
9169 F:      include/linux/kmod.h
9170 F:      lib/test_kmod.c
9171 F:      tools/testing/selftests/kmod/
9172
9173 KPROBES
9174 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9175 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9176 M:      "David S. Miller" <davem@davemloft.net>
9177 M:      Masami Hiramatsu <mhiramat@kernel.org>
9178 S:      Maintained
9179 F:      Documentation/kprobes.txt
9180 F:      include/linux/kprobes.h
9181 F:      include/asm-generic/kprobes.h
9182 F:      kernel/kprobes.c
9183
9184 KS0108 LCD CONTROLLER DRIVER
9185 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9186 S:      Maintained
9187 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9188 F:      drivers/auxdisplay/ks0108.c
9189 F:      include/linux/ks0108.h
9190
9191 L3MDEV
9192 M:      David Ahern <dsahern@kernel.org>
9193 L:      netdev@vger.kernel.org
9194 S:      Maintained
9195 F:      net/l3mdev
9196 F:      include/net/l3mdev.h
9197
9198 L7 BPF FRAMEWORK
9199 M:      John Fastabend <john.fastabend@gmail.com>
9200 M:      Daniel Borkmann <daniel@iogearbox.net>
9201 L:      netdev@vger.kernel.org
9202 L:      bpf@vger.kernel.org
9203 S:      Maintained
9204 F:      include/linux/skmsg.h
9205 F:      net/core/skmsg.c
9206 F:      net/core/sock_map.c
9207 F:      net/ipv4/tcp_bpf.c
9208
9209 LANTIQ / INTEL Ethernet drivers
9210 M:      Hauke Mehrtens <hauke@hauke-m.de>
9211 L:      netdev@vger.kernel.org
9212 S:      Maintained
9213 F:      net/dsa/tag_gswip.c
9214 F:      drivers/net/ethernet/lantiq_xrx200.c
9215 F:      drivers/net/dsa/lantiq_pce.h
9216 F:      drivers/net/dsa/lantiq_gswip.c
9217
9218 LANTIQ MIPS ARCHITECTURE
9219 M:      John Crispin <john@phrozen.org>
9220 L:      linux-mips@vger.kernel.org
9221 S:      Maintained
9222 F:      arch/mips/lantiq
9223 F:      drivers/soc/lantiq
9224
9225 LAPB module
9226 L:      linux-x25@vger.kernel.org
9227 S:      Orphan
9228 F:      Documentation/networking/lapb-module.txt
9229 F:      include/*/lapb.h
9230 F:      net/lapb/
9231
9232 LASI 53c700 driver for PARISC
9233 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9234 L:      linux-scsi@vger.kernel.org
9235 S:      Maintained
9236 F:      Documentation/scsi/53c700.txt
9237 F:      drivers/scsi/53c700*
9238
9239 LEAKING_ADDRESSES
9240 M:      Tobin C. Harding <me@tobin.cc>
9241 M:      Tycho Andersen <tycho@tycho.ws>
9242 L:      kernel-hardening@lists.openwall.com
9243 S:      Maintained
9244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9245 F:      scripts/leaking_addresses.pl
9246
9247 LED SUBSYSTEM
9248 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9249 M:      Pavel Machek <pavel@ucw.cz>
9250 R:      Dan Murphy <dmurphy@ti.com>
9251 L:      linux-leds@vger.kernel.org
9252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9254 S:      Maintained
9255 F:      Documentation/devicetree/bindings/leds/
9256 F:      drivers/leds/
9257 F:      include/linux/leds.h
9258
9259 LEGACY EEPROM DRIVER
9260 M:      Jean Delvare <jdelvare@suse.com>
9261 S:      Maintained
9262 F:      Documentation/misc-devices/eeprom.rst
9263 F:      drivers/misc/eeprom/eeprom.c
9264
9265 LEGO MINDSTORMS EV3
9266 R:      David Lechner <david@lechnology.com>
9267 S:      Maintained
9268 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9269 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9270 F:      drivers/power/supply/lego_ev3_battery.c
9271
9272 LEGO USB Tower driver
9273 M:      Juergen Stuber <starblue@users.sourceforge.net>
9274 L:      legousb-devel@lists.sourceforge.net
9275 W:      http://legousb.sourceforge.net/
9276 S:      Maintained
9277 F:      drivers/usb/misc/legousbtower.c
9278
9279 LG LAPTOP EXTRAS
9280 M:      Matan Ziv-Av <matan@svgalib.org>
9281 L:      platform-driver-x86@vger.kernel.org
9282 S:      Maintained
9283 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9284 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9285 F:      drivers/platform/x86/lg-laptop.c
9286
9287 LG2160 MEDIA DRIVER
9288 M:      Michael Krufky <mkrufky@linuxtv.org>
9289 L:      linux-media@vger.kernel.org
9290 W:      https://linuxtv.org
9291 W:      http://github.com/mkrufky
9292 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9293 T:      git git://linuxtv.org/mkrufky/tuners.git
9294 S:      Maintained
9295 F:      drivers/media/dvb-frontends/lg2160.*
9296
9297 LGDT3305 MEDIA DRIVER
9298 M:      Michael Krufky <mkrufky@linuxtv.org>
9299 L:      linux-media@vger.kernel.org
9300 W:      https://linuxtv.org
9301 W:      http://github.com/mkrufky
9302 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9303 T:      git git://linuxtv.org/mkrufky/tuners.git
9304 S:      Maintained
9305 F:      drivers/media/dvb-frontends/lgdt3305.*
9306
9307 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9308 M:      Viresh Kumar <vireshk@kernel.org>
9309 L:      linux-ide@vger.kernel.org
9310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9311 S:      Maintained
9312 F:      include/linux/pata_arasan_cf_data.h
9313 F:      drivers/ata/pata_arasan_cf.c
9314
9315 LIBATA PATA DRIVERS
9316 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9317 M:      Jens Axboe <axboe@kernel.dk>
9318 L:      linux-ide@vger.kernel.org
9319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9320 S:      Maintained
9321 F:      drivers/ata/pata_*.c
9322 F:      drivers/ata/ata_generic.c
9323
9324 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9325 M:      Linus Walleij <linus.walleij@linaro.org>
9326 L:      linux-ide@vger.kernel.org
9327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9328 S:      Maintained
9329 F:      drivers/ata/pata_ftide010.c
9330 F:      drivers/ata/sata_gemini.c
9331 F:      drivers/ata/sata_gemini.h
9332
9333 LIBATA SATA AHCI PLATFORM devices support
9334 M:      Hans de Goede <hdegoede@redhat.com>
9335 M:      Jens Axboe <axboe@kernel.dk>
9336 L:      linux-ide@vger.kernel.org
9337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9338 S:      Maintained
9339 F:      drivers/ata/ahci_platform.c
9340 F:      drivers/ata/libahci_platform.c
9341 F:      include/linux/ahci_platform.h
9342
9343 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9344 M:      Mikael Pettersson <mikpelinux@gmail.com>
9345 L:      linux-ide@vger.kernel.org
9346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9347 S:      Maintained
9348 F:      drivers/ata/sata_promise.*
9349
9350 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9351 M:      Jens Axboe <axboe@kernel.dk>
9352 L:      linux-ide@vger.kernel.org
9353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9354 S:      Maintained
9355 F:      drivers/ata/
9356 F:      include/linux/ata.h
9357 F:      include/linux/libata.h
9358 F:      Documentation/devicetree/bindings/ata/
9359
9360 LIBLOCKDEP
9361 M:      Sasha Levin <alexander.levin@microsoft.com>
9362 S:      Maintained
9363 F:      tools/lib/lockdep/
9364
9365 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9366 M:      Dan Williams <dan.j.williams@intel.com>
9367 M:      Vishal Verma <vishal.l.verma@intel.com>
9368 M:      Dave Jiang <dave.jiang@intel.com>
9369 L:      linux-nvdimm@lists.01.org
9370 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9371 S:      Supported
9372 F:      drivers/nvdimm/blk.c
9373 F:      drivers/nvdimm/region_devs.c
9374
9375 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9376 M:      Vishal Verma <vishal.l.verma@intel.com>
9377 M:      Dan Williams <dan.j.williams@intel.com>
9378 M:      Dave Jiang <dave.jiang@intel.com>
9379 L:      linux-nvdimm@lists.01.org
9380 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9381 S:      Supported
9382 F:      drivers/nvdimm/btt*
9383
9384 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9385 M:      Dan Williams <dan.j.williams@intel.com>
9386 M:      Vishal Verma <vishal.l.verma@intel.com>
9387 M:      Dave Jiang <dave.jiang@intel.com>
9388 L:      linux-nvdimm@lists.01.org
9389 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9390 S:      Supported
9391 F:      drivers/nvdimm/pmem*
9392
9393 LIBNVDIMM: DEVICETREE BINDINGS
9394 M:      Oliver O'Halloran <oohall@gmail.com>
9395 L:      linux-nvdimm@lists.01.org
9396 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9397 S:      Supported
9398 F:      drivers/nvdimm/of_pmem.c
9399 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9400
9401 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9402 M:      Dan Williams <dan.j.williams@intel.com>
9403 M:      Vishal Verma <vishal.l.verma@intel.com>
9404 M:      Dave Jiang <dave.jiang@intel.com>
9405 M:      Keith Busch <keith.busch@intel.com>
9406 M:      Ira Weiny <ira.weiny@intel.com>
9407 L:      linux-nvdimm@lists.01.org
9408 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9410 S:      Supported
9411 F:      drivers/nvdimm/*
9412 F:      drivers/acpi/nfit/*
9413 F:      include/linux/nd.h
9414 F:      include/linux/libnvdimm.h
9415 F:      include/uapi/linux/ndctl.h
9416
9417 LICENSES and SPDX stuff
9418 M:      Thomas Gleixner <tglx@linutronix.de>
9419 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9420 L:      linux-spdx@vger.kernel.org
9421 S:      Maintained
9422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9423 F:      COPYING
9424 F:      Documentation/process/license-rules.rst
9425 F:      LICENSES/
9426 F:      scripts/spdxcheck-test.sh
9427 F:      scripts/spdxcheck.py
9428
9429 LIGHTNVM PLATFORM SUPPORT
9430 M:      Matias Bjorling <mb@lightnvm.io>
9431 W:      http://github/OpenChannelSSD
9432 L:      linux-block@vger.kernel.org
9433 S:      Maintained
9434 F:      drivers/lightnvm/
9435 F:      include/linux/lightnvm.h
9436 F:      include/uapi/linux/lightnvm.h
9437
9438 LINUX FOR POWER MACINTOSH
9439 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9440 W:      http://www.penguinppc.org/
9441 L:      linuxppc-dev@lists.ozlabs.org
9442 S:      Maintained
9443 F:      arch/powerpc/platforms/powermac/
9444 F:      drivers/macintosh/
9445
9446 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9447 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9448 M:      Paul Mackerras <paulus@samba.org>
9449 M:      Michael Ellerman <mpe@ellerman.id.au>
9450 W:      https://github.com/linuxppc/linux/wiki
9451 L:      linuxppc-dev@lists.ozlabs.org
9452 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9454 S:      Supported
9455 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9456 F:      Documentation/devicetree/bindings/powerpc/
9457 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9458 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9459 F:      Documentation/powerpc/
9460 F:      arch/powerpc/
9461 F:      drivers/char/tpm/tpm_ibmvtpm*
9462 F:      drivers/crypto/nx/
9463 F:      drivers/crypto/vmx/
9464 F:      drivers/i2c/busses/i2c-opal.c
9465 F:      drivers/net/ethernet/ibm/ibmveth.*
9466 F:      drivers/net/ethernet/ibm/ibmvnic.*
9467 F:      drivers/pci/hotplug/pnv_php.c
9468 F:      drivers/pci/hotplug/rpa*
9469 F:      drivers/rtc/rtc-opal.c
9470 F:      drivers/scsi/ibmvscsi/
9471 F:      drivers/tty/hvc/hvc_opal.c
9472 F:      drivers/watchdog/wdrtas.c
9473 F:      tools/testing/selftests/powerpc
9474 N:      /pmac
9475 N:      powermac
9476 N:      powernv
9477 N:      [^a-z0-9]ps3
9478 N:      pseries
9479
9480 LINUX FOR POWERPC EMBEDDED MPC5XXX
9481 M:      Anatolij Gustschin <agust@denx.de>
9482 L:      linuxppc-dev@lists.ozlabs.org
9483 T:      git git://git.denx.de/linux-denx-agust.git
9484 S:      Maintained
9485 F:      arch/powerpc/platforms/512x/
9486 F:      arch/powerpc/platforms/52xx/
9487
9488 LINUX FOR POWERPC EMBEDDED PPC4XX
9489 M:      Alistair Popple <alistair@popple.id.au>
9490 M:      Matt Porter <mporter@kernel.crashing.org>
9491 W:      http://www.penguinppc.org/
9492 L:      linuxppc-dev@lists.ozlabs.org
9493 S:      Maintained
9494 F:      arch/powerpc/platforms/40x/
9495 F:      arch/powerpc/platforms/44x/
9496
9497 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9498 M:      Scott Wood <oss@buserror.net>
9499 M:      Kumar Gala <galak@kernel.crashing.org>
9500 W:      http://www.penguinppc.org/
9501 L:      linuxppc-dev@lists.ozlabs.org
9502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9503 S:      Maintained
9504 F:      arch/powerpc/platforms/83xx/
9505 F:      arch/powerpc/platforms/85xx/
9506 F:      Documentation/devicetree/bindings/powerpc/fsl/
9507
9508 LINUX FOR POWERPC EMBEDDED PPC8XX
9509 M:      Vitaly Bordug <vitb@kernel.crashing.org>
9510 W:      http://www.penguinppc.org/
9511 L:      linuxppc-dev@lists.ozlabs.org
9512 S:      Maintained
9513 F:      arch/powerpc/platforms/8xx/
9514
9515 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
9516 L:      linuxppc-dev@lists.ozlabs.org
9517 S:      Orphan
9518 F:      arch/powerpc/*/*virtex*
9519 F:      arch/powerpc/*/*/*virtex*
9520
9521 LINUX FOR POWERPC PA SEMI PWRFICIENT
9522 L:      linuxppc-dev@lists.ozlabs.org
9523 S:      Orphan
9524 F:      arch/powerpc/platforms/pasemi/
9525 F:      drivers/*/*pasemi*
9526 F:      drivers/*/*/*pasemi*
9527
9528 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9529 M:      Kees Cook <keescook@chromium.org>
9530 S:      Maintained
9531 F:      drivers/misc/lkdtm/*
9532
9533 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9534 M:      Alan Stern <stern@rowland.harvard.edu>
9535 M:      Andrea Parri <parri.andrea@gmail.com>
9536 M:      Will Deacon <will@kernel.org>
9537 M:      Peter Zijlstra <peterz@infradead.org>
9538 M:      Boqun Feng <boqun.feng@gmail.com>
9539 M:      Nicholas Piggin <npiggin@gmail.com>
9540 M:      David Howells <dhowells@redhat.com>
9541 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9542 M:      Luc Maranget <luc.maranget@inria.fr>
9543 M:      "Paul E. McKenney" <paulmck@kernel.org>
9544 R:      Akira Yokosawa <akiyks@gmail.com>
9545 R:      Daniel Lustig <dlustig@nvidia.com>
9546 L:      linux-kernel@vger.kernel.org
9547 L:      linux-arch@vger.kernel.org
9548 S:      Supported
9549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9550 F:      tools/memory-model/
9551 F:      Documentation/atomic_bitops.txt
9552 F:      Documentation/atomic_t.txt
9553 F:      Documentation/core-api/atomic_ops.rst
9554 F:      Documentation/core-api/refcount-vs-atomic.rst
9555 F:      Documentation/memory-barriers.txt
9556
9557 LIS3LV02D ACCELEROMETER DRIVER
9558 M:      Eric Piel <eric.piel@tremplin-utc.net>
9559 S:      Maintained
9560 F:      Documentation/misc-devices/lis3lv02d.rst
9561 F:      drivers/misc/lis3lv02d/
9562 F:      drivers/platform/x86/hp_accel.c
9563
9564 LIST KUNIT TEST
9565 M:      David Gow <davidgow@google.com>
9566 L:      linux-kselftest@vger.kernel.org
9567 L:      kunit-dev@googlegroups.com
9568 S:      Maintained
9569 F:      lib/list-test.c
9570
9571 LIVE PATCHING
9572 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9573 M:      Jiri Kosina <jikos@kernel.org>
9574 M:      Miroslav Benes <mbenes@suse.cz>
9575 M:      Petr Mladek <pmladek@suse.com>
9576 R:      Joe Lawrence <joe.lawrence@redhat.com>
9577 S:      Maintained
9578 F:      kernel/livepatch/
9579 F:      include/linux/livepatch.h
9580 F:      arch/x86/include/asm/livepatch.h
9581 F:      arch/x86/kernel/livepatch.c
9582 F:      Documentation/livepatch/
9583 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9584 F:      samples/livepatch/
9585 F:      tools/testing/selftests/livepatch/
9586 L:      live-patching@vger.kernel.org
9587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9588
9589 LLC (802.2)
9590 L:      netdev@vger.kernel.org
9591 S:      Odd fixes
9592 F:      include/linux/llc.h
9593 F:      include/uapi/linux/llc.h
9594 F:      include/net/llc*
9595 F:      net/llc/
9596
9597 LM73 HARDWARE MONITOR DRIVER
9598 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
9599 L:      linux-hwmon@vger.kernel.org
9600 S:      Maintained
9601 F:      drivers/hwmon/lm73.c
9602
9603 LM78 HARDWARE MONITOR DRIVER
9604 M:      Jean Delvare <jdelvare@suse.com>
9605 L:      linux-hwmon@vger.kernel.org
9606 S:      Maintained
9607 F:      Documentation/hwmon/lm78.rst
9608 F:      drivers/hwmon/lm78.c
9609
9610 LM83 HARDWARE MONITOR DRIVER
9611 M:      Jean Delvare <jdelvare@suse.com>
9612 L:      linux-hwmon@vger.kernel.org
9613 S:      Maintained
9614 F:      Documentation/hwmon/lm83.rst
9615 F:      drivers/hwmon/lm83.c
9616
9617 LM90 HARDWARE MONITOR DRIVER
9618 M:      Jean Delvare <jdelvare@suse.com>
9619 L:      linux-hwmon@vger.kernel.org
9620 S:      Maintained
9621 F:      Documentation/hwmon/lm90.rst
9622 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9623 F:      drivers/hwmon/lm90.c
9624 F:      include/dt-bindings/thermal/lm90.h
9625
9626 LM95234 HARDWARE MONITOR DRIVER
9627 M:      Guenter Roeck <linux@roeck-us.net>
9628 L:      linux-hwmon@vger.kernel.org
9629 S:      Maintained
9630 F:      Documentation/hwmon/lm95234.rst
9631 F:      drivers/hwmon/lm95234.c
9632
9633 LME2510 MEDIA DRIVER
9634 M:      Malcolm Priestley <tvboxspy@gmail.com>
9635 L:      linux-media@vger.kernel.org
9636 W:      https://linuxtv.org
9637 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9638 S:      Maintained
9639 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9640
9641 LOADPIN SECURITY MODULE
9642 M:      Kees Cook <keescook@chromium.org>
9643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9644 S:      Supported
9645 F:      security/loadpin/
9646 F:      Documentation/admin-guide/LSM/LoadPin.rst
9647
9648 LOCKING PRIMITIVES
9649 M:      Peter Zijlstra <peterz@infradead.org>
9650 M:      Ingo Molnar <mingo@redhat.com>
9651 M:      Will Deacon <will@kernel.org>
9652 L:      linux-kernel@vger.kernel.org
9653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9654 S:      Maintained
9655 F:      Documentation/locking/
9656 F:      include/linux/lockdep.h
9657 F:      include/linux/spinlock*.h
9658 F:      arch/*/include/asm/spinlock*.h
9659 F:      include/linux/rwlock*.h
9660 F:      include/linux/mutex*.h
9661 F:      include/linux/rwsem*.h
9662 F:      include/linux/seqlock.h
9663 F:      lib/locking*.[ch]
9664 F:      kernel/locking/
9665 X:      kernel/locking/locktorture.c
9666
9667 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9668 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
9669 L:      linux-ntfs-dev@lists.sourceforge.net
9670 W:      http://www.linux-ntfs.org/content/view/19/37/
9671 S:      Maintained
9672 F:      Documentation/admin-guide/ldm.rst
9673 F:      block/partitions/ldm.*
9674
9675 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9676 M:      Sathya Prakash <sathya.prakash@broadcom.com>
9677 M:      Chaitra P B <chaitra.basappa@broadcom.com>
9678 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
9679 L:      MPT-FusionLinux.pdl@broadcom.com
9680 L:      linux-scsi@vger.kernel.org
9681 W:      http://www.avagotech.com/support/
9682 S:      Supported
9683 F:      drivers/message/fusion/
9684 F:      drivers/scsi/mpt3sas/
9685
9686 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9687 M:      Matthew Wilcox <willy@infradead.org>
9688 L:      linux-scsi@vger.kernel.org
9689 S:      Maintained
9690 F:      drivers/scsi/sym53c8xx_2/
9691
9692 LTC1660 DAC DRIVER
9693 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9694 L:      linux-iio@vger.kernel.org
9695 S:      Maintained
9696 F:      Documentation/devicetree/bindings/iio/dac/ltc1660.txt
9697 F:      drivers/iio/dac/ltc1660.c
9698
9699 LTC4261 HARDWARE MONITOR DRIVER
9700 M:      Guenter Roeck <linux@roeck-us.net>
9701 L:      linux-hwmon@vger.kernel.org
9702 S:      Maintained
9703 F:      Documentation/hwmon/ltc4261.rst
9704 F:      drivers/hwmon/ltc4261.c
9705
9706 LTC4306 I2C MULTIPLEXER DRIVER
9707 M:      Michael Hennerich <michael.hennerich@analog.com>
9708 W:      http://ez.analog.com/community/linux-device-drivers
9709 L:      linux-i2c@vger.kernel.org
9710 S:      Supported
9711 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9712 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9713
9714 LTP (Linux Test Project)
9715 M:      Mike Frysinger <vapier@gentoo.org>
9716 M:      Cyril Hrubis <chrubis@suse.cz>
9717 M:      Wanlong Gao <wanlong.gao@gmail.com>
9718 M:      Jan Stancek <jstancek@redhat.com>
9719 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
9720 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
9721 L:      ltp@lists.linux.it (subscribers-only)
9722 W:      http://linux-test-project.github.io/
9723 T:      git git://github.com/linux-test-project/ltp.git
9724 S:      Maintained
9725
9726 M68K ARCHITECTURE
9727 M:      Geert Uytterhoeven <geert@linux-m68k.org>
9728 L:      linux-m68k@lists.linux-m68k.org
9729 W:      http://www.linux-m68k.org/
9730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9731 S:      Maintained
9732 F:      arch/m68k/
9733 F:      drivers/zorro/
9734
9735 M68K ON APPLE MACINTOSH
9736 M:      Joshua Thompson <funaho@jurai.org>
9737 W:      http://www.mac.linux-m68k.org/
9738 L:      linux-m68k@lists.linux-m68k.org
9739 S:      Maintained
9740 F:      arch/m68k/mac/
9741
9742 M68K ON HP9000/300
9743 M:      Philip Blundell <philb@gnu.org>
9744 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
9745 S:      Maintained
9746 F:      arch/m68k/hp300/
9747
9748 M88DS3103 MEDIA DRIVER
9749 M:      Antti Palosaari <crope@iki.fi>
9750 L:      linux-media@vger.kernel.org
9751 W:      https://linuxtv.org
9752 W:      http://palosaari.fi/linux/
9753 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9754 T:      git git://linuxtv.org/anttip/media_tree.git
9755 S:      Maintained
9756 F:      drivers/media/dvb-frontends/m88ds3103*
9757
9758 M88RS2000 MEDIA DRIVER
9759 M:      Malcolm Priestley <tvboxspy@gmail.com>
9760 L:      linux-media@vger.kernel.org
9761 W:      https://linuxtv.org
9762 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9763 S:      Maintained
9764 F:      drivers/media/dvb-frontends/m88rs2000*
9765
9766 MA901 MASTERKIT USB FM RADIO DRIVER
9767 M:      Alexey Klimov <klimov.linux@gmail.com>
9768 L:      linux-media@vger.kernel.org
9769 T:      git git://linuxtv.org/media_tree.git
9770 S:      Maintained
9771 F:      drivers/media/radio/radio-ma901.c
9772
9773 MAC80211
9774 M:      Johannes Berg <johannes@sipsolutions.net>
9775 L:      linux-wireless@vger.kernel.org
9776 W:      http://wireless.kernel.org/
9777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9779 S:      Maintained
9780 F:      Documentation/networking/mac80211-injection.txt
9781 F:      include/net/mac80211.h
9782 F:      net/mac80211/
9783 F:      drivers/net/wireless/mac80211_hwsim.[ch]
9784 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
9785
9786 MAILBOX API
9787 M:      Jassi Brar <jassisinghbrar@gmail.com>
9788 L:      linux-kernel@vger.kernel.org
9789 S:      Maintained
9790 F:      drivers/mailbox/
9791 F:      include/linux/mailbox_client.h
9792 F:      include/linux/mailbox_controller.h
9793
9794 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
9795 M:      Michael Kerrisk <mtk.manpages@gmail.com>
9796 W:      http://www.kernel.org/doc/man-pages
9797 L:      linux-man@vger.kernel.org
9798 S:      Maintained
9799
9800 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
9801 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
9802 L:      linux-mips@vger.kernel.org
9803 S:      Maintained
9804 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
9805
9806 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
9807 M:      Andrew Lunn <andrew@lunn.ch>
9808 M:      Vivien Didelot <vivien.didelot@gmail.com>
9809 L:      netdev@vger.kernel.org
9810 S:      Maintained
9811 F:      drivers/net/dsa/mv88e6xxx/
9812 F:      include/linux/platform_data/mv88e6xxx.h
9813 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
9814 F:      Documentation/networking/devlink-params-mv88e6xxx.txt
9815
9816 MARVELL ARMADA DRM SUPPORT
9817 M:      Russell King <linux@armlinux.org.uk>
9818 S:      Maintained
9819 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
9820 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
9821 F:      drivers/gpu/drm/armada/
9822 F:      include/uapi/drm/armada_drm.h
9823 F:      Documentation/devicetree/bindings/display/armada/
9824
9825 MARVELL ARMADA 3700 PHY DRIVERS
9826 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9827 S:      Maintained
9828 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
9829 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
9830 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
9831 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
9832
9833 MARVELL CRYPTO DRIVER
9834 M:      Boris Brezillon <bbrezillon@kernel.org>
9835 M:      Arnaud Ebalard <arno@natisbad.org>
9836 F:      drivers/crypto/marvell/
9837 S:      Maintained
9838 L:      linux-crypto@vger.kernel.org
9839
9840 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
9841 M:      Mirko Lindner <mlindner@marvell.com>
9842 M:      Stephen Hemminger <stephen@networkplumber.org>
9843 L:      netdev@vger.kernel.org
9844 S:      Maintained
9845 F:      drivers/net/ethernet/marvell/sk*
9846
9847 MARVELL LIBERTAS WIRELESS DRIVER
9848 L:      libertas-dev@lists.infradead.org
9849 S:      Orphan
9850 F:      drivers/net/wireless/marvell/libertas/
9851
9852 MARVELL MACCHIATOBIN SUPPORT
9853 M:      Russell King <linux@armlinux.org.uk>
9854 L:      linux-arm-kernel@lists.infradead.org
9855 S:      Maintained
9856 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
9857
9858 MARVELL MV643XX ETHERNET DRIVER
9859 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
9860 L:      netdev@vger.kernel.org
9861 S:      Maintained
9862 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
9863 F:      include/linux/mv643xx.h
9864
9865 MARVELL MV88X3310 PHY DRIVER
9866 M:      Russell King <linux@armlinux.org.uk>
9867 L:      netdev@vger.kernel.org
9868 S:      Maintained
9869 F:      drivers/net/phy/marvell10g.c
9870
9871 MARVELL MVEBU THERMAL DRIVER
9872 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9873 S:      Maintained
9874 F:      drivers/thermal/armada_thermal.c
9875
9876 MARVELL MVNETA ETHERNET DRIVER
9877 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
9878 L:      netdev@vger.kernel.org
9879 S:      Maintained
9880 F:      drivers/net/ethernet/marvell/mvneta.*
9881
9882 MARVELL MWIFIEX WIRELESS DRIVER
9883 M:      Amitkumar Karwar <amitkarwar@gmail.com>
9884 M:      Nishant Sarmukadam <nishants@marvell.com>
9885 M:      Ganapathi Bhat <gbhat@marvell.com>
9886 M:      Xinming Hu <huxinming820@gmail.com>
9887 L:      linux-wireless@vger.kernel.org
9888 S:      Maintained
9889 F:      drivers/net/wireless/marvell/mwifiex/
9890
9891 MARVELL MWL8K WIRELESS DRIVER
9892 M:      Lennert Buytenhek <buytenh@wantstofly.org>
9893 L:      linux-wireless@vger.kernel.org
9894 S:      Odd Fixes
9895 F:      drivers/net/wireless/marvell/mwl8k.c
9896
9897 MARVELL NAND CONTROLLER DRIVER
9898 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9899 L:      linux-mtd@lists.infradead.org
9900 S:      Maintained
9901 F:      drivers/mtd/nand/raw/marvell_nand.c
9902 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
9903
9904 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
9905 M:      Nicolas Pitre <nico@fluxnic.net>
9906 S:      Odd Fixes
9907 F:      drivers/mmc/host/mvsdio.*
9908
9909 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
9910 M:      Hu Ziji <huziji@marvell.com>
9911 L:      linux-mmc@vger.kernel.org
9912 S:      Supported
9913 F:      drivers/mmc/host/sdhci-xenon*
9914 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
9915
9916 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
9917 M:      Sunil Goutham <sgoutham@marvell.com>
9918 M:      Linu Cherian <lcherian@marvell.com>
9919 M:      Geetha sowjanya <gakula@marvell.com>
9920 M:      Jerin Jacob <jerinj@marvell.com>
9921 L:      netdev@vger.kernel.org
9922 S:      Supported
9923 F:      drivers/net/ethernet/marvell/octeontx2/af/
9924
9925 MATROX FRAMEBUFFER DRIVER
9926 L:      linux-fbdev@vger.kernel.org
9927 S:      Orphan
9928 F:      drivers/video/fbdev/matrox/matroxfb_*
9929 F:      include/uapi/linux/matroxfb.h
9930
9931 MAX16065 HARDWARE MONITOR DRIVER
9932 M:      Guenter Roeck <linux@roeck-us.net>
9933 L:      linux-hwmon@vger.kernel.org
9934 S:      Maintained
9935 F:      Documentation/hwmon/max16065.rst
9936 F:      drivers/hwmon/max16065.c
9937
9938 MAX2175 SDR TUNER DRIVER
9939 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
9940 L:      linux-media@vger.kernel.org
9941 T:      git git://linuxtv.org/media_tree.git
9942 S:      Maintained
9943 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
9944 F:      Documentation/media/v4l-drivers/max2175.rst
9945 F:      drivers/media/i2c/max2175*
9946 F:      include/uapi/linux/max2175.h
9947
9948 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
9949 L:      linux-hwmon@vger.kernel.org
9950 S:      Orphan
9951 F:      Documentation/hwmon/max6650.rst
9952 F:      drivers/hwmon/max6650.c
9953
9954 MAX6697 HARDWARE MONITOR DRIVER
9955 M:      Guenter Roeck <linux@roeck-us.net>
9956 L:      linux-hwmon@vger.kernel.org
9957 S:      Maintained
9958 F:      Documentation/hwmon/max6697.rst
9959 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
9960 F:      drivers/hwmon/max6697.c
9961 F:      include/linux/platform_data/max6697.h
9962
9963 MAX9860 MONO AUDIO VOICE CODEC DRIVER
9964 M:      Peter Rosin <peda@axentia.se>
9965 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9966 S:      Maintained
9967 F:      Documentation/devicetree/bindings/sound/max9860.txt
9968 F:      sound/soc/codecs/max9860.*
9969
9970 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
9971 M:      Andreas Klinger <ak@it-klinger.de>
9972 L:      linux-iio@vger.kernel.org
9973 S:      Maintained
9974 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.txt
9975 F:      drivers/iio/proximity/mb1232.c
9976
9977 MAXIM MAX77650 PMIC MFD DRIVER
9978 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
9979 L:      linux-kernel@vger.kernel.org
9980 S:      Maintained
9981 F:      Documentation/devicetree/bindings/*/*max77650.txt
9982 F:      Documentation/devicetree/bindings/*/max77650*.txt
9983 F:      include/linux/mfd/max77650.h
9984 F:      drivers/mfd/max77650.c
9985 F:      drivers/regulator/max77650-regulator.c
9986 F:      drivers/power/supply/max77650-charger.c
9987 F:      drivers/input/misc/max77650-onkey.c
9988 F:      drivers/leds/leds-max77650.c
9989 F:      drivers/gpio/gpio-max77650.c
9990
9991 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
9992 M:      Javier Martinez Canillas <javier@dowhile0.org>
9993 L:      linux-kernel@vger.kernel.org
9994 S:      Supported
9995 F:      drivers/regulator/max77802-regulator.c
9996 F:      Documentation/devicetree/bindings/*/*max77802.txt
9997 F:      include/dt-bindings/*/*max77802.h
9998
9999 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10000 M:      Krzysztof Kozlowski <krzk@kernel.org>
10001 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10002 L:      linux-pm@vger.kernel.org
10003 S:      Supported
10004 F:      drivers/power/supply/max14577_charger.c
10005 F:      drivers/power/supply/max77693_charger.c
10006
10007 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10008 M:      Chanwoo Choi <cw00.choi@samsung.com>
10009 M:      Krzysztof Kozlowski <krzk@kernel.org>
10010 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10011 L:      linux-kernel@vger.kernel.org
10012 S:      Supported
10013 F:      drivers/*/max14577*.c
10014 F:      drivers/*/max77686*.c
10015 F:      drivers/*/max77693*.c
10016 F:      drivers/extcon/extcon-max14577.c
10017 F:      drivers/extcon/extcon-max77693.c
10018 F:      drivers/rtc/rtc-max77686.c
10019 F:      drivers/clk/clk-max77686.c
10020 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10021 F:      Documentation/devicetree/bindings/*/max77686.txt
10022 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10023 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10024 F:      include/linux/mfd/max14577*.h
10025 F:      include/linux/mfd/max77686*.h
10026 F:      include/linux/mfd/max77693*.h
10027
10028 MAXIRADIO FM RADIO RECEIVER DRIVER
10029 M:      Hans Verkuil <hverkuil@xs4all.nl>
10030 L:      linux-media@vger.kernel.org
10031 T:      git git://linuxtv.org/media_tree.git
10032 W:      https://linuxtv.org
10033 S:      Maintained
10034 F:      drivers/media/radio/radio-maxiradio*
10035
10036 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10037 M:      Peter Rosin <peda@axentia.se>
10038 L:      linux-iio@vger.kernel.org
10039 S:      Maintained
10040 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10041 F:      drivers/iio/potentiometer/mcp4018.c
10042 F:      drivers/iio/potentiometer/mcp4531.c
10043
10044 MCR20A IEEE-802.15.4 RADIO DRIVER
10045 M:      Xue Liu <liuxuenetmail@gmail.com>
10046 L:      linux-wpan@vger.kernel.org
10047 W:      https://github.com/xueliu/mcr20a-linux
10048 S:      Maintained
10049 F:      drivers/net/ieee802154/mcr20a.c
10050 F:      drivers/net/ieee802154/mcr20a.h
10051 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10052
10053 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10054 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10055 L:      linux-iio@vger.kernel.org
10056 S:      Maintained
10057 F:      drivers/iio/dac/cio-dac.c
10058
10059 MEDIA CONTROLLER FRAMEWORK
10060 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10061 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10062 L:      linux-media@vger.kernel.org
10063 W:      https://www.linuxtv.org
10064 T:      git git://linuxtv.org/media_tree.git
10065 S:      Supported
10066 F:      drivers/media/mc/
10067 F:      include/media/media-*.h
10068 F:      include/uapi/linux/media.h
10069
10070 MEDIA DRIVERS FOR ASCOT2E
10071 M:      Sergey Kozlov <serjk@netup.ru>
10072 M:      Abylay Ospan <aospan@netup.ru>
10073 L:      linux-media@vger.kernel.org
10074 W:      https://linuxtv.org
10075 W:      http://netup.tv/
10076 T:      git git://linuxtv.org/media_tree.git
10077 S:      Supported
10078 F:      drivers/media/dvb-frontends/ascot2e*
10079
10080 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10081 M:      Jasmin Jessich <jasmin@anw.at>
10082 L:      linux-media@vger.kernel.org
10083 W:      https://linuxtv.org
10084 T:      git git://linuxtv.org/media_tree.git
10085 S:      Maintained
10086 F:      drivers/media/dvb-frontends/cxd2099*
10087
10088 MEDIA DRIVERS FOR CXD2841ER
10089 M:      Sergey Kozlov <serjk@netup.ru>
10090 M:      Abylay Ospan <aospan@netup.ru>
10091 L:      linux-media@vger.kernel.org
10092 W:      https://linuxtv.org
10093 W:      http://netup.tv/
10094 T:      git git://linuxtv.org/media_tree.git
10095 S:      Supported
10096 F:      drivers/media/dvb-frontends/cxd2841er*
10097
10098 MEDIA DRIVERS FOR CXD2880
10099 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10100 L:      linux-media@vger.kernel.org
10101 W:      http://linuxtv.org/
10102 T:      git git://linuxtv.org/media_tree.git
10103 S:      Supported
10104 F:      drivers/media/dvb-frontends/cxd2880/*
10105 F:      drivers/media/spi/cxd2880*
10106
10107 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10108 L:      linux-media@vger.kernel.org
10109 W:      https://linuxtv.org
10110 T:      git git://linuxtv.org/media_tree.git
10111 S:      Orphan
10112 F:      drivers/media/pci/ddbridge/*
10113
10114 MEDIA DRIVERS FOR FREESCALE IMX
10115 M:      Steve Longerbeam <slongerbeam@gmail.com>
10116 M:      Philipp Zabel <p.zabel@pengutronix.de>
10117 L:      linux-media@vger.kernel.org
10118 T:      git git://linuxtv.org/media_tree.git
10119 S:      Maintained
10120 F:      Documentation/devicetree/bindings/media/imx.txt
10121 F:      Documentation/media/v4l-drivers/imx.rst
10122 F:      drivers/staging/media/imx/
10123 F:      include/linux/imx-media.h
10124 F:      include/media/imx.h
10125
10126 MEDIA DRIVER FOR FREESCALE IMX PXP
10127 M:      Philipp Zabel <p.zabel@pengutronix.de>
10128 L:      linux-media@vger.kernel.org
10129 T:      git git://linuxtv.org/media_tree.git
10130 S:      Maintained
10131 F:      drivers/media/platform/imx-pxp.[ch]
10132
10133 MEDIA DRIVERS FOR FREESCALE IMX7
10134 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10135 L:      linux-media@vger.kernel.org
10136 T:      git git://linuxtv.org/media_tree.git
10137 S:      Maintained
10138 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10139 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10140 F:      Documentation/media/v4l-drivers/imx7.rst
10141 F:      drivers/staging/media/imx/imx7-media-csi.c
10142 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10143
10144 MEDIA DRIVERS FOR HELENE
10145 M:      Abylay Ospan <aospan@netup.ru>
10146 L:      linux-media@vger.kernel.org
10147 W:      https://linuxtv.org
10148 W:      http://netup.tv/
10149 T:      git git://linuxtv.org/media_tree.git
10150 S:      Supported
10151 F:      drivers/media/dvb-frontends/helene*
10152
10153 MEDIA DRIVERS FOR HORUS3A
10154 M:      Sergey Kozlov <serjk@netup.ru>
10155 M:      Abylay Ospan <aospan@netup.ru>
10156 L:      linux-media@vger.kernel.org
10157 W:      https://linuxtv.org
10158 W:      http://netup.tv/
10159 T:      git git://linuxtv.org/media_tree.git
10160 S:      Supported
10161 F:      drivers/media/dvb-frontends/horus3a*
10162
10163 MEDIA DRIVERS FOR LNBH25
10164 M:      Sergey Kozlov <serjk@netup.ru>
10165 M:      Abylay Ospan <aospan@netup.ru>
10166 L:      linux-media@vger.kernel.org
10167 W:      https://linuxtv.org
10168 W:      http://netup.tv/
10169 T:      git git://linuxtv.org/media_tree.git
10170 S:      Supported
10171 F:      drivers/media/dvb-frontends/lnbh25*
10172
10173 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10174 L:      linux-media@vger.kernel.org
10175 W:      https://linuxtv.org
10176 T:      git git://linuxtv.org/media_tree.git
10177 S:      Orphan
10178 F:      drivers/media/dvb-frontends/mxl5xx*
10179
10180 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10181 M:      Sergey Kozlov <serjk@netup.ru>
10182 M:      Abylay Ospan <aospan@netup.ru>
10183 L:      linux-media@vger.kernel.org
10184 W:      https://linuxtv.org
10185 W:      http://netup.tv/
10186 T:      git git://linuxtv.org/media_tree.git
10187 S:      Supported
10188 F:      drivers/media/pci/netup_unidvb/*
10189
10190 MEDIA DRIVERS FOR RENESAS - CEU
10191 M:      Jacopo Mondi <jacopo@jmondi.org>
10192 L:      linux-media@vger.kernel.org
10193 L:      linux-renesas-soc@vger.kernel.org
10194 T:      git git://linuxtv.org/media_tree.git
10195 S:      Supported
10196 F:      Documentation/devicetree/bindings/media/renesas,ceu.txt
10197 F:      drivers/media/platform/renesas-ceu.c
10198 F:      include/media/drv-intf/renesas-ceu.h
10199
10200 MEDIA DRIVERS FOR RENESAS - DRIF
10201 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
10202 L:      linux-media@vger.kernel.org
10203 L:      linux-renesas-soc@vger.kernel.org
10204 T:      git git://linuxtv.org/media_tree.git
10205 S:      Supported
10206 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10207 F:      drivers/media/platform/rcar_drif.c
10208
10209 MEDIA DRIVERS FOR RENESAS - FCP
10210 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10211 L:      linux-media@vger.kernel.org
10212 L:      linux-renesas-soc@vger.kernel.org
10213 T:      git git://linuxtv.org/media_tree.git
10214 S:      Supported
10215 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10216 F:      drivers/media/platform/rcar-fcp.c
10217 F:      include/media/rcar-fcp.h
10218
10219 MEDIA DRIVERS FOR RENESAS - FDP1
10220 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10221 L:      linux-media@vger.kernel.org
10222 L:      linux-renesas-soc@vger.kernel.org
10223 T:      git git://linuxtv.org/media_tree.git
10224 S:      Supported
10225 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10226 F:      drivers/media/platform/rcar_fdp1.c
10227
10228 MEDIA DRIVERS FOR RENESAS - VIN
10229 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10230 L:      linux-media@vger.kernel.org
10231 L:      linux-renesas-soc@vger.kernel.org
10232 T:      git git://linuxtv.org/media_tree.git
10233 S:      Supported
10234 F:      Documentation/devicetree/bindings/media/renesas,csi2.txt
10235 F:      Documentation/devicetree/bindings/media/renesas,vin.txt
10236 F:      drivers/media/platform/rcar-vin/
10237
10238 MEDIA DRIVERS FOR RENESAS - VSP1
10239 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10240 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10241 L:      linux-media@vger.kernel.org
10242 L:      linux-renesas-soc@vger.kernel.org
10243 T:      git git://linuxtv.org/media_tree.git
10244 S:      Supported
10245 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10246 F:      drivers/media/platform/vsp1/
10247
10248 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10249 L:      linux-media@vger.kernel.org
10250 W:      https://linuxtv.org
10251 T:      git git://linuxtv.org/media_tree.git
10252 S:      Orphan
10253 F:      drivers/media/dvb-frontends/stv0910*
10254
10255 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10256 L:      linux-media@vger.kernel.org
10257 W:      https://linuxtv.org
10258 T:      git git://linuxtv.org/media_tree.git
10259 S:      Orphan
10260 F:      drivers/media/dvb-frontends/stv6111*
10261
10262 MEDIA DRIVERS FOR STM32 - DCMI
10263 M:      Hugues Fruchet <hugues.fruchet@st.com>
10264 L:      linux-media@vger.kernel.org
10265 T:      git git://linuxtv.org/media_tree.git
10266 S:      Supported
10267 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.txt
10268 F:      drivers/media/platform/stm32/stm32-dcmi.c
10269
10270 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10271 M:      Dmitry Osipenko <digetx@gmail.com>
10272 L:      linux-media@vger.kernel.org
10273 L:      linux-tegra@vger.kernel.org
10274 T:      git git://linuxtv.org/media_tree.git
10275 S:      Maintained
10276 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10277 F:      drivers/staging/media/tegra-vde/
10278
10279 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10280 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10281 P:      LinuxTV.org Project
10282 L:      linux-media@vger.kernel.org
10283 W:      https://linuxtv.org
10284 Q:      http://patchwork.kernel.org/project/linux-media/list/
10285 T:      git git://linuxtv.org/media_tree.git
10286 S:      Maintained
10287 F:      Documentation/devicetree/bindings/media/
10288 F:      Documentation/media/
10289 F:      drivers/media/
10290 F:      drivers/staging/media/
10291 F:      include/linux/platform_data/media/
10292 F:      include/media/
10293 F:      include/uapi/linux/dvb/
10294 F:      include/uapi/linux/videodev2.h
10295 F:      include/uapi/linux/media.h
10296 F:      include/uapi/linux/v4l2-*
10297 F:      include/uapi/linux/meye.h
10298 F:      include/uapi/linux/ivtv*
10299 F:      include/uapi/linux/uvcvideo.h
10300
10301 MEDIATEK BLUETOOTH DRIVER
10302 M:      Sean Wang <sean.wang@mediatek.com>
10303 L:      linux-bluetooth@vger.kernel.org
10304 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10305 S:      Maintained
10306 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10307 F:      drivers/bluetooth/btmtkuart.c
10308
10309 MEDIATEK CIR DRIVER
10310 M:      Sean Wang <sean.wang@mediatek.com>
10311 S:      Maintained
10312 F:      drivers/media/rc/mtk-cir.c
10313
10314 MEDIATEK DMA DRIVER
10315 M:      Sean Wang <sean.wang@mediatek.com>
10316 L:      dmaengine@vger.kernel.org
10317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10318 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10319 S:      Maintained
10320 F:      Documentation/devicetree/bindings/dma/mtk-*
10321 F:      drivers/dma/mediatek/
10322
10323 MEDIATEK PMIC LED DRIVER
10324 M:      Sean Wang <sean.wang@mediatek.com>
10325 S:      Maintained
10326 F:      drivers/leds/leds-mt6323.c
10327 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10328
10329 MEDIATEK ETHERNET DRIVER
10330 M:      Felix Fietkau <nbd@openwrt.org>
10331 M:      John Crispin <john@phrozen.org>
10332 M:      Sean Wang <sean.wang@mediatek.com>
10333 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10334 L:      netdev@vger.kernel.org
10335 S:      Maintained
10336 F:      drivers/net/ethernet/mediatek/
10337
10338 MEDIATEK SWITCH DRIVER
10339 M:      Sean Wang <sean.wang@mediatek.com>
10340 L:      netdev@vger.kernel.org
10341 S:      Maintained
10342 F:      drivers/net/dsa/mt7530.*
10343 F:      net/dsa/tag_mtk.c
10344
10345 MEDIATEK JPEG DRIVER
10346 M:      Rick Chang <rick.chang@mediatek.com>
10347 M:      Bin Liu <bin.liu@mediatek.com>
10348 S:      Supported
10349 F:      drivers/media/platform/mtk-jpeg/
10350 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10351
10352 MEDIATEK MDP DRIVER
10353 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10354 M:      Houlong Wei <houlong.wei@mediatek.com>
10355 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10356 S:      Supported
10357 F:      drivers/media/platform/mtk-mdp/
10358 F:      drivers/media/platform/mtk-vpu/
10359 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10360
10361 MEDIATEK MEDIA DRIVER
10362 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10363 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10364 S:      Supported
10365 F:      drivers/media/platform/mtk-vcodec/
10366 F:      drivers/media/platform/mtk-vpu/
10367 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10368 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10369
10370 MEDIATEK MMC/SD/SDIO DRIVER
10371 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10372 S:      Maintained
10373 F:      drivers/mmc/host/mtk-sd.c
10374 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10375
10376 MEDIATEK MT76 WIRELESS LAN DRIVER
10377 M:      Felix Fietkau <nbd@nbd.name>
10378 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10379 R:      Ryder Lee <ryder.lee@mediatek.com>
10380 R:      Roy Luo <royluo@google.com>
10381 L:      linux-wireless@vger.kernel.org
10382 S:      Maintained
10383 F:      drivers/net/wireless/mediatek/mt76/
10384
10385 MEDIATEK MT7601U WIRELESS LAN DRIVER
10386 M:      Jakub Kicinski <kubakici@wp.pl>
10387 L:      linux-wireless@vger.kernel.org
10388 S:      Maintained
10389 F:      drivers/net/wireless/mediatek/mt7601u/
10390
10391 MEDIATEK MT7621/28/88 I2C DRIVER
10392 M:      Stefan Roese <sr@denx.de>
10393 L:      linux-i2c@vger.kernel.org
10394 S:      Maintained
10395 F:      drivers/i2c/busses/i2c-mt7621.c
10396 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10397
10398 MEDIATEK NAND CONTROLLER DRIVER
10399 M:      Xiaolei Li <xiaolei.li@mediatek.com>
10400 L:      linux-mtd@lists.infradead.org
10401 S:      Maintained
10402 F:      drivers/mtd/nand/raw/mtk_*
10403 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10404
10405 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10406 M:      Sean Wang <sean.wang@mediatek.com>
10407 S:      Maintained
10408 F:      drivers/char/hw_random/mtk-rng.c
10409
10410 MEDIATEK USB3 DRD IP DRIVER
10411 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10412 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10414 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10415 S:      Maintained
10416 F:      drivers/usb/mtu3/
10417
10418 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10419 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10420 M:      Martin Donnelly <martin.donnelly@ge.com>
10421 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10422 S:      Maintained
10423 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10424 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10425
10426 MEGARAID SCSI/SAS DRIVERS
10427 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10428 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10429 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10430 L:      megaraidlinux.pdl@broadcom.com
10431 L:      linux-scsi@vger.kernel.org
10432 W:      http://www.avagotech.com/support/
10433 S:      Maintained
10434 F:      Documentation/scsi/megaraid.txt
10435 F:      drivers/scsi/megaraid.*
10436 F:      drivers/scsi/megaraid/
10437
10438 MELEXIS MLX90614 DRIVER
10439 M:      Crt Mori <cmo@melexis.com>
10440 L:      linux-iio@vger.kernel.org
10441 W:      http://www.melexis.com
10442 S:      Supported
10443 F:      drivers/iio/temperature/mlx90614.c
10444
10445 MELEXIS MLX90632 DRIVER
10446 M:      Crt Mori <cmo@melexis.com>
10447 L:      linux-iio@vger.kernel.org
10448 W:      http://www.melexis.com
10449 S:      Supported
10450 F:      drivers/iio/temperature/mlx90632.c
10451
10452 MELFAS MIP4 TOUCHSCREEN DRIVER
10453 M:      Sangwon Jee <jeesw@melfas.com>
10454 W:      http://www.melfas.com
10455 S:      Supported
10456 F:      drivers/input/touchscreen/melfas_mip4.c
10457 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10458
10459 MELLANOX ETHERNET DRIVER (mlx4_en)
10460 M:      Tariq Toukan <tariqt@mellanox.com>
10461 L:      netdev@vger.kernel.org
10462 S:      Supported
10463 W:      http://www.mellanox.com
10464 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10465 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10466
10467 MELLANOX ETHERNET DRIVER (mlx5e)
10468 M:      Saeed Mahameed <saeedm@mellanox.com>
10469 L:      netdev@vger.kernel.org
10470 S:      Supported
10471 W:      http://www.mellanox.com
10472 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10473 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10474
10475 MELLANOX ETHERNET INNOVA DRIVERS
10476 R:      Boris Pismenny <borisp@mellanox.com>
10477 L:      netdev@vger.kernel.org
10478 S:      Supported
10479 W:      http://www.mellanox.com
10480 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10481 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10482 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10483 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10484 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10485
10486 MELLANOX ETHERNET SWITCH DRIVERS
10487 M:      Jiri Pirko <jiri@mellanox.com>
10488 M:      Ido Schimmel <idosch@mellanox.com>
10489 L:      netdev@vger.kernel.org
10490 S:      Supported
10491 W:      http://www.mellanox.com
10492 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10493 F:      drivers/net/ethernet/mellanox/mlxsw/
10494 F:      tools/testing/selftests/drivers/net/mlxsw/
10495
10496 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10497 M:      mlxsw@mellanox.com
10498 L:      netdev@vger.kernel.org
10499 S:      Supported
10500 W:      http://www.mellanox.com
10501 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10502 F:      drivers/net/ethernet/mellanox/mlxfw/
10503
10504 MELLANOX HARDWARE PLATFORM SUPPORT
10505 M:      Andy Shevchenko <andy@infradead.org>
10506 M:      Darren Hart <dvhart@infradead.org>
10507 M:      Vadim Pasternak <vadimp@mellanox.com>
10508 L:      platform-driver-x86@vger.kernel.org
10509 S:      Supported
10510 F:      drivers/platform/mellanox/
10511 F:      include/linux/platform_data/mlxreg.h
10512
10513 MELLANOX MLX4 core VPI driver
10514 M:      Tariq Toukan <tariqt@mellanox.com>
10515 L:      netdev@vger.kernel.org
10516 L:      linux-rdma@vger.kernel.org
10517 W:      http://www.mellanox.com
10518 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10519 S:      Supported
10520 F:      drivers/net/ethernet/mellanox/mlx4/
10521 F:      include/linux/mlx4/
10522
10523 MELLANOX MLX4 IB driver
10524 M:      Yishai Hadas <yishaih@mellanox.com>
10525 L:      linux-rdma@vger.kernel.org
10526 W:      http://www.mellanox.com
10527 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10528 S:      Supported
10529 F:      drivers/infiniband/hw/mlx4/
10530 F:      include/linux/mlx4/
10531 F:      include/uapi/rdma/mlx4-abi.h
10532
10533 MELLANOX MLX5 core VPI driver
10534 M:      Saeed Mahameed <saeedm@mellanox.com>
10535 M:      Leon Romanovsky <leonro@mellanox.com>
10536 L:      netdev@vger.kernel.org
10537 L:      linux-rdma@vger.kernel.org
10538 W:      http://www.mellanox.com
10539 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10540 S:      Supported
10541 F:      drivers/net/ethernet/mellanox/mlx5/core/
10542 F:      include/linux/mlx5/
10543 F:      Documentation/networking/device_drivers/mellanox/
10544
10545 MELLANOX MLX5 IB driver
10546 M:      Leon Romanovsky <leonro@mellanox.com>
10547 L:      linux-rdma@vger.kernel.org
10548 W:      http://www.mellanox.com
10549 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10550 S:      Supported
10551 F:      drivers/infiniband/hw/mlx5/
10552 F:      include/linux/mlx5/
10553 F:      include/uapi/rdma/mlx5-abi.h
10554
10555 MELLANOX MLXCPLD I2C AND MUX DRIVER
10556 M:      Vadim Pasternak <vadimp@mellanox.com>
10557 M:      Michael Shych <michaelsh@mellanox.com>
10558 L:      linux-i2c@vger.kernel.org
10559 S:      Supported
10560 F:      drivers/i2c/busses/i2c-mlxcpld.c
10561 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10562 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10563
10564 MELLANOX MLXCPLD LED DRIVER
10565 M:      Vadim Pasternak <vadimp@mellanox.com>
10566 L:      linux-leds@vger.kernel.org
10567 S:      Supported
10568 F:      drivers/leds/leds-mlxcpld.c
10569 F:      drivers/leds/leds-mlxreg.c
10570 F:      Documentation/leds/leds-mlxcpld.rst
10571
10572 MELLANOX PLATFORM DRIVER
10573 M:      Vadim Pasternak <vadimp@mellanox.com>
10574 L:      platform-driver-x86@vger.kernel.org
10575 S:      Supported
10576 F:      drivers/platform/x86/mlx-platform.c
10577
10578 MEMBARRIER SUPPORT
10579 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10580 M:      "Paul E. McKenney" <paulmck@kernel.org>
10581 L:      linux-kernel@vger.kernel.org
10582 S:      Supported
10583 F:      kernel/sched/membarrier.c
10584 F:      include/uapi/linux/membarrier.h
10585 F:      arch/powerpc/include/asm/membarrier.h
10586
10587 MEMBLOCK
10588 M:      Mike Rapoport <rppt@linux.ibm.com>
10589 L:      linux-mm@kvack.org
10590 S:      Maintained
10591 F:      include/linux/memblock.h
10592 F:      mm/memblock.c
10593 F:      Documentation/core-api/boot-time-mm.rst
10594
10595 MEMORY MANAGEMENT
10596 M:      Andrew Morton <akpm@linux-foundation.org>
10597 L:      linux-mm@kvack.org
10598 W:      http://www.linux-mm.org
10599 T:      quilt https://ozlabs.org/~akpm/mmotm/
10600 T:      quilt https://ozlabs.org/~akpm/mmots/
10601 T:      git git://github.com/hnaz/linux-mm.git
10602 S:      Maintained
10603 F:      include/linux/mm.h
10604 F:      include/linux/gfp.h
10605 F:      include/linux/mmzone.h
10606 F:      include/linux/memory_hotplug.h
10607 F:      include/linux/vmalloc.h
10608 F:      mm/
10609
10610 MEMORY TECHNOLOGY DEVICES (MTD)
10611 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10612 M:      Richard Weinberger <richard@nod.at>
10613 M:      Vignesh Raghavendra <vigneshr@ti.com>
10614 L:      linux-mtd@lists.infradead.org
10615 W:      http://www.linux-mtd.infradead.org/
10616 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10617 C:      irc://irc.oftc.net/mtd
10618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10620 S:      Maintained
10621 F:      Documentation/devicetree/bindings/mtd/
10622 F:      drivers/mtd/
10623 F:      include/linux/mtd/
10624 F:      include/uapi/mtd/
10625
10626 MEN A21 WATCHDOG DRIVER
10627 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10628 L:      linux-watchdog@vger.kernel.org
10629 S:      Maintained
10630 F:      drivers/watchdog/mena21_wdt.c
10631
10632 MEN CHAMELEON BUS (mcb)
10633 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10634 S:      Maintained
10635 F:      drivers/mcb/
10636 F:      include/linux/mcb.h
10637 F:      Documentation/driver-api/men-chameleon-bus.rst
10638
10639 MEN F21BMC (Board Management Controller)
10640 M:      Andreas Werner <andreas.werner@men.de>
10641 S:      Supported
10642 F:      drivers/mfd/menf21bmc.c
10643 F:      drivers/watchdog/menf21bmc_wdt.c
10644 F:      drivers/leds/leds-menf21bmc.c
10645 F:      drivers/hwmon/menf21bmc_hwmon.c
10646 F:      Documentation/hwmon/menf21bmc.rst
10647
10648 MEN Z069 WATCHDOG DRIVER
10649 M:      Johannes Thumshirn <jth@kernel.org>
10650 L:      linux-watchdog@vger.kernel.org
10651 S:      Maintained
10652 F:      drivers/watchdog/menz69_wdt.c
10653
10654 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10655 M:      Neil Armstrong <narmstrong@baylibre.com>
10656 L:      linux-media@vger.kernel.org
10657 L:      linux-amlogic@lists.infradead.org
10658 W:      http://linux-meson.com/
10659 S:      Supported
10660 F:      drivers/media/platform/meson/ao-cec.c
10661 F:      drivers/media/platform/meson/ao-cec-g12a.c
10662 F:      Documentation/devicetree/bindings/media/meson-ao-cec.txt
10663 T:      git git://linuxtv.org/media_tree.git
10664
10665 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10666 M:      Liang Yang <liang.yang@amlogic.com>
10667 L:      linux-mtd@lists.infradead.org
10668 S:      Maintained
10669 F:      drivers/mtd/nand/raw/meson_*
10670 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10671
10672 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10673 M:      Maxime Jourdan <mjourdan@baylibre.com>
10674 L:      linux-media@vger.kernel.org
10675 L:      linux-amlogic@lists.infradead.org
10676 S:      Supported
10677 F:      drivers/staging/media/meson/vdec/
10678 T:      git git://linuxtv.org/media_tree.git
10679
10680 METHODE UDPU SUPPORT
10681 M:      Vladimir Vid <vladimir.vid@sartura.hr>
10682 S:      Maintained
10683 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10684
10685 MICROBLAZE ARCHITECTURE
10686 M:      Michal Simek <monstr@monstr.eu>
10687 W:      http://www.monstr.eu/fdt/
10688 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
10689 S:      Supported
10690 F:      arch/microblaze/
10691
10692 MICROCHIP AT91 SERIAL DRIVER
10693 M:      Richard Genoud <richard.genoud@gmail.com>
10694 S:      Maintained
10695 F:      drivers/tty/serial/atmel_serial.c
10696 F:      drivers/tty/serial/atmel_serial.h
10697 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10698
10699 MICROCHIP AUDIO ASOC DRIVERS
10700 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
10701 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10702 S:      Supported
10703 F:      sound/soc/atmel
10704
10705 MICROCHIP DMA DRIVER
10706 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10708 L:      dmaengine@vger.kernel.org
10709 S:      Supported
10710 F:      drivers/dma/at_hdmac.c
10711 F:      drivers/dma/at_hdmac_regs.h
10712 F:      include/linux/platform_data/dma-atmel.h
10713 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
10714 F:      include/dt-bindings/dma/at91.h
10715
10716 MICROCHIP ECC DRIVER
10717 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10718 L:      linux-crypto@vger.kernel.org
10719 S:      Maintained
10720 F:      drivers/crypto/atmel-ecc.*
10721
10722 MICROCHIP I2C DRIVER
10723 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10724 L:      linux-i2c@vger.kernel.org
10725 S:      Supported
10726 F:      drivers/i2c/busses/i2c-at91.h
10727 F:      drivers/i2c/busses/i2c-at91-*.c
10728
10729 MICROCHIP ISC DRIVER
10730 M:      Eugen Hristev <eugen.hristev@microchip.com>
10731 L:      linux-media@vger.kernel.org
10732 S:      Supported
10733 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
10734 F:      drivers/media/platform/atmel/atmel-isc.h
10735 F:      drivers/media/platform/atmel/atmel-isc-base.c
10736 F:      drivers/media/platform/atmel/atmel-isc-regs.h
10737 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
10738
10739 MICROCHIP ISI DRIVER
10740 M:      Eugen Hristev <eugen.hristev@microchip.com>
10741 L:      linux-media@vger.kernel.org
10742 S:      Supported
10743 F:      drivers/media/platform/atmel/atmel-isi.c
10744 F:      drivers/media/platform/atmel/atmel-isi.h
10745
10746 MICROCHIP AT91 USART MFD DRIVER
10747 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10748 L:      linux-kernel@vger.kernel.org
10749 S:      Supported
10750 F:      drivers/mfd/at91-usart.c
10751 F:      include/dt-bindings/mfd/at91-usart.h
10752 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10753
10754 MICROCHIP AT91 USART SPI DRIVER
10755 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10756 L:      linux-spi@vger.kernel.org
10757 S:      Supported
10758 F:      drivers/spi/spi-at91-usart.c
10759 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10760
10761 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
10762 M:      Woojung Huh <woojung.huh@microchip.com>
10763 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10764 L:      netdev@vger.kernel.org
10765 S:      Maintained
10766 F:      net/dsa/tag_ksz.c
10767 F:      drivers/net/dsa/microchip/*
10768 F:      include/linux/platform_data/microchip-ksz.h
10769 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
10770
10771 MICROCHIP LAN743X ETHERNET DRIVER
10772 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
10773 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10774 L:      netdev@vger.kernel.org
10775 S:      Maintained
10776 F:      drivers/net/ethernet/microchip/lan743x_*
10777
10778 MICROCHIP LCDFB DRIVER
10779 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10780 L:      linux-fbdev@vger.kernel.org
10781 S:      Maintained
10782 F:      drivers/video/fbdev/atmel_lcdfb.c
10783 F:      include/video/atmel_lcdc.h
10784
10785 MICROCHIP MMC/SD/SDIO MCI DRIVER
10786 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10787 S:      Maintained
10788 F:      drivers/mmc/host/atmel-mci.c
10789
10790 MICROCHIP MCP16502 PMIC DRIVER
10791 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
10792 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10793 S:      Maintained
10794 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
10795 F:      drivers/regulator/mcp16502.c
10796
10797 MICROCHIP MCP3911 ADC DRIVER
10798 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10799 M:      Kent Gustavsson <kent@minoris.se>
10800 L:      linux-iio@vger.kernel.org
10801 S:      Supported
10802 F:      drivers/iio/adc/mcp3911.c
10803 F:      Documentation/devicetree/bindings/iio/adc/mcp3911.txt
10804
10805 MICROCHIP NAND DRIVER
10806 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10807 L:      linux-mtd@lists.infradead.org
10808 S:      Supported
10809 F:      drivers/mtd/nand/raw/atmel/*
10810 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
10811
10812 MICROCHIP PWM DRIVER
10813 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
10814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10815 L:      linux-pwm@vger.kernel.org
10816 S:      Supported
10817 F:      drivers/pwm/pwm-atmel.c
10818 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
10819
10820 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
10821 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10822 M:      Eugen Hristev <eugen.hristev@microchip.com>
10823 L:      linux-iio@vger.kernel.org
10824 S:      Supported
10825 F:      drivers/iio/adc/at91-sama5d2_adc.c
10826 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
10827 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
10828
10829 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
10830 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10831 S:      Supported
10832 F:      drivers/power/reset/at91-sama5d2_shdwc.c
10833
10834 MICROCHIP SPI DRIVER
10835 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10836 S:      Supported
10837 F:      drivers/spi/spi-atmel.*
10838
10839 MICROCHIP SSC DRIVER
10840 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10842 S:      Supported
10843 F:      drivers/misc/atmel-ssc.c
10844 F:      include/linux/atmel-ssc.h
10845
10846 MICROCHIP USBA UDC DRIVER
10847 M:      Cristian Birsan <cristian.birsan@microchip.com>
10848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10849 S:      Supported
10850 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
10851
10852 MICROCHIP USB251XB DRIVER
10853 M:      Richard Leitner <richard.leitner@skidata.com>
10854 L:      linux-usb@vger.kernel.org
10855 S:      Maintained
10856 F:      drivers/usb/misc/usb251xb.c
10857 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
10858
10859 MICROCHIP XDMA DRIVER
10860 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10861 L:      linux-arm-kernel@lists.infradead.org
10862 L:      dmaengine@vger.kernel.org
10863 S:      Supported
10864 F:      drivers/dma/at_xdmac.c
10865
10866 MICROSEMI MIPS SOCS
10867 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10868 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10869 L:      linux-mips@vger.kernel.org
10870 S:      Supported
10871 F:      arch/mips/generic/board-ocelot.c
10872 F:      arch/mips/configs/generic/board-ocelot.config
10873 F:      arch/mips/boot/dts/mscc/
10874 F:      Documentation/devicetree/bindings/mips/mscc.txt
10875
10876 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
10877 M:      Don Brace <don.brace@microsemi.com>
10878 L:      esc.storagedev@microsemi.com
10879 L:      linux-scsi@vger.kernel.org
10880 S:      Supported
10881 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
10882 F:      drivers/scsi/smartpqi/Kconfig
10883 F:      drivers/scsi/smartpqi/Makefile
10884 F:      include/linux/cciss*.h
10885 F:      include/uapi/linux/cciss*.h
10886 F:      Documentation/scsi/smartpqi.txt
10887
10888 MICROSEMI ETHERNET SWITCH DRIVER
10889 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10890 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10891 L:      netdev@vger.kernel.org
10892 S:      Supported
10893 F:      drivers/net/ethernet/mscc/
10894 F:      include/soc/mscc/ocelot*
10895
10896 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
10897 M:      Chen Yu <yu.c.chen@intel.com>
10898 L:      platform-driver-x86@vger.kernel.org
10899 S:      Supported
10900 F:      drivers/platform/x86/surfacepro3_button.c
10901
10902 MICROTEK X6 SCANNER
10903 M:      Oliver Neukum <oliver@neukum.org>
10904 S:      Maintained
10905 F:      drivers/usb/image/microtek.*
10906
10907 MIPS
10908 M:      Ralf Baechle <ralf@linux-mips.org>
10909 M:      Paul Burton <paulburton@kernel.org>
10910 M:      James Hogan <jhogan@kernel.org>
10911 L:      linux-mips@vger.kernel.org
10912 W:      http://www.linux-mips.org/
10913 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
10914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
10915 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10916 S:      Supported
10917 F:      Documentation/devicetree/bindings/mips/
10918 F:      Documentation/mips/
10919 F:      arch/mips/
10920 F:      drivers/platform/mips/
10921
10922 MIPS BOSTON DEVELOPMENT BOARD
10923 M:      Paul Burton <paulburton@kernel.org>
10924 L:      linux-mips@vger.kernel.org
10925 S:      Maintained
10926 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
10927 F:      arch/mips/boot/dts/img/boston.dts
10928 F:      arch/mips/configs/generic/board-boston.config
10929 F:      drivers/clk/imgtec/clk-boston.c
10930 F:      include/dt-bindings/clock/boston-clock.h
10931
10932 MIPS GENERIC PLATFORM
10933 M:      Paul Burton <paulburton@kernel.org>
10934 L:      linux-mips@vger.kernel.org
10935 S:      Supported
10936 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
10937 F:      arch/mips/generic/
10938 F:      arch/mips/tools/generic-board-config.sh
10939
10940 MIPS/LOONGSON1 ARCHITECTURE
10941 M:      Keguang Zhang <keguang.zhang@gmail.com>
10942 L:      linux-mips@vger.kernel.org
10943 S:      Maintained
10944 F:      arch/mips/loongson32/
10945 F:      arch/mips/include/asm/mach-loongson32/
10946 F:      drivers/*/*loongson1*
10947 F:      drivers/*/*/*loongson1*
10948
10949 MIPS/LOONGSON2EF ARCHITECTURE
10950 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
10951 L:      linux-mips@vger.kernel.org
10952 S:      Maintained
10953 F:      arch/mips/loongson2ef/
10954 F:      arch/mips/include/asm/mach-loongson2ef/
10955 F:      drivers/*/*loongson2*
10956 F:      drivers/*/*/*loongson2*
10957
10958 MIPS/LOONGSON64 ARCHITECTURE
10959 M:      Huacai Chen <chenhc@lemote.com>
10960 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
10961 L:      linux-mips@vger.kernel.org
10962 S:      Maintained
10963 F:      arch/mips/loongson64/
10964 F:      arch/mips/include/asm/mach-loongson64/
10965 F:      drivers/platform/mips/cpu_hwmon.c
10966 F:      drivers/*/*loongson3*
10967 F:      drivers/*/*/*loongson3*
10968
10969 MIPS RINT INSTRUCTION EMULATION
10970 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
10971 L:      linux-mips@vger.kernel.org
10972 S:      Supported
10973 F:      arch/mips/math-emu/sp_rint.c
10974 F:      arch/mips/math-emu/dp_rint.c
10975
10976 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
10977 M:      Hans Verkuil <hverkuil@xs4all.nl>
10978 L:      linux-media@vger.kernel.org
10979 T:      git git://linuxtv.org/media_tree.git
10980 W:      https://linuxtv.org
10981 S:      Odd Fixes
10982 F:      drivers/media/radio/radio-miropcm20*
10983
10984 MMP SUPPORT
10985 R:      Lubomir Rintel <lkundrak@v3.sk>
10986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10987 S:      Odd Fixes
10988 F:      arch/arm/boot/dts/mmp*
10989 F:      arch/arm/mach-mmp/
10990
10991 MMU GATHER AND TLB INVALIDATION
10992 M:      Will Deacon <will@kernel.org>
10993 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
10994 M:      Andrew Morton <akpm@linux-foundation.org>
10995 M:      Nick Piggin <npiggin@gmail.com>
10996 M:      Peter Zijlstra <peterz@infradead.org>
10997 L:      linux-arch@vger.kernel.org
10998 L:      linux-mm@kvack.org
10999 S:      Maintained
11000 F:      arch/*/include/asm/tlb.h
11001 F:      include/asm-generic/tlb.h
11002 F:      mm/mmu_gather.c
11003
11004 MN88472 MEDIA DRIVER
11005 M:      Antti Palosaari <crope@iki.fi>
11006 L:      linux-media@vger.kernel.org
11007 W:      https://linuxtv.org
11008 W:      http://palosaari.fi/linux/
11009 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11010 S:      Maintained
11011 F:      drivers/media/dvb-frontends/mn88472*
11012
11013 MN88473 MEDIA DRIVER
11014 M:      Antti Palosaari <crope@iki.fi>
11015 L:      linux-media@vger.kernel.org
11016 W:      https://linuxtv.org
11017 W:      http://palosaari.fi/linux/
11018 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11019 S:      Maintained
11020 F:      drivers/media/dvb-frontends/mn88473*
11021
11022 MODULE SUPPORT
11023 M:      Jessica Yu <jeyu@kernel.org>
11024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11025 S:      Maintained
11026 F:      include/linux/module.h
11027 F:      kernel/module.c
11028
11029 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11030 W:      http://popies.net/meye/
11031 S:      Orphan
11032 F:      Documentation/media/v4l-drivers/meye*
11033 F:      drivers/media/pci/meye/
11034 F:      include/uapi/linux/meye.h
11035
11036 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11037 M:      Jiri Slaby <jirislaby@gmail.com>
11038 S:      Maintained
11039 F:      Documentation/driver-api/serial/moxa-smartio.rst
11040 F:      drivers/tty/mxser.*
11041
11042 MR800 AVERMEDIA USB FM RADIO DRIVER
11043 M:      Alexey Klimov <klimov.linux@gmail.com>
11044 L:      linux-media@vger.kernel.org
11045 T:      git git://linuxtv.org/media_tree.git
11046 S:      Maintained
11047 F:      drivers/media/radio/radio-mr800.c
11048
11049 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11050 M:      Alan Ott <alan@signal11.us>
11051 L:      linux-wpan@vger.kernel.org
11052 S:      Maintained
11053 F:      drivers/net/ieee802154/mrf24j40.c
11054 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11055
11056 MSI LAPTOP SUPPORT
11057 M:      "Lee, Chun-Yi" <jlee@suse.com>
11058 L:      platform-driver-x86@vger.kernel.org
11059 S:      Maintained
11060 F:      drivers/platform/x86/msi-laptop.c
11061
11062 MSI WMI SUPPORT
11063 L:      platform-driver-x86@vger.kernel.org
11064 S:      Orphan
11065 F:      drivers/platform/x86/msi-wmi.c
11066
11067 MSI001 MEDIA DRIVER
11068 M:      Antti Palosaari <crope@iki.fi>
11069 L:      linux-media@vger.kernel.org
11070 W:      https://linuxtv.org
11071 W:      http://palosaari.fi/linux/
11072 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11073 T:      git git://linuxtv.org/anttip/media_tree.git
11074 S:      Maintained
11075 F:      drivers/media/tuners/msi001*
11076
11077 MSI2500 MEDIA DRIVER
11078 M:      Antti Palosaari <crope@iki.fi>
11079 L:      linux-media@vger.kernel.org
11080 W:      https://linuxtv.org
11081 W:      http://palosaari.fi/linux/
11082 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11083 T:      git git://linuxtv.org/anttip/media_tree.git
11084 S:      Maintained
11085 F:      drivers/media/usb/msi2500/
11086
11087 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11088 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11089 L:      linux-mtd@lists.infradead.org
11090 S:      Maintained
11091 F:      drivers/mtd/devices/docg3*
11092
11093 MT9M032 APTINA SENSOR DRIVER
11094 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11095 L:      linux-media@vger.kernel.org
11096 T:      git git://linuxtv.org/media_tree.git
11097 S:      Maintained
11098 F:      drivers/media/i2c/mt9m032.c
11099 F:      include/media/i2c/mt9m032.h
11100
11101 MT9P031 APTINA CAMERA SENSOR
11102 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11103 L:      linux-media@vger.kernel.org
11104 T:      git git://linuxtv.org/media_tree.git
11105 S:      Maintained
11106 F:      drivers/media/i2c/mt9p031.c
11107 F:      include/media/i2c/mt9p031.h
11108
11109 MT9T001 APTINA CAMERA SENSOR
11110 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11111 L:      linux-media@vger.kernel.org
11112 T:      git git://linuxtv.org/media_tree.git
11113 S:      Maintained
11114 F:      drivers/media/i2c/mt9t001.c
11115 F:      include/media/i2c/mt9t001.h
11116
11117 MT9T112 APTINA CAMERA SENSOR
11118 M:      Jacopo Mondi <jacopo@jmondi.org>
11119 L:      linux-media@vger.kernel.org
11120 T:      git git://linuxtv.org/media_tree.git
11121 S:      Odd Fixes
11122 F:      drivers/media/i2c/mt9t112.c
11123 F:      include/media/i2c/mt9t112.h
11124
11125 MT9V032 APTINA CAMERA SENSOR
11126 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11127 L:      linux-media@vger.kernel.org
11128 T:      git git://linuxtv.org/media_tree.git
11129 S:      Maintained
11130 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11131 F:      drivers/media/i2c/mt9v032.c
11132 F:      include/media/i2c/mt9v032.h
11133
11134 MT9V111 APTINA CAMERA SENSOR
11135 M:      Jacopo Mondi <jacopo@jmondi.org>
11136 L:      linux-media@vger.kernel.org
11137 T:      git git://linuxtv.org/media_tree.git
11138 S:      Maintained
11139 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11140 F:      drivers/media/i2c/mt9v111.c
11141
11142 MULTIFUNCTION DEVICES (MFD)
11143 M:      Lee Jones <lee.jones@linaro.org>
11144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11145 S:      Supported
11146 F:      Documentation/devicetree/bindings/mfd/
11147 F:      drivers/mfd/
11148 F:      include/linux/mfd/
11149 F:      include/dt-bindings/mfd/
11150
11151 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11152 S:      Orphan
11153 F:      drivers/mmc/host/mmc_spi.c
11154 F:      include/linux/spi/mmc_spi.h
11155
11156 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11157 M:      Ulf Hansson <ulf.hansson@linaro.org>
11158 L:      linux-mmc@vger.kernel.org
11159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11160 S:      Maintained
11161 F:      Documentation/devicetree/bindings/mmc/
11162 F:      drivers/mmc/
11163 F:      include/linux/mmc/
11164 F:      include/uapi/linux/mmc/
11165
11166 MULTIPLEXER SUBSYSTEM
11167 M:      Peter Rosin <peda@axentia.se>
11168 S:      Maintained
11169 F:      Documentation/ABI/testing/sysfs-class-mux*
11170 F:      Documentation/devicetree/bindings/mux/
11171 F:      include/dt-bindings/mux/
11172 F:      include/linux/mux/
11173 F:      drivers/mux/
11174
11175 MULTITECH MULTIPORT CARD (ISICOM)
11176 S:      Orphan
11177 F:      drivers/tty/isicom.c
11178 F:      include/linux/isicom.h
11179
11180 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11181 M:      Bin Liu <b-liu@ti.com>
11182 L:      linux-usb@vger.kernel.org
11183 S:      Maintained
11184 F:      drivers/usb/musb/
11185
11186 MXL301RF MEDIA DRIVER
11187 M:      Akihiro Tsukada <tskd08@gmail.com>
11188 L:      linux-media@vger.kernel.org
11189 S:      Odd Fixes
11190 F:      drivers/media/tuners/mxl301rf*
11191
11192 MXL5007T MEDIA DRIVER
11193 M:      Michael Krufky <mkrufky@linuxtv.org>
11194 L:      linux-media@vger.kernel.org
11195 W:      https://linuxtv.org
11196 W:      http://github.com/mkrufky
11197 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11198 T:      git git://linuxtv.org/mkrufky/tuners.git
11199 S:      Maintained
11200 F:      drivers/media/tuners/mxl5007t.*
11201
11202 MXSFB DRM DRIVER
11203 M:      Marek Vasut <marex@denx.de>
11204 M:      Stefan Agner <stefan@agner.ch>
11205 L:      dri-devel@lists.freedesktop.org
11206 S:      Supported
11207 F:      drivers/gpu/drm/mxsfb/
11208 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11209 T:      git git://anongit.freedesktop.org/drm/drm-misc
11210
11211 MYLEX DAC960 PCI RAID Controller
11212 M:      Hannes Reinecke <hare@kernel.org>
11213 L:      linux-scsi@vger.kernel.org
11214 S:      Supported
11215 F:      drivers/scsi/myrb.*
11216 F:      drivers/scsi/myrs.*
11217
11218 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11219 M:      Chris Lee <christopher.lee@cspi.com>
11220 L:      netdev@vger.kernel.org
11221 W:      https://www.cspi.com/ethernet-products/support/downloads/
11222 S:      Supported
11223 F:      drivers/net/ethernet/myricom/myri10ge/
11224
11225 NAND FLASH SUBSYSTEM
11226 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11227 R:      Richard Weinberger <richard@nod.at>
11228 L:      linux-mtd@lists.infradead.org
11229 W:      http://www.linux-mtd.infradead.org/
11230 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11232 S:      Maintained
11233 F:      drivers/mtd/nand/
11234 F:      include/linux/mtd/*nand*.h
11235
11236 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11237 M:      Daniel Mack <zonque@gmail.com>
11238 S:      Maintained
11239 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11240 W:      http://www.native-instruments.com
11241 F:      sound/usb/caiaq/
11242
11243 NATSEMI ETHERNET DRIVER (DP8381x)
11244 S:      Orphan
11245 F:      drivers/net/ethernet/natsemi/natsemi.c
11246
11247 NCR 5380 SCSI DRIVERS
11248 M:      Finn Thain <fthain@telegraphics.com.au>
11249 M:      Michael Schmitz <schmitzmic@gmail.com>
11250 L:      linux-scsi@vger.kernel.org
11251 S:      Maintained
11252 F:      Documentation/scsi/g_NCR5380.txt
11253 F:      drivers/scsi/NCR5380.*
11254 F:      drivers/scsi/arm/cumana_1.c
11255 F:      drivers/scsi/arm/oak.c
11256 F:      drivers/scsi/atari_scsi.*
11257 F:      drivers/scsi/dmx3191d.c
11258 F:      drivers/scsi/g_NCR5380.*
11259 F:      drivers/scsi/mac_scsi.*
11260 F:      drivers/scsi/sun3_scsi.*
11261 F:      drivers/scsi/sun3_scsi_vme.c
11262
11263 NCSI LIBRARY:
11264 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11265 S:      Maintained
11266 F:      net/ncsi/
11267
11268 NCT6775 HARDWARE MONITOR DRIVER
11269 M:      Guenter Roeck <linux@roeck-us.net>
11270 L:      linux-hwmon@vger.kernel.org
11271 S:      Maintained
11272 F:      Documentation/hwmon/nct6775.rst
11273 F:      drivers/hwmon/nct6775.c
11274
11275 NET_FAILOVER MODULE
11276 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
11277 L:      netdev@vger.kernel.org
11278 S:      Supported
11279 F:      drivers/net/net_failover.c
11280 F:      include/net/net_failover.h
11281 F:      Documentation/networking/net_failover.rst
11282
11283 NETEM NETWORK EMULATOR
11284 M:      Stephen Hemminger <stephen@networkplumber.org>
11285 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
11286 S:      Maintained
11287 F:      net/sched/sch_netem.c
11288
11289 NETERION 10GbE DRIVERS (s2io/vxge)
11290 M:      Jon Mason <jdmason@kudzu.us>
11291 L:      netdev@vger.kernel.org
11292 S:      Supported
11293 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11294 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11295 F:      drivers/net/ethernet/neterion/
11296
11297 NETFILTER
11298 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11299 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11300 M:      Florian Westphal <fw@strlen.de>
11301 L:      netfilter-devel@vger.kernel.org
11302 L:      coreteam@netfilter.org
11303 W:      http://www.netfilter.org/
11304 W:      http://www.iptables.org/
11305 W:      http://www.nftables.org/
11306 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11309 S:      Maintained
11310 F:      include/linux/netfilter*
11311 F:      include/linux/netfilter/
11312 F:      include/net/netfilter/
11313 F:      include/uapi/linux/netfilter*
11314 F:      include/uapi/linux/netfilter/
11315 F:      net/*/netfilter.c
11316 F:      net/*/netfilter/
11317 F:      net/netfilter/
11318 F:      net/bridge/br_netfilter*.c
11319
11320 NETROM NETWORK LAYER
11321 M:      Ralf Baechle <ralf@linux-mips.org>
11322 L:      linux-hams@vger.kernel.org
11323 W:      http://www.linux-ax25.org/
11324 S:      Maintained
11325 F:      include/net/netrom.h
11326 F:      include/uapi/linux/netrom.h
11327 F:      net/netrom/
11328
11329 NETRONOME ETHERNET DRIVERS
11330 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11331 L:      oss-drivers@netronome.com
11332 S:      Maintained
11333 F:      drivers/net/ethernet/netronome/
11334
11335 NETWORK BLOCK DEVICE (NBD)
11336 M:      Josef Bacik <josef@toxicpanda.com>
11337 S:      Maintained
11338 L:      linux-block@vger.kernel.org
11339 L:      nbd@other.debian.org
11340 F:      Documentation/admin-guide/blockdev/nbd.rst
11341 F:      drivers/block/nbd.c
11342 F:      include/trace/events/nbd.h
11343 F:      include/uapi/linux/nbd.h
11344
11345 NETWORK DROP MONITOR
11346 M:      Neil Horman <nhorman@tuxdriver.com>
11347 L:      netdev@vger.kernel.org
11348 S:      Maintained
11349 W:      https://fedorahosted.org/dropwatch/
11350 F:      net/core/drop_monitor.c
11351 F:      include/uapi/linux/net_dropmon.h
11352 F:      include/net/drop_monitor.h
11353
11354 NETWORKING DRIVERS
11355 M:      "David S. Miller" <davem@davemloft.net>
11356 L:      netdev@vger.kernel.org
11357 W:      http://www.linuxfoundation.org/en/Net
11358 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11361 S:      Odd Fixes
11362 F:      Documentation/devicetree/bindings/net/
11363 F:      drivers/net/
11364 F:      include/linux/if_*
11365 F:      include/linux/netdevice.h
11366 F:      include/linux/etherdevice.h
11367 F:      include/linux/fcdevice.h
11368 F:      include/linux/fddidevice.h
11369 F:      include/linux/hippidevice.h
11370 F:      include/linux/inetdevice.h
11371 F:      include/uapi/linux/if_*
11372 F:      include/uapi/linux/netdevice.h
11373
11374 NETWORKING DRIVERS (WIRELESS)
11375 M:      Kalle Valo <kvalo@codeaurora.org>
11376 L:      linux-wireless@vger.kernel.org
11377 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11380 S:      Maintained
11381 F:      Documentation/devicetree/bindings/net/wireless/
11382 F:      drivers/net/wireless/
11383
11384 NETWORKING [DSA]
11385 M:      Andrew Lunn <andrew@lunn.ch>
11386 M:      Vivien Didelot <vivien.didelot@gmail.com>
11387 M:      Florian Fainelli <f.fainelli@gmail.com>
11388 S:      Maintained
11389 F:      Documentation/devicetree/bindings/net/dsa/
11390 F:      net/dsa/
11391 F:      include/net/dsa.h
11392 F:      include/linux/dsa/
11393 F:      include/linux/platform_data/dsa.h
11394 F:      drivers/net/dsa/
11395
11396 NETWORKING [GENERAL]
11397 M:      "David S. Miller" <davem@davemloft.net>
11398 L:      netdev@vger.kernel.org
11399 W:      http://www.linuxfoundation.org/en/Net
11400 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11403 B:      mailto:netdev@vger.kernel.org
11404 S:      Maintained
11405 F:      net/
11406 F:      include/net/
11407 F:      include/linux/in.h
11408 F:      include/linux/net.h
11409 F:      include/linux/netdevice.h
11410 F:      include/uapi/linux/in.h
11411 F:      include/uapi/linux/net.h
11412 F:      include/uapi/linux/netdevice.h
11413 F:      include/uapi/linux/net_namespace.h
11414 F:      tools/testing/selftests/net/
11415 F:      lib/net_utils.c
11416 F:      lib/random32.c
11417 F:      Documentation/networking/
11418
11419 NETWORKING [IPSEC]
11420 M:      Steffen Klassert <steffen.klassert@secunet.com>
11421 M:      Herbert Xu <herbert@gondor.apana.org.au>
11422 M:      "David S. Miller" <davem@davemloft.net>
11423 L:      netdev@vger.kernel.org
11424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11426 S:      Maintained
11427 F:      net/xfrm/
11428 F:      net/key/
11429 F:      net/ipv4/xfrm*
11430 F:      net/ipv4/esp4*
11431 F:      net/ipv4/ah4.c
11432 F:      net/ipv4/ipcomp.c
11433 F:      net/ipv4/ip_vti.c
11434 F:      net/ipv6/xfrm*
11435 F:      net/ipv6/esp6*
11436 F:      net/ipv6/ah6.c
11437 F:      net/ipv6/ipcomp6.c
11438 F:      net/ipv6/ip6_vti.c
11439 F:      include/uapi/linux/xfrm.h
11440 F:      include/net/xfrm.h
11441
11442 NETWORKING [IPv4/IPv6]
11443 M:      "David S. Miller" <davem@davemloft.net>
11444 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11445 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11446 L:      netdev@vger.kernel.org
11447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11448 S:      Maintained
11449 F:      net/ipv4/
11450 F:      net/ipv6/
11451 F:      include/net/ip*
11452 F:      arch/x86/net/*
11453
11454 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11455 M:      Paul Moore <paul@paul-moore.com>
11456 W:      https://github.com/netlabel
11457 L:      netdev@vger.kernel.org
11458 L:      linux-security-module@vger.kernel.org
11459 S:      Maintained
11460 F:      Documentation/netlabel/
11461 F:      include/net/calipso.h
11462 F:      include/net/cipso_ipv4.h
11463 F:      include/net/netlabel.h
11464 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11465 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11466 F:      net/netlabel/
11467 F:      net/ipv4/cipso_ipv4.c
11468 F:      net/ipv6/calipso.c
11469 F:      net/netfilter/xt_CONNSECMARK.c
11470 F:      net/netfilter/xt_SECMARK.c
11471
11472 NETWORKING [TCP]
11473 M:      Eric Dumazet <edumazet@google.com>
11474 L:      netdev@vger.kernel.org
11475 S:      Maintained
11476 F:      net/ipv4/tcp*.c
11477 F:      net/ipv4/syncookies.c
11478 F:      net/ipv6/tcp*.c
11479 F:      net/ipv6/syncookies.c
11480 F:      include/uapi/linux/tcp.h
11481 F:      include/net/tcp.h
11482 F:      include/linux/tcp.h
11483 F:      include/trace/events/tcp.h
11484
11485 NETWORKING [TLS]
11486 M:      Boris Pismenny <borisp@mellanox.com>
11487 M:      Aviad Yehezkel <aviadye@mellanox.com>
11488 M:      John Fastabend <john.fastabend@gmail.com>
11489 M:      Daniel Borkmann <daniel@iogearbox.net>
11490 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11491 L:      netdev@vger.kernel.org
11492 S:      Maintained
11493 F:      net/tls/*
11494 F:      include/uapi/linux/tls.h
11495 F:      include/net/tls.h
11496
11497 NETWORKING [WIRELESS]
11498 L:      linux-wireless@vger.kernel.org
11499 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11500
11501 NETDEVSIM
11502 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11503 S:      Maintained
11504 F:      drivers/net/netdevsim/*
11505
11506 NETXEN (1/10) GbE SUPPORT
11507 M:      Manish Chopra <manishc@marvell.com>
11508 M:      Rahul Verma <rahulv@marvell.com>
11509 M:      GR-Linux-NIC-Dev@marvell.com
11510 L:      netdev@vger.kernel.org
11511 S:      Supported
11512 F:      drivers/net/ethernet/qlogic/netxen/
11513
11514 NEXTHOP
11515 M:      David Ahern <dsahern@kernel.org>
11516 L:      netdev@vger.kernel.org
11517 S:      Maintained
11518 F:      include/net/nexthop.h
11519 F:      include/uapi/linux/nexthop.h
11520 F:      include/net/netns/nexthop.h
11521 F:      net/ipv4/nexthop.c
11522
11523 NFC SUBSYSTEM
11524 L:      netdev@vger.kernel.org
11525 S:      Orphan
11526 F:      net/nfc/
11527 F:      include/net/nfc/
11528 F:      include/uapi/linux/nfc.h
11529 F:      drivers/nfc/
11530 F:      include/linux/platform_data/nfcmrvl.h
11531 F:      Documentation/devicetree/bindings/net/nfc/
11532
11533 NFS, SUNRPC, AND LOCKD CLIENTS
11534 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
11535 M:      Anna Schumaker <anna.schumaker@netapp.com>
11536 L:      linux-nfs@vger.kernel.org
11537 W:      http://client.linux-nfs.org
11538 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11539 S:      Maintained
11540 F:      fs/lockd/
11541 F:      fs/nfs/
11542 F:      fs/nfs_common/
11543 F:      net/sunrpc/
11544 F:      include/linux/lockd/
11545 F:      include/linux/nfs*
11546 F:      include/linux/sunrpc/
11547 F:      include/uapi/linux/nfs*
11548 F:      include/uapi/linux/sunrpc/
11549
11550 NILFS2 FILESYSTEM
11551 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
11552 L:      linux-nilfs@vger.kernel.org
11553 W:      https://nilfs.sourceforge.io/
11554 W:      https://nilfs.osdn.jp/
11555 T:      git git://github.com/konis/nilfs2.git
11556 S:      Supported
11557 F:      Documentation/filesystems/nilfs2.txt
11558 F:      fs/nilfs2/
11559 F:      include/trace/events/nilfs2.h
11560 F:      include/uapi/linux/nilfs2_api.h
11561 F:      include/uapi/linux/nilfs2_ondisk.h
11562
11563 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11564 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11565 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11566 S:      Maintained
11567 F:      Documentation/scsi/NinjaSCSI.txt
11568 F:      drivers/scsi/pcmcia/nsp_*
11569
11570 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11571 M:      GOTO Masanori <gotom@debian.or.jp>
11572 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11573 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11574 S:      Maintained
11575 F:      Documentation/scsi/NinjaSCSI.txt
11576 F:      drivers/scsi/nsp32*
11577
11578 NIOS2 ARCHITECTURE
11579 M:      Ley Foon Tan <lftan@altera.com>
11580 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
11581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11582 S:      Maintained
11583 F:      arch/nios2/
11584
11585 NOHZ, DYNTICKS SUPPORT
11586 M:      Frederic Weisbecker <fweisbec@gmail.com>
11587 M:      Thomas Gleixner <tglx@linutronix.de>
11588 M:      Ingo Molnar <mingo@kernel.org>
11589 L:      linux-kernel@vger.kernel.org
11590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11591 S:      Maintained
11592 F:      kernel/time/tick*.*
11593 F:      include/linux/tick.h
11594 F:      include/linux/sched/nohz.h
11595
11596 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11597 M:      Pavel Machek <pavel@ucw.cz>
11598 M:      Sakari Ailus <sakari.ailus@iki.fi>
11599 L:      linux-media@vger.kernel.org
11600 S:      Maintained
11601 F:      drivers/media/i2c/et8ek8
11602 F:      drivers/media/i2c/ad5820.c
11603
11604 NOKIA N900 POWER SUPPLY DRIVERS
11605 R:      Pali Rohár <pali.rohar@gmail.com>
11606 F:      include/linux/power/bq2415x_charger.h
11607 F:      include/linux/power/bq27xxx_battery.h
11608 F:      drivers/power/supply/bq2415x_charger.c
11609 F:      drivers/power/supply/bq27xxx_battery.c
11610 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11611 F:      drivers/power/supply/isp1704_charger.c
11612 F:      drivers/power/supply/rx51_battery.c
11613
11614 NOLIBC HEADER FILE
11615 M:      Willy Tarreau <w@1wt.eu>
11616 S:      Maintained
11617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11618 F:      tools/include/nolibc/
11619
11620 NSDEPS
11621 M:      Matthias Maennich <maennich@google.com>
11622 S:      Maintained
11623 F:      scripts/nsdeps
11624 F:      Documentation/core-api/symbol-namespaces.rst
11625
11626 NTB AMD DRIVER
11627 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
11628 L:      linux-ntb@googlegroups.com
11629 S:      Supported
11630 F:      drivers/ntb/hw/amd/
11631
11632 NTB DRIVER CORE
11633 M:      Jon Mason <jdmason@kudzu.us>
11634 M:      Dave Jiang <dave.jiang@intel.com>
11635 M:      Allen Hubbe <allenbh@gmail.com>
11636 L:      linux-ntb@googlegroups.com
11637 S:      Supported
11638 W:      https://github.com/jonmason/ntb/wiki
11639 T:      git git://github.com/jonmason/ntb.git
11640 F:      drivers/ntb/
11641 F:      drivers/net/ntb_netdev.c
11642 F:      include/linux/ntb.h
11643 F:      include/linux/ntb_transport.h
11644 F:      tools/testing/selftests/ntb/
11645
11646 NTB IDT DRIVER
11647 M:      Serge Semin <fancer.lancer@gmail.com>
11648 L:      linux-ntb@googlegroups.com
11649 S:      Supported
11650 F:      drivers/ntb/hw/idt/
11651
11652 NTB INTEL DRIVER
11653 M:      Dave Jiang <dave.jiang@intel.com>
11654 L:      linux-ntb@googlegroups.com
11655 S:      Supported
11656 W:      https://github.com/davejiang/linux/wiki
11657 T:      git https://github.com/davejiang/linux.git
11658 F:      drivers/ntb/hw/intel/
11659
11660 NTFS FILESYSTEM
11661 M:      Anton Altaparmakov <anton@tuxera.com>
11662 L:      linux-ntfs-dev@lists.sourceforge.net
11663 W:      http://www.tuxera.com/
11664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
11665 S:      Supported
11666 F:      Documentation/filesystems/ntfs.txt
11667 F:      fs/ntfs/
11668
11669 NUBUS SUBSYSTEM
11670 M:      Finn Thain <fthain@telegraphics.com.au>
11671 L:      linux-m68k@lists.linux-m68k.org
11672 S:      Maintained
11673 F:      arch/*/include/asm/nubus.h
11674 F:      drivers/nubus/
11675 F:      include/linux/nubus.h
11676 F:      include/uapi/linux/nubus.h
11677
11678 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
11679 M:      Antonino Daplas <adaplas@gmail.com>
11680 L:      linux-fbdev@vger.kernel.org
11681 S:      Maintained
11682 F:      drivers/video/fbdev/riva/
11683 F:      drivers/video/fbdev/nvidia/
11684
11685 NVM EXPRESS DRIVER
11686 M:      Keith Busch <kbusch@kernel.org>
11687 M:      Jens Axboe <axboe@fb.com>
11688 M:      Christoph Hellwig <hch@lst.de>
11689 M:      Sagi Grimberg <sagi@grimberg.me>
11690 L:      linux-nvme@lists.infradead.org
11691 T:      git://git.infradead.org/nvme.git
11692 W:      http://git.infradead.org/nvme.git
11693 S:      Supported
11694 F:      drivers/nvme/host/
11695 F:      include/linux/nvme.h
11696 F:      include/uapi/linux/nvme_ioctl.h
11697
11698 NVM EXPRESS FC TRANSPORT DRIVERS
11699 M:      James Smart <james.smart@broadcom.com>
11700 L:      linux-nvme@lists.infradead.org
11701 S:      Supported
11702 F:      include/linux/nvme-fc.h
11703 F:      include/linux/nvme-fc-driver.h
11704 F:      drivers/nvme/host/fc.c
11705 F:      drivers/nvme/target/fc.c
11706 F:      drivers/nvme/target/fcloop.c
11707
11708 NVM EXPRESS TARGET DRIVER
11709 M:      Christoph Hellwig <hch@lst.de>
11710 M:      Sagi Grimberg <sagi@grimberg.me>
11711 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
11712 L:      linux-nvme@lists.infradead.org
11713 T:      git://git.infradead.org/nvme.git
11714 W:      http://git.infradead.org/nvme.git
11715 S:      Supported
11716 F:      drivers/nvme/target/
11717
11718 NVMEM FRAMEWORK
11719 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
11720 S:      Maintained
11721 F:      drivers/nvmem/
11722 F:      Documentation/devicetree/bindings/nvmem/
11723 F:      Documentation/ABI/stable/sysfs-bus-nvmem
11724 F:      include/linux/nvmem-consumer.h
11725 F:      include/linux/nvmem-provider.h
11726
11727 NXP FXAS21002C DRIVER
11728 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11729 L:      linux-iio@vger.kernel.org
11730 S:      Maintained
11731 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
11732 F:      drivers/iio/gyro/fxas21002c_core.c
11733 F:      drivers/iio/gyro/fxas21002c.h
11734 F:      drivers/iio/gyro/fxas21002c_i2c.c
11735 F:      drivers/iio/gyro/fxas21002c_spi.c
11736
11737 NXP SGTL5000 DRIVER
11738 M:      Fabio Estevam <festevam@gmail.com>
11739 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11740 S:      Maintained
11741 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
11742 F:      sound/soc/codecs/sgtl5000*
11743
11744 NXP SJA1105 ETHERNET SWITCH DRIVER
11745 M:      Vladimir Oltean <olteanv@gmail.com>
11746 L:      linux-kernel@vger.kernel.org
11747 S:      Maintained
11748 F:      drivers/net/dsa/sja1105
11749
11750 NXP TDA998X DRM DRIVER
11751 M:      Russell King <linux@armlinux.org.uk>
11752 S:      Maintained
11753 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
11754 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
11755 F:      drivers/gpu/drm/i2c/tda998x_drv.c
11756 F:      include/drm/i2c/tda998x.h
11757 F:      include/dt-bindings/display/tda998x.h
11758 K:      "nxp,tda998x"
11759
11760 NXP TFA9879 DRIVER
11761 M:      Peter Rosin <peda@axentia.se>
11762 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11763 S:      Maintained
11764 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
11765 F:      sound/soc/codecs/tfa9879*
11766
11767 NXP-NCI NFC DRIVER
11768 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
11769 R:      Charles Gorand <charles.gorand@effinnov.com>
11770 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
11771 S:      Supported
11772 F:      drivers/nfc/nxp-nci
11773
11774 OBJAGG
11775 M:      Jiri Pirko <jiri@mellanox.com>
11776 L:      netdev@vger.kernel.org
11777 S:      Supported
11778 F:      lib/objagg.c
11779 F:      lib/test_objagg.c
11780 F:      include/linux/objagg.h
11781
11782 NXP FSPI DRIVER
11783 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
11784 M:      Ashish Kumar <ashish.kumar@nxp.com>
11785 L:      linux-spi@vger.kernel.org
11786 S:      Maintained
11787 F:      drivers/spi/spi-nxp-fspi.c
11788 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
11789
11790 OBJTOOL
11791 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11792 M:      Peter Zijlstra <peterz@infradead.org>
11793 S:      Supported
11794 F:      tools/objtool/
11795
11796 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
11797 M:      Frederic Barrat <fbarrat@linux.ibm.com>
11798 M:      Andrew Donnellan <ajd@linux.ibm.com>
11799 L:      linuxppc-dev@lists.ozlabs.org
11800 S:      Supported
11801 F:      arch/powerpc/platforms/powernv/ocxl.c
11802 F:      arch/powerpc/include/asm/pnv-ocxl.h
11803 F:      drivers/misc/ocxl/
11804 F:      include/misc/ocxl*
11805 F:      include/uapi/misc/ocxl.h
11806 F:      Documentation/userspace-api/accelerators/ocxl.rst
11807
11808 OMAP AUDIO SUPPORT
11809 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11810 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
11811 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11812 L:      linux-omap@vger.kernel.org
11813 S:      Maintained
11814 F:      sound/soc/ti/omap*
11815 F:      sound/soc/ti/rx51.c
11816 F:      sound/soc/ti/n810.c
11817 F:      sound/soc/ti/sdma-pcm.*
11818
11819 OMAP CLOCK FRAMEWORK SUPPORT
11820 M:      Paul Walmsley <paul@pwsan.com>
11821 L:      linux-omap@vger.kernel.org
11822 S:      Maintained
11823 F:      arch/arm/*omap*/*clock*
11824
11825 OMAP DEVICE TREE SUPPORT
11826 M:      Benoît Cousson <bcousson@baylibre.com>
11827 M:      Tony Lindgren <tony@atomide.com>
11828 L:      linux-omap@vger.kernel.org
11829 L:      devicetree@vger.kernel.org
11830 S:      Maintained
11831 F:      arch/arm/boot/dts/*omap*
11832 F:      arch/arm/boot/dts/*am3*
11833 F:      arch/arm/boot/dts/*am4*
11834 F:      arch/arm/boot/dts/*am5*
11835 F:      arch/arm/boot/dts/*dra7*
11836
11837 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
11838 L:      linux-omap@vger.kernel.org
11839 L:      linux-fbdev@vger.kernel.org
11840 S:      Orphan
11841 F:      drivers/video/fbdev/omap2/
11842 F:      Documentation/arm/omap/dss.rst
11843
11844 OMAP FRAMEBUFFER SUPPORT
11845 L:      linux-fbdev@vger.kernel.org
11846 L:      linux-omap@vger.kernel.org
11847 S:      Orphan
11848 F:      drivers/video/fbdev/omap/
11849
11850 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
11851 M:      Roger Quadros <rogerq@ti.com>
11852 M:      Tony Lindgren <tony@atomide.com>
11853 L:      linux-omap@vger.kernel.org
11854 S:      Maintained
11855 F:      drivers/memory/omap-gpmc.c
11856 F:      arch/arm/mach-omap2/*gpmc*
11857
11858 OMAP GPIO DRIVER
11859 M:      Grygorii Strashko <grygorii.strashko@ti.com>
11860 M:      Santosh Shilimkar <ssantosh@kernel.org>
11861 M:      Kevin Hilman <khilman@kernel.org>
11862 L:      linux-omap@vger.kernel.org
11863 S:      Maintained
11864 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
11865 F:      drivers/gpio/gpio-omap.c
11866
11867 OMAP HARDWARE SPINLOCK SUPPORT
11868 M:      Ohad Ben-Cohen <ohad@wizery.com>
11869 L:      linux-omap@vger.kernel.org
11870 S:      Maintained
11871 F:      drivers/hwspinlock/omap_hwspinlock.c
11872
11873 OMAP HS MMC SUPPORT
11874 L:      linux-mmc@vger.kernel.org
11875 L:      linux-omap@vger.kernel.org
11876 S:      Orphan
11877 F:      drivers/mmc/host/omap_hsmmc.c
11878
11879 OMAP HWMOD DATA
11880 M:      Paul Walmsley <paul@pwsan.com>
11881 L:      linux-omap@vger.kernel.org
11882 S:      Maintained
11883 F:      arch/arm/mach-omap2/omap_hwmod*data*
11884
11885 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
11886 M:      Benoît Cousson <bcousson@baylibre.com>
11887 L:      linux-omap@vger.kernel.org
11888 S:      Maintained
11889 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
11890
11891 OMAP HWMOD SUPPORT
11892 M:      Benoît Cousson <bcousson@baylibre.com>
11893 M:      Paul Walmsley <paul@pwsan.com>
11894 L:      linux-omap@vger.kernel.org
11895 S:      Maintained
11896 F:      arch/arm/mach-omap2/omap_hwmod.*
11897
11898 OMAP I2C DRIVER
11899 M:      Vignesh R <vigneshr@ti.com>
11900 L:      linux-omap@vger.kernel.org
11901 L:      linux-i2c@vger.kernel.org
11902 S:      Maintained
11903 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
11904 F:      drivers/i2c/busses/i2c-omap.c
11905
11906 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
11907 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11908 L:      linux-media@vger.kernel.org
11909 S:      Maintained
11910 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
11911 F:      drivers/media/platform/omap3isp/
11912 F:      drivers/staging/media/omap4iss/
11913
11914 OMAP MMC SUPPORT
11915 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11916 L:      linux-omap@vger.kernel.org
11917 S:      Odd Fixes
11918 F:      drivers/mmc/host/omap.c
11919
11920 OMAP POWER MANAGEMENT SUPPORT
11921 M:      Kevin Hilman <khilman@kernel.org>
11922 L:      linux-omap@vger.kernel.org
11923 S:      Maintained
11924 F:      arch/arm/*omap*/*pm*
11925 F:      drivers/cpufreq/omap-cpufreq.c
11926
11927 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
11928 M:      Rajendra Nayak <rnayak@codeaurora.org>
11929 M:      Paul Walmsley <paul@pwsan.com>
11930 L:      linux-omap@vger.kernel.org
11931 S:      Maintained
11932 F:      arch/arm/mach-omap2/prm*
11933
11934 OMAP RANDOM NUMBER GENERATOR SUPPORT
11935 M:      Deepak Saxena <dsaxena@plexity.net>
11936 S:      Maintained
11937 F:      drivers/char/hw_random/omap-rng.c
11938
11939 OMAP USB SUPPORT
11940 L:      linux-usb@vger.kernel.org
11941 L:      linux-omap@vger.kernel.org
11942 S:      Orphan
11943 F:      drivers/usb/*/*omap*
11944 F:      arch/arm/*omap*/usb*
11945
11946 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
11947 M:      Mark Jackson <mpfj@newflow.co.uk>
11948 L:      linux-omap@vger.kernel.org
11949 S:      Maintained
11950 F:      arch/arm/boot/dts/am335x-nano.dts
11951
11952 OMAP1 SUPPORT
11953 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11954 M:      Tony Lindgren <tony@atomide.com>
11955 L:      linux-omap@vger.kernel.org
11956 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11958 S:      Maintained
11959 F:      arch/arm/mach-omap1/
11960 F:      arch/arm/plat-omap/
11961 F:      arch/arm/configs/omap1_defconfig
11962 F:      drivers/i2c/busses/i2c-omap.c
11963 F:      include/linux/platform_data/i2c-omap.h
11964 F:      include/linux/platform_data/ams-delta-fiq.h
11965
11966 OMAP2+ SUPPORT
11967 M:      Tony Lindgren <tony@atomide.com>
11968 L:      linux-omap@vger.kernel.org
11969 W:      http://www.muru.com/linux/omap/
11970 W:      http://linux.omap.com/
11971 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11973 S:      Maintained
11974 F:      arch/arm/mach-omap2/
11975 F:      arch/arm/plat-omap/
11976 F:      arch/arm/configs/omap2plus_defconfig
11977 F:      drivers/bus/ti-sysc.c
11978 F:      drivers/i2c/busses/i2c-omap.c
11979 F:      drivers/irqchip/irq-omap-intc.c
11980 F:      drivers/mfd/*omap*.c
11981 F:      drivers/mfd/menelaus.c
11982 F:      drivers/mfd/palmas.c
11983 F:      drivers/mfd/tps65217.c
11984 F:      drivers/mfd/tps65218.c
11985 F:      drivers/mfd/tps65910.c
11986 F:      drivers/mfd/twl-core.[ch]
11987 F:      drivers/mfd/twl4030*.c
11988 F:      drivers/mfd/twl6030*.c
11989 F:      drivers/mfd/twl6040*.c
11990 F:      drivers/regulator/palmas-regulator*.c
11991 F:      drivers/regulator/pbias-regulator.c
11992 F:      drivers/regulator/tps65217-regulator.c
11993 F:      drivers/regulator/tps65218-regulator.c
11994 F:      drivers/regulator/tps65910-regulator.c
11995 F:      drivers/regulator/twl-regulator.c
11996 F:      drivers/regulator/twl6030-regulator.c
11997 F:      include/linux/platform_data/i2c-omap.h
11998 F:      include/linux/platform_data/ti-sysc.h
11999
12000 ONION OMEGA2+ BOARD
12001 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
12002 L:      linux-mips@vger.kernel.org
12003 S:      Maintained
12004 F:      arch/mips/boot/dts/ralink/omega2p.dts
12005
12006 OMFS FILESYSTEM
12007 M:      Bob Copeland <me@bobcopeland.com>
12008 L:      linux-karma-devel@lists.sourceforge.net
12009 S:      Maintained
12010 F:      Documentation/filesystems/omfs.txt
12011 F:      fs/omfs/
12012
12013 OMNIKEY CARDMAN 4000 DRIVER
12014 M:      Harald Welte <laforge@gnumonks.org>
12015 S:      Maintained
12016 F:      drivers/char/pcmcia/cm4000_cs.c
12017 F:      include/linux/cm4000_cs.h
12018 F:      include/uapi/linux/cm4000_cs.h
12019
12020 OMNIKEY CARDMAN 4040 DRIVER
12021 M:      Harald Welte <laforge@gnumonks.org>
12022 S:      Maintained
12023 F:      drivers/char/pcmcia/cm4040_cs.*
12024
12025 OMNIVISION OV13858 SENSOR DRIVER
12026 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12027 L:      linux-media@vger.kernel.org
12028 T:      git git://linuxtv.org/media_tree.git
12029 S:      Maintained
12030 F:      drivers/media/i2c/ov13858.c
12031
12032 OMNIVISION OV2680 SENSOR DRIVER
12033 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12034 L:      linux-media@vger.kernel.org
12035 T:      git git://linuxtv.org/media_tree.git
12036 S:      Maintained
12037 F:      drivers/media/i2c/ov2680.c
12038 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12039
12040 OMNIVISION OV2685 SENSOR DRIVER
12041 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12042 L:      linux-media@vger.kernel.org
12043 T:      git git://linuxtv.org/media_tree.git
12044 S:      Maintained
12045 F:      drivers/media/i2c/ov2685.c
12046
12047 OMNIVISION OV5640 SENSOR DRIVER
12048 M:      Steve Longerbeam <slongerbeam@gmail.com>
12049 L:      linux-media@vger.kernel.org
12050 T:      git git://linuxtv.org/media_tree.git
12051 S:      Maintained
12052 F:      drivers/media/i2c/ov5640.c
12053
12054 OMNIVISION OV5647 SENSOR DRIVER
12055 M:      Luis Oliveira <lolivei@synopsys.com>
12056 L:      linux-media@vger.kernel.org
12057 T:      git git://linuxtv.org/media_tree.git
12058 S:      Maintained
12059 F:      drivers/media/i2c/ov5647.c
12060
12061 OMNIVISION OV5670 SENSOR DRIVER
12062 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12063 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12064 L:      linux-media@vger.kernel.org
12065 T:      git git://linuxtv.org/media_tree.git
12066 S:      Maintained
12067 F:      drivers/media/i2c/ov5670.c
12068
12069 OMNIVISION OV5675 SENSOR DRIVER
12070 M:      Shawn Tu <shawnx.tu@intel.com>
12071 L:      linux-media@vger.kernel.org
12072 T:      git git://linuxtv.org/media_tree.git
12073 S:      Maintained
12074 F:      drivers/media/i2c/ov5675.c
12075
12076 OMNIVISION OV5695 SENSOR DRIVER
12077 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12078 L:      linux-media@vger.kernel.org
12079 T:      git git://linuxtv.org/media_tree.git
12080 S:      Maintained
12081 F:      drivers/media/i2c/ov5695.c
12082
12083 OMNIVISION OV7670 SENSOR DRIVER
12084 M:      Jonathan Corbet <corbet@lwn.net>
12085 L:      linux-media@vger.kernel.org
12086 T:      git git://linuxtv.org/media_tree.git
12087 S:      Maintained
12088 F:      drivers/media/i2c/ov7670.c
12089 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12090
12091 OMNIVISION OV772x SENSOR DRIVER
12092 M:      Jacopo Mondi <jacopo@jmondi.org>
12093 L:      linux-media@vger.kernel.org
12094 T:      git git://linuxtv.org/media_tree.git
12095 S:      Odd fixes
12096 F:      drivers/media/i2c/ov772x.c
12097 F:      include/media/i2c/ov772x.h
12098 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12099
12100 OMNIVISION OV7740 SENSOR DRIVER
12101 M:      Wenyou Yang <wenyou.yang@microchip.com>
12102 L:      linux-media@vger.kernel.org
12103 T:      git git://linuxtv.org/media_tree.git
12104 S:      Maintained
12105 F:      drivers/media/i2c/ov7740.c
12106 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12107
12108 OMNIVISION OV9640 SENSOR DRIVER
12109 M:      Petr Cvek <petrcvekcz@gmail.com>
12110 L:      linux-media@vger.kernel.org
12111 S:      Maintained
12112 F:      drivers/media/i2c/ov9640.*
12113
12114 OMNIVISION OV8856 SENSOR DRIVER
12115 M:      Ben Kao <ben.kao@intel.com>
12116 L:      linux-media@vger.kernel.org
12117 T:      git git://linuxtv.org/media_tree.git
12118 S:      Maintained
12119 F:      drivers/media/i2c/ov8856.c
12120
12121 OMNIVISION OV9650 SENSOR DRIVER
12122 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12123 R:      Akinobu Mita <akinobu.mita@gmail.com>
12124 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12125 L:      linux-media@vger.kernel.org
12126 T:      git git://linuxtv.org/media_tree.git
12127 S:      Maintained
12128 F:      drivers/media/i2c/ov9650.c
12129 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12130
12131 ONENAND FLASH DRIVER
12132 M:      Kyungmin Park <kyungmin.park@samsung.com>
12133 L:      linux-mtd@lists.infradead.org
12134 S:      Maintained
12135 F:      drivers/mtd/nand/onenand/
12136 F:      include/linux/mtd/onenand*.h
12137
12138 OP-TEE DRIVER
12139 M:      Jens Wiklander <jens.wiklander@linaro.org>
12140 L:      tee-dev@lists.linaro.org
12141 S:      Maintained
12142 F:      drivers/tee/optee/
12143
12144 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12145 M:      Sumit Garg <sumit.garg@linaro.org>
12146 L:      tee-dev@lists.linaro.org
12147 S:      Maintained
12148 F:      drivers/char/hw_random/optee-rng.c
12149
12150 OPA-VNIC DRIVER
12151 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12152 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12153 L:      linux-rdma@vger.kernel.org
12154 S:      Supported
12155 F:      drivers/infiniband/ulp/opa_vnic
12156
12157 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12158 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12159 M:      Frank Rowand <frowand.list@gmail.com>
12160 L:      devicetree@vger.kernel.org
12161 S:      Maintained
12162 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12163 F:      Documentation/devicetree/overlay-notes.txt
12164 F:      drivers/of/overlay.c
12165 F:      drivers/of/resolver.c
12166 K:      of_overlay_notifier_
12167
12168 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12169 M:      Rob Herring <robh+dt@kernel.org>
12170 M:      Frank Rowand <frowand.list@gmail.com>
12171 L:      devicetree@vger.kernel.org
12172 W:      http://www.devicetree.org/
12173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12174 S:      Maintained
12175 F:      drivers/of/
12176 F:      include/linux/of*.h
12177 F:      scripts/dtc/
12178 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12179
12180 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12181 M:      Rob Herring <robh+dt@kernel.org>
12182 M:      Mark Rutland <mark.rutland@arm.com>
12183 L:      devicetree@vger.kernel.org
12184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12185 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12186 S:      Maintained
12187 F:      Documentation/devicetree/
12188 F:      arch/*/boot/dts/
12189 F:      include/dt-bindings/
12190
12191 OPENCORES I2C BUS DRIVER
12192 M:      Peter Korsgaard <peter@korsgaard.com>
12193 M:      Andrew Lunn <andrew@lunn.ch>
12194 L:      linux-i2c@vger.kernel.org
12195 S:      Maintained
12196 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12197 F:      Documentation/i2c/busses/i2c-ocores.rst
12198 F:      drivers/i2c/busses/i2c-ocores.c
12199 F:      include/linux/platform_data/i2c-ocores.h
12200
12201 OPENRISC ARCHITECTURE
12202 M:      Jonas Bonn <jonas@southpole.se>
12203 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12204 M:      Stafford Horne <shorne@gmail.com>
12205 T:      git git://github.com/openrisc/linux.git
12206 L:      openrisc@lists.librecores.org
12207 W:      http://openrisc.io
12208 S:      Maintained
12209 F:      Documentation/devicetree/bindings/openrisc/
12210 F:      Documentation/openrisc/
12211 F:      arch/openrisc/
12212 F:      drivers/irqchip/irq-ompic.c
12213 F:      drivers/irqchip/irq-or1k-*
12214
12215 OPENVSWITCH
12216 M:      Pravin B Shelar <pshelar@ovn.org>
12217 L:      netdev@vger.kernel.org
12218 L:      dev@openvswitch.org
12219 W:      http://openvswitch.org
12220 S:      Maintained
12221 F:      net/openvswitch/
12222 F:      include/uapi/linux/openvswitch.h
12223
12224 OPERATING PERFORMANCE POINTS (OPP)
12225 M:      Viresh Kumar <vireshk@kernel.org>
12226 M:      Nishanth Menon <nm@ti.com>
12227 M:      Stephen Boyd <sboyd@kernel.org>
12228 L:      linux-pm@vger.kernel.org
12229 S:      Maintained
12230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12231 F:      drivers/opp/
12232 F:      include/linux/pm_opp.h
12233 F:      Documentation/power/opp.rst
12234 F:      Documentation/devicetree/bindings/opp/
12235
12236 OPL4 DRIVER
12237 M:      Clemens Ladisch <clemens@ladisch.de>
12238 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12240 S:      Maintained
12241 F:      sound/drivers/opl4/
12242
12243 OPROFILE
12244 M:      Robert Richter <rric@kernel.org>
12245 L:      oprofile-list@lists.sf.net
12246 S:      Maintained
12247 F:      arch/*/include/asm/oprofile*.h
12248 F:      arch/*/oprofile/
12249 F:      drivers/oprofile/
12250 F:      include/linux/oprofile.h
12251
12252 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12253 M:      Mark Fasheh <mark@fasheh.com>
12254 M:      Joel Becker <jlbec@evilplan.org>
12255 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12256 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12257 W:      http://ocfs2.wiki.kernel.org
12258 S:      Supported
12259 F:      Documentation/filesystems/ocfs2.txt
12260 F:      Documentation/filesystems/dlmfs.txt
12261 F:      fs/ocfs2/
12262
12263 ORANGEFS FILESYSTEM
12264 M:      Mike Marshall <hubcap@omnibond.com>
12265 R:      Martin Brandenburg <martin@omnibond.com>
12266 L:      devel@lists.orangefs.org
12267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12268 S:      Supported
12269 F:      fs/orangefs/
12270 F:      Documentation/filesystems/orangefs.txt
12271
12272 ORINOCO DRIVER
12273 L:      linux-wireless@vger.kernel.org
12274 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12275 W:      http://www.nongnu.org/orinoco/
12276 S:      Orphan
12277 F:      drivers/net/wireless/intersil/orinoco/
12278
12279 OV2659 OMNIVISION SENSOR DRIVER
12280 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12281 L:      linux-media@vger.kernel.org
12282 W:      https://linuxtv.org
12283 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12284 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12285 S:      Maintained
12286 F:      drivers/media/i2c/ov2659.c
12287 F:      include/media/i2c/ov2659.h
12288
12289 OVERLAY FILESYSTEM
12290 M:      Miklos Szeredi <miklos@szeredi.hu>
12291 L:      linux-unionfs@vger.kernel.org
12292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12293 S:      Supported
12294 F:      fs/overlayfs/
12295 F:      Documentation/filesystems/overlayfs.txt
12296
12297 P54 WIRELESS DRIVER
12298 M:      Christian Lamparter <chunkeey@googlemail.com>
12299 L:      linux-wireless@vger.kernel.org
12300 W:      http://wireless.kernel.org/en/users/Drivers/p54
12301 S:      Maintained
12302 F:      drivers/net/wireless/intersil/p54/
12303
12304 PA SEMI ETHERNET DRIVER
12305 L:      netdev@vger.kernel.org
12306 S:      Orphan
12307 F:      drivers/net/ethernet/pasemi/*
12308
12309 PA SEMI SMBUS DRIVER
12310 L:      linux-i2c@vger.kernel.org
12311 S:      Orphan
12312 F:      drivers/i2c/busses/i2c-pasemi.c
12313
12314 PACKING
12315 M:      Vladimir Oltean <olteanv@gmail.com>
12316 L:      netdev@vger.kernel.org
12317 S:      Supported
12318 F:      lib/packing.c
12319 F:      include/linux/packing.h
12320 F:      Documentation/core-api/packing.rst
12321
12322 PADATA PARALLEL EXECUTION MECHANISM
12323 M:      Steffen Klassert <steffen.klassert@secunet.com>
12324 L:      linux-crypto@vger.kernel.org
12325 S:      Maintained
12326 F:      kernel/padata.c
12327 F:      include/linux/padata.h
12328 F:      Documentation/padata.txt
12329
12330 PAGE POOL
12331 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12332 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12333 L:      netdev@vger.kernel.org
12334 S:      Supported
12335 F:      net/core/page_pool.c
12336 F:      include/net/page_pool.h
12337
12338 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12339 M:      Harald Welte <laforge@gnumonks.org>
12340 L:      platform-driver-x86@vger.kernel.org
12341 S:      Maintained
12342 F:      drivers/platform/x86/panasonic-laptop.c
12343
12344 PARALLEL LCD/KEYPAD PANEL DRIVER
12345 M:      Willy Tarreau <willy@haproxy.com>
12346 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12347 S:      Odd Fixes
12348 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12349 F:      drivers/auxdisplay/panel.c
12350
12351 PARALLEL PORT SUBSYSTEM
12352 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12353 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12354 L:      linux-parport@lists.infradead.org (subscribers-only)
12355 S:      Maintained
12356 F:      drivers/parport/
12357 F:      include/linux/parport*.h
12358 F:      drivers/char/ppdev.c
12359 F:      include/uapi/linux/ppdev.h
12360 F:      Documentation/driver-api/parport*.rst
12361
12362 PARAVIRT_OPS INTERFACE
12363 M:      Juergen Gross <jgross@suse.com>
12364 M:      Thomas Hellstrom <thellstrom@vmware.com>
12365 M:      "VMware, Inc." <pv-drivers@vmware.com>
12366 L:      virtualization@lists.linux-foundation.org
12367 S:      Supported
12368 F:      Documentation/virt/paravirt_ops.rst
12369 F:      arch/*/kernel/paravirt*
12370 F:      arch/*/include/asm/paravirt*.h
12371 F:      include/linux/hypervisor.h
12372
12373 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12374 M:      Tim Waugh <tim@cyberelk.net>
12375 L:      linux-parport@lists.infradead.org (subscribers-only)
12376 S:      Maintained
12377 F:      Documentation/admin-guide/blockdev/paride.rst
12378 F:      drivers/block/paride/
12379
12380 PARISC ARCHITECTURE
12381 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12382 M:      Helge Deller <deller@gmx.de>
12383 L:      linux-parisc@vger.kernel.org
12384 W:      http://www.parisc-linux.org/
12385 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12388 S:      Maintained
12389 F:      arch/parisc/
12390 F:      Documentation/parisc/
12391 F:      drivers/parisc/
12392 F:      drivers/char/agp/parisc-agp.c
12393 F:      drivers/input/misc/hp_sdc_rtc.c
12394 F:      drivers/input/serio/gscps2.c
12395 F:      drivers/input/serio/hp_sdc*
12396 F:      drivers/parport/parport_gsc.*
12397 F:      drivers/tty/serial/8250/8250_gsc.c
12398 F:      drivers/video/fbdev/sti*
12399 F:      drivers/video/console/sti*
12400 F:      drivers/video/logo/logo_parisc*
12401 F:      include/linux/hp_sdc.h
12402
12403 PARMAN
12404 M:      Jiri Pirko <jiri@mellanox.com>
12405 L:      netdev@vger.kernel.org
12406 S:      Supported
12407 F:      lib/parman.c
12408 F:      lib/test_parman.c
12409 F:      include/linux/parman.h
12410
12411 PC ENGINES APU BOARD DRIVER
12412 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12413 S:      Maintained
12414 F:      drivers/platform/x86/pcengines-apuv2.c
12415
12416 PC87360 HARDWARE MONITORING DRIVER
12417 M:      Jim Cromie <jim.cromie@gmail.com>
12418 L:      linux-hwmon@vger.kernel.org
12419 S:      Maintained
12420 F:      Documentation/hwmon/pc87360.rst
12421 F:      drivers/hwmon/pc87360.c
12422
12423 PC8736x GPIO DRIVER
12424 M:      Jim Cromie <jim.cromie@gmail.com>
12425 S:      Maintained
12426 F:      drivers/char/pc8736x_gpio.c
12427
12428 PC87427 HARDWARE MONITORING DRIVER
12429 M:      Jean Delvare <jdelvare@suse.com>
12430 L:      linux-hwmon@vger.kernel.org
12431 S:      Maintained
12432 F:      Documentation/hwmon/pc87427.rst
12433 F:      drivers/hwmon/pc87427.c
12434
12435 PCA9532 LED DRIVER
12436 M:      Riku Voipio <riku.voipio@iki.fi>
12437 S:      Maintained
12438 F:      drivers/leds/leds-pca9532.c
12439 F:      include/linux/leds-pca9532.h
12440
12441 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12442 M:      Guenter Roeck <linux@roeck-us.net>
12443 L:      linux-i2c@vger.kernel.org
12444 S:      Maintained
12445 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12446
12447 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12448 M:      Khalid Aziz <khalid@gonehiking.org>
12449 S:      Maintained
12450 F:      drivers/firmware/pcdp.*
12451
12452 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12453 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12454 L:      linux-pci@vger.kernel.org
12455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12456 S:      Maintained
12457 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12458 F:      drivers/pci/controller/pci-aardvark.c
12459
12460 PCI DRIVER FOR ALTERA PCIE IP
12461 M:      Ley Foon Tan <lftan@altera.com>
12462 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12463 L:      linux-pci@vger.kernel.org
12464 S:      Supported
12465 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12466 F:      drivers/pci/controller/pcie-altera.c
12467
12468 PCI DRIVER FOR APPLIEDMICRO XGENE
12469 M:      Toan Le <toan@os.amperecomputing.com>
12470 L:      linux-pci@vger.kernel.org
12471 L:      linux-arm-kernel@lists.infradead.org
12472 S:      Maintained
12473 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12474 F:      drivers/pci/controller/pci-xgene.c
12475
12476 PCI DRIVER FOR ARM VERSATILE PLATFORM
12477 M:      Rob Herring <robh@kernel.org>
12478 L:      linux-pci@vger.kernel.org
12479 L:      linux-arm-kernel@lists.infradead.org
12480 S:      Maintained
12481 F:      Documentation/devicetree/bindings/pci/versatile.txt
12482 F:      drivers/pci/controller/pci-versatile.c
12483
12484 PCI DRIVER FOR ARMADA 8K
12485 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12486 L:      linux-pci@vger.kernel.org
12487 L:      linux-arm-kernel@lists.infradead.org
12488 S:      Maintained
12489 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12490 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12491
12492 PCI DRIVER FOR CADENCE PCIE IP
12493 M:      Tom Joseph <tjoseph@cadence.com>
12494 L:      linux-pci@vger.kernel.org
12495 S:      Maintained
12496 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
12497 F:      drivers/pci/controller/pcie-cadence*
12498
12499 PCI DRIVER FOR FREESCALE LAYERSCAPE
12500 M:      Minghuan Lian <minghuan.Lian@nxp.com>
12501 M:      Mingkai Hu <mingkai.hu@nxp.com>
12502 M:      Roy Zang <roy.zang@nxp.com>
12503 L:      linuxppc-dev@lists.ozlabs.org
12504 L:      linux-pci@vger.kernel.org
12505 L:      linux-arm-kernel@lists.infradead.org
12506 S:      Maintained
12507 F:      drivers/pci/controller/dwc/*layerscape*
12508
12509 PCI DRIVER FOR GENERIC OF HOSTS
12510 M:      Will Deacon <will@kernel.org>
12511 L:      linux-pci@vger.kernel.org
12512 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12513 S:      Maintained
12514 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
12515 F:      drivers/pci/controller/pci-host-common.c
12516 F:      drivers/pci/controller/pci-host-generic.c
12517
12518 PCI DRIVER FOR IMX6
12519 M:      Richard Zhu <hongxing.zhu@nxp.com>
12520 M:      Lucas Stach <l.stach@pengutronix.de>
12521 L:      linux-pci@vger.kernel.org
12522 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12523 S:      Maintained
12524 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12525 F:      drivers/pci/controller/dwc/*imx6*
12526
12527 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12528 M:      Keith Busch <keith.busch@intel.com>
12529 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12530 L:      linux-pci@vger.kernel.org
12531 S:      Supported
12532 F:      drivers/pci/controller/vmd.c
12533
12534 PCI DRIVER FOR MICROSEMI SWITCHTEC
12535 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
12536 M:      Logan Gunthorpe <logang@deltatee.com>
12537 L:      linux-pci@vger.kernel.org
12538 S:      Maintained
12539 F:      Documentation/driver-api/switchtec.rst
12540 F:      Documentation/ABI/testing/sysfs-class-switchtec
12541 F:      drivers/pci/switch/switchtec*
12542 F:      include/uapi/linux/switchtec_ioctl.h
12543 F:      include/linux/switchtec.h
12544 F:      drivers/ntb/hw/mscc/
12545
12546 PCI DRIVER FOR MOBIVEIL PCIE IP
12547 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
12548 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12549 L:      linux-pci@vger.kernel.org
12550 S:      Supported
12551 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12552 F:      drivers/pci/controller/pcie-mobiveil.c
12553
12554 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12555 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12556 M:      Jason Cooper <jason@lakedaemon.net>
12557 L:      linux-pci@vger.kernel.org
12558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12559 S:      Maintained
12560 F:      drivers/pci/controller/*mvebu*
12561
12562 PCI DRIVER FOR NVIDIA TEGRA
12563 M:      Thierry Reding <thierry.reding@gmail.com>
12564 L:      linux-tegra@vger.kernel.org
12565 L:      linux-pci@vger.kernel.org
12566 S:      Supported
12567 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12568 F:      drivers/pci/controller/pci-tegra.c
12569
12570 PCI DRIVER FOR RENESAS R-CAR
12571 M:      Simon Horman <horms@verge.net.au>
12572 L:      linux-pci@vger.kernel.org
12573 L:      linux-renesas-soc@vger.kernel.org
12574 S:      Maintained
12575 F:      drivers/pci/controller/*rcar*
12576
12577 PCI DRIVER FOR SAMSUNG EXYNOS
12578 M:      Jingoo Han <jingoohan1@gmail.com>
12579 L:      linux-pci@vger.kernel.org
12580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12581 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12582 S:      Maintained
12583 F:      drivers/pci/controller/dwc/pci-exynos.c
12584
12585 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12586 M:      Jingoo Han <jingoohan1@gmail.com>
12587 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
12588 L:      linux-pci@vger.kernel.org
12589 S:      Maintained
12590 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12591 F:      drivers/pci/controller/dwc/*designware*
12592
12593 PCI DRIVER FOR TI DRA7XX
12594 M:      Kishon Vijay Abraham I <kishon@ti.com>
12595 L:      linux-omap@vger.kernel.org
12596 L:      linux-pci@vger.kernel.org
12597 S:      Supported
12598 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12599 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12600
12601 PCI DRIVER FOR TI KEYSTONE
12602 M:      Murali Karicheri <m-karicheri2@ti.com>
12603 L:      linux-pci@vger.kernel.org
12604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12605 S:      Maintained
12606 F:      drivers/pci/controller/dwc/pci-keystone.c
12607
12608 PCI ENDPOINT SUBSYSTEM
12609 M:      Kishon Vijay Abraham I <kishon@ti.com>
12610 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12611 L:      linux-pci@vger.kernel.org
12612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12613 S:      Supported
12614 F:      drivers/pci/endpoint/
12615 F:      drivers/misc/pci_endpoint_test.c
12616 F:      tools/pci/
12617
12618 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12619 M:      Russell Currey <ruscur@russell.cc>
12620 M:      Sam Bobroff <sbobroff@linux.ibm.com>
12621 M:      Oliver O'Halloran <oohall@gmail.com>
12622 L:      linuxppc-dev@lists.ozlabs.org
12623 S:      Supported
12624 F:      Documentation/PCI/pci-error-recovery.rst
12625 F:      drivers/pci/pcie/aer.c
12626 F:      drivers/pci/pcie/dpc.c
12627 F:      drivers/pci/pcie/err.c
12628 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
12629 F:      arch/powerpc/kernel/eeh*.c
12630 F:      arch/powerpc/platforms/*/eeh*.c
12631 F:      arch/powerpc/include/*/eeh*.h
12632
12633 PCI ERROR RECOVERY
12634 M:      Linas Vepstas <linasvepstas@gmail.com>
12635 L:      linux-pci@vger.kernel.org
12636 S:      Supported
12637 F:      Documentation/PCI/pci-error-recovery.rst
12638
12639 PCI MSI DRIVER FOR ALTERA MSI IP
12640 M:      Ley Foon Tan <lftan@altera.com>
12641 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12642 L:      linux-pci@vger.kernel.org
12643 S:      Supported
12644 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
12645 F:      drivers/pci/controller/pcie-altera-msi.c
12646
12647 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
12648 M:      Toan Le <toan@os.amperecomputing.com>
12649 L:      linux-pci@vger.kernel.org
12650 L:      linux-arm-kernel@lists.infradead.org
12651 S:      Maintained
12652 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
12653 F:      drivers/pci/controller/pci-xgene-msi.c
12654
12655 PCI SUBSYSTEM
12656 M:      Bjorn Helgaas <bhelgaas@google.com>
12657 L:      linux-pci@vger.kernel.org
12658 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
12660 S:      Supported
12661 F:      Documentation/devicetree/bindings/pci/
12662 F:      Documentation/PCI/
12663 F:      drivers/acpi/pci*
12664 F:      drivers/pci/
12665 F:      include/asm-generic/pci*
12666 F:      include/linux/pci*
12667 F:      include/linux/of_pci.h
12668 F:      include/uapi/linux/pci*
12669 F:      lib/pci*
12670 F:      arch/x86/pci/
12671 F:      arch/x86/kernel/quirks.c
12672 F:      arch/x86/kernel/early-quirks.c
12673
12674 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
12675 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12676 R:      Andrew Murray <andrew.murray@arm.com>
12677 L:      linux-pci@vger.kernel.org
12678 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
12680 S:      Supported
12681 F:      drivers/pci/controller/
12682
12683 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
12684 M:      Jonathan Chocron <jonnyc@amazon.com>
12685 L:      linux-pci@vger.kernel.org
12686 S:      Maintained
12687 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
12688 F:      drivers/pci/controller/dwc/pcie-al.c
12689
12690 PCIE DRIVER FOR AMLOGIC MESON
12691 M:      Yue Wang <yue.wang@Amlogic.com>
12692 L:      linux-pci@vger.kernel.org
12693 L:      linux-amlogic@lists.infradead.org
12694 S:      Maintained
12695 F:      drivers/pci/controller/dwc/pci-meson.c
12696
12697 PCIE DRIVER FOR AXIS ARTPEC
12698 M:      Jesper Nilsson <jesper.nilsson@axis.com>
12699 L:      linux-arm-kernel@axis.com
12700 L:      linux-pci@vger.kernel.org
12701 S:      Maintained
12702 F:      Documentation/devicetree/bindings/pci/axis,artpec*
12703 F:      drivers/pci/controller/dwc/*artpec*
12704
12705 PCIE DRIVER FOR CAVIUM THUNDERX
12706 M:      David Daney <david.daney@cavium.com>
12707 L:      linux-pci@vger.kernel.org
12708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12709 S:      Supported
12710 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
12711 F:      drivers/pci/controller/pci-thunder-*
12712
12713 PCIE DRIVER FOR HISILICON
12714 M:      Zhou Wang <wangzhou1@hisilicon.com>
12715 L:      linux-pci@vger.kernel.org
12716 S:      Maintained
12717 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
12718 F:      drivers/pci/controller/dwc/pcie-hisi.c
12719
12720 PCIE DRIVER FOR HISILICON KIRIN
12721 M:      Xiaowei Song <songxiaowei@hisilicon.com>
12722 M:      Binghui Wang <wangbinghui@hisilicon.com>
12723 L:      linux-pci@vger.kernel.org
12724 S:      Maintained
12725 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
12726 F:      drivers/pci/controller/dwc/pcie-kirin.c
12727
12728 PCIE DRIVER FOR HISILICON STB
12729 M:      Shawn Guo <shawn.guo@linaro.org>
12730 L:      linux-pci@vger.kernel.org
12731 S:      Maintained
12732 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
12733 F:      drivers/pci/controller/dwc/pcie-histb.c
12734
12735 PCIE DRIVER FOR MEDIATEK
12736 M:      Ryder Lee <ryder.lee@mediatek.com>
12737 L:      linux-pci@vger.kernel.org
12738 L:      linux-mediatek@lists.infradead.org
12739 S:      Supported
12740 F:      Documentation/devicetree/bindings/pci/mediatek*
12741 F:      drivers/pci/controller/*mediatek*
12742
12743 PCIE DRIVER FOR QUALCOMM MSM
12744 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
12745 L:      linux-pci@vger.kernel.org
12746 L:      linux-arm-msm@vger.kernel.org
12747 S:      Maintained
12748 F:      drivers/pci/controller/dwc/*qcom*
12749
12750 PCIE DRIVER FOR ROCKCHIP
12751 M:      Shawn Lin <shawn.lin@rock-chips.com>
12752 L:      linux-pci@vger.kernel.org
12753 L:      linux-rockchip@lists.infradead.org
12754 S:      Maintained
12755 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
12756 F:      drivers/pci/controller/pcie-rockchip*
12757
12758 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
12759 M:      Linus Walleij <linus.walleij@linaro.org>
12760 L:      linux-pci@vger.kernel.org
12761 S:      Maintained
12762 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
12763 F:      drivers/pci/controller/pci-v3-semi.c
12764
12765 PCIE DRIVER FOR SOCIONEXT UNIPHIER
12766 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
12767 L:      linux-pci@vger.kernel.org
12768 S:      Maintained
12769 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
12770 F:      drivers/pci/controller/dwc/pcie-uniphier.c
12771
12772 PCIE DRIVER FOR ST SPEAR13XX
12773 M:      Pratyush Anand <pratyush.anand@gmail.com>
12774 L:      linux-pci@vger.kernel.org
12775 S:      Maintained
12776 F:      drivers/pci/controller/dwc/*spear*
12777
12778 PCMCIA SUBSYSTEM
12779 M:      Dominik Brodowski <linux@dominikbrodowski.net>
12780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
12781 S:      Odd Fixes
12782 F:      Documentation/pcmcia/
12783 F:      tools/pcmcia/
12784 F:      drivers/pcmcia/
12785 F:      include/pcmcia/
12786
12787 PCNET32 NETWORK DRIVER
12788 M:      Don Fry <pcnet32@frontier.com>
12789 L:      netdev@vger.kernel.org
12790 S:      Maintained
12791 F:      drivers/net/ethernet/amd/pcnet32.c
12792
12793 PCRYPT PARALLEL CRYPTO ENGINE
12794 M:      Steffen Klassert <steffen.klassert@secunet.com>
12795 L:      linux-crypto@vger.kernel.org
12796 S:      Maintained
12797 F:      crypto/pcrypt.c
12798 F:      include/crypto/pcrypt.h
12799
12800 PEAQ WMI HOTKEYS DRIVER
12801 M:      Hans de Goede <hdegoede@redhat.com>
12802 L:      platform-driver-x86@vger.kernel.org
12803 S:      Maintained
12804 F:      drivers/platform/x86/peaq-wmi.c
12805
12806 PENSANDO ETHERNET DRIVERS
12807 M:      Shannon Nelson <snelson@pensando.io>
12808 M:      Pensando Drivers <drivers@pensando.io>
12809 L:      netdev@vger.kernel.org
12810 S:      Supported
12811 F:      Documentation/networking/device_drivers/pensando/ionic.rst
12812 F:      drivers/net/ethernet/pensando/
12813
12814 PER-CPU MEMORY ALLOCATOR
12815 M:      Dennis Zhou <dennis@kernel.org>
12816 M:      Tejun Heo <tj@kernel.org>
12817 M:      Christoph Lameter <cl@linux.com>
12818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
12819 S:      Maintained
12820 F:      include/linux/percpu*.h
12821 F:      mm/percpu*.c
12822 F:      arch/*/include/asm/percpu.h
12823
12824 PER-TASK DELAY ACCOUNTING
12825 M:      Balbir Singh <bsingharora@gmail.com>
12826 S:      Maintained
12827 F:      include/linux/delayacct.h
12828 F:      kernel/delayacct.c
12829
12830 PERFORMANCE EVENTS SUBSYSTEM
12831 M:      Peter Zijlstra <peterz@infradead.org>
12832 M:      Ingo Molnar <mingo@redhat.com>
12833 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
12834 R:      Mark Rutland <mark.rutland@arm.com>
12835 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
12836 R:      Jiri Olsa <jolsa@redhat.com>
12837 R:      Namhyung Kim <namhyung@kernel.org>
12838 L:      linux-kernel@vger.kernel.org
12839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
12840 S:      Supported
12841 F:      kernel/events/*
12842 F:      include/linux/perf_event.h
12843 F:      include/uapi/linux/perf_event.h
12844 F:      arch/*/kernel/perf_event*.c
12845 F:      arch/*/kernel/*/perf_event*.c
12846 F:      arch/*/kernel/*/*/perf_event*.c
12847 F:      arch/*/include/asm/perf_event.h
12848 F:      arch/*/kernel/perf_callchain.c
12849 F:      arch/*/events/*
12850 F:      arch/*/events/*/*
12851 F:      tools/perf/
12852
12853 PERSONALITY HANDLING
12854 M:      Christoph Hellwig <hch@infradead.org>
12855 L:      linux-abi-devel@lists.sourceforge.net
12856 S:      Maintained
12857 F:      include/linux/personality.h
12858 F:      include/uapi/linux/personality.h
12859
12860 PHOENIX RC FLIGHT CONTROLLER ADAPTER
12861 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12862 L:      linux-input@vger.kernel.org
12863 S:      Maintained
12864 F:      Documentation/input/devices/pxrc.rst
12865 F:      drivers/input/joystick/pxrc.c
12866
12867 FLYSKY FSIA6B RC RECEIVER
12868 M:      Markus Koch <markus@notsyncing.net>
12869 L:      linux-input@vger.kernel.org
12870 S:      Maintained
12871 F:      drivers/input/joystick/fsia6b.c
12872
12873 PHONET PROTOCOL
12874 M:      Remi Denis-Courmont <courmisch@gmail.com>
12875 S:      Supported
12876 F:      Documentation/networking/phonet.txt
12877 F:      include/linux/phonet.h
12878 F:      include/net/phonet/
12879 F:      include/uapi/linux/phonet.h
12880 F:      net/phonet/
12881
12882 PHRAM MTD DRIVER
12883 M:      Joern Engel <joern@lazybastard.org>
12884 L:      linux-mtd@lists.infradead.org
12885 S:      Maintained
12886 F:      drivers/mtd/devices/phram.c
12887
12888 PICOLCD HID DRIVER
12889 M:      Bruno Prémont <bonbons@linux-vserver.org>
12890 L:      linux-input@vger.kernel.org
12891 S:      Maintained
12892 F:      drivers/hid/hid-picolcd*
12893
12894 PICOXCELL SUPPORT
12895 M:      Jamie Iles <jamie@jamieiles.com>
12896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12897 T:      git git://github.com/jamieiles/linux-2.6-ji.git
12898 S:      Supported
12899 F:      arch/arm/boot/dts/picoxcell*
12900 F:      arch/arm/mach-picoxcell/
12901 F:      drivers/crypto/picoxcell*
12902
12903 PIDFD API
12904 M:      Christian Brauner <christian@brauner.io>
12905 L:      linux-kernel@vger.kernel.org
12906 S:      Maintained
12907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
12908 F:      samples/pidfd/
12909 F:      tools/testing/selftests/pidfd/
12910 F:      tools/testing/selftests/clone3/
12911 K:      (?i)pidfd
12912 K:      (?i)clone3
12913 K:      \b(clone_args|kernel_clone_args)\b
12914
12915 PIN CONTROL SUBSYSTEM
12916 M:      Linus Walleij <linus.walleij@linaro.org>
12917 L:      linux-gpio@vger.kernel.org
12918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
12919 S:      Maintained
12920 F:      Documentation/devicetree/bindings/pinctrl/
12921 F:      Documentation/driver-api/pinctl.rst
12922 F:      drivers/pinctrl/
12923 F:      include/linux/pinctrl/
12924
12925 PIN CONTROLLER - MICROCHIP AT91
12926 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12928 L:      linux-gpio@vger.kernel.org
12929 S:      Supported
12930 F:      drivers/pinctrl/pinctrl-at91*
12931 F:      drivers/gpio/gpio-sama5d2-piobu.c
12932
12933 PIN CONTROLLER - FREESCALE
12934 M:      Dong Aisheng <aisheng.dong@nxp.com>
12935 M:      Fabio Estevam <festevam@gmail.com>
12936 M:      Shawn Guo <shawnguo@kernel.org>
12937 M:      Stefan Agner <stefan@agner.ch>
12938 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
12939 L:      linux-gpio@vger.kernel.org
12940 S:      Maintained
12941 F:      drivers/pinctrl/freescale/
12942 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
12943
12944 PIN CONTROLLER - INTEL
12945 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
12946 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
12947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
12948 S:      Maintained
12949 F:      drivers/pinctrl/intel/
12950
12951 PIN CONTROLLER - MEDIATEK
12952 M:      Sean Wang <sean.wang@kernel.org>
12953 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12954 S:      Maintained
12955 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
12956 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
12957 F:      drivers/pinctrl/mediatek/
12958
12959 PIN CONTROLLER - QUALCOMM
12960 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
12961 S:      Maintained
12962 L:      linux-arm-msm@vger.kernel.org
12963 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
12964 F:      drivers/pinctrl/qcom/
12965
12966 PIN CONTROLLER - RENESAS
12967 M:      Geert Uytterhoeven <geert+renesas@glider.be>
12968 L:      linux-renesas-soc@vger.kernel.org
12969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
12970 S:      Maintained
12971 F:      drivers/pinctrl/pinctrl-rz*
12972 F:      drivers/pinctrl/sh-pfc/
12973
12974 PIN CONTROLLER - SAMSUNG
12975 M:      Tomasz Figa <tomasz.figa@gmail.com>
12976 M:      Krzysztof Kozlowski <krzk@kernel.org>
12977 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12979 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12980 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
12981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
12982 S:      Maintained
12983 F:      drivers/pinctrl/samsung/
12984 F:      include/dt-bindings/pinctrl/samsung.h
12985 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
12986
12987 PIN CONTROLLER - SINGLE
12988 M:      Tony Lindgren <tony@atomide.com>
12989 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
12990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12991 L:      linux-omap@vger.kernel.org
12992 S:      Maintained
12993 F:      drivers/pinctrl/pinctrl-single.c
12994
12995 PIN CONTROLLER - ST SPEAR
12996 M:      Viresh Kumar <vireshk@kernel.org>
12997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12998 W:      http://www.st.com/spear
12999 S:      Maintained
13000 F:      drivers/pinctrl/spear/
13001
13002 PISTACHIO SOC SUPPORT
13003 M:      James Hartley <james.hartley@sondrel.com>
13004 L:      linux-mips@vger.kernel.org
13005 S:      Odd Fixes
13006 F:      arch/mips/pistachio/
13007 F:      arch/mips/include/asm/mach-pistachio/
13008 F:      arch/mips/boot/dts/img/pistachio*
13009 F:      arch/mips/configs/pistachio*_defconfig
13010
13011 PKTCDVD DRIVER
13012 S:      Orphan
13013 M:      linux-block@vger.kernel.org
13014 F:      drivers/block/pktcdvd.c
13015 F:      include/linux/pktcdvd.h
13016 F:      include/uapi/linux/pktcdvd.h
13017
13018 PKUNITY SOC DRIVERS
13019 M:      Guan Xuetao <gxt@pku.edu.cn>
13020 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13021 S:      Maintained
13022 T:      git git://github.com/gxt/linux.git
13023 F:      drivers/input/serio/i8042-unicore32io.h
13024 F:      drivers/i2c/busses/i2c-puv3.c
13025 F:      drivers/video/fbdev/fb-puv3.c
13026 F:      drivers/rtc/rtc-puv3.c
13027
13028 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13029 M:      Tomasz Duszynski <tduszyns@gmail.com>
13030 S:      Maintained
13031 F:      drivers/iio/chemical/pms7003.c
13032 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13033
13034 PMBUS HARDWARE MONITORING DRIVERS
13035 M:      Guenter Roeck <linux@roeck-us.net>
13036 L:      linux-hwmon@vger.kernel.org
13037 W:      http://hwmon.wiki.kernel.org/
13038 W:      http://www.roeck-us.net/linux/drivers/
13039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13040 S:      Maintained
13041 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13042 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13043 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13044 F:      Documentation/hwmon/adm1275.rst
13045 F:      Documentation/hwmon/ibm-cffps.rst
13046 F:      Documentation/hwmon/ir35221.rst
13047 F:      Documentation/hwmon/lm25066.rst
13048 F:      Documentation/hwmon/ltc2978.rst
13049 F:      Documentation/hwmon/ltc3815.rst
13050 F:      Documentation/hwmon/max16064.rst
13051 F:      Documentation/hwmon/max20751.rst
13052 F:      Documentation/hwmon/max31785.rst
13053 F:      Documentation/hwmon/max34440.rst
13054 F:      Documentation/hwmon/max8688.rst
13055 F:      Documentation/hwmon/pmbus.rst
13056 F:      Documentation/hwmon/pmbus-core.rst
13057 F:      Documentation/hwmon/tps40422.rst
13058 F:      Documentation/hwmon/ucd9000.rst
13059 F:      Documentation/hwmon/ucd9200.rst
13060 F:      Documentation/hwmon/zl6100.rst
13061 F:      drivers/hwmon/pmbus/
13062 F:      include/linux/pmbus.h
13063
13064 PMC SIERRA MaxRAID DRIVER
13065 L:      linux-scsi@vger.kernel.org
13066 W:      http://www.pmc-sierra.com/
13067 S:      Orphan
13068 F:      drivers/scsi/pmcraid.*
13069
13070 PMC SIERRA PM8001 DRIVER
13071 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13072 L:      linux-scsi@vger.kernel.org
13073 S:      Supported
13074 F:      drivers/scsi/pm8001/
13075
13076 PNP SUPPORT
13077 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13078 S:      Maintained
13079 F:      drivers/pnp/
13080
13081 PNI RM3100 IIO DRIVER
13082 M:      Song Qiang <songqiang1304521@gmail.com>
13083 L:      linux-iio@vger.kernel.org
13084 S:      Maintained
13085 F:      drivers/iio/magnetometer/rm3100*
13086 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13087
13088 POSIX CLOCKS and TIMERS
13089 M:      Thomas Gleixner <tglx@linutronix.de>
13090 L:      linux-kernel@vger.kernel.org
13091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13092 S:      Maintained
13093 F:      fs/timerfd.c
13094 F:      include/linux/timer*
13095 F:      kernel/time/*timer*
13096
13097 POWER MANAGEMENT CORE
13098 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13099 L:      linux-pm@vger.kernel.org
13100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13101 B:      https://bugzilla.kernel.org
13102 S:      Supported
13103 F:      drivers/base/power/
13104 F:      include/linux/pm.h
13105 F:      include/linux/pm_*
13106 F:      include/linux/powercap.h
13107 F:      include/linux/intel_rapl.h
13108 F:      drivers/powercap/
13109 F:      kernel/configs/nopm.config
13110
13111 POWER STATE COORDINATION INTERFACE (PSCI)
13112 M:      Mark Rutland <mark.rutland@arm.com>
13113 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13114 L:      linux-arm-kernel@lists.infradead.org
13115 S:      Maintained
13116 F:      drivers/firmware/psci/
13117 F:      include/linux/psci.h
13118 F:      include/uapi/linux/psci.h
13119
13120 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13121 M:      Sebastian Reichel <sre@kernel.org>
13122 L:      linux-pm@vger.kernel.org
13123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13124 S:      Maintained
13125 F:      Documentation/ABI/testing/sysfs-class-power
13126 F:      Documentation/devicetree/bindings/power/supply/
13127 F:      include/linux/power_supply.h
13128 F:      drivers/power/supply/
13129
13130 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13131 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13132 L:      linuxppc-dev@lists.ozlabs.org
13133 S:      Maintained
13134 F:      drivers/char/powernv-op-panel.c
13135
13136 PPP OVER ATM (RFC 2364)
13137 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13138 S:      Maintained
13139 F:      net/atm/pppoatm.c
13140 F:      include/uapi/linux/atmppp.h
13141
13142 PPP OVER ETHERNET
13143 M:      Michal Ostrowski <mostrows@earthlink.net>
13144 S:      Maintained
13145 F:      drivers/net/ppp/pppoe.c
13146 F:      drivers/net/ppp/pppox.c
13147
13148 PPP OVER L2TP
13149 M:      James Chapman <jchapman@katalix.com>
13150 S:      Maintained
13151 F:      net/l2tp/l2tp_ppp.c
13152 F:      include/linux/if_pppol2tp.h
13153 F:      include/uapi/linux/if_pppol2tp.h
13154
13155 PPP PROTOCOL DRIVERS AND COMPRESSORS
13156 M:      Paul Mackerras <paulus@samba.org>
13157 L:      linux-ppp@vger.kernel.org
13158 S:      Maintained
13159 F:      drivers/net/ppp/ppp_*
13160
13161 PPS SUPPORT
13162 M:      Rodolfo Giometti <giometti@enneenne.com>
13163 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13164 L:      linuxpps@ml.enneenne.com (subscribers-only)
13165 S:      Maintained
13166 F:      Documentation/driver-api/pps.rst
13167 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13168 F:      Documentation/ABI/testing/sysfs-pps
13169 F:      drivers/pps/
13170 F:      include/linux/pps*.h
13171 F:      include/uapi/linux/pps.h
13172
13173 PPTP DRIVER
13174 M:      Dmitry Kozlov <xeb@mail.ru>
13175 L:      netdev@vger.kernel.org
13176 S:      Maintained
13177 F:      drivers/net/ppp/pptp.c
13178 W:      http://sourceforge.net/projects/accel-pptp
13179
13180 PRINTK
13181 M:      Petr Mladek <pmladek@suse.com>
13182 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13183 R:      Steven Rostedt <rostedt@goodmis.org>
13184 S:      Maintained
13185 F:      kernel/printk/
13186 F:      include/linux/printk.h
13187
13188 PRISM54 WIRELESS DRIVER
13189 M:      Luis Chamberlain <mcgrof@kernel.org>
13190 L:      linux-wireless@vger.kernel.org
13191 W:      http://wireless.kernel.org/en/users/Drivers/p54
13192 S:      Obsolete
13193 F:      drivers/net/wireless/intersil/prism54/
13194
13195 PROC FILESYSTEM
13196 R:      Alexey Dobriyan <adobriyan@gmail.com>
13197 L:      linux-kernel@vger.kernel.org
13198 L:      linux-fsdevel@vger.kernel.org
13199 S:      Maintained
13200 F:      fs/proc/
13201 F:      include/linux/proc_fs.h
13202 F:      tools/testing/selftests/proc/
13203 F:      Documentation/filesystems/proc.txt
13204
13205 PROC SYSCTL
13206 M:      Luis Chamberlain <mcgrof@kernel.org>
13207 M:      Kees Cook <keescook@chromium.org>
13208 M:      Iurii Zaikin <yzaikin@google.com>
13209 L:      linux-kernel@vger.kernel.org
13210 L:      linux-fsdevel@vger.kernel.org
13211 S:      Maintained
13212 F:      fs/proc/proc_sysctl.c
13213 F:      include/linux/sysctl.h
13214 F:      kernel/sysctl.c
13215 F:      kernel/sysctl-test.c
13216 F:      tools/testing/selftests/sysctl/
13217
13218 PS3 NETWORK SUPPORT
13219 M:      Geoff Levand <geoff@infradead.org>
13220 L:      netdev@vger.kernel.org
13221 L:      linuxppc-dev@lists.ozlabs.org
13222 S:      Maintained
13223 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13224
13225 PS3 PLATFORM SUPPORT
13226 M:      Geoff Levand <geoff@infradead.org>
13227 L:      linuxppc-dev@lists.ozlabs.org
13228 S:      Maintained
13229 F:      arch/powerpc/boot/ps3*
13230 F:      arch/powerpc/include/asm/lv1call.h
13231 F:      arch/powerpc/include/asm/ps3*.h
13232 F:      arch/powerpc/platforms/ps3/
13233 F:      drivers/*/ps3*
13234 F:      drivers/ps3/
13235 F:      drivers/rtc/rtc-ps3.c
13236 F:      drivers/usb/host/*ps3.c
13237 F:      sound/ppc/snd_ps3*
13238
13239 PS3VRAM DRIVER
13240 M:      Jim Paris <jim@jtan.com>
13241 M:      Geoff Levand <geoff@infradead.org>
13242 L:      linuxppc-dev@lists.ozlabs.org
13243 S:      Maintained
13244 F:      drivers/block/ps3vram.c
13245
13246 PSAMPLE PACKET SAMPLING SUPPORT:
13247 M:      Yotam Gigi <yotam.gi@gmail.com>
13248 S:      Maintained
13249 F:      net/psample
13250 F:      include/net/psample.h
13251 F:      include/uapi/linux/psample.h
13252
13253 PSTORE FILESYSTEM
13254 M:      Kees Cook <keescook@chromium.org>
13255 M:      Anton Vorontsov <anton@enomsg.org>
13256 M:      Colin Cross <ccross@android.com>
13257 M:      Tony Luck <tony.luck@intel.com>
13258 S:      Maintained
13259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13260 F:      fs/pstore/
13261 F:      include/linux/pstore*
13262 F:      drivers/firmware/efi/efi-pstore.c
13263 F:      drivers/acpi/apei/erst.c
13264 F:      Documentation/admin-guide/ramoops.rst
13265 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13266 K:      \b(pstore|ramoops)
13267
13268 PTP HARDWARE CLOCK SUPPORT
13269 M:      Richard Cochran <richardcochran@gmail.com>
13270 L:      netdev@vger.kernel.org
13271 S:      Maintained
13272 W:      http://linuxptp.sourceforge.net/
13273 F:      Documentation/ABI/testing/sysfs-ptp
13274 F:      Documentation/driver-api/ptp.rst
13275 F:      drivers/net/phy/dp83640*
13276 F:      drivers/ptp/*
13277 F:      include/linux/ptp_cl*
13278
13279 PTRACE SUPPORT
13280 M:      Oleg Nesterov <oleg@redhat.com>
13281 S:      Maintained
13282 F:      include/asm-generic/syscall.h
13283 F:      include/linux/ptrace.h
13284 F:      include/linux/regset.h
13285 F:      include/linux/tracehook.h
13286 F:      include/uapi/linux/ptrace.h
13287 F:      include/uapi/linux/ptrace.h
13288 F:      kernel/ptrace.c
13289 F:      arch/*/ptrace*.c
13290 F:      arch/*/*/ptrace*.c
13291 F:      arch/*/include/asm/ptrace*.h
13292
13293 PULSE8-CEC DRIVER
13294 M:      Hans Verkuil <hverkuil@xs4all.nl>
13295 L:      linux-media@vger.kernel.org
13296 T:      git git://linuxtv.org/media_tree.git
13297 S:      Maintained
13298 F:      drivers/media/usb/pulse8-cec/*
13299 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13300
13301 PVRUSB2 VIDEO4LINUX DRIVER
13302 M:      Mike Isely <isely@pobox.com>
13303 L:      pvrusb2@isely.net       (subscribers-only)
13304 L:      linux-media@vger.kernel.org
13305 W:      http://www.isely.net/pvrusb2/
13306 T:      git git://linuxtv.org/media_tree.git
13307 S:      Maintained
13308 F:      Documentation/media/v4l-drivers/pvrusb2*
13309 F:      drivers/media/usb/pvrusb2/
13310
13311 PWC WEBCAM DRIVER
13312 M:      Hans Verkuil <hverkuil@xs4all.nl>
13313 L:      linux-media@vger.kernel.org
13314 T:      git git://linuxtv.org/media_tree.git
13315 S:      Odd Fixes
13316 F:      drivers/media/usb/pwc/*
13317 F:      include/trace/events/pwc.h
13318
13319 PWM FAN DRIVER
13320 M:      Kamil Debski <kamil@wypas.org>
13321 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13322 L:      linux-hwmon@vger.kernel.org
13323 S:      Supported
13324 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13325 F:      Documentation/hwmon/pwm-fan.rst
13326 F:      drivers/hwmon/pwm-fan.c
13327
13328 PWM IR Transmitter
13329 M:      Sean Young <sean@mess.org>
13330 L:      linux-media@vger.kernel.org
13331 S:      Maintained
13332 F:      drivers/media/rc/pwm-ir-tx.c
13333
13334 PWM SUBSYSTEM
13335 M:      Thierry Reding <thierry.reding@gmail.com>
13336 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13337 L:      linux-pwm@vger.kernel.org
13338 S:      Maintained
13339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13340 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13341 F:      Documentation/driver-api/pwm.rst
13342 F:      Documentation/devicetree/bindings/pwm/
13343 F:      include/linux/pwm.h
13344 F:      drivers/pwm/
13345 F:      drivers/video/backlight/pwm_bl.c
13346 F:      include/linux/pwm_backlight.h
13347 F:      drivers/gpio/gpio-mvebu.c
13348 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13349 K:      pwm_(config|apply_state|ops)
13350
13351 PXA GPIO DRIVER
13352 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13353 L:      linux-gpio@vger.kernel.org
13354 S:      Maintained
13355 F:      drivers/gpio/gpio-pxa.c
13356
13357 PXA MMCI DRIVER
13358 S:      Orphan
13359
13360 PXA RTC DRIVER
13361 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13362 L:      linux-rtc@vger.kernel.org
13363 S:      Maintained
13364
13365 PXA2xx/PXA3xx SUPPORT
13366 M:      Daniel Mack <daniel@zonque.org>
13367 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13368 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13369 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13370 T:      git git://github.com/hzhuang1/linux.git
13371 T:      git git://github.com/rjarzmik/linux.git
13372 S:      Maintained
13373 F:      arch/arm/boot/dts/pxa*
13374 F:      arch/arm/mach-pxa/
13375 F:      drivers/dma/pxa*
13376 F:      drivers/pcmcia/pxa2xx*
13377 F:      drivers/pinctrl/pxa/
13378 F:      drivers/spi/spi-pxa2xx*
13379 F:      drivers/usb/gadget/udc/pxa2*
13380 F:      include/sound/pxa2xx-lib.h
13381 F:      sound/arm/pxa*
13382 F:      sound/soc/pxa/
13383
13384 QAT DRIVER
13385 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13386 L:      qat-linux@intel.com
13387 S:      Supported
13388 F:      drivers/crypto/qat/
13389
13390 QCOM AUDIO (ASoC) DRIVERS
13391 M:      Patrick Lai <plai@codeaurora.org>
13392 M:      Banajit Goswami <bgoswami@codeaurora.org>
13393 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13394 S:      Supported
13395 F:      sound/soc/qcom/
13396
13397 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13398 M:      Gabriel Somlo <somlo@cmu.edu>
13399 M:      "Michael S. Tsirkin" <mst@redhat.com>
13400 L:      qemu-devel@nongnu.org
13401 S:      Maintained
13402 F:      drivers/firmware/qemu_fw_cfg.c
13403 F:      include/uapi/linux/qemu_fw_cfg.h
13404
13405 QIB DRIVER
13406 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13407 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13408 L:      linux-rdma@vger.kernel.org
13409 S:      Supported
13410 F:      drivers/infiniband/hw/qib/
13411
13412 QLOGIC QL41xxx FCOE DRIVER
13413 M:      QLogic-Storage-Upstream@cavium.com
13414 L:      linux-scsi@vger.kernel.org
13415 S:      Supported
13416 F:      drivers/scsi/qedf/
13417
13418 QLOGIC QL41xxx ISCSI DRIVER
13419 M:      QLogic-Storage-Upstream@cavium.com
13420 L:      linux-scsi@vger.kernel.org
13421 S:      Supported
13422 F:      drivers/scsi/qedi/
13423
13424 QLOGIC QL4xxx ETHERNET DRIVER
13425 M:      Ariel Elior <aelior@marvell.com>
13426 M:      GR-everest-linux-l2@marvell.com
13427 L:      netdev@vger.kernel.org
13428 S:      Supported
13429 F:      drivers/net/ethernet/qlogic/qed/
13430 F:      include/linux/qed/
13431 F:      drivers/net/ethernet/qlogic/qede/
13432
13433 QLOGIC QL4xxx RDMA DRIVER
13434 M:      Michal Kalderon <mkalderon@marvell.com>
13435 M:      Ariel Elior <aelior@marvell.com>
13436 L:      linux-rdma@vger.kernel.org
13437 S:      Supported
13438 F:      drivers/infiniband/hw/qedr/
13439 F:      include/uapi/rdma/qedr-abi.h
13440
13441 QLOGIC QLA1280 SCSI DRIVER
13442 M:      Michael Reed <mdr@sgi.com>
13443 L:      linux-scsi@vger.kernel.org
13444 S:      Maintained
13445 F:      drivers/scsi/qla1280.[ch]
13446
13447 QLOGIC QLA2XXX FC-SCSI DRIVER
13448 M:      hmadhani@marvell.com
13449 L:      linux-scsi@vger.kernel.org
13450 S:      Supported
13451 F:      Documentation/scsi/LICENSE.qla2xxx
13452 F:      drivers/scsi/qla2xxx/
13453
13454 QLOGIC QLA3XXX NETWORK DRIVER
13455 M:      GR-Linux-NIC-Dev@marvell.com
13456 L:      netdev@vger.kernel.org
13457 S:      Supported
13458 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13459 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13460
13461 QLOGIC QLA4XXX iSCSI DRIVER
13462 M:      QLogic-Storage-Upstream@qlogic.com
13463 L:      linux-scsi@vger.kernel.org
13464 S:      Supported
13465 F:      Documentation/scsi/LICENSE.qla4xxx
13466 F:      drivers/scsi/qla4xxx/
13467
13468 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13469 M:      Shahed Shaikh <shshaikh@marvell.com>
13470 M:      Manish Chopra <manishc@marvell.com>
13471 M:      GR-Linux-NIC-Dev@marvell.com
13472 L:      netdev@vger.kernel.org
13473 S:      Supported
13474 F:      drivers/net/ethernet/qlogic/qlcnic/
13475
13476 QLOGIC QLGE 10Gb ETHERNET DRIVER
13477 M:      Manish Chopra <manishc@marvell.com>
13478 M:      GR-Linux-NIC-Dev@marvell.com
13479 L:      netdev@vger.kernel.org
13480 S:      Supported
13481 F:      drivers/staging/qlge/
13482
13483 QM1D1B0004 MEDIA DRIVER
13484 M:      Akihiro Tsukada <tskd08@gmail.com>
13485 L:      linux-media@vger.kernel.org
13486 S:      Odd Fixes
13487 F:      drivers/media/tuners/qm1d1b0004*
13488
13489 QM1D1C0042 MEDIA DRIVER
13490 M:      Akihiro Tsukada <tskd08@gmail.com>
13491 L:      linux-media@vger.kernel.org
13492 S:      Odd Fixes
13493 F:      drivers/media/tuners/qm1d1c0042*
13494
13495 QNX4 FILESYSTEM
13496 M:      Anders Larsen <al@alarsen.net>
13497 W:      http://www.alarsen.net/linux/qnx4fs/
13498 S:      Maintained
13499 F:      fs/qnx4/
13500 F:      include/uapi/linux/qnx4_fs.h
13501 F:      include/uapi/linux/qnxtypes.h
13502
13503 QORIQ DPAA2 FSL-MC BUS DRIVER
13504 M:      Stuart Yoder <stuyoder@gmail.com>
13505 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
13506 L:      linux-kernel@vger.kernel.org
13507 S:      Maintained
13508 F:      drivers/bus/fsl-mc/
13509 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13510 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13511
13512 QT1010 MEDIA DRIVER
13513 M:      Antti Palosaari <crope@iki.fi>
13514 L:      linux-media@vger.kernel.org
13515 W:      https://linuxtv.org
13516 W:      http://palosaari.fi/linux/
13517 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13518 T:      git git://linuxtv.org/anttip/media_tree.git
13519 S:      Maintained
13520 F:      drivers/media/tuners/qt1010*
13521
13522 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13523 M:      Kalle Valo <kvalo@codeaurora.org>
13524 L:      ath10k@lists.infradead.org
13525 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13527 S:      Supported
13528 F:      drivers/net/wireless/ath/ath10k/
13529
13530 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13531 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
13532 L:      linux-wireless@vger.kernel.org
13533 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13534 S:      Supported
13535 F:      drivers/net/wireless/ath/ath9k/
13536
13537 QUALCOMM CAMERA SUBSYSTEM DRIVER
13538 M:      Todor Tomov <todor.too@gmail.com>
13539 L:      linux-media@vger.kernel.org
13540 S:      Maintained
13541 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13542 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13543 F:      drivers/media/platform/qcom/camss/
13544
13545 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13546 M:      Ilia Lin <ilia.lin@kernel.org>
13547 L:      linux-pm@vger.kernel.org
13548 S:      Maintained
13549 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13550 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13551
13552 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13553 M:      Timur Tabi <timur@kernel.org>
13554 L:      netdev@vger.kernel.org
13555 S:      Maintained
13556 F:      drivers/net/ethernet/qualcomm/emac/
13557
13558 QUALCOMM ETHQOS ETHERNET DRIVER
13559 M:      Vinod Koul <vkoul@kernel.org>
13560 M:      Niklas Cassel <niklas.cassel@linaro.org>
13561 L:      netdev@vger.kernel.org
13562 S:      Maintained
13563 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13564 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13565
13566 QUALCOMM GENERIC INTERFACE I2C DRIVER
13567 M:      Alok Chauhan <alokc@codeaurora.org>
13568 L:      linux-i2c@vger.kernel.org
13569 L:      linux-arm-msm@vger.kernel.org
13570 S:      Supported
13571 F:      drivers/i2c/busses/i2c-qcom-geni.c
13572
13573 QUALCOMM HEXAGON ARCHITECTURE
13574 M:      Brian Cain <bcain@codeaurora.org>
13575 L:      linux-hexagon@vger.kernel.org
13576 S:      Supported
13577 F:      arch/hexagon/
13578
13579 QUALCOMM HIDMA DRIVER
13580 M:      Sinan Kaya <okaya@kernel.org>
13581 L:      linux-arm-kernel@lists.infradead.org
13582 L:      linux-arm-msm@vger.kernel.org
13583 L:      dmaengine@vger.kernel.org
13584 S:      Supported
13585 F:      drivers/dma/qcom/hidma*
13586
13587 QUALCOMM IOMMU
13588 M:      Rob Clark <robdclark@gmail.com>
13589 L:      iommu@lists.linux-foundation.org
13590 L:      linux-arm-msm@vger.kernel.org
13591 S:      Maintained
13592 F:      drivers/iommu/qcom_iommu.c
13593
13594 QUALCOMM TSENS THERMAL DRIVER
13595 M:      Amit Kucheria <amit.kucheria@linaro.org>
13596 L:      linux-pm@vger.kernel.org
13597 L:      linux-arm-msm@vger.kernel.org
13598 S:      Maintained
13599 F:      drivers/thermal/qcom/
13600
13601 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
13602 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
13603 L:      linux-media@vger.kernel.org
13604 L:      linux-arm-msm@vger.kernel.org
13605 T:      git git://linuxtv.org/media_tree.git
13606 S:      Maintained
13607 F:      drivers/media/platform/qcom/venus/
13608
13609 QUALCOMM WCN36XX WIRELESS DRIVER
13610 M:      Kalle Valo <kvalo@codeaurora.org>
13611 L:      wcn36xx@lists.infradead.org
13612 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
13613 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
13614 S:      Supported
13615 F:      drivers/net/wireless/ath/wcn36xx/
13616
13617 QUANTENNA QTNFMAC WIRELESS DRIVER
13618 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
13619 M:      Avinash Patil <avinashp@quantenna.com>
13620 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
13621 L:      linux-wireless@vger.kernel.org
13622 S:      Maintained
13623 F:      drivers/net/wireless/quantenna
13624
13625 RADEON and AMDGPU DRM DRIVERS
13626 M:      Alex Deucher <alexander.deucher@amd.com>
13627 M:      Christian König <christian.koenig@amd.com>
13628 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
13629 L:      amd-gfx@lists.freedesktop.org
13630 T:      git git://people.freedesktop.org/~agd5f/linux
13631 S:      Supported
13632 F:      drivers/gpu/drm/radeon/
13633 F:      include/uapi/drm/radeon_drm.h
13634 F:      drivers/gpu/drm/amd/
13635 F:      include/uapi/drm/amdgpu_drm.h
13636
13637 RADEON FRAMEBUFFER DISPLAY DRIVER
13638 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
13639 L:      linux-fbdev@vger.kernel.org
13640 S:      Maintained
13641 F:      drivers/video/fbdev/aty/radeon*
13642 F:      include/uapi/linux/radeonfb.h
13643
13644 RADIOSHARK RADIO DRIVER
13645 M:      Hans Verkuil <hverkuil@xs4all.nl>
13646 L:      linux-media@vger.kernel.org
13647 T:      git git://linuxtv.org/media_tree.git
13648 S:      Maintained
13649 F:      drivers/media/radio/radio-shark.c
13650
13651 RADIOSHARK2 RADIO DRIVER
13652 M:      Hans Verkuil <hverkuil@xs4all.nl>
13653 L:      linux-media@vger.kernel.org
13654 T:      git git://linuxtv.org/media_tree.git
13655 S:      Maintained
13656 F:      drivers/media/radio/radio-shark2.c
13657 F:      drivers/media/radio/radio-tea5777.c
13658
13659 RADOS BLOCK DEVICE (RBD)
13660 M:      Ilya Dryomov <idryomov@gmail.com>
13661 M:      Sage Weil <sage@redhat.com>
13662 M:      Alex Elder <elder@kernel.org>
13663 L:      ceph-devel@vger.kernel.org
13664 W:      http://ceph.com/
13665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
13666 T:      git git://github.com/ceph/ceph-client.git
13667 S:      Supported
13668 F:      Documentation/ABI/testing/sysfs-bus-rbd
13669 F:      drivers/block/rbd.c
13670 F:      drivers/block/rbd_types.h
13671
13672 RAGE128 FRAMEBUFFER DISPLAY DRIVER
13673 M:      Paul Mackerras <paulus@samba.org>
13674 L:      linux-fbdev@vger.kernel.org
13675 S:      Maintained
13676 F:      drivers/video/fbdev/aty/aty128fb.c
13677
13678 RAINSHADOW-CEC DRIVER
13679 M:      Hans Verkuil <hverkuil@xs4all.nl>
13680 L:      linux-media@vger.kernel.org
13681 T:      git git://linuxtv.org/media_tree.git
13682 S:      Maintained
13683 F:      drivers/media/usb/rainshadow-cec/*
13684
13685 RALINK MIPS ARCHITECTURE
13686 M:      John Crispin <john@phrozen.org>
13687 L:      linux-mips@vger.kernel.org
13688 S:      Maintained
13689 F:      arch/mips/ralink
13690
13691 RALINK RT2X00 WIRELESS LAN DRIVER
13692 P:      rt2x00 project
13693 M:      Stanislaw Gruszka <sgruszka@redhat.com>
13694 M:      Helmut Schaa <helmut.schaa@googlemail.com>
13695 L:      linux-wireless@vger.kernel.org
13696 S:      Maintained
13697 F:      drivers/net/wireless/ralink/rt2x00/
13698
13699 RAMDISK RAM BLOCK DEVICE DRIVER
13700 M:      Jens Axboe <axboe@kernel.dk>
13701 S:      Maintained
13702 F:      Documentation/admin-guide/blockdev/ramdisk.rst
13703 F:      drivers/block/brd.c
13704
13705 RANCHU VIRTUAL BOARD FOR MIPS
13706 M:      Miodrag Dinic <miodrag.dinic@mips.com>
13707 L:      linux-mips@vger.kernel.org
13708 S:      Supported
13709 F:      arch/mips/generic/board-ranchu.c
13710 F:      arch/mips/configs/generic/board-ranchu.config
13711
13712 RANDOM NUMBER DRIVER
13713 M:      "Theodore Ts'o" <tytso@mit.edu>
13714 S:      Maintained
13715 F:      drivers/char/random.c
13716
13717 RAPIDIO SUBSYSTEM
13718 M:      Matt Porter <mporter@kernel.crashing.org>
13719 M:      Alexandre Bounine <alex.bou9@gmail.com>
13720 S:      Maintained
13721 F:      drivers/rapidio/
13722
13723 RAS INFRASTRUCTURE
13724 M:      Tony Luck <tony.luck@intel.com>
13725 M:      Borislav Petkov <bp@alien8.de>
13726 L:      linux-edac@vger.kernel.org
13727 S:      Maintained
13728 F:      drivers/ras/
13729 F:      include/linux/ras.h
13730 F:      include/ras/ras_event.h
13731 F:      Documentation/admin-guide/ras.rst
13732
13733 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
13734 L:      linux-wireless@vger.kernel.org
13735 S:      Orphan
13736 F:      drivers/net/wireless/ray*
13737
13738 RCUTORTURE TEST FRAMEWORK
13739 M:      "Paul E. McKenney" <paulmck@kernel.org>
13740 M:      Josh Triplett <josh@joshtriplett.org>
13741 R:      Steven Rostedt <rostedt@goodmis.org>
13742 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13743 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13744 L:      rcu@vger.kernel.org
13745 S:      Supported
13746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13747 F:      tools/testing/selftests/rcutorture
13748
13749 RDC R-321X SoC
13750 M:      Florian Fainelli <florian@openwrt.org>
13751 S:      Maintained
13752
13753 RDC R6040 FAST ETHERNET DRIVER
13754 M:      Florian Fainelli <f.fainelli@gmail.com>
13755 L:      netdev@vger.kernel.org
13756 S:      Maintained
13757 F:      drivers/net/ethernet/rdc/r6040.c
13758
13759 RDMAVT - RDMA verbs software
13760 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13761 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13762 L:      linux-rdma@vger.kernel.org
13763 S:      Supported
13764 F:      drivers/infiniband/sw/rdmavt
13765
13766 RDS - RELIABLE DATAGRAM SOCKETS
13767 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
13768 L:      netdev@vger.kernel.org
13769 L:      linux-rdma@vger.kernel.org
13770 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
13771 W:      https://oss.oracle.com/projects/rds/
13772 S:      Supported
13773 F:      net/rds/
13774 F:      Documentation/networking/rds.txt
13775
13776 RDT - RESOURCE ALLOCATION
13777 M:      Fenghua Yu <fenghua.yu@intel.com>
13778 M:      Reinette Chatre <reinette.chatre@intel.com>
13779 L:      linux-kernel@vger.kernel.org
13780 S:      Supported
13781 F:      arch/x86/kernel/cpu/resctrl/
13782 F:      arch/x86/include/asm/resctrl_sched.h
13783 F:      Documentation/x86/resctrl*
13784
13785 READ-COPY UPDATE (RCU)
13786 M:      "Paul E. McKenney" <paulmck@kernel.org>
13787 M:      Josh Triplett <josh@joshtriplett.org>
13788 R:      Steven Rostedt <rostedt@goodmis.org>
13789 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13790 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13791 R:      Joel Fernandes <joel@joelfernandes.org>
13792 L:      rcu@vger.kernel.org
13793 W:      http://www.rdrop.com/users/paulmck/RCU/
13794 S:      Supported
13795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13796 F:      Documentation/RCU/
13797 X:      Documentation/RCU/torture.txt
13798 F:      include/linux/rcu*
13799 X:      include/linux/srcu*.h
13800 F:      kernel/rcu/
13801 X:      kernel/rcu/srcu*.c
13802
13803 REAL TIME CLOCK (RTC) SUBSYSTEM
13804 M:      Alessandro Zummo <a.zummo@towertech.it>
13805 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13806 L:      linux-rtc@vger.kernel.org
13807 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
13808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
13809 S:      Maintained
13810 F:      Documentation/devicetree/bindings/rtc/
13811 F:      Documentation/admin-guide/rtc.rst
13812 F:      drivers/rtc/
13813 F:      include/linux/rtc.h
13814 F:      include/uapi/linux/rtc.h
13815 F:      include/linux/rtc/
13816 F:      include/linux/platform_data/rtc-*
13817 F:      tools/testing/selftests/rtc/
13818
13819 REALTEK AUDIO CODECS
13820 M:      Bard Liao <bardliao@realtek.com>
13821 M:      Oder Chiou <oder_chiou@realtek.com>
13822 S:      Maintained
13823 F:      sound/soc/codecs/rt*
13824 F:      include/sound/rt*.h
13825
13826 REALTEK RTL83xx SMI DSA ROUTER CHIPS
13827 M:      Linus Walleij <linus.walleij@linaro.org>
13828 S:      Maintained
13829 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
13830 F:      drivers/net/dsa/realtek-smi*
13831 F:      drivers/net/dsa/rtl83*
13832
13833 REDPINE WIRELESS DRIVER
13834 M:      Amitkumar Karwar <amitkarwar@gmail.com>
13835 M:      Siva Rebbagondla <siva8118@gmail.com>
13836 L:      linux-wireless@vger.kernel.org
13837 S:      Maintained
13838 F:      drivers/net/wireless/rsi/
13839
13840 REGISTER MAP ABSTRACTION
13841 M:      Mark Brown <broonie@kernel.org>
13842 L:      linux-kernel@vger.kernel.org
13843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
13844 S:      Supported
13845 F:      Documentation/devicetree/bindings/regmap/
13846 F:      drivers/base/regmap/
13847 F:      include/linux/regmap.h
13848
13849 REISERFS FILE SYSTEM
13850 L:      reiserfs-devel@vger.kernel.org
13851 S:      Supported
13852 F:      fs/reiserfs/
13853
13854 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
13855 M:      Ohad Ben-Cohen <ohad@wizery.com>
13856 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13857 L:      linux-remoteproc@vger.kernel.org
13858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
13859 S:      Maintained
13860 F:      Documentation/devicetree/bindings/remoteproc/
13861 F:      Documentation/ABI/testing/sysfs-class-remoteproc
13862 F:      Documentation/remoteproc.txt
13863 F:      drivers/remoteproc/
13864 F:      include/linux/remoteproc.h
13865 F:      include/linux/remoteproc/
13866
13867 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
13868 M:      Ohad Ben-Cohen <ohad@wizery.com>
13869 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13870 L:      linux-remoteproc@vger.kernel.org
13871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
13872 S:      Maintained
13873 F:      drivers/rpmsg/
13874 F:      Documentation/rpmsg.txt
13875 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
13876 F:      include/linux/rpmsg.h
13877 F:      include/linux/rpmsg/
13878 F:      include/uapi/linux/rpmsg.h
13879 F:      samples/rpmsg/
13880
13881 RENESAS CLOCK DRIVERS
13882 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13883 L:      linux-renesas-soc@vger.kernel.org
13884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
13885 S:      Supported
13886 F:      drivers/clk/renesas/
13887
13888 RENESAS EMEV2 I2C DRIVER
13889 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13890 S:      Supported
13891 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
13892 F:      drivers/i2c/busses/i2c-emev2.c
13893
13894 RENESAS ETHERNET DRIVERS
13895 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
13896 L:      netdev@vger.kernel.org
13897 L:      linux-renesas-soc@vger.kernel.org
13898 F:      Documentation/devicetree/bindings/net/renesas,*.txt
13899 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
13900 F:      drivers/net/ethernet/renesas/
13901 F:      include/linux/sh_eth.h
13902
13903 RENESAS R-CAR GYROADC DRIVER
13904 M:      Marek Vasut <marek.vasut@gmail.com>
13905 L:      linux-iio@vger.kernel.org
13906 S:      Supported
13907 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
13908 F:      drivers/iio/adc/rcar-gyroadc.c
13909
13910 RENESAS R-CAR I2C DRIVERS
13911 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13912 S:      Supported
13913 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
13914 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
13915 F:      drivers/i2c/busses/i2c-rcar.c
13916 F:      drivers/i2c/busses/i2c-sh_mobile.c
13917
13918 RENESAS RIIC DRIVER
13919 M:      Chris Brandt <chris.brandt@renesas.com>
13920 S:      Supported
13921 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
13922 F:      drivers/i2c/busses/i2c-riic.c
13923
13924 RENESAS USB PHY DRIVER
13925 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13926 L:      linux-renesas-soc@vger.kernel.org
13927 S:      Maintained
13928 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
13929
13930 RESET CONTROLLER FRAMEWORK
13931 M:      Philipp Zabel <p.zabel@pengutronix.de>
13932 T:      git git://git.pengutronix.de/git/pza/linux
13933 S:      Maintained
13934 F:      drivers/reset/
13935 F:      Documentation/devicetree/bindings/reset/
13936 F:      include/dt-bindings/reset/
13937 F:      include/linux/reset.h
13938 F:      include/linux/reset/
13939 F:      include/linux/reset-controller.h
13940
13941 RESTARTABLE SEQUENCES SUPPORT
13942 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13943 M:      Peter Zijlstra <peterz@infradead.org>
13944 M:      "Paul E. McKenney" <paulmck@kernel.org>
13945 M:      Boqun Feng <boqun.feng@gmail.com>
13946 L:      linux-kernel@vger.kernel.org
13947 S:      Supported
13948 F:      kernel/rseq.c
13949 F:      include/uapi/linux/rseq.h
13950 F:      include/trace/events/rseq.h
13951 F:      tools/testing/selftests/rseq/
13952
13953 RFKILL
13954 M:      Johannes Berg <johannes@sipsolutions.net>
13955 L:      linux-wireless@vger.kernel.org
13956 W:      http://wireless.kernel.org/
13957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
13958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
13959 S:      Maintained
13960 F:      Documentation/driver-api/rfkill.rst
13961 F:      Documentation/ABI/stable/sysfs-class-rfkill
13962 F:      net/rfkill/
13963 F:      include/linux/rfkill.h
13964 F:      include/uapi/linux/rfkill.h
13965
13966 RHASHTABLE
13967 M:      Thomas Graf <tgraf@suug.ch>
13968 M:      Herbert Xu <herbert@gondor.apana.org.au>
13969 L:      netdev@vger.kernel.org
13970 S:      Maintained
13971 F:      lib/rhashtable.c
13972 F:      lib/test_rhashtable.c
13973 F:      include/linux/rhashtable.h
13974 F:      include/linux/rhashtable-types.h
13975
13976 RICOH R5C592 MEMORYSTICK DRIVER
13977 M:      Maxim Levitsky <maximlevitsky@gmail.com>
13978 S:      Maintained
13979 F:      drivers/memstick/host/r592.*
13980
13981 RICOH SMARTMEDIA/XD DRIVER
13982 M:      Maxim Levitsky <maximlevitsky@gmail.com>
13983 S:      Maintained
13984 F:      drivers/mtd/nand/raw/r852.c
13985 F:      drivers/mtd/nand/raw/r852.h
13986
13987 RISC-V ARCHITECTURE
13988 M:      Paul Walmsley <paul.walmsley@sifive.com>
13989 M:      Palmer Dabbelt <palmer@dabbelt.com>
13990 M:      Albert Ou <aou@eecs.berkeley.edu>
13991 L:      linux-riscv@lists.infradead.org
13992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
13993 S:      Supported
13994 F:      arch/riscv/
13995 K:      riscv
13996 N:      riscv
13997
13998 ROCCAT DRIVERS
13999 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
14000 W:      http://sourceforge.net/projects/roccat/
14001 S:      Maintained
14002 F:      drivers/hid/hid-roccat*
14003 F:      include/linux/hid-roccat*
14004 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14005
14006 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14007 M:      Jacob Chen <jacob-chen@iotwrt.com>
14008 M:      Ezequiel Garcia <ezequiel@collabora.com>
14009 L:      linux-media@vger.kernel.org
14010 S:      Maintained
14011 F:      drivers/media/platform/rockchip/rga/
14012 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
14013
14014 HANTRO VPU CODEC DRIVER
14015 M:      Ezequiel Garcia <ezequiel@collabora.com>
14016 L:      linux-media@vger.kernel.org
14017 S:      Maintained
14018 F:      drivers/staging/media/hantro/
14019 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
14020
14021 ROCKER DRIVER
14022 M:      Jiri Pirko <jiri@resnulli.us>
14023 L:      netdev@vger.kernel.org
14024 S:      Supported
14025 F:      drivers/net/ethernet/rocker/
14026
14027 ROCKETPORT DRIVER
14028 P:      Comtrol Corp.
14029 W:      http://www.comtrol.com
14030 S:      Maintained
14031 F:      Documentation/driver-api/serial/rocket.rst
14032 F:      drivers/tty/rocket*
14033
14034 ROCKETPORT EXPRESS/INFINITY DRIVER
14035 M:      Kevin Cernekee <cernekee@gmail.com>
14036 L:      linux-serial@vger.kernel.org
14037 S:      Odd Fixes
14038 F:      drivers/tty/serial/rp2.*
14039
14040 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14041 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14042 L:      linux-kernel@vger.kernel.org
14043 L:      linux-renesas-soc@vger.kernel.org
14044 S:      Supported
14045 F:      drivers/mfd/bd9571mwv.c
14046 F:      drivers/regulator/bd9571mwv-regulator.c
14047 F:      drivers/gpio/gpio-bd9571mwv.c
14048 F:      include/linux/mfd/bd9571mwv.h
14049 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14050
14051 ROSE NETWORK LAYER
14052 M:      Ralf Baechle <ralf@linux-mips.org>
14053 L:      linux-hams@vger.kernel.org
14054 W:      http://www.linux-ax25.org/
14055 S:      Maintained
14056 F:      include/net/rose.h
14057 F:      include/uapi/linux/rose.h
14058 F:      net/rose/
14059
14060 RTL2830 MEDIA DRIVER
14061 M:      Antti Palosaari <crope@iki.fi>
14062 L:      linux-media@vger.kernel.org
14063 W:      https://linuxtv.org
14064 W:      http://palosaari.fi/linux/
14065 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14066 T:      git git://linuxtv.org/anttip/media_tree.git
14067 S:      Maintained
14068 F:      drivers/media/dvb-frontends/rtl2830*
14069
14070 RTL2832 MEDIA DRIVER
14071 M:      Antti Palosaari <crope@iki.fi>
14072 L:      linux-media@vger.kernel.org
14073 W:      https://linuxtv.org
14074 W:      http://palosaari.fi/linux/
14075 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14076 T:      git git://linuxtv.org/anttip/media_tree.git
14077 S:      Maintained
14078 F:      drivers/media/dvb-frontends/rtl2832*
14079
14080 RTL2832_SDR MEDIA DRIVER
14081 M:      Antti Palosaari <crope@iki.fi>
14082 L:      linux-media@vger.kernel.org
14083 W:      https://linuxtv.org
14084 W:      http://palosaari.fi/linux/
14085 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14086 T:      git git://linuxtv.org/anttip/media_tree.git
14087 S:      Maintained
14088 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14089
14090 RTL8180 WIRELESS DRIVER
14091 L:      linux-wireless@vger.kernel.org
14092 W:      http://wireless.kernel.org/
14093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14094 S:      Orphan
14095 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14096
14097 RTL8187 WIRELESS DRIVER
14098 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14099 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14100 M:      Larry Finger <Larry.Finger@lwfinger.net>
14101 L:      linux-wireless@vger.kernel.org
14102 W:      http://wireless.kernel.org/
14103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14104 S:      Maintained
14105 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14106
14107 REALTEK WIRELESS DRIVER (rtlwifi family)
14108 M:      Ping-Ke Shih <pkshih@realtek.com>
14109 L:      linux-wireless@vger.kernel.org
14110 W:      http://wireless.kernel.org/
14111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14112 S:      Maintained
14113 F:      drivers/net/wireless/realtek/rtlwifi/
14114
14115 REALTEK WIRELESS DRIVER (rtw88)
14116 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14117 L:      linux-wireless@vger.kernel.org
14118 S:      Maintained
14119 F:      drivers/net/wireless/realtek/rtw88/
14120
14121 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14122 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14123 L:      linux-wireless@vger.kernel.org
14124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14125 S:      Maintained
14126 F:      drivers/net/wireless/realtek/rtl8xxxu/
14127
14128 RXRPC SOCKETS (AF_RXRPC)
14129 M:      David Howells <dhowells@redhat.com>
14130 L:      linux-afs@lists.infradead.org
14131 S:      Supported
14132 F:      net/rxrpc/
14133 F:      include/keys/rxrpc-type.h
14134 F:      include/net/af_rxrpc.h
14135 F:      include/trace/events/rxrpc.h
14136 F:      include/uapi/linux/rxrpc.h
14137 F:      Documentation/networking/rxrpc.txt
14138 W:      https://www.infradead.org/~dhowells/kafs/
14139
14140 S3 SAVAGE FRAMEBUFFER DRIVER
14141 M:      Antonino Daplas <adaplas@gmail.com>
14142 L:      linux-fbdev@vger.kernel.org
14143 S:      Maintained
14144 F:      drivers/video/fbdev/savage/
14145
14146 S390
14147 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14148 M:      Vasily Gorbik <gor@linux.ibm.com>
14149 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14150 L:      linux-s390@vger.kernel.org
14151 W:      http://www.ibm.com/developerworks/linux/linux390/
14152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14153 S:      Supported
14154 F:      arch/s390/
14155 F:      drivers/s390/
14156 F:      Documentation/s390/
14157 F:      Documentation/driver-api/s390-drivers.rst
14158
14159 S390 COMMON I/O LAYER
14160 M:      Sebastian Ott <sebott@linux.ibm.com>
14161 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14162 L:      linux-s390@vger.kernel.org
14163 W:      http://www.ibm.com/developerworks/linux/linux390/
14164 S:      Supported
14165 F:      drivers/s390/cio/
14166
14167 S390 DASD DRIVER
14168 M:      Stefan Haberland <sth@linux.ibm.com>
14169 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14170 L:      linux-s390@vger.kernel.org
14171 W:      http://www.ibm.com/developerworks/linux/linux390/
14172 S:      Supported
14173 F:      drivers/s390/block/dasd*
14174 F:      block/partitions/ibm.c
14175
14176 S390 IOMMU (PCI)
14177 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14178 L:      linux-s390@vger.kernel.org
14179 W:      http://www.ibm.com/developerworks/linux/linux390/
14180 S:      Supported
14181 F:      drivers/iommu/s390-iommu.c
14182
14183 S390 IUCV NETWORK LAYER
14184 M:      Julian Wiedmann <jwi@linux.ibm.com>
14185 M:      Ursula Braun <ubraun@linux.ibm.com>
14186 L:      linux-s390@vger.kernel.org
14187 W:      http://www.ibm.com/developerworks/linux/linux390/
14188 S:      Supported
14189 F:      drivers/s390/net/*iucv*
14190 F:      include/net/iucv/
14191 F:      net/iucv/
14192
14193 S390 NETWORK DRIVERS
14194 M:      Julian Wiedmann <jwi@linux.ibm.com>
14195 M:      Ursula Braun <ubraun@linux.ibm.com>
14196 L:      linux-s390@vger.kernel.org
14197 W:      http://www.ibm.com/developerworks/linux/linux390/
14198 S:      Supported
14199 F:      drivers/s390/net/
14200
14201 S390 PCI SUBSYSTEM
14202 M:      Sebastian Ott <sebott@linux.ibm.com>
14203 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14204 L:      linux-s390@vger.kernel.org
14205 W:      http://www.ibm.com/developerworks/linux/linux390/
14206 S:      Supported
14207 F:      arch/s390/pci/
14208 F:      drivers/pci/hotplug/s390_pci_hpc.c
14209
14210 S390 VFIO-CCW DRIVER
14211 M:      Cornelia Huck <cohuck@redhat.com>
14212 M:      Eric Farman <farman@linux.ibm.com>
14213 R:      Halil Pasic <pasic@linux.ibm.com>
14214 L:      linux-s390@vger.kernel.org
14215 L:      kvm@vger.kernel.org
14216 S:      Supported
14217 F:      drivers/s390/cio/vfio_ccw*
14218 F:      Documentation/s390/vfio-ccw.rst
14219 F:      include/uapi/linux/vfio_ccw.h
14220
14221 S390 ZCRYPT DRIVER
14222 M:      Harald Freudenberger <freude@linux.ibm.com>
14223 L:      linux-s390@vger.kernel.org
14224 W:      http://www.ibm.com/developerworks/linux/linux390/
14225 S:      Supported
14226 F:      drivers/s390/crypto/
14227
14228 S390 VFIO AP DRIVER
14229 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14230 M:      Pierre Morel <pmorel@linux.ibm.com>
14231 M:      Halil Pasic <pasic@linux.ibm.com>
14232 L:      linux-s390@vger.kernel.org
14233 W:      http://www.ibm.com/developerworks/linux/linux390/
14234 S:      Supported
14235 F:      drivers/s390/crypto/vfio_ap_drv.c
14236 F:      drivers/s390/crypto/vfio_ap_private.h
14237 F:      drivers/s390/crypto/vfio_ap_ops.c
14238 F:      Documentation/s390/vfio-ap.rst
14239
14240 S390 ZFCP DRIVER
14241 M:      Steffen Maier <maier@linux.ibm.com>
14242 M:      Benjamin Block <bblock@linux.ibm.com>
14243 L:      linux-s390@vger.kernel.org
14244 W:      http://www.ibm.com/developerworks/linux/linux390/
14245 S:      Supported
14246 F:      drivers/s390/scsi/zfcp_*
14247
14248 S3C24XX SD/MMC Driver
14249 M:      Ben Dooks <ben-linux@fluff.org>
14250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14251 S:      Supported
14252 F:      drivers/mmc/host/s3cmci.*
14253
14254 SAA6588 RDS RECEIVER DRIVER
14255 M:      Hans Verkuil <hverkuil@xs4all.nl>
14256 L:      linux-media@vger.kernel.org
14257 T:      git git://linuxtv.org/media_tree.git
14258 W:      https://linuxtv.org
14259 S:      Odd Fixes
14260 F:      drivers/media/i2c/saa6588*
14261
14262 SAA7134 VIDEO4LINUX DRIVER
14263 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14264 L:      linux-media@vger.kernel.org
14265 W:      https://linuxtv.org
14266 T:      git git://linuxtv.org/media_tree.git
14267 S:      Odd fixes
14268 F:      Documentation/media/v4l-drivers/saa7134*
14269 F:      drivers/media/pci/saa7134/
14270
14271 SAA7146 VIDEO4LINUX-2 DRIVER
14272 M:      Hans Verkuil <hverkuil@xs4all.nl>
14273 L:      linux-media@vger.kernel.org
14274 T:      git git://linuxtv.org/media_tree.git
14275 S:      Maintained
14276 F:      drivers/media/common/saa7146/
14277 F:      drivers/media/pci/saa7146/
14278 F:      include/media/drv-intf/saa7146*
14279
14280 SAFESETID SECURITY MODULE
14281 M:     Micah Morton <mortonm@chromium.org>
14282 S:     Supported
14283 F:     security/safesetid/
14284 F:     Documentation/admin-guide/LSM/SafeSetID.rst
14285
14286 SAMSUNG AUDIO (ASoC) DRIVERS
14287 M:      Krzysztof Kozlowski <krzk@kernel.org>
14288 M:      Sangbeom Kim <sbkim73@samsung.com>
14289 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14290 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14291 S:      Supported
14292 F:      sound/soc/samsung/
14293 F:      Documentation/devicetree/bindings/sound/samsung*
14294
14295 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14296 M:      Krzysztof Kozlowski <krzk@kernel.org>
14297 L:      linux-crypto@vger.kernel.org
14298 L:      linux-samsung-soc@vger.kernel.org
14299 S:      Maintained
14300 F:      drivers/crypto/exynos-rng.c
14301 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.txt
14302
14303 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14304 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14305 L:      linux-samsung-soc@vger.kernel.org
14306 S:      Maintained
14307 F:      drivers/char/hw_random/exynos-trng.c
14308 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14309
14310 SAMSUNG FRAMEBUFFER DRIVER
14311 M:      Jingoo Han <jingoohan1@gmail.com>
14312 L:      linux-fbdev@vger.kernel.org
14313 S:      Maintained
14314 F:      drivers/video/fbdev/s3c-fb.c
14315
14316 SAMSUNG LAPTOP DRIVER
14317 M:      Corentin Chary <corentin.chary@gmail.com>
14318 L:      platform-driver-x86@vger.kernel.org
14319 S:      Maintained
14320 F:      drivers/platform/x86/samsung-laptop.c
14321
14322 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14323 M:      Sangbeom Kim <sbkim73@samsung.com>
14324 M:      Krzysztof Kozlowski <krzk@kernel.org>
14325 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14326 L:      linux-kernel@vger.kernel.org
14327 L:      linux-samsung-soc@vger.kernel.org
14328 S:      Supported
14329 F:      drivers/mfd/sec*.c
14330 F:      drivers/regulator/s2m*.c
14331 F:      drivers/regulator/s5m*.c
14332 F:      drivers/clk/clk-s2mps11.c
14333 F:      drivers/rtc/rtc-s5m.c
14334 F:      include/linux/mfd/samsung/
14335 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14336 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14337 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14338 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14339
14340 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14341 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14342 L:      linux-media@vger.kernel.org
14343 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14344 S:      Maintained
14345 F:      drivers/media/platform/s3c-camif/
14346 F:      include/media/drv-intf/s3c_camif.h
14347
14348 SAMSUNG S3FWRN5 NFC DRIVER
14349 M:      Robert Baldyga <r.baldyga@samsung.com>
14350 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
14351 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
14352 S:      Supported
14353 F:      drivers/nfc/s3fwrn5
14354
14355 SAMSUNG S5C73M3 CAMERA DRIVER
14356 M:      Kyungmin Park <kyungmin.park@samsung.com>
14357 M:      Andrzej Hajda <a.hajda@samsung.com>
14358 L:      linux-media@vger.kernel.org
14359 S:      Supported
14360 F:      drivers/media/i2c/s5c73m3/*
14361
14362 SAMSUNG S5K5BAF CAMERA DRIVER
14363 M:      Kyungmin Park <kyungmin.park@samsung.com>
14364 M:      Andrzej Hajda <a.hajda@samsung.com>
14365 L:      linux-media@vger.kernel.org
14366 S:      Supported
14367 F:      drivers/media/i2c/s5k5baf.c
14368
14369 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14370 M:      Krzysztof Kozlowski <krzk@kernel.org>
14371 M:      Vladimir Zapolskiy <vz@mleia.com>
14372 M:      Kamil Konieczny <k.konieczny@partner.samsung.com>
14373 L:      linux-crypto@vger.kernel.org
14374 L:      linux-samsung-soc@vger.kernel.org
14375 S:      Maintained
14376 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.txt
14377 F:      Documentation/devicetree/bindings/crypto/samsung-sss.txt
14378 F:      drivers/crypto/s5p-sss.c
14379
14380 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14381 M:      Kyungmin Park <kyungmin.park@samsung.com>
14382 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14383 L:      linux-media@vger.kernel.org
14384 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14385 S:      Supported
14386 F:      drivers/media/platform/exynos4-is/
14387
14388 SAMSUNG SOC CLOCK DRIVERS
14389 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14390 M:      Tomasz Figa <tomasz.figa@gmail.com>
14391 M:      Chanwoo Choi <cw00.choi@samsung.com>
14392 S:      Supported
14393 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14395 F:      drivers/clk/samsung/
14396 F:      include/dt-bindings/clock/exynos*.h
14397 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14398 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14399 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14400
14401 SAMSUNG SPI DRIVERS
14402 M:      Kukjin Kim <kgene@kernel.org>
14403 M:      Krzysztof Kozlowski <krzk@kernel.org>
14404 M:      Andi Shyti <andi@etezian.org>
14405 L:      linux-spi@vger.kernel.org
14406 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14407 S:      Maintained
14408 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14409 F:      drivers/spi/spi-s3c*
14410 F:      include/linux/platform_data/spi-s3c64xx.h
14411
14412 SAMSUNG SXGBE DRIVERS
14413 M:      Byungho An <bh74.an@samsung.com>
14414 M:      Girish K S <ks.giri@samsung.com>
14415 M:      Vipul Pandya <vipul.pandya@samsung.com>
14416 S:      Supported
14417 L:      netdev@vger.kernel.org
14418 F:      drivers/net/ethernet/samsung/sxgbe/
14419
14420 SAMSUNG THERMAL DRIVER
14421 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14422 L:      linux-pm@vger.kernel.org
14423 L:      linux-samsung-soc@vger.kernel.org
14424 S:      Supported
14425 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14426 F:      drivers/thermal/samsung/
14427
14428 SAMSUNG USB2 PHY DRIVER
14429 M:      Kamil Debski <kamil@wypas.org>
14430 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14431 L:      linux-kernel@vger.kernel.org
14432 S:      Supported
14433 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14434 F:      Documentation/driver-api/phy/samsung-usb2.rst
14435 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14436 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14437 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14438 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14439 F:      drivers/phy/samsung/phy-samsung-usb2.c
14440 F:      drivers/phy/samsung/phy-samsung-usb2.h
14441
14442 SC1200 WDT DRIVER
14443 M:      Zwane Mwaikambo <zwanem@gmail.com>
14444 S:      Maintained
14445 F:      drivers/watchdog/sc1200wdt.c
14446
14447 SCHEDULER
14448 M:      Ingo Molnar <mingo@redhat.com>
14449 M:      Peter Zijlstra <peterz@infradead.org>
14450 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
14451 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
14452 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
14453 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
14454 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
14455 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
14456 L:      linux-kernel@vger.kernel.org
14457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14458 S:      Maintained
14459 F:      kernel/sched/
14460 F:      include/linux/sched.h
14461 F:      include/uapi/linux/sched.h
14462 F:      include/linux/wait.h
14463 F:      include/linux/preempt.h
14464
14465 SCR24X CHIP CARD INTERFACE DRIVER
14466 M:      Lubomir Rintel <lkundrak@v3.sk>
14467 S:      Supported
14468 F:      drivers/char/pcmcia/scr24x_cs.c
14469
14470 SCSI CDROM DRIVER
14471 M:      Jens Axboe <axboe@kernel.dk>
14472 L:      linux-scsi@vger.kernel.org
14473 W:      http://www.kernel.dk
14474 S:      Maintained
14475 F:      drivers/scsi/sr*
14476
14477 SCSI RDMA PROTOCOL (SRP) INITIATOR
14478 M:      Bart Van Assche <bvanassche@acm.org>
14479 L:      linux-rdma@vger.kernel.org
14480 S:      Supported
14481 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14482 F:      drivers/infiniband/ulp/srp/
14483 F:      include/scsi/srp.h
14484
14485 SCSI RDMA PROTOCOL (SRP) TARGET
14486 M:      Bart Van Assche <bvanassche@acm.org>
14487 L:      linux-rdma@vger.kernel.org
14488 L:      target-devel@vger.kernel.org
14489 S:      Supported
14490 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14491 F:      drivers/infiniband/ulp/srpt/
14492
14493 SCSI SG DRIVER
14494 M:      Doug Gilbert <dgilbert@interlog.com>
14495 L:      linux-scsi@vger.kernel.org
14496 W:      http://sg.danny.cz/sg
14497 S:      Maintained
14498 F:      Documentation/scsi/scsi-generic.txt
14499 F:      drivers/scsi/sg.c
14500 F:      include/scsi/sg.h
14501
14502 SCSI SUBSYSTEM
14503 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
14504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14505 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14507 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14508 L:      linux-scsi@vger.kernel.org
14509 S:      Maintained
14510 F:      Documentation/devicetree/bindings/scsi/
14511 F:      drivers/scsi/
14512 F:      include/scsi/
14513
14514 SCSI TAPE DRIVER
14515 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
14516 L:      linux-scsi@vger.kernel.org
14517 S:      Maintained
14518 F:      Documentation/scsi/st.txt
14519 F:      drivers/scsi/st.*
14520 F:      drivers/scsi/st_*.h
14521
14522 SCSI TARGET SUBSYSTEM
14523 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14524 L:      linux-scsi@vger.kernel.org
14525 L:      target-devel@vger.kernel.org
14526 W:      http://www.linux-iscsi.org
14527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14528 Q:      https://patchwork.kernel.org/project/target-devel/list/
14529 S:      Supported
14530 F:      drivers/target/
14531 F:      include/target/
14532 F:      Documentation/target/
14533
14534 SCTP PROTOCOL
14535 M:      Vlad Yasevich <vyasevich@gmail.com>
14536 M:      Neil Horman <nhorman@tuxdriver.com>
14537 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
14538 L:      linux-sctp@vger.kernel.org
14539 W:      http://lksctp.sourceforge.net
14540 S:      Maintained
14541 F:      Documentation/networking/sctp.txt
14542 F:      include/linux/sctp.h
14543 F:      include/uapi/linux/sctp.h
14544 F:      include/net/sctp/
14545 F:      net/sctp/
14546
14547 SCx200 CPU SUPPORT
14548 M:      Jim Cromie <jim.cromie@gmail.com>
14549 S:      Odd Fixes
14550 F:      Documentation/i2c/busses/scx200_acb.rst
14551 F:      arch/x86/platform/scx200/
14552 F:      drivers/watchdog/scx200_wdt.c
14553 F:      drivers/i2c/busses/scx200*
14554 F:      drivers/mtd/maps/scx200_docflash.c
14555 F:      include/linux/scx200.h
14556
14557 SCx200 GPIO DRIVER
14558 M:      Jim Cromie <jim.cromie@gmail.com>
14559 S:      Maintained
14560 F:      drivers/char/scx200_gpio.c
14561 F:      include/linux/scx200_gpio.h
14562
14563 SCx200 HRT CLOCKSOURCE DRIVER
14564 M:      Jim Cromie <jim.cromie@gmail.com>
14565 S:      Maintained
14566 F:      drivers/clocksource/scx200_hrt.c
14567
14568 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
14569 M:      Sascha Sommer <saschasommer@freenet.de>
14570 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
14571 S:      Maintained
14572 F:      drivers/mmc/host/sdricoh_cs.c
14573
14574 SECO BOARDS CEC DRIVER
14575 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
14576 S:      Maintained
14577 F:      drivers/media/platform/seco-cec/seco-cec.c
14578 F:      drivers/media/platform/seco-cec/seco-cec.h
14579
14580 SECURE COMPUTING
14581 M:      Kees Cook <keescook@chromium.org>
14582 R:      Andy Lutomirski <luto@amacapital.net>
14583 R:      Will Drewry <wad@chromium.org>
14584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
14585 S:      Supported
14586 F:      kernel/seccomp.c
14587 F:      include/uapi/linux/seccomp.h
14588 F:      include/linux/seccomp.h
14589 F:      tools/testing/selftests/seccomp/*
14590 F:      tools/testing/selftests/kselftest_harness.h
14591 F:      Documentation/userspace-api/seccomp_filter.rst
14592 K:      \bsecure_computing
14593 K:      \bTIF_SECCOMP\b
14594
14595 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
14596 M:      Al Cooper <alcooperx@gmail.com>
14597 L:      linux-mmc@vger.kernel.org
14598 L:      bcm-kernel-feedback-list@broadcom.com
14599 S:      Maintained
14600 F:      drivers/mmc/host/sdhci-brcmstb*
14601
14602 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
14603 M:      Adrian Hunter <adrian.hunter@intel.com>
14604 L:      linux-mmc@vger.kernel.org
14605 S:      Maintained
14606 F:      drivers/mmc/host/sdhci*
14607 F:      include/linux/mmc/sdhci*
14608
14609 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
14610 M:      Adrian Hunter <adrian.hunter@intel.com>
14611 M:      Ritesh Harjani <riteshh@codeaurora.org>
14612 M:      Asutosh Das <asutoshd@codeaurora.org>
14613 L:      linux-mmc@vger.kernel.org
14614 S:      Maintained
14615 F:      drivers/mmc/host/cqhci*
14616
14617 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
14618 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
14619 M:      Manjunath M B <manjumb@synopsys.com>
14620 L:      linux-mmc@vger.kernel.org
14621 S:      Maintained
14622 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
14623
14624 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
14625 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14626 L:      linux-mmc@vger.kernel.org
14627 S:      Supported
14628 F:      drivers/mmc/host/sdhci-of-at91.c
14629
14630 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
14631 M:      Ben Dooks <ben-linux@fluff.org>
14632 M:      Jaehoon Chung <jh80.chung@samsung.com>
14633 L:      linux-mmc@vger.kernel.org
14634 S:      Maintained
14635 F:      drivers/mmc/host/sdhci-s3c*
14636
14637 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
14638 M:      Viresh Kumar <vireshk@kernel.org>
14639 L:      linux-mmc@vger.kernel.org
14640 S:      Maintained
14641 F:      drivers/mmc/host/sdhci-spear.c
14642
14643 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
14644 M:      Kishon Vijay Abraham I <kishon@ti.com>
14645 L:      linux-mmc@vger.kernel.org
14646 S:      Maintained
14647 F:      drivers/mmc/host/sdhci-omap.c
14648
14649 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
14650 M:      Scott Bauer <scott.bauer@intel.com>
14651 M:      Jonathan Derrick <jonathan.derrick@intel.com>
14652 L:      linux-block@vger.kernel.org
14653 S:      Supported
14654 F:      block/sed*
14655 F:      block/opal_proto.h
14656 F:      include/linux/sed*
14657 F:      include/uapi/linux/sed*
14658
14659 SECURITY CONTACT
14660 M:      Security Officers <security@kernel.org>
14661 S:      Supported
14662
14663 SECURITY SUBSYSTEM
14664 M:      James Morris <jmorris@namei.org>
14665 M:      "Serge E. Hallyn" <serge@hallyn.com>
14666 L:      linux-security-module@vger.kernel.org (suggested Cc:)
14667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
14668 W:      http://kernsec.org/
14669 S:      Supported
14670 F:      security/
14671 X:      security/selinux/
14672
14673 SELINUX SECURITY MODULE
14674 M:      Paul Moore <paul@paul-moore.com>
14675 M:      Stephen Smalley <sds@tycho.nsa.gov>
14676 M:      Eric Paris <eparis@parisplace.org>
14677 L:      selinux@vger.kernel.org
14678 W:      https://selinuxproject.org
14679 W:      https://github.com/SELinuxProject
14680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
14681 S:      Supported
14682 F:      include/uapi/linux/selinux_netlink.h
14683 F:      security/selinux/
14684 F:      scripts/selinux/
14685 F:      Documentation/admin-guide/LSM/SELinux.rst
14686
14687 SENSABLE PHANTOM
14688 M:      Jiri Slaby <jirislaby@gmail.com>
14689 S:      Maintained
14690 F:      drivers/misc/phantom.c
14691 F:      include/uapi/linux/phantom.h
14692
14693 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
14694 M:      Tomasz Duszynski <tduszyns@gmail.com>
14695 S:      Maintained
14696 F:      drivers/iio/chemical/sps30.c
14697 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
14698
14699 SERIAL DEVICE BUS
14700 M:      Rob Herring <robh@kernel.org>
14701 L:      linux-serial@vger.kernel.org
14702 S:      Maintained
14703 F:      Documentation/devicetree/bindings/serial/slave-device.txt
14704 F:      drivers/tty/serdev/
14705 F:      include/linux/serdev.h
14706
14707 SERIAL DRIVERS
14708 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14709 L:      linux-serial@vger.kernel.org
14710 S:      Maintained
14711 F:      Documentation/devicetree/bindings/serial/
14712 F:      drivers/tty/serial/
14713
14714 SERIAL IR RECEIVER
14715 M:      Sean Young <sean@mess.org>
14716 L:      linux-media@vger.kernel.org
14717 S:      Maintained
14718 F:      drivers/media/rc/serial_ir.c
14719
14720 SFC NETWORK DRIVER
14721 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
14722 M:      Edward Cree <ecree@solarflare.com>
14723 M:      Martin Habets <mhabets@solarflare.com>
14724 L:      netdev@vger.kernel.org
14725 S:      Supported
14726 F:      drivers/net/ethernet/sfc/
14727
14728 SFF/SFP/SFP+ MODULE SUPPORT
14729 M:      Russell King <linux@armlinux.org.uk>
14730 L:      netdev@vger.kernel.org
14731 S:      Maintained
14732 F:      drivers/net/phy/phylink.c
14733 F:      drivers/net/phy/sfp*
14734 F:      include/linux/phylink.h
14735 F:      include/linux/sfp.h
14736 K:      phylink
14737
14738 SGI GRU DRIVER
14739 M:      Dimitri Sivanich <sivanich@sgi.com>
14740 S:      Maintained
14741 F:      drivers/misc/sgi-gru/
14742
14743 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
14744 M:      Pat Gefre <pfg@sgi.com>
14745 L:      linux-ia64@vger.kernel.org
14746 S:      Supported
14747 F:      Documentation/ia64/serial.rst
14748 F:      drivers/tty/serial/ioc?_serial.c
14749 F:      include/linux/ioc?.h
14750
14751 SGI XP/XPC/XPNET DRIVER
14752 M:      Cliff Whickman <cpw@sgi.com>
14753 M:      Robin Holt <robinmholt@gmail.com>
14754 S:      Maintained
14755 F:      drivers/misc/sgi-xp/
14756
14757 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
14758 M:      Ursula Braun <ubraun@linux.ibm.com>
14759 M:      Karsten Graul <kgraul@linux.ibm.com>
14760 L:      linux-s390@vger.kernel.org
14761 W:      http://www.ibm.com/developerworks/linux/linux390/
14762 S:      Supported
14763 F:      net/smc/
14764
14765 SHARP RJ54N1CB0C SENSOR DRIVER
14766 M:      Jacopo Mondi <jacopo@jmondi.org>
14767 L:      linux-media@vger.kernel.org
14768 T:      git git://linuxtv.org/media_tree.git
14769 S:      Odd fixes
14770 F:      drivers/media/i2c/rj54n1cb0c.c
14771 F:      include/media/i2c/rj54n1cb0c.h
14772
14773 SH_VEU V4L2 MEM2MEM DRIVER
14774 L:      linux-media@vger.kernel.org
14775 S:      Orphan
14776 F:      drivers/media/platform/sh_veu.c
14777
14778 SH_VOU V4L2 OUTPUT DRIVER
14779 L:      linux-media@vger.kernel.org
14780 S:      Orphan
14781 F:      drivers/media/platform/sh_vou.c
14782 F:      include/media/drv-intf/sh_vou.h
14783
14784 SI2157 MEDIA DRIVER
14785 M:      Antti Palosaari <crope@iki.fi>
14786 L:      linux-media@vger.kernel.org
14787 W:      https://linuxtv.org
14788 W:      http://palosaari.fi/linux/
14789 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14790 T:      git git://linuxtv.org/anttip/media_tree.git
14791 S:      Maintained
14792 F:      drivers/media/tuners/si2157*
14793
14794 SI2165 MEDIA DRIVER
14795 M:      Matthias Schwarzott <zzam@gentoo.org>
14796 L:      linux-media@vger.kernel.org
14797 W:      https://linuxtv.org
14798 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14799 S:      Maintained
14800 F:      drivers/media/dvb-frontends/si2165*
14801
14802 SI2168 MEDIA DRIVER
14803 M:      Antti Palosaari <crope@iki.fi>
14804 L:      linux-media@vger.kernel.org
14805 W:      https://linuxtv.org
14806 W:      http://palosaari.fi/linux/
14807 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14808 T:      git git://linuxtv.org/anttip/media_tree.git
14809 S:      Maintained
14810 F:      drivers/media/dvb-frontends/si2168*
14811
14812 SI470X FM RADIO RECEIVER I2C DRIVER
14813 M:      Hans Verkuil <hverkuil@xs4all.nl>
14814 L:      linux-media@vger.kernel.org
14815 T:      git git://linuxtv.org/media_tree.git
14816 W:      https://linuxtv.org
14817 S:      Odd Fixes
14818 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
14819
14820 SI470X FM RADIO RECEIVER USB DRIVER
14821 M:      Hans Verkuil <hverkuil@xs4all.nl>
14822 L:      linux-media@vger.kernel.org
14823 T:      git git://linuxtv.org/media_tree.git
14824 W:      https://linuxtv.org
14825 S:      Maintained
14826 F:      drivers/media/radio/si470x/radio-si470x-common.c
14827 F:      drivers/media/radio/si470x/radio-si470x.h
14828 F:      drivers/media/radio/si470x/radio-si470x-usb.c
14829
14830 SI4713 FM RADIO TRANSMITTER I2C DRIVER
14831 M:      Eduardo Valentin <edubezval@gmail.com>
14832 L:      linux-media@vger.kernel.org
14833 T:      git git://linuxtv.org/media_tree.git
14834 W:      https://linuxtv.org
14835 S:      Odd Fixes
14836 F:      drivers/media/radio/si4713/si4713.?
14837
14838 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
14839 M:      Eduardo Valentin <edubezval@gmail.com>
14840 L:      linux-media@vger.kernel.org
14841 T:      git git://linuxtv.org/media_tree.git
14842 W:      https://linuxtv.org
14843 S:      Odd Fixes
14844 F:      drivers/media/radio/si4713/radio-platform-si4713.c
14845
14846 SI4713 FM RADIO TRANSMITTER USB DRIVER
14847 M:      Hans Verkuil <hverkuil@xs4all.nl>
14848 L:      linux-media@vger.kernel.org
14849 T:      git git://linuxtv.org/media_tree.git
14850 W:      https://linuxtv.org
14851 S:      Maintained
14852 F:      drivers/media/radio/si4713/radio-usb-si4713.c
14853
14854 SIANO DVB DRIVER
14855 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14856 L:      linux-media@vger.kernel.org
14857 W:      https://linuxtv.org
14858 T:      git git://linuxtv.org/media_tree.git
14859 S:      Odd fixes
14860 F:      drivers/media/common/siano/
14861 F:      drivers/media/usb/siano/
14862 F:      drivers/media/usb/siano/
14863 F:      drivers/media/mmc/siano/
14864
14865 SIFIVE DRIVERS
14866 M:      Palmer Dabbelt <palmer@dabbelt.com>
14867 M:      Paul Walmsley <paul.walmsley@sifive.com>
14868 L:      linux-riscv@lists.infradead.org
14869 T:      git git://github.com/sifive/riscv-linux.git
14870 S:      Supported
14871 K:      [^@]sifive
14872 N:      sifive
14873
14874 SIFIVE FU540 SYSTEM-ON-CHIP
14875 M:      Paul Walmsley <paul.walmsley@sifive.com>
14876 M:      Palmer Dabbelt <palmer@dabbelt.com>
14877 L:      linux-riscv@lists.infradead.org
14878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
14879 S:      Supported
14880 K:      fu540
14881 N:      fu540
14882
14883 SILEAD TOUCHSCREEN DRIVER
14884 M:      Hans de Goede <hdegoede@redhat.com>
14885 L:      linux-input@vger.kernel.org
14886 L:      platform-driver-x86@vger.kernel.org
14887 S:      Maintained
14888 F:      drivers/input/touchscreen/silead.c
14889 F:      drivers/platform/x86/touchscreen_dmi.c
14890
14891 SILICON MOTION SM712 FRAME BUFFER DRIVER
14892 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14893 M:      Teddy Wang <teddy.wang@siliconmotion.com>
14894 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14895 L:      linux-fbdev@vger.kernel.org
14896 S:      Maintained
14897 F:      drivers/video/fbdev/sm712*
14898 F:      Documentation/fb/sm712fb.rst
14899
14900 SIMPLE FIRMWARE INTERFACE (SFI)
14901 M:      Len Brown <lenb@kernel.org>
14902 L:      sfi-devel@simplefirmware.org
14903 W:      http://simplefirmware.org/
14904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
14905 S:      Supported
14906 F:      arch/x86/platform/sfi/
14907 F:      drivers/sfi/
14908 F:      include/linux/sfi*.h
14909
14910 SIMPLEFB FB DRIVER
14911 M:      Hans de Goede <hdegoede@redhat.com>
14912 L:      linux-fbdev@vger.kernel.org
14913 S:      Maintained
14914 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
14915 F:      drivers/video/fbdev/simplefb.c
14916 F:      include/linux/platform_data/simplefb.h
14917
14918 SIMTEC EB110ATX (Chalice CATS)
14919 P:      Ben Dooks
14920 P:      Vincent Sanders <vince@simtec.co.uk>
14921 M:      Simtec Linux Team <linux@simtec.co.uk>
14922 W:      http://www.simtec.co.uk/products/EB110ATX/
14923 S:      Supported
14924
14925 SIMTEC EB2410ITX (BAST)
14926 P:      Ben Dooks
14927 P:      Vincent Sanders <vince@simtec.co.uk>
14928 M:      Simtec Linux Team <linux@simtec.co.uk>
14929 W:      http://www.simtec.co.uk/products/EB2410ITX/
14930 S:      Supported
14931 F:      arch/arm/mach-s3c24xx/mach-bast.c
14932 F:      arch/arm/mach-s3c24xx/bast-ide.c
14933 F:      arch/arm/mach-s3c24xx/bast-irq.c
14934
14935 SIPHASH PRF ROUTINES
14936 M:      Jason A. Donenfeld <Jason@zx2c4.com>
14937 S:      Maintained
14938 F:      lib/siphash.c
14939 F:      lib/test_siphash.c
14940 F:      include/linux/siphash.h
14941
14942 SIOX
14943 M:      Thorsten Scherer <t.scherer@eckelmann.de>
14944 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14945 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14946 S:      Supported
14947 F:      drivers/siox/*
14948 F:      drivers/gpio/gpio-siox.c
14949 F:      include/trace/events/siox.h
14950
14951 SIS 190 ETHERNET DRIVER
14952 M:      Francois Romieu <romieu@fr.zoreil.com>
14953 L:      netdev@vger.kernel.org
14954 S:      Maintained
14955 F:      drivers/net/ethernet/sis/sis190.c
14956
14957 SIS 900/7016 FAST ETHERNET DRIVER
14958 M:      Daniele Venzano <venza@brownhat.org>
14959 W:      http://www.brownhat.org/sis900.html
14960 L:      netdev@vger.kernel.org
14961 S:      Maintained
14962 F:      drivers/net/ethernet/sis/sis900.*
14963
14964 SIS FRAMEBUFFER DRIVER
14965 M:      Thomas Winischhofer <thomas@winischhofer.net>
14966 W:      http://www.winischhofer.net/linuxsisvga.shtml
14967 S:      Maintained
14968 F:      Documentation/fb/sisfb.rst
14969 F:      drivers/video/fbdev/sis/
14970 F:      include/video/sisfb.h
14971
14972 SIS USB2VGA DRIVER
14973 M:      Thomas Winischhofer <thomas@winischhofer.net>
14974 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
14975 S:      Maintained
14976 F:      drivers/usb/misc/sisusbvga/
14977
14978 SLAB ALLOCATOR
14979 M:      Christoph Lameter <cl@linux.com>
14980 M:      Pekka Enberg <penberg@kernel.org>
14981 M:      David Rientjes <rientjes@google.com>
14982 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
14983 M:      Andrew Morton <akpm@linux-foundation.org>
14984 L:      linux-mm@kvack.org
14985 S:      Maintained
14986 F:      include/linux/sl?b*.h
14987 F:      mm/sl?b*
14988
14989 SLEEPABLE READ-COPY UPDATE (SRCU)
14990 M:      Lai Jiangshan <jiangshanlai@gmail.com>
14991 M:      "Paul E. McKenney" <paulmck@kernel.org>
14992 M:      Josh Triplett <josh@joshtriplett.org>
14993 R:      Steven Rostedt <rostedt@goodmis.org>
14994 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14995 L:      rcu@vger.kernel.org
14996 W:      http://www.rdrop.com/users/paulmck/RCU/
14997 S:      Supported
14998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14999 F:      include/linux/srcu*.h
15000 F:      kernel/rcu/srcu*.c
15001
15002 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15003 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15004 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15005 S:      Maintained
15006 F:      drivers/slimbus/
15007 F:      Documentation/devicetree/bindings/slimbus/
15008 F:      include/linux/slimbus.h
15009
15010 SMACK SECURITY MODULE
15011 M:      Casey Schaufler <casey@schaufler-ca.com>
15012 L:      linux-security-module@vger.kernel.org
15013 W:      http://schaufler-ca.com
15014 T:      git git://github.com/cschaufler/smack-next
15015 S:      Maintained
15016 F:      Documentation/admin-guide/LSM/Smack.rst
15017 F:      security/smack/
15018
15019 SMC91x ETHERNET DRIVER
15020 M:      Nicolas Pitre <nico@fluxnic.net>
15021 S:      Odd Fixes
15022 F:      drivers/net/ethernet/smsc/smc91x.*
15023
15024 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15025 M:      Sakari Ailus <sakari.ailus@iki.fi>
15026 L:      linux-media@vger.kernel.org
15027 S:      Maintained
15028 F:      drivers/media/i2c/smiapp/
15029 F:      include/media/i2c/smiapp.h
15030 F:      drivers/media/i2c/smiapp-pll.c
15031 F:      drivers/media/i2c/smiapp-pll.h
15032 F:      include/uapi/linux/smiapp.h
15033 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15034
15035 SMM665 HARDWARE MONITOR DRIVER
15036 M:      Guenter Roeck <linux@roeck-us.net>
15037 L:      linux-hwmon@vger.kernel.org
15038 S:      Maintained
15039 F:      Documentation/hwmon/smm665.rst
15040 F:      drivers/hwmon/smm665.c
15041
15042 SMSC EMC2103 HARDWARE MONITOR DRIVER
15043 M:      Steve Glendinning <steve.glendinning@shawell.net>
15044 L:      linux-hwmon@vger.kernel.org
15045 S:      Maintained
15046 F:      Documentation/hwmon/emc2103.rst
15047 F:      drivers/hwmon/emc2103.c
15048
15049 SMSC SCH5627 HARDWARE MONITOR DRIVER
15050 M:      Hans de Goede <hdegoede@redhat.com>
15051 L:      linux-hwmon@vger.kernel.org
15052 S:      Supported
15053 F:      Documentation/hwmon/sch5627.rst
15054 F:      drivers/hwmon/sch5627.c
15055
15056 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15057 M:      Steve Glendinning <steve.glendinning@shawell.net>
15058 L:      linux-fbdev@vger.kernel.org
15059 S:      Maintained
15060 F:      drivers/video/fbdev/smscufx.c
15061
15062 SMSC47B397 HARDWARE MONITOR DRIVER
15063 M:      Jean Delvare <jdelvare@suse.com>
15064 L:      linux-hwmon@vger.kernel.org
15065 S:      Maintained
15066 F:      Documentation/hwmon/smsc47b397.rst
15067 F:      drivers/hwmon/smsc47b397.c
15068
15069 SMSC911x ETHERNET DRIVER
15070 M:      Steve Glendinning <steve.glendinning@shawell.net>
15071 L:      netdev@vger.kernel.org
15072 S:      Maintained
15073 F:      include/linux/smsc911x.h
15074 F:      drivers/net/ethernet/smsc/smsc911x.*
15075
15076 SMSC9420 PCI ETHERNET DRIVER
15077 M:      Steve Glendinning <steve.glendinning@shawell.net>
15078 L:      netdev@vger.kernel.org
15079 S:      Maintained
15080 F:      drivers/net/ethernet/smsc/smsc9420.*
15081
15082 SOC-CAMERA V4L2 SUBSYSTEM
15083 L:      linux-media@vger.kernel.org
15084 T:      git git://linuxtv.org/media_tree.git
15085 S:      Orphan
15086 F:      include/media/soc_camera.h
15087 F:      drivers/staging/media/soc_camera/
15088
15089 SOCIONEXT SYNQUACER I2C DRIVER
15090 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
15091 L:      linux-i2c@vger.kernel.org
15092 S:      Maintained
15093 F:      drivers/i2c/busses/i2c-synquacer.c
15094 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15095
15096 SOCIONEXT UNIPHIER SOUND DRIVER
15097 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15098 S:      Orphan
15099 F:      sound/soc/uniphier/
15100
15101 SOEKRIS NET48XX LED SUPPORT
15102 M:      Chris Boot <bootc@bootc.net>
15103 S:      Maintained
15104 F:      drivers/leds/leds-net48xx.c
15105
15106 SOFT-IWARP DRIVER (siw)
15107 M:      Bernard Metzler <bmt@zurich.ibm.com>
15108 L:      linux-rdma@vger.kernel.org
15109 S:      Supported
15110 F:      drivers/infiniband/sw/siw/
15111 F:      include/uapi/rdma/siw-abi.h
15112
15113 SOFT-ROCE DRIVER (rxe)
15114 M:      Moni Shoua <monis@mellanox.com>
15115 L:      linux-rdma@vger.kernel.org
15116 S:      Supported
15117 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
15118 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15119 F:      drivers/infiniband/sw/rxe/
15120 F:      include/uapi/rdma/rdma_user_rxe.h
15121
15122 SOFTLOGIC 6x10 MPEG CODEC
15123 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15124 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15125 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15126 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15127 M:      Ismael Luceno <ismael@iodev.co.uk>
15128 L:      linux-media@vger.kernel.org
15129 S:      Supported
15130 F:      drivers/media/pci/solo6x10/
15131
15132 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15133 M:      James Morse <james.morse@arm.com>
15134 L:      linux-arm-kernel@lists.infradead.org
15135 S:      Maintained
15136 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15137 F:      drivers/firmware/arm_sdei.c
15138 F:      include/linux/arm_sdei.h
15139 F:      include/uapi/linux/arm_sdei.h
15140
15141 SOFTWARE RAID (Multiple Disks) SUPPORT
15142 M:      Song Liu <song@kernel.org>
15143 L:      linux-raid@vger.kernel.org
15144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15145 S:      Supported
15146 F:      drivers/md/Makefile
15147 F:      drivers/md/Kconfig
15148 F:      drivers/md/md*
15149 F:      drivers/md/raid*
15150 F:      include/linux/raid/
15151 F:      include/uapi/linux/raid/
15152
15153 SOCIONEXT (SNI) AVE NETWORK DRIVER
15154 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15155 L:      netdev@vger.kernel.org
15156 S:      Maintained
15157 F:      drivers/net/ethernet/socionext/sni_ave.c
15158 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15159
15160 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15161 M:      Jassi Brar <jaswinder.singh@linaro.org>
15162 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15163 L:      netdev@vger.kernel.org
15164 S:      Maintained
15165 F:      drivers/net/ethernet/socionext/netsec.c
15166 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15167
15168 SOCIONEXT (SNI) Synquacer SPI DRIVER
15169 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15170 M:      Jassi Brar <jaswinder.singh@linaro.org>
15171 L:      linux-spi@vger.kernel.org
15172 S:      Maintained
15173 F:      drivers/spi/spi-synquacer.c
15174 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15175
15176 SOLIDRUN CLEARFOG SUPPORT
15177 M:      Russell King <linux@armlinux.org.uk>
15178 S:      Maintained
15179 F:      arch/arm/boot/dts/armada-388-clearfog*
15180 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15181
15182 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15183 M:      Russell King <linux@armlinux.org.uk>
15184 S:      Maintained
15185 F:      arch/arm/boot/dts/imx6*-cubox-i*
15186 F:      arch/arm/boot/dts/imx6*-hummingboard*
15187 F:      arch/arm/boot/dts/imx6*-sr-*
15188
15189 SONIC NETWORK DRIVER
15190 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15191 L:      netdev@vger.kernel.org
15192 S:      Maintained
15193 F:      drivers/net/ethernet/natsemi/sonic.*
15194
15195 SONICS SILICON BACKPLANE DRIVER (SSB)
15196 M:      Michael Buesch <m@bues.ch>
15197 L:      linux-wireless@vger.kernel.org
15198 S:      Maintained
15199 F:      drivers/ssb/
15200 F:      include/linux/ssb/
15201
15202 SONY IMX214 SENSOR DRIVER
15203 M:      Ricardo Ribalda <ricardo.ribalda@gmail.com>
15204 L:      linux-media@vger.kernel.org
15205 T:      git git://linuxtv.org/media_tree.git
15206 S:      Maintained
15207 F:      drivers/media/i2c/imx214.c
15208 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15209
15210 SONY IMX258 SENSOR DRIVER
15211 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15212 L:      linux-media@vger.kernel.org
15213 T:      git git://linuxtv.org/media_tree.git
15214 S:      Maintained
15215 F:      drivers/media/i2c/imx258.c
15216
15217 SONY IMX274 SENSOR DRIVER
15218 M:      Leon Luo <leonl@leopardimaging.com>
15219 L:      linux-media@vger.kernel.org
15220 T:      git git://linuxtv.org/media_tree.git
15221 S:      Maintained
15222 F:      drivers/media/i2c/imx274.c
15223 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15224
15225 SONY IMX319 SENSOR DRIVER
15226 M:      Bingbu Cao <bingbu.cao@intel.com>
15227 L:      linux-media@vger.kernel.org
15228 T:      git git://linuxtv.org/media_tree.git
15229 S:      Maintained
15230 F:      drivers/media/i2c/imx319.c
15231
15232 SONY IMX355 SENSOR DRIVER
15233 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15234 L:      linux-media@vger.kernel.org
15235 T:      git git://linuxtv.org/media_tree.git
15236 S:      Maintained
15237 F:      drivers/media/i2c/imx355.c
15238
15239 SONY MEMORYSTICK SUBSYSTEM
15240 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15241 M:      Alex Dubov <oakad@yahoo.com>
15242 M:      Ulf Hansson <ulf.hansson@linaro.org>
15243 L:      linux-mmc@vger.kernel.org
15244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15245 S:      Maintained
15246 F:      drivers/memstick/
15247 F:      include/linux/memstick.h
15248
15249 SONY VAIO CONTROL DEVICE DRIVER
15250 M:      Mattia Dongili <malattia@linux.it>
15251 L:      platform-driver-x86@vger.kernel.org
15252 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15253 S:      Maintained
15254 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15255 F:      drivers/char/sonypi.c
15256 F:      drivers/platform/x86/sony-laptop.c
15257 F:      include/linux/sony-laptop.h
15258
15259 SOUND
15260 M:      Jaroslav Kysela <perex@perex.cz>
15261 M:      Takashi Iwai <tiwai@suse.com>
15262 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15263 W:      http://www.alsa-project.org/
15264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15265 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15266 S:      Maintained
15267 F:      Documentation/sound/
15268 F:      include/sound/
15269 F:      include/uapi/sound/
15270 F:      sound/
15271
15272 SOUND - COMPRESSED AUDIO
15273 M:      Vinod Koul <vkoul@kernel.org>
15274 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15276 S:      Supported
15277 F:      Documentation/sound/designs/compress-offload.rst
15278 F:      include/sound/compress_driver.h
15279 F:      include/uapi/sound/compress_*
15280 F:      sound/core/compress_offload.c
15281 F:      sound/soc/soc-compress.c
15282
15283 SOUND - DMAENGINE HELPERS
15284 M:      Lars-Peter Clausen <lars@metafoo.de>
15285 S:      Supported
15286 F:      include/sound/dmaengine_pcm.h
15287 F:      sound/core/pcm_dmaengine.c
15288 F:      sound/soc/soc-generic-dmaengine-pcm.c
15289
15290 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15291 M:      Liam Girdwood <lgirdwood@gmail.com>
15292 M:      Mark Brown <broonie@kernel.org>
15293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15294 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15295 W:      http://alsa-project.org/main/index.php/ASoC
15296 S:      Supported
15297 F:      Documentation/devicetree/bindings/sound/
15298 F:      Documentation/sound/soc/
15299 F:      sound/soc/
15300 F:      include/dt-bindings/sound/
15301 F:      include/sound/soc*
15302
15303 SOUNDWIRE SUBSYSTEM
15304 M:      Vinod Koul <vkoul@kernel.org>
15305 M:      Sanyog Kale <sanyog.r.kale@intel.com>
15306 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15307 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15308 S:      Supported
15309 F:      Documentation/driver-api/soundwire/
15310 F:      drivers/soundwire/
15311 F:      include/linux/soundwire/
15312
15313 SP2 MEDIA DRIVER
15314 M:      Olli Salonen <olli.salonen@iki.fi>
15315 L:      linux-media@vger.kernel.org
15316 W:      https://linuxtv.org
15317 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15318 S:      Maintained
15319 F:      drivers/media/dvb-frontends/sp2*
15320
15321 SPARC + UltraSPARC (sparc/sparc64)
15322 M:      "David S. Miller" <davem@davemloft.net>
15323 L:      sparclinux@vger.kernel.org
15324 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15327 S:      Maintained
15328 F:      arch/sparc/
15329 F:      drivers/sbus/
15330
15331 SPARC SERIAL DRIVERS
15332 M:      "David S. Miller" <davem@davemloft.net>
15333 L:      sparclinux@vger.kernel.org
15334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15336 S:      Maintained
15337 F:      include/linux/sunserialcore.h
15338 F:      drivers/tty/serial/suncore.c
15339 F:      drivers/tty/serial/sunhv.c
15340 F:      drivers/tty/serial/sunsab.c
15341 F:      drivers/tty/serial/sunsab.h
15342 F:      drivers/tty/serial/sunsu.c
15343 F:      drivers/tty/serial/sunzilog.c
15344 F:      drivers/tty/serial/sunzilog.h
15345 F:      drivers/tty/vcc.c
15346
15347 SPARSE CHECKER
15348 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15349 L:      linux-sparse@vger.kernel.org
15350 W:      https://sparse.wiki.kernel.org/
15351 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15352 S:      Maintained
15353 F:      include/linux/compiler.h
15354
15355 SPEAR CLOCK FRAMEWORK SUPPORT
15356 M:      Viresh Kumar <vireshk@kernel.org>
15357 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15358 W:      http://www.st.com/spear
15359 S:      Maintained
15360 F:      drivers/clk/spear/
15361
15362 SPEAR PLATFORM SUPPORT
15363 M:      Viresh Kumar <vireshk@kernel.org>
15364 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
15365 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15366 W:      http://www.st.com/spear
15367 S:      Maintained
15368 F:      arch/arm/boot/dts/spear*
15369 F:      arch/arm/mach-spear/
15370
15371 SPI NOR SUBSYSTEM
15372 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
15373 L:      linux-mtd@lists.infradead.org
15374 W:      http://www.linux-mtd.infradead.org/
15375 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15377 S:      Maintained
15378 F:      drivers/mtd/spi-nor/
15379 F:      include/linux/mtd/spi-nor.h
15380
15381 SPI SUBSYSTEM
15382 M:      Mark Brown <broonie@kernel.org>
15383 L:      linux-spi@vger.kernel.org
15384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15385 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15386 S:      Maintained
15387 F:      Documentation/devicetree/bindings/spi/
15388 F:      Documentation/spi/
15389 F:      drivers/spi/
15390 F:      include/linux/spi/
15391 F:      include/uapi/linux/spi/
15392 F:      tools/spi/
15393
15394 SPIDERNET NETWORK DRIVER for CELL
15395 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
15396 L:      netdev@vger.kernel.org
15397 S:      Supported
15398 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15399 F:      drivers/net/ethernet/toshiba/spider_net*
15400
15401 SPMI SUBSYSTEM
15402 R:      Stephen Boyd <sboyd@kernel.org>
15403 L:      linux-arm-msm@vger.kernel.org
15404 F:      Documentation/devicetree/bindings/spmi/
15405 F:      drivers/spmi/
15406 F:      include/dt-bindings/spmi/spmi.h
15407 F:      include/linux/spmi.h
15408 F:      include/trace/events/spmi.h
15409
15410 SPU FILE SYSTEM
15411 M:      Jeremy Kerr <jk@ozlabs.org>
15412 L:      linuxppc-dev@lists.ozlabs.org
15413 W:      http://www.ibm.com/developerworks/power/cell/
15414 S:      Supported
15415 F:      Documentation/filesystems/spufs.txt
15416 F:      arch/powerpc/platforms/cell/spufs/
15417
15418 SQUASHFS FILE SYSTEM
15419 M:      Phillip Lougher <phillip@squashfs.org.uk>
15420 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
15421 W:      http://squashfs.org.uk
15422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15423 S:      Maintained
15424 F:      Documentation/filesystems/squashfs.txt
15425 F:      fs/squashfs/
15426
15427 SRM (Alpha) environment access
15428 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
15429 S:      Maintained
15430 F:      arch/alpha/kernel/srm_env.c
15431
15432 ST LSM6DSx IMU IIO DRIVER
15433 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
15434 L:      linux-iio@vger.kernel.org
15435 W:      http://www.st.com/
15436 S:      Maintained
15437 F:      drivers/iio/imu/st_lsm6dsx/
15438 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15439
15440 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15441 M:      Mickael Guene <mickael.guene@st.com>
15442 L:      linux-media@vger.kernel.org
15443 T:      git git://linuxtv.org/media_tree.git
15444 S:      Maintained
15445 F:      drivers/media/i2c/st-mipid02.c
15446 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15447
15448 ST STM32 I2C/SMBUS DRIVER
15449 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
15450 L:      linux-i2c@vger.kernel.org
15451 S:      Maintained
15452 F:      drivers/i2c/busses/i2c-stm32*
15453
15454 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15455 M:      Song Qiang <songqiang1304521@gmail.com>
15456 L:      linux-iio@vger.kernel.org
15457 S:      Maintained
15458 F:      drivers/iio/proximity/vl53l0x-i2c.c
15459 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15460
15461 STABLE BRANCH
15462 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15463 M:      Sasha Levin <sashal@kernel.org>
15464 L:      stable@vger.kernel.org
15465 S:      Supported
15466 F:      Documentation/process/stable-kernel-rules.rst
15467
15468 STAGING - COMEDI
15469 M:      Ian Abbott <abbotti@mev.co.uk>
15470 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
15471 S:      Odd Fixes
15472 F:      drivers/staging/comedi/
15473
15474 STAGING - FIELDBUS SUBSYSTEM
15475 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15476 S:      Maintained
15477 F:      drivers/staging/fieldbus/*
15478 F:      drivers/staging/fieldbus/Documentation/
15479
15480 STAGING - HMS ANYBUS-S BUS
15481 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15482 S:      Maintained
15483 F:      drivers/staging/fieldbus/anybuss/
15484
15485 STAGING - INDUSTRIAL IO
15486 M:      Jonathan Cameron <jic23@kernel.org>
15487 L:      linux-iio@vger.kernel.org
15488 S:      Odd Fixes
15489 F:      Documentation/devicetree/bindings/staging/iio/
15490 F:      drivers/staging/iio/
15491
15492 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15493 M:      Marc Dietrich <marvin24@gmx.de>
15494 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
15495 L:      linux-tegra@vger.kernel.org
15496 S:      Maintained
15497 F:      drivers/staging/nvec/
15498
15499 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15500 M:      Jens Frederich <jfrederich@gmail.com>
15501 M:      Daniel Drake <dsd@laptop.org>
15502 M:      Jon Nettleton <jon.nettleton@gmail.com>
15503 W:      http://wiki.laptop.org/go/DCON
15504 S:      Maintained
15505 F:      drivers/staging/olpc_dcon/
15506
15507 STAGING - REALTEK RTL8712U DRIVERS
15508 M:      Larry Finger <Larry.Finger@lwfinger.net>
15509 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
15510 S:      Odd Fixes
15511 F:      drivers/staging/rtl8712/
15512
15513 STAGING - REALTEK RTL8188EU DRIVERS
15514 M:      Larry Finger <Larry.Finger@lwfinger.net>
15515 S:      Odd Fixes
15516 F:      drivers/staging/rtl8188eu/
15517
15518 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15519 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15520 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15521 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15522 L:      linux-fbdev@vger.kernel.org
15523 S:      Maintained
15524 F:      drivers/staging/sm750fb/
15525
15526 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
15527 M:      William Hubbs <w.d.hubbs@gmail.com>
15528 M:      Chris Brannon <chris@the-brannons.com>
15529 M:      Kirk Reiser <kirk@reisers.ca>
15530 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
15531 L:      speakup@linux-speakup.org
15532 W:      http://www.linux-speakup.org/
15533 S:      Odd Fixes
15534 F:      drivers/staging/speakup/
15535
15536 STAGING - VIA VT665X DRIVERS
15537 M:      Forest Bond <forest@alittletooquiet.net>
15538 S:      Odd Fixes
15539 F:      drivers/staging/vt665?/
15540
15541 STAGING - WILC1000 WIFI DRIVER
15542 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
15543 M:      Ajay Singh <ajay.kathat@microchip.com>
15544 L:      linux-wireless@vger.kernel.org
15545 S:      Supported
15546 F:      drivers/staging/wilc1000/
15547
15548 STAGING SUBSYSTEM
15549 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
15551 L:      devel@driverdev.osuosl.org
15552 S:      Supported
15553 F:      drivers/staging/
15554
15555 STARFIRE/DURALAN NETWORK DRIVER
15556 M:      Ion Badulescu <ionut@badula.org>
15557 S:      Odd Fixes
15558 F:      drivers/net/ethernet/adaptec/starfire*
15559
15560 STEC S1220 SKD DRIVER
15561 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
15562 L:      linux-block@vger.kernel.org
15563 S:      Maintained
15564 F:      drivers/block/skd*[ch]
15565
15566 STI AUDIO (ASoC) DRIVERS
15567 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15568 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15569 S:      Maintained
15570 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
15571 F:      sound/soc/sti/
15572
15573 STI CEC DRIVER
15574 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
15575 S:      Maintained
15576 F:      drivers/media/platform/sti/cec/
15577 F:      Documentation/devicetree/bindings/media/stih-cec.txt
15578
15579 STK1160 USB VIDEO CAPTURE DRIVER
15580 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
15581 L:      linux-media@vger.kernel.org
15582 T:      git git://linuxtv.org/media_tree.git
15583 S:      Maintained
15584 F:      drivers/media/usb/stk1160/
15585
15586 STM32 AUDIO (ASoC) DRIVERS
15587 M:      Olivier Moysan <olivier.moysan@st.com>
15588 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15589 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15590 S:      Maintained
15591 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
15592 F:      sound/soc/stm/
15593
15594 STM32 TIMER/LPTIMER DRIVERS
15595 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
15596 S:      Maintained
15597 F:      drivers/*/stm32-*timer*
15598 F:      drivers/pwm/pwm-stm32*
15599 F:      include/linux/*/stm32-*tim*
15600 F:      Documentation/ABI/testing/*timer-stm32
15601 F:      Documentation/devicetree/bindings/*/stm32-*timer*
15602 F:      Documentation/devicetree/bindings/pwm/pwm-stm32*
15603
15604 STMMAC ETHERNET DRIVER
15605 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
15606 M:      Alexandre Torgue <alexandre.torgue@st.com>
15607 M:      Jose Abreu <joabreu@synopsys.com>
15608 L:      netdev@vger.kernel.org
15609 W:      http://www.stlinux.com
15610 S:      Supported
15611 F:      drivers/net/ethernet/stmicro/stmmac/
15612
15613 SUN3/3X
15614 M:      Sam Creasey <sammy@sammy.net>
15615 W:      http://sammy.net/sun3/
15616 S:      Maintained
15617 F:      arch/m68k/kernel/*sun3*
15618 F:      arch/m68k/sun3*/
15619 F:      arch/m68k/include/asm/sun3*
15620 F:      drivers/net/ethernet/i825xx/sun3*
15621
15622 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
15623 M:      Hans de Goede <hdegoede@redhat.com>
15624 L:      linux-input@vger.kernel.org
15625 S:      Maintained
15626 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
15627 F:      drivers/input/keyboard/sun4i-lradc-keys.c
15628
15629 SUNDANCE NETWORK DRIVER
15630 M:      Denis Kirjanov <kda@linux-powerpc.org>
15631 L:      netdev@vger.kernel.org
15632 S:      Maintained
15633 F:      drivers/net/ethernet/dlink/sundance.c
15634
15635 SUPERH
15636 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
15637 M:      Rich Felker <dalias@libc.org>
15638 L:      linux-sh@vger.kernel.org
15639 Q:      http://patchwork.kernel.org/project/linux-sh/list/
15640 S:      Maintained
15641 F:      Documentation/sh/
15642 F:      arch/sh/
15643 F:      drivers/sh/
15644
15645 SUSPEND TO RAM
15646 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
15647 M:      Len Brown <len.brown@intel.com>
15648 M:      Pavel Machek <pavel@ucw.cz>
15649 L:      linux-pm@vger.kernel.org
15650 B:      https://bugzilla.kernel.org
15651 S:      Supported
15652 F:      Documentation/power/
15653 F:      arch/x86/kernel/acpi/
15654 F:      drivers/base/power/
15655 F:      kernel/power/
15656 F:      include/linux/suspend.h
15657 F:      include/linux/freezer.h
15658 F:      include/linux/pm.h
15659
15660 SVGA HANDLING
15661 M:      Martin Mares <mj@ucw.cz>
15662 L:      linux-video@atrey.karlin.mff.cuni.cz
15663 S:      Maintained
15664 F:      Documentation/admin-guide/svga.rst
15665 F:      arch/x86/boot/video*
15666
15667 SWIOTLB SUBSYSTEM
15668 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15669 L:      iommu@lists.linux-foundation.org
15670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
15671 S:      Supported
15672 F:      kernel/dma/swiotlb.c
15673 F:      arch/*/kernel/pci-swiotlb.c
15674 F:      include/linux/swiotlb.h
15675
15676 SWITCHDEV
15677 M:      Jiri Pirko <jiri@resnulli.us>
15678 M:      Ivan Vecera <ivecera@redhat.com>
15679 L:      netdev@vger.kernel.org
15680 S:      Supported
15681 F:      net/switchdev/
15682 F:      include/net/switchdev.h
15683
15684 SY8106A REGULATOR DRIVER
15685 M:      Icenowy Zheng <icenowy@aosc.io>
15686 S:      Maintained
15687 F:      drivers/regulator/sy8106a-regulator.c
15688 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
15689
15690 SYNC FILE FRAMEWORK
15691 M:      Sumit Semwal <sumit.semwal@linaro.org>
15692 R:      Gustavo Padovan <gustavo@padovan.org>
15693 S:      Maintained
15694 L:      linux-media@vger.kernel.org
15695 L:      dri-devel@lists.freedesktop.org
15696 F:      drivers/dma-buf/sync_*
15697 F:      drivers/dma-buf/dma-fence*
15698 F:      drivers/dma-buf/sw_sync.c
15699 F:      include/linux/sync_file.h
15700 F:      include/uapi/linux/sync_file.h
15701 F:      Documentation/driver-api/sync_file.rst
15702 T:      git git://anongit.freedesktop.org/drm/drm-misc
15703
15704 SYNOPSYS ARC ARCHITECTURE
15705 M:      Vineet Gupta <vgupta@synopsys.com>
15706 L:      linux-snps-arc@lists.infradead.org
15707 S:      Supported
15708 F:      arch/arc/
15709 F:      Documentation/devicetree/bindings/arc/*
15710 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
15711 F:      drivers/clocksource/arc_timer.c
15712 F:      drivers/tty/serial/arc_uart.c
15713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
15714
15715 SYNOPSYS ARC HSDK SDP pll clock driver
15716 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15717 S:      Supported
15718 F:      drivers/clk/clk-hsdk-pll.c
15719 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
15720
15721 SYNOPSYS ARC SDP clock driver
15722 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15723 S:      Supported
15724 F:      drivers/clk/axs10x/*
15725 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
15726
15727 SYNOPSYS ARC SDP platform support
15728 M:      Alexey Brodkin <abrodkin@synopsys.com>
15729 S:      Supported
15730 F:      arch/arc/plat-axs10x
15731 F:      arch/arc/boot/dts/ax*
15732 F:      Documentation/devicetree/bindings/arc/axs10*
15733
15734 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
15735 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15736 S:      Supported
15737 F:      drivers/reset/reset-axs10x.c
15738 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
15739
15740 SYNOPSYS CREG GPIO DRIVER
15741 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15742 S:      Maintained
15743 F:      drivers/gpio/gpio-creg-snps.c
15744 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
15745
15746 SYNOPSYS DESIGNWARE 8250 UART DRIVER
15747 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15748 S:      Maintained
15749 F:      drivers/tty/serial/8250/8250_dw.c
15750
15751 SYNOPSYS DESIGNWARE APB GPIO DRIVER
15752 M:      Hoan Tran <hoan@os.amperecomputing.com>
15753 L:      linux-gpio@vger.kernel.org
15754 S:      Maintained
15755 F:      drivers/gpio/gpio-dwapb.c
15756 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
15757
15758 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
15759 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15760 S:      Maintained
15761 F:      drivers/dma/dw-axi-dmac/
15762 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
15763
15764 SYNOPSYS DESIGNWARE DMAC DRIVER
15765 M:      Viresh Kumar <vireshk@kernel.org>
15766 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15767 S:      Maintained
15768 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
15769 F:      drivers/dma/dw/
15770 F:      include/dt-bindings/dma/dw-dmac.h
15771 F:      include/linux/dma/dw.h
15772 F:      include/linux/platform_data/dma-dw.h
15773
15774 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
15775 M:      Jose Abreu <Jose.Abreu@synopsys.com>
15776 L:      netdev@vger.kernel.org
15777 S:      Supported
15778 F:      drivers/net/ethernet/synopsys/
15779
15780 SYNOPSYS DESIGNWARE I2C DRIVER
15781 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
15782 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15783 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
15784 L:      linux-i2c@vger.kernel.org
15785 S:      Maintained
15786 F:      drivers/i2c/busses/i2c-designware-*
15787 F:      include/linux/platform_data/i2c-designware.h
15788
15789 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
15790 M:      Jaehoon Chung <jh80.chung@samsung.com>
15791 L:      linux-mmc@vger.kernel.org
15792 S:      Maintained
15793 F:      drivers/mmc/host/dw_mmc*
15794
15795 SYNOPSYS HSDK RESET CONTROLLER DRIVER
15796 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15797 S:      Supported
15798 F:      drivers/reset/reset-hsdk.c
15799 F:      include/dt-bindings/reset/snps,hsdk-reset.h
15800 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
15801
15802 SYSTEM CONFIGURATION (SYSCON)
15803 M:      Lee Jones <lee.jones@linaro.org>
15804 M:      Arnd Bergmann <arnd@arndb.de>
15805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
15806 S:      Supported
15807 F:      drivers/mfd/syscon.c
15808
15809 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
15810 M:      Sudeep Holla <sudeep.holla@arm.com>
15811 L:      linux-arm-kernel@lists.infradead.org
15812 S:      Maintained
15813 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
15814 F:      drivers/clk/clk-sc[mp]i.c
15815 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
15816 F:      drivers/firmware/arm_scpi.c
15817 F:      drivers/firmware/arm_scmi/
15818 F:      drivers/reset/reset-scmi.c
15819 F:      include/linux/sc[mp]i_protocol.h
15820
15821 SYSTEM RESET/SHUTDOWN DRIVERS
15822 M:      Sebastian Reichel <sre@kernel.org>
15823 L:      linux-pm@vger.kernel.org
15824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15825 S:      Maintained
15826 F:      Documentation/devicetree/bindings/power/reset/
15827 F:      drivers/power/reset/
15828
15829 SYSTEM TRACE MODULE CLASS
15830 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15831 S:      Maintained
15832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
15833 F:      Documentation/trace/stm.rst
15834 F:      drivers/hwtracing/stm/
15835 F:      include/linux/stm.h
15836 F:      include/uapi/linux/stm.h
15837
15838 SYSV FILESYSTEM
15839 M:      Christoph Hellwig <hch@infradead.org>
15840 S:      Maintained
15841 F:      Documentation/filesystems/sysv-fs.txt
15842 F:      fs/sysv/
15843 F:      include/linux/sysv_fs.h
15844
15845 TASKSTATS STATISTICS INTERFACE
15846 M:      Balbir Singh <bsingharora@gmail.com>
15847 S:      Maintained
15848 F:      Documentation/accounting/taskstats*
15849 F:      include/linux/taskstats*
15850 F:      kernel/taskstats.c
15851
15852 TC subsystem
15853 M:      Jamal Hadi Salim <jhs@mojatatu.com>
15854 M:      Cong Wang <xiyou.wangcong@gmail.com>
15855 M:      Jiri Pirko <jiri@resnulli.us>
15856 L:      netdev@vger.kernel.org
15857 S:      Maintained
15858 F:      include/net/pkt_cls.h
15859 F:      include/net/pkt_sched.h
15860 F:      include/net/tc_act/
15861 F:      include/uapi/linux/pkt_cls.h
15862 F:      include/uapi/linux/pkt_sched.h
15863 F:      include/uapi/linux/tc_act/
15864 F:      include/uapi/linux/tc_ematch/
15865 F:      net/sched/
15866
15867 TC90522 MEDIA DRIVER
15868 M:      Akihiro Tsukada <tskd08@gmail.com>
15869 L:      linux-media@vger.kernel.org
15870 S:      Odd Fixes
15871 F:      drivers/media/dvb-frontends/tc90522*
15872
15873 TCP LOW PRIORITY MODULE
15874 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
15875 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
15876 W:      http://tcp-lp-mod.sourceforge.net/
15877 S:      Maintained
15878 F:      net/ipv4/tcp_lp.c
15879
15880 TDA10071 MEDIA DRIVER
15881 M:      Antti Palosaari <crope@iki.fi>
15882 L:      linux-media@vger.kernel.org
15883 W:      https://linuxtv.org
15884 W:      http://palosaari.fi/linux/
15885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15886 T:      git git://linuxtv.org/anttip/media_tree.git
15887 S:      Maintained
15888 F:      drivers/media/dvb-frontends/tda10071*
15889
15890 TDA18212 MEDIA DRIVER
15891 M:      Antti Palosaari <crope@iki.fi>
15892 L:      linux-media@vger.kernel.org
15893 W:      https://linuxtv.org
15894 W:      http://palosaari.fi/linux/
15895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15896 T:      git git://linuxtv.org/anttip/media_tree.git
15897 S:      Maintained
15898 F:      drivers/media/tuners/tda18212*
15899
15900 TDA18218 MEDIA DRIVER
15901 M:      Antti Palosaari <crope@iki.fi>
15902 L:      linux-media@vger.kernel.org
15903 W:      https://linuxtv.org
15904 W:      http://palosaari.fi/linux/
15905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15906 T:      git git://linuxtv.org/anttip/media_tree.git
15907 S:      Maintained
15908 F:      drivers/media/tuners/tda18218*
15909
15910 TDA18250 MEDIA DRIVER
15911 M:      Olli Salonen <olli.salonen@iki.fi>
15912 L:      linux-media@vger.kernel.org
15913 W:      https://linuxtv.org
15914 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15915 T:      git git://linuxtv.org/media_tree.git
15916 S:      Maintained
15917 F:      drivers/media/tuners/tda18250*
15918
15919 TDA18271 MEDIA DRIVER
15920 M:      Michael Krufky <mkrufky@linuxtv.org>
15921 L:      linux-media@vger.kernel.org
15922 W:      https://linuxtv.org
15923 W:      http://github.com/mkrufky
15924 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15925 T:      git git://linuxtv.org/mkrufky/tuners.git
15926 S:      Maintained
15927 F:      drivers/media/tuners/tda18271*
15928
15929 TDA1997x MEDIA DRIVER
15930 M:      Tim Harvey <tharvey@gateworks.com>
15931 L:      linux-media@vger.kernel.org
15932 W:      https://linuxtv.org
15933 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15934 S:      Maintained
15935 F:      drivers/media/i2c/tda1997x.*
15936
15937 TDA827x MEDIA DRIVER
15938 M:      Michael Krufky <mkrufky@linuxtv.org>
15939 L:      linux-media@vger.kernel.org
15940 W:      https://linuxtv.org
15941 W:      http://github.com/mkrufky
15942 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15943 T:      git git://linuxtv.org/mkrufky/tuners.git
15944 S:      Maintained
15945 F:      drivers/media/tuners/tda8290.*
15946
15947 TDA8290 MEDIA DRIVER
15948 M:      Michael Krufky <mkrufky@linuxtv.org>
15949 L:      linux-media@vger.kernel.org
15950 W:      https://linuxtv.org
15951 W:      http://github.com/mkrufky
15952 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15953 T:      git git://linuxtv.org/mkrufky/tuners.git
15954 S:      Maintained
15955 F:      drivers/media/tuners/tda8290.*
15956
15957 TDA9840 MEDIA DRIVER
15958 M:      Hans Verkuil <hverkuil@xs4all.nl>
15959 L:      linux-media@vger.kernel.org
15960 T:      git git://linuxtv.org/media_tree.git
15961 W:      https://linuxtv.org
15962 S:      Maintained
15963 F:      drivers/media/i2c/tda9840*
15964
15965 TEA5761 TUNER DRIVER
15966 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15967 L:      linux-media@vger.kernel.org
15968 W:      https://linuxtv.org
15969 T:      git git://linuxtv.org/media_tree.git
15970 S:      Odd fixes
15971 F:      drivers/media/tuners/tea5761.*
15972
15973 TEA5767 TUNER DRIVER
15974 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15975 L:      linux-media@vger.kernel.org
15976 W:      https://linuxtv.org
15977 T:      git git://linuxtv.org/media_tree.git
15978 S:      Maintained
15979 F:      drivers/media/tuners/tea5767.*
15980
15981 TEA6415C MEDIA DRIVER
15982 M:      Hans Verkuil <hverkuil@xs4all.nl>
15983 L:      linux-media@vger.kernel.org
15984 T:      git git://linuxtv.org/media_tree.git
15985 W:      https://linuxtv.org
15986 S:      Maintained
15987 F:      drivers/media/i2c/tea6415c*
15988
15989 TEA6420 MEDIA DRIVER
15990 M:      Hans Verkuil <hverkuil@xs4all.nl>
15991 L:      linux-media@vger.kernel.org
15992 T:      git git://linuxtv.org/media_tree.git
15993 W:      https://linuxtv.org
15994 S:      Maintained
15995 F:      drivers/media/i2c/tea6420*
15996
15997 TEAM DRIVER
15998 M:      Jiri Pirko <jiri@resnulli.us>
15999 L:      netdev@vger.kernel.org
16000 S:      Supported
16001 F:      drivers/net/team/
16002 F:      include/linux/if_team.h
16003 F:      include/uapi/linux/if_team.h
16004
16005 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16006 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16007 S:      Maintained
16008 F:      arch/x86/platform/ts5500/
16009
16010 TECHNOTREND USB IR RECEIVER
16011 M:      Sean Young <sean@mess.org>
16012 L:      linux-media@vger.kernel.org
16013 S:      Maintained
16014 F:      drivers/media/rc/ttusbir.c
16015
16016 TECHWELL TW9910 VIDEO DECODER
16017 L:      linux-media@vger.kernel.org
16018 S:      Orphan
16019 F:      drivers/media/i2c/tw9910.c
16020 F:      include/media/i2c/tw9910.h
16021
16022 TEE SUBSYSTEM
16023 M:      Jens Wiklander <jens.wiklander@linaro.org>
16024 L:      tee-dev@lists.linaro.org
16025 S:      Maintained
16026 F:      include/linux/tee_drv.h
16027 F:      include/uapi/linux/tee.h
16028 F:      drivers/tee/
16029 F:      Documentation/tee.txt
16030
16031 TEGRA ARCHITECTURE SUPPORT
16032 M:      Thierry Reding <thierry.reding@gmail.com>
16033 M:      Jonathan Hunter <jonathanh@nvidia.com>
16034 L:      linux-tegra@vger.kernel.org
16035 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16037 S:      Supported
16038 N:      [^a-z]tegra
16039
16040 TEGRA CLOCK DRIVER
16041 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16042 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16043 S:      Supported
16044 F:      drivers/clk/tegra/
16045
16046 TEGRA DMA DRIVERS
16047 M:      Laxman Dewangan <ldewangan@nvidia.com>
16048 M:      Jon Hunter <jonathanh@nvidia.com>
16049 S:      Supported
16050 F:      drivers/dma/tegra*
16051
16052 TEGRA I2C DRIVER
16053 M:      Laxman Dewangan <ldewangan@nvidia.com>
16054 R:      Dmitry Osipenko <digetx@gmail.com>
16055 S:      Supported
16056 F:      drivers/i2c/busses/i2c-tegra.c
16057
16058 TEGRA IOMMU DRIVERS
16059 M:      Thierry Reding <thierry.reding@gmail.com>
16060 L:      linux-tegra@vger.kernel.org
16061 S:      Supported
16062 F:      drivers/iommu/tegra*
16063
16064 TEGRA KBC DRIVER
16065 M:      Laxman Dewangan <ldewangan@nvidia.com>
16066 S:      Supported
16067 F:      drivers/input/keyboard/tegra-kbc.c
16068
16069 TEGRA NAND DRIVER
16070 M:      Stefan Agner <stefan@agner.ch>
16071 M:      Lucas Stach <dev@lynxeye.de>
16072 S:      Maintained
16073 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16074 F:      drivers/mtd/nand/raw/tegra_nand.c
16075
16076 TEGRA PWM DRIVER
16077 M:      Thierry Reding <thierry.reding@gmail.com>
16078 S:      Supported
16079 F:      drivers/pwm/pwm-tegra.c
16080
16081 TEGRA SERIAL DRIVER
16082 M:      Laxman Dewangan <ldewangan@nvidia.com>
16083 S:      Supported
16084 F:      drivers/tty/serial/serial-tegra.c
16085
16086 TEGRA SPI DRIVER
16087 M:      Laxman Dewangan <ldewangan@nvidia.com>
16088 S:      Supported
16089 F:      drivers/spi/spi-tegra*
16090
16091 TEGRA XUSB PADCTL DRIVER
16092 M:      JC Kuo <jckuo@nvidia.com>
16093 S:      Supported
16094 F:      drivers/phy/tegra/xusb*
16095
16096 TEHUTI ETHERNET DRIVER
16097 M:      Andy Gospodarek <andy@greyhouse.net>
16098 L:      netdev@vger.kernel.org
16099 S:      Supported
16100 F:      drivers/net/ethernet/tehuti/*
16101
16102 Telecom Clock Driver for MCPL0010
16103 M:      Mark Gross <mark.gross@intel.com>
16104 S:      Supported
16105 F:      drivers/char/tlclk.c
16106
16107 TENSILICA XTENSA PORT (xtensa)
16108 M:      Chris Zankel <chris@zankel.net>
16109 M:      Max Filippov <jcmvbkbc@gmail.com>
16110 L:      linux-xtensa@linux-xtensa.org
16111 T:      git git://github.com/czankel/xtensa-linux.git
16112 S:      Maintained
16113 F:      arch/xtensa/
16114 F:      drivers/irqchip/irq-xtensa-*
16115
16116 Texas Instruments' System Control Interface (TISCI) Protocol Driver
16117 M:      Nishanth Menon <nm@ti.com>
16118 M:      Tero Kristo <t-kristo@ti.com>
16119 M:      Santosh Shilimkar <ssantosh@kernel.org>
16120 L:      linux-arm-kernel@lists.infradead.org
16121 S:      Maintained
16122 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16123 F:      drivers/firmware/ti_sci*
16124 F:      include/linux/soc/ti/ti_sci_protocol.h
16125 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16126 F:      drivers/soc/ti/ti_sci_pm_domains.c
16127 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16128 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16129 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16130 F:      drivers/clk/keystone/sci-clk.c
16131 F:      drivers/reset/reset-ti-sci.c
16132 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16133 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16134 F:      drivers/irqchip/irq-ti-sci-intr.c
16135 F:      drivers/irqchip/irq-ti-sci-inta.c
16136 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16137 F:      drivers/soc/ti/ti_sci_inta_msi.c
16138
16139 Texas Instruments ASoC drivers
16140 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16141 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16142 S:      Maintained
16143 F:      sound/soc/ti/
16144
16145 Texas Instruments' DAC7612 DAC Driver
16146 M:      Ricardo Ribalda <ricardo@ribalda.com>
16147 L:      linux-iio@vger.kernel.org
16148 S:      Supported
16149 F:      drivers/iio/dac/ti-dac7612.c
16150 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16151
16152 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16153 M:      Hans Verkuil <hverkuil@xs4all.nl>
16154 L:      linux-media@vger.kernel.org
16155 T:      git git://linuxtv.org/media_tree.git
16156 W:      https://linuxtv.org
16157 S:      Maintained
16158 F:      drivers/media/radio/radio-raremono.c
16159
16160 THERMAL
16161 M:      Zhang Rui <rui.zhang@intel.com>
16162 M:      Eduardo Valentin <edubezval@gmail.com>
16163 R:      Daniel Lezcano <daniel.lezcano@linaro.org>
16164 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16165 L:      linux-pm@vger.kernel.org
16166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
16167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
16168 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16169 S:      Supported
16170 F:      drivers/thermal/
16171 F:      include/linux/thermal.h
16172 F:      include/uapi/linux/thermal.h
16173 F:      include/linux/cpu_cooling.h
16174 F:      Documentation/devicetree/bindings/thermal/
16175
16176 THERMAL/CPU_COOLING
16177 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16178 M:      Viresh Kumar <viresh.kumar@linaro.org>
16179 M:      Javi Merino <javi.merino@kernel.org>
16180 L:      linux-pm@vger.kernel.org
16181 S:      Supported
16182 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16183 F:      drivers/thermal/cpu_cooling.c
16184 F:      include/linux/cpu_cooling.h
16185
16186 THINKPAD ACPI EXTRAS DRIVER
16187 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16188 L:      ibm-acpi-devel@lists.sourceforge.net
16189 L:      platform-driver-x86@vger.kernel.org
16190 W:      http://ibm-acpi.sourceforge.net
16191 W:      http://thinkwiki.org/wiki/Ibm-acpi
16192 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16193 S:      Maintained
16194 F:      drivers/platform/x86/thinkpad_acpi.c
16195
16196 THUNDERBOLT DRIVER
16197 M:      Andreas Noever <andreas.noever@gmail.com>
16198 M:      Michael Jamet <michael.jamet@intel.com>
16199 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16200 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16202 S:      Maintained
16203 F:      Documentation/admin-guide/thunderbolt.rst
16204 F:      drivers/thunderbolt/
16205 F:      include/linux/thunderbolt.h
16206
16207 THUNDERBOLT NETWORK DRIVER
16208 M:      Michael Jamet <michael.jamet@intel.com>
16209 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16210 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16211 L:      netdev@vger.kernel.org
16212 S:      Maintained
16213 F:      drivers/net/thunderbolt.c
16214
16215 THUNDERX GPIO DRIVER
16216 M:      David Daney <david.daney@cavium.com>
16217 S:      Maintained
16218 F:      drivers/gpio/gpio-thunderx.c
16219
16220 TI AM437X VPFE DRIVER
16221 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16222 L:      linux-media@vger.kernel.org
16223 W:      https://linuxtv.org
16224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16225 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16226 S:      Maintained
16227 F:      drivers/media/platform/am437x/
16228
16229 TI BANDGAP AND THERMAL DRIVER
16230 M:      Eduardo Valentin <edubezval@gmail.com>
16231 M:      Keerthy <j-keerthy@ti.com>
16232 L:      linux-pm@vger.kernel.org
16233 L:      linux-omap@vger.kernel.org
16234 S:      Maintained
16235 F:      drivers/thermal/ti-soc-thermal/
16236
16237 TI BQ27XXX POWER SUPPLY DRIVER
16238 R:      Andrew F. Davis <afd@ti.com>
16239 F:      include/linux/power/bq27xxx_battery.h
16240 F:      drivers/power/supply/bq27xxx_battery.c
16241 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16242
16243 TI CDCE706 CLOCK DRIVER
16244 M:      Max Filippov <jcmvbkbc@gmail.com>
16245 S:      Maintained
16246 F:      drivers/clk/clk-cdce706.c
16247
16248 TI CLOCK DRIVER
16249 M:      Tero Kristo <t-kristo@ti.com>
16250 L:      linux-omap@vger.kernel.org
16251 S:      Maintained
16252 F:      drivers/clk/ti/
16253 F:      include/linux/clk/ti.h
16254
16255 TI DAVINCI MACHINE SUPPORT
16256 M:      Sekhar Nori <nsekhar@ti.com>
16257 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
16258 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16260 S:      Supported
16261 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16262 F:      arch/arm/mach-davinci/
16263 F:      drivers/i2c/busses/i2c-davinci.c
16264 F:      arch/arm/boot/dts/da850*
16265
16266 TI DAVINCI SERIES CLOCK DRIVER
16267 M:      David Lechner <david@lechnology.com>
16268 R:      Sekhar Nori <nsekhar@ti.com>
16269 S:      Maintained
16270 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16271 F:      drivers/clk/davinci/
16272
16273 TI DAVINCI SERIES GPIO DRIVER
16274 M:      Keerthy <j-keerthy@ti.com>
16275 L:      linux-gpio@vger.kernel.org
16276 S:      Maintained
16277 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16278 F:      drivers/gpio/gpio-davinci.c
16279
16280 TI DAVINCI SERIES MEDIA DRIVER
16281 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16282 L:      linux-media@vger.kernel.org
16283 W:      https://linuxtv.org
16284 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16285 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16286 S:      Maintained
16287 F:      drivers/media/platform/davinci/
16288 F:      include/media/davinci/
16289
16290 TI ETHERNET SWITCH DRIVER (CPSW)
16291 R:      Grygorii Strashko <grygorii.strashko@ti.com>
16292 L:      linux-omap@vger.kernel.org
16293 L:      netdev@vger.kernel.org
16294 S:      Maintained
16295 F:      drivers/net/ethernet/ti/cpsw*
16296 F:      drivers/net/ethernet/ti/davinci*
16297
16298 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16299 M:      Alex Dubov <oakad@yahoo.com>
16300 S:      Maintained
16301 W:      http://tifmxx.berlios.de/
16302 F:      drivers/memstick/host/tifm_ms.c
16303 F:      drivers/misc/tifm*
16304 F:      drivers/mmc/host/tifm_sd.c
16305 F:      include/linux/tifm.h
16306
16307 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16308 M:      Santosh Shilimkar <ssantosh@kernel.org>
16309 L:      linux-kernel@vger.kernel.org
16310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16311 S:      Maintained
16312 F:      drivers/soc/ti/*
16313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16314
16315 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16316 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
16317 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
16318 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16319 S:      Maintained
16320 F:      sound/soc/codecs/lm49453*
16321 F:      sound/soc/codecs/isabelle*
16322
16323 TI LP855x BACKLIGHT DRIVER
16324 M:      Milo Kim <milo.kim@ti.com>
16325 S:      Maintained
16326 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16327 F:      drivers/video/backlight/lp855x_bl.c
16328 F:      include/linux/platform_data/lp855x.h
16329
16330 TI LP8727 CHARGER DRIVER
16331 M:      Milo Kim <milo.kim@ti.com>
16332 S:      Maintained
16333 F:      drivers/power/supply/lp8727_charger.c
16334 F:      include/linux/platform_data/lp8727.h
16335
16336 TI LP8788 MFD DRIVER
16337 M:      Milo Kim <milo.kim@ti.com>
16338 S:      Maintained
16339 F:      drivers/iio/adc/lp8788_adc.c
16340 F:      drivers/leds/leds-lp8788.c
16341 F:      drivers/mfd/lp8788*.c
16342 F:      drivers/power/supply/lp8788-charger.c
16343 F:      drivers/regulator/lp8788-*.c
16344 F:      include/linux/mfd/lp8788*.h
16345
16346 TI NETCP ETHERNET DRIVER
16347 M:      Wingman Kwok <w-kwok2@ti.com>
16348 M:      Murali Karicheri <m-karicheri2@ti.com>
16349 L:      netdev@vger.kernel.org
16350 S:      Maintained
16351 F:      drivers/net/ethernet/ti/netcp*
16352
16353 TI PCM3060 ASoC CODEC DRIVER
16354 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
16355 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16356 S:      Maintained
16357 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16358 F:      sound/soc/codecs/pcm3060*
16359
16360 TI TAS571X FAMILY ASoC CODEC DRIVER
16361 M:      Kevin Cernekee <cernekee@chromium.org>
16362 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16363 S:      Odd Fixes
16364 F:      sound/soc/codecs/tas571x*
16365
16366 TI TRF7970A NFC DRIVER
16367 M:      Mark Greer <mgreer@animalcreek.com>
16368 L:      linux-wireless@vger.kernel.org
16369 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
16370 S:      Supported
16371 F:      drivers/nfc/trf7970a.c
16372 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16373
16374 TI TWL4030 SERIES SOC CODEC DRIVER
16375 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16376 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16377 S:      Maintained
16378 F:      sound/soc/codecs/twl4030*
16379
16380 TI VPE/CAL DRIVERS
16381 M:      Benoit Parrot <bparrot@ti.com>
16382 L:      linux-media@vger.kernel.org
16383 W:      http://linuxtv.org/
16384 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16385 S:      Maintained
16386 F:      drivers/media/platform/ti-vpe/
16387
16388 TI WILINK WIRELESS DRIVERS
16389 L:      linux-wireless@vger.kernel.org
16390 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16391 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16393 S:      Orphan
16394 F:      drivers/net/wireless/ti/
16395 F:      include/linux/wl12xx.h
16396
16397 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16398 M:      John Stultz <john.stultz@linaro.org>
16399 M:      Thomas Gleixner <tglx@linutronix.de>
16400 R:      Stephen Boyd <sboyd@kernel.org>
16401 L:      linux-kernel@vger.kernel.org
16402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16403 S:      Supported
16404 F:      include/linux/clocksource.h
16405 F:      include/linux/time.h
16406 F:      include/linux/timex.h
16407 F:      include/uapi/linux/time.h
16408 F:      include/uapi/linux/timex.h
16409 F:      kernel/time/clocksource.c
16410 F:      kernel/time/time*.c
16411 F:      kernel/time/alarmtimer.c
16412 F:      kernel/time/ntp.c
16413 F:      tools/testing/selftests/timers/
16414
16415 TIPC NETWORK LAYER
16416 M:      Jon Maloy <jon.maloy@ericsson.com>
16417 M:      Ying Xue <ying.xue@windriver.com>
16418 L:      netdev@vger.kernel.org (core kernel code)
16419 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
16420 W:      http://tipc.sourceforge.net/
16421 S:      Maintained
16422 F:      include/uapi/linux/tipc*.h
16423 F:      net/tipc/
16424
16425 TLAN NETWORK DRIVER
16426 M:      Samuel Chessman <chessman@tux.org>
16427 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
16428 W:      http://sourceforge.net/projects/tlan/
16429 S:      Maintained
16430 F:      Documentation/networking/device_drivers/ti/tlan.txt
16431 F:      drivers/net/ethernet/ti/tlan.*
16432
16433 TM6000 VIDEO4LINUX DRIVER
16434 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16435 L:      linux-media@vger.kernel.org
16436 W:      https://linuxtv.org
16437 T:      git git://linuxtv.org/media_tree.git
16438 S:      Odd fixes
16439 F:      drivers/media/usb/tm6000/
16440 F:      Documentation/media/v4l-drivers/tm6000*
16441
16442 TMIO/SDHI MMC DRIVER
16443 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16444 L:      linux-mmc@vger.kernel.org
16445 S:      Supported
16446 F:      drivers/mmc/host/tmio_mmc*
16447 F:      drivers/mmc/host/renesas_sdhi*
16448 F:      include/linux/mfd/tmio.h
16449
16450 TMP401 HARDWARE MONITOR DRIVER
16451 M:      Guenter Roeck <linux@roeck-us.net>
16452 L:      linux-hwmon@vger.kernel.org
16453 S:      Maintained
16454 F:      Documentation/hwmon/tmp401.rst
16455 F:      drivers/hwmon/tmp401.c
16456
16457 TMPFS (SHMEM FILESYSTEM)
16458 M:      Hugh Dickins <hughd@google.com>
16459 L:      linux-mm@kvack.org
16460 S:      Maintained
16461 F:      include/linux/shmem_fs.h
16462 F:      mm/shmem.c
16463
16464 TOMOYO SECURITY MODULE
16465 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
16466 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
16467 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
16468 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
16469 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
16470 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
16471 W:      https://tomoyo.osdn.jp/
16472 S:      Maintained
16473 F:      security/tomoyo/
16474
16475 TOPSTAR LAPTOP EXTRAS DRIVER
16476 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16477 L:      platform-driver-x86@vger.kernel.org
16478 S:      Maintained
16479 F:      drivers/platform/x86/topstar-laptop.c
16480
16481 TORTURE-TEST MODULES
16482 M:      Davidlohr Bueso <dave@stgolabs.net>
16483 M:      "Paul E. McKenney" <paulmck@kernel.org>
16484 M:      Josh Triplett <josh@joshtriplett.org>
16485 L:      linux-kernel@vger.kernel.org
16486 S:      Supported
16487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16488 F:      Documentation/RCU/torture.txt
16489 F:      kernel/torture.c
16490 F:      kernel/rcu/rcutorture.c
16491 F:      kernel/rcu/rcuperf.c
16492 F:      kernel/locking/locktorture.c
16493
16494 TOSHIBA ACPI EXTRAS DRIVER
16495 M:      Azael Avalos <coproscefalo@gmail.com>
16496 L:      platform-driver-x86@vger.kernel.org
16497 S:      Maintained
16498 F:      drivers/platform/x86/toshiba_acpi.c
16499
16500 TOSHIBA BLUETOOTH DRIVER
16501 M:      Azael Avalos <coproscefalo@gmail.com>
16502 L:      platform-driver-x86@vger.kernel.org
16503 S:      Maintained
16504 F:      drivers/platform/x86/toshiba_bluetooth.c
16505
16506 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
16507 M:      Azael Avalos <coproscefalo@gmail.com>
16508 L:      platform-driver-x86@vger.kernel.org
16509 S:      Maintained
16510 F:      drivers/platform/x86/toshiba_haps.c
16511
16512 TOSHIBA SMM DRIVER
16513 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
16514 W:      http://www.buzzard.org.uk/toshiba/
16515 S:      Maintained
16516 F:      drivers/char/toshiba.c
16517 F:      include/linux/toshiba.h
16518 F:      include/uapi/linux/toshiba.h
16519
16520 TOSHIBA TC358743 DRIVER
16521 M:      Mats Randgaard <matrandg@cisco.com>
16522 L:      linux-media@vger.kernel.org
16523 S:      Maintained
16524 F:      drivers/media/i2c/tc358743*
16525 F:      include/media/i2c/tc358743.h
16526
16527 TOSHIBA WMI HOTKEYS DRIVER
16528 M:      Azael Avalos <coproscefalo@gmail.com>
16529 L:      platform-driver-x86@vger.kernel.org
16530 S:      Maintained
16531 F:      drivers/platform/x86/toshiba-wmi.c
16532
16533 TPM DEVICE DRIVER
16534 M:      Peter Huewe <peterhuewe@gmx.de>
16535 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
16536 R:      Jason Gunthorpe <jgg@ziepe.ca>
16537 L:      linux-integrity@vger.kernel.org
16538 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
16539 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
16540 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
16541 S:      Maintained
16542 F:      drivers/char/tpm/
16543
16544 TRACING
16545 M:      Steven Rostedt <rostedt@goodmis.org>
16546 M:      Ingo Molnar <mingo@redhat.com>
16547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16548 S:      Maintained
16549 F:      Documentation/trace/ftrace.rst
16550 F:      arch/*/*/*/ftrace.h
16551 F:      arch/*/kernel/ftrace.c
16552 F:      include/*/ftrace.h
16553 F:      include/linux/trace*.h
16554 F:      include/trace/
16555 F:      kernel/trace/
16556 F:      tools/testing/selftests/ftrace/
16557
16558 TRACING MMIO ACCESSES (MMIOTRACE)
16559 M:      Steven Rostedt <rostedt@goodmis.org>
16560 M:      Ingo Molnar <mingo@kernel.org>
16561 R:      Karol Herbst <karolherbst@gmail.com>
16562 R:      Pekka Paalanen <ppaalanen@gmail.com>
16563 S:      Maintained
16564 L:      linux-kernel@vger.kernel.org
16565 L:      nouveau@lists.freedesktop.org
16566 F:      kernel/trace/trace_mmiotrace.c
16567 F:      include/linux/mmiotrace.h
16568 F:      arch/x86/mm/kmmio.c
16569 F:      arch/x86/mm/mmio-mod.c
16570 F:      arch/x86/mm/testmmiotrace.c
16571
16572 TRIVIAL PATCHES
16573 M:      Jiri Kosina <trivial@kernel.org>
16574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
16575 S:      Maintained
16576 K:      ^Subject:.*(?i)trivial
16577
16578 TEMPO SEMICONDUCTOR DRIVERS
16579 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16580 S:      Maintained
16581 F:      sound/soc/codecs/tscs*.c
16582 F:      sound/soc/codecs/tscs*.h
16583 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16584
16585 TTY LAYER
16586 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16587 M:      Jiri Slaby <jslaby@suse.com>
16588 S:      Supported
16589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
16590 F:      Documentation/driver-api/serial/
16591 F:      drivers/tty/
16592 F:      drivers/tty/serial/serial_core.c
16593 F:      include/linux/serial_core.h
16594 F:      include/linux/serial.h
16595 F:      include/linux/tty.h
16596 F:      include/uapi/linux/serial_core.h
16597 F:      include/uapi/linux/serial.h
16598 F:      include/uapi/linux/tty.h
16599
16600 TUA9001 MEDIA DRIVER
16601 M:      Antti Palosaari <crope@iki.fi>
16602 L:      linux-media@vger.kernel.org
16603 W:      https://linuxtv.org
16604 W:      http://palosaari.fi/linux/
16605 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16606 T:      git git://linuxtv.org/anttip/media_tree.git
16607 S:      Maintained
16608 F:      drivers/media/tuners/tua9001*
16609
16610 TULIP NETWORK DRIVERS
16611 L:      netdev@vger.kernel.org
16612 L:      linux-parisc@vger.kernel.org
16613 S:      Orphan
16614 F:      drivers/net/ethernet/dec/tulip/
16615
16616 TUN/TAP driver
16617 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
16618 W:      http://vtun.sourceforge.net/tun
16619 S:      Maintained
16620 F:      Documentation/networking/tuntap.txt
16621 F:      arch/um/os-Linux/drivers/
16622
16623 TURBOCHANNEL SUBSYSTEM
16624 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
16625 M:      Ralf Baechle <ralf@linux-mips.org>
16626 L:      linux-mips@vger.kernel.org
16627 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
16628 S:      Maintained
16629 F:      drivers/tc/
16630 F:      include/linux/tc.h
16631
16632 TURBOSTAT UTILITY
16633 M:      "Len Brown" <lenb@kernel.org>
16634 L:      linux-pm@vger.kernel.org
16635 B:      https://bugzilla.kernel.org
16636 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
16638 S:      Supported
16639 F:      tools/power/x86/turbostat/
16640
16641 TW5864 VIDEO4LINUX DRIVER
16642 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16643 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16644 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
16645 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16646 L:      linux-media@vger.kernel.org
16647 S:      Supported
16648 F:      drivers/media/pci/tw5864/
16649
16650 TW68 VIDEO4LINUX DRIVER
16651 M:      Hans Verkuil <hverkuil@xs4all.nl>
16652 L:      linux-media@vger.kernel.org
16653 T:      git git://linuxtv.org/media_tree.git
16654 W:      https://linuxtv.org
16655 S:      Odd Fixes
16656 F:      drivers/media/pci/tw68/
16657
16658 TW686X VIDEO4LINUX DRIVER
16659 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16660 L:      linux-media@vger.kernel.org
16661 T:      git git://linuxtv.org/media_tree.git
16662 W:      http://linuxtv.org
16663 S:      Maintained
16664 F:      drivers/media/pci/tw686x/
16665
16666 UBI FILE SYSTEM (UBIFS)
16667 M:      Richard Weinberger <richard@nod.at>
16668 L:      linux-mtd@lists.infradead.org
16669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
16670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
16671 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
16672 S:      Supported
16673 F:      Documentation/filesystems/ubifs.txt
16674 F:      fs/ubifs/
16675
16676 UCLINUX (M68KNOMMU AND COLDFIRE)
16677 M:      Greg Ungerer <gerg@linux-m68k.org>
16678 W:      http://www.linux-m68k.org/
16679 W:      http://www.uclinux.org/
16680 L:      linux-m68k@lists.linux-m68k.org
16681 L:      uclinux-dev@uclinux.org  (subscribers-only)
16682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
16683 S:      Maintained
16684 F:      arch/m68k/coldfire/
16685 F:      arch/m68k/68*/
16686 F:      arch/m68k/*/*_no.*
16687 F:      arch/m68k/include/asm/*_no.*
16688
16689 UDF FILESYSTEM
16690 M:      Jan Kara <jack@suse.com>
16691 S:      Maintained
16692 F:      Documentation/filesystems/udf.txt
16693 F:      fs/udf/
16694
16695 UDRAW TABLET
16696 M:      Bastien Nocera <hadess@hadess.net>
16697 L:      linux-input@vger.kernel.org
16698 S:      Maintained
16699 F:      drivers/hid/hid-udraw-ps3.c
16700
16701 UFS FILESYSTEM
16702 M:      Evgeniy Dushistov <dushistov@mail.ru>
16703 S:      Maintained
16704 F:      Documentation/admin-guide/ufs.rst
16705 F:      fs/ufs/
16706
16707 UHID USERSPACE HID IO DRIVER:
16708 M:      David Herrmann <dh.herrmann@googlemail.com>
16709 L:      linux-input@vger.kernel.org
16710 S:      Maintained
16711 F:      drivers/hid/uhid.c
16712 F:      include/uapi/linux/uhid.h
16713
16714 ULPI BUS
16715 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16716 L:      linux-usb@vger.kernel.org
16717 S:      Maintained
16718 F:      drivers/usb/common/ulpi.c
16719 F:      include/linux/ulpi/
16720
16721 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
16722 L:      devel@driverdev.osuosl.org
16723 S:      Obsolete
16724 F:      drivers/staging/uwb/
16725
16726 UNICODE SUBSYSTEM:
16727 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
16728 L:      linux-fsdevel@vger.kernel.org
16729 S:      Supported
16730 F:      fs/unicode/
16731
16732 UNICORE32 ARCHITECTURE:
16733 M:      Guan Xuetao <gxt@pku.edu.cn>
16734 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
16735 S:      Maintained
16736 T:      git git://github.com/gxt/linux.git
16737 F:      arch/unicore32/
16738
16739 UNIFDEF
16740 M:      Tony Finch <dot@dotat.at>
16741 W:      http://dotat.at/prog/unifdef
16742 S:      Maintained
16743 F:      scripts/unifdef.c
16744
16745 UNIFORM CDROM DRIVER
16746 M:      Jens Axboe <axboe@kernel.dk>
16747 W:      http://www.kernel.dk
16748 S:      Maintained
16749 F:      Documentation/cdrom/
16750 F:      drivers/cdrom/cdrom.c
16751 F:      include/linux/cdrom.h
16752 F:      include/uapi/linux/cdrom.h
16753
16754 UNISYS S-PAR DRIVERS
16755 M:      David Kershner <david.kershner@unisys.com>
16756 L:      sparmaintainer@unisys.com (Unisys internal)
16757 S:      Supported
16758 F:      include/linux/visorbus.h
16759 F:      drivers/visorbus/
16760 F:      drivers/staging/unisys/
16761
16762 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
16763 R:      Alim Akhtar <alim.akhtar@samsung.com>
16764 R:      Avri Altman <avri.altman@wdc.com>
16765 R:      Pedro Sousa <pedrom.sousa@synopsys.com>
16766 L:      linux-scsi@vger.kernel.org
16767 S:      Supported
16768 F:      Documentation/scsi/ufs.txt
16769 F:      drivers/scsi/ufs/
16770
16771 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
16772 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
16773 L:      linux-scsi@vger.kernel.org
16774 S:      Supported
16775 F:      drivers/scsi/ufs/*dwc*
16776
16777 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
16778 M:      Stanley Chu <stanley.chu@mediatek.com>
16779 L:      linux-scsi@vger.kernel.org
16780 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16781 S:      Maintained
16782 F:      drivers/scsi/ufs/ufs-mediatek*
16783
16784 UNSORTED BLOCK IMAGES (UBI)
16785 M:      Richard Weinberger <richard@nod.at>
16786 W:      http://www.linux-mtd.infradead.org/
16787 L:      linux-mtd@lists.infradead.org
16788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
16789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
16790 S:      Supported
16791 F:      drivers/mtd/ubi/
16792 F:      include/linux/mtd/ubi.h
16793 F:      include/uapi/mtd/ubi-user.h
16794
16795 USB "USBNET" DRIVER FRAMEWORK
16796 M:      Oliver Neukum <oneukum@suse.com>
16797 L:      netdev@vger.kernel.org
16798 W:      http://www.linux-usb.org/usbnet
16799 S:      Maintained
16800 F:      drivers/net/usb/usbnet.c
16801 F:      include/linux/usb/usbnet.h
16802
16803 USB ACM DRIVER
16804 M:      Oliver Neukum <oneukum@suse.com>
16805 L:      linux-usb@vger.kernel.org
16806 S:      Maintained
16807 F:      Documentation/usb/acm.rst
16808 F:      drivers/usb/class/cdc-acm.*
16809
16810 USB AR5523 WIRELESS DRIVER
16811 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
16812 L:      linux-wireless@vger.kernel.org
16813 S:      Maintained
16814 F:      drivers/net/wireless/ath/ar5523/
16815
16816 USB ATTACHED SCSI
16817 M:      Oliver Neukum <oneukum@suse.com>
16818 L:      linux-usb@vger.kernel.org
16819 L:      linux-scsi@vger.kernel.org
16820 S:      Maintained
16821 F:      drivers/usb/storage/uas.c
16822
16823 USB CDC ETHERNET DRIVER
16824 M:      Oliver Neukum <oliver@neukum.org>
16825 L:      linux-usb@vger.kernel.org
16826 S:      Maintained
16827 F:      drivers/net/usb/cdc_*.c
16828 F:      include/uapi/linux/usb/cdc.h
16829
16830 USB CHAOSKEY DRIVER
16831 M:      Keith Packard <keithp@keithp.com>
16832 L:      linux-usb@vger.kernel.org
16833 S:      Maintained
16834 F:      drivers/usb/misc/chaoskey.c
16835
16836 USB CYPRESS C67X00 DRIVER
16837 M:      Peter Korsgaard <jacmet@sunsite.dk>
16838 L:      linux-usb@vger.kernel.org
16839 S:      Maintained
16840 F:      drivers/usb/c67x00/
16841
16842 USB DAVICOM DM9601 DRIVER
16843 M:      Peter Korsgaard <jacmet@sunsite.dk>
16844 L:      netdev@vger.kernel.org
16845 W:      http://www.linux-usb.org/usbnet
16846 S:      Maintained
16847 F:      drivers/net/usb/dm9601.c
16848
16849 USB EHCI DRIVER
16850 M:      Alan Stern <stern@rowland.harvard.edu>
16851 L:      linux-usb@vger.kernel.org
16852 S:      Maintained
16853 F:      Documentation/usb/ehci.rst
16854 F:      drivers/usb/host/ehci*
16855
16856 USB GADGET/PERIPHERAL SUBSYSTEM
16857 M:      Felipe Balbi <balbi@kernel.org>
16858 L:      linux-usb@vger.kernel.org
16859 W:      http://www.linux-usb.org/gadget
16860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16861 S:      Maintained
16862 F:      drivers/usb/gadget/
16863 F:      include/linux/usb/gadget*
16864
16865 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
16866 M:      Jiri Kosina <jikos@kernel.org>
16867 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
16868 L:      linux-usb@vger.kernel.org
16869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
16870 S:      Maintained
16871 F:      Documentation/hid/hiddev.rst
16872 F:      drivers/hid/usbhid/
16873
16874 USB INTEL XHCI ROLE MUX DRIVER
16875 M:      Hans de Goede <hdegoede@redhat.com>
16876 L:      linux-usb@vger.kernel.org
16877 S:      Maintained
16878 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
16879
16880 USB IP DRIVER FOR HISILICON KIRIN
16881 M:      Yu Chen <chenyu56@huawei.com>
16882 M:      Binghui Wang <wangbinghui@hisilicon.com>
16883 L:      linux-usb@vger.kernel.org
16884 S:      Maintained
16885 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
16886 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
16887
16888 USB ISP116X DRIVER
16889 M:      Olav Kongas <ok@artecdesign.ee>
16890 L:      linux-usb@vger.kernel.org
16891 S:      Maintained
16892 F:      drivers/usb/host/isp116x*
16893 F:      include/linux/usb/isp116x.h
16894
16895 USB LAN78XX ETHERNET DRIVER
16896 M:      Woojung Huh <woojung.huh@microchip.com>
16897 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
16898 L:      netdev@vger.kernel.org
16899 S:      Maintained
16900 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
16901 F:      drivers/net/usb/lan78xx.*
16902 F:      include/dt-bindings/net/microchip-lan78xx.h
16903
16904 USB MASS STORAGE DRIVER
16905 M:      Alan Stern <stern@rowland.harvard.edu>
16906 L:      linux-usb@vger.kernel.org
16907 L:      usb-storage@lists.one-eyed-alien.net
16908 S:      Maintained
16909 F:      drivers/usb/storage/
16910
16911 USB MIDI DRIVER
16912 M:      Clemens Ladisch <clemens@ladisch.de>
16913 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16915 S:      Maintained
16916 F:      sound/usb/midi.*
16917
16918 USB NETWORKING DRIVERS
16919 L:      linux-usb@vger.kernel.org
16920 S:      Odd Fixes
16921 F:      drivers/net/usb/
16922
16923 USB OHCI DRIVER
16924 M:      Alan Stern <stern@rowland.harvard.edu>
16925 L:      linux-usb@vger.kernel.org
16926 S:      Maintained
16927 F:      Documentation/usb/ohci.rst
16928 F:      drivers/usb/host/ohci*
16929
16930 USB OTG FSM (Finite State Machine)
16931 M:      Peter Chen <Peter.Chen@nxp.com>
16932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
16933 L:      linux-usb@vger.kernel.org
16934 S:      Maintained
16935 F:      drivers/usb/common/usb-otg-fsm.c
16936
16937 USB OVER IP DRIVER
16938 M:      Valentina Manea <valentina.manea.m@gmail.com>
16939 M:      Shuah Khan <shuah@kernel.org>
16940 M:      Shuah Khan <skhan@linuxfoundation.org>
16941 L:      linux-usb@vger.kernel.org
16942 S:      Maintained
16943 F:      Documentation/usb/usbip_protocol.rst
16944 F:      drivers/usb/usbip/
16945 F:      tools/usb/usbip/
16946 F:      tools/testing/selftests/drivers/usb/usbip/
16947
16948 USB PEGASUS DRIVER
16949 M:      Petko Manolov <petkan@nucleusys.com>
16950 L:      linux-usb@vger.kernel.org
16951 L:      netdev@vger.kernel.org
16952 T:      git git://github.com/petkan/pegasus.git
16953 W:      https://github.com/petkan/pegasus
16954 S:      Maintained
16955 F:      drivers/net/usb/pegasus.*
16956
16957 USB PHY LAYER
16958 M:      Felipe Balbi <balbi@kernel.org>
16959 L:      linux-usb@vger.kernel.org
16960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16961 S:      Maintained
16962 F:      drivers/usb/phy/
16963
16964 USB PRINTER DRIVER (usblp)
16965 M:      Pete Zaitcev <zaitcev@redhat.com>
16966 L:      linux-usb@vger.kernel.org
16967 S:      Supported
16968 F:      drivers/usb/class/usblp.c
16969
16970 USB QMI WWAN NETWORK DRIVER
16971 M:      Bjørn Mork <bjorn@mork.no>
16972 L:      netdev@vger.kernel.org
16973 S:      Maintained
16974 F:      Documentation/ABI/testing/sysfs-class-net-qmi
16975 F:      drivers/net/usb/qmi_wwan.c
16976
16977 USB RTL8150 DRIVER
16978 M:      Petko Manolov <petkan@nucleusys.com>
16979 L:      linux-usb@vger.kernel.org
16980 L:      netdev@vger.kernel.org
16981 T:      git git://github.com/petkan/rtl8150.git
16982 W:      https://github.com/petkan/rtl8150
16983 S:      Maintained
16984 F:      drivers/net/usb/rtl8150.c
16985
16986 USB SERIAL SUBSYSTEM
16987 M:      Johan Hovold <johan@kernel.org>
16988 L:      linux-usb@vger.kernel.org
16989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
16990 S:      Maintained
16991 F:      Documentation/usb/usb-serial.rst
16992 F:      drivers/usb/serial/
16993 F:      include/linux/usb/serial.h
16994
16995 USB SMSC75XX ETHERNET DRIVER
16996 M:      Steve Glendinning <steve.glendinning@shawell.net>
16997 L:      netdev@vger.kernel.org
16998 S:      Maintained
16999 F:      drivers/net/usb/smsc75xx.*
17000
17001 USB SMSC95XX ETHERNET DRIVER
17002 M:      Steve Glendinning <steve.glendinning@shawell.net>
17003 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17004 L:      netdev@vger.kernel.org
17005 S:      Maintained
17006 F:      drivers/net/usb/smsc95xx.*
17007
17008 USB SUBSYSTEM
17009 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17010 L:      linux-usb@vger.kernel.org
17011 W:      http://www.linux-usb.org
17012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17013 S:      Supported
17014 F:      Documentation/devicetree/bindings/usb/
17015 F:      Documentation/usb/
17016 F:      drivers/usb/
17017 F:      include/linux/usb.h
17018 F:      include/linux/usb/
17019
17020 USB TYPEC PI3USB30532 MUX DRIVER
17021 M:      Hans de Goede <hdegoede@redhat.com>
17022 L:      linux-usb@vger.kernel.org
17023 S:      Maintained
17024 F:      drivers/usb/typec/mux/pi3usb30532.c
17025
17026 USB TYPEC CLASS
17027 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17028 L:      linux-usb@vger.kernel.org
17029 S:      Maintained
17030 F:      Documentation/ABI/testing/sysfs-class-typec
17031 F:      Documentation/driver-api/usb/typec.rst
17032 F:      drivers/usb/typec/
17033 F:      include/linux/usb/typec.h
17034
17035 USB TYPEC BUS FOR ALTERNATE MODES
17036 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17037 L:      linux-usb@vger.kernel.org
17038 S:      Maintained
17039 F:      Documentation/ABI/testing/sysfs-bus-typec
17040 F:      Documentation/driver-api/usb/typec_bus.rst
17041 F:      drivers/usb/typec/altmodes/
17042 F:      include/linux/usb/typec_altmode.h
17043
17044 USB TYPEC PORT CONTROLLER DRIVERS
17045 M:      Guenter Roeck <linux@roeck-us.net>
17046 L:      linux-usb@vger.kernel.org
17047 S:      Maintained
17048 F:      drivers/usb/typec/tcpm/
17049
17050 USB UHCI DRIVER
17051 M:      Alan Stern <stern@rowland.harvard.edu>
17052 L:      linux-usb@vger.kernel.org
17053 S:      Maintained
17054 F:      drivers/usb/host/uhci*
17055
17056 USB VIDEO CLASS
17057 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17058 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17059 L:      linux-media@vger.kernel.org
17060 T:      git git://linuxtv.org/media_tree.git
17061 W:      http://www.ideasonboard.org/uvc/
17062 S:      Maintained
17063 F:      drivers/media/usb/uvc/
17064 F:      include/uapi/linux/uvcvideo.h
17065
17066 USB VISION DRIVER
17067 M:      Hans Verkuil <hverkuil@xs4all.nl>
17068 L:      linux-media@vger.kernel.org
17069 T:      git git://linuxtv.org/media_tree.git
17070 W:      https://linuxtv.org
17071 S:      Odd Fixes
17072 F:      drivers/media/usb/usbvision/
17073
17074 USB WEBCAM GADGET
17075 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17076 L:      linux-usb@vger.kernel.org
17077 S:      Maintained
17078 F:      drivers/usb/gadget/function/*uvc*
17079 F:      drivers/usb/gadget/legacy/webcam.c
17080 F:      include/uapi/linux/usb/g_uvc.h
17081
17082 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17083 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17084 L:      linux-wireless@vger.kernel.org
17085 S:      Maintained
17086 F:      drivers/net/wireless/rndis_wlan.c
17087
17088 USB XHCI DRIVER
17089 M:      Mathias Nyman <mathias.nyman@intel.com>
17090 L:      linux-usb@vger.kernel.org
17091 S:      Supported
17092 F:      drivers/usb/host/xhci*
17093 F:      drivers/usb/host/pci-quirks*
17094
17095 USB ZD1201 DRIVER
17096 L:      linux-wireless@vger.kernel.org
17097 W:      http://linux-lc100020.sourceforge.net
17098 S:      Orphan
17099 F:      drivers/net/wireless/zydas/zd1201.*
17100
17101 USB ZR364XX DRIVER
17102 M:      Antoine Jacquet <royale@zerezo.com>
17103 L:      linux-usb@vger.kernel.org
17104 L:      linux-media@vger.kernel.org
17105 T:      git git://linuxtv.org/media_tree.git
17106 W:      http://royale.zerezo.com/zr364xx/
17107 S:      Maintained
17108 F:      Documentation/media/v4l-drivers/zr364xx*
17109 F:      drivers/media/usb/zr364xx/
17110
17111 USER-MODE LINUX (UML)
17112 M:      Jeff Dike <jdike@addtoit.com>
17113 M:      Richard Weinberger <richard@nod.at>
17114 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17115 L:      linux-um@lists.infradead.org
17116 W:      http://user-mode-linux.sourceforge.net
17117 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17119 S:      Maintained
17120 F:      Documentation/virt/uml/
17121 F:      arch/um/
17122 F:      arch/x86/um/
17123 F:      fs/hostfs/
17124
17125 USERSPACE COPYIN/COPYOUT (UIOVEC)
17126 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17127 S:      Maintained
17128 F:      lib/iov_iter.c
17129 F:      include/linux/uio.h
17130
17131 USERSPACE DMA BUFFER DRIVER
17132 M:      Gerd Hoffmann <kraxel@redhat.com>
17133 S:      Maintained
17134 L:      dri-devel@lists.freedesktop.org
17135 F:      drivers/dma-buf/udmabuf.c
17136 F:      include/uapi/linux/udmabuf.h
17137 T:      git git://anongit.freedesktop.org/drm/drm-misc
17138
17139 USERSPACE I/O (UIO)
17140 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17141 S:      Maintained
17142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17143 F:      Documentation/driver-api/uio-howto.rst
17144 F:      drivers/uio/
17145 F:      include/linux/uio_driver.h
17146
17147 UTIL-LINUX PACKAGE
17148 M:      Karel Zak <kzak@redhat.com>
17149 L:      util-linux@vger.kernel.org
17150 W:      http://en.wikipedia.org/wiki/Util-linux
17151 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17152 S:      Maintained
17153
17154 UUID HELPERS
17155 M:      Christoph Hellwig <hch@lst.de>
17156 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17157 L:      linux-kernel@vger.kernel.org
17158 T:      git git://git.infradead.org/users/hch/uuid.git
17159 F:      lib/uuid.c
17160 F:      lib/test_uuid.c
17161 F:      include/linux/uuid.h
17162 F:      include/uapi/linux/uuid.h
17163 S:      Maintained
17164
17165 UVESAFB DRIVER
17166 M:      Michal Januszewski <spock@gentoo.org>
17167 L:      linux-fbdev@vger.kernel.org
17168 W:      https://github.com/mjanusz/v86d
17169 S:      Maintained
17170 F:      Documentation/fb/uvesafb.rst
17171 F:      drivers/video/fbdev/uvesafb.*
17172
17173 VF610 NAND DRIVER
17174 M:      Stefan Agner <stefan@agner.ch>
17175 L:      linux-mtd@lists.infradead.org
17176 S:      Supported
17177 F:      drivers/mtd/nand/raw/vf610_nfc.c
17178
17179 VFAT/FAT/MSDOS FILESYSTEM
17180 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17181 S:      Maintained
17182 F:      Documentation/filesystems/vfat.txt
17183 F:      fs/fat/
17184
17185 VFIO DRIVER
17186 M:      Alex Williamson <alex.williamson@redhat.com>
17187 R:      Cornelia Huck <cohuck@redhat.com>
17188 L:      kvm@vger.kernel.org
17189 T:      git git://github.com/awilliam/linux-vfio.git
17190 S:      Maintained
17191 F:      Documentation/driver-api/vfio.rst
17192 F:      drivers/vfio/
17193 F:      include/linux/vfio.h
17194 F:      include/uapi/linux/vfio.h
17195
17196 VFIO MEDIATED DEVICE DRIVERS
17197 M:      Kirti Wankhede <kwankhede@nvidia.com>
17198 L:      kvm@vger.kernel.org
17199 S:      Maintained
17200 F:      Documentation/driver-api/vfio-mediated-device.rst
17201 F:      drivers/vfio/mdev/
17202 F:      include/linux/mdev.h
17203 F:      samples/vfio-mdev/
17204
17205 VFIO PLATFORM DRIVER
17206 M:      Eric Auger <eric.auger@redhat.com>
17207 L:      kvm@vger.kernel.org
17208 S:      Maintained
17209 F:      drivers/vfio/platform/
17210
17211 VGA_SWITCHEROO
17212 R:      Lukas Wunner <lukas@wunner.de>
17213 S:      Maintained
17214 F:      Documentation/gpu/vga-switcheroo.rst
17215 F:      drivers/gpu/vga/vga_switcheroo.c
17216 F:      include/linux/vga_switcheroo.h
17217 T:      git git://anongit.freedesktop.org/drm/drm-misc
17218
17219 VIA RHINE NETWORK DRIVER
17220 S:      Orphan
17221 F:      drivers/net/ethernet/via/via-rhine.c
17222
17223 VIA SD/MMC CARD CONTROLLER DRIVER
17224 M:      Bruce Chang <brucechang@via.com.tw>
17225 M:      Harald Welte <HaraldWelte@viatech.com>
17226 S:      Maintained
17227 F:      drivers/mmc/host/via-sdmmc.c
17228
17229 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17230 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17231 L:      linux-fbdev@vger.kernel.org
17232 S:      Maintained
17233 F:      include/linux/via-core.h
17234 F:      include/linux/via-gpio.h
17235 F:      include/linux/via_i2c.h
17236 F:      drivers/video/fbdev/via/
17237
17238 VIA VELOCITY NETWORK DRIVER
17239 M:      Francois Romieu <romieu@fr.zoreil.com>
17240 L:      netdev@vger.kernel.org
17241 S:      Maintained
17242 F:      drivers/net/ethernet/via/via-velocity.*
17243
17244 VICODEC VIRTUAL CODEC DRIVER
17245 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
17246 L:      linux-media@vger.kernel.org
17247 T:      git git://linuxtv.org/media_tree.git
17248 W:      https://linuxtv.org
17249 S:      Maintained
17250 F:      drivers/media/platform/vicodec/*
17251
17252 VIDEO MULTIPLEXER DRIVER
17253 M:      Philipp Zabel <p.zabel@pengutronix.de>
17254 L:      linux-media@vger.kernel.org
17255 S:      Maintained
17256 F:      drivers/media/platform/video-mux.c
17257
17258 VIDEO I2C POLLING DRIVER
17259 M:      Matt Ranostay <matt.ranostay@konsulko.com>
17260 L:      linux-media@vger.kernel.org
17261 S:      Maintained
17262 F:      drivers/media/i2c/video-i2c.c
17263
17264 VIDEOBUF2 FRAMEWORK
17265 M:      Pawel Osciak <pawel@osciak.com>
17266 M:      Marek Szyprowski <m.szyprowski@samsung.com>
17267 M:      Kyungmin Park <kyungmin.park@samsung.com>
17268 R:      Tomasz Figa <tfiga@chromium.org>
17269 L:      linux-media@vger.kernel.org
17270 S:      Maintained
17271 F:      drivers/media/common/videobuf2/*
17272 F:      include/media/videobuf2-*
17273
17274 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17275 M:      Helen Koike <helen.koike@collabora.com>
17276 L:      linux-media@vger.kernel.org
17277 T:      git git://linuxtv.org/media_tree.git
17278 W:      https://linuxtv.org
17279 S:      Maintained
17280 F:      drivers/media/platform/vimc/*
17281
17282 VIRT LIB
17283 M:      Alex Williamson <alex.williamson@redhat.com>
17284 M:      Paolo Bonzini <pbonzini@redhat.com>
17285 L:      kvm@vger.kernel.org
17286 S:      Supported
17287 F:      virt/lib/
17288
17289 VIRTIO AND VHOST VSOCK DRIVER
17290 M:      Stefan Hajnoczi <stefanha@redhat.com>
17291 M:      Stefano Garzarella <sgarzare@redhat.com>
17292 L:      kvm@vger.kernel.org
17293 L:      virtualization@lists.linux-foundation.org
17294 L:      netdev@vger.kernel.org
17295 S:      Maintained
17296 F:      include/linux/virtio_vsock.h
17297 F:      include/uapi/linux/virtio_vsock.h
17298 F:      include/uapi/linux/vsockmon.h
17299 F:      include/uapi/linux/vm_sockets_diag.h
17300 F:      net/vmw_vsock/diag.c
17301 F:      net/vmw_vsock/af_vsock_tap.c
17302 F:      net/vmw_vsock/virtio_transport_common.c
17303 F:      net/vmw_vsock/virtio_transport.c
17304 F:      drivers/net/vsockmon.c
17305 F:      drivers/vhost/vsock.c
17306 F:      tools/testing/vsock/
17307
17308 VIRTIO CONSOLE DRIVER
17309 M:      Amit Shah <amit@kernel.org>
17310 L:      virtualization@lists.linux-foundation.org
17311 S:      Maintained
17312 F:      drivers/char/virtio_console.c
17313 F:      include/linux/virtio_console.h
17314 F:      include/uapi/linux/virtio_console.h
17315
17316 VIRTIO CORE AND NET DRIVERS
17317 M:      "Michael S. Tsirkin" <mst@redhat.com>
17318 M:      Jason Wang <jasowang@redhat.com>
17319 L:      virtualization@lists.linux-foundation.org
17320 S:      Maintained
17321 F:      Documentation/devicetree/bindings/virtio/
17322 F:      drivers/virtio/
17323 F:      tools/virtio/
17324 F:      drivers/net/virtio_net.c
17325 F:      drivers/block/virtio_blk.c
17326 F:      include/linux/virtio*.h
17327 F:      include/uapi/linux/virtio_*.h
17328 F:      drivers/crypto/virtio/
17329 F:      mm/balloon_compaction.c
17330
17331 VIRTIO BLOCK AND SCSI DRIVERS
17332 M:      "Michael S. Tsirkin" <mst@redhat.com>
17333 M:      Jason Wang <jasowang@redhat.com>
17334 R:      Paolo Bonzini <pbonzini@redhat.com>
17335 R:      Stefan Hajnoczi <stefanha@redhat.com>
17336 L:      virtualization@lists.linux-foundation.org
17337 S:      Maintained
17338 F:      drivers/block/virtio_blk.c
17339 F:      drivers/scsi/virtio_scsi.c
17340 F:      include/uapi/linux/virtio_blk.h
17341 F:      include/uapi/linux/virtio_scsi.h
17342 F:      drivers/vhost/scsi.c
17343
17344 VIRTIO CRYPTO DRIVER
17345 M:      Gonglei <arei.gonglei@huawei.com>
17346 L:      virtualization@lists.linux-foundation.org
17347 L:      linux-crypto@vger.kernel.org
17348 S:      Maintained
17349 F:      drivers/crypto/virtio/
17350 F:      include/uapi/linux/virtio_crypto.h
17351
17352 VIRTIO DRIVERS FOR S390
17353 M:      Cornelia Huck <cohuck@redhat.com>
17354 M:      Halil Pasic <pasic@linux.ibm.com>
17355 L:      linux-s390@vger.kernel.org
17356 L:      virtualization@lists.linux-foundation.org
17357 L:      kvm@vger.kernel.org
17358 S:      Supported
17359 F:      drivers/s390/virtio/
17360 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17361
17362 VIRTIO FILE SYSTEM
17363 M:      Vivek Goyal <vgoyal@redhat.com>
17364 M:      Stefan Hajnoczi <stefanha@redhat.com>
17365 M:      Miklos Szeredi <miklos@szeredi.hu>
17366 L:      virtualization@lists.linux-foundation.org
17367 L:      linux-fsdevel@vger.kernel.org
17368 W:      https://virtio-fs.gitlab.io/
17369 S:      Supported
17370 F:      fs/fuse/virtio_fs.c
17371 F:      include/uapi/linux/virtio_fs.h
17372 F:      Documentation/filesystems/virtiofs.rst
17373
17374 VIRTIO GPU DRIVER
17375 M:      David Airlie <airlied@linux.ie>
17376 M:      Gerd Hoffmann <kraxel@redhat.com>
17377 L:      dri-devel@lists.freedesktop.org
17378 L:      virtualization@lists.linux-foundation.org
17379 T:      git git://anongit.freedesktop.org/drm/drm-misc
17380 S:      Maintained
17381 F:      drivers/gpu/drm/virtio/
17382 F:      include/uapi/linux/virtio_gpu.h
17383
17384 VIRTIO HOST (VHOST)
17385 M:      "Michael S. Tsirkin" <mst@redhat.com>
17386 M:      Jason Wang <jasowang@redhat.com>
17387 L:      kvm@vger.kernel.org
17388 L:      virtualization@lists.linux-foundation.org
17389 L:      netdev@vger.kernel.org
17390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17391 S:      Maintained
17392 F:      drivers/vhost/
17393 F:      include/uapi/linux/vhost.h
17394
17395 VIRTIO INPUT DRIVER
17396 M:      Gerd Hoffmann <kraxel@redhat.com>
17397 S:      Maintained
17398 F:      drivers/virtio/virtio_input.c
17399 F:      include/uapi/linux/virtio_input.h
17400
17401 VIRTIO IOMMU DRIVER
17402 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
17403 L:      virtualization@lists.linux-foundation.org
17404 S:      Maintained
17405 F:      drivers/iommu/virtio-iommu.c
17406 F:      include/uapi/linux/virtio_iommu.h
17407
17408 VIRTUAL BOX GUEST DEVICE DRIVER
17409 M:      Hans de Goede <hdegoede@redhat.com>
17410 M:      Arnd Bergmann <arnd@arndb.de>
17411 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17412 S:      Maintained
17413 F:      include/linux/vbox_utils.h
17414 F:      include/uapi/linux/vbox*.h
17415 F:      drivers/virt/vboxguest/
17416
17417 VIRTUAL SERIO DEVICE DRIVER
17418 M:      Stephen Chandler Paul <thatslyude@gmail.com>
17419 S:      Maintained
17420 F:      drivers/input/serio/userio.c
17421 F:      include/uapi/linux/userio.h
17422
17423 VITESSE FELIX ETHERNET SWITCH DRIVER
17424 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
17425 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
17426 L:      netdev@vger.kernel.org
17427 S:      Maintained
17428 F:      drivers/net/dsa/ocelot/*
17429 F:      net/dsa/tag_ocelot.c
17430
17431 VIVID VIRTUAL VIDEO DRIVER
17432 M:      Hans Verkuil <hverkuil@xs4all.nl>
17433 L:      linux-media@vger.kernel.org
17434 T:      git git://linuxtv.org/media_tree.git
17435 W:      https://linuxtv.org
17436 S:      Maintained
17437 F:      drivers/media/platform/vivid/*
17438
17439 VLYNQ BUS
17440 M:      Florian Fainelli <f.fainelli@gmail.com>
17441 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
17442 S:      Maintained
17443 F:      drivers/vlynq/vlynq.c
17444 F:      include/linux/vlynq.h
17445
17446 VME SUBSYSTEM
17447 M:      Martyn Welch <martyn@welchs.me.uk>
17448 M:      Manohar Vanga <manohar.vanga@gmail.com>
17449 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17450 L:      devel@driverdev.osuosl.org
17451 S:      Maintained
17452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17453 F:      Documentation/driver-api/vme.rst
17454 F:      drivers/staging/vme/
17455 F:      drivers/vme/
17456 F:      include/linux/vme*
17457
17458 VMWARE BALLOON DRIVER
17459 M:      Nadav Amit <namit@vmware.com>
17460 M:      "VMware, Inc." <pv-drivers@vmware.com>
17461 L:      linux-kernel@vger.kernel.org
17462 S:      Maintained
17463 F:      drivers/misc/vmw_balloon.c
17464
17465 VMWARE HYPERVISOR INTERFACE
17466 M:      Thomas Hellstrom <thellstrom@vmware.com>
17467 M:      "VMware, Inc." <pv-drivers@vmware.com>
17468 L:      virtualization@lists.linux-foundation.org
17469 S:      Supported
17470 F:      arch/x86/kernel/cpu/vmware.c
17471 F:      arch/x86/include/asm/vmware.h
17472
17473 VMWARE PVRDMA DRIVER
17474 M:      Adit Ranadive <aditr@vmware.com>
17475 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17476 L:      linux-rdma@vger.kernel.org
17477 S:      Maintained
17478 F:      drivers/infiniband/hw/vmw_pvrdma/
17479
17480 VMware PVSCSI driver
17481 M:      Jim Gill <jgill@vmware.com>
17482 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17483 L:      linux-scsi@vger.kernel.org
17484 S:      Maintained
17485 F:      drivers/scsi/vmw_pvscsi.c
17486 F:      drivers/scsi/vmw_pvscsi.h
17487
17488 VMWARE VMMOUSE SUBDRIVER
17489 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
17490 M:      "VMware, Inc." <pv-drivers@vmware.com>
17491 L:      linux-input@vger.kernel.org
17492 S:      Maintained
17493 F:      drivers/input/mouse/vmmouse.c
17494 F:      drivers/input/mouse/vmmouse.h
17495
17496 VMWARE VMXNET3 ETHERNET DRIVER
17497 M:      Ronak Doshi <doshir@vmware.com>
17498 M:      "VMware, Inc." <pv-drivers@vmware.com>
17499 L:      netdev@vger.kernel.org
17500 S:      Maintained
17501 F:      drivers/net/vmxnet3/
17502
17503 VOCORE VOCORE2 BOARD
17504 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
17505 L:      linux-mips@vger.kernel.org
17506 S:      Maintained
17507 F:      arch/mips/boot/dts/ralink/vocore2.dts
17508
17509 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
17510 M:      Liam Girdwood <lgirdwood@gmail.com>
17511 M:      Mark Brown <broonie@kernel.org>
17512 L:      linux-kernel@vger.kernel.org
17513 W:      http://www.slimlogic.co.uk/?p=48
17514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
17515 S:      Supported
17516 F:      Documentation/devicetree/bindings/regulator/
17517 F:      Documentation/power/regulator/
17518 F:      drivers/regulator/
17519 F:      include/dt-bindings/regulator/
17520 F:      include/linux/regulator/
17521 K:      regulator_get_optional
17522
17523 VRF
17524 M:      David Ahern <dsahern@kernel.org>
17525 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
17526 L:      netdev@vger.kernel.org
17527 S:      Maintained
17528 F:      drivers/net/vrf.c
17529 F:      Documentation/networking/vrf.txt
17530
17531 VSPRINTF
17532 M:      Petr Mladek <pmladek@suse.com>
17533 M:      Steven Rostedt <rostedt@goodmis.org>
17534 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
17535 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17536 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
17537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
17538 S:      Maintained
17539 F:      lib/vsprintf.c
17540 F:      lib/test_printf.c
17541 F:      Documentation/core-api/printk-formats.rst
17542
17543 VT1211 HARDWARE MONITOR DRIVER
17544 M:      Juerg Haefliger <juergh@gmail.com>
17545 L:      linux-hwmon@vger.kernel.org
17546 S:      Maintained
17547 F:      Documentation/hwmon/vt1211.rst
17548 F:      drivers/hwmon/vt1211.c
17549
17550 VT8231 HARDWARE MONITOR DRIVER
17551 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
17552 L:      linux-hwmon@vger.kernel.org
17553 S:      Maintained
17554 F:      drivers/hwmon/vt8231.c
17555
17556 VUB300 USB to SDIO/SD/MMC bridge chip
17557 M:      Tony Olech <tony.olech@elandigitalsystems.com>
17558 L:      linux-mmc@vger.kernel.org
17559 L:      linux-usb@vger.kernel.org
17560 S:      Supported
17561 F:      drivers/mmc/host/vub300.c
17562
17563 W1 DALLAS'S 1-WIRE BUS
17564 M:      Evgeniy Polyakov <zbr@ioremap.net>
17565 S:      Maintained
17566 F:      Documentation/devicetree/bindings/w1/
17567 F:      Documentation/w1/
17568 F:      drivers/w1/
17569 F:      include/linux/w1.h
17570
17571 W83791D HARDWARE MONITORING DRIVER
17572 M:      Marc Hulsman <m.hulsman@tudelft.nl>
17573 L:      linux-hwmon@vger.kernel.org
17574 S:      Maintained
17575 F:      Documentation/hwmon/w83791d.rst
17576 F:      drivers/hwmon/w83791d.c
17577
17578 W83793 HARDWARE MONITORING DRIVER
17579 M:      Rudolf Marek <r.marek@assembler.cz>
17580 L:      linux-hwmon@vger.kernel.org
17581 S:      Maintained
17582 F:      Documentation/hwmon/w83793.rst
17583 F:      drivers/hwmon/w83793.c
17584
17585 W83795 HARDWARE MONITORING DRIVER
17586 M:      Jean Delvare <jdelvare@suse.com>
17587 L:      linux-hwmon@vger.kernel.org
17588 S:      Maintained
17589 F:      drivers/hwmon/w83795.c
17590
17591 W83L51xD SD/MMC CARD INTERFACE DRIVER
17592 M:      Pierre Ossman <pierre@ossman.eu>
17593 S:      Maintained
17594 F:      drivers/mmc/host/wbsd.*
17595
17596 WACOM PROTOCOL 4 SERIAL TABLETS
17597 M:      Julian Squires <julian@cipht.net>
17598 M:      Hans de Goede <hdegoede@redhat.com>
17599 L:      linux-input@vger.kernel.org
17600 S:      Maintained
17601 F:      drivers/input/tablet/wacom_serial4.c
17602
17603 WATCHDOG DEVICE DRIVERS
17604 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
17605 M:      Guenter Roeck <linux@roeck-us.net>
17606 L:      linux-watchdog@vger.kernel.org
17607 W:      http://www.linux-watchdog.org/
17608 T:      git git://www.linux-watchdog.org/linux-watchdog.git
17609 S:      Maintained
17610 F:      Documentation/devicetree/bindings/watchdog/
17611 F:      Documentation/watchdog/
17612 F:      drivers/watchdog/
17613 F:      include/linux/watchdog.h
17614 F:      include/uapi/linux/watchdog.h
17615
17616 WHISKEYCOVE PMIC GPIO DRIVER
17617 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
17618 L:      linux-gpio@vger.kernel.org
17619 S:      Maintained
17620 F:      drivers/gpio/gpio-wcove.c
17621
17622 WHWAVE RTC DRIVER
17623 M:      Dianlong Li <long17.cool@163.com>
17624 L:      linux-rtc@vger.kernel.org
17625 S:      Maintained
17626 F:      drivers/rtc/rtc-sd3078.c
17627
17628 WIIMOTE HID DRIVER
17629 M:      David Herrmann <dh.herrmann@googlemail.com>
17630 L:      linux-input@vger.kernel.org
17631 S:      Maintained
17632 F:      drivers/hid/hid-wiimote*
17633
17634 WILOCITY WIL6210 WIRELESS DRIVER
17635 M:      Maya Erez <merez@codeaurora.org>
17636 L:      linux-wireless@vger.kernel.org
17637 L:      wil6210@qti.qualcomm.com
17638 S:      Supported
17639 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
17640 F:      drivers/net/wireless/ath/wil6210/
17641
17642 WIMAX STACK
17643 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
17644 M:      linux-wimax@intel.com
17645 L:      wimax@linuxwimax.org (subscribers-only)
17646 S:      Supported
17647 W:      http://linuxwimax.org
17648 F:      Documentation/admin-guide/wimax/wimax.rst
17649 F:      include/linux/wimax/debug.h
17650 F:      include/net/wimax.h
17651 F:      include/uapi/linux/wimax.h
17652 F:      net/wimax/
17653
17654 WINBOND CIR DRIVER
17655 M:      David Härdeman <david@hardeman.nu>
17656 S:      Maintained
17657 F:      drivers/media/rc/winbond-cir.c
17658
17659 RCMM REMOTE CONTROLS DECODER
17660 M:      Patrick Lerda <patrick9876@free.fr>
17661 S:      Maintained
17662 F:      drivers/media/rc/ir-rcmm-decoder.c
17663
17664 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
17665 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17666 L:      linux-watchdog@vger.kernel.org
17667 S:      Maintained
17668 F:      drivers/watchdog/ebc-c384_wdt.c
17669
17670 WINSYSTEMS WS16C48 GPIO DRIVER
17671 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17672 L:      linux-gpio@vger.kernel.org
17673 S:      Maintained
17674 F:      drivers/gpio/gpio-ws16c48.c
17675
17676 WISTRON LAPTOP BUTTON DRIVER
17677 M:      Miloslav Trmac <mitr@volny.cz>
17678 S:      Maintained
17679 F:      drivers/input/misc/wistron_btns.c
17680
17681 WL3501 WIRELESS PCMCIA CARD DRIVER
17682 L:      linux-wireless@vger.kernel.org
17683 S:      Odd fixes
17684 F:      drivers/net/wireless/wl3501*
17685
17686 WOLFSON MICROELECTRONICS DRIVERS
17687 L:      patches@opensource.cirrus.com
17688 T:      git https://github.com/CirrusLogic/linux-drivers.git
17689 W:      https://github.com/CirrusLogic/linux-drivers/wiki
17690 S:      Supported
17691 F:      Documentation/hwmon/wm83??.rst
17692 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
17693 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
17694 F:      Documentation/devicetree/bindings/mfd/arizona.txt
17695 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
17696 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
17697 F:      arch/arm/mach-s3c64xx/mach-crag6410*
17698 F:      drivers/clk/clk-wm83*.c
17699 F:      drivers/extcon/extcon-arizona.c
17700 F:      drivers/leds/leds-wm83*.c
17701 F:      drivers/gpio/gpio-*wm*.c
17702 F:      drivers/gpio/gpio-arizona.c
17703 F:      drivers/hwmon/wm83??-hwmon.c
17704 F:      drivers/input/misc/wm831x-on.c
17705 F:      drivers/input/touchscreen/wm831x-ts.c
17706 F:      drivers/input/touchscreen/wm97*.c
17707 F:      drivers/mfd/arizona*
17708 F:      drivers/mfd/wm*.c
17709 F:      drivers/mfd/cs47l24*
17710 F:      drivers/power/supply/wm83*.c
17711 F:      drivers/rtc/rtc-wm83*.c
17712 F:      drivers/regulator/wm8*.c
17713 F:      drivers/regulator/arizona*
17714 F:      drivers/video/backlight/wm83*_bl.c
17715 F:      drivers/watchdog/wm83*_wdt.c
17716 F:      include/linux/mfd/arizona/
17717 F:      include/linux/mfd/wm831x/
17718 F:      include/linux/mfd/wm8350/
17719 F:      include/linux/mfd/wm8400*
17720 F:      include/linux/regulator/arizona*
17721 F:      include/linux/wm97xx.h
17722 F:      include/sound/wm????.h
17723 F:      sound/soc/codecs/arizona.?
17724 F:      sound/soc/codecs/wm*
17725 F:      sound/soc/codecs/cs47l24*
17726
17727 WORKQUEUE
17728 M:      Tejun Heo <tj@kernel.org>
17729 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
17731 S:      Maintained
17732 F:      include/linux/workqueue.h
17733 F:      kernel/workqueue.c
17734 F:      Documentation/core-api/workqueue.rst
17735
17736 X-POWERS AXP288 PMIC DRIVERS
17737 M:      Hans de Goede <hdegoede@redhat.com>
17738 S:      Maintained
17739 N:      axp288
17740 F:      drivers/acpi/pmic/intel_pmic_xpower.c
17741
17742 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
17743 M:      Chen-Yu Tsai <wens@csie.org>
17744 L:      linux-kernel@vger.kernel.org
17745 S:      Maintained
17746 N:      axp[128]
17747
17748 X.25 NETWORK LAYER
17749 M:      Andrew Hendry <andrew.hendry@gmail.com>
17750 L:      linux-x25@vger.kernel.org
17751 S:      Odd Fixes
17752 F:      Documentation/networking/x25*
17753 F:      include/net/x25*
17754 F:      net/x25/
17755
17756 X86 ARCHITECTURE (32-BIT AND 64-BIT)
17757 M:      Thomas Gleixner <tglx@linutronix.de>
17758 M:      Ingo Molnar <mingo@redhat.com>
17759 M:      Borislav Petkov <bp@alien8.de>
17760 R:      "H. Peter Anvin" <hpa@zytor.com>
17761 M:      x86@kernel.org
17762 L:      linux-kernel@vger.kernel.org
17763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17764 S:      Maintained
17765 F:      Documentation/devicetree/bindings/x86/
17766 F:      Documentation/x86/
17767 F:      arch/x86/
17768
17769 X86 ENTRY CODE
17770 M:      Andy Lutomirski <luto@kernel.org>
17771 L:      linux-kernel@vger.kernel.org
17772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
17773 S:      Maintained
17774 F:      arch/x86/entry/
17775
17776 X86 MCE INFRASTRUCTURE
17777 M:      Tony Luck <tony.luck@intel.com>
17778 M:      Borislav Petkov <bp@alien8.de>
17779 L:      linux-edac@vger.kernel.org
17780 S:      Maintained
17781 F:      arch/x86/kernel/cpu/mce/*
17782
17783 X86 MICROCODE UPDATE SUPPORT
17784 M:      Borislav Petkov <bp@alien8.de>
17785 S:      Maintained
17786 F:      arch/x86/kernel/cpu/microcode/*
17787
17788 X86 MM
17789 M:      Dave Hansen <dave.hansen@linux.intel.com>
17790 M:      Andy Lutomirski <luto@kernel.org>
17791 M:      Peter Zijlstra <peterz@infradead.org>
17792 L:      linux-kernel@vger.kernel.org
17793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
17794 S:      Maintained
17795 F:      arch/x86/mm/
17796
17797 X86 PLATFORM DRIVERS
17798 M:      Darren Hart <dvhart@infradead.org>
17799 M:      Andy Shevchenko <andy@infradead.org>
17800 L:      platform-driver-x86@vger.kernel.org
17801 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
17802 S:      Odd Fixes
17803 F:      drivers/platform/x86/
17804 F:      drivers/platform/olpc/
17805
17806 X86 PLATFORM DRIVERS - ARCH
17807 R:      Darren Hart <dvhart@infradead.org>
17808 R:      Andy Shevchenko <andy@infradead.org>
17809 L:      platform-driver-x86@vger.kernel.org
17810 L:      x86@kernel.org
17811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17812 S:      Maintained
17813 F:      arch/x86/platform
17814
17815 X86 VDSO
17816 M:      Andy Lutomirski <luto@kernel.org>
17817 L:      linux-kernel@vger.kernel.org
17818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
17819 S:      Maintained
17820 F:      arch/x86/entry/vdso/
17821
17822 XARRAY
17823 M:      Matthew Wilcox <willy@infradead.org>
17824 L:      linux-fsdevel@vger.kernel.org
17825 S:      Supported
17826 F:      Documentation/core-api/xarray.rst
17827 F:      lib/idr.c
17828 F:      lib/xarray.c
17829 F:      include/linux/idr.h
17830 F:      include/linux/xarray.h
17831 F:      tools/testing/radix-tree
17832
17833 XBOX DVD IR REMOTE
17834 M:      Benjamin Valentin <benpicco@googlemail.com>
17835 S:      Maintained
17836 F:      drivers/media/rc/xbox_remote.c
17837 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
17838
17839 XC2028/3028 TUNER DRIVER
17840 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17841 L:      linux-media@vger.kernel.org
17842 W:      https://linuxtv.org
17843 T:      git git://linuxtv.org/media_tree.git
17844 S:      Maintained
17845 F:      drivers/media/tuners/tuner-xc2028.*
17846
17847 XDP (eXpress Data Path)
17848 M:      Alexei Starovoitov <ast@kernel.org>
17849 M:      Daniel Borkmann <daniel@iogearbox.net>
17850 M:      David S. Miller <davem@davemloft.net>
17851 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
17852 M:      Jesper Dangaard Brouer <hawk@kernel.org>
17853 M:      John Fastabend <john.fastabend@gmail.com>
17854 L:      netdev@vger.kernel.org
17855 L:      bpf@vger.kernel.org
17856 S:      Supported
17857 F:      net/core/xdp.c
17858 F:      include/net/xdp.h
17859 F:      kernel/bpf/devmap.c
17860 F:      kernel/bpf/cpumap.c
17861 F:      include/trace/events/xdp.h
17862 K:      xdp
17863 N:      xdp
17864
17865 XDP SOCKETS (AF_XDP)
17866 M:      Björn Töpel <bjorn.topel@intel.com>
17867 M:      Magnus Karlsson <magnus.karlsson@intel.com>
17868 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
17869 L:      netdev@vger.kernel.org
17870 L:      bpf@vger.kernel.org
17871 S:      Maintained
17872 F:      kernel/bpf/xskmap.c
17873 F:      net/xdp/
17874
17875 XEN BLOCK SUBSYSTEM
17876 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17877 M:      Roger Pau Monné <roger.pau@citrix.com>
17878 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17879 S:      Supported
17880 F:      drivers/block/xen-blkback/*
17881 F:      drivers/block/xen*
17882
17883 XEN HYPERVISOR ARM
17884 M:      Stefano Stabellini <sstabellini@kernel.org>
17885 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17886 S:      Maintained
17887 F:      arch/arm/xen/
17888 F:      arch/arm/include/asm/xen/
17889
17890 XEN HYPERVISOR ARM64
17891 M:      Stefano Stabellini <sstabellini@kernel.org>
17892 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17893 S:      Maintained
17894 F:      arch/arm64/xen/
17895 F:      arch/arm64/include/asm/xen/
17896
17897 XEN HYPERVISOR INTERFACE
17898 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
17899 M:      Juergen Gross <jgross@suse.com>
17900 R:      Stefano Stabellini <sstabellini@kernel.org>
17901 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
17903 S:      Supported
17904 F:      arch/x86/xen/
17905 F:      arch/x86/platform/pvh/
17906 F:      drivers/*/xen-*front.c
17907 F:      drivers/xen/
17908 F:      arch/x86/include/asm/xen/
17909 F:      arch/x86/include/asm/pvclock-abi.h
17910 F:      include/xen/
17911 F:      include/uapi/xen/
17912 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
17913 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
17914
17915 XEN NETWORK BACKEND DRIVER
17916 M:      Wei Liu <wei.liu@kernel.org>
17917 M:      Paul Durrant <paul@xen.org>
17918 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17919 L:      netdev@vger.kernel.org
17920 S:      Supported
17921 F:      drivers/net/xen-netback/*
17922
17923 XEN PCI SUBSYSTEM
17924 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17925 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17926 S:      Supported
17927 F:      arch/x86/pci/*xen*
17928 F:      drivers/pci/*xen*
17929
17930 XEN PVSCSI DRIVERS
17931 M:      Juergen Gross <jgross@suse.com>
17932 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17933 L:      linux-scsi@vger.kernel.org
17934 S:      Supported
17935 F:      drivers/scsi/xen-scsifront.c
17936 F:      drivers/xen/xen-scsiback.c
17937 F:      include/xen/interface/io/vscsiif.h
17938
17939 XEN SWIOTLB SUBSYSTEM
17940 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17941 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17942 L:      iommu@lists.linux-foundation.org
17943 S:      Supported
17944 F:      arch/x86/xen/*swiotlb*
17945 F:      drivers/xen/*swiotlb*
17946
17947 XEN SOUND FRONTEND DRIVER
17948 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
17949 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17950 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17951 S:      Supported
17952 F:      sound/xen/*
17953
17954 XFS FILESYSTEM
17955 M:      Darrick J. Wong <darrick.wong@oracle.com>
17956 M:      linux-xfs@vger.kernel.org
17957 L:      linux-xfs@vger.kernel.org
17958 W:      http://xfs.org/
17959 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
17960 S:      Supported
17961 F:      Documentation/admin-guide/xfs.rst
17962 F:      Documentation/ABI/testing/sysfs-fs-xfs
17963 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
17964 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
17965 F:      fs/xfs/
17966 F:      include/uapi/linux/dqblk_xfs.h
17967 F:      include/uapi/linux/fsmap.h
17968
17969 XILINX AXI ETHERNET DRIVER
17970 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
17971 S:      Maintained
17972 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
17973
17974 XILINX UARTLITE SERIAL DRIVER
17975 M:      Peter Korsgaard <jacmet@sunsite.dk>
17976 L:      linux-serial@vger.kernel.org
17977 S:      Maintained
17978 F:      drivers/tty/serial/uartlite.c
17979
17980 XILINX VIDEO IP CORES
17981 M:      Hyun Kwon <hyun.kwon@xilinx.com>
17982 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17983 L:      linux-media@vger.kernel.org
17984 T:      git git://linuxtv.org/media_tree.git
17985 S:      Supported
17986 F:      Documentation/devicetree/bindings/media/xilinx/
17987 F:      drivers/media/platform/xilinx/
17988 F:      include/uapi/linux/xilinx-v4l2-controls.h
17989
17990 XILINX SD-FEC IP CORES
17991 M:      Derek Kiernan <derek.kiernan@xilinx.com>
17992 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
17993 S:      Maintained
17994 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
17995 F:      Documentation/misc-devices/xilinx_sdfec.rst
17996 F:      drivers/misc/xilinx_sdfec.c
17997 F:      drivers/misc/Kconfig
17998 F:      drivers/misc/Makefile
17999 F:      include/uapi/misc/xilinx_sdfec.h
18000
18001 XILLYBUS DRIVER
18002 M:      Eli Billauer <eli.billauer@gmail.com>
18003 L:      linux-kernel@vger.kernel.org
18004 S:      Supported
18005 F:      drivers/char/xillybus/
18006
18007 XLP9XX I2C DRIVER
18008 M:      George Cherian <george.cherian@cavium.com>
18009 M:      Jan Glauber <jglauber@cavium.com>
18010 L:      linux-i2c@vger.kernel.org
18011 W:      http://www.cavium.com
18012 S:      Supported
18013 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18014 F:      drivers/i2c/busses/i2c-xlp9xx.c
18015
18016 XRA1403 GPIO EXPANDER
18017 M:      Nandor Han <nandor.han@ge.com>
18018 M:      Semi Malinen <semi.malinen@ge.com>
18019 L:      linux-gpio@vger.kernel.org
18020 S:      Maintained
18021 F:      drivers/gpio/gpio-xra1403.c
18022 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18023
18024 XTENSA XTFPGA PLATFORM SUPPORT
18025 M:      Max Filippov <jcmvbkbc@gmail.com>
18026 L:      linux-xtensa@linux-xtensa.org
18027 S:      Maintained
18028 F:      drivers/spi/spi-xtensa-xtfpga.c
18029 F:      sound/soc/xtensa/xtfpga-i2s.c
18030
18031 YAM DRIVER FOR AX.25
18032 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
18033 L:      linux-hams@vger.kernel.org
18034 S:      Maintained
18035 F:      drivers/net/hamradio/yam*
18036 F:      include/linux/yam.h
18037
18038 YAMA SECURITY MODULE
18039 M:      Kees Cook <keescook@chromium.org>
18040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18041 S:      Supported
18042 F:      security/yama/
18043 F:      Documentation/admin-guide/LSM/Yama.rst
18044
18045 YEALINK PHONE DRIVER
18046 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
18047 L:      usbb2k-api-dev@nongnu.org
18048 S:      Maintained
18049 F:      Documentation/input/devices/yealink.rst
18050 F:      drivers/input/misc/yealink.*
18051
18052 Z8530 DRIVER FOR AX.25
18053 M:      Joerg Reuter <jreuter@yaina.de>
18054 W:      http://yaina.de/jreuter/
18055 W:      http://www.qsl.net/dl1bke/
18056 L:      linux-hams@vger.kernel.org
18057 S:      Maintained
18058 F:      Documentation/networking/z8530drv.txt
18059 F:      drivers/net/hamradio/*scc.c
18060 F:      drivers/net/hamradio/z8530.h
18061
18062 ZBUD COMPRESSED PAGE ALLOCATOR
18063 M:      Seth Jennings <sjenning@redhat.com>
18064 M:      Dan Streetman <ddstreet@ieee.org>
18065 L:      linux-mm@kvack.org
18066 S:      Maintained
18067 F:      mm/zbud.c
18068 F:      include/linux/zbud.h
18069
18070 ZD1211RW WIRELESS DRIVER
18071 M:      Daniel Drake <dsd@gentoo.org>
18072 M:      Ulrich Kunitz <kune@deine-taler.de>
18073 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18074 L:      linux-wireless@vger.kernel.org
18075 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18076 S:      Maintained
18077 F:      drivers/net/wireless/zydas/zd1211rw/
18078
18079 ZD1301 MEDIA DRIVER
18080 M:      Antti Palosaari <crope@iki.fi>
18081 L:      linux-media@vger.kernel.org
18082 W:      https://linuxtv.org/
18083 W:      http://palosaari.fi/linux/
18084 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18085 S:      Maintained
18086 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18087
18088 ZD1301_DEMOD MEDIA DRIVER
18089 M:      Antti Palosaari <crope@iki.fi>
18090 L:      linux-media@vger.kernel.org
18091 W:      https://linuxtv.org/
18092 W:      http://palosaari.fi/linux/
18093 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18094 S:      Maintained
18095 F:      drivers/media/dvb-frontends/zd1301_demod*
18096
18097 ZHAOXIN PROCESSOR SUPPORT
18098 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18099 L:      linux-kernel@vger.kernel.org
18100 S:      Maintained
18101 F:      arch/x86/kernel/cpu/zhaoxin.c
18102
18103 ZPOOL COMPRESSED PAGE STORAGE API
18104 M:      Dan Streetman <ddstreet@ieee.org>
18105 L:      linux-mm@kvack.org
18106 S:      Maintained
18107 F:      mm/zpool.c
18108 F:      include/linux/zpool.h
18109
18110 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18111 M:      Minchan Kim <minchan@kernel.org>
18112 M:      Nitin Gupta <ngupta@vflare.org>
18113 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18114 L:      linux-kernel@vger.kernel.org
18115 S:      Maintained
18116 F:      drivers/block/zram/
18117 F:      Documentation/admin-guide/blockdev/zram.rst
18118
18119 ZS DECSTATION Z85C30 SERIAL DRIVER
18120 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18121 S:      Maintained
18122 F:      drivers/tty/serial/zs.*
18123
18124 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18125 M:      Minchan Kim <minchan@kernel.org>
18126 M:      Nitin Gupta <ngupta@vflare.org>
18127 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18128 L:      linux-mm@kvack.org
18129 S:      Maintained
18130 F:      mm/zsmalloc.c
18131 F:      include/linux/zsmalloc.h
18132 F:      Documentation/vm/zsmalloc.rst
18133
18134 ZSWAP COMPRESSED SWAP CACHING
18135 M:      Seth Jennings <sjenning@redhat.com>
18136 M:      Dan Streetman <ddstreet@ieee.org>
18137 M:      Vitaly Wool <vitaly.wool@konsulko.com>
18138 L:      linux-mm@kvack.org
18139 S:      Maintained
18140 F:      mm/zswap.c
18141
18142 THE REST
18143 M:      Linus Torvalds <torvalds@linux-foundation.org>
18144 L:      linux-kernel@vger.kernel.org
18145 Q:      http://patchwork.kernel.org/project/LKML/list/
18146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18147 S:      Buried alive in reporters
18148 F:      *
18149 F:      */