]> asedeno.scripts.mit.edu Git - linux.git/blob - MAINTAINERS
Merge tag 'fscrypt-for-linus' of git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt
[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 L:      netdev@vger.kernel.org
647 S:      Maintained
648 F:      drivers/net/ethernet/nvidia/*
649
650 ALCATEL SPEEDTOUCH USB DRIVER
651 M:      Duncan Sands <duncan.sands@free.fr>
652 L:      linux-usb@vger.kernel.org
653 W:      http://www.linux-usb.org/SpeedTouch/
654 S:      Maintained
655 F:      drivers/usb/atm/speedtch.c
656 F:      drivers/usb/atm/usbatm.c
657
658 ALCHEMY AU1XX0 MMC DRIVER
659 M:      Manuel Lauss <manuel.lauss@gmail.com>
660 S:      Maintained
661 F:      drivers/mmc/host/au1xmmc.c
662
663 ALI1563 I2C DRIVER
664 M:      Rudolf Marek <r.marek@assembler.cz>
665 L:      linux-i2c@vger.kernel.org
666 S:      Maintained
667 F:      Documentation/i2c/busses/i2c-ali1563.rst
668 F:      drivers/i2c/busses/i2c-ali1563.c
669
670 ALLEGRO DVT VIDEO IP CORE DRIVER
671 M:      Michael Tretter <m.tretter@pengutronix.de>
672 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
673 L:      linux-media@vger.kernel.org
674 S:      Maintained
675 F:      drivers/staging/media/allegro-dvt/
676
677 ALLWINNER CPUFREQ DRIVER
678 M:      Yangtao Li <tiny.windzz@gmail.com>
679 L:      linux-pm@vger.kernel.org
680 S:      Maintained
681 F:      Documentation/devicetree/bindings/opp/sun50i-nvmem-cpufreq.txt
682 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
683
684 ALLWINNER SECURITY SYSTEM
685 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
686 L:      linux-crypto@vger.kernel.org
687 S:      Maintained
688 F:      drivers/crypto/sunxi-ss/
689
690 ALLWINNER VPU DRIVER
691 M:      Maxime Ripard <mripard@kernel.org>
692 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
693 L:      linux-media@vger.kernel.org
694 S:      Maintained
695 F:      drivers/staging/media/sunxi/cedrus/
696
697 ALPHA PORT
698 M:      Richard Henderson <rth@twiddle.net>
699 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
700 M:      Matt Turner <mattst88@gmail.com>
701 S:      Odd Fixes
702 L:      linux-alpha@vger.kernel.org
703 F:      arch/alpha/
704
705 ALPS PS/2 TOUCHPAD DRIVER
706 R:      Pali Rohár <pali.rohar@gmail.com>
707 F:      drivers/input/mouse/alps.*
708
709 ALTERA I2C CONTROLLER DRIVER
710 M:      Thor Thayer <thor.thayer@linux.intel.com>
711 S:      Maintained
712 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
713 F:      drivers/i2c/busses/i2c-altera.c
714
715 ALTERA MAILBOX DRIVER
716 M:      Ley Foon Tan <lftan@altera.com>
717 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
718 S:      Maintained
719 F:      drivers/mailbox/mailbox-altera.c
720
721 ALTERA PIO DRIVER
722 M:      Tien Hock Loh <thloh@altera.com>
723 L:      linux-gpio@vger.kernel.org
724 S:      Maintained
725 F:      drivers/gpio/gpio-altera.c
726
727 ALTERA SYSTEM MANAGER DRIVER
728 M:      Thor Thayer <thor.thayer@linux.intel.com>
729 S:      Maintained
730 F:      drivers/mfd/altera-sysmgr.c
731 F:      include/linux/mfd/altera-sysgmr.h
732
733 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
734 M:      Thor Thayer <thor.thayer@linux.intel.com>
735 S:      Maintained
736 F:      drivers/gpio/gpio-altera-a10sr.c
737 F:      drivers/mfd/altera-a10sr.c
738 F:      drivers/reset/reset-a10sr.c
739 F:      include/linux/mfd/altera-a10sr.h
740 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
741
742 ALTERA TRIPLE SPEED ETHERNET DRIVER
743 M:      Thor Thayer <thor.thayer@linux.intel.com>
744 L:      netdev@vger.kernel.org
745 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
746 S:      Maintained
747 F:      drivers/net/ethernet/altera/
748
749 ALTERA UART/JTAG UART SERIAL DRIVERS
750 M:      Tobias Klauser <tklauser@distanz.ch>
751 L:      linux-serial@vger.kernel.org
752 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
753 S:      Maintained
754 F:      drivers/tty/serial/altera_uart.c
755 F:      drivers/tty/serial/altera_jtaguart.c
756 F:      include/linux/altera_uart.h
757 F:      include/linux/altera_jtaguart.h
758
759 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
760 M:      Talel Shenhar <talel@amazon.com>
761 S:      Maintained
762 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
763 F:      drivers/thermal/thermal_mmio.c
764
765 AMAZON ETHERNET DRIVERS
766 M:      Netanel Belgazal <netanel@amazon.com>
767 R:      Saeed Bishara <saeedb@amazon.com>
768 R:      Zorik Machulsky <zorik@amazon.com>
769 L:      netdev@vger.kernel.org
770 S:      Supported
771 F:      Documentation/networking/device_drivers/amazon/ena.txt
772 F:      drivers/net/ethernet/amazon/
773
774 AMAZON RDMA EFA DRIVER
775 M:      Gal Pressman <galpress@amazon.com>
776 R:      Yossi Leybovich <sleybo@amazon.com>
777 L:      linux-rdma@vger.kernel.org
778 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
779 S:      Supported
780 F:      drivers/infiniband/hw/efa/
781 F:      include/uapi/rdma/efa-abi.h
782
783 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
784 M:      Tom Lendacky <thomas.lendacky@amd.com>
785 M:      Gary Hook <gary.hook@amd.com>
786 L:      linux-crypto@vger.kernel.org
787 S:      Supported
788 F:      drivers/crypto/ccp/
789 F:      include/linux/ccp.h
790
791 AMD DISPLAY CORE
792 M:      Harry Wentland <harry.wentland@amd.com>
793 M:      Leo Li <sunpeng.li@amd.com>
794 L:      amd-gfx@lists.freedesktop.org
795 T:      git git://people.freedesktop.org/~agd5f/linux
796 S:      Supported
797 F:      drivers/gpu/drm/amd/display/
798
799 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
800 M:      Huang Rui <ray.huang@amd.com>
801 L:      linux-hwmon@vger.kernel.org
802 S:      Supported
803 F:      Documentation/hwmon/fam15h_power.rst
804 F:      drivers/hwmon/fam15h_power.c
805
806 AMD FCH GPIO DRIVER
807 M:      Enrico Weigelt, metux IT consult <info@metux.net>
808 L:      linux-gpio@vger.kernel.org
809 S:      Maintained
810 F:      drivers/gpio/gpio-amd-fch.c
811 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
812
813 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
814 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
815 S:      Orphan
816 F:      drivers/usb/gadget/udc/amd5536udc.*
817
818 AMD GEODE PROCESSOR/CHIPSET SUPPORT
819 P:      Andres Salomon <dilinger@queued.net>
820 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
821 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
822 S:      Supported
823 F:      drivers/char/hw_random/geode-rng.c
824 F:      drivers/crypto/geode*
825 F:      drivers/video/fbdev/geode/
826 F:      arch/x86/include/asm/geode.h
827
828 AMD IOMMU (AMD-VI)
829 M:      Joerg Roedel <joro@8bytes.org>
830 L:      iommu@lists.linux-foundation.org
831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
832 S:      Maintained
833 F:      drivers/iommu/amd_iommu*.[ch]
834 F:      include/linux/amd-iommu.h
835
836 AMD KFD
837 M:      Oded Gabbay <oded.gabbay@gmail.com>
838 L:      dri-devel@lists.freedesktop.org
839 T:      git git://people.freedesktop.org/~gabbayo/linux.git
840 S:      Supported
841 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
842 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
843 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
844 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
845 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
846 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_fence.c
847 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
848 F:      drivers/gpu/drm/amd/amdkfd/
849 F:      drivers/gpu/drm/amd/include/cik_structs.h
850 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
851 F:      drivers/gpu/drm/amd/include/vi_structs.h
852 F:      drivers/gpu/drm/amd/include/v9_structs.h
853 F:      include/uapi/linux/kfd_ioctl.h
854
855 AMD MP2 I2C DRIVER
856 M:      Elie Morisse <syniurge@gmail.com>
857 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
858 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
859 L:      linux-i2c@vger.kernel.org
860 S:      Maintained
861 F:      drivers/i2c/busses/i2c-amd-mp2*
862
863 AMD POWERPLAY
864 M:      Rex Zhu <rex.zhu@amd.com>
865 M:      Evan Quan <evan.quan@amd.com>
866 L:      amd-gfx@lists.freedesktop.org
867 S:      Supported
868 F:      drivers/gpu/drm/amd/powerplay/
869 T:      git git://people.freedesktop.org/~agd5f/linux
870
871 AMD SEATTLE DEVICE TREE SUPPORT
872 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
873 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
874 M:      Tom Lendacky <thomas.lendacky@amd.com>
875 S:      Supported
876 F:      arch/arm64/boot/dts/amd/
877
878 AMD XGBE DRIVER
879 M:      Tom Lendacky <thomas.lendacky@amd.com>
880 L:      netdev@vger.kernel.org
881 S:      Supported
882 F:      drivers/net/ethernet/amd/xgbe/
883 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
884
885 ANALOG DEVICES INC AD5686 DRIVER
886 M:      Stefan Popa <stefan.popa@analog.com>
887 L:      linux-pm@vger.kernel.org
888 W:      http://ez.analog.com/community/linux-device-drivers
889 S:      Supported
890 F:      drivers/iio/dac/ad5686*
891 F:      drivers/iio/dac/ad5696*
892
893 ANALOG DEVICES INC AD5758 DRIVER
894 M:      Stefan Popa <stefan.popa@analog.com>
895 L:      linux-iio@vger.kernel.org
896 W:      http://ez.analog.com/community/linux-device-drivers
897 S:      Supported
898 F:      drivers/iio/dac/ad5758.c
899 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
900
901 ANALOG DEVICES INC AD7124 DRIVER
902 M:      Stefan Popa <stefan.popa@analog.com>
903 L:      linux-iio@vger.kernel.org
904 W:      http://ez.analog.com/community/linux-device-drivers
905 S:      Supported
906 F:      drivers/iio/adc/ad7124.c
907 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
908
909 ANALOG DEVICES INC AD7606 DRIVER
910 M:      Stefan Popa <stefan.popa@analog.com>
911 M:      Beniamin Bia <beniamin.bia@analog.com>
912 L:      linux-iio@vger.kernel.org
913 W:      http://ez.analog.com/community/linux-device-drivers
914 S:      Supported
915 F:      drivers/iio/adc/ad7606.c
916 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
917
918 ANALOG DEVICES INC AD7768-1 DRIVER
919 M:      Stefan Popa <stefan.popa@analog.com>
920 L:      linux-iio@vger.kernel.org
921 W:      http://ez.analog.com/community/linux-device-drivers
922 S:      Supported
923 F:      drivers/iio/adc/ad7768-1.c
924 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
925
926 ANALOG DEVICES INC AD7780 DRIVER
927 M:      Michael Hennerich <Michael.Hennerich@analog.com>
928 M:      Renato Lui Geh <renatogeh@gmail.com>
929 L:      linux-iio@vger.kernel.org
930 W:      http://ez.analog.com/community/linux-device-drivers
931 S:      Supported
932 F:      drivers/iio/adc/ad7780.c
933 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
934
935 ANALOG DEVICES INC AD9389B DRIVER
936 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
937 L:      linux-media@vger.kernel.org
938 S:      Maintained
939 F:      drivers/media/i2c/ad9389b*
940
941 ANALOG DEVICES INC ADGS1408 DRIVER
942 M:      Mircea Caprioru <mircea.caprioru@analog.com>
943 S:      Supported
944 F:      drivers/mux/adgs1408.c
945 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
946
947 ANALOG DEVICES INC ADIN DRIVER
948 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
949 L:      netdev@vger.kernel.org
950 W:      http://ez.analog.com/community/linux-device-drivers
951 S:      Supported
952 F:      drivers/net/phy/adin.c
953 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
954
955 ANALOG DEVICES INC ADIS DRIVER LIBRARY
956 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
957 S:      Supported
958 L:      linux-iio@vger.kernel.org
959 F:      include/linux/iio/imu/adis.h
960 F:      drivers/iio/imu/adis.c
961
962 ANALOG DEVICES INC ADIS16460 DRIVER
963 M:      Dragos Bogdan <dragos.bogdan@analog.com>
964 S:      Supported
965 L:      linux-iio@vger.kernel.org
966 W:      http://ez.analog.com/community/linux-device-drivers
967 F:      drivers/iio/imu/adis16460.c
968 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
969
970 ANALOG DEVICES INC ADP5061 DRIVER
971 M:      Stefan Popa <stefan.popa@analog.com>
972 L:      linux-pm@vger.kernel.org
973 W:      http://ez.analog.com/community/linux-device-drivers
974 S:      Supported
975 F:      drivers/power/supply/adp5061.c
976
977 ANALOG DEVICES INC ADV7180 DRIVER
978 M:      Lars-Peter Clausen <lars@metafoo.de>
979 L:      linux-media@vger.kernel.org
980 W:      http://ez.analog.com/community/linux-device-drivers
981 S:      Supported
982 F:      drivers/media/i2c/adv7180.c
983
984 ANALOG DEVICES INC ADV748X DRIVER
985 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
986 L:      linux-media@vger.kernel.org
987 S:      Maintained
988 F:      drivers/media/i2c/adv748x/*
989
990 ANALOG DEVICES INC ADV7511 DRIVER
991 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
992 L:      linux-media@vger.kernel.org
993 S:      Maintained
994 F:      drivers/media/i2c/adv7511*
995
996 ANALOG DEVICES INC ADV7604 DRIVER
997 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
998 L:      linux-media@vger.kernel.org
999 S:      Maintained
1000 F:      drivers/media/i2c/adv7604*
1001
1002 ANALOG DEVICES INC ADV7842 DRIVER
1003 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1004 L:      linux-media@vger.kernel.org
1005 S:      Maintained
1006 F:      drivers/media/i2c/adv7842*
1007
1008 ANALOG DEVICES INC ASOC CODEC DRIVERS
1009 M:      Lars-Peter Clausen <lars@metafoo.de>
1010 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1011 W:      http://wiki.analog.com/
1012 W:      http://ez.analog.com/community/linux-device-drivers
1013 S:      Supported
1014 F:      sound/soc/codecs/adau*
1015 F:      sound/soc/codecs/adav*
1016 F:      sound/soc/codecs/ad1*
1017 F:      sound/soc/codecs/ad7*
1018 F:      sound/soc/codecs/ssm*
1019 F:      sound/soc/codecs/sigmadsp.*
1020
1021 ANALOG DEVICES INC DMA DRIVERS
1022 M:      Lars-Peter Clausen <lars@metafoo.de>
1023 W:      http://ez.analog.com/community/linux-device-drivers
1024 S:      Supported
1025 F:      drivers/dma/dma-axi-dmac.c
1026
1027 ANALOG DEVICES INC IIO DRIVERS
1028 M:      Lars-Peter Clausen <lars@metafoo.de>
1029 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1030 M:      Stefan Popa <stefan.popa@analog.com>
1031 W:      http://wiki.analog.com/
1032 W:      http://ez.analog.com/community/linux-device-drivers
1033 S:      Supported
1034 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1035 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1036 F:      drivers/iio/*/ad*
1037 F:      drivers/iio/adc/ltc2497*
1038 X:      drivers/iio/*/adjd*
1039 F:      drivers/staging/iio/*/ad*
1040
1041 ANALOGBITS PLL LIBRARIES
1042 M:      Paul Walmsley <paul.walmsley@sifive.com>
1043 S:      Supported
1044 F:      drivers/clk/analogbits/*
1045 F:      include/linux/clk/analogbits*
1046
1047 ANDES ARCHITECTURE
1048 M:      Greentime Hu <green.hu@gmail.com>
1049 M:      Vincent Chen <deanbo422@gmail.com>
1050 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1051 S:      Supported
1052 F:      arch/nds32/
1053 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1054 F:      Documentation/devicetree/bindings/nds32/
1055 K:      nds32
1056 N:      nds32
1057
1058 ANDROID CONFIG FRAGMENTS
1059 M:      Rob Herring <robh@kernel.org>
1060 S:      Supported
1061 F:      kernel/configs/android*
1062
1063 ANDROID DRIVERS
1064 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1065 M:      Arve Hjønnevåg <arve@android.com>
1066 M:      Todd Kjos <tkjos@android.com>
1067 M:      Martijn Coenen <maco@android.com>
1068 M:      Joel Fernandes <joel@joelfernandes.org>
1069 M:      Christian Brauner <christian@brauner.io>
1070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1071 L:      devel@driverdev.osuosl.org
1072 S:      Supported
1073 F:      drivers/android/
1074 F:      drivers/staging/android/
1075
1076 ANDROID GOLDFISH PIC DRIVER
1077 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1078 S:      Supported
1079 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1080 F:      drivers/irqchip/irq-goldfish-pic.c
1081
1082 ANDROID GOLDFISH RTC DRIVER
1083 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1084 S:      Supported
1085 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1086 F:      drivers/rtc/rtc-goldfish.c
1087
1088 ANDROID ION DRIVER
1089 M:      Laura Abbott <labbott@redhat.com>
1090 M:      Sumit Semwal <sumit.semwal@linaro.org>
1091 L:      devel@driverdev.osuosl.org
1092 L:      dri-devel@lists.freedesktop.org
1093 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1094 S:      Supported
1095 F:      drivers/staging/android/ion
1096 F:      drivers/staging/android/uapi/ion.h
1097
1098 AOA (Apple Onboard Audio) ALSA DRIVER
1099 M:      Johannes Berg <johannes@sipsolutions.net>
1100 L:      linuxppc-dev@lists.ozlabs.org
1101 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1102 S:      Maintained
1103 F:      sound/aoa/
1104
1105 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1106 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1107 L:      linux-iio@vger.kernel.org
1108 S:      Maintained
1109 F:      drivers/iio/adc/stx104.c
1110
1111 APM DRIVER
1112 M:      Jiri Kosina <jikos@kernel.org>
1113 S:      Odd fixes
1114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1115 F:      arch/x86/kernel/apm_32.c
1116 F:      include/linux/apm_bios.h
1117 F:      include/uapi/linux/apm_bios.h
1118 F:      drivers/char/apm-emulation.c
1119
1120 APPARMOR SECURITY MODULE
1121 M:      John Johansen <john.johansen@canonical.com>
1122 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1123 W:      wiki.apparmor.net
1124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1125 S:      Supported
1126 F:      security/apparmor/
1127 F:      Documentation/admin-guide/LSM/apparmor.rst
1128
1129 APPLE BCM5974 MULTITOUCH DRIVER
1130 M:      Henrik Rydberg <rydberg@bitmath.org>
1131 L:      linux-input@vger.kernel.org
1132 S:      Odd fixes
1133 F:      drivers/input/mouse/bcm5974.c
1134
1135 APPLE SMC DRIVER
1136 M:      Henrik Rydberg <rydberg@bitmath.org>
1137 L:      linux-hwmon@vger.kernel.org
1138 S:      Odd fixes
1139 F:      drivers/hwmon/applesmc.c
1140
1141 APPLETALK NETWORK LAYER
1142 L:      netdev@vger.kernel.org
1143 S:      Odd fixes
1144 F:      drivers/net/appletalk/
1145 F:      net/appletalk/
1146 F:      include/linux/atalk.h
1147 F:      include/uapi/linux/atalk.h
1148
1149 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1150 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1151 S:      Supported
1152 F:      arch/arm64/boot/dts/apm/
1153
1154 APPLIED MICRO (APM) X-GENE SOC EDAC
1155 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1156 S:      Supported
1157 F:      drivers/edac/xgene_edac.c
1158 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1159
1160 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1161 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1162 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1163 S:      Supported
1164 F:      drivers/net/ethernet/apm/xgene-v2/
1165
1166 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1167 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1168 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1169 M:      Quan Nguyen <quan@os.amperecomputing.com>
1170 S:      Supported
1171 F:      drivers/net/ethernet/apm/xgene/
1172 F:      drivers/net/phy/mdio-xgene.c
1173 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1174 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1175
1176 APPLIED MICRO (APM) X-GENE SOC PMU
1177 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1178 S:      Supported
1179 F:      drivers/perf/xgene_pmu.c
1180 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1181 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1182
1183 APTINA CAMERA SENSOR PLL
1184 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1185 L:      linux-media@vger.kernel.org
1186 S:      Maintained
1187 F:      drivers/media/i2c/aptina-pll.*
1188
1189 AQUANTIA ETHERNET DRIVER (atlantic)
1190 M:      Igor Russkikh <igor.russkikh@aquantia.com>
1191 L:      netdev@vger.kernel.org
1192 S:      Supported
1193 W:      http://www.aquantia.com
1194 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1195 F:      drivers/net/ethernet/aquantia/atlantic/
1196 F:      Documentation/networking/device_drivers/aquantia/atlantic.txt
1197
1198 ARC FRAMEBUFFER DRIVER
1199 M:      Jaya Kumar <jayalk@intworks.biz>
1200 S:      Maintained
1201 F:      drivers/video/fbdev/arcfb.c
1202 F:      drivers/video/fbdev/core/fb_defio.c
1203
1204 ARC PGU DRM DRIVER
1205 M:      Alexey Brodkin <abrodkin@synopsys.com>
1206 S:      Supported
1207 F:      drivers/gpu/drm/arc/
1208 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1209
1210 ARCNET NETWORK LAYER
1211 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1212 L:      netdev@vger.kernel.org
1213 S:      Maintained
1214 F:      drivers/net/arcnet/
1215 F:      include/uapi/linux/if_arcnet.h
1216
1217 ARM ARCHITECTED TIMER DRIVER
1218 M:      Mark Rutland <mark.rutland@arm.com>
1219 M:      Marc Zyngier <maz@kernel.org>
1220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1221 S:      Maintained
1222 F:      arch/arm/include/asm/arch_timer.h
1223 F:      arch/arm64/include/asm/arch_timer.h
1224 F:      drivers/clocksource/arm_arch_timer.c
1225
1226 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1227 M:      Linus Walleij <linus.walleij@linaro.org>
1228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1229 S:      Maintained
1230 F:      Documentation/devicetree/bindings/arm/arm-boards
1231 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1232 F:      Documentation/devicetree/bindings/clock/arm-integrator.txt
1233 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1234 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1235 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1236 F:      arch/arm/mach-integrator/
1237 F:      arch/arm/mach-realview/
1238 F:      arch/arm/mach-versatile/
1239 F:      arch/arm/plat-versatile/
1240 F:      arch/arm/boot/dts/arm-realview-*
1241 F:      arch/arm/boot/dts/integrator*
1242 F:      arch/arm/boot/dts/versatile*
1243 F:      drivers/clk/versatile/
1244 F:      drivers/i2c/busses/i2c-versatile.c
1245 F:      drivers/irqchip/irq-versatile-fpga.c
1246 F:      drivers/mtd/maps/physmap_of_versatile.c
1247 F:      drivers/power/reset/arm-versatile-reboot.c
1248 F:      drivers/soc/versatile/
1249
1250 ARM HDLCD DRM DRIVER
1251 M:      Liviu Dudau <liviu.dudau@arm.com>
1252 S:      Supported
1253 F:      drivers/gpu/drm/arm/hdlcd_*
1254 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1255
1256 ARM KOMEDA DRM-KMS DRIVER
1257 M:      James (Qian) Wang <james.qian.wang@arm.com>
1258 M:      Liviu Dudau <liviu.dudau@arm.com>
1259 L:      Mali DP Maintainers <malidp@foss.arm.com>
1260 S:      Supported
1261 T:      git git://anongit.freedesktop.org/drm/drm-misc
1262 F:      drivers/gpu/drm/arm/display/include/
1263 F:      drivers/gpu/drm/arm/display/komeda/
1264 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1265 F:      Documentation/gpu/komeda-kms.rst
1266
1267 ARM MALI-DP DRM DRIVER
1268 M:      Liviu Dudau <liviu.dudau@arm.com>
1269 M:      Brian Starkey <brian.starkey@arm.com>
1270 L:      Mali DP Maintainers <malidp@foss.arm.com>
1271 S:      Supported
1272 T:      git git://anongit.freedesktop.org/drm/drm-misc
1273 F:      drivers/gpu/drm/arm/
1274 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1275 F:      Documentation/gpu/afbc.rst
1276
1277 ARM MALI PANFROST DRM DRIVER
1278 M:      Rob Herring <robh@kernel.org>
1279 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1280 L:      dri-devel@lists.freedesktop.org
1281 S:      Supported
1282 T:      git git://anongit.freedesktop.org/drm/drm-misc
1283 F:      drivers/gpu/drm/panfrost/
1284 F:      include/uapi/drm/panfrost_drm.h
1285
1286 ARM MFM AND FLOPPY DRIVERS
1287 M:      Ian Molton <spyro@f2s.com>
1288 S:      Maintained
1289 F:      arch/arm/mach-rpc/floppydma.S
1290 F:      arch/arm/include/asm/floppy.h
1291
1292 ARM PMU PROFILING AND DEBUGGING
1293 M:      Will Deacon <will@kernel.org>
1294 M:      Mark Rutland <mark.rutland@arm.com>
1295 S:      Maintained
1296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297 F:      arch/arm*/kernel/perf_*
1298 F:      arch/arm/oprofile/common.c
1299 F:      arch/arm*/kernel/hw_breakpoint.c
1300 F:      arch/arm*/include/asm/hw_breakpoint.h
1301 F:      arch/arm*/include/asm/perf_event.h
1302 F:      drivers/perf/*
1303 F:      include/linux/perf/arm_pmu.h
1304 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1305 F:      Documentation/devicetree/bindings/perf/
1306
1307 ARM PORT
1308 M:      Russell King <linux@armlinux.org.uk>
1309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1310 W:      http://www.armlinux.org.uk/
1311 S:      Odd Fixes
1312 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1313 F:      arch/arm/
1314 X:      arch/arm/boot/dts/
1315
1316 ARM PRIMECELL AACI PL041 DRIVER
1317 M:      Russell King <linux@armlinux.org.uk>
1318 S:      Odd Fixes
1319 F:      sound/arm/aaci.*
1320
1321 ARM PRIMECELL BUS SUPPORT
1322 M:      Russell King <linux@armlinux.org.uk>
1323 S:      Odd Fixes
1324 F:      drivers/amba/
1325 F:      include/linux/amba/bus.h
1326
1327 ARM PRIMECELL CLCD PL110 DRIVER
1328 M:      Russell King <linux@armlinux.org.uk>
1329 S:      Odd Fixes
1330 F:      drivers/video/fbdev/amba-clcd.*
1331
1332 ARM PRIMECELL KMI PL050 DRIVER
1333 M:      Russell King <linux@armlinux.org.uk>
1334 S:      Odd Fixes
1335 F:      drivers/input/serio/ambakmi.*
1336 F:      include/linux/amba/kmi.h
1337
1338 ARM PRIMECELL MMCI PL180/1 DRIVER
1339 M:      Russell King <linux@armlinux.org.uk>
1340 S:      Odd Fixes
1341 F:      drivers/mmc/host/mmci.*
1342 F:      include/linux/amba/mmci.h
1343
1344 ARM PRIMECELL SSP PL022 SPI DRIVER
1345 M:      Linus Walleij <linus.walleij@linaro.org>
1346 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1347 S:      Maintained
1348 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1349 F:      drivers/spi/spi-pl022.c
1350
1351 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1352 M:      Russell King <linux@armlinux.org.uk>
1353 S:      Odd Fixes
1354 F:      drivers/tty/serial/amba-pl01*.c
1355 F:      include/linux/amba/serial.h
1356
1357 ARM PRIMECELL VIC PL190/PL192 DRIVER
1358 M:      Linus Walleij <linus.walleij@linaro.org>
1359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1360 S:      Maintained
1361 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1362 F:      drivers/irqchip/irq-vic.c
1363
1364 AMAZON ANNAPURNA LABS FIC DRIVER
1365 M:      Talel Shenhar <talel@amazon.com>
1366 S:      Maintained
1367 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
1368 F:      drivers/irqchip/irq-al-fic.c
1369
1370 ARM SMMU DRIVERS
1371 M:      Will Deacon <will@kernel.org>
1372 R:      Robin Murphy <robin.murphy@arm.com>
1373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1374 S:      Maintained
1375 F:      drivers/iommu/arm-smmu*
1376 F:      drivers/iommu/io-pgtable-arm.c
1377 F:      drivers/iommu/io-pgtable-arm-v7s.c
1378
1379 ARM SUB-ARCHITECTURES
1380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1381 S:      Maintained
1382 F:      arch/arm/mach-*/
1383 F:      arch/arm/plat-*/
1384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1385
1386 ARM/ACTIONS SEMI ARCHITECTURE
1387 M:      Andreas Färber <afaerber@suse.de>
1388 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1390 S:      Maintained
1391 N:      owl
1392 F:      arch/arm/mach-actions/
1393 F:      arch/arm/boot/dts/owl-*
1394 F:      arch/arm64/boot/dts/actions/
1395 F:      drivers/clk/actions/
1396 F:      drivers/clocksource/timer-owl*
1397 F:      drivers/dma/owl-dma.c
1398 F:      drivers/i2c/busses/i2c-owl.c
1399 F:      drivers/pinctrl/actions/*
1400 F:      drivers/soc/actions/
1401 F:      include/dt-bindings/power/owl-*
1402 F:      include/linux/soc/actions/
1403 F:      Documentation/devicetree/bindings/arm/actions.txt
1404 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1405 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1406 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1407 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1408 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1409 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1410
1411 ARM/ADS SPHERE MACHINE SUPPORT
1412 M:      Lennert Buytenhek <kernel@wantstofly.org>
1413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1414 S:      Maintained
1415
1416 ARM/AFEB9260 MACHINE SUPPORT
1417 M:      Sergey Lapin <slapin@ossfans.org>
1418 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1419 S:      Maintained
1420
1421 ARM/AJECO 1ARM MACHINE SUPPORT
1422 M:      Lennert Buytenhek <kernel@wantstofly.org>
1423 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1424 S:      Maintained
1425
1426 ARM/Allwinner SoC Clock Support
1427 M:      Emilio López <emilio@elopez.com.ar>
1428 S:      Maintained
1429 F:      drivers/clk/sunxi/
1430
1431 ARM/Allwinner sunXi SoC support
1432 M:      Maxime Ripard <mripard@kernel.org>
1433 M:      Chen-Yu Tsai <wens@csie.org>
1434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1435 S:      Maintained
1436 N:      sun[x456789]i
1437 N:      sun50i
1438 F:      arch/arm/mach-sunxi/
1439 F:      arch/arm64/boot/dts/allwinner/
1440 F:      drivers/clk/sunxi-ng/
1441 F:      drivers/pinctrl/sunxi/
1442 F:      drivers/soc/sunxi/
1443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1444
1445 Allwinner A10 CSI driver
1446 M:      Maxime Ripard <mripard@kernel.org>
1447 L:      linux-media@vger.kernel.org
1448 T:      git git://linuxtv.org/media_tree.git
1449 F:      drivers/media/platform/sunxi/sun4i-csi/
1450 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
1451 S:      Maintained
1452
1453 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1454 M:      Neil Armstrong <narmstrong@baylibre.com>
1455 M:      Jerome Brunet <jbrunet@baylibre.com>
1456 L:      linux-amlogic@lists.infradead.org
1457 S:      Maintained
1458 F:      drivers/clk/meson/
1459 F:      include/dt-bindings/clock/meson*
1460 F:      include/dt-bindings/clock/gxbb*
1461 F:      Documentation/devicetree/bindings/clock/amlogic*
1462
1463 ARM/Amlogic Meson SoC support
1464 M:      Kevin Hilman <khilman@baylibre.com>
1465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466 L:      linux-amlogic@lists.infradead.org
1467 W:      http://linux-meson.com/
1468 S:      Maintained
1469 F:      arch/arm/mach-meson/
1470 F:      arch/arm/boot/dts/meson*
1471 F:      arch/arm64/boot/dts/amlogic/
1472 F:      drivers/pinctrl/meson/
1473 F:      drivers/mmc/host/meson*
1474 F:      drivers/soc/amlogic/
1475 N:      meson
1476
1477 ARM/Amlogic Meson SoC Sound Drivers
1478 M:      Jerome Brunet <jbrunet@baylibre.com>
1479 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1480 S:      Maintained
1481 F:      sound/soc/meson/
1482 F:      Documentation/devicetree/bindings/sound/amlogic*
1483
1484 ARM/Annapurna Labs ALPINE ARCHITECTURE
1485 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1486 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1488 S:      Maintained
1489 F:      arch/arm/mach-alpine/
1490 F:      arch/arm/boot/dts/alpine*
1491 F:      arch/arm64/boot/dts/al/
1492 F:      drivers/*/*alpine*
1493
1494 ARM/ARTPEC MACHINE SUPPORT
1495 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1496 M:      Lars Persson <lars.persson@axis.com>
1497 S:      Maintained
1498 L:      linux-arm-kernel@axis.com
1499 F:      arch/arm/mach-artpec
1500 F:      arch/arm/boot/dts/artpec6*
1501 F:      drivers/clk/axis
1502 F:      drivers/crypto/axis
1503 F:      drivers/mmc/host/usdhi6rol0.c
1504 F:      drivers/pinctrl/pinctrl-artpec*
1505 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1506
1507 ARM/ASPEED I2C DRIVER
1508 M:      Brendan Higgins <brendanhiggins@google.com>
1509 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1510 R:      Joel Stanley <joel@jms.id.au>
1511 L:      linux-i2c@vger.kernel.org
1512 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1513 S:      Maintained
1514 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1515 F:      drivers/i2c/busses/i2c-aspeed.c
1516 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1517 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1518
1519 ARM/ASPEED MACHINE SUPPORT
1520 M:      Joel Stanley <joel@jms.id.au>
1521 R:      Andrew Jeffery <andrew@aj.id.au>
1522 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1523 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1524 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1525 S:      Supported
1526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1527 F:      arch/arm/mach-aspeed/
1528 F:      arch/arm/boot/dts/aspeed-*
1529 N:      aspeed
1530
1531 ARM/BITMAIN ARCHITECTURE
1532 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1533 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1534 S:      Maintained
1535 F:      arch/arm64/boot/dts/bitmain/
1536 F:      drivers/pinctrl/pinctrl-bm1880.c
1537 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1538 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1539
1540 ARM/CALXEDA HIGHBANK ARCHITECTURE
1541 M:      Rob Herring <robh@kernel.org>
1542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1543 S:      Maintained
1544 F:      arch/arm/mach-highbank/
1545 F:      arch/arm/boot/dts/highbank.dts
1546 F:      arch/arm/boot/dts/ecx-*.dts*
1547
1548 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1549 M:      Krzysztof Halasa <khalasa@piap.pl>
1550 S:      Maintained
1551 F:      arch/arm/mach-cns3xxx/
1552
1553 ARM/CAVIUM THUNDER NETWORK DRIVER
1554 M:      Sunil Goutham <sgoutham@cavium.com>
1555 M:      Robert Richter <rric@kernel.org>
1556 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1557 S:      Supported
1558 F:      drivers/net/ethernet/cavium/thunder/
1559
1560 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1561 M:      Lukasz Majewski <lukma@denx.de>
1562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1563 S:      Maintained
1564 F:      arch/arm/mach-ep93xx/ts72xx.c
1565
1566 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1567 M:      Alexander Shiyan <shc_work@mail.ru>
1568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1569 S:      Odd Fixes
1570 N:      clps711x
1571
1572 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1573 M:      Lennert Buytenhek <kernel@wantstofly.org>
1574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1575 S:      Maintained
1576
1577 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1578 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1579 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 S:      Maintained
1582 F:      arch/arm/mach-ep93xx/
1583 F:      arch/arm/mach-ep93xx/include/mach/
1584
1585 ARM/CLKDEV SUPPORT
1586 M:      Russell King <linux@armlinux.org.uk>
1587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1588 S:      Maintained
1589 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1590 F:      drivers/clk/clkdev.c
1591
1592 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1593 M:      Mike Rapoport <mike@compulab.co.il>
1594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1595 S:      Maintained
1596
1597 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1598 M:      Baruch Siach <baruch@tkos.co.il>
1599 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1600 S:      Maintained
1601 F:      arch/arm/boot/dts/cx92755*
1602 N:      digicolor
1603
1604 ARM/CONTEC MICRO9 MACHINE SUPPORT
1605 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1606 S:      Maintained
1607 F:      arch/arm/mach-ep93xx/micro9.c
1608
1609 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1610 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1611 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1613 S:      Maintained
1614 F:      drivers/hwtracing/coresight/*
1615 F:      Documentation/trace/coresight.rst
1616 F:      Documentation/trace/coresight-cpu-debug.rst
1617 F:      Documentation/devicetree/bindings/arm/coresight.txt
1618 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1619 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1620 F:      tools/perf/arch/arm/util/pmu.c
1621 F:      tools/perf/arch/arm/util/auxtrace.c
1622 F:      tools/perf/arch/arm/util/cs-etm.c
1623 F:      tools/perf/arch/arm/util/cs-etm.h
1624 F:      tools/perf/util/cs-etm.*
1625 F:      tools/perf/util/cs-etm-decoder/*
1626
1627 ARM/CORGI MACHINE SUPPORT
1628 M:      Richard Purdie <rpurdie@rpsys.net>
1629 S:      Maintained
1630
1631 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1632 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1633 M:      Linus Walleij <linus.walleij@linaro.org>
1634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1635 T:      git git://github.com/ulli-kroll/linux.git
1636 S:      Maintained
1637 F:      Documentation/devicetree/bindings/arm/gemini.txt
1638 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1639 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1640 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1641 F:      arch/arm/mach-gemini/
1642 F:      drivers/net/ethernet/cortina/
1643 F:      drivers/pinctrl/pinctrl-gemini.c
1644 F:      drivers/rtc/rtc-ftrtc010.c
1645
1646 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1647 M:      Barry Song <baohua@kernel.org>
1648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1650 S:      Maintained
1651 F:      arch/arm/boot/dts/prima2*
1652 F:      arch/arm/mach-prima2/
1653 F:      drivers/clk/sirf/
1654 F:      drivers/clocksource/timer-prima2.c
1655 F:      drivers/clocksource/timer-atlas7.c
1656 N:      [^a-z]sirf
1657 X:      drivers/gnss
1658
1659 ARM/CZ.NIC TURRIS MOX SUPPORT
1660 M:      Marek Behun <marek.behun@nic.cz>
1661 W:      http://mox.turris.cz
1662 S:      Maintained
1663 F:      Documentation/ABI/testing/debugfs-moxtet
1664 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1665 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1666 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1667 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1668 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1669 F:      include/linux/moxtet.h
1670 F:      drivers/bus/moxtet.c
1671 F:      drivers/firmware/turris-mox-rwtm.c
1672 F:      drivers/gpio/gpio-moxtet.c
1673
1674 ARM/EBSA110 MACHINE SUPPORT
1675 M:      Russell King <linux@armlinux.org.uk>
1676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1677 W:      http://www.armlinux.org.uk/
1678 S:      Maintained
1679 F:      arch/arm/mach-ebsa110/
1680 F:      drivers/net/ethernet/amd/am79c961a.*
1681
1682 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1683 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1684 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1686 S:      Maintained
1687 N:      efm32
1688
1689 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1690 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1692 S:      Maintained
1693 F:      arch/arm/mach-pxa/ezx.c
1694
1695 ARM/FARADAY FA526 PORT
1696 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1698 S:      Maintained
1699 T:      git git://git.berlios.de/gemini-board
1700 F:      arch/arm/mm/*-fa*
1701
1702 ARM/FOOTBRIDGE ARCHITECTURE
1703 M:      Russell King <linux@armlinux.org.uk>
1704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1705 W:      http://www.armlinux.org.uk/
1706 S:      Maintained
1707 F:      arch/arm/include/asm/hardware/dec21285.h
1708 F:      arch/arm/mach-footbridge/
1709
1710 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1711 M:      Shawn Guo <shawnguo@kernel.org>
1712 M:      Sascha Hauer <s.hauer@pengutronix.de>
1713 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1714 R:      Fabio Estevam <festevam@gmail.com>
1715 R:      NXP Linux Team <linux-imx@nxp.com>
1716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1717 S:      Maintained
1718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1719 N:      imx
1720 N:      mxs
1721 X:      drivers/media/i2c/
1722
1723 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1724 M:      Shawn Guo <shawnguo@kernel.org>
1725 M:      Sascha Hauer <s.hauer@pengutronix.de>
1726 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1727 R:      Stefan Agner <stefan@agner.ch>
1728 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1729 S:      Maintained
1730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1731 F:      arch/arm/mach-imx/*vf610*
1732 F:      arch/arm/boot/dts/vf*
1733
1734 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1735 M:      Shawn Guo <shawnguo@kernel.org>
1736 M:      Li Yang <leoyang.li@nxp.com>
1737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1738 S:      Maintained
1739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1740 F:      arch/arm/boot/dts/ls1021a*
1741 F:      arch/arm64/boot/dts/freescale/fsl-*
1742 F:      arch/arm64/boot/dts/freescale/qoriq-*
1743
1744 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1745 M:      Lennert Buytenhek <kernel@wantstofly.org>
1746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1747 S:      Maintained
1748
1749 ARM/GUMSTIX MACHINE SUPPORT
1750 M:      Steve Sakoman <sakoman@gmail.com>
1751 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1752 S:      Maintained
1753
1754 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1755 M:      Philipp Zabel <philipp.zabel@gmail.com>
1756 M:      Paul Parsons <lost.distance@yahoo.com>
1757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1758 S:      Maintained
1759 F:      arch/arm/mach-pxa/hx4700.c
1760 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1761 F:      sound/soc/pxa/hx4700.c
1762
1763 ARM/HISILICON SOC SUPPORT
1764 M:      Wei Xu <xuwei5@hisilicon.com>
1765 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1766 W:      http://www.hisilicon.com
1767 S:      Supported
1768 T:      git git://github.com/hisilicon/linux-hisi.git
1769 F:      arch/arm/mach-hisi/
1770 F:      arch/arm/boot/dts/hi3*
1771 F:      arch/arm/boot/dts/hip*
1772 F:      arch/arm/boot/dts/hisi*
1773 F:      arch/arm64/boot/dts/hisilicon/
1774
1775 ARM/HP JORNADA 7XX MACHINE SUPPORT
1776 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1777 W:      www.jlime.com
1778 S:      Maintained
1779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1780 F:      arch/arm/mach-sa1100/jornada720.c
1781 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1782
1783 ARM/IGEP MACHINE SUPPORT
1784 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1785 M:      Javier Martinez Canillas <javier@dowhile0.org>
1786 L:      linux-omap@vger.kernel.org
1787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1788 S:      Maintained
1789 F:      arch/arm/boot/dts/omap3-igep*
1790
1791 ARM/INCOME PXA270 SUPPORT
1792 M:      Marek Vasut <marek.vasut@gmail.com>
1793 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1794 S:      Maintained
1795 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1796
1797 ARM/INTEL IOP32X ARM ARCHITECTURE
1798 M:      Lennert Buytenhek <kernel@wantstofly.org>
1799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1800 S:      Maintained
1801
1802 ARM/INTEL IQ81342EX MACHINE SUPPORT
1803 M:      Lennert Buytenhek <kernel@wantstofly.org>
1804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805 S:      Maintained
1806
1807 ARM/INTEL IXDP2850 MACHINE SUPPORT
1808 M:      Lennert Buytenhek <kernel@wantstofly.org>
1809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1810 S:      Maintained
1811
1812 ARM/INTEL IXP4XX ARM ARCHITECTURE
1813 M:      Linus Walleij <linusw@kernel.org>
1814 M:      Imre Kaloz <kaloz@openwrt.org>
1815 M:      Krzysztof Halasa <khalasa@piap.pl>
1816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1817 S:      Maintained
1818 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1819 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1820 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1821 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1822 F:      arch/arm/mach-ixp4xx/
1823 F:      drivers/clocksource/timer-ixp4xx.c
1824 F:      drivers/gpio/gpio-ixp4xx.c
1825 F:      drivers/irqchip/irq-ixp4xx.c
1826 F:      include/linux/irqchip/irq-ixp4xx.h
1827 F:      include/linux/platform_data/timer-ixp4xx.h
1828
1829 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1830 M:      Jonathan Cameron <jic23@cam.ac.uk>
1831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1832 S:      Maintained
1833 F:      arch/arm/mach-pxa/stargate2.c
1834 F:      drivers/pcmcia/pxa2xx_stargate2.c
1835
1836 ARM/INTEL XSC3 (MANZANO) ARM CORE
1837 M:      Lennert Buytenhek <kernel@wantstofly.org>
1838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1839 S:      Maintained
1840
1841 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1842 M:      Lennert Buytenhek <kernel@wantstofly.org>
1843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1844 S:      Maintained
1845
1846 ARM/LG1K ARCHITECTURE
1847 M:      Chanho Min <chanho.min@lge.com>
1848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1849 S:      Maintained
1850 F:      arch/arm64/boot/dts/lg/
1851
1852 ARM/LOGICPD PXA270 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/LPC18XX ARCHITECTURE
1858 M:      Vladimir Zapolskiy <vz@mleia.com>
1859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1860 S:      Maintained
1861 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1862 F:      arch/arm/boot/dts/lpc43*
1863 F:      drivers/i2c/busses/i2c-lpc2k.c
1864 F:      drivers/memory/pl172.c
1865 F:      drivers/mtd/spi-nor/nxp-spifi.c
1866 F:      drivers/rtc/rtc-lpc24xx.c
1867 N:      lpc18xx
1868
1869 ARM/LPC32XX SOC SUPPORT
1870 M:      Vladimir Zapolskiy <vz@mleia.com>
1871 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1872 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1873 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1874 S:      Maintained
1875 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1876 F:      arch/arm/boot/dts/lpc32*
1877 F:      arch/arm/mach-lpc32xx/
1878 F:      drivers/i2c/busses/i2c-pnx.c
1879 F:      drivers/net/ethernet/nxp/lpc_eth.c
1880 F:      drivers/usb/host/ohci-nxp.c
1881 F:      drivers/watchdog/pnx4008_wdt.c
1882 N:      lpc32xx
1883
1884 ARM/MAGICIAN MACHINE SUPPORT
1885 M:      Philipp Zabel <philipp.zabel@gmail.com>
1886 S:      Maintained
1887
1888 ARM/Marvell Dove/MV78xx0/Orion SOC support
1889 M:      Jason Cooper <jason@lakedaemon.net>
1890 M:      Andrew Lunn <andrew@lunn.ch>
1891 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1892 M:      Gregory Clement <gregory.clement@bootlin.com>
1893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1894 S:      Maintained
1895 F:      Documentation/devicetree/bindings/soc/dove/
1896 F:      arch/arm/mach-dove/
1897 F:      arch/arm/mach-mv78xx0/
1898 F:      arch/arm/mach-orion5x/
1899 F:      arch/arm/plat-orion/
1900 F:      arch/arm/boot/dts/dove*
1901 F:      arch/arm/boot/dts/orion5x*
1902 T:      git git://git.infradead.org/linux-mvebu.git
1903
1904 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1905 M:      Jason Cooper <jason@lakedaemon.net>
1906 M:      Andrew Lunn <andrew@lunn.ch>
1907 M:      Gregory Clement <gregory.clement@bootlin.com>
1908 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1909 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1910 S:      Maintained
1911 F:      arch/arm/boot/dts/armada*
1912 F:      arch/arm/boot/dts/kirkwood*
1913 F:      arch/arm/configs/mvebu_*_defconfig
1914 F:      arch/arm/mach-mvebu/
1915 F:      arch/arm64/boot/dts/marvell/armada*
1916 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1917 F:      drivers/cpufreq/armada-8k-cpufreq.c
1918 F:      drivers/cpufreq/mvebu-cpufreq.c
1919 F:      drivers/irqchip/irq-armada-370-xp.c
1920 F:      drivers/irqchip/irq-mvebu-*
1921 F:      drivers/pinctrl/mvebu/
1922 F:      drivers/rtc/rtc-armada38x.c
1923 T:      git git://git.infradead.org/linux-mvebu.git
1924
1925 ARM/Mediatek RTC DRIVER
1926 M:      Eddie Huang <eddie.huang@mediatek.com>
1927 M:      Sean Wang <sean.wang@mediatek.com>
1928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1929 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1930 S:      Maintained
1931 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1932 F:      drivers/rtc/rtc-mt6397.c
1933 F:      drivers/rtc/rtc-mt7622.c
1934
1935 ARM/Mediatek SoC support
1936 M:      Matthias Brugger <matthias.bgg@gmail.com>
1937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1939 W:      https://mtk.bcnfs.org/
1940 C:      irc://chat.freenode.net/linux-mediatek
1941 S:      Maintained
1942 F:      arch/arm/boot/dts/mt6*
1943 F:      arch/arm/boot/dts/mt7*
1944 F:      arch/arm/boot/dts/mt8*
1945 F:      arch/arm/mach-mediatek/
1946 F:      arch/arm64/boot/dts/mediatek/
1947 F:      drivers/soc/mediatek/
1948 N:      mtk
1949 N:      mt[678]
1950 K:      mediatek
1951
1952 ARM/Mediatek USB3 PHY DRIVER
1953 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1955 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1956 S:      Maintained
1957 F:      drivers/phy/mediatek/
1958 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
1959
1960 ARM/Microchip (AT91) SoC support
1961 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
1962 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
1963 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
1964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1965 W:      http://www.linux4sam.org
1966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
1967 S:      Supported
1968 N:      at91
1969 N:      atmel
1970 F:      arch/arm/mach-at91/
1971 F:      include/soc/at91/
1972 F:      arch/arm/boot/dts/at91*.dts
1973 F:      arch/arm/boot/dts/at91*.dtsi
1974 F:      arch/arm/boot/dts/sama*.dts
1975 F:      arch/arm/boot/dts/sama*.dtsi
1976 F:      arch/arm/include/debug/at91.S
1977 F:      drivers/memory/atmel*
1978 F:      drivers/watchdog/sama5d4_wdt.c
1979 X:      drivers/input/touchscreen/atmel_mxt_ts.c
1980 X:      drivers/net/wireless/atmel/
1981
1982 ARM/MIOA701 MACHINE SUPPORT
1983 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1984 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1985 F:      arch/arm/mach-pxa/mioa701.c
1986 S:      Maintained
1987
1988 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1989 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1990 S:      Maintained
1991
1992 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
1993 M:      Linus Walleij <linus.walleij@linaro.org>
1994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1995 S:      Maintained
1996 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
1997 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
1998 F:      arch/arm/mach-nomadik/
1999 F:      arch/arm/mach-u300/
2000 F:      arch/arm/mach-ux500/
2001 F:      drivers/soc/ux500/
2002 F:      arch/arm/boot/dts/ste-*
2003 F:      drivers/clk/clk-nomadik.c
2004 F:      drivers/clk/clk-u300.c
2005 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2006 F:      drivers/clocksource/timer-u300.c
2007 F:      drivers/dma/coh901318*
2008 F:      drivers/dma/ste_dma40*
2009 F:      drivers/hwspinlock/u8500_hsem.c
2010 F:      drivers/i2c/busses/i2c-nomadik.c
2011 F:      drivers/i2c/busses/i2c-stu300.c
2012 F:      drivers/mfd/ab3100*
2013 F:      drivers/mfd/ab8500*
2014 F:      drivers/mfd/abx500*
2015 F:      drivers/mfd/dbx500*
2016 F:      drivers/mfd/db8500*
2017 F:      drivers/pinctrl/nomadik/
2018 F:      drivers/pinctrl/pinctrl-coh901*
2019 F:      drivers/pinctrl/pinctrl-u300.c
2020 F:      drivers/rtc/rtc-ab3100.c
2021 F:      drivers/rtc/rtc-ab8500.c
2022 F:      drivers/rtc/rtc-coh901331.c
2023 F:      drivers/rtc/rtc-pl031.c
2024 F:      drivers/watchdog/coh901327_wdt.c
2025 F:      Documentation/devicetree/bindings/arm/ste-*
2026 F:      Documentation/devicetree/bindings/arm/ux500/
2027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2028
2029 ARM/NUVOTON NPCM ARCHITECTURE
2030 M:      Avi Fishman <avifishman70@gmail.com>
2031 M:      Tomer Maimon <tmaimon77@gmail.com>
2032 M:      Tali Perry <tali.perry1@gmail.com>
2033 R:      Patrick Venture <venture@google.com>
2034 R:      Nancy Yuen <yuenn@google.com>
2035 R:      Benjamin Fair <benjaminfair@google.com>
2036 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2037 S:      Supported
2038 F:      arch/arm/mach-npcm/
2039 F:      arch/arm/boot/dts/nuvoton-npcm*
2040 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2041 F:      drivers/*/*npcm*
2042 F:      Documentation/devicetree/bindings/*/*npcm*
2043 F:      Documentation/devicetree/bindings/*/*/*npcm*
2044
2045 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2046 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2047 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2048 S:      Orphan
2049 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2050 F:      arch/arm/mach-s3c24xx/gta02.h
2051
2052 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2053 M:      Alexander Clouter <alex@digriz.org.uk>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 W:      http://www.digriz.org.uk/ts78xx/kernel
2056 S:      Maintained
2057 F:      arch/arm/mach-orion5x/ts78xx-*
2058
2059 ARM/OXNAS platform support
2060 M:      Neil Armstrong <narmstrong@baylibre.com>
2061 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2062 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2063 S:      Maintained
2064 F:      arch/arm/mach-oxnas/
2065 F:      arch/arm/boot/dts/ox8*.dts*
2066 N:      oxnas
2067
2068 ARM/PALM TREO SUPPORT
2069 M:      Tomas Cech <sleep_walker@suse.com>
2070 L:      linux-arm-kernel@lists.infradead.org
2071 W:      http://hackndev.com
2072 S:      Maintained
2073 F:      arch/arm/mach-pxa/palmtreo.*
2074
2075 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2076 M:      Marek Vasut <marek.vasut@gmail.com>
2077 L:      linux-arm-kernel@lists.infradead.org
2078 W:      http://hackndev.com
2079 S:      Maintained
2080 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2081 F:      arch/arm/mach-pxa/palmtx.c
2082 F:      arch/arm/mach-pxa/palmt5.*
2083 F:      arch/arm/mach-pxa/include/mach/palmld.h
2084 F:      arch/arm/mach-pxa/palmld.c
2085 F:      arch/arm/mach-pxa/palmte2.*
2086 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2087 F:      arch/arm/mach-pxa/palmtc.c
2088
2089 ARM/PALMZ72 SUPPORT
2090 M:      Sergey Lapin <slapin@ossfans.org>
2091 L:      linux-arm-kernel@lists.infradead.org
2092 W:      http://hackndev.com
2093 S:      Maintained
2094 F:      arch/arm/mach-pxa/palmz72.*
2095
2096 ARM/PLEB SUPPORT
2097 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2098 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2099 S:      Maintained
2100
2101 ARM/PT DIGITAL BOARD PORT
2102 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2104 W:      http://www.armlinux.org.uk/
2105 S:      Maintained
2106
2107 ARM/QUALCOMM SUPPORT
2108 M:      Andy Gross <agross@kernel.org>
2109 L:      linux-arm-msm@vger.kernel.org
2110 S:      Maintained
2111 F:      Documentation/devicetree/bindings/soc/qcom/
2112 F:      Documentation/devicetree/bindings/*/qcom*
2113 F:      arch/arm/boot/dts/qcom-*.dts
2114 F:      arch/arm/boot/dts/qcom-*.dtsi
2115 F:      arch/arm/mach-qcom/
2116 F:      arch/arm64/boot/dts/qcom/
2117 F:      drivers/*/qcom/
2118 F:      drivers/*/qcom*
2119 F:      drivers/*/*/qcom/
2120 F:      drivers/*/*/qcom*
2121 F:      drivers/*/pm8???-*
2122 F:      drivers/bluetooth/btqcomsmd.c
2123 F:      drivers/clocksource/timer-qcom.c
2124 F:      drivers/extcon/extcon-qcom*
2125 F:      drivers/iommu/msm*
2126 F:      drivers/i2c/busses/i2c-qup.c
2127 F:      drivers/i2c/busses/i2c-qcom-geni.c
2128 F:      drivers/mfd/ssbi.c
2129 F:      drivers/mmc/host/mmci_qcom*
2130 F:      drivers/mmc/host/sdhci-msm.c
2131 F:      drivers/pci/controller/dwc/pcie-qcom.c
2132 F:      drivers/phy/qualcomm/
2133 F:      drivers/power/*/msm*
2134 F:      drivers/reset/reset-qcom-*
2135 F:      drivers/scsi/ufs/ufs-qcom.*
2136 F:      drivers/spi/spi-qup.c
2137 F:      drivers/spi/spi-geni-qcom.c
2138 F:      drivers/spi/spi-qcom-qspi.c
2139 F:      drivers/tty/serial/msm_serial.c
2140 F:      drivers/usb/dwc3/dwc3-qcom.c
2141 F:      include/dt-bindings/*/qcom*
2142 F:      include/linux/*/qcom*
2143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2144
2145 ARM/RADISYS ENP2611 MACHINE SUPPORT
2146 M:      Lennert Buytenhek <kernel@wantstofly.org>
2147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2148 S:      Maintained
2149
2150 ARM/RDA MICRO ARCHITECTURE
2151 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2153 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2154 S:      Maintained
2155 F:      arch/arm/boot/dts/rda8810pl-*
2156 F:      drivers/clocksource/timer-rda.c
2157 F:      drivers/irqchip/irq-rda-intc.c
2158 F:      drivers/tty/serial/rda-uart.c
2159 F:      Documentation/devicetree/bindings/arm/rda.yaml
2160 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2161 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2162 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2163
2164 ARM/REALTEK ARCHITECTURE
2165 M:      Andreas Färber <afaerber@suse.de>
2166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2167 S:      Maintained
2168 F:      arch/arm64/boot/dts/realtek/
2169 F:      Documentation/devicetree/bindings/arm/realtek.txt
2170
2171 ARM/RENESAS ARM64 ARCHITECTURE
2172 M:      Simon Horman <horms@verge.net.au>
2173 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2174 M:      Magnus Damm <magnus.damm@gmail.com>
2175 L:      linux-renesas-soc@vger.kernel.org
2176 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
2178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2179 S:      Supported
2180 F:      arch/arm64/boot/dts/renesas/
2181 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2182 F:      drivers/soc/renesas/
2183 F:      include/linux/soc/renesas/
2184
2185 ARM/RISCPC ARCHITECTURE
2186 M:      Russell King <linux@armlinux.org.uk>
2187 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2188 W:      http://www.armlinux.org.uk/
2189 S:      Maintained
2190 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2191 F:      arch/arm/include/asm/hardware/ioc.h
2192 F:      arch/arm/include/asm/hardware/iomd.h
2193 F:      arch/arm/include/asm/hardware/memc.h
2194 F:      arch/arm/mach-rpc/
2195 F:      drivers/net/ethernet/8390/etherh.c
2196 F:      drivers/net/ethernet/i825xx/ether1*
2197 F:      drivers/net/ethernet/seeq/ether3*
2198 F:      drivers/scsi/arm/
2199
2200 ARM/Rockchip SoC support
2201 M:      Heiko Stuebner <heiko@sntech.de>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 L:      linux-rockchip@lists.infradead.org
2204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2205 S:      Maintained
2206 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.txt
2207 F:      arch/arm/boot/dts/rk3*
2208 F:      arch/arm/boot/dts/rv1108*
2209 F:      arch/arm/mach-rockchip/
2210 F:      drivers/clk/rockchip/
2211 F:      drivers/i2c/busses/i2c-rk3x.c
2212 F:      drivers/*/*rockchip*
2213 F:      drivers/*/*/*rockchip*
2214 F:      sound/soc/rockchip/
2215 N:      rockchip
2216
2217 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2218 M:      Kukjin Kim <kgene@kernel.org>
2219 M:      Krzysztof Kozlowski <krzk@kernel.org>
2220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2221 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2222 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2223 S:      Maintained
2224 F:      arch/arm/boot/dts/s3c*
2225 F:      arch/arm/boot/dts/s5p*
2226 F:      arch/arm/boot/dts/exynos*
2227 F:      arch/arm64/boot/dts/exynos/
2228 F:      arch/arm/plat-samsung/
2229 F:      arch/arm/mach-s3c24*/
2230 F:      arch/arm/mach-s3c64xx/
2231 F:      arch/arm/mach-s5p*/
2232 F:      arch/arm/mach-exynos*/
2233 F:      drivers/*/*s3c24*
2234 F:      drivers/*/*/*s3c24*
2235 F:      drivers/*/*s3c64xx*
2236 F:      drivers/*/*s5pv210*
2237 F:      drivers/memory/samsung/
2238 F:      drivers/soc/samsung/
2239 F:      include/linux/soc/samsung/
2240 F:      Documentation/arm/samsung/
2241 F:      Documentation/devicetree/bindings/arm/samsung/
2242 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
2243 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
2244 N:      exynos
2245
2246 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2247 M:      Kyungmin Park <kyungmin.park@samsung.com>
2248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2249 S:      Maintained
2250 F:      arch/arm/mach-s5pv210/
2251
2252 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2253 M:      Kyungmin Park <kyungmin.park@samsung.com>
2254 M:      Kamil Debski <kamil@wypas.org>
2255 M:      Andrzej Hajda <a.hajda@samsung.com>
2256 L:      linux-arm-kernel@lists.infradead.org
2257 L:      linux-media@vger.kernel.org
2258 S:      Maintained
2259 F:      drivers/media/platform/s5p-g2d/
2260
2261 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2262 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2263 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2264 L:      linux-media@vger.kernel.org
2265 S:      Maintained
2266 F:      drivers/media/platform/s5p-cec/
2267 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2268
2269 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2270 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2271 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2272 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2273 L:      linux-arm-kernel@lists.infradead.org
2274 L:      linux-media@vger.kernel.org
2275 S:      Maintained
2276 F:      drivers/media/platform/s5p-jpeg/
2277
2278 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2279 M:      Kyungmin Park <kyungmin.park@samsung.com>
2280 M:      Kamil Debski <kamil@wypas.org>
2281 M:      Jeongtae Park <jtp.park@samsung.com>
2282 M:      Andrzej Hajda <a.hajda@samsung.com>
2283 L:      linux-arm-kernel@lists.infradead.org
2284 L:      linux-media@vger.kernel.org
2285 S:      Maintained
2286 F:      drivers/media/platform/s5p-mfc/
2287
2288 ARM/SHMOBILE ARM ARCHITECTURE
2289 M:      Simon Horman <horms@verge.net.au>
2290 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2291 M:      Magnus Damm <magnus.damm@gmail.com>
2292 L:      linux-renesas-soc@vger.kernel.org
2293 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
2295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2296 S:      Supported
2297 F:      arch/arm/boot/dts/emev2*
2298 F:      arch/arm/boot/dts/gr-peach*
2299 F:      arch/arm/boot/dts/iwg20d-q7*
2300 F:      arch/arm/boot/dts/r7s*
2301 F:      arch/arm/boot/dts/r8a*
2302 F:      arch/arm/boot/dts/r9a*
2303 F:      arch/arm/boot/dts/sh*
2304 F:      arch/arm/configs/shmobile_defconfig
2305 F:      arch/arm/include/debug/renesas-scif.S
2306 F:      arch/arm/mach-shmobile/
2307 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2308 F:      drivers/soc/renesas/
2309 F:      include/linux/soc/renesas/
2310
2311 ARM/SOCFPGA ARCHITECTURE
2312 M:      Dinh Nguyen <dinguyen@kernel.org>
2313 S:      Maintained
2314 F:      arch/arm/mach-socfpga/
2315 F:      arch/arm/boot/dts/socfpga*
2316 F:      arch/arm/configs/socfpga_defconfig
2317 F:      arch/arm64/boot/dts/altera/
2318 F:      arch/arm64/boot/dts/intel/
2319 W:      http://www.rocketboards.org
2320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2321
2322 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2323 M:      Dinh Nguyen <dinguyen@kernel.org>
2324 S:      Maintained
2325 F:      drivers/clk/socfpga/
2326
2327 ARM/SOCFPGA EDAC SUPPORT
2328 M:      Thor Thayer <thor.thayer@linux.intel.com>
2329 S:      Maintained
2330 F:      drivers/edac/altera_edac.
2331
2332 ARM/SPREADTRUM SoC SUPPORT
2333 M:      Orson Zhai <orsonzhai@gmail.com>
2334 M:      Baolin Wang <baolin.wang@linaro.org>
2335 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2336 S:      Maintained
2337 F:      arch/arm64/boot/dts/sprd
2338 N:      sprd
2339
2340 ARM/STI ARCHITECTURE
2341 M:      Patrice Chotard <patrice.chotard@st.com>
2342 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2343 W:      http://www.stlinux.com
2344 S:      Maintained
2345 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2346 F:      arch/arm/mach-sti/
2347 F:      arch/arm/boot/dts/sti*
2348 F:      drivers/char/hw_random/st-rng.c
2349 F:      drivers/clocksource/arm_global_timer.c
2350 F:      drivers/clocksource/clksrc_st_lpc.c
2351 F:      drivers/cpufreq/sti-cpufreq.c
2352 F:      drivers/dma/st_fdma*
2353 F:      drivers/i2c/busses/i2c-st.c
2354 F:      drivers/media/rc/st_rc.c
2355 F:      drivers/media/platform/sti/c8sectpfe/
2356 F:      drivers/mmc/host/sdhci-st.c
2357 F:      drivers/phy/st/phy-miphy28lp.c
2358 F:      drivers/phy/st/phy-stih407-usb.c
2359 F:      drivers/pinctrl/pinctrl-st.c
2360 F:      drivers/remoteproc/st_remoteproc.c
2361 F:      drivers/remoteproc/st_slim_rproc.c
2362 F:      drivers/reset/sti/
2363 F:      drivers/rtc/rtc-st-lpc.c
2364 F:      drivers/tty/serial/st-asc.c
2365 F:      drivers/usb/dwc3/dwc3-st.c
2366 F:      drivers/usb/host/ehci-st.c
2367 F:      drivers/usb/host/ohci-st.c
2368 F:      drivers/watchdog/st_lpc_wdt.c
2369 F:      drivers/ata/ahci_st.c
2370 F:      include/linux/remoteproc/st_slim_rproc.h
2371
2372 ARM/STM32 ARCHITECTURE
2373 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2374 M:      Alexandre Torgue <alexandre.torgue@st.com>
2375 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2377 S:      Maintained
2378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2379 N:      stm32
2380 N:      stm
2381 F:      arch/arm/boot/dts/stm32*
2382 F:      arch/arm/mach-stm32/
2383 F:      drivers/clocksource/armv7m_systick.c
2384
2385 ARM/Synaptics SoC support
2386 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2387 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2389 S:      Maintained
2390 F:      arch/arm/mach-berlin/
2391 F:      arch/arm/boot/dts/berlin*
2392 F:      arch/arm64/boot/dts/synaptics/
2393
2394 ARM/TANGO ARCHITECTURE
2395 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2396 M:      Mans Rullgard <mans@mansr.com>
2397 L:      linux-arm-kernel@lists.infradead.org
2398 S:      Odd Fixes
2399 N:      tango
2400
2401 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2402 M:      Lennert Buytenhek <kernel@wantstofly.org>
2403 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2404 S:      Maintained
2405
2406 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2407 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2408 L:      linux-tegra@vger.kernel.org
2409 L:      linux-media@vger.kernel.org
2410 S:      Maintained
2411 F:      drivers/media/platform/tegra-cec/
2412 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2413
2414 ARM/TETON BGA MACHINE SUPPORT
2415 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2416 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2417 S:      Maintained
2418
2419 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2420 M:      Santosh Shilimkar <ssantosh@kernel.org>
2421 L:      linux-kernel@vger.kernel.org
2422 S:      Maintained
2423 F:      drivers/memory/*emif*
2424
2425 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2426 M:      Tero Kristo <t-kristo@ti.com>
2427 M:      Nishanth Menon <nm@ti.com>
2428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2429 S:      Supported
2430 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2431 F:      arch/arm64/boot/dts/ti/Makefile
2432 F:      arch/arm64/boot/dts/ti/k3-*
2433 F:      include/dt-bindings/pinctrl/k3.h
2434
2435 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2436 M:      Santosh Shilimkar <ssantosh@kernel.org>
2437 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2438 S:      Maintained
2439 F:      arch/arm/mach-keystone/
2440 F:      arch/arm/boot/dts/keystone-*
2441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2442
2443 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2444 M:      Santosh Shilimkar <ssantosh@kernel.org>
2445 L:      linux-kernel@vger.kernel.org
2446 S:      Maintained
2447 F:      drivers/clk/keystone/
2448
2449 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2450 M:      Santosh Shilimkar <ssantosh@kernel.org>
2451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2452 L:      linux-kernel@vger.kernel.org
2453 S:      Maintained
2454 F:      drivers/clocksource/timer-keystone.c
2455
2456 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2457 M:      Santosh Shilimkar <ssantosh@kernel.org>
2458 L:      linux-kernel@vger.kernel.org
2459 S:      Maintained
2460 F:      drivers/power/reset/keystone-reset.c
2461
2462 ARM/THECUS N2100 MACHINE SUPPORT
2463 M:      Lennert Buytenhek <kernel@wantstofly.org>
2464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2465 S:      Maintained
2466
2467 ARM/TOSA MACHINE SUPPORT
2468 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2469 M:      Dirk Opfer <dirk@opfer-online.de>
2470 S:      Maintained
2471
2472 ARM/UNIPHIER ARCHITECTURE
2473 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2476 S:      Maintained
2477 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.txt
2478 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2479 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2480 F:      arch/arm/boot/dts/uniphier*
2481 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2482 F:      arch/arm/mach-uniphier/
2483 F:      arch/arm/mm/cache-uniphier.c
2484 F:      arch/arm64/boot/dts/socionext/uniphier*
2485 F:      drivers/bus/uniphier-system-bus.c
2486 F:      drivers/clk/uniphier/
2487 F:      drivers/dma/uniphier-mdmac.c
2488 F:      drivers/gpio/gpio-uniphier.c
2489 F:      drivers/i2c/busses/i2c-uniphier*
2490 F:      drivers/irqchip/irq-uniphier-aidet.c
2491 F:      drivers/mmc/host/uniphier-sd.c
2492 F:      drivers/pinctrl/uniphier/
2493 F:      drivers/reset/reset-uniphier.c
2494 F:      drivers/tty/serial/8250/8250_uniphier.c
2495 N:      uniphier
2496
2497 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2498 M:      Ulf Hansson <ulf.hansson@linaro.org>
2499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2500 T:      git git://git.linaro.org/people/ulfh/clk.git
2501 S:      Maintained
2502 F:      drivers/clk/ux500/
2503
2504 ARM/VERSATILE EXPRESS PLATFORM
2505 M:      Liviu Dudau <liviu.dudau@arm.com>
2506 M:      Sudeep Holla <sudeep.holla@arm.com>
2507 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2509 S:      Maintained
2510 F:      arch/arm/boot/dts/vexpress*
2511 F:      arch/arm64/boot/dts/arm/
2512 F:      arch/arm/mach-vexpress/
2513 F:      */*/vexpress*
2514 F:      */*/*/vexpress*
2515 F:      drivers/clk/versatile/clk-vexpress-osc.c
2516 F:      drivers/clocksource/timer-versatile.c
2517 N:      mps2
2518
2519 ARM/VFP SUPPORT
2520 M:      Russell King <linux@armlinux.org.uk>
2521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2522 W:      http://www.armlinux.org.uk/
2523 S:      Maintained
2524 F:      arch/arm/vfp/
2525
2526 ARM/VOIPAC PXA270 SUPPORT
2527 M:      Marek Vasut <marek.vasut@gmail.com>
2528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2529 S:      Maintained
2530 F:      arch/arm/mach-pxa/vpac270.c
2531 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2532
2533 ARM/VT8500 ARM ARCHITECTURE
2534 M:      Tony Prisk <linux@prisktech.co.nz>
2535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2536 S:      Maintained
2537 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2538 F:      arch/arm/mach-vt8500/
2539 F:      drivers/clocksource/timer-vt8500.c
2540 F:      drivers/i2c/busses/i2c-wmt.c
2541 F:      drivers/mmc/host/wmt-sdmmc.c
2542 F:      drivers/pwm/pwm-vt8500.c
2543 F:      drivers/rtc/rtc-vt8500.c
2544 F:      drivers/tty/serial/vt8500_serial.c
2545 F:      drivers/usb/host/ehci-platform.c
2546 F:      drivers/usb/host/uhci-platform.c
2547 F:      drivers/video/fbdev/vt8500lcdfb.*
2548 F:      drivers/video/fbdev/wm8505fb*
2549 F:      drivers/video/fbdev/wmt_ge_rops.*
2550
2551 ARM/ZIPIT Z2 SUPPORT
2552 M:      Marek Vasut <marek.vasut@gmail.com>
2553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2554 S:      Maintained
2555 F:      arch/arm/mach-pxa/z2.c
2556 F:      arch/arm/mach-pxa/include/mach/z2.h
2557
2558 ARM/ZTE ARCHITECTURE
2559 M:      Jun Nie <jun.nie@linaro.org>
2560 M:      Shawn Guo <shawnguo@kernel.org>
2561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2562 S:      Maintained
2563 F:      arch/arm/boot/dts/zx2967*
2564 F:      arch/arm/mach-zx/
2565 F:      arch/arm64/boot/dts/zte/
2566 F:      drivers/clk/zte/
2567 F:      drivers/dma/zx_dma.c
2568 F:      drivers/gpio/gpio-zx.c
2569 F:      drivers/i2c/busses/i2c-zx2967.c
2570 F:      drivers/mmc/host/dw_mmc-zx.*
2571 F:      drivers/pinctrl/zte/
2572 F:      drivers/soc/zte/
2573 F:      drivers/thermal/zx2967_thermal.c
2574 F:      drivers/watchdog/zx2967_wdt.c
2575 F:      Documentation/devicetree/bindings/arm/zte.yaml
2576 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2577 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2578 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2579 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2580 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2581 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2582 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2583 F:      Documentation/devicetree/bindings/soc/zte/
2584 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2585 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2586 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2587 F:      include/dt-bindings/clock/zx2967*.h
2588 F:      include/dt-bindings/soc/zte,*.h
2589 F:      sound/soc/codecs/zx_aud96p22.c
2590 F:      sound/soc/zte/
2591
2592 ARM/ZYNQ ARCHITECTURE
2593 M:      Michal Simek <michal.simek@xilinx.com>
2594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2595 W:      http://wiki.xilinx.com
2596 T:      git https://github.com/Xilinx/linux-xlnx.git
2597 S:      Supported
2598 F:      arch/arm/mach-zynq/
2599 F:      drivers/cpuidle/cpuidle-zynq.c
2600 F:      drivers/block/xsysace.c
2601 N:      zynq
2602 N:      xilinx
2603 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2604 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2605 F:      drivers/clocksource/timer-cadence-ttc.c
2606 F:      drivers/i2c/busses/i2c-cadence.c
2607 F:      drivers/mmc/host/sdhci-of-arasan.c
2608 F:      drivers/edac/synopsys_edac.c
2609 F:      drivers/i2c/busses/i2c-xiic.c
2610
2611 ARM64 PORT (AARCH64 ARCHITECTURE)
2612 M:      Catalin Marinas <catalin.marinas@arm.com>
2613 M:      Will Deacon <will@kernel.org>
2614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2616 S:      Maintained
2617 F:      arch/arm64/
2618 X:      arch/arm64/boot/dts/
2619 F:      Documentation/arm64/
2620
2621 AS3645A LED FLASH CONTROLLER DRIVER
2622 M:      Sakari Ailus <sakari.ailus@iki.fi>
2623 L:      linux-leds@vger.kernel.org
2624 S:      Maintained
2625 F:      drivers/leds/leds-as3645a.c
2626
2627 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2628 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2629 L:      linux-media@vger.kernel.org
2630 T:      git git://linuxtv.org/media_tree.git
2631 S:      Maintained
2632 F:      drivers/media/i2c/ak7375.c
2633 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2634
2635 ASAHI KASEI AK8974 DRIVER
2636 M:      Linus Walleij <linus.walleij@linaro.org>
2637 L:      linux-iio@vger.kernel.org
2638 W:      http://www.akm.com/
2639 S:      Supported
2640 F:      drivers/iio/magnetometer/ak8974.c
2641
2642 ASC7621 HARDWARE MONITOR DRIVER
2643 M:      George Joseph <george.joseph@fairview5.com>
2644 L:      linux-hwmon@vger.kernel.org
2645 S:      Maintained
2646 F:      Documentation/hwmon/asc7621.rst
2647 F:      drivers/hwmon/asc7621.c
2648
2649 ASPEED PINCTRL DRIVERS
2650 M:      Andrew Jeffery <andrew@aj.id.au>
2651 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2652 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2653 L:      linux-gpio@vger.kernel.org
2654 S:      Maintained
2655 F:      drivers/pinctrl/aspeed/
2656 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2657
2658 ASPEED VIDEO ENGINE DRIVER
2659 M:      Eddie James <eajames@linux.ibm.com>
2660 L:      linux-media@vger.kernel.org
2661 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2662 S:      Maintained
2663 F:      drivers/media/platform/aspeed-video.c
2664 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2665
2666 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2667 M:      Corentin Chary <corentin.chary@gmail.com>
2668 L:      acpi4asus-user@lists.sourceforge.net
2669 L:      platform-driver-x86@vger.kernel.org
2670 W:      http://acpi4asus.sf.net
2671 S:      Maintained
2672 F:      drivers/platform/x86/asus*.c
2673 F:      drivers/platform/x86/eeepc*.c
2674
2675 ASUS WIRELESS RADIO CONTROL DRIVER
2676 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2677 L:      platform-driver-x86@vger.kernel.org
2678 S:      Maintained
2679 F:      drivers/platform/x86/asus-wireless.c
2680
2681 ASYMMETRIC KEYS
2682 M:      David Howells <dhowells@redhat.com>
2683 L:      keyrings@vger.kernel.org
2684 S:      Maintained
2685 F:      Documentation/crypto/asymmetric-keys.txt
2686 F:      include/linux/verification.h
2687 F:      include/crypto/public_key.h
2688 F:      include/crypto/pkcs7.h
2689 F:      crypto/asymmetric_keys/
2690
2691 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2692 R:      Dan Williams <dan.j.williams@intel.com>
2693 W:      http://sourceforge.net/projects/xscaleiop
2694 S:      Odd fixes
2695 F:      Documentation/crypto/async-tx-api.txt
2696 F:      crypto/async_tx/
2697 F:      drivers/dma/
2698 F:      include/linux/dmaengine.h
2699 F:      include/linux/async_tx.h
2700
2701 AT24 EEPROM DRIVER
2702 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2703 L:      linux-i2c@vger.kernel.org
2704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2705 S:      Maintained
2706 F:      Documentation/devicetree/bindings/eeprom/at24.txt
2707 F:      drivers/misc/eeprom/at24.c
2708
2709 ATA OVER ETHERNET (AOE) DRIVER
2710 M:      "Justin Sanders" <justin@coraid.com>
2711 W:      http://www.openaoe.org/
2712 S:      Supported
2713 F:      Documentation/admin-guide/aoe/
2714 F:      drivers/block/aoe/
2715
2716 ATHEROS 71XX/9XXX GPIO DRIVER
2717 M:      Alban Bedel <albeu@free.fr>
2718 W:      https://github.com/AlbanBedel/linux
2719 T:      git git://github.com/AlbanBedel/linux
2720 S:      Maintained
2721 F:      drivers/gpio/gpio-ath79.c
2722 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2723
2724 ATHEROS 71XX/9XXX USB PHY DRIVER
2725 M:      Alban Bedel <albeu@free.fr>
2726 W:      https://github.com/AlbanBedel/linux
2727 T:      git git://github.com/AlbanBedel/linux
2728 S:      Maintained
2729 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2730 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2731
2732 ATHEROS ATH GENERIC UTILITIES
2733 M:      Kalle Valo <kvalo@codeaurora.org>
2734 L:      linux-wireless@vger.kernel.org
2735 S:      Supported
2736 F:      drivers/net/wireless/ath/*
2737
2738 ATHEROS ATH5K WIRELESS DRIVER
2739 M:      Jiri Slaby <jirislaby@gmail.com>
2740 M:      Nick Kossifidis <mickflemm@gmail.com>
2741 M:      Luis Chamberlain <mcgrof@kernel.org>
2742 L:      linux-wireless@vger.kernel.org
2743 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2744 S:      Maintained
2745 F:      drivers/net/wireless/ath/ath5k/
2746
2747 ATHEROS ATH6KL WIRELESS DRIVER
2748 M:      Kalle Valo <kvalo@codeaurora.org>
2749 L:      linux-wireless@vger.kernel.org
2750 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2752 S:      Supported
2753 F:      drivers/net/wireless/ath/ath6kl/
2754
2755 ATI_REMOTE2 DRIVER
2756 M:      Ville Syrjala <syrjala@sci.fi>
2757 S:      Maintained
2758 F:      drivers/input/misc/ati_remote2.c
2759
2760 ATK0110 HWMON DRIVER
2761 M:      Luca Tettamanti <kronos.it@gmail.com>
2762 L:      linux-hwmon@vger.kernel.org
2763 S:      Maintained
2764 F:      drivers/hwmon/asus_atk0110.c
2765
2766 ATLX ETHERNET DRIVERS
2767 M:      Jay Cliburn <jcliburn@gmail.com>
2768 M:      Chris Snook <chris.snook@gmail.com>
2769 L:      netdev@vger.kernel.org
2770 W:      http://sourceforge.net/projects/atl1
2771 W:      http://atl1.sourceforge.net
2772 S:      Maintained
2773 F:      drivers/net/ethernet/atheros/
2774
2775 ATM
2776 M:      Chas Williams <3chas3@gmail.com>
2777 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2778 L:      netdev@vger.kernel.org
2779 W:      http://linux-atm.sourceforge.net
2780 S:      Maintained
2781 F:      drivers/atm/
2782 F:      include/linux/atm*
2783 F:      include/uapi/linux/atm*
2784
2785 ATMEL MACB ETHERNET DRIVER
2786 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2787 S:      Supported
2788 F:      drivers/net/ethernet/cadence/
2789
2790 ATMEL MAXTOUCH DRIVER
2791 M:      Nick Dyer <nick@shmanahar.org>
2792 T:      git git://github.com/ndyer/linux.git
2793 S:      Maintained
2794 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2795 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2796
2797 ATMEL WIRELESS DRIVER
2798 M:      Simon Kelley <simon@thekelleys.org.uk>
2799 L:      linux-wireless@vger.kernel.org
2800 W:      http://www.thekelleys.org.uk/atmel
2801 W:      http://atmelwlandriver.sourceforge.net/
2802 S:      Maintained
2803 F:      drivers/net/wireless/atmel/atmel*
2804
2805 ATOMIC INFRASTRUCTURE
2806 M:      Will Deacon <will@kernel.org>
2807 M:      Peter Zijlstra <peterz@infradead.org>
2808 R:      Boqun Feng <boqun.feng@gmail.com>
2809 L:      linux-kernel@vger.kernel.org
2810 S:      Maintained
2811 F:      arch/*/include/asm/atomic*.h
2812 F:      include/*/atomic*.h
2813 F:      scripts/atomic/
2814
2815 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2816 M:      Bradley Grove <linuxdrivers@attotech.com>
2817 L:      linux-scsi@vger.kernel.org
2818 W:      http://www.attotech.com
2819 S:      Supported
2820 F:      drivers/scsi/esas2r
2821
2822 ATUSB IEEE 802.15.4 RADIO DRIVER
2823 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2824 L:      linux-wpan@vger.kernel.org
2825 S:      Maintained
2826 F:      drivers/net/ieee802154/atusb.c
2827 F:      drivers/net/ieee802154/atusb.h
2828 F:      drivers/net/ieee802154/at86rf230.h
2829
2830 AUDIT SUBSYSTEM
2831 M:      Paul Moore <paul@paul-moore.com>
2832 M:      Eric Paris <eparis@redhat.com>
2833 L:      linux-audit@redhat.com (moderated for non-subscribers)
2834 W:      https://github.com/linux-audit
2835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2836 S:      Supported
2837 F:      include/linux/audit.h
2838 F:      include/uapi/linux/audit.h
2839 F:      kernel/audit*
2840
2841 AUXILIARY DISPLAY DRIVERS
2842 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2843 S:      Maintained
2844 F:      drivers/auxdisplay/
2845 F:      include/linux/cfag12864b.h
2846
2847 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2848 M:      Andreas Klinger <ak@it-klinger.de>
2849 L:      linux-iio@vger.kernel.org
2850 S:      Maintained
2851 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2852 F:      drivers/iio/adc/hx711.c
2853
2854 AX.25 NETWORK LAYER
2855 M:      Ralf Baechle <ralf@linux-mips.org>
2856 L:      linux-hams@vger.kernel.org
2857 W:      http://www.linux-ax25.org/
2858 S:      Maintained
2859 F:      include/uapi/linux/ax25.h
2860 F:      include/net/ax25.h
2861 F:      net/ax25/
2862
2863 AXENTIA ARM DEVICES
2864 M:      Peter Rosin <peda@axentia.se>
2865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2866 S:      Maintained
2867 F:      Documentation/devicetree/bindings/arm/axentia.txt
2868 F:      arch/arm/boot/dts/at91-linea.dtsi
2869 F:      arch/arm/boot/dts/at91-natte.dtsi
2870 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2871 F:      arch/arm/boot/dts/at91-tse850-3.dts
2872
2873 AXENTIA ASOC DRIVERS
2874 M:      Peter Rosin <peda@axentia.se>
2875 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2876 S:      Maintained
2877 F:      Documentation/devicetree/bindings/sound/axentia,*
2878 F:      sound/soc/atmel/tse850-pcm5142.c
2879
2880 AXXIA I2C CONTROLLER
2881 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
2882 L:      linux-i2c@vger.kernel.org
2883 S:      Maintained
2884 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2885 F:      drivers/i2c/busses/i2c-axxia.c
2886
2887 AZ6007 DVB DRIVER
2888 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2889 L:      linux-media@vger.kernel.org
2890 W:      https://linuxtv.org
2891 T:      git git://linuxtv.org/media_tree.git
2892 S:      Maintained
2893 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2894
2895 AZTECH FM RADIO RECEIVER DRIVER
2896 M:      Hans Verkuil <hverkuil@xs4all.nl>
2897 L:      linux-media@vger.kernel.org
2898 T:      git git://linuxtv.org/media_tree.git
2899 W:      https://linuxtv.org
2900 S:      Maintained
2901 F:      drivers/media/radio/radio-aztech*
2902
2903 B43 WIRELESS DRIVER
2904 L:      linux-wireless@vger.kernel.org
2905 L:      b43-dev@lists.infradead.org
2906 W:      http://wireless.kernel.org/en/users/Drivers/b43
2907 S:      Odd Fixes
2908 F:      drivers/net/wireless/broadcom/b43/
2909
2910 B43LEGACY WIRELESS DRIVER
2911 M:      Larry Finger <Larry.Finger@lwfinger.net>
2912 L:      linux-wireless@vger.kernel.org
2913 L:      b43-dev@lists.infradead.org
2914 W:      http://wireless.kernel.org/en/users/Drivers/b43
2915 S:      Maintained
2916 F:      drivers/net/wireless/broadcom/b43legacy/
2917
2918 BACKLIGHT CLASS/SUBSYSTEM
2919 M:      Lee Jones <lee.jones@linaro.org>
2920 M:      Daniel Thompson <daniel.thompson@linaro.org>
2921 M:      Jingoo Han <jingoohan1@gmail.com>
2922 L:      dri-devel@lists.freedesktop.org
2923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2924 S:      Maintained
2925 F:      drivers/video/backlight/
2926 F:      include/linux/backlight.h
2927 F:      include/linux/pwm_backlight.h
2928 F:      Documentation/devicetree/bindings/leds/backlight
2929
2930 BATMAN ADVANCED
2931 M:      Marek Lindner <mareklindner@neomailbox.ch>
2932 M:      Simon Wunderlich <sw@simonwunderlich.de>
2933 M:      Antonio Quartulli <a@unstable.cc>
2934 M:      Sven Eckelmann <sven@narfation.org>
2935 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2936 W:      https://www.open-mesh.org/
2937 B:      https://www.open-mesh.org/projects/batman-adv/issues
2938 C:      irc://chat.freenode.net/batman
2939 Q:      https://patchwork.open-mesh.org/project/batman/list/
2940 T:      git https://git.open-mesh.org/linux-merge.git
2941 S:      Maintained
2942 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
2943 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
2944 F:      Documentation/networking/batman-adv.rst
2945 F:      include/uapi/linux/batadv_packet.h
2946 F:      include/uapi/linux/batman_adv.h
2947 F:      net/batman-adv/
2948
2949 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2950 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2951 L:      linux-hams@vger.kernel.org
2952 W:      http://www.baycom.org/~tom/ham/ham.html
2953 S:      Maintained
2954 F:      drivers/net/hamradio/baycom*
2955
2956 BCACHE (BLOCK LAYER CACHE)
2957 M:      Coly Li <colyli@suse.de>
2958 M:      Kent Overstreet <kent.overstreet@gmail.com>
2959 L:      linux-bcache@vger.kernel.org
2960 W:      http://bcache.evilpiepirate.org
2961 C:      irc://irc.oftc.net/bcache
2962 S:      Maintained
2963 F:      drivers/md/bcache/
2964
2965 BDISP ST MEDIA DRIVER
2966 M:      Fabien Dessenne <fabien.dessenne@st.com>
2967 L:      linux-media@vger.kernel.org
2968 T:      git git://linuxtv.org/media_tree.git
2969 W:      https://linuxtv.org
2970 S:      Supported
2971 F:      drivers/media/platform/sti/bdisp
2972
2973 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2974 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2975 L:      netdev@vger.kernel.org
2976 S:      Maintained
2977 F:      drivers/net/ethernet/ec_bhf.c
2978
2979 BEFS FILE SYSTEM
2980 M:      Luis de Bethencourt <luisbg@kernel.org>
2981 M:      Salah Triki <salah.triki@gmail.com>
2982 S:      Maintained
2983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2984 F:      Documentation/filesystems/befs.txt
2985 F:      fs/befs/
2986
2987 BFQ I/O SCHEDULER
2988 M:      Paolo Valente <paolo.valente@linaro.org>
2989 M:      Jens Axboe <axboe@kernel.dk>
2990 L:      linux-block@vger.kernel.org
2991 S:      Maintained
2992 F:      block/bfq-*
2993 F:      Documentation/block/bfq-iosched.rst
2994
2995 BFS FILE SYSTEM
2996 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2997 S:      Maintained
2998 F:      Documentation/filesystems/bfs.txt
2999 F:      fs/bfs/
3000 F:      include/uapi/linux/bfs_fs.h
3001
3002 BLINKM RGB LED DRIVER
3003 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3004 S:      Maintained
3005 F:      drivers/leds/leds-blinkm.c
3006
3007 BLOCK LAYER
3008 M:      Jens Axboe <axboe@kernel.dk>
3009 L:      linux-block@vger.kernel.org
3010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3011 S:      Maintained
3012 F:      block/
3013 F:      drivers/block/
3014 F:      kernel/trace/blktrace.c
3015 F:      lib/sbitmap.c
3016
3017 BLOCK2MTD DRIVER
3018 M:      Joern Engel <joern@lazybastard.org>
3019 L:      linux-mtd@lists.infradead.org
3020 S:      Maintained
3021 F:      drivers/mtd/devices/block2mtd.c
3022
3023 BLUETOOTH DRIVERS
3024 M:      Marcel Holtmann <marcel@holtmann.org>
3025 M:      Johan Hedberg <johan.hedberg@gmail.com>
3026 L:      linux-bluetooth@vger.kernel.org
3027 W:      http://www.bluez.org/
3028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3030 S:      Maintained
3031 F:      drivers/bluetooth/
3032
3033 BLUETOOTH SUBSYSTEM
3034 M:      Marcel Holtmann <marcel@holtmann.org>
3035 M:      Johan Hedberg <johan.hedberg@gmail.com>
3036 L:      linux-bluetooth@vger.kernel.org
3037 W:      http://www.bluez.org/
3038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3040 S:      Maintained
3041 F:      net/bluetooth/
3042 F:      include/net/bluetooth/
3043
3044 BONDING DRIVER
3045 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3046 M:      Veaceslav Falico <vfalico@gmail.com>
3047 M:      Andy Gospodarek <andy@greyhouse.net>
3048 L:      netdev@vger.kernel.org
3049 W:      http://sourceforge.net/projects/bonding/
3050 S:      Supported
3051 F:      drivers/net/bonding/
3052 F:      include/uapi/linux/if_bonding.h
3053
3054 BPF (Safe dynamic programs and tools)
3055 M:      Alexei Starovoitov <ast@kernel.org>
3056 M:      Daniel Borkmann <daniel@iogearbox.net>
3057 R:      Martin KaFai Lau <kafai@fb.com>
3058 R:      Song Liu <songliubraving@fb.com>
3059 R:      Yonghong Song <yhs@fb.com>
3060 L:      netdev@vger.kernel.org
3061 L:      bpf@vger.kernel.org
3062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3064 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3065 S:      Supported
3066 F:      arch/*/net/*
3067 F:      Documentation/networking/filter.txt
3068 F:      Documentation/bpf/
3069 F:      include/linux/bpf*
3070 F:      include/linux/filter.h
3071 F:      include/trace/events/xdp.h
3072 F:      include/uapi/linux/bpf*
3073 F:      include/uapi/linux/filter.h
3074 F:      kernel/bpf/
3075 F:      kernel/trace/bpf_trace.c
3076 F:      lib/test_bpf.c
3077 F:      net/bpf/
3078 F:      net/core/filter.c
3079 F:      net/sched/act_bpf.c
3080 F:      net/sched/cls_bpf.c
3081 F:      samples/bpf/
3082 F:      tools/bpf/
3083 F:      tools/lib/bpf/
3084 F:      tools/testing/selftests/bpf/
3085 K:      bpf
3086 N:      bpf
3087
3088 BPF JIT for ARM
3089 M:      Shubham Bansal <illusionist.neo@gmail.com>
3090 L:      netdev@vger.kernel.org
3091 L:      bpf@vger.kernel.org
3092 S:      Maintained
3093 F:      arch/arm/net/
3094
3095 BPF JIT for ARM64
3096 M:      Daniel Borkmann <daniel@iogearbox.net>
3097 M:      Alexei Starovoitov <ast@kernel.org>
3098 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3099 L:      netdev@vger.kernel.org
3100 L:      bpf@vger.kernel.org
3101 S:      Supported
3102 F:      arch/arm64/net/
3103
3104 BPF JIT for MIPS (32-BIT AND 64-BIT)
3105 M:      Paul Burton <paul.burton@mips.com>
3106 L:      netdev@vger.kernel.org
3107 L:      bpf@vger.kernel.org
3108 S:      Maintained
3109 F:      arch/mips/net/
3110
3111 BPF JIT for NFP NICs
3112 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
3113 L:      netdev@vger.kernel.org
3114 L:      bpf@vger.kernel.org
3115 S:      Supported
3116 F:      drivers/net/ethernet/netronome/nfp/bpf/
3117
3118 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3119 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3120 M:      Sandipan Das <sandipan@linux.ibm.com>
3121 L:      netdev@vger.kernel.org
3122 L:      bpf@vger.kernel.org
3123 S:      Maintained
3124 F:      arch/powerpc/net/
3125
3126 BPF JIT for RISC-V (RV64G)
3127 M:      Björn Töpel <bjorn.topel@gmail.com>
3128 L:      netdev@vger.kernel.org
3129 S:      Maintained
3130 F:      arch/riscv/net/
3131
3132 BPF JIT for S390
3133 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3134 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3135 M:      Vasily Gorbik <gor@linux.ibm.com>
3136 L:      netdev@vger.kernel.org
3137 L:      bpf@vger.kernel.org
3138 S:      Maintained
3139 F:      arch/s390/net/
3140 X:      arch/s390/net/pnet.c
3141
3142 BPF JIT for SPARC (32-BIT AND 64-BIT)
3143 M:      David S. Miller <davem@davemloft.net>
3144 L:      netdev@vger.kernel.org
3145 L:      bpf@vger.kernel.org
3146 S:      Maintained
3147 F:      arch/sparc/net/
3148
3149 BPF JIT for X86 32-BIT
3150 M:      Wang YanQing <udknight@gmail.com>
3151 L:      netdev@vger.kernel.org
3152 L:      bpf@vger.kernel.org
3153 S:      Maintained
3154 F:      arch/x86/net/bpf_jit_comp32.c
3155
3156 BPF JIT for X86 64-BIT
3157 M:      Alexei Starovoitov <ast@kernel.org>
3158 M:      Daniel Borkmann <daniel@iogearbox.net>
3159 L:      netdev@vger.kernel.org
3160 L:      bpf@vger.kernel.org
3161 S:      Supported
3162 F:      arch/x86/net/
3163 X:      arch/x86/net/bpf_jit_comp32.c
3164
3165 BROADCOM B44 10/100 ETHERNET DRIVER
3166 M:      Michael Chan <michael.chan@broadcom.com>
3167 L:      netdev@vger.kernel.org
3168 S:      Supported
3169 F:      drivers/net/ethernet/broadcom/b44.*
3170
3171 BROADCOM B53 ETHERNET SWITCH DRIVER
3172 M:      Florian Fainelli <f.fainelli@gmail.com>
3173 L:      netdev@vger.kernel.org
3174 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3175 S:      Supported
3176 F:      drivers/net/dsa/b53/*
3177 F:      include/linux/platform_data/b53.h
3178
3179 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3180 M:      Florian Fainelli <f.fainelli@gmail.com>
3181 M:      Ray Jui <rjui@broadcom.com>
3182 M:      Scott Branden <sbranden@broadcom.com>
3183 M:      bcm-kernel-feedback-list@broadcom.com
3184 T:      git git://github.com/broadcom/mach-bcm
3185 S:      Maintained
3186 N:      bcm281*
3187 N:      bcm113*
3188 N:      bcm216*
3189 N:      kona
3190 F:      arch/arm/mach-bcm/
3191
3192 BROADCOM BCM2835 ARM ARCHITECTURE
3193 M:      Eric Anholt <eric@anholt.net>
3194 M:      Stefan Wahren <wahrenst@gmx.net>
3195 L:      bcm-kernel-feedback-list@broadcom.com
3196 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3198 T:      git git://github.com/anholt/linux
3199 S:      Maintained
3200 N:      bcm2835
3201 F:      drivers/staging/vc04_services
3202
3203 BROADCOM BCM47XX MIPS ARCHITECTURE
3204 M:      Hauke Mehrtens <hauke@hauke-m.de>
3205 M:      Rafał Miłecki <zajec5@gmail.com>
3206 L:      linux-mips@vger.kernel.org
3207 S:      Maintained
3208 F:      Documentation/devicetree/bindings/mips/brcm/
3209 F:      arch/mips/bcm47xx/*
3210 F:      arch/mips/include/asm/mach-bcm47xx/*
3211
3212 BROADCOM BCM5301X ARM ARCHITECTURE
3213 M:      Hauke Mehrtens <hauke@hauke-m.de>
3214 M:      Rafał Miłecki <zajec5@gmail.com>
3215 M:      bcm-kernel-feedback-list@broadcom.com
3216 L:      linux-arm-kernel@lists.infradead.org
3217 S:      Maintained
3218 F:      arch/arm/mach-bcm/bcm_5301x.c
3219 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3220 F:      arch/arm/boot/dts/bcm470*
3221 F:      arch/arm/boot/dts/bcm953012*
3222
3223 BROADCOM BCM53573 ARM ARCHITECTURE
3224 M:      Rafał Miłecki <rafal@milecki.pl>
3225 L:      bcm-kernel-feedback-list@broadcom.com
3226 L:      linux-arm-kernel@lists.infradead.org
3227 S:      Maintained
3228 F:      arch/arm/boot/dts/bcm53573*
3229 F:      arch/arm/boot/dts/bcm47189*
3230
3231 BROADCOM BCM63XX ARM ARCHITECTURE
3232 M:      Florian Fainelli <f.fainelli@gmail.com>
3233 M:      bcm-kernel-feedback-list@broadcom.com
3234 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3235 T:      git git://github.com/broadcom/stblinux.git
3236 S:      Maintained
3237 N:      bcm63xx
3238
3239 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3240 M:      Kevin Cernekee <cernekee@gmail.com>
3241 L:      linux-usb@vger.kernel.org
3242 S:      Maintained
3243 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3244
3245 BROADCOM BCM7XXX ARM ARCHITECTURE
3246 M:      Brian Norris <computersforpeace@gmail.com>
3247 M:      Gregory Fong <gregory.0xf0@gmail.com>
3248 M:      Florian Fainelli <f.fainelli@gmail.com>
3249 M:      bcm-kernel-feedback-list@broadcom.com
3250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3251 T:      git git://github.com/broadcom/stblinux.git
3252 S:      Maintained
3253 F:      arch/arm/mach-bcm/*brcmstb*
3254 F:      arch/arm/boot/dts/bcm7*.dts*
3255 F:      drivers/bus/brcmstb_gisb.c
3256 F:      arch/arm/mm/cache-b15-rac.c
3257 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3258 N:      brcmstb
3259
3260 BROADCOM BMIPS CPUFREQ DRIVER
3261 M:      Markus Mayer <mmayer@broadcom.com>
3262 M:      bcm-kernel-feedback-list@broadcom.com
3263 L:      linux-pm@vger.kernel.org
3264 S:      Maintained
3265 F:      drivers/cpufreq/bmips-cpufreq.c
3266
3267 BROADCOM BMIPS MIPS ARCHITECTURE
3268 M:      Kevin Cernekee <cernekee@gmail.com>
3269 M:      Florian Fainelli <f.fainelli@gmail.com>
3270 L:      bcm-kernel-feedback-list@broadcom.com
3271 L:      linux-mips@vger.kernel.org
3272 T:      git git://github.com/broadcom/stblinux.git
3273 S:      Maintained
3274 F:      arch/mips/bmips/*
3275 F:      arch/mips/include/asm/mach-bmips/*
3276 F:      arch/mips/kernel/*bmips*
3277 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3278 F:      drivers/irqchip/irq-bcm63*
3279 F:      drivers/irqchip/irq-bcm7*
3280 F:      drivers/irqchip/irq-brcmstb*
3281 F:      include/linux/bcm963xx_nvram.h
3282 F:      include/linux/bcm963xx_tag.h
3283
3284 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3285 M:      Rasesh Mody <rmody@marvell.com>
3286 M:      GR-Linux-NIC-Dev@marvell.com
3287 L:      netdev@vger.kernel.org
3288 S:      Supported
3289 F:      drivers/net/ethernet/broadcom/bnx2.*
3290 F:      drivers/net/ethernet/broadcom/bnx2_*
3291
3292 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3293 M:      QLogic-Storage-Upstream@qlogic.com
3294 L:      linux-scsi@vger.kernel.org
3295 S:      Supported
3296 F:      drivers/scsi/bnx2fc/
3297
3298 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3299 M:      QLogic-Storage-Upstream@qlogic.com
3300 L:      linux-scsi@vger.kernel.org
3301 S:      Supported
3302 F:      drivers/scsi/bnx2i/
3303
3304 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3305 M:      Ariel Elior <aelior@marvell.com>
3306 M:      Sudarsana Kalluru <skalluru@marvell.com>
3307 M:      GR-everest-linux-l2@marvell.com
3308 L:      netdev@vger.kernel.org
3309 S:      Supported
3310 F:      drivers/net/ethernet/broadcom/bnx2x/
3311
3312 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3313 M:      Michael Chan <michael.chan@broadcom.com>
3314 L:      netdev@vger.kernel.org
3315 S:      Supported
3316 F:      drivers/net/ethernet/broadcom/bnxt/
3317
3318 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3319 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3320 M:      Franky Lin <franky.lin@broadcom.com>
3321 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3322 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3323 M:      Wright Feng <wright.feng@cypress.com>
3324 L:      linux-wireless@vger.kernel.org
3325 L:      brcm80211-dev-list.pdl@broadcom.com
3326 L:      brcm80211-dev-list@cypress.com
3327 S:      Supported
3328 F:      drivers/net/wireless/broadcom/brcm80211/
3329
3330 BROADCOM BRCMSTB GPIO DRIVER
3331 M:      Gregory Fong <gregory.0xf0@gmail.com>
3332 L:      bcm-kernel-feedback-list@broadcom.com
3333 S:      Supported
3334 F:      drivers/gpio/gpio-brcmstb.c
3335 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3336
3337 BROADCOM BRCMSTB I2C DRIVER
3338 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3339 L:      linux-i2c@vger.kernel.org
3340 L:      bcm-kernel-feedback-list@broadcom.com
3341 S:      Supported
3342 F:      drivers/i2c/busses/i2c-brcmstb.c
3343 F:      Documentation/devicetree/bindings/i2c/i2c-brcmstb.txt
3344
3345 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3346 M:      Al Cooper <alcooperx@gmail.com>
3347 L:      linux-kernel@vger.kernel.org
3348 L:      bcm-kernel-feedback-list@broadcom.com
3349 S:      Maintained
3350 F:      drivers/phy/broadcom/phy-brcm-usb*
3351
3352 BROADCOM GENET ETHERNET DRIVER
3353 M:      Doug Berger <opendmb@gmail.com>
3354 M:      Florian Fainelli <f.fainelli@gmail.com>
3355 L:      bcm-kernel-feedback-list@broadcom.com
3356 L:      netdev@vger.kernel.org
3357 S:      Supported
3358 F:      drivers/net/ethernet/broadcom/genet/
3359
3360 BROADCOM IPROC ARM ARCHITECTURE
3361 M:      Ray Jui <rjui@broadcom.com>
3362 M:      Scott Branden <sbranden@broadcom.com>
3363 M:      bcm-kernel-feedback-list@broadcom.com
3364 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3365 T:      git git://github.com/broadcom/cygnus-linux.git
3366 S:      Maintained
3367 N:      iproc
3368 N:      cygnus
3369 N:      bcm[-_]nsp
3370 N:      bcm9113*
3371 N:      bcm9583*
3372 N:      bcm9585*
3373 N:      bcm9586*
3374 N:      bcm988312
3375 N:      bcm113*
3376 N:      bcm583*
3377 N:      bcm585*
3378 N:      bcm586*
3379 N:      bcm88312
3380 N:      hr2
3381 N:      stingray
3382 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3383 F:      arch/arm64/boot/dts/broadcom/stingray/*
3384 F:      drivers/clk/bcm/clk-ns*
3385 F:      drivers/clk/bcm/clk-sr*
3386 F:      drivers/pinctrl/bcm/pinctrl-ns*
3387 F:      include/dt-bindings/clock/bcm-sr*
3388
3389 BROADCOM KONA GPIO DRIVER
3390 M:      Ray Jui <rjui@broadcom.com>
3391 L:      bcm-kernel-feedback-list@broadcom.com
3392 S:      Supported
3393 F:      drivers/gpio/gpio-bcm-kona.c
3394 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3395
3396 BROADCOM NETXTREME-E ROCE DRIVER
3397 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3398 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3399 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3400 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3401 L:      linux-rdma@vger.kernel.org
3402 W:      http://www.broadcom.com
3403 S:      Supported
3404 F:      drivers/infiniband/hw/bnxt_re/
3405 F:      include/uapi/rdma/bnxt_re-abi.h
3406
3407 BROADCOM NVRAM DRIVER
3408 M:      Rafał Miłecki <zajec5@gmail.com>
3409 L:      linux-mips@vger.kernel.org
3410 S:      Maintained
3411 F:      drivers/firmware/broadcom/*
3412
3413 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3414 M:      Rafał Miłecki <zajec5@gmail.com>
3415 L:      linux-wireless@vger.kernel.org
3416 S:      Maintained
3417 F:      drivers/bcma/
3418 F:      include/linux/bcma/
3419
3420 BROADCOM STB AVS CPUFREQ DRIVER
3421 M:      Markus Mayer <mmayer@broadcom.com>
3422 M:      bcm-kernel-feedback-list@broadcom.com
3423 L:      linux-pm@vger.kernel.org
3424 S:      Maintained
3425 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3426 F:      drivers/cpufreq/brcmstb*
3427
3428 BROADCOM STB AVS TMON DRIVER
3429 M:      Markus Mayer <mmayer@broadcom.com>
3430 M:      bcm-kernel-feedback-list@broadcom.com
3431 L:      linux-pm@vger.kernel.org
3432 S:      Maintained
3433 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3434 F:      drivers/thermal/broadcom/brcmstb*
3435
3436 BROADCOM STB NAND FLASH DRIVER
3437 M:      Brian Norris <computersforpeace@gmail.com>
3438 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3439 L:      linux-mtd@lists.infradead.org
3440 L:      bcm-kernel-feedback-list@broadcom.com
3441 S:      Maintained
3442 F:      drivers/mtd/nand/raw/brcmnand/
3443
3444 BROADCOM STB DPFE DRIVER
3445 M:      Markus Mayer <mmayer@broadcom.com>
3446 M:      bcm-kernel-feedback-list@broadcom.com
3447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3448 S:      Maintained
3449 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3450 F:      drivers/memory/brcmstb_dpfe.c
3451
3452 BROADCOM SPI DRIVER
3453 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3454 M:      bcm-kernel-feedback-list@broadcom.com
3455 S:      Maintained
3456 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3457 F:      drivers/spi/spi-bcm-qspi.*
3458 F:      drivers/spi/spi-brcmstb-qspi.c
3459 F:      drivers/spi/spi-iproc-qspi.c
3460
3461 BROADCOM SYSTEMPORT ETHERNET DRIVER
3462 M:      Florian Fainelli <f.fainelli@gmail.com>
3463 L:      bcm-kernel-feedback-list@broadcom.com
3464 L:      netdev@vger.kernel.org
3465 S:      Supported
3466 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3467
3468 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3469 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3470 M:      Prashant Sreedharan <prashant@broadcom.com>
3471 M:      Michael Chan <mchan@broadcom.com>
3472 L:      netdev@vger.kernel.org
3473 S:      Supported
3474 F:      drivers/net/ethernet/broadcom/tg3.*
3475
3476 BROCADE BFA FC SCSI DRIVER
3477 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3478 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3479 L:      linux-scsi@vger.kernel.org
3480 S:      Supported
3481 F:      drivers/scsi/bfa/
3482
3483 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3484 M:      Rasesh Mody <rmody@marvell.com>
3485 M:      Sudarsana Kalluru <skalluru@marvell.com>
3486 M:      GR-Linux-NIC-Dev@marvell.com
3487 L:      netdev@vger.kernel.org
3488 S:      Supported
3489 F:      drivers/net/ethernet/brocade/bna/
3490
3491 BSG (block layer generic sg v4 driver)
3492 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3493 L:      linux-scsi@vger.kernel.org
3494 S:      Supported
3495 F:      block/bsg.c
3496 F:      include/linux/bsg.h
3497 F:      include/uapi/linux/bsg.h
3498
3499 BT87X AUDIO DRIVER
3500 M:      Clemens Ladisch <clemens@ladisch.de>
3501 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3503 S:      Maintained
3504 F:      Documentation/sound/cards/bt87x.rst
3505 F:      sound/pci/bt87x.c
3506
3507 BT8XXGPIO DRIVER
3508 M:      Michael Buesch <m@bues.ch>
3509 W:      http://bu3sch.de/btgpio.php
3510 S:      Maintained
3511 F:      drivers/gpio/gpio-bt8xx.c
3512
3513 BTRFS FILE SYSTEM
3514 M:      Chris Mason <clm@fb.com>
3515 M:      Josef Bacik <josef@toxicpanda.com>
3516 M:      David Sterba <dsterba@suse.com>
3517 L:      linux-btrfs@vger.kernel.org
3518 W:      http://btrfs.wiki.kernel.org/
3519 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3521 S:      Maintained
3522 F:      Documentation/filesystems/btrfs.txt
3523 F:      fs/btrfs/
3524 F:      include/linux/btrfs*
3525 F:      include/uapi/linux/btrfs*
3526
3527 BTTV VIDEO4LINUX DRIVER
3528 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3529 L:      linux-media@vger.kernel.org
3530 W:      https://linuxtv.org
3531 T:      git git://linuxtv.org/media_tree.git
3532 S:      Odd fixes
3533 F:      Documentation/media/v4l-drivers/bttv*
3534 F:      drivers/media/pci/bt8xx/bttv*
3535
3536 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3537 M:      Chanwoo Choi <cw00.choi@samsung.com>
3538 L:      linux-pm@vger.kernel.org
3539 L:      linux-samsung-soc@vger.kernel.org
3540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3541 S:      Maintained
3542 F:      drivers/devfreq/exynos-bus.c
3543 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3544
3545 BUSLOGIC SCSI DRIVER
3546 M:      Khalid Aziz <khalid@gonehiking.org>
3547 L:      linux-scsi@vger.kernel.org
3548 S:      Maintained
3549 F:      drivers/scsi/BusLogic.*
3550 F:      drivers/scsi/FlashPoint.*
3551
3552 C-MEDIA CMI8788 DRIVER
3553 M:      Clemens Ladisch <clemens@ladisch.de>
3554 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3556 S:      Maintained
3557 F:      sound/pci/oxygen/
3558
3559 C-SKY ARCHITECTURE
3560 M:      Guo Ren <guoren@kernel.org>
3561 T:      git https://github.com/c-sky/csky-linux.git
3562 S:      Supported
3563 F:      arch/csky/
3564 F:      Documentation/devicetree/bindings/csky/
3565 F:      drivers/irqchip/irq-csky-*
3566 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3567 F:      drivers/clocksource/timer-gx6605s.c
3568 F:      drivers/clocksource/timer-mp-csky.c
3569 F:      Documentation/devicetree/bindings/timer/csky,*
3570 K:      csky
3571 N:      csky
3572
3573 C6X ARCHITECTURE
3574 M:      Mark Salter <msalter@redhat.com>
3575 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3576 L:      linux-c6x-dev@linux-c6x.org
3577 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3578 S:      Maintained
3579 F:      arch/c6x/
3580
3581 CA8210 IEEE-802.15.4 RADIO DRIVER
3582 M:      Harry Morris <h.morris@cascoda.com>
3583 L:      linux-wpan@vger.kernel.org
3584 W:      https://github.com/Cascoda/ca8210-linux.git
3585 S:      Maintained
3586 F:      drivers/net/ieee802154/ca8210.c
3587 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3588
3589 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3590 M:      David Howells <dhowells@redhat.com>
3591 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3592 S:      Supported
3593 F:      Documentation/filesystems/caching/cachefiles.txt
3594 F:      fs/cachefiles/
3595
3596 CADENCE MIPI-CSI2 BRIDGES
3597 M:      Maxime Ripard <mripard@kernel.org>
3598 L:      linux-media@vger.kernel.org
3599 S:      Maintained
3600 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3601 F:      drivers/media/platform/cadence/cdns-csi2*
3602
3603 CADET FM/AM RADIO RECEIVER DRIVER
3604 M:      Hans Verkuil <hverkuil@xs4all.nl>
3605 L:      linux-media@vger.kernel.org
3606 T:      git git://linuxtv.org/media_tree.git
3607 W:      https://linuxtv.org
3608 S:      Maintained
3609 F:      drivers/media/radio/radio-cadet*
3610
3611 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3612 M:      Jonathan Corbet <corbet@lwn.net>
3613 L:      linux-media@vger.kernel.org
3614 T:      git git://linuxtv.org/media_tree.git
3615 S:      Maintained
3616 F:      Documentation/media/v4l-drivers/cafe_ccic*
3617 F:      drivers/media/platform/marvell-ccic/
3618
3619 CAIF NETWORK LAYER
3620 L:      netdev@vger.kernel.org
3621 S:      Orphan
3622 F:      Documentation/networking/caif/
3623 F:      drivers/net/caif/
3624 F:      include/uapi/linux/caif/
3625 F:      include/net/caif/
3626 F:      net/caif/
3627
3628 CAKE QDISC
3629 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3630 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3631 S:      Maintained
3632 F:      net/sched/sch_cake.c
3633
3634 CALGARY x86-64 IOMMU
3635 M:      Muli Ben-Yehuda <mulix@mulix.org>
3636 M:      Jon Mason <jdmason@kudzu.us>
3637 L:      iommu@lists.linux-foundation.org
3638 S:      Maintained
3639 F:      arch/x86/kernel/pci-calgary_64.c
3640 F:      arch/x86/kernel/tce_64.c
3641 F:      arch/x86/include/asm/calgary.h
3642 F:      arch/x86/include/asm/tce.h
3643
3644 CAN NETWORK DRIVERS
3645 M:      Wolfgang Grandegger <wg@grandegger.com>
3646 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3647 L:      linux-can@vger.kernel.org
3648 W:      https://github.com/linux-can
3649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3651 S:      Maintained
3652 F:      Documentation/devicetree/bindings/net/can/
3653 F:      drivers/net/can/
3654 F:      include/linux/can/dev.h
3655 F:      include/linux/can/led.h
3656 F:      include/linux/can/rx-offload.h
3657 F:      include/linux/can/platform/
3658 F:      include/uapi/linux/can/error.h
3659 F:      include/uapi/linux/can/netlink.h
3660 F:      include/uapi/linux/can/vxcan.h
3661
3662 CAN NETWORK LAYER
3663 M:      Oliver Hartkopp <socketcan@hartkopp.net>
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/networking/can.rst
3671 F:      net/can/
3672 F:      include/linux/can/core.h
3673 F:      include/linux/can/skb.h
3674 F:      include/net/netns/can.h
3675 F:      include/uapi/linux/can.h
3676 F:      include/uapi/linux/can/bcm.h
3677 F:      include/uapi/linux/can/raw.h
3678 F:      include/uapi/linux/can/gw.h
3679
3680 CAN-J1939 NETWORK LAYER
3681 M:      Robin van der Gracht <robin@protonic.nl>
3682 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3683 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3684 L:      linux-can@vger.kernel.org
3685 S:      Maintained
3686 F:      Documentation/networking/j1939.txt
3687 F:      net/can/j1939/
3688 F:      include/uapi/linux/can/j1939.h
3689
3690 CAPABILITIES
3691 M:      Serge Hallyn <serge@hallyn.com>
3692 L:      linux-security-module@vger.kernel.org
3693 S:      Supported
3694 F:      include/linux/capability.h
3695 F:      include/uapi/linux/capability.h
3696 F:      security/commoncap.c
3697 F:      kernel/capability.c
3698
3699 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3700 M:      Kevin Tsai <ktsai@capellamicro.com>
3701 S:      Maintained
3702 F:      drivers/iio/light/cm*
3703
3704 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3705 M:      Christian Lamparter <chunkeey@googlemail.com>
3706 L:      linux-wireless@vger.kernel.org
3707 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3708 S:      Maintained
3709 F:      drivers/net/wireless/ath/carl9170/
3710
3711 CAVIUM I2C DRIVER
3712 M:      Jan Glauber <jglauber@cavium.com>
3713 M:      David Daney <david.daney@cavium.com>
3714 W:      http://www.cavium.com
3715 S:      Supported
3716 F:      drivers/i2c/busses/i2c-octeon*
3717 F:      drivers/i2c/busses/i2c-thunderx*
3718
3719 CAVIUM LIQUIDIO NETWORK DRIVER
3720 M:      Derek Chickles <dchickles@marvell.com>
3721 M:      Satanand Burla <sburla@marvell.com>
3722 M:      Felix Manlunas <fmanlunas@marvell.com>
3723 L:      netdev@vger.kernel.org
3724 W:      http://www.cavium.com
3725 S:      Supported
3726 F:      drivers/net/ethernet/cavium/liquidio/
3727
3728 CAVIUM MMC DRIVER
3729 M:      Jan Glauber <jglauber@cavium.com>
3730 M:      David Daney <david.daney@cavium.com>
3731 M:      Steven J. Hill <Steven.Hill@cavium.com>
3732 W:      http://www.cavium.com
3733 S:      Supported
3734 F:      drivers/mmc/host/cavium*
3735
3736 CAVIUM OCTEON-TX CRYPTO DRIVER
3737 M:      George Cherian <george.cherian@cavium.com>
3738 L:      linux-crypto@vger.kernel.org
3739 W:      http://www.cavium.com
3740 S:      Supported
3741 F:      drivers/crypto/cavium/cpt/
3742
3743 CAVIUM THUNDERX2 ARM64 SOC
3744 M:      Robert Richter <rrichter@cavium.com>
3745 M:      Jayachandran C <jnair@caviumnetworks.com>
3746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3747 S:      Maintained
3748 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3749 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3750
3751 CC2520 IEEE-802.15.4 RADIO DRIVER
3752 M:      Varka Bhadram <varkabhadram@gmail.com>
3753 L:      linux-wpan@vger.kernel.org
3754 S:      Maintained
3755 F:      drivers/net/ieee802154/cc2520.c
3756 F:      include/linux/spi/cc2520.h
3757 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3758
3759 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3760 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3761 L:      linux-crypto@vger.kernel.org
3762 S:      Supported
3763 F:      drivers/crypto/ccree/
3764 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3765
3766 CEC FRAMEWORK
3767 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3768 L:      linux-media@vger.kernel.org
3769 T:      git git://linuxtv.org/media_tree.git
3770 W:      http://linuxtv.org
3771 S:      Supported
3772 F:      Documentation/media/kapi/cec-core.rst
3773 F:      Documentation/media/uapi/cec
3774 F:      drivers/media/cec/
3775 F:      drivers/media/rc/keymaps/rc-cec.c
3776 F:      include/media/cec.h
3777 F:      include/media/cec-notifier.h
3778 F:      include/uapi/linux/cec.h
3779 F:      include/uapi/linux/cec-funcs.h
3780 F:      Documentation/devicetree/bindings/media/cec.txt
3781 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3782
3783 CEC GPIO DRIVER
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:      drivers/media/platform/cec-gpio/
3790 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3791
3792 CELL BROADBAND ENGINE ARCHITECTURE
3793 M:      Arnd Bergmann <arnd@arndb.de>
3794 L:      linuxppc-dev@lists.ozlabs.org
3795 W:      http://www.ibm.com/developerworks/power/cell/
3796 S:      Supported
3797 F:      arch/powerpc/include/asm/cell*.h
3798 F:      arch/powerpc/include/asm/spu*.h
3799 F:      arch/powerpc/include/uapi/asm/spu*.h
3800 F:      arch/powerpc/oprofile/*cell*
3801 F:      arch/powerpc/platforms/cell/
3802
3803 CEPH COMMON CODE (LIBCEPH)
3804 M:      Ilya Dryomov <idryomov@gmail.com>
3805 M:      Jeff Layton <jlayton@kernel.org>
3806 M:      Sage Weil <sage@redhat.com>
3807 L:      ceph-devel@vger.kernel.org
3808 W:      http://ceph.com/
3809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3810 T:      git git://github.com/ceph/ceph-client.git
3811 S:      Supported
3812 F:      net/ceph/
3813 F:      include/linux/ceph/
3814 F:      include/linux/crush/
3815
3816 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3817 M:      Jeff Layton <jlayton@kernel.org>
3818 M:      Sage Weil <sage@redhat.com>
3819 M:      Ilya Dryomov <idryomov@gmail.com>
3820 L:      ceph-devel@vger.kernel.org
3821 W:      http://ceph.com/
3822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3823 T:      git git://github.com/ceph/ceph-client.git
3824 S:      Supported
3825 F:      Documentation/filesystems/ceph.txt
3826 F:      fs/ceph/
3827
3828 CERTIFICATE HANDLING:
3829 M:      David Howells <dhowells@redhat.com>
3830 M:      David Woodhouse <dwmw2@infradead.org>
3831 L:      keyrings@vger.kernel.org
3832 S:      Maintained
3833 F:      Documentation/admin-guide/module-signing.rst
3834 F:      certs/
3835 F:      scripts/sign-file.c
3836 F:      scripts/extract-cert.c
3837
3838 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3839 L:      devel@driverdev.osuosl.org
3840 S:      Obsolete
3841 F:      drivers/staging/wusbcore/
3842
3843 CFAG12864B LCD DRIVER
3844 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3845 S:      Maintained
3846 F:      drivers/auxdisplay/cfag12864b.c
3847 F:      include/linux/cfag12864b.h
3848
3849 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3850 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3851 S:      Maintained
3852 F:      drivers/auxdisplay/cfag12864bfb.c
3853 F:      include/linux/cfag12864b.h
3854
3855 802.11 (including CFG80211/NL80211)
3856 M:      Johannes Berg <johannes@sipsolutions.net>
3857 L:      linux-wireless@vger.kernel.org
3858 W:      http://wireless.kernel.org/
3859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3861 S:      Maintained
3862 F:      net/wireless/
3863 F:      include/uapi/linux/nl80211.h
3864 F:      include/linux/ieee80211.h
3865 F:      include/net/wext.h
3866 F:      include/net/cfg80211.h
3867 F:      include/net/iw_handler.h
3868 F:      include/net/ieee80211_radiotap.h
3869 F:      Documentation/driver-api/80211/cfg80211.rst
3870 F:      Documentation/networking/regulatory.txt
3871
3872 CHAR and MISC DRIVERS
3873 M:      Arnd Bergmann <arnd@arndb.de>
3874 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3876 S:      Supported
3877 F:      drivers/char/
3878 F:      drivers/misc/
3879 F:      include/linux/miscdevice.h
3880
3881 CHECKPATCH
3882 M:      Andy Whitcroft <apw@canonical.com>
3883 M:      Joe Perches <joe@perches.com>
3884 S:      Maintained
3885 F:      scripts/checkpatch.pl
3886
3887 CHINESE DOCUMENTATION
3888 M:      Harry Wei <harryxiyou@gmail.com>
3889 M:      Alex Shi <alex.shi@linux.alibaba.com>
3890 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3891 S:      Maintained
3892 F:      Documentation/translations/zh_CN/
3893
3894 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3895 M:      Peter Chen <Peter.Chen@nxp.com>
3896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3897 L:      linux-usb@vger.kernel.org
3898 S:      Maintained
3899 F:      drivers/usb/chipidea/
3900
3901 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3902 M:      Hans de Goede <hdegoede@redhat.com>
3903 L:      linux-input@vger.kernel.org
3904 S:      Maintained
3905 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3906 F:      drivers/input/touchscreen/chipone_icn8318.c
3907
3908 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
3909 M:      Hans de Goede <hdegoede@redhat.com>
3910 L:      linux-input@vger.kernel.org
3911 S:      Maintained
3912 F:      drivers/input/touchscreen/chipone_icn8505.c
3913
3914 CHROME HARDWARE PLATFORM SUPPORT
3915 M:      Benson Leung <bleung@chromium.org>
3916 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3917 S:      Maintained
3918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
3919 F:      drivers/platform/chrome/
3920
3921 CHROMEOS EC SUBDRIVERS
3922 M:      Benson Leung <bleung@chromium.org>
3923 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3924 R:      Guenter Roeck <groeck@chromium.org>
3925 S:      Maintained
3926 N:      cros_ec
3927 N:      cros-ec
3928 F:      drivers/power/supply/cros_usbpd-charger.c
3929
3930 CHROMEOS EC CODEC DRIVER
3931 M:      Cheng-Yi Chiang <cychiang@chromium.org>
3932 S:      Maintained
3933 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3934 R:      Guenter Roeck <groeck@chromium.org>
3935 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.txt
3936 F:      sound/soc/codecs/cros_ec_codec.*
3937
3938 CIRRUS LOGIC AUDIO CODEC DRIVERS
3939 M:      Brian Austin <brian.austin@cirrus.com>
3940 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3941 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3942 S:      Maintained
3943 F:      sound/soc/codecs/cs*
3944
3945 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3946 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3947 L:      netdev@vger.kernel.org
3948 S:      Maintained
3949 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3950
3951 CIRRUS LOGIC LOCHNAGAR DRIVER
3952 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
3953 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
3954 L:      patches@opensource.cirrus.com
3955 S:      Supported
3956 F:      drivers/clk/clk-lochnagar.c
3957 F:      drivers/hwmon/lochnagar-hwmon.c
3958 F:      drivers/mfd/lochnagar-i2c.c
3959 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
3960 F:      drivers/regulator/lochnagar-regulator.c
3961 F:      sound/soc/codecs/lochnagar-sc.c
3962 F:      include/dt-bindings/clk/lochnagar.h
3963 F:      include/dt-bindings/pinctrl/lochnagar.h
3964 F:      include/linux/mfd/lochnagar*
3965 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
3966 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
3967 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
3968 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
3969 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
3970 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
3971 F:      Documentation/hwmon/lochnagar.rst
3972
3973 CISCO FCOE HBA DRIVER
3974 M:      Satish Kharat <satishkh@cisco.com>
3975 M:      Sesidhar Baddela <sebaddel@cisco.com>
3976 M:      Karan Tilak Kumar <kartilak@cisco.com>
3977 L:      linux-scsi@vger.kernel.org
3978 S:      Supported
3979 F:      drivers/scsi/fnic/
3980
3981 CISCO SCSI HBA DRIVER
3982 M:      Karan Tilak Kumar <kartilak@cisco.com>
3983 M:      Sesidhar Baddela <sebaddel@cisco.com>
3984 L:      linux-scsi@vger.kernel.org
3985 S:      Supported
3986 F:      drivers/scsi/snic/
3987
3988 CISCO VIC ETHERNET NIC DRIVER
3989 M:      Christian Benvenuti <benve@cisco.com>
3990 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3991 M:      Parvi Kaustubhi <pkaustub@cisco.com>
3992 S:      Supported
3993 F:      drivers/net/ethernet/cisco/enic/
3994
3995 CISCO VIC LOW LATENCY NIC DRIVER
3996 M:      Christian Benvenuti <benve@cisco.com>
3997 M:      Nelson Escobar <neescoba@cisco.com>
3998 M:      Parvi Kaustubhi <pkaustub@cisco.com>
3999 S:      Supported
4000 F:      drivers/infiniband/hw/usnic/
4001
4002 CIRRUS LOGIC MADERA CODEC DRIVERS
4003 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4004 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4005 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4006 L:      patches@opensource.cirrus.com
4007 T:      git https://github.com/CirrusLogic/linux-drivers.git
4008 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4009 S:      Supported
4010 F:      Documentation/devicetree/bindings/mfd/madera.txt
4011 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4012 F:      Documentation/devicetree/bindings/sound/madera.txt
4013 F:      include/dt-bindings/sound/madera*
4014 F:      include/linux/irqchip/irq-madera*
4015 F:      include/linux/mfd/madera/*
4016 F:      include/sound/madera*
4017 F:      drivers/gpio/gpio-madera*
4018 F:      drivers/irqchip/irq-madera*
4019 F:      drivers/mfd/madera*
4020 F:      drivers/mfd/cs47l*
4021 F:      drivers/pinctrl/cirrus/*
4022 F:      sound/soc/codecs/cs47l*
4023 F:      sound/soc/codecs/madera*
4024
4025 CLANG-FORMAT FILE
4026 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4027 S:      Maintained
4028 F:      .clang-format
4029
4030 CLANG/LLVM BUILD SUPPORT
4031 L:      clang-built-linux@googlegroups.com
4032 W:      https://clangbuiltlinux.github.io/
4033 B:      https://github.com/ClangBuiltLinux/linux/issues
4034 C:      irc://chat.freenode.net/clangbuiltlinux
4035 S:      Supported
4036 K:      \b(?i:clang|llvm)\b
4037
4038 CLEANCACHE API
4039 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4040 L:      linux-kernel@vger.kernel.org
4041 S:      Maintained
4042 F:      mm/cleancache.c
4043 F:      include/linux/cleancache.h
4044
4045 CLK API
4046 M:      Russell King <linux@armlinux.org.uk>
4047 L:      linux-clk@vger.kernel.org
4048 S:      Maintained
4049 F:      include/linux/clk.h
4050
4051 CLOCKSOURCE, CLOCKEVENT DRIVERS
4052 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4053 M:      Thomas Gleixner <tglx@linutronix.de>
4054 L:      linux-kernel@vger.kernel.org
4055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4056 S:      Supported
4057 F:      drivers/clocksource/
4058 F:      Documentation/devicetree/bindings/timer/
4059
4060 CMPC ACPI DRIVER
4061 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4062 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4063 L:      platform-driver-x86@vger.kernel.org
4064 S:      Supported
4065 F:      drivers/platform/x86/classmate-laptop.c
4066
4067 COBALT MEDIA DRIVER
4068 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4069 L:      linux-media@vger.kernel.org
4070 T:      git git://linuxtv.org/media_tree.git
4071 W:      https://linuxtv.org
4072 S:      Supported
4073 F:      drivers/media/pci/cobalt/
4074
4075 COCCINELLE/Semantic Patches (SmPL)
4076 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4077 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4078 M:      Nicolas Palix <nicolas.palix@imag.fr>
4079 M:      Michal Marek <michal.lkml@markovi.net>
4080 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4082 W:      http://coccinelle.lip6.fr/
4083 S:      Supported
4084 F:      Documentation/dev-tools/coccinelle.rst
4085 F:      scripts/coccinelle/
4086 F:      scripts/coccicheck
4087
4088 CODA FILE SYSTEM
4089 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4090 M:      coda@cs.cmu.edu
4091 L:      codalist@coda.cs.cmu.edu
4092 W:      http://www.coda.cs.cmu.edu/
4093 S:      Maintained
4094 F:      Documentation/filesystems/coda.txt
4095 F:      fs/coda/
4096 F:      include/linux/coda*.h
4097 F:      include/uapi/linux/coda*.h
4098
4099 CODA V4L2 MEM2MEM DRIVER
4100 M:      Philipp Zabel <p.zabel@pengutronix.de>
4101 L:      linux-media@vger.kernel.org
4102 S:      Maintained
4103 F:      Documentation/devicetree/bindings/media/coda.txt
4104 F:      drivers/media/platform/coda/
4105
4106 CODE OF CONDUCT
4107 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4108 S:      Supported
4109 F:      Documentation/process/code-of-conduct.rst
4110 F:      Documentation/process/code-of-conduct-interpretation.rst
4111
4112 COMMON CLK FRAMEWORK
4113 M:      Michael Turquette <mturquette@baylibre.com>
4114 M:      Stephen Boyd <sboyd@kernel.org>
4115 L:      linux-clk@vger.kernel.org
4116 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4118 S:      Maintained
4119 F:      Documentation/devicetree/bindings/clock/
4120 F:      drivers/clk/
4121 X:      drivers/clk/clkdev.c
4122 F:      include/linux/clk-pr*
4123 F:      include/linux/clk/
4124 F:      include/linux/of_clk.h
4125
4126 COMMON INTERNET FILE SYSTEM (CIFS)
4127 M:      Steve French <sfrench@samba.org>
4128 L:      linux-cifs@vger.kernel.org
4129 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4130 W:      http://linux-cifs.samba.org/
4131 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4132 S:      Supported
4133 F:      Documentation/admin-guide/cifs/
4134 F:      fs/cifs/
4135
4136 COMPACTPCI HOTPLUG CORE
4137 M:      Scott Murray <scott@spiteful.org>
4138 L:      linux-pci@vger.kernel.org
4139 S:      Maintained
4140 F:      drivers/pci/hotplug/cpci_hotplug*
4141
4142 COMPACTPCI HOTPLUG GENERIC DRIVER
4143 M:      Scott Murray <scott@spiteful.org>
4144 L:      linux-pci@vger.kernel.org
4145 S:      Maintained
4146 F:      drivers/pci/hotplug/cpcihp_generic.c
4147
4148 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4149 M:      Scott Murray <scott@spiteful.org>
4150 L:      linux-pci@vger.kernel.org
4151 S:      Maintained
4152 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4153
4154 COMPAL LAPTOP SUPPORT
4155 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4156 L:      platform-driver-x86@vger.kernel.org
4157 S:      Maintained
4158 F:      drivers/platform/x86/compal-laptop.c
4159
4160 COMPILER ATTRIBUTES
4161 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4162 S:      Maintained
4163 F:      include/linux/compiler_attributes.h
4164
4165 CONEXANT ACCESSRUNNER USB DRIVER
4166 L:      accessrunner-general@lists.sourceforge.net
4167 W:      http://accessrunner.sourceforge.net/
4168 S:      Orphan
4169 F:      drivers/usb/atm/cxacru.c
4170
4171 CONFIGFS
4172 M:      Joel Becker <jlbec@evilplan.org>
4173 M:      Christoph Hellwig <hch@lst.de>
4174 T:      git git://git.infradead.org/users/hch/configfs.git
4175 S:      Supported
4176 F:      fs/configfs/
4177 F:      include/linux/configfs.h
4178
4179 CONNECTOR
4180 M:      Evgeniy Polyakov <zbr@ioremap.net>
4181 L:      netdev@vger.kernel.org
4182 S:      Maintained
4183 F:      drivers/connector/
4184
4185 CONTROL GROUP (CGROUP)
4186 M:      Tejun Heo <tj@kernel.org>
4187 M:      Li Zefan <lizefan@huawei.com>
4188 M:      Johannes Weiner <hannes@cmpxchg.org>
4189 L:      cgroups@vger.kernel.org
4190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4191 S:      Maintained
4192 F:      Documentation/admin-guide/cgroup-v2.rst
4193 F:      Documentation/admin-guide/cgroup-v1/
4194 F:      include/linux/cgroup*
4195 F:      kernel/cgroup/
4196
4197 CONTROL GROUP - CPUSET
4198 M:      Li Zefan <lizefan@huawei.com>
4199 L:      cgroups@vger.kernel.org
4200 W:      http://www.bullopensource.org/cpuset/
4201 W:      http://oss.sgi.com/projects/cpusets/
4202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4203 S:      Maintained
4204 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4205 F:      include/linux/cpuset.h
4206 F:      kernel/cgroup/cpuset.c
4207
4208 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4209 M:      Johannes Weiner <hannes@cmpxchg.org>
4210 M:      Michal Hocko <mhocko@kernel.org>
4211 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4212 L:      cgroups@vger.kernel.org
4213 L:      linux-mm@kvack.org
4214 S:      Maintained
4215 F:      mm/memcontrol.c
4216 F:      mm/swap_cgroup.c
4217
4218 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4219 M:      Tejun Heo <tj@kernel.org>
4220 M:      Jens Axboe <axboe@kernel.dk>
4221 L:      cgroups@vger.kernel.org
4222 L:      linux-block@vger.kernel.org
4223 T:      git git://git.kernel.dk/linux-block
4224 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4225 F:      block/blk-cgroup.c
4226 F:      include/linux/blk-cgroup.h
4227 F:      block/blk-throttle.c
4228 F:      block/blk-iolatency.c
4229 F:      block/bfq-cgroup.c
4230
4231 CORETEMP HARDWARE MONITORING DRIVER
4232 M:      Fenghua Yu <fenghua.yu@intel.com>
4233 L:      linux-hwmon@vger.kernel.org
4234 S:      Maintained
4235 F:      Documentation/hwmon/coretemp.rst
4236 F:      drivers/hwmon/coretemp.c
4237
4238 COSA/SRP SYNC SERIAL DRIVER
4239 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4240 W:      http://www.fi.muni.cz/~kas/cosa/
4241 S:      Maintained
4242 F:      drivers/net/wan/cosa*
4243
4244 COUNTER SUBSYSTEM
4245 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4246 L:      linux-iio@vger.kernel.org
4247 S:      Maintained
4248 F:      Documentation/ABI/testing/sysfs-bus-counter*
4249 F:      Documentation/driver-api/generic-counter.rst
4250 F:      drivers/counter/
4251 F:      include/linux/counter.h
4252 F:      include/linux/counter_enum.h
4253
4254 CPMAC ETHERNET DRIVER
4255 M:      Florian Fainelli <f.fainelli@gmail.com>
4256 L:      netdev@vger.kernel.org
4257 S:      Maintained
4258 F:      drivers/net/ethernet/ti/cpmac.c
4259
4260 CPU FREQUENCY SCALING FRAMEWORK
4261 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4262 M:      Viresh Kumar <viresh.kumar@linaro.org>
4263 L:      linux-pm@vger.kernel.org
4264 S:      Maintained
4265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4267 B:      https://bugzilla.kernel.org
4268 F:      Documentation/admin-guide/pm/cpufreq.rst
4269 F:      Documentation/admin-guide/pm/intel_pstate.rst
4270 F:      Documentation/cpu-freq/
4271 F:      Documentation/devicetree/bindings/cpufreq/
4272 F:      drivers/cpufreq/
4273 F:      kernel/sched/cpufreq*.c
4274 F:      include/linux/cpufreq.h
4275 F:      include/linux/sched/cpufreq.h
4276 F:      tools/testing/selftests/cpufreq/
4277
4278 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
4279 M:      Viresh Kumar <viresh.kumar@linaro.org>
4280 M:      Sudeep Holla <sudeep.holla@arm.com>
4281 L:      linux-pm@vger.kernel.org
4282 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4283 S:      Maintained
4284 F:      drivers/cpufreq/arm_big_little.h
4285 F:      drivers/cpufreq/arm_big_little.c
4286
4287 CPU POWER MONITORING SUBSYSTEM
4288 M:      Thomas Renninger <trenn@suse.com>
4289 M:      Shuah Khan <shuah@kernel.org>
4290 M:      Shuah Khan <skhan@linuxfoundation.org>
4291 L:      linux-pm@vger.kernel.org
4292 S:      Maintained
4293 F:      tools/power/cpupower/
4294
4295 CPUID/MSR DRIVER
4296 M:      "H. Peter Anvin" <hpa@zytor.com>
4297 S:      Maintained
4298 F:      arch/x86/kernel/cpuid.c
4299 F:      arch/x86/kernel/msr.c
4300
4301 CPUIDLE DRIVER - ARM BIG LITTLE
4302 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4303 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4304 L:      linux-pm@vger.kernel.org
4305 L:      linux-arm-kernel@lists.infradead.org
4306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4307 S:      Maintained
4308 F:      drivers/cpuidle/cpuidle-big_little.c
4309
4310 CPUIDLE DRIVER - ARM EXYNOS
4311 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4312 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4313 M:      Kukjin Kim <kgene@kernel.org>
4314 L:      linux-pm@vger.kernel.org
4315 L:      linux-samsung-soc@vger.kernel.org
4316 S:      Supported
4317 F:      drivers/cpuidle/cpuidle-exynos.c
4318 F:      arch/arm/mach-exynos/pm.c
4319
4320 CPUIDLE DRIVER - ARM PSCI
4321 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4322 M:      Sudeep Holla <sudeep.holla@arm.com>
4323 L:      linux-pm@vger.kernel.org
4324 L:      linux-arm-kernel@lists.infradead.org
4325 S:      Supported
4326 F:      drivers/cpuidle/cpuidle-psci.c
4327
4328 CPU IDLE TIME MANAGEMENT FRAMEWORK
4329 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4330 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4331 L:      linux-pm@vger.kernel.org
4332 S:      Maintained
4333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4334 B:      https://bugzilla.kernel.org
4335 F:      Documentation/admin-guide/pm/cpuidle.rst
4336 F:      Documentation/driver-api/pm/cpuidle.rst
4337 F:      drivers/cpuidle/*
4338 F:      include/linux/cpuidle.h
4339
4340 CRAMFS FILESYSTEM
4341 M:      Nicolas Pitre <nico@fluxnic.net>
4342 S:      Maintained
4343 F:      Documentation/filesystems/cramfs.txt
4344 F:      fs/cramfs/
4345
4346 CRYPTO API
4347 M:      Herbert Xu <herbert@gondor.apana.org.au>
4348 M:      "David S. Miller" <davem@davemloft.net>
4349 L:      linux-crypto@vger.kernel.org
4350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4352 S:      Maintained
4353 F:      Documentation/crypto/
4354 F:      Documentation/devicetree/bindings/crypto/
4355 F:      arch/*/crypto/
4356 F:      crypto/
4357 F:      drivers/crypto/
4358 F:      include/crypto/
4359 F:      include/linux/crypto*
4360 F:      lib/crypto/
4361
4362 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4363 M:      Neil Horman <nhorman@tuxdriver.com>
4364 L:      linux-crypto@vger.kernel.org
4365 S:      Maintained
4366 F:      crypto/ansi_cprng.c
4367 F:      crypto/rng.c
4368
4369 CS3308 MEDIA DRIVER
4370 M:      Hans Verkuil <hverkuil@xs4all.nl>
4371 L:      linux-media@vger.kernel.org
4372 T:      git git://linuxtv.org/media_tree.git
4373 W:      http://linuxtv.org
4374 S:      Odd Fixes
4375 F:      drivers/media/i2c/cs3308.c
4376
4377 CS5535 Audio ALSA driver
4378 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4379 S:      Maintained
4380 F:      sound/pci/cs5535audio/
4381
4382 CSI DRIVERS FOR ALLWINNER V3s
4383 M:      Yong Deng <yong.deng@magewell.com>
4384 L:      linux-media@vger.kernel.org
4385 T:      git git://linuxtv.org/media_tree.git
4386 S:      Maintained
4387 F:      drivers/media/platform/sunxi/sun6i-csi/
4388 F:      Documentation/devicetree/bindings/media/sun6i-csi.txt
4389
4390 CW1200 WLAN driver
4391 M:      Solomon Peachy <pizza@shaftnet.org>
4392 S:      Maintained
4393 F:      drivers/net/wireless/st/cw1200/
4394
4395 CX18 VIDEO4LINUX DRIVER
4396 M:      Andy Walls <awalls@md.metrocast.net>
4397 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
4398 L:      linux-media@vger.kernel.org
4399 T:      git git://linuxtv.org/media_tree.git
4400 W:      https://linuxtv.org
4401 W:      http://www.ivtvdriver.org/index.php/Cx18
4402 S:      Maintained
4403 F:      Documentation/media/v4l-drivers/cx18*
4404 F:      drivers/media/pci/cx18/
4405 F:      include/uapi/linux/ivtv*
4406
4407 CX2341X MPEG ENCODER HELPER MODULE
4408 M:      Hans Verkuil <hverkuil@xs4all.nl>
4409 L:      linux-media@vger.kernel.org
4410 T:      git git://linuxtv.org/media_tree.git
4411 W:      https://linuxtv.org
4412 S:      Maintained
4413 F:      drivers/media/common/cx2341x*
4414 F:      include/media/drv-intf/cx2341x.h
4415
4416 CX24120 MEDIA DRIVER
4417 M:      Jemma Denson <jdenson@gmail.com>
4418 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4419 L:      linux-media@vger.kernel.org
4420 W:      https://linuxtv.org
4421 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4422 S:      Maintained
4423 F:      drivers/media/dvb-frontends/cx24120*
4424
4425 CX88 VIDEO4LINUX DRIVER
4426 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4427 L:      linux-media@vger.kernel.org
4428 W:      https://linuxtv.org
4429 T:      git git://linuxtv.org/media_tree.git
4430 S:      Odd fixes
4431 F:      Documentation/media/v4l-drivers/cx88*
4432 F:      drivers/media/pci/cx88/
4433
4434 CXD2820R MEDIA DRIVER
4435 M:      Antti Palosaari <crope@iki.fi>
4436 L:      linux-media@vger.kernel.org
4437 W:      https://linuxtv.org
4438 W:      http://palosaari.fi/linux/
4439 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4440 T:      git git://linuxtv.org/anttip/media_tree.git
4441 S:      Maintained
4442 F:      drivers/media/dvb-frontends/cxd2820r*
4443
4444 CXGB3 ETHERNET DRIVER (CXGB3)
4445 M:      Vishal Kulkarni <vishal@chelsio.com>
4446 L:      netdev@vger.kernel.org
4447 W:      http://www.chelsio.com
4448 S:      Supported
4449 F:      drivers/net/ethernet/chelsio/cxgb3/
4450
4451 CXGB3 ISCSI DRIVER (CXGB3I)
4452 M:      Karen Xie <kxie@chelsio.com>
4453 L:      linux-scsi@vger.kernel.org
4454 W:      http://www.chelsio.com
4455 S:      Supported
4456 F:      drivers/scsi/cxgbi/cxgb3i
4457
4458 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
4459 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4460 L:      linux-rdma@vger.kernel.org
4461 W:      http://www.openfabrics.org
4462 S:      Supported
4463 F:      drivers/infiniband/hw/cxgb3/
4464 F:      include/uapi/rdma/cxgb3-abi.h
4465
4466 CXGB4 CRYPTO DRIVER (chcr)
4467 M:      Atul Gupta <atul.gupta@chelsio.com>
4468 L:      linux-crypto@vger.kernel.org
4469 W:      http://www.chelsio.com
4470 S:      Supported
4471 F:      drivers/crypto/chelsio
4472
4473 CXGB4 ETHERNET DRIVER (CXGB4)
4474 M:      Vishal Kulkarni <vishal@chelsio.com>
4475 L:      netdev@vger.kernel.org
4476 W:      http://www.chelsio.com
4477 S:      Supported
4478 F:      drivers/net/ethernet/chelsio/cxgb4/
4479
4480 CXGB4 ISCSI DRIVER (CXGB4I)
4481 M:      Karen Xie <kxie@chelsio.com>
4482 L:      linux-scsi@vger.kernel.org
4483 W:      http://www.chelsio.com
4484 S:      Supported
4485 F:      drivers/scsi/cxgbi/cxgb4i
4486
4487 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4488 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4489 L:      linux-rdma@vger.kernel.org
4490 W:      http://www.openfabrics.org
4491 S:      Supported
4492 F:      drivers/infiniband/hw/cxgb4/
4493 F:      include/uapi/rdma/cxgb4-abi.h
4494
4495 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4496 M:      Casey Leedom <leedom@chelsio.com>
4497 L:      netdev@vger.kernel.org
4498 W:      http://www.chelsio.com
4499 S:      Supported
4500 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4501
4502 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4503 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4504 M:      Andrew Donnellan <ajd@linux.ibm.com>
4505 L:      linuxppc-dev@lists.ozlabs.org
4506 S:      Supported
4507 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4508 F:      drivers/misc/cxl/
4509 F:      include/misc/cxl*
4510 F:      include/uapi/misc/cxl.h
4511 F:      Documentation/powerpc/cxl.rst
4512 F:      Documentation/ABI/testing/sysfs-class-cxl
4513
4514 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4515 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4516 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4517 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4518 L:      linux-scsi@vger.kernel.org
4519 S:      Supported
4520 F:      drivers/scsi/cxlflash/
4521 F:      include/uapi/scsi/cxlflash_ioctl.h
4522 F:      Documentation/powerpc/cxlflash.rst
4523
4524 CYBERPRO FB DRIVER
4525 M:      Russell King <linux@armlinux.org.uk>
4526 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4527 W:      http://www.armlinux.org.uk/
4528 S:      Maintained
4529 F:      drivers/video/fbdev/cyber2000fb.*
4530
4531 CYCLADES ASYNC MUX DRIVER
4532 W:      http://www.cyclades.com/
4533 S:      Orphan
4534 F:      drivers/tty/cyclades.c
4535 F:      include/linux/cyclades.h
4536 F:      include/uapi/linux/cyclades.h
4537
4538 CYCLADES PC300 DRIVER
4539 W:      http://www.cyclades.com/
4540 S:      Orphan
4541 F:      drivers/net/wan/pc300*
4542
4543 CYPRESS_FIRMWARE MEDIA DRIVER
4544 M:      Antti Palosaari <crope@iki.fi>
4545 L:      linux-media@vger.kernel.org
4546 W:      https://linuxtv.org
4547 W:      http://palosaari.fi/linux/
4548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4549 T:      git git://linuxtv.org/anttip/media_tree.git
4550 S:      Maintained
4551 F:      drivers/media/common/cypress_firmware*
4552
4553 CYTTSP TOUCHSCREEN DRIVER
4554 M:      Ferruh Yigit <fery@cypress.com>
4555 L:      linux-input@vger.kernel.org
4556 S:      Supported
4557 F:      drivers/input/touchscreen/cyttsp*
4558 F:      include/linux/input/cyttsp.h
4559
4560 D-LINK DIR-685 TOUCHKEYS DRIVER
4561 M:      Linus Walleij <linus.walleij@linaro.org>
4562 L:      linux-input@vger.kernel.org
4563 S:      Supported
4564 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4565
4566 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4567 M:      Joshua Kinard <kumba@gentoo.org>
4568 S:      Maintained
4569 F:      drivers/rtc/rtc-ds1685.c
4570 F:      include/linux/rtc/ds1685.h
4571
4572 DAMA SLAVE for AX.25
4573 M:      Joerg Reuter <jreuter@yaina.de>
4574 W:      http://yaina.de/jreuter/
4575 W:      http://www.qsl.net/dl1bke/
4576 L:      linux-hams@vger.kernel.org
4577 S:      Maintained
4578 F:      net/ax25/af_ax25.c
4579 F:      net/ax25/ax25_dev.c
4580 F:      net/ax25/ax25_ds_*
4581 F:      net/ax25/ax25_in.c
4582 F:      net/ax25/ax25_out.c
4583 F:      net/ax25/ax25_timer.c
4584 F:      net/ax25/sysctl_net_ax25.c
4585
4586 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4587 L:      netdev@vger.kernel.org
4588 S:      Orphan
4589 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4590 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4591
4592 DC390/AM53C974 SCSI driver
4593 M:      Hannes Reinecke <hare@suse.com>
4594 L:      linux-scsi@vger.kernel.org
4595 S:      Maintained
4596 F:      drivers/scsi/am53c974.c
4597
4598 DC395x SCSI driver
4599 M:      Oliver Neukum <oliver@neukum.org>
4600 M:      Ali Akcaagac <aliakc@web.de>
4601 M:      Jamie Lenehan <lenehan@twibble.org>
4602 L:      dc395x@twibble.org
4603 W:      http://twibble.org/dist/dc395x/
4604 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4605 S:      Maintained
4606 F:      Documentation/scsi/dc395x.txt
4607 F:      drivers/scsi/dc395x.*
4608
4609 DCCP PROTOCOL
4610 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4611 L:      dccp@vger.kernel.org
4612 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4613 S:      Maintained
4614 F:      include/linux/dccp.h
4615 F:      include/uapi/linux/dccp.h
4616 F:      include/linux/tfrc.h
4617 F:      net/dccp/
4618
4619 DECnet NETWORK LAYER
4620 W:      http://linux-decnet.sourceforge.net
4621 L:      linux-decnet-user@lists.sourceforge.net
4622 S:      Orphan
4623 F:      Documentation/networking/decnet.txt
4624 F:      net/decnet/
4625
4626 DECSTATION PLATFORM SUPPORT
4627 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4628 L:      linux-mips@vger.kernel.org
4629 W:      http://www.linux-mips.org/wiki/DECstation
4630 S:      Maintained
4631 F:      arch/mips/dec/
4632 F:      arch/mips/include/asm/dec/
4633 F:      arch/mips/include/asm/mach-dec/
4634
4635 DEFXX FDDI NETWORK DRIVER
4636 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4637 S:      Maintained
4638 F:      drivers/net/fddi/defxx.*
4639
4640 DELL SMBIOS DRIVER
4641 M:      Pali Rohár <pali.rohar@gmail.com>
4642 M:      Mario Limonciello <mario.limonciello@dell.com>
4643 L:      platform-driver-x86@vger.kernel.org
4644 S:      Maintained
4645 F:      drivers/platform/x86/dell-smbios.*
4646
4647 DELL SMBIOS SMM DRIVER
4648 M:      Mario Limonciello <mario.limonciello@dell.com>
4649 L:      platform-driver-x86@vger.kernel.org
4650 S:      Maintained
4651 F:      drivers/platform/x86/dell-smbios-smm.c
4652
4653 DELL SMBIOS WMI DRIVER
4654 M:      Mario Limonciello <mario.limonciello@dell.com>
4655 L:      platform-driver-x86@vger.kernel.org
4656 S:      Maintained
4657 F:      drivers/platform/x86/dell-smbios-wmi.c
4658 F:      tools/wmi/dell-smbios-example.c
4659
4660 DEFZA FDDI NETWORK DRIVER
4661 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4662 S:      Maintained
4663 F:      drivers/net/fddi/defza.*
4664
4665 DELL LAPTOP DRIVER
4666 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4667 M:      Pali Rohár <pali.rohar@gmail.com>
4668 L:      platform-driver-x86@vger.kernel.org
4669 S:      Maintained
4670 F:      drivers/platform/x86/dell-laptop.c
4671
4672 DELL LAPTOP FREEFALL DRIVER
4673 M:      Pali Rohár <pali.rohar@gmail.com>
4674 S:      Maintained
4675 F:      drivers/platform/x86/dell-smo8800.c
4676
4677 DELL LAPTOP RBTN DRIVER
4678 M:      Pali Rohár <pali.rohar@gmail.com>
4679 S:      Maintained
4680 F:      drivers/platform/x86/dell-rbtn.*
4681
4682 DELL REMOTE BIOS UPDATE DRIVER
4683 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4684 L:      platform-driver-x86@vger.kernel.org
4685 S:      Maintained
4686 F:      drivers/platform/x86/dell_rbu.c
4687
4688 DELL LAPTOP SMM DRIVER
4689 M:      Pali Rohár <pali.rohar@gmail.com>
4690 S:      Maintained
4691 F:      drivers/hwmon/dell-smm-hwmon.c
4692 F:      include/uapi/linux/i8k.h
4693
4694 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4695 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4696 L:      platform-driver-x86@vger.kernel.org
4697 S:      Maintained
4698 F:      Documentation/driver-api/dcdbas.rst
4699 F:      drivers/platform/x86/dcdbas.*
4700
4701 DELL WMI NOTIFICATIONS DRIVER
4702 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4703 M:      Pali Rohár <pali.rohar@gmail.com>
4704 S:      Maintained
4705 F:      drivers/platform/x86/dell-wmi.c
4706
4707 DELL WMI DESCRIPTOR DRIVER
4708 M:      Mario Limonciello <mario.limonciello@dell.com>
4709 S:      Maintained
4710 F:      drivers/platform/x86/dell-wmi-descriptor.c
4711
4712 DELTA ST MEDIA DRIVER
4713 M:      Hugues Fruchet <hugues.fruchet@st.com>
4714 L:      linux-media@vger.kernel.org
4715 T:      git git://linuxtv.org/media_tree.git
4716 W:      https://linuxtv.org
4717 S:      Supported
4718 F:      drivers/media/platform/sti/delta
4719
4720 DENALI NAND DRIVER
4721 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4722 L:      linux-mtd@lists.infradead.org
4723 S:      Supported
4724 F:      drivers/mtd/nand/raw/denali*
4725
4726 DESIGNWARE EDMA CORE IP DRIVER
4727 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4728 L:      dmaengine@vger.kernel.org
4729 S:      Maintained
4730 F:      drivers/dma/dw-edma/
4731 F:      include/linux/dma/edma.h
4732
4733 DESIGNWARE USB2 DRD IP DRIVER
4734 M:      Minas Harutyunyan <hminas@synopsys.com>
4735 L:      linux-usb@vger.kernel.org
4736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4737 S:      Maintained
4738 F:      drivers/usb/dwc2/
4739
4740 DESIGNWARE USB3 DRD IP DRIVER
4741 M:      Felipe Balbi <balbi@kernel.org>
4742 L:      linux-usb@vger.kernel.org
4743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4744 S:      Maintained
4745 F:      drivers/usb/dwc3/
4746
4747 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4748 M:      Andreas Klinger <ak@it-klinger.de>
4749 L:      linux-iio@vger.kernel.org
4750 S:      Maintained
4751 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4752 F:      drivers/iio/proximity/srf*.c
4753
4754 DEVICE COREDUMP (DEV_COREDUMP)
4755 M:      Johannes Berg <johannes@sipsolutions.net>
4756 L:      linux-kernel@vger.kernel.org
4757 S:      Maintained
4758 F:      drivers/base/devcoredump.c
4759 F:      include/linux/devcoredump.h
4760
4761 DEVICE FREQUENCY (DEVFREQ)
4762 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4763 M:      Kyungmin Park <kyungmin.park@samsung.com>
4764 R:      Chanwoo Choi <cw00.choi@samsung.com>
4765 L:      linux-pm@vger.kernel.org
4766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4767 S:      Maintained
4768 F:      drivers/devfreq/
4769 F:      include/linux/devfreq.h
4770 F:      Documentation/devicetree/bindings/devfreq/
4771 F:      include/trace/events/devfreq.h
4772
4773 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4774 M:      Chanwoo Choi <cw00.choi@samsung.com>
4775 L:      linux-pm@vger.kernel.org
4776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4777 S:      Supported
4778 F:      drivers/devfreq/event/
4779 F:      drivers/devfreq/devfreq-event.c
4780 F:      include/linux/devfreq-event.h
4781 F:      Documentation/devicetree/bindings/devfreq/event/
4782
4783 DEVICE NUMBER REGISTRY
4784 M:      Torben Mathiasen <device@lanana.org>
4785 W:      http://lanana.org/docs/device-list/index.html
4786 S:      Maintained
4787
4788 DEVICE-MAPPER  (LVM)
4789 M:      Alasdair Kergon <agk@redhat.com>
4790 M:      Mike Snitzer <snitzer@redhat.com>
4791 M:      dm-devel@redhat.com
4792 L:      dm-devel@redhat.com
4793 W:      http://sources.redhat.com/dm
4794 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4796 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4797 S:      Maintained
4798 F:      Documentation/admin-guide/device-mapper/
4799 F:      drivers/md/Makefile
4800 F:      drivers/md/Kconfig
4801 F:      drivers/md/dm*
4802 F:      drivers/md/persistent-data/
4803 F:      include/linux/device-mapper.h
4804 F:      include/linux/dm-*.h
4805 F:      include/uapi/linux/dm-*.h
4806
4807 DEVLINK
4808 M:      Jiri Pirko <jiri@mellanox.com>
4809 L:      netdev@vger.kernel.org
4810 S:      Supported
4811 F:      net/core/devlink.c
4812 F:      include/net/devlink.h
4813 F:      include/uapi/linux/devlink.h
4814
4815 DIALOG SEMICONDUCTOR DRIVERS
4816 M:      Support Opensource <support.opensource@diasemi.com>
4817 W:      http://www.dialog-semiconductor.com/products
4818 S:      Supported
4819 F:      Documentation/hwmon/da90??.rst
4820 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4821 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4822 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4823 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4824 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4825 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4826 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4827 F:      drivers/gpio/gpio-da90??.c
4828 F:      drivers/hwmon/da90??-hwmon.c
4829 F:      drivers/iio/adc/da91??-*.c
4830 F:      drivers/input/misc/da90??_onkey.c
4831 F:      drivers/input/touchscreen/da9052_tsi.c
4832 F:      drivers/leds/leds-da90??.c
4833 F:      drivers/mfd/da903x.c
4834 F:      drivers/mfd/da90??-*.c
4835 F:      drivers/mfd/da91??-*.c
4836 F:      drivers/power/supply/da9052-battery.c
4837 F:      drivers/power/supply/da91??-*.c
4838 F:      drivers/regulator/da903x.c
4839 F:      drivers/regulator/da9???-regulator.[ch]
4840 F:      drivers/regulator/slg51000-regulator.[ch]
4841 F:      drivers/thermal/da90??-thermal.c
4842 F:      drivers/rtc/rtc-da90??.c
4843 F:      drivers/video/backlight/da90??_bl.c
4844 F:      drivers/watchdog/da90??_wdt.c
4845 F:      include/linux/mfd/da903x.h
4846 F:      include/linux/mfd/da9052/
4847 F:      include/linux/mfd/da9055/
4848 F:      include/linux/mfd/da9062/
4849 F:      include/linux/mfd/da9063/
4850 F:      include/linux/mfd/da9150/
4851 F:      include/linux/regulator/da9211.h
4852 F:      include/sound/da[79]*.h
4853 F:      sound/soc/codecs/da[79]*.[ch]
4854
4855 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4856 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4857 L:      linux-gpio@vger.kernel.org
4858 S:      Maintained
4859 F:      drivers/gpio/gpio-gpio-mm.c
4860
4861 DIOLAN U2C-12 I2C DRIVER
4862 M:      Guenter Roeck <linux@roeck-us.net>
4863 L:      linux-i2c@vger.kernel.org
4864 S:      Maintained
4865 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4866
4867 FILESYSTEM DIRECT ACCESS (DAX)
4868 M:      Dan Williams <dan.j.williams@intel.com>
4869 R:      Matthew Wilcox <willy@infradead.org>
4870 R:      Jan Kara <jack@suse.cz>
4871 L:      linux-fsdevel@vger.kernel.org
4872 L:      linux-nvdimm@lists.01.org
4873 S:      Supported
4874 F:      fs/dax.c
4875 F:      include/linux/dax.h
4876 F:      include/trace/events/fs_dax.h
4877
4878 DEVICE DIRECT ACCESS (DAX)
4879 M:      Dan Williams <dan.j.williams@intel.com>
4880 M:      Vishal Verma <vishal.l.verma@intel.com>
4881 M:      Keith Busch <keith.busch@intel.com>
4882 M:      Dave Jiang <dave.jiang@intel.com>
4883 L:      linux-nvdimm@lists.01.org
4884 S:      Supported
4885 F:      drivers/dax/
4886
4887 DIRECTORY NOTIFICATION (DNOTIFY)
4888 M:      Jan Kara <jack@suse.cz>
4889 R:      Amir Goldstein <amir73il@gmail.com>
4890 L:      linux-fsdevel@vger.kernel.org
4891 S:      Maintained
4892 F:      Documentation/filesystems/dnotify.txt
4893 F:      fs/notify/dnotify/
4894 F:      include/linux/dnotify.h
4895
4896 DISK GEOMETRY AND PARTITION HANDLING
4897 M:      Andries Brouwer <aeb@cwi.nl>
4898 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4899 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4900 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4901 S:      Maintained
4902
4903 DISKQUOTA
4904 M:      Jan Kara <jack@suse.com>
4905 S:      Maintained
4906 F:      Documentation/filesystems/quota.txt
4907 F:      fs/quota/
4908 F:      include/linux/quota*.h
4909 F:      include/uapi/linux/quota*.h
4910
4911 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4912 M:      Bernie Thompson <bernie@plugable.com>
4913 L:      linux-fbdev@vger.kernel.org
4914 S:      Maintained
4915 W:      http://plugable.com/category/projects/udlfb/
4916 F:      drivers/video/fbdev/udlfb.c
4917 F:      include/video/udlfb.h
4918 F:      Documentation/fb/udlfb.rst
4919
4920 DISTRIBUTED LOCK MANAGER (DLM)
4921 M:      Christine Caulfield <ccaulfie@redhat.com>
4922 M:      David Teigland <teigland@redhat.com>
4923 L:      cluster-devel@redhat.com
4924 W:      http://sources.redhat.com/cluster/
4925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4926 S:      Supported
4927 F:      fs/dlm/
4928
4929 DMA BUFFER SHARING FRAMEWORK
4930 M:      Sumit Semwal <sumit.semwal@linaro.org>
4931 S:      Maintained
4932 L:      linux-media@vger.kernel.org
4933 L:      dri-devel@lists.freedesktop.org
4934 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4935 F:      drivers/dma-buf/
4936 F:      include/linux/dma-buf*
4937 F:      include/linux/reservation.h
4938 F:      include/linux/*fence.h
4939 F:      Documentation/driver-api/dma-buf.rst
4940 T:      git git://anongit.freedesktop.org/drm/drm-misc
4941
4942 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4943 M:      Vinod Koul <vkoul@kernel.org>
4944 L:      dmaengine@vger.kernel.org
4945 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4946 S:      Maintained
4947 F:      drivers/dma/
4948 F:      include/linux/dmaengine.h
4949 F:      include/linux/of_dma.h
4950 F:      Documentation/devicetree/bindings/dma/
4951 F:      Documentation/driver-api/dmaengine/
4952 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4953
4954 DMA MAPPING HELPERS
4955 M:      Christoph Hellwig <hch@lst.de>
4956 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4957 R:      Robin Murphy <robin.murphy@arm.com>
4958 L:      iommu@lists.linux-foundation.org
4959 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4960 W:      http://git.infradead.org/users/hch/dma-mapping.git
4961 S:      Supported
4962 F:      kernel/dma/
4963 F:      include/asm-generic/dma-mapping.h
4964 F:      include/linux/dma-direct.h
4965 F:      include/linux/dma-mapping.h
4966 F:      include/linux/dma-noncoherent.h
4967
4968 DME1737 HARDWARE MONITOR DRIVER
4969 M:      Juerg Haefliger <juergh@gmail.com>
4970 L:      linux-hwmon@vger.kernel.org
4971 S:      Maintained
4972 F:      Documentation/hwmon/dme1737.rst
4973 F:      drivers/hwmon/dme1737.c
4974
4975 DMI/SMBIOS SUPPORT
4976 M:      Jean Delvare <jdelvare@suse.com>
4977 S:      Maintained
4978 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4979 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4980 F:      drivers/firmware/dmi-id.c
4981 F:      drivers/firmware/dmi_scan.c
4982 F:      include/linux/dmi.h
4983
4984 DOCUMENTATION
4985 M:      Jonathan Corbet <corbet@lwn.net>
4986 L:      linux-doc@vger.kernel.org
4987 S:      Maintained
4988 F:      Documentation/
4989 F:      scripts/documentation-file-ref-check
4990 F:      scripts/kernel-doc
4991 F:      scripts/sphinx-pre-install
4992 X:      Documentation/ABI/
4993 X:      Documentation/firmware-guide/acpi/
4994 X:      Documentation/devicetree/
4995 X:      Documentation/i2c/
4996 X:      Documentation/media/
4997 X:      Documentation/power/
4998 X:      Documentation/spi/
4999 T:      git git://git.lwn.net/linux.git docs-next
5000
5001 DOCUMENTATION/ITALIAN
5002 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5003 L:      linux-doc@vger.kernel.org
5004 S:      Maintained
5005 F:      Documentation/translations/it_IT
5006
5007 DOCUMENTATION SCRIPTS
5008 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5009 L:      linux-doc@vger.kernel.org
5010 S:      Maintained
5011 F:      scripts/documentation-file-ref-check
5012 F:      scripts/sphinx-pre-install
5013 F:      Documentation/sphinx/parse-headers.pl
5014
5015 DONGWOON DW9714 LENS VOICE COIL DRIVER
5016 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5017 L:      linux-media@vger.kernel.org
5018 T:      git git://linuxtv.org/media_tree.git
5019 S:      Maintained
5020 F:      drivers/media/i2c/dw9714.c
5021 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5022
5023 DONGWOON DW9807 LENS VOICE COIL DRIVER
5024 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5025 L:      linux-media@vger.kernel.org
5026 T:      git git://linuxtv.org/media_tree.git
5027 S:      Maintained
5028 F:      drivers/media/i2c/dw9807-vcm.c
5029 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5030
5031 DOUBLETALK DRIVER
5032 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5033 L:      blinux-list@redhat.com
5034 S:      Maintained
5035 F:      drivers/char/dtlk.c
5036 F:      include/linux/dtlk.h
5037
5038 DPAA2 DATAPATH I/O (DPIO) DRIVER
5039 M:      Roy Pledge <Roy.Pledge@nxp.com>
5040 L:      linux-kernel@vger.kernel.org
5041 S:      Maintained
5042 F:      drivers/soc/fsl/dpio
5043
5044 DPAA2 ETHERNET DRIVER
5045 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5046 L:      netdev@vger.kernel.org
5047 S:      Maintained
5048 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5049 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5050 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5051 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5052 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5053
5054 DPAA2 ETHERNET SWITCH DRIVER
5055 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5056 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5057 L:      linux-kernel@vger.kernel.org
5058 S:      Maintained
5059 F:      drivers/staging/fsl-dpaa2/ethsw
5060
5061 DPT_I2O SCSI RAID DRIVER
5062 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5063 L:      linux-scsi@vger.kernel.org
5064 W:      http://www.adaptec.com/
5065 S:      Maintained
5066 F:      drivers/scsi/dpt*
5067 F:      drivers/scsi/dpt/
5068
5069 DRBD DRIVER
5070 M:      Philipp Reisner <philipp.reisner@linbit.com>
5071 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5072 L:      drbd-dev@lists.linbit.com
5073 W:      http://www.drbd.org
5074 T:      git git://git.linbit.com/linux-drbd.git
5075 T:      git git://git.linbit.com/drbd-8.4.git
5076 S:      Supported
5077 F:      drivers/block/drbd/
5078 F:      lib/lru_cache.c
5079 F:      Documentation/admin-guide/blockdev/
5080
5081 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5082 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5083 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5085 S:      Supported
5086 F:      Documentation/kobject.txt
5087 F:      drivers/base/
5088 F:      fs/debugfs/
5089 F:      fs/sysfs/
5090 F:      include/linux/debugfs.h
5091 F:      include/linux/kobj*
5092 F:      lib/kobj*
5093
5094 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5095 M:      Kevin Hilman <khilman@kernel.org>
5096 M:      Nishanth Menon <nm@ti.com>
5097 S:      Maintained
5098 F:      drivers/power/avs/
5099 F:      include/linux/power/smartreflex.h
5100 L:      linux-pm@vger.kernel.org
5101
5102 DRM DRIVER FOR ARM PL111 CLCD
5103 M:      Eric Anholt <eric@anholt.net>
5104 T:      git git://anongit.freedesktop.org/drm/drm-misc
5105 S:      Supported
5106 F:      drivers/gpu/drm/pl111/
5107
5108 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5109 M:      Linus Walleij <linus.walleij@linaro.org>
5110 T:      git git://anongit.freedesktop.org/drm/drm-misc
5111 S:      Maintained
5112 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5113 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5114
5115 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5116 M:      Dave Airlie <airlied@redhat.com>
5117 S:      Odd Fixes
5118 F:      drivers/gpu/drm/ast/
5119
5120 DRM DRIVER FOR ASPEED BMC GFX
5121 M:      Joel Stanley <joel@jms.id.au>
5122 L:      linux-aspeed@lists.ozlabs.org
5123 T:      git git://anongit.freedesktop.org/drm/drm-misc
5124 S:      Supported
5125 F:      drivers/gpu/drm/aspeed/
5126 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5127
5128 DRM DRIVER FOR BOCHS VIRTUAL GPU
5129 M:      Gerd Hoffmann <kraxel@redhat.com>
5130 L:      virtualization@lists.linux-foundation.org
5131 T:      git git://anongit.freedesktop.org/drm/drm-misc
5132 S:      Maintained
5133 F:      drivers/gpu/drm/bochs/
5134
5135 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
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/tve200/
5140
5141 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5142 M:      Jagan Teki <jagan@amarulasolutions.com>
5143 S:      Maintained
5144 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5145 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5146
5147 DRM DRIVER FOR ILITEK ILI9225 PANELS
5148 M:      David Lechner <david@lechnology.com>
5149 S:      Maintained
5150 F:      drivers/gpu/drm/tinydrm/ili9225.c
5151 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5152
5153 DRM DRIVER FOR HX8357D PANELS
5154 M:      Eric Anholt <eric@anholt.net>
5155 T:      git git://anongit.freedesktop.org/drm/drm-misc
5156 S:      Maintained
5157 F:      drivers/gpu/drm/tinydrm/hx8357d.c
5158 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5159
5160 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5161 S:      Orphan / Obsolete
5162 F:      drivers/gpu/drm/i810/
5163 F:      include/uapi/drm/i810_drm.h
5164
5165 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5166 S:      Orphan / Obsolete
5167 F:      drivers/gpu/drm/mga/
5168 F:      include/uapi/drm/mga_drm.h
5169
5170 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5171 M:      Dave Airlie <airlied@redhat.com>
5172 S:      Odd Fixes
5173 F:      drivers/gpu/drm/mgag200/
5174
5175 DRM DRIVER FOR MI0283QT
5176 M:      Noralf Trønnes <noralf@tronnes.org>
5177 S:      Maintained
5178 F:      drivers/gpu/drm/tinydrm/mi0283qt.c
5179 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5180
5181 DRM DRIVER FOR MSM ADRENO GPU
5182 M:      Rob Clark <robdclark@gmail.com>
5183 M:      Sean Paul <sean@poorly.run>
5184 L:      linux-arm-msm@vger.kernel.org
5185 L:      dri-devel@lists.freedesktop.org
5186 L:      freedreno@lists.freedesktop.org
5187 T:      git https://gitlab.freedesktop.org/drm/msm.git
5188 S:      Maintained
5189 F:      drivers/gpu/drm/msm/
5190 F:      include/uapi/drm/msm_drm.h
5191 F:      Documentation/devicetree/bindings/display/msm/
5192
5193 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5194 M:      Ben Skeggs <bskeggs@redhat.com>
5195 L:      dri-devel@lists.freedesktop.org
5196 L:      nouveau@lists.freedesktop.org
5197 T:      git git://github.com/skeggsb/linux
5198 S:      Supported
5199 F:      drivers/gpu/drm/nouveau/
5200 F:      include/uapi/drm/nouveau_drm.h
5201
5202 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5203 M:      Stefan Mavrodiev <stefan@olimex.com>
5204 S:      Maintained
5205 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5206 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5207
5208 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5209 M:      Noralf Trønnes <noralf@tronnes.org>
5210 S:      Maintained
5211 F:      drivers/gpu/drm/tinydrm/repaper.c
5212 F:      Documentation/devicetree/bindings/display/repaper.txt
5213
5214 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5215 M:      Dave Airlie <airlied@redhat.com>
5216 M:      Gerd Hoffmann <kraxel@redhat.com>
5217 L:      virtualization@lists.linux-foundation.org
5218 T:      git git://anongit.freedesktop.org/drm/drm-misc
5219 S:      Obsolete
5220 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5221 F:      drivers/gpu/drm/cirrus/
5222
5223 DRM DRIVER FOR QXL VIRTUAL GPU
5224 M:      Dave Airlie <airlied@redhat.com>
5225 M:      Gerd Hoffmann <kraxel@redhat.com>
5226 L:      virtualization@lists.linux-foundation.org
5227 L:      spice-devel@lists.freedesktop.org
5228 T:      git git://anongit.freedesktop.org/drm/drm-misc
5229 S:      Maintained
5230 F:      drivers/gpu/drm/qxl/
5231 F:      include/uapi/drm/qxl_drm.h
5232
5233 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5234 S:      Orphan / Obsolete
5235 F:      drivers/gpu/drm/r128/
5236 F:      include/uapi/drm/r128_drm.h
5237
5238 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5239 M:      Guido Günther <agx@sigxcpu.org>
5240 S:      Maintained
5241 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5242 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5243
5244 DRM DRIVER FOR SAVAGE VIDEO CARDS
5245 S:      Orphan / Obsolete
5246 F:      drivers/gpu/drm/savage/
5247 F:      include/uapi/drm/savage_drm.h
5248
5249 DRM DRIVER FOR SIS VIDEO CARDS
5250 S:      Orphan / Obsolete
5251 F:      drivers/gpu/drm/sis/
5252 F:      include/uapi/drm/sis_drm.h
5253
5254 DRM DRIVER FOR SITRONIX ST7701 PANELS
5255 M:      Jagan Teki <jagan@amarulasolutions.com>
5256 S:      Maintained
5257 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5258 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5259
5260 DRM DRIVER FOR SITRONIX ST7586 PANELS
5261 M:      David Lechner <david@lechnology.com>
5262 S:      Maintained
5263 F:      drivers/gpu/drm/tinydrm/st7586.c
5264 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5265
5266 DRM DRIVER FOR SITRONIX ST7735R PANELS
5267 M:      David Lechner <david@lechnology.com>
5268 S:      Maintained
5269 F:      drivers/gpu/drm/tinydrm/st7735r.c
5270 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.txt
5271
5272 DRM DRIVER FOR ST-ERICSSON MCDE
5273 M:      Linus Walleij <linus.walleij@linaro.org>
5274 T:      git git://anongit.freedesktop.org/drm/drm-misc
5275 S:      Maintained
5276 F:      drivers/gpu/drm/mcde/
5277 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5278
5279 DRM DRIVER FOR TDFX VIDEO CARDS
5280 S:      Orphan / Obsolete
5281 F:      drivers/gpu/drm/tdfx/
5282
5283 DRM DRIVER FOR TPO TPG110 PANELS
5284 M:      Linus Walleij <linus.walleij@linaro.org>
5285 T:      git git://anongit.freedesktop.org/drm/drm-misc
5286 S:      Maintained
5287 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5288 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.txt
5289
5290 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5291 M:      Dave Airlie <airlied@redhat.com>
5292 R:      Sean Paul <sean@poorly.run>
5293 L:      dri-devel@lists.freedesktop.org
5294 S:      Odd Fixes
5295 F:      drivers/gpu/drm/udl/
5296 T:      git git://anongit.freedesktop.org/drm/drm-misc
5297
5298 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5299 M:      Hans de Goede <hdegoede@redhat.com>
5300 L:      dri-devel@lists.freedesktop.org
5301 S:      Maintained
5302 F:      drivers/gpu/drm/vboxvideo/
5303 T:      git git://anongit.freedesktop.org/drm/drm-misc
5304
5305 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5306 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5307 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5308 R:      Daniel Vetter <daniel@ffwll.ch>
5309 T:      git git://anongit.freedesktop.org/drm/drm-misc
5310 S:      Maintained
5311 L:      dri-devel@lists.freedesktop.org
5312 F:      drivers/gpu/drm/vkms/
5313 F:      Documentation/gpu/vkms.rst
5314
5315 DRM DRIVER FOR VMWARE VIRTUAL GPU
5316 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5317 M:      Thomas Hellstrom <thellstrom@vmware.com>
5318 L:      dri-devel@lists.freedesktop.org
5319 T:      git git://people.freedesktop.org/~thomash/linux
5320 S:      Supported
5321 F:      drivers/gpu/drm/vmwgfx/
5322 F:      include/uapi/drm/vmwgfx_drm.h
5323
5324 DRM DRIVERS
5325 M:      David Airlie <airlied@linux.ie>
5326 M:      Daniel Vetter <daniel@ffwll.ch>
5327 L:      dri-devel@lists.freedesktop.org
5328 T:      git git://anongit.freedesktop.org/drm/drm
5329 B:      https://bugs.freedesktop.org/
5330 C:      irc://chat.freenode.net/dri-devel
5331 S:      Maintained
5332 F:      drivers/gpu/drm/
5333 F:      drivers/gpu/vga/
5334 F:      Documentation/devicetree/bindings/display/
5335 F:      Documentation/devicetree/bindings/gpu/
5336 F:      Documentation/gpu/
5337 F:      include/drm/
5338 F:      include/uapi/drm/
5339 F:      include/linux/vga*
5340
5341 DRM DRIVERS AND MISC GPU PATCHES
5342 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5343 M:      Maxime Ripard <mripard@kernel.org>
5344 M:      Sean Paul <sean@poorly.run>
5345 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5346 S:      Maintained
5347 T:      git git://anongit.freedesktop.org/drm/drm-misc
5348 F:      Documentation/gpu/
5349 F:      drivers/gpu/vga/
5350 F:      drivers/gpu/drm/*
5351 F:      include/drm/drm*
5352 F:      include/uapi/drm/drm*
5353 F:      include/linux/vga*
5354
5355 DRM DRIVERS FOR ALLWINNER A10
5356 M:      Maxime Ripard <mripard@kernel.org>
5357 L:      dri-devel@lists.freedesktop.org
5358 S:      Supported
5359 F:      drivers/gpu/drm/sun4i/
5360 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5361 T:      git git://anongit.freedesktop.org/drm/drm-misc
5362
5363 DRM DRIVERS FOR AMLOGIC SOCS
5364 M:      Neil Armstrong <narmstrong@baylibre.com>
5365 L:      dri-devel@lists.freedesktop.org
5366 L:      linux-amlogic@lists.infradead.org
5367 W:      http://linux-meson.com/
5368 S:      Supported
5369 F:      drivers/gpu/drm/meson/
5370 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
5371 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
5372 F:      Documentation/gpu/meson.rst
5373 T:      git git://anongit.freedesktop.org/drm/drm-misc
5374
5375 DRM DRIVERS FOR ATMEL HLCDC
5376 M:      Boris Brezillon <bbrezillon@kernel.org>
5377 L:      dri-devel@lists.freedesktop.org
5378 S:      Supported
5379 F:      drivers/gpu/drm/atmel-hlcdc/
5380 F:      Documentation/devicetree/bindings/display/atmel/
5381 T:      git git://anongit.freedesktop.org/drm/drm-misc
5382
5383 DRM DRIVERS FOR BRIDGE CHIPS
5384 M:      Andrzej Hajda <a.hajda@samsung.com>
5385 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5386 S:      Maintained
5387 T:      git git://anongit.freedesktop.org/drm/drm-misc
5388 F:      drivers/gpu/drm/bridge/
5389
5390 DRM DRIVERS FOR EXYNOS
5391 M:      Inki Dae <inki.dae@samsung.com>
5392 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5393 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5394 M:      Kyungmin Park <kyungmin.park@samsung.com>
5395 L:      dri-devel@lists.freedesktop.org
5396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5397 S:      Supported
5398 F:      drivers/gpu/drm/exynos/
5399 F:      include/uapi/drm/exynos_drm.h
5400 F:      Documentation/devicetree/bindings/display/exynos/
5401
5402 DRM DRIVERS FOR FREESCALE DCU
5403 M:      Stefan Agner <stefan@agner.ch>
5404 M:      Alison Wang <alison.wang@nxp.com>
5405 L:      dri-devel@lists.freedesktop.org
5406 S:      Supported
5407 F:      drivers/gpu/drm/fsl-dcu/
5408 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5409 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5410 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19-05b.txt
5411 T:      git git://anongit.freedesktop.org/drm/drm-misc
5412
5413 DRM DRIVERS FOR FREESCALE IMX
5414 M:      Philipp Zabel <p.zabel@pengutronix.de>
5415 L:      dri-devel@lists.freedesktop.org
5416 S:      Maintained
5417 F:      drivers/gpu/drm/imx/
5418 F:      drivers/gpu/ipu-v3/
5419 F:      Documentation/devicetree/bindings/display/imx/
5420
5421 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5422 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5423 L:      dri-devel@lists.freedesktop.org
5424 T:      git git://github.com/patjak/drm-gma500
5425 S:      Maintained
5426 F:      drivers/gpu/drm/gma500/
5427
5428 DRM DRIVERS FOR HISILICON
5429 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
5430 M:      Rongrong Zou <zourongrong@gmail.com>
5431 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5432 R:      Chen Feng <puck.chen@hisilicon.com>
5433 L:      dri-devel@lists.freedesktop.org
5434 T:      git git://github.com/xin3liang/linux.git
5435 S:      Maintained
5436 F:      drivers/gpu/drm/hisilicon/
5437 F:      Documentation/devicetree/bindings/display/hisilicon/
5438
5439 DRM DRIVERS FOR LIMA
5440 M:      Qiang Yu <yuq825@gmail.com>
5441 L:      dri-devel@lists.freedesktop.org
5442 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5443 S:      Maintained
5444 F:      drivers/gpu/drm/lima/
5445 F:      include/uapi/drm/lima_drm.h
5446 T:      git git://anongit.freedesktop.org/drm/drm-misc
5447
5448 DRM DRIVERS FOR MEDIATEK
5449 M:      CK Hu <ck.hu@mediatek.com>
5450 M:      Philipp Zabel <p.zabel@pengutronix.de>
5451 L:      dri-devel@lists.freedesktop.org
5452 S:      Supported
5453 F:      drivers/gpu/drm/mediatek/
5454 F:      Documentation/devicetree/bindings/display/mediatek/
5455
5456 DRM DRIVERS FOR NVIDIA TEGRA
5457 M:      Thierry Reding <thierry.reding@gmail.com>
5458 L:      dri-devel@lists.freedesktop.org
5459 L:      linux-tegra@vger.kernel.org
5460 T:      git git://anongit.freedesktop.org/tegra/linux.git
5461 S:      Supported
5462 F:      drivers/gpu/drm/tegra/
5463 F:      drivers/gpu/host1x/
5464 F:      include/linux/host1x.h
5465 F:      include/uapi/drm/tegra_drm.h
5466 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5467
5468 DRM DRIVERS FOR RENESAS
5469 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5470 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5471 L:      dri-devel@lists.freedesktop.org
5472 L:      linux-renesas-soc@vger.kernel.org
5473 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5474 S:      Supported
5475 F:      drivers/gpu/drm/rcar-du/
5476 F:      drivers/gpu/drm/shmobile/
5477 F:      include/linux/platform_data/shmob_drm.h
5478 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5479 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5480 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5481
5482 DRM DRIVERS FOR ROCKCHIP
5483 M:      Sandy Huang <hjc@rock-chips.com>
5484 M:      Heiko Stübner <heiko@sntech.de>
5485 L:      dri-devel@lists.freedesktop.org
5486 S:      Maintained
5487 F:      drivers/gpu/drm/rockchip/
5488 F:      Documentation/devicetree/bindings/display/rockchip/
5489 T:      git git://anongit.freedesktop.org/drm/drm-misc
5490
5491 DRM DRIVERS FOR STI
5492 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5493 M:      Vincent Abriou <vincent.abriou@st.com>
5494 L:      dri-devel@lists.freedesktop.org
5495 T:      git git://anongit.freedesktop.org/drm/drm-misc
5496 S:      Maintained
5497 F:      drivers/gpu/drm/sti
5498 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5499
5500 DRM DRIVERS FOR STM
5501 M:      Yannick Fertre <yannick.fertre@st.com>
5502 M:      Philippe Cornu <philippe.cornu@st.com>
5503 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5504 M:      Vincent Abriou <vincent.abriou@st.com>
5505 L:      dri-devel@lists.freedesktop.org
5506 T:      git git://anongit.freedesktop.org/drm/drm-misc
5507 S:      Maintained
5508 F:      drivers/gpu/drm/stm
5509 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
5510
5511 DRM DRIVERS FOR TI LCDC
5512 M:      Jyri Sarha <jsarha@ti.com>
5513 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5514 L:      dri-devel@lists.freedesktop.org
5515 S:      Maintained
5516 F:      drivers/gpu/drm/tilcdc/
5517 F:      Documentation/devicetree/bindings/display/tilcdc/
5518
5519 DRM DRIVERS FOR TI OMAP
5520 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5521 L:      dri-devel@lists.freedesktop.org
5522 S:      Maintained
5523 F:      drivers/gpu/drm/omapdrm/
5524 F:      Documentation/devicetree/bindings/display/ti/
5525
5526 DRM DRIVERS FOR V3D
5527 M:      Eric Anholt <eric@anholt.net>
5528 S:      Supported
5529 F:      drivers/gpu/drm/v3d/
5530 F:      include/uapi/drm/v3d_drm.h
5531 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5532 T:      git git://anongit.freedesktop.org/drm/drm-misc
5533
5534 DRM DRIVERS FOR VC4
5535 M:      Eric Anholt <eric@anholt.net>
5536 T:      git git://github.com/anholt/linux
5537 S:      Supported
5538 F:      drivers/gpu/drm/vc4/
5539 F:      include/uapi/drm/vc4_drm.h
5540 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5541 T:      git git://anongit.freedesktop.org/drm/drm-misc
5542
5543 DRM DRIVERS FOR VIVANTE GPU IP
5544 M:      Lucas Stach <l.stach@pengutronix.de>
5545 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5546 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5547 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5548 L:      dri-devel@lists.freedesktop.org
5549 S:      Maintained
5550 F:      drivers/gpu/drm/etnaviv/
5551 F:      include/uapi/drm/etnaviv_drm.h
5552 F:      Documentation/devicetree/bindings/display/etnaviv/
5553
5554 DRM DRIVERS FOR ZTE ZX
5555 M:      Shawn Guo <shawnguo@kernel.org>
5556 L:      dri-devel@lists.freedesktop.org
5557 S:      Maintained
5558 F:      drivers/gpu/drm/zte/
5559 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5560 T:      git git://anongit.freedesktop.org/drm/drm-misc
5561
5562 DRM PANEL DRIVERS
5563 M:      Thierry Reding <thierry.reding@gmail.com>
5564 R:      Sam Ravnborg <sam@ravnborg.org>
5565 L:      dri-devel@lists.freedesktop.org
5566 T:      git git://anongit.freedesktop.org/drm/drm-misc
5567 S:      Maintained
5568 F:      drivers/gpu/drm/drm_panel.c
5569 F:      drivers/gpu/drm/panel/
5570 F:      include/drm/drm_panel.h
5571 F:      Documentation/devicetree/bindings/display/panel/
5572
5573 DRM TINYDRM DRIVERS
5574 M:      Noralf Trønnes <noralf@tronnes.org>
5575 W:      https://github.com/notro/tinydrm/wiki/Development
5576 T:      git git://anongit.freedesktop.org/drm/drm-misc
5577 S:      Maintained
5578 F:      drivers/gpu/drm/tinydrm/
5579 F:      include/drm/tinydrm/
5580
5581 DRM DRIVERS FOR XEN
5582 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5583 T:      git git://anongit.freedesktop.org/drm/drm-misc
5584 L:      dri-devel@lists.freedesktop.org
5585 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5586 S:      Supported
5587 F:      drivers/gpu/drm/xen/
5588 F:      Documentation/gpu/xen-front.rst
5589
5590 DRM TTM SUBSYSTEM
5591 M:      Christian Koenig <christian.koenig@amd.com>
5592 M:      Huang Rui <ray.huang@amd.com>
5593 T:      git git://people.freedesktop.org/~agd5f/linux
5594 S:      Maintained
5595 L:      dri-devel@lists.freedesktop.org
5596 F:      include/drm/ttm/
5597 F:      drivers/gpu/drm/ttm/
5598
5599 DSBR100 USB FM RADIO DRIVER
5600 M:      Alexey Klimov <klimov.linux@gmail.com>
5601 L:      linux-media@vger.kernel.org
5602 T:      git git://linuxtv.org/media_tree.git
5603 S:      Maintained
5604 F:      drivers/media/radio/dsbr100.c
5605
5606 DT3155 MEDIA DRIVER
5607 M:      Hans Verkuil <hverkuil@xs4all.nl>
5608 L:      linux-media@vger.kernel.org
5609 T:      git git://linuxtv.org/media_tree.git
5610 W:      https://linuxtv.org
5611 S:      Odd Fixes
5612 F:      drivers/media/pci/dt3155/
5613
5614 DVB_USB_AF9015 MEDIA DRIVER
5615 M:      Antti Palosaari <crope@iki.fi>
5616 L:      linux-media@vger.kernel.org
5617 W:      https://linuxtv.org
5618 W:      http://palosaari.fi/linux/
5619 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5620 T:      git git://linuxtv.org/anttip/media_tree.git
5621 S:      Maintained
5622 F:      drivers/media/usb/dvb-usb-v2/af9015*
5623
5624 DVB_USB_AF9035 MEDIA DRIVER
5625 M:      Antti Palosaari <crope@iki.fi>
5626 L:      linux-media@vger.kernel.org
5627 W:      https://linuxtv.org
5628 W:      http://palosaari.fi/linux/
5629 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5630 T:      git git://linuxtv.org/anttip/media_tree.git
5631 S:      Maintained
5632 F:      drivers/media/usb/dvb-usb-v2/af9035*
5633
5634 DVB_USB_ANYSEE MEDIA DRIVER
5635 M:      Antti Palosaari <crope@iki.fi>
5636 L:      linux-media@vger.kernel.org
5637 W:      https://linuxtv.org
5638 W:      http://palosaari.fi/linux/
5639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5640 T:      git git://linuxtv.org/anttip/media_tree.git
5641 S:      Maintained
5642 F:      drivers/media/usb/dvb-usb-v2/anysee*
5643
5644 DVB_USB_AU6610 MEDIA DRIVER
5645 M:      Antti Palosaari <crope@iki.fi>
5646 L:      linux-media@vger.kernel.org
5647 W:      https://linuxtv.org
5648 W:      http://palosaari.fi/linux/
5649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5650 T:      git git://linuxtv.org/anttip/media_tree.git
5651 S:      Maintained
5652 F:      drivers/media/usb/dvb-usb-v2/au6610*
5653
5654 DVB_USB_CE6230 MEDIA DRIVER
5655 M:      Antti Palosaari <crope@iki.fi>
5656 L:      linux-media@vger.kernel.org
5657 W:      https://linuxtv.org
5658 W:      http://palosaari.fi/linux/
5659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5660 T:      git git://linuxtv.org/anttip/media_tree.git
5661 S:      Maintained
5662 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5663
5664 DVB_USB_CXUSB MEDIA DRIVER
5665 M:      Michael Krufky <mkrufky@linuxtv.org>
5666 L:      linux-media@vger.kernel.org
5667 W:      https://linuxtv.org
5668 W:      http://github.com/mkrufky
5669 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5670 T:      git git://linuxtv.org/media_tree.git
5671 S:      Maintained
5672 F:      drivers/media/usb/dvb-usb/cxusb*
5673
5674 DVB_USB_EC168 MEDIA DRIVER
5675 M:      Antti Palosaari <crope@iki.fi>
5676 L:      linux-media@vger.kernel.org
5677 W:      https://linuxtv.org
5678 W:      http://palosaari.fi/linux/
5679 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5680 T:      git git://linuxtv.org/anttip/media_tree.git
5681 S:      Maintained
5682 F:      drivers/media/usb/dvb-usb-v2/ec168*
5683
5684 DVB_USB_GL861 MEDIA DRIVER
5685 M:      Antti Palosaari <crope@iki.fi>
5686 L:      linux-media@vger.kernel.org
5687 W:      https://linuxtv.org
5688 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5689 T:      git git://linuxtv.org/anttip/media_tree.git
5690 S:      Maintained
5691 F:      drivers/media/usb/dvb-usb-v2/gl861*
5692
5693 DVB_USB_MXL111SF MEDIA DRIVER
5694 M:      Michael Krufky <mkrufky@linuxtv.org>
5695 L:      linux-media@vger.kernel.org
5696 W:      https://linuxtv.org
5697 W:      http://github.com/mkrufky
5698 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5699 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5700 S:      Maintained
5701 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5702
5703 DVB_USB_RTL28XXU MEDIA DRIVER
5704 M:      Antti Palosaari <crope@iki.fi>
5705 L:      linux-media@vger.kernel.org
5706 W:      https://linuxtv.org
5707 W:      http://palosaari.fi/linux/
5708 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5709 T:      git git://linuxtv.org/anttip/media_tree.git
5710 S:      Maintained
5711 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5712
5713 DVB_USB_V2 MEDIA DRIVER
5714 M:      Antti Palosaari <crope@iki.fi>
5715 L:      linux-media@vger.kernel.org
5716 W:      https://linuxtv.org
5717 W:      http://palosaari.fi/linux/
5718 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5719 T:      git git://linuxtv.org/anttip/media_tree.git
5720 S:      Maintained
5721 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5722 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5723
5724 DYNAMIC DEBUG
5725 M:      Jason Baron <jbaron@akamai.com>
5726 S:      Maintained
5727 F:      lib/dynamic_debug.c
5728 F:      include/linux/dynamic_debug.h
5729
5730 DYNAMIC INTERRUPT MODERATION
5731 M:      Tal Gilboa <talgi@mellanox.com>
5732 S:      Maintained
5733 F:      include/linux/dim.h
5734 F:      lib/dim/
5735
5736 DZ DECSTATION DZ11 SERIAL DRIVER
5737 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
5738 S:      Maintained
5739 F:      drivers/tty/serial/dz.*
5740
5741 E3X0 POWER BUTTON DRIVER
5742 M:      Moritz Fischer <moritz.fischer@ettus.com>
5743 L:      usrp-users@lists.ettus.com
5744 W:      http://www.ettus.com
5745 S:      Supported
5746 F:      drivers/input/misc/e3x0-button.c
5747 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5748
5749 E4000 MEDIA DRIVER
5750 M:      Antti Palosaari <crope@iki.fi>
5751 L:      linux-media@vger.kernel.org
5752 W:      https://linuxtv.org
5753 W:      http://palosaari.fi/linux/
5754 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5755 T:      git git://linuxtv.org/anttip/media_tree.git
5756 S:      Maintained
5757 F:      drivers/media/tuners/e4000*
5758
5759 EARTH_PT1 MEDIA DRIVER
5760 M:      Akihiro Tsukada <tskd08@gmail.com>
5761 L:      linux-media@vger.kernel.org
5762 S:      Odd Fixes
5763 F:      drivers/media/pci/pt1/
5764
5765 EARTH_PT3 MEDIA DRIVER
5766 M:      Akihiro Tsukada <tskd08@gmail.com>
5767 L:      linux-media@vger.kernel.org
5768 S:      Odd Fixes
5769 F:      drivers/media/pci/pt3/
5770
5771 EC100 MEDIA DRIVER
5772 M:      Antti Palosaari <crope@iki.fi>
5773 L:      linux-media@vger.kernel.org
5774 W:      https://linuxtv.org
5775 W:      http://palosaari.fi/linux/
5776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5777 T:      git git://linuxtv.org/anttip/media_tree.git
5778 S:      Maintained
5779 F:      drivers/media/dvb-frontends/ec100*
5780
5781 ECRYPT FILE SYSTEM
5782 M:      Tyler Hicks <tyhicks@canonical.com>
5783 L:      ecryptfs@vger.kernel.org
5784 W:      http://ecryptfs.org
5785 W:      https://launchpad.net/ecryptfs
5786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5787 S:      Supported
5788 F:      Documentation/filesystems/ecryptfs.txt
5789 F:      fs/ecryptfs/
5790
5791 EDAC-AMD64
5792 M:      Borislav Petkov <bp@alien8.de>
5793 L:      linux-edac@vger.kernel.org
5794 S:      Maintained
5795 F:      drivers/edac/amd64_edac*
5796
5797 EDAC-AST2500
5798 M:      Stefan Schaeckeler <sschaeck@cisco.com>
5799 S:      Supported
5800 F:      drivers/edac/aspeed_edac.c
5801 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
5802
5803 EDAC-BLUEFIELD
5804 M:      Shravan Kumar Ramani <sramani@mellanox.com>
5805 S:      Supported
5806 F:      drivers/edac/bluefield_edac.c
5807
5808 EDAC-CALXEDA
5809 M:      Robert Richter <rric@kernel.org>
5810 L:      linux-edac@vger.kernel.org
5811 S:      Maintained
5812 F:      drivers/edac/highbank*
5813
5814 EDAC-CAVIUM OCTEON
5815 M:      Ralf Baechle <ralf@linux-mips.org>
5816 M:      David Daney <david.daney@cavium.com>
5817 L:      linux-edac@vger.kernel.org
5818 L:      linux-mips@vger.kernel.org
5819 S:      Supported
5820 F:      drivers/edac/octeon_edac*
5821
5822 EDAC-CAVIUM THUNDERX
5823 M:      David Daney <david.daney@cavium.com>
5824 M:      Jan Glauber <jglauber@cavium.com>
5825 L:      linux-edac@vger.kernel.org
5826 S:      Supported
5827 F:      drivers/edac/thunderx_edac*
5828
5829 EDAC-CORE
5830 M:      Borislav Petkov <bp@alien8.de>
5831 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5832 M:      Tony Luck <tony.luck@intel.com>
5833 R:      James Morse <james.morse@arm.com>
5834 R:      Robert Richter <rrichter@marvell.com>
5835 L:      linux-edac@vger.kernel.org
5836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
5837 S:      Supported
5838 F:      Documentation/admin-guide/ras.rst
5839 F:      Documentation/driver-api/edac.rst
5840 F:      drivers/edac/
5841 F:      include/linux/edac.h
5842
5843 EDAC-E752X
5844 M:      Mark Gross <mark.gross@intel.com>
5845 L:      linux-edac@vger.kernel.org
5846 S:      Maintained
5847 F:      drivers/edac/e752x_edac.c
5848
5849 EDAC-E7XXX
5850 L:      linux-edac@vger.kernel.org
5851 S:      Maintained
5852 F:      drivers/edac/e7xxx_edac.c
5853
5854 EDAC-FSL_DDR
5855 M:      York Sun <york.sun@nxp.com>
5856 L:      linux-edac@vger.kernel.org
5857 S:      Maintained
5858 F:      drivers/edac/fsl_ddr_edac.*
5859
5860 EDAC-GHES
5861 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5862 L:      linux-edac@vger.kernel.org
5863 S:      Maintained
5864 F:      drivers/edac/ghes_edac.c
5865
5866 EDAC-I10NM
5867 M:      Tony Luck <tony.luck@intel.com>
5868 L:      linux-edac@vger.kernel.org
5869 S:      Maintained
5870 F:      drivers/edac/i10nm_base.c
5871
5872 EDAC-I3000
5873 L:      linux-edac@vger.kernel.org
5874 S:      Orphan
5875 F:      drivers/edac/i3000_edac.c
5876
5877 EDAC-I5000
5878 L:      linux-edac@vger.kernel.org
5879 S:      Maintained
5880 F:      drivers/edac/i5000_edac.c
5881
5882 EDAC-I5400
5883 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5884 L:      linux-edac@vger.kernel.org
5885 S:      Maintained
5886 F:      drivers/edac/i5400_edac.c
5887
5888 EDAC-I7300
5889 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5890 L:      linux-edac@vger.kernel.org
5891 S:      Maintained
5892 F:      drivers/edac/i7300_edac.c
5893
5894 EDAC-I7CORE
5895 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5896 L:      linux-edac@vger.kernel.org
5897 S:      Maintained
5898 F:      drivers/edac/i7core_edac.c
5899
5900 EDAC-I82443BXGX
5901 M:      Tim Small <tim@buttersideup.com>
5902 L:      linux-edac@vger.kernel.org
5903 S:      Maintained
5904 F:      drivers/edac/i82443bxgx_edac.c
5905
5906 EDAC-I82975X
5907 M:      "Arvind R." <arvino55@gmail.com>
5908 L:      linux-edac@vger.kernel.org
5909 S:      Maintained
5910 F:      drivers/edac/i82975x_edac.c
5911
5912 EDAC-IE31200
5913 M:      Jason Baron <jbaron@akamai.com>
5914 L:      linux-edac@vger.kernel.org
5915 S:      Maintained
5916 F:      drivers/edac/ie31200_edac.c
5917
5918 EDAC-MPC85XX
5919 M:      Johannes Thumshirn <morbidrsa@gmail.com>
5920 L:      linux-edac@vger.kernel.org
5921 S:      Maintained
5922 F:      drivers/edac/mpc85xx_edac.[ch]
5923
5924 EDAC-PASEMI
5925 M:      Egor Martovetsky <egor@pasemi.com>
5926 L:      linux-edac@vger.kernel.org
5927 S:      Maintained
5928 F:      drivers/edac/pasemi_edac.c
5929
5930 EDAC-PND2
5931 M:      Tony Luck <tony.luck@intel.com>
5932 L:      linux-edac@vger.kernel.org
5933 S:      Maintained
5934 F:      drivers/edac/pnd2_edac.[ch]
5935
5936 EDAC-R82600
5937 M:      Tim Small <tim@buttersideup.com>
5938 L:      linux-edac@vger.kernel.org
5939 S:      Maintained
5940 F:      drivers/edac/r82600_edac.c
5941
5942 EDAC-SBRIDGE
5943 M:      Tony Luck <tony.luck@intel.com>
5944 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
5945 L:      linux-edac@vger.kernel.org
5946 S:      Maintained
5947 F:      drivers/edac/sb_edac.c
5948
5949 EDAC-SIFIVE
5950 M:      Yash Shah <yash.shah@sifive.com>
5951 L:      linux-edac@vger.kernel.org
5952 S:      Supported
5953 F:      drivers/edac/sifive_edac.c
5954
5955 EDAC-SKYLAKE
5956 M:      Tony Luck <tony.luck@intel.com>
5957 L:      linux-edac@vger.kernel.org
5958 S:      Maintained
5959 F:      drivers/edac/skx_*.c
5960
5961 EDAC-TI
5962 M:      Tero Kristo <t-kristo@ti.com>
5963 L:      linux-edac@vger.kernel.org
5964 S:      Maintained
5965 F:      drivers/edac/ti_edac.c
5966
5967 EDAC-QCOM
5968 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
5969 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
5970 L:      linux-arm-msm@vger.kernel.org
5971 L:      linux-edac@vger.kernel.org
5972 S:      Maintained
5973 F:      drivers/edac/qcom_edac.c
5974
5975 EDIROL UA-101/UA-1000 DRIVER
5976 M:      Clemens Ladisch <clemens@ladisch.de>
5977 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
5979 S:      Maintained
5980 F:      sound/usb/misc/ua101.c
5981
5982 EFI TEST DRIVER
5983 L:      linux-efi@vger.kernel.org
5984 M:      Ivan Hu <ivan.hu@canonical.com>
5985 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5986 S:      Maintained
5987 F:      drivers/firmware/efi/test/
5988
5989 EFI VARIABLE FILESYSTEM
5990 M:      Matthew Garrett <matthew.garrett@nebula.com>
5991 M:      Jeremy Kerr <jk@ozlabs.org>
5992 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5994 L:      linux-efi@vger.kernel.org
5995 S:      Maintained
5996 F:      fs/efivarfs/
5997
5998 EFIFB FRAMEBUFFER DRIVER
5999 L:      linux-fbdev@vger.kernel.org
6000 M:      Peter Jones <pjones@redhat.com>
6001 S:      Maintained
6002 F:      drivers/video/fbdev/efifb.c
6003
6004 EFS FILESYSTEM
6005 W:      http://aeschi.ch.eu.org/efs/
6006 S:      Orphan
6007 F:      fs/efs/
6008
6009 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6010 M:      Douglas Miller <dougmill@linux.ibm.com>
6011 L:      netdev@vger.kernel.org
6012 S:      Maintained
6013 F:      drivers/net/ethernet/ibm/ehea/
6014
6015 EM28XX VIDEO4LINUX DRIVER
6016 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6017 L:      linux-media@vger.kernel.org
6018 W:      https://linuxtv.org
6019 T:      git git://linuxtv.org/media_tree.git
6020 S:      Maintained
6021 F:      drivers/media/usb/em28xx/
6022 F:      Documentation/media/v4l-drivers/em28xx*
6023
6024 EMBEDDED LINUX
6025 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6026 M:      Matt Mackall <mpm@selenic.com>
6027 M:      David Woodhouse <dwmw2@infradead.org>
6028 L:      linux-embedded@vger.kernel.org
6029 S:      Maintained
6030
6031 Emulex 10Gbps iSCSI - OneConnect DRIVER
6032 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6033 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6034 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6035 L:      linux-scsi@vger.kernel.org
6036 W:      http://www.broadcom.com
6037 S:      Supported
6038 F:      drivers/scsi/be2iscsi/
6039
6040 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6041 M:      Sathya Perla <sathya.perla@broadcom.com>
6042 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6043 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6044 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6045 L:      netdev@vger.kernel.org
6046 W:      http://www.emulex.com
6047 S:      Supported
6048 F:      drivers/net/ethernet/emulex/benet/
6049
6050 EMULEX ONECONNECT ROCE DRIVER
6051 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6052 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6053 L:      linux-rdma@vger.kernel.org
6054 W:      http://www.broadcom.com
6055 S:      Odd Fixes
6056 F:      drivers/infiniband/hw/ocrdma/
6057 F:      include/uapi/rdma/ocrdma-abi.h
6058
6059 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6060 M:      James Smart <james.smart@broadcom.com>
6061 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6062 L:      linux-scsi@vger.kernel.org
6063 W:      http://www.broadcom.com
6064 S:      Supported
6065 F:      drivers/scsi/lpfc/
6066
6067 ENE CB710 FLASH CARD READER DRIVER
6068 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6069 S:      Maintained
6070 F:      drivers/misc/cb710/
6071 F:      drivers/mmc/host/cb710-mmc.*
6072 F:      include/linux/cb710.h
6073
6074 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6075 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6076 S:      Maintained
6077 F:      drivers/media/rc/ene_ir.*
6078
6079 EPSON S1D13XXX FRAMEBUFFER DRIVER
6080 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6081 S:      Maintained
6082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6083 F:      drivers/video/fbdev/s1d13xxxfb.c
6084 F:      include/video/s1d13xxxfb.h
6085
6086 EROFS FILE SYSTEM
6087 M:      Gao Xiang <gaoxiang25@huawei.com>
6088 M:      Chao Yu <yuchao0@huawei.com>
6089 L:      linux-erofs@lists.ozlabs.org
6090 S:      Maintained
6091 F:      fs/erofs/
6092
6093 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6094 M:      Jeff Layton <jlayton@kernel.org>
6095 S:      Maintained
6096 F:      lib/errseq.c
6097 F:      include/linux/errseq.h
6098
6099 ET131X NETWORK DRIVER
6100 M:      Mark Einon <mark.einon@gmail.com>
6101 S:      Odd Fixes
6102 F:      drivers/net/ethernet/agere/
6103
6104 ETHERNET BRIDGE
6105 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6106 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6107 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6108 L:      netdev@vger.kernel.org
6109 W:      http://www.linuxfoundation.org/en/Net:Bridge
6110 S:      Maintained
6111 F:      include/linux/netfilter_bridge/
6112 F:      net/bridge/
6113
6114 ETHERNET PHY LIBRARY
6115 M:      Andrew Lunn <andrew@lunn.ch>
6116 M:      Florian Fainelli <f.fainelli@gmail.com>
6117 M:      Heiner Kallweit <hkallweit1@gmail.com>
6118 L:      netdev@vger.kernel.org
6119 S:      Maintained
6120 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6121 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6122 F:      Documentation/devicetree/bindings/net/mdio*
6123 F:      Documentation/networking/phy.rst
6124 F:      drivers/net/phy/
6125 F:      drivers/of/of_mdio.c
6126 F:      drivers/of/of_net.c
6127 F:      include/linux/*mdio*.h
6128 F:      include/linux/of_net.h
6129 F:      include/linux/phy.h
6130 F:      include/linux/phy_fixed.h
6131 F:      include/linux/platform_data/mdio-bcm-unimac.h
6132 F:      include/linux/platform_data/mdio-gpio.h
6133 F:      include/trace/events/mdio.h
6134 F:      include/uapi/linux/mdio.h
6135 F:      include/uapi/linux/mii.h
6136
6137 EXFAT FILE SYSTEM
6138 M:      Valdis Kletnieks <valdis.kletnieks@vt.edu>
6139 S:      Maintained
6140 F:      drivers/staging/exfat/
6141
6142 EXT2 FILE SYSTEM
6143 M:      Jan Kara <jack@suse.com>
6144 L:      linux-ext4@vger.kernel.org
6145 S:      Maintained
6146 F:      Documentation/filesystems/ext2.txt
6147 F:      fs/ext2/
6148 F:      include/linux/ext2*
6149
6150 EXT4 FILE SYSTEM
6151 M:      "Theodore Ts'o" <tytso@mit.edu>
6152 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6153 L:      linux-ext4@vger.kernel.org
6154 W:      http://ext4.wiki.kernel.org
6155 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6157 S:      Maintained
6158 F:      Documentation/filesystems/ext4/
6159 F:      fs/ext4/
6160
6161 Extended Verification Module (EVM)
6162 M:      Mimi Zohar <zohar@linux.ibm.com>
6163 L:      linux-integrity@vger.kernel.org
6164 S:      Supported
6165 F:      security/integrity/evm/
6166
6167 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6168 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
6169 L:      linux-efi@vger.kernel.org
6170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6171 S:      Maintained
6172 F:      Documentation/admin-guide/efi-stub.rst
6173 F:      arch/*/kernel/efi.c
6174 F:      arch/x86/boot/compressed/eboot.[ch]
6175 F:      arch/*/include/asm/efi.h
6176 F:      arch/x86/platform/efi/
6177 F:      drivers/firmware/efi/
6178 F:      include/linux/efi*.h
6179 F:      arch/arm/boot/compressed/efi-header.S
6180 F:      arch/arm64/kernel/efi-entry.S
6181
6182 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6183 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6184 M:      Chanwoo Choi <cw00.choi@samsung.com>
6185 L:      linux-kernel@vger.kernel.org
6186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6187 S:      Maintained
6188 F:      drivers/extcon/
6189 F:      include/linux/extcon/
6190 F:      include/linux/extcon.h
6191 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6192 F:      Documentation/devicetree/bindings/extcon/
6193
6194 EXYNOS DP DRIVER
6195 M:      Jingoo Han <jingoohan1@gmail.com>
6196 L:      dri-devel@lists.freedesktop.org
6197 S:      Maintained
6198 F:      drivers/gpu/drm/exynos/exynos_dp*
6199
6200 EXYNOS SYSMMU (IOMMU) driver
6201 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6202 L:      iommu@lists.linux-foundation.org
6203 S:      Maintained
6204 F:      drivers/iommu/exynos-iommu.c
6205
6206 EZchip NPS platform support
6207 M:      Vineet Gupta <vgupta@synopsys.com>
6208 M:      Ofer Levi <oferle@mellanox.com>
6209 S:      Supported
6210 F:      arch/arc/plat-eznps
6211 F:      arch/arc/boot/dts/eznps.dts
6212
6213 F2FS FILE SYSTEM
6214 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6215 M:      Chao Yu <yuchao0@huawei.com>
6216 L:      linux-f2fs-devel@lists.sourceforge.net
6217 W:      https://f2fs.wiki.kernel.org/
6218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6219 S:      Maintained
6220 F:      Documentation/filesystems/f2fs.txt
6221 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6222 F:      fs/f2fs/
6223 F:      include/linux/f2fs_fs.h
6224 F:      include/trace/events/f2fs.h
6225
6226 F71805F HARDWARE MONITORING DRIVER
6227 M:      Jean Delvare <jdelvare@suse.com>
6228 L:      linux-hwmon@vger.kernel.org
6229 S:      Maintained
6230 F:      Documentation/hwmon/f71805f.rst
6231 F:      drivers/hwmon/f71805f.c
6232
6233 FADDR2LINE
6234 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6235 S:      Maintained
6236 F:      scripts/faddr2line
6237
6238 FAILOVER MODULE
6239 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6240 L:      netdev@vger.kernel.org
6241 S:      Supported
6242 F:      net/core/failover.c
6243 F:      include/net/failover.h
6244 F:      Documentation/networking/failover.rst
6245
6246 FANOTIFY
6247 M:      Jan Kara <jack@suse.cz>
6248 R:      Amir Goldstein <amir73il@gmail.com>
6249 L:      linux-fsdevel@vger.kernel.org
6250 S:      Maintained
6251 F:      fs/notify/fanotify/
6252 F:      include/linux/fanotify.h
6253 F:      include/uapi/linux/fanotify.h
6254
6255 FARSYNC SYNCHRONOUS DRIVER
6256 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6257 W:      http://www.farsite.co.uk/
6258 S:      Supported
6259 F:      drivers/net/wan/farsync.*
6260
6261 FAULT INJECTION SUPPORT
6262 M:      Akinobu Mita <akinobu.mita@gmail.com>
6263 S:      Supported
6264 F:      Documentation/fault-injection/
6265 F:      lib/fault-inject.c
6266
6267 FBTFT Framebuffer drivers
6268 S:      Orphan
6269 L:      dri-devel@lists.freedesktop.org
6270 L:      linux-fbdev@vger.kernel.org
6271 F:      drivers/staging/fbtft/
6272
6273 FC0011 TUNER DRIVER
6274 M:      Michael Buesch <m@bues.ch>
6275 L:      linux-media@vger.kernel.org
6276 S:      Maintained
6277 F:      drivers/media/tuners/fc0011.h
6278 F:      drivers/media/tuners/fc0011.c
6279
6280 FC2580 MEDIA DRIVER
6281 M:      Antti Palosaari <crope@iki.fi>
6282 L:      linux-media@vger.kernel.org
6283 W:      https://linuxtv.org
6284 W:      http://palosaari.fi/linux/
6285 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6286 T:      git git://linuxtv.org/anttip/media_tree.git
6287 S:      Maintained
6288 F:      drivers/media/tuners/fc2580*
6289
6290 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6291 M:      Hannes Reinecke <hare@suse.de>
6292 L:      linux-scsi@vger.kernel.org
6293 W:      www.Open-FCoE.org
6294 S:      Supported
6295 F:      drivers/scsi/libfc/
6296 F:      drivers/scsi/fcoe/
6297 F:      include/scsi/fc/
6298 F:      include/scsi/libfc.h
6299 F:      include/scsi/libfcoe.h
6300 F:      include/uapi/scsi/fc/
6301
6302 FILE LOCKING (flock() and fcntl()/lockf())
6303 M:      Jeff Layton <jlayton@kernel.org>
6304 M:      "J. Bruce Fields" <bfields@fieldses.org>
6305 L:      linux-fsdevel@vger.kernel.org
6306 S:      Maintained
6307 F:      include/linux/fcntl.h
6308 F:      include/uapi/linux/fcntl.h
6309 F:      fs/fcntl.c
6310 F:      fs/locks.c
6311
6312 FILESYSTEMS (VFS and infrastructure)
6313 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6314 L:      linux-fsdevel@vger.kernel.org
6315 S:      Maintained
6316 F:      fs/*
6317 F:      include/linux/fs.h
6318 F:      include/linux/fs_types.h
6319 F:      include/uapi/linux/fs.h
6320
6321 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6322 M:      Riku Voipio <riku.voipio@iki.fi>
6323 L:      linux-hwmon@vger.kernel.org
6324 S:      Maintained
6325 F:      drivers/hwmon/f75375s.c
6326 F:      include/linux/f75375s.h
6327
6328 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6329 M:      Clemens Ladisch <clemens@ladisch.de>
6330 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6331 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6333 S:      Maintained
6334 F:      sound/firewire/
6335 F:      include/uapi/sound/firewire.h
6336
6337 FIREWIRE MEDIA DRIVERS (firedtv)
6338 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6339 L:      linux-media@vger.kernel.org
6340 L:      linux1394-devel@lists.sourceforge.net
6341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6342 S:      Maintained
6343 F:      drivers/media/firewire/
6344
6345 FIREWIRE SBP-2 TARGET
6346 M:      Chris Boot <bootc@bootc.net>
6347 L:      linux-scsi@vger.kernel.org
6348 L:      target-devel@vger.kernel.org
6349 L:      linux1394-devel@lists.sourceforge.net
6350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6351 S:      Maintained
6352 F:      drivers/target/sbp/
6353
6354 FIREWIRE SUBSYSTEM
6355 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6356 L:      linux1394-devel@lists.sourceforge.net
6357 W:      http://ieee1394.wiki.kernel.org/
6358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6359 S:      Maintained
6360 F:      drivers/firewire/
6361 F:      include/linux/firewire.h
6362 F:      include/uapi/linux/firewire*.h
6363 F:      tools/firewire/
6364
6365 FIRMWARE LOADER (request_firmware)
6366 M:      Luis Chamberlain <mcgrof@kernel.org>
6367 L:      linux-kernel@vger.kernel.org
6368 S:      Maintained
6369 F:      Documentation/firmware_class/
6370 F:      drivers/base/firmware_loader/
6371 F:      include/linux/firmware.h
6372
6373 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6374 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6375 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6376 S:      Maintained
6377 F:      drivers/block/rsxx/
6378
6379 FLEXTIMER FTM-QUADDEC DRIVER
6380 M:      Patrick Havelange <patrick.havelange@essensium.com>
6381 L:      linux-iio@vger.kernel.org
6382 S:      Maintained
6383 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6384 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6385 F:      drivers/counter/ftm-quaddec.c
6386
6387 FLOPPY DRIVER
6388 M:      Denis Efremov <efremov@linux.com>
6389 S:      Odd Fixes
6390 L:      linux-block@vger.kernel.org
6391 F:      drivers/block/floppy.c
6392
6393 FPGA MANAGER FRAMEWORK
6394 M:      Moritz Fischer <mdf@kernel.org>
6395 L:      linux-fpga@vger.kernel.org
6396 S:      Maintained
6397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6398 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6399 F:      Documentation/fpga/
6400 F:      Documentation/driver-api/fpga/
6401 F:      Documentation/devicetree/bindings/fpga/
6402 F:      drivers/fpga/
6403 F:      include/linux/fpga/
6404 W:      http://www.rocketboards.org
6405
6406 FPGA DFL DRIVERS
6407 M:      Wu Hao <hao.wu@intel.com>
6408 L:      linux-fpga@vger.kernel.org
6409 S:      Maintained
6410 F:      Documentation/fpga/dfl.rst
6411 F:      include/uapi/linux/fpga-dfl.h
6412 F:      drivers/fpga/dfl*
6413
6414 FPU EMULATOR
6415 M:      Bill Metzenthen <billm@melbpc.org.au>
6416 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6417 S:      Maintained
6418 F:      arch/x86/math-emu/
6419
6420 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6421 L:      netdev@vger.kernel.org
6422 S:      Orphan
6423 F:      drivers/net/wan/dlci.c
6424 F:      drivers/net/wan/sdla.c
6425
6426 FRAMEBUFFER LAYER
6427 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6428 L:      dri-devel@lists.freedesktop.org
6429 L:      linux-fbdev@vger.kernel.org
6430 T:      git git://anongit.freedesktop.org/drm/drm-misc
6431 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6432 S:      Maintained
6433 F:      Documentation/fb/
6434 F:      drivers/video/
6435 F:      include/video/
6436 F:      include/linux/fb.h
6437 F:      include/uapi/video/
6438 F:      include/uapi/linux/fb.h
6439
6440 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6441 M:      Horia Geantă <horia.geanta@nxp.com>
6442 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6443 L:      linux-crypto@vger.kernel.org
6444 S:      Maintained
6445 F:      drivers/crypto/caam/
6446 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6447
6448 FREESCALE DIU FRAMEBUFFER DRIVER
6449 M:      Timur Tabi <timur@kernel.org>
6450 L:      linux-fbdev@vger.kernel.org
6451 S:      Maintained
6452 F:      drivers/video/fbdev/fsl-diu-fb.*
6453
6454 FREESCALE DMA DRIVER
6455 M:      Li Yang <leoyang.li@nxp.com>
6456 M:      Zhang Wei <zw@zh-kernel.org>
6457 L:      linuxppc-dev@lists.ozlabs.org
6458 S:      Maintained
6459 F:      drivers/dma/fsldma.*
6460
6461 FREESCALE ENETC ETHERNET DRIVERS
6462 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6463 L:      netdev@vger.kernel.org
6464 S:      Maintained
6465 F:      drivers/net/ethernet/freescale/enetc/
6466
6467 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6468 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6469 L:      netdev@vger.kernel.org
6470 S:      Maintained
6471 F:      drivers/net/ethernet/freescale/gianfar*
6472 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6473
6474 FREESCALE GPMI NAND DRIVER
6475 M:      Han Xu <han.xu@nxp.com>
6476 L:      linux-mtd@lists.infradead.org
6477 S:      Maintained
6478 F:      drivers/mtd/nand/raw/gpmi-nand/*
6479
6480 FREESCALE I2C CPM DRIVER
6481 M:      Jochen Friedrich <jochen@scram.de>
6482 L:      linuxppc-dev@lists.ozlabs.org
6483 L:      linux-i2c@vger.kernel.org
6484 S:      Maintained
6485 F:      drivers/i2c/busses/i2c-cpm.c
6486
6487 FREESCALE IMX DDR PMU DRIVER
6488 M:      Frank Li <Frank.li@nxp.com>
6489 L:      linux-arm-kernel@lists.infradead.org
6490 S:      Maintained
6491 F:      drivers/perf/fsl_imx8_ddr_perf.c
6492 F:      Documentation/admin-guide/perf/imx-ddr.rst
6493 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6494
6495 FREESCALE IMX I2C DRIVER
6496 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6497 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6498 L:      linux-i2c@vger.kernel.org
6499 S:      Maintained
6500 F:      drivers/i2c/busses/i2c-imx.c
6501 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6502
6503 FREESCALE IMX LPI2C DRIVER
6504 M:      Dong Aisheng <aisheng.dong@nxp.com>
6505 L:      linux-i2c@vger.kernel.org
6506 L:      linux-imx@nxp.com
6507 S:      Maintained
6508 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6509 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6510
6511 FREESCALE IMX / MXC FEC DRIVER
6512 M:      Fugang Duan <fugang.duan@nxp.com>
6513 L:      netdev@vger.kernel.org
6514 S:      Maintained
6515 F:      drivers/net/ethernet/freescale/fec_main.c
6516 F:      drivers/net/ethernet/freescale/fec_ptp.c
6517 F:      drivers/net/ethernet/freescale/fec.h
6518 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6519
6520 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6521 M:      Sascha Hauer <s.hauer@pengutronix.de>
6522 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6523 L:      linux-fbdev@vger.kernel.org
6524 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6525 S:      Maintained
6526 F:      include/linux/platform_data/video-imxfb.h
6527 F:      drivers/video/fbdev/imxfb.c
6528
6529 FREESCALE QORIQ DPAA ETHERNET DRIVER
6530 M:      Madalin Bucur <madalin.bucur@nxp.com>
6531 L:      netdev@vger.kernel.org
6532 S:      Maintained
6533 F:      drivers/net/ethernet/freescale/dpaa
6534
6535 FREESCALE QORIQ DPAA FMAN DRIVER
6536 M:      Madalin Bucur <madalin.bucur@nxp.com>
6537 L:      netdev@vger.kernel.org
6538 S:      Maintained
6539 F:      drivers/net/ethernet/freescale/fman
6540 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6541
6542 FREESCALE QORIQ PTP CLOCK DRIVER
6543 M:      Yangbo Lu <yangbo.lu@nxp.com>
6544 L:      netdev@vger.kernel.org
6545 S:      Maintained
6546 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6547 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6548 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6549 F:      drivers/ptp/ptp_qoriq.c
6550 F:      drivers/ptp/ptp_qoriq_debugfs.c
6551 F:      include/linux/fsl/ptp_qoriq.h
6552 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6553
6554 FREESCALE QUAD SPI DRIVER
6555 M:      Han Xu <han.xu@nxp.com>
6556 L:      linux-spi@vger.kernel.org
6557 S:      Maintained
6558 F:      drivers/spi/spi-fsl-qspi.c
6559
6560 FREESCALE QUICC ENGINE LIBRARY
6561 M:      Qiang Zhao <qiang.zhao@nxp.com>
6562 L:      linuxppc-dev@lists.ozlabs.org
6563 S:      Maintained
6564 F:      drivers/soc/fsl/qe/
6565 F:      include/soc/fsl/*qe*.h
6566 F:      include/soc/fsl/*ucc*.h
6567
6568 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6569 M:      Li Yang <leoyang.li@nxp.com>
6570 L:      netdev@vger.kernel.org
6571 L:      linuxppc-dev@lists.ozlabs.org
6572 S:      Maintained
6573 F:      drivers/net/ethernet/freescale/ucc_geth*
6574
6575 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6576 M:      Zhao Qiang <qiang.zhao@nxp.com>
6577 L:      netdev@vger.kernel.org
6578 L:      linuxppc-dev@lists.ozlabs.org
6579 S:      Maintained
6580 F:      drivers/net/wan/fsl_ucc_hdlc*
6581
6582 FREESCALE QUICC ENGINE UCC UART DRIVER
6583 M:      Timur Tabi <timur@kernel.org>
6584 L:      linuxppc-dev@lists.ozlabs.org
6585 S:      Maintained
6586 F:      drivers/tty/serial/ucc_uart.c
6587
6588 FREESCALE SOC DRIVERS
6589 M:      Li Yang <leoyang.li@nxp.com>
6590 L:      linuxppc-dev@lists.ozlabs.org
6591 L:      linux-arm-kernel@lists.infradead.org
6592 S:      Maintained
6593 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6594 F:      Documentation/devicetree/bindings/soc/fsl/
6595 F:      drivers/soc/fsl/
6596 F:      include/linux/fsl/
6597
6598 FREESCALE SOC FS_ENET DRIVER
6599 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6600 L:      linuxppc-dev@lists.ozlabs.org
6601 L:      netdev@vger.kernel.org
6602 S:      Maintained
6603 F:      drivers/net/ethernet/freescale/fs_enet/
6604 F:      include/linux/fs_enet_pd.h
6605
6606 FREESCALE SOC SOUND DRIVERS
6607 M:      Timur Tabi <timur@kernel.org>
6608 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6609 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6610 R:      Fabio Estevam <festevam@gmail.com>
6611 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6612 L:      linuxppc-dev@lists.ozlabs.org
6613 S:      Maintained
6614 F:      sound/soc/fsl/fsl*
6615 F:      sound/soc/fsl/imx*
6616 F:      sound/soc/fsl/mpc8610_hpcd.c
6617
6618 FREESCALE USB PERIPHERAL DRIVERS
6619 M:      Li Yang <leoyang.li@nxp.com>
6620 L:      linux-usb@vger.kernel.org
6621 L:      linuxppc-dev@lists.ozlabs.org
6622 S:      Maintained
6623 F:      drivers/usb/gadget/udc/fsl*
6624
6625 FREEVXFS FILESYSTEM
6626 M:      Christoph Hellwig <hch@infradead.org>
6627 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6628 S:      Maintained
6629 F:      fs/freevxfs/
6630
6631 FREEZER
6632 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6633 M:      Pavel Machek <pavel@ucw.cz>
6634 L:      linux-pm@vger.kernel.org
6635 S:      Supported
6636 F:      Documentation/power/freezing-of-tasks.rst
6637 F:      include/linux/freezer.h
6638 F:      kernel/freezer.c
6639
6640 FRONTSWAP API
6641 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6642 L:      linux-kernel@vger.kernel.org
6643 S:      Maintained
6644 F:      mm/frontswap.c
6645 F:      include/linux/frontswap.h
6646
6647 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6648 M:      David Howells <dhowells@redhat.com>
6649 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6650 S:      Supported
6651 F:      Documentation/filesystems/caching/
6652 F:      fs/fscache/
6653 F:      include/linux/fscache*.h
6654
6655 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6656 M:      Theodore Y. Ts'o <tytso@mit.edu>
6657 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6658 M:      Eric Biggers <ebiggers@kernel.org>
6659 L:      linux-fscrypt@vger.kernel.org
6660 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6661 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6662 S:      Supported
6663 F:      fs/crypto/
6664 F:      include/linux/fscrypt*.h
6665 F:      include/uapi/linux/fscrypt.h
6666 F:      Documentation/filesystems/fscrypt.rst
6667
6668 FSI SUBSYSTEM
6669 M:      Jeremy Kerr <jk@ozlabs.org>
6670 M:      Joel Stanley <joel@jms.id.au>
6671 R:      Alistar Popple <alistair@popple.id.au>
6672 R:      Eddie James <eajames@linux.ibm.com>
6673 L:      linux-fsi@lists.ozlabs.org
6674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6675 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6676 S:      Supported
6677 F:      drivers/fsi/
6678 F:      include/linux/fsi*.h
6679 F:      include/trace/events/fsi*.h
6680
6681 FSI-ATTACHED I2C DRIVER
6682 M:      Eddie James <eajames@linux.ibm.com>
6683 L:      linux-i2c@vger.kernel.org
6684 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
6685 S:      Maintained
6686 F:      drivers/i2c/busses/i2c-fsi.c
6687 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6688
6689 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6690 M:      Jan Kara <jack@suse.cz>
6691 R:      Amir Goldstein <amir73il@gmail.com>
6692 L:      linux-fsdevel@vger.kernel.org
6693 S:      Maintained
6694 F:      fs/notify/
6695 F:      include/linux/fsnotify*.h
6696
6697 FUJITSU LAPTOP EXTRAS
6698 M:      Jonathan Woithe <jwoithe@just42.net>
6699 L:      platform-driver-x86@vger.kernel.org
6700 S:      Maintained
6701 F:      drivers/platform/x86/fujitsu-laptop.c
6702
6703 FUJITSU M-5MO LS CAMERA ISP DRIVER
6704 M:      Kyungmin Park <kyungmin.park@samsung.com>
6705 M:      Heungjun Kim <riverful.kim@samsung.com>
6706 L:      linux-media@vger.kernel.org
6707 S:      Maintained
6708 F:      drivers/media/i2c/m5mols/
6709 F:      include/media/i2c/m5mols.h
6710
6711 FUJITSU TABLET EXTRAS
6712 M:      Robert Gerlach <khnz@gmx.de>
6713 L:      platform-driver-x86@vger.kernel.org
6714 S:      Maintained
6715 F:      drivers/platform/x86/fujitsu-tablet.c
6716
6717 FUSE: FILESYSTEM IN USERSPACE
6718 M:      Miklos Szeredi <miklos@szeredi.hu>
6719 L:      linux-fsdevel@vger.kernel.org
6720 W:      http://fuse.sourceforge.net/
6721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6722 S:      Maintained
6723 F:      fs/fuse/
6724 F:      include/uapi/linux/fuse.h
6725 F:      Documentation/filesystems/fuse.txt
6726
6727 FUTEX SUBSYSTEM
6728 M:      Thomas Gleixner <tglx@linutronix.de>
6729 M:      Ingo Molnar <mingo@redhat.com>
6730 R:      Peter Zijlstra <peterz@infradead.org>
6731 R:      Darren Hart <dvhart@infradead.org>
6732 L:      linux-kernel@vger.kernel.org
6733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
6734 S:      Maintained
6735 F:      kernel/futex.c
6736 F:      include/asm-generic/futex.h
6737 F:      include/linux/futex.h
6738 F:      include/uapi/linux/futex.h
6739 F:      tools/testing/selftests/futex/
6740 F:      tools/perf/bench/futex*
6741 F:      Documentation/*futex*
6742
6743 GCC PLUGINS
6744 M:      Kees Cook <keescook@chromium.org>
6745 R:      Emese Revfy <re.emese@gmail.com>
6746 L:      kernel-hardening@lists.openwall.com
6747 S:      Maintained
6748 F:      scripts/gcc-plugins/
6749 F:      scripts/gcc-plugin.sh
6750 F:      scripts/Makefile.gcc-plugins
6751 F:      Documentation/core-api/gcc-plugins.rst
6752
6753 GASKET DRIVER FRAMEWORK
6754 M:      Rob Springer <rspringer@google.com>
6755 M:      Todd Poynor <toddpoynor@google.com>
6756 M:      Ben Chan <benchan@chromium.org>
6757 S:      Maintained
6758 F:      drivers/staging/gasket/
6759
6760 GCOV BASED KERNEL PROFILING
6761 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
6762 S:      Maintained
6763 F:      kernel/gcov/
6764 F:      Documentation/dev-tools/gcov.rst
6765
6766 GDB KERNEL DEBUGGING HELPER SCRIPTS
6767 M:      Jan Kiszka <jan.kiszka@siemens.com>
6768 M:      Kieran Bingham <kbingham@kernel.org>
6769 S:      Supported
6770 F:      scripts/gdb/
6771
6772 GDT SCSI DISK ARRAY CONTROLLER DRIVER
6773 M:      Achim Leubner <achim_leubner@adaptec.com>
6774 L:      linux-scsi@vger.kernel.org
6775 W:      http://www.icp-vortex.com/
6776 S:      Supported
6777 F:      drivers/scsi/gdt*
6778
6779 GEMTEK FM RADIO RECEIVER DRIVER
6780 M:      Hans Verkuil <hverkuil@xs4all.nl>
6781 L:      linux-media@vger.kernel.org
6782 T:      git git://linuxtv.org/media_tree.git
6783 W:      https://linuxtv.org
6784 S:      Maintained
6785 F:      drivers/media/radio/radio-gemtek*
6786
6787 GENERIC ARCHITECTURE TOPOLOGY
6788 M:      Sudeep Holla <sudeep.holla@arm.com>
6789 L:      linux-kernel@vger.kernel.org
6790 S:      Maintained
6791 F:      drivers/base/arch_topology.c
6792 F:      include/linux/arch_topology.h
6793
6794 GENERIC GPIO I2C DRIVER
6795 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6796 S:      Supported
6797 F:      drivers/i2c/busses/i2c-gpio.c
6798 F:      include/linux/platform_data/i2c-gpio.h
6799
6800 GENERIC GPIO I2C MULTIPLEXER DRIVER
6801 M:      Peter Korsgaard <peter.korsgaard@barco.com>
6802 L:      linux-i2c@vger.kernel.org
6803 S:      Supported
6804 F:      drivers/i2c/muxes/i2c-mux-gpio.c
6805 F:      include/linux/platform_data/i2c-mux-gpio.h
6806 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
6807
6808 GENERIC HDLC (WAN) DRIVERS
6809 M:      Krzysztof Halasa <khc@pm.waw.pl>
6810 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
6811 S:      Maintained
6812 F:      drivers/net/wan/c101.c
6813 F:      drivers/net/wan/hd6457*
6814 F:      drivers/net/wan/hdlc*
6815 F:      drivers/net/wan/n2.c
6816 F:      drivers/net/wan/pc300too.c
6817 F:      drivers/net/wan/pci200syn.c
6818 F:      drivers/net/wan/wanxl*
6819
6820 GENERIC INCLUDE/ASM HEADER FILES
6821 M:      Arnd Bergmann <arnd@arndb.de>
6822 L:      linux-arch@vger.kernel.org
6823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
6824 S:      Maintained
6825 F:      include/asm-generic/
6826 F:      include/uapi/asm-generic/
6827
6828 GENERIC PHY FRAMEWORK
6829 M:      Kishon Vijay Abraham I <kishon@ti.com>
6830 L:      linux-kernel@vger.kernel.org
6831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
6832 S:      Supported
6833 F:      drivers/phy/
6834 F:      include/linux/phy/
6835 F:      Documentation/devicetree/bindings/phy/
6836
6837 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
6838 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6839 S:      Supported
6840 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
6841
6842 GENERIC PM DOMAINS
6843 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6844 M:      Kevin Hilman <khilman@kernel.org>
6845 M:      Ulf Hansson <ulf.hansson@linaro.org>
6846 L:      linux-pm@vger.kernel.org
6847 S:      Supported
6848 F:      drivers/base/power/domain*.c
6849 F:      include/linux/pm_domain.h
6850 F:      Documentation/devicetree/bindings/power/power_domain.txt
6851
6852 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
6853 M:      Eugen Hristev <eugen.hristev@microchip.com>
6854 L:      linux-input@vger.kernel.org
6855 S:      Maintained
6856 F:      drivers/input/touchscreen/resistive-adc-touch.c
6857
6858 GENERIC UIO DRIVER FOR PCI DEVICES
6859 M:      "Michael S. Tsirkin" <mst@redhat.com>
6860 L:      kvm@vger.kernel.org
6861 S:      Supported
6862 F:      drivers/uio/uio_pci_generic.c
6863
6864 GENERIC VDSO LIBRARY:
6865 M:      Andy Lutomirski <luto@kernel.org>
6866 M:      Thomas Gleixner <tglx@linutronix.de>
6867 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
6868 L:      linux-kernel@vger.kernel.org
6869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
6870 S:      Maintained
6871 F:      lib/vdso/
6872 F:      kernel/time/vsyscall.c
6873 F:      include/vdso/
6874 F:      include/asm-generic/vdso/vsyscall.h
6875
6876 GENWQE (IBM Generic Workqueue Card)
6877 M:      Frank Haverkamp <haver@linux.ibm.com>
6878 S:      Supported
6879 F:      drivers/misc/genwqe/
6880
6881 GET_MAINTAINER SCRIPT
6882 M:      Joe Perches <joe@perches.com>
6883 S:      Maintained
6884 F:      scripts/get_maintainer.pl
6885
6886 GFS2 FILE SYSTEM
6887 M:      Bob Peterson <rpeterso@redhat.com>
6888 M:      Andreas Gruenbacher <agruenba@redhat.com>
6889 L:      cluster-devel@redhat.com
6890 W:      http://sources.redhat.com/cluster/
6891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
6892 S:      Supported
6893 F:      Documentation/filesystems/gfs2*.txt
6894 F:      fs/gfs2/
6895 F:      include/uapi/linux/gfs2_ondisk.h
6896
6897 GNSS SUBSYSTEM
6898 M:      Johan Hovold <johan@kernel.org>
6899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
6900 S:      Maintained
6901 F:      Documentation/ABI/testing/sysfs-class-gnss
6902 F:      Documentation/devicetree/bindings/gnss/
6903 F:      drivers/gnss/
6904 F:      include/linux/gnss.h
6905
6906 GO7007 MPEG CODEC
6907 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
6908 L:      linux-media@vger.kernel.org
6909 S:      Maintained
6910 F:      drivers/media/usb/go7007/
6911
6912 GOODIX TOUCHSCREEN
6913 M:      Bastien Nocera <hadess@hadess.net>
6914 L:      linux-input@vger.kernel.org
6915 S:      Maintained
6916 F:      drivers/input/touchscreen/goodix.c
6917
6918 GOOGLE ETHERNET DRIVERS
6919 M:      Catherine Sullivan <csully@google.com>
6920 R:      Sagi Shahar <sagis@google.com>
6921 R:      Jon Olson <jonolson@google.com>
6922 L:      netdev@vger.kernel.org
6923 S:      Supported
6924 F:      Documentation/networking/device_drivers/google/gve.rst
6925 F:      drivers/net/ethernet/google
6926
6927 GPD POCKET FAN DRIVER
6928 M:      Hans de Goede <hdegoede@redhat.com>
6929 L:      platform-driver-x86@vger.kernel.org
6930 S:      Maintained
6931 F:      drivers/platform/x86/gpd-pocket-fan.c
6932
6933 GPIO ACPI SUPPORT
6934 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6935 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6936 L:      linux-gpio@vger.kernel.org
6937 L:      linux-acpi@vger.kernel.org
6938 S:      Maintained
6939 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
6940 F:      drivers/gpio/gpiolib-acpi.c
6941
6942 GPIO IR Transmitter
6943 M:      Sean Young <sean@mess.org>
6944 L:      linux-media@vger.kernel.org
6945 S:      Maintained
6946 F:      drivers/media/rc/gpio-ir-tx.c
6947
6948 GPIO MOCKUP DRIVER
6949 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
6950 L:      linux-gpio@vger.kernel.org
6951 S:      Maintained
6952 F:      drivers/gpio/gpio-mockup.c
6953 F:      tools/testing/selftests/gpio/
6954
6955 GPIO SUBSYSTEM
6956 M:      Linus Walleij <linus.walleij@linaro.org>
6957 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
6958 L:      linux-gpio@vger.kernel.org
6959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
6960 S:      Maintained
6961 F:      Documentation/devicetree/bindings/gpio/
6962 F:      Documentation/driver-api/gpio/
6963 F:      Documentation/admin-guide/gpio/
6964 F:      Documentation/ABI/testing/gpio-cdev
6965 F:      Documentation/ABI/obsolete/sysfs-gpio
6966 F:      drivers/gpio/
6967 F:      include/linux/gpio/
6968 F:      include/linux/gpio.h
6969 F:      include/linux/of_gpio.h
6970 F:      include/asm-generic/gpio.h
6971 F:      include/uapi/linux/gpio.h
6972 F:      tools/gpio/
6973
6974 GRE DEMULTIPLEXER DRIVER
6975 M:      Dmitry Kozlov <xeb@mail.ru>
6976 L:      netdev@vger.kernel.org
6977 S:      Maintained
6978 F:      net/ipv4/gre_demux.c
6979 F:      net/ipv4/gre_offload.c
6980 F:      include/net/gre.h
6981
6982 GRETH 10/100/1G Ethernet MAC device driver
6983 M:      Andreas Larsson <andreas@gaisler.com>
6984 L:      netdev@vger.kernel.org
6985 S:      Maintained
6986 F:      drivers/net/ethernet/aeroflex/
6987
6988 GREYBUS AUDIO PROTOCOLS DRIVERS
6989 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
6990 M:      Mark Greer <mgreer@animalcreek.com>
6991 S:      Maintained
6992 F:      drivers/staging/greybus/audio_apbridgea.c
6993 F:      drivers/staging/greybus/audio_apbridgea.h
6994 F:      drivers/staging/greybus/audio_codec.c
6995 F:      drivers/staging/greybus/audio_codec.h
6996 F:      drivers/staging/greybus/audio_gb.c
6997 F:      drivers/staging/greybus/audio_manager.c
6998 F:      drivers/staging/greybus/audio_manager.h
6999 F:      drivers/staging/greybus/audio_manager_module.c
7000 F:      drivers/staging/greybus/audio_manager_private.h
7001 F:      drivers/staging/greybus/audio_manager_sysfs.c
7002 F:      drivers/staging/greybus/audio_module.c
7003 F:      drivers/staging/greybus/audio_topology.c
7004
7005 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7006 M:      Viresh Kumar <vireshk@kernel.org>
7007 S:      Maintained
7008 F:      drivers/staging/greybus/authentication.c
7009 F:      drivers/staging/greybus/bootrom.c
7010 F:      drivers/staging/greybus/firmware.h
7011 F:      drivers/staging/greybus/fw-core.c
7012 F:      drivers/staging/greybus/fw-download.c
7013 F:      drivers/staging/greybus/fw-management.c
7014 F:      drivers/staging/greybus/greybus_authentication.h
7015 F:      drivers/staging/greybus/greybus_firmware.h
7016 F:      drivers/staging/greybus/hid.c
7017 F:      drivers/staging/greybus/i2c.c
7018 F:      drivers/staging/greybus/spi.c
7019 F:      drivers/staging/greybus/spilib.c
7020 F:      drivers/staging/greybus/spilib.h
7021
7022 GREYBUS LOOPBACK DRIVER
7023 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7024 S:      Maintained
7025 F:      drivers/staging/greybus/loopback.c
7026
7027 GREYBUS PLATFORM DRIVERS
7028 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7029 S:      Maintained
7030 F:      drivers/staging/greybus/arche-platform.c
7031 F:      drivers/staging/greybus/arche-apb-ctrl.c
7032 F:      drivers/staging/greybus/arche_platform.h
7033
7034 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7035 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7036 S:      Maintained
7037 F:      drivers/staging/greybus/sdio.c
7038 F:      drivers/staging/greybus/light.c
7039 F:      drivers/staging/greybus/gpio.c
7040 F:      drivers/staging/greybus/power_supply.c
7041 F:      drivers/staging/greybus/spi.c
7042 F:      drivers/staging/greybus/spilib.c
7043
7044 GREYBUS SUBSYSTEM
7045 M:      Johan Hovold <johan@kernel.org>
7046 M:      Alex Elder <elder@kernel.org>
7047 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7048 S:      Maintained
7049 F:      drivers/staging/greybus/
7050 F:      drivers/greybus/
7051 F:      include/linux/greybus.h
7052 F:      include/linux/greybus/
7053 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7054
7055 GREYBUS UART PROTOCOLS DRIVERS
7056 M:      David Lin <dtwlin@gmail.com>
7057 S:      Maintained
7058 F:      drivers/staging/greybus/uart.c
7059 F:      drivers/staging/greybus/log.c
7060
7061 GS1662 VIDEO SERIALIZER
7062 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7063 L:      linux-media@vger.kernel.org
7064 T:      git git://linuxtv.org/media_tree.git
7065 S:      Maintained
7066 F:      drivers/media/spi/gs1662.c
7067
7068 GSPCA FINEPIX SUBDRIVER
7069 M:      Frank Zago <frank@zago.net>
7070 L:      linux-media@vger.kernel.org
7071 T:      git git://linuxtv.org/media_tree.git
7072 S:      Maintained
7073 F:      drivers/media/usb/gspca/finepix.c
7074
7075 GSPCA GL860 SUBDRIVER
7076 M:      Olivier Lorin <o.lorin@laposte.net>
7077 L:      linux-media@vger.kernel.org
7078 T:      git git://linuxtv.org/media_tree.git
7079 S:      Maintained
7080 F:      drivers/media/usb/gspca/gl860/
7081
7082 GSPCA M5602 SUBDRIVER
7083 M:      Erik Andren <erik.andren@gmail.com>
7084 L:      linux-media@vger.kernel.org
7085 T:      git git://linuxtv.org/media_tree.git
7086 S:      Maintained
7087 F:      drivers/media/usb/gspca/m5602/
7088
7089 GSPCA PAC207 SONIXB SUBDRIVER
7090 M:      Hans Verkuil <hverkuil@xs4all.nl>
7091 L:      linux-media@vger.kernel.org
7092 T:      git git://linuxtv.org/media_tree.git
7093 S:      Odd Fixes
7094 F:      drivers/media/usb/gspca/pac207.c
7095
7096 GSPCA SN9C20X SUBDRIVER
7097 M:      Brian Johnson <brijohn@gmail.com>
7098 L:      linux-media@vger.kernel.org
7099 T:      git git://linuxtv.org/media_tree.git
7100 S:      Maintained
7101 F:      drivers/media/usb/gspca/sn9c20x.c
7102
7103 GSPCA T613 SUBDRIVER
7104 M:      Leandro Costantino <lcostantino@gmail.com>
7105 L:      linux-media@vger.kernel.org
7106 T:      git git://linuxtv.org/media_tree.git
7107 S:      Maintained
7108 F:      drivers/media/usb/gspca/t613.c
7109
7110 GSPCA USB WEBCAM DRIVER
7111 M:      Hans Verkuil <hverkuil@xs4all.nl>
7112 L:      linux-media@vger.kernel.org
7113 T:      git git://linuxtv.org/media_tree.git
7114 S:      Odd Fixes
7115 F:      drivers/media/usb/gspca/
7116
7117 GTP (GPRS Tunneling Protocol)
7118 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7119 M:      Harald Welte <laforge@gnumonks.org>
7120 L:      osmocom-net-gprs@lists.osmocom.org
7121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7122 S:      Maintained
7123 F:      drivers/net/gtp.c
7124
7125 GUID PARTITION TABLE (GPT)
7126 M:      Davidlohr Bueso <dave@stgolabs.net>
7127 L:      linux-efi@vger.kernel.org
7128 S:      Maintained
7129 F:      block/partitions/efi.*
7130
7131 H8/300 ARCHITECTURE
7132 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7133 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7134 W:      http://uclinux-h8.sourceforge.jp
7135 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7136 S:      Maintained
7137 F:      arch/h8300/
7138 F:      drivers/clocksource/h8300_*.c
7139 F:      drivers/clk/h8300/
7140 F:      drivers/irqchip/irq-renesas-h8*.c
7141
7142 HABANALABS PCI DRIVER
7143 M:      Oded Gabbay <oded.gabbay@gmail.com>
7144 T:      git https://github.com/HabanaAI/linux.git
7145 S:      Supported
7146 F:      drivers/misc/habanalabs/
7147 F:      include/uapi/misc/habanalabs.h
7148 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7149 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7150
7151 HACKRF MEDIA DRIVER
7152 M:      Antti Palosaari <crope@iki.fi>
7153 L:      linux-media@vger.kernel.org
7154 W:      https://linuxtv.org
7155 W:      http://palosaari.fi/linux/
7156 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7157 T:      git git://linuxtv.org/anttip/media_tree.git
7158 S:      Maintained
7159 F:      drivers/media/usb/hackrf/
7160
7161 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7162 M:      Frank Seidel <frank@f-seidel.de>
7163 L:      platform-driver-x86@vger.kernel.org
7164 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7165 S:      Maintained
7166 F:      drivers/platform/x86/hdaps.c
7167
7168 HARDWARE MONITORING
7169 M:      Jean Delvare <jdelvare@suse.com>
7170 M:      Guenter Roeck <linux@roeck-us.net>
7171 L:      linux-hwmon@vger.kernel.org
7172 W:      http://hwmon.wiki.kernel.org/
7173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7174 S:      Maintained
7175 F:      Documentation/devicetree/bindings/hwmon/
7176 F:      Documentation/hwmon/
7177 F:      drivers/hwmon/
7178 F:      include/linux/hwmon*.h
7179 F:      include/trace/events/hwmon*.h
7180
7181 HARDWARE RANDOM NUMBER GENERATOR CORE
7182 M:      Matt Mackall <mpm@selenic.com>
7183 M:      Herbert Xu <herbert@gondor.apana.org.au>
7184 L:      linux-crypto@vger.kernel.org
7185 S:      Odd fixes
7186 F:      Documentation/devicetree/bindings/rng/
7187 F:      Documentation/admin-guide/hw_random.rst
7188 F:      drivers/char/hw_random/
7189 F:      include/linux/hw_random.h
7190
7191 HARDWARE TRACING FACILITIES
7192 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7193 S:      Maintained
7194 F:      drivers/hwtracing/
7195
7196 HARDWARE SPINLOCK CORE
7197 M:      Ohad Ben-Cohen <ohad@wizery.com>
7198 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7199 L:      linux-remoteproc@vger.kernel.org
7200 S:      Maintained
7201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
7202 F:      Documentation/devicetree/bindings/hwlock/
7203 F:      Documentation/hwspinlock.txt
7204 F:      drivers/hwspinlock/
7205 F:      include/linux/hwspinlock.h
7206
7207 HARMONY SOUND DRIVER
7208 L:      linux-parisc@vger.kernel.org
7209 S:      Maintained
7210 F:      sound/parisc/harmony.*
7211
7212 HDPVR USB VIDEO ENCODER DRIVER
7213 M:      Hans Verkuil <hverkuil@xs4all.nl>
7214 L:      linux-media@vger.kernel.org
7215 T:      git git://linuxtv.org/media_tree.git
7216 W:      https://linuxtv.org
7217 S:      Odd Fixes
7218 F:      drivers/media/usb/hdpvr/
7219
7220 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7221 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7222 S:      Supported
7223 F:      Documentation/watchdog/hpwdt.rst
7224 F:      drivers/watchdog/hpwdt.c
7225
7226 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7227 M:      Don Brace <don.brace@microsemi.com>
7228 L:      esc.storagedev@microsemi.com
7229 L:      linux-scsi@vger.kernel.org
7230 S:      Supported
7231 F:      Documentation/scsi/hpsa.txt
7232 F:      drivers/scsi/hpsa*.[ch]
7233 F:      include/linux/cciss*.h
7234 F:      include/uapi/linux/cciss*.h
7235
7236 HFI1 DRIVER
7237 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7238 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7239 L:      linux-rdma@vger.kernel.org
7240 S:      Supported
7241 F:      drivers/infiniband/hw/hfi1
7242
7243 HFS FILESYSTEM
7244 L:      linux-fsdevel@vger.kernel.org
7245 S:      Orphan
7246 F:      Documentation/filesystems/hfs.txt
7247 F:      fs/hfs/
7248
7249 HFSPLUS FILESYSTEM
7250 L:      linux-fsdevel@vger.kernel.org
7251 S:      Orphan
7252 F:      Documentation/filesystems/hfsplus.txt
7253 F:      fs/hfsplus/
7254
7255 HGA FRAMEBUFFER DRIVER
7256 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7257 L:      linux-nvidia@lists.surfsouth.com
7258 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7259 S:      Maintained
7260 F:      drivers/video/fbdev/hgafb.c
7261
7262 HIBERNATION (aka Software Suspend, aka swsusp)
7263 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7264 M:      Pavel Machek <pavel@ucw.cz>
7265 L:      linux-pm@vger.kernel.org
7266 B:      https://bugzilla.kernel.org
7267 S:      Supported
7268 F:      arch/x86/power/
7269 F:      drivers/base/power/
7270 F:      kernel/power/
7271 F:      include/linux/suspend.h
7272 F:      include/linux/freezer.h
7273 F:      include/linux/pm.h
7274 F:      arch/*/include/asm/suspend*.h
7275
7276 HID CORE LAYER
7277 M:      Jiri Kosina <jikos@kernel.org>
7278 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7279 L:      linux-input@vger.kernel.org
7280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7281 S:      Maintained
7282 F:      drivers/hid/
7283 F:      include/linux/hid*
7284 F:      include/uapi/linux/hid*
7285
7286 HID SENSOR HUB DRIVERS
7287 M:      Jiri Kosina <jikos@kernel.org>
7288 M:      Jonathan Cameron <jic23@kernel.org>
7289 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7290 L:      linux-input@vger.kernel.org
7291 L:      linux-iio@vger.kernel.org
7292 S:      Maintained
7293 F:      Documentation/hid/hid-sensor*
7294 F:      drivers/hid/hid-sensor-*
7295 F:      drivers/iio/*/hid-*
7296 F:      include/linux/hid-sensor-*
7297
7298 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7299 M:      Thomas Gleixner <tglx@linutronix.de>
7300 L:      linux-kernel@vger.kernel.org
7301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7302 S:      Maintained
7303 F:      Documentation/timers/
7304 F:      kernel/time/hrtimer.c
7305 F:      kernel/time/clockevents.c
7306 F:      kernel/time/timer_*.c
7307 F:      include/linux/clockchips.h
7308 F:      include/linux/hrtimer.h
7309
7310 HIGH-SPEED SCC DRIVER FOR AX.25
7311 L:      linux-hams@vger.kernel.org
7312 S:      Orphan
7313 F:      drivers/net/hamradio/dmascc.c
7314 F:      drivers/net/hamradio/scc.c
7315
7316 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7317 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7318 W:      http://www.highpoint-tech.com
7319 S:      Supported
7320 F:      Documentation/scsi/hptiop.txt
7321 F:      drivers/scsi/hptiop.c
7322
7323 HIPPI
7324 M:      Jes Sorensen <jes@trained-monkey.org>
7325 L:      linux-hippi@sunsite.dk
7326 S:      Maintained
7327 F:      include/linux/hippidevice.h
7328 F:      include/uapi/linux/if_hippi.h
7329 F:      net/802/hippi.c
7330 F:      drivers/net/hippi/
7331
7332 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7333 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7334 M:      Salil Mehta <salil.mehta@huawei.com>
7335 L:      netdev@vger.kernel.org
7336 W:      http://www.hisilicon.com
7337 S:      Maintained
7338 F:      drivers/net/ethernet/hisilicon/hns3/
7339
7340 HISILICON LPC BUS DRIVER
7341 M:      john.garry@huawei.com
7342 W:      http://www.hisilicon.com
7343 S:      Maintained
7344 F:      drivers/bus/hisi_lpc.c
7345 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7346
7347 HISILICON NETWORK SUBSYSTEM DRIVER
7348 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7349 M:      Salil Mehta <salil.mehta@huawei.com>
7350 L:      netdev@vger.kernel.org
7351 W:      http://www.hisilicon.com
7352 S:      Maintained
7353 F:      drivers/net/ethernet/hisilicon/
7354 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7355
7356 HISILICON PMU DRIVER
7357 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7358 W:      http://www.hisilicon.com
7359 S:      Supported
7360 F:      drivers/perf/hisilicon
7361 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7362
7363 HISILICON ROCE DRIVER
7364 M:      Lijun Ou <oulijun@huawei.com>
7365 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
7366 L:      linux-rdma@vger.kernel.org
7367 S:      Maintained
7368 F:      drivers/infiniband/hw/hns/
7369 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7370
7371 HISILICON SAS Controller
7372 M:      John Garry <john.garry@huawei.com>
7373 W:      http://www.hisilicon.com
7374 S:      Supported
7375 F:      drivers/scsi/hisi_sas/
7376 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7377
7378 HISILICON QM AND ZIP Controller DRIVER
7379 M:      Zhou Wang <wangzhou1@hisilicon.com>
7380 L:      linux-crypto@vger.kernel.org
7381 S:      Maintained
7382 F:      drivers/crypto/hisilicon/qm.c
7383 F:      drivers/crypto/hisilicon/qm.h
7384 F:      drivers/crypto/hisilicon/sgl.c
7385 F:      drivers/crypto/hisilicon/sgl.h
7386 F:      drivers/crypto/hisilicon/zip/
7387 F:      Documentation/ABI/testing/debugfs-hisi-zip
7388
7389 HMM - Heterogeneous Memory Management
7390 M:      Jérôme Glisse <jglisse@redhat.com>
7391 L:      linux-mm@kvack.org
7392 S:      Maintained
7393 F:      mm/hmm*
7394 F:      include/linux/hmm*
7395 F:      Documentation/vm/hmm.rst
7396
7397 HOST AP DRIVER
7398 M:      Jouni Malinen <j@w1.fi>
7399 L:      linux-wireless@vger.kernel.org
7400 W:      http://w1.fi/hostap-driver.html
7401 S:      Obsolete
7402 F:      drivers/net/wireless/intersil/hostap/
7403
7404 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7405 L:      platform-driver-x86@vger.kernel.org
7406 S:      Orphan
7407 F:      drivers/platform/x86/tc1100-wmi.c
7408
7409 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7410 M:      Jaroslav Kysela <perex@perex.cz>
7411 S:      Maintained
7412 F:      drivers/net/ethernet/hp/hp100.*
7413
7414 HPET:   High Precision Event Timers driver
7415 M:      Clemens Ladisch <clemens@ladisch.de>
7416 S:      Maintained
7417 F:      Documentation/timers/hpet.rst
7418 F:      drivers/char/hpet.c
7419 F:      include/linux/hpet.h
7420 F:      include/uapi/linux/hpet.h
7421
7422 HPET:   x86
7423 S:      Orphan
7424 F:      arch/x86/kernel/hpet.c
7425 F:      arch/x86/include/asm/hpet.h
7426
7427 HPFS FILESYSTEM
7428 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7429 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7430 S:      Maintained
7431 F:      fs/hpfs/
7432
7433 HSI SUBSYSTEM
7434 M:      Sebastian Reichel <sre@kernel.org>
7435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7436 S:      Maintained
7437 F:      Documentation/ABI/testing/sysfs-bus-hsi
7438 F:      Documentation/driver-api/hsi.rst
7439 F:      drivers/hsi/
7440 F:      include/linux/hsi/
7441 F:      include/uapi/linux/hsi/
7442
7443 HSO 3G MODEM DRIVER
7444 L:      linux-usb@vger.kernel.org
7445 S:      Orphan
7446 F:      drivers/net/usb/hso.c
7447
7448 HSR NETWORK PROTOCOL
7449 M:      Arvid Brodin <arvid.brodin@alten.se>
7450 L:      netdev@vger.kernel.org
7451 S:      Maintained
7452 F:      net/hsr/
7453
7454 HT16K33 LED CONTROLLER DRIVER
7455 M:      Robin van der Gracht <robin@protonic.nl>
7456 S:      Maintained
7457 F:      drivers/auxdisplay/ht16k33.c
7458 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7459
7460 HTCPEN TOUCHSCREEN DRIVER
7461 M:      Pau Oliva Fora <pof@eslack.org>
7462 L:      linux-input@vger.kernel.org
7463 S:      Maintained
7464 F:      drivers/input/touchscreen/htcpen.c
7465
7466 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7467 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7468 L:      linux-iio@vger.kernel.org
7469 W:      http://www.st.com/
7470 S:      Maintained
7471 F:      drivers/iio/humidity/hts221*
7472 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7473
7474 HUAWEI ETHERNET DRIVER
7475 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
7476 L:      netdev@vger.kernel.org
7477 S:      Supported
7478 F:      Documentation/networking/hinic.txt
7479 F:      drivers/net/ethernet/huawei/hinic/
7480
7481 HUGETLB FILESYSTEM
7482 M:      Mike Kravetz <mike.kravetz@oracle.com>
7483 L:      linux-mm@kvack.org
7484 S:      Maintained
7485 F:      fs/hugetlbfs/
7486 F:      mm/hugetlb.c
7487 F:      include/linux/hugetlb.h
7488 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7489 F:      Documentation/vm/hugetlbfs_reserv.rst
7490 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7491
7492 HVA ST MEDIA DRIVER
7493 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7494 L:      linux-media@vger.kernel.org
7495 T:      git git://linuxtv.org/media_tree.git
7496 W:      https://linuxtv.org
7497 S:      Supported
7498 F:      drivers/media/platform/sti/hva
7499
7500 HWPOISON MEMORY FAILURE HANDLING
7501 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
7502 L:      linux-mm@kvack.org
7503 S:      Maintained
7504 F:      mm/memory-failure.c
7505 F:      mm/hwpoison-inject.c
7506
7507 HYGON PROCESSOR SUPPORT
7508 M:      Pu Wen <puwen@hygon.cn>
7509 L:      linux-kernel@vger.kernel.org
7510 S:      Maintained
7511 F:      arch/x86/kernel/cpu/hygon.c
7512
7513 Hyper-V CORE AND DRIVERS
7514 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7515 M:      Haiyang Zhang <haiyangz@microsoft.com>
7516 M:      Stephen Hemminger <sthemmin@microsoft.com>
7517 M:      Sasha Levin <sashal@kernel.org>
7518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7519 L:      linux-hyperv@vger.kernel.org
7520 S:      Supported
7521 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7522 F:      arch/x86/include/asm/mshyperv.h
7523 F:      arch/x86/include/asm/trace/hyperv.h
7524 F:      arch/x86/include/asm/hyperv-tlfs.h
7525 F:      arch/x86/kernel/cpu/mshyperv.c
7526 F:      arch/x86/hyperv
7527 F:      drivers/clocksource/hyperv_timer.c
7528 F:      drivers/hid/hid-hyperv.c
7529 F:      drivers/hv/
7530 F:      drivers/input/serio/hyperv-keyboard.c
7531 F:      drivers/pci/controller/pci-hyperv.c
7532 F:      drivers/pci/controller/pci-hyperv-intf.c
7533 F:      drivers/net/hyperv/
7534 F:      drivers/scsi/storvsc_drv.c
7535 F:      drivers/uio/uio_hv_generic.c
7536 F:      drivers/video/fbdev/hyperv_fb.c
7537 F:      drivers/iommu/hyperv-iommu.c
7538 F:      net/vmw_vsock/hyperv_transport.c
7539 F:      include/clocksource/hyperv_timer.h
7540 F:      include/linux/hyperv.h
7541 F:      include/uapi/linux/hyperv.h
7542 F:      include/asm-generic/mshyperv.h
7543 F:      tools/hv/
7544 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7545
7546 HYPERBUS SUPPORT
7547 M:      Vignesh Raghavendra <vigneshr@ti.com>
7548 S:      Supported
7549 F:      drivers/mtd/hyperbus/
7550 F:      include/linux/mtd/hyperbus.h
7551 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7552 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7553
7554 HYPERVISOR VIRTUAL CONSOLE DRIVER
7555 L:      linuxppc-dev@lists.ozlabs.org
7556 S:      Odd Fixes
7557 F:      drivers/tty/hvc/
7558
7559 I2C ACPI SUPPORT
7560 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7561 L:      linux-i2c@vger.kernel.org
7562 L:      linux-acpi@vger.kernel.org
7563 S:      Maintained
7564 F:      drivers/i2c/i2c-core-acpi.c
7565
7566 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7567 M:      Ajay Gupta <ajayg@nvidia.com>
7568 L:      linux-i2c@vger.kernel.org
7569 S:      Maintained
7570 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7571 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7572
7573 I2C MUXES
7574 M:      Peter Rosin <peda@axentia.se>
7575 L:      linux-i2c@vger.kernel.org
7576 S:      Maintained
7577 F:      Documentation/i2c/i2c-topology.rst
7578 F:      Documentation/i2c/muxes/
7579 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7580 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7581 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7582 F:      drivers/i2c/i2c-mux.c
7583 F:      drivers/i2c/muxes/
7584 F:      include/linux/i2c-mux.h
7585
7586 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7587 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
7588 L:      linux-i2c@vger.kernel.org
7589 S:      Maintained
7590 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7591 F:      drivers/i2c/busses/i2c-mv64xxx.c
7592
7593 I2C OVER PARALLEL PORT
7594 M:      Jean Delvare <jdelvare@suse.com>
7595 L:      linux-i2c@vger.kernel.org
7596 S:      Maintained
7597 F:      Documentation/i2c/busses/i2c-parport.rst
7598 F:      Documentation/i2c/busses/i2c-parport-light.rst
7599 F:      drivers/i2c/busses/i2c-parport.c
7600 F:      drivers/i2c/busses/i2c-parport-light.c
7601
7602 I2C SUBSYSTEM
7603 M:      Wolfram Sang <wsa@the-dreams.de>
7604 L:      linux-i2c@vger.kernel.org
7605 W:      https://i2c.wiki.kernel.org/
7606 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7608 S:      Maintained
7609 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7610 F:      Documentation/i2c/
7611 F:      drivers/i2c/*
7612 F:      include/linux/i2c.h
7613 F:      include/linux/i2c-dev.h
7614 F:      include/linux/i2c-smbus.h
7615 F:      include/uapi/linux/i2c.h
7616 F:      include/uapi/linux/i2c-*.h
7617
7618 I2C SUBSYSTEM HOST DRIVERS
7619 L:      linux-i2c@vger.kernel.org
7620 W:      https://i2c.wiki.kernel.org/
7621 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7623 S:      Odd Fixes
7624 F:      Documentation/devicetree/bindings/i2c/
7625 F:      drivers/i2c/algos/
7626 F:      drivers/i2c/busses/
7627
7628 I2C-TAOS-EVM DRIVER
7629 M:      Jean Delvare <jdelvare@suse.com>
7630 L:      linux-i2c@vger.kernel.org
7631 S:      Maintained
7632 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7633 F:      drivers/i2c/busses/i2c-taos-evm.c
7634
7635 I2C-TINY-USB DRIVER
7636 M:      Till Harbaum <till@harbaum.org>
7637 L:      linux-i2c@vger.kernel.org
7638 W:      http://www.harbaum.org/till/i2c_tiny_usb
7639 S:      Maintained
7640 F:      drivers/i2c/busses/i2c-tiny-usb.c
7641
7642 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7643 M:      Jean Delvare <jdelvare@suse.com>
7644 L:      linux-i2c@vger.kernel.org
7645 S:      Maintained
7646 F:      Documentation/i2c/busses/i2c-ali1535.rst
7647 F:      Documentation/i2c/busses/i2c-ali1563.rst
7648 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7649 F:      Documentation/i2c/busses/i2c-amd756.rst
7650 F:      Documentation/i2c/busses/i2c-amd8111.rst
7651 F:      Documentation/i2c/busses/i2c-i801.rst
7652 F:      Documentation/i2c/busses/i2c-nforce2.rst
7653 F:      Documentation/i2c/busses/i2c-piix4.rst
7654 F:      Documentation/i2c/busses/i2c-sis5595.rst
7655 F:      Documentation/i2c/busses/i2c-sis630.rst
7656 F:      Documentation/i2c/busses/i2c-sis96x.rst
7657 F:      Documentation/i2c/busses/i2c-via.rst
7658 F:      Documentation/i2c/busses/i2c-viapro.rst
7659 F:      drivers/i2c/busses/i2c-ali1535.c
7660 F:      drivers/i2c/busses/i2c-ali1563.c
7661 F:      drivers/i2c/busses/i2c-ali15x3.c
7662 F:      drivers/i2c/busses/i2c-amd756.c
7663 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7664 F:      drivers/i2c/busses/i2c-amd8111.c
7665 F:      drivers/i2c/busses/i2c-i801.c
7666 F:      drivers/i2c/busses/i2c-isch.c
7667 F:      drivers/i2c/busses/i2c-nforce2.c
7668 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7669 F:      drivers/i2c/busses/i2c-piix4.c
7670 F:      drivers/i2c/busses/i2c-sis5595.c
7671 F:      drivers/i2c/busses/i2c-sis630.c
7672 F:      drivers/i2c/busses/i2c-sis96x.c
7673 F:      drivers/i2c/busses/i2c-via.c
7674 F:      drivers/i2c/busses/i2c-viapro.c
7675
7676 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7677 M:      Hans de Goede <hdegoede@redhat.com>
7678 L:      linux-i2c@vger.kernel.org
7679 S:      Maintained
7680 F:      drivers/i2c/busses/i2c-cht-wc.c
7681
7682 I2C/SMBUS ISMT DRIVER
7683 M:      Seth Heasley <seth.heasley@intel.com>
7684 M:      Neil Horman <nhorman@tuxdriver.com>
7685 L:      linux-i2c@vger.kernel.org
7686 F:      drivers/i2c/busses/i2c-ismt.c
7687 F:      Documentation/i2c/busses/i2c-ismt.rst
7688
7689 I2C/SMBUS STUB DRIVER
7690 M:      Jean Delvare <jdelvare@suse.com>
7691 L:      linux-i2c@vger.kernel.org
7692 S:      Maintained
7693 F:      drivers/i2c/i2c-stub.c
7694
7695 I3C SUBSYSTEM
7696 M:      Boris Brezillon <bbrezillon@kernel.org>
7697 L:      linux-i3c@lists.infradead.org
7698 C:      irc://chat.freenode.net/linux-i3c
7699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
7700 S:      Maintained
7701 F:      Documentation/ABI/testing/sysfs-bus-i3c
7702 F:      Documentation/devicetree/bindings/i3c/
7703 F:      Documentation/driver-api/i3c
7704 F:      drivers/i3c/
7705 F:      include/linux/i3c/
7706
7707 I3C DRIVER FOR SYNOPSYS DESIGNWARE
7708 M:      Vitor Soares <vitor.soares@synopsys.com>
7709 S:      Maintained
7710 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
7711 F:      drivers/i3c/master/dw*
7712
7713 IA64 (Itanium) PLATFORM
7714 M:      Tony Luck <tony.luck@intel.com>
7715 M:      Fenghua Yu <fenghua.yu@intel.com>
7716 L:      linux-ia64@vger.kernel.org
7717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
7718 S:      Maintained
7719 F:      arch/ia64/
7720
7721 IBM Power 842 compression accelerator
7722 M:      Haren Myneni <haren@us.ibm.com>
7723 S:      Supported
7724 F:      drivers/crypto/nx/Makefile
7725 F:      drivers/crypto/nx/Kconfig
7726 F:      drivers/crypto/nx/nx-842*
7727 F:      include/linux/sw842.h
7728 F:      crypto/842.c
7729 F:      lib/842/
7730
7731 IBM Power in-Nest Crypto Acceleration
7732 M:      Breno Leitão <leitao@debian.org>
7733 M:      Nayna Jain <nayna@linux.ibm.com>
7734 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7735 L:      linux-crypto@vger.kernel.org
7736 S:      Supported
7737 F:      drivers/crypto/nx/Makefile
7738 F:      drivers/crypto/nx/Kconfig
7739 F:      drivers/crypto/nx/nx-aes*
7740 F:      drivers/crypto/nx/nx-sha*
7741 F:      drivers/crypto/nx/nx.*
7742 F:      drivers/crypto/nx/nx_csbcpb.h
7743 F:      drivers/crypto/nx/nx_debugfs.c
7744
7745 IBM Power Linux RAID adapter
7746 M:      Brian King <brking@us.ibm.com>
7747 S:      Supported
7748 F:      drivers/scsi/ipr.*
7749
7750 IBM Power SRIOV Virtual NIC Device Driver
7751 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7752 M:      John Allen <jallen@linux.ibm.com>
7753 L:      netdev@vger.kernel.org
7754 S:      Supported
7755 F:      drivers/net/ethernet/ibm/ibmvnic.*
7756
7757 IBM Power Virtual Accelerator Switchboard
7758 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
7759 L:      linuxppc-dev@lists.ozlabs.org
7760 S:      Supported
7761 F:      arch/powerpc/platforms/powernv/vas*
7762 F:      arch/powerpc/platforms/powernv/copy-paste.h
7763 F:      arch/powerpc/include/asm/vas.h
7764
7765 IBM Power Virtual Ethernet Device Driver
7766 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7767 L:      netdev@vger.kernel.org
7768 S:      Supported
7769 F:      drivers/net/ethernet/ibm/ibmveth.*
7770
7771 IBM Power Virtual FC Device Drivers
7772 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7773 L:      linux-scsi@vger.kernel.org
7774 S:      Supported
7775 F:      drivers/scsi/ibmvscsi/ibmvfc*
7776
7777 IBM Power Virtual Management Channel Driver
7778 M:      Steven Royer <seroyer@linux.ibm.com>
7779 S:      Supported
7780 F:      drivers/misc/ibmvmc.*
7781
7782 IBM Power Virtual SCSI Device Drivers
7783 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7784 L:      linux-scsi@vger.kernel.org
7785 S:      Supported
7786 F:      drivers/scsi/ibmvscsi/ibmvscsi*
7787 F:      include/scsi/viosrp.h
7788
7789 IBM Power Virtual SCSI Device Target Driver
7790 M:      Michael Cyr <mikecyr@linux.ibm.com>
7791 L:      linux-scsi@vger.kernel.org
7792 L:      target-devel@vger.kernel.org
7793 S:      Supported
7794 F:      drivers/scsi/ibmvscsi_tgt/
7795
7796 IBM Power VMX Cryptographic instructions
7797 M:      Breno Leitão <leitao@debian.org>
7798 M:      Nayna Jain <nayna@linux.ibm.com>
7799 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7800 L:      linux-crypto@vger.kernel.org
7801 S:      Supported
7802 F:      drivers/crypto/vmx/Makefile
7803 F:      drivers/crypto/vmx/Kconfig
7804 F:      drivers/crypto/vmx/vmx.c
7805 F:      drivers/crypto/vmx/aes*
7806 F:      drivers/crypto/vmx/ghash*
7807 F:      drivers/crypto/vmx/ppc-xlate.pl
7808
7809 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
7810 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7811 L:      linux-pci@vger.kernel.org
7812 L:      linuxppc-dev@lists.ozlabs.org
7813 S:      Supported
7814 F:      drivers/pci/hotplug/rpaphp*
7815
7816 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
7817 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7818 L:      linux-pci@vger.kernel.org
7819 L:      linuxppc-dev@lists.ozlabs.org
7820 S:      Supported
7821 F:      drivers/pci/hotplug/rpadlpar*
7822
7823 IBM ServeRAID RAID DRIVER
7824 S:      Orphan
7825 F:      drivers/scsi/ips.*
7826
7827 ICH LPC AND GPIO DRIVER
7828 M:      Peter Tyser <ptyser@xes-inc.com>
7829 S:      Maintained
7830 F:      drivers/mfd/lpc_ich.c
7831 F:      drivers/gpio/gpio-ich.c
7832
7833 IDE SUBSYSTEM
7834 M:      "David S. Miller" <davem@davemloft.net>
7835 L:      linux-ide@vger.kernel.org
7836 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
7837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
7838 S:      Maintained
7839 F:      Documentation/ide/
7840 F:      drivers/ide/
7841 F:      include/linux/ide.h
7842
7843 IDE/ATAPI DRIVERS
7844 M:      Borislav Petkov <bp@alien8.de>
7845 L:      linux-ide@vger.kernel.org
7846 S:      Maintained
7847 F:      Documentation/cdrom/ide-cd.rst
7848 F:      drivers/ide/ide-cd*
7849
7850 IDEAPAD LAPTOP EXTRAS DRIVER
7851 M:      Ike Panhc <ike.pan@canonical.com>
7852 L:      platform-driver-x86@vger.kernel.org
7853 W:      http://launchpad.net/ideapad-laptop
7854 S:      Maintained
7855 F:      drivers/platform/x86/ideapad-laptop.c
7856
7857 IDEAPAD LAPTOP SLIDEBAR DRIVER
7858 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
7859 L:      linux-input@vger.kernel.org
7860 W:      https://github.com/o2genum/ideapad-slidebar
7861 S:      Maintained
7862 F:      drivers/input/misc/ideapad_slidebar.c
7863
7864 IDT VersaClock 5 CLOCK DRIVER
7865 M:      Marek Vasut <marek.vasut@gmail.com>
7866 S:      Maintained
7867 F:      drivers/clk/clk-versaclock5.c
7868
7869 IEEE 802.15.4 SUBSYSTEM
7870 M:      Alexander Aring <alex.aring@gmail.com>
7871 M:      Stefan Schmidt <stefan@datenfreihafen.org>
7872 L:      linux-wpan@vger.kernel.org
7873 W:      http://wpan.cakelab.org/
7874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
7875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
7876 S:      Maintained
7877 F:      net/ieee802154/
7878 F:      net/mac802154/
7879 F:      drivers/net/ieee802154/
7880 F:      include/linux/nl802154.h
7881 F:      include/linux/ieee802154.h
7882 F:      include/net/nl802154.h
7883 F:      include/net/mac802154.h
7884 F:      include/net/af_ieee802154.h
7885 F:      include/net/cfg802154.h
7886 F:      include/net/ieee802154_netdev.h
7887 F:      Documentation/networking/ieee802154.rst
7888
7889 IFE PROTOCOL
7890 M:      Yotam Gigi <yotam.gi@gmail.com>
7891 M:      Jamal Hadi Salim <jhs@mojatatu.com>
7892 F:      net/ife
7893 F:      include/net/ife.h
7894 F:      include/uapi/linux/ife.h
7895
7896 IGORPLUG-USB IR RECEIVER
7897 M:      Sean Young <sean@mess.org>
7898 L:      linux-media@vger.kernel.org
7899 S:      Maintained
7900 F:      drivers/media/rc/igorplugusb.c
7901
7902 IGUANAWORKS USB IR TRANSCEIVER
7903 M:      Sean Young <sean@mess.org>
7904 L:      linux-media@vger.kernel.org
7905 S:      Maintained
7906 F:      drivers/media/rc/iguanair.c
7907
7908 IIO DIGITAL POTENTIOMETER DAC
7909 M:      Peter Rosin <peda@axentia.se>
7910 L:      linux-iio@vger.kernel.org
7911 S:      Maintained
7912 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
7913 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
7914 F:      drivers/iio/dac/dpot-dac.c
7915
7916 IIO ENVELOPE DETECTOR
7917 M:      Peter Rosin <peda@axentia.se>
7918 L:      linux-iio@vger.kernel.org
7919 S:      Maintained
7920 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
7921 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
7922 F:      drivers/iio/adc/envelope-detector.c
7923
7924 IIO MULTIPLEXER
7925 M:      Peter Rosin <peda@axentia.se>
7926 L:      linux-iio@vger.kernel.org
7927 S:      Maintained
7928 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
7929 F:      drivers/iio/multiplexer/iio-mux.c
7930
7931 IIO SUBSYSTEM AND DRIVERS
7932 M:      Jonathan Cameron <jic23@kernel.org>
7933 R:      Hartmut Knaack <knaack.h@gmx.de>
7934 R:      Lars-Peter Clausen <lars@metafoo.de>
7935 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
7936 L:      linux-iio@vger.kernel.org
7937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
7938 S:      Maintained
7939 F:      Documentation/ABI/testing/configfs-iio*
7940 F:      Documentation/ABI/testing/sysfs-bus-iio*
7941 F:      Documentation/devicetree/bindings/iio/
7942 F:      drivers/iio/
7943 F:      drivers/staging/iio/
7944 F:      include/linux/iio/
7945 F:      tools/iio/
7946
7947 IIO UNIT CONVERTER
7948 M:      Peter Rosin <peda@axentia.se>
7949 L:      linux-iio@vger.kernel.org
7950 S:      Maintained
7951 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
7952 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
7953 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
7954 F:      drivers/iio/afe/iio-rescale.c
7955
7956 IKANOS/ADI EAGLE ADSL USB DRIVER
7957 M:      Matthieu Castet <castet.matthieu@free.fr>
7958 M:      Stanislaw Gruszka <stf_xl@wp.pl>
7959 S:      Maintained
7960 F:      drivers/usb/atm/ueagle-atm.c
7961
7962 IMGTEC ASCII LCD DRIVER
7963 M:      Paul Burton <paul.burton@mips.com>
7964 S:      Maintained
7965 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
7966 F:      drivers/auxdisplay/img-ascii-lcd.c
7967
7968 IMGTEC IR DECODER DRIVER
7969 M:      James Hogan <jhogan@kernel.org>
7970 S:      Maintained
7971 F:      drivers/media/rc/img-ir/
7972
7973 IMON SOUNDGRAPH USB IR RECEIVER
7974 M:      Sean Young <sean@mess.org>
7975 L:      linux-media@vger.kernel.org
7976 S:      Maintained
7977 F:      drivers/media/rc/imon_raw.c
7978 F:      drivers/media/rc/imon.c
7979
7980 IMS TWINTURBO FRAMEBUFFER DRIVER
7981 L:      linux-fbdev@vger.kernel.org
7982 S:      Orphan
7983 F:      drivers/video/fbdev/imsttfb.c
7984
7985 INA209 HARDWARE MONITOR DRIVER
7986 M:      Guenter Roeck <linux@roeck-us.net>
7987 L:      linux-hwmon@vger.kernel.org
7988 S:      Maintained
7989 F:      Documentation/hwmon/ina209.rst
7990 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
7991 F:      drivers/hwmon/ina209.c
7992
7993 INA2XX HARDWARE MONITOR DRIVER
7994 M:      Guenter Roeck <linux@roeck-us.net>
7995 L:      linux-hwmon@vger.kernel.org
7996 S:      Maintained
7997 F:      Documentation/hwmon/ina2xx.rst
7998 F:      drivers/hwmon/ina2xx.c
7999 F:      include/linux/platform_data/ina2xx.h
8000
8001 INDUSTRY PACK SUBSYSTEM (IPACK)
8002 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8003 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8004 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8005 L:      industrypack-devel@lists.sourceforge.net
8006 W:      http://industrypack.sourceforge.net
8007 S:      Maintained
8008 F:      drivers/ipack/
8009
8010 INFINEON DPS310 Driver
8011 M:      Eddie James <eajames@linux.ibm.com>
8012 L:      linux-iio@vger.kernel.org
8013 F:      drivers/iio/pressure/dps310.c
8014 S:      Maintained
8015
8016 INFINIBAND SUBSYSTEM
8017 M:      Doug Ledford <dledford@redhat.com>
8018 M:      Jason Gunthorpe <jgg@mellanox.com>
8019 L:      linux-rdma@vger.kernel.org
8020 W:      https://github.com/linux-rdma/rdma-core
8021 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8023 S:      Supported
8024 F:      Documentation/devicetree/bindings/infiniband/
8025 F:      Documentation/infiniband/
8026 F:      drivers/infiniband/
8027 F:      include/uapi/linux/if_infiniband.h
8028 F:      include/uapi/rdma/
8029 F:      include/rdma/
8030 F:      include/trace/events/ib_mad.h
8031 F:      include/trace/events/ib_umad.h
8032 F:      samples/bpf/ibumad_kern.c
8033 F:      samples/bpf/ibumad_user.c
8034
8035 INGENIC JZ4780 DMA Driver
8036 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8037 S:      Maintained
8038 F:      drivers/dma/dma-jz4780.c
8039
8040 INGENIC JZ4780 NAND DRIVER
8041 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8042 L:      linux-mtd@lists.infradead.org
8043 S:      Maintained
8044 F:      drivers/mtd/nand/raw/ingenic/
8045
8046 INGENIC JZ47xx SoCs
8047 M:      Paul Cercueil <paul@crapouillou.net>
8048 S:      Maintained
8049 F:      arch/mips/boot/dts/ingenic/
8050 F:      arch/mips/include/asm/mach-jz4740/
8051 F:      arch/mips/jz4740/
8052 F:      drivers/clk/ingenic/
8053 F:      drivers/dma/dma-jz4780.c
8054 F:      drivers/gpu/drm/ingenic/
8055 F:      drivers/i2c/busses/i2c-jz4780.c
8056 F:      drivers/iio/adc/ingenic-adc.c
8057 F:      drivers/irqchip/irq-ingenic.c
8058 F:      drivers/memory/jz4780-nemc.c
8059 F:      drivers/mmc/host/jz4740_mmc.c
8060 F:      drivers/mtd/nand/raw/ingenic/
8061 F:      drivers/pinctrl/pinctrl-ingenic.c
8062 F:      drivers/power/supply/ingenic-battery.c
8063 F:      drivers/pwm/pwm-jz4740.c
8064 F:      drivers/rtc/rtc-jz4740.c
8065 F:      drivers/tty/serial/8250/8250_ingenic.c
8066 F:      drivers/usb/musb/jz4740.c
8067 F:      drivers/watchdog/jz4740_wdt.c
8068 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8069 F:      include/linux/mfd/ingenic-tcu.h
8070 F:      sound/soc/jz4740/
8071 F:      sound/soc/codecs/jz47*
8072
8073 INOTIFY
8074 M:      Jan Kara <jack@suse.cz>
8075 R:      Amir Goldstein <amir73il@gmail.com>
8076 L:      linux-fsdevel@vger.kernel.org
8077 S:      Maintained
8078 F:      Documentation/filesystems/inotify.txt
8079 F:      fs/notify/inotify/
8080 F:      include/linux/inotify.h
8081 F:      include/uapi/linux/inotify.h
8082
8083 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8084 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8085 L:      linux-input@vger.kernel.org
8086 Q:      http://patchwork.kernel.org/project/linux-input/list/
8087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8088 S:      Maintained
8089 F:      drivers/input/
8090 F:      include/linux/input.h
8091 F:      include/uapi/linux/input.h
8092 F:      include/uapi/linux/input-event-codes.h
8093 F:      include/linux/input/
8094 F:      Documentation/devicetree/bindings/input/
8095 F:      Documentation/devicetree/bindings/serio/
8096 F:      Documentation/input/
8097
8098 INPUT MULTITOUCH (MT) PROTOCOL
8099 M:      Henrik Rydberg <rydberg@bitmath.org>
8100 L:      linux-input@vger.kernel.org
8101 S:      Odd fixes
8102 F:      Documentation/input/multi-touch-protocol.rst
8103 F:      drivers/input/input-mt.c
8104 K:      \b(ABS|SYN)_MT_
8105
8106 INSIDE SECURE CRYPTO DRIVER
8107 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8108 F:      drivers/crypto/inside-secure/
8109 S:      Maintained
8110 L:      linux-crypto@vger.kernel.org
8111
8112 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8113 M:      Mimi Zohar <zohar@linux.ibm.com>
8114 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8115 L:      linux-integrity@vger.kernel.org
8116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8117 S:      Supported
8118 F:      security/integrity/ima/
8119
8120 INTEL 810/815 FRAMEBUFFER DRIVER
8121 M:      Antonino Daplas <adaplas@gmail.com>
8122 L:      linux-fbdev@vger.kernel.org
8123 S:      Maintained
8124 F:      drivers/video/fbdev/i810/
8125
8126 INTEL ASoC DRIVERS
8127 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8128 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8129 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8130 M:      Jie Yang <yang.jie@linux.intel.com>
8131 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8132 S:      Supported
8133 F:      sound/soc/intel/
8134
8135 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8136 M:      Hans de Goede <hdegoede@redhat.com>
8137 L:      platform-driver-x86@vger.kernel.org
8138 S:      Maintained
8139 F:      drivers/platform/x86/intel_atomisp2_pm.c
8140
8141 INTEL C600 SERIES SAS CONTROLLER DRIVER
8142 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8143 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8144 L:      linux-scsi@vger.kernel.org
8145 T:      git git://git.code.sf.net/p/intel-sas/isci
8146 S:      Supported
8147 F:      drivers/scsi/isci/
8148
8149 INTEL CPU family model numbers
8150 M:      Tony Luck <tony.luck@intel.com>
8151 M:      x86@kernel.org
8152 L:      linux-kernel@vger.kernel.org
8153 S:      Supported
8154 F:      arch/x86/include/asm/intel-family.h
8155
8156 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8157 M:      Jani Nikula <jani.nikula@linux.intel.com>
8158 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8159 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8160 L:      intel-gfx@lists.freedesktop.org
8161 W:      https://01.org/linuxgraphics/
8162 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
8163 C:      irc://chat.freenode.net/intel-gfx
8164 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8165 T:      git git://anongit.freedesktop.org/drm-intel
8166 S:      Supported
8167 F:      drivers/gpu/drm/i915/
8168 F:      include/drm/i915*
8169 F:      include/uapi/drm/i915_drm.h
8170 F:      Documentation/gpu/i915.rst
8171
8172 INTEL ETHERNET DRIVERS
8173 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8174 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8175 W:      http://www.intel.com/support/feedback.htm
8176 W:      http://e1000.sourceforge.net/
8177 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8180 S:      Supported
8181 F:      Documentation/networking/device_drivers/intel/e100.rst
8182 F:      Documentation/networking/device_drivers/intel/e1000.rst
8183 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8184 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8185 F:      Documentation/networking/device_drivers/intel/igb.rst
8186 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8187 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8188 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8189 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8190 F:      Documentation/networking/device_drivers/intel/i40e.rst
8191 F:      Documentation/networking/device_drivers/intel/iavf.rst
8192 F:      Documentation/networking/device_drivers/intel/ice.rst
8193 F:      drivers/net/ethernet/intel/
8194 F:      drivers/net/ethernet/intel/*/
8195 F:      include/linux/avf/virtchnl.h
8196
8197 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8198 M:      Maik Broemme <mbroemme@libmpq.org>
8199 L:      linux-fbdev@vger.kernel.org
8200 S:      Maintained
8201 F:      Documentation/fb/intelfb.rst
8202 F:      drivers/video/fbdev/intelfb/
8203
8204 INTEL GPIO DRIVERS
8205 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8206 L:      linux-gpio@vger.kernel.org
8207 S:      Maintained
8208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8209 F:      drivers/gpio/gpio-ich.c
8210 F:      drivers/gpio/gpio-intel-mid.c
8211 F:      drivers/gpio/gpio-lynxpoint.c
8212 F:      drivers/gpio/gpio-merrifield.c
8213 F:      drivers/gpio/gpio-ml-ioh.c
8214 F:      drivers/gpio/gpio-pch.c
8215 F:      drivers/gpio/gpio-sch.c
8216 F:      drivers/gpio/gpio-sodaville.c
8217
8218 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8219 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8220 M:      Zhi Wang <zhi.a.wang@intel.com>
8221 L:      intel-gvt-dev@lists.freedesktop.org
8222 L:      intel-gfx@lists.freedesktop.org
8223 W:      https://01.org/igvt-g
8224 T:      git https://github.com/intel/gvt-linux.git
8225 S:      Supported
8226 F:      drivers/gpu/drm/i915/gvt/
8227
8228 INTEL HID EVENT DRIVER
8229 M:      Alex Hung <alex.hung@canonical.com>
8230 L:      platform-driver-x86@vger.kernel.org
8231 S:      Maintained
8232 F:      drivers/platform/x86/intel-hid.c
8233
8234 INTEL I/OAT DMA DRIVER
8235 M:      Dave Jiang <dave.jiang@intel.com>
8236 R:      Dan Williams <dan.j.williams@intel.com>
8237 L:      dmaengine@vger.kernel.org
8238 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8239 S:      Supported
8240 F:      drivers/dma/ioat*
8241
8242 INTEL IDLE DRIVER
8243 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8244 M:      Len Brown <lenb@kernel.org>
8245 L:      linux-pm@vger.kernel.org
8246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8247 B:      https://bugzilla.kernel.org
8248 S:      Supported
8249 F:      drivers/idle/intel_idle.c
8250
8251 INTEL INTEGRATED SENSOR HUB DRIVER
8252 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8253 M:      Jiri Kosina <jikos@kernel.org>
8254 L:      linux-input@vger.kernel.org
8255 S:      Maintained
8256 F:      drivers/hid/intel-ish-hid/
8257
8258 INTEL IOMMU (VT-d)
8259 M:      David Woodhouse <dwmw2@infradead.org>
8260 L:      iommu@lists.linux-foundation.org
8261 T:      git git://git.infradead.org/iommu-2.6.git
8262 S:      Supported
8263 F:      drivers/iommu/intel-iommu.c
8264 F:      include/linux/intel-iommu.h
8265
8266 INTEL IOP-ADMA DMA DRIVER
8267 R:      Dan Williams <dan.j.williams@intel.com>
8268 S:      Odd fixes
8269 F:      drivers/dma/iop-adma.c
8270
8271 INTEL IPU3 CSI-2 CIO2 DRIVER
8272 M:      Yong Zhi <yong.zhi@intel.com>
8273 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8274 M:      Bingbu Cao <bingbu.cao@intel.com>
8275 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8276 L:      linux-media@vger.kernel.org
8277 S:      Maintained
8278 F:      drivers/media/pci/intel/ipu3/
8279 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8280
8281 INTEL IPU3 CSI-2 IMGU DRIVER
8282 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8283 L:      linux-media@vger.kernel.org
8284 S:      Maintained
8285 F:      drivers/staging/media/ipu3/
8286 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8287 F:      Documentation/media/v4l-drivers/ipu3.rst
8288
8289 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8290 M:      Krzysztof Halasa <khalasa@piap.pl>
8291 S:      Maintained
8292 F:      include/linux/soc/ixp4xx/qmgr.h
8293 F:      include/linux/soc/ixp4xx/npe.h
8294 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8295 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8296 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8297 F:      drivers/net/wan/ixp4xx_hss.c
8298
8299 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8300 M:      Deepak Saxena <dsaxena@plexity.net>
8301 S:      Maintained
8302 F:      drivers/char/hw_random/ixp4xx-rng.c
8303
8304 INTEL MANAGEMENT ENGINE (mei)
8305 M:      Tomas Winkler <tomas.winkler@intel.com>
8306 L:      linux-kernel@vger.kernel.org
8307 S:      Supported
8308 F:      include/uapi/linux/mei.h
8309 F:      include/linux/mei_cl_bus.h
8310 F:      drivers/misc/mei/*
8311 F:      drivers/watchdog/mei_wdt.c
8312 F:      Documentation/driver-api/mei/*
8313 F:      samples/mei/*
8314
8315 INTEL MENLOW THERMAL DRIVER
8316 M:      Sujith Thomas <sujith.thomas@intel.com>
8317 L:      platform-driver-x86@vger.kernel.org
8318 W:      https://01.org/linux-acpi
8319 S:      Supported
8320 F:      drivers/platform/x86/intel_menlow.c
8321
8322 INTEL MIC DRIVERS (mic)
8323 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8324 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8325 S:      Supported
8326 W:      https://github.com/sudeepdutt/mic
8327 W:      http://software.intel.com/en-us/mic-developer
8328 F:      include/linux/mic_bus.h
8329 F:      include/linux/scif.h
8330 F:      include/uapi/linux/mic_common.h
8331 F:      include/uapi/linux/mic_ioctl.h
8332 F:      include/uapi/linux/scif_ioctl.h
8333 F:      drivers/misc/mic/
8334 F:      drivers/dma/mic_x100_dma.c
8335 F:      drivers/dma/mic_x100_dma.h
8336 F:      Documentation/mic/
8337
8338 INTEL PMC CORE DRIVER
8339 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8340 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8341 L:      platform-driver-x86@vger.kernel.org
8342 S:      Maintained
8343 F:      drivers/platform/x86/intel_pmc_core*
8344
8345 INTEL PMC/P-Unit IPC DRIVER
8346 M:      Zha Qipeng<qipeng.zha@intel.com>
8347 L:      platform-driver-x86@vger.kernel.org
8348 S:      Maintained
8349 F:      drivers/platform/x86/intel_pmc_ipc.c
8350 F:      drivers/platform/x86/intel_punit_ipc.c
8351 F:      arch/x86/include/asm/intel_pmc_ipc.h
8352 F:      arch/x86/include/asm/intel_punit_ipc.h
8353
8354 INTEL PMIC GPIO DRIVERS
8355 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8356 S:      Maintained
8357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8358 F:      drivers/gpio/gpio-*cove.c
8359 F:      drivers/gpio/gpio-msic.c
8360
8361 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8362 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8363 S:      Maintained
8364 F:      drivers/mfd/intel_msic.c
8365 F:      drivers/mfd/intel_soc_pmic*
8366 F:      include/linux/mfd/intel_msic.h
8367 F:      include/linux/mfd/intel_soc_pmic*
8368
8369 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8370 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8371 L:      linux-wireless@vger.kernel.org
8372 S:      Maintained
8373 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8374 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8375 F:      drivers/net/wireless/intel/ipw2x00/
8376
8377 INTEL PSTATE DRIVER
8378 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8379 M:      Len Brown <lenb@kernel.org>
8380 L:      linux-pm@vger.kernel.org
8381 S:      Supported
8382 F:      drivers/cpufreq/intel_pstate.c
8383
8384 INTEL RDMA RNIC DRIVER
8385 M:      Faisal Latif <faisal.latif@intel.com>
8386 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8387 L:      linux-rdma@vger.kernel.org
8388 S:      Supported
8389 F:      drivers/infiniband/hw/i40iw/
8390 F:      include/uapi/rdma/i40iw-abi.h
8391
8392 INTEL SPEED SELECT TECHNOLOGY
8393 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8394 L:      platform-driver-x86@vger.kernel.org
8395 S:      Maintained
8396 F:      drivers/platform/x86/intel_speed_select_if/
8397 F:      tools/power/x86/intel-speed-select/
8398 F:      include/uapi/linux/isst_if.h
8399
8400 INTEL STRATIX10 FIRMWARE DRIVERS
8401 M:      Richard Gong <richard.gong@linux.intel.com>
8402 L:      linux-kernel@vger.kernel.org
8403 S:      Maintained
8404 F:      drivers/firmware/stratix10-rsu.c
8405 F:      drivers/firmware/stratix10-svc.c
8406 F:      include/linux/firmware/intel/stratix10-smc.h
8407 F:      include/linux/firmware/intel/stratix10-svc-client.h
8408 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8409 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8410
8411 INTEL TELEMETRY DRIVER
8412 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8413 M:      "David E. Box" <david.e.box@linux.intel.com>
8414 L:      platform-driver-x86@vger.kernel.org
8415 S:      Maintained
8416 F:      arch/x86/include/asm/intel_telemetry.h
8417 F:      drivers/platform/x86/intel_telemetry*
8418
8419 INTEL VIRTUAL BUTTON DRIVER
8420 M:      AceLan Kao <acelan.kao@canonical.com>
8421 L:      platform-driver-x86@vger.kernel.org
8422 S:      Maintained
8423 F:      drivers/platform/x86/intel-vbtn.c
8424
8425 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8426 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8427 L:      linux-wireless@vger.kernel.org
8428 S:      Supported
8429 F:      drivers/net/wireless/intel/iwlegacy/
8430
8431 INTEL WIRELESS WIFI LINK (iwlwifi)
8432 M:      Johannes Berg <johannes.berg@intel.com>
8433 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8434 M:      Luca Coelho <luciano.coelho@intel.com>
8435 M:      Intel Linux Wireless <linuxwifi@intel.com>
8436 L:      linux-wireless@vger.kernel.org
8437 W:      http://intellinuxwireless.org
8438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8439 S:      Supported
8440 F:      drivers/net/wireless/intel/iwlwifi/
8441
8442 INTEL WIRELESS WIMAX CONNECTION 2400
8443 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8444 M:      linux-wimax@intel.com
8445 L:      wimax@linuxwimax.org (subscribers-only)
8446 S:      Supported
8447 W:      http://linuxwimax.org
8448 F:      Documentation/admin-guide/wimax/i2400m.rst
8449 F:      drivers/net/wimax/i2400m/
8450 F:      include/uapi/linux/wimax/i2400m.h
8451
8452 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8453 M:      Mario Limonciello <mario.limonciello@dell.com>
8454 S:      Maintained
8455 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8456
8457 INTEL(R) TRACE HUB
8458 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8459 S:      Supported
8460 F:      Documentation/trace/intel_th.rst
8461 F:      drivers/hwtracing/intel_th/
8462 F:      include/linux/intel_th.h
8463
8464 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8465 M:      Ning Sun <ning.sun@intel.com>
8466 L:      tboot-devel@lists.sourceforge.net
8467 W:      http://tboot.sourceforge.net
8468 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8469 S:      Supported
8470 F:      Documentation/x86/intel_txt.rst
8471 F:      include/linux/tboot.h
8472 F:      arch/x86/kernel/tboot.c
8473
8474 INTERCONNECT API
8475 M:      Georgi Djakov <georgi.djakov@linaro.org>
8476 L:      linux-pm@vger.kernel.org
8477 S:      Maintained
8478 F:      Documentation/driver-api/interconnect.rst
8479 F:      Documentation/devicetree/bindings/interconnect/
8480 F:      drivers/interconnect/
8481 F:      include/dt-bindings/interconnect/
8482 F:      include/linux/interconnect-provider.h
8483 F:      include/linux/interconnect.h
8484
8485 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8486 M:      Linus Walleij <linus.walleij@linaro.org>
8487 L:      linux-iio@vger.kernel.org
8488 S:      Maintained
8489 F:      drivers/iio/gyro/mpu3050*
8490 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8491
8492 IOC3 ETHERNET DRIVER
8493 M:      Ralf Baechle <ralf@linux-mips.org>
8494 L:      linux-mips@vger.kernel.org
8495 S:      Maintained
8496 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8497
8498 IOMAP FILESYSTEM LIBRARY
8499 M:      Christoph Hellwig <hch@infradead.org>
8500 M:      Darrick J. Wong <darrick.wong@oracle.com>
8501 M:      linux-xfs@vger.kernel.org
8502 M:      linux-fsdevel@vger.kernel.org
8503 L:      linux-xfs@vger.kernel.org
8504 L:      linux-fsdevel@vger.kernel.org
8505 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8506 S:      Supported
8507 F:      fs/iomap/
8508 F:      include/linux/iomap.h
8509
8510 IOMMU DRIVERS
8511 M:      Joerg Roedel <joro@8bytes.org>
8512 L:      iommu@lists.linux-foundation.org
8513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8514 S:      Maintained
8515 F:      Documentation/devicetree/bindings/iommu/
8516 F:      drivers/iommu/
8517 F:      include/linux/iommu.h
8518 F:      include/linux/of_iommu.h
8519 F:      include/linux/iova.h
8520
8521 IO_URING
8522 M:      Jens Axboe <axboe@kernel.dk>
8523 L:      linux-block@vger.kernel.org
8524 L:      linux-fsdevel@vger.kernel.org
8525 T:      git git://git.kernel.dk/linux-block
8526 T:      git git://git.kernel.dk/liburing
8527 S:      Maintained
8528 F:      fs/io_uring.c
8529 F:      include/uapi/linux/io_uring.h
8530
8531 IPMI SUBSYSTEM
8532 M:      Corey Minyard <minyard@acm.org>
8533 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
8534 W:      http://openipmi.sourceforge.net/
8535 S:      Supported
8536 F:      Documentation/devicetree/bindings/ipmi/
8537 F:      Documentation/IPMI.txt
8538 F:      drivers/char/ipmi/
8539 F:      include/linux/ipmi*
8540 F:      include/uapi/linux/ipmi*
8541
8542 IPS SCSI RAID DRIVER
8543 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
8544 L:      linux-scsi@vger.kernel.org
8545 W:      http://www.adaptec.com/
8546 S:      Maintained
8547 F:      drivers/scsi/ips*
8548
8549 IPVS
8550 M:      Wensong Zhang <wensong@linux-vs.org>
8551 M:      Simon Horman <horms@verge.net.au>
8552 M:      Julian Anastasov <ja@ssi.bg>
8553 L:      netdev@vger.kernel.org
8554 L:      lvs-devel@vger.kernel.org
8555 S:      Maintained
8556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8558 F:      Documentation/networking/ipvs-sysctl.txt
8559 F:      include/net/ip_vs.h
8560 F:      include/uapi/linux/ip_vs.h
8561 F:      net/netfilter/ipvs/
8562
8563 IPWIRELESS DRIVER
8564 M:      Jiri Kosina <jikos@kernel.org>
8565 M:      David Sterba <dsterba@suse.com>
8566 S:      Odd Fixes
8567 F:      drivers/tty/ipwireless/
8568
8569 IPX NETWORK LAYER
8570 L:      netdev@vger.kernel.org
8571 S:      Obsolete
8572 F:      include/uapi/linux/ipx.h
8573
8574 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8575 M:      Marc Zyngier <maz@kernel.org>
8576 S:      Maintained
8577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8578 F:      Documentation/IRQ-domain.txt
8579 F:      include/linux/irqdomain.h
8580 F:      kernel/irq/irqdomain.c
8581 F:      kernel/irq/msi.c
8582
8583 IRQ SUBSYSTEM
8584 M:      Thomas Gleixner <tglx@linutronix.de>
8585 L:      linux-kernel@vger.kernel.org
8586 S:      Maintained
8587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8588 F:      kernel/irq/
8589
8590 IRQCHIP DRIVERS
8591 M:      Thomas Gleixner <tglx@linutronix.de>
8592 M:      Jason Cooper <jason@lakedaemon.net>
8593 M:      Marc Zyngier <maz@kernel.org>
8594 L:      linux-kernel@vger.kernel.org
8595 S:      Maintained
8596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8597 F:      Documentation/devicetree/bindings/interrupt-controller/
8598 F:      drivers/irqchip/
8599
8600 ISA
8601 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8602 S:      Maintained
8603 F:      Documentation/driver-api/isa.rst
8604 F:      drivers/base/isa.c
8605 F:      include/linux/isa.h
8606
8607 ISA RADIO MODULE
8608 M:      Hans Verkuil <hverkuil@xs4all.nl>
8609 L:      linux-media@vger.kernel.org
8610 T:      git git://linuxtv.org/media_tree.git
8611 W:      https://linuxtv.org
8612 S:      Maintained
8613 F:      drivers/media/radio/radio-isa*
8614
8615 ISAPNP
8616 M:      Jaroslav Kysela <perex@perex.cz>
8617 S:      Maintained
8618 F:      Documentation/driver-api/isapnp.rst
8619 F:      drivers/pnp/isapnp/
8620 F:      include/linux/isapnp.h
8621
8622 ISCSI
8623 M:      Lee Duncan <lduncan@suse.com>
8624 M:      Chris Leech <cleech@redhat.com>
8625 L:      open-iscsi@googlegroups.com
8626 W:      www.open-iscsi.com
8627 S:      Maintained
8628 F:      drivers/scsi/*iscsi*
8629 F:      include/scsi/*iscsi*
8630
8631 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8632 M:      Peter Jones <pjones@redhat.com>
8633 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
8634 S:      Maintained
8635 F:      drivers/firmware/iscsi_ibft*
8636
8637 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8638 M:      Sagi Grimberg <sagi@grimberg.me>
8639 M:      Max Gurtovoy <maxg@mellanox.com>
8640 L:      linux-rdma@vger.kernel.org
8641 S:      Supported
8642 W:      http://www.openfabrics.org
8643 W:      www.open-iscsi.org
8644 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8645 F:      drivers/infiniband/ulp/iser/
8646
8647 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
8648 M:      Sagi Grimberg <sagi@grimberg.me>
8649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
8650 L:      linux-rdma@vger.kernel.org
8651 L:      target-devel@vger.kernel.org
8652 S:      Supported
8653 W:      http://www.linux-iscsi.org
8654 F:      drivers/infiniband/ulp/isert
8655
8656 ISDN/mISDN SUBSYSTEM
8657 M:      Karsten Keil <isdn@linux-pingi.de>
8658 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8659 L:      netdev@vger.kernel.org
8660 W:      http://www.isdn4linux.de
8661 S:      Maintained
8662 F:      drivers/isdn/mISDN
8663 F:      drivers/isdn/hardware
8664
8665 ISDN/CAPI SUBSYSTEM
8666 M:      Karsten Keil <isdn@linux-pingi.de>
8667 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8668 L:      netdev@vger.kernel.org
8669 W:      http://www.isdn4linux.de
8670 S:      Odd Fixes
8671 F:      Documentation/isdn/
8672 F:      drivers/isdn/capi/
8673 F:      drivers/staging/isdn/
8674 F:      net/bluetooth/cmtp/
8675 F:      include/linux/isdn/
8676 F:      include/uapi/linux/isdn/
8677
8678 IT87 HARDWARE MONITORING DRIVER
8679 M:      Jean Delvare <jdelvare@suse.com>
8680 L:      linux-hwmon@vger.kernel.org
8681 S:      Maintained
8682 F:      Documentation/hwmon/it87.rst
8683 F:      drivers/hwmon/it87.c
8684
8685 IT913X MEDIA DRIVER
8686 M:      Antti Palosaari <crope@iki.fi>
8687 L:      linux-media@vger.kernel.org
8688 W:      https://linuxtv.org
8689 W:      http://palosaari.fi/linux/
8690 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8691 T:      git git://linuxtv.org/anttip/media_tree.git
8692 S:      Maintained
8693 F:      drivers/media/tuners/it913x*
8694
8695 IVTV VIDEO4LINUX DRIVER
8696 M:      Andy Walls <awalls@md.metrocast.net>
8697 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
8698 L:      linux-media@vger.kernel.org
8699 T:      git git://linuxtv.org/media_tree.git
8700 W:      http://www.ivtvdriver.org
8701 S:      Maintained
8702 F:      Documentation/media/v4l-drivers/ivtv*
8703 F:      drivers/media/pci/ivtv/
8704 F:      include/uapi/linux/ivtv*
8705
8706 IX2505V MEDIA DRIVER
8707 M:      Malcolm Priestley <tvboxspy@gmail.com>
8708 L:      linux-media@vger.kernel.org
8709 W:      https://linuxtv.org
8710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8711 S:      Maintained
8712 F:      drivers/media/dvb-frontends/ix2505v*
8713
8714 JAILHOUSE HYPERVISOR INTERFACE
8715 M:      Jan Kiszka <jan.kiszka@siemens.com>
8716 L:      jailhouse-dev@googlegroups.com
8717 S:      Maintained
8718 F:      arch/x86/kernel/jailhouse.c
8719 F:      arch/x86/include/asm/jailhouse_para.h
8720
8721 JC42.4 TEMPERATURE SENSOR DRIVER
8722 M:      Guenter Roeck <linux@roeck-us.net>
8723 L:      linux-hwmon@vger.kernel.org
8724 S:      Maintained
8725 F:      drivers/hwmon/jc42.c
8726 F:      Documentation/hwmon/jc42.rst
8727
8728 JFS FILESYSTEM
8729 M:      Dave Kleikamp <shaggy@kernel.org>
8730 L:      jfs-discussion@lists.sourceforge.net
8731 W:      http://jfs.sourceforge.net/
8732 T:      git git://github.com/kleikamp/linux-shaggy.git
8733 S:      Maintained
8734 F:      Documentation/admin-guide/jfs.rst
8735 F:      fs/jfs/
8736
8737 JME NETWORK DRIVER
8738 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
8739 L:      netdev@vger.kernel.org
8740 S:      Maintained
8741 F:      drivers/net/ethernet/jme.*
8742
8743 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
8744 M:      David Woodhouse <dwmw2@infradead.org>
8745 M:      Richard Weinberger <richard@nod.at>
8746 L:      linux-mtd@lists.infradead.org
8747 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
8748 T:      git git://git.infradead.org/ubifs-2.6.git
8749 S:      Odd Fixes
8750 F:      fs/jffs2/
8751 F:      include/uapi/linux/jffs2.h
8752
8753 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
8754 M:      "Theodore Ts'o" <tytso@mit.edu>
8755 M:      Jan Kara <jack@suse.com>
8756 L:      linux-ext4@vger.kernel.org
8757 S:      Maintained
8758 F:      fs/jbd2/
8759 F:      include/linux/jbd2.h
8760
8761 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
8762 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
8763 L:      linux-media@vger.kernel.org
8764 S:      Maintained
8765 F:      drivers/media/platform/rcar_jpu.c
8766
8767 JSM Neo PCI based serial card
8768 L:      linux-serial@vger.kernel.org
8769 S:      Orphan
8770 F:      drivers/tty/serial/jsm/
8771
8772 K10TEMP HARDWARE MONITORING DRIVER
8773 M:      Clemens Ladisch <clemens@ladisch.de>
8774 L:      linux-hwmon@vger.kernel.org
8775 S:      Maintained
8776 F:      Documentation/hwmon/k10temp.rst
8777 F:      drivers/hwmon/k10temp.c
8778
8779 K8TEMP HARDWARE MONITORING DRIVER
8780 M:      Rudolf Marek <r.marek@assembler.cz>
8781 L:      linux-hwmon@vger.kernel.org
8782 S:      Maintained
8783 F:      Documentation/hwmon/k8temp.rst
8784 F:      drivers/hwmon/k8temp.c
8785
8786 KASAN
8787 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
8788 R:      Alexander Potapenko <glider@google.com>
8789 R:      Dmitry Vyukov <dvyukov@google.com>
8790 L:      kasan-dev@googlegroups.com
8791 S:      Maintained
8792 F:      arch/*/include/asm/kasan.h
8793 F:      arch/*/mm/kasan_init*
8794 F:      Documentation/dev-tools/kasan.rst
8795 F:      include/linux/kasan*.h
8796 F:      lib/test_kasan.c
8797 F:      mm/kasan/
8798 F:      scripts/Makefile.kasan
8799
8800 KCONFIG
8801 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
8803 L:      linux-kbuild@vger.kernel.org
8804 S:      Maintained
8805 F:      Documentation/kbuild/kconfig*
8806 F:      scripts/kconfig/
8807 F:      scripts/Kconfig.include
8808
8809 KDUMP
8810 M:      Dave Young <dyoung@redhat.com>
8811 M:      Baoquan He <bhe@redhat.com>
8812 R:      Vivek Goyal <vgoyal@redhat.com>
8813 L:      kexec@lists.infradead.org
8814 W:      http://lse.sourceforge.net/kdump/
8815 S:      Maintained
8816 F:      Documentation/admin-guide/kdump/
8817
8818 KEENE FM RADIO TRANSMITTER DRIVER
8819 M:      Hans Verkuil <hverkuil@xs4all.nl>
8820 L:      linux-media@vger.kernel.org
8821 T:      git git://linuxtv.org/media_tree.git
8822 W:      https://linuxtv.org
8823 S:      Maintained
8824 F:      drivers/media/radio/radio-keene*
8825
8826 KERNEL AUTOMOUNTER
8827 M:      Ian Kent <raven@themaw.net>
8828 L:      autofs@vger.kernel.org
8829 S:      Maintained
8830 F:      fs/autofs/
8831
8832 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
8833 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8834 M:      Michal Marek <michal.lkml@markovi.net>
8835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
8836 L:      linux-kbuild@vger.kernel.org
8837 S:      Maintained
8838 F:      Documentation/kbuild/
8839 F:      Makefile
8840 F:      scripts/Kbuild*
8841 F:      scripts/Makefile*
8842 F:      scripts/basic/
8843 F:      scripts/mk*
8844 F:      scripts/*vmlinux*
8845 F:      scripts/mod/
8846 F:      scripts/package/
8847
8848 KERNEL JANITORS
8849 L:      kernel-janitors@vger.kernel.org
8850 W:      http://kernelnewbies.org/KernelJanitors
8851 S:      Odd Fixes
8852
8853 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
8854 M:      "J. Bruce Fields" <bfields@fieldses.org>
8855 M:      Chuck Lever <chuck.lever@oracle.com>
8856 L:      linux-nfs@vger.kernel.org
8857 W:      http://nfs.sourceforge.net/
8858 T:      git git://linux-nfs.org/~bfields/linux.git
8859 S:      Supported
8860 F:      fs/nfsd/
8861 F:      include/uapi/linux/nfsd/
8862 F:      fs/lockd/
8863 F:      fs/nfs_common/
8864 F:      net/sunrpc/
8865 F:      include/linux/lockd/
8866 F:      include/linux/sunrpc/
8867 F:      include/uapi/linux/sunrpc/
8868
8869 KERNEL SELFTEST FRAMEWORK
8870 M:      Shuah Khan <shuah@kernel.org>
8871 M:      Shuah Khan <skhan@linuxfoundation.org>
8872 L:      linux-kselftest@vger.kernel.org
8873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
8874 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
8875 S:      Maintained
8876 F:      tools/testing/selftests/
8877 F:      Documentation/dev-tools/kselftest*
8878
8879 KERNEL USERMODE HELPER
8880 M:      Luis Chamberlain <mcgrof@kernel.org>
8881 L:      linux-kernel@vger.kernel.org
8882 S:      Maintained
8883 F:      kernel/umh.c
8884 F:      include/linux/umh.h
8885
8886 KERNEL VIRTUAL MACHINE (KVM)
8887 M:      Paolo Bonzini <pbonzini@redhat.com>
8888 M:      Radim Krčmář <rkrcmar@redhat.com>
8889 L:      kvm@vger.kernel.org
8890 W:      http://www.linux-kvm.org
8891 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8892 S:      Supported
8893 F:      Documentation/virt/kvm/
8894 F:      include/trace/events/kvm.h
8895 F:      include/uapi/asm-generic/kvm*
8896 F:      include/uapi/linux/kvm*
8897 F:      include/asm-generic/kvm*
8898 F:      include/linux/kvm*
8899 F:      include/kvm/iodev.h
8900 F:      virt/kvm/*
8901 F:      tools/kvm/
8902 F:      tools/testing/selftests/kvm/
8903
8904 KERNEL VIRTUAL MACHINE FOR ARM/ARM64 (KVM/arm, KVM/arm64)
8905 M:      Marc Zyngier <maz@kernel.org>
8906 R:      James Morse <james.morse@arm.com>
8907 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
8908 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
8909 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8910 L:      kvmarm@lists.cs.columbia.edu
8911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
8912 S:      Maintained
8913 F:      arch/arm/include/uapi/asm/kvm*
8914 F:      arch/arm/include/asm/kvm*
8915 F:      arch/arm/kvm/
8916 F:      arch/arm64/include/uapi/asm/kvm*
8917 F:      arch/arm64/include/asm/kvm*
8918 F:      arch/arm64/kvm/
8919 F:      virt/kvm/arm/
8920 F:      include/kvm/arm_*
8921
8922 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
8923 M:      James Hogan <jhogan@kernel.org>
8924 L:      linux-mips@vger.kernel.org
8925 S:      Supported
8926 F:      arch/mips/include/uapi/asm/kvm*
8927 F:      arch/mips/include/asm/kvm*
8928 F:      arch/mips/kvm/
8929
8930 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
8931 M:      Paul Mackerras <paulus@ozlabs.org>
8932 L:      kvm-ppc@vger.kernel.org
8933 W:      http://www.linux-kvm.org/
8934 T:      git git://github.com/agraf/linux-2.6.git
8935 S:      Supported
8936 F:      arch/powerpc/include/uapi/asm/kvm*
8937 F:      arch/powerpc/include/asm/kvm*
8938 F:      arch/powerpc/kvm/
8939 F:      arch/powerpc/kernel/kvm*
8940
8941 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
8942 M:      Christian Borntraeger <borntraeger@de.ibm.com>
8943 M:      Janosch Frank <frankja@linux.ibm.com>
8944 R:      David Hildenbrand <david@redhat.com>
8945 R:      Cornelia Huck <cohuck@redhat.com>
8946 L:      kvm@vger.kernel.org
8947 W:      http://www.ibm.com/developerworks/linux/linux390/
8948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
8949 S:      Supported
8950 F:      arch/s390/include/uapi/asm/kvm*
8951 F:      arch/s390/include/asm/gmap.h
8952 F:      arch/s390/include/asm/kvm*
8953 F:      arch/s390/kvm/
8954 F:      arch/s390/mm/gmap.c
8955 F:      tools/testing/selftests/kvm/s390x/
8956 F:      tools/testing/selftests/kvm/*/s390x/
8957
8958 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
8959 M:      Paolo Bonzini <pbonzini@redhat.com>
8960 M:      Radim Krčmář <rkrcmar@redhat.com>
8961 R:      Sean Christopherson <sean.j.christopherson@intel.com>
8962 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
8963 R:      Wanpeng Li <wanpengli@tencent.com>
8964 R:      Jim Mattson <jmattson@google.com>
8965 R:      Joerg Roedel <joro@8bytes.org>
8966 L:      kvm@vger.kernel.org
8967 W:      http://www.linux-kvm.org
8968 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8969 S:      Supported
8970 F:      arch/x86/kvm/
8971 F:      arch/x86/kvm/*/
8972 F:      arch/x86/include/uapi/asm/kvm*
8973 F:      arch/x86/include/uapi/asm/vmx.h
8974 F:      arch/x86/include/uapi/asm/svm.h
8975 F:      arch/x86/include/asm/kvm*
8976 F:      arch/x86/include/asm/pvclock-abi.h
8977 F:      arch/x86/include/asm/svm.h
8978 F:      arch/x86/include/asm/vmx.h
8979 F:      arch/x86/kernel/kvm.c
8980 F:      arch/x86/kernel/kvmclock.c
8981
8982 KERNFS
8983 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8984 M:      Tejun Heo <tj@kernel.org>
8985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8986 S:      Supported
8987 F:      include/linux/kernfs.h
8988 F:      fs/kernfs/
8989
8990 KEXEC
8991 M:      Eric Biederman <ebiederm@xmission.com>
8992 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
8993 L:      kexec@lists.infradead.org
8994 S:      Maintained
8995 F:      include/linux/kexec.h
8996 F:      include/uapi/linux/kexec.h
8997 F:      kernel/kexec*
8998
8999 KEYS-ENCRYPTED
9000 M:      Mimi Zohar <zohar@linux.ibm.com>
9001 L:      linux-integrity@vger.kernel.org
9002 L:      keyrings@vger.kernel.org
9003 S:      Supported
9004 F:      Documentation/security/keys/trusted-encrypted.rst
9005 F:      include/keys/encrypted-type.h
9006 F:      security/keys/encrypted-keys/
9007
9008 KEYS-TRUSTED
9009 M:      James Bottomley <jejb@linux.ibm.com>
9010 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9011 M:      Mimi Zohar <zohar@linux.ibm.com>
9012 L:      linux-integrity@vger.kernel.org
9013 L:      keyrings@vger.kernel.org
9014 S:      Supported
9015 F:      Documentation/security/keys/trusted-encrypted.rst
9016 F:      include/keys/trusted-type.h
9017 F:      security/keys/trusted.c
9018 F:      security/keys/trusted.h
9019
9020 KEYS/KEYRINGS:
9021 M:      David Howells <dhowells@redhat.com>
9022 L:      keyrings@vger.kernel.org
9023 S:      Maintained
9024 F:      Documentation/security/keys/core.rst
9025 F:      include/linux/key.h
9026 F:      include/linux/key-type.h
9027 F:      include/linux/keyctl.h
9028 F:      include/uapi/linux/keyctl.h
9029 F:      include/keys/
9030 F:      security/keys/
9031
9032 KGDB / KDB /debug_core
9033 M:      Jason Wessel <jason.wessel@windriver.com>
9034 M:      Daniel Thompson <daniel.thompson@linaro.org>
9035 W:      http://kgdb.wiki.kernel.org/
9036 L:      kgdb-bugreport@lists.sourceforge.net
9037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9038 S:      Maintained
9039 F:      Documentation/dev-tools/kgdb.rst
9040 F:      drivers/misc/kgdbts.c
9041 F:      drivers/tty/serial/kgdboc.c
9042 F:      include/linux/kdb.h
9043 F:      include/linux/kgdb.h
9044 F:      kernel/debug/
9045
9046 KMEMLEAK
9047 M:      Catalin Marinas <catalin.marinas@arm.com>
9048 S:      Maintained
9049 F:      Documentation/dev-tools/kmemleak.rst
9050 F:      include/linux/kmemleak.h
9051 F:      mm/kmemleak.c
9052 F:      mm/kmemleak-test.c
9053
9054 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9055 M:      Luis Chamberlain <mcgrof@kernel.org>
9056 L:      linux-kernel@vger.kernel.org
9057 S:      Maintained
9058 F:      kernel/kmod.c
9059 F:      include/linux/kmod.h
9060 F:      lib/test_kmod.c
9061 F:      tools/testing/selftests/kmod/
9062
9063 KPROBES
9064 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9065 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9066 M:      "David S. Miller" <davem@davemloft.net>
9067 M:      Masami Hiramatsu <mhiramat@kernel.org>
9068 S:      Maintained
9069 F:      Documentation/kprobes.txt
9070 F:      include/linux/kprobes.h
9071 F:      include/asm-generic/kprobes.h
9072 F:      kernel/kprobes.c
9073
9074 KS0108 LCD CONTROLLER DRIVER
9075 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9076 S:      Maintained
9077 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9078 F:      drivers/auxdisplay/ks0108.c
9079 F:      include/linux/ks0108.h
9080
9081 L3MDEV
9082 M:      David Ahern <dsa@cumulusnetworks.com>
9083 L:      netdev@vger.kernel.org
9084 S:      Maintained
9085 F:      net/l3mdev
9086 F:      include/net/l3mdev.h
9087
9088 L7 BPF FRAMEWORK
9089 M:      John Fastabend <john.fastabend@gmail.com>
9090 M:      Daniel Borkmann <daniel@iogearbox.net>
9091 L:      netdev@vger.kernel.org
9092 L:      bpf@vger.kernel.org
9093 S:      Maintained
9094 F:      include/linux/skmsg.h
9095 F:      net/core/skmsg.c
9096 F:      net/core/sock_map.c
9097 F:      net/ipv4/tcp_bpf.c
9098
9099 LANTIQ / INTEL Ethernet drivers
9100 M:      Hauke Mehrtens <hauke@hauke-m.de>
9101 L:      netdev@vger.kernel.org
9102 S:      Maintained
9103 F:      net/dsa/tag_gswip.c
9104 F:      drivers/net/ethernet/lantiq_xrx200.c
9105 F:      drivers/net/dsa/lantiq_pce.h
9106 F:      drivers/net/dsa/lantiq_gswip.c
9107
9108 LANTIQ MIPS ARCHITECTURE
9109 M:      John Crispin <john@phrozen.org>
9110 L:      linux-mips@vger.kernel.org
9111 S:      Maintained
9112 F:      arch/mips/lantiq
9113 F:      drivers/soc/lantiq
9114
9115 LAPB module
9116 L:      linux-x25@vger.kernel.org
9117 S:      Orphan
9118 F:      Documentation/networking/lapb-module.txt
9119 F:      include/*/lapb.h
9120 F:      net/lapb/
9121
9122 LASI 53c700 driver for PARISC
9123 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9124 L:      linux-scsi@vger.kernel.org
9125 S:      Maintained
9126 F:      Documentation/scsi/53c700.txt
9127 F:      drivers/scsi/53c700*
9128
9129 LEAKING_ADDRESSES
9130 M:      Tobin C. Harding <me@tobin.cc>
9131 M:      Tycho Andersen <tycho@tycho.ws>
9132 L:      kernel-hardening@lists.openwall.com
9133 S:      Maintained
9134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9135 F:      scripts/leaking_addresses.pl
9136
9137 LED SUBSYSTEM
9138 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9139 M:      Pavel Machek <pavel@ucw.cz>
9140 R:      Dan Murphy <dmurphy@ti.com>
9141 L:      linux-leds@vger.kernel.org
9142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9143 S:      Maintained
9144 F:      Documentation/devicetree/bindings/leds/
9145 F:      drivers/leds/
9146 F:      include/linux/leds.h
9147
9148 LEGACY EEPROM DRIVER
9149 M:      Jean Delvare <jdelvare@suse.com>
9150 S:      Maintained
9151 F:      Documentation/misc-devices/eeprom.rst
9152 F:      drivers/misc/eeprom/eeprom.c
9153
9154 LEGO MINDSTORMS EV3
9155 R:      David Lechner <david@lechnology.com>
9156 S:      Maintained
9157 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9158 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9159 F:      drivers/power/supply/lego_ev3_battery.c
9160
9161 LEGO USB Tower driver
9162 M:      Juergen Stuber <starblue@users.sourceforge.net>
9163 L:      legousb-devel@lists.sourceforge.net
9164 W:      http://legousb.sourceforge.net/
9165 S:      Maintained
9166 F:      drivers/usb/misc/legousbtower.c
9167
9168 LG LAPTOP EXTRAS
9169 M:      Matan Ziv-Av <matan@svgalib.org>
9170 L:      platform-driver-x86@vger.kernel.org
9171 S:      Maintained
9172 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9173 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9174 F:      drivers/platform/x86/lg-laptop.c
9175
9176 LG2160 MEDIA DRIVER
9177 M:      Michael Krufky <mkrufky@linuxtv.org>
9178 L:      linux-media@vger.kernel.org
9179 W:      https://linuxtv.org
9180 W:      http://github.com/mkrufky
9181 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9182 T:      git git://linuxtv.org/mkrufky/tuners.git
9183 S:      Maintained
9184 F:      drivers/media/dvb-frontends/lg2160.*
9185
9186 LGDT3305 MEDIA DRIVER
9187 M:      Michael Krufky <mkrufky@linuxtv.org>
9188 L:      linux-media@vger.kernel.org
9189 W:      https://linuxtv.org
9190 W:      http://github.com/mkrufky
9191 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9192 T:      git git://linuxtv.org/mkrufky/tuners.git
9193 S:      Maintained
9194 F:      drivers/media/dvb-frontends/lgdt3305.*
9195
9196 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9197 M:      Viresh Kumar <vireshk@kernel.org>
9198 L:      linux-ide@vger.kernel.org
9199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9200 S:      Maintained
9201 F:      include/linux/pata_arasan_cf_data.h
9202 F:      drivers/ata/pata_arasan_cf.c
9203
9204 LIBATA PATA DRIVERS
9205 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9206 M:      Jens Axboe <axboe@kernel.dk>
9207 L:      linux-ide@vger.kernel.org
9208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9209 S:      Maintained
9210 F:      drivers/ata/pata_*.c
9211 F:      drivers/ata/ata_generic.c
9212
9213 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9214 M:      Linus Walleij <linus.walleij@linaro.org>
9215 L:      linux-ide@vger.kernel.org
9216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9217 S:      Maintained
9218 F:      drivers/ata/pata_ftide010.c
9219 F:      drivers/ata/sata_gemini.c
9220 F:      drivers/ata/sata_gemini.h
9221
9222 LIBATA SATA AHCI PLATFORM devices support
9223 M:      Hans de Goede <hdegoede@redhat.com>
9224 M:      Jens Axboe <axboe@kernel.dk>
9225 L:      linux-ide@vger.kernel.org
9226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9227 S:      Maintained
9228 F:      drivers/ata/ahci_platform.c
9229 F:      drivers/ata/libahci_platform.c
9230 F:      include/linux/ahci_platform.h
9231
9232 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9233 M:      Mikael Pettersson <mikpelinux@gmail.com>
9234 L:      linux-ide@vger.kernel.org
9235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9236 S:      Maintained
9237 F:      drivers/ata/sata_promise.*
9238
9239 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9240 M:      Jens Axboe <axboe@kernel.dk>
9241 L:      linux-ide@vger.kernel.org
9242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9243 S:      Maintained
9244 F:      drivers/ata/
9245 F:      include/linux/ata.h
9246 F:      include/linux/libata.h
9247 F:      Documentation/devicetree/bindings/ata/
9248
9249 LIBLOCKDEP
9250 M:      Sasha Levin <alexander.levin@microsoft.com>
9251 S:      Maintained
9252 F:      tools/lib/lockdep/
9253
9254 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9255 M:      Dan Williams <dan.j.williams@intel.com>
9256 M:      Vishal Verma <vishal.l.verma@intel.com>
9257 M:      Dave Jiang <dave.jiang@intel.com>
9258 L:      linux-nvdimm@lists.01.org
9259 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9260 S:      Supported
9261 F:      drivers/nvdimm/blk.c
9262 F:      drivers/nvdimm/region_devs.c
9263
9264 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9265 M:      Vishal Verma <vishal.l.verma@intel.com>
9266 M:      Dan Williams <dan.j.williams@intel.com>
9267 M:      Dave Jiang <dave.jiang@intel.com>
9268 L:      linux-nvdimm@lists.01.org
9269 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9270 S:      Supported
9271 F:      drivers/nvdimm/btt*
9272
9273 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9274 M:      Dan Williams <dan.j.williams@intel.com>
9275 M:      Vishal Verma <vishal.l.verma@intel.com>
9276 M:      Dave Jiang <dave.jiang@intel.com>
9277 L:      linux-nvdimm@lists.01.org
9278 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9279 S:      Supported
9280 F:      drivers/nvdimm/pmem*
9281
9282 LIBNVDIMM: DEVICETREE BINDINGS
9283 M:      Oliver O'Halloran <oohall@gmail.com>
9284 L:      linux-nvdimm@lists.01.org
9285 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9286 S:      Supported
9287 F:      drivers/nvdimm/of_pmem.c
9288 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9289
9290 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9291 M:      Dan Williams <dan.j.williams@intel.com>
9292 M:      Vishal Verma <vishal.l.verma@intel.com>
9293 M:      Dave Jiang <dave.jiang@intel.com>
9294 M:      Keith Busch <keith.busch@intel.com>
9295 M:      Ira Weiny <ira.weiny@intel.com>
9296 L:      linux-nvdimm@lists.01.org
9297 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9299 S:      Supported
9300 F:      drivers/nvdimm/*
9301 F:      drivers/acpi/nfit/*
9302 F:      include/linux/nd.h
9303 F:      include/linux/libnvdimm.h
9304 F:      include/uapi/linux/ndctl.h
9305
9306 LICENSES and SPDX stuff
9307 M:      Thomas Gleixner <tglx@linutronix.de>
9308 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9309 L:      linux-spdx@vger.kernel.org
9310 S:      Maintained
9311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9312 F:      COPYING
9313 F:      Documentation/process/license-rules.rst
9314 F:      LICENSES/
9315 F:      scripts/spdxcheck-test.sh
9316 F:      scripts/spdxcheck.py
9317
9318 LIGHTNVM PLATFORM SUPPORT
9319 M:      Matias Bjorling <mb@lightnvm.io>
9320 W:      http://github/OpenChannelSSD
9321 L:      linux-block@vger.kernel.org
9322 S:      Maintained
9323 F:      drivers/lightnvm/
9324 F:      include/linux/lightnvm.h
9325 F:      include/uapi/linux/lightnvm.h
9326
9327 LINUX FOR POWER MACINTOSH
9328 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9329 W:      http://www.penguinppc.org/
9330 L:      linuxppc-dev@lists.ozlabs.org
9331 S:      Maintained
9332 F:      arch/powerpc/platforms/powermac/
9333 F:      drivers/macintosh/
9334
9335 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9336 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9337 M:      Paul Mackerras <paulus@samba.org>
9338 M:      Michael Ellerman <mpe@ellerman.id.au>
9339 W:      https://github.com/linuxppc/linux/wiki
9340 L:      linuxppc-dev@lists.ozlabs.org
9341 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9343 S:      Supported
9344 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9345 F:      Documentation/devicetree/bindings/powerpc/
9346 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9347 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9348 F:      Documentation/powerpc/
9349 F:      arch/powerpc/
9350 F:      drivers/char/tpm/tpm_ibmvtpm*
9351 F:      drivers/crypto/nx/
9352 F:      drivers/crypto/vmx/
9353 F:      drivers/i2c/busses/i2c-opal.c
9354 F:      drivers/net/ethernet/ibm/ibmveth.*
9355 F:      drivers/net/ethernet/ibm/ibmvnic.*
9356 F:      drivers/pci/hotplug/pnv_php.c
9357 F:      drivers/pci/hotplug/rpa*
9358 F:      drivers/rtc/rtc-opal.c
9359 F:      drivers/scsi/ibmvscsi/
9360 F:      drivers/tty/hvc/hvc_opal.c
9361 F:      drivers/watchdog/wdrtas.c
9362 F:      tools/testing/selftests/powerpc
9363 N:      /pmac
9364 N:      powermac
9365 N:      powernv
9366 N:      [^a-z0-9]ps3
9367 N:      pseries
9368
9369 LINUX FOR POWERPC EMBEDDED MPC5XXX
9370 M:      Anatolij Gustschin <agust@denx.de>
9371 L:      linuxppc-dev@lists.ozlabs.org
9372 T:      git git://git.denx.de/linux-denx-agust.git
9373 S:      Maintained
9374 F:      arch/powerpc/platforms/512x/
9375 F:      arch/powerpc/platforms/52xx/
9376
9377 LINUX FOR POWERPC EMBEDDED PPC4XX
9378 M:      Alistair Popple <alistair@popple.id.au>
9379 M:      Matt Porter <mporter@kernel.crashing.org>
9380 W:      http://www.penguinppc.org/
9381 L:      linuxppc-dev@lists.ozlabs.org
9382 S:      Maintained
9383 F:      arch/powerpc/platforms/40x/
9384 F:      arch/powerpc/platforms/44x/
9385
9386 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9387 M:      Scott Wood <oss@buserror.net>
9388 M:      Kumar Gala <galak@kernel.crashing.org>
9389 W:      http://www.penguinppc.org/
9390 L:      linuxppc-dev@lists.ozlabs.org
9391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9392 S:      Maintained
9393 F:      arch/powerpc/platforms/83xx/
9394 F:      arch/powerpc/platforms/85xx/
9395 F:      Documentation/devicetree/bindings/powerpc/fsl/
9396
9397 LINUX FOR POWERPC EMBEDDED PPC8XX
9398 M:      Vitaly Bordug <vitb@kernel.crashing.org>
9399 W:      http://www.penguinppc.org/
9400 L:      linuxppc-dev@lists.ozlabs.org
9401 S:      Maintained
9402 F:      arch/powerpc/platforms/8xx/
9403
9404 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
9405 L:      linuxppc-dev@lists.ozlabs.org
9406 S:      Orphan
9407 F:      arch/powerpc/*/*virtex*
9408 F:      arch/powerpc/*/*/*virtex*
9409
9410 LINUX FOR POWERPC PA SEMI PWRFICIENT
9411 L:      linuxppc-dev@lists.ozlabs.org
9412 S:      Orphan
9413 F:      arch/powerpc/platforms/pasemi/
9414 F:      drivers/*/*pasemi*
9415 F:      drivers/*/*/*pasemi*
9416
9417 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9418 M:      Kees Cook <keescook@chromium.org>
9419 S:      Maintained
9420 F:      drivers/misc/lkdtm/*
9421
9422 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9423 M:      Alan Stern <stern@rowland.harvard.edu>
9424 M:      Andrea Parri <parri.andrea@gmail.com>
9425 M:      Will Deacon <will@kernel.org>
9426 M:      Peter Zijlstra <peterz@infradead.org>
9427 M:      Boqun Feng <boqun.feng@gmail.com>
9428 M:      Nicholas Piggin <npiggin@gmail.com>
9429 M:      David Howells <dhowells@redhat.com>
9430 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9431 M:      Luc Maranget <luc.maranget@inria.fr>
9432 M:      "Paul E. McKenney" <paulmck@kernel.org>
9433 R:      Akira Yokosawa <akiyks@gmail.com>
9434 R:      Daniel Lustig <dlustig@nvidia.com>
9435 L:      linux-kernel@vger.kernel.org
9436 L:      linux-arch@vger.kernel.org
9437 S:      Supported
9438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9439 F:      tools/memory-model/
9440 F:      Documentation/atomic_bitops.txt
9441 F:      Documentation/atomic_t.txt
9442 F:      Documentation/core-api/atomic_ops.rst
9443 F:      Documentation/core-api/refcount-vs-atomic.rst
9444 F:      Documentation/memory-barriers.txt
9445
9446 LIS3LV02D ACCELEROMETER DRIVER
9447 M:      Eric Piel <eric.piel@tremplin-utc.net>
9448 S:      Maintained
9449 F:      Documentation/misc-devices/lis3lv02d.rst
9450 F:      drivers/misc/lis3lv02d/
9451 F:      drivers/platform/x86/hp_accel.c
9452
9453 LIVE PATCHING
9454 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9455 M:      Jiri Kosina <jikos@kernel.org>
9456 M:      Miroslav Benes <mbenes@suse.cz>
9457 M:      Petr Mladek <pmladek@suse.com>
9458 R:      Joe Lawrence <joe.lawrence@redhat.com>
9459 S:      Maintained
9460 F:      kernel/livepatch/
9461 F:      include/linux/livepatch.h
9462 F:      arch/x86/include/asm/livepatch.h
9463 F:      arch/x86/kernel/livepatch.c
9464 F:      Documentation/livepatch/
9465 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9466 F:      samples/livepatch/
9467 F:      tools/testing/selftests/livepatch/
9468 L:      live-patching@vger.kernel.org
9469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9470
9471 LLC (802.2)
9472 L:      netdev@vger.kernel.org
9473 S:      Odd fixes
9474 F:      include/linux/llc.h
9475 F:      include/uapi/linux/llc.h
9476 F:      include/net/llc*
9477 F:      net/llc/
9478
9479 LM73 HARDWARE MONITOR DRIVER
9480 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
9481 L:      linux-hwmon@vger.kernel.org
9482 S:      Maintained
9483 F:      drivers/hwmon/lm73.c
9484
9485 LM78 HARDWARE MONITOR DRIVER
9486 M:      Jean Delvare <jdelvare@suse.com>
9487 L:      linux-hwmon@vger.kernel.org
9488 S:      Maintained
9489 F:      Documentation/hwmon/lm78.rst
9490 F:      drivers/hwmon/lm78.c
9491
9492 LM83 HARDWARE MONITOR DRIVER
9493 M:      Jean Delvare <jdelvare@suse.com>
9494 L:      linux-hwmon@vger.kernel.org
9495 S:      Maintained
9496 F:      Documentation/hwmon/lm83.rst
9497 F:      drivers/hwmon/lm83.c
9498
9499 LM90 HARDWARE MONITOR DRIVER
9500 M:      Jean Delvare <jdelvare@suse.com>
9501 L:      linux-hwmon@vger.kernel.org
9502 S:      Maintained
9503 F:      Documentation/hwmon/lm90.rst
9504 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9505 F:      drivers/hwmon/lm90.c
9506 F:      include/dt-bindings/thermal/lm90.h
9507
9508 LM95234 HARDWARE MONITOR DRIVER
9509 M:      Guenter Roeck <linux@roeck-us.net>
9510 L:      linux-hwmon@vger.kernel.org
9511 S:      Maintained
9512 F:      Documentation/hwmon/lm95234.rst
9513 F:      drivers/hwmon/lm95234.c
9514
9515 LME2510 MEDIA DRIVER
9516 M:      Malcolm Priestley <tvboxspy@gmail.com>
9517 L:      linux-media@vger.kernel.org
9518 W:      https://linuxtv.org
9519 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9520 S:      Maintained
9521 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9522
9523 LOADPIN SECURITY MODULE
9524 M:      Kees Cook <keescook@chromium.org>
9525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9526 S:      Supported
9527 F:      security/loadpin/
9528 F:      Documentation/admin-guide/LSM/LoadPin.rst
9529
9530 LOCKING PRIMITIVES
9531 M:      Peter Zijlstra <peterz@infradead.org>
9532 M:      Ingo Molnar <mingo@redhat.com>
9533 M:      Will Deacon <will@kernel.org>
9534 L:      linux-kernel@vger.kernel.org
9535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9536 S:      Maintained
9537 F:      Documentation/locking/
9538 F:      include/linux/lockdep.h
9539 F:      include/linux/spinlock*.h
9540 F:      arch/*/include/asm/spinlock*.h
9541 F:      include/linux/rwlock*.h
9542 F:      include/linux/mutex*.h
9543 F:      include/linux/rwsem*.h
9544 F:      include/linux/seqlock.h
9545 F:      lib/locking*.[ch]
9546 F:      kernel/locking/
9547 X:      kernel/locking/locktorture.c
9548
9549 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9550 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
9551 L:      linux-ntfs-dev@lists.sourceforge.net
9552 W:      http://www.linux-ntfs.org/content/view/19/37/
9553 S:      Maintained
9554 F:      Documentation/admin-guide/ldm.rst
9555 F:      block/partitions/ldm.*
9556
9557 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9558 M:      Sathya Prakash <sathya.prakash@broadcom.com>
9559 M:      Chaitra P B <chaitra.basappa@broadcom.com>
9560 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
9561 L:      MPT-FusionLinux.pdl@broadcom.com
9562 L:      linux-scsi@vger.kernel.org
9563 W:      http://www.avagotech.com/support/
9564 S:      Supported
9565 F:      drivers/message/fusion/
9566 F:      drivers/scsi/mpt3sas/
9567
9568 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9569 M:      Matthew Wilcox <willy@infradead.org>
9570 L:      linux-scsi@vger.kernel.org
9571 S:      Maintained
9572 F:      drivers/scsi/sym53c8xx_2/
9573
9574 LTC1660 DAC DRIVER
9575 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9576 L:      linux-iio@vger.kernel.org
9577 S:      Maintained
9578 F:      Documentation/devicetree/bindings/iio/dac/ltc1660.txt
9579 F:      drivers/iio/dac/ltc1660.c
9580
9581 LTC4261 HARDWARE MONITOR DRIVER
9582 M:      Guenter Roeck <linux@roeck-us.net>
9583 L:      linux-hwmon@vger.kernel.org
9584 S:      Maintained
9585 F:      Documentation/hwmon/ltc4261.rst
9586 F:      drivers/hwmon/ltc4261.c
9587
9588 LTC4306 I2C MULTIPLEXER DRIVER
9589 M:      Michael Hennerich <michael.hennerich@analog.com>
9590 W:      http://ez.analog.com/community/linux-device-drivers
9591 L:      linux-i2c@vger.kernel.org
9592 S:      Supported
9593 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9594 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9595
9596 LTP (Linux Test Project)
9597 M:      Mike Frysinger <vapier@gentoo.org>
9598 M:      Cyril Hrubis <chrubis@suse.cz>
9599 M:      Wanlong Gao <wanlong.gao@gmail.com>
9600 M:      Jan Stancek <jstancek@redhat.com>
9601 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
9602 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
9603 L:      ltp@lists.linux.it (subscribers-only)
9604 W:      http://linux-test-project.github.io/
9605 T:      git git://github.com/linux-test-project/ltp.git
9606 S:      Maintained
9607
9608 M68K ARCHITECTURE
9609 M:      Geert Uytterhoeven <geert@linux-m68k.org>
9610 L:      linux-m68k@lists.linux-m68k.org
9611 W:      http://www.linux-m68k.org/
9612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9613 S:      Maintained
9614 F:      arch/m68k/
9615 F:      drivers/zorro/
9616
9617 M68K ON APPLE MACINTOSH
9618 M:      Joshua Thompson <funaho@jurai.org>
9619 W:      http://www.mac.linux-m68k.org/
9620 L:      linux-m68k@lists.linux-m68k.org
9621 S:      Maintained
9622 F:      arch/m68k/mac/
9623
9624 M68K ON HP9000/300
9625 M:      Philip Blundell <philb@gnu.org>
9626 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
9627 S:      Maintained
9628 F:      arch/m68k/hp300/
9629
9630 M88DS3103 MEDIA DRIVER
9631 M:      Antti Palosaari <crope@iki.fi>
9632 L:      linux-media@vger.kernel.org
9633 W:      https://linuxtv.org
9634 W:      http://palosaari.fi/linux/
9635 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9636 T:      git git://linuxtv.org/anttip/media_tree.git
9637 S:      Maintained
9638 F:      drivers/media/dvb-frontends/m88ds3103*
9639
9640 M88RS2000 MEDIA DRIVER
9641 M:      Malcolm Priestley <tvboxspy@gmail.com>
9642 L:      linux-media@vger.kernel.org
9643 W:      https://linuxtv.org
9644 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9645 S:      Maintained
9646 F:      drivers/media/dvb-frontends/m88rs2000*
9647
9648 MA901 MASTERKIT USB FM RADIO DRIVER
9649 M:      Alexey Klimov <klimov.linux@gmail.com>
9650 L:      linux-media@vger.kernel.org
9651 T:      git git://linuxtv.org/media_tree.git
9652 S:      Maintained
9653 F:      drivers/media/radio/radio-ma901.c
9654
9655 MAC80211
9656 M:      Johannes Berg <johannes@sipsolutions.net>
9657 L:      linux-wireless@vger.kernel.org
9658 W:      http://wireless.kernel.org/
9659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9661 S:      Maintained
9662 F:      Documentation/networking/mac80211-injection.txt
9663 F:      include/net/mac80211.h
9664 F:      net/mac80211/
9665 F:      drivers/net/wireless/mac80211_hwsim.[ch]
9666 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
9667
9668 MAILBOX API
9669 M:      Jassi Brar <jassisinghbrar@gmail.com>
9670 L:      linux-kernel@vger.kernel.org
9671 S:      Maintained
9672 F:      drivers/mailbox/
9673 F:      include/linux/mailbox_client.h
9674 F:      include/linux/mailbox_controller.h
9675
9676 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
9677 M:      Michael Kerrisk <mtk.manpages@gmail.com>
9678 W:      http://www.kernel.org/doc/man-pages
9679 L:      linux-man@vger.kernel.org
9680 S:      Maintained
9681
9682 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
9683 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
9684 L:      linux-mips@vger.kernel.org
9685 S:      Maintained
9686 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
9687
9688 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
9689 M:      Andrew Lunn <andrew@lunn.ch>
9690 M:      Vivien Didelot <vivien.didelot@gmail.com>
9691 L:      netdev@vger.kernel.org
9692 S:      Maintained
9693 F:      drivers/net/dsa/mv88e6xxx/
9694 F:      include/linux/platform_data/mv88e6xxx.h
9695 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
9696
9697 MARVELL ARMADA DRM SUPPORT
9698 M:      Russell King <linux@armlinux.org.uk>
9699 S:      Maintained
9700 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
9701 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
9702 F:      drivers/gpu/drm/armada/
9703 F:      include/uapi/drm/armada_drm.h
9704 F:      Documentation/devicetree/bindings/display/armada/
9705
9706 MARVELL ARMADA 3700 PHY DRIVERS
9707 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9708 S:      Maintained
9709 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
9710 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
9711 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
9712 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
9713
9714 MARVELL CRYPTO DRIVER
9715 M:      Boris Brezillon <bbrezillon@kernel.org>
9716 M:      Arnaud Ebalard <arno@natisbad.org>
9717 F:      drivers/crypto/marvell/
9718 S:      Maintained
9719 L:      linux-crypto@vger.kernel.org
9720
9721 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
9722 M:      Mirko Lindner <mlindner@marvell.com>
9723 M:      Stephen Hemminger <stephen@networkplumber.org>
9724 L:      netdev@vger.kernel.org
9725 S:      Maintained
9726 F:      drivers/net/ethernet/marvell/sk*
9727
9728 MARVELL LIBERTAS WIRELESS DRIVER
9729 L:      libertas-dev@lists.infradead.org
9730 S:      Orphan
9731 F:      drivers/net/wireless/marvell/libertas/
9732
9733 MARVELL MACCHIATOBIN SUPPORT
9734 M:      Russell King <linux@armlinux.org.uk>
9735 L:      linux-arm-kernel@lists.infradead.org
9736 S:      Maintained
9737 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
9738
9739 MARVELL MV643XX ETHERNET DRIVER
9740 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
9741 L:      netdev@vger.kernel.org
9742 S:      Maintained
9743 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
9744 F:      include/linux/mv643xx.h
9745
9746 MARVELL MV88X3310 PHY DRIVER
9747 M:      Russell King <linux@armlinux.org.uk>
9748 L:      netdev@vger.kernel.org
9749 S:      Maintained
9750 F:      drivers/net/phy/marvell10g.c
9751
9752 MARVELL MVEBU THERMAL DRIVER
9753 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9754 S:      Maintained
9755 F:      drivers/thermal/armada_thermal.c
9756
9757 MARVELL MVNETA ETHERNET DRIVER
9758 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
9759 L:      netdev@vger.kernel.org
9760 S:      Maintained
9761 F:      drivers/net/ethernet/marvell/mvneta.*
9762
9763 MARVELL MWIFIEX WIRELESS DRIVER
9764 M:      Amitkumar Karwar <amitkarwar@gmail.com>
9765 M:      Nishant Sarmukadam <nishants@marvell.com>
9766 M:      Ganapathi Bhat <gbhat@marvell.com>
9767 M:      Xinming Hu <huxinming820@gmail.com>
9768 L:      linux-wireless@vger.kernel.org
9769 S:      Maintained
9770 F:      drivers/net/wireless/marvell/mwifiex/
9771
9772 MARVELL MWL8K WIRELESS DRIVER
9773 M:      Lennert Buytenhek <buytenh@wantstofly.org>
9774 L:      linux-wireless@vger.kernel.org
9775 S:      Odd Fixes
9776 F:      drivers/net/wireless/marvell/mwl8k.c
9777
9778 MARVELL NAND CONTROLLER DRIVER
9779 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9780 L:      linux-mtd@lists.infradead.org
9781 S:      Maintained
9782 F:      drivers/mtd/nand/raw/marvell_nand.c
9783 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
9784
9785 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
9786 M:      Nicolas Pitre <nico@fluxnic.net>
9787 S:      Odd Fixes
9788 F:      drivers/mmc/host/mvsdio.*
9789
9790 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
9791 M:      Hu Ziji <huziji@marvell.com>
9792 L:      linux-mmc@vger.kernel.org
9793 S:      Supported
9794 F:      drivers/mmc/host/sdhci-xenon*
9795 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
9796
9797 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
9798 M:      Sunil Goutham <sgoutham@marvell.com>
9799 M:      Linu Cherian <lcherian@marvell.com>
9800 M:      Geetha sowjanya <gakula@marvell.com>
9801 M:      Jerin Jacob <jerinj@marvell.com>
9802 L:      netdev@vger.kernel.org
9803 S:      Supported
9804 F:      drivers/net/ethernet/marvell/octeontx2/af/
9805
9806 MATROX FRAMEBUFFER DRIVER
9807 L:      linux-fbdev@vger.kernel.org
9808 S:      Orphan
9809 F:      drivers/video/fbdev/matrox/matroxfb_*
9810 F:      include/uapi/linux/matroxfb.h
9811
9812 MAX16065 HARDWARE MONITOR DRIVER
9813 M:      Guenter Roeck <linux@roeck-us.net>
9814 L:      linux-hwmon@vger.kernel.org
9815 S:      Maintained
9816 F:      Documentation/hwmon/max16065.rst
9817 F:      drivers/hwmon/max16065.c
9818
9819 MAX2175 SDR TUNER DRIVER
9820 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
9821 L:      linux-media@vger.kernel.org
9822 T:      git git://linuxtv.org/media_tree.git
9823 S:      Maintained
9824 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
9825 F:      Documentation/media/v4l-drivers/max2175.rst
9826 F:      drivers/media/i2c/max2175*
9827 F:      include/uapi/linux/max2175.h
9828
9829 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
9830 L:      linux-hwmon@vger.kernel.org
9831 S:      Orphan
9832 F:      Documentation/hwmon/max6650.rst
9833 F:      drivers/hwmon/max6650.c
9834
9835 MAX6697 HARDWARE MONITOR DRIVER
9836 M:      Guenter Roeck <linux@roeck-us.net>
9837 L:      linux-hwmon@vger.kernel.org
9838 S:      Maintained
9839 F:      Documentation/hwmon/max6697.rst
9840 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
9841 F:      drivers/hwmon/max6697.c
9842 F:      include/linux/platform_data/max6697.h
9843
9844 MAX9860 MONO AUDIO VOICE CODEC DRIVER
9845 M:      Peter Rosin <peda@axentia.se>
9846 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9847 S:      Maintained
9848 F:      Documentation/devicetree/bindings/sound/max9860.txt
9849 F:      sound/soc/codecs/max9860.*
9850
9851 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
9852 M:      Andreas Klinger <ak@it-klinger.de>
9853 L:      linux-iio@vger.kernel.org
9854 S:      Maintained
9855 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.txt
9856 F:      drivers/iio/proximity/mb1232.c
9857
9858 MAXIM MAX77650 PMIC MFD DRIVER
9859 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
9860 L:      linux-kernel@vger.kernel.org
9861 S:      Maintained
9862 F:      Documentation/devicetree/bindings/*/*max77650.txt
9863 F:      Documentation/devicetree/bindings/*/max77650*.txt
9864 F:      include/linux/mfd/max77650.h
9865 F:      drivers/mfd/max77650.c
9866 F:      drivers/regulator/max77650-regulator.c
9867 F:      drivers/power/supply/max77650-charger.c
9868 F:      drivers/input/misc/max77650-onkey.c
9869 F:      drivers/leds/leds-max77650.c
9870 F:      drivers/gpio/gpio-max77650.c
9871
9872 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
9873 M:      Javier Martinez Canillas <javier@dowhile0.org>
9874 L:      linux-kernel@vger.kernel.org
9875 S:      Supported
9876 F:      drivers/regulator/max77802-regulator.c
9877 F:      Documentation/devicetree/bindings/*/*max77802.txt
9878 F:      include/dt-bindings/*/*max77802.h
9879
9880 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
9881 M:      Krzysztof Kozlowski <krzk@kernel.org>
9882 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9883 L:      linux-pm@vger.kernel.org
9884 S:      Supported
9885 F:      drivers/power/supply/max14577_charger.c
9886 F:      drivers/power/supply/max77693_charger.c
9887
9888 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
9889 M:      Chanwoo Choi <cw00.choi@samsung.com>
9890 M:      Krzysztof Kozlowski <krzk@kernel.org>
9891 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9892 L:      linux-kernel@vger.kernel.org
9893 S:      Supported
9894 F:      drivers/*/max14577*.c
9895 F:      drivers/*/max77686*.c
9896 F:      drivers/*/max77693*.c
9897 F:      drivers/extcon/extcon-max14577.c
9898 F:      drivers/extcon/extcon-max77693.c
9899 F:      drivers/rtc/rtc-max77686.c
9900 F:      drivers/clk/clk-max77686.c
9901 F:      Documentation/devicetree/bindings/mfd/max14577.txt
9902 F:      Documentation/devicetree/bindings/*/max77686.txt
9903 F:      Documentation/devicetree/bindings/mfd/max77693.txt
9904 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
9905 F:      include/linux/mfd/max14577*.h
9906 F:      include/linux/mfd/max77686*.h
9907 F:      include/linux/mfd/max77693*.h
9908
9909 MAXIRADIO FM RADIO RECEIVER DRIVER
9910 M:      Hans Verkuil <hverkuil@xs4all.nl>
9911 L:      linux-media@vger.kernel.org
9912 T:      git git://linuxtv.org/media_tree.git
9913 W:      https://linuxtv.org
9914 S:      Maintained
9915 F:      drivers/media/radio/radio-maxiradio*
9916
9917 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
9918 M:      Peter Rosin <peda@axentia.se>
9919 L:      linux-iio@vger.kernel.org
9920 S:      Maintained
9921 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
9922 F:      drivers/iio/potentiometer/mcp4018.c
9923 F:      drivers/iio/potentiometer/mcp4531.c
9924
9925 MCR20A IEEE-802.15.4 RADIO DRIVER
9926 M:      Xue Liu <liuxuenetmail@gmail.com>
9927 L:      linux-wpan@vger.kernel.org
9928 W:      https://github.com/xueliu/mcr20a-linux
9929 S:      Maintained
9930 F:      drivers/net/ieee802154/mcr20a.c
9931 F:      drivers/net/ieee802154/mcr20a.h
9932 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
9933
9934 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
9935 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9936 L:      linux-iio@vger.kernel.org
9937 S:      Maintained
9938 F:      drivers/iio/dac/cio-dac.c
9939
9940 MEDIA CONTROLLER FRAMEWORK
9941 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9942 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9943 L:      linux-media@vger.kernel.org
9944 W:      https://www.linuxtv.org
9945 T:      git git://linuxtv.org/media_tree.git
9946 S:      Supported
9947 F:      drivers/media/mc/
9948 F:      include/media/media-*.h
9949 F:      include/uapi/linux/media.h
9950
9951 MEDIA DRIVERS FOR ASCOT2E
9952 M:      Sergey Kozlov <serjk@netup.ru>
9953 M:      Abylay Ospan <aospan@netup.ru>
9954 L:      linux-media@vger.kernel.org
9955 W:      https://linuxtv.org
9956 W:      http://netup.tv/
9957 T:      git git://linuxtv.org/media_tree.git
9958 S:      Supported
9959 F:      drivers/media/dvb-frontends/ascot2e*
9960
9961 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
9962 M:      Jasmin Jessich <jasmin@anw.at>
9963 L:      linux-media@vger.kernel.org
9964 W:      https://linuxtv.org
9965 T:      git git://linuxtv.org/media_tree.git
9966 S:      Maintained
9967 F:      drivers/media/dvb-frontends/cxd2099*
9968
9969 MEDIA DRIVERS FOR CXD2841ER
9970 M:      Sergey Kozlov <serjk@netup.ru>
9971 M:      Abylay Ospan <aospan@netup.ru>
9972 L:      linux-media@vger.kernel.org
9973 W:      https://linuxtv.org
9974 W:      http://netup.tv/
9975 T:      git git://linuxtv.org/media_tree.git
9976 S:      Supported
9977 F:      drivers/media/dvb-frontends/cxd2841er*
9978
9979 MEDIA DRIVERS FOR CXD2880
9980 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
9981 L:      linux-media@vger.kernel.org
9982 W:      http://linuxtv.org/
9983 T:      git git://linuxtv.org/media_tree.git
9984 S:      Supported
9985 F:      drivers/media/dvb-frontends/cxd2880/*
9986 F:      drivers/media/spi/cxd2880*
9987
9988 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
9989 L:      linux-media@vger.kernel.org
9990 W:      https://linuxtv.org
9991 T:      git git://linuxtv.org/media_tree.git
9992 S:      Orphan
9993 F:      drivers/media/pci/ddbridge/*
9994
9995 MEDIA DRIVERS FOR FREESCALE IMX
9996 M:      Steve Longerbeam <slongerbeam@gmail.com>
9997 M:      Philipp Zabel <p.zabel@pengutronix.de>
9998 L:      linux-media@vger.kernel.org
9999 T:      git git://linuxtv.org/media_tree.git
10000 S:      Maintained
10001 F:      Documentation/devicetree/bindings/media/imx.txt
10002 F:      Documentation/media/v4l-drivers/imx.rst
10003 F:      drivers/staging/media/imx/
10004 F:      include/linux/imx-media.h
10005 F:      include/media/imx.h
10006
10007 MEDIA DRIVER FOR FREESCALE IMX PXP
10008 M:      Philipp Zabel <p.zabel@pengutronix.de>
10009 L:      linux-media@vger.kernel.org
10010 T:      git git://linuxtv.org/media_tree.git
10011 S:      Maintained
10012 F:      drivers/media/platform/imx-pxp.[ch]
10013
10014 MEDIA DRIVERS FOR FREESCALE IMX7
10015 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10016 L:      linux-media@vger.kernel.org
10017 T:      git git://linuxtv.org/media_tree.git
10018 S:      Maintained
10019 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10020 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10021 F:      Documentation/media/v4l-drivers/imx7.rst
10022 F:      drivers/staging/media/imx/imx7-media-csi.c
10023 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10024
10025 MEDIA DRIVERS FOR HELENE
10026 M:      Abylay Ospan <aospan@netup.ru>
10027 L:      linux-media@vger.kernel.org
10028 W:      https://linuxtv.org
10029 W:      http://netup.tv/
10030 T:      git git://linuxtv.org/media_tree.git
10031 S:      Supported
10032 F:      drivers/media/dvb-frontends/helene*
10033
10034 MEDIA DRIVERS FOR HORUS3A
10035 M:      Sergey Kozlov <serjk@netup.ru>
10036 M:      Abylay Ospan <aospan@netup.ru>
10037 L:      linux-media@vger.kernel.org
10038 W:      https://linuxtv.org
10039 W:      http://netup.tv/
10040 T:      git git://linuxtv.org/media_tree.git
10041 S:      Supported
10042 F:      drivers/media/dvb-frontends/horus3a*
10043
10044 MEDIA DRIVERS FOR LNBH25
10045 M:      Sergey Kozlov <serjk@netup.ru>
10046 M:      Abylay Ospan <aospan@netup.ru>
10047 L:      linux-media@vger.kernel.org
10048 W:      https://linuxtv.org
10049 W:      http://netup.tv/
10050 T:      git git://linuxtv.org/media_tree.git
10051 S:      Supported
10052 F:      drivers/media/dvb-frontends/lnbh25*
10053
10054 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10055 L:      linux-media@vger.kernel.org
10056 W:      https://linuxtv.org
10057 T:      git git://linuxtv.org/media_tree.git
10058 S:      Orphan
10059 F:      drivers/media/dvb-frontends/mxl5xx*
10060
10061 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10062 M:      Sergey Kozlov <serjk@netup.ru>
10063 M:      Abylay Ospan <aospan@netup.ru>
10064 L:      linux-media@vger.kernel.org
10065 W:      https://linuxtv.org
10066 W:      http://netup.tv/
10067 T:      git git://linuxtv.org/media_tree.git
10068 S:      Supported
10069 F:      drivers/media/pci/netup_unidvb/*
10070
10071 MEDIA DRIVERS FOR RENESAS - CEU
10072 M:      Jacopo Mondi <jacopo@jmondi.org>
10073 L:      linux-media@vger.kernel.org
10074 L:      linux-renesas-soc@vger.kernel.org
10075 T:      git git://linuxtv.org/media_tree.git
10076 S:      Supported
10077 F:      Documentation/devicetree/bindings/media/renesas,ceu.txt
10078 F:      drivers/media/platform/renesas-ceu.c
10079 F:      include/media/drv-intf/renesas-ceu.h
10080
10081 MEDIA DRIVERS FOR RENESAS - DRIF
10082 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
10083 L:      linux-media@vger.kernel.org
10084 L:      linux-renesas-soc@vger.kernel.org
10085 T:      git git://linuxtv.org/media_tree.git
10086 S:      Supported
10087 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10088 F:      drivers/media/platform/rcar_drif.c
10089
10090 MEDIA DRIVERS FOR RENESAS - FCP
10091 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10092 L:      linux-media@vger.kernel.org
10093 L:      linux-renesas-soc@vger.kernel.org
10094 T:      git git://linuxtv.org/media_tree.git
10095 S:      Supported
10096 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10097 F:      drivers/media/platform/rcar-fcp.c
10098 F:      include/media/rcar-fcp.h
10099
10100 MEDIA DRIVERS FOR RENESAS - FDP1
10101 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10102 L:      linux-media@vger.kernel.org
10103 L:      linux-renesas-soc@vger.kernel.org
10104 T:      git git://linuxtv.org/media_tree.git
10105 S:      Supported
10106 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10107 F:      drivers/media/platform/rcar_fdp1.c
10108
10109 MEDIA DRIVERS FOR RENESAS - VIN
10110 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10111 L:      linux-media@vger.kernel.org
10112 L:      linux-renesas-soc@vger.kernel.org
10113 T:      git git://linuxtv.org/media_tree.git
10114 S:      Supported
10115 F:      Documentation/devicetree/bindings/media/renesas,csi2.txt
10116 F:      Documentation/devicetree/bindings/media/renesas,vin.txt
10117 F:      drivers/media/platform/rcar-vin/
10118
10119 MEDIA DRIVERS FOR RENESAS - VSP1
10120 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10121 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10122 L:      linux-media@vger.kernel.org
10123 L:      linux-renesas-soc@vger.kernel.org
10124 T:      git git://linuxtv.org/media_tree.git
10125 S:      Supported
10126 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10127 F:      drivers/media/platform/vsp1/
10128
10129 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10130 L:      linux-media@vger.kernel.org
10131 W:      https://linuxtv.org
10132 T:      git git://linuxtv.org/media_tree.git
10133 S:      Orphan
10134 F:      drivers/media/dvb-frontends/stv0910*
10135
10136 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10137 L:      linux-media@vger.kernel.org
10138 W:      https://linuxtv.org
10139 T:      git git://linuxtv.org/media_tree.git
10140 S:      Orphan
10141 F:      drivers/media/dvb-frontends/stv6111*
10142
10143 MEDIA DRIVERS FOR STM32 - DCMI
10144 M:      Hugues Fruchet <hugues.fruchet@st.com>
10145 L:      linux-media@vger.kernel.org
10146 T:      git git://linuxtv.org/media_tree.git
10147 S:      Supported
10148 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.txt
10149 F:      drivers/media/platform/stm32/stm32-dcmi.c
10150
10151 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10152 M:      Dmitry Osipenko <digetx@gmail.com>
10153 L:      linux-media@vger.kernel.org
10154 L:      linux-tegra@vger.kernel.org
10155 T:      git git://linuxtv.org/media_tree.git
10156 S:      Maintained
10157 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10158 F:      drivers/staging/media/tegra-vde/
10159
10160 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10161 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10162 P:      LinuxTV.org Project
10163 L:      linux-media@vger.kernel.org
10164 W:      https://linuxtv.org
10165 Q:      http://patchwork.kernel.org/project/linux-media/list/
10166 T:      git git://linuxtv.org/media_tree.git
10167 S:      Maintained
10168 F:      Documentation/devicetree/bindings/media/
10169 F:      Documentation/media/
10170 F:      drivers/media/
10171 F:      drivers/staging/media/
10172 F:      include/linux/platform_data/media/
10173 F:      include/media/
10174 F:      include/uapi/linux/dvb/
10175 F:      include/uapi/linux/videodev2.h
10176 F:      include/uapi/linux/media.h
10177 F:      include/uapi/linux/v4l2-*
10178 F:      include/uapi/linux/meye.h
10179 F:      include/uapi/linux/ivtv*
10180 F:      include/uapi/linux/uvcvideo.h
10181
10182 MEDIATEK BLUETOOTH DRIVER
10183 M:      Sean Wang <sean.wang@mediatek.com>
10184 L:      linux-bluetooth@vger.kernel.org
10185 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10186 S:      Maintained
10187 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10188 F:      drivers/bluetooth/btmtkuart.c
10189
10190 MEDIATEK CIR DRIVER
10191 M:      Sean Wang <sean.wang@mediatek.com>
10192 S:      Maintained
10193 F:      drivers/media/rc/mtk-cir.c
10194
10195 MEDIATEK DMA DRIVER
10196 M:      Sean Wang <sean.wang@mediatek.com>
10197 L:      dmaengine@vger.kernel.org
10198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10199 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10200 S:      Maintained
10201 F:      Documentation/devicetree/bindings/dma/mtk-*
10202 F:      drivers/dma/mediatek/
10203
10204 MEDIATEK PMIC LED DRIVER
10205 M:      Sean Wang <sean.wang@mediatek.com>
10206 S:      Maintained
10207 F:      drivers/leds/leds-mt6323.c
10208 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10209
10210 MEDIATEK ETHERNET DRIVER
10211 M:      Felix Fietkau <nbd@openwrt.org>
10212 M:      John Crispin <john@phrozen.org>
10213 M:      Sean Wang <sean.wang@mediatek.com>
10214 M:      Nelson Chang <nelson.chang@mediatek.com>
10215 L:      netdev@vger.kernel.org
10216 S:      Maintained
10217 F:      drivers/net/ethernet/mediatek/
10218
10219 MEDIATEK SWITCH DRIVER
10220 M:      Sean Wang <sean.wang@mediatek.com>
10221 L:      netdev@vger.kernel.org
10222 S:      Maintained
10223 F:      drivers/net/dsa/mt7530.*
10224 F:      net/dsa/tag_mtk.c
10225
10226 MEDIATEK JPEG DRIVER
10227 M:      Rick Chang <rick.chang@mediatek.com>
10228 M:      Bin Liu <bin.liu@mediatek.com>
10229 S:      Supported
10230 F:      drivers/media/platform/mtk-jpeg/
10231 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10232
10233 MEDIATEK MDP DRIVER
10234 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10235 M:      Houlong Wei <houlong.wei@mediatek.com>
10236 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10237 S:      Supported
10238 F:      drivers/media/platform/mtk-mdp/
10239 F:      drivers/media/platform/mtk-vpu/
10240 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10241
10242 MEDIATEK MEDIA DRIVER
10243 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10244 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10245 S:      Supported
10246 F:      drivers/media/platform/mtk-vcodec/
10247 F:      drivers/media/platform/mtk-vpu/
10248 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10249 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10250
10251 MEDIATEK MMC/SD/SDIO DRIVER
10252 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10253 S:      Maintained
10254 F:      drivers/mmc/host/mtk-sd.c
10255 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10256
10257 MEDIATEK MT76 WIRELESS LAN DRIVER
10258 M:      Felix Fietkau <nbd@nbd.name>
10259 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10260 R:      Ryder Lee <ryder.lee@mediatek.com>
10261 R:      Roy Luo <royluo@google.com>
10262 L:      linux-wireless@vger.kernel.org
10263 S:      Maintained
10264 F:      drivers/net/wireless/mediatek/mt76/
10265
10266 MEDIATEK MT7601U WIRELESS LAN DRIVER
10267 M:      Jakub Kicinski <kubakici@wp.pl>
10268 L:      linux-wireless@vger.kernel.org
10269 S:      Maintained
10270 F:      drivers/net/wireless/mediatek/mt7601u/
10271
10272 MEDIATEK MT7621/28/88 I2C DRIVER
10273 M:      Stefan Roese <sr@denx.de>
10274 L:      linux-i2c@vger.kernel.org
10275 S:      Maintained
10276 F:      drivers/i2c/busses/i2c-mt7621.c
10277 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10278
10279 MEDIATEK NAND CONTROLLER DRIVER
10280 M:      Xiaolei Li <xiaolei.li@mediatek.com>
10281 L:      linux-mtd@lists.infradead.org
10282 S:      Maintained
10283 F:      drivers/mtd/nand/raw/mtk_*
10284 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10285
10286 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10287 M:      Sean Wang <sean.wang@mediatek.com>
10288 S:      Maintained
10289 F:      drivers/char/hw_random/mtk-rng.c
10290
10291 MEDIATEK USB3 DRD IP DRIVER
10292 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10293 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10294 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10295 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10296 S:      Maintained
10297 F:      drivers/usb/mtu3/
10298
10299 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10300 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10301 M:      Martin Donnelly <martin.donnelly@ge.com>
10302 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10303 S:      Maintained
10304 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10305 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10306
10307 MEGARAID SCSI/SAS DRIVERS
10308 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10309 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10310 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10311 L:      megaraidlinux.pdl@broadcom.com
10312 L:      linux-scsi@vger.kernel.org
10313 W:      http://www.avagotech.com/support/
10314 S:      Maintained
10315 F:      Documentation/scsi/megaraid.txt
10316 F:      drivers/scsi/megaraid.*
10317 F:      drivers/scsi/megaraid/
10318
10319 MELEXIS MLX90614 DRIVER
10320 M:      Crt Mori <cmo@melexis.com>
10321 L:      linux-iio@vger.kernel.org
10322 W:      http://www.melexis.com
10323 S:      Supported
10324 F:      drivers/iio/temperature/mlx90614.c
10325
10326 MELEXIS MLX90632 DRIVER
10327 M:      Crt Mori <cmo@melexis.com>
10328 L:      linux-iio@vger.kernel.org
10329 W:      http://www.melexis.com
10330 S:      Supported
10331 F:      drivers/iio/temperature/mlx90632.c
10332
10333 MELFAS MIP4 TOUCHSCREEN DRIVER
10334 M:      Sangwon Jee <jeesw@melfas.com>
10335 W:      http://www.melfas.com
10336 S:      Supported
10337 F:      drivers/input/touchscreen/melfas_mip4.c
10338 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10339
10340 MELLANOX ETHERNET DRIVER (mlx4_en)
10341 M:      Tariq Toukan <tariqt@mellanox.com>
10342 L:      netdev@vger.kernel.org
10343 S:      Supported
10344 W:      http://www.mellanox.com
10345 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10346 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10347
10348 MELLANOX ETHERNET DRIVER (mlx5e)
10349 M:      Saeed Mahameed <saeedm@mellanox.com>
10350 L:      netdev@vger.kernel.org
10351 S:      Supported
10352 W:      http://www.mellanox.com
10353 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10354 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10355
10356 MELLANOX ETHERNET INNOVA DRIVERS
10357 R:      Boris Pismenny <borisp@mellanox.com>
10358 L:      netdev@vger.kernel.org
10359 S:      Supported
10360 W:      http://www.mellanox.com
10361 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10362 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10363 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10364 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10365 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10366
10367 MELLANOX ETHERNET SWITCH DRIVERS
10368 M:      Jiri Pirko <jiri@mellanox.com>
10369 M:      Ido Schimmel <idosch@mellanox.com>
10370 L:      netdev@vger.kernel.org
10371 S:      Supported
10372 W:      http://www.mellanox.com
10373 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10374 F:      drivers/net/ethernet/mellanox/mlxsw/
10375 F:      tools/testing/selftests/drivers/net/mlxsw/
10376
10377 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10378 M:      mlxsw@mellanox.com
10379 L:      netdev@vger.kernel.org
10380 S:      Supported
10381 W:      http://www.mellanox.com
10382 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10383 F:      drivers/net/ethernet/mellanox/mlxfw/
10384
10385 MELLANOX HARDWARE PLATFORM SUPPORT
10386 M:      Andy Shevchenko <andy@infradead.org>
10387 M:      Darren Hart <dvhart@infradead.org>
10388 M:      Vadim Pasternak <vadimp@mellanox.com>
10389 L:      platform-driver-x86@vger.kernel.org
10390 S:      Supported
10391 F:      drivers/platform/mellanox/
10392 F:      include/linux/platform_data/mlxreg.h
10393
10394 MELLANOX MLX4 core VPI driver
10395 M:      Tariq Toukan <tariqt@mellanox.com>
10396 L:      netdev@vger.kernel.org
10397 L:      linux-rdma@vger.kernel.org
10398 W:      http://www.mellanox.com
10399 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10400 S:      Supported
10401 F:      drivers/net/ethernet/mellanox/mlx4/
10402 F:      include/linux/mlx4/
10403
10404 MELLANOX MLX4 IB driver
10405 M:      Yishai Hadas <yishaih@mellanox.com>
10406 L:      linux-rdma@vger.kernel.org
10407 W:      http://www.mellanox.com
10408 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10409 S:      Supported
10410 F:      drivers/infiniband/hw/mlx4/
10411 F:      include/linux/mlx4/
10412 F:      include/uapi/rdma/mlx4-abi.h
10413
10414 MELLANOX MLX5 core VPI driver
10415 M:      Saeed Mahameed <saeedm@mellanox.com>
10416 M:      Leon Romanovsky <leonro@mellanox.com>
10417 L:      netdev@vger.kernel.org
10418 L:      linux-rdma@vger.kernel.org
10419 W:      http://www.mellanox.com
10420 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10421 S:      Supported
10422 F:      drivers/net/ethernet/mellanox/mlx5/core/
10423 F:      include/linux/mlx5/
10424 F:      Documentation/networking/device_drivers/mellanox/
10425
10426 MELLANOX MLX5 IB driver
10427 M:      Leon Romanovsky <leonro@mellanox.com>
10428 L:      linux-rdma@vger.kernel.org
10429 W:      http://www.mellanox.com
10430 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10431 S:      Supported
10432 F:      drivers/infiniband/hw/mlx5/
10433 F:      include/linux/mlx5/
10434 F:      include/uapi/rdma/mlx5-abi.h
10435
10436 MELLANOX MLXCPLD I2C AND MUX DRIVER
10437 M:      Vadim Pasternak <vadimp@mellanox.com>
10438 M:      Michael Shych <michaelsh@mellanox.com>
10439 L:      linux-i2c@vger.kernel.org
10440 S:      Supported
10441 F:      drivers/i2c/busses/i2c-mlxcpld.c
10442 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10443 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10444
10445 MELLANOX MLXCPLD LED DRIVER
10446 M:      Vadim Pasternak <vadimp@mellanox.com>
10447 L:      linux-leds@vger.kernel.org
10448 S:      Supported
10449 F:      drivers/leds/leds-mlxcpld.c
10450 F:      drivers/leds/leds-mlxreg.c
10451 F:      Documentation/leds/leds-mlxcpld.rst
10452
10453 MELLANOX PLATFORM DRIVER
10454 M:      Vadim Pasternak <vadimp@mellanox.com>
10455 L:      platform-driver-x86@vger.kernel.org
10456 S:      Supported
10457 F:      drivers/platform/x86/mlx-platform.c
10458
10459 MEMBARRIER SUPPORT
10460 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10461 M:      "Paul E. McKenney" <paulmck@kernel.org>
10462 L:      linux-kernel@vger.kernel.org
10463 S:      Supported
10464 F:      kernel/sched/membarrier.c
10465 F:      include/uapi/linux/membarrier.h
10466 F:      arch/powerpc/include/asm/membarrier.h
10467
10468 MEMBLOCK
10469 M:      Mike Rapoport <rppt@linux.ibm.com>
10470 L:      linux-mm@kvack.org
10471 S:      Maintained
10472 F:      include/linux/memblock.h
10473 F:      mm/memblock.c
10474 F:      Documentation/core-api/boot-time-mm.rst
10475
10476 MEMORY MANAGEMENT
10477 L:      linux-mm@kvack.org
10478 W:      http://www.linux-mm.org
10479 S:      Maintained
10480 F:      include/linux/mm.h
10481 F:      include/linux/gfp.h
10482 F:      include/linux/mmzone.h
10483 F:      include/linux/memory_hotplug.h
10484 F:      include/linux/vmalloc.h
10485 F:      mm/
10486
10487 MEMORY TECHNOLOGY DEVICES (MTD)
10488 M:      David Woodhouse <dwmw2@infradead.org>
10489 M:      Brian Norris <computersforpeace@gmail.com>
10490 M:      Marek Vasut <marek.vasut@gmail.com>
10491 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10492 M:      Richard Weinberger <richard@nod.at>
10493 M:      Vignesh Raghavendra <vigneshr@ti.com>
10494 L:      linux-mtd@lists.infradead.org
10495 W:      http://www.linux-mtd.infradead.org/
10496 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10499 S:      Maintained
10500 F:      Documentation/devicetree/bindings/mtd/
10501 F:      drivers/mtd/
10502 F:      include/linux/mtd/
10503 F:      include/uapi/mtd/
10504
10505 MEN A21 WATCHDOG DRIVER
10506 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10507 L:      linux-watchdog@vger.kernel.org
10508 S:      Maintained
10509 F:      drivers/watchdog/mena21_wdt.c
10510
10511 MEN CHAMELEON BUS (mcb)
10512 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10513 S:      Maintained
10514 F:      drivers/mcb/
10515 F:      include/linux/mcb.h
10516 F:      Documentation/driver-api/men-chameleon-bus.rst
10517
10518 MEN F21BMC (Board Management Controller)
10519 M:      Andreas Werner <andreas.werner@men.de>
10520 S:      Supported
10521 F:      drivers/mfd/menf21bmc.c
10522 F:      drivers/watchdog/menf21bmc_wdt.c
10523 F:      drivers/leds/leds-menf21bmc.c
10524 F:      drivers/hwmon/menf21bmc_hwmon.c
10525 F:      Documentation/hwmon/menf21bmc.rst
10526
10527 MEN Z069 WATCHDOG DRIVER
10528 M:      Johannes Thumshirn <jth@kernel.org>
10529 L:      linux-watchdog@vger.kernel.org
10530 S:      Maintained
10531 F:      drivers/watchdog/menz69_wdt.c
10532
10533 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10534 M:      Neil Armstrong <narmstrong@baylibre.com>
10535 L:      linux-media@vger.kernel.org
10536 L:      linux-amlogic@lists.infradead.org
10537 W:      http://linux-meson.com/
10538 S:      Supported
10539 F:      drivers/media/platform/meson/ao-cec.c
10540 F:      drivers/media/platform/meson/ao-cec-g12a.c
10541 F:      Documentation/devicetree/bindings/media/meson-ao-cec.txt
10542 T:      git git://linuxtv.org/media_tree.git
10543
10544 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10545 M:      Liang Yang <liang.yang@amlogic.com>
10546 L:      linux-mtd@lists.infradead.org
10547 S:      Maintained
10548 F:      drivers/mtd/nand/raw/meson_*
10549 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10550
10551 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10552 M:      Maxime Jourdan <mjourdan@baylibre.com>
10553 L:      linux-media@vger.kernel.org
10554 L:      linux-amlogic@lists.infradead.org
10555 S:      Supported
10556 F:      drivers/staging/media/meson/vdec/
10557 T:      git git://linuxtv.org/media_tree.git
10558
10559 METHODE UDPU SUPPORT
10560 M:      Vladimir Vid <vladimir.vid@sartura.hr>
10561 S:      Maintained
10562 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10563
10564 MICROBLAZE ARCHITECTURE
10565 M:      Michal Simek <monstr@monstr.eu>
10566 W:      http://www.monstr.eu/fdt/
10567 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
10568 S:      Supported
10569 F:      arch/microblaze/
10570
10571 MICROCHIP AT91 SERIAL DRIVER
10572 M:      Richard Genoud <richard.genoud@gmail.com>
10573 S:      Maintained
10574 F:      drivers/tty/serial/atmel_serial.c
10575 F:      drivers/tty/serial/atmel_serial.h
10576 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10577
10578 MICROCHIP AUDIO ASOC DRIVERS
10579 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
10580 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10581 S:      Supported
10582 F:      sound/soc/atmel
10583
10584 MICROCHIP DMA DRIVER
10585 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10586 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10587 L:      dmaengine@vger.kernel.org
10588 S:      Supported
10589 F:      drivers/dma/at_hdmac.c
10590 F:      drivers/dma/at_hdmac_regs.h
10591 F:      include/linux/platform_data/dma-atmel.h
10592 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
10593 F:      include/dt-bindings/dma/at91.h
10594
10595 MICROCHIP ECC DRIVER
10596 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10597 L:      linux-crypto@vger.kernel.org
10598 S:      Maintained
10599 F:      drivers/crypto/atmel-ecc.*
10600
10601 MICROCHIP I2C DRIVER
10602 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10603 L:      linux-i2c@vger.kernel.org
10604 S:      Supported
10605 F:      drivers/i2c/busses/i2c-at91.h
10606 F:      drivers/i2c/busses/i2c-at91-*.c
10607
10608 MICROCHIP ISC DRIVER
10609 M:      Eugen Hristev <eugen.hristev@microchip.com>
10610 L:      linux-media@vger.kernel.org
10611 S:      Supported
10612 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
10613 F:      drivers/media/platform/atmel/atmel-isc.h
10614 F:      drivers/media/platform/atmel/atmel-isc-base.c
10615 F:      drivers/media/platform/atmel/atmel-isc-regs.h
10616 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
10617
10618 MICROCHIP ISI DRIVER
10619 M:      Eugen Hristev <eugen.hristev@microchip.com>
10620 L:      linux-media@vger.kernel.org
10621 S:      Supported
10622 F:      drivers/media/platform/atmel/atmel-isi.c
10623 F:      drivers/media/platform/atmel/atmel-isi.h
10624
10625 MICROCHIP AT91 USART MFD DRIVER
10626 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10627 L:      linux-kernel@vger.kernel.org
10628 S:      Supported
10629 F:      drivers/mfd/at91-usart.c
10630 F:      include/dt-bindings/mfd/at91-usart.h
10631 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10632
10633 MICROCHIP AT91 USART SPI DRIVER
10634 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10635 L:      linux-spi@vger.kernel.org
10636 S:      Supported
10637 F:      drivers/spi/spi-at91-usart.c
10638 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10639
10640 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
10641 M:      Woojung Huh <woojung.huh@microchip.com>
10642 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10643 L:      netdev@vger.kernel.org
10644 S:      Maintained
10645 F:      net/dsa/tag_ksz.c
10646 F:      drivers/net/dsa/microchip/*
10647 F:      include/linux/platform_data/microchip-ksz.h
10648 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
10649
10650 MICROCHIP LAN743X ETHERNET DRIVER
10651 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
10652 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10653 L:      netdev@vger.kernel.org
10654 S:      Maintained
10655 F:      drivers/net/ethernet/microchip/lan743x_*
10656
10657 MICROCHIP LCDFB DRIVER
10658 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10659 L:      linux-fbdev@vger.kernel.org
10660 S:      Maintained
10661 F:      drivers/video/fbdev/atmel_lcdfb.c
10662 F:      include/video/atmel_lcdc.h
10663
10664 MICROCHIP MMC/SD/SDIO MCI DRIVER
10665 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10666 S:      Maintained
10667 F:      drivers/mmc/host/atmel-mci.c
10668
10669 MICROCHIP MCP16502 PMIC DRIVER
10670 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
10671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10672 S:      Maintained
10673 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
10674 F:      drivers/regulator/mcp16502.c
10675
10676 MICROCHIP MCP3911 ADC DRIVER
10677 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10678 M:      Kent Gustavsson <kent@minoris.se>
10679 L:      linux-iio@vger.kernel.org
10680 S:      Supported
10681 F:      drivers/iio/adc/mcp3911.c
10682 F:      Documentation/devicetree/bindings/iio/adc/mcp3911.txt
10683
10684 MICROCHIP NAND DRIVER
10685 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10686 L:      linux-mtd@lists.infradead.org
10687 S:      Supported
10688 F:      drivers/mtd/nand/raw/atmel/*
10689 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
10690
10691 MICROCHIP PWM DRIVER
10692 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
10693 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10694 L:      linux-pwm@vger.kernel.org
10695 S:      Supported
10696 F:      drivers/pwm/pwm-atmel.c
10697 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
10698
10699 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
10700 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10701 M:      Eugen Hristev <eugen.hristev@microchip.com>
10702 L:      linux-iio@vger.kernel.org
10703 S:      Supported
10704 F:      drivers/iio/adc/at91-sama5d2_adc.c
10705 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
10706 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
10707
10708 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
10709 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10710 S:      Supported
10711 F:      drivers/power/reset/at91-sama5d2_shdwc.c
10712
10713 MICROCHIP SPI DRIVER
10714 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10715 S:      Supported
10716 F:      drivers/spi/spi-atmel.*
10717
10718 MICROCHIP SSC DRIVER
10719 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10721 S:      Supported
10722 F:      drivers/misc/atmel-ssc.c
10723 F:      include/linux/atmel-ssc.h
10724
10725 MICROCHIP USBA UDC DRIVER
10726 M:      Cristian Birsan <cristian.birsan@microchip.com>
10727 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10728 S:      Supported
10729 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
10730
10731 MICROCHIP USB251XB DRIVER
10732 M:      Richard Leitner <richard.leitner@skidata.com>
10733 L:      linux-usb@vger.kernel.org
10734 S:      Maintained
10735 F:      drivers/usb/misc/usb251xb.c
10736 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
10737
10738 MICROCHIP XDMA DRIVER
10739 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10740 L:      linux-arm-kernel@lists.infradead.org
10741 L:      dmaengine@vger.kernel.org
10742 S:      Supported
10743 F:      drivers/dma/at_xdmac.c
10744
10745 MICROSEMI MIPS SOCS
10746 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10747 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10748 L:      linux-mips@vger.kernel.org
10749 S:      Supported
10750 F:      arch/mips/generic/board-ocelot.c
10751 F:      arch/mips/configs/generic/board-ocelot.config
10752 F:      arch/mips/boot/dts/mscc/
10753 F:      Documentation/devicetree/bindings/mips/mscc.txt
10754
10755 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
10756 M:      Don Brace <don.brace@microsemi.com>
10757 L:      esc.storagedev@microsemi.com
10758 L:      linux-scsi@vger.kernel.org
10759 S:      Supported
10760 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
10761 F:      drivers/scsi/smartpqi/Kconfig
10762 F:      drivers/scsi/smartpqi/Makefile
10763 F:      include/linux/cciss*.h
10764 F:      include/uapi/linux/cciss*.h
10765 F:      Documentation/scsi/smartpqi.txt
10766
10767 MICROSEMI ETHERNET SWITCH DRIVER
10768 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10769 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10770 L:      netdev@vger.kernel.org
10771 S:      Supported
10772 F:      drivers/net/ethernet/mscc/
10773
10774 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
10775 M:      Chen Yu <yu.c.chen@intel.com>
10776 L:      platform-driver-x86@vger.kernel.org
10777 S:      Supported
10778 F:      drivers/platform/x86/surfacepro3_button.c
10779
10780 MICROTEK X6 SCANNER
10781 M:      Oliver Neukum <oliver@neukum.org>
10782 S:      Maintained
10783 F:      drivers/usb/image/microtek.*
10784
10785 MIPS
10786 M:      Ralf Baechle <ralf@linux-mips.org>
10787 M:      Paul Burton <paul.burton@mips.com>
10788 M:      James Hogan <jhogan@kernel.org>
10789 L:      linux-mips@vger.kernel.org
10790 W:      http://www.linux-mips.org/
10791 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
10792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
10793 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10794 S:      Supported
10795 F:      Documentation/devicetree/bindings/mips/
10796 F:      Documentation/mips/
10797 F:      arch/mips/
10798 F:      drivers/platform/mips/
10799
10800 MIPS BOSTON DEVELOPMENT BOARD
10801 M:      Paul Burton <paul.burton@mips.com>
10802 L:      linux-mips@vger.kernel.org
10803 S:      Maintained
10804 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
10805 F:      arch/mips/boot/dts/img/boston.dts
10806 F:      arch/mips/configs/generic/board-boston.config
10807 F:      drivers/clk/imgtec/clk-boston.c
10808 F:      include/dt-bindings/clock/boston-clock.h
10809
10810 MIPS GENERIC PLATFORM
10811 M:      Paul Burton <paul.burton@mips.com>
10812 L:      linux-mips@vger.kernel.org
10813 S:      Supported
10814 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
10815 F:      arch/mips/generic/
10816 F:      arch/mips/tools/generic-board-config.sh
10817
10818 MIPS/LOONGSON1 ARCHITECTURE
10819 M:      Keguang Zhang <keguang.zhang@gmail.com>
10820 L:      linux-mips@vger.kernel.org
10821 S:      Maintained
10822 F:      arch/mips/loongson32/
10823 F:      arch/mips/include/asm/mach-loongson32/
10824 F:      drivers/*/*loongson1*
10825 F:      drivers/*/*/*loongson1*
10826
10827 MIPS/LOONGSON2 ARCHITECTURE
10828 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
10829 L:      linux-mips@vger.kernel.org
10830 S:      Maintained
10831 F:      arch/mips/loongson64/fuloong-2e/
10832 F:      arch/mips/loongson64/lemote-2f/
10833 F:      arch/mips/include/asm/mach-loongson64/
10834 F:      drivers/*/*loongson2*
10835 F:      drivers/*/*/*loongson2*
10836
10837 MIPS/LOONGSON3 ARCHITECTURE
10838 M:      Huacai Chen <chenhc@lemote.com>
10839 L:      linux-mips@vger.kernel.org
10840 S:      Maintained
10841 F:      arch/mips/loongson64/
10842 F:      arch/mips/include/asm/mach-loongson64/
10843 F:      drivers/platform/mips/cpu_hwmon.c
10844 F:      drivers/*/*loongson3*
10845 F:      drivers/*/*/*loongson3*
10846
10847 MIPS RINT INSTRUCTION EMULATION
10848 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
10849 L:      linux-mips@vger.kernel.org
10850 S:      Supported
10851 F:      arch/mips/math-emu/sp_rint.c
10852 F:      arch/mips/math-emu/dp_rint.c
10853
10854 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
10855 M:      Hans Verkuil <hverkuil@xs4all.nl>
10856 L:      linux-media@vger.kernel.org
10857 T:      git git://linuxtv.org/media_tree.git
10858 W:      https://linuxtv.org
10859 S:      Odd Fixes
10860 F:      drivers/media/radio/radio-miropcm20*
10861
10862 MMP SUPPORT
10863 R:      Lubomir Rintel <lkundrak@v3.sk>
10864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10865 S:      Odd Fixes
10866 F:      arch/arm/boot/dts/mmp*
10867 F:      arch/arm/mach-mmp/
10868
10869 MMU GATHER AND TLB INVALIDATION
10870 M:      Will Deacon <will@kernel.org>
10871 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
10872 M:      Andrew Morton <akpm@linux-foundation.org>
10873 M:      Nick Piggin <npiggin@gmail.com>
10874 M:      Peter Zijlstra <peterz@infradead.org>
10875 L:      linux-arch@vger.kernel.org
10876 L:      linux-mm@kvack.org
10877 S:      Maintained
10878 F:      arch/*/include/asm/tlb.h
10879 F:      include/asm-generic/tlb.h
10880 F:      mm/mmu_gather.c
10881
10882 MN88472 MEDIA DRIVER
10883 M:      Antti Palosaari <crope@iki.fi>
10884 L:      linux-media@vger.kernel.org
10885 W:      https://linuxtv.org
10886 W:      http://palosaari.fi/linux/
10887 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10888 S:      Maintained
10889 F:      drivers/media/dvb-frontends/mn88472*
10890
10891 MN88473 MEDIA DRIVER
10892 M:      Antti Palosaari <crope@iki.fi>
10893 L:      linux-media@vger.kernel.org
10894 W:      https://linuxtv.org
10895 W:      http://palosaari.fi/linux/
10896 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10897 S:      Maintained
10898 F:      drivers/media/dvb-frontends/mn88473*
10899
10900 MODULE SUPPORT
10901 M:      Jessica Yu <jeyu@kernel.org>
10902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
10903 S:      Maintained
10904 F:      include/linux/module.h
10905 F:      kernel/module.c
10906
10907 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
10908 W:      http://popies.net/meye/
10909 S:      Orphan
10910 F:      Documentation/media/v4l-drivers/meye*
10911 F:      drivers/media/pci/meye/
10912 F:      include/uapi/linux/meye.h
10913
10914 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
10915 M:      Jiri Slaby <jirislaby@gmail.com>
10916 S:      Maintained
10917 F:      Documentation/driver-api/serial/moxa-smartio.rst
10918 F:      drivers/tty/mxser.*
10919
10920 MR800 AVERMEDIA USB FM RADIO DRIVER
10921 M:      Alexey Klimov <klimov.linux@gmail.com>
10922 L:      linux-media@vger.kernel.org
10923 T:      git git://linuxtv.org/media_tree.git
10924 S:      Maintained
10925 F:      drivers/media/radio/radio-mr800.c
10926
10927 MRF24J40 IEEE 802.15.4 RADIO DRIVER
10928 M:      Alan Ott <alan@signal11.us>
10929 L:      linux-wpan@vger.kernel.org
10930 S:      Maintained
10931 F:      drivers/net/ieee802154/mrf24j40.c
10932 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
10933
10934 MSI LAPTOP SUPPORT
10935 M:      "Lee, Chun-Yi" <jlee@suse.com>
10936 L:      platform-driver-x86@vger.kernel.org
10937 S:      Maintained
10938 F:      drivers/platform/x86/msi-laptop.c
10939
10940 MSI WMI SUPPORT
10941 L:      platform-driver-x86@vger.kernel.org
10942 S:      Orphan
10943 F:      drivers/platform/x86/msi-wmi.c
10944
10945 MSI001 MEDIA DRIVER
10946 M:      Antti Palosaari <crope@iki.fi>
10947 L:      linux-media@vger.kernel.org
10948 W:      https://linuxtv.org
10949 W:      http://palosaari.fi/linux/
10950 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10951 T:      git git://linuxtv.org/anttip/media_tree.git
10952 S:      Maintained
10953 F:      drivers/media/tuners/msi001*
10954
10955 MSI2500 MEDIA DRIVER
10956 M:      Antti Palosaari <crope@iki.fi>
10957 L:      linux-media@vger.kernel.org
10958 W:      https://linuxtv.org
10959 W:      http://palosaari.fi/linux/
10960 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10961 T:      git git://linuxtv.org/anttip/media_tree.git
10962 S:      Maintained
10963 F:      drivers/media/usb/msi2500/
10964
10965 MSYSTEMS DISKONCHIP G3 MTD DRIVER
10966 M:      Robert Jarzmik <robert.jarzmik@free.fr>
10967 L:      linux-mtd@lists.infradead.org
10968 S:      Maintained
10969 F:      drivers/mtd/devices/docg3*
10970
10971 MT9M032 APTINA SENSOR DRIVER
10972 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10973 L:      linux-media@vger.kernel.org
10974 T:      git git://linuxtv.org/media_tree.git
10975 S:      Maintained
10976 F:      drivers/media/i2c/mt9m032.c
10977 F:      include/media/i2c/mt9m032.h
10978
10979 MT9P031 APTINA CAMERA SENSOR
10980 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10981 L:      linux-media@vger.kernel.org
10982 T:      git git://linuxtv.org/media_tree.git
10983 S:      Maintained
10984 F:      drivers/media/i2c/mt9p031.c
10985 F:      include/media/i2c/mt9p031.h
10986
10987 MT9T001 APTINA CAMERA SENSOR
10988 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10989 L:      linux-media@vger.kernel.org
10990 T:      git git://linuxtv.org/media_tree.git
10991 S:      Maintained
10992 F:      drivers/media/i2c/mt9t001.c
10993 F:      include/media/i2c/mt9t001.h
10994
10995 MT9T112 APTINA CAMERA SENSOR
10996 M:      Jacopo Mondi <jacopo@jmondi.org>
10997 L:      linux-media@vger.kernel.org
10998 T:      git git://linuxtv.org/media_tree.git
10999 S:      Odd Fixes
11000 F:      drivers/media/i2c/mt9t112.c
11001 F:      include/media/i2c/mt9t112.h
11002
11003 MT9V032 APTINA CAMERA SENSOR
11004 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11005 L:      linux-media@vger.kernel.org
11006 T:      git git://linuxtv.org/media_tree.git
11007 S:      Maintained
11008 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11009 F:      drivers/media/i2c/mt9v032.c
11010 F:      include/media/i2c/mt9v032.h
11011
11012 MT9V111 APTINA CAMERA SENSOR
11013 M:      Jacopo Mondi <jacopo@jmondi.org>
11014 L:      linux-media@vger.kernel.org
11015 T:      git git://linuxtv.org/media_tree.git
11016 S:      Maintained
11017 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11018 F:      drivers/media/i2c/mt9v111.c
11019
11020 MULTIFUNCTION DEVICES (MFD)
11021 M:      Lee Jones <lee.jones@linaro.org>
11022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11023 S:      Supported
11024 F:      Documentation/devicetree/bindings/mfd/
11025 F:      drivers/mfd/
11026 F:      include/linux/mfd/
11027 F:      include/dt-bindings/mfd/
11028
11029 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11030 S:      Orphan
11031 F:      drivers/mmc/host/mmc_spi.c
11032 F:      include/linux/spi/mmc_spi.h
11033
11034 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11035 M:      Ulf Hansson <ulf.hansson@linaro.org>
11036 L:      linux-mmc@vger.kernel.org
11037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11038 S:      Maintained
11039 F:      Documentation/devicetree/bindings/mmc/
11040 F:      drivers/mmc/
11041 F:      include/linux/mmc/
11042 F:      include/uapi/linux/mmc/
11043
11044 MULTIPLEXER SUBSYSTEM
11045 M:      Peter Rosin <peda@axentia.se>
11046 S:      Maintained
11047 F:      Documentation/ABI/testing/sysfs-class-mux*
11048 F:      Documentation/devicetree/bindings/mux/
11049 F:      include/dt-bindings/mux/
11050 F:      include/linux/mux/
11051 F:      drivers/mux/
11052
11053 MULTITECH MULTIPORT CARD (ISICOM)
11054 S:      Orphan
11055 F:      drivers/tty/isicom.c
11056 F:      include/linux/isicom.h
11057
11058 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11059 M:      Bin Liu <b-liu@ti.com>
11060 L:      linux-usb@vger.kernel.org
11061 S:      Maintained
11062 F:      drivers/usb/musb/
11063
11064 MXL301RF MEDIA DRIVER
11065 M:      Akihiro Tsukada <tskd08@gmail.com>
11066 L:      linux-media@vger.kernel.org
11067 S:      Odd Fixes
11068 F:      drivers/media/tuners/mxl301rf*
11069
11070 MXL5007T MEDIA DRIVER
11071 M:      Michael Krufky <mkrufky@linuxtv.org>
11072 L:      linux-media@vger.kernel.org
11073 W:      https://linuxtv.org
11074 W:      http://github.com/mkrufky
11075 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11076 T:      git git://linuxtv.org/mkrufky/tuners.git
11077 S:      Maintained
11078 F:      drivers/media/tuners/mxl5007t.*
11079
11080 MXSFB DRM DRIVER
11081 M:      Marek Vasut <marex@denx.de>
11082 M:      Stefan Agner <stefan@agner.ch>
11083 L:      dri-devel@lists.freedesktop.org
11084 S:      Supported
11085 F:      drivers/gpu/drm/mxsfb/
11086 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11087 T:      git git://anongit.freedesktop.org/drm/drm-misc
11088
11089 MYLEX DAC960 PCI RAID Controller
11090 M:      Hannes Reinecke <hare@kernel.org>
11091 L:      linux-scsi@vger.kernel.org
11092 S:      Supported
11093 F:      drivers/scsi/myrb.*
11094 F:      drivers/scsi/myrs.*
11095
11096 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11097 M:      Chris Lee <christopher.lee@cspi.com>
11098 L:      netdev@vger.kernel.org
11099 W:      https://www.cspi.com/ethernet-products/support/downloads/
11100 S:      Supported
11101 F:      drivers/net/ethernet/myricom/myri10ge/
11102
11103 NAND FLASH SUBSYSTEM
11104 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11105 R:      Richard Weinberger <richard@nod.at>
11106 L:      linux-mtd@lists.infradead.org
11107 W:      http://www.linux-mtd.infradead.org/
11108 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11110 S:      Maintained
11111 F:      drivers/mtd/nand/
11112 F:      include/linux/mtd/*nand*.h
11113
11114 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11115 M:      Daniel Mack <zonque@gmail.com>
11116 S:      Maintained
11117 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11118 W:      http://www.native-instruments.com
11119 F:      sound/usb/caiaq/
11120
11121 NATSEMI ETHERNET DRIVER (DP8381x)
11122 S:      Orphan
11123 F:      drivers/net/ethernet/natsemi/natsemi.c
11124
11125 NCR 5380 SCSI DRIVERS
11126 M:      Finn Thain <fthain@telegraphics.com.au>
11127 M:      Michael Schmitz <schmitzmic@gmail.com>
11128 L:      linux-scsi@vger.kernel.org
11129 S:      Maintained
11130 F:      Documentation/scsi/g_NCR5380.txt
11131 F:      drivers/scsi/NCR5380.*
11132 F:      drivers/scsi/arm/cumana_1.c
11133 F:      drivers/scsi/arm/oak.c
11134 F:      drivers/scsi/atari_scsi.*
11135 F:      drivers/scsi/dmx3191d.c
11136 F:      drivers/scsi/g_NCR5380.*
11137 F:      drivers/scsi/mac_scsi.*
11138 F:      drivers/scsi/sun3_scsi.*
11139 F:      drivers/scsi/sun3_scsi_vme.c
11140
11141 NCSI LIBRARY:
11142 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11143 S:      Maintained
11144 F:      net/ncsi/
11145
11146 NCT6775 HARDWARE MONITOR DRIVER
11147 M:      Guenter Roeck <linux@roeck-us.net>
11148 L:      linux-hwmon@vger.kernel.org
11149 S:      Maintained
11150 F:      Documentation/hwmon/nct6775.rst
11151 F:      drivers/hwmon/nct6775.c
11152
11153 NET_FAILOVER MODULE
11154 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
11155 L:      netdev@vger.kernel.org
11156 S:      Supported
11157 F:      drivers/net/net_failover.c
11158 F:      include/net/net_failover.h
11159 F:      Documentation/networking/net_failover.rst
11160
11161 NETEM NETWORK EMULATOR
11162 M:      Stephen Hemminger <stephen@networkplumber.org>
11163 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
11164 S:      Maintained
11165 F:      net/sched/sch_netem.c
11166
11167 NETERION 10GbE DRIVERS (s2io/vxge)
11168 M:      Jon Mason <jdmason@kudzu.us>
11169 L:      netdev@vger.kernel.org
11170 S:      Supported
11171 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11172 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11173 F:      drivers/net/ethernet/neterion/
11174
11175 NETFILTER
11176 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11177 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11178 M:      Florian Westphal <fw@strlen.de>
11179 L:      netfilter-devel@vger.kernel.org
11180 L:      coreteam@netfilter.org
11181 W:      http://www.netfilter.org/
11182 W:      http://www.iptables.org/
11183 W:      http://www.nftables.org/
11184 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11187 S:      Maintained
11188 F:      include/linux/netfilter*
11189 F:      include/linux/netfilter/
11190 F:      include/net/netfilter/
11191 F:      include/uapi/linux/netfilter*
11192 F:      include/uapi/linux/netfilter/
11193 F:      net/*/netfilter.c
11194 F:      net/*/netfilter/
11195 F:      net/netfilter/
11196 F:      net/bridge/br_netfilter*.c
11197
11198 NETROM NETWORK LAYER
11199 M:      Ralf Baechle <ralf@linux-mips.org>
11200 L:      linux-hams@vger.kernel.org
11201 W:      http://www.linux-ax25.org/
11202 S:      Maintained
11203 F:      include/net/netrom.h
11204 F:      include/uapi/linux/netrom.h
11205 F:      net/netrom/
11206
11207 NETRONOME ETHERNET DRIVERS
11208 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11209 L:      oss-drivers@netronome.com
11210 S:      Maintained
11211 F:      drivers/net/ethernet/netronome/
11212
11213 NETWORK BLOCK DEVICE (NBD)
11214 M:      Josef Bacik <josef@toxicpanda.com>
11215 S:      Maintained
11216 L:      linux-block@vger.kernel.org
11217 L:      nbd@other.debian.org
11218 F:      Documentation/admin-guide/blockdev/nbd.rst
11219 F:      drivers/block/nbd.c
11220 F:      include/trace/events/nbd.h
11221 F:      include/uapi/linux/nbd.h
11222
11223 NETWORK DROP MONITOR
11224 M:      Neil Horman <nhorman@tuxdriver.com>
11225 L:      netdev@vger.kernel.org
11226 S:      Maintained
11227 W:      https://fedorahosted.org/dropwatch/
11228 F:      net/core/drop_monitor.c
11229 F:      include/uapi/linux/net_dropmon.h
11230 F:      include/net/drop_monitor.h
11231
11232 NETWORKING DRIVERS
11233 M:      "David S. Miller" <davem@davemloft.net>
11234 L:      netdev@vger.kernel.org
11235 W:      http://www.linuxfoundation.org/en/Net
11236 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11239 S:      Odd Fixes
11240 F:      Documentation/devicetree/bindings/net/
11241 F:      drivers/net/
11242 F:      include/linux/if_*
11243 F:      include/linux/netdevice.h
11244 F:      include/linux/etherdevice.h
11245 F:      include/linux/fcdevice.h
11246 F:      include/linux/fddidevice.h
11247 F:      include/linux/hippidevice.h
11248 F:      include/linux/inetdevice.h
11249 F:      include/uapi/linux/if_*
11250 F:      include/uapi/linux/netdevice.h
11251
11252 NETWORKING DRIVERS (WIRELESS)
11253 M:      Kalle Valo <kvalo@codeaurora.org>
11254 L:      linux-wireless@vger.kernel.org
11255 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11258 S:      Maintained
11259 F:      Documentation/devicetree/bindings/net/wireless/
11260 F:      drivers/net/wireless/
11261
11262 NETWORKING [DSA]
11263 M:      Andrew Lunn <andrew@lunn.ch>
11264 M:      Vivien Didelot <vivien.didelot@gmail.com>
11265 M:      Florian Fainelli <f.fainelli@gmail.com>
11266 S:      Maintained
11267 F:      Documentation/devicetree/bindings/net/dsa/
11268 F:      net/dsa/
11269 F:      include/net/dsa.h
11270 F:      include/linux/dsa/
11271 F:      include/linux/platform_data/dsa.h
11272 F:      drivers/net/dsa/
11273
11274 NETWORKING [GENERAL]
11275 M:      "David S. Miller" <davem@davemloft.net>
11276 L:      netdev@vger.kernel.org
11277 W:      http://www.linuxfoundation.org/en/Net
11278 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11281 B:      mailto:netdev@vger.kernel.org
11282 S:      Maintained
11283 F:      net/
11284 F:      include/net/
11285 F:      include/linux/in.h
11286 F:      include/linux/net.h
11287 F:      include/linux/netdevice.h
11288 F:      include/uapi/linux/in.h
11289 F:      include/uapi/linux/net.h
11290 F:      include/uapi/linux/netdevice.h
11291 F:      include/uapi/linux/net_namespace.h
11292 F:      tools/testing/selftests/net/
11293 F:      lib/net_utils.c
11294 F:      lib/random32.c
11295 F:      Documentation/networking/
11296
11297 NETWORKING [IPSEC]
11298 M:      Steffen Klassert <steffen.klassert@secunet.com>
11299 M:      Herbert Xu <herbert@gondor.apana.org.au>
11300 M:      "David S. Miller" <davem@davemloft.net>
11301 L:      netdev@vger.kernel.org
11302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11304 S:      Maintained
11305 F:      net/xfrm/
11306 F:      net/key/
11307 F:      net/ipv4/xfrm*
11308 F:      net/ipv4/esp4*
11309 F:      net/ipv4/ah4.c
11310 F:      net/ipv4/ipcomp.c
11311 F:      net/ipv4/ip_vti.c
11312 F:      net/ipv6/xfrm*
11313 F:      net/ipv6/esp6*
11314 F:      net/ipv6/ah6.c
11315 F:      net/ipv6/ipcomp6.c
11316 F:      net/ipv6/ip6_vti.c
11317 F:      include/uapi/linux/xfrm.h
11318 F:      include/net/xfrm.h
11319
11320 NETWORKING [IPv4/IPv6]
11321 M:      "David S. Miller" <davem@davemloft.net>
11322 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11323 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11324 L:      netdev@vger.kernel.org
11325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11326 S:      Maintained
11327 F:      net/ipv4/
11328 F:      net/ipv6/
11329 F:      include/net/ip*
11330 F:      arch/x86/net/*
11331
11332 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11333 M:      Paul Moore <paul@paul-moore.com>
11334 W:      https://github.com/netlabel
11335 L:      netdev@vger.kernel.org
11336 L:      linux-security-module@vger.kernel.org
11337 S:      Maintained
11338 F:      Documentation/netlabel/
11339 F:      include/net/calipso.h
11340 F:      include/net/cipso_ipv4.h
11341 F:      include/net/netlabel.h
11342 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11343 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11344 F:      net/netlabel/
11345 F:      net/ipv4/cipso_ipv4.c
11346 F:      net/ipv6/calipso.c
11347 F:      net/netfilter/xt_CONNSECMARK.c
11348 F:      net/netfilter/xt_SECMARK.c
11349
11350 NETWORKING [TCP]
11351 M:      Eric Dumazet <edumazet@google.com>
11352 L:      netdev@vger.kernel.org
11353 S:      Maintained
11354 F:      net/ipv4/tcp*.c
11355 F:      net/ipv4/syncookies.c
11356 F:      net/ipv6/tcp*.c
11357 F:      net/ipv6/syncookies.c
11358 F:      include/uapi/linux/tcp.h
11359 F:      include/net/tcp.h
11360 F:      include/linux/tcp.h
11361 F:      include/trace/events/tcp.h
11362
11363 NETWORKING [TLS]
11364 M:      Boris Pismenny <borisp@mellanox.com>
11365 M:      Aviad Yehezkel <aviadye@mellanox.com>
11366 M:      Dave Watson <davejwatson@fb.com>
11367 M:      John Fastabend <john.fastabend@gmail.com>
11368 M:      Daniel Borkmann <daniel@iogearbox.net>
11369 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11370 L:      netdev@vger.kernel.org
11371 S:      Maintained
11372 F:      net/tls/*
11373 F:      include/uapi/linux/tls.h
11374 F:      include/net/tls.h
11375
11376 NETWORKING [WIRELESS]
11377 L:      linux-wireless@vger.kernel.org
11378 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11379
11380 NETDEVSIM
11381 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11382 S:      Maintained
11383 F:      drivers/net/netdevsim/*
11384
11385 NETXEN (1/10) GbE SUPPORT
11386 M:      Manish Chopra <manishc@marvell.com>
11387 M:      Rahul Verma <rahulv@marvell.com>
11388 M:      GR-Linux-NIC-Dev@marvell.com
11389 L:      netdev@vger.kernel.org
11390 S:      Supported
11391 F:      drivers/net/ethernet/qlogic/netxen/
11392
11393 NEXTHOP
11394 M:      David Ahern <dsahern@kernel.org>
11395 L:      netdev@vger.kernel.org
11396 S:      Maintained
11397 F:      include/net/nexthop.h
11398 F:      include/uapi/linux/nexthop.h
11399 F:      include/net/netns/nexthop.h
11400 F:      net/ipv4/nexthop.c
11401
11402 NFC SUBSYSTEM
11403 L:      netdev@vger.kernel.org
11404 S:      Orphan
11405 F:      net/nfc/
11406 F:      include/net/nfc/
11407 F:      include/uapi/linux/nfc.h
11408 F:      drivers/nfc/
11409 F:      include/linux/platform_data/nfcmrvl.h
11410 F:      Documentation/devicetree/bindings/net/nfc/
11411
11412 NFS, SUNRPC, AND LOCKD CLIENTS
11413 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
11414 M:      Anna Schumaker <anna.schumaker@netapp.com>
11415 L:      linux-nfs@vger.kernel.org
11416 W:      http://client.linux-nfs.org
11417 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11418 S:      Maintained
11419 F:      fs/lockd/
11420 F:      fs/nfs/
11421 F:      fs/nfs_common/
11422 F:      net/sunrpc/
11423 F:      include/linux/lockd/
11424 F:      include/linux/nfs*
11425 F:      include/linux/sunrpc/
11426 F:      include/uapi/linux/nfs*
11427 F:      include/uapi/linux/sunrpc/
11428
11429 NILFS2 FILESYSTEM
11430 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
11431 L:      linux-nilfs@vger.kernel.org
11432 W:      https://nilfs.sourceforge.io/
11433 W:      https://nilfs.osdn.jp/
11434 T:      git git://github.com/konis/nilfs2.git
11435 S:      Supported
11436 F:      Documentation/filesystems/nilfs2.txt
11437 F:      fs/nilfs2/
11438 F:      include/trace/events/nilfs2.h
11439 F:      include/uapi/linux/nilfs2_api.h
11440 F:      include/uapi/linux/nilfs2_ondisk.h
11441
11442 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11443 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11444 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11445 S:      Maintained
11446 F:      Documentation/scsi/NinjaSCSI.txt
11447 F:      drivers/scsi/pcmcia/nsp_*
11448
11449 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11450 M:      GOTO Masanori <gotom@debian.or.jp>
11451 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11452 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11453 S:      Maintained
11454 F:      Documentation/scsi/NinjaSCSI.txt
11455 F:      drivers/scsi/nsp32*
11456
11457 NIOS2 ARCHITECTURE
11458 M:      Ley Foon Tan <lftan@altera.com>
11459 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
11460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11461 S:      Maintained
11462 F:      arch/nios2/
11463
11464 NOHZ, DYNTICKS SUPPORT
11465 M:      Frederic Weisbecker <fweisbec@gmail.com>
11466 M:      Thomas Gleixner <tglx@linutronix.de>
11467 M:      Ingo Molnar <mingo@kernel.org>
11468 L:      linux-kernel@vger.kernel.org
11469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11470 S:      Maintained
11471 F:      kernel/time/tick*.*
11472 F:      include/linux/tick.h
11473 F:      include/linux/sched/nohz.h
11474
11475 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11476 M:      Pavel Machek <pavel@ucw.cz>
11477 M:      Sakari Ailus <sakari.ailus@iki.fi>
11478 L:      linux-media@vger.kernel.org
11479 S:      Maintained
11480 F:      drivers/media/i2c/et8ek8
11481 F:      drivers/media/i2c/ad5820.c
11482
11483 NOKIA N900 POWER SUPPLY DRIVERS
11484 R:      Pali Rohár <pali.rohar@gmail.com>
11485 F:      include/linux/power/bq2415x_charger.h
11486 F:      include/linux/power/bq27xxx_battery.h
11487 F:      include/linux/power/isp1704_charger.h
11488 F:      drivers/power/supply/bq2415x_charger.c
11489 F:      drivers/power/supply/bq27xxx_battery.c
11490 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11491 F:      drivers/power/supply/isp1704_charger.c
11492 F:      drivers/power/supply/rx51_battery.c
11493
11494 NOLIBC HEADER FILE
11495 M:      Willy Tarreau <w@1wt.eu>
11496 S:      Maintained
11497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11498 F:      tools/include/nolibc/
11499
11500 NTB AMD DRIVER
11501 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
11502 L:      linux-ntb@googlegroups.com
11503 S:      Supported
11504 F:      drivers/ntb/hw/amd/
11505
11506 NTB DRIVER CORE
11507 M:      Jon Mason <jdmason@kudzu.us>
11508 M:      Dave Jiang <dave.jiang@intel.com>
11509 M:      Allen Hubbe <allenbh@gmail.com>
11510 L:      linux-ntb@googlegroups.com
11511 S:      Supported
11512 W:      https://github.com/jonmason/ntb/wiki
11513 T:      git git://github.com/jonmason/ntb.git
11514 F:      drivers/ntb/
11515 F:      drivers/net/ntb_netdev.c
11516 F:      include/linux/ntb.h
11517 F:      include/linux/ntb_transport.h
11518 F:      tools/testing/selftests/ntb/
11519
11520 NTB IDT DRIVER
11521 M:      Serge Semin <fancer.lancer@gmail.com>
11522 L:      linux-ntb@googlegroups.com
11523 S:      Supported
11524 F:      drivers/ntb/hw/idt/
11525
11526 NTB INTEL DRIVER
11527 M:      Dave Jiang <dave.jiang@intel.com>
11528 L:      linux-ntb@googlegroups.com
11529 S:      Supported
11530 W:      https://github.com/davejiang/linux/wiki
11531 T:      git https://github.com/davejiang/linux.git
11532 F:      drivers/ntb/hw/intel/
11533
11534 NTFS FILESYSTEM
11535 M:      Anton Altaparmakov <anton@tuxera.com>
11536 L:      linux-ntfs-dev@lists.sourceforge.net
11537 W:      http://www.tuxera.com/
11538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
11539 S:      Supported
11540 F:      Documentation/filesystems/ntfs.txt
11541 F:      fs/ntfs/
11542
11543 NUBUS SUBSYSTEM
11544 M:      Finn Thain <fthain@telegraphics.com.au>
11545 L:      linux-m68k@lists.linux-m68k.org
11546 S:      Maintained
11547 F:      arch/*/include/asm/nubus.h
11548 F:      drivers/nubus/
11549 F:      include/linux/nubus.h
11550 F:      include/uapi/linux/nubus.h
11551
11552 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
11553 M:      Antonino Daplas <adaplas@gmail.com>
11554 L:      linux-fbdev@vger.kernel.org
11555 S:      Maintained
11556 F:      drivers/video/fbdev/riva/
11557 F:      drivers/video/fbdev/nvidia/
11558
11559 NVM EXPRESS DRIVER
11560 M:      Keith Busch <kbusch@kernel.org>
11561 M:      Jens Axboe <axboe@fb.com>
11562 M:      Christoph Hellwig <hch@lst.de>
11563 M:      Sagi Grimberg <sagi@grimberg.me>
11564 L:      linux-nvme@lists.infradead.org
11565 T:      git://git.infradead.org/nvme.git
11566 W:      http://git.infradead.org/nvme.git
11567 S:      Supported
11568 F:      drivers/nvme/host/
11569 F:      include/linux/nvme.h
11570 F:      include/uapi/linux/nvme_ioctl.h
11571
11572 NVM EXPRESS FC TRANSPORT DRIVERS
11573 M:      James Smart <james.smart@broadcom.com>
11574 L:      linux-nvme@lists.infradead.org
11575 S:      Supported
11576 F:      include/linux/nvme-fc.h
11577 F:      include/linux/nvme-fc-driver.h
11578 F:      drivers/nvme/host/fc.c
11579 F:      drivers/nvme/target/fc.c
11580 F:      drivers/nvme/target/fcloop.c
11581
11582 NVM EXPRESS TARGET DRIVER
11583 M:      Christoph Hellwig <hch@lst.de>
11584 M:      Sagi Grimberg <sagi@grimberg.me>
11585 L:      linux-nvme@lists.infradead.org
11586 T:      git://git.infradead.org/nvme.git
11587 W:      http://git.infradead.org/nvme.git
11588 S:      Supported
11589 F:      drivers/nvme/target/
11590
11591 NVMEM FRAMEWORK
11592 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
11593 S:      Maintained
11594 F:      drivers/nvmem/
11595 F:      Documentation/devicetree/bindings/nvmem/
11596 F:      Documentation/ABI/stable/sysfs-bus-nvmem
11597 F:      include/linux/nvmem-consumer.h
11598 F:      include/linux/nvmem-provider.h
11599
11600 NXP FXAS21002C DRIVER
11601 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11602 L:      linux-iio@vger.kernel.org
11603 S:      Maintained
11604 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
11605 F:      drivers/iio/gyro/fxas21002c_core.c
11606 F:      drivers/iio/gyro/fxas21002c.h
11607 F:      drivers/iio/gyro/fxas21002c_i2c.c
11608 F:      drivers/iio/gyro/fxas21002c_spi.c
11609
11610 NXP SGTL5000 DRIVER
11611 M:      Fabio Estevam <festevam@gmail.com>
11612 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11613 S:      Maintained
11614 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
11615 F:      sound/soc/codecs/sgtl5000*
11616
11617 NXP SJA1105 ETHERNET SWITCH DRIVER
11618 M:      Vladimir Oltean <olteanv@gmail.com>
11619 L:      linux-kernel@vger.kernel.org
11620 S:      Maintained
11621 F:      drivers/net/dsa/sja1105
11622
11623 NXP TDA998X DRM DRIVER
11624 M:      Russell King <linux@armlinux.org.uk>
11625 S:      Maintained
11626 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
11627 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
11628 F:      drivers/gpu/drm/i2c/tda998x_drv.c
11629 F:      include/drm/i2c/tda998x.h
11630 F:      include/dt-bindings/display/tda998x.h
11631 K:      "nxp,tda998x"
11632
11633 NXP TFA9879 DRIVER
11634 M:      Peter Rosin <peda@axentia.se>
11635 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11636 S:      Maintained
11637 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
11638 F:      sound/soc/codecs/tfa9879*
11639
11640 NXP-NCI NFC DRIVER
11641 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
11642 R:      Charles Gorand <charles.gorand@effinnov.com>
11643 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
11644 S:      Supported
11645 F:      drivers/nfc/nxp-nci
11646
11647 OBJAGG
11648 M:      Jiri Pirko <jiri@mellanox.com>
11649 L:      netdev@vger.kernel.org
11650 S:      Supported
11651 F:      lib/objagg.c
11652 F:      lib/test_objagg.c
11653 F:      include/linux/objagg.h
11654
11655 NXP FSPI DRIVER
11656 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
11657 M:      Ashish Kumar <ashish.kumar@nxp.com>
11658 L:      linux-spi@vger.kernel.org
11659 S:      Maintained
11660 F:      drivers/spi/spi-nxp-fspi.c
11661 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
11662
11663 OBJTOOL
11664 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11665 M:      Peter Zijlstra <peterz@infradead.org>
11666 S:      Supported
11667 F:      tools/objtool/
11668
11669 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
11670 M:      Frederic Barrat <fbarrat@linux.ibm.com>
11671 M:      Andrew Donnellan <ajd@linux.ibm.com>
11672 L:      linuxppc-dev@lists.ozlabs.org
11673 S:      Supported
11674 F:      arch/powerpc/platforms/powernv/ocxl.c
11675 F:      arch/powerpc/include/asm/pnv-ocxl.h
11676 F:      drivers/misc/ocxl/
11677 F:      include/misc/ocxl*
11678 F:      include/uapi/misc/ocxl.h
11679 F:      Documentation/userspace-api/accelerators/ocxl.rst
11680
11681 OMAP AUDIO SUPPORT
11682 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11683 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
11684 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11685 L:      linux-omap@vger.kernel.org
11686 S:      Maintained
11687 F:      sound/soc/ti/omap*
11688 F:      sound/soc/ti/rx51.c
11689 F:      sound/soc/ti/n810.c
11690 F:      sound/soc/ti/sdma-pcm.*
11691
11692 OMAP CLOCK FRAMEWORK SUPPORT
11693 M:      Paul Walmsley <paul@pwsan.com>
11694 L:      linux-omap@vger.kernel.org
11695 S:      Maintained
11696 F:      arch/arm/*omap*/*clock*
11697
11698 OMAP DEVICE TREE SUPPORT
11699 M:      Benoît Cousson <bcousson@baylibre.com>
11700 M:      Tony Lindgren <tony@atomide.com>
11701 L:      linux-omap@vger.kernel.org
11702 L:      devicetree@vger.kernel.org
11703 S:      Maintained
11704 F:      arch/arm/boot/dts/*omap*
11705 F:      arch/arm/boot/dts/*am3*
11706 F:      arch/arm/boot/dts/*am4*
11707 F:      arch/arm/boot/dts/*am5*
11708 F:      arch/arm/boot/dts/*dra7*
11709
11710 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
11711 L:      linux-omap@vger.kernel.org
11712 L:      linux-fbdev@vger.kernel.org
11713 S:      Orphan
11714 F:      drivers/video/fbdev/omap2/
11715 F:      Documentation/arm/omap/dss.rst
11716
11717 OMAP FRAMEBUFFER SUPPORT
11718 L:      linux-fbdev@vger.kernel.org
11719 L:      linux-omap@vger.kernel.org
11720 S:      Orphan
11721 F:      drivers/video/fbdev/omap/
11722
11723 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
11724 M:      Roger Quadros <rogerq@ti.com>
11725 M:      Tony Lindgren <tony@atomide.com>
11726 L:      linux-omap@vger.kernel.org
11727 S:      Maintained
11728 F:      drivers/memory/omap-gpmc.c
11729 F:      arch/arm/mach-omap2/*gpmc*
11730
11731 OMAP GPIO DRIVER
11732 M:      Grygorii Strashko <grygorii.strashko@ti.com>
11733 M:      Santosh Shilimkar <ssantosh@kernel.org>
11734 M:      Kevin Hilman <khilman@kernel.org>
11735 L:      linux-omap@vger.kernel.org
11736 S:      Maintained
11737 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
11738 F:      drivers/gpio/gpio-omap.c
11739
11740 OMAP HARDWARE SPINLOCK SUPPORT
11741 M:      Ohad Ben-Cohen <ohad@wizery.com>
11742 L:      linux-omap@vger.kernel.org
11743 S:      Maintained
11744 F:      drivers/hwspinlock/omap_hwspinlock.c
11745
11746 OMAP HS MMC SUPPORT
11747 L:      linux-mmc@vger.kernel.org
11748 L:      linux-omap@vger.kernel.org
11749 S:      Orphan
11750 F:      drivers/mmc/host/omap_hsmmc.c
11751
11752 OMAP HWMOD DATA
11753 M:      Paul Walmsley <paul@pwsan.com>
11754 L:      linux-omap@vger.kernel.org
11755 S:      Maintained
11756 F:      arch/arm/mach-omap2/omap_hwmod*data*
11757
11758 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
11759 M:      Benoît Cousson <bcousson@baylibre.com>
11760 L:      linux-omap@vger.kernel.org
11761 S:      Maintained
11762 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
11763
11764 OMAP HWMOD SUPPORT
11765 M:      Benoît Cousson <bcousson@baylibre.com>
11766 M:      Paul Walmsley <paul@pwsan.com>
11767 L:      linux-omap@vger.kernel.org
11768 S:      Maintained
11769 F:      arch/arm/mach-omap2/omap_hwmod.*
11770
11771 OMAP I2C DRIVER
11772 M:      Vignesh R <vigneshr@ti.com>
11773 L:      linux-omap@vger.kernel.org
11774 L:      linux-i2c@vger.kernel.org
11775 S:      Maintained
11776 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
11777 F:      drivers/i2c/busses/i2c-omap.c
11778
11779 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
11780 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11781 L:      linux-media@vger.kernel.org
11782 S:      Maintained
11783 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
11784 F:      drivers/media/platform/omap3isp/
11785 F:      drivers/staging/media/omap4iss/
11786
11787 OMAP MMC SUPPORT
11788 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11789 L:      linux-omap@vger.kernel.org
11790 S:      Odd Fixes
11791 F:      drivers/mmc/host/omap.c
11792
11793 OMAP POWER MANAGEMENT SUPPORT
11794 M:      Kevin Hilman <khilman@kernel.org>
11795 L:      linux-omap@vger.kernel.org
11796 S:      Maintained
11797 F:      arch/arm/*omap*/*pm*
11798 F:      drivers/cpufreq/omap-cpufreq.c
11799
11800 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
11801 M:      Rajendra Nayak <rnayak@codeaurora.org>
11802 M:      Paul Walmsley <paul@pwsan.com>
11803 L:      linux-omap@vger.kernel.org
11804 S:      Maintained
11805 F:      arch/arm/mach-omap2/prm*
11806
11807 OMAP RANDOM NUMBER GENERATOR SUPPORT
11808 M:      Deepak Saxena <dsaxena@plexity.net>
11809 S:      Maintained
11810 F:      drivers/char/hw_random/omap-rng.c
11811
11812 OMAP USB SUPPORT
11813 L:      linux-usb@vger.kernel.org
11814 L:      linux-omap@vger.kernel.org
11815 S:      Orphan
11816 F:      drivers/usb/*/*omap*
11817 F:      arch/arm/*omap*/usb*
11818
11819 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
11820 M:      Mark Jackson <mpfj@newflow.co.uk>
11821 L:      linux-omap@vger.kernel.org
11822 S:      Maintained
11823 F:      arch/arm/boot/dts/am335x-nano.dts
11824
11825 OMAP1 SUPPORT
11826 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11827 M:      Tony Lindgren <tony@atomide.com>
11828 L:      linux-omap@vger.kernel.org
11829 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11831 S:      Maintained
11832 F:      arch/arm/mach-omap1/
11833 F:      arch/arm/plat-omap/
11834 F:      arch/arm/configs/omap1_defconfig
11835 F:      drivers/i2c/busses/i2c-omap.c
11836 F:      include/linux/platform_data/i2c-omap.h
11837 F:      include/linux/platform_data/ams-delta-fiq.h
11838
11839 OMAP2+ SUPPORT
11840 M:      Tony Lindgren <tony@atomide.com>
11841 L:      linux-omap@vger.kernel.org
11842 W:      http://www.muru.com/linux/omap/
11843 W:      http://linux.omap.com/
11844 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11846 S:      Maintained
11847 F:      arch/arm/mach-omap2/
11848 F:      arch/arm/plat-omap/
11849 F:      arch/arm/configs/omap2plus_defconfig
11850 F:      drivers/i2c/busses/i2c-omap.c
11851 F:      drivers/irqchip/irq-omap-intc.c
11852 F:      drivers/mfd/*omap*.c
11853 F:      drivers/mfd/menelaus.c
11854 F:      drivers/mfd/palmas.c
11855 F:      drivers/mfd/tps65217.c
11856 F:      drivers/mfd/tps65218.c
11857 F:      drivers/mfd/tps65910.c
11858 F:      drivers/mfd/twl-core.[ch]
11859 F:      drivers/mfd/twl4030*.c
11860 F:      drivers/mfd/twl6030*.c
11861 F:      drivers/mfd/twl6040*.c
11862 F:      drivers/regulator/palmas-regulator*.c
11863 F:      drivers/regulator/pbias-regulator.c
11864 F:      drivers/regulator/tps65217-regulator.c
11865 F:      drivers/regulator/tps65218-regulator.c
11866 F:      drivers/regulator/tps65910-regulator.c
11867 F:      drivers/regulator/twl-regulator.c
11868 F:      drivers/regulator/twl6030-regulator.c
11869 F:      include/linux/platform_data/i2c-omap.h
11870
11871 ONION OMEGA2+ BOARD
11872 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
11873 L:      linux-mips@vger.kernel.org
11874 S:      Maintained
11875 F:      arch/mips/boot/dts/ralink/omega2p.dts
11876
11877 OMFS FILESYSTEM
11878 M:      Bob Copeland <me@bobcopeland.com>
11879 L:      linux-karma-devel@lists.sourceforge.net
11880 S:      Maintained
11881 F:      Documentation/filesystems/omfs.txt
11882 F:      fs/omfs/
11883
11884 OMNIKEY CARDMAN 4000 DRIVER
11885 M:      Harald Welte <laforge@gnumonks.org>
11886 S:      Maintained
11887 F:      drivers/char/pcmcia/cm4000_cs.c
11888 F:      include/linux/cm4000_cs.h
11889 F:      include/uapi/linux/cm4000_cs.h
11890
11891 OMNIKEY CARDMAN 4040 DRIVER
11892 M:      Harald Welte <laforge@gnumonks.org>
11893 S:      Maintained
11894 F:      drivers/char/pcmcia/cm4040_cs.*
11895
11896 OMNIVISION OV13858 SENSOR DRIVER
11897 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11898 L:      linux-media@vger.kernel.org
11899 T:      git git://linuxtv.org/media_tree.git
11900 S:      Maintained
11901 F:      drivers/media/i2c/ov13858.c
11902
11903 OMNIVISION OV2680 SENSOR DRIVER
11904 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11905 L:      linux-media@vger.kernel.org
11906 T:      git git://linuxtv.org/media_tree.git
11907 S:      Maintained
11908 F:      drivers/media/i2c/ov2680.c
11909 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
11910
11911 OMNIVISION OV2685 SENSOR DRIVER
11912 M:      Shunqian Zheng <zhengsq@rock-chips.com>
11913 L:      linux-media@vger.kernel.org
11914 T:      git git://linuxtv.org/media_tree.git
11915 S:      Maintained
11916 F:      drivers/media/i2c/ov2685.c
11917
11918 OMNIVISION OV5640 SENSOR DRIVER
11919 M:      Steve Longerbeam <slongerbeam@gmail.com>
11920 L:      linux-media@vger.kernel.org
11921 T:      git git://linuxtv.org/media_tree.git
11922 S:      Maintained
11923 F:      drivers/media/i2c/ov5640.c
11924
11925 OMNIVISION OV5647 SENSOR DRIVER
11926 M:      Luis Oliveira <lolivei@synopsys.com>
11927 L:      linux-media@vger.kernel.org
11928 T:      git git://linuxtv.org/media_tree.git
11929 S:      Maintained
11930 F:      drivers/media/i2c/ov5647.c
11931
11932 OMNIVISION OV5670 SENSOR DRIVER
11933 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
11934 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
11935 L:      linux-media@vger.kernel.org
11936 T:      git git://linuxtv.org/media_tree.git
11937 S:      Maintained
11938 F:      drivers/media/i2c/ov5670.c
11939
11940 OMNIVISION OV5675 SENSOR DRIVER
11941 M:      Shawn Tu <shawnx.tu@intel.com>
11942 L:      linux-media@vger.kernel.org
11943 T:      git git://linuxtv.org/media_tree.git
11944 S:      Maintained
11945 F:      drivers/media/i2c/ov5675.c
11946
11947 OMNIVISION OV5695 SENSOR DRIVER
11948 M:      Shunqian Zheng <zhengsq@rock-chips.com>
11949 L:      linux-media@vger.kernel.org
11950 T:      git git://linuxtv.org/media_tree.git
11951 S:      Maintained
11952 F:      drivers/media/i2c/ov5695.c
11953
11954 OMNIVISION OV7670 SENSOR DRIVER
11955 M:      Jonathan Corbet <corbet@lwn.net>
11956 L:      linux-media@vger.kernel.org
11957 T:      git git://linuxtv.org/media_tree.git
11958 S:      Maintained
11959 F:      drivers/media/i2c/ov7670.c
11960 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
11961
11962 OMNIVISION OV772x SENSOR DRIVER
11963 M:      Jacopo Mondi <jacopo@jmondi.org>
11964 L:      linux-media@vger.kernel.org
11965 T:      git git://linuxtv.org/media_tree.git
11966 S:      Odd fixes
11967 F:      drivers/media/i2c/ov772x.c
11968 F:      include/media/i2c/ov772x.h
11969 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
11970
11971 OMNIVISION OV7740 SENSOR DRIVER
11972 M:      Wenyou Yang <wenyou.yang@microchip.com>
11973 L:      linux-media@vger.kernel.org
11974 T:      git git://linuxtv.org/media_tree.git
11975 S:      Maintained
11976 F:      drivers/media/i2c/ov7740.c
11977 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
11978
11979 OMNIVISION OV9640 SENSOR DRIVER
11980 M:      Petr Cvek <petrcvekcz@gmail.com>
11981 L:      linux-media@vger.kernel.org
11982 S:      Maintained
11983 F:      drivers/media/i2c/ov9640.*
11984
11985 OMNIVISION OV8856 SENSOR DRIVER
11986 M:      Ben Kao <ben.kao@intel.com>
11987 L:      linux-media@vger.kernel.org
11988 T:      git git://linuxtv.org/media_tree.git
11989 S:      Maintained
11990 F:      drivers/media/i2c/ov8856.c
11991
11992 OMNIVISION OV9650 SENSOR DRIVER
11993 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11994 R:      Akinobu Mita <akinobu.mita@gmail.com>
11995 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
11996 L:      linux-media@vger.kernel.org
11997 T:      git git://linuxtv.org/media_tree.git
11998 S:      Maintained
11999 F:      drivers/media/i2c/ov9650.c
12000 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12001
12002 ONENAND FLASH DRIVER
12003 M:      Kyungmin Park <kyungmin.park@samsung.com>
12004 L:      linux-mtd@lists.infradead.org
12005 S:      Maintained
12006 F:      drivers/mtd/nand/onenand/
12007 F:      include/linux/mtd/onenand*.h
12008
12009 OP-TEE DRIVER
12010 M:      Jens Wiklander <jens.wiklander@linaro.org>
12011 L:      tee-dev@lists.linaro.org
12012 S:      Maintained
12013 F:      drivers/tee/optee/
12014
12015 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12016 M:      Sumit Garg <sumit.garg@linaro.org>
12017 L:      tee-dev@lists.linaro.org
12018 S:      Maintained
12019 F:      drivers/char/hw_random/optee-rng.c
12020
12021 OPA-VNIC DRIVER
12022 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12023 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12024 L:      linux-rdma@vger.kernel.org
12025 S:      Supported
12026 F:      drivers/infiniband/ulp/opa_vnic
12027
12028 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12029 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12030 M:      Frank Rowand <frowand.list@gmail.com>
12031 L:      devicetree@vger.kernel.org
12032 S:      Maintained
12033 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12034 F:      Documentation/devicetree/overlay-notes.txt
12035 F:      drivers/of/overlay.c
12036 F:      drivers/of/resolver.c
12037 K:      of_overlay_notifier_
12038
12039 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12040 M:      Rob Herring <robh+dt@kernel.org>
12041 M:      Frank Rowand <frowand.list@gmail.com>
12042 L:      devicetree@vger.kernel.org
12043 W:      http://www.devicetree.org/
12044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12045 S:      Maintained
12046 F:      drivers/of/
12047 F:      include/linux/of*.h
12048 F:      scripts/dtc/
12049 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12050
12051 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12052 M:      Rob Herring <robh+dt@kernel.org>
12053 M:      Mark Rutland <mark.rutland@arm.com>
12054 L:      devicetree@vger.kernel.org
12055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12056 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12057 S:      Maintained
12058 F:      Documentation/devicetree/
12059 F:      arch/*/boot/dts/
12060 F:      include/dt-bindings/
12061
12062 OPENCORES I2C BUS DRIVER
12063 M:      Peter Korsgaard <peter@korsgaard.com>
12064 M:      Andrew Lunn <andrew@lunn.ch>
12065 L:      linux-i2c@vger.kernel.org
12066 S:      Maintained
12067 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12068 F:      Documentation/i2c/busses/i2c-ocores.rst
12069 F:      drivers/i2c/busses/i2c-ocores.c
12070 F:      include/linux/platform_data/i2c-ocores.h
12071
12072 OPENRISC ARCHITECTURE
12073 M:      Jonas Bonn <jonas@southpole.se>
12074 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12075 M:      Stafford Horne <shorne@gmail.com>
12076 T:      git git://github.com/openrisc/linux.git
12077 L:      openrisc@lists.librecores.org
12078 W:      http://openrisc.io
12079 S:      Maintained
12080 F:      Documentation/devicetree/bindings/openrisc/
12081 F:      Documentation/openrisc/
12082 F:      arch/openrisc/
12083 F:      drivers/irqchip/irq-ompic.c
12084 F:      drivers/irqchip/irq-or1k-*
12085
12086 OPENVSWITCH
12087 M:      Pravin B Shelar <pshelar@ovn.org>
12088 L:      netdev@vger.kernel.org
12089 L:      dev@openvswitch.org
12090 W:      http://openvswitch.org
12091 S:      Maintained
12092 F:      net/openvswitch/
12093 F:      include/uapi/linux/openvswitch.h
12094
12095 OPERATING PERFORMANCE POINTS (OPP)
12096 M:      Viresh Kumar <vireshk@kernel.org>
12097 M:      Nishanth Menon <nm@ti.com>
12098 M:      Stephen Boyd <sboyd@kernel.org>
12099 L:      linux-pm@vger.kernel.org
12100 S:      Maintained
12101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12102 F:      drivers/opp/
12103 F:      include/linux/pm_opp.h
12104 F:      Documentation/power/opp.rst
12105 F:      Documentation/devicetree/bindings/opp/
12106
12107 OPL4 DRIVER
12108 M:      Clemens Ladisch <clemens@ladisch.de>
12109 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12111 S:      Maintained
12112 F:      sound/drivers/opl4/
12113
12114 OPROFILE
12115 M:      Robert Richter <rric@kernel.org>
12116 L:      oprofile-list@lists.sf.net
12117 S:      Maintained
12118 F:      arch/*/include/asm/oprofile*.h
12119 F:      arch/*/oprofile/
12120 F:      drivers/oprofile/
12121 F:      include/linux/oprofile.h
12122
12123 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12124 M:      Mark Fasheh <mark@fasheh.com>
12125 M:      Joel Becker <jlbec@evilplan.org>
12126 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12127 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12128 W:      http://ocfs2.wiki.kernel.org
12129 S:      Supported
12130 F:      Documentation/filesystems/ocfs2.txt
12131 F:      Documentation/filesystems/dlmfs.txt
12132 F:      fs/ocfs2/
12133
12134 ORANGEFS FILESYSTEM
12135 M:      Mike Marshall <hubcap@omnibond.com>
12136 R:      Martin Brandenburg <martin@omnibond.com>
12137 L:      devel@lists.orangefs.org
12138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12139 S:      Supported
12140 F:      fs/orangefs/
12141 F:      Documentation/filesystems/orangefs.txt
12142
12143 ORINOCO DRIVER
12144 L:      linux-wireless@vger.kernel.org
12145 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12146 W:      http://www.nongnu.org/orinoco/
12147 S:      Orphan
12148 F:      drivers/net/wireless/intersil/orinoco/
12149
12150 OV2659 OMNIVISION SENSOR DRIVER
12151 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12152 L:      linux-media@vger.kernel.org
12153 W:      https://linuxtv.org
12154 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12155 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12156 S:      Maintained
12157 F:      drivers/media/i2c/ov2659.c
12158 F:      include/media/i2c/ov2659.h
12159
12160 OVERLAY FILESYSTEM
12161 M:      Miklos Szeredi <miklos@szeredi.hu>
12162 L:      linux-unionfs@vger.kernel.org
12163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12164 S:      Supported
12165 F:      fs/overlayfs/
12166 F:      Documentation/filesystems/overlayfs.txt
12167
12168 P54 WIRELESS DRIVER
12169 M:      Christian Lamparter <chunkeey@googlemail.com>
12170 L:      linux-wireless@vger.kernel.org
12171 W:      http://wireless.kernel.org/en/users/Drivers/p54
12172 S:      Maintained
12173 F:      drivers/net/wireless/intersil/p54/
12174
12175 PA SEMI ETHERNET DRIVER
12176 L:      netdev@vger.kernel.org
12177 S:      Orphan
12178 F:      drivers/net/ethernet/pasemi/*
12179
12180 PA SEMI SMBUS DRIVER
12181 L:      linux-i2c@vger.kernel.org
12182 S:      Orphan
12183 F:      drivers/i2c/busses/i2c-pasemi.c
12184
12185 PACKING
12186 M:      Vladimir Oltean <olteanv@gmail.com>
12187 L:      netdev@vger.kernel.org
12188 S:      Supported
12189 F:      lib/packing.c
12190 F:      include/linux/packing.h
12191 F:      Documentation/core-api/packing.rst
12192
12193 PADATA PARALLEL EXECUTION MECHANISM
12194 M:      Steffen Klassert <steffen.klassert@secunet.com>
12195 L:      linux-crypto@vger.kernel.org
12196 S:      Maintained
12197 F:      kernel/padata.c
12198 F:      include/linux/padata.h
12199 F:      Documentation/padata.txt
12200
12201 PAGE POOL
12202 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12203 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12204 L:      netdev@vger.kernel.org
12205 S:      Supported
12206 F:      net/core/page_pool.c
12207 F:      include/net/page_pool.h
12208
12209 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12210 M:      Harald Welte <laforge@gnumonks.org>
12211 L:      platform-driver-x86@vger.kernel.org
12212 S:      Maintained
12213 F:      drivers/platform/x86/panasonic-laptop.c
12214
12215 PARALLEL LCD/KEYPAD PANEL DRIVER
12216 M:      Willy Tarreau <willy@haproxy.com>
12217 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12218 S:      Odd Fixes
12219 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12220 F:      drivers/auxdisplay/panel.c
12221
12222 PARALLEL PORT SUBSYSTEM
12223 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12224 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12225 L:      linux-parport@lists.infradead.org (subscribers-only)
12226 S:      Maintained
12227 F:      drivers/parport/
12228 F:      include/linux/parport*.h
12229 F:      drivers/char/ppdev.c
12230 F:      include/uapi/linux/ppdev.h
12231 F:      Documentation/driver-api/parport*.rst
12232
12233 PARAVIRT_OPS INTERFACE
12234 M:      Juergen Gross <jgross@suse.com>
12235 M:      Thomas Hellstrom <thellstrom@vmware.com>
12236 M:      "VMware, Inc." <pv-drivers@vmware.com>
12237 L:      virtualization@lists.linux-foundation.org
12238 S:      Supported
12239 F:      Documentation/virt/paravirt_ops.rst
12240 F:      arch/*/kernel/paravirt*
12241 F:      arch/*/include/asm/paravirt*.h
12242 F:      include/linux/hypervisor.h
12243
12244 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12245 M:      Tim Waugh <tim@cyberelk.net>
12246 L:      linux-parport@lists.infradead.org (subscribers-only)
12247 S:      Maintained
12248 F:      Documentation/admin-guide/blockdev/paride.rst
12249 F:      drivers/block/paride/
12250
12251 PARISC ARCHITECTURE
12252 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12253 M:      Helge Deller <deller@gmx.de>
12254 L:      linux-parisc@vger.kernel.org
12255 W:      http://www.parisc-linux.org/
12256 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12259 S:      Maintained
12260 F:      arch/parisc/
12261 F:      Documentation/parisc/
12262 F:      drivers/parisc/
12263 F:      drivers/char/agp/parisc-agp.c
12264 F:      drivers/input/serio/gscps2.c
12265 F:      drivers/parport/parport_gsc.*
12266 F:      drivers/tty/serial/8250/8250_gsc.c
12267 F:      drivers/video/fbdev/sti*
12268 F:      drivers/video/console/sti*
12269 F:      drivers/video/logo/logo_parisc*
12270
12271 PARMAN
12272 M:      Jiri Pirko <jiri@mellanox.com>
12273 L:      netdev@vger.kernel.org
12274 S:      Supported
12275 F:      lib/parman.c
12276 F:      lib/test_parman.c
12277 F:      include/linux/parman.h
12278
12279 PC ENGINES APU BOARD DRIVER
12280 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12281 S:      Maintained
12282 F:      drivers/platform/x86/pcengines-apuv2.c
12283
12284 PC87360 HARDWARE MONITORING DRIVER
12285 M:      Jim Cromie <jim.cromie@gmail.com>
12286 L:      linux-hwmon@vger.kernel.org
12287 S:      Maintained
12288 F:      Documentation/hwmon/pc87360.rst
12289 F:      drivers/hwmon/pc87360.c
12290
12291 PC8736x GPIO DRIVER
12292 M:      Jim Cromie <jim.cromie@gmail.com>
12293 S:      Maintained
12294 F:      drivers/char/pc8736x_gpio.c
12295
12296 PC87427 HARDWARE MONITORING DRIVER
12297 M:      Jean Delvare <jdelvare@suse.com>
12298 L:      linux-hwmon@vger.kernel.org
12299 S:      Maintained
12300 F:      Documentation/hwmon/pc87427.rst
12301 F:      drivers/hwmon/pc87427.c
12302
12303 PCA9532 LED DRIVER
12304 M:      Riku Voipio <riku.voipio@iki.fi>
12305 S:      Maintained
12306 F:      drivers/leds/leds-pca9532.c
12307 F:      include/linux/leds-pca9532.h
12308
12309 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12310 M:      Guenter Roeck <linux@roeck-us.net>
12311 L:      linux-i2c@vger.kernel.org
12312 S:      Maintained
12313 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12314
12315 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12316 M:      Khalid Aziz <khalid@gonehiking.org>
12317 S:      Maintained
12318 F:      drivers/firmware/pcdp.*
12319
12320 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12321 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12322 L:      linux-pci@vger.kernel.org
12323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12324 S:      Maintained
12325 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12326 F:      drivers/pci/controller/pci-aardvark.c
12327
12328 PCI DRIVER FOR ALTERA PCIE IP
12329 M:      Ley Foon Tan <lftan@altera.com>
12330 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12331 L:      linux-pci@vger.kernel.org
12332 S:      Supported
12333 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12334 F:      drivers/pci/controller/pcie-altera.c
12335
12336 PCI DRIVER FOR APPLIEDMICRO XGENE
12337 M:      Toan Le <toan@os.amperecomputing.com>
12338 L:      linux-pci@vger.kernel.org
12339 L:      linux-arm-kernel@lists.infradead.org
12340 S:      Maintained
12341 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12342 F:      drivers/pci/controller/pci-xgene.c
12343
12344 PCI DRIVER FOR ARM VERSATILE PLATFORM
12345 M:      Rob Herring <robh@kernel.org>
12346 L:      linux-pci@vger.kernel.org
12347 L:      linux-arm-kernel@lists.infradead.org
12348 S:      Maintained
12349 F:      Documentation/devicetree/bindings/pci/versatile.txt
12350 F:      drivers/pci/controller/pci-versatile.c
12351
12352 PCI DRIVER FOR ARMADA 8K
12353 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12354 L:      linux-pci@vger.kernel.org
12355 L:      linux-arm-kernel@lists.infradead.org
12356 S:      Maintained
12357 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12358 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12359
12360 PCI DRIVER FOR CADENCE PCIE IP
12361 M:      Tom Joseph <tjoseph@cadence.com>
12362 L:      linux-pci@vger.kernel.org
12363 S:      Maintained
12364 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
12365 F:      drivers/pci/controller/pcie-cadence*
12366
12367 PCI DRIVER FOR FREESCALE LAYERSCAPE
12368 M:      Minghuan Lian <minghuan.Lian@nxp.com>
12369 M:      Mingkai Hu <mingkai.hu@nxp.com>
12370 M:      Roy Zang <roy.zang@nxp.com>
12371 L:      linuxppc-dev@lists.ozlabs.org
12372 L:      linux-pci@vger.kernel.org
12373 L:      linux-arm-kernel@lists.infradead.org
12374 S:      Maintained
12375 F:      drivers/pci/controller/dwc/*layerscape*
12376
12377 PCI DRIVER FOR GENERIC OF HOSTS
12378 M:      Will Deacon <will@kernel.org>
12379 L:      linux-pci@vger.kernel.org
12380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12381 S:      Maintained
12382 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
12383 F:      drivers/pci/controller/pci-host-common.c
12384 F:      drivers/pci/controller/pci-host-generic.c
12385
12386 PCI DRIVER FOR IMX6
12387 M:      Richard Zhu <hongxing.zhu@nxp.com>
12388 M:      Lucas Stach <l.stach@pengutronix.de>
12389 L:      linux-pci@vger.kernel.org
12390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12391 S:      Maintained
12392 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12393 F:      drivers/pci/controller/dwc/*imx6*
12394
12395 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12396 M:      Keith Busch <keith.busch@intel.com>
12397 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12398 L:      linux-pci@vger.kernel.org
12399 S:      Supported
12400 F:      drivers/pci/controller/vmd.c
12401
12402 PCI DRIVER FOR MICROSEMI SWITCHTEC
12403 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
12404 M:      Logan Gunthorpe <logang@deltatee.com>
12405 L:      linux-pci@vger.kernel.org
12406 S:      Maintained
12407 F:      Documentation/driver-api/switchtec.rst
12408 F:      Documentation/ABI/testing/sysfs-class-switchtec
12409 F:      drivers/pci/switch/switchtec*
12410 F:      include/uapi/linux/switchtec_ioctl.h
12411 F:      include/linux/switchtec.h
12412 F:      drivers/ntb/hw/mscc/
12413
12414 PCI DRIVER FOR MOBIVEIL PCIE IP
12415 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
12416 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12417 L:      linux-pci@vger.kernel.org
12418 S:      Supported
12419 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12420 F:      drivers/pci/controller/pcie-mobiveil.c
12421
12422 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12423 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12424 M:      Jason Cooper <jason@lakedaemon.net>
12425 L:      linux-pci@vger.kernel.org
12426 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12427 S:      Maintained
12428 F:      drivers/pci/controller/*mvebu*
12429
12430 PCI DRIVER FOR NVIDIA TEGRA
12431 M:      Thierry Reding <thierry.reding@gmail.com>
12432 L:      linux-tegra@vger.kernel.org
12433 L:      linux-pci@vger.kernel.org
12434 S:      Supported
12435 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12436 F:      drivers/pci/controller/pci-tegra.c
12437
12438 PCI DRIVER FOR RENESAS R-CAR
12439 M:      Simon Horman <horms@verge.net.au>
12440 L:      linux-pci@vger.kernel.org
12441 L:      linux-renesas-soc@vger.kernel.org
12442 S:      Maintained
12443 F:      drivers/pci/controller/*rcar*
12444
12445 PCI DRIVER FOR SAMSUNG EXYNOS
12446 M:      Jingoo Han <jingoohan1@gmail.com>
12447 L:      linux-pci@vger.kernel.org
12448 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12449 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12450 S:      Maintained
12451 F:      drivers/pci/controller/dwc/pci-exynos.c
12452
12453 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12454 M:      Jingoo Han <jingoohan1@gmail.com>
12455 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
12456 L:      linux-pci@vger.kernel.org
12457 S:      Maintained
12458 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12459 F:      drivers/pci/controller/dwc/*designware*
12460
12461 PCI DRIVER FOR TI DRA7XX
12462 M:      Kishon Vijay Abraham I <kishon@ti.com>
12463 L:      linux-omap@vger.kernel.org
12464 L:      linux-pci@vger.kernel.org
12465 S:      Supported
12466 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12467 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12468
12469 PCI DRIVER FOR TI KEYSTONE
12470 M:      Murali Karicheri <m-karicheri2@ti.com>
12471 L:      linux-pci@vger.kernel.org
12472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12473 S:      Maintained
12474 F:      drivers/pci/controller/dwc/pci-keystone.c
12475
12476 PCI ENDPOINT SUBSYSTEM
12477 M:      Kishon Vijay Abraham I <kishon@ti.com>
12478 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12479 L:      linux-pci@vger.kernel.org
12480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12481 S:      Supported
12482 F:      drivers/pci/endpoint/
12483 F:      drivers/misc/pci_endpoint_test.c
12484 F:      tools/pci/
12485
12486 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12487 M:      Russell Currey <ruscur@russell.cc>
12488 M:      Sam Bobroff <sbobroff@linux.ibm.com>
12489 M:      Oliver O'Halloran <oohall@gmail.com>
12490 L:      linuxppc-dev@lists.ozlabs.org
12491 S:      Supported
12492 F:      Documentation/PCI/pci-error-recovery.rst
12493 F:      drivers/pci/pcie/aer.c
12494 F:      drivers/pci/pcie/dpc.c
12495 F:      drivers/pci/pcie/err.c
12496 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
12497 F:      arch/powerpc/kernel/eeh*.c
12498 F:      arch/powerpc/platforms/*/eeh*.c
12499 F:      arch/powerpc/include/*/eeh*.h
12500
12501 PCI ERROR RECOVERY
12502 M:      Linas Vepstas <linasvepstas@gmail.com>
12503 L:      linux-pci@vger.kernel.org
12504 S:      Supported
12505 F:      Documentation/PCI/pci-error-recovery.rst
12506
12507 PCI MSI DRIVER FOR ALTERA MSI IP
12508 M:      Ley Foon Tan <lftan@altera.com>
12509 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12510 L:      linux-pci@vger.kernel.org
12511 S:      Supported
12512 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
12513 F:      drivers/pci/controller/pcie-altera-msi.c
12514
12515 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
12516 M:      Toan Le <toan@os.amperecomputing.com>
12517 L:      linux-pci@vger.kernel.org
12518 L:      linux-arm-kernel@lists.infradead.org
12519 S:      Maintained
12520 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
12521 F:      drivers/pci/controller/pci-xgene-msi.c
12522
12523 PCI SUBSYSTEM
12524 M:      Bjorn Helgaas <bhelgaas@google.com>
12525 L:      linux-pci@vger.kernel.org
12526 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
12528 S:      Supported
12529 F:      Documentation/devicetree/bindings/pci/
12530 F:      Documentation/PCI/
12531 F:      drivers/acpi/pci*
12532 F:      drivers/pci/
12533 F:      include/asm-generic/pci*
12534 F:      include/linux/pci*
12535 F:      include/linux/of_pci.h
12536 F:      include/uapi/linux/pci*
12537 F:      lib/pci*
12538 F:      arch/x86/pci/
12539 F:      arch/x86/kernel/quirks.c
12540 F:      arch/x86/kernel/early-quirks.c
12541
12542 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
12543 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12544 L:      linux-pci@vger.kernel.org
12545 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
12547 S:      Supported
12548 F:      drivers/pci/controller/
12549
12550 PCIE DRIVER FOR ANNAPURNA LABS
12551 M:      Jonathan Chocron <jonnyc@amazon.com>
12552 L:      linux-pci@vger.kernel.org
12553 S:      Maintained
12554 F:      drivers/pci/controller/dwc/pcie-al.c
12555
12556 PCIE DRIVER FOR AMLOGIC MESON
12557 M:      Yue Wang <yue.wang@Amlogic.com>
12558 L:      linux-pci@vger.kernel.org
12559 L:      linux-amlogic@lists.infradead.org
12560 S:      Maintained
12561 F:      drivers/pci/controller/dwc/pci-meson.c
12562
12563 PCIE DRIVER FOR AXIS ARTPEC
12564 M:      Jesper Nilsson <jesper.nilsson@axis.com>
12565 L:      linux-arm-kernel@axis.com
12566 L:      linux-pci@vger.kernel.org
12567 S:      Maintained
12568 F:      Documentation/devicetree/bindings/pci/axis,artpec*
12569 F:      drivers/pci/controller/dwc/*artpec*
12570
12571 PCIE DRIVER FOR CAVIUM THUNDERX
12572 M:      David Daney <david.daney@cavium.com>
12573 L:      linux-pci@vger.kernel.org
12574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12575 S:      Supported
12576 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
12577 F:      drivers/pci/controller/pci-thunder-*
12578
12579 PCIE DRIVER FOR HISILICON
12580 M:      Zhou Wang <wangzhou1@hisilicon.com>
12581 L:      linux-pci@vger.kernel.org
12582 S:      Maintained
12583 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
12584 F:      drivers/pci/controller/dwc/pcie-hisi.c
12585
12586 PCIE DRIVER FOR HISILICON KIRIN
12587 M:      Xiaowei Song <songxiaowei@hisilicon.com>
12588 M:      Binghui Wang <wangbinghui@hisilicon.com>
12589 L:      linux-pci@vger.kernel.org
12590 S:      Maintained
12591 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
12592 F:      drivers/pci/controller/dwc/pcie-kirin.c
12593
12594 PCIE DRIVER FOR HISILICON STB
12595 M:      Shawn Guo <shawn.guo@linaro.org>
12596 L:      linux-pci@vger.kernel.org
12597 S:      Maintained
12598 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
12599 F:      drivers/pci/controller/dwc/pcie-histb.c
12600
12601 PCIE DRIVER FOR MEDIATEK
12602 M:      Ryder Lee <ryder.lee@mediatek.com>
12603 L:      linux-pci@vger.kernel.org
12604 L:      linux-mediatek@lists.infradead.org
12605 S:      Supported
12606 F:      Documentation/devicetree/bindings/pci/mediatek*
12607 F:      drivers/pci/controller/*mediatek*
12608
12609 PCIE DRIVER FOR QUALCOMM MSM
12610 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
12611 L:      linux-pci@vger.kernel.org
12612 L:      linux-arm-msm@vger.kernel.org
12613 S:      Maintained
12614 F:      drivers/pci/controller/dwc/*qcom*
12615
12616 PCIE DRIVER FOR ROCKCHIP
12617 M:      Shawn Lin <shawn.lin@rock-chips.com>
12618 L:      linux-pci@vger.kernel.org
12619 L:      linux-rockchip@lists.infradead.org
12620 S:      Maintained
12621 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
12622 F:      drivers/pci/controller/pcie-rockchip*
12623
12624 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
12625 M:      Linus Walleij <linus.walleij@linaro.org>
12626 L:      linux-pci@vger.kernel.org
12627 S:      Maintained
12628 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
12629 F:      drivers/pci/controller/pci-v3-semi.c
12630
12631 PCIE DRIVER FOR SOCIONEXT UNIPHIER
12632 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
12633 L:      linux-pci@vger.kernel.org
12634 S:      Maintained
12635 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
12636 F:      drivers/pci/controller/dwc/pcie-uniphier.c
12637
12638 PCIE DRIVER FOR ST SPEAR13XX
12639 M:      Pratyush Anand <pratyush.anand@gmail.com>
12640 L:      linux-pci@vger.kernel.org
12641 S:      Maintained
12642 F:      drivers/pci/controller/dwc/*spear*
12643
12644 PCMCIA SUBSYSTEM
12645 M:      Dominik Brodowski <linux@dominikbrodowski.net>
12646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
12647 S:      Odd Fixes
12648 F:      Documentation/pcmcia/
12649 F:      tools/pcmcia/
12650 F:      drivers/pcmcia/
12651 F:      include/pcmcia/
12652
12653 PCNET32 NETWORK DRIVER
12654 M:      Don Fry <pcnet32@frontier.com>
12655 L:      netdev@vger.kernel.org
12656 S:      Maintained
12657 F:      drivers/net/ethernet/amd/pcnet32.c
12658
12659 PCRYPT PARALLEL CRYPTO ENGINE
12660 M:      Steffen Klassert <steffen.klassert@secunet.com>
12661 L:      linux-crypto@vger.kernel.org
12662 S:      Maintained
12663 F:      crypto/pcrypt.c
12664 F:      include/crypto/pcrypt.h
12665
12666 PEAQ WMI HOTKEYS DRIVER
12667 M:      Hans de Goede <hdegoede@redhat.com>
12668 L:      platform-driver-x86@vger.kernel.org
12669 S:      Maintained
12670 F:      drivers/platform/x86/peaq-wmi.c
12671
12672 PENSANDO ETHERNET DRIVERS
12673 M:      Shannon Nelson <snelson@pensando.io>
12674 M:      Pensando Drivers <drivers@pensando.io>
12675 L:      netdev@vger.kernel.org
12676 S:      Supported
12677 F:      Documentation/networking/device_drivers/pensando/ionic.rst
12678 F:      drivers/net/ethernet/pensando/
12679
12680 PER-CPU MEMORY ALLOCATOR
12681 M:      Dennis Zhou <dennis@kernel.org>
12682 M:      Tejun Heo <tj@kernel.org>
12683 M:      Christoph Lameter <cl@linux.com>
12684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
12685 S:      Maintained
12686 F:      include/linux/percpu*.h
12687 F:      mm/percpu*.c
12688 F:      arch/*/include/asm/percpu.h
12689
12690 PER-TASK DELAY ACCOUNTING
12691 M:      Balbir Singh <bsingharora@gmail.com>
12692 S:      Maintained
12693 F:      include/linux/delayacct.h
12694 F:      kernel/delayacct.c
12695
12696 PERFORMANCE EVENTS SUBSYSTEM
12697 M:      Peter Zijlstra <peterz@infradead.org>
12698 M:      Ingo Molnar <mingo@redhat.com>
12699 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
12700 R:      Mark Rutland <mark.rutland@arm.com>
12701 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
12702 R:      Jiri Olsa <jolsa@redhat.com>
12703 R:      Namhyung Kim <namhyung@kernel.org>
12704 L:      linux-kernel@vger.kernel.org
12705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
12706 S:      Supported
12707 F:      kernel/events/*
12708 F:      include/linux/perf_event.h
12709 F:      include/uapi/linux/perf_event.h
12710 F:      arch/*/kernel/perf_event*.c
12711 F:      arch/*/kernel/*/perf_event*.c
12712 F:      arch/*/kernel/*/*/perf_event*.c
12713 F:      arch/*/include/asm/perf_event.h
12714 F:      arch/*/kernel/perf_callchain.c
12715 F:      arch/*/events/*
12716 F:      arch/*/events/*/*
12717 F:      tools/perf/
12718
12719 PERSONALITY HANDLING
12720 M:      Christoph Hellwig <hch@infradead.org>
12721 L:      linux-abi-devel@lists.sourceforge.net
12722 S:      Maintained
12723 F:      include/linux/personality.h
12724 F:      include/uapi/linux/personality.h
12725
12726 PHOENIX RC FLIGHT CONTROLLER ADAPTER
12727 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12728 L:      linux-input@vger.kernel.org
12729 S:      Maintained
12730 F:      Documentation/input/devices/pxrc.rst
12731 F:      drivers/input/joystick/pxrc.c
12732
12733 PHONET PROTOCOL
12734 M:      Remi Denis-Courmont <courmisch@gmail.com>
12735 S:      Supported
12736 F:      Documentation/networking/phonet.txt
12737 F:      include/linux/phonet.h
12738 F:      include/net/phonet/
12739 F:      include/uapi/linux/phonet.h
12740 F:      net/phonet/
12741
12742 PHRAM MTD DRIVER
12743 M:      Joern Engel <joern@lazybastard.org>
12744 L:      linux-mtd@lists.infradead.org
12745 S:      Maintained
12746 F:      drivers/mtd/devices/phram.c
12747
12748 PICOLCD HID DRIVER
12749 M:      Bruno Prémont <bonbons@linux-vserver.org>
12750 L:      linux-input@vger.kernel.org
12751 S:      Maintained
12752 F:      drivers/hid/hid-picolcd*
12753
12754 PICOXCELL SUPPORT
12755 M:      Jamie Iles <jamie@jamieiles.com>
12756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12757 T:      git git://github.com/jamieiles/linux-2.6-ji.git
12758 S:      Supported
12759 F:      arch/arm/boot/dts/picoxcell*
12760 F:      arch/arm/mach-picoxcell/
12761 F:      drivers/crypto/picoxcell*
12762
12763 PIDFD API
12764 M:      Christian Brauner <christian@brauner.io>
12765 L:      linux-kernel@vger.kernel.org
12766 S:      Maintained
12767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
12768 F:      samples/pidfd/
12769 F:      tools/testing/selftests/pidfd/
12770 K:      (?i)pidfd
12771 K:      (?i)clone3
12772 K:      \b(clone_args|kernel_clone_args)\b
12773
12774 PIN CONTROL SUBSYSTEM
12775 M:      Linus Walleij <linus.walleij@linaro.org>
12776 L:      linux-gpio@vger.kernel.org
12777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
12778 S:      Maintained
12779 F:      Documentation/devicetree/bindings/pinctrl/
12780 F:      Documentation/driver-api/pinctl.rst
12781 F:      drivers/pinctrl/
12782 F:      include/linux/pinctrl/
12783
12784 PIN CONTROLLER - MICROCHIP AT91
12785 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12787 L:      linux-gpio@vger.kernel.org
12788 S:      Supported
12789 F:      drivers/pinctrl/pinctrl-at91*
12790 F:      drivers/gpio/gpio-sama5d2-piobu.c
12791
12792 PIN CONTROLLER - FREESCALE
12793 M:      Dong Aisheng <aisheng.dong@nxp.com>
12794 M:      Fabio Estevam <festevam@gmail.com>
12795 M:      Shawn Guo <shawnguo@kernel.org>
12796 M:      Stefan Agner <stefan@agner.ch>
12797 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
12798 L:      linux-gpio@vger.kernel.org
12799 S:      Maintained
12800 F:      drivers/pinctrl/freescale/
12801 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
12802
12803 PIN CONTROLLER - INTEL
12804 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
12805 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
12806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
12807 S:      Maintained
12808 F:      drivers/pinctrl/intel/
12809
12810 PIN CONTROLLER - MEDIATEK
12811 M:      Sean Wang <sean.wang@kernel.org>
12812 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12813 S:      Maintained
12814 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
12815 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
12816 F:      drivers/pinctrl/mediatek/
12817
12818 PIN CONTROLLER - QUALCOMM
12819 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
12820 S:      Maintained
12821 L:      linux-arm-msm@vger.kernel.org
12822 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
12823 F:      drivers/pinctrl/qcom/
12824
12825 PIN CONTROLLER - RENESAS
12826 M:      Geert Uytterhoeven <geert+renesas@glider.be>
12827 L:      linux-renesas-soc@vger.kernel.org
12828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
12829 S:      Maintained
12830 F:      drivers/pinctrl/pinctrl-rz*
12831 F:      drivers/pinctrl/sh-pfc/
12832
12833 PIN CONTROLLER - SAMSUNG
12834 M:      Tomasz Figa <tomasz.figa@gmail.com>
12835 M:      Krzysztof Kozlowski <krzk@kernel.org>
12836 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12838 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12839 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
12840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
12841 S:      Maintained
12842 F:      drivers/pinctrl/samsung/
12843 F:      include/dt-bindings/pinctrl/samsung.h
12844 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
12845
12846 PIN CONTROLLER - SINGLE
12847 M:      Tony Lindgren <tony@atomide.com>
12848 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
12849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12850 L:      linux-omap@vger.kernel.org
12851 S:      Maintained
12852 F:      drivers/pinctrl/pinctrl-single.c
12853
12854 PIN CONTROLLER - ST SPEAR
12855 M:      Viresh Kumar <vireshk@kernel.org>
12856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12857 W:      http://www.st.com/spear
12858 S:      Maintained
12859 F:      drivers/pinctrl/spear/
12860
12861 PISTACHIO SOC SUPPORT
12862 M:      James Hartley <james.hartley@sondrel.com>
12863 L:      linux-mips@vger.kernel.org
12864 S:      Odd Fixes
12865 F:      arch/mips/pistachio/
12866 F:      arch/mips/include/asm/mach-pistachio/
12867 F:      arch/mips/boot/dts/img/pistachio*
12868 F:      arch/mips/configs/pistachio*_defconfig
12869
12870 PKTCDVD DRIVER
12871 S:      Orphan
12872 M:      linux-block@vger.kernel.org
12873 F:      drivers/block/pktcdvd.c
12874 F:      include/linux/pktcdvd.h
12875 F:      include/uapi/linux/pktcdvd.h
12876
12877 PKUNITY SOC DRIVERS
12878 M:      Guan Xuetao <gxt@pku.edu.cn>
12879 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
12880 S:      Maintained
12881 T:      git git://github.com/gxt/linux.git
12882 F:      drivers/input/serio/i8042-unicore32io.h
12883 F:      drivers/i2c/busses/i2c-puv3.c
12884 F:      drivers/video/fbdev/fb-puv3.c
12885 F:      drivers/rtc/rtc-puv3.c
12886
12887 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
12888 M:      Tomasz Duszynski <tduszyns@gmail.com>
12889 S:      Maintained
12890 F:      drivers/iio/chemical/pms7003.c
12891 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
12892
12893 PMBUS HARDWARE MONITORING DRIVERS
12894 M:      Guenter Roeck <linux@roeck-us.net>
12895 L:      linux-hwmon@vger.kernel.org
12896 W:      http://hwmon.wiki.kernel.org/
12897 W:      http://www.roeck-us.net/linux/drivers/
12898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
12899 S:      Maintained
12900 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
12901 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
12902 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
12903 F:      Documentation/hwmon/adm1275.rst
12904 F:      Documentation/hwmon/ibm-cffps.rst
12905 F:      Documentation/hwmon/ir35221.rst
12906 F:      Documentation/hwmon/lm25066.rst
12907 F:      Documentation/hwmon/ltc2978.rst
12908 F:      Documentation/hwmon/ltc3815.rst
12909 F:      Documentation/hwmon/max16064.rst
12910 F:      Documentation/hwmon/max20751.rst
12911 F:      Documentation/hwmon/max31785.rst
12912 F:      Documentation/hwmon/max34440.rst
12913 F:      Documentation/hwmon/max8688.rst
12914 F:      Documentation/hwmon/pmbus.rst
12915 F:      Documentation/hwmon/pmbus-core.rst
12916 F:      Documentation/hwmon/tps40422.rst
12917 F:      Documentation/hwmon/ucd9000.rst
12918 F:      Documentation/hwmon/ucd9200.rst
12919 F:      Documentation/hwmon/zl6100.rst
12920 F:      drivers/hwmon/pmbus/
12921 F:      include/linux/pmbus.h
12922
12923 PMC SIERRA MaxRAID DRIVER
12924 L:      linux-scsi@vger.kernel.org
12925 W:      http://www.pmc-sierra.com/
12926 S:      Orphan
12927 F:      drivers/scsi/pmcraid.*
12928
12929 PMC SIERRA PM8001 DRIVER
12930 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
12931 L:      linux-scsi@vger.kernel.org
12932 S:      Supported
12933 F:      drivers/scsi/pm8001/
12934
12935 PNP SUPPORT
12936 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
12937 S:      Maintained
12938 F:      drivers/pnp/
12939
12940 PNI RM3100 IIO DRIVER
12941 M:      Song Qiang <songqiang1304521@gmail.com>
12942 L:      linux-iio@vger.kernel.org
12943 S:      Maintained
12944 F:      drivers/iio/magnetometer/rm3100*
12945 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
12946
12947 POSIX CLOCKS and TIMERS
12948 M:      Thomas Gleixner <tglx@linutronix.de>
12949 L:      linux-kernel@vger.kernel.org
12950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
12951 S:      Maintained
12952 F:      fs/timerfd.c
12953 F:      include/linux/timer*
12954 F:      kernel/time/*timer*
12955
12956 POWER MANAGEMENT CORE
12957 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
12958 L:      linux-pm@vger.kernel.org
12959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
12960 B:      https://bugzilla.kernel.org
12961 S:      Supported
12962 F:      drivers/base/power/
12963 F:      include/linux/pm.h
12964 F:      include/linux/pm_*
12965 F:      include/linux/powercap.h
12966 F:      include/linux/intel_rapl.h
12967 F:      drivers/powercap/
12968 F:      kernel/configs/nopm.config
12969
12970 POWER STATE COORDINATION INTERFACE (PSCI)
12971 M:      Mark Rutland <mark.rutland@arm.com>
12972 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12973 L:      linux-arm-kernel@lists.infradead.org
12974 S:      Maintained
12975 F:      drivers/firmware/psci/
12976 F:      include/linux/psci.h
12977 F:      include/uapi/linux/psci.h
12978
12979 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
12980 M:      Sebastian Reichel <sre@kernel.org>
12981 L:      linux-pm@vger.kernel.org
12982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
12983 S:      Maintained
12984 F:      Documentation/ABI/testing/sysfs-class-power
12985 F:      Documentation/devicetree/bindings/power/supply/
12986 F:      include/linux/power_supply.h
12987 F:      drivers/power/supply/
12988
12989 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
12990 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
12991 L:      linuxppc-dev@lists.ozlabs.org
12992 S:      Maintained
12993 F:      drivers/char/powernv-op-panel.c
12994
12995 PPP OVER ATM (RFC 2364)
12996 M:      Mitchell Blank Jr <mitch@sfgoth.com>
12997 S:      Maintained
12998 F:      net/atm/pppoatm.c
12999 F:      include/uapi/linux/atmppp.h
13000
13001 PPP OVER ETHERNET
13002 M:      Michal Ostrowski <mostrows@earthlink.net>
13003 S:      Maintained
13004 F:      drivers/net/ppp/pppoe.c
13005 F:      drivers/net/ppp/pppox.c
13006
13007 PPP OVER L2TP
13008 M:      James Chapman <jchapman@katalix.com>
13009 S:      Maintained
13010 F:      net/l2tp/l2tp_ppp.c
13011 F:      include/linux/if_pppol2tp.h
13012 F:      include/uapi/linux/if_pppol2tp.h
13013
13014 PPP PROTOCOL DRIVERS AND COMPRESSORS
13015 M:      Paul Mackerras <paulus@samba.org>
13016 L:      linux-ppp@vger.kernel.org
13017 S:      Maintained
13018 F:      drivers/net/ppp/ppp_*
13019
13020 PPS SUPPORT
13021 M:      Rodolfo Giometti <giometti@enneenne.com>
13022 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13023 L:      linuxpps@ml.enneenne.com (subscribers-only)
13024 S:      Maintained
13025 F:      Documentation/driver-api/pps.rst
13026 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13027 F:      Documentation/ABI/testing/sysfs-pps
13028 F:      drivers/pps/
13029 F:      include/linux/pps*.h
13030 F:      include/uapi/linux/pps.h
13031
13032 PPTP DRIVER
13033 M:      Dmitry Kozlov <xeb@mail.ru>
13034 L:      netdev@vger.kernel.org
13035 S:      Maintained
13036 F:      drivers/net/ppp/pptp.c
13037 W:      http://sourceforge.net/projects/accel-pptp
13038
13039 PRINTK
13040 M:      Petr Mladek <pmladek@suse.com>
13041 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13042 R:      Steven Rostedt <rostedt@goodmis.org>
13043 S:      Maintained
13044 F:      kernel/printk/
13045 F:      include/linux/printk.h
13046
13047 PRISM54 WIRELESS DRIVER
13048 M:      Luis Chamberlain <mcgrof@kernel.org>
13049 L:      linux-wireless@vger.kernel.org
13050 W:      http://wireless.kernel.org/en/users/Drivers/p54
13051 S:      Obsolete
13052 F:      drivers/net/wireless/intersil/prism54/
13053
13054 PROC FILESYSTEM
13055 R:      Alexey Dobriyan <adobriyan@gmail.com>
13056 L:      linux-kernel@vger.kernel.org
13057 L:      linux-fsdevel@vger.kernel.org
13058 S:      Maintained
13059 F:      fs/proc/
13060 F:      include/linux/proc_fs.h
13061 F:      tools/testing/selftests/proc/
13062 F:      Documentation/filesystems/proc.txt
13063
13064 PROC SYSCTL
13065 M:      Luis Chamberlain <mcgrof@kernel.org>
13066 M:      Kees Cook <keescook@chromium.org>
13067 L:      linux-kernel@vger.kernel.org
13068 L:      linux-fsdevel@vger.kernel.org
13069 S:      Maintained
13070 F:      fs/proc/proc_sysctl.c
13071 F:      include/linux/sysctl.h
13072 F:      kernel/sysctl.c
13073 F:      tools/testing/selftests/sysctl/
13074
13075 PS3 NETWORK SUPPORT
13076 M:      Geoff Levand <geoff@infradead.org>
13077 L:      netdev@vger.kernel.org
13078 L:      linuxppc-dev@lists.ozlabs.org
13079 S:      Maintained
13080 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13081
13082 PS3 PLATFORM SUPPORT
13083 M:      Geoff Levand <geoff@infradead.org>
13084 L:      linuxppc-dev@lists.ozlabs.org
13085 S:      Maintained
13086 F:      arch/powerpc/boot/ps3*
13087 F:      arch/powerpc/include/asm/lv1call.h
13088 F:      arch/powerpc/include/asm/ps3*.h
13089 F:      arch/powerpc/platforms/ps3/
13090 F:      drivers/*/ps3*
13091 F:      drivers/ps3/
13092 F:      drivers/rtc/rtc-ps3.c
13093 F:      drivers/usb/host/*ps3.c
13094 F:      sound/ppc/snd_ps3*
13095
13096 PS3VRAM DRIVER
13097 M:      Jim Paris <jim@jtan.com>
13098 M:      Geoff Levand <geoff@infradead.org>
13099 L:      linuxppc-dev@lists.ozlabs.org
13100 S:      Maintained
13101 F:      drivers/block/ps3vram.c
13102
13103 PSAMPLE PACKET SAMPLING SUPPORT:
13104 M:      Yotam Gigi <yotam.gi@gmail.com>
13105 S:      Maintained
13106 F:      net/psample
13107 F:      include/net/psample.h
13108 F:      include/uapi/linux/psample.h
13109
13110 PSTORE FILESYSTEM
13111 M:      Kees Cook <keescook@chromium.org>
13112 M:      Anton Vorontsov <anton@enomsg.org>
13113 M:      Colin Cross <ccross@android.com>
13114 M:      Tony Luck <tony.luck@intel.com>
13115 S:      Maintained
13116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13117 F:      fs/pstore/
13118 F:      include/linux/pstore*
13119 F:      drivers/firmware/efi/efi-pstore.c
13120 F:      drivers/acpi/apei/erst.c
13121 F:      Documentation/admin-guide/ramoops.rst
13122 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13123 K:      \b(pstore|ramoops)
13124
13125 PTP HARDWARE CLOCK SUPPORT
13126 M:      Richard Cochran <richardcochran@gmail.com>
13127 L:      netdev@vger.kernel.org
13128 S:      Maintained
13129 W:      http://linuxptp.sourceforge.net/
13130 F:      Documentation/ABI/testing/sysfs-ptp
13131 F:      Documentation/driver-api/ptp.rst
13132 F:      drivers/net/phy/dp83640*
13133 F:      drivers/ptp/*
13134 F:      include/linux/ptp_cl*
13135
13136 PTRACE SUPPORT
13137 M:      Oleg Nesterov <oleg@redhat.com>
13138 S:      Maintained
13139 F:      include/asm-generic/syscall.h
13140 F:      include/linux/ptrace.h
13141 F:      include/linux/regset.h
13142 F:      include/linux/tracehook.h
13143 F:      include/uapi/linux/ptrace.h
13144 F:      include/uapi/linux/ptrace.h
13145 F:      kernel/ptrace.c
13146 F:      arch/*/ptrace*.c
13147 F:      arch/*/*/ptrace*.c
13148 F:      arch/*/include/asm/ptrace*.h
13149
13150 PULSE8-CEC DRIVER
13151 M:      Hans Verkuil <hverkuil@xs4all.nl>
13152 L:      linux-media@vger.kernel.org
13153 T:      git git://linuxtv.org/media_tree.git
13154 S:      Maintained
13155 F:      drivers/media/usb/pulse8-cec/*
13156 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13157
13158 PVRUSB2 VIDEO4LINUX DRIVER
13159 M:      Mike Isely <isely@pobox.com>
13160 L:      pvrusb2@isely.net       (subscribers-only)
13161 L:      linux-media@vger.kernel.org
13162 W:      http://www.isely.net/pvrusb2/
13163 T:      git git://linuxtv.org/media_tree.git
13164 S:      Maintained
13165 F:      Documentation/media/v4l-drivers/pvrusb2*
13166 F:      drivers/media/usb/pvrusb2/
13167
13168 PWC WEBCAM DRIVER
13169 M:      Hans Verkuil <hverkuil@xs4all.nl>
13170 L:      linux-media@vger.kernel.org
13171 T:      git git://linuxtv.org/media_tree.git
13172 S:      Odd Fixes
13173 F:      drivers/media/usb/pwc/*
13174 F:      include/trace/events/pwc.h
13175
13176 PWM FAN DRIVER
13177 M:      Kamil Debski <kamil@wypas.org>
13178 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13179 L:      linux-hwmon@vger.kernel.org
13180 S:      Supported
13181 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13182 F:      Documentation/hwmon/pwm-fan.rst
13183 F:      drivers/hwmon/pwm-fan.c
13184
13185 PWM IR Transmitter
13186 M:      Sean Young <sean@mess.org>
13187 L:      linux-media@vger.kernel.org
13188 S:      Maintained
13189 F:      drivers/media/rc/pwm-ir-tx.c
13190
13191 PWM SUBSYSTEM
13192 M:      Thierry Reding <thierry.reding@gmail.com>
13193 L:      linux-pwm@vger.kernel.org
13194 S:      Maintained
13195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13196 F:      Documentation/driver-api/pwm.rst
13197 F:      Documentation/devicetree/bindings/pwm/
13198 F:      include/linux/pwm.h
13199 F:      drivers/pwm/
13200 F:      drivers/video/backlight/pwm_bl.c
13201 F:      include/linux/pwm_backlight.h
13202 F:      drivers/gpio/gpio-mvebu.c
13203 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13204
13205 PXA GPIO DRIVER
13206 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13207 L:      linux-gpio@vger.kernel.org
13208 S:      Maintained
13209 F:      drivers/gpio/gpio-pxa.c
13210
13211 PXA MMCI DRIVER
13212 S:      Orphan
13213
13214 PXA RTC DRIVER
13215 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13216 L:      linux-rtc@vger.kernel.org
13217 S:      Maintained
13218
13219 PXA2xx/PXA3xx SUPPORT
13220 M:      Daniel Mack <daniel@zonque.org>
13221 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13222 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13224 T:      git git://github.com/hzhuang1/linux.git
13225 T:      git git://github.com/rjarzmik/linux.git
13226 S:      Maintained
13227 F:      arch/arm/boot/dts/pxa*
13228 F:      arch/arm/mach-pxa/
13229 F:      drivers/dma/pxa*
13230 F:      drivers/pcmcia/pxa2xx*
13231 F:      drivers/pinctrl/pxa/
13232 F:      drivers/spi/spi-pxa2xx*
13233 F:      drivers/usb/gadget/udc/pxa2*
13234 F:      include/sound/pxa2xx-lib.h
13235 F:      sound/arm/pxa*
13236 F:      sound/soc/pxa/
13237
13238 QAT DRIVER
13239 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13240 L:      qat-linux@intel.com
13241 S:      Supported
13242 F:      drivers/crypto/qat/
13243
13244 QCOM AUDIO (ASoC) DRIVERS
13245 M:      Patrick Lai <plai@codeaurora.org>
13246 M:      Banajit Goswami <bgoswami@codeaurora.org>
13247 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13248 S:      Supported
13249 F:      sound/soc/qcom/
13250
13251 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13252 M:      Gabriel Somlo <somlo@cmu.edu>
13253 M:      "Michael S. Tsirkin" <mst@redhat.com>
13254 L:      qemu-devel@nongnu.org
13255 S:      Maintained
13256 F:      drivers/firmware/qemu_fw_cfg.c
13257 F:      include/uapi/linux/qemu_fw_cfg.h
13258
13259 QIB DRIVER
13260 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13261 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13262 L:      linux-rdma@vger.kernel.org
13263 S:      Supported
13264 F:      drivers/infiniband/hw/qib/
13265
13266 QLOGIC QL41xxx FCOE DRIVER
13267 M:      QLogic-Storage-Upstream@cavium.com
13268 L:      linux-scsi@vger.kernel.org
13269 S:      Supported
13270 F:      drivers/scsi/qedf/
13271
13272 QLOGIC QL41xxx ISCSI DRIVER
13273 M:      QLogic-Storage-Upstream@cavium.com
13274 L:      linux-scsi@vger.kernel.org
13275 S:      Supported
13276 F:      drivers/scsi/qedi/
13277
13278 QLOGIC QL4xxx ETHERNET DRIVER
13279 M:      Ariel Elior <aelior@marvell.com>
13280 M:      GR-everest-linux-l2@marvell.com
13281 L:      netdev@vger.kernel.org
13282 S:      Supported
13283 F:      drivers/net/ethernet/qlogic/qed/
13284 F:      include/linux/qed/
13285 F:      drivers/net/ethernet/qlogic/qede/
13286
13287 QLOGIC QL4xxx RDMA DRIVER
13288 M:      Michal Kalderon <mkalderon@marvell.com>
13289 M:      Ariel Elior <aelior@marvell.com>
13290 L:      linux-rdma@vger.kernel.org
13291 S:      Supported
13292 F:      drivers/infiniband/hw/qedr/
13293 F:      include/uapi/rdma/qedr-abi.h
13294
13295 QLOGIC QLA1280 SCSI DRIVER
13296 M:      Michael Reed <mdr@sgi.com>
13297 L:      linux-scsi@vger.kernel.org
13298 S:      Maintained
13299 F:      drivers/scsi/qla1280.[ch]
13300
13301 QLOGIC QLA2XXX FC-SCSI DRIVER
13302 M:      qla2xxx-upstream@qlogic.com
13303 L:      linux-scsi@vger.kernel.org
13304 S:      Supported
13305 F:      Documentation/scsi/LICENSE.qla2xxx
13306 F:      drivers/scsi/qla2xxx/
13307
13308 QLOGIC QLA3XXX NETWORK DRIVER
13309 M:      GR-Linux-NIC-Dev@marvell.com
13310 L:      netdev@vger.kernel.org
13311 S:      Supported
13312 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13313 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13314
13315 QLOGIC QLA4XXX iSCSI DRIVER
13316 M:      QLogic-Storage-Upstream@qlogic.com
13317 L:      linux-scsi@vger.kernel.org
13318 S:      Supported
13319 F:      Documentation/scsi/LICENSE.qla4xxx
13320 F:      drivers/scsi/qla4xxx/
13321
13322 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13323 M:      Shahed Shaikh <shshaikh@marvell.com>
13324 M:      Manish Chopra <manishc@marvell.com>
13325 M:      GR-Linux-NIC-Dev@marvell.com
13326 L:      netdev@vger.kernel.org
13327 S:      Supported
13328 F:      drivers/net/ethernet/qlogic/qlcnic/
13329
13330 QLOGIC QLGE 10Gb ETHERNET DRIVER
13331 M:      Manish Chopra <manishc@marvell.com>
13332 M:      GR-Linux-NIC-Dev@marvell.com
13333 L:      netdev@vger.kernel.org
13334 S:      Supported
13335 F:      drivers/staging/qlge/
13336
13337 QM1D1B0004 MEDIA DRIVER
13338 M:      Akihiro Tsukada <tskd08@gmail.com>
13339 L:      linux-media@vger.kernel.org
13340 S:      Odd Fixes
13341 F:      drivers/media/tuners/qm1d1b0004*
13342
13343 QM1D1C0042 MEDIA DRIVER
13344 M:      Akihiro Tsukada <tskd08@gmail.com>
13345 L:      linux-media@vger.kernel.org
13346 S:      Odd Fixes
13347 F:      drivers/media/tuners/qm1d1c0042*
13348
13349 QNX4 FILESYSTEM
13350 M:      Anders Larsen <al@alarsen.net>
13351 W:      http://www.alarsen.net/linux/qnx4fs/
13352 S:      Maintained
13353 F:      fs/qnx4/
13354 F:      include/uapi/linux/qnx4_fs.h
13355 F:      include/uapi/linux/qnxtypes.h
13356
13357 QORIQ DPAA2 FSL-MC BUS DRIVER
13358 M:      Stuart Yoder <stuyoder@gmail.com>
13359 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
13360 L:      linux-kernel@vger.kernel.org
13361 S:      Maintained
13362 F:      drivers/bus/fsl-mc/
13363 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13364 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13365
13366 QT1010 MEDIA DRIVER
13367 M:      Antti Palosaari <crope@iki.fi>
13368 L:      linux-media@vger.kernel.org
13369 W:      https://linuxtv.org
13370 W:      http://palosaari.fi/linux/
13371 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13372 T:      git git://linuxtv.org/anttip/media_tree.git
13373 S:      Maintained
13374 F:      drivers/media/tuners/qt1010*
13375
13376 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13377 M:      Kalle Valo <kvalo@codeaurora.org>
13378 L:      ath10k@lists.infradead.org
13379 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13381 S:      Supported
13382 F:      drivers/net/wireless/ath/ath10k/
13383
13384 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13385 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
13386 L:      linux-wireless@vger.kernel.org
13387 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13388 S:      Supported
13389 F:      drivers/net/wireless/ath/ath9k/
13390
13391 QUALCOMM CAMERA SUBSYSTEM DRIVER
13392 M:      Todor Tomov <todor.too@gmail.com>
13393 L:      linux-media@vger.kernel.org
13394 S:      Maintained
13395 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13396 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13397 F:      drivers/media/platform/qcom/camss/
13398
13399 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13400 M:      Ilia Lin <ilia.lin@kernel.org>
13401 L:      linux-pm@vger.kernel.org
13402 S:      Maintained
13403 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13404 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13405
13406 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13407 M:      Timur Tabi <timur@kernel.org>
13408 L:      netdev@vger.kernel.org
13409 S:      Maintained
13410 F:      drivers/net/ethernet/qualcomm/emac/
13411
13412 QUALCOMM ETHQOS ETHERNET DRIVER
13413 M:      Vinod Koul <vkoul@kernel.org>
13414 M:      Niklas Cassel <niklas.cassel@linaro.org>
13415 L:      netdev@vger.kernel.org
13416 S:      Maintained
13417 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13418 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13419
13420 QUALCOMM GENERIC INTERFACE I2C DRIVER
13421 M:      Alok Chauhan <alokc@codeaurora.org>
13422 L:      linux-i2c@vger.kernel.org
13423 L:      linux-arm-msm@vger.kernel.org
13424 S:      Supported
13425 F:      drivers/i2c/busses/i2c-qcom-geni.c
13426
13427 QUALCOMM HEXAGON ARCHITECTURE
13428 M:      Richard Kuo <rkuo@codeaurora.org>
13429 L:      linux-hexagon@vger.kernel.org
13430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
13431 S:      Supported
13432 F:      arch/hexagon/
13433
13434 QUALCOMM HIDMA DRIVER
13435 M:      Sinan Kaya <okaya@kernel.org>
13436 L:      linux-arm-kernel@lists.infradead.org
13437 L:      linux-arm-msm@vger.kernel.org
13438 L:      dmaengine@vger.kernel.org
13439 S:      Supported
13440 F:      drivers/dma/qcom/hidma*
13441
13442 QUALCOMM IOMMU
13443 M:      Rob Clark <robdclark@gmail.com>
13444 L:      iommu@lists.linux-foundation.org
13445 L:      linux-arm-msm@vger.kernel.org
13446 S:      Maintained
13447 F:      drivers/iommu/qcom_iommu.c
13448
13449 QUALCOMM TSENS THERMAL DRIVER
13450 M:      Amit Kucheria <amit.kucheria@linaro.org>
13451 L:      linux-pm@vger.kernel.org
13452 L:      linux-arm-msm@vger.kernel.org
13453 S:      Maintained
13454 F:      drivers/thermal/qcom/
13455
13456 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
13457 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
13458 L:      linux-media@vger.kernel.org
13459 L:      linux-arm-msm@vger.kernel.org
13460 T:      git git://linuxtv.org/media_tree.git
13461 S:      Maintained
13462 F:      drivers/media/platform/qcom/venus/
13463
13464 QUALCOMM WCN36XX WIRELESS DRIVER
13465 M:      Kalle Valo <kvalo@codeaurora.org>
13466 L:      wcn36xx@lists.infradead.org
13467 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
13468 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
13469 S:      Supported
13470 F:      drivers/net/wireless/ath/wcn36xx/
13471
13472 QUANTENNA QTNFMAC WIRELESS DRIVER
13473 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
13474 M:      Avinash Patil <avinashp@quantenna.com>
13475 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
13476 L:      linux-wireless@vger.kernel.org
13477 S:      Maintained
13478 F:      drivers/net/wireless/quantenna
13479
13480 RADEON and AMDGPU DRM DRIVERS
13481 M:      Alex Deucher <alexander.deucher@amd.com>
13482 M:      Christian König <christian.koenig@amd.com>
13483 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
13484 L:      amd-gfx@lists.freedesktop.org
13485 T:      git git://people.freedesktop.org/~agd5f/linux
13486 S:      Supported
13487 F:      drivers/gpu/drm/radeon/
13488 F:      include/uapi/drm/radeon_drm.h
13489 F:      drivers/gpu/drm/amd/
13490 F:      include/uapi/drm/amdgpu_drm.h
13491
13492 RADEON FRAMEBUFFER DISPLAY DRIVER
13493 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
13494 L:      linux-fbdev@vger.kernel.org
13495 S:      Maintained
13496 F:      drivers/video/fbdev/aty/radeon*
13497 F:      include/uapi/linux/radeonfb.h
13498
13499 RADIOSHARK RADIO DRIVER
13500 M:      Hans Verkuil <hverkuil@xs4all.nl>
13501 L:      linux-media@vger.kernel.org
13502 T:      git git://linuxtv.org/media_tree.git
13503 S:      Maintained
13504 F:      drivers/media/radio/radio-shark.c
13505
13506 RADIOSHARK2 RADIO DRIVER
13507 M:      Hans Verkuil <hverkuil@xs4all.nl>
13508 L:      linux-media@vger.kernel.org
13509 T:      git git://linuxtv.org/media_tree.git
13510 S:      Maintained
13511 F:      drivers/media/radio/radio-shark2.c
13512 F:      drivers/media/radio/radio-tea5777.c
13513
13514 RADOS BLOCK DEVICE (RBD)
13515 M:      Ilya Dryomov <idryomov@gmail.com>
13516 M:      Sage Weil <sage@redhat.com>
13517 M:      Alex Elder <elder@kernel.org>
13518 L:      ceph-devel@vger.kernel.org
13519 W:      http://ceph.com/
13520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
13521 T:      git git://github.com/ceph/ceph-client.git
13522 S:      Supported
13523 F:      Documentation/ABI/testing/sysfs-bus-rbd
13524 F:      drivers/block/rbd.c
13525 F:      drivers/block/rbd_types.h
13526
13527 RAGE128 FRAMEBUFFER DISPLAY DRIVER
13528 M:      Paul Mackerras <paulus@samba.org>
13529 L:      linux-fbdev@vger.kernel.org
13530 S:      Maintained
13531 F:      drivers/video/fbdev/aty/aty128fb.c
13532
13533 RAINSHADOW-CEC DRIVER
13534 M:      Hans Verkuil <hverkuil@xs4all.nl>
13535 L:      linux-media@vger.kernel.org
13536 T:      git git://linuxtv.org/media_tree.git
13537 S:      Maintained
13538 F:      drivers/media/usb/rainshadow-cec/*
13539
13540 RALINK MIPS ARCHITECTURE
13541 M:      John Crispin <john@phrozen.org>
13542 L:      linux-mips@vger.kernel.org
13543 S:      Maintained
13544 F:      arch/mips/ralink
13545
13546 RALINK RT2X00 WIRELESS LAN DRIVER
13547 P:      rt2x00 project
13548 M:      Stanislaw Gruszka <sgruszka@redhat.com>
13549 M:      Helmut Schaa <helmut.schaa@googlemail.com>
13550 L:      linux-wireless@vger.kernel.org
13551 S:      Maintained
13552 F:      drivers/net/wireless/ralink/rt2x00/
13553
13554 RAMDISK RAM BLOCK DEVICE DRIVER
13555 M:      Jens Axboe <axboe@kernel.dk>
13556 S:      Maintained
13557 F:      Documentation/admin-guide/blockdev/ramdisk.rst
13558 F:      drivers/block/brd.c
13559
13560 RANCHU VIRTUAL BOARD FOR MIPS
13561 M:      Miodrag Dinic <miodrag.dinic@mips.com>
13562 L:      linux-mips@vger.kernel.org
13563 S:      Supported
13564 F:      arch/mips/generic/board-ranchu.c
13565 F:      arch/mips/configs/generic/board-ranchu.config
13566
13567 RANDOM NUMBER DRIVER
13568 M:      "Theodore Ts'o" <tytso@mit.edu>
13569 S:      Maintained
13570 F:      drivers/char/random.c
13571
13572 RAPIDIO SUBSYSTEM
13573 M:      Matt Porter <mporter@kernel.crashing.org>
13574 M:      Alexandre Bounine <alex.bou9@gmail.com>
13575 S:      Maintained
13576 F:      drivers/rapidio/
13577
13578 RAS INFRASTRUCTURE
13579 M:      Tony Luck <tony.luck@intel.com>
13580 M:      Borislav Petkov <bp@alien8.de>
13581 L:      linux-edac@vger.kernel.org
13582 S:      Maintained
13583 F:      drivers/ras/
13584 F:      include/linux/ras.h
13585 F:      include/ras/ras_event.h
13586 F:      Documentation/admin-guide/ras.rst
13587
13588 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
13589 L:      linux-wireless@vger.kernel.org
13590 S:      Orphan
13591 F:      drivers/net/wireless/ray*
13592
13593 RCUTORTURE TEST FRAMEWORK
13594 M:      "Paul E. McKenney" <paulmck@kernel.org>
13595 M:      Josh Triplett <josh@joshtriplett.org>
13596 R:      Steven Rostedt <rostedt@goodmis.org>
13597 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13598 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13599 L:      rcu@vger.kernel.org
13600 S:      Supported
13601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13602 F:      tools/testing/selftests/rcutorture
13603
13604 RDC R-321X SoC
13605 M:      Florian Fainelli <florian@openwrt.org>
13606 S:      Maintained
13607
13608 RDC R6040 FAST ETHERNET DRIVER
13609 M:      Florian Fainelli <f.fainelli@gmail.com>
13610 L:      netdev@vger.kernel.org
13611 S:      Maintained
13612 F:      drivers/net/ethernet/rdc/r6040.c
13613
13614 RDMAVT - RDMA verbs software
13615 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13616 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13617 L:      linux-rdma@vger.kernel.org
13618 S:      Supported
13619 F:      drivers/infiniband/sw/rdmavt
13620
13621 RDS - RELIABLE DATAGRAM SOCKETS
13622 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
13623 L:      netdev@vger.kernel.org
13624 L:      linux-rdma@vger.kernel.org
13625 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
13626 W:      https://oss.oracle.com/projects/rds/
13627 S:      Supported
13628 F:      net/rds/
13629 F:      Documentation/networking/rds.txt
13630
13631 RDT - RESOURCE ALLOCATION
13632 M:      Fenghua Yu <fenghua.yu@intel.com>
13633 M:      Reinette Chatre <reinette.chatre@intel.com>
13634 L:      linux-kernel@vger.kernel.org
13635 S:      Supported
13636 F:      arch/x86/kernel/cpu/resctrl/
13637 F:      arch/x86/include/asm/resctrl_sched.h
13638 F:      Documentation/x86/resctrl*
13639
13640 READ-COPY UPDATE (RCU)
13641 M:      "Paul E. McKenney" <paulmck@kernel.org>
13642 M:      Josh Triplett <josh@joshtriplett.org>
13643 R:      Steven Rostedt <rostedt@goodmis.org>
13644 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13645 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13646 R:      Joel Fernandes <joel@joelfernandes.org>
13647 L:      rcu@vger.kernel.org
13648 W:      http://www.rdrop.com/users/paulmck/RCU/
13649 S:      Supported
13650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13651 F:      Documentation/RCU/
13652 X:      Documentation/RCU/torture.txt
13653 F:      include/linux/rcu*
13654 X:      include/linux/srcu*.h
13655 F:      kernel/rcu/
13656 X:      kernel/rcu/srcu*.c
13657
13658 REAL TIME CLOCK (RTC) SUBSYSTEM
13659 M:      Alessandro Zummo <a.zummo@towertech.it>
13660 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13661 L:      linux-rtc@vger.kernel.org
13662 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
13663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
13664 S:      Maintained
13665 F:      Documentation/devicetree/bindings/rtc/
13666 F:      Documentation/admin-guide/rtc.rst
13667 F:      drivers/rtc/
13668 F:      include/linux/rtc.h
13669 F:      include/uapi/linux/rtc.h
13670 F:      include/linux/rtc/
13671 F:      include/linux/platform_data/rtc-*
13672 F:      tools/testing/selftests/rtc/
13673
13674 REALTEK AUDIO CODECS
13675 M:      Bard Liao <bardliao@realtek.com>
13676 M:      Oder Chiou <oder_chiou@realtek.com>
13677 S:      Maintained
13678 F:      sound/soc/codecs/rt*
13679 F:      include/sound/rt*.h
13680
13681 REALTEK RTL83xx SMI DSA ROUTER CHIPS
13682 M:      Linus Walleij <linus.walleij@linaro.org>
13683 S:      Maintained
13684 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
13685 F:      drivers/net/dsa/realtek-smi*
13686 F:      drivers/net/dsa/rtl83*
13687
13688 REDPINE WIRELESS DRIVER
13689 M:      Amitkumar Karwar <amitkarwar@gmail.com>
13690 M:      Siva Rebbagondla <siva8118@gmail.com>
13691 L:      linux-wireless@vger.kernel.org
13692 S:      Maintained
13693 F:      drivers/net/wireless/rsi/
13694
13695 REGISTER MAP ABSTRACTION
13696 M:      Mark Brown <broonie@kernel.org>
13697 L:      linux-kernel@vger.kernel.org
13698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
13699 S:      Supported
13700 F:      Documentation/devicetree/bindings/regmap/
13701 F:      drivers/base/regmap/
13702 F:      include/linux/regmap.h
13703
13704 REISERFS FILE SYSTEM
13705 L:      reiserfs-devel@vger.kernel.org
13706 S:      Supported
13707 F:      fs/reiserfs/
13708
13709 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
13710 M:      Ohad Ben-Cohen <ohad@wizery.com>
13711 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13712 L:      linux-remoteproc@vger.kernel.org
13713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
13714 S:      Maintained
13715 F:      Documentation/devicetree/bindings/remoteproc/
13716 F:      Documentation/ABI/testing/sysfs-class-remoteproc
13717 F:      Documentation/remoteproc.txt
13718 F:      drivers/remoteproc/
13719 F:      include/linux/remoteproc.h
13720 F:      include/linux/remoteproc/
13721
13722 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
13723 M:      Ohad Ben-Cohen <ohad@wizery.com>
13724 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13725 L:      linux-remoteproc@vger.kernel.org
13726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
13727 S:      Maintained
13728 F:      drivers/rpmsg/
13729 F:      Documentation/rpmsg.txt
13730 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
13731 F:      include/linux/rpmsg.h
13732 F:      include/linux/rpmsg/
13733 F:      include/uapi/linux/rpmsg.h
13734 F:      samples/rpmsg/
13735
13736 RENESAS CLOCK DRIVERS
13737 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13738 L:      linux-renesas-soc@vger.kernel.org
13739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
13740 S:      Supported
13741 F:      drivers/clk/renesas/
13742
13743 RENESAS EMEV2 I2C DRIVER
13744 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13745 S:      Supported
13746 F:      Documentation/devicetree/bindings/i2c/i2c-emev2.txt
13747 F:      drivers/i2c/busses/i2c-emev2.c
13748
13749 RENESAS ETHERNET DRIVERS
13750 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
13751 L:      netdev@vger.kernel.org
13752 L:      linux-renesas-soc@vger.kernel.org
13753 F:      Documentation/devicetree/bindings/net/renesas,*.txt
13754 F:      Documentation/devicetree/bindings/net/sh_eth.txt
13755 F:      drivers/net/ethernet/renesas/
13756 F:      include/linux/sh_eth.h
13757
13758 RENESAS R-CAR GYROADC DRIVER
13759 M:      Marek Vasut <marek.vasut@gmail.com>
13760 L:      linux-iio@vger.kernel.org
13761 S:      Supported
13762 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
13763 F:      drivers/iio/adc/rcar-gyroadc.c
13764
13765 RENESAS R-CAR I2C DRIVERS
13766 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13767 S:      Supported
13768 F:      Documentation/devicetree/bindings/i2c/i2c-rcar.txt
13769 F:      Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt
13770 F:      drivers/i2c/busses/i2c-rcar.c
13771 F:      drivers/i2c/busses/i2c-sh_mobile.c
13772
13773 RENESAS RIIC DRIVER
13774 M:      Chris Brandt <chris.brandt@renesas.com>
13775 S:      Supported
13776 F:      Documentation/devicetree/bindings/i2c/i2c-riic.txt
13777 F:      drivers/i2c/busses/i2c-riic.c
13778
13779 RENESAS USB PHY DRIVER
13780 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13781 L:      linux-renesas-soc@vger.kernel.org
13782 S:      Maintained
13783 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
13784
13785 RESET CONTROLLER FRAMEWORK
13786 M:      Philipp Zabel <p.zabel@pengutronix.de>
13787 T:      git git://git.pengutronix.de/git/pza/linux
13788 S:      Maintained
13789 F:      drivers/reset/
13790 F:      Documentation/devicetree/bindings/reset/
13791 F:      include/dt-bindings/reset/
13792 F:      include/linux/reset.h
13793 F:      include/linux/reset/
13794 F:      include/linux/reset-controller.h
13795
13796 RESTARTABLE SEQUENCES SUPPORT
13797 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13798 M:      Peter Zijlstra <peterz@infradead.org>
13799 M:      "Paul E. McKenney" <paulmck@kernel.org>
13800 M:      Boqun Feng <boqun.feng@gmail.com>
13801 L:      linux-kernel@vger.kernel.org
13802 S:      Supported
13803 F:      kernel/rseq.c
13804 F:      include/uapi/linux/rseq.h
13805 F:      include/trace/events/rseq.h
13806 F:      tools/testing/selftests/rseq/
13807
13808 RFKILL
13809 M:      Johannes Berg <johannes@sipsolutions.net>
13810 L:      linux-wireless@vger.kernel.org
13811 W:      http://wireless.kernel.org/
13812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
13813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
13814 S:      Maintained
13815 F:      Documentation/driver-api/rfkill.rst
13816 F:      Documentation/ABI/stable/sysfs-class-rfkill
13817 F:      net/rfkill/
13818 F:      include/linux/rfkill.h
13819 F:      include/uapi/linux/rfkill.h
13820
13821 RHASHTABLE
13822 M:      Thomas Graf <tgraf@suug.ch>
13823 M:      Herbert Xu <herbert@gondor.apana.org.au>
13824 L:      netdev@vger.kernel.org
13825 S:      Maintained
13826 F:      lib/rhashtable.c
13827 F:      lib/test_rhashtable.c
13828 F:      include/linux/rhashtable.h
13829 F:      include/linux/rhashtable-types.h
13830
13831 RICOH R5C592 MEMORYSTICK DRIVER
13832 M:      Maxim Levitsky <maximlevitsky@gmail.com>
13833 S:      Maintained
13834 F:      drivers/memstick/host/r592.*
13835
13836 RICOH SMARTMEDIA/XD DRIVER
13837 M:      Maxim Levitsky <maximlevitsky@gmail.com>
13838 S:      Maintained
13839 F:      drivers/mtd/nand/raw/r852.c
13840 F:      drivers/mtd/nand/raw/r852.h
13841
13842 RISC-V ARCHITECTURE
13843 M:      Paul Walmsley <paul.walmsley@sifive.com>
13844 M:      Palmer Dabbelt <palmer@sifive.com>
13845 M:      Albert Ou <aou@eecs.berkeley.edu>
13846 L:      linux-riscv@lists.infradead.org
13847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
13848 S:      Supported
13849 F:      arch/riscv/
13850 K:      riscv
13851 N:      riscv
13852
13853 ROCCAT DRIVERS
13854 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
13855 W:      http://sourceforge.net/projects/roccat/
13856 S:      Maintained
13857 F:      drivers/hid/hid-roccat*
13858 F:      include/linux/hid-roccat*
13859 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
13860
13861 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
13862 M:      Jacob Chen <jacob-chen@iotwrt.com>
13863 M:      Ezequiel Garcia <ezequiel@collabora.com>
13864 L:      linux-media@vger.kernel.org
13865 S:      Maintained
13866 F:      drivers/media/platform/rockchip/rga/
13867 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
13868
13869 HANTRO VPU CODEC DRIVER
13870 M:      Ezequiel Garcia <ezequiel@collabora.com>
13871 L:      linux-media@vger.kernel.org
13872 S:      Maintained
13873 F:      drivers/staging/media/hantro/
13874 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
13875
13876 ROCKER DRIVER
13877 M:      Jiri Pirko <jiri@resnulli.us>
13878 L:      netdev@vger.kernel.org
13879 S:      Supported
13880 F:      drivers/net/ethernet/rocker/
13881
13882 ROCKETPORT DRIVER
13883 P:      Comtrol Corp.
13884 W:      http://www.comtrol.com
13885 S:      Maintained
13886 F:      Documentation/driver-api/serial/rocket.rst
13887 F:      drivers/tty/rocket*
13888
13889 ROCKETPORT EXPRESS/INFINITY DRIVER
13890 M:      Kevin Cernekee <cernekee@gmail.com>
13891 L:      linux-serial@vger.kernel.org
13892 S:      Odd Fixes
13893 F:      drivers/tty/serial/rp2.*
13894
13895 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
13896 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13897 L:      linux-kernel@vger.kernel.org
13898 L:      linux-renesas-soc@vger.kernel.org
13899 S:      Supported
13900 F:      drivers/mfd/bd9571mwv.c
13901 F:      drivers/regulator/bd9571mwv-regulator.c
13902 F:      drivers/gpio/gpio-bd9571mwv.c
13903 F:      include/linux/mfd/bd9571mwv.h
13904 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
13905
13906 ROSE NETWORK LAYER
13907 M:      Ralf Baechle <ralf@linux-mips.org>
13908 L:      linux-hams@vger.kernel.org
13909 W:      http://www.linux-ax25.org/
13910 S:      Maintained
13911 F:      include/net/rose.h
13912 F:      include/uapi/linux/rose.h
13913 F:      net/rose/
13914
13915 RTL2830 MEDIA DRIVER
13916 M:      Antti Palosaari <crope@iki.fi>
13917 L:      linux-media@vger.kernel.org
13918 W:      https://linuxtv.org
13919 W:      http://palosaari.fi/linux/
13920 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13921 T:      git git://linuxtv.org/anttip/media_tree.git
13922 S:      Maintained
13923 F:      drivers/media/dvb-frontends/rtl2830*
13924
13925 RTL2832 MEDIA DRIVER
13926 M:      Antti Palosaari <crope@iki.fi>
13927 L:      linux-media@vger.kernel.org
13928 W:      https://linuxtv.org
13929 W:      http://palosaari.fi/linux/
13930 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13931 T:      git git://linuxtv.org/anttip/media_tree.git
13932 S:      Maintained
13933 F:      drivers/media/dvb-frontends/rtl2832*
13934
13935 RTL2832_SDR MEDIA DRIVER
13936 M:      Antti Palosaari <crope@iki.fi>
13937 L:      linux-media@vger.kernel.org
13938 W:      https://linuxtv.org
13939 W:      http://palosaari.fi/linux/
13940 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13941 T:      git git://linuxtv.org/anttip/media_tree.git
13942 S:      Maintained
13943 F:      drivers/media/dvb-frontends/rtl2832_sdr*
13944
13945 RTL8180 WIRELESS DRIVER
13946 L:      linux-wireless@vger.kernel.org
13947 W:      http://wireless.kernel.org/
13948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13949 S:      Orphan
13950 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
13951
13952 RTL8187 WIRELESS DRIVER
13953 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
13954 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
13955 M:      Larry Finger <Larry.Finger@lwfinger.net>
13956 L:      linux-wireless@vger.kernel.org
13957 W:      http://wireless.kernel.org/
13958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13959 S:      Maintained
13960 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
13961
13962 REALTEK WIRELESS DRIVER (rtlwifi family)
13963 M:      Ping-Ke Shih <pkshih@realtek.com>
13964 L:      linux-wireless@vger.kernel.org
13965 W:      http://wireless.kernel.org/
13966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13967 S:      Maintained
13968 F:      drivers/net/wireless/realtek/rtlwifi/
13969
13970 REALTEK WIRELESS DRIVER (rtw88)
13971 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
13972 L:      linux-wireless@vger.kernel.org
13973 S:      Maintained
13974 F:      drivers/net/wireless/realtek/rtw88/
13975
13976 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
13977 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
13978 L:      linux-wireless@vger.kernel.org
13979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
13980 S:      Maintained
13981 F:      drivers/net/wireless/realtek/rtl8xxxu/
13982
13983 RXRPC SOCKETS (AF_RXRPC)
13984 M:      David Howells <dhowells@redhat.com>
13985 L:      linux-afs@lists.infradead.org
13986 S:      Supported
13987 F:      net/rxrpc/
13988 F:      include/keys/rxrpc-type.h
13989 F:      include/net/af_rxrpc.h
13990 F:      include/trace/events/rxrpc.h
13991 F:      include/uapi/linux/rxrpc.h
13992 F:      Documentation/networking/rxrpc.txt
13993 W:      https://www.infradead.org/~dhowells/kafs/
13994
13995 S3 SAVAGE FRAMEBUFFER DRIVER
13996 M:      Antonino Daplas <adaplas@gmail.com>
13997 L:      linux-fbdev@vger.kernel.org
13998 S:      Maintained
13999 F:      drivers/video/fbdev/savage/
14000
14001 S390
14002 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14003 M:      Vasily Gorbik <gor@linux.ibm.com>
14004 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14005 L:      linux-s390@vger.kernel.org
14006 W:      http://www.ibm.com/developerworks/linux/linux390/
14007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14008 S:      Supported
14009 F:      arch/s390/
14010 F:      drivers/s390/
14011 F:      Documentation/s390/
14012 F:      Documentation/driver-api/s390-drivers.rst
14013
14014 S390 COMMON I/O LAYER
14015 M:      Sebastian Ott <sebott@linux.ibm.com>
14016 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14017 L:      linux-s390@vger.kernel.org
14018 W:      http://www.ibm.com/developerworks/linux/linux390/
14019 S:      Supported
14020 F:      drivers/s390/cio/
14021
14022 S390 DASD DRIVER
14023 M:      Stefan Haberland <sth@linux.ibm.com>
14024 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14025 L:      linux-s390@vger.kernel.org
14026 W:      http://www.ibm.com/developerworks/linux/linux390/
14027 S:      Supported
14028 F:      drivers/s390/block/dasd*
14029 F:      block/partitions/ibm.c
14030
14031 S390 IOMMU (PCI)
14032 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14033 L:      linux-s390@vger.kernel.org
14034 W:      http://www.ibm.com/developerworks/linux/linux390/
14035 S:      Supported
14036 F:      drivers/iommu/s390-iommu.c
14037
14038 S390 IUCV NETWORK LAYER
14039 M:      Julian Wiedmann <jwi@linux.ibm.com>
14040 M:      Ursula Braun <ubraun@linux.ibm.com>
14041 L:      linux-s390@vger.kernel.org
14042 W:      http://www.ibm.com/developerworks/linux/linux390/
14043 S:      Supported
14044 F:      drivers/s390/net/*iucv*
14045 F:      include/net/iucv/
14046 F:      net/iucv/
14047
14048 S390 NETWORK DRIVERS
14049 M:      Julian Wiedmann <jwi@linux.ibm.com>
14050 M:      Ursula Braun <ubraun@linux.ibm.com>
14051 L:      linux-s390@vger.kernel.org
14052 W:      http://www.ibm.com/developerworks/linux/linux390/
14053 S:      Supported
14054 F:      drivers/s390/net/
14055
14056 S390 PCI SUBSYSTEM
14057 M:      Sebastian Ott <sebott@linux.ibm.com>
14058 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14059 L:      linux-s390@vger.kernel.org
14060 W:      http://www.ibm.com/developerworks/linux/linux390/
14061 S:      Supported
14062 F:      arch/s390/pci/
14063 F:      drivers/pci/hotplug/s390_pci_hpc.c
14064
14065 S390 VFIO-CCW DRIVER
14066 M:      Cornelia Huck <cohuck@redhat.com>
14067 M:      Eric Farman <farman@linux.ibm.com>
14068 R:      Halil Pasic <pasic@linux.ibm.com>
14069 L:      linux-s390@vger.kernel.org
14070 L:      kvm@vger.kernel.org
14071 S:      Supported
14072 F:      drivers/s390/cio/vfio_ccw*
14073 F:      Documentation/s390/vfio-ccw.rst
14074 F:      include/uapi/linux/vfio_ccw.h
14075
14076 S390 ZCRYPT DRIVER
14077 M:      Harald Freudenberger <freude@linux.ibm.com>
14078 L:      linux-s390@vger.kernel.org
14079 W:      http://www.ibm.com/developerworks/linux/linux390/
14080 S:      Supported
14081 F:      drivers/s390/crypto/
14082
14083 S390 VFIO AP DRIVER
14084 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14085 M:      Pierre Morel <pmorel@linux.ibm.com>
14086 M:      Halil Pasic <pasic@linux.ibm.com>
14087 L:      linux-s390@vger.kernel.org
14088 W:      http://www.ibm.com/developerworks/linux/linux390/
14089 S:      Supported
14090 F:      drivers/s390/crypto/vfio_ap_drv.c
14091 F:      drivers/s390/crypto/vfio_ap_private.h
14092 F:      drivers/s390/crypto/vfio_ap_ops.c
14093 F:      Documentation/s390/vfio-ap.rst
14094
14095 S390 ZFCP DRIVER
14096 M:      Steffen Maier <maier@linux.ibm.com>
14097 M:      Benjamin Block <bblock@linux.ibm.com>
14098 L:      linux-s390@vger.kernel.org
14099 W:      http://www.ibm.com/developerworks/linux/linux390/
14100 S:      Supported
14101 F:      drivers/s390/scsi/zfcp_*
14102
14103 S3C24XX SD/MMC Driver
14104 M:      Ben Dooks <ben-linux@fluff.org>
14105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14106 S:      Supported
14107 F:      drivers/mmc/host/s3cmci.*
14108
14109 SAA6588 RDS RECEIVER DRIVER
14110 M:      Hans Verkuil <hverkuil@xs4all.nl>
14111 L:      linux-media@vger.kernel.org
14112 T:      git git://linuxtv.org/media_tree.git
14113 W:      https://linuxtv.org
14114 S:      Odd Fixes
14115 F:      drivers/media/i2c/saa6588*
14116
14117 SAA7134 VIDEO4LINUX DRIVER
14118 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14119 L:      linux-media@vger.kernel.org
14120 W:      https://linuxtv.org
14121 T:      git git://linuxtv.org/media_tree.git
14122 S:      Odd fixes
14123 F:      Documentation/media/v4l-drivers/saa7134*
14124 F:      drivers/media/pci/saa7134/
14125
14126 SAA7146 VIDEO4LINUX-2 DRIVER
14127 M:      Hans Verkuil <hverkuil@xs4all.nl>
14128 L:      linux-media@vger.kernel.org
14129 T:      git git://linuxtv.org/media_tree.git
14130 S:      Maintained
14131 F:      drivers/media/common/saa7146/
14132 F:      drivers/media/pci/saa7146/
14133 F:      include/media/drv-intf/saa7146*
14134
14135 SAFESETID SECURITY MODULE
14136 M:     Micah Morton <mortonm@chromium.org>
14137 S:     Supported
14138 F:     security/safesetid/
14139 F:     Documentation/admin-guide/LSM/SafeSetID.rst
14140
14141 SAMSUNG AUDIO (ASoC) DRIVERS
14142 M:      Krzysztof Kozlowski <krzk@kernel.org>
14143 M:      Sangbeom Kim <sbkim73@samsung.com>
14144 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14145 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14146 S:      Supported
14147 F:      sound/soc/samsung/
14148 F:      Documentation/devicetree/bindings/sound/samsung*
14149
14150 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14151 M:      Krzysztof Kozlowski <krzk@kernel.org>
14152 L:      linux-crypto@vger.kernel.org
14153 L:      linux-samsung-soc@vger.kernel.org
14154 S:      Maintained
14155 F:      drivers/crypto/exynos-rng.c
14156 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.txt
14157
14158 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14159 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14160 L:      linux-samsung-soc@vger.kernel.org
14161 S:      Maintained
14162 F:      drivers/char/hw_random/exynos-trng.c
14163 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14164
14165 SAMSUNG FRAMEBUFFER DRIVER
14166 M:      Jingoo Han <jingoohan1@gmail.com>
14167 L:      linux-fbdev@vger.kernel.org
14168 S:      Maintained
14169 F:      drivers/video/fbdev/s3c-fb.c
14170
14171 SAMSUNG LAPTOP DRIVER
14172 M:      Corentin Chary <corentin.chary@gmail.com>
14173 L:      platform-driver-x86@vger.kernel.org
14174 S:      Maintained
14175 F:      drivers/platform/x86/samsung-laptop.c
14176
14177 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14178 M:      Sangbeom Kim <sbkim73@samsung.com>
14179 M:      Krzysztof Kozlowski <krzk@kernel.org>
14180 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14181 L:      linux-kernel@vger.kernel.org
14182 L:      linux-samsung-soc@vger.kernel.org
14183 S:      Supported
14184 F:      drivers/mfd/sec*.c
14185 F:      drivers/regulator/s2m*.c
14186 F:      drivers/regulator/s5m*.c
14187 F:      drivers/clk/clk-s2mps11.c
14188 F:      drivers/rtc/rtc-s5m.c
14189 F:      include/linux/mfd/samsung/
14190 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14191 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14192 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14193 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14194
14195 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14196 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14197 L:      linux-media@vger.kernel.org
14198 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14199 S:      Maintained
14200 F:      drivers/media/platform/s3c-camif/
14201 F:      include/media/drv-intf/s3c_camif.h
14202
14203 SAMSUNG S3FWRN5 NFC DRIVER
14204 M:      Robert Baldyga <r.baldyga@samsung.com>
14205 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
14206 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
14207 S:      Supported
14208 F:      drivers/nfc/s3fwrn5
14209
14210 SAMSUNG S5C73M3 CAMERA DRIVER
14211 M:      Kyungmin Park <kyungmin.park@samsung.com>
14212 M:      Andrzej Hajda <a.hajda@samsung.com>
14213 L:      linux-media@vger.kernel.org
14214 S:      Supported
14215 F:      drivers/media/i2c/s5c73m3/*
14216
14217 SAMSUNG S5K5BAF CAMERA DRIVER
14218 M:      Kyungmin Park <kyungmin.park@samsung.com>
14219 M:      Andrzej Hajda <a.hajda@samsung.com>
14220 L:      linux-media@vger.kernel.org
14221 S:      Supported
14222 F:      drivers/media/i2c/s5k5baf.c
14223
14224 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14225 M:      Krzysztof Kozlowski <krzk@kernel.org>
14226 M:      Vladimir Zapolskiy <vz@mleia.com>
14227 M:      Kamil Konieczny <k.konieczny@partner.samsung.com>
14228 L:      linux-crypto@vger.kernel.org
14229 L:      linux-samsung-soc@vger.kernel.org
14230 S:      Maintained
14231 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.txt
14232 F:      Documentation/devicetree/bindings/crypto/samsung-sss.txt
14233 F:      drivers/crypto/s5p-sss.c
14234
14235 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14236 M:      Kyungmin Park <kyungmin.park@samsung.com>
14237 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14238 L:      linux-media@vger.kernel.org
14239 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14240 S:      Supported
14241 F:      drivers/media/platform/exynos4-is/
14242
14243 SAMSUNG SOC CLOCK DRIVERS
14244 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14245 M:      Tomasz Figa <tomasz.figa@gmail.com>
14246 M:      Chanwoo Choi <cw00.choi@samsung.com>
14247 S:      Supported
14248 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14250 F:      drivers/clk/samsung/
14251 F:      include/dt-bindings/clock/exynos*.h
14252 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14253 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14254 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14255
14256 SAMSUNG SPI DRIVERS
14257 M:      Kukjin Kim <kgene@kernel.org>
14258 M:      Krzysztof Kozlowski <krzk@kernel.org>
14259 M:      Andi Shyti <andi@etezian.org>
14260 L:      linux-spi@vger.kernel.org
14261 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14262 S:      Maintained
14263 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14264 F:      drivers/spi/spi-s3c*
14265 F:      include/linux/platform_data/spi-s3c64xx.h
14266
14267 SAMSUNG SXGBE DRIVERS
14268 M:      Byungho An <bh74.an@samsung.com>
14269 M:      Girish K S <ks.giri@samsung.com>
14270 M:      Vipul Pandya <vipul.pandya@samsung.com>
14271 S:      Supported
14272 L:      netdev@vger.kernel.org
14273 F:      drivers/net/ethernet/samsung/sxgbe/
14274
14275 SAMSUNG THERMAL DRIVER
14276 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14277 L:      linux-pm@vger.kernel.org
14278 L:      linux-samsung-soc@vger.kernel.org
14279 S:      Supported
14280 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14281 F:      drivers/thermal/samsung/
14282
14283 SAMSUNG USB2 PHY DRIVER
14284 M:      Kamil Debski <kamil@wypas.org>
14285 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14286 L:      linux-kernel@vger.kernel.org
14287 S:      Supported
14288 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14289 F:      Documentation/driver-api/phy/samsung-usb2.rst
14290 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14291 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14292 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14293 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14294 F:      drivers/phy/samsung/phy-samsung-usb2.c
14295 F:      drivers/phy/samsung/phy-samsung-usb2.h
14296
14297 SC1200 WDT DRIVER
14298 M:      Zwane Mwaikambo <zwanem@gmail.com>
14299 S:      Maintained
14300 F:      drivers/watchdog/sc1200wdt.c
14301
14302 SCHEDULER
14303 M:      Ingo Molnar <mingo@redhat.com>
14304 M:      Peter Zijlstra <peterz@infradead.org>
14305 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
14306 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
14307 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
14308 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
14309 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
14310 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
14311 L:      linux-kernel@vger.kernel.org
14312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14313 S:      Maintained
14314 F:      kernel/sched/
14315 F:      include/linux/sched.h
14316 F:      include/uapi/linux/sched.h
14317 F:      include/linux/wait.h
14318 F:      include/linux/preempt.h
14319
14320 SCR24X CHIP CARD INTERFACE DRIVER
14321 M:      Lubomir Rintel <lkundrak@v3.sk>
14322 S:      Supported
14323 F:      drivers/char/pcmcia/scr24x_cs.c
14324
14325 SCSI CDROM DRIVER
14326 M:      Jens Axboe <axboe@kernel.dk>
14327 L:      linux-scsi@vger.kernel.org
14328 W:      http://www.kernel.dk
14329 S:      Maintained
14330 F:      drivers/scsi/sr*
14331
14332 SCSI RDMA PROTOCOL (SRP) INITIATOR
14333 M:      Bart Van Assche <bvanassche@acm.org>
14334 L:      linux-rdma@vger.kernel.org
14335 S:      Supported
14336 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14337 F:      drivers/infiniband/ulp/srp/
14338 F:      include/scsi/srp.h
14339
14340 SCSI RDMA PROTOCOL (SRP) TARGET
14341 M:      Bart Van Assche <bvanassche@acm.org>
14342 L:      linux-rdma@vger.kernel.org
14343 L:      target-devel@vger.kernel.org
14344 S:      Supported
14345 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14346 F:      drivers/infiniband/ulp/srpt/
14347
14348 SCSI SG DRIVER
14349 M:      Doug Gilbert <dgilbert@interlog.com>
14350 L:      linux-scsi@vger.kernel.org
14351 W:      http://sg.danny.cz/sg
14352 S:      Maintained
14353 F:      Documentation/scsi/scsi-generic.txt
14354 F:      drivers/scsi/sg.c
14355 F:      include/scsi/sg.h
14356
14357 SCSI SUBSYSTEM
14358 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
14359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14360 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14362 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14363 L:      linux-scsi@vger.kernel.org
14364 S:      Maintained
14365 F:      Documentation/devicetree/bindings/scsi/
14366 F:      drivers/scsi/
14367 F:      include/scsi/
14368
14369 SCSI TAPE DRIVER
14370 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
14371 L:      linux-scsi@vger.kernel.org
14372 S:      Maintained
14373 F:      Documentation/scsi/st.txt
14374 F:      drivers/scsi/st.*
14375 F:      drivers/scsi/st_*.h
14376
14377 SCSI TARGET SUBSYSTEM
14378 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14379 L:      linux-scsi@vger.kernel.org
14380 L:      target-devel@vger.kernel.org
14381 W:      http://www.linux-iscsi.org
14382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14383 Q:      https://patchwork.kernel.org/project/target-devel/list/
14384 S:      Supported
14385 F:      drivers/target/
14386 F:      include/target/
14387 F:      Documentation/target/
14388
14389 SCTP PROTOCOL
14390 M:      Vlad Yasevich <vyasevich@gmail.com>
14391 M:      Neil Horman <nhorman@tuxdriver.com>
14392 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
14393 L:      linux-sctp@vger.kernel.org
14394 W:      http://lksctp.sourceforge.net
14395 S:      Maintained
14396 F:      Documentation/networking/sctp.txt
14397 F:      include/linux/sctp.h
14398 F:      include/uapi/linux/sctp.h
14399 F:      include/net/sctp/
14400 F:      net/sctp/
14401
14402 SCx200 CPU SUPPORT
14403 M:      Jim Cromie <jim.cromie@gmail.com>
14404 S:      Odd Fixes
14405 F:      Documentation/i2c/busses/scx200_acb.rst
14406 F:      arch/x86/platform/scx200/
14407 F:      drivers/watchdog/scx200_wdt.c
14408 F:      drivers/i2c/busses/scx200*
14409 F:      drivers/mtd/maps/scx200_docflash.c
14410 F:      include/linux/scx200.h
14411
14412 SCx200 GPIO DRIVER
14413 M:      Jim Cromie <jim.cromie@gmail.com>
14414 S:      Maintained
14415 F:      drivers/char/scx200_gpio.c
14416 F:      include/linux/scx200_gpio.h
14417
14418 SCx200 HRT CLOCKSOURCE DRIVER
14419 M:      Jim Cromie <jim.cromie@gmail.com>
14420 S:      Maintained
14421 F:      drivers/clocksource/scx200_hrt.c
14422
14423 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
14424 M:      Sascha Sommer <saschasommer@freenet.de>
14425 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
14426 S:      Maintained
14427 F:      drivers/mmc/host/sdricoh_cs.c
14428
14429 SECO BOARDS CEC DRIVER
14430 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
14431 S:      Maintained
14432 F:      drivers/media/platform/seco-cec/seco-cec.c
14433 F:      drivers/media/platform/seco-cec/seco-cec.h
14434
14435 SECURE COMPUTING
14436 M:      Kees Cook <keescook@chromium.org>
14437 R:      Andy Lutomirski <luto@amacapital.net>
14438 R:      Will Drewry <wad@chromium.org>
14439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
14440 S:      Supported
14441 F:      kernel/seccomp.c
14442 F:      include/uapi/linux/seccomp.h
14443 F:      include/linux/seccomp.h
14444 F:      tools/testing/selftests/seccomp/*
14445 F:      tools/testing/selftests/kselftest_harness.h
14446 F:      Documentation/userspace-api/seccomp_filter.rst
14447 K:      \bsecure_computing
14448 K:      \bTIF_SECCOMP\b
14449
14450 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
14451 M:      Al Cooper <alcooperx@gmail.com>
14452 L:      linux-mmc@vger.kernel.org
14453 L:      bcm-kernel-feedback-list@broadcom.com
14454 S:      Maintained
14455 F:      drivers/mmc/host/sdhci-brcmstb*
14456
14457 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
14458 M:      Adrian Hunter <adrian.hunter@intel.com>
14459 L:      linux-mmc@vger.kernel.org
14460 S:      Maintained
14461 F:      drivers/mmc/host/sdhci*
14462 F:      include/linux/mmc/sdhci*
14463
14464 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
14465 M:      Adrian Hunter <adrian.hunter@intel.com>
14466 M:      Ritesh Harjani <riteshh@codeaurora.org>
14467 M:      Asutosh Das <asutoshd@codeaurora.org>
14468 L:      linux-mmc@vger.kernel.org
14469 S:      Maintained
14470 F:      drivers/mmc/host/cqhci*
14471
14472 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
14473 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
14474 M:      Manjunath M B <manjumb@synopsys.com>
14475 L:      linux-mmc@vger.kernel.org
14476 S:      Maintained
14477 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
14478
14479 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
14480 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14481 L:      linux-mmc@vger.kernel.org
14482 S:      Supported
14483 F:      drivers/mmc/host/sdhci-of-at91.c
14484
14485 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
14486 M:      Ben Dooks <ben-linux@fluff.org>
14487 M:      Jaehoon Chung <jh80.chung@samsung.com>
14488 L:      linux-mmc@vger.kernel.org
14489 S:      Maintained
14490 F:      drivers/mmc/host/sdhci-s3c*
14491
14492 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
14493 M:      Viresh Kumar <vireshk@kernel.org>
14494 L:      linux-mmc@vger.kernel.org
14495 S:      Maintained
14496 F:      drivers/mmc/host/sdhci-spear.c
14497
14498 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
14499 M:      Kishon Vijay Abraham I <kishon@ti.com>
14500 L:      linux-mmc@vger.kernel.org
14501 S:      Maintained
14502 F:      drivers/mmc/host/sdhci-omap.c
14503
14504 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
14505 M:      Scott Bauer <scott.bauer@intel.com>
14506 M:      Jonathan Derrick <jonathan.derrick@intel.com>
14507 L:      linux-block@vger.kernel.org
14508 S:      Supported
14509 F:      block/sed*
14510 F:      block/opal_proto.h
14511 F:      include/linux/sed*
14512 F:      include/uapi/linux/sed*
14513
14514 SECURITY CONTACT
14515 M:      Security Officers <security@kernel.org>
14516 S:      Supported
14517
14518 SECURITY SUBSYSTEM
14519 M:      James Morris <jmorris@namei.org>
14520 M:      "Serge E. Hallyn" <serge@hallyn.com>
14521 L:      linux-security-module@vger.kernel.org (suggested Cc:)
14522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
14523 W:      http://kernsec.org/
14524 S:      Supported
14525 F:      security/
14526 X:      security/selinux/
14527
14528 SELINUX SECURITY MODULE
14529 M:      Paul Moore <paul@paul-moore.com>
14530 M:      Stephen Smalley <sds@tycho.nsa.gov>
14531 M:      Eric Paris <eparis@parisplace.org>
14532 L:      selinux@vger.kernel.org
14533 W:      https://selinuxproject.org
14534 W:      https://github.com/SELinuxProject
14535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
14536 S:      Supported
14537 F:      include/uapi/linux/selinux_netlink.h
14538 F:      security/selinux/
14539 F:      scripts/selinux/
14540 F:      Documentation/admin-guide/LSM/SELinux.rst
14541
14542 SENSABLE PHANTOM
14543 M:      Jiri Slaby <jirislaby@gmail.com>
14544 S:      Maintained
14545 F:      drivers/misc/phantom.c
14546 F:      include/uapi/linux/phantom.h
14547
14548 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
14549 M:      Tomasz Duszynski <tduszyns@gmail.com>
14550 S:      Maintained
14551 F:      drivers/iio/chemical/sps30.c
14552 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
14553
14554 SERIAL DEVICE BUS
14555 M:      Rob Herring <robh@kernel.org>
14556 L:      linux-serial@vger.kernel.org
14557 S:      Maintained
14558 F:      Documentation/devicetree/bindings/serial/slave-device.txt
14559 F:      drivers/tty/serdev/
14560 F:      include/linux/serdev.h
14561
14562 SERIAL DRIVERS
14563 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14564 L:      linux-serial@vger.kernel.org
14565 S:      Maintained
14566 F:      Documentation/devicetree/bindings/serial/
14567 F:      drivers/tty/serial/
14568
14569 SERIAL IR RECEIVER
14570 M:      Sean Young <sean@mess.org>
14571 L:      linux-media@vger.kernel.org
14572 S:      Maintained
14573 F:      drivers/media/rc/serial_ir.c
14574
14575 SFC NETWORK DRIVER
14576 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
14577 M:      Edward Cree <ecree@solarflare.com>
14578 M:      Martin Habets <mhabets@solarflare.com>
14579 L:      netdev@vger.kernel.org
14580 S:      Supported
14581 F:      drivers/net/ethernet/sfc/
14582
14583 SFF/SFP/SFP+ MODULE SUPPORT
14584 M:      Russell King <linux@armlinux.org.uk>
14585 L:      netdev@vger.kernel.org
14586 S:      Maintained
14587 F:      drivers/net/phy/phylink.c
14588 F:      drivers/net/phy/sfp*
14589 F:      include/linux/phylink.h
14590 F:      include/linux/sfp.h
14591 K:      phylink
14592
14593 SGI GRU DRIVER
14594 M:      Dimitri Sivanich <sivanich@sgi.com>
14595 S:      Maintained
14596 F:      drivers/misc/sgi-gru/
14597
14598 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
14599 M:      Pat Gefre <pfg@sgi.com>
14600 L:      linux-ia64@vger.kernel.org
14601 S:      Supported
14602 F:      Documentation/ia64/serial.rst
14603 F:      drivers/tty/serial/ioc?_serial.c
14604 F:      include/linux/ioc?.h
14605
14606 SGI XP/XPC/XPNET DRIVER
14607 M:      Cliff Whickman <cpw@sgi.com>
14608 M:      Robin Holt <robinmholt@gmail.com>
14609 S:      Maintained
14610 F:      drivers/misc/sgi-xp/
14611
14612 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
14613 M:      Ursula Braun <ubraun@linux.ibm.com>
14614 M:      Karsten Graul <kgraul@linux.ibm.com>
14615 L:      linux-s390@vger.kernel.org
14616 W:      http://www.ibm.com/developerworks/linux/linux390/
14617 S:      Supported
14618 F:      net/smc/
14619
14620 SHARP RJ54N1CB0C SENSOR DRIVER
14621 M:      Jacopo Mondi <jacopo@jmondi.org>
14622 L:      linux-media@vger.kernel.org
14623 T:      git git://linuxtv.org/media_tree.git
14624 S:      Odd fixes
14625 F:      drivers/media/i2c/rj54n1cb0c.c
14626 F:      include/media/i2c/rj54n1cb0c.h
14627
14628 SH_VEU V4L2 MEM2MEM DRIVER
14629 L:      linux-media@vger.kernel.org
14630 S:      Orphan
14631 F:      drivers/media/platform/sh_veu.c
14632
14633 SH_VOU V4L2 OUTPUT DRIVER
14634 L:      linux-media@vger.kernel.org
14635 S:      Orphan
14636 F:      drivers/media/platform/sh_vou.c
14637 F:      include/media/drv-intf/sh_vou.h
14638
14639 SI2157 MEDIA DRIVER
14640 M:      Antti Palosaari <crope@iki.fi>
14641 L:      linux-media@vger.kernel.org
14642 W:      https://linuxtv.org
14643 W:      http://palosaari.fi/linux/
14644 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14645 T:      git git://linuxtv.org/anttip/media_tree.git
14646 S:      Maintained
14647 F:      drivers/media/tuners/si2157*
14648
14649 SI2165 MEDIA DRIVER
14650 M:      Matthias Schwarzott <zzam@gentoo.org>
14651 L:      linux-media@vger.kernel.org
14652 W:      https://linuxtv.org
14653 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14654 S:      Maintained
14655 F:      drivers/media/dvb-frontends/si2165*
14656
14657 SI2168 MEDIA DRIVER
14658 M:      Antti Palosaari <crope@iki.fi>
14659 L:      linux-media@vger.kernel.org
14660 W:      https://linuxtv.org
14661 W:      http://palosaari.fi/linux/
14662 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14663 T:      git git://linuxtv.org/anttip/media_tree.git
14664 S:      Maintained
14665 F:      drivers/media/dvb-frontends/si2168*
14666
14667 SI470X FM RADIO RECEIVER I2C DRIVER
14668 M:      Hans Verkuil <hverkuil@xs4all.nl>
14669 L:      linux-media@vger.kernel.org
14670 T:      git git://linuxtv.org/media_tree.git
14671 W:      https://linuxtv.org
14672 S:      Odd Fixes
14673 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
14674
14675 SI470X FM RADIO RECEIVER USB DRIVER
14676 M:      Hans Verkuil <hverkuil@xs4all.nl>
14677 L:      linux-media@vger.kernel.org
14678 T:      git git://linuxtv.org/media_tree.git
14679 W:      https://linuxtv.org
14680 S:      Maintained
14681 F:      drivers/media/radio/si470x/radio-si470x-common.c
14682 F:      drivers/media/radio/si470x/radio-si470x.h
14683 F:      drivers/media/radio/si470x/radio-si470x-usb.c
14684
14685 SI4713 FM RADIO TRANSMITTER I2C DRIVER
14686 M:      Eduardo Valentin <edubezval@gmail.com>
14687 L:      linux-media@vger.kernel.org
14688 T:      git git://linuxtv.org/media_tree.git
14689 W:      https://linuxtv.org
14690 S:      Odd Fixes
14691 F:      drivers/media/radio/si4713/si4713.?
14692
14693 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
14694 M:      Eduardo Valentin <edubezval@gmail.com>
14695 L:      linux-media@vger.kernel.org
14696 T:      git git://linuxtv.org/media_tree.git
14697 W:      https://linuxtv.org
14698 S:      Odd Fixes
14699 F:      drivers/media/radio/si4713/radio-platform-si4713.c
14700
14701 SI4713 FM RADIO TRANSMITTER USB DRIVER
14702 M:      Hans Verkuil <hverkuil@xs4all.nl>
14703 L:      linux-media@vger.kernel.org
14704 T:      git git://linuxtv.org/media_tree.git
14705 W:      https://linuxtv.org
14706 S:      Maintained
14707 F:      drivers/media/radio/si4713/radio-usb-si4713.c
14708
14709 SIANO DVB DRIVER
14710 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14711 L:      linux-media@vger.kernel.org
14712 W:      https://linuxtv.org
14713 T:      git git://linuxtv.org/media_tree.git
14714 S:      Odd fixes
14715 F:      drivers/media/common/siano/
14716 F:      drivers/media/usb/siano/
14717 F:      drivers/media/usb/siano/
14718 F:      drivers/media/mmc/siano/
14719
14720 SIFIVE DRIVERS
14721 M:      Palmer Dabbelt <palmer@sifive.com>
14722 M:      Paul Walmsley <paul.walmsley@sifive.com>
14723 L:      linux-riscv@lists.infradead.org
14724 T:      git git://github.com/sifive/riscv-linux.git
14725 S:      Supported
14726 K:      [^@]sifive
14727 N:      sifive
14728
14729 SIFIVE FU540 SYSTEM-ON-CHIP
14730 M:      Paul Walmsley <paul.walmsley@sifive.com>
14731 M:      Palmer Dabbelt <palmer@sifive.com>
14732 L:      linux-riscv@lists.infradead.org
14733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
14734 S:      Supported
14735 K:      fu540
14736 N:      fu540
14737
14738 SILEAD TOUCHSCREEN DRIVER
14739 M:      Hans de Goede <hdegoede@redhat.com>
14740 L:      linux-input@vger.kernel.org
14741 L:      platform-driver-x86@vger.kernel.org
14742 S:      Maintained
14743 F:      drivers/input/touchscreen/silead.c
14744 F:      drivers/platform/x86/touchscreen_dmi.c
14745
14746 SILICON MOTION SM712 FRAME BUFFER DRIVER
14747 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14748 M:      Teddy Wang <teddy.wang@siliconmotion.com>
14749 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14750 L:      linux-fbdev@vger.kernel.org
14751 S:      Maintained
14752 F:      drivers/video/fbdev/sm712*
14753 F:      Documentation/fb/sm712fb.rst
14754
14755 SIMPLE FIRMWARE INTERFACE (SFI)
14756 M:      Len Brown <lenb@kernel.org>
14757 L:      sfi-devel@simplefirmware.org
14758 W:      http://simplefirmware.org/
14759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
14760 S:      Supported
14761 F:      arch/x86/platform/sfi/
14762 F:      drivers/sfi/
14763 F:      include/linux/sfi*.h
14764
14765 SIMPLEFB FB DRIVER
14766 M:      Hans de Goede <hdegoede@redhat.com>
14767 L:      linux-fbdev@vger.kernel.org
14768 S:      Maintained
14769 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
14770 F:      drivers/video/fbdev/simplefb.c
14771 F:      include/linux/platform_data/simplefb.h
14772
14773 SIMTEC EB110ATX (Chalice CATS)
14774 P:      Ben Dooks
14775 P:      Vincent Sanders <vince@simtec.co.uk>
14776 M:      Simtec Linux Team <linux@simtec.co.uk>
14777 W:      http://www.simtec.co.uk/products/EB110ATX/
14778 S:      Supported
14779
14780 SIMTEC EB2410ITX (BAST)
14781 P:      Ben Dooks
14782 P:      Vincent Sanders <vince@simtec.co.uk>
14783 M:      Simtec Linux Team <linux@simtec.co.uk>
14784 W:      http://www.simtec.co.uk/products/EB2410ITX/
14785 S:      Supported
14786 F:      arch/arm/mach-s3c24xx/mach-bast.c
14787 F:      arch/arm/mach-s3c24xx/bast-ide.c
14788 F:      arch/arm/mach-s3c24xx/bast-irq.c
14789
14790 SIPHASH PRF ROUTINES
14791 M:      Jason A. Donenfeld <Jason@zx2c4.com>
14792 S:      Maintained
14793 F:      lib/siphash.c
14794 F:      lib/test_siphash.c
14795 F:      include/linux/siphash.h
14796
14797 SIOX
14798 M:      Thorsten Scherer <t.scherer@eckelmann.de>
14799 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14800 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14801 S:      Supported
14802 F:      drivers/siox/*
14803 F:      drivers/gpio/gpio-siox.c
14804 F:      include/trace/events/siox.h
14805
14806 SIS 190 ETHERNET DRIVER
14807 M:      Francois Romieu <romieu@fr.zoreil.com>
14808 L:      netdev@vger.kernel.org
14809 S:      Maintained
14810 F:      drivers/net/ethernet/sis/sis190.c
14811
14812 SIS 900/7016 FAST ETHERNET DRIVER
14813 M:      Daniele Venzano <venza@brownhat.org>
14814 W:      http://www.brownhat.org/sis900.html
14815 L:      netdev@vger.kernel.org
14816 S:      Maintained
14817 F:      drivers/net/ethernet/sis/sis900.*
14818
14819 SIS FRAMEBUFFER DRIVER
14820 M:      Thomas Winischhofer <thomas@winischhofer.net>
14821 W:      http://www.winischhofer.net/linuxsisvga.shtml
14822 S:      Maintained
14823 F:      Documentation/fb/sisfb.rst
14824 F:      drivers/video/fbdev/sis/
14825 F:      include/video/sisfb.h
14826
14827 SIS USB2VGA DRIVER
14828 M:      Thomas Winischhofer <thomas@winischhofer.net>
14829 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
14830 S:      Maintained
14831 F:      drivers/usb/misc/sisusbvga/
14832
14833 SLAB ALLOCATOR
14834 M:      Christoph Lameter <cl@linux.com>
14835 M:      Pekka Enberg <penberg@kernel.org>
14836 M:      David Rientjes <rientjes@google.com>
14837 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
14838 M:      Andrew Morton <akpm@linux-foundation.org>
14839 L:      linux-mm@kvack.org
14840 S:      Maintained
14841 F:      include/linux/sl?b*.h
14842 F:      mm/sl?b*
14843
14844 SLEEPABLE READ-COPY UPDATE (SRCU)
14845 M:      Lai Jiangshan <jiangshanlai@gmail.com>
14846 M:      "Paul E. McKenney" <paulmck@kernel.org>
14847 M:      Josh Triplett <josh@joshtriplett.org>
14848 R:      Steven Rostedt <rostedt@goodmis.org>
14849 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14850 L:      rcu@vger.kernel.org
14851 W:      http://www.rdrop.com/users/paulmck/RCU/
14852 S:      Supported
14853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14854 F:      include/linux/srcu*.h
14855 F:      kernel/rcu/srcu*.c
14856
14857 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
14858 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14859 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14860 S:      Maintained
14861 F:      drivers/slimbus/
14862 F:      Documentation/devicetree/bindings/slimbus/
14863 F:      include/linux/slimbus.h
14864
14865 SMACK SECURITY MODULE
14866 M:      Casey Schaufler <casey@schaufler-ca.com>
14867 L:      linux-security-module@vger.kernel.org
14868 W:      http://schaufler-ca.com
14869 T:      git git://github.com/cschaufler/smack-next
14870 S:      Maintained
14871 F:      Documentation/admin-guide/LSM/Smack.rst
14872 F:      security/smack/
14873
14874 SMC91x ETHERNET DRIVER
14875 M:      Nicolas Pitre <nico@fluxnic.net>
14876 S:      Odd Fixes
14877 F:      drivers/net/ethernet/smsc/smc91x.*
14878
14879 SMIA AND SMIA++ IMAGE SENSOR DRIVER
14880 M:      Sakari Ailus <sakari.ailus@iki.fi>
14881 L:      linux-media@vger.kernel.org
14882 S:      Maintained
14883 F:      drivers/media/i2c/smiapp/
14884 F:      include/media/i2c/smiapp.h
14885 F:      drivers/media/i2c/smiapp-pll.c
14886 F:      drivers/media/i2c/smiapp-pll.h
14887 F:      include/uapi/linux/smiapp.h
14888 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
14889
14890 SMM665 HARDWARE MONITOR DRIVER
14891 M:      Guenter Roeck <linux@roeck-us.net>
14892 L:      linux-hwmon@vger.kernel.org
14893 S:      Maintained
14894 F:      Documentation/hwmon/smm665.rst
14895 F:      drivers/hwmon/smm665.c
14896
14897 SMSC EMC2103 HARDWARE MONITOR DRIVER
14898 M:      Steve Glendinning <steve.glendinning@shawell.net>
14899 L:      linux-hwmon@vger.kernel.org
14900 S:      Maintained
14901 F:      Documentation/hwmon/emc2103.rst
14902 F:      drivers/hwmon/emc2103.c
14903
14904 SMSC SCH5627 HARDWARE MONITOR DRIVER
14905 M:      Hans de Goede <hdegoede@redhat.com>
14906 L:      linux-hwmon@vger.kernel.org
14907 S:      Supported
14908 F:      Documentation/hwmon/sch5627.rst
14909 F:      drivers/hwmon/sch5627.c
14910
14911 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
14912 M:      Steve Glendinning <steve.glendinning@shawell.net>
14913 L:      linux-fbdev@vger.kernel.org
14914 S:      Maintained
14915 F:      drivers/video/fbdev/smscufx.c
14916
14917 SMSC47B397 HARDWARE MONITOR DRIVER
14918 M:      Jean Delvare <jdelvare@suse.com>
14919 L:      linux-hwmon@vger.kernel.org
14920 S:      Maintained
14921 F:      Documentation/hwmon/smsc47b397.rst
14922 F:      drivers/hwmon/smsc47b397.c
14923
14924 SMSC911x ETHERNET DRIVER
14925 M:      Steve Glendinning <steve.glendinning@shawell.net>
14926 L:      netdev@vger.kernel.org
14927 S:      Maintained
14928 F:      include/linux/smsc911x.h
14929 F:      drivers/net/ethernet/smsc/smsc911x.*
14930
14931 SMSC9420 PCI ETHERNET DRIVER
14932 M:      Steve Glendinning <steve.glendinning@shawell.net>
14933 L:      netdev@vger.kernel.org
14934 S:      Maintained
14935 F:      drivers/net/ethernet/smsc/smsc9420.*
14936
14937 SOC-CAMERA V4L2 SUBSYSTEM
14938 L:      linux-media@vger.kernel.org
14939 T:      git git://linuxtv.org/media_tree.git
14940 S:      Orphan
14941 F:      include/media/soc_camera.h
14942 F:      drivers/staging/media/soc_camera/
14943
14944 SOCIONEXT SYNQUACER I2C DRIVER
14945 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
14946 L:      linux-i2c@vger.kernel.org
14947 S:      Maintained
14948 F:      drivers/i2c/busses/i2c-synquacer.c
14949 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
14950
14951 SOCIONEXT UNIPHIER SOUND DRIVER
14952 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14953 S:      Orphan
14954 F:      sound/soc/uniphier/
14955
14956 SOEKRIS NET48XX LED SUPPORT
14957 M:      Chris Boot <bootc@bootc.net>
14958 S:      Maintained
14959 F:      drivers/leds/leds-net48xx.c
14960
14961 SOFT-IWARP DRIVER (siw)
14962 M:      Bernard Metzler <bmt@zurich.ibm.com>
14963 L:      linux-rdma@vger.kernel.org
14964 S:      Supported
14965 F:      drivers/infiniband/sw/siw/
14966 F:      include/uapi/rdma/siw-abi.h
14967
14968 SOFT-ROCE DRIVER (rxe)
14969 M:      Moni Shoua <monis@mellanox.com>
14970 L:      linux-rdma@vger.kernel.org
14971 S:      Supported
14972 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
14973 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14974 F:      drivers/infiniband/sw/rxe/
14975 F:      include/uapi/rdma/rdma_user_rxe.h
14976
14977 SOFTLOGIC 6x10 MPEG CODEC
14978 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
14979 M:      Anton Sviridenko <anton@corp.bluecherry.net>
14980 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
14981 M:      Andrey Utkin <andrey_utkin@fastmail.com>
14982 M:      Ismael Luceno <ismael@iodev.co.uk>
14983 L:      linux-media@vger.kernel.org
14984 S:      Supported
14985 F:      drivers/media/pci/solo6x10/
14986
14987 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
14988 M:      James Morse <james.morse@arm.com>
14989 L:      linux-arm-kernel@lists.infradead.org
14990 S:      Maintained
14991 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
14992 F:      drivers/firmware/arm_sdei.c
14993 F:      include/linux/arm_sdei.h
14994 F:      include/uapi/linux/arm_sdei.h
14995
14996 SOFTWARE RAID (Multiple Disks) SUPPORT
14997 M:      Song Liu <song@kernel.org>
14998 L:      linux-raid@vger.kernel.org
14999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15000 S:      Supported
15001 F:      drivers/md/Makefile
15002 F:      drivers/md/Kconfig
15003 F:      drivers/md/md*
15004 F:      drivers/md/raid*
15005 F:      include/linux/raid/
15006 F:      include/uapi/linux/raid/
15007
15008 SOCIONEXT (SNI) AVE NETWORK DRIVER
15009 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15010 L:      netdev@vger.kernel.org
15011 S:      Maintained
15012 F:      drivers/net/ethernet/socionext/sni_ave.c
15013 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15014
15015 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15016 M:      Jassi Brar <jaswinder.singh@linaro.org>
15017 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15018 L:      netdev@vger.kernel.org
15019 S:      Maintained
15020 F:      drivers/net/ethernet/socionext/netsec.c
15021 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15022
15023 SOCIONEXT (SNI) Synquacer SPI DRIVER
15024 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15025 M:      Jassi Brar <jaswinder.singh@linaro.org>
15026 L:      linux-spi@vger.kernel.org
15027 S:      Maintained
15028 F:      drivers/spi/spi-synquacer.c
15029 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15030
15031 SOLIDRUN CLEARFOG SUPPORT
15032 M:      Russell King <linux@armlinux.org.uk>
15033 S:      Maintained
15034 F:      arch/arm/boot/dts/armada-388-clearfog*
15035 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15036
15037 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15038 M:      Russell King <linux@armlinux.org.uk>
15039 S:      Maintained
15040 F:      arch/arm/boot/dts/imx6*-cubox-i*
15041 F:      arch/arm/boot/dts/imx6*-hummingboard*
15042 F:      arch/arm/boot/dts/imx6*-sr-*
15043
15044 SONIC NETWORK DRIVER
15045 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15046 L:      netdev@vger.kernel.org
15047 S:      Maintained
15048 F:      drivers/net/ethernet/natsemi/sonic.*
15049
15050 SONICS SILICON BACKPLANE DRIVER (SSB)
15051 M:      Michael Buesch <m@bues.ch>
15052 L:      linux-wireless@vger.kernel.org
15053 S:      Maintained
15054 F:      drivers/ssb/
15055 F:      include/linux/ssb/
15056
15057 SONY IMX214 SENSOR DRIVER
15058 M:      Ricardo Ribalda <ricardo.ribalda@gmail.com>
15059 L:      linux-media@vger.kernel.org
15060 T:      git git://linuxtv.org/media_tree.git
15061 S:      Maintained
15062 F:      drivers/media/i2c/imx214.c
15063 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15064
15065 SONY IMX258 SENSOR DRIVER
15066 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15067 L:      linux-media@vger.kernel.org
15068 T:      git git://linuxtv.org/media_tree.git
15069 S:      Maintained
15070 F:      drivers/media/i2c/imx258.c
15071
15072 SONY IMX274 SENSOR DRIVER
15073 M:      Leon Luo <leonl@leopardimaging.com>
15074 L:      linux-media@vger.kernel.org
15075 T:      git git://linuxtv.org/media_tree.git
15076 S:      Maintained
15077 F:      drivers/media/i2c/imx274.c
15078 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15079
15080 SONY IMX319 SENSOR DRIVER
15081 M:      Bingbu Cao <bingbu.cao@intel.com>
15082 L:      linux-media@vger.kernel.org
15083 T:      git git://linuxtv.org/media_tree.git
15084 S:      Maintained
15085 F:      drivers/media/i2c/imx319.c
15086
15087 SONY IMX355 SENSOR DRIVER
15088 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15089 L:      linux-media@vger.kernel.org
15090 T:      git git://linuxtv.org/media_tree.git
15091 S:      Maintained
15092 F:      drivers/media/i2c/imx355.c
15093
15094 SONY MEMORYSTICK SUBSYSTEM
15095 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15096 M:      Alex Dubov <oakad@yahoo.com>
15097 M:      Ulf Hansson <ulf.hansson@linaro.org>
15098 L:      linux-mmc@vger.kernel.org
15099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15100 S:      Maintained
15101 F:      drivers/memstick/
15102 F:      include/linux/memstick.h
15103
15104 SONY VAIO CONTROL DEVICE DRIVER
15105 M:      Mattia Dongili <malattia@linux.it>
15106 L:      platform-driver-x86@vger.kernel.org
15107 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15108 S:      Maintained
15109 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15110 F:      drivers/char/sonypi.c
15111 F:      drivers/platform/x86/sony-laptop.c
15112 F:      include/linux/sony-laptop.h
15113
15114 SOUND
15115 M:      Jaroslav Kysela <perex@perex.cz>
15116 M:      Takashi Iwai <tiwai@suse.com>
15117 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15118 W:      http://www.alsa-project.org/
15119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15120 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15121 S:      Maintained
15122 F:      Documentation/sound/
15123 F:      include/sound/
15124 F:      include/uapi/sound/
15125 F:      sound/
15126
15127 SOUND - COMPRESSED AUDIO
15128 M:      Vinod Koul <vkoul@kernel.org>
15129 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15131 S:      Supported
15132 F:      Documentation/sound/designs/compress-offload.rst
15133 F:      include/sound/compress_driver.h
15134 F:      include/uapi/sound/compress_*
15135 F:      sound/core/compress_offload.c
15136 F:      sound/soc/soc-compress.c
15137
15138 SOUND - DMAENGINE HELPERS
15139 M:      Lars-Peter Clausen <lars@metafoo.de>
15140 S:      Supported
15141 F:      include/sound/dmaengine_pcm.h
15142 F:      sound/core/pcm_dmaengine.c
15143 F:      sound/soc/soc-generic-dmaengine-pcm.c
15144
15145 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15146 M:      Liam Girdwood <lgirdwood@gmail.com>
15147 M:      Mark Brown <broonie@kernel.org>
15148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15149 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15150 W:      http://alsa-project.org/main/index.php/ASoC
15151 S:      Supported
15152 F:      Documentation/devicetree/bindings/sound/
15153 F:      Documentation/sound/soc/
15154 F:      sound/soc/
15155 F:      include/dt-bindings/sound/
15156 F:      include/sound/soc*
15157
15158 SOUNDWIRE SUBSYSTEM
15159 M:      Vinod Koul <vkoul@kernel.org>
15160 M:      Sanyog Kale <sanyog.r.kale@intel.com>
15161 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15162 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15163 S:      Supported
15164 F:      Documentation/driver-api/soundwire/
15165 F:      drivers/soundwire/
15166 F:      include/linux/soundwire/
15167
15168 SP2 MEDIA DRIVER
15169 M:      Olli Salonen <olli.salonen@iki.fi>
15170 L:      linux-media@vger.kernel.org
15171 W:      https://linuxtv.org
15172 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15173 S:      Maintained
15174 F:      drivers/media/dvb-frontends/sp2*
15175
15176 SPARC + UltraSPARC (sparc/sparc64)
15177 M:      "David S. Miller" <davem@davemloft.net>
15178 L:      sparclinux@vger.kernel.org
15179 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15182 S:      Maintained
15183 F:      arch/sparc/
15184 F:      drivers/sbus/
15185
15186 SPARC SERIAL DRIVERS
15187 M:      "David S. Miller" <davem@davemloft.net>
15188 L:      sparclinux@vger.kernel.org
15189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15191 S:      Maintained
15192 F:      include/linux/sunserialcore.h
15193 F:      drivers/tty/serial/suncore.c
15194 F:      drivers/tty/serial/sunhv.c
15195 F:      drivers/tty/serial/sunsab.c
15196 F:      drivers/tty/serial/sunsab.h
15197 F:      drivers/tty/serial/sunsu.c
15198 F:      drivers/tty/serial/sunzilog.c
15199 F:      drivers/tty/serial/sunzilog.h
15200 F:      drivers/tty/vcc.c
15201
15202 SPARSE CHECKER
15203 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15204 L:      linux-sparse@vger.kernel.org
15205 W:      https://sparse.wiki.kernel.org/
15206 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15207 S:      Maintained
15208 F:      include/linux/compiler.h
15209
15210 SPEAR CLOCK FRAMEWORK SUPPORT
15211 M:      Viresh Kumar <vireshk@kernel.org>
15212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15213 W:      http://www.st.com/spear
15214 S:      Maintained
15215 F:      drivers/clk/spear/
15216
15217 SPEAR PLATFORM SUPPORT
15218 M:      Viresh Kumar <vireshk@kernel.org>
15219 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
15220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15221 W:      http://www.st.com/spear
15222 S:      Maintained
15223 F:      arch/arm/boot/dts/spear*
15224 F:      arch/arm/mach-spear/
15225
15226 SPI NOR SUBSYSTEM
15227 M:      Marek Vasut <marek.vasut@gmail.com>
15228 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
15229 L:      linux-mtd@lists.infradead.org
15230 W:      http://www.linux-mtd.infradead.org/
15231 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15233 S:      Maintained
15234 F:      drivers/mtd/spi-nor/
15235 F:      include/linux/mtd/spi-nor.h
15236
15237 SPI SUBSYSTEM
15238 M:      Mark Brown <broonie@kernel.org>
15239 L:      linux-spi@vger.kernel.org
15240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15241 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15242 S:      Maintained
15243 F:      Documentation/devicetree/bindings/spi/
15244 F:      Documentation/spi/
15245 F:      drivers/spi/
15246 F:      include/linux/spi/
15247 F:      include/uapi/linux/spi/
15248 F:      tools/spi/
15249
15250 SPIDERNET NETWORK DRIVER for CELL
15251 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
15252 L:      netdev@vger.kernel.org
15253 S:      Supported
15254 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15255 F:      drivers/net/ethernet/toshiba/spider_net*
15256
15257 SPMI SUBSYSTEM
15258 R:      Stephen Boyd <sboyd@kernel.org>
15259 L:      linux-arm-msm@vger.kernel.org
15260 F:      Documentation/devicetree/bindings/spmi/
15261 F:      drivers/spmi/
15262 F:      include/dt-bindings/spmi/spmi.h
15263 F:      include/linux/spmi.h
15264 F:      include/trace/events/spmi.h
15265
15266 SPU FILE SYSTEM
15267 M:      Jeremy Kerr <jk@ozlabs.org>
15268 L:      linuxppc-dev@lists.ozlabs.org
15269 W:      http://www.ibm.com/developerworks/power/cell/
15270 S:      Supported
15271 F:      Documentation/filesystems/spufs.txt
15272 F:      arch/powerpc/platforms/cell/spufs/
15273
15274 SQUASHFS FILE SYSTEM
15275 M:      Phillip Lougher <phillip@squashfs.org.uk>
15276 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
15277 W:      http://squashfs.org.uk
15278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15279 S:      Maintained
15280 F:      Documentation/filesystems/squashfs.txt
15281 F:      fs/squashfs/
15282
15283 SRM (Alpha) environment access
15284 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
15285 S:      Maintained
15286 F:      arch/alpha/kernel/srm_env.c
15287
15288 ST LSM6DSx IMU IIO DRIVER
15289 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
15290 L:      linux-iio@vger.kernel.org
15291 W:      http://www.st.com/
15292 S:      Maintained
15293 F:      drivers/iio/imu/st_lsm6dsx/
15294 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15295
15296 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15297 M:      Mickael Guene <mickael.guene@st.com>
15298 L:      linux-media@vger.kernel.org
15299 T:      git git://linuxtv.org/media_tree.git
15300 S:      Maintained
15301 F:      drivers/media/i2c/st-mipid02.c
15302 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15303
15304 ST STM32 I2C/SMBUS DRIVER
15305 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
15306 L:      linux-i2c@vger.kernel.org
15307 S:      Maintained
15308 F:      drivers/i2c/busses/i2c-stm32*
15309
15310 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15311 M:      Song Qiang <songqiang1304521@gmail.com>
15312 L:      linux-iio@vger.kernel.org
15313 S:      Maintained
15314 F:      drivers/iio/proximity/vl53l0x-i2c.c
15315 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15316
15317 STABLE BRANCH
15318 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15319 M:      Sasha Levin <sashal@kernel.org>
15320 L:      stable@vger.kernel.org
15321 S:      Supported
15322 F:      Documentation/process/stable-kernel-rules.rst
15323
15324 STAGING - COMEDI
15325 M:      Ian Abbott <abbotti@mev.co.uk>
15326 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
15327 S:      Odd Fixes
15328 F:      drivers/staging/comedi/
15329
15330 STAGING - FIELDBUS SUBSYSTEM
15331 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15332 S:      Maintained
15333 F:      drivers/staging/fieldbus/*
15334 F:      drivers/staging/fieldbus/Documentation/
15335
15336 STAGING - HMS ANYBUS-S BUS
15337 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15338 S:      Maintained
15339 F:      drivers/staging/fieldbus/anybuss/
15340
15341 STAGING - INDUSTRIAL IO
15342 M:      Jonathan Cameron <jic23@kernel.org>
15343 L:      linux-iio@vger.kernel.org
15344 S:      Odd Fixes
15345 F:      Documentation/devicetree/bindings/staging/iio/
15346 F:      drivers/staging/iio/
15347
15348 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15349 M:      Marc Dietrich <marvin24@gmx.de>
15350 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
15351 L:      linux-tegra@vger.kernel.org
15352 S:      Maintained
15353 F:      drivers/staging/nvec/
15354
15355 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15356 M:      Jens Frederich <jfrederich@gmail.com>
15357 M:      Daniel Drake <dsd@laptop.org>
15358 M:      Jon Nettleton <jon.nettleton@gmail.com>
15359 W:      http://wiki.laptop.org/go/DCON
15360 S:      Maintained
15361 F:      drivers/staging/olpc_dcon/
15362
15363 STAGING - REALTEK RTL8712U DRIVERS
15364 M:      Larry Finger <Larry.Finger@lwfinger.net>
15365 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
15366 S:      Odd Fixes
15367 F:      drivers/staging/rtl8712/
15368
15369 STAGING - REALTEK RTL8188EU DRIVERS
15370 M:      Larry Finger <Larry.Finger@lwfinger.net>
15371 S:      Odd Fixes
15372 F:      drivers/staging/rtl8188eu/
15373
15374 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15375 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15376 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15377 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15378 L:      linux-fbdev@vger.kernel.org
15379 S:      Maintained
15380 F:      drivers/staging/sm750fb/
15381
15382 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
15383 M:      William Hubbs <w.d.hubbs@gmail.com>
15384 M:      Chris Brannon <chris@the-brannons.com>
15385 M:      Kirk Reiser <kirk@reisers.ca>
15386 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
15387 L:      speakup@linux-speakup.org
15388 W:      http://www.linux-speakup.org/
15389 S:      Odd Fixes
15390 F:      drivers/staging/speakup/
15391
15392 STAGING - VIA VT665X DRIVERS
15393 M:      Forest Bond <forest@alittletooquiet.net>
15394 S:      Odd Fixes
15395 F:      drivers/staging/vt665?/
15396
15397 STAGING - WILC1000 WIFI DRIVER
15398 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
15399 M:      Ajay Singh <ajay.kathat@microchip.com>
15400 L:      linux-wireless@vger.kernel.org
15401 S:      Supported
15402 F:      drivers/staging/wilc1000/
15403
15404 STAGING SUBSYSTEM
15405 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
15407 L:      devel@driverdev.osuosl.org
15408 S:      Supported
15409 F:      drivers/staging/
15410
15411 STARFIRE/DURALAN NETWORK DRIVER
15412 M:      Ion Badulescu <ionut@badula.org>
15413 S:      Odd Fixes
15414 F:      drivers/net/ethernet/adaptec/starfire*
15415
15416 STEC S1220 SKD DRIVER
15417 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
15418 L:      linux-block@vger.kernel.org
15419 S:      Maintained
15420 F:      drivers/block/skd*[ch]
15421
15422 STI AUDIO (ASoC) DRIVERS
15423 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15424 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15425 S:      Maintained
15426 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
15427 F:      sound/soc/sti/
15428
15429 STI CEC DRIVER
15430 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
15431 S:      Maintained
15432 F:      drivers/media/platform/sti/cec/
15433 F:      Documentation/devicetree/bindings/media/stih-cec.txt
15434
15435 STK1160 USB VIDEO CAPTURE DRIVER
15436 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
15437 L:      linux-media@vger.kernel.org
15438 T:      git git://linuxtv.org/media_tree.git
15439 S:      Maintained
15440 F:      drivers/media/usb/stk1160/
15441
15442 STM32 AUDIO (ASoC) DRIVERS
15443 M:      Olivier Moysan <olivier.moysan@st.com>
15444 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15445 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15446 S:      Maintained
15447 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
15448 F:      sound/soc/stm/
15449
15450 STM32 TIMER/LPTIMER DRIVERS
15451 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
15452 S:      Maintained
15453 F:      drivers/*/stm32-*timer*
15454 F:      drivers/pwm/pwm-stm32*
15455 F:      include/linux/*/stm32-*tim*
15456 F:      Documentation/ABI/testing/*timer-stm32
15457 F:      Documentation/devicetree/bindings/*/stm32-*timer*
15458 F:      Documentation/devicetree/bindings/pwm/pwm-stm32*
15459
15460 STMMAC ETHERNET DRIVER
15461 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
15462 M:      Alexandre Torgue <alexandre.torgue@st.com>
15463 M:      Jose Abreu <joabreu@synopsys.com>
15464 L:      netdev@vger.kernel.org
15465 W:      http://www.stlinux.com
15466 S:      Supported
15467 F:      drivers/net/ethernet/stmicro/stmmac/
15468
15469 SUN3/3X
15470 M:      Sam Creasey <sammy@sammy.net>
15471 W:      http://sammy.net/sun3/
15472 S:      Maintained
15473 F:      arch/m68k/kernel/*sun3*
15474 F:      arch/m68k/sun3*/
15475 F:      arch/m68k/include/asm/sun3*
15476 F:      drivers/net/ethernet/i825xx/sun3*
15477
15478 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
15479 M:      Hans de Goede <hdegoede@redhat.com>
15480 L:      linux-input@vger.kernel.org
15481 S:      Maintained
15482 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
15483 F:      drivers/input/keyboard/sun4i-lradc-keys.c
15484
15485 SUNDANCE NETWORK DRIVER
15486 M:      Denis Kirjanov <kda@linux-powerpc.org>
15487 L:      netdev@vger.kernel.org
15488 S:      Maintained
15489 F:      drivers/net/ethernet/dlink/sundance.c
15490
15491 SUPERH
15492 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
15493 M:      Rich Felker <dalias@libc.org>
15494 L:      linux-sh@vger.kernel.org
15495 Q:      http://patchwork.kernel.org/project/linux-sh/list/
15496 S:      Maintained
15497 F:      Documentation/sh/
15498 F:      arch/sh/
15499 F:      drivers/sh/
15500
15501 SUSPEND TO RAM
15502 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
15503 M:      Len Brown <len.brown@intel.com>
15504 M:      Pavel Machek <pavel@ucw.cz>
15505 L:      linux-pm@vger.kernel.org
15506 B:      https://bugzilla.kernel.org
15507 S:      Supported
15508 F:      Documentation/power/
15509 F:      arch/x86/kernel/acpi/
15510 F:      drivers/base/power/
15511 F:      kernel/power/
15512 F:      include/linux/suspend.h
15513 F:      include/linux/freezer.h
15514 F:      include/linux/pm.h
15515
15516 SVGA HANDLING
15517 M:      Martin Mares <mj@ucw.cz>
15518 L:      linux-video@atrey.karlin.mff.cuni.cz
15519 S:      Maintained
15520 F:      Documentation/admin-guide/svga.rst
15521 F:      arch/x86/boot/video*
15522
15523 SWIOTLB SUBSYSTEM
15524 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15525 L:      iommu@lists.linux-foundation.org
15526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
15527 S:      Supported
15528 F:      kernel/dma/swiotlb.c
15529 F:      arch/*/kernel/pci-swiotlb.c
15530 F:      include/linux/swiotlb.h
15531
15532 SWITCHDEV
15533 M:      Jiri Pirko <jiri@resnulli.us>
15534 M:      Ivan Vecera <ivecera@redhat.com>
15535 L:      netdev@vger.kernel.org
15536 S:      Supported
15537 F:      net/switchdev/
15538 F:      include/net/switchdev.h
15539
15540 SY8106A REGULATOR DRIVER
15541 M:      Icenowy Zheng <icenowy@aosc.io>
15542 S:      Maintained
15543 F:      drivers/regulator/sy8106a-regulator.c
15544 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
15545
15546 SYNC FILE FRAMEWORK
15547 M:      Sumit Semwal <sumit.semwal@linaro.org>
15548 R:      Gustavo Padovan <gustavo@padovan.org>
15549 S:      Maintained
15550 L:      linux-media@vger.kernel.org
15551 L:      dri-devel@lists.freedesktop.org
15552 F:      drivers/dma-buf/sync_*
15553 F:      drivers/dma-buf/dma-fence*
15554 F:      drivers/dma-buf/sw_sync.c
15555 F:      include/linux/sync_file.h
15556 F:      include/uapi/linux/sync_file.h
15557 F:      Documentation/driver-api/sync_file.rst
15558 T:      git git://anongit.freedesktop.org/drm/drm-misc
15559
15560 SYNOPSYS ARC ARCHITECTURE
15561 M:      Vineet Gupta <vgupta@synopsys.com>
15562 L:      linux-snps-arc@lists.infradead.org
15563 S:      Supported
15564 F:      arch/arc/
15565 F:      Documentation/devicetree/bindings/arc/*
15566 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
15567 F:      drivers/clocksource/arc_timer.c
15568 F:      drivers/tty/serial/arc_uart.c
15569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
15570
15571 SYNOPSYS ARC HSDK SDP pll clock driver
15572 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15573 S:      Supported
15574 F:      drivers/clk/clk-hsdk-pll.c
15575 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
15576
15577 SYNOPSYS ARC SDP clock driver
15578 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15579 S:      Supported
15580 F:      drivers/clk/axs10x/*
15581 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
15582
15583 SYNOPSYS ARC SDP platform support
15584 M:      Alexey Brodkin <abrodkin@synopsys.com>
15585 S:      Supported
15586 F:      arch/arc/plat-axs10x
15587 F:      arch/arc/boot/dts/ax*
15588 F:      Documentation/devicetree/bindings/arc/axs10*
15589
15590 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
15591 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15592 S:      Supported
15593 F:      drivers/reset/reset-axs10x.c
15594 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
15595
15596 SYNOPSYS CREG GPIO DRIVER
15597 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15598 S:      Maintained
15599 F:      drivers/gpio/gpio-creg-snps.c
15600 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
15601
15602 SYNOPSYS DESIGNWARE 8250 UART DRIVER
15603 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15604 S:      Maintained
15605 F:      drivers/tty/serial/8250/8250_dw.c
15606
15607 SYNOPSYS DESIGNWARE APB GPIO DRIVER
15608 M:      Hoan Tran <hoan@os.amperecomputing.com>
15609 L:      linux-gpio@vger.kernel.org
15610 S:      Maintained
15611 F:      drivers/gpio/gpio-dwapb.c
15612 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
15613
15614 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
15615 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15616 S:      Maintained
15617 F:      drivers/dma/dw-axi-dmac/
15618 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
15619
15620 SYNOPSYS DESIGNWARE DMAC DRIVER
15621 M:      Viresh Kumar <vireshk@kernel.org>
15622 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15623 S:      Maintained
15624 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
15625 F:      drivers/dma/dw/
15626 F:      include/dt-bindings/dma/dw-dmac.h
15627 F:      include/linux/dma/dw.h
15628 F:      include/linux/platform_data/dma-dw.h
15629
15630 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
15631 M:      Jose Abreu <Jose.Abreu@synopsys.com>
15632 L:      netdev@vger.kernel.org
15633 S:      Supported
15634 F:      drivers/net/ethernet/synopsys/
15635
15636 SYNOPSYS DESIGNWARE I2C DRIVER
15637 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
15638 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15639 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
15640 L:      linux-i2c@vger.kernel.org
15641 S:      Maintained
15642 F:      drivers/i2c/busses/i2c-designware-*
15643 F:      include/linux/platform_data/i2c-designware.h
15644
15645 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
15646 M:      Jaehoon Chung <jh80.chung@samsung.com>
15647 L:      linux-mmc@vger.kernel.org
15648 S:      Maintained
15649 F:      drivers/mmc/host/dw_mmc*
15650
15651 SYNOPSYS HSDK RESET CONTROLLER DRIVER
15652 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15653 S:      Supported
15654 F:      drivers/reset/reset-hsdk.c
15655 F:      include/dt-bindings/reset/snps,hsdk-reset.h
15656 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
15657
15658 SYSTEM CONFIGURATION (SYSCON)
15659 M:      Lee Jones <lee.jones@linaro.org>
15660 M:      Arnd Bergmann <arnd@arndb.de>
15661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
15662 S:      Supported
15663 F:      drivers/mfd/syscon.c
15664
15665 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
15666 M:      Sudeep Holla <sudeep.holla@arm.com>
15667 L:      linux-arm-kernel@lists.infradead.org
15668 S:      Maintained
15669 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
15670 F:      drivers/clk/clk-sc[mp]i.c
15671 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
15672 F:      drivers/firmware/arm_scpi.c
15673 F:      drivers/firmware/arm_scmi/
15674 F:      drivers/reset/reset-scmi.c
15675 F:      include/linux/sc[mp]i_protocol.h
15676
15677 SYSTEM RESET/SHUTDOWN DRIVERS
15678 M:      Sebastian Reichel <sre@kernel.org>
15679 L:      linux-pm@vger.kernel.org
15680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15681 S:      Maintained
15682 F:      Documentation/devicetree/bindings/power/reset/
15683 F:      drivers/power/reset/
15684
15685 SYSTEM TRACE MODULE CLASS
15686 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15687 S:      Maintained
15688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
15689 F:      Documentation/trace/stm.rst
15690 F:      drivers/hwtracing/stm/
15691 F:      include/linux/stm.h
15692 F:      include/uapi/linux/stm.h
15693
15694 SYSV FILESYSTEM
15695 M:      Christoph Hellwig <hch@infradead.org>
15696 S:      Maintained
15697 F:      Documentation/filesystems/sysv-fs.txt
15698 F:      fs/sysv/
15699 F:      include/linux/sysv_fs.h
15700
15701 TASKSTATS STATISTICS INTERFACE
15702 M:      Balbir Singh <bsingharora@gmail.com>
15703 S:      Maintained
15704 F:      Documentation/accounting/taskstats*
15705 F:      include/linux/taskstats*
15706 F:      kernel/taskstats.c
15707
15708 TC subsystem
15709 M:      Jamal Hadi Salim <jhs@mojatatu.com>
15710 M:      Cong Wang <xiyou.wangcong@gmail.com>
15711 M:      Jiri Pirko <jiri@resnulli.us>
15712 L:      netdev@vger.kernel.org
15713 S:      Maintained
15714 F:      include/net/pkt_cls.h
15715 F:      include/net/pkt_sched.h
15716 F:      include/net/tc_act/
15717 F:      include/uapi/linux/pkt_cls.h
15718 F:      include/uapi/linux/pkt_sched.h
15719 F:      include/uapi/linux/tc_act/
15720 F:      include/uapi/linux/tc_ematch/
15721 F:      net/sched/
15722
15723 TC90522 MEDIA DRIVER
15724 M:      Akihiro Tsukada <tskd08@gmail.com>
15725 L:      linux-media@vger.kernel.org
15726 S:      Odd Fixes
15727 F:      drivers/media/dvb-frontends/tc90522*
15728
15729 TCP LOW PRIORITY MODULE
15730 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
15731 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
15732 W:      http://tcp-lp-mod.sourceforge.net/
15733 S:      Maintained
15734 F:      net/ipv4/tcp_lp.c
15735
15736 TDA10071 MEDIA DRIVER
15737 M:      Antti Palosaari <crope@iki.fi>
15738 L:      linux-media@vger.kernel.org
15739 W:      https://linuxtv.org
15740 W:      http://palosaari.fi/linux/
15741 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15742 T:      git git://linuxtv.org/anttip/media_tree.git
15743 S:      Maintained
15744 F:      drivers/media/dvb-frontends/tda10071*
15745
15746 TDA18212 MEDIA DRIVER
15747 M:      Antti Palosaari <crope@iki.fi>
15748 L:      linux-media@vger.kernel.org
15749 W:      https://linuxtv.org
15750 W:      http://palosaari.fi/linux/
15751 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15752 T:      git git://linuxtv.org/anttip/media_tree.git
15753 S:      Maintained
15754 F:      drivers/media/tuners/tda18212*
15755
15756 TDA18218 MEDIA DRIVER
15757 M:      Antti Palosaari <crope@iki.fi>
15758 L:      linux-media@vger.kernel.org
15759 W:      https://linuxtv.org
15760 W:      http://palosaari.fi/linux/
15761 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15762 T:      git git://linuxtv.org/anttip/media_tree.git
15763 S:      Maintained
15764 F:      drivers/media/tuners/tda18218*
15765
15766 TDA18250 MEDIA DRIVER
15767 M:      Olli Salonen <olli.salonen@iki.fi>
15768 L:      linux-media@vger.kernel.org
15769 W:      https://linuxtv.org
15770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15771 T:      git git://linuxtv.org/media_tree.git
15772 S:      Maintained
15773 F:      drivers/media/tuners/tda18250*
15774
15775 TDA18271 MEDIA DRIVER
15776 M:      Michael Krufky <mkrufky@linuxtv.org>
15777 L:      linux-media@vger.kernel.org
15778 W:      https://linuxtv.org
15779 W:      http://github.com/mkrufky
15780 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15781 T:      git git://linuxtv.org/mkrufky/tuners.git
15782 S:      Maintained
15783 F:      drivers/media/tuners/tda18271*
15784
15785 TDA1997x MEDIA DRIVER
15786 M:      Tim Harvey <tharvey@gateworks.com>
15787 L:      linux-media@vger.kernel.org
15788 W:      https://linuxtv.org
15789 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15790 S:      Maintained
15791 F:      drivers/media/i2c/tda1997x.*
15792
15793 TDA827x MEDIA DRIVER
15794 M:      Michael Krufky <mkrufky@linuxtv.org>
15795 L:      linux-media@vger.kernel.org
15796 W:      https://linuxtv.org
15797 W:      http://github.com/mkrufky
15798 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15799 T:      git git://linuxtv.org/mkrufky/tuners.git
15800 S:      Maintained
15801 F:      drivers/media/tuners/tda8290.*
15802
15803 TDA8290 MEDIA DRIVER
15804 M:      Michael Krufky <mkrufky@linuxtv.org>
15805 L:      linux-media@vger.kernel.org
15806 W:      https://linuxtv.org
15807 W:      http://github.com/mkrufky
15808 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15809 T:      git git://linuxtv.org/mkrufky/tuners.git
15810 S:      Maintained
15811 F:      drivers/media/tuners/tda8290.*
15812
15813 TDA9840 MEDIA DRIVER
15814 M:      Hans Verkuil <hverkuil@xs4all.nl>
15815 L:      linux-media@vger.kernel.org
15816 T:      git git://linuxtv.org/media_tree.git
15817 W:      https://linuxtv.org
15818 S:      Maintained
15819 F:      drivers/media/i2c/tda9840*
15820
15821 TEA5761 TUNER DRIVER
15822 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15823 L:      linux-media@vger.kernel.org
15824 W:      https://linuxtv.org
15825 T:      git git://linuxtv.org/media_tree.git
15826 S:      Odd fixes
15827 F:      drivers/media/tuners/tea5761.*
15828
15829 TEA5767 TUNER DRIVER
15830 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15831 L:      linux-media@vger.kernel.org
15832 W:      https://linuxtv.org
15833 T:      git git://linuxtv.org/media_tree.git
15834 S:      Maintained
15835 F:      drivers/media/tuners/tea5767.*
15836
15837 TEA6415C MEDIA DRIVER
15838 M:      Hans Verkuil <hverkuil@xs4all.nl>
15839 L:      linux-media@vger.kernel.org
15840 T:      git git://linuxtv.org/media_tree.git
15841 W:      https://linuxtv.org
15842 S:      Maintained
15843 F:      drivers/media/i2c/tea6415c*
15844
15845 TEA6420 MEDIA DRIVER
15846 M:      Hans Verkuil <hverkuil@xs4all.nl>
15847 L:      linux-media@vger.kernel.org
15848 T:      git git://linuxtv.org/media_tree.git
15849 W:      https://linuxtv.org
15850 S:      Maintained
15851 F:      drivers/media/i2c/tea6420*
15852
15853 TEAM DRIVER
15854 M:      Jiri Pirko <jiri@resnulli.us>
15855 L:      netdev@vger.kernel.org
15856 S:      Supported
15857 F:      drivers/net/team/
15858 F:      include/linux/if_team.h
15859 F:      include/uapi/linux/if_team.h
15860
15861 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
15862 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
15863 S:      Maintained
15864 F:      arch/x86/platform/ts5500/
15865
15866 TECHNOTREND USB IR RECEIVER
15867 M:      Sean Young <sean@mess.org>
15868 L:      linux-media@vger.kernel.org
15869 S:      Maintained
15870 F:      drivers/media/rc/ttusbir.c
15871
15872 TECHWELL TW9910 VIDEO DECODER
15873 L:      linux-media@vger.kernel.org
15874 S:      Orphan
15875 F:      drivers/media/i2c/tw9910.c
15876 F:      include/media/i2c/tw9910.h
15877
15878 TEE SUBSYSTEM
15879 M:      Jens Wiklander <jens.wiklander@linaro.org>
15880 L:      tee-dev@lists.linaro.org
15881 S:      Maintained
15882 F:      include/linux/tee_drv.h
15883 F:      include/uapi/linux/tee.h
15884 F:      drivers/tee/
15885 F:      Documentation/tee.txt
15886
15887 TEGRA ARCHITECTURE SUPPORT
15888 M:      Thierry Reding <thierry.reding@gmail.com>
15889 M:      Jonathan Hunter <jonathanh@nvidia.com>
15890 L:      linux-tegra@vger.kernel.org
15891 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
15892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
15893 S:      Supported
15894 N:      [^a-z]tegra
15895
15896 TEGRA CLOCK DRIVER
15897 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
15898 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
15899 S:      Supported
15900 F:      drivers/clk/tegra/
15901
15902 TEGRA DMA DRIVERS
15903 M:      Laxman Dewangan <ldewangan@nvidia.com>
15904 M:      Jon Hunter <jonathanh@nvidia.com>
15905 S:      Supported
15906 F:      drivers/dma/tegra*
15907
15908 TEGRA I2C DRIVER
15909 M:      Laxman Dewangan <ldewangan@nvidia.com>
15910 R:      Dmitry Osipenko <digetx@gmail.com>
15911 S:      Supported
15912 F:      drivers/i2c/busses/i2c-tegra.c
15913
15914 TEGRA IOMMU DRIVERS
15915 M:      Thierry Reding <thierry.reding@gmail.com>
15916 L:      linux-tegra@vger.kernel.org
15917 S:      Supported
15918 F:      drivers/iommu/tegra*
15919
15920 TEGRA KBC DRIVER
15921 M:      Laxman Dewangan <ldewangan@nvidia.com>
15922 S:      Supported
15923 F:      drivers/input/keyboard/tegra-kbc.c
15924
15925 TEGRA NAND DRIVER
15926 M:      Stefan Agner <stefan@agner.ch>
15927 M:      Lucas Stach <dev@lynxeye.de>
15928 S:      Maintained
15929 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
15930 F:      drivers/mtd/nand/raw/tegra_nand.c
15931
15932 TEGRA PWM DRIVER
15933 M:      Thierry Reding <thierry.reding@gmail.com>
15934 S:      Supported
15935 F:      drivers/pwm/pwm-tegra.c
15936
15937 TEGRA SERIAL DRIVER
15938 M:      Laxman Dewangan <ldewangan@nvidia.com>
15939 S:      Supported
15940 F:      drivers/tty/serial/serial-tegra.c
15941
15942 TEGRA SPI DRIVER
15943 M:      Laxman Dewangan <ldewangan@nvidia.com>
15944 S:      Supported
15945 F:      drivers/spi/spi-tegra*
15946
15947 TEGRA XUSB PADCTL DRIVER
15948 M:      JC Kuo <jckuo@nvidia.com>
15949 S:      Supported
15950 F:      drivers/phy/tegra/xusb*
15951
15952 TEHUTI ETHERNET DRIVER
15953 M:      Andy Gospodarek <andy@greyhouse.net>
15954 L:      netdev@vger.kernel.org
15955 S:      Supported
15956 F:      drivers/net/ethernet/tehuti/*
15957
15958 Telecom Clock Driver for MCPL0010
15959 M:      Mark Gross <mark.gross@intel.com>
15960 S:      Supported
15961 F:      drivers/char/tlclk.c
15962
15963 TENSILICA XTENSA PORT (xtensa)
15964 M:      Chris Zankel <chris@zankel.net>
15965 M:      Max Filippov <jcmvbkbc@gmail.com>
15966 L:      linux-xtensa@linux-xtensa.org
15967 T:      git git://github.com/czankel/xtensa-linux.git
15968 S:      Maintained
15969 F:      arch/xtensa/
15970 F:      drivers/irqchip/irq-xtensa-*
15971
15972 Texas Instruments' System Control Interface (TISCI) Protocol Driver
15973 M:      Nishanth Menon <nm@ti.com>
15974 M:      Tero Kristo <t-kristo@ti.com>
15975 M:      Santosh Shilimkar <ssantosh@kernel.org>
15976 L:      linux-arm-kernel@lists.infradead.org
15977 S:      Maintained
15978 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
15979 F:      drivers/firmware/ti_sci*
15980 F:      include/linux/soc/ti/ti_sci_protocol.h
15981 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
15982 F:      drivers/soc/ti/ti_sci_pm_domains.c
15983 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
15984 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
15985 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
15986 F:      drivers/clk/keystone/sci-clk.c
15987 F:      drivers/reset/reset-ti-sci.c
15988 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
15989 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
15990 F:      drivers/irqchip/irq-ti-sci-intr.c
15991 F:      drivers/irqchip/irq-ti-sci-inta.c
15992 F:      include/linux/soc/ti/ti_sci_inta_msi.h
15993 F:      drivers/soc/ti/ti_sci_inta_msi.c
15994
15995 Texas Instruments ASoC drivers
15996 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
15997 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15998 S:      Maintained
15999 F:      sound/soc/ti/
16000
16001 Texas Instruments' DAC7612 DAC Driver
16002 M:      Ricardo Ribalda <ricardo@ribalda.com>
16003 L:      linux-iio@vger.kernel.org
16004 S:      Supported
16005 F:      drivers/iio/dac/ti-dac7612.c
16006 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16007
16008 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16009 M:      Hans Verkuil <hverkuil@xs4all.nl>
16010 L:      linux-media@vger.kernel.org
16011 T:      git git://linuxtv.org/media_tree.git
16012 W:      https://linuxtv.org
16013 S:      Maintained
16014 F:      drivers/media/radio/radio-raremono.c
16015
16016 THERMAL
16017 M:      Zhang Rui <rui.zhang@intel.com>
16018 M:      Eduardo Valentin <edubezval@gmail.com>
16019 R:      Daniel Lezcano <daniel.lezcano@linaro.org>
16020 L:      linux-pm@vger.kernel.org
16021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
16022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
16023 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16024 S:      Supported
16025 F:      drivers/thermal/
16026 F:      include/linux/thermal.h
16027 F:      include/uapi/linux/thermal.h
16028 F:      include/linux/cpu_cooling.h
16029 F:      Documentation/devicetree/bindings/thermal/
16030
16031 THERMAL/CPU_COOLING
16032 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16033 M:      Viresh Kumar <viresh.kumar@linaro.org>
16034 M:      Javi Merino <javi.merino@kernel.org>
16035 L:      linux-pm@vger.kernel.org
16036 S:      Supported
16037 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16038 F:      drivers/thermal/cpu_cooling.c
16039 F:      include/linux/cpu_cooling.h
16040
16041 THINKPAD ACPI EXTRAS DRIVER
16042 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16043 L:      ibm-acpi-devel@lists.sourceforge.net
16044 L:      platform-driver-x86@vger.kernel.org
16045 W:      http://ibm-acpi.sourceforge.net
16046 W:      http://thinkwiki.org/wiki/Ibm-acpi
16047 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16048 S:      Maintained
16049 F:      drivers/platform/x86/thinkpad_acpi.c
16050
16051 THUNDERBOLT DRIVER
16052 M:      Andreas Noever <andreas.noever@gmail.com>
16053 M:      Michael Jamet <michael.jamet@intel.com>
16054 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16055 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16057 S:      Maintained
16058 F:      Documentation/admin-guide/thunderbolt.rst
16059 F:      drivers/thunderbolt/
16060 F:      include/linux/thunderbolt.h
16061
16062 THUNDERBOLT NETWORK DRIVER
16063 M:      Michael Jamet <michael.jamet@intel.com>
16064 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16065 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16066 L:      netdev@vger.kernel.org
16067 S:      Maintained
16068 F:      drivers/net/thunderbolt.c
16069
16070 THUNDERX GPIO DRIVER
16071 M:      David Daney <david.daney@cavium.com>
16072 S:      Maintained
16073 F:      drivers/gpio/gpio-thunderx.c
16074
16075 TI AM437X VPFE DRIVER
16076 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16077 L:      linux-media@vger.kernel.org
16078 W:      https://linuxtv.org
16079 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16080 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16081 S:      Maintained
16082 F:      drivers/media/platform/am437x/
16083
16084 TI BANDGAP AND THERMAL DRIVER
16085 M:      Eduardo Valentin <edubezval@gmail.com>
16086 M:      Keerthy <j-keerthy@ti.com>
16087 L:      linux-pm@vger.kernel.org
16088 L:      linux-omap@vger.kernel.org
16089 S:      Maintained
16090 F:      drivers/thermal/ti-soc-thermal/
16091
16092 TI BQ27XXX POWER SUPPLY DRIVER
16093 R:      Andrew F. Davis <afd@ti.com>
16094 F:      include/linux/power/bq27xxx_battery.h
16095 F:      drivers/power/supply/bq27xxx_battery.c
16096 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16097
16098 TI CDCE706 CLOCK DRIVER
16099 M:      Max Filippov <jcmvbkbc@gmail.com>
16100 S:      Maintained
16101 F:      drivers/clk/clk-cdce706.c
16102
16103 TI CLOCK DRIVER
16104 M:      Tero Kristo <t-kristo@ti.com>
16105 L:      linux-omap@vger.kernel.org
16106 S:      Maintained
16107 F:      drivers/clk/ti/
16108 F:      include/linux/clk/ti.h
16109
16110 TI DAVINCI MACHINE SUPPORT
16111 M:      Sekhar Nori <nsekhar@ti.com>
16112 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
16113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16115 S:      Supported
16116 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16117 F:      arch/arm/mach-davinci/
16118 F:      drivers/i2c/busses/i2c-davinci.c
16119 F:      arch/arm/boot/dts/da850*
16120
16121 TI DAVINCI SERIES CLOCK DRIVER
16122 M:      David Lechner <david@lechnology.com>
16123 R:      Sekhar Nori <nsekhar@ti.com>
16124 S:      Maintained
16125 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16126 F:      drivers/clk/davinci/
16127
16128 TI DAVINCI SERIES GPIO DRIVER
16129 M:      Keerthy <j-keerthy@ti.com>
16130 L:      linux-gpio@vger.kernel.org
16131 S:      Maintained
16132 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16133 F:      drivers/gpio/gpio-davinci.c
16134
16135 TI DAVINCI SERIES MEDIA DRIVER
16136 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16137 L:      linux-media@vger.kernel.org
16138 W:      https://linuxtv.org
16139 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16140 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16141 S:      Maintained
16142 F:      drivers/media/platform/davinci/
16143 F:      include/media/davinci/
16144
16145 TI ETHERNET SWITCH DRIVER (CPSW)
16146 R:      Grygorii Strashko <grygorii.strashko@ti.com>
16147 L:      linux-omap@vger.kernel.org
16148 L:      netdev@vger.kernel.org
16149 S:      Maintained
16150 F:      drivers/net/ethernet/ti/cpsw*
16151 F:      drivers/net/ethernet/ti/davinci*
16152
16153 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16154 M:      Alex Dubov <oakad@yahoo.com>
16155 S:      Maintained
16156 W:      http://tifmxx.berlios.de/
16157 F:      drivers/memstick/host/tifm_ms.c
16158 F:      drivers/misc/tifm*
16159 F:      drivers/mmc/host/tifm_sd.c
16160 F:      include/linux/tifm.h
16161
16162 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16163 M:      Santosh Shilimkar <ssantosh@kernel.org>
16164 L:      linux-kernel@vger.kernel.org
16165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16166 S:      Maintained
16167 F:      drivers/soc/ti/*
16168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16169
16170 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16171 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
16172 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
16173 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16174 S:      Maintained
16175 F:      sound/soc/codecs/lm49453*
16176 F:      sound/soc/codecs/isabelle*
16177
16178 TI LP855x BACKLIGHT DRIVER
16179 M:      Milo Kim <milo.kim@ti.com>
16180 S:      Maintained
16181 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16182 F:      drivers/video/backlight/lp855x_bl.c
16183 F:      include/linux/platform_data/lp855x.h
16184
16185 TI LP8727 CHARGER DRIVER
16186 M:      Milo Kim <milo.kim@ti.com>
16187 S:      Maintained
16188 F:      drivers/power/supply/lp8727_charger.c
16189 F:      include/linux/platform_data/lp8727.h
16190
16191 TI LP8788 MFD DRIVER
16192 M:      Milo Kim <milo.kim@ti.com>
16193 S:      Maintained
16194 F:      drivers/iio/adc/lp8788_adc.c
16195 F:      drivers/leds/leds-lp8788.c
16196 F:      drivers/mfd/lp8788*.c
16197 F:      drivers/power/supply/lp8788-charger.c
16198 F:      drivers/regulator/lp8788-*.c
16199 F:      include/linux/mfd/lp8788*.h
16200
16201 TI NETCP ETHERNET DRIVER
16202 M:      Wingman Kwok <w-kwok2@ti.com>
16203 M:      Murali Karicheri <m-karicheri2@ti.com>
16204 L:      netdev@vger.kernel.org
16205 S:      Maintained
16206 F:      drivers/net/ethernet/ti/netcp*
16207
16208 TI PCM3060 ASoC CODEC DRIVER
16209 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
16210 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16211 S:      Maintained
16212 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16213 F:      sound/soc/codecs/pcm3060*
16214
16215 TI TAS571X FAMILY ASoC CODEC DRIVER
16216 M:      Kevin Cernekee <cernekee@chromium.org>
16217 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16218 S:      Odd Fixes
16219 F:      sound/soc/codecs/tas571x*
16220
16221 TI TRF7970A NFC DRIVER
16222 M:      Mark Greer <mgreer@animalcreek.com>
16223 L:      linux-wireless@vger.kernel.org
16224 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
16225 S:      Supported
16226 F:      drivers/nfc/trf7970a.c
16227 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16228
16229 TI TWL4030 SERIES SOC CODEC DRIVER
16230 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16231 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16232 S:      Maintained
16233 F:      sound/soc/codecs/twl4030*
16234
16235 TI VPE/CAL DRIVERS
16236 M:      Benoit Parrot <bparrot@ti.com>
16237 L:      linux-media@vger.kernel.org
16238 W:      http://linuxtv.org/
16239 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16240 S:      Maintained
16241 F:      drivers/media/platform/ti-vpe/
16242
16243 TI WILINK WIRELESS DRIVERS
16244 L:      linux-wireless@vger.kernel.org
16245 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16246 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16248 S:      Orphan
16249 F:      drivers/net/wireless/ti/
16250 F:      include/linux/wl12xx.h
16251
16252 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16253 M:      John Stultz <john.stultz@linaro.org>
16254 M:      Thomas Gleixner <tglx@linutronix.de>
16255 R:      Stephen Boyd <sboyd@kernel.org>
16256 L:      linux-kernel@vger.kernel.org
16257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16258 S:      Supported
16259 F:      include/linux/clocksource.h
16260 F:      include/linux/time.h
16261 F:      include/linux/timex.h
16262 F:      include/uapi/linux/time.h
16263 F:      include/uapi/linux/timex.h
16264 F:      kernel/time/clocksource.c
16265 F:      kernel/time/time*.c
16266 F:      kernel/time/alarmtimer.c
16267 F:      kernel/time/ntp.c
16268 F:      tools/testing/selftests/timers/
16269
16270 TIPC NETWORK LAYER
16271 M:      Jon Maloy <jon.maloy@ericsson.com>
16272 M:      Ying Xue <ying.xue@windriver.com>
16273 L:      netdev@vger.kernel.org (core kernel code)
16274 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
16275 W:      http://tipc.sourceforge.net/
16276 S:      Maintained
16277 F:      include/uapi/linux/tipc*.h
16278 F:      net/tipc/
16279
16280 TLAN NETWORK DRIVER
16281 M:      Samuel Chessman <chessman@tux.org>
16282 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
16283 W:      http://sourceforge.net/projects/tlan/
16284 S:      Maintained
16285 F:      Documentation/networking/device_drivers/ti/tlan.txt
16286 F:      drivers/net/ethernet/ti/tlan.*
16287
16288 TM6000 VIDEO4LINUX DRIVER
16289 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16290 L:      linux-media@vger.kernel.org
16291 W:      https://linuxtv.org
16292 T:      git git://linuxtv.org/media_tree.git
16293 S:      Odd fixes
16294 F:      drivers/media/usb/tm6000/
16295 F:      Documentation/media/v4l-drivers/tm6000*
16296
16297 TMIO/SDHI MMC DRIVER
16298 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16299 L:      linux-mmc@vger.kernel.org
16300 S:      Supported
16301 F:      drivers/mmc/host/tmio_mmc*
16302 F:      drivers/mmc/host/renesas_sdhi*
16303 F:      include/linux/mfd/tmio.h
16304
16305 TMP401 HARDWARE MONITOR DRIVER
16306 M:      Guenter Roeck <linux@roeck-us.net>
16307 L:      linux-hwmon@vger.kernel.org
16308 S:      Maintained
16309 F:      Documentation/hwmon/tmp401.rst
16310 F:      drivers/hwmon/tmp401.c
16311
16312 TMPFS (SHMEM FILESYSTEM)
16313 M:      Hugh Dickins <hughd@google.com>
16314 L:      linux-mm@kvack.org
16315 S:      Maintained
16316 F:      include/linux/shmem_fs.h
16317 F:      mm/shmem.c
16318
16319 TOMOYO SECURITY MODULE
16320 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
16321 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
16322 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
16323 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
16324 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
16325 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
16326 W:      https://tomoyo.osdn.jp/
16327 S:      Maintained
16328 F:      security/tomoyo/
16329
16330 TOPSTAR LAPTOP EXTRAS DRIVER
16331 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16332 L:      platform-driver-x86@vger.kernel.org
16333 S:      Maintained
16334 F:      drivers/platform/x86/topstar-laptop.c
16335
16336 TORTURE-TEST MODULES
16337 M:      Davidlohr Bueso <dave@stgolabs.net>
16338 M:      "Paul E. McKenney" <paulmck@kernel.org>
16339 M:      Josh Triplett <josh@joshtriplett.org>
16340 L:      linux-kernel@vger.kernel.org
16341 S:      Supported
16342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16343 F:      Documentation/RCU/torture.txt
16344 F:      kernel/torture.c
16345 F:      kernel/rcu/rcutorture.c
16346 F:      kernel/rcu/rcuperf.c
16347 F:      kernel/locking/locktorture.c
16348
16349 TOSHIBA ACPI EXTRAS DRIVER
16350 M:      Azael Avalos <coproscefalo@gmail.com>
16351 L:      platform-driver-x86@vger.kernel.org
16352 S:      Maintained
16353 F:      drivers/platform/x86/toshiba_acpi.c
16354
16355 TOSHIBA BLUETOOTH DRIVER
16356 M:      Azael Avalos <coproscefalo@gmail.com>
16357 L:      platform-driver-x86@vger.kernel.org
16358 S:      Maintained
16359 F:      drivers/platform/x86/toshiba_bluetooth.c
16360
16361 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
16362 M:      Azael Avalos <coproscefalo@gmail.com>
16363 L:      platform-driver-x86@vger.kernel.org
16364 S:      Maintained
16365 F:      drivers/platform/x86/toshiba_haps.c
16366
16367 TOSHIBA SMM DRIVER
16368 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
16369 W:      http://www.buzzard.org.uk/toshiba/
16370 S:      Maintained
16371 F:      drivers/char/toshiba.c
16372 F:      include/linux/toshiba.h
16373 F:      include/uapi/linux/toshiba.h
16374
16375 TOSHIBA TC358743 DRIVER
16376 M:      Mats Randgaard <matrandg@cisco.com>
16377 L:      linux-media@vger.kernel.org
16378 S:      Maintained
16379 F:      drivers/media/i2c/tc358743*
16380 F:      include/media/i2c/tc358743.h
16381
16382 TOSHIBA WMI HOTKEYS DRIVER
16383 M:      Azael Avalos <coproscefalo@gmail.com>
16384 L:      platform-driver-x86@vger.kernel.org
16385 S:      Maintained
16386 F:      drivers/platform/x86/toshiba-wmi.c
16387
16388 TPM DEVICE DRIVER
16389 M:      Peter Huewe <peterhuewe@gmx.de>
16390 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
16391 R:      Jason Gunthorpe <jgg@ziepe.ca>
16392 L:      linux-integrity@vger.kernel.org
16393 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
16394 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
16395 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
16396 S:      Maintained
16397 F:      drivers/char/tpm/
16398
16399 TRACING
16400 M:      Steven Rostedt <rostedt@goodmis.org>
16401 M:      Ingo Molnar <mingo@redhat.com>
16402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16403 S:      Maintained
16404 F:      Documentation/trace/ftrace.rst
16405 F:      arch/*/*/*/ftrace.h
16406 F:      arch/*/kernel/ftrace.c
16407 F:      include/*/ftrace.h
16408 F:      include/linux/trace*.h
16409 F:      include/trace/
16410 F:      kernel/trace/
16411 F:      tools/testing/selftests/ftrace/
16412
16413 TRACING MMIO ACCESSES (MMIOTRACE)
16414 M:      Steven Rostedt <rostedt@goodmis.org>
16415 M:      Ingo Molnar <mingo@kernel.org>
16416 R:      Karol Herbst <karolherbst@gmail.com>
16417 R:      Pekka Paalanen <ppaalanen@gmail.com>
16418 S:      Maintained
16419 L:      linux-kernel@vger.kernel.org
16420 L:      nouveau@lists.freedesktop.org
16421 F:      kernel/trace/trace_mmiotrace.c
16422 F:      include/linux/mmiotrace.h
16423 F:      arch/x86/mm/kmmio.c
16424 F:      arch/x86/mm/mmio-mod.c
16425 F:      arch/x86/mm/testmmiotrace.c
16426
16427 TRIVIAL PATCHES
16428 M:      Jiri Kosina <trivial@kernel.org>
16429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
16430 S:      Maintained
16431 K:      ^Subject:.*(?i)trivial
16432
16433 TEMPO SEMICONDUCTOR DRIVERS
16434 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16435 S:      Maintained
16436 F:      sound/soc/codecs/tscs*.c
16437 F:      sound/soc/codecs/tscs*.h
16438 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16439
16440 TTY LAYER
16441 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16442 M:      Jiri Slaby <jslaby@suse.com>
16443 S:      Supported
16444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
16445 F:      Documentation/driver-api/serial/
16446 F:      drivers/tty/
16447 F:      drivers/tty/serial/serial_core.c
16448 F:      include/linux/serial_core.h
16449 F:      include/linux/serial.h
16450 F:      include/linux/tty.h
16451 F:      include/uapi/linux/serial_core.h
16452 F:      include/uapi/linux/serial.h
16453 F:      include/uapi/linux/tty.h
16454
16455 TUA9001 MEDIA DRIVER
16456 M:      Antti Palosaari <crope@iki.fi>
16457 L:      linux-media@vger.kernel.org
16458 W:      https://linuxtv.org
16459 W:      http://palosaari.fi/linux/
16460 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16461 T:      git git://linuxtv.org/anttip/media_tree.git
16462 S:      Maintained
16463 F:      drivers/media/tuners/tua9001*
16464
16465 TULIP NETWORK DRIVERS
16466 L:      netdev@vger.kernel.org
16467 L:      linux-parisc@vger.kernel.org
16468 S:      Orphan
16469 F:      drivers/net/ethernet/dec/tulip/
16470
16471 TUN/TAP driver
16472 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
16473 W:      http://vtun.sourceforge.net/tun
16474 S:      Maintained
16475 F:      Documentation/networking/tuntap.txt
16476 F:      arch/um/os-Linux/drivers/
16477
16478 TURBOCHANNEL SUBSYSTEM
16479 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
16480 M:      Ralf Baechle <ralf@linux-mips.org>
16481 L:      linux-mips@vger.kernel.org
16482 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
16483 S:      Maintained
16484 F:      drivers/tc/
16485 F:      include/linux/tc.h
16486
16487 TURBOSTAT UTILITY
16488 M:      "Len Brown" <lenb@kernel.org>
16489 L:      linux-pm@vger.kernel.org
16490 B:      https://bugzilla.kernel.org
16491 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
16493 S:      Supported
16494 F:      tools/power/x86/turbostat/
16495
16496 TW5864 VIDEO4LINUX DRIVER
16497 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16498 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16499 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
16500 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16501 L:      linux-media@vger.kernel.org
16502 S:      Supported
16503 F:      drivers/media/pci/tw5864/
16504
16505 TW68 VIDEO4LINUX DRIVER
16506 M:      Hans Verkuil <hverkuil@xs4all.nl>
16507 L:      linux-media@vger.kernel.org
16508 T:      git git://linuxtv.org/media_tree.git
16509 W:      https://linuxtv.org
16510 S:      Odd Fixes
16511 F:      drivers/media/pci/tw68/
16512
16513 TW686X VIDEO4LINUX DRIVER
16514 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16515 L:      linux-media@vger.kernel.org
16516 T:      git git://linuxtv.org/media_tree.git
16517 W:      http://linuxtv.org
16518 S:      Maintained
16519 F:      drivers/media/pci/tw686x/
16520
16521 UBI FILE SYSTEM (UBIFS)
16522 M:      Richard Weinberger <richard@nod.at>
16523 M:      Artem Bityutskiy <dedekind1@gmail.com>
16524 M:      Adrian Hunter <adrian.hunter@intel.com>
16525 L:      linux-mtd@lists.infradead.org
16526 T:      git git://git.infradead.org/ubifs-2.6.git
16527 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
16528 S:      Supported
16529 F:      Documentation/filesystems/ubifs.txt
16530 F:      fs/ubifs/
16531
16532 UCLINUX (M68KNOMMU AND COLDFIRE)
16533 M:      Greg Ungerer <gerg@linux-m68k.org>
16534 W:      http://www.linux-m68k.org/
16535 W:      http://www.uclinux.org/
16536 L:      linux-m68k@lists.linux-m68k.org
16537 L:      uclinux-dev@uclinux.org  (subscribers-only)
16538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
16539 S:      Maintained
16540 F:      arch/m68k/coldfire/
16541 F:      arch/m68k/68*/
16542 F:      arch/m68k/*/*_no.*
16543 F:      arch/m68k/include/asm/*_no.*
16544
16545 UDF FILESYSTEM
16546 M:      Jan Kara <jack@suse.com>
16547 S:      Maintained
16548 F:      Documentation/filesystems/udf.txt
16549 F:      fs/udf/
16550
16551 UDRAW TABLET
16552 M:      Bastien Nocera <hadess@hadess.net>
16553 L:      linux-input@vger.kernel.org
16554 S:      Maintained
16555 F:      drivers/hid/hid-udraw-ps3.c
16556
16557 UFS FILESYSTEM
16558 M:      Evgeniy Dushistov <dushistov@mail.ru>
16559 S:      Maintained
16560 F:      Documentation/admin-guide/ufs.rst
16561 F:      fs/ufs/
16562
16563 UHID USERSPACE HID IO DRIVER:
16564 M:      David Herrmann <dh.herrmann@googlemail.com>
16565 L:      linux-input@vger.kernel.org
16566 S:      Maintained
16567 F:      drivers/hid/uhid.c
16568 F:      include/uapi/linux/uhid.h
16569
16570 ULPI BUS
16571 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16572 L:      linux-usb@vger.kernel.org
16573 S:      Maintained
16574 F:      drivers/usb/common/ulpi.c
16575 F:      include/linux/ulpi/
16576
16577 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
16578 L:      devel@driverdev.osuosl.org
16579 S:      Obsolete
16580 F:      drivers/staging/uwb/
16581
16582 UNICODE SUBSYSTEM:
16583 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
16584 L:      linux-fsdevel@vger.kernel.org
16585 S:      Supported
16586 F:      fs/unicode/
16587
16588 UNICORE32 ARCHITECTURE:
16589 M:      Guan Xuetao <gxt@pku.edu.cn>
16590 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
16591 S:      Maintained
16592 T:      git git://github.com/gxt/linux.git
16593 F:      arch/unicore32/
16594
16595 UNIFDEF
16596 M:      Tony Finch <dot@dotat.at>
16597 W:      http://dotat.at/prog/unifdef
16598 S:      Maintained
16599 F:      scripts/unifdef.c
16600
16601 UNIFORM CDROM DRIVER
16602 M:      Jens Axboe <axboe@kernel.dk>
16603 W:      http://www.kernel.dk
16604 S:      Maintained
16605 F:      Documentation/cdrom/
16606 F:      drivers/cdrom/cdrom.c
16607 F:      include/linux/cdrom.h
16608 F:      include/uapi/linux/cdrom.h
16609
16610 UNISYS S-PAR DRIVERS
16611 M:      David Kershner <david.kershner@unisys.com>
16612 L:      sparmaintainer@unisys.com (Unisys internal)
16613 S:      Supported
16614 F:      include/linux/visorbus.h
16615 F:      drivers/visorbus/
16616 F:      drivers/staging/unisys/
16617
16618 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
16619 R:      Alim Akhtar <alim.akhtar@samsung.com>
16620 R:      Avri Altman <avri.altman@wdc.com>
16621 R:      Pedro Sousa <pedrom.sousa@synopsys.com>
16622 L:      linux-scsi@vger.kernel.org
16623 S:      Supported
16624 F:      Documentation/scsi/ufs.txt
16625 F:      drivers/scsi/ufs/
16626
16627 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
16628 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
16629 L:      linux-scsi@vger.kernel.org
16630 S:      Supported
16631 F:      drivers/scsi/ufs/*dwc*
16632
16633 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
16634 M:      Stanley Chu <stanley.chu@mediatek.com>
16635 L:      linux-scsi@vger.kernel.org
16636 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16637 S:      Maintained
16638 F:      drivers/scsi/ufs/ufs-mediatek*
16639
16640 UNSORTED BLOCK IMAGES (UBI)
16641 M:      Artem Bityutskiy <dedekind1@gmail.com>
16642 M:      Richard Weinberger <richard@nod.at>
16643 W:      http://www.linux-mtd.infradead.org/
16644 L:      linux-mtd@lists.infradead.org
16645 T:      git git://git.infradead.org/ubifs-2.6.git
16646 S:      Supported
16647 F:      drivers/mtd/ubi/
16648 F:      include/linux/mtd/ubi.h
16649 F:      include/uapi/mtd/ubi-user.h
16650
16651 USB "USBNET" DRIVER FRAMEWORK
16652 M:      Oliver Neukum <oneukum@suse.com>
16653 L:      netdev@vger.kernel.org
16654 W:      http://www.linux-usb.org/usbnet
16655 S:      Maintained
16656 F:      drivers/net/usb/usbnet.c
16657 F:      include/linux/usb/usbnet.h
16658
16659 USB ACM DRIVER
16660 M:      Oliver Neukum <oneukum@suse.com>
16661 L:      linux-usb@vger.kernel.org
16662 S:      Maintained
16663 F:      Documentation/usb/acm.rst
16664 F:      drivers/usb/class/cdc-acm.*
16665
16666 USB AR5523 WIRELESS DRIVER
16667 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
16668 L:      linux-wireless@vger.kernel.org
16669 S:      Maintained
16670 F:      drivers/net/wireless/ath/ar5523/
16671
16672 USB ATTACHED SCSI
16673 M:      Oliver Neukum <oneukum@suse.com>
16674 L:      linux-usb@vger.kernel.org
16675 L:      linux-scsi@vger.kernel.org
16676 S:      Maintained
16677 F:      drivers/usb/storage/uas.c
16678
16679 USB CDC ETHERNET DRIVER
16680 M:      Oliver Neukum <oliver@neukum.org>
16681 L:      linux-usb@vger.kernel.org
16682 S:      Maintained
16683 F:      drivers/net/usb/cdc_*.c
16684 F:      include/uapi/linux/usb/cdc.h
16685
16686 USB CHAOSKEY DRIVER
16687 M:      Keith Packard <keithp@keithp.com>
16688 L:      linux-usb@vger.kernel.org
16689 S:      Maintained
16690 F:      drivers/usb/misc/chaoskey.c
16691
16692 USB CYPRESS C67X00 DRIVER
16693 M:      Peter Korsgaard <jacmet@sunsite.dk>
16694 L:      linux-usb@vger.kernel.org
16695 S:      Maintained
16696 F:      drivers/usb/c67x00/
16697
16698 USB DAVICOM DM9601 DRIVER
16699 M:      Peter Korsgaard <jacmet@sunsite.dk>
16700 L:      netdev@vger.kernel.org
16701 W:      http://www.linux-usb.org/usbnet
16702 S:      Maintained
16703 F:      drivers/net/usb/dm9601.c
16704
16705 USB DIAMOND RIO500 DRIVER
16706 M:      Cesar Miquel <miquel@df.uba.ar>
16707 L:      rio500-users@lists.sourceforge.net
16708 W:      http://rio500.sourceforge.net
16709 S:      Maintained
16710 F:      drivers/usb/misc/rio500*
16711
16712 USB EHCI DRIVER
16713 M:      Alan Stern <stern@rowland.harvard.edu>
16714 L:      linux-usb@vger.kernel.org
16715 S:      Maintained
16716 F:      Documentation/usb/ehci.rst
16717 F:      drivers/usb/host/ehci*
16718
16719 USB GADGET/PERIPHERAL SUBSYSTEM
16720 M:      Felipe Balbi <balbi@kernel.org>
16721 L:      linux-usb@vger.kernel.org
16722 W:      http://www.linux-usb.org/gadget
16723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16724 S:      Maintained
16725 F:      drivers/usb/gadget/
16726 F:      include/linux/usb/gadget*
16727
16728 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
16729 M:      Jiri Kosina <jikos@kernel.org>
16730 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
16731 L:      linux-usb@vger.kernel.org
16732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
16733 S:      Maintained
16734 F:      Documentation/hid/hiddev.rst
16735 F:      drivers/hid/usbhid/
16736
16737 USB INTEL XHCI ROLE MUX DRIVER
16738 M:      Hans de Goede <hdegoede@redhat.com>
16739 L:      linux-usb@vger.kernel.org
16740 S:      Maintained
16741 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
16742
16743 USB IP DRIVER FOR HISILICON KIRIN
16744 M:      Yu Chen <chenyu56@huawei.com>
16745 M:      Binghui Wang <wangbinghui@hisilicon.com>
16746 L:      linux-usb@vger.kernel.org
16747 S:      Maintained
16748 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
16749 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
16750
16751 USB ISP116X DRIVER
16752 M:      Olav Kongas <ok@artecdesign.ee>
16753 L:      linux-usb@vger.kernel.org
16754 S:      Maintained
16755 F:      drivers/usb/host/isp116x*
16756 F:      include/linux/usb/isp116x.h
16757
16758 USB LAN78XX ETHERNET DRIVER
16759 M:      Woojung Huh <woojung.huh@microchip.com>
16760 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
16761 L:      netdev@vger.kernel.org
16762 S:      Maintained
16763 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
16764 F:      drivers/net/usb/lan78xx.*
16765 F:      include/dt-bindings/net/microchip-lan78xx.h
16766
16767 USB MASS STORAGE DRIVER
16768 M:      Alan Stern <stern@rowland.harvard.edu>
16769 L:      linux-usb@vger.kernel.org
16770 L:      usb-storage@lists.one-eyed-alien.net
16771 S:      Maintained
16772 F:      drivers/usb/storage/
16773
16774 USB MIDI DRIVER
16775 M:      Clemens Ladisch <clemens@ladisch.de>
16776 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16778 S:      Maintained
16779 F:      sound/usb/midi.*
16780
16781 USB NETWORKING DRIVERS
16782 L:      linux-usb@vger.kernel.org
16783 S:      Odd Fixes
16784 F:      drivers/net/usb/
16785
16786 USB OHCI DRIVER
16787 M:      Alan Stern <stern@rowland.harvard.edu>
16788 L:      linux-usb@vger.kernel.org
16789 S:      Maintained
16790 F:      Documentation/usb/ohci.rst
16791 F:      drivers/usb/host/ohci*
16792
16793 USB OTG FSM (Finite State Machine)
16794 M:      Peter Chen <Peter.Chen@nxp.com>
16795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
16796 L:      linux-usb@vger.kernel.org
16797 S:      Maintained
16798 F:      drivers/usb/common/usb-otg-fsm.c
16799
16800 USB OVER IP DRIVER
16801 M:      Valentina Manea <valentina.manea.m@gmail.com>
16802 M:      Shuah Khan <shuah@kernel.org>
16803 M:      Shuah Khan <skhan@linuxfoundation.org>
16804 L:      linux-usb@vger.kernel.org
16805 S:      Maintained
16806 F:      Documentation/usb/usbip_protocol.rst
16807 F:      drivers/usb/usbip/
16808 F:      tools/usb/usbip/
16809 F:      tools/testing/selftests/drivers/usb/usbip/
16810
16811 USB PEGASUS DRIVER
16812 M:      Petko Manolov <petkan@nucleusys.com>
16813 L:      linux-usb@vger.kernel.org
16814 L:      netdev@vger.kernel.org
16815 T:      git git://github.com/petkan/pegasus.git
16816 W:      https://github.com/petkan/pegasus
16817 S:      Maintained
16818 F:      drivers/net/usb/pegasus.*
16819
16820 USB PHY LAYER
16821 M:      Felipe Balbi <balbi@kernel.org>
16822 L:      linux-usb@vger.kernel.org
16823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16824 S:      Maintained
16825 F:      drivers/usb/phy/
16826
16827 USB PRINTER DRIVER (usblp)
16828 M:      Pete Zaitcev <zaitcev@redhat.com>
16829 L:      linux-usb@vger.kernel.org
16830 S:      Supported
16831 F:      drivers/usb/class/usblp.c
16832
16833 USB QMI WWAN NETWORK DRIVER
16834 M:      Bjørn Mork <bjorn@mork.no>
16835 L:      netdev@vger.kernel.org
16836 S:      Maintained
16837 F:      Documentation/ABI/testing/sysfs-class-net-qmi
16838 F:      drivers/net/usb/qmi_wwan.c
16839
16840 USB RTL8150 DRIVER
16841 M:      Petko Manolov <petkan@nucleusys.com>
16842 L:      linux-usb@vger.kernel.org
16843 L:      netdev@vger.kernel.org
16844 T:      git git://github.com/petkan/rtl8150.git
16845 W:      https://github.com/petkan/rtl8150
16846 S:      Maintained
16847 F:      drivers/net/usb/rtl8150.c
16848
16849 USB SERIAL SUBSYSTEM
16850 M:      Johan Hovold <johan@kernel.org>
16851 L:      linux-usb@vger.kernel.org
16852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
16853 S:      Maintained
16854 F:      Documentation/usb/usb-serial.rst
16855 F:      drivers/usb/serial/
16856 F:      include/linux/usb/serial.h
16857
16858 USB SMSC75XX ETHERNET DRIVER
16859 M:      Steve Glendinning <steve.glendinning@shawell.net>
16860 L:      netdev@vger.kernel.org
16861 S:      Maintained
16862 F:      drivers/net/usb/smsc75xx.*
16863
16864 USB SMSC95XX ETHERNET DRIVER
16865 M:      Steve Glendinning <steve.glendinning@shawell.net>
16866 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
16867 L:      netdev@vger.kernel.org
16868 S:      Maintained
16869 F:      drivers/net/usb/smsc95xx.*
16870
16871 USB SUBSYSTEM
16872 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16873 L:      linux-usb@vger.kernel.org
16874 W:      http://www.linux-usb.org
16875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
16876 S:      Supported
16877 F:      Documentation/devicetree/bindings/usb/
16878 F:      Documentation/usb/
16879 F:      drivers/usb/
16880 F:      include/linux/usb.h
16881 F:      include/linux/usb/
16882
16883 USB TYPEC PI3USB30532 MUX DRIVER
16884 M:      Hans de Goede <hdegoede@redhat.com>
16885 L:      linux-usb@vger.kernel.org
16886 S:      Maintained
16887 F:      drivers/usb/typec/mux/pi3usb30532.c
16888
16889 USB TYPEC CLASS
16890 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16891 L:      linux-usb@vger.kernel.org
16892 S:      Maintained
16893 F:      Documentation/ABI/testing/sysfs-class-typec
16894 F:      Documentation/driver-api/usb/typec.rst
16895 F:      drivers/usb/typec/
16896 F:      include/linux/usb/typec.h
16897
16898 USB TYPEC BUS FOR ALTERNATE MODES
16899 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16900 L:      linux-usb@vger.kernel.org
16901 S:      Maintained
16902 F:      Documentation/ABI/testing/sysfs-bus-typec
16903 F:      Documentation/driver-api/usb/typec_bus.rst
16904 F:      drivers/usb/typec/altmodes/
16905 F:      include/linux/usb/typec_altmode.h
16906
16907 USB TYPEC PORT CONTROLLER DRIVERS
16908 M:      Guenter Roeck <linux@roeck-us.net>
16909 L:      linux-usb@vger.kernel.org
16910 S:      Maintained
16911 F:      drivers/usb/typec/tcpm/
16912
16913 USB UHCI DRIVER
16914 M:      Alan Stern <stern@rowland.harvard.edu>
16915 L:      linux-usb@vger.kernel.org
16916 S:      Maintained
16917 F:      drivers/usb/host/uhci*
16918
16919 USB VIDEO CLASS
16920 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
16921 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
16922 L:      linux-media@vger.kernel.org
16923 T:      git git://linuxtv.org/media_tree.git
16924 W:      http://www.ideasonboard.org/uvc/
16925 S:      Maintained
16926 F:      drivers/media/usb/uvc/
16927 F:      include/uapi/linux/uvcvideo.h
16928
16929 USB VISION DRIVER
16930 M:      Hans Verkuil <hverkuil@xs4all.nl>
16931 L:      linux-media@vger.kernel.org
16932 T:      git git://linuxtv.org/media_tree.git
16933 W:      https://linuxtv.org
16934 S:      Odd Fixes
16935 F:      drivers/media/usb/usbvision/
16936
16937 USB WEBCAM GADGET
16938 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
16939 L:      linux-usb@vger.kernel.org
16940 S:      Maintained
16941 F:      drivers/usb/gadget/function/*uvc*
16942 F:      drivers/usb/gadget/legacy/webcam.c
16943 F:      include/uapi/linux/usb/g_uvc.h
16944
16945 USB WIRELESS RNDIS DRIVER (rndis_wlan)
16946 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
16947 L:      linux-wireless@vger.kernel.org
16948 S:      Maintained
16949 F:      drivers/net/wireless/rndis_wlan.c
16950
16951 USB XHCI DRIVER
16952 M:      Mathias Nyman <mathias.nyman@intel.com>
16953 L:      linux-usb@vger.kernel.org
16954 S:      Supported
16955 F:      drivers/usb/host/xhci*
16956 F:      drivers/usb/host/pci-quirks*
16957
16958 USB ZD1201 DRIVER
16959 L:      linux-wireless@vger.kernel.org
16960 W:      http://linux-lc100020.sourceforge.net
16961 S:      Orphan
16962 F:      drivers/net/wireless/zydas/zd1201.*
16963
16964 USB ZR364XX DRIVER
16965 M:      Antoine Jacquet <royale@zerezo.com>
16966 L:      linux-usb@vger.kernel.org
16967 L:      linux-media@vger.kernel.org
16968 T:      git git://linuxtv.org/media_tree.git
16969 W:      http://royale.zerezo.com/zr364xx/
16970 S:      Maintained
16971 F:      Documentation/media/v4l-drivers/zr364xx*
16972 F:      drivers/media/usb/zr364xx/
16973
16974 USER-MODE LINUX (UML)
16975 M:      Jeff Dike <jdike@addtoit.com>
16976 M:      Richard Weinberger <richard@nod.at>
16977 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
16978 L:      linux-um@lists.infradead.org
16979 W:      http://user-mode-linux.sourceforge.net
16980 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
16981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
16982 S:      Maintained
16983 F:      Documentation/virt/uml/
16984 F:      arch/um/
16985 F:      arch/x86/um/
16986 F:      fs/hostfs/
16987
16988 USERSPACE COPYIN/COPYOUT (UIOVEC)
16989 M:      Alexander Viro <viro@zeniv.linux.org.uk>
16990 S:      Maintained
16991 F:      lib/iov_iter.c
16992 F:      include/linux/uio.h
16993
16994 USERSPACE DMA BUFFER DRIVER
16995 M:      Gerd Hoffmann <kraxel@redhat.com>
16996 S:      Maintained
16997 L:      dri-devel@lists.freedesktop.org
16998 F:      drivers/dma-buf/udmabuf.c
16999 F:      include/uapi/linux/udmabuf.h
17000 T:      git git://anongit.freedesktop.org/drm/drm-misc
17001
17002 USERSPACE I/O (UIO)
17003 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17004 S:      Maintained
17005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17006 F:      Documentation/driver-api/uio-howto.rst
17007 F:      drivers/uio/
17008 F:      include/linux/uio_driver.h
17009
17010 UTIL-LINUX PACKAGE
17011 M:      Karel Zak <kzak@redhat.com>
17012 L:      util-linux@vger.kernel.org
17013 W:      http://en.wikipedia.org/wiki/Util-linux
17014 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17015 S:      Maintained
17016
17017 UUID HELPERS
17018 M:      Christoph Hellwig <hch@lst.de>
17019 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17020 L:      linux-kernel@vger.kernel.org
17021 T:      git git://git.infradead.org/users/hch/uuid.git
17022 F:      lib/uuid.c
17023 F:      lib/test_uuid.c
17024 F:      include/linux/uuid.h
17025 F:      include/uapi/linux/uuid.h
17026 S:      Maintained
17027
17028 UVESAFB DRIVER
17029 M:      Michal Januszewski <spock@gentoo.org>
17030 L:      linux-fbdev@vger.kernel.org
17031 W:      https://github.com/mjanusz/v86d
17032 S:      Maintained
17033 F:      Documentation/fb/uvesafb.rst
17034 F:      drivers/video/fbdev/uvesafb.*
17035
17036 VF610 NAND DRIVER
17037 M:      Stefan Agner <stefan@agner.ch>
17038 L:      linux-mtd@lists.infradead.org
17039 S:      Supported
17040 F:      drivers/mtd/nand/raw/vf610_nfc.c
17041
17042 VFAT/FAT/MSDOS FILESYSTEM
17043 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17044 S:      Maintained
17045 F:      Documentation/filesystems/vfat.txt
17046 F:      fs/fat/
17047
17048 VFIO DRIVER
17049 M:      Alex Williamson <alex.williamson@redhat.com>
17050 R:      Cornelia Huck <cohuck@redhat.com>
17051 L:      kvm@vger.kernel.org
17052 T:      git git://github.com/awilliam/linux-vfio.git
17053 S:      Maintained
17054 F:      Documentation/driver-api/vfio.rst
17055 F:      drivers/vfio/
17056 F:      include/linux/vfio.h
17057 F:      include/uapi/linux/vfio.h
17058
17059 VFIO MEDIATED DEVICE DRIVERS
17060 M:      Kirti Wankhede <kwankhede@nvidia.com>
17061 L:      kvm@vger.kernel.org
17062 S:      Maintained
17063 F:      Documentation/driver-api/vfio-mediated-device.rst
17064 F:      drivers/vfio/mdev/
17065 F:      include/linux/mdev.h
17066 F:      samples/vfio-mdev/
17067
17068 VFIO PLATFORM DRIVER
17069 M:      Eric Auger <eric.auger@redhat.com>
17070 L:      kvm@vger.kernel.org
17071 S:      Maintained
17072 F:      drivers/vfio/platform/
17073
17074 VGA_SWITCHEROO
17075 R:      Lukas Wunner <lukas@wunner.de>
17076 S:      Maintained
17077 F:      Documentation/gpu/vga-switcheroo.rst
17078 F:      drivers/gpu/vga/vga_switcheroo.c
17079 F:      include/linux/vga_switcheroo.h
17080 T:      git git://anongit.freedesktop.org/drm/drm-misc
17081
17082 VIA RHINE NETWORK DRIVER
17083 S:      Orphan
17084 F:      drivers/net/ethernet/via/via-rhine.c
17085
17086 VIA SD/MMC CARD CONTROLLER DRIVER
17087 M:      Bruce Chang <brucechang@via.com.tw>
17088 M:      Harald Welte <HaraldWelte@viatech.com>
17089 S:      Maintained
17090 F:      drivers/mmc/host/via-sdmmc.c
17091
17092 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17093 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17094 L:      linux-fbdev@vger.kernel.org
17095 S:      Maintained
17096 F:      include/linux/via-core.h
17097 F:      include/linux/via-gpio.h
17098 F:      include/linux/via_i2c.h
17099 F:      drivers/video/fbdev/via/
17100
17101 VIA VELOCITY NETWORK DRIVER
17102 M:      Francois Romieu <romieu@fr.zoreil.com>
17103 L:      netdev@vger.kernel.org
17104 S:      Maintained
17105 F:      drivers/net/ethernet/via/via-velocity.*
17106
17107 VICODEC VIRTUAL CODEC DRIVER
17108 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
17109 L:      linux-media@vger.kernel.org
17110 T:      git git://linuxtv.org/media_tree.git
17111 W:      https://linuxtv.org
17112 S:      Maintained
17113 F:      drivers/media/platform/vicodec/*
17114
17115 VIDEO MULTIPLEXER DRIVER
17116 M:      Philipp Zabel <p.zabel@pengutronix.de>
17117 L:      linux-media@vger.kernel.org
17118 S:      Maintained
17119 F:      drivers/media/platform/video-mux.c
17120
17121 VIDEO I2C POLLING DRIVER
17122 M:      Matt Ranostay <matt.ranostay@konsulko.com>
17123 L:      linux-media@vger.kernel.org
17124 S:      Maintained
17125 F:      drivers/media/i2c/video-i2c.c
17126
17127 VIDEOBUF2 FRAMEWORK
17128 M:      Pawel Osciak <pawel@osciak.com>
17129 M:      Marek Szyprowski <m.szyprowski@samsung.com>
17130 M:      Kyungmin Park <kyungmin.park@samsung.com>
17131 R:      Tomasz Figa <tfiga@chromium.org>
17132 L:      linux-media@vger.kernel.org
17133 S:      Maintained
17134 F:      drivers/media/common/videobuf2/*
17135 F:      include/media/videobuf2-*
17136
17137 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17138 M:      Helen Koike <helen.koike@collabora.com>
17139 L:      linux-media@vger.kernel.org
17140 T:      git git://linuxtv.org/media_tree.git
17141 W:      https://linuxtv.org
17142 S:      Maintained
17143 F:      drivers/media/platform/vimc/*
17144
17145 VIRT LIB
17146 M:      Alex Williamson <alex.williamson@redhat.com>
17147 M:      Paolo Bonzini <pbonzini@redhat.com>
17148 L:      kvm@vger.kernel.org
17149 S:      Supported
17150 F:      virt/lib/
17151
17152 VIRTIO AND VHOST VSOCK DRIVER
17153 M:      Stefan Hajnoczi <stefanha@redhat.com>
17154 L:      kvm@vger.kernel.org
17155 L:      virtualization@lists.linux-foundation.org
17156 L:      netdev@vger.kernel.org
17157 S:      Maintained
17158 F:      include/linux/virtio_vsock.h
17159 F:      include/uapi/linux/virtio_vsock.h
17160 F:      include/uapi/linux/vsockmon.h
17161 F:      include/uapi/linux/vm_sockets_diag.h
17162 F:      net/vmw_vsock/diag.c
17163 F:      net/vmw_vsock/af_vsock_tap.c
17164 F:      net/vmw_vsock/virtio_transport_common.c
17165 F:      net/vmw_vsock/virtio_transport.c
17166 F:      drivers/net/vsockmon.c
17167 F:      drivers/vhost/vsock.c
17168 F:      tools/testing/vsock/
17169
17170 VIRTIO CONSOLE DRIVER
17171 M:      Amit Shah <amit@kernel.org>
17172 L:      virtualization@lists.linux-foundation.org
17173 S:      Maintained
17174 F:      drivers/char/virtio_console.c
17175 F:      include/linux/virtio_console.h
17176 F:      include/uapi/linux/virtio_console.h
17177
17178 VIRTIO CORE AND NET DRIVERS
17179 M:      "Michael S. Tsirkin" <mst@redhat.com>
17180 M:      Jason Wang <jasowang@redhat.com>
17181 L:      virtualization@lists.linux-foundation.org
17182 S:      Maintained
17183 F:      Documentation/devicetree/bindings/virtio/
17184 F:      drivers/virtio/
17185 F:      tools/virtio/
17186 F:      drivers/net/virtio_net.c
17187 F:      drivers/block/virtio_blk.c
17188 F:      include/linux/virtio*.h
17189 F:      include/uapi/linux/virtio_*.h
17190 F:      drivers/crypto/virtio/
17191 F:      mm/balloon_compaction.c
17192
17193 VIRTIO BLOCK AND SCSI DRIVERS
17194 M:      "Michael S. Tsirkin" <mst@redhat.com>
17195 M:      Jason Wang <jasowang@redhat.com>
17196 R:      Paolo Bonzini <pbonzini@redhat.com>
17197 R:      Stefan Hajnoczi <stefanha@redhat.com>
17198 L:      virtualization@lists.linux-foundation.org
17199 S:      Maintained
17200 F:      drivers/block/virtio_blk.c
17201 F:      drivers/scsi/virtio_scsi.c
17202 F:      include/uapi/linux/virtio_blk.h
17203 F:      include/uapi/linux/virtio_scsi.h
17204 F:      drivers/vhost/scsi.c
17205
17206 VIRTIO CRYPTO DRIVER
17207 M:      Gonglei <arei.gonglei@huawei.com>
17208 L:      virtualization@lists.linux-foundation.org
17209 L:      linux-crypto@vger.kernel.org
17210 S:      Maintained
17211 F:      drivers/crypto/virtio/
17212 F:      include/uapi/linux/virtio_crypto.h
17213
17214 VIRTIO DRIVERS FOR S390
17215 M:      Cornelia Huck <cohuck@redhat.com>
17216 M:      Halil Pasic <pasic@linux.ibm.com>
17217 L:      linux-s390@vger.kernel.org
17218 L:      virtualization@lists.linux-foundation.org
17219 L:      kvm@vger.kernel.org
17220 S:      Supported
17221 F:      drivers/s390/virtio/
17222 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17223
17224 VIRTIO GPU DRIVER
17225 M:      David Airlie <airlied@linux.ie>
17226 M:      Gerd Hoffmann <kraxel@redhat.com>
17227 L:      dri-devel@lists.freedesktop.org
17228 L:      virtualization@lists.linux-foundation.org
17229 T:      git git://anongit.freedesktop.org/drm/drm-misc
17230 S:      Maintained
17231 F:      drivers/gpu/drm/virtio/
17232 F:      include/uapi/linux/virtio_gpu.h
17233
17234 VIRTIO HOST (VHOST)
17235 M:      "Michael S. Tsirkin" <mst@redhat.com>
17236 M:      Jason Wang <jasowang@redhat.com>
17237 L:      kvm@vger.kernel.org
17238 L:      virtualization@lists.linux-foundation.org
17239 L:      netdev@vger.kernel.org
17240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17241 S:      Maintained
17242 F:      drivers/vhost/
17243 F:      include/uapi/linux/vhost.h
17244
17245 VIRTIO INPUT DRIVER
17246 M:      Gerd Hoffmann <kraxel@redhat.com>
17247 S:      Maintained
17248 F:      drivers/virtio/virtio_input.c
17249 F:      include/uapi/linux/virtio_input.h
17250
17251 VIRTIO IOMMU DRIVER
17252 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
17253 L:      virtualization@lists.linux-foundation.org
17254 S:      Maintained
17255 F:      drivers/iommu/virtio-iommu.c
17256 F:      include/uapi/linux/virtio_iommu.h
17257
17258 VIRTUAL BOX GUEST DEVICE DRIVER
17259 M:      Hans de Goede <hdegoede@redhat.com>
17260 M:      Arnd Bergmann <arnd@arndb.de>
17261 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17262 S:      Maintained
17263 F:      include/linux/vbox_utils.h
17264 F:      include/uapi/linux/vbox*.h
17265 F:      drivers/virt/vboxguest/
17266
17267 VIRTUAL SERIO DEVICE DRIVER
17268 M:      Stephen Chandler Paul <thatslyude@gmail.com>
17269 S:      Maintained
17270 F:      drivers/input/serio/userio.c
17271 F:      include/uapi/linux/userio.h
17272
17273 VIVID VIRTUAL VIDEO DRIVER
17274 M:      Hans Verkuil <hverkuil@xs4all.nl>
17275 L:      linux-media@vger.kernel.org
17276 T:      git git://linuxtv.org/media_tree.git
17277 W:      https://linuxtv.org
17278 S:      Maintained
17279 F:      drivers/media/platform/vivid/*
17280
17281 VLYNQ BUS
17282 M:      Florian Fainelli <f.fainelli@gmail.com>
17283 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
17284 S:      Maintained
17285 F:      drivers/vlynq/vlynq.c
17286 F:      include/linux/vlynq.h
17287
17288 VME SUBSYSTEM
17289 M:      Martyn Welch <martyn@welchs.me.uk>
17290 M:      Manohar Vanga <manohar.vanga@gmail.com>
17291 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17292 L:      devel@driverdev.osuosl.org
17293 S:      Maintained
17294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17295 F:      Documentation/driver-api/vme.rst
17296 F:      drivers/staging/vme/
17297 F:      drivers/vme/
17298 F:      include/linux/vme*
17299
17300 VMWARE BALLOON DRIVER
17301 M:      Nadav Amit <namit@vmware.com>
17302 M:      "VMware, Inc." <pv-drivers@vmware.com>
17303 L:      linux-kernel@vger.kernel.org
17304 S:      Maintained
17305 F:      drivers/misc/vmw_balloon.c
17306
17307 VMWARE HYPERVISOR INTERFACE
17308 M:      Thomas Hellstrom <thellstrom@vmware.com>
17309 M:      "VMware, Inc." <pv-drivers@vmware.com>
17310 L:      virtualization@lists.linux-foundation.org
17311 S:      Supported
17312 F:      arch/x86/kernel/cpu/vmware.c
17313 F:      arch/x86/include/asm/vmware.h
17314
17315 VMWARE PVRDMA DRIVER
17316 M:      Adit Ranadive <aditr@vmware.com>
17317 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17318 L:      linux-rdma@vger.kernel.org
17319 S:      Maintained
17320 F:      drivers/infiniband/hw/vmw_pvrdma/
17321
17322 VMware PVSCSI driver
17323 M:      Jim Gill <jgill@vmware.com>
17324 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17325 L:      linux-scsi@vger.kernel.org
17326 S:      Maintained
17327 F:      drivers/scsi/vmw_pvscsi.c
17328 F:      drivers/scsi/vmw_pvscsi.h
17329
17330 VMWARE VMMOUSE SUBDRIVER
17331 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
17332 M:      "VMware, Inc." <pv-drivers@vmware.com>
17333 L:      linux-input@vger.kernel.org
17334 S:      Maintained
17335 F:      drivers/input/mouse/vmmouse.c
17336 F:      drivers/input/mouse/vmmouse.h
17337
17338 VMWARE VMXNET3 ETHERNET DRIVER
17339 M:      Ronak Doshi <doshir@vmware.com>
17340 M:      "VMware, Inc." <pv-drivers@vmware.com>
17341 L:      netdev@vger.kernel.org
17342 S:      Maintained
17343 F:      drivers/net/vmxnet3/
17344
17345 VOCORE VOCORE2 BOARD
17346 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
17347 L:      linux-mips@vger.kernel.org
17348 S:      Maintained
17349 F:      arch/mips/boot/dts/ralink/vocore2.dts
17350
17351 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
17352 M:      Liam Girdwood <lgirdwood@gmail.com>
17353 M:      Mark Brown <broonie@kernel.org>
17354 L:      linux-kernel@vger.kernel.org
17355 W:      http://www.slimlogic.co.uk/?p=48
17356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
17357 S:      Supported
17358 F:      Documentation/devicetree/bindings/regulator/
17359 F:      Documentation/power/regulator/
17360 F:      drivers/regulator/
17361 F:      include/dt-bindings/regulator/
17362 F:      include/linux/regulator/
17363 K:      regulator_get_optional
17364
17365 VRF
17366 M:      David Ahern <dsa@cumulusnetworks.com>
17367 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
17368 L:      netdev@vger.kernel.org
17369 S:      Maintained
17370 F:      drivers/net/vrf.c
17371 F:      Documentation/networking/vrf.txt
17372
17373 VT1211 HARDWARE MONITOR DRIVER
17374 M:      Juerg Haefliger <juergh@gmail.com>
17375 L:      linux-hwmon@vger.kernel.org
17376 S:      Maintained
17377 F:      Documentation/hwmon/vt1211.rst
17378 F:      drivers/hwmon/vt1211.c
17379
17380 VT8231 HARDWARE MONITOR DRIVER
17381 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
17382 L:      linux-hwmon@vger.kernel.org
17383 S:      Maintained
17384 F:      drivers/hwmon/vt8231.c
17385
17386 VUB300 USB to SDIO/SD/MMC bridge chip
17387 M:      Tony Olech <tony.olech@elandigitalsystems.com>
17388 L:      linux-mmc@vger.kernel.org
17389 L:      linux-usb@vger.kernel.org
17390 S:      Supported
17391 F:      drivers/mmc/host/vub300.c
17392
17393 W1 DALLAS'S 1-WIRE BUS
17394 M:      Evgeniy Polyakov <zbr@ioremap.net>
17395 S:      Maintained
17396 F:      Documentation/devicetree/bindings/w1/
17397 F:      Documentation/w1/
17398 F:      drivers/w1/
17399 F:      include/linux/w1.h
17400
17401 W83791D HARDWARE MONITORING DRIVER
17402 M:      Marc Hulsman <m.hulsman@tudelft.nl>
17403 L:      linux-hwmon@vger.kernel.org
17404 S:      Maintained
17405 F:      Documentation/hwmon/w83791d.rst
17406 F:      drivers/hwmon/w83791d.c
17407
17408 W83793 HARDWARE MONITORING DRIVER
17409 M:      Rudolf Marek <r.marek@assembler.cz>
17410 L:      linux-hwmon@vger.kernel.org
17411 S:      Maintained
17412 F:      Documentation/hwmon/w83793.rst
17413 F:      drivers/hwmon/w83793.c
17414
17415 W83795 HARDWARE MONITORING DRIVER
17416 M:      Jean Delvare <jdelvare@suse.com>
17417 L:      linux-hwmon@vger.kernel.org
17418 S:      Maintained
17419 F:      drivers/hwmon/w83795.c
17420
17421 W83L51xD SD/MMC CARD INTERFACE DRIVER
17422 M:      Pierre Ossman <pierre@ossman.eu>
17423 S:      Maintained
17424 F:      drivers/mmc/host/wbsd.*
17425
17426 WACOM PROTOCOL 4 SERIAL TABLETS
17427 M:      Julian Squires <julian@cipht.net>
17428 M:      Hans de Goede <hdegoede@redhat.com>
17429 L:      linux-input@vger.kernel.org
17430 S:      Maintained
17431 F:      drivers/input/tablet/wacom_serial4.c
17432
17433 WATCHDOG DEVICE DRIVERS
17434 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
17435 M:      Guenter Roeck <linux@roeck-us.net>
17436 L:      linux-watchdog@vger.kernel.org
17437 W:      http://www.linux-watchdog.org/
17438 T:      git git://www.linux-watchdog.org/linux-watchdog.git
17439 S:      Maintained
17440 F:      Documentation/devicetree/bindings/watchdog/
17441 F:      Documentation/watchdog/
17442 F:      drivers/watchdog/
17443 F:      include/linux/watchdog.h
17444 F:      include/uapi/linux/watchdog.h
17445
17446 WHISKEYCOVE PMIC GPIO DRIVER
17447 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
17448 L:      linux-gpio@vger.kernel.org
17449 S:      Maintained
17450 F:      drivers/gpio/gpio-wcove.c
17451
17452 WHWAVE RTC DRIVER
17453 M:      Dianlong Li <long17.cool@163.com>
17454 L:      linux-rtc@vger.kernel.org
17455 S:      Maintained
17456 F:      drivers/rtc/rtc-sd3078.c
17457
17458 WIIMOTE HID DRIVER
17459 M:      David Herrmann <dh.herrmann@googlemail.com>
17460 L:      linux-input@vger.kernel.org
17461 S:      Maintained
17462 F:      drivers/hid/hid-wiimote*
17463
17464 WILOCITY WIL6210 WIRELESS DRIVER
17465 M:      Maya Erez <merez@codeaurora.org>
17466 L:      linux-wireless@vger.kernel.org
17467 L:      wil6210@qti.qualcomm.com
17468 S:      Supported
17469 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
17470 F:      drivers/net/wireless/ath/wil6210/
17471
17472 WIMAX STACK
17473 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
17474 M:      linux-wimax@intel.com
17475 L:      wimax@linuxwimax.org (subscribers-only)
17476 S:      Supported
17477 W:      http://linuxwimax.org
17478 F:      Documentation/admin-guide/wimax/wimax.rst
17479 F:      include/linux/wimax/debug.h
17480 F:      include/net/wimax.h
17481 F:      include/uapi/linux/wimax.h
17482 F:      net/wimax/
17483
17484 WINBOND CIR DRIVER
17485 M:      David Härdeman <david@hardeman.nu>
17486 S:      Maintained
17487 F:      drivers/media/rc/winbond-cir.c
17488
17489 RCMM REMOTE CONTROLS DECODER
17490 M:      Patrick Lerda <patrick9876@free.fr>
17491 S:      Maintained
17492 F:      drivers/media/rc/ir-rcmm-decoder.c
17493
17494 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
17495 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17496 L:      linux-watchdog@vger.kernel.org
17497 S:      Maintained
17498 F:      drivers/watchdog/ebc-c384_wdt.c
17499
17500 WINSYSTEMS WS16C48 GPIO DRIVER
17501 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17502 L:      linux-gpio@vger.kernel.org
17503 S:      Maintained
17504 F:      drivers/gpio/gpio-ws16c48.c
17505
17506 WISTRON LAPTOP BUTTON DRIVER
17507 M:      Miloslav Trmac <mitr@volny.cz>
17508 S:      Maintained
17509 F:      drivers/input/misc/wistron_btns.c
17510
17511 WL3501 WIRELESS PCMCIA CARD DRIVER
17512 L:      linux-wireless@vger.kernel.org
17513 S:      Odd fixes
17514 F:      drivers/net/wireless/wl3501*
17515
17516 WOLFSON MICROELECTRONICS DRIVERS
17517 L:      patches@opensource.cirrus.com
17518 T:      git https://github.com/CirrusLogic/linux-drivers.git
17519 W:      https://github.com/CirrusLogic/linux-drivers/wiki
17520 S:      Supported
17521 F:      Documentation/hwmon/wm83??.rst
17522 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
17523 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
17524 F:      Documentation/devicetree/bindings/mfd/arizona.txt
17525 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
17526 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
17527 F:      arch/arm/mach-s3c64xx/mach-crag6410*
17528 F:      drivers/clk/clk-wm83*.c
17529 F:      drivers/extcon/extcon-arizona.c
17530 F:      drivers/leds/leds-wm83*.c
17531 F:      drivers/gpio/gpio-*wm*.c
17532 F:      drivers/gpio/gpio-arizona.c
17533 F:      drivers/hwmon/wm83??-hwmon.c
17534 F:      drivers/input/misc/wm831x-on.c
17535 F:      drivers/input/touchscreen/wm831x-ts.c
17536 F:      drivers/input/touchscreen/wm97*.c
17537 F:      drivers/mfd/arizona*
17538 F:      drivers/mfd/wm*.c
17539 F:      drivers/mfd/cs47l24*
17540 F:      drivers/power/supply/wm83*.c
17541 F:      drivers/rtc/rtc-wm83*.c
17542 F:      drivers/regulator/wm8*.c
17543 F:      drivers/regulator/arizona*
17544 F:      drivers/video/backlight/wm83*_bl.c
17545 F:      drivers/watchdog/wm83*_wdt.c
17546 F:      include/linux/mfd/arizona/
17547 F:      include/linux/mfd/wm831x/
17548 F:      include/linux/mfd/wm8350/
17549 F:      include/linux/mfd/wm8400*
17550 F:      include/linux/regulator/arizona*
17551 F:      include/linux/wm97xx.h
17552 F:      include/sound/wm????.h
17553 F:      sound/soc/codecs/arizona.?
17554 F:      sound/soc/codecs/wm*
17555 F:      sound/soc/codecs/cs47l24*
17556
17557 WORKQUEUE
17558 M:      Tejun Heo <tj@kernel.org>
17559 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
17561 S:      Maintained
17562 F:      include/linux/workqueue.h
17563 F:      kernel/workqueue.c
17564 F:      Documentation/core-api/workqueue.rst
17565
17566 X-POWERS AXP288 PMIC DRIVERS
17567 M:      Hans de Goede <hdegoede@redhat.com>
17568 S:      Maintained
17569 N:      axp288
17570 F:      drivers/acpi/pmic/intel_pmic_xpower.c
17571
17572 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
17573 M:      Chen-Yu Tsai <wens@csie.org>
17574 L:      linux-kernel@vger.kernel.org
17575 S:      Maintained
17576 N:      axp[128]
17577
17578 X.25 NETWORK LAYER
17579 M:      Andrew Hendry <andrew.hendry@gmail.com>
17580 L:      linux-x25@vger.kernel.org
17581 S:      Odd Fixes
17582 F:      Documentation/networking/x25*
17583 F:      include/net/x25*
17584 F:      net/x25/
17585
17586 X86 ARCHITECTURE (32-BIT AND 64-BIT)
17587 M:      Thomas Gleixner <tglx@linutronix.de>
17588 M:      Ingo Molnar <mingo@redhat.com>
17589 M:      Borislav Petkov <bp@alien8.de>
17590 R:      "H. Peter Anvin" <hpa@zytor.com>
17591 M:      x86@kernel.org
17592 L:      linux-kernel@vger.kernel.org
17593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17594 S:      Maintained
17595 F:      Documentation/devicetree/bindings/x86/
17596 F:      Documentation/x86/
17597 F:      arch/x86/
17598
17599 X86 ENTRY CODE
17600 M:      Andy Lutomirski <luto@kernel.org>
17601 L:      linux-kernel@vger.kernel.org
17602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
17603 S:      Maintained
17604 F:      arch/x86/entry/
17605
17606 X86 MCE INFRASTRUCTURE
17607 M:      Tony Luck <tony.luck@intel.com>
17608 M:      Borislav Petkov <bp@alien8.de>
17609 L:      linux-edac@vger.kernel.org
17610 S:      Maintained
17611 F:      arch/x86/kernel/cpu/mce/*
17612
17613 X86 MICROCODE UPDATE SUPPORT
17614 M:      Borislav Petkov <bp@alien8.de>
17615 S:      Maintained
17616 F:      arch/x86/kernel/cpu/microcode/*
17617
17618 X86 MM
17619 M:      Dave Hansen <dave.hansen@linux.intel.com>
17620 M:      Andy Lutomirski <luto@kernel.org>
17621 M:      Peter Zijlstra <peterz@infradead.org>
17622 L:      linux-kernel@vger.kernel.org
17623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
17624 S:      Maintained
17625 F:      arch/x86/mm/
17626
17627 X86 PLATFORM DRIVERS
17628 M:      Darren Hart <dvhart@infradead.org>
17629 M:      Andy Shevchenko <andy@infradead.org>
17630 L:      platform-driver-x86@vger.kernel.org
17631 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
17632 S:      Odd Fixes
17633 F:      drivers/platform/x86/
17634 F:      drivers/platform/olpc/
17635
17636 X86 PLATFORM DRIVERS - ARCH
17637 R:      Darren Hart <dvhart@infradead.org>
17638 R:      Andy Shevchenko <andy@infradead.org>
17639 L:      platform-driver-x86@vger.kernel.org
17640 L:      x86@kernel.org
17641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17642 S:      Maintained
17643 F:      arch/x86/platform
17644
17645 X86 VDSO
17646 M:      Andy Lutomirski <luto@kernel.org>
17647 L:      linux-kernel@vger.kernel.org
17648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
17649 S:      Maintained
17650 F:      arch/x86/entry/vdso/
17651
17652 XARRAY
17653 M:      Matthew Wilcox <willy@infradead.org>
17654 L:      linux-fsdevel@vger.kernel.org
17655 S:      Supported
17656 F:      Documentation/core-api/xarray.rst
17657 F:      lib/idr.c
17658 F:      lib/xarray.c
17659 F:      include/linux/idr.h
17660 F:      include/linux/xarray.h
17661 F:      tools/testing/radix-tree
17662
17663 XBOX DVD IR REMOTE
17664 M:      Benjamin Valentin <benpicco@googlemail.com>
17665 S:      Maintained
17666 F:      drivers/media/rc/xbox_remote.c
17667 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
17668
17669 XC2028/3028 TUNER DRIVER
17670 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17671 L:      linux-media@vger.kernel.org
17672 W:      https://linuxtv.org
17673 T:      git git://linuxtv.org/media_tree.git
17674 S:      Maintained
17675 F:      drivers/media/tuners/tuner-xc2028.*
17676
17677 XDP (eXpress Data Path)
17678 M:      Alexei Starovoitov <ast@kernel.org>
17679 M:      Daniel Borkmann <daniel@iogearbox.net>
17680 M:      David S. Miller <davem@davemloft.net>
17681 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
17682 M:      Jesper Dangaard Brouer <hawk@kernel.org>
17683 M:      John Fastabend <john.fastabend@gmail.com>
17684 L:      netdev@vger.kernel.org
17685 L:      bpf@vger.kernel.org
17686 S:      Supported
17687 F:      net/core/xdp.c
17688 F:      include/net/xdp.h
17689 F:      kernel/bpf/devmap.c
17690 F:      kernel/bpf/cpumap.c
17691 F:      include/trace/events/xdp.h
17692 K:      xdp
17693 N:      xdp
17694
17695 XDP SOCKETS (AF_XDP)
17696 M:      Björn Töpel <bjorn.topel@intel.com>
17697 M:      Magnus Karlsson <magnus.karlsson@intel.com>
17698 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
17699 L:      netdev@vger.kernel.org
17700 L:      bpf@vger.kernel.org
17701 S:      Maintained
17702 F:      kernel/bpf/xskmap.c
17703 F:      net/xdp/
17704
17705 XEN BLOCK SUBSYSTEM
17706 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17707 M:      Roger Pau Monné <roger.pau@citrix.com>
17708 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17709 S:      Supported
17710 F:      drivers/block/xen-blkback/*
17711 F:      drivers/block/xen*
17712
17713 XEN HYPERVISOR ARM
17714 M:      Stefano Stabellini <sstabellini@kernel.org>
17715 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17716 S:      Maintained
17717 F:      arch/arm/xen/
17718 F:      arch/arm/include/asm/xen/
17719
17720 XEN HYPERVISOR ARM64
17721 M:      Stefano Stabellini <sstabellini@kernel.org>
17722 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17723 S:      Maintained
17724 F:      arch/arm64/xen/
17725 F:      arch/arm64/include/asm/xen/
17726
17727 XEN HYPERVISOR INTERFACE
17728 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
17729 M:      Juergen Gross <jgross@suse.com>
17730 R:      Stefano Stabellini <sstabellini@kernel.org>
17731 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
17733 S:      Supported
17734 F:      arch/x86/xen/
17735 F:      arch/x86/platform/pvh/
17736 F:      drivers/*/xen-*front.c
17737 F:      drivers/xen/
17738 F:      arch/x86/include/asm/xen/
17739 F:      arch/x86/include/asm/pvclock-abi.h
17740 F:      include/xen/
17741 F:      include/uapi/xen/
17742 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
17743 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
17744
17745 XEN NETWORK BACKEND DRIVER
17746 M:      Wei Liu <wei.liu@kernel.org>
17747 M:      Paul Durrant <paul@xen.org>
17748 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17749 L:      netdev@vger.kernel.org
17750 S:      Supported
17751 F:      drivers/net/xen-netback/*
17752
17753 XEN PCI SUBSYSTEM
17754 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17755 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17756 S:      Supported
17757 F:      arch/x86/pci/*xen*
17758 F:      drivers/pci/*xen*
17759
17760 XEN PVSCSI DRIVERS
17761 M:      Juergen Gross <jgross@suse.com>
17762 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17763 L:      linux-scsi@vger.kernel.org
17764 S:      Supported
17765 F:      drivers/scsi/xen-scsifront.c
17766 F:      drivers/xen/xen-scsiback.c
17767 F:      include/xen/interface/io/vscsiif.h
17768
17769 XEN SWIOTLB SUBSYSTEM
17770 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17771 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17772 L:      iommu@lists.linux-foundation.org
17773 S:      Supported
17774 F:      arch/x86/xen/*swiotlb*
17775 F:      drivers/xen/*swiotlb*
17776
17777 XEN SOUND FRONTEND DRIVER
17778 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
17779 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17780 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17781 S:      Supported
17782 F:      sound/xen/*
17783
17784 XFS FILESYSTEM
17785 M:      Darrick J. Wong <darrick.wong@oracle.com>
17786 M:      linux-xfs@vger.kernel.org
17787 L:      linux-xfs@vger.kernel.org
17788 W:      http://xfs.org/
17789 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
17790 S:      Supported
17791 F:      Documentation/admin-guide/xfs.rst
17792 F:      Documentation/ABI/testing/sysfs-fs-xfs
17793 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
17794 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
17795 F:      fs/xfs/
17796 F:      include/uapi/linux/dqblk_xfs.h
17797 F:      include/uapi/linux/fsmap.h
17798
17799 XILINX AXI ETHERNET DRIVER
17800 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
17801 S:      Maintained
17802 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
17803
17804 XILINX UARTLITE SERIAL DRIVER
17805 M:      Peter Korsgaard <jacmet@sunsite.dk>
17806 L:      linux-serial@vger.kernel.org
17807 S:      Maintained
17808 F:      drivers/tty/serial/uartlite.c
17809
17810 XILINX VIDEO IP CORES
17811 M:      Hyun Kwon <hyun.kwon@xilinx.com>
17812 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17813 L:      linux-media@vger.kernel.org
17814 T:      git git://linuxtv.org/media_tree.git
17815 S:      Supported
17816 F:      Documentation/devicetree/bindings/media/xilinx/
17817 F:      drivers/media/platform/xilinx/
17818 F:      include/uapi/linux/xilinx-v4l2-controls.h
17819
17820 XILINX SD-FEC IP CORES
17821 M:      Derek Kiernan <derek.kiernan@xilinx.com>
17822 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
17823 S:      Maintained
17824 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
17825 F:      Documentation/misc-devices/xilinx_sdfec.rst
17826 F:      drivers/misc/xilinx_sdfec.c
17827 F:      drivers/misc/Kconfig
17828 F:      drivers/misc/Makefile
17829 F:      include/uapi/misc/xilinx_sdfec.h
17830
17831 XILLYBUS DRIVER
17832 M:      Eli Billauer <eli.billauer@gmail.com>
17833 L:      linux-kernel@vger.kernel.org
17834 S:      Supported
17835 F:      drivers/char/xillybus/
17836
17837 XLP9XX I2C DRIVER
17838 M:      George Cherian <george.cherian@cavium.com>
17839 M:      Jan Glauber <jglauber@cavium.com>
17840 L:      linux-i2c@vger.kernel.org
17841 W:      http://www.cavium.com
17842 S:      Supported
17843 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
17844 F:      drivers/i2c/busses/i2c-xlp9xx.c
17845
17846 XRA1403 GPIO EXPANDER
17847 M:      Nandor Han <nandor.han@ge.com>
17848 M:      Semi Malinen <semi.malinen@ge.com>
17849 L:      linux-gpio@vger.kernel.org
17850 S:      Maintained
17851 F:      drivers/gpio/gpio-xra1403.c
17852 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
17853
17854 XTENSA XTFPGA PLATFORM SUPPORT
17855 M:      Max Filippov <jcmvbkbc@gmail.com>
17856 L:      linux-xtensa@linux-xtensa.org
17857 S:      Maintained
17858 F:      drivers/spi/spi-xtensa-xtfpga.c
17859 F:      sound/soc/xtensa/xtfpga-i2s.c
17860
17861 YAM DRIVER FOR AX.25
17862 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
17863 L:      linux-hams@vger.kernel.org
17864 S:      Maintained
17865 F:      drivers/net/hamradio/yam*
17866 F:      include/linux/yam.h
17867
17868 YAMA SECURITY MODULE
17869 M:      Kees Cook <keescook@chromium.org>
17870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
17871 S:      Supported
17872 F:      security/yama/
17873 F:      Documentation/admin-guide/LSM/Yama.rst
17874
17875 YEALINK PHONE DRIVER
17876 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
17877 L:      usbb2k-api-dev@nongnu.org
17878 S:      Maintained
17879 F:      Documentation/input/devices/yealink.rst
17880 F:      drivers/input/misc/yealink.*
17881
17882 Z8530 DRIVER FOR AX.25
17883 M:      Joerg Reuter <jreuter@yaina.de>
17884 W:      http://yaina.de/jreuter/
17885 W:      http://www.qsl.net/dl1bke/
17886 L:      linux-hams@vger.kernel.org
17887 S:      Maintained
17888 F:      Documentation/networking/z8530drv.txt
17889 F:      drivers/net/hamradio/*scc.c
17890 F:      drivers/net/hamradio/z8530.h
17891
17892 ZBUD COMPRESSED PAGE ALLOCATOR
17893 M:      Seth Jennings <sjenning@redhat.com>
17894 M:      Dan Streetman <ddstreet@ieee.org>
17895 L:      linux-mm@kvack.org
17896 S:      Maintained
17897 F:      mm/zbud.c
17898 F:      include/linux/zbud.h
17899
17900 ZD1211RW WIRELESS DRIVER
17901 M:      Daniel Drake <dsd@gentoo.org>
17902 M:      Ulrich Kunitz <kune@deine-taler.de>
17903 W:      http://zd1211.ath.cx/wiki/DriverRewrite
17904 L:      linux-wireless@vger.kernel.org
17905 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
17906 S:      Maintained
17907 F:      drivers/net/wireless/zydas/zd1211rw/
17908
17909 ZD1301 MEDIA DRIVER
17910 M:      Antti Palosaari <crope@iki.fi>
17911 L:      linux-media@vger.kernel.org
17912 W:      https://linuxtv.org/
17913 W:      http://palosaari.fi/linux/
17914 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17915 S:      Maintained
17916 F:      drivers/media/usb/dvb-usb-v2/zd1301*
17917
17918 ZD1301_DEMOD MEDIA DRIVER
17919 M:      Antti Palosaari <crope@iki.fi>
17920 L:      linux-media@vger.kernel.org
17921 W:      https://linuxtv.org/
17922 W:      http://palosaari.fi/linux/
17923 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17924 S:      Maintained
17925 F:      drivers/media/dvb-frontends/zd1301_demod*
17926
17927 ZHAOXIN PROCESSOR SUPPORT
17928 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
17929 L:      linux-kernel@vger.kernel.org
17930 S:      Maintained
17931 F:      arch/x86/kernel/cpu/zhaoxin.c
17932
17933 ZPOOL COMPRESSED PAGE STORAGE API
17934 M:      Dan Streetman <ddstreet@ieee.org>
17935 L:      linux-mm@kvack.org
17936 S:      Maintained
17937 F:      mm/zpool.c
17938 F:      include/linux/zpool.h
17939
17940 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
17941 M:      Minchan Kim <minchan@kernel.org>
17942 M:      Nitin Gupta <ngupta@vflare.org>
17943 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
17944 L:      linux-kernel@vger.kernel.org
17945 S:      Maintained
17946 F:      drivers/block/zram/
17947 F:      Documentation/admin-guide/blockdev/zram.rst
17948
17949 ZS DECSTATION Z85C30 SERIAL DRIVER
17950 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17951 S:      Maintained
17952 F:      drivers/tty/serial/zs.*
17953
17954 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
17955 M:      Minchan Kim <minchan@kernel.org>
17956 M:      Nitin Gupta <ngupta@vflare.org>
17957 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
17958 L:      linux-mm@kvack.org
17959 S:      Maintained
17960 F:      mm/zsmalloc.c
17961 F:      include/linux/zsmalloc.h
17962 F:      Documentation/vm/zsmalloc.rst
17963
17964 ZSWAP COMPRESSED SWAP CACHING
17965 M:      Seth Jennings <sjenning@redhat.com>
17966 M:      Dan Streetman <ddstreet@ieee.org>
17967 L:      linux-mm@kvack.org
17968 S:      Maintained
17969 F:      mm/zswap.c
17970
17971 THE REST
17972 M:      Linus Torvalds <torvalds@linux-foundation.org>
17973 L:      linux-kernel@vger.kernel.org
17974 Q:      http://patchwork.kernel.org/project/LKML/list/
17975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
17976 S:      Buried alive in reporters
17977 F:      *
17978 F:      */