Merge tag 'keys-fixes-20200329' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries
81 -------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         W: *Web-page* with status/info
88         B: URI for where to file *bugs*. A web-page with detailed bug
89            filing info, a direct bug tracker link, or a mailto: URI.
90         C: URI for *chat* protocol, server and channel where developers
91            usually hang out, for example irc://server/channel.
92         Q: *Patchwork* web based patch tracking system site
93         T: *SCM* tree type and location.
94            Type is one of: git, hg, quilt, stgit, topgit
95         S: *Status*, one of the following:
96            Supported:   Someone is actually paid to look after this.
97            Maintained:  Someone actually looks after it.
98            Odd Fixes:   It has a maintainer but they don't have time to do
99                         much other than throw the odd patch in. See below..
100            Orphan:      No current maintainer [but maybe you could take the
101                         role as you write your new code].
102            Obsolete:    Old code. Something tagged obsolete generally means
103                         it has been replaced by a better system and you
104                         should be using that.
105         P: Subsystem Profile document for more details submitting
106            patches to the given subsystem. This is either an in-tree file,
107            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
108            for details.
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         N: Files and directories *Regex* patterns.
116            N:   [^a-z]tegra     all files whose path contains the word tegra
117            One pattern per line.  Multiple N: lines acceptable.
118            scripts/get_maintainer.pl has different behavior for files that
119            match F: pattern and matches of N: patterns.  By default,
120            get_maintainer will not look at git log history when an F: pattern
121            match occurs.  When an N: match occurs, git log history is used
122            to also notify the people that have git commit signatures.
123         X: *Excluded* files and directories that are NOT maintained, same
124            rules as F:. Files exclusions are tested before file matches.
125            Can be useful for excluding a specific subdirectory, for instance:
126            F:   net/
127            X:   net/ipv6/
128            matches all files in and below net excluding net/ipv6/
129         K: *Content regex* (perl extended) pattern match in a patch or file.
130            For instance:
131            K: of_get_profile
132               matches patches or files that contain "of_get_profile"
133            K: \b(printk|pr_(info|err))\b
134               matches patches or files that contain one or more of the words
135               printk, pr_info or pr_err
136            One regex pattern per line.  Multiple K: lines acceptable.
137
138 Maintainers List
139 ----------------
140
141 .. note:: When reading this list, please look for the most precise areas
142           first. When adding to this list, please keep the entries in
143           alphabetical order.
144
145 3C59X NETWORK DRIVER
146 M:      Steffen Klassert <klassert@kernel.org>
147 L:      netdev@vger.kernel.org
148 S:      Odd Fixes
149 F:      Documentation/networking/device_drivers/3com/vortex.txt
150 F:      drivers/net/ethernet/3com/3c59x.c
151
152 3CR990 NETWORK DRIVER
153 M:      David Dillow <dave@thedillows.org>
154 L:      netdev@vger.kernel.org
155 S:      Maintained
156 F:      drivers/net/ethernet/3com/typhoon*
157
158 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
159 M:      Adam Radford <aradford@gmail.com>
160 L:      linux-scsi@vger.kernel.org
161 W:      http://www.lsi.com
162 S:      Supported
163 F:      drivers/scsi/3w-*
164
165 53C700 AND 53C700-66 SCSI DRIVER
166 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
167 L:      linux-scsi@vger.kernel.org
168 S:      Maintained
169 F:      drivers/scsi/53c700*
170
171 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
172 M:      Alexander Aring <alex.aring@gmail.com>
173 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
174 L:      linux-bluetooth@vger.kernel.org
175 L:      linux-wpan@vger.kernel.org
176 S:      Maintained
177 F:      net/6lowpan/
178 F:      include/net/6lowpan.h
179 F:      Documentation/networking/6lowpan.rst
180
181 6PACK NETWORK DRIVER FOR AX.25
182 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
183 L:      linux-hams@vger.kernel.org
184 S:      Maintained
185 F:      drivers/net/hamradio/6pack.c
186
187 8169 10/100/1000 GIGABIT ETHERNET DRIVER
188 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
189 M:      Heiner Kallweit <hkallweit1@gmail.com>
190 L:      netdev@vger.kernel.org
191 S:      Maintained
192 F:      drivers/net/ethernet/realtek/r8169*
193
194 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
195 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
196 L:      linux-serial@vger.kernel.org
197 S:      Maintained
198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
199 F:      drivers/tty/serial/8250*
200 F:      include/linux/serial_8250.h
201
202 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
203 L:      netdev@vger.kernel.org
204 S:      Orphan / Obsolete
205 F:      drivers/net/ethernet/8390/
206
207 9P FILE SYSTEM
208 M:      Eric Van Hensbergen <ericvh@gmail.com>
209 M:      Latchesar Ionkov <lucho@ionkov.net>
210 M:      Dominique Martinet <asmadeus@codewreck.org>
211 L:      v9fs-developer@lists.sourceforge.net
212 W:      http://swik.net/v9fs
213 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
215 T:      git git://github.com/martinetd/linux.git
216 S:      Maintained
217 F:      Documentation/filesystems/9p.rst
218 F:      fs/9p/
219 F:      net/9p/
220 F:      include/net/9p/
221 F:      include/uapi/linux/virtio_9p.h
222 F:      include/trace/events/9p.h
223
224 A8293 MEDIA DRIVER
225 M:      Antti Palosaari <crope@iki.fi>
226 L:      linux-media@vger.kernel.org
227 W:      https://linuxtv.org
228 W:      http://palosaari.fi/linux/
229 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
230 T:      git git://linuxtv.org/anttip/media_tree.git
231 S:      Maintained
232 F:      drivers/media/dvb-frontends/a8293*
233
234 AACRAID SCSI RAID DRIVER
235 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
236 L:      linux-scsi@vger.kernel.org
237 W:      http://www.adaptec.com/
238 S:      Supported
239 F:      Documentation/scsi/aacraid.rst
240 F:      drivers/scsi/aacraid/
241
242 ABI/API
243 L:      linux-api@vger.kernel.org
244 F:      include/linux/syscalls.h
245 F:      kernel/sys_ni.c
246
247 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
248 M:      Hans de Goede <hdegoede@redhat.com>
249 L:      linux-hwmon@vger.kernel.org
250 S:      Maintained
251 F:      drivers/hwmon/abituguru.c
252
253 ABIT UGURU 3 HARDWARE MONITOR DRIVER
254 M:      Alistair John Strachan <alistair@devzero.co.uk>
255 L:      linux-hwmon@vger.kernel.org
256 S:      Maintained
257 F:      drivers/hwmon/abituguru3.c
258
259 ACCES 104-DIO-48E 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-dio-48e.c
264
265 ACCES 104-IDI-48 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-idi-48.c
270
271 ACCES 104-IDIO-16 GPIO DRIVER
272 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
273 L:      linux-gpio@vger.kernel.org
274 S:      Maintained
275 F:      drivers/gpio/gpio-104-idio-16.c
276
277 ACCES 104-QUAD-8 DRIVER
278 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
279 L:      linux-iio@vger.kernel.org
280 S:      Maintained
281 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
282 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
283 F:      drivers/counter/104-quad-8.c
284
285 ACCES PCI-IDIO-16 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-pci-idio-16.c
290
291 ACCES PCIe-IDIO-24 GPIO DRIVER
292 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-pcie-idio-24.c
296
297 ACENIC DRIVER
298 M:      Jes Sorensen <jes@trained-monkey.org>
299 L:      linux-acenic@sunsite.dk
300 S:      Maintained
301 F:      drivers/net/ethernet/alteon/acenic*
302
303 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
304 M:      Peter Kaestle <peter@piie.net>
305 L:      platform-driver-x86@vger.kernel.org
306 S:      Maintained
307 W:      http://piie.net/?section=acerhdf
308 F:      drivers/platform/x86/acerhdf.c
309
310 ACER WMI LAPTOP EXTRAS
311 M:      "Lee, Chun-Yi" <jlee@suse.com>
312 L:      platform-driver-x86@vger.kernel.org
313 S:      Maintained
314 F:      drivers/platform/x86/acer-wmi.c
315
316 ACPI
317 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
318 M:      Len Brown <lenb@kernel.org>
319 L:      linux-acpi@vger.kernel.org
320 S:      Supported
321 W:      https://01.org/linux-acpi
322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
323 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
324 B:      https://bugzilla.kernel.org
325 F:      Documentation/ABI/testing/configfs-acpi
326 F:      Documentation/ABI/testing/sysfs-bus-acpi
327 F:      Documentation/firmware-guide/acpi/
328 F:      drivers/acpi/
329 F:      drivers/pci/*/*acpi*
330 F:      drivers/pci/*acpi*
331 F:      drivers/pnp/pnpacpi/
332 F:      include/acpi/
333 F:      include/linux/acpi.h
334 F:      include/linux/fwnode.h
335 F:      tools/power/acpi/
336
337 ACPI APEI
338 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
339 M:      Len Brown <lenb@kernel.org>
340 R:      James Morse <james.morse@arm.com>
341 R:      Tony Luck <tony.luck@intel.com>
342 R:      Borislav Petkov <bp@alien8.de>
343 L:      linux-acpi@vger.kernel.org
344 F:      drivers/acpi/apei/
345
346 ACPI COMPONENT ARCHITECTURE (ACPICA)
347 M:      Robert Moore <robert.moore@intel.com>
348 M:      Erik Kaneda <erik.kaneda@intel.com>
349 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
350 L:      linux-acpi@vger.kernel.org
351 L:      devel@acpica.org
352 S:      Supported
353 W:      https://acpica.org/
354 W:      https://github.com/acpica/acpica/
355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
356 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
357 B:      https://bugzilla.kernel.org
358 B:      https://bugs.acpica.org
359 F:      drivers/acpi/acpica/
360 F:      include/acpi/
361 F:      tools/power/acpi/
362
363 ACPI FAN DRIVER
364 M:      Zhang Rui <rui.zhang@intel.com>
365 L:      linux-acpi@vger.kernel.org
366 S:      Supported
367 W:      https://01.org/linux-acpi
368 B:      https://bugzilla.kernel.org
369 F:      drivers/acpi/fan.c
370
371 ACPI FOR ARM64 (ACPI/arm64)
372 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
373 M:      Hanjun Guo <guohanjun@huawei.com>
374 M:      Sudeep Holla <sudeep.holla@arm.com>
375 L:      linux-acpi@vger.kernel.org
376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
377 S:      Maintained
378 F:      drivers/acpi/arm64
379
380 ACPI I2C MULTI INSTANTIATE DRIVER
381 M:      Hans de Goede <hdegoede@redhat.com>
382 L:      platform-driver-x86@vger.kernel.org
383 S:      Maintained
384 F:      drivers/platform/x86/i2c-multi-instantiate.c
385
386 ACPI PMIC DRIVERS
387 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
388 M:      Len Brown <lenb@kernel.org>
389 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
390 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
391 L:      linux-acpi@vger.kernel.org
392 S:      Supported
393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
394 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
395 B:      https://bugzilla.kernel.org
396 F:      drivers/acpi/pmic/
397
398 ACPI THERMAL DRIVER
399 M:      Zhang Rui <rui.zhang@intel.com>
400 L:      linux-acpi@vger.kernel.org
401 S:      Supported
402 W:      https://01.org/linux-acpi
403 B:      https://bugzilla.kernel.org
404 F:      drivers/acpi/*thermal*
405
406 ACPI VIDEO DRIVER
407 M:      Zhang Rui <rui.zhang@intel.com>
408 L:      linux-acpi@vger.kernel.org
409 S:      Supported
410 W:      https://01.org/linux-acpi
411 B:      https://bugzilla.kernel.org
412 F:      drivers/acpi/acpi_video.c
413
414 ACPI WMI DRIVER
415 L:      platform-driver-x86@vger.kernel.org
416 S:      Orphan
417 F:      drivers/platform/x86/wmi.c
418 F:      include/uapi/linux/wmi.h
419
420 AD1889 ALSA SOUND DRIVER
421 W:      https://parisc.wiki.kernel.org/index.php/AD1889
422 L:      linux-parisc@vger.kernel.org
423 S:      Maintained
424 F:      sound/pci/ad1889.*
425
426 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
427 M:      Michael Hennerich <michael.hennerich@analog.com>
428 W:      http://wiki.analog.com/AD5254
429 W:      http://ez.analog.com/community/linux-device-drivers
430 S:      Supported
431 F:      drivers/misc/ad525x_dpot.c
432
433 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
434 M:      Michael Hennerich <michael.hennerich@analog.com>
435 W:      http://wiki.analog.com/AD5398
436 W:      http://ez.analog.com/community/linux-device-drivers
437 S:      Supported
438 F:      drivers/regulator/ad5398.c
439
440 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
441 M:      Michael Hennerich <michael.hennerich@analog.com>
442 W:      http://wiki.analog.com/AD7142
443 W:      http://ez.analog.com/community/linux-device-drivers
444 S:      Supported
445 F:      drivers/input/misc/ad714x.c
446
447 AD7877 TOUCHSCREEN DRIVER
448 M:      Michael Hennerich <michael.hennerich@analog.com>
449 W:      http://wiki.analog.com/AD7877
450 W:      http://ez.analog.com/community/linux-device-drivers
451 S:      Supported
452 F:      drivers/input/touchscreen/ad7877.c
453
454 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
455 M:      Michael Hennerich <michael.hennerich@analog.com>
456 W:      http://wiki.analog.com/AD7879
457 W:      http://ez.analog.com/community/linux-device-drivers
458 S:      Supported
459 F:      drivers/input/touchscreen/ad7879.c
460
461 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
462 M:      Jiri Kosina <jikos@kernel.org>
463 S:      Maintained
464
465 ADF7242 IEEE 802.15.4 RADIO DRIVER
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 W:      https://wiki.analog.com/ADF7242
468 W:      http://ez.analog.com/community/linux-device-drivers
469 L:      linux-wpan@vger.kernel.org
470 S:      Supported
471 F:      drivers/net/ieee802154/adf7242.c
472 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
473
474 ADM1025 HARDWARE MONITOR DRIVER
475 M:      Jean Delvare <jdelvare@suse.com>
476 L:      linux-hwmon@vger.kernel.org
477 S:      Maintained
478 F:      Documentation/hwmon/adm1025.rst
479 F:      drivers/hwmon/adm1025.c
480
481 ADM1029 HARDWARE MONITOR DRIVER
482 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
483 L:      linux-hwmon@vger.kernel.org
484 S:      Maintained
485 F:      drivers/hwmon/adm1029.c
486
487 ADM8211 WIRELESS DRIVER
488 L:      linux-wireless@vger.kernel.org
489 W:      http://wireless.kernel.org/
490 S:      Orphan
491 F:      drivers/net/wireless/admtek/adm8211.*
492
493 ADP1653 FLASH CONTROLLER DRIVER
494 M:      Sakari Ailus <sakari.ailus@iki.fi>
495 L:      linux-media@vger.kernel.org
496 S:      Maintained
497 F:      drivers/media/i2c/adp1653.c
498 F:      include/media/i2c/adp1653.h
499
500 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
501 M:      Michael Hennerich <michael.hennerich@analog.com>
502 W:      http://wiki.analog.com/ADP5520
503 W:      http://ez.analog.com/community/linux-device-drivers
504 S:      Supported
505 F:      drivers/mfd/adp5520.c
506 F:      drivers/video/backlight/adp5520_bl.c
507 F:      drivers/leds/leds-adp5520.c
508 F:      drivers/gpio/gpio-adp5520.c
509 F:      drivers/input/keyboard/adp5520-keys.c
510
511 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
512 M:      Michael Hennerich <michael.hennerich@analog.com>
513 W:      http://wiki.analog.com/ADP5588
514 W:      http://ez.analog.com/community/linux-device-drivers
515 S:      Supported
516 F:      drivers/input/keyboard/adp5588-keys.c
517 F:      drivers/gpio/gpio-adp5588.c
518
519 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
520 M:      Michael Hennerich <michael.hennerich@analog.com>
521 W:      http://wiki.analog.com/ADP8860
522 W:      http://ez.analog.com/community/linux-device-drivers
523 S:      Supported
524 F:      drivers/video/backlight/adp8860_bl.c
525
526 ADT746X FAN DRIVER
527 M:      Colin Leroy <colin@colino.net>
528 S:      Maintained
529 F:      drivers/macintosh/therm_adt746x.c
530
531 ADT7475 HARDWARE MONITOR DRIVER
532 M:      Jean Delvare <jdelvare@suse.com>
533 L:      linux-hwmon@vger.kernel.org
534 S:      Maintained
535 F:      Documentation/hwmon/adt7475.rst
536 F:      drivers/hwmon/adt7475.c
537
538 ADVANSYS SCSI DRIVER
539 M:      Matthew Wilcox <willy@infradead.org>
540 M:      Hannes Reinecke <hare@suse.com>
541 L:      linux-scsi@vger.kernel.org
542 S:      Maintained
543 F:      Documentation/scsi/advansys.rst
544 F:      drivers/scsi/advansys.c
545
546 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
547 M:      Michael Hennerich <michael.hennerich@analog.com>
548 W:      http://wiki.analog.com/ADXL345
549 W:      http://ez.analog.com/community/linux-device-drivers
550 S:      Supported
551 F:      drivers/input/misc/adxl34x.c
552 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
553
554 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
555 M:      Stefan Popa <stefan.popa@analog.com>
556 W:      http://ez.analog.com/community/linux-device-drivers
557 S:      Supported
558 F:      drivers/iio/accel/adxl372.c
559 F:      drivers/iio/accel/adxl372_spi.c
560 F:      drivers/iio/accel/adxl372_i2c.c
561 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
562
563 AF9013 MEDIA DRIVER
564 M:      Antti Palosaari <crope@iki.fi>
565 L:      linux-media@vger.kernel.org
566 W:      https://linuxtv.org
567 W:      http://palosaari.fi/linux/
568 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
569 T:      git git://linuxtv.org/anttip/media_tree.git
570 S:      Maintained
571 F:      drivers/media/dvb-frontends/af9013*
572
573 AF9033 MEDIA DRIVER
574 M:      Antti Palosaari <crope@iki.fi>
575 L:      linux-media@vger.kernel.org
576 W:      https://linuxtv.org
577 W:      http://palosaari.fi/linux/
578 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
579 T:      git git://linuxtv.org/anttip/media_tree.git
580 S:      Maintained
581 F:      drivers/media/dvb-frontends/af9033*
582
583 AFFS FILE SYSTEM
584 M:      David Sterba <dsterba@suse.com>
585 L:      linux-fsdevel@vger.kernel.org
586 S:      Odd Fixes
587 F:      Documentation/filesystems/affs.rst
588 F:      fs/affs/
589
590 AFS FILESYSTEM
591 M:      David Howells <dhowells@redhat.com>
592 L:      linux-afs@lists.infradead.org
593 S:      Supported
594 F:      fs/afs/
595 F:      include/trace/events/afs.h
596 F:      Documentation/filesystems/afs.rst
597 W:      https://www.infradead.org/~dhowells/kafs/
598
599 AGPGART DRIVER
600 M:      David Airlie <airlied@linux.ie>
601 T:      git git://anongit.freedesktop.org/drm/drm
602 S:      Maintained
603 F:      drivers/char/agp/
604 F:      include/linux/agp*
605 F:      include/uapi/linux/agp*
606
607 AHA152X SCSI DRIVER
608 M:      "Juergen E. Fischer" <fischer@norbit.de>
609 L:      linux-scsi@vger.kernel.org
610 S:      Maintained
611 F:      drivers/scsi/aha152x*
612 F:      drivers/scsi/pcmcia/aha152x*
613
614 AIC7XXX / AIC79XX SCSI DRIVER
615 M:      Hannes Reinecke <hare@suse.com>
616 L:      linux-scsi@vger.kernel.org
617 S:      Maintained
618 F:      drivers/scsi/aic7xxx/
619
620 AIMSLAB FM RADIO RECEIVER DRIVER
621 M:      Hans Verkuil <hverkuil@xs4all.nl>
622 L:      linux-media@vger.kernel.org
623 T:      git git://linuxtv.org/media_tree.git
624 W:      https://linuxtv.org
625 S:      Maintained
626 F:      drivers/media/radio/radio-aimslab*
627
628 AIO
629 M:      Benjamin LaHaise <bcrl@kvack.org>
630 L:      linux-aio@kvack.org
631 S:      Supported
632 F:      fs/aio.c
633 F:      include/linux/*aio*.h
634
635 AIRSPY MEDIA DRIVER
636 M:      Antti Palosaari <crope@iki.fi>
637 L:      linux-media@vger.kernel.org
638 W:      https://linuxtv.org
639 W:      http://palosaari.fi/linux/
640 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
641 T:      git git://linuxtv.org/anttip/media_tree.git
642 S:      Maintained
643 F:      drivers/media/usb/airspy/
644
645 ALACRITECH GIGABIT ETHERNET DRIVER
646 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
647 S:      Maintained
648 F:      drivers/net/ethernet/alacritech/*
649
650 FORCEDETH GIGABIT ETHERNET DRIVER
651 M:      Rain River <rain.1986.08.12@gmail.com>
652 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
653 L:      netdev@vger.kernel.org
654 S:      Maintained
655 F:      drivers/net/ethernet/nvidia/*
656
657 ALCATEL SPEEDTOUCH USB DRIVER
658 M:      Duncan Sands <duncan.sands@free.fr>
659 L:      linux-usb@vger.kernel.org
660 W:      http://www.linux-usb.org/SpeedTouch/
661 S:      Maintained
662 F:      drivers/usb/atm/speedtch.c
663 F:      drivers/usb/atm/usbatm.c
664
665 ALCHEMY AU1XX0 MMC DRIVER
666 M:      Manuel Lauss <manuel.lauss@gmail.com>
667 S:      Maintained
668 F:      drivers/mmc/host/au1xmmc.c
669
670 ALI1563 I2C DRIVER
671 M:      Rudolf Marek <r.marek@assembler.cz>
672 L:      linux-i2c@vger.kernel.org
673 S:      Maintained
674 F:      Documentation/i2c/busses/i2c-ali1563.rst
675 F:      drivers/i2c/busses/i2c-ali1563.c
676
677 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
678 M:      Tomislav Denis <tomislav.denis@avl.com>
679 W:      http://www.allsensors.com/
680 S:      Maintained
681 L:      linux-iio@vger.kernel.org
682 F:      drivers/iio/pressure/dlhl60d.c
683 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
684
685 ALLEGRO DVT VIDEO IP CORE DRIVER
686 M:      Michael Tretter <m.tretter@pengutronix.de>
687 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
688 L:      linux-media@vger.kernel.org
689 S:      Maintained
690 F:      drivers/staging/media/allegro-dvt/
691
692 ALLWINNER CPUFREQ DRIVER
693 M:      Yangtao Li <tiny.windzz@gmail.com>
694 L:      linux-pm@vger.kernel.org
695 S:      Maintained
696 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
697 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
698
699 ALLWINNER CRYPTO DRIVERS
700 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
701 L:      linux-crypto@vger.kernel.org
702 S:      Maintained
703 F:      drivers/crypto/allwinner/
704
705 ALLWINNER THERMAL DRIVER
706 M:      Vasily Khoruzhick <anarsoul@gmail.com>
707 M:      Yangtao Li <tiny.windzz@gmail.com>
708 L:      linux-pm@vger.kernel.org
709 S:      Maintained
710 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
711 F:      drivers/thermal/sun8i_thermal.c
712
713 ALLWINNER VPU DRIVER
714 M:      Maxime Ripard <mripard@kernel.org>
715 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
716 L:      linux-media@vger.kernel.org
717 S:      Maintained
718 F:      drivers/staging/media/sunxi/cedrus/
719
720 ALPHA PORT
721 M:      Richard Henderson <rth@twiddle.net>
722 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
723 M:      Matt Turner <mattst88@gmail.com>
724 S:      Odd Fixes
725 L:      linux-alpha@vger.kernel.org
726 F:      arch/alpha/
727
728 ALPS PS/2 TOUCHPAD DRIVER
729 R:      Pali Rohár <pali.rohar@gmail.com>
730 F:      drivers/input/mouse/alps.*
731
732 ALTERA I2C CONTROLLER DRIVER
733 M:      Thor Thayer <thor.thayer@linux.intel.com>
734 S:      Maintained
735 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
736 F:      drivers/i2c/busses/i2c-altera.c
737
738 ALTERA MAILBOX DRIVER
739 M:      Ley Foon Tan <ley.foon.tan@intel.com>
740 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
741 S:      Maintained
742 F:      drivers/mailbox/mailbox-altera.c
743
744 ALTERA PIO DRIVER
745 M:      Joyce Ooi <joyce.ooi@intel.com>
746 L:      linux-gpio@vger.kernel.org
747 S:      Maintained
748 F:      drivers/gpio/gpio-altera.c
749
750 ALTERA SYSTEM MANAGER DRIVER
751 M:      Thor Thayer <thor.thayer@linux.intel.com>
752 S:      Maintained
753 F:      drivers/mfd/altera-sysmgr.c
754 F:      include/linux/mfd/altera-sysmgr.h
755
756 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
757 M:      Thor Thayer <thor.thayer@linux.intel.com>
758 S:      Maintained
759 F:      drivers/gpio/gpio-altera-a10sr.c
760 F:      drivers/mfd/altera-a10sr.c
761 F:      drivers/reset/reset-a10sr.c
762 F:      include/linux/mfd/altera-a10sr.h
763 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
764
765 ALTERA TRIPLE SPEED ETHERNET DRIVER
766 M:      Thor Thayer <thor.thayer@linux.intel.com>
767 L:      netdev@vger.kernel.org
768 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
769 S:      Maintained
770 F:      drivers/net/ethernet/altera/
771
772 ALTERA UART/JTAG UART SERIAL DRIVERS
773 M:      Tobias Klauser <tklauser@distanz.ch>
774 L:      linux-serial@vger.kernel.org
775 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
776 S:      Maintained
777 F:      drivers/tty/serial/altera_uart.c
778 F:      drivers/tty/serial/altera_jtaguart.c
779 F:      include/linux/altera_uart.h
780 F:      include/linux/altera_jtaguart.h
781
782 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
783 M:      Talel Shenhar <talel@amazon.com>
784 S:      Maintained
785 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
786 F:      drivers/thermal/thermal_mmio.c
787
788 AMAZON ETHERNET DRIVERS
789 M:      Netanel Belgazal <netanel@amazon.com>
790 M:      Arthur Kiyanovski <akiyano@amazon.com>
791 R:      Guy Tzalik <gtzalik@amazon.com>
792 R:      Saeed Bishara <saeedb@amazon.com>
793 R:      Zorik Machulsky <zorik@amazon.com>
794 L:      netdev@vger.kernel.org
795 S:      Supported
796 F:      Documentation/networking/device_drivers/amazon/ena.txt
797 F:      drivers/net/ethernet/amazon/
798
799 AMAZON RDMA EFA DRIVER
800 M:      Gal Pressman <galpress@amazon.com>
801 R:      Yossi Leybovich <sleybo@amazon.com>
802 L:      linux-rdma@vger.kernel.org
803 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
804 S:      Supported
805 F:      drivers/infiniband/hw/efa/
806 F:      include/uapi/rdma/efa-abi.h
807
808 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
809 M:      Tom Lendacky <thomas.lendacky@amd.com>
810 L:      linux-crypto@vger.kernel.org
811 S:      Supported
812 F:      drivers/crypto/ccp/
813 F:      include/linux/ccp.h
814
815 AMD DISPLAY CORE
816 M:      Harry Wentland <harry.wentland@amd.com>
817 M:      Leo Li <sunpeng.li@amd.com>
818 L:      amd-gfx@lists.freedesktop.org
819 T:      git git://people.freedesktop.org/~agd5f/linux
820 S:      Supported
821 F:      drivers/gpu/drm/amd/display/
822
823 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
824 M:      Huang Rui <ray.huang@amd.com>
825 L:      linux-hwmon@vger.kernel.org
826 S:      Supported
827 F:      Documentation/hwmon/fam15h_power.rst
828 F:      drivers/hwmon/fam15h_power.c
829
830 AMD FCH GPIO DRIVER
831 M:      Enrico Weigelt, metux IT consult <info@metux.net>
832 L:      linux-gpio@vger.kernel.org
833 S:      Maintained
834 F:      drivers/gpio/gpio-amd-fch.c
835 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
836
837 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
838 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
839 S:      Orphan
840 F:      drivers/usb/gadget/udc/amd5536udc.*
841
842 AMD GEODE PROCESSOR/CHIPSET SUPPORT
843 M:      Andres Salomon <dilinger@queued.net>
844 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
845 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
846 S:      Supported
847 F:      drivers/char/hw_random/geode-rng.c
848 F:      drivers/crypto/geode*
849 F:      drivers/video/fbdev/geode/
850 F:      arch/x86/include/asm/geode.h
851
852 AMD IOMMU (AMD-VI)
853 M:      Joerg Roedel <joro@8bytes.org>
854 L:      iommu@lists.linux-foundation.org
855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
856 S:      Maintained
857 F:      drivers/iommu/amd_iommu*.[ch]
858 F:      include/linux/amd-iommu.h
859
860 AMD KFD
861 M:      Felix Kuehling <Felix.Kuehling@amd.com>
862 L:      amd-gfx@lists.freedesktop.org
863 T:      git git://people.freedesktop.org/~agd5f/linux
864 S:      Supported
865 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
866 F:      drivers/gpu/drm/amd/amdkfd/
867 F:      drivers/gpu/drm/amd/include/cik_structs.h
868 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
869 F:      drivers/gpu/drm/amd/include/vi_structs.h
870 F:      drivers/gpu/drm/amd/include/v9_structs.h
871 F:      include/uapi/linux/kfd_ioctl.h
872
873 AMD MP2 I2C DRIVER
874 M:      Elie Morisse <syniurge@gmail.com>
875 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
876 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
877 L:      linux-i2c@vger.kernel.org
878 S:      Maintained
879 F:      drivers/i2c/busses/i2c-amd-mp2*
880
881 AMD POWERPLAY
882 M:      Evan Quan <evan.quan@amd.com>
883 L:      amd-gfx@lists.freedesktop.org
884 S:      Supported
885 F:      drivers/gpu/drm/amd/powerplay/
886 T:      git git://people.freedesktop.org/~agd5f/linux
887
888 AMD SEATTLE DEVICE TREE SUPPORT
889 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
890 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
891 M:      Tom Lendacky <thomas.lendacky@amd.com>
892 S:      Supported
893 F:      arch/arm64/boot/dts/amd/
894
895 AMD XGBE DRIVER
896 M:      Tom Lendacky <thomas.lendacky@amd.com>
897 L:      netdev@vger.kernel.org
898 S:      Supported
899 F:      drivers/net/ethernet/amd/xgbe/
900 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
901
902 ANALOG DEVICES INC AD5686 DRIVER
903 M:      Stefan Popa <stefan.popa@analog.com>
904 L:      linux-pm@vger.kernel.org
905 W:      http://ez.analog.com/community/linux-device-drivers
906 S:      Supported
907 F:      drivers/iio/dac/ad5686*
908 F:      drivers/iio/dac/ad5696*
909
910 ANALOG DEVICES INC AD5758 DRIVER
911 M:      Stefan Popa <stefan.popa@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/dac/ad5758.c
916 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
917
918 ANALOG DEVICES INC AD7091R5 DRIVER
919 M:      Beniamin Bia <beniamin.bia@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/ad7091r5.c
924 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
925
926 ANALOG DEVICES INC AD7124 DRIVER
927 M:      Stefan Popa <stefan.popa@analog.com>
928 L:      linux-iio@vger.kernel.org
929 W:      http://ez.analog.com/community/linux-device-drivers
930 S:      Supported
931 F:      drivers/iio/adc/ad7124.c
932 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
933
934 ANALOG DEVICES INC AD7192 DRIVER
935 M:      Alexandru Tachici <alexandru.tachici@analog.com>
936 L:      linux-iio@vger.kernel.org
937 W:      http://ez.analog.com/community/linux-device-drivers
938 S:      Supported
939 F:      drivers/iio/adc/ad7192.c
940 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
941
942 ANALOG DEVICES INC AD7292 DRIVER
943 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
944 L:      linux-iio@vger.kernel.org
945 W:      http://ez.analog.com/community/linux-device-drivers
946 S:      Supported
947 F:      drivers/iio/adc/ad7292.c
948 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
949
950 ANALOG DEVICES INC AD7606 DRIVER
951 M:      Stefan Popa <stefan.popa@analog.com>
952 M:      Beniamin Bia <beniamin.bia@analog.com>
953 L:      linux-iio@vger.kernel.org
954 W:      http://ez.analog.com/community/linux-device-drivers
955 S:      Supported
956 F:      drivers/iio/adc/ad7606.c
957 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
958
959 ANALOG DEVICES INC AD7768-1 DRIVER
960 M:      Stefan Popa <stefan.popa@analog.com>
961 L:      linux-iio@vger.kernel.org
962 W:      http://ez.analog.com/community/linux-device-drivers
963 S:      Supported
964 F:      drivers/iio/adc/ad7768-1.c
965 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
966
967 ANALOG DEVICES INC AD7780 DRIVER
968 M:      Michael Hennerich <Michael.Hennerich@analog.com>
969 M:      Renato Lui Geh <renatogeh@gmail.com>
970 L:      linux-iio@vger.kernel.org
971 W:      http://ez.analog.com/community/linux-device-drivers
972 S:      Supported
973 F:      drivers/iio/adc/ad7780.c
974 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
975
976 ANALOG DEVICES INC AD9389B DRIVER
977 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
978 L:      linux-media@vger.kernel.org
979 S:      Maintained
980 F:      drivers/media/i2c/ad9389b*
981
982 ANALOG DEVICES INC ADGS1408 DRIVER
983 M:      Mircea Caprioru <mircea.caprioru@analog.com>
984 S:      Supported
985 F:      drivers/mux/adgs1408.c
986 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
987
988 ANALOG DEVICES INC ADIN DRIVER
989 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
990 L:      netdev@vger.kernel.org
991 W:      http://ez.analog.com/community/linux-device-drivers
992 S:      Supported
993 F:      drivers/net/phy/adin.c
994 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
995
996 ANALOG DEVICES INC ADIS DRIVER LIBRARY
997 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
998 S:      Supported
999 L:      linux-iio@vger.kernel.org
1000 F:      include/linux/iio/imu/adis.h
1001 F:      drivers/iio/imu/adis.c
1002
1003 ANALOG DEVICES INC ADIS16460 DRIVER
1004 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1005 S:      Supported
1006 L:      linux-iio@vger.kernel.org
1007 W:      http://ez.analog.com/community/linux-device-drivers
1008 F:      drivers/iio/imu/adis16460.c
1009 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1010
1011 ANALOG DEVICES INC ADM1177 DRIVER
1012 M:      Beniamin Bia <beniamin.bia@analog.com>
1013 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1014 L:      linux-hwmon@vger.kernel.org
1015 W:      http://ez.analog.com/community/linux-device-drivers
1016 S:      Supported
1017 F:      drivers/hwmon/adm1177.c
1018 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1019
1020 ANALOG DEVICES INC ADP5061 DRIVER
1021 M:      Stefan Popa <stefan.popa@analog.com>
1022 L:      linux-pm@vger.kernel.org
1023 W:      http://ez.analog.com/community/linux-device-drivers
1024 S:      Supported
1025 F:      drivers/power/supply/adp5061.c
1026
1027 ANALOG DEVICES INC ADV7180 DRIVER
1028 M:      Lars-Peter Clausen <lars@metafoo.de>
1029 L:      linux-media@vger.kernel.org
1030 W:      http://ez.analog.com/community/linux-device-drivers
1031 S:      Supported
1032 F:      drivers/media/i2c/adv7180.c
1033
1034 ANALOG DEVICES INC ADV748X DRIVER
1035 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1036 L:      linux-media@vger.kernel.org
1037 S:      Maintained
1038 F:      drivers/media/i2c/adv748x/*
1039
1040 ANALOG DEVICES INC ADV7511 DRIVER
1041 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1042 L:      linux-media@vger.kernel.org
1043 S:      Maintained
1044 F:      drivers/media/i2c/adv7511*
1045
1046 ANALOG DEVICES INC ADV7604 DRIVER
1047 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1048 L:      linux-media@vger.kernel.org
1049 S:      Maintained
1050 F:      drivers/media/i2c/adv7604*
1051
1052 ANALOG DEVICES INC ADV7842 DRIVER
1053 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1054 L:      linux-media@vger.kernel.org
1055 S:      Maintained
1056 F:      drivers/media/i2c/adv7842*
1057
1058 ANALOG DEVICES INC ASOC CODEC DRIVERS
1059 M:      Lars-Peter Clausen <lars@metafoo.de>
1060 M:      Nuno Sá <nuno.sa@analog.com>
1061 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1062 W:      http://wiki.analog.com/
1063 W:      http://ez.analog.com/community/linux-device-drivers
1064 S:      Supported
1065 F:      sound/soc/codecs/adau*
1066 F:      sound/soc/codecs/adav*
1067 F:      sound/soc/codecs/ad1*
1068 F:      sound/soc/codecs/ad7*
1069 F:      sound/soc/codecs/ssm*
1070 F:      sound/soc/codecs/sigmadsp.*
1071
1072 ANALOG DEVICES INC DMA DRIVERS
1073 M:      Lars-Peter Clausen <lars@metafoo.de>
1074 W:      http://ez.analog.com/community/linux-device-drivers
1075 S:      Supported
1076 F:      drivers/dma/dma-axi-dmac.c
1077
1078 ANALOG DEVICES INC IIO DRIVERS
1079 M:      Lars-Peter Clausen <lars@metafoo.de>
1080 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1081 M:      Stefan Popa <stefan.popa@analog.com>
1082 W:      http://wiki.analog.com/
1083 W:      http://ez.analog.com/community/linux-device-drivers
1084 S:      Supported
1085 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1086 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1087 F:      drivers/iio/*/ad*
1088 F:      drivers/iio/adc/ltc249*
1089 X:      drivers/iio/*/adjd*
1090 F:      drivers/staging/iio/*/ad*
1091
1092 ANALOG DEVICES INC HMC425A DRIVER
1093 M:      Beniamin Bia <beniamin.bia@analog.com>
1094 M:      Michael Hennerich <michael.hennerich@analog.com>
1095 L:      linux-iio@vger.kernel.org
1096 S:      Supported
1097 W:      http://ez.analog.com/community/linux-device-drivers
1098 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1099 F:      drivers/iio/amplifiers/hmc425a.c
1100
1101 ANALOGBITS PLL LIBRARIES
1102 M:      Paul Walmsley <paul.walmsley@sifive.com>
1103 S:      Supported
1104 F:      drivers/clk/analogbits/*
1105 F:      include/linux/clk/analogbits*
1106
1107 ANDES ARCHITECTURE
1108 M:      Nick Hu <nickhu@andestech.com>
1109 M:      Greentime Hu <green.hu@gmail.com>
1110 M:      Vincent Chen <deanbo422@gmail.com>
1111 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1112 S:      Supported
1113 F:      arch/nds32/
1114 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1115 F:      Documentation/devicetree/bindings/nds32/
1116 K:      nds32
1117 N:      nds32
1118
1119 ANDROID CONFIG FRAGMENTS
1120 M:      Rob Herring <robh@kernel.org>
1121 S:      Supported
1122 F:      kernel/configs/android*
1123
1124 ANDROID DRIVERS
1125 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1126 M:      Arve Hjønnevåg <arve@android.com>
1127 M:      Todd Kjos <tkjos@android.com>
1128 M:      Martijn Coenen <maco@android.com>
1129 M:      Joel Fernandes <joel@joelfernandes.org>
1130 M:      Christian Brauner <christian@brauner.io>
1131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1132 L:      devel@driverdev.osuosl.org
1133 S:      Supported
1134 F:      drivers/android/
1135 F:      drivers/staging/android/
1136
1137 ANDROID GOLDFISH PIC DRIVER
1138 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1139 S:      Supported
1140 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1141 F:      drivers/irqchip/irq-goldfish-pic.c
1142
1143 ANDROID GOLDFISH RTC DRIVER
1144 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1145 S:      Supported
1146 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1147 F:      drivers/rtc/rtc-goldfish.c
1148
1149 ANDROID ION DRIVER
1150 M:      Laura Abbott <labbott@redhat.com>
1151 M:      Sumit Semwal <sumit.semwal@linaro.org>
1152 L:      devel@driverdev.osuosl.org
1153 L:      dri-devel@lists.freedesktop.org
1154 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1155 S:      Supported
1156 F:      drivers/staging/android/ion
1157 F:      drivers/staging/android/uapi/ion.h
1158
1159 AOA (Apple Onboard Audio) ALSA DRIVER
1160 M:      Johannes Berg <johannes@sipsolutions.net>
1161 L:      linuxppc-dev@lists.ozlabs.org
1162 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1163 S:      Maintained
1164 F:      sound/aoa/
1165
1166 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1167 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1168 L:      linux-iio@vger.kernel.org
1169 S:      Maintained
1170 F:      drivers/iio/adc/stx104.c
1171
1172 APM DRIVER
1173 M:      Jiri Kosina <jikos@kernel.org>
1174 S:      Odd fixes
1175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1176 F:      arch/x86/kernel/apm_32.c
1177 F:      include/linux/apm_bios.h
1178 F:      include/uapi/linux/apm_bios.h
1179 F:      drivers/char/apm-emulation.c
1180
1181 APPARMOR SECURITY MODULE
1182 M:      John Johansen <john.johansen@canonical.com>
1183 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1184 W:      wiki.apparmor.net
1185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1186 S:      Supported
1187 F:      security/apparmor/
1188 F:      Documentation/admin-guide/LSM/apparmor.rst
1189
1190 APPLE BCM5974 MULTITOUCH DRIVER
1191 M:      Henrik Rydberg <rydberg@bitmath.org>
1192 L:      linux-input@vger.kernel.org
1193 S:      Odd fixes
1194 F:      drivers/input/mouse/bcm5974.c
1195
1196 APPLE SMC DRIVER
1197 M:      Henrik Rydberg <rydberg@bitmath.org>
1198 L:      linux-hwmon@vger.kernel.org
1199 S:      Odd fixes
1200 F:      drivers/hwmon/applesmc.c
1201
1202 APPLETALK NETWORK LAYER
1203 L:      netdev@vger.kernel.org
1204 S:      Odd fixes
1205 F:      drivers/net/appletalk/
1206 F:      net/appletalk/
1207 F:      include/linux/atalk.h
1208 F:      include/uapi/linux/atalk.h
1209
1210 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1211 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1212 S:      Supported
1213 F:      arch/arm64/boot/dts/apm/
1214
1215 APPLIED MICRO (APM) X-GENE SOC EDAC
1216 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1217 S:      Supported
1218 F:      drivers/edac/xgene_edac.c
1219 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1220
1221 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1222 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1223 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1224 S:      Supported
1225 F:      drivers/net/ethernet/apm/xgene-v2/
1226
1227 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1228 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1229 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1230 M:      Quan Nguyen <quan@os.amperecomputing.com>
1231 S:      Supported
1232 F:      drivers/net/ethernet/apm/xgene/
1233 F:      drivers/net/phy/mdio-xgene.c
1234 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1235 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1236
1237 APPLIED MICRO (APM) X-GENE SOC PMU
1238 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1239 S:      Supported
1240 F:      drivers/perf/xgene_pmu.c
1241 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1242 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1243
1244 APTINA CAMERA SENSOR PLL
1245 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1246 L:      linux-media@vger.kernel.org
1247 S:      Maintained
1248 F:      drivers/media/i2c/aptina-pll.*
1249
1250 AQUANTIA ETHERNET DRIVER (atlantic)
1251 M:      Igor Russkikh <irusskikh@marvell.com>
1252 L:      netdev@vger.kernel.org
1253 S:      Supported
1254 W:      https://www.marvell.com/
1255 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1256 F:      drivers/net/ethernet/aquantia/atlantic/
1257 F:      Documentation/networking/device_drivers/aquantia/atlantic.txt
1258
1259 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1260 M:      Egor Pomozov <epomozov@marvell.com>
1261 L:      netdev@vger.kernel.org
1262 S:      Supported
1263 W:      http://www.aquantia.com
1264 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1265
1266 ARC FRAMEBUFFER DRIVER
1267 M:      Jaya Kumar <jayalk@intworks.biz>
1268 S:      Maintained
1269 F:      drivers/video/fbdev/arcfb.c
1270 F:      drivers/video/fbdev/core/fb_defio.c
1271
1272 ARC PGU DRM DRIVER
1273 M:      Alexey Brodkin <abrodkin@synopsys.com>
1274 S:      Supported
1275 F:      drivers/gpu/drm/arc/
1276 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1277
1278 ARCNET NETWORK LAYER
1279 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1280 L:      netdev@vger.kernel.org
1281 S:      Maintained
1282 F:      drivers/net/arcnet/
1283 F:      include/uapi/linux/if_arcnet.h
1284
1285 ARM ARCHITECTED TIMER DRIVER
1286 M:      Mark Rutland <mark.rutland@arm.com>
1287 M:      Marc Zyngier <maz@kernel.org>
1288 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1289 S:      Maintained
1290 F:      arch/arm/include/asm/arch_timer.h
1291 F:      arch/arm64/include/asm/arch_timer.h
1292 F:      drivers/clocksource/arm_arch_timer.c
1293
1294 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1295 M:      Linus Walleij <linus.walleij@linaro.org>
1296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297 S:      Maintained
1298 F:      Documentation/devicetree/bindings/arm/arm-boards
1299 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1300 F:      Documentation/devicetree/bindings/clock/arm-integrator.txt
1301 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1302 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1303 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1304 F:      arch/arm/mach-integrator/
1305 F:      arch/arm/mach-realview/
1306 F:      arch/arm/mach-versatile/
1307 F:      arch/arm/plat-versatile/
1308 F:      arch/arm/boot/dts/arm-realview-*
1309 F:      arch/arm/boot/dts/integrator*
1310 F:      arch/arm/boot/dts/versatile*
1311 F:      drivers/clk/versatile/
1312 F:      drivers/i2c/busses/i2c-versatile.c
1313 F:      drivers/irqchip/irq-versatile-fpga.c
1314 F:      drivers/mtd/maps/physmap_of_versatile.c
1315 F:      drivers/power/reset/arm-versatile-reboot.c
1316 F:      drivers/soc/versatile/
1317
1318 ARM HDLCD DRM DRIVER
1319 M:      Liviu Dudau <liviu.dudau@arm.com>
1320 S:      Supported
1321 F:      drivers/gpu/drm/arm/hdlcd_*
1322 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1323
1324 ARM KOMEDA DRM-KMS DRIVER
1325 M:      James (Qian) Wang <james.qian.wang@arm.com>
1326 M:      Liviu Dudau <liviu.dudau@arm.com>
1327 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1328 L:      Mali DP Maintainers <malidp@foss.arm.com>
1329 S:      Supported
1330 T:      git git://anongit.freedesktop.org/drm/drm-misc
1331 F:      drivers/gpu/drm/arm/display/include/
1332 F:      drivers/gpu/drm/arm/display/komeda/
1333 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1334 F:      Documentation/gpu/komeda-kms.rst
1335
1336 ARM MALI-DP DRM DRIVER
1337 M:      Liviu Dudau <liviu.dudau@arm.com>
1338 M:      Brian Starkey <brian.starkey@arm.com>
1339 L:      Mali DP Maintainers <malidp@foss.arm.com>
1340 S:      Supported
1341 T:      git git://anongit.freedesktop.org/drm/drm-misc
1342 F:      drivers/gpu/drm/arm/
1343 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1344 F:      Documentation/gpu/afbc.rst
1345
1346 ARM MALI PANFROST DRM DRIVER
1347 M:      Rob Herring <robh@kernel.org>
1348 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1349 R:      Steven Price <steven.price@arm.com>
1350 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1351 L:      dri-devel@lists.freedesktop.org
1352 S:      Supported
1353 T:      git git://anongit.freedesktop.org/drm/drm-misc
1354 F:      drivers/gpu/drm/panfrost/
1355 F:      include/uapi/drm/panfrost_drm.h
1356
1357 ARM MFM AND FLOPPY DRIVERS
1358 M:      Ian Molton <spyro@f2s.com>
1359 S:      Maintained
1360 F:      arch/arm/mach-rpc/floppydma.S
1361 F:      arch/arm/include/asm/floppy.h
1362
1363 ARM PMU PROFILING AND DEBUGGING
1364 M:      Will Deacon <will@kernel.org>
1365 M:      Mark Rutland <mark.rutland@arm.com>
1366 S:      Maintained
1367 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1368 F:      arch/arm*/kernel/perf_*
1369 F:      arch/arm/oprofile/common.c
1370 F:      arch/arm*/kernel/hw_breakpoint.c
1371 F:      arch/arm*/include/asm/hw_breakpoint.h
1372 F:      arch/arm*/include/asm/perf_event.h
1373 F:      drivers/perf/*
1374 F:      include/linux/perf/arm_pmu.h
1375 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1376 F:      Documentation/devicetree/bindings/perf/
1377
1378 ARM PORT
1379 M:      Russell King <linux@armlinux.org.uk>
1380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1381 W:      http://www.armlinux.org.uk/
1382 S:      Odd Fixes
1383 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1384 F:      arch/arm/
1385 X:      arch/arm/boot/dts/
1386
1387 ARM PRIMECELL AACI PL041 DRIVER
1388 M:      Russell King <linux@armlinux.org.uk>
1389 S:      Odd Fixes
1390 F:      sound/arm/aaci.*
1391
1392 ARM PRIMECELL BUS SUPPORT
1393 M:      Russell King <linux@armlinux.org.uk>
1394 S:      Odd Fixes
1395 F:      drivers/amba/
1396 F:      include/linux/amba/bus.h
1397
1398 ARM PRIMECELL CLCD PL110 DRIVER
1399 M:      Russell King <linux@armlinux.org.uk>
1400 S:      Odd Fixes
1401 F:      drivers/video/fbdev/amba-clcd.*
1402
1403 ARM PRIMECELL KMI PL050 DRIVER
1404 M:      Russell King <linux@armlinux.org.uk>
1405 S:      Odd Fixes
1406 F:      drivers/input/serio/ambakmi.*
1407 F:      include/linux/amba/kmi.h
1408
1409 ARM PRIMECELL MMCI PL180/1 DRIVER
1410 M:      Russell King <linux@armlinux.org.uk>
1411 S:      Odd Fixes
1412 F:      drivers/mmc/host/mmci.*
1413 F:      include/linux/amba/mmci.h
1414
1415 ARM PRIMECELL SSP PL022 SPI DRIVER
1416 M:      Linus Walleij <linus.walleij@linaro.org>
1417 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1418 S:      Maintained
1419 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1420 F:      drivers/spi/spi-pl022.c
1421
1422 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1423 M:      Russell King <linux@armlinux.org.uk>
1424 S:      Odd Fixes
1425 F:      drivers/tty/serial/amba-pl01*.c
1426 F:      include/linux/amba/serial.h
1427
1428 ARM PRIMECELL VIC PL190/PL192 DRIVER
1429 M:      Linus Walleij <linus.walleij@linaro.org>
1430 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1431 S:      Maintained
1432 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1433 F:      drivers/irqchip/irq-vic.c
1434
1435 AMAZON ANNAPURNA LABS FIC DRIVER
1436 M:      Talel Shenhar <talel@amazon.com>
1437 S:      Maintained
1438 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
1439 F:      drivers/irqchip/irq-al-fic.c
1440
1441 ARM SMMU DRIVERS
1442 M:      Will Deacon <will@kernel.org>
1443 R:      Robin Murphy <robin.murphy@arm.com>
1444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1445 S:      Maintained
1446 F:      drivers/iommu/arm-smmu*
1447 F:      drivers/iommu/io-pgtable-arm.c
1448 F:      drivers/iommu/io-pgtable-arm-v7s.c
1449
1450 ARM SUB-ARCHITECTURES
1451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1452 S:      Maintained
1453 F:      arch/arm/mach-*/
1454 F:      arch/arm/plat-*/
1455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1456
1457 ARM/ACTIONS SEMI ARCHITECTURE
1458 M:      Andreas Färber <afaerber@suse.de>
1459 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1461 S:      Maintained
1462 N:      owl
1463 F:      arch/arm/mach-actions/
1464 F:      arch/arm/boot/dts/owl-*
1465 F:      arch/arm64/boot/dts/actions/
1466 F:      drivers/clk/actions/
1467 F:      drivers/clocksource/timer-owl*
1468 F:      drivers/dma/owl-dma.c
1469 F:      drivers/i2c/busses/i2c-owl.c
1470 F:      drivers/mmc/host/owl-mmc.c
1471 F:      drivers/pinctrl/actions/*
1472 F:      drivers/soc/actions/
1473 F:      include/dt-bindings/power/owl-*
1474 F:      include/linux/soc/actions/
1475 F:      Documentation/devicetree/bindings/arm/actions.yaml
1476 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1477 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1478 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1479 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1480 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1481 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1482 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1483
1484 ARM/ADS SPHERE MACHINE SUPPORT
1485 M:      Lennert Buytenhek <kernel@wantstofly.org>
1486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1487 S:      Maintained
1488
1489 ARM/AFEB9260 MACHINE SUPPORT
1490 M:      Sergey Lapin <slapin@ossfans.org>
1491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1492 S:      Maintained
1493
1494 ARM/AJECO 1ARM MACHINE SUPPORT
1495 M:      Lennert Buytenhek <kernel@wantstofly.org>
1496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497 S:      Maintained
1498
1499 ARM/Allwinner SoC Clock Support
1500 M:      Emilio López <emilio@elopez.com.ar>
1501 S:      Maintained
1502 F:      drivers/clk/sunxi/
1503
1504 ARM/Allwinner sunXi SoC support
1505 M:      Maxime Ripard <mripard@kernel.org>
1506 M:      Chen-Yu Tsai <wens@csie.org>
1507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1508 S:      Maintained
1509 N:      sun[x456789]i
1510 N:      sun50i
1511 F:      arch/arm/mach-sunxi/
1512 F:      arch/arm64/boot/dts/allwinner/
1513 F:      drivers/clk/sunxi-ng/
1514 F:      drivers/pinctrl/sunxi/
1515 F:      drivers/soc/sunxi/
1516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1517
1518 Allwinner A10 CSI driver
1519 M:      Maxime Ripard <mripard@kernel.org>
1520 L:      linux-media@vger.kernel.org
1521 T:      git git://linuxtv.org/media_tree.git
1522 F:      drivers/media/platform/sunxi/sun4i-csi/
1523 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
1524 S:      Maintained
1525
1526 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1527 M:      Neil Armstrong <narmstrong@baylibre.com>
1528 M:      Jerome Brunet <jbrunet@baylibre.com>
1529 L:      linux-amlogic@lists.infradead.org
1530 S:      Maintained
1531 F:      drivers/clk/meson/
1532 F:      include/dt-bindings/clock/meson*
1533 F:      include/dt-bindings/clock/gxbb*
1534 F:      Documentation/devicetree/bindings/clock/amlogic*
1535
1536 ARM/Amlogic Meson SoC support
1537 M:      Kevin Hilman <khilman@baylibre.com>
1538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1539 L:      linux-amlogic@lists.infradead.org
1540 W:      http://linux-meson.com/
1541 S:      Maintained
1542 F:      arch/arm/mach-meson/
1543 F:      arch/arm/boot/dts/meson*
1544 F:      arch/arm64/boot/dts/amlogic/
1545 F:      drivers/pinctrl/meson/
1546 F:      drivers/mmc/host/meson*
1547 F:      drivers/soc/amlogic/
1548 F:      drivers/rtc/rtc-meson*
1549 N:      meson
1550
1551 ARM/Amlogic Meson SoC Crypto Drivers
1552 M:      Corentin Labbe <clabbe@baylibre.com>
1553 L:      linux-crypto@vger.kernel.org
1554 L:      linux-amlogic@lists.infradead.org
1555 S:      Maintained
1556 F:      drivers/crypto/amlogic/
1557 F:      Documentation/devicetree/bindings/crypto/amlogic*
1558
1559 ARM/Amlogic Meson SoC Sound Drivers
1560 M:      Jerome Brunet <jbrunet@baylibre.com>
1561 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1562 S:      Maintained
1563 F:      sound/soc/meson/
1564 F:      Documentation/devicetree/bindings/sound/amlogic*
1565
1566 ARM/Annapurna Labs ALPINE ARCHITECTURE
1567 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1568 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1569 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1570 S:      Maintained
1571 F:      arch/arm/mach-alpine/
1572 F:      arch/arm/boot/dts/alpine*
1573 F:      arch/arm64/boot/dts/al/
1574 F:      drivers/*/*alpine*
1575
1576 ARM/ARTPEC MACHINE SUPPORT
1577 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1578 M:      Lars Persson <lars.persson@axis.com>
1579 S:      Maintained
1580 L:      linux-arm-kernel@axis.com
1581 F:      arch/arm/mach-artpec
1582 F:      arch/arm/boot/dts/artpec6*
1583 F:      drivers/clk/axis
1584 F:      drivers/crypto/axis
1585 F:      drivers/mmc/host/usdhi6rol0.c
1586 F:      drivers/pinctrl/pinctrl-artpec*
1587 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1588
1589 ARM/ASPEED I2C DRIVER
1590 M:      Brendan Higgins <brendanhiggins@google.com>
1591 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1592 R:      Joel Stanley <joel@jms.id.au>
1593 L:      linux-i2c@vger.kernel.org
1594 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1595 S:      Maintained
1596 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1597 F:      drivers/i2c/busses/i2c-aspeed.c
1598 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1599 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1600
1601 ARM/ASPEED MACHINE SUPPORT
1602 M:      Joel Stanley <joel@jms.id.au>
1603 R:      Andrew Jeffery <andrew@aj.id.au>
1604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1605 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1606 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1607 S:      Supported
1608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1609 F:      arch/arm/mach-aspeed/
1610 F:      arch/arm/boot/dts/aspeed-*
1611 N:      aspeed
1612
1613 ARM/BITMAIN ARCHITECTURE
1614 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1616 S:      Maintained
1617 F:      arch/arm64/boot/dts/bitmain/
1618 F:      drivers/clk/clk-bm1880.c
1619 F:      drivers/pinctrl/pinctrl-bm1880.c
1620 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1621 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1622 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1623
1624 ARM/CALXEDA HIGHBANK ARCHITECTURE
1625 M:      Andre Przywara <andre.przywara@arm.com>
1626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1627 S:      Maintained
1628 F:      arch/arm/mach-highbank/
1629 F:      arch/arm/boot/dts/highbank.dts
1630 F:      arch/arm/boot/dts/ecx-*.dts*
1631
1632 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1633 M:      Krzysztof Halasa <khalasa@piap.pl>
1634 S:      Maintained
1635 F:      arch/arm/mach-cns3xxx/
1636
1637 ARM/CAVIUM THUNDER NETWORK DRIVER
1638 M:      Sunil Goutham <sgoutham@marvell.com>
1639 M:      Robert Richter <rrichter@marvell.com>
1640 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1641 S:      Supported
1642 F:      drivers/net/ethernet/cavium/thunder/
1643
1644 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1645 M:      Lukasz Majewski <lukma@denx.de>
1646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1647 S:      Maintained
1648 F:      arch/arm/mach-ep93xx/ts72xx.c
1649
1650 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1651 M:      Alexander Shiyan <shc_work@mail.ru>
1652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1653 S:      Odd Fixes
1654 N:      clps711x
1655
1656 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1657 M:      Lennert Buytenhek <kernel@wantstofly.org>
1658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1659 S:      Maintained
1660
1661 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1662 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1663 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665 S:      Maintained
1666 F:      arch/arm/mach-ep93xx/
1667 F:      arch/arm/mach-ep93xx/include/mach/
1668
1669 ARM/CLKDEV SUPPORT
1670 M:      Russell King <linux@armlinux.org.uk>
1671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1672 S:      Maintained
1673 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1674 F:      drivers/clk/clkdev.c
1675
1676 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1677 M:      Mike Rapoport <mike@compulab.co.il>
1678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1679 S:      Maintained
1680
1681 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1682 M:      Baruch Siach <baruch@tkos.co.il>
1683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1684 S:      Maintained
1685 F:      arch/arm/boot/dts/cx92755*
1686 N:      digicolor
1687
1688 ARM/CONTEC MICRO9 MACHINE SUPPORT
1689 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1690 S:      Maintained
1691 F:      arch/arm/mach-ep93xx/micro9.c
1692
1693 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1694 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1695 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1696 R:      Mike Leach <mike.leach@linaro.org>
1697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1698 S:      Maintained
1699 F:      drivers/hwtracing/coresight/*
1700 F:      include/dt-bindings/arm/coresight-cti-dt.h
1701 F:      Documentation/trace/coresight/*
1702 F:      Documentation/devicetree/bindings/arm/coresight.txt
1703 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1704 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1705 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1706 F:      tools/perf/arch/arm/util/pmu.c
1707 F:      tools/perf/arch/arm/util/auxtrace.c
1708 F:      tools/perf/arch/arm/util/cs-etm.c
1709 F:      tools/perf/arch/arm/util/cs-etm.h
1710 F:      tools/perf/util/cs-etm.*
1711 F:      tools/perf/util/cs-etm-decoder/*
1712
1713 ARM/CORGI MACHINE SUPPORT
1714 M:      Richard Purdie <rpurdie@rpsys.net>
1715 S:      Maintained
1716
1717 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1718 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1719 M:      Linus Walleij <linus.walleij@linaro.org>
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 T:      git git://github.com/ulli-kroll/linux.git
1722 S:      Maintained
1723 F:      Documentation/devicetree/bindings/arm/gemini.txt
1724 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1725 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1726 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1727 F:      arch/arm/mach-gemini/
1728 F:      drivers/net/ethernet/cortina/
1729 F:      drivers/pinctrl/pinctrl-gemini.c
1730 F:      drivers/rtc/rtc-ftrtc010.c
1731
1732 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1733 M:      Barry Song <baohua@kernel.org>
1734 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1736 S:      Maintained
1737 F:      arch/arm/boot/dts/prima2*
1738 F:      arch/arm/mach-prima2/
1739 F:      drivers/clk/sirf/
1740 F:      drivers/clocksource/timer-prima2.c
1741 F:      drivers/clocksource/timer-atlas7.c
1742 N:      [^a-z]sirf
1743 X:      drivers/gnss
1744
1745 ARM/CZ.NIC TURRIS MOX SUPPORT
1746 M:      Marek Behun <marek.behun@nic.cz>
1747 W:      http://mox.turris.cz
1748 S:      Maintained
1749 F:      Documentation/ABI/testing/debugfs-moxtet
1750 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1751 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1752 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1753 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1754 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1755 F:      include/linux/moxtet.h
1756 F:      drivers/bus/moxtet.c
1757 F:      drivers/firmware/turris-mox-rwtm.c
1758 F:      drivers/gpio/gpio-moxtet.c
1759
1760 ARM/EBSA110 MACHINE SUPPORT
1761 M:      Russell King <linux@armlinux.org.uk>
1762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763 W:      http://www.armlinux.org.uk/
1764 S:      Maintained
1765 F:      arch/arm/mach-ebsa110/
1766 F:      drivers/net/ethernet/amd/am79c961a.*
1767
1768 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1769 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1770 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1771 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1772 S:      Maintained
1773 N:      efm32
1774
1775 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1776 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1777 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1778 S:      Maintained
1779 F:      arch/arm/mach-pxa/ezx.c
1780
1781 ARM/FARADAY FA526 PORT
1782 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1783 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1784 S:      Maintained
1785 T:      git git://git.berlios.de/gemini-board
1786 F:      arch/arm/mm/*-fa*
1787
1788 ARM/FOOTBRIDGE ARCHITECTURE
1789 M:      Russell King <linux@armlinux.org.uk>
1790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1791 W:      http://www.armlinux.org.uk/
1792 S:      Maintained
1793 F:      arch/arm/include/asm/hardware/dec21285.h
1794 F:      arch/arm/mach-footbridge/
1795
1796 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1797 M:      Shawn Guo <shawnguo@kernel.org>
1798 M:      Sascha Hauer <s.hauer@pengutronix.de>
1799 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1800 R:      Fabio Estevam <festevam@gmail.com>
1801 R:      NXP Linux Team <linux-imx@nxp.com>
1802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1803 S:      Maintained
1804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1805 N:      imx
1806 N:      mxs
1807 X:      drivers/media/i2c/
1808
1809 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1810 M:      Shawn Guo <shawnguo@kernel.org>
1811 M:      Sascha Hauer <s.hauer@pengutronix.de>
1812 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1813 R:      Stefan Agner <stefan@agner.ch>
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 S:      Maintained
1816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1817 F:      arch/arm/mach-imx/*vf610*
1818 F:      arch/arm/boot/dts/vf*
1819
1820 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1821 M:      Shawn Guo <shawnguo@kernel.org>
1822 M:      Li Yang <leoyang.li@nxp.com>
1823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1824 S:      Maintained
1825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1826 F:      arch/arm/boot/dts/ls1021a*
1827 F:      arch/arm64/boot/dts/freescale/fsl-*
1828 F:      arch/arm64/boot/dts/freescale/qoriq-*
1829
1830 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1831 M:      Lennert Buytenhek <kernel@wantstofly.org>
1832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1833 S:      Maintained
1834
1835 ARM/GUMSTIX MACHINE SUPPORT
1836 M:      Steve Sakoman <sakoman@gmail.com>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 S:      Maintained
1839
1840 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1841 M:      Philipp Zabel <philipp.zabel@gmail.com>
1842 M:      Paul Parsons <lost.distance@yahoo.com>
1843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1844 S:      Maintained
1845 F:      arch/arm/mach-pxa/hx4700.c
1846 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1847 F:      sound/soc/pxa/hx4700.c
1848
1849 ARM/HISILICON SOC SUPPORT
1850 M:      Wei Xu <xuwei5@hisilicon.com>
1851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1852 W:      http://www.hisilicon.com
1853 S:      Supported
1854 T:      git git://github.com/hisilicon/linux-hisi.git
1855 F:      arch/arm/mach-hisi/
1856 F:      arch/arm/boot/dts/hi3*
1857 F:      arch/arm/boot/dts/hip*
1858 F:      arch/arm/boot/dts/hisi*
1859 F:      arch/arm64/boot/dts/hisilicon/
1860
1861 ARM/HP JORNADA 7XX MACHINE SUPPORT
1862 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1863 W:      www.jlime.com
1864 S:      Maintained
1865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1866 F:      arch/arm/mach-sa1100/jornada720.c
1867 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1868
1869 ARM/IGEP MACHINE SUPPORT
1870 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1871 M:      Javier Martinez Canillas <javier@dowhile0.org>
1872 L:      linux-omap@vger.kernel.org
1873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1874 S:      Maintained
1875 F:      arch/arm/boot/dts/omap3-igep*
1876
1877 ARM/INCOME PXA270 SUPPORT
1878 M:      Marek Vasut <marek.vasut@gmail.com>
1879 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1880 S:      Maintained
1881 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1882
1883 ARM/INTEL IOP32X ARM ARCHITECTURE
1884 M:      Lennert Buytenhek <kernel@wantstofly.org>
1885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 S:      Maintained
1887
1888 ARM/INTEL IQ81342EX MACHINE SUPPORT
1889 M:      Lennert Buytenhek <kernel@wantstofly.org>
1890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1891 S:      Maintained
1892
1893 ARM/INTEL IXDP2850 MACHINE SUPPORT
1894 M:      Lennert Buytenhek <kernel@wantstofly.org>
1895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1896 S:      Maintained
1897
1898 ARM/INTEL IXP4XX ARM ARCHITECTURE
1899 M:      Linus Walleij <linusw@kernel.org>
1900 M:      Imre Kaloz <kaloz@openwrt.org>
1901 M:      Krzysztof Halasa <khalasa@piap.pl>
1902 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1903 S:      Maintained
1904 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1905 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1906 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1907 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1908 F:      arch/arm/mach-ixp4xx/
1909 F:      drivers/clocksource/timer-ixp4xx.c
1910 F:      drivers/gpio/gpio-ixp4xx.c
1911 F:      drivers/irqchip/irq-ixp4xx.c
1912 F:      include/linux/irqchip/irq-ixp4xx.h
1913 F:      include/linux/platform_data/timer-ixp4xx.h
1914
1915 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1916 M:      Jonathan Cameron <jic23@cam.ac.uk>
1917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1918 S:      Maintained
1919 F:      arch/arm/mach-pxa/stargate2.c
1920 F:      drivers/pcmcia/pxa2xx_stargate2.c
1921
1922 ARM/INTEL XSC3 (MANZANO) ARM CORE
1923 M:      Lennert Buytenhek <kernel@wantstofly.org>
1924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1925 S:      Maintained
1926
1927 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1928 M:      Lennert Buytenhek <kernel@wantstofly.org>
1929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1930 S:      Maintained
1931
1932 ARM/LG1K ARCHITECTURE
1933 M:      Chanho Min <chanho.min@lge.com>
1934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935 S:      Maintained
1936 F:      arch/arm64/boot/dts/lg/
1937
1938 ARM/LOGICPD PXA270 MACHINE SUPPORT
1939 M:      Lennert Buytenhek <kernel@wantstofly.org>
1940 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1941 S:      Maintained
1942
1943 ARM/LPC18XX ARCHITECTURE
1944 M:      Vladimir Zapolskiy <vz@mleia.com>
1945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1946 S:      Maintained
1947 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1948 F:      arch/arm/boot/dts/lpc43*
1949 F:      drivers/i2c/busses/i2c-lpc2k.c
1950 F:      drivers/memory/pl172.c
1951 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1952 F:      drivers/rtc/rtc-lpc24xx.c
1953 N:      lpc18xx
1954
1955 ARM/LPC32XX SOC SUPPORT
1956 M:      Vladimir Zapolskiy <vz@mleia.com>
1957 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1960 S:      Maintained
1961 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1962 F:      arch/arm/boot/dts/lpc32*
1963 F:      arch/arm/mach-lpc32xx/
1964 F:      drivers/i2c/busses/i2c-pnx.c
1965 F:      drivers/net/ethernet/nxp/lpc_eth.c
1966 F:      drivers/usb/host/ohci-nxp.c
1967 F:      drivers/watchdog/pnx4008_wdt.c
1968 N:      lpc32xx
1969
1970 ARM/MAGICIAN MACHINE SUPPORT
1971 M:      Philipp Zabel <philipp.zabel@gmail.com>
1972 S:      Maintained
1973
1974 ARM/Marvell Dove/MV78xx0/Orion SOC support
1975 M:      Jason Cooper <jason@lakedaemon.net>
1976 M:      Andrew Lunn <andrew@lunn.ch>
1977 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1978 M:      Gregory Clement <gregory.clement@bootlin.com>
1979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1980 S:      Maintained
1981 F:      Documentation/devicetree/bindings/soc/dove/
1982 F:      arch/arm/mach-dove/
1983 F:      arch/arm/mach-mv78xx0/
1984 F:      arch/arm/mach-orion5x/
1985 F:      arch/arm/plat-orion/
1986 F:      arch/arm/boot/dts/dove*
1987 F:      arch/arm/boot/dts/orion5x*
1988 T:      git git://git.infradead.org/linux-mvebu.git
1989
1990 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
1991 M:      Jason Cooper <jason@lakedaemon.net>
1992 M:      Andrew Lunn <andrew@lunn.ch>
1993 M:      Gregory Clement <gregory.clement@bootlin.com>
1994 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1996 S:      Maintained
1997 F:      arch/arm/boot/dts/armada*
1998 F:      arch/arm/boot/dts/kirkwood*
1999 F:      arch/arm/configs/mvebu_*_defconfig
2000 F:      arch/arm/mach-mvebu/
2001 F:      arch/arm64/boot/dts/marvell/armada*
2002 F:      arch/arm64/boot/dts/marvell/cn913*
2003 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2004 F:      drivers/cpufreq/armada-8k-cpufreq.c
2005 F:      drivers/cpufreq/mvebu-cpufreq.c
2006 F:      drivers/irqchip/irq-armada-370-xp.c
2007 F:      drivers/irqchip/irq-mvebu-*
2008 F:      drivers/pinctrl/mvebu/
2009 F:      drivers/rtc/rtc-armada38x.c
2010 T:      git git://git.infradead.org/linux-mvebu.git
2011
2012 ARM/Mediatek RTC DRIVER
2013 M:      Eddie Huang <eddie.huang@mediatek.com>
2014 M:      Sean Wang <sean.wang@mediatek.com>
2015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2016 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2017 S:      Maintained
2018 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2019 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2020 F:      drivers/rtc/rtc-mt2712.c
2021 F:      drivers/rtc/rtc-mt6397.c
2022 F:      drivers/rtc/rtc-mt7622.c
2023
2024 ARM/Mediatek SoC support
2025 M:      Matthias Brugger <matthias.bgg@gmail.com>
2026 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2027 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2028 W:      https://mtk.bcnfs.org/
2029 C:      irc://chat.freenode.net/linux-mediatek
2030 S:      Maintained
2031 F:      arch/arm/boot/dts/mt6*
2032 F:      arch/arm/boot/dts/mt7*
2033 F:      arch/arm/boot/dts/mt8*
2034 F:      arch/arm/mach-mediatek/
2035 F:      arch/arm64/boot/dts/mediatek/
2036 F:      drivers/soc/mediatek/
2037 N:      mtk
2038 N:      mt[678]
2039 K:      mediatek
2040
2041 ARM/Mediatek USB3 PHY DRIVER
2042 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2044 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2045 S:      Maintained
2046 F:      drivers/phy/mediatek/
2047 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2048
2049 ARM/Microchip (AT91) SoC support
2050 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2051 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2052 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054 W:      http://www.linux4sam.org
2055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2056 S:      Supported
2057 N:      at91
2058 N:      atmel
2059 F:      arch/arm/mach-at91/
2060 F:      include/soc/at91/
2061 F:      arch/arm/boot/dts/at91*.dts
2062 F:      arch/arm/boot/dts/at91*.dtsi
2063 F:      arch/arm/boot/dts/sama*.dts
2064 F:      arch/arm/boot/dts/sama*.dtsi
2065 F:      arch/arm/include/debug/at91.S
2066 F:      drivers/memory/atmel*
2067 F:      drivers/watchdog/sama5d4_wdt.c
2068 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2069 X:      drivers/net/wireless/atmel/
2070
2071 ARM/MIOA701 MACHINE SUPPORT
2072 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2074 F:      arch/arm/mach-pxa/mioa701.c
2075 S:      Maintained
2076
2077 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2078 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2079 S:      Maintained
2080
2081 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2082 M:      Linus Walleij <linus.walleij@linaro.org>
2083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2084 S:      Maintained
2085 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2086 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2087 F:      arch/arm/mach-nomadik/
2088 F:      arch/arm/mach-u300/
2089 F:      arch/arm/mach-ux500/
2090 F:      drivers/soc/ux500/
2091 F:      arch/arm/boot/dts/ste-*
2092 F:      drivers/clk/clk-nomadik.c
2093 F:      drivers/clk/clk-u300.c
2094 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2095 F:      drivers/clocksource/timer-u300.c
2096 F:      drivers/dma/coh901318*
2097 F:      drivers/dma/ste_dma40*
2098 F:      drivers/hwspinlock/u8500_hsem.c
2099 F:      drivers/i2c/busses/i2c-nomadik.c
2100 F:      drivers/i2c/busses/i2c-stu300.c
2101 F:      drivers/iio/adc/ab8500-gpadc.c
2102 F:      drivers/mfd/ab3100*
2103 F:      drivers/mfd/ab8500*
2104 F:      drivers/mfd/abx500*
2105 F:      drivers/mfd/dbx500*
2106 F:      drivers/mfd/db8500*
2107 F:      drivers/pinctrl/nomadik/
2108 F:      drivers/pinctrl/pinctrl-coh901*
2109 F:      drivers/pinctrl/pinctrl-u300.c
2110 F:      drivers/rtc/rtc-ab3100.c
2111 F:      drivers/rtc/rtc-ab8500.c
2112 F:      drivers/rtc/rtc-coh901331.c
2113 F:      drivers/rtc/rtc-pl031.c
2114 F:      drivers/watchdog/coh901327_wdt.c
2115 F:      Documentation/devicetree/bindings/arm/ste-*
2116 F:      Documentation/devicetree/bindings/arm/ux500/
2117 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2119
2120 ARM/NUVOTON NPCM ARCHITECTURE
2121 M:      Avi Fishman <avifishman70@gmail.com>
2122 M:      Tomer Maimon <tmaimon77@gmail.com>
2123 M:      Tali Perry <tali.perry1@gmail.com>
2124 R:      Patrick Venture <venture@google.com>
2125 R:      Nancy Yuen <yuenn@google.com>
2126 R:      Benjamin Fair <benjaminfair@google.com>
2127 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2128 S:      Supported
2129 F:      arch/arm/mach-npcm/
2130 F:      arch/arm/boot/dts/nuvoton-npcm*
2131 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2132 F:      drivers/*/*npcm*
2133 F:      Documentation/devicetree/bindings/*/*npcm*
2134 F:      Documentation/devicetree/bindings/*/*/*npcm*
2135
2136 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2137 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2138 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2139 S:      Orphan
2140 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2141 F:      arch/arm/mach-s3c24xx/gta02.h
2142
2143 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2144 M:      Alexander Clouter <alex@digriz.org.uk>
2145 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2146 W:      http://www.digriz.org.uk/ts78xx/kernel
2147 S:      Maintained
2148 F:      arch/arm/mach-orion5x/ts78xx-*
2149
2150 ARM/OXNAS platform support
2151 M:      Neil Armstrong <narmstrong@baylibre.com>
2152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2153 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2154 S:      Maintained
2155 F:      arch/arm/mach-oxnas/
2156 F:      arch/arm/boot/dts/ox8*.dts*
2157 N:      oxnas
2158
2159 ARM/PALM TREO SUPPORT
2160 M:      Tomas Cech <sleep_walker@suse.com>
2161 L:      linux-arm-kernel@lists.infradead.org
2162 W:      http://hackndev.com
2163 S:      Maintained
2164 F:      arch/arm/mach-pxa/palmtreo.*
2165
2166 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2167 M:      Marek Vasut <marek.vasut@gmail.com>
2168 L:      linux-arm-kernel@lists.infradead.org
2169 W:      http://hackndev.com
2170 S:      Maintained
2171 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2172 F:      arch/arm/mach-pxa/palmtx.c
2173 F:      arch/arm/mach-pxa/palmt5.*
2174 F:      arch/arm/mach-pxa/include/mach/palmld.h
2175 F:      arch/arm/mach-pxa/palmld.c
2176 F:      arch/arm/mach-pxa/palmte2.*
2177 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2178 F:      arch/arm/mach-pxa/palmtc.c
2179
2180 ARM/PALMZ72 SUPPORT
2181 M:      Sergey Lapin <slapin@ossfans.org>
2182 L:      linux-arm-kernel@lists.infradead.org
2183 W:      http://hackndev.com
2184 S:      Maintained
2185 F:      arch/arm/mach-pxa/palmz72.*
2186
2187 ARM/PLEB SUPPORT
2188 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2189 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2190 S:      Maintained
2191
2192 ARM/PT DIGITAL BOARD PORT
2193 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2195 W:      http://www.armlinux.org.uk/
2196 S:      Maintained
2197
2198 ARM/QUALCOMM SUPPORT
2199 M:      Andy Gross <agross@kernel.org>
2200 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2201 L:      linux-arm-msm@vger.kernel.org
2202 S:      Maintained
2203 F:      Documentation/devicetree/bindings/soc/qcom/
2204 F:      Documentation/devicetree/bindings/*/qcom*
2205 F:      arch/arm/boot/dts/qcom-*.dts
2206 F:      arch/arm/boot/dts/qcom-*.dtsi
2207 F:      arch/arm/mach-qcom/
2208 F:      arch/arm64/boot/dts/qcom/
2209 F:      drivers/*/qcom/
2210 F:      drivers/*/qcom*
2211 F:      drivers/*/*/qcom/
2212 F:      drivers/*/*/qcom*
2213 F:      drivers/*/pm8???-*
2214 F:      drivers/bluetooth/btqcomsmd.c
2215 F:      drivers/clocksource/timer-qcom.c
2216 F:      drivers/extcon/extcon-qcom*
2217 F:      drivers/iommu/msm*
2218 F:      drivers/i2c/busses/i2c-qup.c
2219 F:      drivers/i2c/busses/i2c-qcom-geni.c
2220 F:      drivers/mfd/ssbi.c
2221 F:      drivers/mmc/host/mmci_qcom*
2222 F:      drivers/mmc/host/sdhci-msm.c
2223 F:      drivers/pci/controller/dwc/pcie-qcom.c
2224 F:      drivers/phy/qualcomm/
2225 F:      drivers/power/*/msm*
2226 F:      drivers/reset/reset-qcom-*
2227 F:      drivers/scsi/ufs/ufs-qcom.*
2228 F:      drivers/spi/spi-qup.c
2229 F:      drivers/spi/spi-geni-qcom.c
2230 F:      drivers/spi/spi-qcom-qspi.c
2231 F:      drivers/tty/serial/msm_serial.c
2232 F:      drivers/usb/dwc3/dwc3-qcom.c
2233 F:      include/dt-bindings/*/qcom*
2234 F:      include/linux/*/qcom*
2235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2236
2237 ARM/RADISYS ENP2611 MACHINE SUPPORT
2238 M:      Lennert Buytenhek <kernel@wantstofly.org>
2239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2240 S:      Maintained
2241
2242 ARM/RDA MICRO ARCHITECTURE
2243 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2245 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2246 S:      Maintained
2247 F:      arch/arm/boot/dts/rda8810pl-*
2248 F:      drivers/clocksource/timer-rda.c
2249 F:      drivers/gpio/gpio-rda.c
2250 F:      drivers/irqchip/irq-rda-intc.c
2251 F:      drivers/tty/serial/rda-uart.c
2252 F:      Documentation/devicetree/bindings/arm/rda.yaml
2253 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2254 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2255 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2256 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2257
2258 ARM/REALTEK ARCHITECTURE
2259 M:      Andreas Färber <afaerber@suse.de>
2260 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2261 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2262 S:      Maintained
2263 F:      arch/arm64/boot/dts/realtek/
2264 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2265
2266 ARM/RENESAS ARM64 ARCHITECTURE
2267 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2268 M:      Magnus Damm <magnus.damm@gmail.com>
2269 L:      linux-renesas-soc@vger.kernel.org
2270 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2272 S:      Supported
2273 F:      arch/arm64/boot/dts/renesas/
2274 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2275 F:      drivers/soc/renesas/
2276 F:      include/linux/soc/renesas/
2277
2278 ARM/RISCPC ARCHITECTURE
2279 M:      Russell King <linux@armlinux.org.uk>
2280 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2281 W:      http://www.armlinux.org.uk/
2282 S:      Maintained
2283 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2284 F:      arch/arm/include/asm/hardware/ioc.h
2285 F:      arch/arm/include/asm/hardware/iomd.h
2286 F:      arch/arm/include/asm/hardware/memc.h
2287 F:      arch/arm/mach-rpc/
2288 F:      drivers/net/ethernet/8390/etherh.c
2289 F:      drivers/net/ethernet/i825xx/ether1*
2290 F:      drivers/net/ethernet/seeq/ether3*
2291 F:      drivers/scsi/arm/
2292
2293 ARM/Rockchip SoC support
2294 M:      Heiko Stuebner <heiko@sntech.de>
2295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2296 L:      linux-rockchip@lists.infradead.org
2297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2298 S:      Maintained
2299 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2300 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2301 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2302 F:      arch/arm/boot/dts/rk3*
2303 F:      arch/arm/boot/dts/rv1108*
2304 F:      arch/arm/mach-rockchip/
2305 F:      drivers/clk/rockchip/
2306 F:      drivers/i2c/busses/i2c-rk3x.c
2307 F:      drivers/*/*rockchip*
2308 F:      drivers/*/*/*rockchip*
2309 F:      sound/soc/rockchip/
2310 N:      rockchip
2311
2312 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2313 M:      Kukjin Kim <kgene@kernel.org>
2314 M:      Krzysztof Kozlowski <krzk@kernel.org>
2315 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2316 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2317 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2318 S:      Maintained
2319 F:      arch/arm/boot/dts/s3c*
2320 F:      arch/arm/boot/dts/s5p*
2321 F:      arch/arm/boot/dts/exynos*
2322 F:      arch/arm64/boot/dts/exynos/
2323 F:      arch/arm/plat-samsung/
2324 F:      arch/arm/mach-s3c24*/
2325 F:      arch/arm/mach-s3c64xx/
2326 F:      arch/arm/mach-s5p*/
2327 F:      arch/arm/mach-exynos*/
2328 F:      drivers/*/*s3c24*
2329 F:      drivers/*/*/*s3c24*
2330 F:      drivers/*/*s3c64xx*
2331 F:      drivers/*/*s5pv210*
2332 F:      drivers/memory/samsung/
2333 F:      drivers/soc/samsung/
2334 F:      drivers/tty/serial/samsung*
2335 F:      include/linux/soc/samsung/
2336 F:      Documentation/arm/samsung/
2337 F:      Documentation/devicetree/bindings/arm/samsung/
2338 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2339 N:      exynos
2340
2341 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2342 M:      Kyungmin Park <kyungmin.park@samsung.com>
2343 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2344 S:      Maintained
2345 F:      arch/arm/mach-s5pv210/
2346
2347 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2348 M:      Kyungmin Park <kyungmin.park@samsung.com>
2349 M:      Kamil Debski <kamil@wypas.org>
2350 M:      Andrzej Hajda <a.hajda@samsung.com>
2351 L:      linux-arm-kernel@lists.infradead.org
2352 L:      linux-media@vger.kernel.org
2353 S:      Maintained
2354 F:      drivers/media/platform/s5p-g2d/
2355
2356 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2357 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2358 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2359 L:      linux-media@vger.kernel.org
2360 S:      Maintained
2361 F:      drivers/media/platform/s5p-cec/
2362 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2363
2364 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2365 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2366 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2367 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2368 L:      linux-arm-kernel@lists.infradead.org
2369 L:      linux-media@vger.kernel.org
2370 S:      Maintained
2371 F:      drivers/media/platform/s5p-jpeg/
2372
2373 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2374 M:      Kyungmin Park <kyungmin.park@samsung.com>
2375 M:      Kamil Debski <kamil@wypas.org>
2376 M:      Jeongtae Park <jtp.park@samsung.com>
2377 M:      Andrzej Hajda <a.hajda@samsung.com>
2378 L:      linux-arm-kernel@lists.infradead.org
2379 L:      linux-media@vger.kernel.org
2380 S:      Maintained
2381 F:      drivers/media/platform/s5p-mfc/
2382
2383 ARM/SHMOBILE ARM ARCHITECTURE
2384 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2385 M:      Magnus Damm <magnus.damm@gmail.com>
2386 L:      linux-renesas-soc@vger.kernel.org
2387 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2389 S:      Supported
2390 F:      arch/arm/boot/dts/emev2*
2391 F:      arch/arm/boot/dts/gr-peach*
2392 F:      arch/arm/boot/dts/iwg20d-q7*
2393 F:      arch/arm/boot/dts/r7s*
2394 F:      arch/arm/boot/dts/r8a*
2395 F:      arch/arm/boot/dts/r9a*
2396 F:      arch/arm/boot/dts/sh*
2397 F:      arch/arm/configs/shmobile_defconfig
2398 F:      arch/arm/include/debug/renesas-scif.S
2399 F:      arch/arm/mach-shmobile/
2400 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2401 F:      drivers/soc/renesas/
2402 F:      include/linux/soc/renesas/
2403
2404 ARM/SOCFPGA ARCHITECTURE
2405 M:      Dinh Nguyen <dinguyen@kernel.org>
2406 S:      Maintained
2407 F:      arch/arm/mach-socfpga/
2408 F:      arch/arm/boot/dts/socfpga*
2409 F:      arch/arm/configs/socfpga_defconfig
2410 F:      arch/arm64/boot/dts/altera/
2411 F:      arch/arm64/boot/dts/intel/
2412 W:      http://www.rocketboards.org
2413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2414
2415 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2416 M:      Dinh Nguyen <dinguyen@kernel.org>
2417 S:      Maintained
2418 F:      drivers/clk/socfpga/
2419
2420 ARM/SOCFPGA EDAC SUPPORT
2421 M:      Thor Thayer <thor.thayer@linux.intel.com>
2422 S:      Maintained
2423 F:      drivers/edac/altera_edac.
2424
2425 ARM/SPREADTRUM SoC SUPPORT
2426 M:      Orson Zhai <orsonzhai@gmail.com>
2427 M:      Baolin Wang <baolin.wang7@gmail.com>
2428 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2429 S:      Maintained
2430 F:      arch/arm64/boot/dts/sprd
2431 N:      sprd
2432 N:      sc27xx
2433 N:      sc2731
2434
2435 ARM/STI ARCHITECTURE
2436 M:      Patrice Chotard <patrice.chotard@st.com>
2437 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2438 W:      http://www.stlinux.com
2439 S:      Maintained
2440 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2441 F:      arch/arm/mach-sti/
2442 F:      arch/arm/boot/dts/sti*
2443 F:      drivers/char/hw_random/st-rng.c
2444 F:      drivers/clocksource/arm_global_timer.c
2445 F:      drivers/clocksource/clksrc_st_lpc.c
2446 F:      drivers/cpufreq/sti-cpufreq.c
2447 F:      drivers/dma/st_fdma*
2448 F:      drivers/i2c/busses/i2c-st.c
2449 F:      drivers/media/rc/st_rc.c
2450 F:      drivers/media/platform/sti/c8sectpfe/
2451 F:      drivers/mmc/host/sdhci-st.c
2452 F:      drivers/phy/st/phy-miphy28lp.c
2453 F:      drivers/phy/st/phy-stih407-usb.c
2454 F:      drivers/pinctrl/pinctrl-st.c
2455 F:      drivers/remoteproc/st_remoteproc.c
2456 F:      drivers/remoteproc/st_slim_rproc.c
2457 F:      drivers/reset/sti/
2458 F:      drivers/rtc/rtc-st-lpc.c
2459 F:      drivers/tty/serial/st-asc.c
2460 F:      drivers/usb/dwc3/dwc3-st.c
2461 F:      drivers/usb/host/ehci-st.c
2462 F:      drivers/usb/host/ohci-st.c
2463 F:      drivers/watchdog/st_lpc_wdt.c
2464 F:      drivers/ata/ahci_st.c
2465 F:      include/linux/remoteproc/st_slim_rproc.h
2466
2467 ARM/STM32 ARCHITECTURE
2468 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2469 M:      Alexandre Torgue <alexandre.torgue@st.com>
2470 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2472 S:      Maintained
2473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2474 N:      stm32
2475 N:      stm
2476 F:      arch/arm/boot/dts/stm32*
2477 F:      arch/arm/mach-stm32/
2478 F:      drivers/clocksource/armv7m_systick.c
2479
2480 ARM/Synaptics SoC support
2481 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2482 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2484 S:      Maintained
2485 F:      arch/arm/mach-berlin/
2486 F:      arch/arm/boot/dts/berlin*
2487 F:      arch/arm64/boot/dts/synaptics/
2488
2489 ARM/TANGO ARCHITECTURE
2490 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2491 M:      Mans Rullgard <mans@mansr.com>
2492 L:      linux-arm-kernel@lists.infradead.org
2493 S:      Odd Fixes
2494 N:      tango
2495
2496 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2497 M:      Lennert Buytenhek <kernel@wantstofly.org>
2498 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2499 S:      Maintained
2500
2501 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2502 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2503 L:      linux-tegra@vger.kernel.org
2504 L:      linux-media@vger.kernel.org
2505 S:      Maintained
2506 F:      drivers/media/platform/tegra-cec/
2507 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2508
2509 ARM/TETON BGA MACHINE SUPPORT
2510 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2512 S:      Maintained
2513
2514 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2515 M:      Santosh Shilimkar <ssantosh@kernel.org>
2516 L:      linux-kernel@vger.kernel.org
2517 S:      Maintained
2518 F:      drivers/memory/*emif*
2519
2520 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2521 M:      Tero Kristo <t-kristo@ti.com>
2522 M:      Nishanth Menon <nm@ti.com>
2523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2524 S:      Supported
2525 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2526 F:      arch/arm64/boot/dts/ti/Makefile
2527 F:      arch/arm64/boot/dts/ti/k3-*
2528 F:      include/dt-bindings/pinctrl/k3.h
2529
2530 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2531 M:      Santosh Shilimkar <ssantosh@kernel.org>
2532 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2533 S:      Maintained
2534 F:      arch/arm/mach-keystone/
2535 F:      arch/arm/boot/dts/keystone-*
2536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2537
2538 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2539 M:      Santosh Shilimkar <ssantosh@kernel.org>
2540 L:      linux-kernel@vger.kernel.org
2541 S:      Maintained
2542 F:      drivers/clk/keystone/
2543
2544 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2545 M:      Santosh Shilimkar <ssantosh@kernel.org>
2546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2547 L:      linux-kernel@vger.kernel.org
2548 S:      Maintained
2549 F:      drivers/clocksource/timer-keystone.c
2550
2551 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2552 M:      Santosh Shilimkar <ssantosh@kernel.org>
2553 L:      linux-kernel@vger.kernel.org
2554 S:      Maintained
2555 F:      drivers/power/reset/keystone-reset.c
2556
2557 ARM/THECUS N2100 MACHINE SUPPORT
2558 M:      Lennert Buytenhek <kernel@wantstofly.org>
2559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2560 S:      Maintained
2561
2562 ARM/TOSA MACHINE SUPPORT
2563 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2564 M:      Dirk Opfer <dirk@opfer-online.de>
2565 S:      Maintained
2566
2567 ARM/UNIPHIER ARCHITECTURE
2568 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2569 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2571 S:      Maintained
2572 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2573 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2574 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2575 F:      arch/arm/boot/dts/uniphier*
2576 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2577 F:      arch/arm/mach-uniphier/
2578 F:      arch/arm/mm/cache-uniphier.c
2579 F:      arch/arm64/boot/dts/socionext/uniphier*
2580 F:      drivers/bus/uniphier-system-bus.c
2581 F:      drivers/clk/uniphier/
2582 F:      drivers/dma/uniphier-mdmac.c
2583 F:      drivers/gpio/gpio-uniphier.c
2584 F:      drivers/i2c/busses/i2c-uniphier*
2585 F:      drivers/irqchip/irq-uniphier-aidet.c
2586 F:      drivers/mmc/host/uniphier-sd.c
2587 F:      drivers/pinctrl/uniphier/
2588 F:      drivers/reset/reset-uniphier.c
2589 F:      drivers/tty/serial/8250/8250_uniphier.c
2590 N:      uniphier
2591
2592 Ux500 CLOCK DRIVERS
2593 M:      Ulf Hansson <ulf.hansson@linaro.org>
2594 L:      linux-clk@vger.kernel.org
2595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2596 S:      Maintained
2597 F:      drivers/clk/ux500/
2598
2599 ARM/VERSATILE EXPRESS PLATFORM
2600 M:      Liviu Dudau <liviu.dudau@arm.com>
2601 M:      Sudeep Holla <sudeep.holla@arm.com>
2602 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2604 S:      Maintained
2605 F:      arch/arm/boot/dts/vexpress*
2606 F:      arch/arm64/boot/dts/arm/
2607 F:      arch/arm/mach-vexpress/
2608 F:      */*/vexpress*
2609 F:      */*/*/vexpress*
2610 F:      drivers/clk/versatile/clk-vexpress-osc.c
2611 F:      drivers/clocksource/timer-versatile.c
2612 N:      mps2
2613
2614 ARM/VFP SUPPORT
2615 M:      Russell King <linux@armlinux.org.uk>
2616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2617 W:      http://www.armlinux.org.uk/
2618 S:      Maintained
2619 F:      arch/arm/vfp/
2620
2621 ARM/VOIPAC PXA270 SUPPORT
2622 M:      Marek Vasut <marek.vasut@gmail.com>
2623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2624 S:      Maintained
2625 F:      arch/arm/mach-pxa/vpac270.c
2626 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2627
2628 ARM/VT8500 ARM ARCHITECTURE
2629 M:      Tony Prisk <linux@prisktech.co.nz>
2630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2631 S:      Maintained
2632 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2633 F:      arch/arm/mach-vt8500/
2634 F:      drivers/clocksource/timer-vt8500.c
2635 F:      drivers/i2c/busses/i2c-wmt.c
2636 F:      drivers/mmc/host/wmt-sdmmc.c
2637 F:      drivers/pwm/pwm-vt8500.c
2638 F:      drivers/rtc/rtc-vt8500.c
2639 F:      drivers/tty/serial/vt8500_serial.c
2640 F:      drivers/usb/host/ehci-platform.c
2641 F:      drivers/usb/host/uhci-platform.c
2642 F:      drivers/video/fbdev/vt8500lcdfb.*
2643 F:      drivers/video/fbdev/wm8505fb*
2644 F:      drivers/video/fbdev/wmt_ge_rops.*
2645
2646 ARM/ZIPIT Z2 SUPPORT
2647 M:      Marek Vasut <marek.vasut@gmail.com>
2648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2649 S:      Maintained
2650 F:      arch/arm/mach-pxa/z2.c
2651 F:      arch/arm/mach-pxa/include/mach/z2.h
2652
2653 ARM/ZTE ARCHITECTURE
2654 M:      Jun Nie <jun.nie@linaro.org>
2655 M:      Shawn Guo <shawnguo@kernel.org>
2656 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2657 S:      Maintained
2658 F:      arch/arm/boot/dts/zx2967*
2659 F:      arch/arm/mach-zx/
2660 F:      arch/arm64/boot/dts/zte/
2661 F:      drivers/clk/zte/
2662 F:      drivers/dma/zx_dma.c
2663 F:      drivers/gpio/gpio-zx.c
2664 F:      drivers/i2c/busses/i2c-zx2967.c
2665 F:      drivers/mmc/host/dw_mmc-zx.*
2666 F:      drivers/pinctrl/zte/
2667 F:      drivers/soc/zte/
2668 F:      drivers/thermal/zx2967_thermal.c
2669 F:      drivers/watchdog/zx2967_wdt.c
2670 F:      Documentation/devicetree/bindings/arm/zte.yaml
2671 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2672 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2673 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2674 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2675 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2676 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2677 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2678 F:      Documentation/devicetree/bindings/soc/zte/
2679 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2680 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2681 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2682 F:      include/dt-bindings/clock/zx2967*.h
2683 F:      include/dt-bindings/soc/zte,*.h
2684 F:      sound/soc/codecs/zx_aud96p22.c
2685 F:      sound/soc/zte/
2686
2687 ARM/ZYNQ ARCHITECTURE
2688 M:      Michal Simek <michal.simek@xilinx.com>
2689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2690 W:      http://wiki.xilinx.com
2691 T:      git https://github.com/Xilinx/linux-xlnx.git
2692 S:      Supported
2693 F:      arch/arm/mach-zynq/
2694 F:      drivers/cpuidle/cpuidle-zynq.c
2695 F:      drivers/block/xsysace.c
2696 N:      zynq
2697 N:      xilinx
2698 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2699 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2700 F:      drivers/clocksource/timer-cadence-ttc.c
2701 F:      drivers/i2c/busses/i2c-cadence.c
2702 F:      drivers/mmc/host/sdhci-of-arasan.c
2703 F:      drivers/edac/synopsys_edac.c
2704 F:      drivers/i2c/busses/i2c-xiic.c
2705
2706 ARM64 PORT (AARCH64 ARCHITECTURE)
2707 M:      Catalin Marinas <catalin.marinas@arm.com>
2708 M:      Will Deacon <will@kernel.org>
2709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2711 S:      Maintained
2712 F:      arch/arm64/
2713 X:      arch/arm64/boot/dts/
2714 F:      Documentation/arm64/
2715 F:      tools/testing/selftests/arm64/
2716
2717 AS3645A LED FLASH CONTROLLER DRIVER
2718 M:      Sakari Ailus <sakari.ailus@iki.fi>
2719 L:      linux-leds@vger.kernel.org
2720 S:      Maintained
2721 F:      drivers/leds/leds-as3645a.c
2722
2723 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2724 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2725 L:      linux-media@vger.kernel.org
2726 T:      git git://linuxtv.org/media_tree.git
2727 S:      Maintained
2728 F:      drivers/media/i2c/ak7375.c
2729 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2730
2731 ASAHI KASEI AK8974 DRIVER
2732 M:      Linus Walleij <linus.walleij@linaro.org>
2733 L:      linux-iio@vger.kernel.org
2734 W:      http://www.akm.com/
2735 S:      Supported
2736 F:      drivers/iio/magnetometer/ak8974.c
2737
2738 ASC7621 HARDWARE MONITOR DRIVER
2739 M:      George Joseph <george.joseph@fairview5.com>
2740 L:      linux-hwmon@vger.kernel.org
2741 S:      Maintained
2742 F:      Documentation/hwmon/asc7621.rst
2743 F:      drivers/hwmon/asc7621.c
2744
2745 ASPEED PINCTRL DRIVERS
2746 M:      Andrew Jeffery <andrew@aj.id.au>
2747 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2748 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2749 L:      linux-gpio@vger.kernel.org
2750 S:      Maintained
2751 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2752 F:      drivers/pinctrl/aspeed/
2753
2754 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2755 M:      Eddie James <eajames@linux.ibm.com>
2756 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2757 S:      Maintained
2758 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2759 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2760 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2761
2762 ASPEED VIDEO ENGINE DRIVER
2763 M:      Eddie James <eajames@linux.ibm.com>
2764 L:      linux-media@vger.kernel.org
2765 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2766 S:      Maintained
2767 F:      drivers/media/platform/aspeed-video.c
2768 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2769
2770 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2771 M:      Corentin Chary <corentin.chary@gmail.com>
2772 L:      acpi4asus-user@lists.sourceforge.net
2773 L:      platform-driver-x86@vger.kernel.org
2774 S:      Maintained
2775 W:      http://acpi4asus.sf.net
2776 F:      drivers/platform/x86/asus*.c
2777 F:      drivers/platform/x86/eeepc*.c
2778
2779 ASUS WIRELESS RADIO CONTROL DRIVER
2780 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2781 L:      platform-driver-x86@vger.kernel.org
2782 S:      Maintained
2783 F:      drivers/platform/x86/asus-wireless.c
2784
2785 ASYMMETRIC KEYS
2786 M:      David Howells <dhowells@redhat.com>
2787 L:      keyrings@vger.kernel.org
2788 S:      Maintained
2789 F:      Documentation/crypto/asymmetric-keys.txt
2790 F:      include/linux/verification.h
2791 F:      include/crypto/public_key.h
2792 F:      include/crypto/pkcs7.h
2793 F:      crypto/asymmetric_keys/
2794
2795 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2796 R:      Dan Williams <dan.j.williams@intel.com>
2797 W:      http://sourceforge.net/projects/xscaleiop
2798 S:      Odd fixes
2799 F:      Documentation/crypto/async-tx-api.txt
2800 F:      crypto/async_tx/
2801 F:      drivers/dma/
2802 F:      include/linux/dmaengine.h
2803 F:      include/linux/async_tx.h
2804
2805 AT24 EEPROM DRIVER
2806 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2807 L:      linux-i2c@vger.kernel.org
2808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2809 S:      Maintained
2810 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2811 F:      drivers/misc/eeprom/at24.c
2812
2813 ATA OVER ETHERNET (AOE) DRIVER
2814 M:      "Justin Sanders" <justin@coraid.com>
2815 W:      http://www.openaoe.org/
2816 S:      Supported
2817 F:      Documentation/admin-guide/aoe/
2818 F:      drivers/block/aoe/
2819
2820 ATHEROS 71XX/9XXX GPIO DRIVER
2821 M:      Alban Bedel <albeu@free.fr>
2822 S:      Maintained
2823 W:      https://github.com/AlbanBedel/linux
2824 T:      git git://github.com/AlbanBedel/linux
2825 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2826 F:      drivers/gpio/gpio-ath79.c
2827
2828 ATHEROS 71XX/9XXX USB PHY DRIVER
2829 M:      Alban Bedel <albeu@free.fr>
2830 W:      https://github.com/AlbanBedel/linux
2831 T:      git git://github.com/AlbanBedel/linux
2832 S:      Maintained
2833 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2834 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2835
2836 ATHEROS ATH GENERIC UTILITIES
2837 M:      Kalle Valo <kvalo@codeaurora.org>
2838 L:      linux-wireless@vger.kernel.org
2839 S:      Supported
2840 F:      drivers/net/wireless/ath/*
2841
2842 ATHEROS ATH5K WIRELESS DRIVER
2843 M:      Jiri Slaby <jirislaby@gmail.com>
2844 M:      Nick Kossifidis <mickflemm@gmail.com>
2845 M:      Luis Chamberlain <mcgrof@kernel.org>
2846 L:      linux-wireless@vger.kernel.org
2847 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2848 S:      Maintained
2849 F:      drivers/net/wireless/ath/ath5k/
2850
2851 ATHEROS ATH6KL WIRELESS DRIVER
2852 M:      Kalle Valo <kvalo@codeaurora.org>
2853 L:      linux-wireless@vger.kernel.org
2854 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2856 S:      Supported
2857 F:      drivers/net/wireless/ath/ath6kl/
2858
2859 ATI_REMOTE2 DRIVER
2860 M:      Ville Syrjala <syrjala@sci.fi>
2861 S:      Maintained
2862 F:      drivers/input/misc/ati_remote2.c
2863
2864 ATK0110 HWMON DRIVER
2865 M:      Luca Tettamanti <kronos.it@gmail.com>
2866 L:      linux-hwmon@vger.kernel.org
2867 S:      Maintained
2868 F:      drivers/hwmon/asus_atk0110.c
2869
2870 ATLX ETHERNET DRIVERS
2871 M:      Jay Cliburn <jcliburn@gmail.com>
2872 M:      Chris Snook <chris.snook@gmail.com>
2873 L:      netdev@vger.kernel.org
2874 W:      http://sourceforge.net/projects/atl1
2875 W:      http://atl1.sourceforge.net
2876 S:      Maintained
2877 F:      drivers/net/ethernet/atheros/
2878
2879 ATM
2880 M:      Chas Williams <3chas3@gmail.com>
2881 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2882 L:      netdev@vger.kernel.org
2883 W:      http://linux-atm.sourceforge.net
2884 S:      Maintained
2885 F:      drivers/atm/
2886 F:      include/linux/atm*
2887 F:      include/uapi/linux/atm*
2888
2889 ATMEL MACB ETHERNET DRIVER
2890 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2891 S:      Supported
2892 F:      drivers/net/ethernet/cadence/
2893
2894 ATMEL MAXTOUCH DRIVER
2895 M:      Nick Dyer <nick@shmanahar.org>
2896 T:      git git://github.com/ndyer/linux.git
2897 S:      Maintained
2898 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2899 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2900
2901 ATMEL WIRELESS DRIVER
2902 M:      Simon Kelley <simon@thekelleys.org.uk>
2903 L:      linux-wireless@vger.kernel.org
2904 W:      http://www.thekelleys.org.uk/atmel
2905 W:      http://atmelwlandriver.sourceforge.net/
2906 S:      Maintained
2907 F:      drivers/net/wireless/atmel/atmel*
2908
2909 ATOMIC INFRASTRUCTURE
2910 M:      Will Deacon <will@kernel.org>
2911 M:      Peter Zijlstra <peterz@infradead.org>
2912 R:      Boqun Feng <boqun.feng@gmail.com>
2913 L:      linux-kernel@vger.kernel.org
2914 S:      Maintained
2915 F:      arch/*/include/asm/atomic*.h
2916 F:      include/*/atomic*.h
2917 F:      scripts/atomic/
2918
2919 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2920 M:      Bradley Grove <linuxdrivers@attotech.com>
2921 L:      linux-scsi@vger.kernel.org
2922 W:      http://www.attotech.com
2923 S:      Supported
2924 F:      drivers/scsi/esas2r
2925
2926 ATUSB IEEE 802.15.4 RADIO DRIVER
2927 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2928 L:      linux-wpan@vger.kernel.org
2929 S:      Maintained
2930 F:      drivers/net/ieee802154/atusb.c
2931 F:      drivers/net/ieee802154/atusb.h
2932 F:      drivers/net/ieee802154/at86rf230.h
2933
2934 AUDIT SUBSYSTEM
2935 M:      Paul Moore <paul@paul-moore.com>
2936 M:      Eric Paris <eparis@redhat.com>
2937 L:      linux-audit@redhat.com (moderated for non-subscribers)
2938 W:      https://github.com/linux-audit
2939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2940 S:      Supported
2941 F:      include/linux/audit.h
2942 F:      include/uapi/linux/audit.h
2943 F:      kernel/audit*
2944
2945 AUXILIARY DISPLAY DRIVERS
2946 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2947 S:      Maintained
2948 F:      drivers/auxdisplay/
2949 F:      include/linux/cfag12864b.h
2950
2951 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2952 M:      Andreas Klinger <ak@it-klinger.de>
2953 L:      linux-iio@vger.kernel.org
2954 S:      Maintained
2955 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2956 F:      drivers/iio/adc/hx711.c
2957
2958 AX.25 NETWORK LAYER
2959 M:      Ralf Baechle <ralf@linux-mips.org>
2960 L:      linux-hams@vger.kernel.org
2961 W:      http://www.linux-ax25.org/
2962 S:      Maintained
2963 F:      include/uapi/linux/ax25.h
2964 F:      include/net/ax25.h
2965 F:      net/ax25/
2966
2967 AXENTIA ARM DEVICES
2968 M:      Peter Rosin <peda@axentia.se>
2969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2970 S:      Maintained
2971 F:      arch/arm/boot/dts/at91-linea.dtsi
2972 F:      arch/arm/boot/dts/at91-natte.dtsi
2973 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2974 F:      arch/arm/boot/dts/at91-tse850-3.dts
2975
2976 AXENTIA ASOC DRIVERS
2977 M:      Peter Rosin <peda@axentia.se>
2978 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2979 S:      Maintained
2980 F:      Documentation/devicetree/bindings/sound/axentia,*
2981 F:      sound/soc/atmel/tse850-pcm5142.c
2982
2983 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
2984 M:      Nuno Sá <nuno.sa@analog.com>
2985 W:      http://ez.analog.com/community/linux-device-drivers
2986 L:      linux-hwmon@vger.kernel.org
2987 S:      Supported
2988 F:      drivers/hwmon/axi-fan-control.c
2989 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
2990
2991 AXXIA I2C CONTROLLER
2992 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
2993 L:      linux-i2c@vger.kernel.org
2994 S:      Maintained
2995 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2996 F:      drivers/i2c/busses/i2c-axxia.c
2997
2998 AZ6007 DVB DRIVER
2999 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3000 L:      linux-media@vger.kernel.org
3001 W:      https://linuxtv.org
3002 T:      git git://linuxtv.org/media_tree.git
3003 S:      Maintained
3004 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3005
3006 AZTECH FM RADIO RECEIVER DRIVER
3007 M:      Hans Verkuil <hverkuil@xs4all.nl>
3008 L:      linux-media@vger.kernel.org
3009 T:      git git://linuxtv.org/media_tree.git
3010 W:      https://linuxtv.org
3011 S:      Maintained
3012 F:      drivers/media/radio/radio-aztech*
3013
3014 B43 WIRELESS DRIVER
3015 L:      linux-wireless@vger.kernel.org
3016 L:      b43-dev@lists.infradead.org
3017 W:      http://wireless.kernel.org/en/users/Drivers/b43
3018 S:      Odd Fixes
3019 F:      drivers/net/wireless/broadcom/b43/
3020
3021 B43LEGACY WIRELESS DRIVER
3022 M:      Larry Finger <Larry.Finger@lwfinger.net>
3023 L:      linux-wireless@vger.kernel.org
3024 L:      b43-dev@lists.infradead.org
3025 W:      http://wireless.kernel.org/en/users/Drivers/b43
3026 S:      Maintained
3027 F:      drivers/net/wireless/broadcom/b43legacy/
3028
3029 BACKLIGHT CLASS/SUBSYSTEM
3030 M:      Lee Jones <lee.jones@linaro.org>
3031 M:      Daniel Thompson <daniel.thompson@linaro.org>
3032 M:      Jingoo Han <jingoohan1@gmail.com>
3033 L:      dri-devel@lists.freedesktop.org
3034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3035 S:      Maintained
3036 F:      drivers/video/backlight/
3037 F:      include/linux/backlight.h
3038 F:      include/linux/pwm_backlight.h
3039 F:      Documentation/devicetree/bindings/leds/backlight
3040 F:      Documentation/ABI/stable/sysfs-class-backlight
3041 F:      Documentation/ABI/testing/sysfs-class-backlight
3042
3043 BATMAN ADVANCED
3044 M:      Marek Lindner <mareklindner@neomailbox.ch>
3045 M:      Simon Wunderlich <sw@simonwunderlich.de>
3046 M:      Antonio Quartulli <a@unstable.cc>
3047 M:      Sven Eckelmann <sven@narfation.org>
3048 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3049 W:      https://www.open-mesh.org/
3050 B:      https://www.open-mesh.org/projects/batman-adv/issues
3051 C:      irc://chat.freenode.net/batman
3052 Q:      https://patchwork.open-mesh.org/project/batman/list/
3053 T:      git https://git.open-mesh.org/linux-merge.git
3054 S:      Maintained
3055 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3056 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3057 F:      Documentation/networking/batman-adv.rst
3058 F:      include/uapi/linux/batadv_packet.h
3059 F:      include/uapi/linux/batman_adv.h
3060 F:      net/batman-adv/
3061
3062 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3063 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3064 L:      linux-hams@vger.kernel.org
3065 W:      http://www.baycom.org/~tom/ham/ham.html
3066 S:      Maintained
3067 F:      drivers/net/hamradio/baycom*
3068
3069 BCACHE (BLOCK LAYER CACHE)
3070 M:      Coly Li <colyli@suse.de>
3071 M:      Kent Overstreet <kent.overstreet@gmail.com>
3072 L:      linux-bcache@vger.kernel.org
3073 W:      http://bcache.evilpiepirate.org
3074 C:      irc://irc.oftc.net/bcache
3075 S:      Maintained
3076 F:      drivers/md/bcache/
3077
3078 BDISP ST MEDIA DRIVER
3079 M:      Fabien Dessenne <fabien.dessenne@st.com>
3080 L:      linux-media@vger.kernel.org
3081 T:      git git://linuxtv.org/media_tree.git
3082 W:      https://linuxtv.org
3083 S:      Supported
3084 F:      drivers/media/platform/sti/bdisp
3085
3086 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3087 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3088 L:      netdev@vger.kernel.org
3089 S:      Maintained
3090 F:      drivers/net/ethernet/ec_bhf.c
3091
3092 BEFS FILE SYSTEM
3093 M:      Luis de Bethencourt <luisbg@kernel.org>
3094 M:      Salah Triki <salah.triki@gmail.com>
3095 S:      Maintained
3096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3097 F:      Documentation/filesystems/befs.rst
3098 F:      fs/befs/
3099
3100 BFQ I/O SCHEDULER
3101 M:      Paolo Valente <paolo.valente@linaro.org>
3102 M:      Jens Axboe <axboe@kernel.dk>
3103 L:      linux-block@vger.kernel.org
3104 S:      Maintained
3105 F:      block/bfq-*
3106 F:      Documentation/block/bfq-iosched.rst
3107
3108 BFS FILE SYSTEM
3109 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3110 S:      Maintained
3111 F:      Documentation/filesystems/bfs.rst
3112 F:      fs/bfs/
3113 F:      include/uapi/linux/bfs_fs.h
3114
3115 BLINKM RGB LED DRIVER
3116 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3117 S:      Maintained
3118 F:      drivers/leds/leds-blinkm.c
3119
3120 BLOCK LAYER
3121 M:      Jens Axboe <axboe@kernel.dk>
3122 L:      linux-block@vger.kernel.org
3123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3124 S:      Maintained
3125 F:      block/
3126 F:      drivers/block/
3127 F:      kernel/trace/blktrace.c
3128 F:      lib/sbitmap.c
3129
3130 BLOCK2MTD DRIVER
3131 M:      Joern Engel <joern@lazybastard.org>
3132 L:      linux-mtd@lists.infradead.org
3133 S:      Maintained
3134 F:      drivers/mtd/devices/block2mtd.c
3135
3136 BLUETOOTH DRIVERS
3137 M:      Marcel Holtmann <marcel@holtmann.org>
3138 M:      Johan Hedberg <johan.hedberg@gmail.com>
3139 L:      linux-bluetooth@vger.kernel.org
3140 W:      http://www.bluez.org/
3141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3143 S:      Maintained
3144 F:      drivers/bluetooth/
3145
3146 BLUETOOTH SUBSYSTEM
3147 M:      Marcel Holtmann <marcel@holtmann.org>
3148 M:      Johan Hedberg <johan.hedberg@gmail.com>
3149 L:      linux-bluetooth@vger.kernel.org
3150 W:      http://www.bluez.org/
3151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3153 S:      Maintained
3154 F:      net/bluetooth/
3155 F:      include/net/bluetooth/
3156
3157 BONDING DRIVER
3158 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3159 M:      Veaceslav Falico <vfalico@gmail.com>
3160 M:      Andy Gospodarek <andy@greyhouse.net>
3161 L:      netdev@vger.kernel.org
3162 W:      http://sourceforge.net/projects/bonding/
3163 S:      Supported
3164 F:      drivers/net/bonding/
3165 F:      include/uapi/linux/if_bonding.h
3166
3167 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3168 M:      Dan Robertson <dan@dlrobertson.com>
3169 L:      linux-iio@vger.kernel.org
3170 S:      Maintained
3171 F:      drivers/iio/accel/bma400*
3172 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3173
3174 BPF (Safe dynamic programs and tools)
3175 M:      Alexei Starovoitov <ast@kernel.org>
3176 M:      Daniel Borkmann <daniel@iogearbox.net>
3177 R:      Martin KaFai Lau <kafai@fb.com>
3178 R:      Song Liu <songliubraving@fb.com>
3179 R:      Yonghong Song <yhs@fb.com>
3180 R:      Andrii Nakryiko <andriin@fb.com>
3181 R:      John Fastabend <john.fastabend@gmail.com>
3182 R:      KP Singh <kpsingh@chromium.org>
3183 L:      netdev@vger.kernel.org
3184 L:      bpf@vger.kernel.org
3185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3187 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3188 S:      Supported
3189 F:      arch/*/net/*
3190 F:      Documentation/networking/filter.txt
3191 F:      Documentation/bpf/
3192 F:      include/linux/bpf*
3193 F:      include/linux/filter.h
3194 F:      include/trace/events/xdp.h
3195 F:      include/uapi/linux/bpf*
3196 F:      include/uapi/linux/filter.h
3197 F:      kernel/bpf/
3198 F:      kernel/trace/bpf_trace.c
3199 F:      lib/test_bpf.c
3200 F:      net/bpf/
3201 F:      net/core/filter.c
3202 F:      net/sched/act_bpf.c
3203 F:      net/sched/cls_bpf.c
3204 F:      samples/bpf/
3205 F:      tools/bpf/
3206 F:      tools/lib/bpf/
3207 F:      tools/testing/selftests/bpf/
3208 K:      bpf
3209 N:      bpf
3210
3211 BPF JIT for ARM
3212 M:      Shubham Bansal <illusionist.neo@gmail.com>
3213 L:      netdev@vger.kernel.org
3214 L:      bpf@vger.kernel.org
3215 S:      Maintained
3216 F:      arch/arm/net/
3217
3218 BPF JIT for ARM64
3219 M:      Daniel Borkmann <daniel@iogearbox.net>
3220 M:      Alexei Starovoitov <ast@kernel.org>
3221 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3222 L:      netdev@vger.kernel.org
3223 L:      bpf@vger.kernel.org
3224 S:      Supported
3225 F:      arch/arm64/net/
3226
3227 BPF JIT for MIPS (32-BIT AND 64-BIT)
3228 M:      Paul Burton <paulburton@kernel.org>
3229 L:      netdev@vger.kernel.org
3230 L:      bpf@vger.kernel.org
3231 S:      Maintained
3232 F:      arch/mips/net/
3233
3234 BPF JIT for NFP NICs
3235 M:      Jakub Kicinski <kuba@kernel.org>
3236 L:      netdev@vger.kernel.org
3237 L:      bpf@vger.kernel.org
3238 S:      Supported
3239 F:      drivers/net/ethernet/netronome/nfp/bpf/
3240
3241 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3242 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3243 M:      Sandipan Das <sandipan@linux.ibm.com>
3244 L:      netdev@vger.kernel.org
3245 L:      bpf@vger.kernel.org
3246 S:      Maintained
3247 F:      arch/powerpc/net/
3248
3249 BPF JIT for RISC-V (32-bit)
3250 M:      Luke Nelson <luke.r.nels@gmail.com>
3251 M:      Xi Wang <xi.wang@gmail.com>
3252 L:      netdev@vger.kernel.org
3253 L:      bpf@vger.kernel.org
3254 S:      Maintained
3255 F:      arch/riscv/net/
3256 X:      arch/riscv/net/bpf_jit_comp64.c
3257
3258 BPF JIT for RISC-V (64-bit)
3259 M:      Björn Töpel <bjorn.topel@gmail.com>
3260 L:      netdev@vger.kernel.org
3261 L:      bpf@vger.kernel.org
3262 S:      Maintained
3263 F:      arch/riscv/net/
3264 X:      arch/riscv/net/bpf_jit_comp32.c
3265
3266 BPF JIT for S390
3267 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3268 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3269 M:      Vasily Gorbik <gor@linux.ibm.com>
3270 L:      netdev@vger.kernel.org
3271 L:      bpf@vger.kernel.org
3272 S:      Maintained
3273 F:      arch/s390/net/
3274 X:      arch/s390/net/pnet.c
3275
3276 BPF JIT for SPARC (32-BIT AND 64-BIT)
3277 M:      David S. Miller <davem@davemloft.net>
3278 L:      netdev@vger.kernel.org
3279 L:      bpf@vger.kernel.org
3280 S:      Maintained
3281 F:      arch/sparc/net/
3282
3283 BPF JIT for X86 32-BIT
3284 M:      Wang YanQing <udknight@gmail.com>
3285 L:      netdev@vger.kernel.org
3286 L:      bpf@vger.kernel.org
3287 S:      Maintained
3288 F:      arch/x86/net/bpf_jit_comp32.c
3289
3290 BPF JIT for X86 64-BIT
3291 M:      Alexei Starovoitov <ast@kernel.org>
3292 M:      Daniel Borkmann <daniel@iogearbox.net>
3293 L:      netdev@vger.kernel.org
3294 L:      bpf@vger.kernel.org
3295 S:      Supported
3296 F:      arch/x86/net/
3297 X:      arch/x86/net/bpf_jit_comp32.c
3298
3299 BROADCOM B44 10/100 ETHERNET DRIVER
3300 M:      Michael Chan <michael.chan@broadcom.com>
3301 L:      netdev@vger.kernel.org
3302 S:      Supported
3303 F:      drivers/net/ethernet/broadcom/b44.*
3304
3305 BROADCOM B53 ETHERNET SWITCH DRIVER
3306 M:      Florian Fainelli <f.fainelli@gmail.com>
3307 L:      netdev@vger.kernel.org
3308 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3309 S:      Supported
3310 F:      drivers/net/dsa/b53/*
3311 F:      include/linux/platform_data/b53.h
3312
3313 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3314 M:      Florian Fainelli <f.fainelli@gmail.com>
3315 M:      Ray Jui <rjui@broadcom.com>
3316 M:      Scott Branden <sbranden@broadcom.com>
3317 M:      bcm-kernel-feedback-list@broadcom.com
3318 T:      git git://github.com/broadcom/mach-bcm
3319 S:      Maintained
3320 N:      bcm281*
3321 N:      bcm113*
3322 N:      bcm216*
3323 N:      kona
3324 F:      arch/arm/mach-bcm/
3325
3326 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3327 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3328 L:      bcm-kernel-feedback-list@broadcom.com
3329 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3331 T:      git git://github.com/anholt/linux
3332 S:      Maintained
3333 N:      bcm2711
3334 N:      bcm2835
3335 F:      drivers/staging/vc04_services
3336 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3337 F:      drivers/pci/controller/pcie-brcmstb.c
3338
3339 BROADCOM BCM47XX MIPS ARCHITECTURE
3340 M:      Hauke Mehrtens <hauke@hauke-m.de>
3341 M:      Rafał Miłecki <zajec5@gmail.com>
3342 L:      linux-mips@vger.kernel.org
3343 S:      Maintained
3344 F:      Documentation/devicetree/bindings/mips/brcm/
3345 F:      arch/mips/bcm47xx/*
3346 F:      arch/mips/include/asm/mach-bcm47xx/*
3347
3348 BROADCOM BCM5301X ARM ARCHITECTURE
3349 M:      Hauke Mehrtens <hauke@hauke-m.de>
3350 M:      Rafał Miłecki <zajec5@gmail.com>
3351 M:      bcm-kernel-feedback-list@broadcom.com
3352 L:      linux-arm-kernel@lists.infradead.org
3353 S:      Maintained
3354 F:      arch/arm/mach-bcm/bcm_5301x.c
3355 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3356 F:      arch/arm/boot/dts/bcm470*
3357 F:      arch/arm/boot/dts/bcm953012*
3358
3359 BROADCOM BCM53573 ARM ARCHITECTURE
3360 M:      Rafał Miłecki <rafal@milecki.pl>
3361 L:      bcm-kernel-feedback-list@broadcom.com
3362 L:      linux-arm-kernel@lists.infradead.org
3363 S:      Maintained
3364 F:      arch/arm/boot/dts/bcm53573*
3365 F:      arch/arm/boot/dts/bcm47189*
3366
3367 BROADCOM BCM63XX ARM ARCHITECTURE
3368 M:      Florian Fainelli <f.fainelli@gmail.com>
3369 M:      bcm-kernel-feedback-list@broadcom.com
3370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3371 T:      git git://github.com/broadcom/stblinux.git
3372 S:      Maintained
3373 N:      bcm63xx
3374
3375 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3376 M:      Kevin Cernekee <cernekee@gmail.com>
3377 L:      linux-usb@vger.kernel.org
3378 S:      Maintained
3379 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3380
3381 BROADCOM BCM7XXX ARM ARCHITECTURE
3382 M:      Florian Fainelli <f.fainelli@gmail.com>
3383 M:      bcm-kernel-feedback-list@broadcom.com
3384 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3385 T:      git git://github.com/broadcom/stblinux.git
3386 S:      Maintained
3387 F:      arch/arm/mach-bcm/*brcmstb*
3388 F:      arch/arm/boot/dts/bcm7*.dts*
3389 F:      drivers/bus/brcmstb_gisb.c
3390 F:      arch/arm/mm/cache-b15-rac.c
3391 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3392 N:      brcmstb
3393 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3394 F:      drivers/pci/controller/pcie-brcmstb.c
3395
3396 BROADCOM BMIPS CPUFREQ DRIVER
3397 M:      Markus Mayer <mmayer@broadcom.com>
3398 M:      bcm-kernel-feedback-list@broadcom.com
3399 L:      linux-pm@vger.kernel.org
3400 S:      Maintained
3401 F:      drivers/cpufreq/bmips-cpufreq.c
3402
3403 BROADCOM BMIPS MIPS ARCHITECTURE
3404 M:      Florian Fainelli <f.fainelli@gmail.com>
3405 L:      bcm-kernel-feedback-list@broadcom.com
3406 L:      linux-mips@vger.kernel.org
3407 T:      git git://github.com/broadcom/stblinux.git
3408 S:      Maintained
3409 F:      arch/mips/bmips/*
3410 F:      arch/mips/include/asm/mach-bmips/*
3411 F:      arch/mips/kernel/*bmips*
3412 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3413 F:      drivers/irqchip/irq-bcm63*
3414 F:      drivers/irqchip/irq-bcm7*
3415 F:      drivers/irqchip/irq-brcmstb*
3416 F:      include/linux/bcm963xx_nvram.h
3417 F:      include/linux/bcm963xx_tag.h
3418
3419 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3420 M:      Rasesh Mody <rmody@marvell.com>
3421 M:      GR-Linux-NIC-Dev@marvell.com
3422 L:      netdev@vger.kernel.org
3423 S:      Supported
3424 F:      drivers/net/ethernet/broadcom/bnx2.*
3425 F:      drivers/net/ethernet/broadcom/bnx2_*
3426
3427 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3428 M:      QLogic-Storage-Upstream@qlogic.com
3429 L:      linux-scsi@vger.kernel.org
3430 S:      Supported
3431 F:      drivers/scsi/bnx2fc/
3432
3433 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3434 M:      QLogic-Storage-Upstream@qlogic.com
3435 L:      linux-scsi@vger.kernel.org
3436 S:      Supported
3437 F:      drivers/scsi/bnx2i/
3438
3439 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3440 M:      Ariel Elior <aelior@marvell.com>
3441 M:      Sudarsana Kalluru <skalluru@marvell.com>
3442 M:      GR-everest-linux-l2@marvell.com
3443 L:      netdev@vger.kernel.org
3444 S:      Supported
3445 F:      drivers/net/ethernet/broadcom/bnx2x/
3446
3447 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3448 M:      Michael Chan <michael.chan@broadcom.com>
3449 L:      netdev@vger.kernel.org
3450 S:      Supported
3451 F:      drivers/net/ethernet/broadcom/bnxt/
3452
3453 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3454 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3455 M:      Franky Lin <franky.lin@broadcom.com>
3456 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3457 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3458 M:      Wright Feng <wright.feng@cypress.com>
3459 L:      linux-wireless@vger.kernel.org
3460 L:      brcm80211-dev-list.pdl@broadcom.com
3461 L:      brcm80211-dev-list@cypress.com
3462 S:      Supported
3463 F:      drivers/net/wireless/broadcom/brcm80211/
3464
3465 BROADCOM BRCMSTB GPIO DRIVER
3466 M:      Gregory Fong <gregory.0xf0@gmail.com>
3467 L:      bcm-kernel-feedback-list@broadcom.com
3468 S:      Supported
3469 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3470 F:      drivers/gpio/gpio-brcmstb.c
3471
3472 BROADCOM BRCMSTB I2C DRIVER
3473 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3474 L:      linux-i2c@vger.kernel.org
3475 L:      bcm-kernel-feedback-list@broadcom.com
3476 S:      Supported
3477 F:      drivers/i2c/busses/i2c-brcmstb.c
3478 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3479
3480 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3481 M:      Al Cooper <alcooperx@gmail.com>
3482 L:      linux-kernel@vger.kernel.org
3483 L:      bcm-kernel-feedback-list@broadcom.com
3484 S:      Maintained
3485 F:      drivers/phy/broadcom/phy-brcm-usb*
3486
3487 BROADCOM GENET ETHERNET DRIVER
3488 M:      Doug Berger <opendmb@gmail.com>
3489 M:      Florian Fainelli <f.fainelli@gmail.com>
3490 L:      bcm-kernel-feedback-list@broadcom.com
3491 L:      netdev@vger.kernel.org
3492 S:      Supported
3493 F:      drivers/net/ethernet/broadcom/genet/
3494
3495 BROADCOM IPROC ARM ARCHITECTURE
3496 M:      Ray Jui <rjui@broadcom.com>
3497 M:      Scott Branden <sbranden@broadcom.com>
3498 M:      bcm-kernel-feedback-list@broadcom.com
3499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3500 T:      git git://github.com/broadcom/cygnus-linux.git
3501 S:      Maintained
3502 N:      iproc
3503 N:      cygnus
3504 N:      bcm[-_]nsp
3505 N:      bcm9113*
3506 N:      bcm9583*
3507 N:      bcm9585*
3508 N:      bcm9586*
3509 N:      bcm988312
3510 N:      bcm113*
3511 N:      bcm583*
3512 N:      bcm585*
3513 N:      bcm586*
3514 N:      bcm88312
3515 N:      hr2
3516 N:      stingray
3517 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3518 F:      arch/arm64/boot/dts/broadcom/stingray/*
3519 F:      drivers/clk/bcm/clk-ns*
3520 F:      drivers/clk/bcm/clk-sr*
3521 F:      drivers/pinctrl/bcm/pinctrl-ns*
3522 F:      include/dt-bindings/clock/bcm-sr*
3523
3524 BROADCOM KONA GPIO DRIVER
3525 M:      Ray Jui <rjui@broadcom.com>
3526 L:      bcm-kernel-feedback-list@broadcom.com
3527 S:      Supported
3528 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3529 F:      drivers/gpio/gpio-bcm-kona.c
3530
3531 BROADCOM NETXTREME-E ROCE DRIVER
3532 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3533 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3534 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3535 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3536 L:      linux-rdma@vger.kernel.org
3537 W:      http://www.broadcom.com
3538 S:      Supported
3539 F:      drivers/infiniband/hw/bnxt_re/
3540 F:      include/uapi/rdma/bnxt_re-abi.h
3541
3542 BROADCOM NVRAM DRIVER
3543 M:      Rafał Miłecki <zajec5@gmail.com>
3544 L:      linux-mips@vger.kernel.org
3545 S:      Maintained
3546 F:      drivers/firmware/broadcom/*
3547
3548 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3549 M:      Rafał Miłecki <zajec5@gmail.com>
3550 L:      linux-wireless@vger.kernel.org
3551 S:      Maintained
3552 F:      drivers/bcma/
3553 F:      include/linux/bcma/
3554
3555 BROADCOM STB AVS CPUFREQ DRIVER
3556 M:      Markus Mayer <mmayer@broadcom.com>
3557 M:      bcm-kernel-feedback-list@broadcom.com
3558 L:      linux-pm@vger.kernel.org
3559 S:      Maintained
3560 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3561 F:      drivers/cpufreq/brcmstb*
3562
3563 BROADCOM STB AVS TMON DRIVER
3564 M:      Markus Mayer <mmayer@broadcom.com>
3565 M:      bcm-kernel-feedback-list@broadcom.com
3566 L:      linux-pm@vger.kernel.org
3567 S:      Maintained
3568 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3569 F:      drivers/thermal/broadcom/brcmstb*
3570
3571 BROADCOM STB NAND FLASH DRIVER
3572 M:      Brian Norris <computersforpeace@gmail.com>
3573 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3574 L:      linux-mtd@lists.infradead.org
3575 L:      bcm-kernel-feedback-list@broadcom.com
3576 S:      Maintained
3577 F:      drivers/mtd/nand/raw/brcmnand/
3578
3579 BROADCOM STB DPFE DRIVER
3580 M:      Markus Mayer <mmayer@broadcom.com>
3581 M:      bcm-kernel-feedback-list@broadcom.com
3582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3583 S:      Maintained
3584 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3585 F:      drivers/memory/brcmstb_dpfe.c
3586
3587 BROADCOM SPI DRIVER
3588 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3589 M:      bcm-kernel-feedback-list@broadcom.com
3590 S:      Maintained
3591 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3592 F:      drivers/spi/spi-bcm-qspi.*
3593 F:      drivers/spi/spi-brcmstb-qspi.c
3594 F:      drivers/spi/spi-iproc-qspi.c
3595
3596 BROADCOM SYSTEMPORT ETHERNET DRIVER
3597 M:      Florian Fainelli <f.fainelli@gmail.com>
3598 L:      bcm-kernel-feedback-list@broadcom.com
3599 L:      netdev@vger.kernel.org
3600 S:      Supported
3601 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3602
3603 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3604 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3605 M:      Prashant Sreedharan <prashant@broadcom.com>
3606 M:      Michael Chan <mchan@broadcom.com>
3607 L:      netdev@vger.kernel.org
3608 S:      Supported
3609 F:      drivers/net/ethernet/broadcom/tg3.*
3610
3611 BROCADE BFA FC SCSI DRIVER
3612 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3613 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3614 L:      linux-scsi@vger.kernel.org
3615 S:      Supported
3616 F:      drivers/scsi/bfa/
3617
3618 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3619 M:      Rasesh Mody <rmody@marvell.com>
3620 M:      Sudarsana Kalluru <skalluru@marvell.com>
3621 M:      GR-Linux-NIC-Dev@marvell.com
3622 L:      netdev@vger.kernel.org
3623 S:      Supported
3624 F:      drivers/net/ethernet/brocade/bna/
3625
3626 BSG (block layer generic sg v4 driver)
3627 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3628 L:      linux-scsi@vger.kernel.org
3629 S:      Supported
3630 F:      block/bsg.c
3631 F:      include/linux/bsg.h
3632 F:      include/uapi/linux/bsg.h
3633
3634 BT87X AUDIO DRIVER
3635 M:      Clemens Ladisch <clemens@ladisch.de>
3636 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3638 S:      Maintained
3639 F:      Documentation/sound/cards/bt87x.rst
3640 F:      sound/pci/bt87x.c
3641
3642 BT8XXGPIO DRIVER
3643 M:      Michael Buesch <m@bues.ch>
3644 S:      Maintained
3645 W:      http://bu3sch.de/btgpio.php
3646 F:      drivers/gpio/gpio-bt8xx.c
3647
3648 BTRFS FILE SYSTEM
3649 M:      Chris Mason <clm@fb.com>
3650 M:      Josef Bacik <josef@toxicpanda.com>
3651 M:      David Sterba <dsterba@suse.com>
3652 L:      linux-btrfs@vger.kernel.org
3653 W:      http://btrfs.wiki.kernel.org/
3654 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3656 S:      Maintained
3657 F:      Documentation/filesystems/btrfs.rst
3658 F:      fs/btrfs/
3659 F:      include/linux/btrfs*
3660 F:      include/uapi/linux/btrfs*
3661
3662 BTTV VIDEO4LINUX DRIVER
3663 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3664 L:      linux-media@vger.kernel.org
3665 W:      https://linuxtv.org
3666 T:      git git://linuxtv.org/media_tree.git
3667 S:      Odd fixes
3668 F:      Documentation/media/v4l-drivers/bttv*
3669 F:      drivers/media/pci/bt8xx/bttv*
3670
3671 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3672 M:      Chanwoo Choi <cw00.choi@samsung.com>
3673 L:      linux-pm@vger.kernel.org
3674 L:      linux-samsung-soc@vger.kernel.org
3675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3676 S:      Maintained
3677 F:      drivers/devfreq/exynos-bus.c
3678 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3679
3680 BUSLOGIC SCSI DRIVER
3681 M:      Khalid Aziz <khalid@gonehiking.org>
3682 L:      linux-scsi@vger.kernel.org
3683 S:      Maintained
3684 F:      drivers/scsi/BusLogic.*
3685 F:      drivers/scsi/FlashPoint.*
3686
3687 C-MEDIA CMI8788 DRIVER
3688 M:      Clemens Ladisch <clemens@ladisch.de>
3689 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3691 S:      Maintained
3692 F:      sound/pci/oxygen/
3693
3694 C-SKY ARCHITECTURE
3695 M:      Guo Ren <guoren@kernel.org>
3696 L:      linux-csky@vger.kernel.org
3697 T:      git https://github.com/c-sky/csky-linux.git
3698 S:      Supported
3699 F:      arch/csky/
3700 F:      Documentation/devicetree/bindings/csky/
3701 F:      drivers/irqchip/irq-csky-*
3702 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3703 F:      drivers/clocksource/timer-gx6605s.c
3704 F:      drivers/clocksource/timer-mp-csky.c
3705 F:      Documentation/devicetree/bindings/timer/csky,*
3706 K:      csky
3707 N:      csky
3708
3709 C6X ARCHITECTURE
3710 M:      Mark Salter <msalter@redhat.com>
3711 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3712 L:      linux-c6x-dev@linux-c6x.org
3713 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3714 S:      Maintained
3715 F:      arch/c6x/
3716
3717 CA8210 IEEE-802.15.4 RADIO DRIVER
3718 M:      Harry Morris <h.morris@cascoda.com>
3719 L:      linux-wpan@vger.kernel.org
3720 W:      https://github.com/Cascoda/ca8210-linux.git
3721 S:      Maintained
3722 F:      drivers/net/ieee802154/ca8210.c
3723 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3724
3725 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3726 M:      David Howells <dhowells@redhat.com>
3727 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3728 S:      Supported
3729 F:      Documentation/filesystems/caching/cachefiles.txt
3730 F:      fs/cachefiles/
3731
3732 CADENCE MIPI-CSI2 BRIDGES
3733 M:      Maxime Ripard <mripard@kernel.org>
3734 L:      linux-media@vger.kernel.org
3735 S:      Maintained
3736 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3737 F:      drivers/media/platform/cadence/cdns-csi2*
3738
3739 CADENCE NAND DRIVER
3740 M:      Piotr Sroka <piotrs@cadence.com>
3741 L:      linux-mtd@lists.infradead.org
3742 S:      Maintained
3743 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3744 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3745
3746 CADET FM/AM RADIO RECEIVER DRIVER
3747 M:      Hans Verkuil <hverkuil@xs4all.nl>
3748 L:      linux-media@vger.kernel.org
3749 T:      git git://linuxtv.org/media_tree.git
3750 W:      https://linuxtv.org
3751 S:      Maintained
3752 F:      drivers/media/radio/radio-cadet*
3753
3754 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3755 M:      Jonathan Corbet <corbet@lwn.net>
3756 L:      linux-media@vger.kernel.org
3757 T:      git git://linuxtv.org/media_tree.git
3758 S:      Maintained
3759 F:      Documentation/media/v4l-drivers/cafe_ccic*
3760 F:      drivers/media/platform/marvell-ccic/
3761
3762 CAIF NETWORK LAYER
3763 L:      netdev@vger.kernel.org
3764 S:      Orphan
3765 F:      Documentation/networking/caif/
3766 F:      drivers/net/caif/
3767 F:      include/uapi/linux/caif/
3768 F:      include/net/caif/
3769 F:      net/caif/
3770
3771 CAKE QDISC
3772 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3773 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3774 S:      Maintained
3775 F:      net/sched/sch_cake.c
3776
3777 CAN NETWORK DRIVERS
3778 M:      Wolfgang Grandegger <wg@grandegger.com>
3779 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3780 L:      linux-can@vger.kernel.org
3781 W:      https://github.com/linux-can
3782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3784 S:      Maintained
3785 F:      Documentation/devicetree/bindings/net/can/
3786 F:      drivers/net/can/
3787 F:      include/linux/can/dev.h
3788 F:      include/linux/can/led.h
3789 F:      include/linux/can/rx-offload.h
3790 F:      include/linux/can/platform/
3791 F:      include/uapi/linux/can/error.h
3792 F:      include/uapi/linux/can/netlink.h
3793 F:      include/uapi/linux/can/vxcan.h
3794
3795 CAN NETWORK LAYER
3796 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3797 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3798 L:      linux-can@vger.kernel.org
3799 W:      https://github.com/linux-can
3800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3802 S:      Maintained
3803 F:      Documentation/networking/can.rst
3804 F:      net/can/
3805 F:      include/linux/can/core.h
3806 F:      include/linux/can/skb.h
3807 F:      include/net/netns/can.h
3808 F:      include/uapi/linux/can.h
3809 F:      include/uapi/linux/can/bcm.h
3810 F:      include/uapi/linux/can/raw.h
3811 F:      include/uapi/linux/can/gw.h
3812
3813 CAN-J1939 NETWORK LAYER
3814 M:      Robin van der Gracht <robin@protonic.nl>
3815 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3816 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3817 L:      linux-can@vger.kernel.org
3818 S:      Maintained
3819 F:      Documentation/networking/j1939.rst
3820 F:      net/can/j1939/
3821 F:      include/uapi/linux/can/j1939.h
3822
3823 CAPABILITIES
3824 M:      Serge Hallyn <serge@hallyn.com>
3825 L:      linux-security-module@vger.kernel.org
3826 S:      Supported
3827 F:      include/linux/capability.h
3828 F:      include/uapi/linux/capability.h
3829 F:      security/commoncap.c
3830 F:      kernel/capability.c
3831
3832 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3833 M:      Kevin Tsai <ktsai@capellamicro.com>
3834 S:      Maintained
3835 F:      drivers/iio/light/cm*
3836
3837 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3838 M:      Christian Lamparter <chunkeey@googlemail.com>
3839 L:      linux-wireless@vger.kernel.org
3840 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3841 S:      Maintained
3842 F:      drivers/net/wireless/ath/carl9170/
3843
3844 CAVIUM I2C DRIVER
3845 M:      Robert Richter <rrichter@marvell.com>
3846 W:      http://www.marvell.com
3847 S:      Supported
3848 F:      drivers/i2c/busses/i2c-octeon*
3849 F:      drivers/i2c/busses/i2c-thunderx*
3850
3851 CAVIUM LIQUIDIO NETWORK DRIVER
3852 M:      Derek Chickles <dchickles@marvell.com>
3853 M:      Satanand Burla <sburla@marvell.com>
3854 M:      Felix Manlunas <fmanlunas@marvell.com>
3855 L:      netdev@vger.kernel.org
3856 W:      http://www.marvell.com
3857 S:      Supported
3858 F:      drivers/net/ethernet/cavium/liquidio/
3859
3860 CAVIUM MMC DRIVER
3861 M:      Robert Richter <rrichter@marvell.com>
3862 W:      http://www.marvell.com
3863 S:      Supported
3864 F:      drivers/mmc/host/cavium*
3865
3866 CAVIUM OCTEON-TX CRYPTO DRIVER
3867 M:      George Cherian <gcherian@marvell.com>
3868 L:      linux-crypto@vger.kernel.org
3869 W:      http://www.marvell.com
3870 S:      Supported
3871 F:      drivers/crypto/cavium/cpt/
3872
3873 CAVIUM THUNDERX2 ARM64 SOC
3874 M:      Robert Richter <rrichter@marvell.com>
3875 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3876 S:      Maintained
3877 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3878 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3879
3880 CC2520 IEEE-802.15.4 RADIO DRIVER
3881 M:      Varka Bhadram <varkabhadram@gmail.com>
3882 L:      linux-wpan@vger.kernel.org
3883 S:      Maintained
3884 F:      drivers/net/ieee802154/cc2520.c
3885 F:      include/linux/spi/cc2520.h
3886 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3887
3888 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3889 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3890 L:      linux-crypto@vger.kernel.org
3891 S:      Supported
3892 F:      drivers/crypto/ccree/
3893 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3894
3895 CEC FRAMEWORK
3896 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3897 L:      linux-media@vger.kernel.org
3898 T:      git git://linuxtv.org/media_tree.git
3899 W:      http://linuxtv.org
3900 S:      Supported
3901 F:      Documentation/media/kapi/cec-core.rst
3902 F:      Documentation/media/uapi/cec
3903 F:      drivers/media/cec/
3904 F:      drivers/media/rc/keymaps/rc-cec.c
3905 F:      include/media/cec.h
3906 F:      include/media/cec-notifier.h
3907 F:      include/uapi/linux/cec.h
3908 F:      include/uapi/linux/cec-funcs.h
3909 F:      Documentation/devicetree/bindings/media/cec.txt
3910 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3911
3912 CEC GPIO DRIVER
3913 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3914 L:      linux-media@vger.kernel.org
3915 T:      git git://linuxtv.org/media_tree.git
3916 W:      http://linuxtv.org
3917 S:      Supported
3918 F:      drivers/media/platform/cec-gpio/
3919 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3920
3921 CELL BROADBAND ENGINE ARCHITECTURE
3922 M:      Arnd Bergmann <arnd@arndb.de>
3923 L:      linuxppc-dev@lists.ozlabs.org
3924 W:      http://www.ibm.com/developerworks/power/cell/
3925 S:      Supported
3926 F:      arch/powerpc/include/asm/cell*.h
3927 F:      arch/powerpc/include/asm/spu*.h
3928 F:      arch/powerpc/include/uapi/asm/spu*.h
3929 F:      arch/powerpc/oprofile/*cell*
3930 F:      arch/powerpc/platforms/cell/
3931
3932 CEPH COMMON CODE (LIBCEPH)
3933 M:      Ilya Dryomov <idryomov@gmail.com>
3934 M:      Jeff Layton <jlayton@kernel.org>
3935 M:      Sage Weil <sage@redhat.com>
3936 L:      ceph-devel@vger.kernel.org
3937 W:      http://ceph.com/
3938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3939 T:      git git://github.com/ceph/ceph-client.git
3940 S:      Supported
3941 F:      net/ceph/
3942 F:      include/linux/ceph/
3943 F:      include/linux/crush/
3944
3945 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3946 M:      Jeff Layton <jlayton@kernel.org>
3947 M:      Sage Weil <sage@redhat.com>
3948 M:      Ilya Dryomov <idryomov@gmail.com>
3949 L:      ceph-devel@vger.kernel.org
3950 W:      http://ceph.com/
3951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3952 T:      git git://github.com/ceph/ceph-client.git
3953 S:      Supported
3954 F:      Documentation/filesystems/ceph.rst
3955 F:      fs/ceph/
3956
3957 CERTIFICATE HANDLING
3958 M:      David Howells <dhowells@redhat.com>
3959 M:      David Woodhouse <dwmw2@infradead.org>
3960 L:      keyrings@vger.kernel.org
3961 S:      Maintained
3962 F:      Documentation/admin-guide/module-signing.rst
3963 F:      certs/
3964 F:      scripts/sign-file.c
3965 F:      scripts/extract-cert.c
3966
3967 CFAG12864B LCD DRIVER
3968 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3969 S:      Maintained
3970 F:      drivers/auxdisplay/cfag12864b.c
3971 F:      include/linux/cfag12864b.h
3972
3973 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3974 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3975 S:      Maintained
3976 F:      drivers/auxdisplay/cfag12864bfb.c
3977 F:      include/linux/cfag12864b.h
3978
3979 802.11 (including CFG80211/NL80211)
3980 M:      Johannes Berg <johannes@sipsolutions.net>
3981 L:      linux-wireless@vger.kernel.org
3982 W:      http://wireless.kernel.org/
3983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3985 S:      Maintained
3986 F:      net/wireless/
3987 F:      include/uapi/linux/nl80211.h
3988 F:      include/linux/ieee80211.h
3989 F:      include/net/wext.h
3990 F:      include/net/cfg80211.h
3991 F:      include/net/iw_handler.h
3992 F:      include/net/ieee80211_radiotap.h
3993 F:      Documentation/driver-api/80211/cfg80211.rst
3994 F:      Documentation/networking/regulatory.txt
3995
3996 CHAR and MISC DRIVERS
3997 M:      Arnd Bergmann <arnd@arndb.de>
3998 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4000 S:      Supported
4001 F:      drivers/char/
4002 F:      drivers/misc/
4003 F:      include/linux/miscdevice.h
4004
4005 CHECKPATCH
4006 M:      Andy Whitcroft <apw@canonical.com>
4007 M:      Joe Perches <joe@perches.com>
4008 S:      Maintained
4009 F:      scripts/checkpatch.pl
4010
4011 CHINESE DOCUMENTATION
4012 M:      Harry Wei <harryxiyou@gmail.com>
4013 M:      Alex Shi <alex.shi@linux.alibaba.com>
4014 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4015 S:      Maintained
4016 F:      Documentation/translations/zh_CN/
4017
4018 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4019 M:      Peter Chen <Peter.Chen@nxp.com>
4020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4021 L:      linux-usb@vger.kernel.org
4022 S:      Maintained
4023 F:      drivers/usb/chipidea/
4024
4025 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4026 M:      Hans de Goede <hdegoede@redhat.com>
4027 L:      linux-input@vger.kernel.org
4028 S:      Maintained
4029 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4030 F:      drivers/input/touchscreen/chipone_icn8318.c
4031
4032 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4033 M:      Hans de Goede <hdegoede@redhat.com>
4034 L:      linux-input@vger.kernel.org
4035 S:      Maintained
4036 F:      drivers/input/touchscreen/chipone_icn8505.c
4037
4038 CHROME HARDWARE PLATFORM SUPPORT
4039 M:      Benson Leung <bleung@chromium.org>
4040 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4041 S:      Maintained
4042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4043 F:      drivers/platform/chrome/
4044
4045 CHROMEOS EC SUBDRIVERS
4046 M:      Benson Leung <bleung@chromium.org>
4047 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4048 R:      Guenter Roeck <groeck@chromium.org>
4049 S:      Maintained
4050 N:      cros_ec
4051 N:      cros-ec
4052 F:      drivers/power/supply/cros_usbpd-charger.c
4053
4054 CHROMEOS EC CODEC DRIVER
4055 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4056 S:      Maintained
4057 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4058 R:      Guenter Roeck <groeck@chromium.org>
4059 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4060 F:      sound/soc/codecs/cros_ec_codec.*
4061
4062 CIRRUS LOGIC AUDIO CODEC DRIVERS
4063 M:      James Schulman <james.schulman@cirrus.com>
4064 M:      David Rhodes <david.rhodes@cirrus.com>
4065 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4066 S:      Maintained
4067 F:      sound/soc/codecs/cs*
4068
4069 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4070 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4071 L:      netdev@vger.kernel.org
4072 S:      Maintained
4073 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4074
4075 CIRRUS LOGIC LOCHNAGAR DRIVER
4076 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4077 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4078 L:      patches@opensource.cirrus.com
4079 S:      Supported
4080 F:      drivers/clk/clk-lochnagar.c
4081 F:      drivers/hwmon/lochnagar-hwmon.c
4082 F:      drivers/mfd/lochnagar-i2c.c
4083 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4084 F:      drivers/regulator/lochnagar-regulator.c
4085 F:      sound/soc/codecs/lochnagar-sc.c
4086 F:      include/dt-bindings/clk/lochnagar.h
4087 F:      include/dt-bindings/pinctrl/lochnagar.h
4088 F:      include/linux/mfd/lochnagar*
4089 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
4090 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
4091 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
4092 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
4093 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
4094 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
4095 F:      Documentation/hwmon/lochnagar.rst
4096
4097 CISCO FCOE HBA DRIVER
4098 M:      Satish Kharat <satishkh@cisco.com>
4099 M:      Sesidhar Baddela <sebaddel@cisco.com>
4100 M:      Karan Tilak Kumar <kartilak@cisco.com>
4101 L:      linux-scsi@vger.kernel.org
4102 S:      Supported
4103 F:      drivers/scsi/fnic/
4104
4105 CISCO SCSI HBA DRIVER
4106 M:      Karan Tilak Kumar <kartilak@cisco.com>
4107 M:      Sesidhar Baddela <sebaddel@cisco.com>
4108 L:      linux-scsi@vger.kernel.org
4109 S:      Supported
4110 F:      drivers/scsi/snic/
4111
4112 CISCO VIC ETHERNET NIC DRIVER
4113 M:      Christian Benvenuti <benve@cisco.com>
4114 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4115 S:      Supported
4116 F:      drivers/net/ethernet/cisco/enic/
4117
4118 CISCO VIC LOW LATENCY NIC DRIVER
4119 M:      Christian Benvenuti <benve@cisco.com>
4120 M:      Nelson Escobar <neescoba@cisco.com>
4121 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4122 S:      Supported
4123 F:      drivers/infiniband/hw/usnic/
4124
4125 CIRRUS LOGIC MADERA CODEC DRIVERS
4126 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4127 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4128 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4129 L:      patches@opensource.cirrus.com
4130 T:      git https://github.com/CirrusLogic/linux-drivers.git
4131 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4132 S:      Supported
4133 F:      Documentation/devicetree/bindings/mfd/madera.txt
4134 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4135 F:      Documentation/devicetree/bindings/sound/madera.txt
4136 F:      include/dt-bindings/sound/madera*
4137 F:      include/linux/irqchip/irq-madera*
4138 F:      include/linux/mfd/madera/*
4139 F:      include/sound/madera*
4140 F:      drivers/gpio/gpio-madera*
4141 F:      drivers/irqchip/irq-madera*
4142 F:      drivers/mfd/madera*
4143 F:      drivers/mfd/cs47l*
4144 F:      drivers/pinctrl/cirrus/*
4145 F:      sound/soc/codecs/cs47l*
4146 F:      sound/soc/codecs/madera*
4147
4148 CLANG-FORMAT FILE
4149 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4150 S:      Maintained
4151 F:      .clang-format
4152
4153 CLANG/LLVM BUILD SUPPORT
4154 L:      clang-built-linux@googlegroups.com
4155 W:      https://clangbuiltlinux.github.io/
4156 B:      https://github.com/ClangBuiltLinux/linux/issues
4157 C:      irc://chat.freenode.net/clangbuiltlinux
4158 S:      Supported
4159 K:      \b(?i:clang|llvm)\b
4160 F:      Documentation/kbuild/llvm.rst
4161
4162 CLEANCACHE API
4163 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4164 L:      linux-kernel@vger.kernel.org
4165 S:      Maintained
4166 F:      mm/cleancache.c
4167 F:      include/linux/cleancache.h
4168
4169 CLK API
4170 M:      Russell King <linux@armlinux.org.uk>
4171 L:      linux-clk@vger.kernel.org
4172 S:      Maintained
4173 F:      include/linux/clk.h
4174
4175 CLOCKSOURCE, CLOCKEVENT DRIVERS
4176 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4177 M:      Thomas Gleixner <tglx@linutronix.de>
4178 L:      linux-kernel@vger.kernel.org
4179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4180 S:      Supported
4181 F:      drivers/clocksource/
4182 F:      Documentation/devicetree/bindings/timer/
4183
4184 CMPC ACPI DRIVER
4185 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4186 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4187 L:      platform-driver-x86@vger.kernel.org
4188 S:      Supported
4189 F:      drivers/platform/x86/classmate-laptop.c
4190
4191 COBALT MEDIA DRIVER
4192 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4193 L:      linux-media@vger.kernel.org
4194 T:      git git://linuxtv.org/media_tree.git
4195 W:      https://linuxtv.org
4196 S:      Supported
4197 F:      drivers/media/pci/cobalt/
4198
4199 COCCINELLE/Semantic Patches (SmPL)
4200 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4201 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4202 M:      Nicolas Palix <nicolas.palix@imag.fr>
4203 M:      Michal Marek <michal.lkml@markovi.net>
4204 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4206 W:      http://coccinelle.lip6.fr/
4207 S:      Supported
4208 F:      Documentation/dev-tools/coccinelle.rst
4209 F:      scripts/coccinelle/
4210 F:      scripts/coccicheck
4211
4212 CODA FILE SYSTEM
4213 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4214 M:      coda@cs.cmu.edu
4215 L:      codalist@coda.cs.cmu.edu
4216 W:      http://www.coda.cs.cmu.edu/
4217 S:      Maintained
4218 F:      Documentation/filesystems/coda.txt
4219 F:      fs/coda/
4220 F:      include/linux/coda*.h
4221 F:      include/uapi/linux/coda*.h
4222
4223 CODA V4L2 MEM2MEM DRIVER
4224 M:      Philipp Zabel <p.zabel@pengutronix.de>
4225 L:      linux-media@vger.kernel.org
4226 S:      Maintained
4227 F:      Documentation/devicetree/bindings/media/coda.txt
4228 F:      drivers/media/platform/coda/
4229
4230 CODE OF CONDUCT
4231 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4232 S:      Supported
4233 F:      Documentation/process/code-of-conduct.rst
4234 F:      Documentation/process/code-of-conduct-interpretation.rst
4235
4236 COMMON CLK FRAMEWORK
4237 M:      Michael Turquette <mturquette@baylibre.com>
4238 M:      Stephen Boyd <sboyd@kernel.org>
4239 L:      linux-clk@vger.kernel.org
4240 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4242 S:      Maintained
4243 F:      Documentation/devicetree/bindings/clock/
4244 F:      drivers/clk/
4245 X:      drivers/clk/clkdev.c
4246 F:      include/linux/clk-pr*
4247 F:      include/linux/clk/
4248 F:      include/linux/of_clk.h
4249
4250 COMMON INTERNET FILE SYSTEM (CIFS)
4251 M:      Steve French <sfrench@samba.org>
4252 L:      linux-cifs@vger.kernel.org
4253 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4254 W:      http://linux-cifs.samba.org/
4255 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4256 S:      Supported
4257 F:      Documentation/admin-guide/cifs/
4258 F:      fs/cifs/
4259
4260 COMPACTPCI HOTPLUG CORE
4261 M:      Scott Murray <scott@spiteful.org>
4262 L:      linux-pci@vger.kernel.org
4263 S:      Maintained
4264 F:      drivers/pci/hotplug/cpci_hotplug*
4265
4266 COMPACTPCI HOTPLUG GENERIC DRIVER
4267 M:      Scott Murray <scott@spiteful.org>
4268 L:      linux-pci@vger.kernel.org
4269 S:      Maintained
4270 F:      drivers/pci/hotplug/cpcihp_generic.c
4271
4272 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4273 M:      Scott Murray <scott@spiteful.org>
4274 L:      linux-pci@vger.kernel.org
4275 S:      Maintained
4276 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4277
4278 COMPAL LAPTOP SUPPORT
4279 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4280 L:      platform-driver-x86@vger.kernel.org
4281 S:      Maintained
4282 F:      drivers/platform/x86/compal-laptop.c
4283
4284 COMPILER ATTRIBUTES
4285 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4286 S:      Maintained
4287 F:      include/linux/compiler_attributes.h
4288
4289 CONEXANT ACCESSRUNNER USB DRIVER
4290 L:      accessrunner-general@lists.sourceforge.net
4291 W:      http://accessrunner.sourceforge.net/
4292 S:      Orphan
4293 F:      drivers/usb/atm/cxacru.c
4294
4295 CONFIGFS
4296 M:      Joel Becker <jlbec@evilplan.org>
4297 M:      Christoph Hellwig <hch@lst.de>
4298 T:      git git://git.infradead.org/users/hch/configfs.git
4299 S:      Supported
4300 F:      fs/configfs/
4301 F:      include/linux/configfs.h
4302
4303 CONNECTOR
4304 M:      Evgeniy Polyakov <zbr@ioremap.net>
4305 L:      netdev@vger.kernel.org
4306 S:      Maintained
4307 F:      drivers/connector/
4308
4309 CONTROL GROUP (CGROUP)
4310 M:      Tejun Heo <tj@kernel.org>
4311 M:      Li Zefan <lizefan@huawei.com>
4312 M:      Johannes Weiner <hannes@cmpxchg.org>
4313 L:      cgroups@vger.kernel.org
4314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4315 S:      Maintained
4316 F:      Documentation/admin-guide/cgroup-v2.rst
4317 F:      Documentation/admin-guide/cgroup-v1/
4318 F:      include/linux/cgroup*
4319 F:      kernel/cgroup/
4320
4321 CONTROL GROUP - CPUSET
4322 M:      Li Zefan <lizefan@huawei.com>
4323 L:      cgroups@vger.kernel.org
4324 W:      http://www.bullopensource.org/cpuset/
4325 W:      http://oss.sgi.com/projects/cpusets/
4326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4327 S:      Maintained
4328 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4329 F:      include/linux/cpuset.h
4330 F:      kernel/cgroup/cpuset.c
4331
4332 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4333 M:      Johannes Weiner <hannes@cmpxchg.org>
4334 M:      Michal Hocko <mhocko@kernel.org>
4335 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4336 L:      cgroups@vger.kernel.org
4337 L:      linux-mm@kvack.org
4338 S:      Maintained
4339 F:      mm/memcontrol.c
4340 F:      mm/swap_cgroup.c
4341
4342 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4343 M:      Tejun Heo <tj@kernel.org>
4344 M:      Jens Axboe <axboe@kernel.dk>
4345 L:      cgroups@vger.kernel.org
4346 L:      linux-block@vger.kernel.org
4347 T:      git git://git.kernel.dk/linux-block
4348 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4349 F:      block/blk-cgroup.c
4350 F:      include/linux/blk-cgroup.h
4351 F:      block/blk-throttle.c
4352 F:      block/blk-iolatency.c
4353 F:      block/bfq-cgroup.c
4354
4355 CORETEMP HARDWARE MONITORING DRIVER
4356 M:      Fenghua Yu <fenghua.yu@intel.com>
4357 L:      linux-hwmon@vger.kernel.org
4358 S:      Maintained
4359 F:      Documentation/hwmon/coretemp.rst
4360 F:      drivers/hwmon/coretemp.c
4361
4362 COSA/SRP SYNC SERIAL DRIVER
4363 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4364 W:      http://www.fi.muni.cz/~kas/cosa/
4365 S:      Maintained
4366 F:      drivers/net/wan/cosa*
4367
4368 COUNTER SUBSYSTEM
4369 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4370 L:      linux-iio@vger.kernel.org
4371 S:      Maintained
4372 F:      Documentation/ABI/testing/sysfs-bus-counter*
4373 F:      Documentation/driver-api/generic-counter.rst
4374 F:      drivers/counter/
4375 F:      include/linux/counter.h
4376 F:      include/linux/counter_enum.h
4377
4378 CPMAC ETHERNET DRIVER
4379 M:      Florian Fainelli <f.fainelli@gmail.com>
4380 L:      netdev@vger.kernel.org
4381 S:      Maintained
4382 F:      drivers/net/ethernet/ti/cpmac.c
4383
4384 CPU FREQUENCY SCALING FRAMEWORK
4385 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4386 M:      Viresh Kumar <viresh.kumar@linaro.org>
4387 L:      linux-pm@vger.kernel.org
4388 S:      Maintained
4389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4391 B:      https://bugzilla.kernel.org
4392 F:      Documentation/admin-guide/pm/cpufreq.rst
4393 F:      Documentation/admin-guide/pm/intel_pstate.rst
4394 F:      Documentation/cpu-freq/
4395 F:      Documentation/devicetree/bindings/cpufreq/
4396 F:      drivers/cpufreq/
4397 F:      kernel/sched/cpufreq*.c
4398 F:      include/linux/cpufreq.h
4399 F:      include/linux/sched/cpufreq.h
4400 F:      tools/testing/selftests/cpufreq/
4401
4402 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4403 M:      Viresh Kumar <viresh.kumar@linaro.org>
4404 M:      Sudeep Holla <sudeep.holla@arm.com>
4405 L:      linux-pm@vger.kernel.org
4406 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4407 S:      Maintained
4408 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4409
4410 CPU POWER MONITORING SUBSYSTEM
4411 M:      Thomas Renninger <trenn@suse.com>
4412 M:      Shuah Khan <shuah@kernel.org>
4413 M:      Shuah Khan <skhan@linuxfoundation.org>
4414 L:      linux-pm@vger.kernel.org
4415 S:      Maintained
4416 F:      tools/power/cpupower/
4417
4418 CPUID/MSR DRIVER
4419 M:      "H. Peter Anvin" <hpa@zytor.com>
4420 S:      Maintained
4421 F:      arch/x86/kernel/cpuid.c
4422 F:      arch/x86/kernel/msr.c
4423
4424 CPUIDLE DRIVER - ARM BIG LITTLE
4425 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4426 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4427 L:      linux-pm@vger.kernel.org
4428 L:      linux-arm-kernel@lists.infradead.org
4429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4430 S:      Maintained
4431 F:      drivers/cpuidle/cpuidle-big_little.c
4432
4433 CPUIDLE DRIVER - ARM EXYNOS
4434 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4435 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4436 M:      Kukjin Kim <kgene@kernel.org>
4437 L:      linux-pm@vger.kernel.org
4438 L:      linux-samsung-soc@vger.kernel.org
4439 S:      Supported
4440 F:      drivers/cpuidle/cpuidle-exynos.c
4441 F:      arch/arm/mach-exynos/pm.c
4442
4443 CPUIDLE DRIVER - ARM PSCI
4444 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4445 M:      Sudeep Holla <sudeep.holla@arm.com>
4446 L:      linux-pm@vger.kernel.org
4447 L:      linux-arm-kernel@lists.infradead.org
4448 S:      Supported
4449 F:      drivers/cpuidle/cpuidle-psci.c
4450
4451 CPU IDLE TIME MANAGEMENT FRAMEWORK
4452 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4453 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4454 L:      linux-pm@vger.kernel.org
4455 S:      Maintained
4456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4457 B:      https://bugzilla.kernel.org
4458 F:      Documentation/admin-guide/pm/cpuidle.rst
4459 F:      Documentation/driver-api/pm/cpuidle.rst
4460 F:      drivers/cpuidle/*
4461 F:      include/linux/cpuidle.h
4462
4463 CRAMFS FILESYSTEM
4464 M:      Nicolas Pitre <nico@fluxnic.net>
4465 S:      Maintained
4466 F:      Documentation/filesystems/cramfs.rst
4467 F:      fs/cramfs/
4468
4469 CREATIVE SB0540
4470 M:      Bastien Nocera <hadess@hadess.net>
4471 L:      linux-input@vger.kernel.org
4472 S:      Maintained
4473 F:      drivers/hid/hid-creative-sb0540.c
4474
4475 CRYPTO API
4476 M:      Herbert Xu <herbert@gondor.apana.org.au>
4477 M:      "David S. Miller" <davem@davemloft.net>
4478 L:      linux-crypto@vger.kernel.org
4479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4481 S:      Maintained
4482 F:      Documentation/crypto/
4483 F:      Documentation/devicetree/bindings/crypto/
4484 F:      arch/*/crypto/
4485 F:      crypto/
4486 F:      drivers/crypto/
4487 F:      include/crypto/
4488 F:      include/linux/crypto*
4489 F:      lib/crypto/
4490
4491 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4492 M:      Neil Horman <nhorman@tuxdriver.com>
4493 L:      linux-crypto@vger.kernel.org
4494 S:      Maintained
4495 F:      crypto/ansi_cprng.c
4496 F:      crypto/rng.c
4497
4498 CS3308 MEDIA DRIVER
4499 M:      Hans Verkuil <hverkuil@xs4all.nl>
4500 L:      linux-media@vger.kernel.org
4501 T:      git git://linuxtv.org/media_tree.git
4502 W:      http://linuxtv.org
4503 S:      Odd Fixes
4504 F:      drivers/media/i2c/cs3308.c
4505
4506 CS5535 Audio ALSA driver
4507 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4508 S:      Maintained
4509 F:      sound/pci/cs5535audio/
4510
4511 CSI DRIVERS FOR ALLWINNER V3s
4512 M:      Yong Deng <yong.deng@magewell.com>
4513 L:      linux-media@vger.kernel.org
4514 T:      git git://linuxtv.org/media_tree.git
4515 S:      Maintained
4516 F:      drivers/media/platform/sunxi/sun6i-csi/
4517 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4518
4519 CW1200 WLAN driver
4520 M:      Solomon Peachy <pizza@shaftnet.org>
4521 S:      Maintained
4522 F:      drivers/net/wireless/st/cw1200/
4523
4524 CX18 VIDEO4LINUX DRIVER
4525 M:      Andy Walls <awalls@md.metrocast.net>
4526 L:      linux-media@vger.kernel.org
4527 T:      git git://linuxtv.org/media_tree.git
4528 W:      https://linuxtv.org
4529 S:      Maintained
4530 F:      drivers/media/pci/cx18/
4531 F:      include/uapi/linux/ivtv*
4532
4533 CX2341X MPEG ENCODER HELPER MODULE
4534 M:      Hans Verkuil <hverkuil@xs4all.nl>
4535 L:      linux-media@vger.kernel.org
4536 T:      git git://linuxtv.org/media_tree.git
4537 W:      https://linuxtv.org
4538 S:      Maintained
4539 F:      drivers/media/common/cx2341x*
4540 F:      include/media/drv-intf/cx2341x.h
4541
4542 CX24120 MEDIA DRIVER
4543 M:      Jemma Denson <jdenson@gmail.com>
4544 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4545 L:      linux-media@vger.kernel.org
4546 W:      https://linuxtv.org
4547 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4548 S:      Maintained
4549 F:      drivers/media/dvb-frontends/cx24120*
4550
4551 CX88 VIDEO4LINUX DRIVER
4552 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4553 L:      linux-media@vger.kernel.org
4554 W:      https://linuxtv.org
4555 T:      git git://linuxtv.org/media_tree.git
4556 S:      Odd fixes
4557 F:      Documentation/media/v4l-drivers/cx88*
4558 F:      drivers/media/pci/cx88/
4559
4560 CXD2820R MEDIA DRIVER
4561 M:      Antti Palosaari <crope@iki.fi>
4562 L:      linux-media@vger.kernel.org
4563 W:      https://linuxtv.org
4564 W:      http://palosaari.fi/linux/
4565 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4566 T:      git git://linuxtv.org/anttip/media_tree.git
4567 S:      Maintained
4568 F:      drivers/media/dvb-frontends/cxd2820r*
4569
4570 CXGB3 ETHERNET DRIVER (CXGB3)
4571 M:      Vishal Kulkarni <vishal@chelsio.com>
4572 L:      netdev@vger.kernel.org
4573 W:      http://www.chelsio.com
4574 S:      Supported
4575 F:      drivers/net/ethernet/chelsio/cxgb3/
4576
4577 CXGB3 ISCSI DRIVER (CXGB3I)
4578 M:      Karen Xie <kxie@chelsio.com>
4579 L:      linux-scsi@vger.kernel.org
4580 W:      http://www.chelsio.com
4581 S:      Supported
4582 F:      drivers/scsi/cxgbi/cxgb3i
4583
4584 CXGB4 CRYPTO DRIVER (chcr)
4585 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4586 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4587 M:      Rohit Maheshwari <rohitm@chelsio.com>
4588 L:      linux-crypto@vger.kernel.org
4589 W:      http://www.chelsio.com
4590 S:      Supported
4591 F:      drivers/crypto/chelsio
4592
4593 CXGB4 ETHERNET DRIVER (CXGB4)
4594 M:      Vishal Kulkarni <vishal@chelsio.com>
4595 L:      netdev@vger.kernel.org
4596 W:      http://www.chelsio.com
4597 S:      Supported
4598 F:      drivers/net/ethernet/chelsio/cxgb4/
4599
4600 CXGB4 ISCSI DRIVER (CXGB4I)
4601 M:      Karen Xie <kxie@chelsio.com>
4602 L:      linux-scsi@vger.kernel.org
4603 W:      http://www.chelsio.com
4604 S:      Supported
4605 F:      drivers/scsi/cxgbi/cxgb4i
4606
4607 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4608 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4609 L:      linux-rdma@vger.kernel.org
4610 W:      http://www.openfabrics.org
4611 S:      Supported
4612 F:      drivers/infiniband/hw/cxgb4/
4613 F:      include/uapi/rdma/cxgb4-abi.h
4614
4615 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4616 M:      Vishal Kulkarni <vishal@gmail.com>
4617 L:      netdev@vger.kernel.org
4618 W:      http://www.chelsio.com
4619 S:      Supported
4620 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4621
4622 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4623 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4624 M:      Andrew Donnellan <ajd@linux.ibm.com>
4625 L:      linuxppc-dev@lists.ozlabs.org
4626 S:      Supported
4627 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4628 F:      drivers/misc/cxl/
4629 F:      include/misc/cxl*
4630 F:      include/uapi/misc/cxl.h
4631 F:      Documentation/powerpc/cxl.rst
4632 F:      Documentation/ABI/testing/sysfs-class-cxl
4633
4634 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4635 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4636 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4637 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4638 L:      linux-scsi@vger.kernel.org
4639 S:      Supported
4640 F:      drivers/scsi/cxlflash/
4641 F:      include/uapi/scsi/cxlflash_ioctl.h
4642 F:      Documentation/powerpc/cxlflash.rst
4643
4644 CYBERPRO FB DRIVER
4645 M:      Russell King <linux@armlinux.org.uk>
4646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4647 W:      http://www.armlinux.org.uk/
4648 S:      Maintained
4649 F:      drivers/video/fbdev/cyber2000fb.*
4650
4651 CYCLADES ASYNC MUX DRIVER
4652 W:      http://www.cyclades.com/
4653 S:      Orphan
4654 F:      drivers/tty/cyclades.c
4655 F:      include/linux/cyclades.h
4656 F:      include/uapi/linux/cyclades.h
4657
4658 CYCLADES PC300 DRIVER
4659 W:      http://www.cyclades.com/
4660 S:      Orphan
4661 F:      drivers/net/wan/pc300*
4662
4663 CYPRESS_FIRMWARE MEDIA DRIVER
4664 M:      Antti Palosaari <crope@iki.fi>
4665 L:      linux-media@vger.kernel.org
4666 W:      https://linuxtv.org
4667 W:      http://palosaari.fi/linux/
4668 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4669 T:      git git://linuxtv.org/anttip/media_tree.git
4670 S:      Maintained
4671 F:      drivers/media/common/cypress_firmware*
4672
4673 CYTTSP TOUCHSCREEN DRIVER
4674 M:      Ferruh Yigit <fery@cypress.com>
4675 L:      linux-input@vger.kernel.org
4676 S:      Supported
4677 F:      drivers/input/touchscreen/cyttsp*
4678 F:      include/linux/input/cyttsp.h
4679
4680 D-LINK DIR-685 TOUCHKEYS DRIVER
4681 M:      Linus Walleij <linus.walleij@linaro.org>
4682 L:      linux-input@vger.kernel.org
4683 S:      Supported
4684 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4685
4686 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4687 M:      Joshua Kinard <kumba@gentoo.org>
4688 S:      Maintained
4689 F:      drivers/rtc/rtc-ds1685.c
4690 F:      include/linux/rtc/ds1685.h
4691
4692 DAMA SLAVE for AX.25
4693 M:      Joerg Reuter <jreuter@yaina.de>
4694 W:      http://yaina.de/jreuter/
4695 W:      http://www.qsl.net/dl1bke/
4696 L:      linux-hams@vger.kernel.org
4697 S:      Maintained
4698 F:      net/ax25/af_ax25.c
4699 F:      net/ax25/ax25_dev.c
4700 F:      net/ax25/ax25_ds_*
4701 F:      net/ax25/ax25_in.c
4702 F:      net/ax25/ax25_out.c
4703 F:      net/ax25/ax25_timer.c
4704 F:      net/ax25/sysctl_net_ax25.c
4705
4706 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4707 L:      netdev@vger.kernel.org
4708 S:      Orphan
4709 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4710 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4711
4712 DC390/AM53C974 SCSI driver
4713 M:      Hannes Reinecke <hare@suse.com>
4714 L:      linux-scsi@vger.kernel.org
4715 S:      Maintained
4716 F:      drivers/scsi/am53c974.c
4717
4718 DC395x SCSI driver
4719 M:      Oliver Neukum <oliver@neukum.org>
4720 M:      Ali Akcaagac <aliakc@web.de>
4721 M:      Jamie Lenehan <lenehan@twibble.org>
4722 L:      dc395x@twibble.org
4723 W:      http://twibble.org/dist/dc395x/
4724 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4725 S:      Maintained
4726 F:      Documentation/scsi/dc395x.rst
4727 F:      drivers/scsi/dc395x.*
4728
4729 DCCP PROTOCOL
4730 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4731 L:      dccp@vger.kernel.org
4732 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4733 S:      Maintained
4734 F:      include/linux/dccp.h
4735 F:      include/uapi/linux/dccp.h
4736 F:      include/linux/tfrc.h
4737 F:      net/dccp/
4738
4739 DECnet NETWORK LAYER
4740 W:      http://linux-decnet.sourceforge.net
4741 L:      linux-decnet-user@lists.sourceforge.net
4742 S:      Orphan
4743 F:      Documentation/networking/decnet.txt
4744 F:      net/decnet/
4745
4746 DECSTATION PLATFORM SUPPORT
4747 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4748 L:      linux-mips@vger.kernel.org
4749 W:      http://www.linux-mips.org/wiki/DECstation
4750 S:      Maintained
4751 F:      arch/mips/dec/
4752 F:      arch/mips/include/asm/dec/
4753 F:      arch/mips/include/asm/mach-dec/
4754
4755 DEFXX FDDI NETWORK DRIVER
4756 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4757 S:      Maintained
4758 F:      drivers/net/fddi/defxx.*
4759
4760 DEINTERLACE DRIVERS FOR ALLWINNER H3
4761 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4762 L:      linux-media@vger.kernel.org
4763 T:      git git://linuxtv.org/media_tree.git
4764 S:      Maintained
4765 F:      drivers/media/platform/sunxi/sun8i-di/
4766 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4767
4768 DEFZA FDDI NETWORK DRIVER
4769 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4770 S:      Maintained
4771 F:      drivers/net/fddi/defza.*
4772
4773 DELL LAPTOP DRIVER
4774 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4775 M:      Pali Rohár <pali.rohar@gmail.com>
4776 L:      platform-driver-x86@vger.kernel.org
4777 S:      Maintained
4778 F:      drivers/platform/x86/dell-laptop.c
4779
4780 DELL LAPTOP FREEFALL DRIVER
4781 M:      Pali Rohár <pali.rohar@gmail.com>
4782 S:      Maintained
4783 F:      drivers/platform/x86/dell-smo8800.c
4784
4785 DELL LAPTOP RBTN DRIVER
4786 M:      Pali Rohár <pali.rohar@gmail.com>
4787 S:      Maintained
4788 F:      drivers/platform/x86/dell-rbtn.*
4789
4790 DELL LAPTOP SMM DRIVER
4791 M:      Pali Rohár <pali.rohar@gmail.com>
4792 S:      Maintained
4793 F:      drivers/hwmon/dell-smm-hwmon.c
4794 F:      include/uapi/linux/i8k.h
4795
4796 DELL REMOTE BIOS UPDATE DRIVER
4797 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4798 L:      platform-driver-x86@vger.kernel.org
4799 S:      Maintained
4800 F:      drivers/platform/x86/dell_rbu.c
4801
4802 DELL SMBIOS DRIVER
4803 M:      Pali Rohár <pali.rohar@gmail.com>
4804 M:      Mario Limonciello <mario.limonciello@dell.com>
4805 L:      platform-driver-x86@vger.kernel.org
4806 S:      Maintained
4807 F:      drivers/platform/x86/dell-smbios.*
4808
4809 DELL SMBIOS SMM DRIVER
4810 M:      Mario Limonciello <mario.limonciello@dell.com>
4811 L:      platform-driver-x86@vger.kernel.org
4812 S:      Maintained
4813 F:      drivers/platform/x86/dell-smbios-smm.c
4814
4815 DELL SMBIOS WMI DRIVER
4816 M:      Mario Limonciello <mario.limonciello@dell.com>
4817 L:      platform-driver-x86@vger.kernel.org
4818 S:      Maintained
4819 F:      drivers/platform/x86/dell-smbios-wmi.c
4820 F:      tools/wmi/dell-smbios-example.c
4821
4822 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4823 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4824 L:      platform-driver-x86@vger.kernel.org
4825 S:      Maintained
4826 F:      Documentation/driver-api/dcdbas.rst
4827 F:      drivers/platform/x86/dcdbas.*
4828
4829 DELL WMI DESCRIPTOR DRIVER
4830 M:      Mario Limonciello <mario.limonciello@dell.com>
4831 S:      Maintained
4832 F:      drivers/platform/x86/dell-wmi-descriptor.c
4833
4834 DELL WMI NOTIFICATIONS DRIVER
4835 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4836 M:      Pali Rohár <pali.rohar@gmail.com>
4837 S:      Maintained
4838 F:      drivers/platform/x86/dell-wmi.c
4839
4840 DELTA ST MEDIA DRIVER
4841 M:      Hugues Fruchet <hugues.fruchet@st.com>
4842 L:      linux-media@vger.kernel.org
4843 T:      git git://linuxtv.org/media_tree.git
4844 W:      https://linuxtv.org
4845 S:      Supported
4846 F:      drivers/media/platform/sti/delta
4847
4848 DENALI NAND DRIVER
4849 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4850 L:      linux-mtd@lists.infradead.org
4851 S:      Supported
4852 F:      drivers/mtd/nand/raw/denali*
4853
4854 DESIGNWARE EDMA CORE IP DRIVER
4855 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4856 L:      dmaengine@vger.kernel.org
4857 S:      Maintained
4858 F:      drivers/dma/dw-edma/
4859 F:      include/linux/dma/edma.h
4860
4861 DESIGNWARE USB2 DRD IP DRIVER
4862 M:      Minas Harutyunyan <hminas@synopsys.com>
4863 L:      linux-usb@vger.kernel.org
4864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4865 S:      Maintained
4866 F:      drivers/usb/dwc2/
4867
4868 DESIGNWARE USB3 DRD IP DRIVER
4869 M:      Felipe Balbi <balbi@kernel.org>
4870 L:      linux-usb@vger.kernel.org
4871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4872 S:      Maintained
4873 F:      drivers/usb/dwc3/
4874
4875 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4876 M:      Andreas Klinger <ak@it-klinger.de>
4877 L:      linux-iio@vger.kernel.org
4878 S:      Maintained
4879 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4880 F:      drivers/iio/proximity/srf*.c
4881
4882 DEVICE COREDUMP (DEV_COREDUMP)
4883 M:      Johannes Berg <johannes@sipsolutions.net>
4884 L:      linux-kernel@vger.kernel.org
4885 S:      Maintained
4886 F:      drivers/base/devcoredump.c
4887 F:      include/linux/devcoredump.h
4888
4889 DEVICE FREQUENCY (DEVFREQ)
4890 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4891 M:      Kyungmin Park <kyungmin.park@samsung.com>
4892 M:      Chanwoo Choi <cw00.choi@samsung.com>
4893 L:      linux-pm@vger.kernel.org
4894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4895 S:      Maintained
4896 F:      drivers/devfreq/
4897 F:      include/linux/devfreq.h
4898 F:      Documentation/devicetree/bindings/devfreq/
4899 F:      include/trace/events/devfreq.h
4900
4901 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4902 M:      Chanwoo Choi <cw00.choi@samsung.com>
4903 L:      linux-pm@vger.kernel.org
4904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4905 S:      Supported
4906 F:      drivers/devfreq/event/
4907 F:      drivers/devfreq/devfreq-event.c
4908 F:      include/dt-bindings/pmu/exynos_ppmu.h
4909 F:      include/linux/devfreq-event.h
4910 F:      Documentation/devicetree/bindings/devfreq/event/
4911
4912 DEVICE NUMBER REGISTRY
4913 M:      Torben Mathiasen <device@lanana.org>
4914 W:      http://lanana.org/docs/device-list/index.html
4915 S:      Maintained
4916
4917 DEVICE-MAPPER  (LVM)
4918 M:      Alasdair Kergon <agk@redhat.com>
4919 M:      Mike Snitzer <snitzer@redhat.com>
4920 M:      dm-devel@redhat.com
4921 L:      dm-devel@redhat.com
4922 W:      http://sources.redhat.com/dm
4923 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4925 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4926 S:      Maintained
4927 F:      Documentation/admin-guide/device-mapper/
4928 F:      drivers/md/Makefile
4929 F:      drivers/md/Kconfig
4930 F:      drivers/md/dm*
4931 F:      drivers/md/persistent-data/
4932 F:      include/linux/device-mapper.h
4933 F:      include/linux/dm-*.h
4934 F:      include/uapi/linux/dm-*.h
4935
4936 DEVLINK
4937 M:      Jiri Pirko <jiri@mellanox.com>
4938 L:      netdev@vger.kernel.org
4939 S:      Supported
4940 F:      net/core/devlink.c
4941 F:      include/net/devlink.h
4942 F:      include/uapi/linux/devlink.h
4943 F:      Documentation/networking/devlink
4944
4945 DIALOG SEMICONDUCTOR DRIVERS
4946 M:      Support Opensource <support.opensource@diasemi.com>
4947 W:      http://www.dialog-semiconductor.com/products
4948 S:      Supported
4949 F:      Documentation/hwmon/da90??.rst
4950 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4951 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4952 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4953 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4954 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4955 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4956 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4957 F:      drivers/gpio/gpio-da90??.c
4958 F:      drivers/hwmon/da90??-hwmon.c
4959 F:      drivers/iio/adc/da91??-*.c
4960 F:      drivers/input/misc/da90??_onkey.c
4961 F:      drivers/input/touchscreen/da9052_tsi.c
4962 F:      drivers/leds/leds-da90??.c
4963 F:      drivers/mfd/da903x.c
4964 F:      drivers/mfd/da90??-*.c
4965 F:      drivers/mfd/da91??-*.c
4966 F:      drivers/pinctrl/pinctrl-da90??.c
4967 F:      drivers/power/supply/da9052-battery.c
4968 F:      drivers/power/supply/da91??-*.c
4969 F:      drivers/regulator/da903x.c
4970 F:      drivers/regulator/da9???-regulator.[ch]
4971 F:      drivers/regulator/slg51000-regulator.[ch]
4972 F:      drivers/thermal/da90??-thermal.c
4973 F:      drivers/rtc/rtc-da90??.c
4974 F:      drivers/video/backlight/da90??_bl.c
4975 F:      drivers/watchdog/da90??_wdt.c
4976 F:      include/linux/mfd/da903x.h
4977 F:      include/linux/mfd/da9052/
4978 F:      include/linux/mfd/da9055/
4979 F:      include/linux/mfd/da9062/
4980 F:      include/linux/mfd/da9063/
4981 F:      include/linux/mfd/da9150/
4982 F:      include/linux/regulator/da9211.h
4983 F:      include/sound/da[79]*.h
4984 F:      sound/soc/codecs/da[79]*.[ch]
4985
4986 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4987 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4988 L:      linux-gpio@vger.kernel.org
4989 S:      Maintained
4990 F:      drivers/gpio/gpio-gpio-mm.c
4991
4992 DIOLAN U2C-12 I2C DRIVER
4993 M:      Guenter Roeck <linux@roeck-us.net>
4994 L:      linux-i2c@vger.kernel.org
4995 S:      Maintained
4996 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4997
4998 FILESYSTEM DIRECT ACCESS (DAX)
4999 M:      Dan Williams <dan.j.williams@intel.com>
5000 R:      Matthew Wilcox <willy@infradead.org>
5001 R:      Jan Kara <jack@suse.cz>
5002 L:      linux-fsdevel@vger.kernel.org
5003 L:      linux-nvdimm@lists.01.org
5004 S:      Supported
5005 F:      fs/dax.c
5006 F:      include/linux/dax.h
5007 F:      include/trace/events/fs_dax.h
5008
5009 DEVICE DIRECT ACCESS (DAX)
5010 M:      Dan Williams <dan.j.williams@intel.com>
5011 M:      Vishal Verma <vishal.l.verma@intel.com>
5012 M:      Dave Jiang <dave.jiang@intel.com>
5013 L:      linux-nvdimm@lists.01.org
5014 S:      Supported
5015 F:      drivers/dax/
5016
5017 DIRECTORY NOTIFICATION (DNOTIFY)
5018 M:      Jan Kara <jack@suse.cz>
5019 R:      Amir Goldstein <amir73il@gmail.com>
5020 L:      linux-fsdevel@vger.kernel.org
5021 S:      Maintained
5022 F:      Documentation/filesystems/dnotify.txt
5023 F:      fs/notify/dnotify/
5024 F:      include/linux/dnotify.h
5025
5026 DISK GEOMETRY AND PARTITION HANDLING
5027 M:      Andries Brouwer <aeb@cwi.nl>
5028 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5029 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5030 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5031 S:      Maintained
5032
5033 DISKQUOTA
5034 M:      Jan Kara <jack@suse.com>
5035 S:      Maintained
5036 F:      Documentation/filesystems/quota.txt
5037 F:      fs/quota/
5038 F:      include/linux/quota*.h
5039 F:      include/uapi/linux/quota*.h
5040
5041 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5042 M:      Bernie Thompson <bernie@plugable.com>
5043 L:      linux-fbdev@vger.kernel.org
5044 S:      Maintained
5045 W:      http://plugable.com/category/projects/udlfb/
5046 F:      drivers/video/fbdev/udlfb.c
5047 F:      include/video/udlfb.h
5048 F:      Documentation/fb/udlfb.rst
5049
5050 DISTRIBUTED LOCK MANAGER (DLM)
5051 M:      Christine Caulfield <ccaulfie@redhat.com>
5052 M:      David Teigland <teigland@redhat.com>
5053 L:      cluster-devel@redhat.com
5054 W:      http://sources.redhat.com/cluster/
5055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5056 S:      Supported
5057 F:      fs/dlm/
5058
5059 DMA BUFFER SHARING FRAMEWORK
5060 M:      Sumit Semwal <sumit.semwal@linaro.org>
5061 S:      Maintained
5062 L:      linux-media@vger.kernel.org
5063 L:      dri-devel@lists.freedesktop.org
5064 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5065 F:      drivers/dma-buf/
5066 F:      include/linux/dma-buf*
5067 F:      include/linux/dma-resv.h
5068 F:      include/linux/*fence.h
5069 F:      Documentation/driver-api/dma-buf.rst
5070 K:      dma_(buf|fence|resv)
5071 T:      git git://anongit.freedesktop.org/drm/drm-misc
5072
5073 DMA-BUF HEAPS FRAMEWORK
5074 M:      Sumit Semwal <sumit.semwal@linaro.org>
5075 R:      Andrew F. Davis <afd@ti.com>
5076 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5077 R:      Liam Mark <lmark@codeaurora.org>
5078 R:      Laura Abbott <labbott@redhat.com>
5079 R:      Brian Starkey <Brian.Starkey@arm.com>
5080 R:      John Stultz <john.stultz@linaro.org>
5081 S:      Maintained
5082 L:      linux-media@vger.kernel.org
5083 L:      dri-devel@lists.freedesktop.org
5084 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5085 F:      include/uapi/linux/dma-heap.h
5086 F:      include/linux/dma-heap.h
5087 F:      drivers/dma-buf/dma-heap.c
5088 F:      drivers/dma-buf/heaps/*
5089 T:      git git://anongit.freedesktop.org/drm/drm-misc
5090
5091 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5092 M:      Vinod Koul <vkoul@kernel.org>
5093 L:      dmaengine@vger.kernel.org
5094 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5095 S:      Maintained
5096 F:      drivers/dma/
5097 F:      include/linux/dmaengine.h
5098 F:      include/linux/of_dma.h
5099 F:      Documentation/devicetree/bindings/dma/
5100 F:      Documentation/driver-api/dmaengine/
5101 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
5102
5103 DMA MAPPING HELPERS
5104 M:      Christoph Hellwig <hch@lst.de>
5105 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5106 R:      Robin Murphy <robin.murphy@arm.com>
5107 L:      iommu@lists.linux-foundation.org
5108 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5109 W:      http://git.infradead.org/users/hch/dma-mapping.git
5110 S:      Supported
5111 F:      kernel/dma/
5112 F:      include/asm-generic/dma-mapping.h
5113 F:      include/linux/dma-direct.h
5114 F:      include/linux/dma-mapping.h
5115 F:      include/linux/dma-noncoherent.h
5116
5117 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5118 M:      Lukasz Luba <lukasz.luba@arm.com>
5119 L:      linux-pm@vger.kernel.org
5120 L:      linux-samsung-soc@vger.kernel.org
5121 S:      Maintained
5122 F:      drivers/memory/samsung/exynos5422-dmc.c
5123 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5124
5125 DME1737 HARDWARE MONITOR DRIVER
5126 M:      Juerg Haefliger <juergh@gmail.com>
5127 L:      linux-hwmon@vger.kernel.org
5128 S:      Maintained
5129 F:      Documentation/hwmon/dme1737.rst
5130 F:      drivers/hwmon/dme1737.c
5131
5132 DMI/SMBIOS SUPPORT
5133 M:      Jean Delvare <jdelvare@suse.com>
5134 S:      Maintained
5135 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5136 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5137 F:      drivers/firmware/dmi-id.c
5138 F:      drivers/firmware/dmi_scan.c
5139 F:      include/linux/dmi.h
5140
5141 DOCUMENTATION
5142 M:      Jonathan Corbet <corbet@lwn.net>
5143 L:      linux-doc@vger.kernel.org
5144 S:      Maintained
5145 F:      Documentation/
5146 F:      scripts/documentation-file-ref-check
5147 F:      scripts/kernel-doc
5148 F:      scripts/sphinx-pre-install
5149 X:      Documentation/ABI/
5150 X:      Documentation/firmware-guide/acpi/
5151 X:      Documentation/devicetree/
5152 X:      Documentation/i2c/
5153 X:      Documentation/media/
5154 X:      Documentation/power/
5155 X:      Documentation/spi/
5156 T:      git git://git.lwn.net/linux.git docs-next
5157
5158 DOCUMENTATION/ITALIAN
5159 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5160 L:      linux-doc@vger.kernel.org
5161 S:      Maintained
5162 F:      Documentation/translations/it_IT
5163
5164 DOCUMENTATION SCRIPTS
5165 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5166 L:      linux-doc@vger.kernel.org
5167 S:      Maintained
5168 F:      scripts/documentation-file-ref-check
5169 F:      scripts/sphinx-pre-install
5170 F:      Documentation/sphinx/parse-headers.pl
5171
5172 DONGWOON DW9714 LENS VOICE COIL DRIVER
5173 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5174 L:      linux-media@vger.kernel.org
5175 T:      git git://linuxtv.org/media_tree.git
5176 S:      Maintained
5177 F:      drivers/media/i2c/dw9714.c
5178 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5179
5180 DONGWOON DW9807 LENS VOICE COIL DRIVER
5181 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5182 L:      linux-media@vger.kernel.org
5183 T:      git git://linuxtv.org/media_tree.git
5184 S:      Maintained
5185 F:      drivers/media/i2c/dw9807-vcm.c
5186 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5187
5188 DOUBLETALK DRIVER
5189 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5190 L:      blinux-list@redhat.com
5191 S:      Maintained
5192 F:      drivers/char/dtlk.c
5193 F:      include/linux/dtlk.h
5194
5195 DPAA2 DATAPATH I/O (DPIO) DRIVER
5196 M:      Roy Pledge <Roy.Pledge@nxp.com>
5197 L:      linux-kernel@vger.kernel.org
5198 S:      Maintained
5199 F:      drivers/soc/fsl/dpio
5200
5201 DPAA2 ETHERNET DRIVER
5202 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5203 L:      netdev@vger.kernel.org
5204 S:      Maintained
5205 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5206 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5207 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5208 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5209 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5210 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5211 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5212 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5213 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5214
5215 DPAA2 ETHERNET SWITCH DRIVER
5216 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5217 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5218 L:      linux-kernel@vger.kernel.org
5219 S:      Maintained
5220 F:      drivers/staging/fsl-dpaa2/ethsw
5221
5222 DPT_I2O SCSI RAID DRIVER
5223 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5224 L:      linux-scsi@vger.kernel.org
5225 W:      http://www.adaptec.com/
5226 S:      Maintained
5227 F:      drivers/scsi/dpt*
5228 F:      drivers/scsi/dpt/
5229
5230 DRBD DRIVER
5231 M:      Philipp Reisner <philipp.reisner@linbit.com>
5232 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5233 L:      drbd-dev@lists.linbit.com
5234 W:      http://www.drbd.org
5235 T:      git git://git.linbit.com/linux-drbd.git
5236 T:      git git://git.linbit.com/drbd-8.4.git
5237 S:      Supported
5238 F:      drivers/block/drbd/
5239 F:      lib/lru_cache.c
5240 F:      Documentation/admin-guide/blockdev/
5241
5242 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5243 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5244 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5246 S:      Supported
5247 F:      Documentation/core-api/kobject.rst
5248 F:      drivers/base/
5249 F:      fs/debugfs/
5250 F:      fs/sysfs/
5251 F:      include/linux/debugfs.h
5252 F:      include/linux/kobj*
5253 F:      lib/kobj*
5254
5255 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5256 M:      Kevin Hilman <khilman@kernel.org>
5257 M:      Nishanth Menon <nm@ti.com>
5258 S:      Maintained
5259 F:      drivers/power/avs/
5260 F:      include/linux/power/smartreflex.h
5261 L:      linux-pm@vger.kernel.org
5262
5263 DRM DRIVER FOR ARM PL111 CLCD
5264 M:      Eric Anholt <eric@anholt.net>
5265 T:      git git://anongit.freedesktop.org/drm/drm-misc
5266 S:      Supported
5267 F:      drivers/gpu/drm/pl111/
5268
5269 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5270 M:      Linus Walleij <linus.walleij@linaro.org>
5271 T:      git git://anongit.freedesktop.org/drm/drm-misc
5272 S:      Maintained
5273 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5274 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5275
5276 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5277 M:      Dave Airlie <airlied@redhat.com>
5278 S:      Odd Fixes
5279 F:      drivers/gpu/drm/ast/
5280
5281 DRM DRIVER FOR ASPEED BMC GFX
5282 M:      Joel Stanley <joel@jms.id.au>
5283 L:      linux-aspeed@lists.ozlabs.org
5284 T:      git git://anongit.freedesktop.org/drm/drm-misc
5285 S:      Supported
5286 F:      drivers/gpu/drm/aspeed/
5287 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5288
5289 DRM DRIVER FOR BOCHS VIRTUAL GPU
5290 M:      Gerd Hoffmann <kraxel@redhat.com>
5291 L:      virtualization@lists.linux-foundation.org
5292 T:      git git://anongit.freedesktop.org/drm/drm-misc
5293 S:      Maintained
5294 F:      drivers/gpu/drm/bochs/
5295
5296 DRM DRIVER FOR BOE HIMAX8279D PANELS
5297 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5298 S:      Maintained
5299 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5300 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.txt
5301
5302 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5303 M:      Linus Walleij <linus.walleij@linaro.org>
5304 T:      git git://anongit.freedesktop.org/drm/drm-misc
5305 S:      Maintained
5306 F:      drivers/gpu/drm/tve200/
5307
5308 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5309 M:      Icenowy Zheng <icenowy@aosc.io>
5310 S:      Maintained
5311 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5312 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5313
5314 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5315 M:      Jagan Teki <jagan@amarulasolutions.com>
5316 S:      Maintained
5317 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5318 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5319
5320 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5321 M:      Hans de Goede <hdegoede@redhat.com>
5322 T:      git git://anongit.freedesktop.org/drm/drm-misc
5323 S:      Maintained
5324 F:      drivers/gpu/drm/tiny/gm12u320.c
5325
5326 DRM DRIVER FOR ILITEK ILI9225 PANELS
5327 M:      David Lechner <david@lechnology.com>
5328 T:      git git://anongit.freedesktop.org/drm/drm-misc
5329 S:      Maintained
5330 F:      drivers/gpu/drm/tiny/ili9225.c
5331 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5332
5333 DRM DRIVER FOR ILITEK ILI9486 PANELS
5334 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5335 T:      git git://anongit.freedesktop.org/drm/drm-misc
5336 S:      Maintained
5337 F:      drivers/gpu/drm/tiny/ili9486.c
5338 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5339
5340 DRM DRIVER FOR HX8357D PANELS
5341 M:      Eric Anholt <eric@anholt.net>
5342 T:      git git://anongit.freedesktop.org/drm/drm-misc
5343 S:      Maintained
5344 F:      drivers/gpu/drm/tiny/hx8357d.c
5345 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5346
5347 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5348 S:      Orphan / Obsolete
5349 F:      drivers/gpu/drm/i810/
5350 F:      include/uapi/drm/i810_drm.h
5351
5352 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5353 S:      Orphan / Obsolete
5354 F:      drivers/gpu/drm/mga/
5355 F:      include/uapi/drm/mga_drm.h
5356
5357 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5358 M:      Dave Airlie <airlied@redhat.com>
5359 S:      Odd Fixes
5360 F:      drivers/gpu/drm/mgag200/
5361
5362 DRM DRIVER FOR MI0283QT
5363 M:      Noralf Trønnes <noralf@tronnes.org>
5364 T:      git git://anongit.freedesktop.org/drm/drm-misc
5365 S:      Maintained
5366 F:      drivers/gpu/drm/tiny/mi0283qt.c
5367 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5368
5369 DRM DRIVER FOR MSM ADRENO GPU
5370 M:      Rob Clark <robdclark@gmail.com>
5371 M:      Sean Paul <sean@poorly.run>
5372 L:      linux-arm-msm@vger.kernel.org
5373 L:      dri-devel@lists.freedesktop.org
5374 L:      freedreno@lists.freedesktop.org
5375 T:      git https://gitlab.freedesktop.org/drm/msm.git
5376 S:      Maintained
5377 F:      drivers/gpu/drm/msm/
5378 F:      include/uapi/drm/msm_drm.h
5379 F:      Documentation/devicetree/bindings/display/msm/
5380
5381 DRM DRIVER FOR NOVATEK NT35510 PANELS
5382 M:      Linus Walleij <linus.walleij@linaro.org>
5383 T:      git git://anongit.freedesktop.org/drm/drm-misc
5384 S:      Maintained
5385 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5386 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5387
5388 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5389 M:      Ben Skeggs <bskeggs@redhat.com>
5390 L:      dri-devel@lists.freedesktop.org
5391 L:      nouveau@lists.freedesktop.org
5392 T:      git git://github.com/skeggsb/linux
5393 S:      Supported
5394 F:      drivers/gpu/drm/nouveau/
5395 F:      include/uapi/drm/nouveau_drm.h
5396
5397 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5398 M:      Stefan Mavrodiev <stefan@olimex.com>
5399 S:      Maintained
5400 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5401 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5402
5403 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5404 M:      Noralf Trønnes <noralf@tronnes.org>
5405 T:      git git://anongit.freedesktop.org/drm/drm-misc
5406 S:      Maintained
5407 F:      drivers/gpu/drm/tiny/repaper.c
5408 F:      Documentation/devicetree/bindings/display/repaper.txt
5409
5410 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5411 M:      Dave Airlie <airlied@redhat.com>
5412 M:      Gerd Hoffmann <kraxel@redhat.com>
5413 L:      virtualization@lists.linux-foundation.org
5414 T:      git git://anongit.freedesktop.org/drm/drm-misc
5415 S:      Obsolete
5416 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5417 F:      drivers/gpu/drm/cirrus/
5418
5419 DRM DRIVER FOR QXL VIRTUAL GPU
5420 M:      Dave Airlie <airlied@redhat.com>
5421 M:      Gerd Hoffmann <kraxel@redhat.com>
5422 L:      virtualization@lists.linux-foundation.org
5423 L:      spice-devel@lists.freedesktop.org
5424 T:      git git://anongit.freedesktop.org/drm/drm-misc
5425 S:      Maintained
5426 F:      drivers/gpu/drm/qxl/
5427 F:      include/uapi/drm/qxl_drm.h
5428
5429 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5430 M:      Robert Chiras <robert.chiras@nxp.com>
5431 S:      Maintained
5432 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5433 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5434
5435 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5436 S:      Orphan / Obsolete
5437 F:      drivers/gpu/drm/r128/
5438 F:      include/uapi/drm/r128_drm.h
5439
5440 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5441 M:      Guido Günther <agx@sigxcpu.org>
5442 R:      Purism Kernel Team <kernel@puri.sm>
5443 S:      Maintained
5444 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5445 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5446
5447 DRM DRIVER FOR SAVAGE VIDEO CARDS
5448 S:      Orphan / Obsolete
5449 F:      drivers/gpu/drm/savage/
5450 F:      include/uapi/drm/savage_drm.h
5451
5452 DRM DRIVER FOR SIS VIDEO CARDS
5453 S:      Orphan / Obsolete
5454 F:      drivers/gpu/drm/sis/
5455 F:      include/uapi/drm/sis_drm.h
5456
5457 DRM DRIVER FOR SITRONIX ST7701 PANELS
5458 M:      Jagan Teki <jagan@amarulasolutions.com>
5459 S:      Maintained
5460 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5461 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5462
5463 DRM DRIVER FOR SITRONIX ST7586 PANELS
5464 M:      David Lechner <david@lechnology.com>
5465 T:      git git://anongit.freedesktop.org/drm/drm-misc
5466 S:      Maintained
5467 F:      drivers/gpu/drm/tiny/st7586.c
5468 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5469
5470 DRM DRIVER FOR SITRONIX ST7735R PANELS
5471 M:      David Lechner <david@lechnology.com>
5472 T:      git git://anongit.freedesktop.org/drm/drm-misc
5473 S:      Maintained
5474 F:      drivers/gpu/drm/tiny/st7735r.c
5475 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5476
5477 DRM DRIVER FOR SONY ACX424AKP PANELS
5478 M:      Linus Walleij <linus.walleij@linaro.org>
5479 T:      git git://anongit.freedesktop.org/drm/drm-misc
5480 S:      Maintained
5481 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5482
5483 DRM DRIVER FOR ST-ERICSSON MCDE
5484 M:      Linus Walleij <linus.walleij@linaro.org>
5485 T:      git git://anongit.freedesktop.org/drm/drm-misc
5486 S:      Maintained
5487 F:      drivers/gpu/drm/mcde/
5488 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5489
5490 DRM DRIVER FOR TDFX VIDEO CARDS
5491 S:      Orphan / Obsolete
5492 F:      drivers/gpu/drm/tdfx/
5493
5494 DRM DRIVER FOR TPO TPG110 PANELS
5495 M:      Linus Walleij <linus.walleij@linaro.org>
5496 T:      git git://anongit.freedesktop.org/drm/drm-misc
5497 S:      Maintained
5498 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5499 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5500
5501 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5502 M:      Dave Airlie <airlied@redhat.com>
5503 R:      Sean Paul <sean@poorly.run>
5504 L:      dri-devel@lists.freedesktop.org
5505 S:      Odd Fixes
5506 F:      drivers/gpu/drm/udl/
5507 T:      git git://anongit.freedesktop.org/drm/drm-misc
5508
5509 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5510 M:      Hans de Goede <hdegoede@redhat.com>
5511 L:      dri-devel@lists.freedesktop.org
5512 S:      Maintained
5513 F:      drivers/gpu/drm/vboxvideo/
5514 T:      git git://anongit.freedesktop.org/drm/drm-misc
5515
5516 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5517 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5518 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5519 R:      Daniel Vetter <daniel@ffwll.ch>
5520 T:      git git://anongit.freedesktop.org/drm/drm-misc
5521 S:      Maintained
5522 L:      dri-devel@lists.freedesktop.org
5523 F:      drivers/gpu/drm/vkms/
5524 F:      Documentation/gpu/vkms.rst
5525
5526 DRM DRIVER FOR VMWARE VIRTUAL GPU
5527 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5528 M:      Thomas Hellstrom <thellstrom@vmware.com>
5529 L:      dri-devel@lists.freedesktop.org
5530 T:      git git://people.freedesktop.org/~thomash/linux
5531 S:      Supported
5532 F:      drivers/gpu/drm/vmwgfx/
5533 F:      include/uapi/drm/vmwgfx_drm.h
5534
5535 DRM DRIVERS
5536 M:      David Airlie <airlied@linux.ie>
5537 M:      Daniel Vetter <daniel@ffwll.ch>
5538 L:      dri-devel@lists.freedesktop.org
5539 T:      git git://anongit.freedesktop.org/drm/drm
5540 B:      https://bugs.freedesktop.org/
5541 C:      irc://chat.freenode.net/dri-devel
5542 S:      Maintained
5543 F:      drivers/gpu/drm/
5544 F:      drivers/gpu/vga/
5545 F:      Documentation/devicetree/bindings/display/
5546 F:      Documentation/devicetree/bindings/gpu/
5547 F:      Documentation/gpu/
5548 F:      include/drm/
5549 F:      include/uapi/drm/
5550 F:      include/linux/vga*
5551
5552 DRM DRIVERS AND MISC GPU PATCHES
5553 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5554 M:      Maxime Ripard <mripard@kernel.org>
5555 M:      Thomas Zimmermann <tzimmermann@suse.de>
5556 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5557 S:      Maintained
5558 T:      git git://anongit.freedesktop.org/drm/drm-misc
5559 F:      Documentation/gpu/
5560 F:      drivers/gpu/vga/
5561 F:      drivers/gpu/drm/*
5562 F:      include/drm/drm*
5563 F:      include/uapi/drm/drm*
5564 F:      include/linux/vga*
5565
5566 DRM DRIVERS FOR ALLWINNER A10
5567 M:      Maxime Ripard <mripard@kernel.org>
5568 M:      Chen-Yu Tsai <wens@csie.org>
5569 L:      dri-devel@lists.freedesktop.org
5570 S:      Supported
5571 F:      drivers/gpu/drm/sun4i/
5572 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5573 T:      git git://anongit.freedesktop.org/drm/drm-misc
5574
5575 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5576 M:      Maxime Ripard <mripard@kernel.org>
5577 M:      Chen-Yu Tsai <wens@csie.org>
5578 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5579 L:      dri-devel@lists.freedesktop.org
5580 S:      Supported
5581 F:      drivers/gpu/drm/sun4i/sun8i*
5582 T:      git git://anongit.freedesktop.org/drm/drm-misc
5583
5584 DRM DRIVERS FOR AMLOGIC SOCS
5585 M:      Neil Armstrong <narmstrong@baylibre.com>
5586 L:      dri-devel@lists.freedesktop.org
5587 L:      linux-amlogic@lists.infradead.org
5588 W:      http://linux-meson.com/
5589 S:      Supported
5590 F:      drivers/gpu/drm/meson/
5591 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5592 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5593 F:      Documentation/gpu/meson.rst
5594 T:      git git://anongit.freedesktop.org/drm/drm-misc
5595
5596 DRM DRIVERS FOR ATMEL HLCDC
5597 M:      Sam Ravnborg <sam@ravnborg.org>
5598 M:      Boris Brezillon <bbrezillon@kernel.org>
5599 L:      dri-devel@lists.freedesktop.org
5600 S:      Supported
5601 F:      drivers/gpu/drm/atmel-hlcdc/
5602 F:      Documentation/devicetree/bindings/display/atmel/
5603 T:      git git://anongit.freedesktop.org/drm/drm-misc
5604
5605 DRM DRIVERS FOR BRIDGE CHIPS
5606 M:      Andrzej Hajda <a.hajda@samsung.com>
5607 M:      Neil Armstrong <narmstrong@baylibre.com>
5608 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5609 R:      Jonas Karlman <jonas@kwiboo.se>
5610 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5611 S:      Maintained
5612 T:      git git://anongit.freedesktop.org/drm/drm-misc
5613 F:      drivers/gpu/drm/bridge/
5614
5615 DRM DRIVERS FOR EXYNOS
5616 M:      Inki Dae <inki.dae@samsung.com>
5617 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5618 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5619 M:      Kyungmin Park <kyungmin.park@samsung.com>
5620 L:      dri-devel@lists.freedesktop.org
5621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5622 S:      Supported
5623 F:      drivers/gpu/drm/exynos/
5624 F:      include/uapi/drm/exynos_drm.h
5625 F:      Documentation/devicetree/bindings/display/exynos/
5626
5627 DRM DRIVERS FOR FREESCALE DCU
5628 M:      Stefan Agner <stefan@agner.ch>
5629 M:      Alison Wang <alison.wang@nxp.com>
5630 L:      dri-devel@lists.freedesktop.org
5631 S:      Supported
5632 F:      drivers/gpu/drm/fsl-dcu/
5633 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5634 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5635 T:      git git://anongit.freedesktop.org/drm/drm-misc
5636
5637 DRM DRIVERS FOR FREESCALE IMX
5638 M:      Philipp Zabel <p.zabel@pengutronix.de>
5639 L:      dri-devel@lists.freedesktop.org
5640 S:      Maintained
5641 F:      drivers/gpu/drm/imx/
5642 F:      drivers/gpu/ipu-v3/
5643 F:      Documentation/devicetree/bindings/display/imx/
5644
5645 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5646 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5647 L:      dri-devel@lists.freedesktop.org
5648 T:      git git://github.com/patjak/drm-gma500
5649 S:      Maintained
5650 F:      drivers/gpu/drm/gma500/
5651
5652 DRM DRIVERS FOR HISILICON
5653 M:      Xinliang Liu <xinliang.liu@linaro.org>
5654 M:      Rongrong Zou <zourongrong@gmail.com>
5655 R:      John Stultz <john.stultz@linaro.org>
5656 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5657 R:      Chen Feng <puck.chen@hisilicon.com>
5658 L:      dri-devel@lists.freedesktop.org
5659 T:      git git://anongit.freedesktop.org/drm/drm-misc
5660 S:      Maintained
5661 F:      drivers/gpu/drm/hisilicon/
5662 F:      Documentation/devicetree/bindings/display/hisilicon/
5663
5664 DRM DRIVERS FOR LIMA
5665 M:      Qiang Yu <yuq825@gmail.com>
5666 L:      dri-devel@lists.freedesktop.org
5667 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5668 S:      Maintained
5669 F:      drivers/gpu/drm/lima/
5670 F:      include/uapi/drm/lima_drm.h
5671 T:      git git://anongit.freedesktop.org/drm/drm-misc
5672
5673 DRM DRIVERS FOR MEDIATEK
5674 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5675 M:      Philipp Zabel <p.zabel@pengutronix.de>
5676 L:      dri-devel@lists.freedesktop.org
5677 S:      Supported
5678 F:      drivers/gpu/drm/mediatek/
5679 F:      Documentation/devicetree/bindings/display/mediatek/
5680
5681 DRM DRIVERS FOR NVIDIA TEGRA
5682 M:      Thierry Reding <thierry.reding@gmail.com>
5683 L:      dri-devel@lists.freedesktop.org
5684 L:      linux-tegra@vger.kernel.org
5685 T:      git git://anongit.freedesktop.org/tegra/linux.git
5686 S:      Supported
5687 F:      drivers/gpu/drm/tegra/
5688 F:      drivers/gpu/host1x/
5689 F:      include/linux/host1x.h
5690 F:      include/uapi/drm/tegra_drm.h
5691 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5692
5693 DRM DRIVERS FOR RENESAS
5694 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5695 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5696 L:      dri-devel@lists.freedesktop.org
5697 L:      linux-renesas-soc@vger.kernel.org
5698 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5699 S:      Supported
5700 F:      drivers/gpu/drm/rcar-du/
5701 F:      drivers/gpu/drm/shmobile/
5702 F:      include/linux/platform_data/shmob_drm.h
5703 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5704 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5705 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5706
5707 DRM DRIVERS FOR ROCKCHIP
5708 M:      Sandy Huang <hjc@rock-chips.com>
5709 M:      Heiko Stübner <heiko@sntech.de>
5710 L:      dri-devel@lists.freedesktop.org
5711 S:      Maintained
5712 F:      drivers/gpu/drm/rockchip/
5713 F:      Documentation/devicetree/bindings/display/rockchip/
5714 T:      git git://anongit.freedesktop.org/drm/drm-misc
5715
5716 DRM DRIVERS FOR STI
5717 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5718 M:      Vincent Abriou <vincent.abriou@st.com>
5719 L:      dri-devel@lists.freedesktop.org
5720 T:      git git://anongit.freedesktop.org/drm/drm-misc
5721 S:      Maintained
5722 F:      drivers/gpu/drm/sti
5723 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5724
5725 DRM DRIVERS FOR STM
5726 M:      Yannick Fertre <yannick.fertre@st.com>
5727 M:      Philippe Cornu <philippe.cornu@st.com>
5728 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5729 M:      Vincent Abriou <vincent.abriou@st.com>
5730 L:      dri-devel@lists.freedesktop.org
5731 T:      git git://anongit.freedesktop.org/drm/drm-misc
5732 S:      Maintained
5733 F:      drivers/gpu/drm/stm
5734 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5735
5736 DRM DRIVERS FOR TI LCDC
5737 M:      Jyri Sarha <jsarha@ti.com>
5738 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5739 L:      dri-devel@lists.freedesktop.org
5740 S:      Maintained
5741 F:      drivers/gpu/drm/tilcdc/
5742 F:      Documentation/devicetree/bindings/display/tilcdc/
5743
5744 DRM DRIVERS FOR TI OMAP
5745 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5746 L:      dri-devel@lists.freedesktop.org
5747 S:      Maintained
5748 F:      drivers/gpu/drm/omapdrm/
5749 F:      Documentation/devicetree/bindings/display/ti/
5750
5751 DRM DRIVERS FOR TI KEYSTONE
5752 M:      Jyri Sarha <jsarha@ti.com>
5753 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5754 L:      dri-devel@lists.freedesktop.org
5755 S:      Maintained
5756 F:      drivers/gpu/drm/tidss/
5757 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5758 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5759 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5760 T:      git git://anongit.freedesktop.org/drm/drm-misc
5761
5762 DRM DRIVERS FOR V3D
5763 M:      Eric Anholt <eric@anholt.net>
5764 S:      Supported
5765 F:      drivers/gpu/drm/v3d/
5766 F:      include/uapi/drm/v3d_drm.h
5767 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5768 T:      git git://anongit.freedesktop.org/drm/drm-misc
5769
5770 DRM DRIVERS FOR VC4
5771 M:      Eric Anholt <eric@anholt.net>
5772 T:      git git://github.com/anholt/linux
5773 S:      Supported
5774 F:      drivers/gpu/drm/vc4/
5775 F:      include/uapi/drm/vc4_drm.h
5776 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5777 T:      git git://anongit.freedesktop.org/drm/drm-misc
5778
5779 DRM DRIVERS FOR VIVANTE GPU IP
5780 M:      Lucas Stach <l.stach@pengutronix.de>
5781 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5782 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5783 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5784 L:      dri-devel@lists.freedesktop.org
5785 S:      Maintained
5786 F:      drivers/gpu/drm/etnaviv/
5787 F:      include/uapi/drm/etnaviv_drm.h
5788 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5789
5790 DRM DRIVERS FOR ZTE ZX
5791 M:      Shawn Guo <shawnguo@kernel.org>
5792 L:      dri-devel@lists.freedesktop.org
5793 S:      Maintained
5794 F:      drivers/gpu/drm/zte/
5795 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5796 T:      git git://anongit.freedesktop.org/drm/drm-misc
5797
5798 DRM PANEL DRIVERS
5799 M:      Thierry Reding <thierry.reding@gmail.com>
5800 R:      Sam Ravnborg <sam@ravnborg.org>
5801 L:      dri-devel@lists.freedesktop.org
5802 T:      git git://anongit.freedesktop.org/drm/drm-misc
5803 S:      Maintained
5804 F:      drivers/gpu/drm/drm_panel.c
5805 F:      drivers/gpu/drm/panel/
5806 F:      include/drm/drm_panel.h
5807 F:      Documentation/devicetree/bindings/display/panel/
5808
5809 DRM DRIVERS FOR XEN
5810 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5811 T:      git git://anongit.freedesktop.org/drm/drm-misc
5812 L:      dri-devel@lists.freedesktop.org
5813 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5814 S:      Supported
5815 F:      drivers/gpu/drm/xen/
5816 F:      Documentation/gpu/xen-front.rst
5817
5818 DRM TTM SUBSYSTEM
5819 M:      Christian Koenig <christian.koenig@amd.com>
5820 M:      Huang Rui <ray.huang@amd.com>
5821 T:      git git://people.freedesktop.org/~agd5f/linux
5822 S:      Maintained
5823 L:      dri-devel@lists.freedesktop.org
5824 F:      include/drm/ttm/
5825 F:      drivers/gpu/drm/ttm/
5826
5827 DSBR100 USB FM RADIO DRIVER
5828 M:      Alexey Klimov <klimov.linux@gmail.com>
5829 L:      linux-media@vger.kernel.org
5830 T:      git git://linuxtv.org/media_tree.git
5831 S:      Maintained
5832 F:      drivers/media/radio/dsbr100.c
5833
5834 DT3155 MEDIA DRIVER
5835 M:      Hans Verkuil <hverkuil@xs4all.nl>
5836 L:      linux-media@vger.kernel.org
5837 T:      git git://linuxtv.org/media_tree.git
5838 W:      https://linuxtv.org
5839 S:      Odd Fixes
5840 F:      drivers/media/pci/dt3155/
5841
5842 DVB_USB_AF9015 MEDIA DRIVER
5843 M:      Antti Palosaari <crope@iki.fi>
5844 L:      linux-media@vger.kernel.org
5845 W:      https://linuxtv.org
5846 W:      http://palosaari.fi/linux/
5847 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5848 T:      git git://linuxtv.org/anttip/media_tree.git
5849 S:      Maintained
5850 F:      drivers/media/usb/dvb-usb-v2/af9015*
5851
5852 DVB_USB_AF9035 MEDIA DRIVER
5853 M:      Antti Palosaari <crope@iki.fi>
5854 L:      linux-media@vger.kernel.org
5855 W:      https://linuxtv.org
5856 W:      http://palosaari.fi/linux/
5857 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5858 T:      git git://linuxtv.org/anttip/media_tree.git
5859 S:      Maintained
5860 F:      drivers/media/usb/dvb-usb-v2/af9035*
5861
5862 DVB_USB_ANYSEE MEDIA DRIVER
5863 M:      Antti Palosaari <crope@iki.fi>
5864 L:      linux-media@vger.kernel.org
5865 W:      https://linuxtv.org
5866 W:      http://palosaari.fi/linux/
5867 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5868 T:      git git://linuxtv.org/anttip/media_tree.git
5869 S:      Maintained
5870 F:      drivers/media/usb/dvb-usb-v2/anysee*
5871
5872 DVB_USB_AU6610 MEDIA DRIVER
5873 M:      Antti Palosaari <crope@iki.fi>
5874 L:      linux-media@vger.kernel.org
5875 W:      https://linuxtv.org
5876 W:      http://palosaari.fi/linux/
5877 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5878 T:      git git://linuxtv.org/anttip/media_tree.git
5879 S:      Maintained
5880 F:      drivers/media/usb/dvb-usb-v2/au6610*
5881
5882 DVB_USB_CE6230 MEDIA DRIVER
5883 M:      Antti Palosaari <crope@iki.fi>
5884 L:      linux-media@vger.kernel.org
5885 W:      https://linuxtv.org
5886 W:      http://palosaari.fi/linux/
5887 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5888 T:      git git://linuxtv.org/anttip/media_tree.git
5889 S:      Maintained
5890 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5891
5892 DVB_USB_CXUSB MEDIA DRIVER
5893 M:      Michael Krufky <mkrufky@linuxtv.org>
5894 L:      linux-media@vger.kernel.org
5895 W:      https://linuxtv.org
5896 W:      http://github.com/mkrufky
5897 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5898 T:      git git://linuxtv.org/media_tree.git
5899 S:      Maintained
5900 F:      drivers/media/usb/dvb-usb/cxusb*
5901
5902 DVB_USB_EC168 MEDIA DRIVER
5903 M:      Antti Palosaari <crope@iki.fi>
5904 L:      linux-media@vger.kernel.org
5905 W:      https://linuxtv.org
5906 W:      http://palosaari.fi/linux/
5907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5908 T:      git git://linuxtv.org/anttip/media_tree.git
5909 S:      Maintained
5910 F:      drivers/media/usb/dvb-usb-v2/ec168*
5911
5912 DVB_USB_GL861 MEDIA DRIVER
5913 M:      Antti Palosaari <crope@iki.fi>
5914 L:      linux-media@vger.kernel.org
5915 W:      https://linuxtv.org
5916 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5917 T:      git git://linuxtv.org/anttip/media_tree.git
5918 S:      Maintained
5919 F:      drivers/media/usb/dvb-usb-v2/gl861*
5920
5921 DVB_USB_MXL111SF MEDIA DRIVER
5922 M:      Michael Krufky <mkrufky@linuxtv.org>
5923 L:      linux-media@vger.kernel.org
5924 W:      https://linuxtv.org
5925 W:      http://github.com/mkrufky
5926 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5927 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5928 S:      Maintained
5929 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5930
5931 DVB_USB_RTL28XXU MEDIA DRIVER
5932 M:      Antti Palosaari <crope@iki.fi>
5933 L:      linux-media@vger.kernel.org
5934 W:      https://linuxtv.org
5935 W:      http://palosaari.fi/linux/
5936 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5937 T:      git git://linuxtv.org/anttip/media_tree.git
5938 S:      Maintained
5939 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5940
5941 DVB_USB_V2 MEDIA DRIVER
5942 M:      Antti Palosaari <crope@iki.fi>
5943 L:      linux-media@vger.kernel.org
5944 W:      https://linuxtv.org
5945 W:      http://palosaari.fi/linux/
5946 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5947 T:      git git://linuxtv.org/anttip/media_tree.git
5948 S:      Maintained
5949 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5950 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5951
5952 DYNAMIC DEBUG
5953 M:      Jason Baron <jbaron@akamai.com>
5954 S:      Maintained
5955 F:      lib/dynamic_debug.c
5956 F:      include/linux/dynamic_debug.h
5957
5958 DYNAMIC INTERRUPT MODERATION
5959 M:      Tal Gilboa <talgi@mellanox.com>
5960 S:      Maintained
5961 F:      include/linux/dim.h
5962 F:      lib/dim/
5963
5964 DZ DECSTATION DZ11 SERIAL DRIVER
5965 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
5966 S:      Maintained
5967 F:      drivers/tty/serial/dz.*
5968
5969 E3X0 POWER BUTTON DRIVER
5970 M:      Moritz Fischer <moritz.fischer@ettus.com>
5971 L:      usrp-users@lists.ettus.com
5972 W:      http://www.ettus.com
5973 S:      Supported
5974 F:      drivers/input/misc/e3x0-button.c
5975 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5976
5977 E4000 MEDIA DRIVER
5978 M:      Antti Palosaari <crope@iki.fi>
5979 L:      linux-media@vger.kernel.org
5980 W:      https://linuxtv.org
5981 W:      http://palosaari.fi/linux/
5982 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5983 T:      git git://linuxtv.org/anttip/media_tree.git
5984 S:      Maintained
5985 F:      drivers/media/tuners/e4000*
5986
5987 EARTH_PT1 MEDIA DRIVER
5988 M:      Akihiro Tsukada <tskd08@gmail.com>
5989 L:      linux-media@vger.kernel.org
5990 S:      Odd Fixes
5991 F:      drivers/media/pci/pt1/
5992
5993 EARTH_PT3 MEDIA DRIVER
5994 M:      Akihiro Tsukada <tskd08@gmail.com>
5995 L:      linux-media@vger.kernel.org
5996 S:      Odd Fixes
5997 F:      drivers/media/pci/pt3/
5998
5999 EC100 MEDIA DRIVER
6000 M:      Antti Palosaari <crope@iki.fi>
6001 L:      linux-media@vger.kernel.org
6002 W:      https://linuxtv.org
6003 W:      http://palosaari.fi/linux/
6004 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6005 T:      git git://linuxtv.org/anttip/media_tree.git
6006 S:      Maintained
6007 F:      drivers/media/dvb-frontends/ec100*
6008
6009 ECRYPT FILE SYSTEM
6010 M:      Tyler Hicks <code@tyhicks.com>
6011 L:      ecryptfs@vger.kernel.org
6012 W:      http://ecryptfs.org
6013 W:      https://launchpad.net/ecryptfs
6014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6015 S:      Odd Fixes
6016 F:      Documentation/filesystems/ecryptfs.rst
6017 F:      fs/ecryptfs/
6018
6019 EDAC-AMD64
6020 M:      Borislav Petkov <bp@alien8.de>
6021 L:      linux-edac@vger.kernel.org
6022 S:      Maintained
6023 F:      drivers/edac/amd64_edac*
6024
6025 EDAC-ARMADA
6026 M:      Jan Luebbe <jlu@pengutronix.de>
6027 L:      linux-edac@vger.kernel.org
6028 S:      Maintained
6029 F:      drivers/edac/armada_xp_*
6030
6031 EDAC-AST2500
6032 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6033 S:      Supported
6034 F:      drivers/edac/aspeed_edac.c
6035 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6036
6037 EDAC-BLUEFIELD
6038 M:      Shravan Kumar Ramani <sramani@mellanox.com>
6039 S:      Supported
6040 F:      drivers/edac/bluefield_edac.c
6041
6042 EDAC-CALXEDA
6043 M:      Robert Richter <rric@kernel.org>
6044 L:      linux-edac@vger.kernel.org
6045 S:      Maintained
6046 F:      drivers/edac/highbank*
6047
6048 EDAC-CAVIUM OCTEON
6049 M:      Ralf Baechle <ralf@linux-mips.org>
6050 M:      Robert Richter <rrichter@marvell.com>
6051 L:      linux-edac@vger.kernel.org
6052 L:      linux-mips@vger.kernel.org
6053 S:      Supported
6054 F:      drivers/edac/octeon_edac*
6055
6056 EDAC-CAVIUM THUNDERX
6057 M:      Robert Richter <rrichter@marvell.com>
6058 L:      linux-edac@vger.kernel.org
6059 S:      Supported
6060 F:      drivers/edac/thunderx_edac*
6061
6062 EDAC-CORE
6063 M:      Borislav Petkov <bp@alien8.de>
6064 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6065 M:      Tony Luck <tony.luck@intel.com>
6066 R:      James Morse <james.morse@arm.com>
6067 R:      Robert Richter <rrichter@marvell.com>
6068 L:      linux-edac@vger.kernel.org
6069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6070 S:      Supported
6071 F:      Documentation/admin-guide/ras.rst
6072 F:      Documentation/driver-api/edac.rst
6073 F:      drivers/edac/
6074 F:      include/linux/edac.h
6075
6076 EDAC-DMC520
6077 M:      Lei Wang <lewan@microsoft.com>
6078 L:      linux-edac@vger.kernel.org
6079 S:      Supported
6080 F:      drivers/edac/dmc520_edac.c
6081
6082 EDAC-E752X
6083 M:      Mark Gross <mark.gross@intel.com>
6084 L:      linux-edac@vger.kernel.org
6085 S:      Maintained
6086 F:      drivers/edac/e752x_edac.c
6087
6088 EDAC-E7XXX
6089 L:      linux-edac@vger.kernel.org
6090 S:      Maintained
6091 F:      drivers/edac/e7xxx_edac.c
6092
6093 EDAC-FSL_DDR
6094 M:      York Sun <york.sun@nxp.com>
6095 L:      linux-edac@vger.kernel.org
6096 S:      Maintained
6097 F:      drivers/edac/fsl_ddr_edac.*
6098
6099 EDAC-GHES
6100 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6101 L:      linux-edac@vger.kernel.org
6102 S:      Maintained
6103 F:      drivers/edac/ghes_edac.c
6104
6105 EDAC-I10NM
6106 M:      Tony Luck <tony.luck@intel.com>
6107 L:      linux-edac@vger.kernel.org
6108 S:      Maintained
6109 F:      drivers/edac/i10nm_base.c
6110
6111 EDAC-I3000
6112 L:      linux-edac@vger.kernel.org
6113 S:      Orphan
6114 F:      drivers/edac/i3000_edac.c
6115
6116 EDAC-I5000
6117 L:      linux-edac@vger.kernel.org
6118 S:      Maintained
6119 F:      drivers/edac/i5000_edac.c
6120
6121 EDAC-I5400
6122 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6123 L:      linux-edac@vger.kernel.org
6124 S:      Maintained
6125 F:      drivers/edac/i5400_edac.c
6126
6127 EDAC-I7300
6128 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6129 L:      linux-edac@vger.kernel.org
6130 S:      Maintained
6131 F:      drivers/edac/i7300_edac.c
6132
6133 EDAC-I7CORE
6134 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6135 L:      linux-edac@vger.kernel.org
6136 S:      Maintained
6137 F:      drivers/edac/i7core_edac.c
6138
6139 EDAC-I82443BXGX
6140 M:      Tim Small <tim@buttersideup.com>
6141 L:      linux-edac@vger.kernel.org
6142 S:      Maintained
6143 F:      drivers/edac/i82443bxgx_edac.c
6144
6145 EDAC-I82975X
6146 M:      "Arvind R." <arvino55@gmail.com>
6147 L:      linux-edac@vger.kernel.org
6148 S:      Maintained
6149 F:      drivers/edac/i82975x_edac.c
6150
6151 EDAC-IE31200
6152 M:      Jason Baron <jbaron@akamai.com>
6153 L:      linux-edac@vger.kernel.org
6154 S:      Maintained
6155 F:      drivers/edac/ie31200_edac.c
6156
6157 EDAC-MPC85XX
6158 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6159 L:      linux-edac@vger.kernel.org
6160 S:      Maintained
6161 F:      drivers/edac/mpc85xx_edac.[ch]
6162
6163 EDAC-PASEMI
6164 M:      Egor Martovetsky <egor@pasemi.com>
6165 L:      linux-edac@vger.kernel.org
6166 S:      Maintained
6167 F:      drivers/edac/pasemi_edac.c
6168
6169 EDAC-PND2
6170 M:      Tony Luck <tony.luck@intel.com>
6171 L:      linux-edac@vger.kernel.org
6172 S:      Maintained
6173 F:      drivers/edac/pnd2_edac.[ch]
6174
6175 EDAC-R82600
6176 M:      Tim Small <tim@buttersideup.com>
6177 L:      linux-edac@vger.kernel.org
6178 S:      Maintained
6179 F:      drivers/edac/r82600_edac.c
6180
6181 EDAC-SBRIDGE
6182 M:      Tony Luck <tony.luck@intel.com>
6183 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6184 L:      linux-edac@vger.kernel.org
6185 S:      Maintained
6186 F:      drivers/edac/sb_edac.c
6187
6188 EDAC-SIFIVE
6189 M:      Yash Shah <yash.shah@sifive.com>
6190 L:      linux-edac@vger.kernel.org
6191 S:      Supported
6192 F:      drivers/edac/sifive_edac.c
6193 F:      drivers/soc/sifive_l2_cache.c
6194
6195 EDAC-SKYLAKE
6196 M:      Tony Luck <tony.luck@intel.com>
6197 L:      linux-edac@vger.kernel.org
6198 S:      Maintained
6199 F:      drivers/edac/skx_*.c
6200
6201 EDAC-TI
6202 M:      Tero Kristo <t-kristo@ti.com>
6203 L:      linux-edac@vger.kernel.org
6204 S:      Maintained
6205 F:      drivers/edac/ti_edac.c
6206
6207 EDAC-QCOM
6208 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6209 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6210 L:      linux-arm-msm@vger.kernel.org
6211 L:      linux-edac@vger.kernel.org
6212 S:      Maintained
6213 F:      drivers/edac/qcom_edac.c
6214
6215 EDIROL UA-101/UA-1000 DRIVER
6216 M:      Clemens Ladisch <clemens@ladisch.de>
6217 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6219 S:      Maintained
6220 F:      sound/usb/misc/ua101.c
6221
6222 EFI TEST DRIVER
6223 L:      linux-efi@vger.kernel.org
6224 M:      Ivan Hu <ivan.hu@canonical.com>
6225 M:      Ard Biesheuvel <ardb@kernel.org>
6226 S:      Maintained
6227 F:      drivers/firmware/efi/test/
6228
6229 EFI VARIABLE FILESYSTEM
6230 M:      Matthew Garrett <matthew.garrett@nebula.com>
6231 M:      Jeremy Kerr <jk@ozlabs.org>
6232 M:      Ard Biesheuvel <ardb@kernel.org>
6233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6234 L:      linux-efi@vger.kernel.org
6235 S:      Maintained
6236 F:      fs/efivarfs/
6237
6238 EFIFB FRAMEBUFFER DRIVER
6239 L:      linux-fbdev@vger.kernel.org
6240 M:      Peter Jones <pjones@redhat.com>
6241 S:      Maintained
6242 F:      drivers/video/fbdev/efifb.c
6243
6244 EFS FILESYSTEM
6245 W:      http://aeschi.ch.eu.org/efs/
6246 S:      Orphan
6247 F:      fs/efs/
6248
6249 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6250 M:      Douglas Miller <dougmill@linux.ibm.com>
6251 L:      netdev@vger.kernel.org
6252 S:      Maintained
6253 F:      drivers/net/ethernet/ibm/ehea/
6254
6255 EM28XX VIDEO4LINUX DRIVER
6256 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6257 L:      linux-media@vger.kernel.org
6258 W:      https://linuxtv.org
6259 T:      git git://linuxtv.org/media_tree.git
6260 S:      Maintained
6261 F:      drivers/media/usb/em28xx/
6262 F:      Documentation/media/v4l-drivers/em28xx*
6263
6264 EMBEDDED LINUX
6265 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6266 M:      Matt Mackall <mpm@selenic.com>
6267 M:      David Woodhouse <dwmw2@infradead.org>
6268 L:      linux-embedded@vger.kernel.org
6269 S:      Maintained
6270
6271 Emulex 10Gbps iSCSI - OneConnect DRIVER
6272 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6273 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6274 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6275 L:      linux-scsi@vger.kernel.org
6276 W:      http://www.broadcom.com
6277 S:      Supported
6278 F:      drivers/scsi/be2iscsi/
6279
6280 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6281 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6282 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6283 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6284 L:      netdev@vger.kernel.org
6285 W:      http://www.emulex.com
6286 S:      Supported
6287 F:      drivers/net/ethernet/emulex/benet/
6288
6289 EMULEX ONECONNECT ROCE DRIVER
6290 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6291 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6292 L:      linux-rdma@vger.kernel.org
6293 W:      http://www.broadcom.com
6294 S:      Odd Fixes
6295 F:      drivers/infiniband/hw/ocrdma/
6296 F:      include/uapi/rdma/ocrdma-abi.h
6297
6298 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6299 M:      James Smart <james.smart@broadcom.com>
6300 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6301 L:      linux-scsi@vger.kernel.org
6302 W:      http://www.broadcom.com
6303 S:      Supported
6304 F:      drivers/scsi/lpfc/
6305
6306 ENE CB710 FLASH CARD READER DRIVER
6307 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6308 S:      Maintained
6309 F:      drivers/misc/cb710/
6310 F:      drivers/mmc/host/cb710-mmc.*
6311 F:      include/linux/cb710.h
6312
6313 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6314 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6315 S:      Maintained
6316 F:      drivers/media/rc/ene_ir.*
6317
6318 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6319 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6320 L:      linuxppc-dev@lists.ozlabs.org
6321 S:      Maintained
6322 F:      drivers/tty/ehv_bytechan.c
6323
6324 EPSON S1D13XXX FRAMEBUFFER DRIVER
6325 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6326 S:      Maintained
6327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6328 F:      drivers/video/fbdev/s1d13xxxfb.c
6329 F:      include/video/s1d13xxxfb.h
6330
6331 EROFS FILE SYSTEM
6332 M:      Gao Xiang <xiang@kernel.org>
6333 M:      Chao Yu <yuchao0@huawei.com>
6334 L:      linux-erofs@lists.ozlabs.org
6335 S:      Maintained
6336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6337 F:      Documentation/filesystems/erofs.rst
6338 F:      fs/erofs/
6339 F:      include/trace/events/erofs.h
6340
6341 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6342 M:      Jeff Layton <jlayton@kernel.org>
6343 S:      Maintained
6344 F:      lib/errseq.c
6345 F:      include/linux/errseq.h
6346
6347 ET131X NETWORK DRIVER
6348 M:      Mark Einon <mark.einon@gmail.com>
6349 S:      Odd Fixes
6350 F:      drivers/net/ethernet/agere/
6351
6352 ETHERNET BRIDGE
6353 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6354 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6355 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6356 L:      netdev@vger.kernel.org
6357 W:      http://www.linuxfoundation.org/en/Net:Bridge
6358 S:      Maintained
6359 F:      include/linux/netfilter_bridge/
6360 F:      net/bridge/
6361
6362 ETHERNET PHY LIBRARY
6363 M:      Andrew Lunn <andrew@lunn.ch>
6364 M:      Florian Fainelli <f.fainelli@gmail.com>
6365 M:      Heiner Kallweit <hkallweit1@gmail.com>
6366 R:      Russell King <linux@armlinux.org.uk>
6367 L:      netdev@vger.kernel.org
6368 S:      Maintained
6369 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6370 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6371 F:      Documentation/devicetree/bindings/net/mdio*
6372 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6373 F:      Documentation/networking/phy.rst
6374 F:      drivers/net/phy/
6375 F:      drivers/of/of_mdio.c
6376 F:      drivers/of/of_net.c
6377 F:      include/dt-bindings/net/qca-ar803x.h
6378 F:      include/linux/*mdio*.h
6379 F:      include/linux/of_net.h
6380 F:      include/linux/phy.h
6381 F:      include/linux/phy_fixed.h
6382 F:      include/linux/platform_data/mdio-bcm-unimac.h
6383 F:      include/linux/platform_data/mdio-gpio.h
6384 F:      include/trace/events/mdio.h
6385 F:      include/uapi/linux/mdio.h
6386 F:      include/uapi/linux/mii.h
6387
6388 EXFAT FILE SYSTEM
6389 M:      Namjae Jeon <namjae.jeon@samsung.com>
6390 M:      Sungjong Seo <sj1557.seo@samsung.com>
6391 L:      linux-fsdevel@vger.kernel.org
6392 S:      Maintained
6393 F:      fs/exfat/
6394
6395 EXT2 FILE SYSTEM
6396 M:      Jan Kara <jack@suse.com>
6397 L:      linux-ext4@vger.kernel.org
6398 S:      Maintained
6399 F:      Documentation/filesystems/ext2.rst
6400 F:      fs/ext2/
6401 F:      include/linux/ext2*
6402
6403 EXT4 FILE SYSTEM
6404 M:      "Theodore Ts'o" <tytso@mit.edu>
6405 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6406 L:      linux-ext4@vger.kernel.org
6407 W:      http://ext4.wiki.kernel.org
6408 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6410 S:      Maintained
6411 F:      Documentation/filesystems/ext4/
6412 F:      fs/ext4/
6413
6414 Extended Verification Module (EVM)
6415 M:      Mimi Zohar <zohar@linux.ibm.com>
6416 L:      linux-integrity@vger.kernel.org
6417 S:      Supported
6418 F:      security/integrity/evm/
6419
6420 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6421 M:      Ard Biesheuvel <ardb@kernel.org>
6422 L:      linux-efi@vger.kernel.org
6423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6424 S:      Maintained
6425 F:      Documentation/admin-guide/efi-stub.rst
6426 F:      arch/*/kernel/efi.c
6427 F:      arch/*/include/asm/efi.h
6428 F:      arch/x86/platform/efi/
6429 F:      drivers/firmware/efi/
6430 F:      include/linux/efi*.h
6431 F:      arch/arm/boot/compressed/efi-header.S
6432 F:      arch/arm64/kernel/efi-entry.S
6433
6434 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6435 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6436 M:      Chanwoo Choi <cw00.choi@samsung.com>
6437 L:      linux-kernel@vger.kernel.org
6438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6439 S:      Maintained
6440 F:      drivers/extcon/
6441 F:      include/linux/extcon/
6442 F:      include/linux/extcon.h
6443 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6444 F:      Documentation/devicetree/bindings/extcon/
6445
6446 EXYNOS DP DRIVER
6447 M:      Jingoo Han <jingoohan1@gmail.com>
6448 L:      dri-devel@lists.freedesktop.org
6449 S:      Maintained
6450 F:      drivers/gpu/drm/exynos/exynos_dp*
6451
6452 EXYNOS SYSMMU (IOMMU) driver
6453 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6454 L:      iommu@lists.linux-foundation.org
6455 S:      Maintained
6456 F:      drivers/iommu/exynos-iommu.c
6457
6458 EZchip NPS platform support
6459 M:      Vineet Gupta <vgupta@synopsys.com>
6460 M:      Ofer Levi <oferle@mellanox.com>
6461 S:      Supported
6462 F:      arch/arc/plat-eznps
6463 F:      arch/arc/boot/dts/eznps.dts
6464
6465 F2FS FILE SYSTEM
6466 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6467 M:      Chao Yu <yuchao0@huawei.com>
6468 L:      linux-f2fs-devel@lists.sourceforge.net
6469 W:      https://f2fs.wiki.kernel.org/
6470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6471 S:      Maintained
6472 F:      Documentation/filesystems/f2fs.rst
6473 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6474 F:      fs/f2fs/
6475 F:      include/linux/f2fs_fs.h
6476 F:      include/trace/events/f2fs.h
6477
6478 F71805F HARDWARE MONITORING DRIVER
6479 M:      Jean Delvare <jdelvare@suse.com>
6480 L:      linux-hwmon@vger.kernel.org
6481 S:      Maintained
6482 F:      Documentation/hwmon/f71805f.rst
6483 F:      drivers/hwmon/f71805f.c
6484
6485 FADDR2LINE
6486 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6487 S:      Maintained
6488 F:      scripts/faddr2line
6489
6490 FAILOVER MODULE
6491 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6492 L:      netdev@vger.kernel.org
6493 S:      Supported
6494 F:      net/core/failover.c
6495 F:      include/net/failover.h
6496 F:      Documentation/networking/failover.rst
6497
6498 FANOTIFY
6499 M:      Jan Kara <jack@suse.cz>
6500 R:      Amir Goldstein <amir73il@gmail.com>
6501 L:      linux-fsdevel@vger.kernel.org
6502 S:      Maintained
6503 F:      fs/notify/fanotify/
6504 F:      include/linux/fanotify.h
6505 F:      include/uapi/linux/fanotify.h
6506
6507 FARSYNC SYNCHRONOUS DRIVER
6508 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6509 W:      http://www.farsite.co.uk/
6510 S:      Supported
6511 F:      drivers/net/wan/farsync.*
6512
6513 FAULT INJECTION SUPPORT
6514 M:      Akinobu Mita <akinobu.mita@gmail.com>
6515 S:      Supported
6516 F:      Documentation/fault-injection/
6517 F:      lib/fault-inject.c
6518
6519 FBTFT Framebuffer drivers
6520 S:      Orphan
6521 L:      dri-devel@lists.freedesktop.org
6522 L:      linux-fbdev@vger.kernel.org
6523 F:      drivers/staging/fbtft/
6524
6525 FC0011 TUNER DRIVER
6526 M:      Michael Buesch <m@bues.ch>
6527 L:      linux-media@vger.kernel.org
6528 S:      Maintained
6529 F:      drivers/media/tuners/fc0011.h
6530 F:      drivers/media/tuners/fc0011.c
6531
6532 FC2580 MEDIA DRIVER
6533 M:      Antti Palosaari <crope@iki.fi>
6534 L:      linux-media@vger.kernel.org
6535 W:      https://linuxtv.org
6536 W:      http://palosaari.fi/linux/
6537 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6538 T:      git git://linuxtv.org/anttip/media_tree.git
6539 S:      Maintained
6540 F:      drivers/media/tuners/fc2580*
6541
6542 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6543 M:      Hannes Reinecke <hare@suse.de>
6544 L:      linux-scsi@vger.kernel.org
6545 W:      www.Open-FCoE.org
6546 S:      Supported
6547 F:      drivers/scsi/libfc/
6548 F:      drivers/scsi/fcoe/
6549 F:      include/scsi/fc/
6550 F:      include/scsi/libfc.h
6551 F:      include/scsi/libfcoe.h
6552 F:      include/uapi/scsi/fc/
6553
6554 FILE LOCKING (flock() and fcntl()/lockf())
6555 M:      Jeff Layton <jlayton@kernel.org>
6556 M:      "J. Bruce Fields" <bfields@fieldses.org>
6557 L:      linux-fsdevel@vger.kernel.org
6558 S:      Maintained
6559 F:      include/linux/fcntl.h
6560 F:      include/uapi/linux/fcntl.h
6561 F:      fs/fcntl.c
6562 F:      fs/locks.c
6563
6564 FILESYSTEMS (VFS and infrastructure)
6565 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6566 L:      linux-fsdevel@vger.kernel.org
6567 S:      Maintained
6568 F:      fs/*
6569 F:      include/linux/fs.h
6570 F:      include/linux/fs_types.h
6571 F:      include/uapi/linux/fs.h
6572 F:      include/uapi/linux/openat2.h
6573
6574 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6575 M:      Riku Voipio <riku.voipio@iki.fi>
6576 L:      linux-hwmon@vger.kernel.org
6577 S:      Maintained
6578 F:      drivers/hwmon/f75375s.c
6579 F:      include/linux/f75375s.h
6580
6581 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6582 M:      Clemens Ladisch <clemens@ladisch.de>
6583 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6584 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6586 S:      Maintained
6587 F:      sound/firewire/
6588 F:      include/uapi/sound/firewire.h
6589
6590 FIREWIRE MEDIA DRIVERS (firedtv)
6591 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6592 L:      linux-media@vger.kernel.org
6593 L:      linux1394-devel@lists.sourceforge.net
6594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6595 S:      Maintained
6596 F:      drivers/media/firewire/
6597
6598 FIREWIRE SBP-2 TARGET
6599 M:      Chris Boot <bootc@bootc.net>
6600 L:      linux-scsi@vger.kernel.org
6601 L:      target-devel@vger.kernel.org
6602 L:      linux1394-devel@lists.sourceforge.net
6603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6604 S:      Maintained
6605 F:      drivers/target/sbp/
6606
6607 FIREWIRE SUBSYSTEM
6608 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6609 L:      linux1394-devel@lists.sourceforge.net
6610 W:      http://ieee1394.wiki.kernel.org/
6611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6612 S:      Maintained
6613 F:      drivers/firewire/
6614 F:      include/linux/firewire.h
6615 F:      include/uapi/linux/firewire*.h
6616 F:      tools/firewire/
6617
6618 FIRMWARE LOADER (request_firmware)
6619 M:      Luis Chamberlain <mcgrof@kernel.org>
6620 L:      linux-kernel@vger.kernel.org
6621 S:      Maintained
6622 F:      Documentation/firmware_class/
6623 F:      drivers/base/firmware_loader/
6624 F:      include/linux/firmware.h
6625
6626 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6627 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6628 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6629 S:      Maintained
6630 F:      drivers/block/rsxx/
6631
6632 FLEXTIMER FTM-QUADDEC DRIVER
6633 M:      Patrick Havelange <patrick.havelange@essensium.com>
6634 L:      linux-iio@vger.kernel.org
6635 S:      Maintained
6636 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6637 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6638 F:      drivers/counter/ftm-quaddec.c
6639
6640 FLOPPY DRIVER
6641 M:      Denis Efremov <efremov@linux.com>
6642 S:      Odd Fixes
6643 L:      linux-block@vger.kernel.org
6644 F:      drivers/block/floppy.c
6645
6646 FPGA MANAGER FRAMEWORK
6647 M:      Moritz Fischer <mdf@kernel.org>
6648 L:      linux-fpga@vger.kernel.org
6649 S:      Maintained
6650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6651 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6652 F:      Documentation/fpga/
6653 F:      Documentation/driver-api/fpga/
6654 F:      Documentation/devicetree/bindings/fpga/
6655 F:      drivers/fpga/
6656 F:      include/linux/fpga/
6657 W:      http://www.rocketboards.org
6658
6659 FPGA DFL DRIVERS
6660 M:      Wu Hao <hao.wu@intel.com>
6661 L:      linux-fpga@vger.kernel.org
6662 S:      Maintained
6663 F:      Documentation/fpga/dfl.rst
6664 F:      include/uapi/linux/fpga-dfl.h
6665 F:      drivers/fpga/dfl*
6666
6667 FPU EMULATOR
6668 M:      Bill Metzenthen <billm@melbpc.org.au>
6669 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6670 S:      Maintained
6671 F:      arch/x86/math-emu/
6672
6673 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6674 L:      netdev@vger.kernel.org
6675 S:      Orphan
6676 F:      drivers/net/wan/dlci.c
6677 F:      drivers/net/wan/sdla.c
6678
6679 FRAMEBUFFER LAYER
6680 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6681 L:      dri-devel@lists.freedesktop.org
6682 L:      linux-fbdev@vger.kernel.org
6683 T:      git git://anongit.freedesktop.org/drm/drm-misc
6684 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6685 S:      Maintained
6686 F:      Documentation/fb/
6687 F:      drivers/video/
6688 F:      include/video/
6689 F:      include/linux/fb.h
6690 F:      include/uapi/video/
6691 F:      include/uapi/linux/fb.h
6692
6693 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6694 M:      Horia Geantă <horia.geanta@nxp.com>
6695 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6696 L:      linux-crypto@vger.kernel.org
6697 S:      Maintained
6698 F:      drivers/crypto/caam/
6699 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6700
6701 FREESCALE DIU FRAMEBUFFER DRIVER
6702 M:      Timur Tabi <timur@kernel.org>
6703 L:      linux-fbdev@vger.kernel.org
6704 S:      Maintained
6705 F:      drivers/video/fbdev/fsl-diu-fb.*
6706
6707 FREESCALE DMA DRIVER
6708 M:      Li Yang <leoyang.li@nxp.com>
6709 M:      Zhang Wei <zw@zh-kernel.org>
6710 L:      linuxppc-dev@lists.ozlabs.org
6711 S:      Maintained
6712 F:      drivers/dma/fsldma.*
6713
6714 FREESCALE ENETC ETHERNET DRIVERS
6715 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6716 L:      netdev@vger.kernel.org
6717 S:      Maintained
6718 F:      drivers/net/ethernet/freescale/enetc/
6719
6720 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6721 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6722 L:      netdev@vger.kernel.org
6723 S:      Maintained
6724 F:      drivers/net/ethernet/freescale/gianfar*
6725 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6726
6727 FREESCALE GPMI NAND DRIVER
6728 M:      Han Xu <han.xu@nxp.com>
6729 L:      linux-mtd@lists.infradead.org
6730 S:      Maintained
6731 F:      drivers/mtd/nand/raw/gpmi-nand/*
6732
6733 FREESCALE I2C CPM DRIVER
6734 M:      Jochen Friedrich <jochen@scram.de>
6735 L:      linuxppc-dev@lists.ozlabs.org
6736 L:      linux-i2c@vger.kernel.org
6737 S:      Maintained
6738 F:      drivers/i2c/busses/i2c-cpm.c
6739
6740 FREESCALE IMX DDR PMU DRIVER
6741 M:      Frank Li <Frank.li@nxp.com>
6742 L:      linux-arm-kernel@lists.infradead.org
6743 S:      Maintained
6744 F:      drivers/perf/fsl_imx8_ddr_perf.c
6745 F:      Documentation/admin-guide/perf/imx-ddr.rst
6746 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6747
6748 FREESCALE IMX I2C DRIVER
6749 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6750 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6751 L:      linux-i2c@vger.kernel.org
6752 S:      Maintained
6753 F:      drivers/i2c/busses/i2c-imx.c
6754 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6755
6756 FREESCALE IMX LPI2C DRIVER
6757 M:      Dong Aisheng <aisheng.dong@nxp.com>
6758 L:      linux-i2c@vger.kernel.org
6759 L:      linux-imx@nxp.com
6760 S:      Maintained
6761 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6762 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6763
6764 FREESCALE IMX / MXC FEC DRIVER
6765 M:      Fugang Duan <fugang.duan@nxp.com>
6766 L:      netdev@vger.kernel.org
6767 S:      Maintained
6768 F:      drivers/net/ethernet/freescale/fec_main.c
6769 F:      drivers/net/ethernet/freescale/fec_ptp.c
6770 F:      drivers/net/ethernet/freescale/fec.h
6771 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6772
6773 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6774 M:      Sascha Hauer <s.hauer@pengutronix.de>
6775 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6776 L:      linux-fbdev@vger.kernel.org
6777 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6778 S:      Maintained
6779 F:      include/linux/platform_data/video-imxfb.h
6780 F:      drivers/video/fbdev/imxfb.c
6781
6782 FREESCALE QORIQ DPAA ETHERNET DRIVER
6783 M:      Madalin Bucur <madalin.bucur@nxp.com>
6784 L:      netdev@vger.kernel.org
6785 S:      Maintained
6786 F:      drivers/net/ethernet/freescale/dpaa
6787
6788 FREESCALE QORIQ DPAA FMAN DRIVER
6789 M:      Madalin Bucur <madalin.bucur@nxp.com>
6790 L:      netdev@vger.kernel.org
6791 S:      Maintained
6792 F:      drivers/net/ethernet/freescale/fman
6793 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6794
6795 FREESCALE QORIQ PTP CLOCK DRIVER
6796 M:      Yangbo Lu <yangbo.lu@nxp.com>
6797 L:      netdev@vger.kernel.org
6798 S:      Maintained
6799 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6800 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6801 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6802 F:      drivers/ptp/ptp_qoriq.c
6803 F:      drivers/ptp/ptp_qoriq_debugfs.c
6804 F:      include/linux/fsl/ptp_qoriq.h
6805 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6806
6807 FREESCALE QUAD SPI DRIVER
6808 M:      Han Xu <han.xu@nxp.com>
6809 L:      linux-spi@vger.kernel.org
6810 S:      Maintained
6811 F:      drivers/spi/spi-fsl-qspi.c
6812
6813 FREESCALE QUICC ENGINE LIBRARY
6814 M:      Qiang Zhao <qiang.zhao@nxp.com>
6815 L:      linuxppc-dev@lists.ozlabs.org
6816 S:      Maintained
6817 F:      drivers/soc/fsl/qe/
6818 F:      include/soc/fsl/*qe*.h
6819 F:      include/soc/fsl/*ucc*.h
6820
6821 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6822 M:      Li Yang <leoyang.li@nxp.com>
6823 L:      netdev@vger.kernel.org
6824 L:      linuxppc-dev@lists.ozlabs.org
6825 S:      Maintained
6826 F:      drivers/net/ethernet/freescale/ucc_geth*
6827
6828 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6829 M:      Zhao Qiang <qiang.zhao@nxp.com>
6830 L:      netdev@vger.kernel.org
6831 L:      linuxppc-dev@lists.ozlabs.org
6832 S:      Maintained
6833 F:      drivers/net/wan/fsl_ucc_hdlc*
6834
6835 FREESCALE QUICC ENGINE UCC UART DRIVER
6836 M:      Timur Tabi <timur@kernel.org>
6837 L:      linuxppc-dev@lists.ozlabs.org
6838 S:      Maintained
6839 F:      drivers/tty/serial/ucc_uart.c
6840
6841 FREESCALE SOC DRIVERS
6842 M:      Li Yang <leoyang.li@nxp.com>
6843 L:      linuxppc-dev@lists.ozlabs.org
6844 L:      linux-arm-kernel@lists.infradead.org
6845 S:      Maintained
6846 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6847 F:      Documentation/devicetree/bindings/soc/fsl/
6848 F:      drivers/soc/fsl/
6849 F:      include/linux/fsl/
6850
6851 FREESCALE SOC FS_ENET DRIVER
6852 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6853 L:      linuxppc-dev@lists.ozlabs.org
6854 L:      netdev@vger.kernel.org
6855 S:      Maintained
6856 F:      drivers/net/ethernet/freescale/fs_enet/
6857 F:      include/linux/fs_enet_pd.h
6858
6859 FREESCALE SOC SOUND DRIVERS
6860 M:      Timur Tabi <timur@kernel.org>
6861 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6862 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6863 R:      Fabio Estevam <festevam@gmail.com>
6864 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6865 L:      linuxppc-dev@lists.ozlabs.org
6866 S:      Maintained
6867 F:      sound/soc/fsl/fsl*
6868 F:      sound/soc/fsl/imx*
6869 F:      sound/soc/fsl/mpc8610_hpcd.c
6870
6871 FREESCALE USB PERIPHERAL DRIVERS
6872 M:      Li Yang <leoyang.li@nxp.com>
6873 L:      linux-usb@vger.kernel.org
6874 L:      linuxppc-dev@lists.ozlabs.org
6875 S:      Maintained
6876 F:      drivers/usb/gadget/udc/fsl*
6877
6878 FREEVXFS FILESYSTEM
6879 M:      Christoph Hellwig <hch@infradead.org>
6880 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6881 S:      Maintained
6882 F:      fs/freevxfs/
6883
6884 FREEZER
6885 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6886 M:      Pavel Machek <pavel@ucw.cz>
6887 L:      linux-pm@vger.kernel.org
6888 S:      Supported
6889 F:      Documentation/power/freezing-of-tasks.rst
6890 F:      include/linux/freezer.h
6891 F:      kernel/freezer.c
6892
6893 FRONTSWAP API
6894 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6895 L:      linux-kernel@vger.kernel.org
6896 S:      Maintained
6897 F:      mm/frontswap.c
6898 F:      include/linux/frontswap.h
6899
6900 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6901 M:      David Howells <dhowells@redhat.com>
6902 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6903 S:      Supported
6904 F:      Documentation/filesystems/caching/
6905 F:      fs/fscache/
6906 F:      include/linux/fscache*.h
6907
6908 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6909 M:      Theodore Y. Ts'o <tytso@mit.edu>
6910 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6911 M:      Eric Biggers <ebiggers@kernel.org>
6912 L:      linux-fscrypt@vger.kernel.org
6913 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6914 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6915 S:      Supported
6916 F:      fs/crypto/
6917 F:      include/linux/fscrypt*.h
6918 F:      include/uapi/linux/fscrypt.h
6919 F:      Documentation/filesystems/fscrypt.rst
6920
6921 FSI SUBSYSTEM
6922 M:      Jeremy Kerr <jk@ozlabs.org>
6923 M:      Joel Stanley <joel@jms.id.au>
6924 R:      Alistar Popple <alistair@popple.id.au>
6925 R:      Eddie James <eajames@linux.ibm.com>
6926 L:      linux-fsi@lists.ozlabs.org
6927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6928 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6929 S:      Supported
6930 F:      drivers/fsi/
6931 F:      include/linux/fsi*.h
6932 F:      include/trace/events/fsi*.h
6933
6934 FSI-ATTACHED I2C DRIVER
6935 M:      Eddie James <eajames@linux.ibm.com>
6936 L:      linux-i2c@vger.kernel.org
6937 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
6938 S:      Maintained
6939 F:      drivers/i2c/busses/i2c-fsi.c
6940 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6941
6942 FSI-ATTACHED SPI DRIVER
6943 M:      Eddie James <eajames@linux.ibm.com>
6944 L:      linux-spi@vger.kernel.org
6945 S:      Maintained
6946 F:      drivers/spi/spi-fsi.c
6947 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
6948
6949 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6950 M:      Jan Kara <jack@suse.cz>
6951 R:      Amir Goldstein <amir73il@gmail.com>
6952 L:      linux-fsdevel@vger.kernel.org
6953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
6954 S:      Maintained
6955 F:      fs/notify/
6956 F:      include/linux/fsnotify*.h
6957
6958 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
6959 M:      Eric Biggers <ebiggers@kernel.org>
6960 M:      Theodore Y. Ts'o <tytso@mit.edu>
6961 L:      linux-fscrypt@vger.kernel.org
6962 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6963 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
6964 S:      Supported
6965 F:      fs/verity/
6966 F:      include/linux/fsverity.h
6967 F:      include/uapi/linux/fsverity.h
6968 F:      Documentation/filesystems/fsverity.rst
6969
6970 FUJITSU LAPTOP EXTRAS
6971 M:      Jonathan Woithe <jwoithe@just42.net>
6972 L:      platform-driver-x86@vger.kernel.org
6973 S:      Maintained
6974 F:      drivers/platform/x86/fujitsu-laptop.c
6975
6976 FUJITSU M-5MO LS CAMERA ISP DRIVER
6977 M:      Kyungmin Park <kyungmin.park@samsung.com>
6978 M:      Heungjun Kim <riverful.kim@samsung.com>
6979 L:      linux-media@vger.kernel.org
6980 S:      Maintained
6981 F:      drivers/media/i2c/m5mols/
6982 F:      include/media/i2c/m5mols.h
6983
6984 FUJITSU TABLET EXTRAS
6985 M:      Robert Gerlach <khnz@gmx.de>
6986 L:      platform-driver-x86@vger.kernel.org
6987 S:      Maintained
6988 F:      drivers/platform/x86/fujitsu-tablet.c
6989
6990 FUSE: FILESYSTEM IN USERSPACE
6991 M:      Miklos Szeredi <miklos@szeredi.hu>
6992 L:      linux-fsdevel@vger.kernel.org
6993 W:      http://fuse.sourceforge.net/
6994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6995 S:      Maintained
6996 F:      fs/fuse/
6997 F:      include/uapi/linux/fuse.h
6998 F:      Documentation/filesystems/fuse.rst
6999
7000 FUTEX SUBSYSTEM
7001 M:      Thomas Gleixner <tglx@linutronix.de>
7002 M:      Ingo Molnar <mingo@redhat.com>
7003 R:      Peter Zijlstra <peterz@infradead.org>
7004 R:      Darren Hart <dvhart@infradead.org>
7005 L:      linux-kernel@vger.kernel.org
7006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7007 S:      Maintained
7008 F:      kernel/futex.c
7009 F:      include/asm-generic/futex.h
7010 F:      include/linux/futex.h
7011 F:      include/uapi/linux/futex.h
7012 F:      tools/testing/selftests/futex/
7013 F:      tools/perf/bench/futex*
7014 F:      Documentation/*futex*
7015
7016 GCC PLUGINS
7017 M:      Kees Cook <keescook@chromium.org>
7018 R:      Emese Revfy <re.emese@gmail.com>
7019 L:      kernel-hardening@lists.openwall.com
7020 S:      Maintained
7021 F:      scripts/gcc-plugins/
7022 F:      scripts/gcc-plugin.sh
7023 F:      scripts/Makefile.gcc-plugins
7024 F:      Documentation/kbuild/gcc-plugins.rst
7025
7026 GASKET DRIVER FRAMEWORK
7027 M:      Rob Springer <rspringer@google.com>
7028 M:      Todd Poynor <toddpoynor@google.com>
7029 M:      Ben Chan <benchan@chromium.org>
7030 S:      Maintained
7031 F:      drivers/staging/gasket/
7032
7033 GCOV BASED KERNEL PROFILING
7034 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7035 S:      Maintained
7036 F:      kernel/gcov/
7037 F:      Documentation/dev-tools/gcov.rst
7038
7039 GDB KERNEL DEBUGGING HELPER SCRIPTS
7040 M:      Jan Kiszka <jan.kiszka@siemens.com>
7041 M:      Kieran Bingham <kbingham@kernel.org>
7042 S:      Supported
7043 F:      scripts/gdb/
7044
7045 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7046 M:      Achim Leubner <achim_leubner@adaptec.com>
7047 L:      linux-scsi@vger.kernel.org
7048 W:      http://www.icp-vortex.com/
7049 S:      Supported
7050 F:      drivers/scsi/gdt*
7051
7052 GEMTEK FM RADIO RECEIVER DRIVER
7053 M:      Hans Verkuil <hverkuil@xs4all.nl>
7054 L:      linux-media@vger.kernel.org
7055 T:      git git://linuxtv.org/media_tree.git
7056 W:      https://linuxtv.org
7057 S:      Maintained
7058 F:      drivers/media/radio/radio-gemtek*
7059
7060 GENERIC ARCHITECTURE TOPOLOGY
7061 M:      Sudeep Holla <sudeep.holla@arm.com>
7062 L:      linux-kernel@vger.kernel.org
7063 S:      Maintained
7064 F:      drivers/base/arch_topology.c
7065 F:      include/linux/arch_topology.h
7066
7067 GENERIC GPIO I2C DRIVER
7068 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7069 S:      Supported
7070 F:      drivers/i2c/busses/i2c-gpio.c
7071 F:      include/linux/platform_data/i2c-gpio.h
7072
7073 GENERIC GPIO I2C MULTIPLEXER DRIVER
7074 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7075 L:      linux-i2c@vger.kernel.org
7076 S:      Supported
7077 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7078 F:      include/linux/platform_data/i2c-mux-gpio.h
7079 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7080
7081 GENERIC HDLC (WAN) DRIVERS
7082 M:      Krzysztof Halasa <khc@pm.waw.pl>
7083 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7084 S:      Maintained
7085 F:      drivers/net/wan/c101.c
7086 F:      drivers/net/wan/hd6457*
7087 F:      drivers/net/wan/hdlc*
7088 F:      drivers/net/wan/n2.c
7089 F:      drivers/net/wan/pc300too.c
7090 F:      drivers/net/wan/pci200syn.c
7091 F:      drivers/net/wan/wanxl*
7092
7093 GENERIC INCLUDE/ASM HEADER FILES
7094 M:      Arnd Bergmann <arnd@arndb.de>
7095 L:      linux-arch@vger.kernel.org
7096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7097 S:      Maintained
7098 F:      include/asm-generic/
7099 F:      include/uapi/asm-generic/
7100
7101 GENERIC PHY FRAMEWORK
7102 M:      Kishon Vijay Abraham I <kishon@ti.com>
7103 L:      linux-kernel@vger.kernel.org
7104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
7105 S:      Supported
7106 F:      drivers/phy/
7107 F:      include/linux/phy/
7108 F:      Documentation/devicetree/bindings/phy/
7109
7110 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7111 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7112 S:      Supported
7113 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7114
7115 GENERIC PM DOMAINS
7116 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7117 M:      Kevin Hilman <khilman@kernel.org>
7118 M:      Ulf Hansson <ulf.hansson@linaro.org>
7119 L:      linux-pm@vger.kernel.org
7120 S:      Supported
7121 F:      drivers/base/power/domain*.c
7122 F:      include/linux/pm_domain.h
7123 F:      Documentation/devicetree/bindings/power/power?domain*
7124
7125 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7126 M:      Eugen Hristev <eugen.hristev@microchip.com>
7127 L:      linux-input@vger.kernel.org
7128 S:      Maintained
7129 F:      drivers/input/touchscreen/resistive-adc-touch.c
7130
7131 GENERIC UIO DRIVER FOR PCI DEVICES
7132 M:      "Michael S. Tsirkin" <mst@redhat.com>
7133 L:      kvm@vger.kernel.org
7134 S:      Supported
7135 F:      drivers/uio/uio_pci_generic.c
7136
7137 GENERIC VDSO LIBRARY
7138 M:      Andy Lutomirski <luto@kernel.org>
7139 M:      Thomas Gleixner <tglx@linutronix.de>
7140 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7141 L:      linux-kernel@vger.kernel.org
7142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7143 S:      Maintained
7144 F:      lib/vdso/
7145 F:      kernel/time/vsyscall.c
7146 F:      include/vdso/
7147 F:      include/asm-generic/vdso/vsyscall.h
7148
7149 GENWQE (IBM Generic Workqueue Card)
7150 M:      Frank Haverkamp <haver@linux.ibm.com>
7151 S:      Supported
7152 F:      drivers/misc/genwqe/
7153
7154 GET_MAINTAINER SCRIPT
7155 M:      Joe Perches <joe@perches.com>
7156 S:      Maintained
7157 F:      scripts/get_maintainer.pl
7158
7159 GFS2 FILE SYSTEM
7160 M:      Bob Peterson <rpeterso@redhat.com>
7161 M:      Andreas Gruenbacher <agruenba@redhat.com>
7162 L:      cluster-devel@redhat.com
7163 W:      http://sources.redhat.com/cluster/
7164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7165 S:      Supported
7166 F:      Documentation/filesystems/gfs2*.txt
7167 F:      fs/gfs2/
7168 F:      include/uapi/linux/gfs2_ondisk.h
7169
7170 GNSS SUBSYSTEM
7171 M:      Johan Hovold <johan@kernel.org>
7172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7173 S:      Maintained
7174 F:      Documentation/ABI/testing/sysfs-class-gnss
7175 F:      Documentation/devicetree/bindings/gnss/
7176 F:      drivers/gnss/
7177 F:      include/linux/gnss.h
7178
7179 GO7007 MPEG CODEC
7180 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7181 L:      linux-media@vger.kernel.org
7182 S:      Maintained
7183 F:      drivers/media/usb/go7007/
7184
7185 GOODIX TOUCHSCREEN
7186 M:      Bastien Nocera <hadess@hadess.net>
7187 L:      linux-input@vger.kernel.org
7188 S:      Maintained
7189 F:      drivers/input/touchscreen/goodix.c
7190
7191 GOOGLE ETHERNET DRIVERS
7192 M:      Catherine Sullivan <csully@google.com>
7193 R:      Sagi Shahar <sagis@google.com>
7194 R:      Jon Olson <jonolson@google.com>
7195 L:      netdev@vger.kernel.org
7196 S:      Supported
7197 F:      Documentation/networking/device_drivers/google/gve.rst
7198 F:      drivers/net/ethernet/google
7199
7200 GPD POCKET FAN DRIVER
7201 M:      Hans de Goede <hdegoede@redhat.com>
7202 L:      platform-driver-x86@vger.kernel.org
7203 S:      Maintained
7204 F:      drivers/platform/x86/gpd-pocket-fan.c
7205
7206 GPIO ACPI SUPPORT
7207 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7208 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7209 L:      linux-gpio@vger.kernel.org
7210 L:      linux-acpi@vger.kernel.org
7211 S:      Maintained
7212 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7213 F:      drivers/gpio/gpiolib-acpi.c
7214 F:      drivers/gpio/gpiolib-acpi.h
7215
7216 GPIO IR Transmitter
7217 M:      Sean Young <sean@mess.org>
7218 L:      linux-media@vger.kernel.org
7219 S:      Maintained
7220 F:      drivers/media/rc/gpio-ir-tx.c
7221
7222 GPIO MOCKUP DRIVER
7223 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7224 L:      linux-gpio@vger.kernel.org
7225 S:      Maintained
7226 F:      drivers/gpio/gpio-mockup.c
7227 F:      tools/testing/selftests/gpio/
7228
7229 GPIO SUBSYSTEM
7230 M:      Linus Walleij <linus.walleij@linaro.org>
7231 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7232 L:      linux-gpio@vger.kernel.org
7233 S:      Maintained
7234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7235 F:      Documentation/ABI/obsolete/sysfs-gpio
7236 F:      Documentation/ABI/testing/gpio-cdev
7237 F:      Documentation/admin-guide/gpio/
7238 F:      Documentation/devicetree/bindings/gpio/
7239 F:      Documentation/driver-api/gpio/
7240 F:      drivers/gpio/
7241 F:      include/asm-generic/gpio.h
7242 F:      include/linux/gpio/
7243 F:      include/linux/gpio.h
7244 F:      include/linux/of_gpio.h
7245 F:      include/uapi/linux/gpio.h
7246 F:      tools/gpio/
7247
7248 GRE DEMULTIPLEXER DRIVER
7249 M:      Dmitry Kozlov <xeb@mail.ru>
7250 L:      netdev@vger.kernel.org
7251 S:      Maintained
7252 F:      net/ipv4/gre_demux.c
7253 F:      net/ipv4/gre_offload.c
7254 F:      include/net/gre.h
7255
7256 GRETH 10/100/1G Ethernet MAC device driver
7257 M:      Andreas Larsson <andreas@gaisler.com>
7258 L:      netdev@vger.kernel.org
7259 S:      Maintained
7260 F:      drivers/net/ethernet/aeroflex/
7261
7262 GREYBUS AUDIO PROTOCOLS DRIVERS
7263 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7264 M:      Mark Greer <mgreer@animalcreek.com>
7265 S:      Maintained
7266 F:      drivers/staging/greybus/audio_apbridgea.c
7267 F:      drivers/staging/greybus/audio_apbridgea.h
7268 F:      drivers/staging/greybus/audio_codec.c
7269 F:      drivers/staging/greybus/audio_codec.h
7270 F:      drivers/staging/greybus/audio_gb.c
7271 F:      drivers/staging/greybus/audio_manager.c
7272 F:      drivers/staging/greybus/audio_manager.h
7273 F:      drivers/staging/greybus/audio_manager_module.c
7274 F:      drivers/staging/greybus/audio_manager_private.h
7275 F:      drivers/staging/greybus/audio_manager_sysfs.c
7276 F:      drivers/staging/greybus/audio_module.c
7277 F:      drivers/staging/greybus/audio_topology.c
7278
7279 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7280 M:      Viresh Kumar <vireshk@kernel.org>
7281 S:      Maintained
7282 F:      drivers/staging/greybus/authentication.c
7283 F:      drivers/staging/greybus/bootrom.c
7284 F:      drivers/staging/greybus/firmware.h
7285 F:      drivers/staging/greybus/fw-core.c
7286 F:      drivers/staging/greybus/fw-download.c
7287 F:      drivers/staging/greybus/fw-management.c
7288 F:      drivers/staging/greybus/greybus_authentication.h
7289 F:      drivers/staging/greybus/greybus_firmware.h
7290 F:      drivers/staging/greybus/hid.c
7291 F:      drivers/staging/greybus/i2c.c
7292 F:      drivers/staging/greybus/spi.c
7293 F:      drivers/staging/greybus/spilib.c
7294 F:      drivers/staging/greybus/spilib.h
7295
7296 GREYBUS LOOPBACK DRIVER
7297 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7298 S:      Maintained
7299 F:      drivers/staging/greybus/loopback.c
7300
7301 GREYBUS PLATFORM DRIVERS
7302 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7303 S:      Maintained
7304 F:      drivers/staging/greybus/arche-platform.c
7305 F:      drivers/staging/greybus/arche-apb-ctrl.c
7306 F:      drivers/staging/greybus/arche_platform.h
7307
7308 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7309 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7310 S:      Maintained
7311 F:      drivers/staging/greybus/sdio.c
7312 F:      drivers/staging/greybus/light.c
7313 F:      drivers/staging/greybus/gpio.c
7314 F:      drivers/staging/greybus/power_supply.c
7315 F:      drivers/staging/greybus/spi.c
7316 F:      drivers/staging/greybus/spilib.c
7317
7318 GREYBUS SUBSYSTEM
7319 M:      Johan Hovold <johan@kernel.org>
7320 M:      Alex Elder <elder@kernel.org>
7321 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7322 S:      Maintained
7323 F:      drivers/staging/greybus/
7324 F:      drivers/greybus/
7325 F:      include/linux/greybus.h
7326 F:      include/linux/greybus/
7327 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7328
7329 GREYBUS UART PROTOCOLS DRIVERS
7330 M:      David Lin <dtwlin@gmail.com>
7331 S:      Maintained
7332 F:      drivers/staging/greybus/uart.c
7333 F:      drivers/staging/greybus/log.c
7334
7335 GS1662 VIDEO SERIALIZER
7336 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7337 L:      linux-media@vger.kernel.org
7338 T:      git git://linuxtv.org/media_tree.git
7339 S:      Maintained
7340 F:      drivers/media/spi/gs1662.c
7341
7342 GSPCA FINEPIX SUBDRIVER
7343 M:      Frank Zago <frank@zago.net>
7344 L:      linux-media@vger.kernel.org
7345 T:      git git://linuxtv.org/media_tree.git
7346 S:      Maintained
7347 F:      drivers/media/usb/gspca/finepix.c
7348
7349 GSPCA GL860 SUBDRIVER
7350 M:      Olivier Lorin <o.lorin@laposte.net>
7351 L:      linux-media@vger.kernel.org
7352 T:      git git://linuxtv.org/media_tree.git
7353 S:      Maintained
7354 F:      drivers/media/usb/gspca/gl860/
7355
7356 GSPCA M5602 SUBDRIVER
7357 M:      Erik Andren <erik.andren@gmail.com>
7358 L:      linux-media@vger.kernel.org
7359 T:      git git://linuxtv.org/media_tree.git
7360 S:      Maintained
7361 F:      drivers/media/usb/gspca/m5602/
7362
7363 GSPCA PAC207 SONIXB SUBDRIVER
7364 M:      Hans Verkuil <hverkuil@xs4all.nl>
7365 L:      linux-media@vger.kernel.org
7366 T:      git git://linuxtv.org/media_tree.git
7367 S:      Odd Fixes
7368 F:      drivers/media/usb/gspca/pac207.c
7369
7370 GSPCA SN9C20X SUBDRIVER
7371 M:      Brian Johnson <brijohn@gmail.com>
7372 L:      linux-media@vger.kernel.org
7373 T:      git git://linuxtv.org/media_tree.git
7374 S:      Maintained
7375 F:      drivers/media/usb/gspca/sn9c20x.c
7376
7377 GSPCA T613 SUBDRIVER
7378 M:      Leandro Costantino <lcostantino@gmail.com>
7379 L:      linux-media@vger.kernel.org
7380 T:      git git://linuxtv.org/media_tree.git
7381 S:      Maintained
7382 F:      drivers/media/usb/gspca/t613.c
7383
7384 GSPCA USB WEBCAM DRIVER
7385 M:      Hans Verkuil <hverkuil@xs4all.nl>
7386 L:      linux-media@vger.kernel.org
7387 T:      git git://linuxtv.org/media_tree.git
7388 S:      Odd Fixes
7389 F:      drivers/media/usb/gspca/
7390
7391 GTP (GPRS Tunneling Protocol)
7392 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7393 M:      Harald Welte <laforge@gnumonks.org>
7394 L:      osmocom-net-gprs@lists.osmocom.org
7395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7396 S:      Maintained
7397 F:      drivers/net/gtp.c
7398
7399 GUID PARTITION TABLE (GPT)
7400 M:      Davidlohr Bueso <dave@stgolabs.net>
7401 L:      linux-efi@vger.kernel.org
7402 S:      Maintained
7403 F:      block/partitions/efi.*
7404
7405 H8/300 ARCHITECTURE
7406 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7407 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7408 W:      http://uclinux-h8.sourceforge.jp
7409 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7410 S:      Maintained
7411 F:      arch/h8300/
7412 F:      drivers/clocksource/h8300_*.c
7413 F:      drivers/clk/h8300/
7414 F:      drivers/irqchip/irq-renesas-h8*.c
7415
7416 HABANALABS PCI DRIVER
7417 M:      Oded Gabbay <oded.gabbay@gmail.com>
7418 T:      git https://github.com/HabanaAI/linux.git
7419 S:      Supported
7420 F:      drivers/misc/habanalabs/
7421 F:      include/uapi/misc/habanalabs.h
7422 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7423 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7424
7425 HACKRF MEDIA DRIVER
7426 M:      Antti Palosaari <crope@iki.fi>
7427 L:      linux-media@vger.kernel.org
7428 W:      https://linuxtv.org
7429 W:      http://palosaari.fi/linux/
7430 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7431 T:      git git://linuxtv.org/anttip/media_tree.git
7432 S:      Maintained
7433 F:      drivers/media/usb/hackrf/
7434
7435 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7436 M:      Frank Seidel <frank@f-seidel.de>
7437 L:      platform-driver-x86@vger.kernel.org
7438 S:      Maintained
7439 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7440 F:      drivers/platform/x86/hdaps.c
7441
7442 HARDWARE MONITORING
7443 M:      Jean Delvare <jdelvare@suse.com>
7444 M:      Guenter Roeck <linux@roeck-us.net>
7445 L:      linux-hwmon@vger.kernel.org
7446 W:      http://hwmon.wiki.kernel.org/
7447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7448 S:      Maintained
7449 F:      Documentation/devicetree/bindings/hwmon/
7450 F:      Documentation/hwmon/
7451 F:      drivers/hwmon/
7452 F:      include/linux/hwmon*.h
7453 F:      include/trace/events/hwmon*.h
7454
7455 HARDWARE RANDOM NUMBER GENERATOR CORE
7456 M:      Matt Mackall <mpm@selenic.com>
7457 M:      Herbert Xu <herbert@gondor.apana.org.au>
7458 L:      linux-crypto@vger.kernel.org
7459 S:      Odd fixes
7460 F:      Documentation/devicetree/bindings/rng/
7461 F:      Documentation/admin-guide/hw_random.rst
7462 F:      drivers/char/hw_random/
7463 F:      include/linux/hw_random.h
7464
7465 HARDWARE TRACING FACILITIES
7466 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7467 S:      Maintained
7468 F:      drivers/hwtracing/
7469
7470 HARDWARE SPINLOCK CORE
7471 M:      Ohad Ben-Cohen <ohad@wizery.com>
7472 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7473 R:      Baolin Wang <baolin.wang7@gmail.com>
7474 L:      linux-remoteproc@vger.kernel.org
7475 S:      Maintained
7476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7477 F:      Documentation/devicetree/bindings/hwlock/
7478 F:      Documentation/hwspinlock.txt
7479 F:      drivers/hwspinlock/
7480 F:      include/linux/hwspinlock.h
7481
7482 HARMONY SOUND DRIVER
7483 L:      linux-parisc@vger.kernel.org
7484 S:      Maintained
7485 F:      sound/parisc/harmony.*
7486
7487 HDPVR USB VIDEO ENCODER DRIVER
7488 M:      Hans Verkuil <hverkuil@xs4all.nl>
7489 L:      linux-media@vger.kernel.org
7490 T:      git git://linuxtv.org/media_tree.git
7491 W:      https://linuxtv.org
7492 S:      Odd Fixes
7493 F:      drivers/media/usb/hdpvr/
7494
7495 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7496 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7497 S:      Supported
7498 F:      Documentation/watchdog/hpwdt.rst
7499 F:      drivers/watchdog/hpwdt.c
7500
7501 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7502 M:      Don Brace <don.brace@microsemi.com>
7503 L:      esc.storagedev@microsemi.com
7504 L:      linux-scsi@vger.kernel.org
7505 S:      Supported
7506 F:      Documentation/scsi/hpsa.rst
7507 F:      drivers/scsi/hpsa*.[ch]
7508 F:      include/linux/cciss*.h
7509 F:      include/uapi/linux/cciss*.h
7510
7511 HFI1 DRIVER
7512 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7513 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7514 L:      linux-rdma@vger.kernel.org
7515 S:      Supported
7516 F:      drivers/infiniband/hw/hfi1
7517
7518 HFS FILESYSTEM
7519 L:      linux-fsdevel@vger.kernel.org
7520 S:      Orphan
7521 F:      Documentation/filesystems/hfs.rst
7522 F:      fs/hfs/
7523
7524 HFSPLUS FILESYSTEM
7525 L:      linux-fsdevel@vger.kernel.org
7526 S:      Orphan
7527 F:      Documentation/filesystems/hfsplus.rst
7528 F:      fs/hfsplus/
7529
7530 HGA FRAMEBUFFER DRIVER
7531 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7532 L:      linux-nvidia@lists.surfsouth.com
7533 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7534 S:      Maintained
7535 F:      drivers/video/fbdev/hgafb.c
7536
7537 HIBERNATION (aka Software Suspend, aka swsusp)
7538 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7539 M:      Pavel Machek <pavel@ucw.cz>
7540 L:      linux-pm@vger.kernel.org
7541 B:      https://bugzilla.kernel.org
7542 S:      Supported
7543 F:      arch/x86/power/
7544 F:      drivers/base/power/
7545 F:      kernel/power/
7546 F:      include/linux/suspend.h
7547 F:      include/linux/freezer.h
7548 F:      include/linux/pm.h
7549 F:      arch/*/include/asm/suspend*.h
7550
7551 HID CORE LAYER
7552 M:      Jiri Kosina <jikos@kernel.org>
7553 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7554 L:      linux-input@vger.kernel.org
7555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7556 S:      Maintained
7557 F:      drivers/hid/
7558 F:      include/linux/hid*
7559 F:      include/uapi/linux/hid*
7560
7561 HID SENSOR HUB DRIVERS
7562 M:      Jiri Kosina <jikos@kernel.org>
7563 M:      Jonathan Cameron <jic23@kernel.org>
7564 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7565 L:      linux-input@vger.kernel.org
7566 L:      linux-iio@vger.kernel.org
7567 S:      Maintained
7568 F:      Documentation/hid/hid-sensor*
7569 F:      drivers/hid/hid-sensor-*
7570 F:      drivers/iio/*/hid-*
7571 F:      include/linux/hid-sensor-*
7572
7573 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7574 M:      Thomas Gleixner <tglx@linutronix.de>
7575 L:      linux-kernel@vger.kernel.org
7576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7577 S:      Maintained
7578 F:      Documentation/timers/
7579 F:      kernel/time/hrtimer.c
7580 F:      kernel/time/clockevents.c
7581 F:      kernel/time/timer_*.c
7582 F:      include/linux/clockchips.h
7583 F:      include/linux/hrtimer.h
7584
7585 HIGH-SPEED SCC DRIVER FOR AX.25
7586 L:      linux-hams@vger.kernel.org
7587 S:      Orphan
7588 F:      drivers/net/hamradio/dmascc.c
7589 F:      drivers/net/hamradio/scc.c
7590
7591 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7592 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7593 W:      http://www.highpoint-tech.com
7594 S:      Supported
7595 F:      Documentation/scsi/hptiop.rst
7596 F:      drivers/scsi/hptiop.c
7597
7598 HIPPI
7599 M:      Jes Sorensen <jes@trained-monkey.org>
7600 L:      linux-hippi@sunsite.dk
7601 S:      Maintained
7602 F:      include/linux/hippidevice.h
7603 F:      include/uapi/linux/if_hippi.h
7604 F:      net/802/hippi.c
7605 F:      drivers/net/hippi/
7606
7607 HISILICON DMA DRIVER
7608 M:      Zhou Wang <wangzhou1@hisilicon.com>
7609 L:      dmaengine@vger.kernel.org
7610 S:      Maintained
7611 F:      drivers/dma/hisi_dma.c
7612
7613 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7614 M:      Zaibo Xu <xuzaibo@huawei.com>
7615 L:      linux-crypto@vger.kernel.org
7616 S:      Maintained
7617 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7618 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7619 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7620 F:      drivers/crypto/hisilicon/sec2/sec.h
7621 F:      Documentation/ABI/testing/debugfs-hisi-sec
7622
7623 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7624 M:      Zaibo Xu <xuzaibo@huawei.com>
7625 L:      linux-crypto@vger.kernel.org
7626 S:      Maintained
7627 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7628 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7629 F:      drivers/crypto/hisilicon/hpre/hpre.h
7630 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7631
7632 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7633 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7634 M:      Salil Mehta <salil.mehta@huawei.com>
7635 L:      netdev@vger.kernel.org
7636 W:      http://www.hisilicon.com
7637 S:      Maintained
7638 F:      drivers/net/ethernet/hisilicon/hns3/
7639
7640 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7641 M:      Zaibo Xu <xuzaibo@huawei.com>
7642 S:      Maintained
7643 F:      drivers/char/hw_random/hisi-trng-v2.c
7644
7645 HISILICON LPC BUS DRIVER
7646 M:      john.garry@huawei.com
7647 W:      http://www.hisilicon.com
7648 S:      Maintained
7649 F:      drivers/bus/hisi_lpc.c
7650 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7651
7652 HISILICON NETWORK SUBSYSTEM DRIVER
7653 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7654 M:      Salil Mehta <salil.mehta@huawei.com>
7655 L:      netdev@vger.kernel.org
7656 W:      http://www.hisilicon.com
7657 S:      Maintained
7658 F:      drivers/net/ethernet/hisilicon/
7659 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7660
7661 HISILICON PMU DRIVER
7662 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7663 W:      http://www.hisilicon.com
7664 S:      Supported
7665 F:      drivers/perf/hisilicon
7666 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7667
7668 HISILICON ROCE DRIVER
7669 M:      Lijun Ou <oulijun@huawei.com>
7670 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
7671 M:      Weihang Li <liweihang@huawei.com>
7672 L:      linux-rdma@vger.kernel.org
7673 S:      Maintained
7674 F:      drivers/infiniband/hw/hns/
7675 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7676
7677 HISILICON SAS Controller
7678 M:      John Garry <john.garry@huawei.com>
7679 W:      http://www.hisilicon.com
7680 S:      Supported
7681 F:      drivers/scsi/hisi_sas/
7682 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7683
7684 HISILICON V3XX SPI NOR FLASH Controller Driver
7685 M:      John Garry <john.garry@huawei.com>
7686 W:      http://www.hisilicon.com
7687 S:      Maintained
7688 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7689
7690 HISILICON QM AND ZIP Controller DRIVER
7691 M:      Zhou Wang <wangzhou1@hisilicon.com>
7692 L:      linux-crypto@vger.kernel.org
7693 S:      Maintained
7694 F:      drivers/crypto/hisilicon/qm.c
7695 F:      drivers/crypto/hisilicon/qm.h
7696 F:      drivers/crypto/hisilicon/sgl.c
7697 F:      drivers/crypto/hisilicon/zip/
7698 F:      Documentation/ABI/testing/debugfs-hisi-zip
7699
7700 HMM - Heterogeneous Memory Management
7701 M:      Jérôme Glisse <jglisse@redhat.com>
7702 L:      linux-mm@kvack.org
7703 S:      Maintained
7704 F:      mm/hmm*
7705 F:      include/linux/hmm*
7706 F:      Documentation/vm/hmm.rst
7707
7708 HOST AP DRIVER
7709 M:      Jouni Malinen <j@w1.fi>
7710 L:      linux-wireless@vger.kernel.org
7711 W:      http://w1.fi/hostap-driver.html
7712 S:      Obsolete
7713 F:      drivers/net/wireless/intersil/hostap/
7714
7715 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7716 L:      platform-driver-x86@vger.kernel.org
7717 S:      Orphan
7718 F:      drivers/platform/x86/tc1100-wmi.c
7719
7720 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7721 M:      Jaroslav Kysela <perex@perex.cz>
7722 S:      Obsolete
7723 F:      drivers/staging/hp/hp100.*
7724
7725 HPET:   High Precision Event Timers driver
7726 M:      Clemens Ladisch <clemens@ladisch.de>
7727 S:      Maintained
7728 F:      Documentation/timers/hpet.rst
7729 F:      drivers/char/hpet.c
7730 F:      include/linux/hpet.h
7731 F:      include/uapi/linux/hpet.h
7732
7733 HPET:   x86
7734 S:      Orphan
7735 F:      arch/x86/kernel/hpet.c
7736 F:      arch/x86/include/asm/hpet.h
7737
7738 HPFS FILESYSTEM
7739 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7740 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7741 S:      Maintained
7742 F:      fs/hpfs/
7743
7744 HSI SUBSYSTEM
7745 M:      Sebastian Reichel <sre@kernel.org>
7746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7747 S:      Maintained
7748 F:      Documentation/ABI/testing/sysfs-bus-hsi
7749 F:      Documentation/driver-api/hsi.rst
7750 F:      drivers/hsi/
7751 F:      include/linux/hsi/
7752 F:      include/uapi/linux/hsi/
7753
7754 HSO 3G MODEM DRIVER
7755 L:      linux-usb@vger.kernel.org
7756 S:      Orphan
7757 F:      drivers/net/usb/hso.c
7758
7759 HSR NETWORK PROTOCOL
7760 L:      netdev@vger.kernel.org
7761 S:      Orphan
7762 F:      net/hsr/
7763
7764 HT16K33 LED CONTROLLER DRIVER
7765 M:      Robin van der Gracht <robin@protonic.nl>
7766 S:      Maintained
7767 F:      drivers/auxdisplay/ht16k33.c
7768 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7769
7770 HTCPEN TOUCHSCREEN DRIVER
7771 M:      Pau Oliva Fora <pof@eslack.org>
7772 L:      linux-input@vger.kernel.org
7773 S:      Maintained
7774 F:      drivers/input/touchscreen/htcpen.c
7775
7776 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7777 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7778 L:      linux-iio@vger.kernel.org
7779 W:      http://www.st.com/
7780 S:      Maintained
7781 F:      drivers/iio/humidity/hts221*
7782 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7783
7784 HUAWEI ETHERNET DRIVER
7785 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
7786 L:      netdev@vger.kernel.org
7787 S:      Supported
7788 F:      Documentation/networking/hinic.txt
7789 F:      drivers/net/ethernet/huawei/hinic/
7790
7791 HUGETLB FILESYSTEM
7792 M:      Mike Kravetz <mike.kravetz@oracle.com>
7793 L:      linux-mm@kvack.org
7794 S:      Maintained
7795 F:      fs/hugetlbfs/
7796 F:      mm/hugetlb.c
7797 F:      include/linux/hugetlb.h
7798 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7799 F:      Documentation/vm/hugetlbfs_reserv.rst
7800 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7801
7802 HVA ST MEDIA DRIVER
7803 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7804 L:      linux-media@vger.kernel.org
7805 T:      git git://linuxtv.org/media_tree.git
7806 W:      https://linuxtv.org
7807 S:      Supported
7808 F:      drivers/media/platform/sti/hva
7809
7810 HWPOISON MEMORY FAILURE HANDLING
7811 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
7812 L:      linux-mm@kvack.org
7813 S:      Maintained
7814 F:      mm/memory-failure.c
7815 F:      mm/hwpoison-inject.c
7816
7817 HYGON PROCESSOR SUPPORT
7818 M:      Pu Wen <puwen@hygon.cn>
7819 L:      linux-kernel@vger.kernel.org
7820 S:      Maintained
7821 F:      arch/x86/kernel/cpu/hygon.c
7822
7823 HYNIX HI556 SENSOR DRIVER
7824 M:      Shawn Tu <shawnx.tu@intel.com>
7825 L:      linux-media@vger.kernel.org
7826 T:      git git://linuxtv.org/media_tree.git
7827 S:      Maintained
7828 F:      drivers/media/i2c/hi556.c
7829
7830 Hyper-V CORE AND DRIVERS
7831 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7832 M:      Haiyang Zhang <haiyangz@microsoft.com>
7833 M:      Stephen Hemminger <sthemmin@microsoft.com>
7834 M:      Wei Liu <wei.liu@kernel.org>
7835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7836 L:      linux-hyperv@vger.kernel.org
7837 S:      Supported
7838 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7839 F:      arch/x86/include/asm/mshyperv.h
7840 F:      arch/x86/include/asm/trace/hyperv.h
7841 F:      arch/x86/include/asm/hyperv-tlfs.h
7842 F:      arch/x86/kernel/cpu/mshyperv.c
7843 F:      arch/x86/hyperv
7844 F:      drivers/clocksource/hyperv_timer.c
7845 F:      drivers/hid/hid-hyperv.c
7846 F:      drivers/hv/
7847 F:      drivers/input/serio/hyperv-keyboard.c
7848 F:      drivers/pci/controller/pci-hyperv.c
7849 F:      drivers/pci/controller/pci-hyperv-intf.c
7850 F:      drivers/net/hyperv/
7851 F:      drivers/scsi/storvsc_drv.c
7852 F:      drivers/uio/uio_hv_generic.c
7853 F:      drivers/video/fbdev/hyperv_fb.c
7854 F:      drivers/iommu/hyperv-iommu.c
7855 F:      net/vmw_vsock/hyperv_transport.c
7856 F:      include/clocksource/hyperv_timer.h
7857 F:      include/linux/hyperv.h
7858 F:      include/uapi/linux/hyperv.h
7859 F:      include/asm-generic/mshyperv.h
7860 F:      tools/hv/
7861 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7862 F:      Documentation/ABI/testing/debugfs-hyperv
7863
7864 HYPERBUS SUPPORT
7865 M:      Vignesh Raghavendra <vigneshr@ti.com>
7866 L:      linux-mtd@lists.infradead.org
7867 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
7869 C:      irc://irc.oftc.net/mtd
7870 S:      Supported
7871 F:      drivers/mtd/hyperbus/
7872 F:      include/linux/mtd/hyperbus.h
7873 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7874 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7875
7876 HYPERVISOR VIRTUAL CONSOLE DRIVER
7877 L:      linuxppc-dev@lists.ozlabs.org
7878 S:      Odd Fixes
7879 F:      drivers/tty/hvc/
7880
7881 I2C ACPI SUPPORT
7882 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7883 L:      linux-i2c@vger.kernel.org
7884 L:      linux-acpi@vger.kernel.org
7885 S:      Maintained
7886 F:      drivers/i2c/i2c-core-acpi.c
7887
7888 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7889 M:      Ajay Gupta <ajayg@nvidia.com>
7890 L:      linux-i2c@vger.kernel.org
7891 S:      Maintained
7892 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7893 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7894
7895 I2C MUXES
7896 M:      Peter Rosin <peda@axentia.se>
7897 L:      linux-i2c@vger.kernel.org
7898 S:      Maintained
7899 F:      Documentation/i2c/i2c-topology.rst
7900 F:      Documentation/i2c/muxes/
7901 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7902 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7903 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7904 F:      drivers/i2c/i2c-mux.c
7905 F:      drivers/i2c/muxes/
7906 F:      include/linux/i2c-mux.h
7907
7908 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7909 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
7910 L:      linux-i2c@vger.kernel.org
7911 S:      Maintained
7912 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7913 F:      drivers/i2c/busses/i2c-mv64xxx.c
7914
7915 I2C OVER PARALLEL PORT
7916 M:      Jean Delvare <jdelvare@suse.com>
7917 L:      linux-i2c@vger.kernel.org
7918 S:      Maintained
7919 F:      Documentation/i2c/busses/i2c-parport.rst
7920 F:      drivers/i2c/busses/i2c-parport.c
7921
7922 I2C SUBSYSTEM
7923 M:      Wolfram Sang <wsa@the-dreams.de>
7924 L:      linux-i2c@vger.kernel.org
7925 W:      https://i2c.wiki.kernel.org/
7926 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7928 S:      Maintained
7929 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7930 F:      Documentation/i2c/
7931 F:      drivers/i2c/*
7932 F:      include/linux/i2c.h
7933 F:      include/linux/i2c-dev.h
7934 F:      include/linux/i2c-smbus.h
7935 F:      include/uapi/linux/i2c.h
7936 F:      include/uapi/linux/i2c-*.h
7937
7938 I2C SUBSYSTEM HOST DRIVERS
7939 L:      linux-i2c@vger.kernel.org
7940 W:      https://i2c.wiki.kernel.org/
7941 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7943 S:      Odd Fixes
7944 F:      Documentation/devicetree/bindings/i2c/
7945 F:      drivers/i2c/algos/
7946 F:      drivers/i2c/busses/
7947
7948 I2C-TAOS-EVM DRIVER
7949 M:      Jean Delvare <jdelvare@suse.com>
7950 L:      linux-i2c@vger.kernel.org
7951 S:      Maintained
7952 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7953 F:      drivers/i2c/busses/i2c-taos-evm.c
7954
7955 I2C-TINY-USB DRIVER
7956 M:      Till Harbaum <till@harbaum.org>
7957 L:      linux-i2c@vger.kernel.org
7958 W:      http://www.harbaum.org/till/i2c_tiny_usb
7959 S:      Maintained
7960 F:      drivers/i2c/busses/i2c-tiny-usb.c
7961
7962 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7963 M:      Jean Delvare <jdelvare@suse.com>
7964 L:      linux-i2c@vger.kernel.org
7965 S:      Maintained
7966 F:      Documentation/i2c/busses/i2c-ali1535.rst
7967 F:      Documentation/i2c/busses/i2c-ali1563.rst
7968 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7969 F:      Documentation/i2c/busses/i2c-amd756.rst
7970 F:      Documentation/i2c/busses/i2c-amd8111.rst
7971 F:      Documentation/i2c/busses/i2c-i801.rst
7972 F:      Documentation/i2c/busses/i2c-nforce2.rst
7973 F:      Documentation/i2c/busses/i2c-piix4.rst
7974 F:      Documentation/i2c/busses/i2c-sis5595.rst
7975 F:      Documentation/i2c/busses/i2c-sis630.rst
7976 F:      Documentation/i2c/busses/i2c-sis96x.rst
7977 F:      Documentation/i2c/busses/i2c-via.rst
7978 F:      Documentation/i2c/busses/i2c-viapro.rst
7979 F:      drivers/i2c/busses/i2c-ali1535.c
7980 F:      drivers/i2c/busses/i2c-ali1563.c
7981 F:      drivers/i2c/busses/i2c-ali15x3.c
7982 F:      drivers/i2c/busses/i2c-amd756.c
7983 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7984 F:      drivers/i2c/busses/i2c-amd8111.c
7985 F:      drivers/i2c/busses/i2c-i801.c
7986 F:      drivers/i2c/busses/i2c-isch.c
7987 F:      drivers/i2c/busses/i2c-nforce2.c
7988 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7989 F:      drivers/i2c/busses/i2c-piix4.c
7990 F:      drivers/i2c/busses/i2c-sis5595.c
7991 F:      drivers/i2c/busses/i2c-sis630.c
7992 F:      drivers/i2c/busses/i2c-sis96x.c
7993 F:      drivers/i2c/busses/i2c-via.c
7994 F:      drivers/i2c/busses/i2c-viapro.c
7995
7996 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7997 M:      Hans de Goede <hdegoede@redhat.com>
7998 L:      linux-i2c@vger.kernel.org
7999 S:      Maintained
8000 F:      drivers/i2c/busses/i2c-cht-wc.c
8001
8002 I2C/SMBUS ISMT DRIVER
8003 M:      Seth Heasley <seth.heasley@intel.com>
8004 M:      Neil Horman <nhorman@tuxdriver.com>
8005 L:      linux-i2c@vger.kernel.org
8006 F:      drivers/i2c/busses/i2c-ismt.c
8007 F:      Documentation/i2c/busses/i2c-ismt.rst
8008
8009 I2C/SMBUS STUB DRIVER
8010 M:      Jean Delvare <jdelvare@suse.com>
8011 L:      linux-i2c@vger.kernel.org
8012 S:      Maintained
8013 F:      drivers/i2c/i2c-stub.c
8014
8015 I3C SUBSYSTEM
8016 M:      Boris Brezillon <bbrezillon@kernel.org>
8017 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8018 C:      irc://chat.freenode.net/linux-i3c
8019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8020 S:      Maintained
8021 F:      Documentation/ABI/testing/sysfs-bus-i3c
8022 F:      Documentation/devicetree/bindings/i3c/
8023 F:      Documentation/driver-api/i3c
8024 F:      drivers/i3c/
8025 F:      include/linux/i3c/
8026
8027 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8028 M:      Vitor Soares <vitor.soares@synopsys.com>
8029 S:      Maintained
8030 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8031 F:      drivers/i3c/master/dw*
8032
8033 I3C DRIVER FOR CADENCE I3C MASTER IP
8034 M:      Przemysław Gaj <pgaj@cadence.com>
8035 S:      Maintained
8036 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8037 F:      drivers/i3c/master/i3c-master-cdns.c
8038
8039 IA64 (Itanium) PLATFORM
8040 M:      Tony Luck <tony.luck@intel.com>
8041 M:      Fenghua Yu <fenghua.yu@intel.com>
8042 L:      linux-ia64@vger.kernel.org
8043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8044 S:      Maintained
8045 F:      arch/ia64/
8046 F:      Documentation/ia64/
8047
8048 IBM Power 842 compression accelerator
8049 M:      Haren Myneni <haren@us.ibm.com>
8050 S:      Supported
8051 F:      drivers/crypto/nx/Makefile
8052 F:      drivers/crypto/nx/Kconfig
8053 F:      drivers/crypto/nx/nx-842*
8054 F:      include/linux/sw842.h
8055 F:      crypto/842.c
8056 F:      lib/842/
8057
8058 IBM Power in-Nest Crypto Acceleration
8059 M:      Breno Leitão <leitao@debian.org>
8060 M:      Nayna Jain <nayna@linux.ibm.com>
8061 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8062 L:      linux-crypto@vger.kernel.org
8063 S:      Supported
8064 F:      drivers/crypto/nx/Makefile
8065 F:      drivers/crypto/nx/Kconfig
8066 F:      drivers/crypto/nx/nx-aes*
8067 F:      drivers/crypto/nx/nx-sha*
8068 F:      drivers/crypto/nx/nx.*
8069 F:      drivers/crypto/nx/nx_csbcpb.h
8070 F:      drivers/crypto/nx/nx_debugfs.c
8071
8072 IBM Power Linux RAID adapter
8073 M:      Brian King <brking@us.ibm.com>
8074 S:      Supported
8075 F:      drivers/scsi/ipr.*
8076
8077 IBM Power SRIOV Virtual NIC Device Driver
8078 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8079 M:      John Allen <jallen@linux.ibm.com>
8080 L:      netdev@vger.kernel.org
8081 S:      Supported
8082 F:      drivers/net/ethernet/ibm/ibmvnic.*
8083
8084 IBM Power Virtual Accelerator Switchboard
8085 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8086 L:      linuxppc-dev@lists.ozlabs.org
8087 S:      Supported
8088 F:      arch/powerpc/platforms/powernv/vas*
8089 F:      arch/powerpc/platforms/powernv/copy-paste.h
8090 F:      arch/powerpc/include/asm/vas.h
8091
8092 IBM Power Virtual Ethernet Device Driver
8093 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8094 L:      netdev@vger.kernel.org
8095 S:      Supported
8096 F:      drivers/net/ethernet/ibm/ibmveth.*
8097
8098 IBM Power Virtual FC Device Drivers
8099 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8100 L:      linux-scsi@vger.kernel.org
8101 S:      Supported
8102 F:      drivers/scsi/ibmvscsi/ibmvfc*
8103
8104 IBM Power Virtual Management Channel Driver
8105 M:      Steven Royer <seroyer@linux.ibm.com>
8106 S:      Supported
8107 F:      drivers/misc/ibmvmc.*
8108
8109 IBM Power Virtual SCSI Device Drivers
8110 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8111 L:      linux-scsi@vger.kernel.org
8112 S:      Supported
8113 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8114 F:      include/scsi/viosrp.h
8115
8116 IBM Power Virtual SCSI Device Target Driver
8117 M:      Michael Cyr <mikecyr@linux.ibm.com>
8118 L:      linux-scsi@vger.kernel.org
8119 L:      target-devel@vger.kernel.org
8120 S:      Supported
8121 F:      drivers/scsi/ibmvscsi_tgt/
8122
8123 IBM Power VMX Cryptographic instructions
8124 M:      Breno Leitão <leitao@debian.org>
8125 M:      Nayna Jain <nayna@linux.ibm.com>
8126 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8127 L:      linux-crypto@vger.kernel.org
8128 S:      Supported
8129 F:      drivers/crypto/vmx/Makefile
8130 F:      drivers/crypto/vmx/Kconfig
8131 F:      drivers/crypto/vmx/vmx.c
8132 F:      drivers/crypto/vmx/aes*
8133 F:      drivers/crypto/vmx/ghash*
8134 F:      drivers/crypto/vmx/ppc-xlate.pl
8135
8136 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8137 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8138 L:      linux-pci@vger.kernel.org
8139 L:      linuxppc-dev@lists.ozlabs.org
8140 S:      Supported
8141 F:      drivers/pci/hotplug/rpaphp*
8142
8143 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8144 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8145 L:      linux-pci@vger.kernel.org
8146 L:      linuxppc-dev@lists.ozlabs.org
8147 S:      Supported
8148 F:      drivers/pci/hotplug/rpadlpar*
8149
8150 IBM ServeRAID RAID DRIVER
8151 S:      Orphan
8152 F:      drivers/scsi/ips.*
8153
8154 ICH LPC AND GPIO DRIVER
8155 M:      Peter Tyser <ptyser@xes-inc.com>
8156 S:      Maintained
8157 F:      drivers/gpio/gpio-ich.c
8158 F:      drivers/mfd/lpc_ich.c
8159
8160 ICY I2C DRIVER
8161 M:      Max Staudt <max@enpas.org>
8162 L:      linux-i2c@vger.kernel.org
8163 S:      Maintained
8164 F:      drivers/i2c/busses/i2c-icy.c
8165
8166 IDE SUBSYSTEM
8167 M:      "David S. Miller" <davem@davemloft.net>
8168 L:      linux-ide@vger.kernel.org
8169 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8171 S:      Maintained
8172 F:      Documentation/ide/
8173 F:      drivers/ide/
8174 F:      include/linux/ide.h
8175
8176 IDE/ATAPI DRIVERS
8177 M:      Borislav Petkov <bp@alien8.de>
8178 L:      linux-ide@vger.kernel.org
8179 S:      Maintained
8180 F:      Documentation/cdrom/ide-cd.rst
8181 F:      drivers/ide/ide-cd*
8182
8183 IDEAPAD LAPTOP EXTRAS DRIVER
8184 M:      Ike Panhc <ike.pan@canonical.com>
8185 L:      platform-driver-x86@vger.kernel.org
8186 S:      Maintained
8187 W:      http://launchpad.net/ideapad-laptop
8188 F:      drivers/platform/x86/ideapad-laptop.c
8189
8190 IDEAPAD LAPTOP SLIDEBAR DRIVER
8191 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8192 L:      linux-input@vger.kernel.org
8193 S:      Maintained
8194 W:      https://github.com/o2genum/ideapad-slidebar
8195 F:      drivers/input/misc/ideapad_slidebar.c
8196
8197 IDT VersaClock 5 CLOCK DRIVER
8198 M:      Marek Vasut <marek.vasut@gmail.com>
8199 S:      Maintained
8200 F:      drivers/clk/clk-versaclock5.c
8201
8202 IEEE 802.15.4 SUBSYSTEM
8203 M:      Alexander Aring <alex.aring@gmail.com>
8204 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8205 L:      linux-wpan@vger.kernel.org
8206 W:      http://wpan.cakelab.org/
8207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8209 S:      Maintained
8210 F:      net/ieee802154/
8211 F:      net/mac802154/
8212 F:      drivers/net/ieee802154/
8213 F:      include/linux/nl802154.h
8214 F:      include/linux/ieee802154.h
8215 F:      include/net/nl802154.h
8216 F:      include/net/mac802154.h
8217 F:      include/net/af_ieee802154.h
8218 F:      include/net/cfg802154.h
8219 F:      include/net/ieee802154_netdev.h
8220 F:      Documentation/networking/ieee802154.rst
8221
8222 IFE PROTOCOL
8223 M:      Yotam Gigi <yotam.gi@gmail.com>
8224 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8225 F:      net/ife
8226 F:      include/net/ife.h
8227 F:      include/uapi/linux/ife.h
8228
8229 IGORPLUG-USB IR RECEIVER
8230 M:      Sean Young <sean@mess.org>
8231 L:      linux-media@vger.kernel.org
8232 S:      Maintained
8233 F:      drivers/media/rc/igorplugusb.c
8234
8235 IGUANAWORKS USB IR TRANSCEIVER
8236 M:      Sean Young <sean@mess.org>
8237 L:      linux-media@vger.kernel.org
8238 S:      Maintained
8239 F:      drivers/media/rc/iguanair.c
8240
8241 IIO DIGITAL POTENTIOMETER DAC
8242 M:      Peter Rosin <peda@axentia.se>
8243 L:      linux-iio@vger.kernel.org
8244 S:      Maintained
8245 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8246 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8247 F:      drivers/iio/dac/dpot-dac.c
8248
8249 IIO ENVELOPE DETECTOR
8250 M:      Peter Rosin <peda@axentia.se>
8251 L:      linux-iio@vger.kernel.org
8252 S:      Maintained
8253 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8254 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8255 F:      drivers/iio/adc/envelope-detector.c
8256
8257 IIO MULTIPLEXER
8258 M:      Peter Rosin <peda@axentia.se>
8259 L:      linux-iio@vger.kernel.org
8260 S:      Maintained
8261 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8262 F:      drivers/iio/multiplexer/iio-mux.c
8263
8264 IIO SUBSYSTEM AND DRIVERS
8265 M:      Jonathan Cameron <jic23@kernel.org>
8266 R:      Hartmut Knaack <knaack.h@gmx.de>
8267 R:      Lars-Peter Clausen <lars@metafoo.de>
8268 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8269 L:      linux-iio@vger.kernel.org
8270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8271 S:      Maintained
8272 F:      Documentation/ABI/testing/configfs-iio*
8273 F:      Documentation/ABI/testing/sysfs-bus-iio*
8274 F:      Documentation/devicetree/bindings/iio/
8275 F:      drivers/iio/
8276 F:      drivers/staging/iio/
8277 F:      include/linux/iio/
8278 F:      tools/iio/
8279
8280 IIO UNIT CONVERTER
8281 M:      Peter Rosin <peda@axentia.se>
8282 L:      linux-iio@vger.kernel.org
8283 S:      Maintained
8284 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8285 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8286 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8287 F:      drivers/iio/afe/iio-rescale.c
8288
8289 IKANOS/ADI EAGLE ADSL USB DRIVER
8290 M:      Matthieu Castet <castet.matthieu@free.fr>
8291 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8292 S:      Maintained
8293 F:      drivers/usb/atm/ueagle-atm.c
8294
8295 IMGTEC ASCII LCD DRIVER
8296 M:      Paul Burton <paulburton@kernel.org>
8297 S:      Maintained
8298 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8299 F:      drivers/auxdisplay/img-ascii-lcd.c
8300
8301 IMGTEC IR DECODER DRIVER
8302 S:      Orphan
8303 F:      drivers/media/rc/img-ir/
8304
8305 IMON SOUNDGRAPH USB IR RECEIVER
8306 M:      Sean Young <sean@mess.org>
8307 L:      linux-media@vger.kernel.org
8308 S:      Maintained
8309 F:      drivers/media/rc/imon_raw.c
8310 F:      drivers/media/rc/imon.c
8311
8312 IMS TWINTURBO FRAMEBUFFER DRIVER
8313 L:      linux-fbdev@vger.kernel.org
8314 S:      Orphan
8315 F:      drivers/video/fbdev/imsttfb.c
8316
8317 INA209 HARDWARE MONITOR DRIVER
8318 M:      Guenter Roeck <linux@roeck-us.net>
8319 L:      linux-hwmon@vger.kernel.org
8320 S:      Maintained
8321 F:      Documentation/hwmon/ina209.rst
8322 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8323 F:      drivers/hwmon/ina209.c
8324
8325 INA2XX HARDWARE MONITOR DRIVER
8326 M:      Guenter Roeck <linux@roeck-us.net>
8327 L:      linux-hwmon@vger.kernel.org
8328 S:      Maintained
8329 F:      Documentation/hwmon/ina2xx.rst
8330 F:      drivers/hwmon/ina2xx.c
8331 F:      include/linux/platform_data/ina2xx.h
8332
8333 INDUSTRY PACK SUBSYSTEM (IPACK)
8334 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8335 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8336 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8337 L:      industrypack-devel@lists.sourceforge.net
8338 W:      http://industrypack.sourceforge.net
8339 S:      Maintained
8340 F:      drivers/ipack/
8341
8342 INFINEON DPS310 Driver
8343 M:      Eddie James <eajames@linux.ibm.com>
8344 L:      linux-iio@vger.kernel.org
8345 F:      drivers/iio/pressure/dps310.c
8346 S:      Maintained
8347
8348 INFINIBAND SUBSYSTEM
8349 M:      Doug Ledford <dledford@redhat.com>
8350 M:      Jason Gunthorpe <jgg@mellanox.com>
8351 L:      linux-rdma@vger.kernel.org
8352 W:      https://github.com/linux-rdma/rdma-core
8353 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8355 S:      Supported
8356 F:      Documentation/devicetree/bindings/infiniband/
8357 F:      Documentation/infiniband/
8358 F:      drivers/infiniband/
8359 F:      include/uapi/linux/if_infiniband.h
8360 F:      include/uapi/rdma/
8361 F:      include/rdma/
8362 F:      include/trace/events/ib_mad.h
8363 F:      include/trace/events/ib_umad.h
8364 F:      samples/bpf/ibumad_kern.c
8365 F:      samples/bpf/ibumad_user.c
8366
8367 INGENIC JZ4780 DMA Driver
8368 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8369 S:      Maintained
8370 F:      drivers/dma/dma-jz4780.c
8371
8372 INGENIC JZ4780 NAND DRIVER
8373 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8374 L:      linux-mtd@lists.infradead.org
8375 S:      Maintained
8376 F:      drivers/mtd/nand/raw/ingenic/
8377
8378 INGENIC JZ47xx SoCs
8379 M:      Paul Cercueil <paul@crapouillou.net>
8380 S:      Maintained
8381 F:      arch/mips/boot/dts/ingenic/
8382 F:      arch/mips/include/asm/mach-jz4740/
8383 F:      arch/mips/jz4740/
8384 F:      drivers/clk/ingenic/
8385 F:      drivers/dma/dma-jz4780.c
8386 F:      drivers/gpu/drm/ingenic/
8387 F:      drivers/i2c/busses/i2c-jz4780.c
8388 F:      drivers/iio/adc/ingenic-adc.c
8389 F:      drivers/irqchip/irq-ingenic.c
8390 F:      drivers/memory/jz4780-nemc.c
8391 F:      drivers/mmc/host/jz4740_mmc.c
8392 F:      drivers/mtd/nand/raw/ingenic/
8393 F:      drivers/pinctrl/pinctrl-ingenic.c
8394 F:      drivers/power/supply/ingenic-battery.c
8395 F:      drivers/pwm/pwm-jz4740.c
8396 F:      drivers/rtc/rtc-jz4740.c
8397 F:      drivers/tty/serial/8250/8250_ingenic.c
8398 F:      drivers/usb/musb/jz4740.c
8399 F:      drivers/watchdog/jz4740_wdt.c
8400 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8401 F:      include/linux/mfd/ingenic-tcu.h
8402 F:      sound/soc/jz4740/
8403 F:      sound/soc/codecs/jz47*
8404
8405 INOTIFY
8406 M:      Jan Kara <jack@suse.cz>
8407 R:      Amir Goldstein <amir73il@gmail.com>
8408 L:      linux-fsdevel@vger.kernel.org
8409 S:      Maintained
8410 F:      Documentation/filesystems/inotify.rst
8411 F:      fs/notify/inotify/
8412 F:      include/linux/inotify.h
8413 F:      include/uapi/linux/inotify.h
8414
8415 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8416 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8417 L:      linux-input@vger.kernel.org
8418 Q:      http://patchwork.kernel.org/project/linux-input/list/
8419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8420 S:      Maintained
8421 F:      drivers/input/
8422 F:      include/linux/input.h
8423 F:      include/uapi/linux/input.h
8424 F:      include/uapi/linux/input-event-codes.h
8425 F:      include/linux/input/
8426 F:      Documentation/devicetree/bindings/input/
8427 F:      Documentation/devicetree/bindings/serio/
8428 F:      Documentation/input/
8429
8430 INPUT MULTITOUCH (MT) PROTOCOL
8431 M:      Henrik Rydberg <rydberg@bitmath.org>
8432 L:      linux-input@vger.kernel.org
8433 S:      Odd fixes
8434 F:      Documentation/input/multi-touch-protocol.rst
8435 F:      drivers/input/input-mt.c
8436 K:      \b(ABS|SYN)_MT_
8437
8438 INSIDE SECURE CRYPTO DRIVER
8439 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8440 F:      drivers/crypto/inside-secure/
8441 S:      Maintained
8442 L:      linux-crypto@vger.kernel.org
8443
8444 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8445 M:      Mimi Zohar <zohar@linux.ibm.com>
8446 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8447 L:      linux-integrity@vger.kernel.org
8448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8449 S:      Supported
8450 F:      security/integrity/ima/
8451
8452 INTEL 810/815 FRAMEBUFFER DRIVER
8453 M:      Antonino Daplas <adaplas@gmail.com>
8454 L:      linux-fbdev@vger.kernel.org
8455 S:      Maintained
8456 F:      drivers/video/fbdev/i810/
8457
8458 INTEL ASoC DRIVERS
8459 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8460 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8461 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8462 M:      Jie Yang <yang.jie@linux.intel.com>
8463 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8464 S:      Supported
8465 F:      sound/soc/intel/
8466
8467 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8468 M:      Hans de Goede <hdegoede@redhat.com>
8469 L:      platform-driver-x86@vger.kernel.org
8470 S:      Maintained
8471 F:      drivers/platform/x86/intel_atomisp2_pm.c
8472
8473 INTEL C600 SERIES SAS CONTROLLER DRIVER
8474 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8475 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8476 L:      linux-scsi@vger.kernel.org
8477 T:      git git://git.code.sf.net/p/intel-sas/isci
8478 S:      Supported
8479 F:      drivers/scsi/isci/
8480
8481 INTEL CPU family model numbers
8482 M:      Tony Luck <tony.luck@intel.com>
8483 M:      x86@kernel.org
8484 L:      linux-kernel@vger.kernel.org
8485 S:      Supported
8486 F:      arch/x86/include/asm/intel-family.h
8487
8488 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8489 M:      Jani Nikula <jani.nikula@linux.intel.com>
8490 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8491 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8492 L:      intel-gfx@lists.freedesktop.org
8493 W:      https://01.org/linuxgraphics/
8494 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8495 C:      irc://chat.freenode.net/intel-gfx
8496 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8497 T:      git git://anongit.freedesktop.org/drm-intel
8498 S:      Supported
8499 F:      drivers/gpu/drm/i915/
8500 F:      include/drm/i915*
8501 F:      include/uapi/drm/i915_drm.h
8502 F:      Documentation/gpu/i915.rst
8503
8504 INTEL ETHERNET DRIVERS
8505 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8506 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8507 W:      http://www.intel.com/support/feedback.htm
8508 W:      http://e1000.sourceforge.net/
8509 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8512 S:      Supported
8513 F:      Documentation/networking/device_drivers/intel/e100.rst
8514 F:      Documentation/networking/device_drivers/intel/e1000.rst
8515 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8516 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8517 F:      Documentation/networking/device_drivers/intel/igb.rst
8518 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8519 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8520 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8521 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8522 F:      Documentation/networking/device_drivers/intel/i40e.rst
8523 F:      Documentation/networking/device_drivers/intel/iavf.rst
8524 F:      Documentation/networking/device_drivers/intel/ice.rst
8525 F:      drivers/net/ethernet/intel/
8526 F:      drivers/net/ethernet/intel/*/
8527 F:      include/linux/avf/virtchnl.h
8528
8529 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8530 M:      Maik Broemme <mbroemme@libmpq.org>
8531 L:      linux-fbdev@vger.kernel.org
8532 S:      Maintained
8533 F:      Documentation/fb/intelfb.rst
8534 F:      drivers/video/fbdev/intelfb/
8535
8536 INTEL GPIO DRIVERS
8537 M:      Andy Shevchenko <andy@kernel.org>
8538 L:      linux-gpio@vger.kernel.org
8539 S:      Maintained
8540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8541 F:      drivers/gpio/gpio-ich.c
8542 F:      drivers/gpio/gpio-intel-mid.c
8543 F:      drivers/gpio/gpio-merrifield.c
8544 F:      drivers/gpio/gpio-ml-ioh.c
8545 F:      drivers/gpio/gpio-pch.c
8546 F:      drivers/gpio/gpio-sch.c
8547 F:      drivers/gpio/gpio-sodaville.c
8548
8549 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8550 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8551 M:      Zhi Wang <zhi.a.wang@intel.com>
8552 L:      intel-gvt-dev@lists.freedesktop.org
8553 L:      intel-gfx@lists.freedesktop.org
8554 W:      https://01.org/igvt-g
8555 T:      git https://github.com/intel/gvt-linux.git
8556 S:      Supported
8557 F:      drivers/gpu/drm/i915/gvt/
8558
8559 INTEL HID EVENT DRIVER
8560 M:      Alex Hung <alex.hung@canonical.com>
8561 L:      platform-driver-x86@vger.kernel.org
8562 S:      Maintained
8563 F:      drivers/platform/x86/intel-hid.c
8564
8565 INTEL I/OAT DMA DRIVER
8566 M:      Dave Jiang <dave.jiang@intel.com>
8567 R:      Dan Williams <dan.j.williams@intel.com>
8568 L:      dmaengine@vger.kernel.org
8569 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8570 S:      Supported
8571 F:      drivers/dma/ioat*
8572
8573 INTEL IADX DRIVER
8574 M:      Dave Jiang <dave.jiang@intel.com>
8575 L:      dmaengine@vger.kernel.org
8576 S:      Supported
8577 F:      drivers/dma/idxd/*
8578 F:      include/uapi/linux/idxd.h
8579
8580 INTEL IDLE DRIVER
8581 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8582 M:      Len Brown <lenb@kernel.org>
8583 L:      linux-pm@vger.kernel.org
8584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8585 B:      https://bugzilla.kernel.org
8586 S:      Supported
8587 F:      drivers/idle/intel_idle.c
8588
8589 INTEL INTEGRATED SENSOR HUB DRIVER
8590 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8591 M:      Jiri Kosina <jikos@kernel.org>
8592 L:      linux-input@vger.kernel.org
8593 S:      Maintained
8594 F:      drivers/hid/intel-ish-hid/
8595
8596 INTEL IOMMU (VT-d)
8597 M:      David Woodhouse <dwmw2@infradead.org>
8598 M:      Lu Baolu <baolu.lu@linux.intel.com>
8599 L:      iommu@lists.linux-foundation.org
8600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8601 S:      Supported
8602 F:      drivers/iommu/dmar.c
8603 F:      drivers/iommu/intel*.[ch]
8604 F:      include/linux/intel-iommu.h
8605 F:      include/linux/intel-svm.h
8606
8607 INTEL IOP-ADMA DMA DRIVER
8608 R:      Dan Williams <dan.j.williams@intel.com>
8609 S:      Odd fixes
8610 F:      drivers/dma/iop-adma.c
8611
8612 INTEL IPU3 CSI-2 CIO2 DRIVER
8613 M:      Yong Zhi <yong.zhi@intel.com>
8614 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8615 M:      Bingbu Cao <bingbu.cao@intel.com>
8616 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8617 L:      linux-media@vger.kernel.org
8618 S:      Maintained
8619 F:      drivers/media/pci/intel/ipu3/
8620 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8621
8622 INTEL IPU3 CSI-2 IMGU DRIVER
8623 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8624 L:      linux-media@vger.kernel.org
8625 S:      Maintained
8626 F:      drivers/staging/media/ipu3/
8627 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8628 F:      Documentation/media/v4l-drivers/ipu3.rst
8629 F:      Documentation/media/v4l-drivers/ipu3_rcb.svg
8630
8631 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8632 M:      Krzysztof Halasa <khalasa@piap.pl>
8633 S:      Maintained
8634 F:      include/linux/soc/ixp4xx/qmgr.h
8635 F:      include/linux/soc/ixp4xx/npe.h
8636 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8637 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8638 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8639 F:      drivers/net/wan/ixp4xx_hss.c
8640
8641 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8642 M:      Deepak Saxena <dsaxena@plexity.net>
8643 S:      Maintained
8644 F:      drivers/char/hw_random/ixp4xx-rng.c
8645
8646 INTEL MANAGEMENT ENGINE (mei)
8647 M:      Tomas Winkler <tomas.winkler@intel.com>
8648 L:      linux-kernel@vger.kernel.org
8649 S:      Supported
8650 F:      include/uapi/linux/mei.h
8651 F:      include/linux/mei_cl_bus.h
8652 F:      drivers/misc/mei/*
8653 F:      drivers/watchdog/mei_wdt.c
8654 F:      Documentation/driver-api/mei/*
8655 F:      samples/mei/*
8656
8657 INTEL MENLOW THERMAL DRIVER
8658 M:      Sujith Thomas <sujith.thomas@intel.com>
8659 L:      platform-driver-x86@vger.kernel.org
8660 S:      Supported
8661 W:      https://01.org/linux-acpi
8662 F:      drivers/platform/x86/intel_menlow.c
8663
8664 INTEL MIC DRIVERS (mic)
8665 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8666 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8667 S:      Supported
8668 W:      https://github.com/sudeepdutt/mic
8669 W:      http://software.intel.com/en-us/mic-developer
8670 F:      Documentation/misc-devices/mic/
8671 F:      drivers/dma/mic_x100_dma.c
8672 F:      drivers/dma/mic_x100_dma.h
8673 F:      drivers/misc/mic/
8674 F:      include/linux/mic_bus.h
8675 F:      include/linux/scif.h
8676 F:      include/uapi/linux/mic_common.h
8677 F:      include/uapi/linux/mic_ioctl.h
8678 F:      include/uapi/linux/scif_ioctl.h
8679
8680 INTEL PMC CORE DRIVER
8681 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8682 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8683 L:      platform-driver-x86@vger.kernel.org
8684 S:      Maintained
8685 F:      drivers/platform/x86/intel_pmc_core*
8686
8687 INTEL PMC/P-Unit IPC DRIVER
8688 M:      Zha Qipeng<qipeng.zha@intel.com>
8689 L:      platform-driver-x86@vger.kernel.org
8690 S:      Maintained
8691 F:      arch/x86/include/asm/intel_pmc_ipc.h
8692 F:      arch/x86/include/asm/intel_punit_ipc.h
8693 F:      drivers/platform/x86/intel_pmc_ipc.c
8694 F:      drivers/platform/x86/intel_punit_ipc.c
8695
8696 INTEL PMIC GPIO DRIVERS
8697 M:      Andy Shevchenko <andy@kernel.org>
8698 S:      Maintained
8699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8700 F:      drivers/gpio/gpio-*cove.c
8701 F:      drivers/gpio/gpio-msic.c
8702
8703 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8704 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8705 S:      Maintained
8706 F:      drivers/mfd/intel_msic.c
8707 F:      drivers/mfd/intel_soc_pmic*
8708 F:      include/linux/mfd/intel_msic.h
8709 F:      include/linux/mfd/intel_soc_pmic*
8710
8711 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8712 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8713 L:      linux-wireless@vger.kernel.org
8714 S:      Maintained
8715 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8716 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8717 F:      drivers/net/wireless/intel/ipw2x00/
8718
8719 INTEL PSTATE DRIVER
8720 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8721 M:      Len Brown <lenb@kernel.org>
8722 L:      linux-pm@vger.kernel.org
8723 S:      Supported
8724 F:      drivers/cpufreq/intel_pstate.c
8725
8726 INTEL RDMA RNIC DRIVER
8727 M:      Faisal Latif <faisal.latif@intel.com>
8728 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8729 L:      linux-rdma@vger.kernel.org
8730 S:      Supported
8731 F:      drivers/infiniband/hw/i40iw/
8732 F:      include/uapi/rdma/i40iw-abi.h
8733
8734 INTEL SPEED SELECT TECHNOLOGY
8735 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8736 L:      platform-driver-x86@vger.kernel.org
8737 S:      Maintained
8738 F:      drivers/platform/x86/intel_speed_select_if/
8739 F:      include/uapi/linux/isst_if.h
8740 F:      tools/power/x86/intel-speed-select/
8741
8742 INTEL STRATIX10 FIRMWARE DRIVERS
8743 M:      Richard Gong <richard.gong@linux.intel.com>
8744 L:      linux-kernel@vger.kernel.org
8745 S:      Maintained
8746 F:      drivers/firmware/stratix10-rsu.c
8747 F:      drivers/firmware/stratix10-svc.c
8748 F:      include/linux/firmware/intel/stratix10-smc.h
8749 F:      include/linux/firmware/intel/stratix10-svc-client.h
8750 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8751 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8752
8753 INTEL TELEMETRY DRIVER
8754 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8755 M:      "David E. Box" <david.e.box@linux.intel.com>
8756 L:      platform-driver-x86@vger.kernel.org
8757 S:      Maintained
8758 F:      arch/x86/include/asm/intel_telemetry.h
8759 F:      drivers/platform/x86/intel_telemetry*
8760
8761 INTEL UNCORE FREQUENCY CONTROL
8762 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8763 L:      platform-driver-x86@vger.kernel.org
8764 S:      Maintained
8765 F:      drivers/platform/x86/intel-uncore-frequency.c
8766
8767 INTEL VIRTUAL BUTTON DRIVER
8768 M:      AceLan Kao <acelan.kao@canonical.com>
8769 L:      platform-driver-x86@vger.kernel.org
8770 S:      Maintained
8771 F:      drivers/platform/x86/intel-vbtn.c
8772
8773 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8774 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8775 L:      linux-wireless@vger.kernel.org
8776 S:      Supported
8777 F:      drivers/net/wireless/intel/iwlegacy/
8778
8779 INTEL WIRELESS WIFI LINK (iwlwifi)
8780 M:      Johannes Berg <johannes.berg@intel.com>
8781 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8782 M:      Luca Coelho <luciano.coelho@intel.com>
8783 M:      Intel Linux Wireless <linuxwifi@intel.com>
8784 L:      linux-wireless@vger.kernel.org
8785 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8787 S:      Supported
8788 F:      drivers/net/wireless/intel/iwlwifi/
8789
8790 INTEL WIRELESS WIMAX CONNECTION 2400
8791 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8792 M:      linux-wimax@intel.com
8793 L:      wimax@linuxwimax.org (subscribers-only)
8794 S:      Supported
8795 W:      http://linuxwimax.org
8796 F:      Documentation/admin-guide/wimax/i2400m.rst
8797 F:      drivers/net/wimax/i2400m/
8798 F:      include/uapi/linux/wimax/i2400m.h
8799
8800 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8801 M:      Mario Limonciello <mario.limonciello@dell.com>
8802 S:      Maintained
8803 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8804
8805 INTEL(R) TRACE HUB
8806 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8807 S:      Supported
8808 F:      Documentation/trace/intel_th.rst
8809 F:      drivers/hwtracing/intel_th/
8810 F:      include/linux/intel_th.h
8811
8812 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8813 M:      Ning Sun <ning.sun@intel.com>
8814 L:      tboot-devel@lists.sourceforge.net
8815 W:      http://tboot.sourceforge.net
8816 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8817 S:      Supported
8818 F:      Documentation/x86/intel_txt.rst
8819 F:      include/linux/tboot.h
8820 F:      arch/x86/kernel/tboot.c
8821
8822 INTERCONNECT API
8823 M:      Georgi Djakov <georgi.djakov@linaro.org>
8824 L:      linux-pm@vger.kernel.org
8825 S:      Maintained
8826 F:      Documentation/driver-api/interconnect.rst
8827 F:      Documentation/devicetree/bindings/interconnect/
8828 F:      drivers/interconnect/
8829 F:      include/dt-bindings/interconnect/
8830 F:      include/linux/interconnect-provider.h
8831 F:      include/linux/interconnect.h
8832
8833 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8834 M:      Linus Walleij <linus.walleij@linaro.org>
8835 L:      linux-iio@vger.kernel.org
8836 S:      Maintained
8837 F:      drivers/iio/gyro/mpu3050*
8838 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8839
8840 IOC3 ETHERNET DRIVER
8841 M:      Ralf Baechle <ralf@linux-mips.org>
8842 L:      linux-mips@vger.kernel.org
8843 S:      Maintained
8844 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8845
8846 IOMAP FILESYSTEM LIBRARY
8847 M:      Christoph Hellwig <hch@infradead.org>
8848 M:      Darrick J. Wong <darrick.wong@oracle.com>
8849 M:      linux-xfs@vger.kernel.org
8850 M:      linux-fsdevel@vger.kernel.org
8851 L:      linux-xfs@vger.kernel.org
8852 L:      linux-fsdevel@vger.kernel.org
8853 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8854 S:      Supported
8855 F:      fs/iomap/
8856 F:      include/linux/iomap.h
8857
8858 IOMMU DRIVERS
8859 M:      Joerg Roedel <joro@8bytes.org>
8860 L:      iommu@lists.linux-foundation.org
8861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8862 S:      Maintained
8863 F:      Documentation/devicetree/bindings/iommu/
8864 F:      drivers/iommu/
8865 F:      include/linux/iommu.h
8866 F:      include/linux/of_iommu.h
8867 F:      include/linux/iova.h
8868
8869 IO_URING
8870 M:      Jens Axboe <axboe@kernel.dk>
8871 L:      io-uring@vger.kernel.org
8872 T:      git git://git.kernel.dk/linux-block
8873 T:      git git://git.kernel.dk/liburing
8874 S:      Maintained
8875 F:      fs/io_uring.c
8876 F:      fs/io-wq.c
8877 F:      fs/io-wq.h
8878 F:      include/uapi/linux/io_uring.h
8879
8880 IPMI SUBSYSTEM
8881 M:      Corey Minyard <minyard@acm.org>
8882 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
8883 W:      http://openipmi.sourceforge.net/
8884 S:      Supported
8885 F:      Documentation/devicetree/bindings/ipmi/
8886 F:      Documentation/IPMI.txt
8887 F:      drivers/char/ipmi/
8888 F:      include/linux/ipmi*
8889 F:      include/uapi/linux/ipmi*
8890
8891 IPS SCSI RAID DRIVER
8892 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
8893 L:      linux-scsi@vger.kernel.org
8894 W:      http://www.adaptec.com/
8895 S:      Maintained
8896 F:      drivers/scsi/ips*
8897
8898 IPVS
8899 M:      Wensong Zhang <wensong@linux-vs.org>
8900 M:      Simon Horman <horms@verge.net.au>
8901 M:      Julian Anastasov <ja@ssi.bg>
8902 L:      netdev@vger.kernel.org
8903 L:      lvs-devel@vger.kernel.org
8904 S:      Maintained
8905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8907 F:      Documentation/networking/ipvs-sysctl.txt
8908 F:      include/net/ip_vs.h
8909 F:      include/uapi/linux/ip_vs.h
8910 F:      net/netfilter/ipvs/
8911
8912 IPWIRELESS DRIVER
8913 M:      Jiri Kosina <jikos@kernel.org>
8914 M:      David Sterba <dsterba@suse.com>
8915 S:      Odd Fixes
8916 F:      drivers/tty/ipwireless/
8917
8918 IPX NETWORK LAYER
8919 L:      netdev@vger.kernel.org
8920 S:      Obsolete
8921 F:      include/uapi/linux/ipx.h
8922
8923 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8924 M:      Marc Zyngier <maz@kernel.org>
8925 S:      Maintained
8926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8927 F:      Documentation/IRQ-domain.txt
8928 F:      include/linux/irqdomain.h
8929 F:      kernel/irq/irqdomain.c
8930 F:      kernel/irq/msi.c
8931
8932 IRQ SUBSYSTEM
8933 M:      Thomas Gleixner <tglx@linutronix.de>
8934 L:      linux-kernel@vger.kernel.org
8935 S:      Maintained
8936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8937 F:      kernel/irq/
8938
8939 IRQCHIP DRIVERS
8940 M:      Thomas Gleixner <tglx@linutronix.de>
8941 M:      Jason Cooper <jason@lakedaemon.net>
8942 M:      Marc Zyngier <maz@kernel.org>
8943 L:      linux-kernel@vger.kernel.org
8944 S:      Maintained
8945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8946 F:      Documentation/devicetree/bindings/interrupt-controller/
8947 F:      drivers/irqchip/
8948
8949 ISA
8950 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8951 S:      Maintained
8952 F:      Documentation/driver-api/isa.rst
8953 F:      drivers/base/isa.c
8954 F:      include/linux/isa.h
8955
8956 ISA RADIO MODULE
8957 M:      Hans Verkuil <hverkuil@xs4all.nl>
8958 L:      linux-media@vger.kernel.org
8959 T:      git git://linuxtv.org/media_tree.git
8960 W:      https://linuxtv.org
8961 S:      Maintained
8962 F:      drivers/media/radio/radio-isa*
8963
8964 ISAPNP
8965 M:      Jaroslav Kysela <perex@perex.cz>
8966 S:      Maintained
8967 F:      Documentation/driver-api/isapnp.rst
8968 F:      drivers/pnp/isapnp/
8969 F:      include/linux/isapnp.h
8970
8971 ISCSI
8972 M:      Lee Duncan <lduncan@suse.com>
8973 M:      Chris Leech <cleech@redhat.com>
8974 L:      open-iscsi@googlegroups.com
8975 L:      linux-scsi@vger.kernel.org
8976 W:      www.open-iscsi.com
8977 S:      Maintained
8978 F:      drivers/scsi/*iscsi*
8979 F:      include/scsi/*iscsi*
8980
8981 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8982 M:      Peter Jones <pjones@redhat.com>
8983 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
8984 S:      Maintained
8985 F:      drivers/firmware/iscsi_ibft*
8986
8987 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8988 M:      Sagi Grimberg <sagi@grimberg.me>
8989 M:      Max Gurtovoy <maxg@mellanox.com>
8990 L:      linux-rdma@vger.kernel.org
8991 S:      Supported
8992 W:      http://www.openfabrics.org
8993 W:      www.open-iscsi.org
8994 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8995 F:      drivers/infiniband/ulp/iser/
8996
8997 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
8998 M:      Sagi Grimberg <sagi@grimberg.me>
8999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9000 L:      linux-rdma@vger.kernel.org
9001 L:      target-devel@vger.kernel.org
9002 S:      Supported
9003 W:      http://www.linux-iscsi.org
9004 F:      drivers/infiniband/ulp/isert
9005
9006 ISDN/mISDN SUBSYSTEM
9007 M:      Karsten Keil <isdn@linux-pingi.de>
9008 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9009 L:      netdev@vger.kernel.org
9010 W:      http://www.isdn4linux.de
9011 S:      Maintained
9012 F:      drivers/isdn/mISDN/
9013 F:      drivers/isdn/hardware/
9014 F:      drivers/isdn/Kconfig
9015 F:      drivers/isdn/Makefile
9016
9017 ISDN/CMTP OVER BLUETOOTH
9018 M:      Karsten Keil <isdn@linux-pingi.de>
9019 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9020 L:      netdev@vger.kernel.org
9021 W:      http://www.isdn4linux.de
9022 S:      Odd Fixes
9023 F:      Documentation/isdn/
9024 F:      drivers/isdn/capi/
9025 F:      net/bluetooth/cmtp/
9026 F:      include/linux/isdn/
9027 F:      include/uapi/linux/isdn/
9028
9029 IT87 HARDWARE MONITORING DRIVER
9030 M:      Jean Delvare <jdelvare@suse.com>
9031 L:      linux-hwmon@vger.kernel.org
9032 S:      Maintained
9033 F:      Documentation/hwmon/it87.rst
9034 F:      drivers/hwmon/it87.c
9035
9036 IT913X MEDIA DRIVER
9037 M:      Antti Palosaari <crope@iki.fi>
9038 L:      linux-media@vger.kernel.org
9039 W:      https://linuxtv.org
9040 W:      http://palosaari.fi/linux/
9041 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9042 T:      git git://linuxtv.org/anttip/media_tree.git
9043 S:      Maintained
9044 F:      drivers/media/tuners/it913x*
9045
9046 IVTV VIDEO4LINUX DRIVER
9047 M:      Andy Walls <awalls@md.metrocast.net>
9048 L:      linux-media@vger.kernel.org
9049 T:      git git://linuxtv.org/media_tree.git
9050 W:      https://linuxtv.org
9051 S:      Maintained
9052 F:      Documentation/media/v4l-drivers/ivtv*
9053 F:      drivers/media/pci/ivtv/
9054 F:      include/uapi/linux/ivtv*
9055
9056 IX2505V MEDIA DRIVER
9057 M:      Malcolm Priestley <tvboxspy@gmail.com>
9058 L:      linux-media@vger.kernel.org
9059 W:      https://linuxtv.org
9060 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9061 S:      Maintained
9062 F:      drivers/media/dvb-frontends/ix2505v*
9063
9064 JAILHOUSE HYPERVISOR INTERFACE
9065 M:      Jan Kiszka <jan.kiszka@siemens.com>
9066 L:      jailhouse-dev@googlegroups.com
9067 S:      Maintained
9068 F:      arch/x86/kernel/jailhouse.c
9069 F:      arch/x86/include/asm/jailhouse_para.h
9070
9071 JC42.4 TEMPERATURE SENSOR DRIVER
9072 M:      Guenter Roeck <linux@roeck-us.net>
9073 L:      linux-hwmon@vger.kernel.org
9074 S:      Maintained
9075 F:      drivers/hwmon/jc42.c
9076 F:      Documentation/hwmon/jc42.rst
9077
9078 JFS FILESYSTEM
9079 M:      Dave Kleikamp <shaggy@kernel.org>
9080 L:      jfs-discussion@lists.sourceforge.net
9081 W:      http://jfs.sourceforge.net/
9082 T:      git git://github.com/kleikamp/linux-shaggy.git
9083 S:      Maintained
9084 F:      Documentation/admin-guide/jfs.rst
9085 F:      fs/jfs/
9086
9087 JME NETWORK DRIVER
9088 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9089 L:      netdev@vger.kernel.org
9090 S:      Maintained
9091 F:      drivers/net/ethernet/jme.*
9092
9093 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9094 M:      David Woodhouse <dwmw2@infradead.org>
9095 M:      Richard Weinberger <richard@nod.at>
9096 L:      linux-mtd@lists.infradead.org
9097 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9098 T:      git git://git.infradead.org/ubifs-2.6.git
9099 S:      Odd Fixes
9100 F:      fs/jffs2/
9101 F:      include/uapi/linux/jffs2.h
9102
9103 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9104 M:      "Theodore Ts'o" <tytso@mit.edu>
9105 M:      Jan Kara <jack@suse.com>
9106 L:      linux-ext4@vger.kernel.org
9107 S:      Maintained
9108 F:      fs/jbd2/
9109 F:      include/linux/jbd2.h
9110
9111 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9112 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9113 L:      linux-media@vger.kernel.org
9114 S:      Maintained
9115 F:      drivers/media/platform/rcar_jpu.c
9116
9117 JSM Neo PCI based serial card
9118 L:      linux-serial@vger.kernel.org
9119 S:      Orphan
9120 F:      drivers/tty/serial/jsm/
9121
9122 K10TEMP HARDWARE MONITORING DRIVER
9123 M:      Clemens Ladisch <clemens@ladisch.de>
9124 L:      linux-hwmon@vger.kernel.org
9125 S:      Maintained
9126 F:      Documentation/hwmon/k10temp.rst
9127 F:      drivers/hwmon/k10temp.c
9128
9129 K8TEMP HARDWARE MONITORING DRIVER
9130 M:      Rudolf Marek <r.marek@assembler.cz>
9131 L:      linux-hwmon@vger.kernel.org
9132 S:      Maintained
9133 F:      Documentation/hwmon/k8temp.rst
9134 F:      drivers/hwmon/k8temp.c
9135
9136 KASAN
9137 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9138 R:      Alexander Potapenko <glider@google.com>
9139 R:      Dmitry Vyukov <dvyukov@google.com>
9140 L:      kasan-dev@googlegroups.com
9141 S:      Maintained
9142 F:      arch/*/include/asm/kasan.h
9143 F:      arch/*/mm/kasan_init*
9144 F:      Documentation/dev-tools/kasan.rst
9145 F:      include/linux/kasan*.h
9146 F:      lib/test_kasan.c
9147 F:      mm/kasan/
9148 F:      scripts/Makefile.kasan
9149
9150 KCONFIG
9151 M:      Masahiro Yamada <masahiroy@kernel.org>
9152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9153 L:      linux-kbuild@vger.kernel.org
9154 S:      Maintained
9155 F:      Documentation/kbuild/kconfig*
9156 F:      scripts/kconfig/
9157 F:      scripts/Kconfig.include
9158
9159 KDUMP
9160 M:      Dave Young <dyoung@redhat.com>
9161 M:      Baoquan He <bhe@redhat.com>
9162 R:      Vivek Goyal <vgoyal@redhat.com>
9163 L:      kexec@lists.infradead.org
9164 W:      http://lse.sourceforge.net/kdump/
9165 S:      Maintained
9166 F:      Documentation/admin-guide/kdump/
9167
9168 KEENE FM RADIO TRANSMITTER DRIVER
9169 M:      Hans Verkuil <hverkuil@xs4all.nl>
9170 L:      linux-media@vger.kernel.org
9171 T:      git git://linuxtv.org/media_tree.git
9172 W:      https://linuxtv.org
9173 S:      Maintained
9174 F:      drivers/media/radio/radio-keene*
9175
9176 KERNEL AUTOMOUNTER
9177 M:      Ian Kent <raven@themaw.net>
9178 L:      autofs@vger.kernel.org
9179 S:      Maintained
9180 F:      fs/autofs/
9181
9182 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9183 M:      Masahiro Yamada <masahiroy@kernel.org>
9184 M:      Michal Marek <michal.lkml@markovi.net>
9185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9186 L:      linux-kbuild@vger.kernel.org
9187 S:      Maintained
9188 F:      Documentation/kbuild/
9189 F:      Makefile
9190 F:      scripts/Kbuild*
9191 F:      scripts/Makefile*
9192 F:      scripts/basic/
9193 F:      scripts/mk*
9194 F:      scripts/*vmlinux*
9195 F:      scripts/mod/
9196 F:      scripts/package/
9197
9198 KERNEL JANITORS
9199 L:      kernel-janitors@vger.kernel.org
9200 W:      http://kernelnewbies.org/KernelJanitors
9201 S:      Odd Fixes
9202
9203 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9204 M:      "J. Bruce Fields" <bfields@fieldses.org>
9205 M:      Chuck Lever <chuck.lever@oracle.com>
9206 L:      linux-nfs@vger.kernel.org
9207 W:      http://nfs.sourceforge.net/
9208 T:      git git://linux-nfs.org/~bfields/linux.git
9209 S:      Supported
9210 F:      fs/nfsd/
9211 F:      include/uapi/linux/nfsd/
9212 F:      fs/lockd/
9213 F:      fs/nfs_common/
9214 F:      net/sunrpc/
9215 F:      include/linux/lockd/
9216 F:      include/linux/sunrpc/
9217 F:      include/uapi/linux/sunrpc/
9218
9219 KERNEL SELFTEST FRAMEWORK
9220 M:      Shuah Khan <shuah@kernel.org>
9221 M:      Shuah Khan <skhan@linuxfoundation.org>
9222 L:      linux-kselftest@vger.kernel.org
9223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9224 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9225 S:      Maintained
9226 F:      tools/testing/selftests/
9227 F:      Documentation/dev-tools/kselftest*
9228
9229 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9230 M:      Brendan Higgins <brendanhiggins@google.com>
9231 L:      linux-kselftest@vger.kernel.org
9232 L:      kunit-dev@googlegroups.com
9233 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9234 S:      Maintained
9235 F:      Documentation/dev-tools/kunit/
9236 F:      include/kunit/
9237 F:      lib/kunit/
9238 F:      tools/testing/kunit/
9239
9240 KERNEL USERMODE HELPER
9241 M:      Luis Chamberlain <mcgrof@kernel.org>
9242 L:      linux-kernel@vger.kernel.org
9243 S:      Maintained
9244 F:      kernel/umh.c
9245 F:      include/linux/umh.h
9246
9247 KERNEL VIRTUAL MACHINE (KVM)
9248 M:      Paolo Bonzini <pbonzini@redhat.com>
9249 L:      kvm@vger.kernel.org
9250 W:      http://www.linux-kvm.org
9251 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9252 S:      Supported
9253 F:      Documentation/virt/kvm/
9254 F:      include/trace/events/kvm.h
9255 F:      include/uapi/asm-generic/kvm*
9256 F:      include/uapi/linux/kvm*
9257 F:      include/asm-generic/kvm*
9258 F:      include/linux/kvm*
9259 F:      include/kvm/iodev.h
9260 F:      virt/kvm/*
9261 F:      tools/kvm/
9262 F:      tools/testing/selftests/kvm/
9263
9264 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9265 M:      Marc Zyngier <maz@kernel.org>
9266 R:      James Morse <james.morse@arm.com>
9267 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9268 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9270 L:      kvmarm@lists.cs.columbia.edu
9271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9272 S:      Maintained
9273 F:      arch/arm64/include/uapi/asm/kvm*
9274 F:      arch/arm64/include/asm/kvm*
9275 F:      arch/arm64/kvm/
9276 F:      virt/kvm/arm/
9277 F:      include/kvm/arm_*
9278
9279 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9280 L:      linux-mips@vger.kernel.org
9281 L:      kvm@vger.kernel.org
9282 S:      Orphan
9283 F:      arch/mips/include/uapi/asm/kvm*
9284 F:      arch/mips/include/asm/kvm*
9285 F:      arch/mips/kvm/
9286
9287 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9288 M:      Paul Mackerras <paulus@ozlabs.org>
9289 L:      kvm-ppc@vger.kernel.org
9290 W:      http://www.linux-kvm.org/
9291 T:      git git://github.com/agraf/linux-2.6.git
9292 S:      Supported
9293 F:      arch/powerpc/include/uapi/asm/kvm*
9294 F:      arch/powerpc/include/asm/kvm*
9295 F:      arch/powerpc/kvm/
9296 F:      arch/powerpc/kernel/kvm*
9297
9298 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9299 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9300 M:      Janosch Frank <frankja@linux.ibm.com>
9301 R:      David Hildenbrand <david@redhat.com>
9302 R:      Cornelia Huck <cohuck@redhat.com>
9303 L:      kvm@vger.kernel.org
9304 W:      http://www.ibm.com/developerworks/linux/linux390/
9305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9306 S:      Supported
9307 F:      Documentation/virt/kvm/s390*
9308 F:      arch/s390/include/uapi/asm/kvm*
9309 F:      arch/s390/include/asm/gmap.h
9310 F:      arch/s390/include/asm/kvm*
9311 F:      arch/s390/kvm/
9312 F:      arch/s390/mm/gmap.c
9313 F:      tools/testing/selftests/kvm/s390x/
9314 F:      tools/testing/selftests/kvm/*/s390x/
9315
9316 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9317 M:      Paolo Bonzini <pbonzini@redhat.com>
9318 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9319 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9320 R:      Wanpeng Li <wanpengli@tencent.com>
9321 R:      Jim Mattson <jmattson@google.com>
9322 R:      Joerg Roedel <joro@8bytes.org>
9323 L:      kvm@vger.kernel.org
9324 W:      http://www.linux-kvm.org
9325 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9326 S:      Supported
9327 F:      arch/x86/kvm/
9328 F:      arch/x86/kvm/*/
9329 F:      arch/x86/include/uapi/asm/kvm*
9330 F:      arch/x86/include/uapi/asm/vmx.h
9331 F:      arch/x86/include/uapi/asm/svm.h
9332 F:      arch/x86/include/asm/kvm*
9333 F:      arch/x86/include/asm/pvclock-abi.h
9334 F:      arch/x86/include/asm/svm.h
9335 F:      arch/x86/include/asm/vmx*.h
9336 F:      arch/x86/kernel/kvm.c
9337 F:      arch/x86/kernel/kvmclock.c
9338
9339 KERNFS
9340 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9341 M:      Tejun Heo <tj@kernel.org>
9342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9343 S:      Supported
9344 F:      include/linux/kernfs.h
9345 F:      fs/kernfs/
9346
9347 KEXEC
9348 M:      Eric Biederman <ebiederm@xmission.com>
9349 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9350 L:      kexec@lists.infradead.org
9351 S:      Maintained
9352 F:      include/linux/kexec.h
9353 F:      include/uapi/linux/kexec.h
9354 F:      kernel/kexec*
9355
9356 KEYS-ENCRYPTED
9357 M:      Mimi Zohar <zohar@linux.ibm.com>
9358 L:      linux-integrity@vger.kernel.org
9359 L:      keyrings@vger.kernel.org
9360 S:      Supported
9361 F:      Documentation/security/keys/trusted-encrypted.rst
9362 F:      include/keys/encrypted-type.h
9363 F:      security/keys/encrypted-keys/
9364
9365 KEYS-TRUSTED
9366 M:      James Bottomley <jejb@linux.ibm.com>
9367 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9368 M:      Mimi Zohar <zohar@linux.ibm.com>
9369 L:      linux-integrity@vger.kernel.org
9370 L:      keyrings@vger.kernel.org
9371 S:      Supported
9372 F:      Documentation/security/keys/trusted-encrypted.rst
9373 F:      include/keys/trusted-type.h
9374 F:      include/keys/trusted_tpm.h
9375 F:      security/keys/trusted-keys/
9376
9377 KEYS/KEYRINGS
9378 M:      David Howells <dhowells@redhat.com>
9379 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9380 L:      keyrings@vger.kernel.org
9381 S:      Maintained
9382 F:      Documentation/security/keys/core.rst
9383 F:      include/linux/key.h
9384 F:      include/linux/key-type.h
9385 F:      include/linux/keyctl.h
9386 F:      include/uapi/linux/keyctl.h
9387 F:      include/keys/
9388 F:      security/keys/
9389
9390 KGDB / KDB /debug_core
9391 M:      Jason Wessel <jason.wessel@windriver.com>
9392 M:      Daniel Thompson <daniel.thompson@linaro.org>
9393 R:      Douglas Anderson <dianders@chromium.org>
9394 W:      http://kgdb.wiki.kernel.org/
9395 L:      kgdb-bugreport@lists.sourceforge.net
9396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9397 S:      Maintained
9398 F:      Documentation/dev-tools/kgdb.rst
9399 F:      drivers/misc/kgdbts.c
9400 F:      drivers/tty/serial/kgdboc.c
9401 F:      include/linux/kdb.h
9402 F:      include/linux/kgdb.h
9403 F:      kernel/debug/
9404
9405 KMEMLEAK
9406 M:      Catalin Marinas <catalin.marinas@arm.com>
9407 S:      Maintained
9408 F:      Documentation/dev-tools/kmemleak.rst
9409 F:      include/linux/kmemleak.h
9410 F:      mm/kmemleak.c
9411 F:      mm/kmemleak-test.c
9412
9413 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9414 M:      Luis Chamberlain <mcgrof@kernel.org>
9415 L:      linux-kernel@vger.kernel.org
9416 S:      Maintained
9417 F:      kernel/kmod.c
9418 F:      include/linux/kmod.h
9419 F:      lib/test_kmod.c
9420 F:      tools/testing/selftests/kmod/
9421
9422 KPROBES
9423 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9424 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9425 M:      "David S. Miller" <davem@davemloft.net>
9426 M:      Masami Hiramatsu <mhiramat@kernel.org>
9427 S:      Maintained
9428 F:      Documentation/kprobes.txt
9429 F:      include/linux/kprobes.h
9430 F:      include/asm-generic/kprobes.h
9431 F:      kernel/kprobes.c
9432
9433 KS0108 LCD CONTROLLER DRIVER
9434 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9435 S:      Maintained
9436 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9437 F:      drivers/auxdisplay/ks0108.c
9438 F:      include/linux/ks0108.h
9439
9440 L3MDEV
9441 M:      David Ahern <dsahern@kernel.org>
9442 L:      netdev@vger.kernel.org
9443 S:      Maintained
9444 F:      net/l3mdev
9445 F:      include/net/l3mdev.h
9446
9447 L7 BPF FRAMEWORK
9448 M:      John Fastabend <john.fastabend@gmail.com>
9449 M:      Daniel Borkmann <daniel@iogearbox.net>
9450 M:      Jakub Sitnicki <jakub@cloudflare.com>
9451 M:      Lorenz Bauer <lmb@cloudflare.com>
9452 L:      netdev@vger.kernel.org
9453 L:      bpf@vger.kernel.org
9454 S:      Maintained
9455 F:      include/linux/skmsg.h
9456 F:      net/core/skmsg.c
9457 F:      net/core/sock_map.c
9458 F:      net/ipv4/tcp_bpf.c
9459 F:      net/ipv4/udp_bpf.c
9460
9461 LANTIQ / INTEL Ethernet drivers
9462 M:      Hauke Mehrtens <hauke@hauke-m.de>
9463 L:      netdev@vger.kernel.org
9464 S:      Maintained
9465 F:      net/dsa/tag_gswip.c
9466 F:      drivers/net/ethernet/lantiq_xrx200.c
9467 F:      drivers/net/dsa/lantiq_pce.h
9468 F:      drivers/net/dsa/lantiq_gswip.c
9469
9470 LANTIQ MIPS ARCHITECTURE
9471 M:      John Crispin <john@phrozen.org>
9472 L:      linux-mips@vger.kernel.org
9473 S:      Maintained
9474 F:      arch/mips/lantiq
9475 F:      drivers/soc/lantiq
9476
9477 LAPB module
9478 L:      linux-x25@vger.kernel.org
9479 S:      Orphan
9480 F:      Documentation/networking/lapb-module.txt
9481 F:      include/*/lapb.h
9482 F:      net/lapb/
9483
9484 LASI 53c700 driver for PARISC
9485 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9486 L:      linux-scsi@vger.kernel.org
9487 S:      Maintained
9488 F:      Documentation/scsi/53c700.rst
9489 F:      drivers/scsi/53c700*
9490
9491 LEAKING_ADDRESSES
9492 M:      Tobin C. Harding <me@tobin.cc>
9493 M:      Tycho Andersen <tycho@tycho.ws>
9494 L:      kernel-hardening@lists.openwall.com
9495 S:      Maintained
9496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9497 F:      scripts/leaking_addresses.pl
9498
9499 LED SUBSYSTEM
9500 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9501 M:      Pavel Machek <pavel@ucw.cz>
9502 R:      Dan Murphy <dmurphy@ti.com>
9503 L:      linux-leds@vger.kernel.org
9504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9506 S:      Maintained
9507 F:      Documentation/devicetree/bindings/leds/
9508 F:      drivers/leds/
9509 F:      include/linux/leds.h
9510
9511 LEGACY EEPROM DRIVER
9512 M:      Jean Delvare <jdelvare@suse.com>
9513 S:      Maintained
9514 F:      Documentation/misc-devices/eeprom.rst
9515 F:      drivers/misc/eeprom/eeprom.c
9516
9517 LEGO MINDSTORMS EV3
9518 R:      David Lechner <david@lechnology.com>
9519 S:      Maintained
9520 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9521 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9522 F:      drivers/power/supply/lego_ev3_battery.c
9523
9524 LEGO USB Tower driver
9525 M:      Juergen Stuber <starblue@users.sourceforge.net>
9526 L:      legousb-devel@lists.sourceforge.net
9527 W:      http://legousb.sourceforge.net/
9528 S:      Maintained
9529 F:      drivers/usb/misc/legousbtower.c
9530
9531 LG LAPTOP EXTRAS
9532 M:      Matan Ziv-Av <matan@svgalib.org>
9533 L:      platform-driver-x86@vger.kernel.org
9534 S:      Maintained
9535 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9536 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9537 F:      drivers/platform/x86/lg-laptop.c
9538
9539 LG2160 MEDIA DRIVER
9540 M:      Michael Krufky <mkrufky@linuxtv.org>
9541 L:      linux-media@vger.kernel.org
9542 W:      https://linuxtv.org
9543 W:      http://github.com/mkrufky
9544 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9545 T:      git git://linuxtv.org/mkrufky/tuners.git
9546 S:      Maintained
9547 F:      drivers/media/dvb-frontends/lg2160.*
9548
9549 LGDT3305 MEDIA DRIVER
9550 M:      Michael Krufky <mkrufky@linuxtv.org>
9551 L:      linux-media@vger.kernel.org
9552 W:      https://linuxtv.org
9553 W:      http://github.com/mkrufky
9554 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9555 T:      git git://linuxtv.org/mkrufky/tuners.git
9556 S:      Maintained
9557 F:      drivers/media/dvb-frontends/lgdt3305.*
9558
9559 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9560 M:      Viresh Kumar <vireshk@kernel.org>
9561 L:      linux-ide@vger.kernel.org
9562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9563 S:      Maintained
9564 F:      include/linux/pata_arasan_cf_data.h
9565 F:      drivers/ata/pata_arasan_cf.c
9566
9567 LIBATA PATA DRIVERS
9568 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9569 M:      Jens Axboe <axboe@kernel.dk>
9570 L:      linux-ide@vger.kernel.org
9571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9572 S:      Maintained
9573 F:      drivers/ata/pata_*.c
9574 F:      drivers/ata/ata_generic.c
9575
9576 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9577 M:      Linus Walleij <linus.walleij@linaro.org>
9578 L:      linux-ide@vger.kernel.org
9579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9580 S:      Maintained
9581 F:      drivers/ata/pata_ftide010.c
9582 F:      drivers/ata/sata_gemini.c
9583 F:      drivers/ata/sata_gemini.h
9584
9585 LIBATA SATA AHCI PLATFORM devices support
9586 M:      Hans de Goede <hdegoede@redhat.com>
9587 M:      Jens Axboe <axboe@kernel.dk>
9588 L:      linux-ide@vger.kernel.org
9589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9590 S:      Maintained
9591 F:      drivers/ata/ahci_platform.c
9592 F:      drivers/ata/libahci_platform.c
9593 F:      include/linux/ahci_platform.h
9594
9595 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9596 M:      Mikael Pettersson <mikpelinux@gmail.com>
9597 L:      linux-ide@vger.kernel.org
9598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9599 S:      Maintained
9600 F:      drivers/ata/sata_promise.*
9601
9602 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9603 M:      Jens Axboe <axboe@kernel.dk>
9604 L:      linux-ide@vger.kernel.org
9605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9606 S:      Maintained
9607 F:      drivers/ata/
9608 F:      include/linux/ata.h
9609 F:      include/linux/libata.h
9610 F:      Documentation/devicetree/bindings/ata/
9611
9612 LIBLOCKDEP
9613 M:      Sasha Levin <alexander.levin@microsoft.com>
9614 S:      Maintained
9615 F:      tools/lib/lockdep/
9616
9617 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9618 M:      Dan Williams <dan.j.williams@intel.com>
9619 M:      Vishal Verma <vishal.l.verma@intel.com>
9620 M:      Dave Jiang <dave.jiang@intel.com>
9621 L:      linux-nvdimm@lists.01.org
9622 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9623 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9624 S:      Supported
9625 F:      drivers/nvdimm/blk.c
9626 F:      drivers/nvdimm/region_devs.c
9627
9628 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9629 M:      Vishal Verma <vishal.l.verma@intel.com>
9630 M:      Dan Williams <dan.j.williams@intel.com>
9631 M:      Dave Jiang <dave.jiang@intel.com>
9632 L:      linux-nvdimm@lists.01.org
9633 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9634 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9635 S:      Supported
9636 F:      drivers/nvdimm/btt*
9637
9638 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9639 M:      Dan Williams <dan.j.williams@intel.com>
9640 M:      Vishal Verma <vishal.l.verma@intel.com>
9641 M:      Dave Jiang <dave.jiang@intel.com>
9642 L:      linux-nvdimm@lists.01.org
9643 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9644 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9645 S:      Supported
9646 F:      drivers/nvdimm/pmem*
9647
9648 LIBNVDIMM: DEVICETREE BINDINGS
9649 M:      Oliver O'Halloran <oohall@gmail.com>
9650 L:      linux-nvdimm@lists.01.org
9651 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9652 S:      Supported
9653 F:      drivers/nvdimm/of_pmem.c
9654 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9655
9656 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9657 M:      Dan Williams <dan.j.williams@intel.com>
9658 M:      Vishal Verma <vishal.l.verma@intel.com>
9659 M:      Dave Jiang <dave.jiang@intel.com>
9660 M:      Ira Weiny <ira.weiny@intel.com>
9661 L:      linux-nvdimm@lists.01.org
9662 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9663 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9665 S:      Supported
9666 F:      drivers/nvdimm/*
9667 F:      drivers/acpi/nfit/*
9668 F:      include/linux/nd.h
9669 F:      include/linux/libnvdimm.h
9670 F:      include/uapi/linux/ndctl.h
9671
9672 LICENSES and SPDX stuff
9673 M:      Thomas Gleixner <tglx@linutronix.de>
9674 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9675 L:      linux-spdx@vger.kernel.org
9676 S:      Maintained
9677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9678 F:      COPYING
9679 F:      Documentation/process/license-rules.rst
9680 F:      LICENSES/
9681 F:      scripts/spdxcheck-test.sh
9682 F:      scripts/spdxcheck.py
9683
9684 LIGHTNVM PLATFORM SUPPORT
9685 M:      Matias Bjorling <mb@lightnvm.io>
9686 W:      http://github/OpenChannelSSD
9687 L:      linux-block@vger.kernel.org
9688 S:      Maintained
9689 F:      drivers/lightnvm/
9690 F:      include/linux/lightnvm.h
9691 F:      include/uapi/linux/lightnvm.h
9692
9693 LINUX FOR POWER MACINTOSH
9694 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9695 W:      http://www.penguinppc.org/
9696 L:      linuxppc-dev@lists.ozlabs.org
9697 S:      Maintained
9698 F:      arch/powerpc/platforms/powermac/
9699 F:      drivers/macintosh/
9700
9701 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9702 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9703 M:      Paul Mackerras <paulus@samba.org>
9704 M:      Michael Ellerman <mpe@ellerman.id.au>
9705 W:      https://github.com/linuxppc/linux/wiki
9706 L:      linuxppc-dev@lists.ozlabs.org
9707 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9709 S:      Supported
9710 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9711 F:      Documentation/devicetree/bindings/powerpc/
9712 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9713 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9714 F:      Documentation/powerpc/
9715 F:      arch/powerpc/
9716 F:      drivers/char/tpm/tpm_ibmvtpm*
9717 F:      drivers/crypto/nx/
9718 F:      drivers/crypto/vmx/
9719 F:      drivers/i2c/busses/i2c-opal.c
9720 F:      drivers/net/ethernet/ibm/ibmveth.*
9721 F:      drivers/net/ethernet/ibm/ibmvnic.*
9722 F:      drivers/pci/hotplug/pnv_php.c
9723 F:      drivers/pci/hotplug/rpa*
9724 F:      drivers/rtc/rtc-opal.c
9725 F:      drivers/scsi/ibmvscsi/
9726 F:      drivers/tty/hvc/hvc_opal.c
9727 F:      drivers/watchdog/wdrtas.c
9728 F:      tools/testing/selftests/powerpc
9729 N:      /pmac
9730 N:      powermac
9731 N:      powernv
9732 N:      [^a-z0-9]ps3
9733 N:      pseries
9734
9735 LINUX FOR POWERPC EMBEDDED MPC5XXX
9736 M:      Anatolij Gustschin <agust@denx.de>
9737 L:      linuxppc-dev@lists.ozlabs.org
9738 T:      git git://git.denx.de/linux-denx-agust.git
9739 S:      Maintained
9740 F:      arch/powerpc/platforms/512x/
9741 F:      arch/powerpc/platforms/52xx/
9742
9743 LINUX FOR POWERPC EMBEDDED PPC4XX
9744 M:      Alistair Popple <alistair@popple.id.au>
9745 M:      Matt Porter <mporter@kernel.crashing.org>
9746 W:      http://www.penguinppc.org/
9747 L:      linuxppc-dev@lists.ozlabs.org
9748 S:      Maintained
9749 F:      arch/powerpc/platforms/40x/
9750 F:      arch/powerpc/platforms/44x/
9751
9752 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9753 M:      Scott Wood <oss@buserror.net>
9754 M:      Kumar Gala <galak@kernel.crashing.org>
9755 W:      http://www.penguinppc.org/
9756 L:      linuxppc-dev@lists.ozlabs.org
9757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9758 S:      Maintained
9759 F:      arch/powerpc/platforms/83xx/
9760 F:      arch/powerpc/platforms/85xx/
9761 F:      Documentation/devicetree/bindings/powerpc/fsl/
9762
9763 LINUX FOR POWERPC EMBEDDED PPC8XX
9764 M:      Vitaly Bordug <vitb@kernel.crashing.org>
9765 W:      http://www.penguinppc.org/
9766 L:      linuxppc-dev@lists.ozlabs.org
9767 S:      Maintained
9768 F:      arch/powerpc/platforms/8xx/
9769
9770 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
9771 L:      linuxppc-dev@lists.ozlabs.org
9772 S:      Orphan
9773 F:      arch/powerpc/*/*virtex*
9774 F:      arch/powerpc/*/*/*virtex*
9775
9776 LINUX FOR POWERPC PA SEMI PWRFICIENT
9777 L:      linuxppc-dev@lists.ozlabs.org
9778 S:      Orphan
9779 F:      arch/powerpc/platforms/pasemi/
9780 F:      drivers/*/*pasemi*
9781 F:      drivers/*/*/*pasemi*
9782
9783 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9784 M:      Kees Cook <keescook@chromium.org>
9785 S:      Maintained
9786 F:      drivers/misc/lkdtm/*
9787 F:      tools/testing/selftests/lkdtm/*
9788
9789 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9790 M:      Alan Stern <stern@rowland.harvard.edu>
9791 M:      Andrea Parri <parri.andrea@gmail.com>
9792 M:      Will Deacon <will@kernel.org>
9793 M:      Peter Zijlstra <peterz@infradead.org>
9794 M:      Boqun Feng <boqun.feng@gmail.com>
9795 M:      Nicholas Piggin <npiggin@gmail.com>
9796 M:      David Howells <dhowells@redhat.com>
9797 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9798 M:      Luc Maranget <luc.maranget@inria.fr>
9799 M:      "Paul E. McKenney" <paulmck@kernel.org>
9800 R:      Akira Yokosawa <akiyks@gmail.com>
9801 R:      Daniel Lustig <dlustig@nvidia.com>
9802 L:      linux-kernel@vger.kernel.org
9803 L:      linux-arch@vger.kernel.org
9804 S:      Supported
9805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9806 F:      tools/memory-model/
9807 F:      Documentation/atomic_bitops.txt
9808 F:      Documentation/atomic_t.txt
9809 F:      Documentation/core-api/atomic_ops.rst
9810 F:      Documentation/core-api/refcount-vs-atomic.rst
9811 F:      Documentation/memory-barriers.txt
9812
9813 LIS3LV02D ACCELEROMETER DRIVER
9814 M:      Eric Piel <eric.piel@tremplin-utc.net>
9815 S:      Maintained
9816 F:      Documentation/misc-devices/lis3lv02d.rst
9817 F:      drivers/misc/lis3lv02d/
9818 F:      drivers/platform/x86/hp_accel.c
9819
9820 LIST KUNIT TEST
9821 M:      David Gow <davidgow@google.com>
9822 L:      linux-kselftest@vger.kernel.org
9823 L:      kunit-dev@googlegroups.com
9824 S:      Maintained
9825 F:      lib/list-test.c
9826
9827 LIVE PATCHING
9828 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9829 M:      Jiri Kosina <jikos@kernel.org>
9830 M:      Miroslav Benes <mbenes@suse.cz>
9831 M:      Petr Mladek <pmladek@suse.com>
9832 R:      Joe Lawrence <joe.lawrence@redhat.com>
9833 S:      Maintained
9834 F:      kernel/livepatch/
9835 F:      include/linux/livepatch.h
9836 F:      arch/x86/include/asm/livepatch.h
9837 F:      arch/x86/kernel/livepatch.c
9838 F:      Documentation/livepatch/
9839 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9840 F:      samples/livepatch/
9841 F:      tools/testing/selftests/livepatch/
9842 L:      live-patching@vger.kernel.org
9843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9844
9845 LLC (802.2)
9846 L:      netdev@vger.kernel.org
9847 S:      Odd fixes
9848 F:      include/linux/llc.h
9849 F:      include/uapi/linux/llc.h
9850 F:      include/net/llc*
9851 F:      net/llc/
9852
9853 LM73 HARDWARE MONITOR DRIVER
9854 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
9855 L:      linux-hwmon@vger.kernel.org
9856 S:      Maintained
9857 F:      drivers/hwmon/lm73.c
9858
9859 LM78 HARDWARE MONITOR DRIVER
9860 M:      Jean Delvare <jdelvare@suse.com>
9861 L:      linux-hwmon@vger.kernel.org
9862 S:      Maintained
9863 F:      Documentation/hwmon/lm78.rst
9864 F:      drivers/hwmon/lm78.c
9865
9866 LM83 HARDWARE MONITOR DRIVER
9867 M:      Jean Delvare <jdelvare@suse.com>
9868 L:      linux-hwmon@vger.kernel.org
9869 S:      Maintained
9870 F:      Documentation/hwmon/lm83.rst
9871 F:      drivers/hwmon/lm83.c
9872
9873 LM90 HARDWARE MONITOR DRIVER
9874 M:      Jean Delvare <jdelvare@suse.com>
9875 L:      linux-hwmon@vger.kernel.org
9876 S:      Maintained
9877 F:      Documentation/hwmon/lm90.rst
9878 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9879 F:      drivers/hwmon/lm90.c
9880 F:      include/dt-bindings/thermal/lm90.h
9881
9882 LM95234 HARDWARE MONITOR DRIVER
9883 M:      Guenter Roeck <linux@roeck-us.net>
9884 L:      linux-hwmon@vger.kernel.org
9885 S:      Maintained
9886 F:      Documentation/hwmon/lm95234.rst
9887 F:      drivers/hwmon/lm95234.c
9888
9889 LME2510 MEDIA DRIVER
9890 M:      Malcolm Priestley <tvboxspy@gmail.com>
9891 L:      linux-media@vger.kernel.org
9892 W:      https://linuxtv.org
9893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9894 S:      Maintained
9895 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9896
9897 LOADPIN SECURITY MODULE
9898 M:      Kees Cook <keescook@chromium.org>
9899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9900 S:      Supported
9901 F:      security/loadpin/
9902 F:      Documentation/admin-guide/LSM/LoadPin.rst
9903
9904 LOCKING PRIMITIVES
9905 M:      Peter Zijlstra <peterz@infradead.org>
9906 M:      Ingo Molnar <mingo@redhat.com>
9907 M:      Will Deacon <will@kernel.org>
9908 L:      linux-kernel@vger.kernel.org
9909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9910 S:      Maintained
9911 F:      Documentation/locking/
9912 F:      include/linux/lockdep.h
9913 F:      include/linux/spinlock*.h
9914 F:      arch/*/include/asm/spinlock*.h
9915 F:      include/linux/rwlock*.h
9916 F:      include/linux/mutex*.h
9917 F:      include/linux/rwsem*.h
9918 F:      include/linux/seqlock.h
9919 F:      lib/locking*.[ch]
9920 F:      kernel/locking/
9921 X:      kernel/locking/locktorture.c
9922
9923 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9924 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
9925 L:      linux-ntfs-dev@lists.sourceforge.net
9926 W:      http://www.linux-ntfs.org/content/view/19/37/
9927 S:      Maintained
9928 F:      Documentation/admin-guide/ldm.rst
9929 F:      block/partitions/ldm.*
9930
9931 LOGITECH HID GAMING KEYBOARDS
9932 M:      Hans de Goede <hdegoede@redhat.com>
9933 L:      linux-input@vger.kernel.org
9934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9935 S:      Maintained
9936 F:      drivers/hid/hid-lg-g15.c
9937
9938 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9939 M:      Sathya Prakash <sathya.prakash@broadcom.com>
9940 M:      Chaitra P B <chaitra.basappa@broadcom.com>
9941 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
9942 L:      MPT-FusionLinux.pdl@broadcom.com
9943 L:      linux-scsi@vger.kernel.org
9944 W:      http://www.avagotech.com/support/
9945 S:      Supported
9946 F:      drivers/message/fusion/
9947 F:      drivers/scsi/mpt3sas/
9948
9949 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9950 M:      Matthew Wilcox <willy@infradead.org>
9951 L:      linux-scsi@vger.kernel.org
9952 S:      Maintained
9953 F:      drivers/scsi/sym53c8xx_2/
9954
9955 LTC1660 DAC DRIVER
9956 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9957 L:      linux-iio@vger.kernel.org
9958 S:      Maintained
9959 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
9960 F:      drivers/iio/dac/ltc1660.c
9961
9962 LTC2983 IIO TEMPERATURE DRIVER
9963 M:      Nuno Sá <nuno.sa@analog.com>
9964 W:      http://ez.analog.com/community/linux-device-drivers
9965 L:      linux-iio@vger.kernel.org
9966 S:      Supported
9967 F:      drivers/iio/temperature/ltc2983.c
9968 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
9969
9970 LTC4261 HARDWARE MONITOR DRIVER
9971 M:      Guenter Roeck <linux@roeck-us.net>
9972 L:      linux-hwmon@vger.kernel.org
9973 S:      Maintained
9974 F:      Documentation/hwmon/ltc4261.rst
9975 F:      drivers/hwmon/ltc4261.c
9976
9977 LTC2947 HARDWARE MONITOR DRIVER
9978 M:      Nuno Sá <nuno.sa@analog.com>
9979 W:      http://ez.analog.com/community/linux-device-drivers
9980 L:      linux-hwmon@vger.kernel.org
9981 S:      Supported
9982 F:      drivers/hwmon/ltc2947-core.c
9983 F:      drivers/hwmon/ltc2947-spi.c
9984 F:      drivers/hwmon/ltc2947-i2c.c
9985 F:      drivers/hwmon/ltc2947.h
9986 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
9987
9988 LTC4306 I2C MULTIPLEXER DRIVER
9989 M:      Michael Hennerich <michael.hennerich@analog.com>
9990 W:      http://ez.analog.com/community/linux-device-drivers
9991 L:      linux-i2c@vger.kernel.org
9992 S:      Supported
9993 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9994 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9995
9996 LTP (Linux Test Project)
9997 M:      Mike Frysinger <vapier@gentoo.org>
9998 M:      Cyril Hrubis <chrubis@suse.cz>
9999 M:      Wanlong Gao <wanlong.gao@gmail.com>
10000 M:      Jan Stancek <jstancek@redhat.com>
10001 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10002 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10003 L:      ltp@lists.linux.it (subscribers-only)
10004 W:      http://linux-test-project.github.io/
10005 T:      git git://github.com/linux-test-project/ltp.git
10006 S:      Maintained
10007
10008 M68K ARCHITECTURE
10009 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10010 L:      linux-m68k@lists.linux-m68k.org
10011 W:      http://www.linux-m68k.org/
10012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10013 S:      Maintained
10014 F:      arch/m68k/
10015 F:      drivers/zorro/
10016
10017 M68K ON APPLE MACINTOSH
10018 M:      Joshua Thompson <funaho@jurai.org>
10019 W:      http://www.mac.linux-m68k.org/
10020 L:      linux-m68k@lists.linux-m68k.org
10021 S:      Maintained
10022 F:      arch/m68k/mac/
10023
10024 M68K ON HP9000/300
10025 M:      Philip Blundell <philb@gnu.org>
10026 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10027 S:      Maintained
10028 F:      arch/m68k/hp300/
10029
10030 M88DS3103 MEDIA DRIVER
10031 M:      Antti Palosaari <crope@iki.fi>
10032 L:      linux-media@vger.kernel.org
10033 W:      https://linuxtv.org
10034 W:      http://palosaari.fi/linux/
10035 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10036 T:      git git://linuxtv.org/anttip/media_tree.git
10037 S:      Maintained
10038 F:      drivers/media/dvb-frontends/m88ds3103*
10039
10040 M88RS2000 MEDIA DRIVER
10041 M:      Malcolm Priestley <tvboxspy@gmail.com>
10042 L:      linux-media@vger.kernel.org
10043 W:      https://linuxtv.org
10044 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10045 S:      Maintained
10046 F:      drivers/media/dvb-frontends/m88rs2000*
10047
10048 MA901 MASTERKIT USB FM RADIO DRIVER
10049 M:      Alexey Klimov <klimov.linux@gmail.com>
10050 L:      linux-media@vger.kernel.org
10051 T:      git git://linuxtv.org/media_tree.git
10052 S:      Maintained
10053 F:      drivers/media/radio/radio-ma901.c
10054
10055 MAC80211
10056 M:      Johannes Berg <johannes@sipsolutions.net>
10057 L:      linux-wireless@vger.kernel.org
10058 W:      http://wireless.kernel.org/
10059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10061 S:      Maintained
10062 F:      Documentation/networking/mac80211-injection.txt
10063 F:      include/net/mac80211.h
10064 F:      net/mac80211/
10065 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10066 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10067
10068 MAILBOX API
10069 M:      Jassi Brar <jassisinghbrar@gmail.com>
10070 L:      linux-kernel@vger.kernel.org
10071 S:      Maintained
10072 F:      drivers/mailbox/
10073 F:      include/linux/mailbox_client.h
10074 F:      include/linux/mailbox_controller.h
10075
10076 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10077 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10078 W:      http://www.kernel.org/doc/man-pages
10079 L:      linux-man@vger.kernel.org
10080 S:      Maintained
10081
10082 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10083 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10084 L:      linux-mips@vger.kernel.org
10085 S:      Maintained
10086 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10087
10088 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10089 M:      Andrew Lunn <andrew@lunn.ch>
10090 M:      Vivien Didelot <vivien.didelot@gmail.com>
10091 L:      netdev@vger.kernel.org
10092 S:      Maintained
10093 F:      drivers/net/dsa/mv88e6xxx/
10094 F:      include/linux/platform_data/mv88e6xxx.h
10095 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10096 F:      Documentation/networking/devlink/mv88e6xxx.rst
10097
10098 MARVELL ARMADA DRM SUPPORT
10099 M:      Russell King <linux@armlinux.org.uk>
10100 S:      Maintained
10101 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10102 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10103 F:      drivers/gpu/drm/armada/
10104 F:      include/uapi/drm/armada_drm.h
10105 F:      Documentation/devicetree/bindings/display/armada/
10106
10107 MARVELL ARMADA 3700 PHY DRIVERS
10108 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10109 S:      Maintained
10110 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10111 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10112 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10113 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10114
10115 MARVELL CRYPTO DRIVER
10116 M:      Boris Brezillon <bbrezillon@kernel.org>
10117 M:      Arnaud Ebalard <arno@natisbad.org>
10118 M:      Srujana Challa <schalla@marvell.com>
10119 F:      drivers/crypto/marvell/
10120 S:      Maintained
10121 L:      linux-crypto@vger.kernel.org
10122
10123 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10124 M:      Mirko Lindner <mlindner@marvell.com>
10125 M:      Stephen Hemminger <stephen@networkplumber.org>
10126 L:      netdev@vger.kernel.org
10127 S:      Maintained
10128 F:      drivers/net/ethernet/marvell/sk*
10129
10130 MARVELL LIBERTAS WIRELESS DRIVER
10131 L:      libertas-dev@lists.infradead.org
10132 S:      Orphan
10133 F:      drivers/net/wireless/marvell/libertas/
10134
10135 MARVELL MACCHIATOBIN SUPPORT
10136 M:      Russell King <linux@armlinux.org.uk>
10137 L:      linux-arm-kernel@lists.infradead.org
10138 S:      Maintained
10139 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10140
10141 MARVELL MV643XX ETHERNET DRIVER
10142 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10143 L:      netdev@vger.kernel.org
10144 S:      Maintained
10145 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10146 F:      include/linux/mv643xx.h
10147
10148 MARVELL MV88X3310 PHY DRIVER
10149 M:      Russell King <linux@armlinux.org.uk>
10150 L:      netdev@vger.kernel.org
10151 S:      Maintained
10152 F:      drivers/net/phy/marvell10g.c
10153
10154 MARVELL MVEBU THERMAL DRIVER
10155 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10156 S:      Maintained
10157 F:      drivers/thermal/armada_thermal.c
10158
10159 MARVELL MVNETA ETHERNET DRIVER
10160 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10161 L:      netdev@vger.kernel.org
10162 S:      Maintained
10163 F:      drivers/net/ethernet/marvell/mvneta.*
10164
10165 MARVELL MWIFIEX WIRELESS DRIVER
10166 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10167 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10168 M:      Xinming Hu <huxinming820@gmail.com>
10169 L:      linux-wireless@vger.kernel.org
10170 S:      Maintained
10171 F:      drivers/net/wireless/marvell/mwifiex/
10172
10173 MARVELL MWL8K WIRELESS DRIVER
10174 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10175 L:      linux-wireless@vger.kernel.org
10176 S:      Odd Fixes
10177 F:      drivers/net/wireless/marvell/mwl8k.c
10178
10179 MARVELL NAND CONTROLLER DRIVER
10180 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10181 L:      linux-mtd@lists.infradead.org
10182 S:      Maintained
10183 F:      drivers/mtd/nand/raw/marvell_nand.c
10184 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10185
10186 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10187 M:      Nicolas Pitre <nico@fluxnic.net>
10188 S:      Odd Fixes
10189 F:      drivers/mmc/host/mvsdio.*
10190
10191 MARVELL USB MDIO CONTROLLER DRIVER
10192 M:      Tobias Waldekranz <tobias@waldekranz.com>
10193 L:      netdev@vger.kernel.org
10194 S:      Maintained
10195 F:      drivers/net/phy/mdio-mvusb.c
10196 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10197
10198 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10199 M:      Hu Ziji <huziji@marvell.com>
10200 L:      linux-mmc@vger.kernel.org
10201 S:      Supported
10202 F:      drivers/mmc/host/sdhci-xenon*
10203 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10204
10205 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10206 M:      Sunil Goutham <sgoutham@marvell.com>
10207 M:      Linu Cherian <lcherian@marvell.com>
10208 M:      Geetha sowjanya <gakula@marvell.com>
10209 M:      Jerin Jacob <jerinj@marvell.com>
10210 L:      netdev@vger.kernel.org
10211 S:      Supported
10212 F:      drivers/net/ethernet/marvell/octeontx2/af/
10213 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10214
10215 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10216 M:      Sunil Goutham <sgoutham@marvell.com>
10217 M:      Geetha sowjanya <gakula@marvell.com>
10218 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10219 M:      hariprasad <hkelam@marvell.com>
10220 L:      netdev@vger.kernel.org
10221 S:      Supported
10222 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10223
10224 MATROX FRAMEBUFFER DRIVER
10225 L:      linux-fbdev@vger.kernel.org
10226 S:      Orphan
10227 F:      drivers/video/fbdev/matrox/matroxfb_*
10228 F:      include/uapi/linux/matroxfb.h
10229
10230 MAX16065 HARDWARE MONITOR DRIVER
10231 M:      Guenter Roeck <linux@roeck-us.net>
10232 L:      linux-hwmon@vger.kernel.org
10233 S:      Maintained
10234 F:      Documentation/hwmon/max16065.rst
10235 F:      drivers/hwmon/max16065.c
10236
10237 MAX2175 SDR TUNER DRIVER
10238 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10239 L:      linux-media@vger.kernel.org
10240 T:      git git://linuxtv.org/media_tree.git
10241 S:      Maintained
10242 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10243 F:      Documentation/media/v4l-drivers/max2175.rst
10244 F:      drivers/media/i2c/max2175*
10245 F:      include/uapi/linux/max2175.h
10246
10247 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10248 L:      linux-hwmon@vger.kernel.org
10249 S:      Orphan
10250 F:      Documentation/hwmon/max6650.rst
10251 F:      drivers/hwmon/max6650.c
10252
10253 MAX6697 HARDWARE MONITOR DRIVER
10254 M:      Guenter Roeck <linux@roeck-us.net>
10255 L:      linux-hwmon@vger.kernel.org
10256 S:      Maintained
10257 F:      Documentation/hwmon/max6697.rst
10258 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10259 F:      drivers/hwmon/max6697.c
10260 F:      include/linux/platform_data/max6697.h
10261
10262 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10263 M:      Peter Rosin <peda@axentia.se>
10264 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10265 S:      Maintained
10266 F:      Documentation/devicetree/bindings/sound/max9860.txt
10267 F:      sound/soc/codecs/max9860.*
10268
10269 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10270 M:      Andreas Klinger <ak@it-klinger.de>
10271 L:      linux-iio@vger.kernel.org
10272 S:      Maintained
10273 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10274 F:      drivers/iio/proximity/mb1232.c
10275
10276 MAXIM MAX77650 PMIC MFD DRIVER
10277 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10278 L:      linux-kernel@vger.kernel.org
10279 S:      Maintained
10280 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10281 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10282 F:      include/linux/mfd/max77650.h
10283 F:      drivers/mfd/max77650.c
10284 F:      drivers/regulator/max77650-regulator.c
10285 F:      drivers/power/supply/max77650-charger.c
10286 F:      drivers/input/misc/max77650-onkey.c
10287 F:      drivers/leds/leds-max77650.c
10288 F:      drivers/gpio/gpio-max77650.c
10289
10290 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10291 M:      Javier Martinez Canillas <javier@dowhile0.org>
10292 L:      linux-kernel@vger.kernel.org
10293 S:      Supported
10294 F:      drivers/regulator/max77802-regulator.c
10295 F:      Documentation/devicetree/bindings/*/*max77802.txt
10296 F:      include/dt-bindings/*/*max77802.h
10297
10298 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10299 M:      Krzysztof Kozlowski <krzk@kernel.org>
10300 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10301 L:      linux-pm@vger.kernel.org
10302 S:      Supported
10303 F:      drivers/power/supply/max14577_charger.c
10304 F:      drivers/power/supply/max77693_charger.c
10305
10306 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10307 M:      Chanwoo Choi <cw00.choi@samsung.com>
10308 M:      Krzysztof Kozlowski <krzk@kernel.org>
10309 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10310 L:      linux-kernel@vger.kernel.org
10311 S:      Supported
10312 F:      drivers/*/max14577*.c
10313 F:      drivers/*/max77686*.c
10314 F:      drivers/*/max77693*.c
10315 F:      drivers/extcon/extcon-max14577.c
10316 F:      drivers/extcon/extcon-max77693.c
10317 F:      drivers/rtc/rtc-max77686.c
10318 F:      drivers/clk/clk-max77686.c
10319 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10320 F:      Documentation/devicetree/bindings/*/max77686.txt
10321 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10322 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10323 F:      include/linux/mfd/max14577*.h
10324 F:      include/linux/mfd/max77686*.h
10325 F:      include/linux/mfd/max77693*.h
10326
10327 MAXIRADIO FM RADIO RECEIVER DRIVER
10328 M:      Hans Verkuil <hverkuil@xs4all.nl>
10329 L:      linux-media@vger.kernel.org
10330 T:      git git://linuxtv.org/media_tree.git
10331 W:      https://linuxtv.org
10332 S:      Maintained
10333 F:      drivers/media/radio/radio-maxiradio*
10334
10335 MCAN MMIO DEVICE DRIVER
10336 M:      Dan Murphy <dmurphy@ti.com>
10337 M:      Sriram Dash <sriram.dash@samsung.com>
10338 L:      linux-can@vger.kernel.org
10339 S:      Maintained
10340 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10341 F:      drivers/net/can/m_can/m_can.c
10342 F:      drivers/net/can/m_can/m_can.h
10343 F:      drivers/net/can/m_can/m_can_platform.c
10344
10345 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10346 M:      Rishi Gupta <gupt21@gmail.com>
10347 L:      linux-i2c@vger.kernel.org
10348 L:      linux-input@vger.kernel.org
10349 S:      Maintained
10350 F:      drivers/hid/hid-mcp2221.c
10351
10352 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10353 M:      Peter Rosin <peda@axentia.se>
10354 L:      linux-iio@vger.kernel.org
10355 S:      Maintained
10356 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10357 F:      drivers/iio/potentiometer/mcp4018.c
10358 F:      drivers/iio/potentiometer/mcp4531.c
10359
10360 MCR20A IEEE-802.15.4 RADIO DRIVER
10361 M:      Xue Liu <liuxuenetmail@gmail.com>
10362 L:      linux-wpan@vger.kernel.org
10363 W:      https://github.com/xueliu/mcr20a-linux
10364 S:      Maintained
10365 F:      drivers/net/ieee802154/mcr20a.c
10366 F:      drivers/net/ieee802154/mcr20a.h
10367 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10368
10369 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10370 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10371 L:      linux-iio@vger.kernel.org
10372 S:      Maintained
10373 F:      drivers/iio/dac/cio-dac.c
10374
10375 MEDIA CONTROLLER FRAMEWORK
10376 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10377 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10378 L:      linux-media@vger.kernel.org
10379 W:      https://www.linuxtv.org
10380 T:      git git://linuxtv.org/media_tree.git
10381 S:      Supported
10382 F:      drivers/media/mc/
10383 F:      include/media/media-*.h
10384 F:      include/uapi/linux/media.h
10385
10386 MEDIA DRIVERS FOR ASCOT2E
10387 M:      Sergey Kozlov <serjk@netup.ru>
10388 M:      Abylay Ospan <aospan@netup.ru>
10389 L:      linux-media@vger.kernel.org
10390 W:      https://linuxtv.org
10391 W:      http://netup.tv/
10392 T:      git git://linuxtv.org/media_tree.git
10393 S:      Supported
10394 F:      drivers/media/dvb-frontends/ascot2e*
10395
10396 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10397 M:      Jasmin Jessich <jasmin@anw.at>
10398 L:      linux-media@vger.kernel.org
10399 W:      https://linuxtv.org
10400 T:      git git://linuxtv.org/media_tree.git
10401 S:      Maintained
10402 F:      drivers/media/dvb-frontends/cxd2099*
10403
10404 MEDIA DRIVERS FOR CXD2841ER
10405 M:      Sergey Kozlov <serjk@netup.ru>
10406 M:      Abylay Ospan <aospan@netup.ru>
10407 L:      linux-media@vger.kernel.org
10408 W:      https://linuxtv.org
10409 W:      http://netup.tv/
10410 T:      git git://linuxtv.org/media_tree.git
10411 S:      Supported
10412 F:      drivers/media/dvb-frontends/cxd2841er*
10413
10414 MEDIA DRIVERS FOR CXD2880
10415 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10416 L:      linux-media@vger.kernel.org
10417 W:      http://linuxtv.org/
10418 T:      git git://linuxtv.org/media_tree.git
10419 S:      Supported
10420 F:      drivers/media/dvb-frontends/cxd2880/*
10421 F:      drivers/media/spi/cxd2880*
10422
10423 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10424 L:      linux-media@vger.kernel.org
10425 W:      https://linuxtv.org
10426 T:      git git://linuxtv.org/media_tree.git
10427 S:      Orphan
10428 F:      drivers/media/pci/ddbridge/*
10429
10430 MEDIA DRIVERS FOR FREESCALE IMX
10431 M:      Steve Longerbeam <slongerbeam@gmail.com>
10432 M:      Philipp Zabel <p.zabel@pengutronix.de>
10433 L:      linux-media@vger.kernel.org
10434 T:      git git://linuxtv.org/media_tree.git
10435 S:      Maintained
10436 F:      Documentation/devicetree/bindings/media/imx.txt
10437 F:      Documentation/media/v4l-drivers/imx.rst
10438 F:      drivers/staging/media/imx/
10439 F:      include/linux/imx-media.h
10440 F:      include/media/imx.h
10441
10442 MEDIA DRIVER FOR FREESCALE IMX PXP
10443 M:      Philipp Zabel <p.zabel@pengutronix.de>
10444 L:      linux-media@vger.kernel.org
10445 T:      git git://linuxtv.org/media_tree.git
10446 S:      Maintained
10447 F:      drivers/media/platform/imx-pxp.[ch]
10448
10449 MEDIA DRIVERS FOR FREESCALE IMX7
10450 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10451 L:      linux-media@vger.kernel.org
10452 T:      git git://linuxtv.org/media_tree.git
10453 S:      Maintained
10454 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10455 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10456 F:      Documentation/media/v4l-drivers/imx7.rst
10457 F:      drivers/staging/media/imx/imx7-media-csi.c
10458 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10459
10460 MEDIA DRIVERS FOR HELENE
10461 M:      Abylay Ospan <aospan@netup.ru>
10462 L:      linux-media@vger.kernel.org
10463 W:      https://linuxtv.org
10464 W:      http://netup.tv/
10465 T:      git git://linuxtv.org/media_tree.git
10466 S:      Supported
10467 F:      drivers/media/dvb-frontends/helene*
10468
10469 MEDIA DRIVERS FOR HORUS3A
10470 M:      Sergey Kozlov <serjk@netup.ru>
10471 M:      Abylay Ospan <aospan@netup.ru>
10472 L:      linux-media@vger.kernel.org
10473 W:      https://linuxtv.org
10474 W:      http://netup.tv/
10475 T:      git git://linuxtv.org/media_tree.git
10476 S:      Supported
10477 F:      drivers/media/dvb-frontends/horus3a*
10478
10479 MEDIA DRIVERS FOR LNBH25
10480 M:      Sergey Kozlov <serjk@netup.ru>
10481 M:      Abylay Ospan <aospan@netup.ru>
10482 L:      linux-media@vger.kernel.org
10483 W:      https://linuxtv.org
10484 W:      http://netup.tv/
10485 T:      git git://linuxtv.org/media_tree.git
10486 S:      Supported
10487 F:      drivers/media/dvb-frontends/lnbh25*
10488
10489 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10490 L:      linux-media@vger.kernel.org
10491 W:      https://linuxtv.org
10492 T:      git git://linuxtv.org/media_tree.git
10493 S:      Orphan
10494 F:      drivers/media/dvb-frontends/mxl5xx*
10495
10496 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10497 M:      Sergey Kozlov <serjk@netup.ru>
10498 M:      Abylay Ospan <aospan@netup.ru>
10499 L:      linux-media@vger.kernel.org
10500 W:      https://linuxtv.org
10501 W:      http://netup.tv/
10502 T:      git git://linuxtv.org/media_tree.git
10503 S:      Supported
10504 F:      drivers/media/pci/netup_unidvb/*
10505
10506 MEDIA DRIVERS FOR RENESAS - CEU
10507 M:      Jacopo Mondi <jacopo@jmondi.org>
10508 L:      linux-media@vger.kernel.org
10509 L:      linux-renesas-soc@vger.kernel.org
10510 T:      git git://linuxtv.org/media_tree.git
10511 S:      Supported
10512 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10513 F:      drivers/media/platform/renesas-ceu.c
10514 F:      include/media/drv-intf/renesas-ceu.h
10515
10516 MEDIA DRIVERS FOR RENESAS - DRIF
10517 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10518 L:      linux-media@vger.kernel.org
10519 L:      linux-renesas-soc@vger.kernel.org
10520 T:      git git://linuxtv.org/media_tree.git
10521 S:      Supported
10522 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10523 F:      drivers/media/platform/rcar_drif.c
10524
10525 MEDIA DRIVERS FOR RENESAS - FCP
10526 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10527 L:      linux-media@vger.kernel.org
10528 L:      linux-renesas-soc@vger.kernel.org
10529 T:      git git://linuxtv.org/media_tree.git
10530 S:      Supported
10531 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10532 F:      drivers/media/platform/rcar-fcp.c
10533 F:      include/media/rcar-fcp.h
10534
10535 MEDIA DRIVERS FOR RENESAS - FDP1
10536 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10537 L:      linux-media@vger.kernel.org
10538 L:      linux-renesas-soc@vger.kernel.org
10539 T:      git git://linuxtv.org/media_tree.git
10540 S:      Supported
10541 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10542 F:      drivers/media/platform/rcar_fdp1.c
10543
10544 MEDIA DRIVERS FOR RENESAS - VIN
10545 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10546 L:      linux-media@vger.kernel.org
10547 L:      linux-renesas-soc@vger.kernel.org
10548 T:      git git://linuxtv.org/media_tree.git
10549 S:      Supported
10550 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10551 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10552 F:      drivers/media/platform/rcar-vin/
10553
10554 MEDIA DRIVERS FOR RENESAS - VSP1
10555 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10556 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10557 L:      linux-media@vger.kernel.org
10558 L:      linux-renesas-soc@vger.kernel.org
10559 T:      git git://linuxtv.org/media_tree.git
10560 S:      Supported
10561 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10562 F:      drivers/media/platform/vsp1/
10563
10564 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10565 L:      linux-media@vger.kernel.org
10566 W:      https://linuxtv.org
10567 T:      git git://linuxtv.org/media_tree.git
10568 S:      Orphan
10569 F:      drivers/media/dvb-frontends/stv0910*
10570
10571 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10572 L:      linux-media@vger.kernel.org
10573 W:      https://linuxtv.org
10574 T:      git git://linuxtv.org/media_tree.git
10575 S:      Orphan
10576 F:      drivers/media/dvb-frontends/stv6111*
10577
10578 MEDIA DRIVERS FOR STM32 - DCMI
10579 M:      Hugues Fruchet <hugues.fruchet@st.com>
10580 L:      linux-media@vger.kernel.org
10581 T:      git git://linuxtv.org/media_tree.git
10582 S:      Supported
10583 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10584 F:      drivers/media/platform/stm32/stm32-dcmi.c
10585
10586 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10587 M:      Dmitry Osipenko <digetx@gmail.com>
10588 L:      linux-media@vger.kernel.org
10589 L:      linux-tegra@vger.kernel.org
10590 T:      git git://linuxtv.org/media_tree.git
10591 S:      Maintained
10592 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10593 F:      drivers/staging/media/tegra-vde/
10594
10595 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10596 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10597 L:      linux-media@vger.kernel.org
10598 W:      https://linuxtv.org
10599 Q:      http://patchwork.kernel.org/project/linux-media/list/
10600 T:      git git://linuxtv.org/media_tree.git
10601 S:      Maintained
10602 F:      Documentation/devicetree/bindings/media/
10603 F:      Documentation/media/
10604 F:      drivers/media/
10605 F:      drivers/staging/media/
10606 F:      include/linux/platform_data/media/
10607 F:      include/media/
10608 F:      include/uapi/linux/dvb/
10609 F:      include/uapi/linux/videodev2.h
10610 F:      include/uapi/linux/media.h
10611 F:      include/uapi/linux/v4l2-*
10612 F:      include/uapi/linux/meye.h
10613 F:      include/uapi/linux/ivtv*
10614 F:      include/uapi/linux/uvcvideo.h
10615
10616 MEDIATEK BLUETOOTH DRIVER
10617 M:      Sean Wang <sean.wang@mediatek.com>
10618 L:      linux-bluetooth@vger.kernel.org
10619 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10620 S:      Maintained
10621 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10622 F:      drivers/bluetooth/btmtkuart.c
10623
10624 MEDIATEK CIR DRIVER
10625 M:      Sean Wang <sean.wang@mediatek.com>
10626 S:      Maintained
10627 F:      drivers/media/rc/mtk-cir.c
10628
10629 MEDIATEK DMA DRIVER
10630 M:      Sean Wang <sean.wang@mediatek.com>
10631 L:      dmaengine@vger.kernel.org
10632 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10633 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10634 S:      Maintained
10635 F:      Documentation/devicetree/bindings/dma/mtk-*
10636 F:      drivers/dma/mediatek/
10637
10638 MEDIATEK PMIC LED DRIVER
10639 M:      Sean Wang <sean.wang@mediatek.com>
10640 S:      Maintained
10641 F:      drivers/leds/leds-mt6323.c
10642 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10643
10644 MEDIATEK ETHERNET DRIVER
10645 M:      Felix Fietkau <nbd@openwrt.org>
10646 M:      John Crispin <john@phrozen.org>
10647 M:      Sean Wang <sean.wang@mediatek.com>
10648 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10649 L:      netdev@vger.kernel.org
10650 S:      Maintained
10651 F:      drivers/net/ethernet/mediatek/
10652
10653 MEDIATEK SWITCH DRIVER
10654 M:      Sean Wang <sean.wang@mediatek.com>
10655 L:      netdev@vger.kernel.org
10656 S:      Maintained
10657 F:      drivers/net/dsa/mt7530.*
10658 F:      net/dsa/tag_mtk.c
10659
10660 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10661 M:      Sean Wang <sean.wang@mediatek.com>
10662 L:      linux-pm@vger.kernel.org
10663 S:      Maintained
10664 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10665 F:      drivers/power/reset/mt6323-poweroff.c
10666
10667 MEDIATEK JPEG DRIVER
10668 M:      Rick Chang <rick.chang@mediatek.com>
10669 M:      Bin Liu <bin.liu@mediatek.com>
10670 S:      Supported
10671 F:      drivers/media/platform/mtk-jpeg/
10672 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10673
10674 MEDIATEK MDP DRIVER
10675 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10676 M:      Houlong Wei <houlong.wei@mediatek.com>
10677 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10678 S:      Supported
10679 F:      drivers/media/platform/mtk-mdp/
10680 F:      drivers/media/platform/mtk-vpu/
10681 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10682
10683 MEDIATEK MEDIA DRIVER
10684 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10685 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10686 S:      Supported
10687 F:      drivers/media/platform/mtk-vcodec/
10688 F:      drivers/media/platform/mtk-vpu/
10689 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10690 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10691
10692 MEDIATEK MMC/SD/SDIO DRIVER
10693 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10694 S:      Maintained
10695 F:      drivers/mmc/host/mtk-sd.c
10696 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10697
10698 MEDIATEK MT76 WIRELESS LAN DRIVER
10699 M:      Felix Fietkau <nbd@nbd.name>
10700 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10701 R:      Ryder Lee <ryder.lee@mediatek.com>
10702 R:      Roy Luo <royluo@google.com>
10703 L:      linux-wireless@vger.kernel.org
10704 S:      Maintained
10705 F:      drivers/net/wireless/mediatek/mt76/
10706
10707 MEDIATEK MT7601U WIRELESS LAN DRIVER
10708 M:      Jakub Kicinski <kubakici@wp.pl>
10709 L:      linux-wireless@vger.kernel.org
10710 S:      Maintained
10711 F:      drivers/net/wireless/mediatek/mt7601u/
10712
10713 MEDIATEK MT7621/28/88 I2C DRIVER
10714 M:      Stefan Roese <sr@denx.de>
10715 L:      linux-i2c@vger.kernel.org
10716 S:      Maintained
10717 F:      drivers/i2c/busses/i2c-mt7621.c
10718 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10719
10720 MEDIATEK NAND CONTROLLER DRIVER
10721 M:      Xiaolei Li <xiaolei.li@mediatek.com>
10722 L:      linux-mtd@lists.infradead.org
10723 S:      Maintained
10724 F:      drivers/mtd/nand/raw/mtk_*
10725 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10726
10727 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10728 M:      Sean Wang <sean.wang@mediatek.com>
10729 S:      Maintained
10730 F:      drivers/char/hw_random/mtk-rng.c
10731
10732 MEDIATEK USB3 DRD IP DRIVER
10733 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10734 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10736 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10737 S:      Maintained
10738 F:      drivers/usb/mtu3/
10739
10740 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10741 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10742 M:      Martin Donnelly <martin.donnelly@ge.com>
10743 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10744 S:      Maintained
10745 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10746 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10747
10748 MEGARAID SCSI/SAS DRIVERS
10749 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10750 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10751 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10752 L:      megaraidlinux.pdl@broadcom.com
10753 L:      linux-scsi@vger.kernel.org
10754 W:      http://www.avagotech.com/support/
10755 S:      Maintained
10756 F:      Documentation/scsi/megaraid.rst
10757 F:      drivers/scsi/megaraid.*
10758 F:      drivers/scsi/megaraid/
10759
10760 MELEXIS MLX90614 DRIVER
10761 M:      Crt Mori <cmo@melexis.com>
10762 L:      linux-iio@vger.kernel.org
10763 W:      http://www.melexis.com
10764 S:      Supported
10765 F:      drivers/iio/temperature/mlx90614.c
10766
10767 MELEXIS MLX90632 DRIVER
10768 M:      Crt Mori <cmo@melexis.com>
10769 L:      linux-iio@vger.kernel.org
10770 W:      http://www.melexis.com
10771 S:      Supported
10772 F:      drivers/iio/temperature/mlx90632.c
10773
10774 MELFAS MIP4 TOUCHSCREEN DRIVER
10775 M:      Sangwon Jee <jeesw@melfas.com>
10776 W:      http://www.melfas.com
10777 S:      Supported
10778 F:      drivers/input/touchscreen/melfas_mip4.c
10779 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10780
10781 MELLANOX ETHERNET DRIVER (mlx4_en)
10782 M:      Tariq Toukan <tariqt@mellanox.com>
10783 L:      netdev@vger.kernel.org
10784 S:      Supported
10785 W:      http://www.mellanox.com
10786 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10787 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10788
10789 MELLANOX ETHERNET DRIVER (mlx5e)
10790 M:      Saeed Mahameed <saeedm@mellanox.com>
10791 L:      netdev@vger.kernel.org
10792 S:      Supported
10793 W:      http://www.mellanox.com
10794 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10795 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10796
10797 MELLANOX ETHERNET INNOVA DRIVERS
10798 R:      Boris Pismenny <borisp@mellanox.com>
10799 L:      netdev@vger.kernel.org
10800 S:      Supported
10801 W:      http://www.mellanox.com
10802 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10803 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10804 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10805 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10806 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10807
10808 MELLANOX ETHERNET SWITCH DRIVERS
10809 M:      Jiri Pirko <jiri@mellanox.com>
10810 M:      Ido Schimmel <idosch@mellanox.com>
10811 L:      netdev@vger.kernel.org
10812 S:      Supported
10813 W:      http://www.mellanox.com
10814 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10815 F:      drivers/net/ethernet/mellanox/mlxsw/
10816 F:      tools/testing/selftests/drivers/net/mlxsw/
10817
10818 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10819 M:      mlxsw@mellanox.com
10820 L:      netdev@vger.kernel.org
10821 S:      Supported
10822 W:      http://www.mellanox.com
10823 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10824 F:      drivers/net/ethernet/mellanox/mlxfw/
10825
10826 MELLANOX HARDWARE PLATFORM SUPPORT
10827 M:      Andy Shevchenko <andy@infradead.org>
10828 M:      Darren Hart <dvhart@infradead.org>
10829 M:      Vadim Pasternak <vadimp@mellanox.com>
10830 L:      platform-driver-x86@vger.kernel.org
10831 S:      Supported
10832 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
10833 F:      drivers/platform/mellanox/
10834 F:      include/linux/platform_data/mlxreg.h
10835
10836 MELLANOX MLX4 core VPI driver
10837 M:      Tariq Toukan <tariqt@mellanox.com>
10838 L:      netdev@vger.kernel.org
10839 L:      linux-rdma@vger.kernel.org
10840 W:      http://www.mellanox.com
10841 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10842 S:      Supported
10843 F:      drivers/net/ethernet/mellanox/mlx4/
10844 F:      include/linux/mlx4/
10845
10846 MELLANOX MLX4 IB driver
10847 M:      Yishai Hadas <yishaih@mellanox.com>
10848 L:      linux-rdma@vger.kernel.org
10849 W:      http://www.mellanox.com
10850 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10851 S:      Supported
10852 F:      drivers/infiniband/hw/mlx4/
10853 F:      include/linux/mlx4/
10854 F:      include/uapi/rdma/mlx4-abi.h
10855
10856 MELLANOX MLX5 core VPI driver
10857 M:      Saeed Mahameed <saeedm@mellanox.com>
10858 M:      Leon Romanovsky <leonro@mellanox.com>
10859 L:      netdev@vger.kernel.org
10860 L:      linux-rdma@vger.kernel.org
10861 W:      http://www.mellanox.com
10862 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10863 S:      Supported
10864 F:      drivers/net/ethernet/mellanox/mlx5/core/
10865 F:      include/linux/mlx5/
10866 F:      Documentation/networking/device_drivers/mellanox/
10867
10868 MELLANOX MLX5 IB driver
10869 M:      Leon Romanovsky <leonro@mellanox.com>
10870 L:      linux-rdma@vger.kernel.org
10871 W:      http://www.mellanox.com
10872 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10873 S:      Supported
10874 F:      drivers/infiniband/hw/mlx5/
10875 F:      include/linux/mlx5/
10876 F:      include/uapi/rdma/mlx5-abi.h
10877
10878 MELLANOX MLXCPLD I2C AND MUX DRIVER
10879 M:      Vadim Pasternak <vadimp@mellanox.com>
10880 M:      Michael Shych <michaelsh@mellanox.com>
10881 L:      linux-i2c@vger.kernel.org
10882 S:      Supported
10883 F:      drivers/i2c/busses/i2c-mlxcpld.c
10884 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10885 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10886
10887 MELLANOX MLXCPLD LED DRIVER
10888 M:      Vadim Pasternak <vadimp@mellanox.com>
10889 L:      linux-leds@vger.kernel.org
10890 S:      Supported
10891 F:      drivers/leds/leds-mlxcpld.c
10892 F:      drivers/leds/leds-mlxreg.c
10893 F:      Documentation/leds/leds-mlxcpld.rst
10894
10895 MELLANOX PLATFORM DRIVER
10896 M:      Vadim Pasternak <vadimp@mellanox.com>
10897 L:      platform-driver-x86@vger.kernel.org
10898 S:      Supported
10899 F:      drivers/platform/x86/mlx-platform.c
10900
10901 MEMBARRIER SUPPORT
10902 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10903 M:      "Paul E. McKenney" <paulmck@kernel.org>
10904 L:      linux-kernel@vger.kernel.org
10905 S:      Supported
10906 F:      kernel/sched/membarrier.c
10907 F:      include/uapi/linux/membarrier.h
10908 F:      arch/powerpc/include/asm/membarrier.h
10909
10910 MEMBLOCK
10911 M:      Mike Rapoport <rppt@linux.ibm.com>
10912 L:      linux-mm@kvack.org
10913 S:      Maintained
10914 F:      include/linux/memblock.h
10915 F:      mm/memblock.c
10916 F:      Documentation/core-api/boot-time-mm.rst
10917
10918 MEMORY MANAGEMENT
10919 M:      Andrew Morton <akpm@linux-foundation.org>
10920 L:      linux-mm@kvack.org
10921 W:      http://www.linux-mm.org
10922 T:      quilt https://ozlabs.org/~akpm/mmotm/
10923 T:      quilt https://ozlabs.org/~akpm/mmots/
10924 T:      git git://github.com/hnaz/linux-mm.git
10925 S:      Maintained
10926 F:      include/linux/mm.h
10927 F:      include/linux/gfp.h
10928 F:      include/linux/mmzone.h
10929 F:      include/linux/memory_hotplug.h
10930 F:      include/linux/vmalloc.h
10931 F:      mm/
10932
10933 MEMORY TECHNOLOGY DEVICES (MTD)
10934 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10935 M:      Richard Weinberger <richard@nod.at>
10936 M:      Vignesh Raghavendra <vigneshr@ti.com>
10937 L:      linux-mtd@lists.infradead.org
10938 W:      http://www.linux-mtd.infradead.org/
10939 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10940 C:      irc://irc.oftc.net/mtd
10941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10943 S:      Maintained
10944 F:      Documentation/devicetree/bindings/mtd/
10945 F:      drivers/mtd/
10946 F:      include/linux/mtd/
10947 F:      include/uapi/mtd/
10948
10949 MEN A21 WATCHDOG DRIVER
10950 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10951 L:      linux-watchdog@vger.kernel.org
10952 S:      Maintained
10953 F:      drivers/watchdog/mena21_wdt.c
10954
10955 MEN CHAMELEON BUS (mcb)
10956 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10957 S:      Maintained
10958 F:      drivers/mcb/
10959 F:      include/linux/mcb.h
10960 F:      Documentation/driver-api/men-chameleon-bus.rst
10961
10962 MEN F21BMC (Board Management Controller)
10963 M:      Andreas Werner <andreas.werner@men.de>
10964 S:      Supported
10965 F:      drivers/mfd/menf21bmc.c
10966 F:      drivers/watchdog/menf21bmc_wdt.c
10967 F:      drivers/leds/leds-menf21bmc.c
10968 F:      drivers/hwmon/menf21bmc_hwmon.c
10969 F:      Documentation/hwmon/menf21bmc.rst
10970
10971 MEN Z069 WATCHDOG DRIVER
10972 M:      Johannes Thumshirn <jth@kernel.org>
10973 L:      linux-watchdog@vger.kernel.org
10974 S:      Maintained
10975 F:      drivers/watchdog/menz69_wdt.c
10976
10977 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10978 M:      Neil Armstrong <narmstrong@baylibre.com>
10979 L:      linux-media@vger.kernel.org
10980 L:      linux-amlogic@lists.infradead.org
10981 W:      http://linux-meson.com/
10982 S:      Supported
10983 F:      drivers/media/platform/meson/ao-cec.c
10984 F:      drivers/media/platform/meson/ao-cec-g12a.c
10985 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
10986 T:      git git://linuxtv.org/media_tree.git
10987
10988 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10989 M:      Liang Yang <liang.yang@amlogic.com>
10990 L:      linux-mtd@lists.infradead.org
10991 S:      Maintained
10992 F:      drivers/mtd/nand/raw/meson_*
10993 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10994
10995 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10996 M:      Maxime Jourdan <mjourdan@baylibre.com>
10997 L:      linux-media@vger.kernel.org
10998 L:      linux-amlogic@lists.infradead.org
10999 S:      Supported
11000 F:      drivers/staging/media/meson/vdec/
11001 T:      git git://linuxtv.org/media_tree.git
11002
11003 METHODE UDPU SUPPORT
11004 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11005 S:      Maintained
11006 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11007
11008 MHI BUS
11009 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11010 M:      Hemant Kumar <hemantk@codeaurora.org>
11011 L:      linux-arm-msm@vger.kernel.org
11012 S:      Maintained
11013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11014 F:      Documentation/mhi/
11015 F:      drivers/bus/mhi/
11016 F:      include/linux/mhi.h
11017
11018 MICROBLAZE ARCHITECTURE
11019 M:      Michal Simek <monstr@monstr.eu>
11020 W:      http://www.monstr.eu/fdt/
11021 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11022 S:      Supported
11023 F:      arch/microblaze/
11024
11025 MICROCHIP AT91 SERIAL DRIVER
11026 M:      Richard Genoud <richard.genoud@gmail.com>
11027 S:      Maintained
11028 F:      drivers/tty/serial/atmel_serial.c
11029 F:      drivers/tty/serial/atmel_serial.h
11030 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11031
11032 MICROCHIP AUDIO ASOC DRIVERS
11033 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11034 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11035 S:      Supported
11036 F:      sound/soc/atmel
11037
11038 MICROCHIP DMA DRIVER
11039 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11041 L:      dmaengine@vger.kernel.org
11042 S:      Supported
11043 F:      drivers/dma/at_hdmac.c
11044 F:      drivers/dma/at_hdmac_regs.h
11045 F:      include/linux/platform_data/dma-atmel.h
11046 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11047 F:      include/dt-bindings/dma/at91.h
11048
11049 MICROCHIP ECC DRIVER
11050 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11051 L:      linux-crypto@vger.kernel.org
11052 S:      Maintained
11053 F:      drivers/crypto/atmel-ecc.*
11054
11055 MICROCHIP I2C DRIVER
11056 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11057 L:      linux-i2c@vger.kernel.org
11058 S:      Supported
11059 F:      drivers/i2c/busses/i2c-at91.h
11060 F:      drivers/i2c/busses/i2c-at91-*.c
11061
11062 MICROCHIP ISC DRIVER
11063 M:      Eugen Hristev <eugen.hristev@microchip.com>
11064 L:      linux-media@vger.kernel.org
11065 S:      Supported
11066 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11067 F:      drivers/media/platform/atmel/atmel-isc.h
11068 F:      drivers/media/platform/atmel/atmel-isc-base.c
11069 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11070 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11071 F:      include/linux/atmel-isc-media.h
11072
11073 MICROCHIP ISI DRIVER
11074 M:      Eugen Hristev <eugen.hristev@microchip.com>
11075 L:      linux-media@vger.kernel.org
11076 S:      Supported
11077 F:      drivers/media/platform/atmel/atmel-isi.c
11078 F:      drivers/media/platform/atmel/atmel-isi.h
11079
11080 MICROCHIP AT91 USART MFD DRIVER
11081 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11082 L:      linux-kernel@vger.kernel.org
11083 S:      Supported
11084 F:      drivers/mfd/at91-usart.c
11085 F:      include/dt-bindings/mfd/at91-usart.h
11086 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11087
11088 MICROCHIP AT91 USART SPI DRIVER
11089 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11090 L:      linux-spi@vger.kernel.org
11091 S:      Supported
11092 F:      drivers/spi/spi-at91-usart.c
11093 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11094
11095 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11096 M:      Woojung Huh <woojung.huh@microchip.com>
11097 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11098 L:      netdev@vger.kernel.org
11099 S:      Maintained
11100 F:      net/dsa/tag_ksz.c
11101 F:      drivers/net/dsa/microchip/*
11102 F:      include/linux/platform_data/microchip-ksz.h
11103 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11104
11105 MICROCHIP LAN743X ETHERNET DRIVER
11106 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11107 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11108 L:      netdev@vger.kernel.org
11109 S:      Maintained
11110 F:      drivers/net/ethernet/microchip/lan743x_*
11111
11112 MICROCHIP LCDFB DRIVER
11113 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11114 L:      linux-fbdev@vger.kernel.org
11115 S:      Maintained
11116 F:      drivers/video/fbdev/atmel_lcdfb.c
11117 F:      include/video/atmel_lcdc.h
11118
11119 MICROCHIP MMC/SD/SDIO MCI DRIVER
11120 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11121 S:      Maintained
11122 F:      drivers/mmc/host/atmel-mci.c
11123
11124 MICROCHIP MCP16502 PMIC DRIVER
11125 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11126 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11127 S:      Maintained
11128 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11129 F:      drivers/regulator/mcp16502.c
11130
11131 MICROCHIP MCP3911 ADC DRIVER
11132 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11133 M:      Kent Gustavsson <kent@minoris.se>
11134 L:      linux-iio@vger.kernel.org
11135 S:      Supported
11136 F:      drivers/iio/adc/mcp3911.c
11137 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11138
11139 MICROCHIP NAND DRIVER
11140 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11141 L:      linux-mtd@lists.infradead.org
11142 S:      Supported
11143 F:      drivers/mtd/nand/raw/atmel/*
11144 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11145
11146 MICROCHIP PWM DRIVER
11147 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11149 L:      linux-pwm@vger.kernel.org
11150 S:      Supported
11151 F:      drivers/pwm/pwm-atmel.c
11152 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11153
11154 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11155 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11156 M:      Eugen Hristev <eugen.hristev@microchip.com>
11157 L:      linux-iio@vger.kernel.org
11158 S:      Supported
11159 F:      drivers/iio/adc/at91-sama5d2_adc.c
11160 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11161 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11162
11163 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11164 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11165 S:      Supported
11166 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11167
11168 MICROCHIP SPI DRIVER
11169 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11170 S:      Supported
11171 F:      drivers/spi/spi-atmel.*
11172
11173 MICROCHIP SSC DRIVER
11174 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11176 S:      Supported
11177 F:      drivers/misc/atmel-ssc.c
11178 F:      include/linux/atmel-ssc.h
11179
11180 MICROCHIP USBA UDC DRIVER
11181 M:      Cristian Birsan <cristian.birsan@microchip.com>
11182 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11183 S:      Supported
11184 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11185
11186 MICROCHIP USB251XB DRIVER
11187 M:      Richard Leitner <richard.leitner@skidata.com>
11188 L:      linux-usb@vger.kernel.org
11189 S:      Maintained
11190 F:      drivers/usb/misc/usb251xb.c
11191 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11192
11193 MICROCHIP XDMA DRIVER
11194 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11195 L:      linux-arm-kernel@lists.infradead.org
11196 L:      dmaengine@vger.kernel.org
11197 S:      Supported
11198 F:      drivers/dma/at_xdmac.c
11199
11200 MICROSEMI MIPS SOCS
11201 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11202 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11203 L:      linux-mips@vger.kernel.org
11204 S:      Supported
11205 F:      arch/mips/generic/board-ocelot.c
11206 F:      arch/mips/configs/generic/board-ocelot.config
11207 F:      arch/mips/boot/dts/mscc/
11208 F:      Documentation/devicetree/bindings/mips/mscc.txt
11209
11210 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11211 M:      Don Brace <don.brace@microsemi.com>
11212 L:      esc.storagedev@microsemi.com
11213 L:      linux-scsi@vger.kernel.org
11214 S:      Supported
11215 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11216 F:      drivers/scsi/smartpqi/Kconfig
11217 F:      drivers/scsi/smartpqi/Makefile
11218 F:      include/linux/cciss*.h
11219 F:      include/uapi/linux/cciss*.h
11220 F:      Documentation/scsi/smartpqi.rst
11221
11222 MICROSEMI ETHERNET SWITCH DRIVER
11223 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11224 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11225 L:      netdev@vger.kernel.org
11226 S:      Supported
11227 F:      drivers/net/ethernet/mscc/
11228 F:      include/soc/mscc/ocelot*
11229
11230 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11231 M:      Chen Yu <yu.c.chen@intel.com>
11232 L:      platform-driver-x86@vger.kernel.org
11233 S:      Supported
11234 F:      drivers/platform/x86/surfacepro3_button.c
11235
11236 MICROTEK X6 SCANNER
11237 M:      Oliver Neukum <oliver@neukum.org>
11238 S:      Maintained
11239 F:      drivers/usb/image/microtek.*
11240
11241 MIPS
11242 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11243 L:      linux-mips@vger.kernel.org
11244 W:      http://www.linux-mips.org/
11245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11246 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11247 S:      Maintained
11248 F:      Documentation/devicetree/bindings/mips/
11249 F:      Documentation/mips/
11250 F:      arch/mips/
11251 F:      drivers/platform/mips/
11252
11253 MIPS BOSTON DEVELOPMENT BOARD
11254 M:      Paul Burton <paulburton@kernel.org>
11255 L:      linux-mips@vger.kernel.org
11256 S:      Maintained
11257 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11258 F:      arch/mips/boot/dts/img/boston.dts
11259 F:      arch/mips/configs/generic/board-boston.config
11260 F:      drivers/clk/imgtec/clk-boston.c
11261 F:      include/dt-bindings/clock/boston-clock.h
11262
11263 MIPS GENERIC PLATFORM
11264 M:      Paul Burton <paulburton@kernel.org>
11265 L:      linux-mips@vger.kernel.org
11266 S:      Supported
11267 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11268 F:      arch/mips/generic/
11269 F:      arch/mips/tools/generic-board-config.sh
11270
11271 MIPS/LOONGSON1 ARCHITECTURE
11272 M:      Keguang Zhang <keguang.zhang@gmail.com>
11273 L:      linux-mips@vger.kernel.org
11274 S:      Maintained
11275 F:      arch/mips/loongson32/
11276 F:      arch/mips/include/asm/mach-loongson32/
11277 F:      drivers/*/*loongson1*
11278 F:      drivers/*/*/*loongson1*
11279
11280 MIPS/LOONGSON2EF ARCHITECTURE
11281 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11282 L:      linux-mips@vger.kernel.org
11283 S:      Maintained
11284 F:      arch/mips/loongson2ef/
11285 F:      arch/mips/include/asm/mach-loongson2ef/
11286 F:      drivers/*/*loongson2*
11287 F:      drivers/*/*/*loongson2*
11288
11289 MIPS/LOONGSON64 ARCHITECTURE
11290 M:      Huacai Chen <chenhc@lemote.com>
11291 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11292 L:      linux-mips@vger.kernel.org
11293 S:      Maintained
11294 F:      arch/mips/loongson64/
11295 F:      arch/mips/include/asm/mach-loongson64/
11296 F:      drivers/platform/mips/cpu_hwmon.c
11297 F:      drivers/irqchip/irq-loongson*
11298 F:      drivers/*/*loongson3*
11299 F:      drivers/*/*/*loongson3*
11300
11301 MIPS RINT INSTRUCTION EMULATION
11302 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11303 L:      linux-mips@vger.kernel.org
11304 S:      Supported
11305 F:      arch/mips/math-emu/sp_rint.c
11306 F:      arch/mips/math-emu/dp_rint.c
11307
11308 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11309 M:      Hans Verkuil <hverkuil@xs4all.nl>
11310 L:      linux-media@vger.kernel.org
11311 T:      git git://linuxtv.org/media_tree.git
11312 W:      https://linuxtv.org
11313 S:      Odd Fixes
11314 F:      drivers/media/radio/radio-miropcm20*
11315
11316 MMP SUPPORT
11317 R:      Lubomir Rintel <lkundrak@v3.sk>
11318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11320 S:      Odd Fixes
11321 F:      arch/arm/boot/dts/mmp*
11322 F:      arch/arm/mach-mmp/
11323 F:      linux/soc/mmp/
11324
11325 MMP USB PHY DRIVERS
11326 R:      Lubomir Rintel <lkundrak@v3.sk>
11327 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11328 S:      Maintained
11329 F:      drivers/phy/marvell/phy-mmp3-usb.c
11330 F:      drivers/phy/marvell/phy-pxa-usb.c
11331
11332 MMU GATHER AND TLB INVALIDATION
11333 M:      Will Deacon <will@kernel.org>
11334 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11335 M:      Andrew Morton <akpm@linux-foundation.org>
11336 M:      Nick Piggin <npiggin@gmail.com>
11337 M:      Peter Zijlstra <peterz@infradead.org>
11338 L:      linux-arch@vger.kernel.org
11339 L:      linux-mm@kvack.org
11340 S:      Maintained
11341 F:      arch/*/include/asm/tlb.h
11342 F:      include/asm-generic/tlb.h
11343 F:      mm/mmu_gather.c
11344
11345 MN88472 MEDIA DRIVER
11346 M:      Antti Palosaari <crope@iki.fi>
11347 L:      linux-media@vger.kernel.org
11348 W:      https://linuxtv.org
11349 W:      http://palosaari.fi/linux/
11350 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11351 S:      Maintained
11352 F:      drivers/media/dvb-frontends/mn88472*
11353
11354 MN88473 MEDIA DRIVER
11355 M:      Antti Palosaari <crope@iki.fi>
11356 L:      linux-media@vger.kernel.org
11357 W:      https://linuxtv.org
11358 W:      http://palosaari.fi/linux/
11359 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11360 S:      Maintained
11361 F:      drivers/media/dvb-frontends/mn88473*
11362
11363 MODULE SUPPORT
11364 M:      Jessica Yu <jeyu@kernel.org>
11365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11366 S:      Maintained
11367 F:      include/linux/module.h
11368 F:      kernel/module.c
11369
11370 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11371 W:      http://popies.net/meye/
11372 S:      Orphan
11373 F:      Documentation/media/v4l-drivers/meye*
11374 F:      drivers/media/pci/meye/
11375 F:      include/uapi/linux/meye.h
11376
11377 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11378 M:      Jiri Slaby <jirislaby@gmail.com>
11379 S:      Maintained
11380 F:      Documentation/driver-api/serial/moxa-smartio.rst
11381 F:      drivers/tty/mxser.*
11382
11383 MONOLITHIC POWER SYSTEM PMIC DRIVER
11384 M:      Saravanan Sekar <sravanhome@gmail.com>
11385 S:      Maintained
11386 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11387 F:      drivers/regulator/mp5416.c
11388 F:      drivers/regulator/mpq7920.c
11389 F:      drivers/regulator/mpq7920.h
11390
11391 MR800 AVERMEDIA USB FM RADIO DRIVER
11392 M:      Alexey Klimov <klimov.linux@gmail.com>
11393 L:      linux-media@vger.kernel.org
11394 T:      git git://linuxtv.org/media_tree.git
11395 S:      Maintained
11396 F:      drivers/media/radio/radio-mr800.c
11397
11398 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11399 M:      Alan Ott <alan@signal11.us>
11400 L:      linux-wpan@vger.kernel.org
11401 S:      Maintained
11402 F:      drivers/net/ieee802154/mrf24j40.c
11403 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11404
11405 MSI LAPTOP SUPPORT
11406 M:      "Lee, Chun-Yi" <jlee@suse.com>
11407 L:      platform-driver-x86@vger.kernel.org
11408 S:      Maintained
11409 F:      drivers/platform/x86/msi-laptop.c
11410
11411 MSI WMI SUPPORT
11412 L:      platform-driver-x86@vger.kernel.org
11413 S:      Orphan
11414 F:      drivers/platform/x86/msi-wmi.c
11415
11416 MSI001 MEDIA DRIVER
11417 M:      Antti Palosaari <crope@iki.fi>
11418 L:      linux-media@vger.kernel.org
11419 W:      https://linuxtv.org
11420 W:      http://palosaari.fi/linux/
11421 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11422 T:      git git://linuxtv.org/anttip/media_tree.git
11423 S:      Maintained
11424 F:      drivers/media/tuners/msi001*
11425
11426 MSI2500 MEDIA DRIVER
11427 M:      Antti Palosaari <crope@iki.fi>
11428 L:      linux-media@vger.kernel.org
11429 W:      https://linuxtv.org
11430 W:      http://palosaari.fi/linux/
11431 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11432 T:      git git://linuxtv.org/anttip/media_tree.git
11433 S:      Maintained
11434 F:      drivers/media/usb/msi2500/
11435
11436 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11437 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11438 L:      linux-mtd@lists.infradead.org
11439 S:      Maintained
11440 F:      drivers/mtd/devices/docg3*
11441
11442 MT9M032 APTINA SENSOR DRIVER
11443 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11444 L:      linux-media@vger.kernel.org
11445 T:      git git://linuxtv.org/media_tree.git
11446 S:      Maintained
11447 F:      drivers/media/i2c/mt9m032.c
11448 F:      include/media/i2c/mt9m032.h
11449
11450 MT9P031 APTINA CAMERA SENSOR
11451 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11452 L:      linux-media@vger.kernel.org
11453 T:      git git://linuxtv.org/media_tree.git
11454 S:      Maintained
11455 F:      drivers/media/i2c/mt9p031.c
11456 F:      include/media/i2c/mt9p031.h
11457
11458 MT9T001 APTINA CAMERA SENSOR
11459 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11460 L:      linux-media@vger.kernel.org
11461 T:      git git://linuxtv.org/media_tree.git
11462 S:      Maintained
11463 F:      drivers/media/i2c/mt9t001.c
11464 F:      include/media/i2c/mt9t001.h
11465
11466 MT9T112 APTINA CAMERA SENSOR
11467 M:      Jacopo Mondi <jacopo@jmondi.org>
11468 L:      linux-media@vger.kernel.org
11469 T:      git git://linuxtv.org/media_tree.git
11470 S:      Odd Fixes
11471 F:      drivers/media/i2c/mt9t112.c
11472 F:      include/media/i2c/mt9t112.h
11473
11474 MT9V032 APTINA CAMERA SENSOR
11475 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11476 L:      linux-media@vger.kernel.org
11477 T:      git git://linuxtv.org/media_tree.git
11478 S:      Maintained
11479 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11480 F:      drivers/media/i2c/mt9v032.c
11481 F:      include/media/i2c/mt9v032.h
11482
11483 MT9V111 APTINA CAMERA SENSOR
11484 M:      Jacopo Mondi <jacopo@jmondi.org>
11485 L:      linux-media@vger.kernel.org
11486 T:      git git://linuxtv.org/media_tree.git
11487 S:      Maintained
11488 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11489 F:      drivers/media/i2c/mt9v111.c
11490
11491 MULTIFUNCTION DEVICES (MFD)
11492 M:      Lee Jones <lee.jones@linaro.org>
11493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11494 S:      Supported
11495 F:      Documentation/devicetree/bindings/mfd/
11496 F:      drivers/mfd/
11497 F:      include/linux/mfd/
11498 F:      include/dt-bindings/mfd/
11499
11500 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11501 S:      Orphan
11502 F:      drivers/mmc/host/mmc_spi.c
11503 F:      include/linux/spi/mmc_spi.h
11504
11505 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11506 M:      Ulf Hansson <ulf.hansson@linaro.org>
11507 L:      linux-mmc@vger.kernel.org
11508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11509 S:      Maintained
11510 F:      Documentation/devicetree/bindings/mmc/
11511 F:      drivers/mmc/
11512 F:      include/linux/mmc/
11513 F:      include/uapi/linux/mmc/
11514
11515 MULTIPLEXER SUBSYSTEM
11516 M:      Peter Rosin <peda@axentia.se>
11517 S:      Maintained
11518 F:      Documentation/ABI/testing/sysfs-class-mux*
11519 F:      Documentation/devicetree/bindings/mux/
11520 F:      include/dt-bindings/mux/
11521 F:      include/linux/mux/
11522 F:      drivers/mux/
11523
11524 MULTITECH MULTIPORT CARD (ISICOM)
11525 S:      Orphan
11526 F:      drivers/tty/isicom.c
11527 F:      include/linux/isicom.h
11528
11529 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11530 M:      Bin Liu <b-liu@ti.com>
11531 L:      linux-usb@vger.kernel.org
11532 S:      Maintained
11533 F:      drivers/usb/musb/
11534
11535 MXL301RF MEDIA DRIVER
11536 M:      Akihiro Tsukada <tskd08@gmail.com>
11537 L:      linux-media@vger.kernel.org
11538 S:      Odd Fixes
11539 F:      drivers/media/tuners/mxl301rf*
11540
11541 MXL5007T MEDIA DRIVER
11542 M:      Michael Krufky <mkrufky@linuxtv.org>
11543 L:      linux-media@vger.kernel.org
11544 W:      https://linuxtv.org
11545 W:      http://github.com/mkrufky
11546 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11547 T:      git git://linuxtv.org/mkrufky/tuners.git
11548 S:      Maintained
11549 F:      drivers/media/tuners/mxl5007t.*
11550
11551 MXSFB DRM DRIVER
11552 M:      Marek Vasut <marex@denx.de>
11553 M:      Stefan Agner <stefan@agner.ch>
11554 L:      dri-devel@lists.freedesktop.org
11555 S:      Supported
11556 F:      drivers/gpu/drm/mxsfb/
11557 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11558 T:      git git://anongit.freedesktop.org/drm/drm-misc
11559
11560 MYLEX DAC960 PCI RAID Controller
11561 M:      Hannes Reinecke <hare@kernel.org>
11562 L:      linux-scsi@vger.kernel.org
11563 S:      Supported
11564 F:      drivers/scsi/myrb.*
11565 F:      drivers/scsi/myrs.*
11566
11567 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11568 M:      Chris Lee <christopher.lee@cspi.com>
11569 L:      netdev@vger.kernel.org
11570 W:      https://www.cspi.com/ethernet-products/support/downloads/
11571 S:      Supported
11572 F:      drivers/net/ethernet/myricom/myri10ge/
11573
11574 NAND FLASH SUBSYSTEM
11575 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11576 R:      Richard Weinberger <richard@nod.at>
11577 L:      linux-mtd@lists.infradead.org
11578 W:      http://www.linux-mtd.infradead.org/
11579 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11581 C:      irc://irc.oftc.net/mtd
11582 S:      Maintained
11583 F:      drivers/mtd/nand/
11584 F:      include/linux/mtd/*nand*.h
11585
11586 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11587 M:      Daniel Mack <zonque@gmail.com>
11588 S:      Maintained
11589 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11590 W:      http://www.native-instruments.com
11591 F:      sound/usb/caiaq/
11592
11593 NATSEMI ETHERNET DRIVER (DP8381x)
11594 S:      Orphan
11595 F:      drivers/net/ethernet/natsemi/natsemi.c
11596
11597 NCR 5380 SCSI DRIVERS
11598 M:      Finn Thain <fthain@telegraphics.com.au>
11599 M:      Michael Schmitz <schmitzmic@gmail.com>
11600 L:      linux-scsi@vger.kernel.org
11601 S:      Maintained
11602 F:      Documentation/scsi/g_NCR5380.rst
11603 F:      drivers/scsi/NCR5380.*
11604 F:      drivers/scsi/arm/cumana_1.c
11605 F:      drivers/scsi/arm/oak.c
11606 F:      drivers/scsi/atari_scsi.*
11607 F:      drivers/scsi/dmx3191d.c
11608 F:      drivers/scsi/g_NCR5380.*
11609 F:      drivers/scsi/mac_scsi.*
11610 F:      drivers/scsi/sun3_scsi.*
11611 F:      drivers/scsi/sun3_scsi_vme.c
11612
11613 NCSI LIBRARY
11614 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11615 S:      Maintained
11616 F:      net/ncsi/
11617
11618 NCT6775 HARDWARE MONITOR DRIVER
11619 M:      Guenter Roeck <linux@roeck-us.net>
11620 L:      linux-hwmon@vger.kernel.org
11621 S:      Maintained
11622 F:      Documentation/hwmon/nct6775.rst
11623 F:      drivers/hwmon/nct6775.c
11624
11625 NET_FAILOVER MODULE
11626 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
11627 L:      netdev@vger.kernel.org
11628 S:      Supported
11629 F:      drivers/net/net_failover.c
11630 F:      include/net/net_failover.h
11631 F:      Documentation/networking/net_failover.rst
11632
11633 NETEM NETWORK EMULATOR
11634 M:      Stephen Hemminger <stephen@networkplumber.org>
11635 L:      netdev@vger.kernel.org
11636 S:      Maintained
11637 F:      net/sched/sch_netem.c
11638
11639 NETERION 10GbE DRIVERS (s2io/vxge)
11640 M:      Jon Mason <jdmason@kudzu.us>
11641 L:      netdev@vger.kernel.org
11642 S:      Supported
11643 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11644 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11645 F:      drivers/net/ethernet/neterion/
11646
11647 NETFILTER
11648 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11649 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11650 M:      Florian Westphal <fw@strlen.de>
11651 L:      netfilter-devel@vger.kernel.org
11652 L:      coreteam@netfilter.org
11653 W:      http://www.netfilter.org/
11654 W:      http://www.iptables.org/
11655 W:      http://www.nftables.org/
11656 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11659 S:      Maintained
11660 F:      include/linux/netfilter*
11661 F:      include/linux/netfilter/
11662 F:      include/net/netfilter/
11663 F:      include/uapi/linux/netfilter*
11664 F:      include/uapi/linux/netfilter/
11665 F:      net/*/netfilter.c
11666 F:      net/*/netfilter/
11667 F:      net/netfilter/
11668 F:      net/bridge/br_netfilter*.c
11669
11670 NETROM NETWORK LAYER
11671 M:      Ralf Baechle <ralf@linux-mips.org>
11672 L:      linux-hams@vger.kernel.org
11673 W:      http://www.linux-ax25.org/
11674 S:      Maintained
11675 F:      include/net/netrom.h
11676 F:      include/uapi/linux/netrom.h
11677 F:      net/netrom/
11678
11679 NETRONOME ETHERNET DRIVERS
11680 M:      Jakub Kicinski <kuba@kernel.org>
11681 L:      oss-drivers@netronome.com
11682 S:      Maintained
11683 F:      drivers/net/ethernet/netronome/
11684
11685 NETWORK BLOCK DEVICE (NBD)
11686 M:      Josef Bacik <josef@toxicpanda.com>
11687 S:      Maintained
11688 L:      linux-block@vger.kernel.org
11689 L:      nbd@other.debian.org
11690 F:      Documentation/admin-guide/blockdev/nbd.rst
11691 F:      drivers/block/nbd.c
11692 F:      include/trace/events/nbd.h
11693 F:      include/uapi/linux/nbd.h
11694
11695 NETWORK DROP MONITOR
11696 M:      Neil Horman <nhorman@tuxdriver.com>
11697 L:      netdev@vger.kernel.org
11698 S:      Maintained
11699 W:      https://fedorahosted.org/dropwatch/
11700 F:      net/core/drop_monitor.c
11701 F:      include/uapi/linux/net_dropmon.h
11702 F:      include/net/drop_monitor.h
11703
11704 NETWORKING DRIVERS
11705 M:      "David S. Miller" <davem@davemloft.net>
11706 L:      netdev@vger.kernel.org
11707 W:      http://www.linuxfoundation.org/en/Net
11708 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11711 S:      Odd Fixes
11712 F:      Documentation/devicetree/bindings/net/
11713 F:      drivers/net/
11714 F:      include/linux/if_*
11715 F:      include/linux/netdevice.h
11716 F:      include/linux/etherdevice.h
11717 F:      include/linux/fcdevice.h
11718 F:      include/linux/fddidevice.h
11719 F:      include/linux/hippidevice.h
11720 F:      include/linux/inetdevice.h
11721 F:      include/uapi/linux/if_*
11722 F:      include/uapi/linux/netdevice.h
11723
11724 NETWORKING DRIVERS (WIRELESS)
11725 M:      Kalle Valo <kvalo@codeaurora.org>
11726 L:      linux-wireless@vger.kernel.org
11727 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11730 S:      Maintained
11731 F:      Documentation/devicetree/bindings/net/wireless/
11732 F:      drivers/net/wireless/
11733
11734 NETWORKING [DSA]
11735 M:      Andrew Lunn <andrew@lunn.ch>
11736 M:      Vivien Didelot <vivien.didelot@gmail.com>
11737 M:      Florian Fainelli <f.fainelli@gmail.com>
11738 S:      Maintained
11739 F:      Documentation/devicetree/bindings/net/dsa/
11740 F:      net/dsa/
11741 F:      include/net/dsa.h
11742 F:      include/linux/dsa/
11743 F:      include/linux/platform_data/dsa.h
11744 F:      drivers/net/dsa/
11745
11746 NETWORKING [GENERAL]
11747 M:      "David S. Miller" <davem@davemloft.net>
11748 M:      Jakub Kicinski <kuba@kernel.org>
11749 L:      netdev@vger.kernel.org
11750 W:      http://www.linuxfoundation.org/en/Net
11751 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11754 B:      mailto:netdev@vger.kernel.org
11755 S:      Maintained
11756 F:      net/
11757 F:      include/net/
11758 F:      include/linux/in.h
11759 F:      include/linux/net.h
11760 F:      include/linux/netdevice.h
11761 F:      include/uapi/linux/in.h
11762 F:      include/uapi/linux/net.h
11763 F:      include/uapi/linux/netdevice.h
11764 F:      include/uapi/linux/net_namespace.h
11765 F:      tools/testing/selftests/net/
11766 F:      lib/net_utils.c
11767 F:      lib/random32.c
11768 F:      Documentation/networking/
11769
11770 NETWORKING [IPSEC]
11771 M:      Steffen Klassert <steffen.klassert@secunet.com>
11772 M:      Herbert Xu <herbert@gondor.apana.org.au>
11773 M:      "David S. Miller" <davem@davemloft.net>
11774 L:      netdev@vger.kernel.org
11775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11777 S:      Maintained
11778 F:      net/xfrm/
11779 F:      net/key/
11780 F:      net/ipv4/xfrm*
11781 F:      net/ipv4/esp4*
11782 F:      net/ipv4/ah4.c
11783 F:      net/ipv4/ipcomp.c
11784 F:      net/ipv4/ip_vti.c
11785 F:      net/ipv6/xfrm*
11786 F:      net/ipv6/esp6*
11787 F:      net/ipv6/ah6.c
11788 F:      net/ipv6/ipcomp6.c
11789 F:      net/ipv6/ip6_vti.c
11790 F:      include/uapi/linux/xfrm.h
11791 F:      include/net/xfrm.h
11792
11793 NETWORKING [IPv4/IPv6]
11794 M:      "David S. Miller" <davem@davemloft.net>
11795 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11796 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11797 L:      netdev@vger.kernel.org
11798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11799 S:      Maintained
11800 F:      net/ipv4/
11801 F:      net/ipv6/
11802 F:      include/net/ip*
11803 F:      arch/x86/net/*
11804
11805 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11806 M:      Paul Moore <paul@paul-moore.com>
11807 W:      https://github.com/netlabel
11808 L:      netdev@vger.kernel.org
11809 L:      linux-security-module@vger.kernel.org
11810 S:      Maintained
11811 F:      Documentation/netlabel/
11812 F:      include/net/calipso.h
11813 F:      include/net/cipso_ipv4.h
11814 F:      include/net/netlabel.h
11815 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11816 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11817 F:      net/netlabel/
11818 F:      net/ipv4/cipso_ipv4.c
11819 F:      net/ipv6/calipso.c
11820 F:      net/netfilter/xt_CONNSECMARK.c
11821 F:      net/netfilter/xt_SECMARK.c
11822
11823 NETWORKING [MPTCP]
11824 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
11825 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
11826 L:      netdev@vger.kernel.org
11827 L:      mptcp@lists.01.org
11828 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
11829 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
11830 S:      Maintained
11831 F:      include/net/mptcp.h
11832 F:      include/uapi/linux/mptcp.h
11833 F:      net/mptcp/
11834 F:      tools/testing/selftests/net/mptcp/
11835
11836 NETWORKING [TCP]
11837 M:      Eric Dumazet <edumazet@google.com>
11838 L:      netdev@vger.kernel.org
11839 S:      Maintained
11840 F:      net/ipv4/tcp*.c
11841 F:      net/ipv4/syncookies.c
11842 F:      net/ipv6/tcp*.c
11843 F:      net/ipv6/syncookies.c
11844 F:      include/uapi/linux/tcp.h
11845 F:      include/net/tcp.h
11846 F:      include/linux/tcp.h
11847 F:      include/trace/events/tcp.h
11848
11849 NETWORKING [TLS]
11850 M:      Boris Pismenny <borisp@mellanox.com>
11851 M:      Aviad Yehezkel <aviadye@mellanox.com>
11852 M:      John Fastabend <john.fastabend@gmail.com>
11853 M:      Daniel Borkmann <daniel@iogearbox.net>
11854 M:      Jakub Kicinski <kuba@kernel.org>
11855 L:      netdev@vger.kernel.org
11856 S:      Maintained
11857 F:      net/tls/*
11858 F:      include/uapi/linux/tls.h
11859 F:      include/net/tls.h
11860
11861 NETWORKING [WIRELESS]
11862 L:      linux-wireless@vger.kernel.org
11863 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11864
11865 NETDEVSIM
11866 M:      Jakub Kicinski <kuba@kernel.org>
11867 S:      Maintained
11868 F:      drivers/net/netdevsim/*
11869
11870 NETXEN (1/10) GbE SUPPORT
11871 M:      Manish Chopra <manishc@marvell.com>
11872 M:      Rahul Verma <rahulv@marvell.com>
11873 M:      GR-Linux-NIC-Dev@marvell.com
11874 L:      netdev@vger.kernel.org
11875 S:      Supported
11876 F:      drivers/net/ethernet/qlogic/netxen/
11877
11878 NEXTHOP
11879 M:      David Ahern <dsahern@kernel.org>
11880 L:      netdev@vger.kernel.org
11881 S:      Maintained
11882 F:      include/net/nexthop.h
11883 F:      include/uapi/linux/nexthop.h
11884 F:      include/net/netns/nexthop.h
11885 F:      net/ipv4/nexthop.c
11886
11887 NFC SUBSYSTEM
11888 L:      netdev@vger.kernel.org
11889 S:      Orphan
11890 F:      net/nfc/
11891 F:      include/net/nfc/
11892 F:      include/uapi/linux/nfc.h
11893 F:      drivers/nfc/
11894 F:      include/linux/platform_data/nfcmrvl.h
11895 F:      Documentation/devicetree/bindings/net/nfc/
11896
11897 NFS, SUNRPC, AND LOCKD CLIENTS
11898 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
11899 M:      Anna Schumaker <anna.schumaker@netapp.com>
11900 L:      linux-nfs@vger.kernel.org
11901 W:      http://client.linux-nfs.org
11902 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11903 S:      Maintained
11904 F:      fs/lockd/
11905 F:      fs/nfs/
11906 F:      fs/nfs_common/
11907 F:      net/sunrpc/
11908 F:      include/linux/lockd/
11909 F:      include/linux/nfs*
11910 F:      include/linux/sunrpc/
11911 F:      include/uapi/linux/nfs*
11912 F:      include/uapi/linux/sunrpc/
11913
11914 NILFS2 FILESYSTEM
11915 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
11916 L:      linux-nilfs@vger.kernel.org
11917 W:      https://nilfs.sourceforge.io/
11918 W:      https://nilfs.osdn.jp/
11919 T:      git git://github.com/konis/nilfs2.git
11920 S:      Supported
11921 F:      Documentation/filesystems/nilfs2.rst
11922 F:      fs/nilfs2/
11923 F:      include/trace/events/nilfs2.h
11924 F:      include/uapi/linux/nilfs2_api.h
11925 F:      include/uapi/linux/nilfs2_ondisk.h
11926
11927 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11928 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11929 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11930 S:      Maintained
11931 F:      Documentation/scsi/NinjaSCSI.rst
11932 F:      drivers/scsi/pcmcia/nsp_*
11933
11934 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11935 M:      GOTO Masanori <gotom@debian.or.jp>
11936 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11937 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11938 S:      Maintained
11939 F:      Documentation/scsi/NinjaSCSI.rst
11940 F:      drivers/scsi/nsp32*
11941
11942 NIOS2 ARCHITECTURE
11943 M:      Ley Foon Tan <ley.foon.tan@intel.com>
11944 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
11945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11946 S:      Maintained
11947 F:      arch/nios2/
11948
11949 NOHZ, DYNTICKS SUPPORT
11950 M:      Frederic Weisbecker <fweisbec@gmail.com>
11951 M:      Thomas Gleixner <tglx@linutronix.de>
11952 M:      Ingo Molnar <mingo@kernel.org>
11953 L:      linux-kernel@vger.kernel.org
11954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11955 S:      Maintained
11956 F:      kernel/time/tick*.*
11957 F:      include/linux/tick.h
11958 F:      include/linux/sched/nohz.h
11959
11960 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11961 M:      Pavel Machek <pavel@ucw.cz>
11962 M:      Sakari Ailus <sakari.ailus@iki.fi>
11963 L:      linux-media@vger.kernel.org
11964 S:      Maintained
11965 F:      drivers/media/i2c/et8ek8
11966 F:      drivers/media/i2c/ad5820.c
11967
11968 NOKIA N900 POWER SUPPLY DRIVERS
11969 R:      Pali Rohár <pali.rohar@gmail.com>
11970 F:      include/linux/power/bq2415x_charger.h
11971 F:      include/linux/power/bq27xxx_battery.h
11972 F:      drivers/power/supply/bq2415x_charger.c
11973 F:      drivers/power/supply/bq27xxx_battery.c
11974 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11975 F:      drivers/power/supply/isp1704_charger.c
11976 F:      drivers/power/supply/rx51_battery.c
11977
11978 NOLIBC HEADER FILE
11979 M:      Willy Tarreau <w@1wt.eu>
11980 S:      Maintained
11981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11982 F:      tools/include/nolibc/
11983
11984 NSDEPS
11985 M:      Matthias Maennich <maennich@google.com>
11986 S:      Maintained
11987 F:      scripts/nsdeps
11988 F:      Documentation/core-api/symbol-namespaces.rst
11989
11990 NTB AMD DRIVER
11991 M:      Sanjay R Mehta <sanju.mehta@amd.com>
11992 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
11993 L:      linux-ntb@googlegroups.com
11994 S:      Supported
11995 F:      drivers/ntb/hw/amd/
11996
11997 NTB DRIVER CORE
11998 M:      Jon Mason <jdmason@kudzu.us>
11999 M:      Dave Jiang <dave.jiang@intel.com>
12000 M:      Allen Hubbe <allenbh@gmail.com>
12001 L:      linux-ntb@googlegroups.com
12002 S:      Supported
12003 W:      https://github.com/jonmason/ntb/wiki
12004 T:      git git://github.com/jonmason/ntb.git
12005 F:      drivers/ntb/
12006 F:      drivers/net/ntb_netdev.c
12007 F:      include/linux/ntb.h
12008 F:      include/linux/ntb_transport.h
12009 F:      tools/testing/selftests/ntb/
12010
12011 NTB IDT DRIVER
12012 M:      Serge Semin <fancer.lancer@gmail.com>
12013 L:      linux-ntb@googlegroups.com
12014 S:      Supported
12015 F:      drivers/ntb/hw/idt/
12016
12017 NTB INTEL DRIVER
12018 M:      Dave Jiang <dave.jiang@intel.com>
12019 L:      linux-ntb@googlegroups.com
12020 S:      Supported
12021 W:      https://github.com/davejiang/linux/wiki
12022 T:      git https://github.com/davejiang/linux.git
12023 F:      drivers/ntb/hw/intel/
12024
12025 NTFS FILESYSTEM
12026 M:      Anton Altaparmakov <anton@tuxera.com>
12027 L:      linux-ntfs-dev@lists.sourceforge.net
12028 W:      http://www.tuxera.com/
12029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12030 S:      Supported
12031 F:      Documentation/filesystems/ntfs.rst
12032 F:      fs/ntfs/
12033
12034 NUBUS SUBSYSTEM
12035 M:      Finn Thain <fthain@telegraphics.com.au>
12036 L:      linux-m68k@lists.linux-m68k.org
12037 S:      Maintained
12038 F:      arch/*/include/asm/nubus.h
12039 F:      drivers/nubus/
12040 F:      include/linux/nubus.h
12041 F:      include/uapi/linux/nubus.h
12042
12043 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12044 M:      Antonino Daplas <adaplas@gmail.com>
12045 L:      linux-fbdev@vger.kernel.org
12046 S:      Maintained
12047 F:      drivers/video/fbdev/riva/
12048 F:      drivers/video/fbdev/nvidia/
12049
12050 NVM EXPRESS DRIVER
12051 M:      Keith Busch <kbusch@kernel.org>
12052 M:      Jens Axboe <axboe@fb.com>
12053 M:      Christoph Hellwig <hch@lst.de>
12054 M:      Sagi Grimberg <sagi@grimberg.me>
12055 L:      linux-nvme@lists.infradead.org
12056 T:      git://git.infradead.org/nvme.git
12057 W:      http://git.infradead.org/nvme.git
12058 S:      Supported
12059 F:      drivers/nvme/host/
12060 F:      include/linux/nvme.h
12061 F:      include/uapi/linux/nvme_ioctl.h
12062
12063 NVM EXPRESS FC TRANSPORT DRIVERS
12064 M:      James Smart <james.smart@broadcom.com>
12065 L:      linux-nvme@lists.infradead.org
12066 S:      Supported
12067 F:      include/linux/nvme-fc.h
12068 F:      include/linux/nvme-fc-driver.h
12069 F:      drivers/nvme/host/fc.c
12070 F:      drivers/nvme/target/fc.c
12071 F:      drivers/nvme/target/fcloop.c
12072
12073 NVM EXPRESS TARGET DRIVER
12074 M:      Christoph Hellwig <hch@lst.de>
12075 M:      Sagi Grimberg <sagi@grimberg.me>
12076 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12077 L:      linux-nvme@lists.infradead.org
12078 T:      git://git.infradead.org/nvme.git
12079 W:      http://git.infradead.org/nvme.git
12080 S:      Supported
12081 F:      drivers/nvme/target/
12082
12083 NVMEM FRAMEWORK
12084 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12085 S:      Maintained
12086 F:      drivers/nvmem/
12087 F:      Documentation/devicetree/bindings/nvmem/
12088 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12089 F:      include/linux/nvmem-consumer.h
12090 F:      include/linux/nvmem-provider.h
12091
12092 NXP FXAS21002C DRIVER
12093 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12094 L:      linux-iio@vger.kernel.org
12095 S:      Maintained
12096 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12097 F:      drivers/iio/gyro/fxas21002c_core.c
12098 F:      drivers/iio/gyro/fxas21002c.h
12099 F:      drivers/iio/gyro/fxas21002c_i2c.c
12100 F:      drivers/iio/gyro/fxas21002c_spi.c
12101
12102 NXP SGTL5000 DRIVER
12103 M:      Fabio Estevam <festevam@gmail.com>
12104 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12105 S:      Maintained
12106 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12107 F:      sound/soc/codecs/sgtl5000*
12108
12109 NXP SJA1105 ETHERNET SWITCH DRIVER
12110 M:      Vladimir Oltean <olteanv@gmail.com>
12111 L:      linux-kernel@vger.kernel.org
12112 S:      Maintained
12113 F:      drivers/net/dsa/sja1105
12114
12115 NXP TDA998X DRM DRIVER
12116 M:      Russell King <linux@armlinux.org.uk>
12117 S:      Maintained
12118 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12119 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12120 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12121 F:      include/drm/i2c/tda998x.h
12122 F:      include/dt-bindings/display/tda998x.h
12123 K:      "nxp,tda998x"
12124
12125 NXP TFA9879 DRIVER
12126 M:      Peter Rosin <peda@axentia.se>
12127 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12128 S:      Maintained
12129 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12130 F:      sound/soc/codecs/tfa9879*
12131
12132 NXP-NCI NFC DRIVER
12133 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12134 R:      Charles Gorand <charles.gorand@effinnov.com>
12135 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12136 S:      Supported
12137 F:      drivers/nfc/nxp-nci
12138
12139 OBJAGG
12140 M:      Jiri Pirko <jiri@mellanox.com>
12141 L:      netdev@vger.kernel.org
12142 S:      Supported
12143 F:      lib/objagg.c
12144 F:      lib/test_objagg.c
12145 F:      include/linux/objagg.h
12146
12147 NXP FSPI DRIVER
12148 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12149 M:      Ashish Kumar <ashish.kumar@nxp.com>
12150 L:      linux-spi@vger.kernel.org
12151 S:      Maintained
12152 F:      drivers/spi/spi-nxp-fspi.c
12153 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12154
12155 OBJTOOL
12156 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12157 M:      Peter Zijlstra <peterz@infradead.org>
12158 S:      Supported
12159 F:      tools/objtool/
12160
12161 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12162 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12163 M:      Andrew Donnellan <ajd@linux.ibm.com>
12164 L:      linuxppc-dev@lists.ozlabs.org
12165 S:      Supported
12166 F:      arch/powerpc/platforms/powernv/ocxl.c
12167 F:      arch/powerpc/include/asm/pnv-ocxl.h
12168 F:      drivers/misc/ocxl/
12169 F:      include/misc/ocxl*
12170 F:      include/uapi/misc/ocxl.h
12171 F:      Documentation/userspace-api/accelerators/ocxl.rst
12172
12173 OMAP AUDIO SUPPORT
12174 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12175 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12176 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12177 L:      linux-omap@vger.kernel.org
12178 S:      Maintained
12179 F:      sound/soc/ti/omap*
12180 F:      sound/soc/ti/rx51.c
12181 F:      sound/soc/ti/n810.c
12182 F:      sound/soc/ti/sdma-pcm.*
12183
12184 OMAP CLOCK FRAMEWORK SUPPORT
12185 M:      Paul Walmsley <paul@pwsan.com>
12186 L:      linux-omap@vger.kernel.org
12187 S:      Maintained
12188 F:      arch/arm/*omap*/*clock*
12189
12190 OMAP DEVICE TREE SUPPORT
12191 M:      Benoît Cousson <bcousson@baylibre.com>
12192 M:      Tony Lindgren <tony@atomide.com>
12193 L:      linux-omap@vger.kernel.org
12194 L:      devicetree@vger.kernel.org
12195 S:      Maintained
12196 F:      arch/arm/boot/dts/*omap*
12197 F:      arch/arm/boot/dts/*am3*
12198 F:      arch/arm/boot/dts/*am4*
12199 F:      arch/arm/boot/dts/*am5*
12200 F:      arch/arm/boot/dts/*dra7*
12201 F:      arch/arm/boot/dts/logicpd-som-lv*
12202 F:      arch/arm/boot/dts/logicpd-torpedo*
12203
12204 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12205 L:      linux-omap@vger.kernel.org
12206 L:      linux-fbdev@vger.kernel.org
12207 S:      Orphan
12208 F:      drivers/video/fbdev/omap2/
12209 F:      Documentation/arm/omap/dss.rst
12210
12211 OMAP FRAMEBUFFER SUPPORT
12212 L:      linux-fbdev@vger.kernel.org
12213 L:      linux-omap@vger.kernel.org
12214 S:      Orphan
12215 F:      drivers/video/fbdev/omap/
12216
12217 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12218 M:      Roger Quadros <rogerq@ti.com>
12219 M:      Tony Lindgren <tony@atomide.com>
12220 L:      linux-omap@vger.kernel.org
12221 S:      Maintained
12222 F:      drivers/memory/omap-gpmc.c
12223 F:      arch/arm/mach-omap2/*gpmc*
12224
12225 OMAP GPIO DRIVER
12226 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12227 M:      Santosh Shilimkar <ssantosh@kernel.org>
12228 M:      Kevin Hilman <khilman@kernel.org>
12229 L:      linux-omap@vger.kernel.org
12230 S:      Maintained
12231 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12232 F:      drivers/gpio/gpio-omap.c
12233
12234 OMAP HARDWARE SPINLOCK SUPPORT
12235 M:      Ohad Ben-Cohen <ohad@wizery.com>
12236 L:      linux-omap@vger.kernel.org
12237 S:      Maintained
12238 F:      drivers/hwspinlock/omap_hwspinlock.c
12239
12240 OMAP HS MMC SUPPORT
12241 L:      linux-mmc@vger.kernel.org
12242 L:      linux-omap@vger.kernel.org
12243 S:      Orphan
12244 F:      drivers/mmc/host/omap_hsmmc.c
12245
12246 OMAP HWMOD DATA
12247 M:      Paul Walmsley <paul@pwsan.com>
12248 L:      linux-omap@vger.kernel.org
12249 S:      Maintained
12250 F:      arch/arm/mach-omap2/omap_hwmod*data*
12251
12252 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12253 M:      Benoît Cousson <bcousson@baylibre.com>
12254 L:      linux-omap@vger.kernel.org
12255 S:      Maintained
12256 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12257
12258 OMAP HWMOD SUPPORT
12259 M:      Benoît Cousson <bcousson@baylibre.com>
12260 M:      Paul Walmsley <paul@pwsan.com>
12261 L:      linux-omap@vger.kernel.org
12262 S:      Maintained
12263 F:      arch/arm/mach-omap2/omap_hwmod.*
12264
12265 OMAP I2C DRIVER
12266 M:      Vignesh R <vigneshr@ti.com>
12267 L:      linux-omap@vger.kernel.org
12268 L:      linux-i2c@vger.kernel.org
12269 S:      Maintained
12270 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12271 F:      drivers/i2c/busses/i2c-omap.c
12272
12273 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12274 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12275 L:      linux-media@vger.kernel.org
12276 S:      Maintained
12277 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12278 F:      drivers/media/platform/omap3isp/
12279 F:      drivers/staging/media/omap4iss/
12280
12281 OMAP MMC SUPPORT
12282 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12283 L:      linux-omap@vger.kernel.org
12284 S:      Odd Fixes
12285 F:      drivers/mmc/host/omap.c
12286
12287 OMAP POWER MANAGEMENT SUPPORT
12288 M:      Kevin Hilman <khilman@kernel.org>
12289 L:      linux-omap@vger.kernel.org
12290 S:      Maintained
12291 F:      arch/arm/*omap*/*pm*
12292 F:      drivers/cpufreq/omap-cpufreq.c
12293
12294 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12295 M:      Rajendra Nayak <rnayak@codeaurora.org>
12296 M:      Paul Walmsley <paul@pwsan.com>
12297 L:      linux-omap@vger.kernel.org
12298 S:      Maintained
12299 F:      arch/arm/mach-omap2/prm*
12300
12301 OMAP RANDOM NUMBER GENERATOR SUPPORT
12302 M:      Deepak Saxena <dsaxena@plexity.net>
12303 S:      Maintained
12304 F:      drivers/char/hw_random/omap-rng.c
12305
12306 OMAP USB SUPPORT
12307 L:      linux-usb@vger.kernel.org
12308 L:      linux-omap@vger.kernel.org
12309 S:      Orphan
12310 F:      drivers/usb/*/*omap*
12311 F:      arch/arm/*omap*/usb*
12312
12313 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12314 M:      Mark Jackson <mpfj@newflow.co.uk>
12315 L:      linux-omap@vger.kernel.org
12316 S:      Maintained
12317 F:      arch/arm/boot/dts/am335x-nano.dts
12318
12319 OMAP1 SUPPORT
12320 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12321 M:      Tony Lindgren <tony@atomide.com>
12322 L:      linux-omap@vger.kernel.org
12323 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12325 S:      Maintained
12326 F:      arch/arm/mach-omap1/
12327 F:      arch/arm/plat-omap/
12328 F:      arch/arm/configs/omap1_defconfig
12329 F:      drivers/i2c/busses/i2c-omap.c
12330 F:      include/linux/platform_data/i2c-omap.h
12331 F:      include/linux/platform_data/ams-delta-fiq.h
12332
12333 OMAP2+ SUPPORT
12334 M:      Tony Lindgren <tony@atomide.com>
12335 L:      linux-omap@vger.kernel.org
12336 W:      http://www.muru.com/linux/omap/
12337 W:      http://linux.omap.com/
12338 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12340 S:      Maintained
12341 F:      arch/arm/mach-omap2/
12342 F:      arch/arm/plat-omap/
12343 F:      arch/arm/configs/omap2plus_defconfig
12344 F:      drivers/bus/ti-sysc.c
12345 F:      drivers/i2c/busses/i2c-omap.c
12346 F:      drivers/irqchip/irq-omap-intc.c
12347 F:      drivers/mfd/*omap*.c
12348 F:      drivers/mfd/menelaus.c
12349 F:      drivers/mfd/palmas.c
12350 F:      drivers/mfd/tps65217.c
12351 F:      drivers/mfd/tps65218.c
12352 F:      drivers/mfd/tps65910.c
12353 F:      drivers/mfd/twl-core.[ch]
12354 F:      drivers/mfd/twl4030*.c
12355 F:      drivers/mfd/twl6030*.c
12356 F:      drivers/mfd/twl6040*.c
12357 F:      drivers/regulator/palmas-regulator*.c
12358 F:      drivers/regulator/pbias-regulator.c
12359 F:      drivers/regulator/tps65217-regulator.c
12360 F:      drivers/regulator/tps65218-regulator.c
12361 F:      drivers/regulator/tps65910-regulator.c
12362 F:      drivers/regulator/twl-regulator.c
12363 F:      drivers/regulator/twl6030-regulator.c
12364 F:      include/linux/platform_data/i2c-omap.h
12365 F:      include/linux/platform_data/ti-sysc.h
12366
12367 ONION OMEGA2+ BOARD
12368 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
12369 L:      linux-mips@vger.kernel.org
12370 S:      Maintained
12371 F:      arch/mips/boot/dts/ralink/omega2p.dts
12372
12373 OMFS FILESYSTEM
12374 M:      Bob Copeland <me@bobcopeland.com>
12375 L:      linux-karma-devel@lists.sourceforge.net
12376 S:      Maintained
12377 F:      Documentation/filesystems/omfs.rst
12378 F:      fs/omfs/
12379
12380 OMNIKEY CARDMAN 4000 DRIVER
12381 M:      Harald Welte <laforge@gnumonks.org>
12382 S:      Maintained
12383 F:      drivers/char/pcmcia/cm4000_cs.c
12384 F:      include/linux/cm4000_cs.h
12385 F:      include/uapi/linux/cm4000_cs.h
12386
12387 OMNIKEY CARDMAN 4040 DRIVER
12388 M:      Harald Welte <laforge@gnumonks.org>
12389 S:      Maintained
12390 F:      drivers/char/pcmcia/cm4040_cs.*
12391
12392 OMNIVISION OV13858 SENSOR DRIVER
12393 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12394 L:      linux-media@vger.kernel.org
12395 T:      git git://linuxtv.org/media_tree.git
12396 S:      Maintained
12397 F:      drivers/media/i2c/ov13858.c
12398
12399 OMNIVISION OV2680 SENSOR DRIVER
12400 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12401 L:      linux-media@vger.kernel.org
12402 T:      git git://linuxtv.org/media_tree.git
12403 S:      Maintained
12404 F:      drivers/media/i2c/ov2680.c
12405 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12406
12407 OMNIVISION OV2685 SENSOR DRIVER
12408 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12409 L:      linux-media@vger.kernel.org
12410 T:      git git://linuxtv.org/media_tree.git
12411 S:      Maintained
12412 F:      drivers/media/i2c/ov2685.c
12413
12414 OMNIVISION OV5640 SENSOR DRIVER
12415 M:      Steve Longerbeam <slongerbeam@gmail.com>
12416 L:      linux-media@vger.kernel.org
12417 T:      git git://linuxtv.org/media_tree.git
12418 S:      Maintained
12419 F:      drivers/media/i2c/ov5640.c
12420
12421 OMNIVISION OV5647 SENSOR DRIVER
12422 M:      Luis Oliveira <lolivei@synopsys.com>
12423 L:      linux-media@vger.kernel.org
12424 T:      git git://linuxtv.org/media_tree.git
12425 S:      Maintained
12426 F:      drivers/media/i2c/ov5647.c
12427
12428 OMNIVISION OV5670 SENSOR DRIVER
12429 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12430 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12431 L:      linux-media@vger.kernel.org
12432 T:      git git://linuxtv.org/media_tree.git
12433 S:      Maintained
12434 F:      drivers/media/i2c/ov5670.c
12435
12436 OMNIVISION OV5675 SENSOR DRIVER
12437 M:      Shawn Tu <shawnx.tu@intel.com>
12438 L:      linux-media@vger.kernel.org
12439 T:      git git://linuxtv.org/media_tree.git
12440 S:      Maintained
12441 F:      drivers/media/i2c/ov5675.c
12442
12443 OMNIVISION OV5695 SENSOR DRIVER
12444 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12445 L:      linux-media@vger.kernel.org
12446 T:      git git://linuxtv.org/media_tree.git
12447 S:      Maintained
12448 F:      drivers/media/i2c/ov5695.c
12449
12450 OMNIVISION OV7670 SENSOR DRIVER
12451 M:      Jonathan Corbet <corbet@lwn.net>
12452 L:      linux-media@vger.kernel.org
12453 T:      git git://linuxtv.org/media_tree.git
12454 S:      Maintained
12455 F:      drivers/media/i2c/ov7670.c
12456 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12457
12458 OMNIVISION OV772x SENSOR DRIVER
12459 M:      Jacopo Mondi <jacopo@jmondi.org>
12460 L:      linux-media@vger.kernel.org
12461 T:      git git://linuxtv.org/media_tree.git
12462 S:      Odd fixes
12463 F:      drivers/media/i2c/ov772x.c
12464 F:      include/media/i2c/ov772x.h
12465 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12466
12467 OMNIVISION OV7740 SENSOR DRIVER
12468 M:      Wenyou Yang <wenyou.yang@microchip.com>
12469 L:      linux-media@vger.kernel.org
12470 T:      git git://linuxtv.org/media_tree.git
12471 S:      Maintained
12472 F:      drivers/media/i2c/ov7740.c
12473 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12474
12475 OMNIVISION OV9640 SENSOR DRIVER
12476 M:      Petr Cvek <petrcvekcz@gmail.com>
12477 L:      linux-media@vger.kernel.org
12478 S:      Maintained
12479 F:      drivers/media/i2c/ov9640.*
12480
12481 OMNIVISION OV8856 SENSOR DRIVER
12482 M:      Ben Kao <ben.kao@intel.com>
12483 L:      linux-media@vger.kernel.org
12484 T:      git git://linuxtv.org/media_tree.git
12485 S:      Maintained
12486 F:      drivers/media/i2c/ov8856.c
12487
12488 OMNIVISION OV9650 SENSOR DRIVER
12489 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12490 R:      Akinobu Mita <akinobu.mita@gmail.com>
12491 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12492 L:      linux-media@vger.kernel.org
12493 T:      git git://linuxtv.org/media_tree.git
12494 S:      Maintained
12495 F:      drivers/media/i2c/ov9650.c
12496 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12497
12498 ONENAND FLASH DRIVER
12499 M:      Kyungmin Park <kyungmin.park@samsung.com>
12500 L:      linux-mtd@lists.infradead.org
12501 S:      Maintained
12502 F:      drivers/mtd/nand/onenand/
12503 F:      include/linux/mtd/onenand*.h
12504
12505 OP-TEE DRIVER
12506 M:      Jens Wiklander <jens.wiklander@linaro.org>
12507 L:      tee-dev@lists.linaro.org
12508 S:      Maintained
12509 F:      drivers/tee/optee/
12510
12511 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12512 M:      Sumit Garg <sumit.garg@linaro.org>
12513 L:      tee-dev@lists.linaro.org
12514 S:      Maintained
12515 F:      drivers/char/hw_random/optee-rng.c
12516
12517 OPA-VNIC DRIVER
12518 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12519 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12520 L:      linux-rdma@vger.kernel.org
12521 S:      Supported
12522 F:      drivers/infiniband/ulp/opa_vnic
12523
12524 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12525 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12526 M:      Frank Rowand <frowand.list@gmail.com>
12527 L:      devicetree@vger.kernel.org
12528 S:      Maintained
12529 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12530 F:      Documentation/devicetree/overlay-notes.txt
12531 F:      drivers/of/overlay.c
12532 F:      drivers/of/resolver.c
12533 K:      of_overlay_notifier_
12534
12535 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12536 M:      Rob Herring <robh+dt@kernel.org>
12537 M:      Frank Rowand <frowand.list@gmail.com>
12538 L:      devicetree@vger.kernel.org
12539 W:      http://www.devicetree.org/
12540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12541 S:      Maintained
12542 F:      drivers/of/
12543 F:      include/linux/of*.h
12544 F:      scripts/dtc/
12545 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12546
12547 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12548 M:      Rob Herring <robh+dt@kernel.org>
12549 L:      devicetree@vger.kernel.org
12550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12551 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12552 S:      Maintained
12553 F:      Documentation/devicetree/
12554 F:      arch/*/boot/dts/
12555 F:      include/dt-bindings/
12556
12557 OPENCORES I2C BUS DRIVER
12558 M:      Peter Korsgaard <peter@korsgaard.com>
12559 M:      Andrew Lunn <andrew@lunn.ch>
12560 L:      linux-i2c@vger.kernel.org
12561 S:      Maintained
12562 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12563 F:      Documentation/i2c/busses/i2c-ocores.rst
12564 F:      drivers/i2c/busses/i2c-ocores.c
12565 F:      include/linux/platform_data/i2c-ocores.h
12566
12567 OPENRISC ARCHITECTURE
12568 M:      Jonas Bonn <jonas@southpole.se>
12569 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12570 M:      Stafford Horne <shorne@gmail.com>
12571 T:      git git://github.com/openrisc/linux.git
12572 L:      openrisc@lists.librecores.org
12573 W:      http://openrisc.io
12574 S:      Maintained
12575 F:      Documentation/devicetree/bindings/openrisc/
12576 F:      Documentation/openrisc/
12577 F:      arch/openrisc/
12578 F:      drivers/irqchip/irq-ompic.c
12579 F:      drivers/irqchip/irq-or1k-*
12580
12581 OPENVSWITCH
12582 M:      Pravin B Shelar <pshelar@ovn.org>
12583 L:      netdev@vger.kernel.org
12584 L:      dev@openvswitch.org
12585 W:      http://openvswitch.org
12586 S:      Maintained
12587 F:      net/openvswitch/
12588 F:      include/uapi/linux/openvswitch.h
12589
12590 OPERATING PERFORMANCE POINTS (OPP)
12591 M:      Viresh Kumar <vireshk@kernel.org>
12592 M:      Nishanth Menon <nm@ti.com>
12593 M:      Stephen Boyd <sboyd@kernel.org>
12594 L:      linux-pm@vger.kernel.org
12595 S:      Maintained
12596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12597 F:      drivers/opp/
12598 F:      include/linux/pm_opp.h
12599 F:      Documentation/power/opp.rst
12600 F:      Documentation/devicetree/bindings/opp/
12601
12602 OPL4 DRIVER
12603 M:      Clemens Ladisch <clemens@ladisch.de>
12604 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12606 S:      Maintained
12607 F:      sound/drivers/opl4/
12608
12609 OPROFILE
12610 M:      Robert Richter <rric@kernel.org>
12611 L:      oprofile-list@lists.sf.net
12612 S:      Maintained
12613 F:      arch/*/include/asm/oprofile*.h
12614 F:      arch/*/oprofile/
12615 F:      drivers/oprofile/
12616 F:      include/linux/oprofile.h
12617
12618 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12619 M:      Mark Fasheh <mark@fasheh.com>
12620 M:      Joel Becker <jlbec@evilplan.org>
12621 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12622 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12623 W:      http://ocfs2.wiki.kernel.org
12624 S:      Supported
12625 F:      Documentation/filesystems/ocfs2.rst
12626 F:      Documentation/filesystems/dlmfs.rst
12627 F:      fs/ocfs2/
12628
12629 ORANGEFS FILESYSTEM
12630 M:      Mike Marshall <hubcap@omnibond.com>
12631 R:      Martin Brandenburg <martin@omnibond.com>
12632 L:      devel@lists.orangefs.org
12633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12634 S:      Supported
12635 F:      fs/orangefs/
12636 F:      Documentation/filesystems/orangefs.rst
12637
12638 ORINOCO DRIVER
12639 L:      linux-wireless@vger.kernel.org
12640 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12641 W:      http://www.nongnu.org/orinoco/
12642 S:      Orphan
12643 F:      drivers/net/wireless/intersil/orinoco/
12644
12645 OV2659 OMNIVISION SENSOR DRIVER
12646 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12647 L:      linux-media@vger.kernel.org
12648 W:      https://linuxtv.org
12649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12650 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12651 S:      Maintained
12652 F:      drivers/media/i2c/ov2659.c
12653 F:      include/media/i2c/ov2659.h
12654
12655 OVERLAY FILESYSTEM
12656 M:      Miklos Szeredi <miklos@szeredi.hu>
12657 L:      linux-unionfs@vger.kernel.org
12658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12659 S:      Supported
12660 F:      fs/overlayfs/
12661 F:      Documentation/filesystems/overlayfs.rst
12662
12663 P54 WIRELESS DRIVER
12664 M:      Christian Lamparter <chunkeey@googlemail.com>
12665 L:      linux-wireless@vger.kernel.org
12666 W:      http://wireless.kernel.org/en/users/Drivers/p54
12667 S:      Maintained
12668 F:      drivers/net/wireless/intersil/p54/
12669
12670 PA SEMI ETHERNET DRIVER
12671 L:      netdev@vger.kernel.org
12672 S:      Orphan
12673 F:      drivers/net/ethernet/pasemi/*
12674
12675 PA SEMI SMBUS DRIVER
12676 L:      linux-i2c@vger.kernel.org
12677 S:      Orphan
12678 F:      drivers/i2c/busses/i2c-pasemi.c
12679
12680 PACKING
12681 M:      Vladimir Oltean <olteanv@gmail.com>
12682 L:      netdev@vger.kernel.org
12683 S:      Supported
12684 F:      lib/packing.c
12685 F:      include/linux/packing.h
12686 F:      Documentation/core-api/packing.rst
12687
12688 PADATA PARALLEL EXECUTION MECHANISM
12689 M:      Steffen Klassert <steffen.klassert@secunet.com>
12690 L:      linux-crypto@vger.kernel.org
12691 S:      Maintained
12692 F:      kernel/padata.c
12693 F:      include/linux/padata.h
12694 F:      Documentation/core-api/padata.rst
12695
12696 PAGE POOL
12697 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12698 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12699 L:      netdev@vger.kernel.org
12700 S:      Supported
12701 F:      net/core/page_pool.c
12702 F:      include/net/page_pool.h
12703
12704 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12705 M:      Harald Welte <laforge@gnumonks.org>
12706 L:      platform-driver-x86@vger.kernel.org
12707 S:      Maintained
12708 F:      drivers/platform/x86/panasonic-laptop.c
12709
12710 PARALLAX PING IIO SENSOR DRIVER
12711 M:      Andreas Klinger <ak@it-klinger.de>
12712 L:      linux-iio@vger.kernel.org
12713 S:      Maintained
12714 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12715 F:      drivers/iio/proximity/ping.c
12716
12717 PARALLEL LCD/KEYPAD PANEL DRIVER
12718 M:      Willy Tarreau <willy@haproxy.com>
12719 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12720 S:      Odd Fixes
12721 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12722 F:      drivers/auxdisplay/panel.c
12723
12724 PARALLEL PORT SUBSYSTEM
12725 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12726 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12727 L:      linux-parport@lists.infradead.org (subscribers-only)
12728 S:      Maintained
12729 F:      drivers/parport/
12730 F:      include/linux/parport*.h
12731 F:      drivers/char/ppdev.c
12732 F:      include/uapi/linux/ppdev.h
12733 F:      Documentation/driver-api/parport*.rst
12734
12735 PARAVIRT_OPS INTERFACE
12736 M:      Juergen Gross <jgross@suse.com>
12737 M:      Thomas Hellstrom <thellstrom@vmware.com>
12738 M:      "VMware, Inc." <pv-drivers@vmware.com>
12739 L:      virtualization@lists.linux-foundation.org
12740 S:      Supported
12741 F:      Documentation/virt/paravirt_ops.rst
12742 F:      arch/*/kernel/paravirt*
12743 F:      arch/*/include/asm/paravirt*.h
12744 F:      include/linux/hypervisor.h
12745
12746 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12747 M:      Tim Waugh <tim@cyberelk.net>
12748 L:      linux-parport@lists.infradead.org (subscribers-only)
12749 S:      Maintained
12750 F:      Documentation/admin-guide/blockdev/paride.rst
12751 F:      drivers/block/paride/
12752
12753 PARISC ARCHITECTURE
12754 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12755 M:      Helge Deller <deller@gmx.de>
12756 L:      linux-parisc@vger.kernel.org
12757 W:      http://www.parisc-linux.org/
12758 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12761 S:      Maintained
12762 F:      arch/parisc/
12763 F:      Documentation/parisc/
12764 F:      drivers/parisc/
12765 F:      drivers/char/agp/parisc-agp.c
12766 F:      drivers/input/misc/hp_sdc_rtc.c
12767 F:      drivers/input/serio/gscps2.c
12768 F:      drivers/input/serio/hp_sdc*
12769 F:      drivers/parport/parport_gsc.*
12770 F:      drivers/tty/serial/8250/8250_gsc.c
12771 F:      drivers/video/fbdev/sti*
12772 F:      drivers/video/console/sti*
12773 F:      drivers/video/logo/logo_parisc*
12774 F:      include/linux/hp_sdc.h
12775
12776 PARMAN
12777 M:      Jiri Pirko <jiri@mellanox.com>
12778 L:      netdev@vger.kernel.org
12779 S:      Supported
12780 F:      lib/parman.c
12781 F:      lib/test_parman.c
12782 F:      include/linux/parman.h
12783
12784 PC ENGINES APU BOARD DRIVER
12785 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12786 S:      Maintained
12787 F:      drivers/platform/x86/pcengines-apuv2.c
12788
12789 PC87360 HARDWARE MONITORING DRIVER
12790 M:      Jim Cromie <jim.cromie@gmail.com>
12791 L:      linux-hwmon@vger.kernel.org
12792 S:      Maintained
12793 F:      Documentation/hwmon/pc87360.rst
12794 F:      drivers/hwmon/pc87360.c
12795
12796 PC8736x GPIO DRIVER
12797 M:      Jim Cromie <jim.cromie@gmail.com>
12798 S:      Maintained
12799 F:      drivers/char/pc8736x_gpio.c
12800
12801 PC87427 HARDWARE MONITORING DRIVER
12802 M:      Jean Delvare <jdelvare@suse.com>
12803 L:      linux-hwmon@vger.kernel.org
12804 S:      Maintained
12805 F:      Documentation/hwmon/pc87427.rst
12806 F:      drivers/hwmon/pc87427.c
12807
12808 PCA9532 LED DRIVER
12809 M:      Riku Voipio <riku.voipio@iki.fi>
12810 S:      Maintained
12811 F:      drivers/leds/leds-pca9532.c
12812 F:      include/linux/leds-pca9532.h
12813
12814 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12815 M:      Guenter Roeck <linux@roeck-us.net>
12816 L:      linux-i2c@vger.kernel.org
12817 S:      Maintained
12818 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12819
12820 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12821 M:      Khalid Aziz <khalid@gonehiking.org>
12822 S:      Maintained
12823 F:      drivers/firmware/pcdp.*
12824
12825 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12826 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12827 L:      linux-pci@vger.kernel.org
12828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12829 S:      Maintained
12830 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12831 F:      drivers/pci/controller/pci-aardvark.c
12832
12833 PCI DRIVER FOR ALTERA PCIE IP
12834 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12835 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12836 L:      linux-pci@vger.kernel.org
12837 S:      Supported
12838 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12839 F:      drivers/pci/controller/pcie-altera.c
12840
12841 PCI DRIVER FOR APPLIEDMICRO XGENE
12842 M:      Toan Le <toan@os.amperecomputing.com>
12843 L:      linux-pci@vger.kernel.org
12844 L:      linux-arm-kernel@lists.infradead.org
12845 S:      Maintained
12846 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12847 F:      drivers/pci/controller/pci-xgene.c
12848
12849 PCI DRIVER FOR ARM VERSATILE PLATFORM
12850 M:      Rob Herring <robh@kernel.org>
12851 L:      linux-pci@vger.kernel.org
12852 L:      linux-arm-kernel@lists.infradead.org
12853 S:      Maintained
12854 F:      Documentation/devicetree/bindings/pci/versatile.yaml
12855 F:      drivers/pci/controller/pci-versatile.c
12856
12857 PCI DRIVER FOR ARMADA 8K
12858 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12859 L:      linux-pci@vger.kernel.org
12860 L:      linux-arm-kernel@lists.infradead.org
12861 S:      Maintained
12862 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12863 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12864
12865 PCI DRIVER FOR CADENCE PCIE IP
12866 M:      Tom Joseph <tjoseph@cadence.com>
12867 L:      linux-pci@vger.kernel.org
12868 S:      Maintained
12869 F:      Documentation/devicetree/bindings/pci/cdns,*
12870 F:      drivers/pci/controller/cadence/
12871
12872 PCI DRIVER FOR FREESCALE LAYERSCAPE
12873 M:      Minghuan Lian <minghuan.Lian@nxp.com>
12874 M:      Mingkai Hu <mingkai.hu@nxp.com>
12875 M:      Roy Zang <roy.zang@nxp.com>
12876 L:      linuxppc-dev@lists.ozlabs.org
12877 L:      linux-pci@vger.kernel.org
12878 L:      linux-arm-kernel@lists.infradead.org
12879 S:      Maintained
12880 F:      drivers/pci/controller/dwc/*layerscape*
12881
12882 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
12883 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12884 L:      linux-pci@vger.kernel.org
12885 L:      linux-arm-kernel@lists.infradead.org
12886 S:      Maintained
12887 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
12888 F:      drivers/pci/controller/mobibeil/pcie-layerscape-gen4.c
12889
12890 PCI DRIVER FOR GENERIC OF HOSTS
12891 M:      Will Deacon <will@kernel.org>
12892 L:      linux-pci@vger.kernel.org
12893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12894 S:      Maintained
12895 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
12896 F:      drivers/pci/controller/pci-host-common.c
12897 F:      drivers/pci/controller/pci-host-generic.c
12898
12899 PCI DRIVER FOR IMX6
12900 M:      Richard Zhu <hongxing.zhu@nxp.com>
12901 M:      Lucas Stach <l.stach@pengutronix.de>
12902 L:      linux-pci@vger.kernel.org
12903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12904 S:      Maintained
12905 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12906 F:      drivers/pci/controller/dwc/*imx6*
12907
12908 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12909 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12910 L:      linux-pci@vger.kernel.org
12911 S:      Supported
12912 F:      drivers/pci/controller/vmd.c
12913
12914 PCI DRIVER FOR MICROSEMI SWITCHTEC
12915 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
12916 M:      Logan Gunthorpe <logang@deltatee.com>
12917 L:      linux-pci@vger.kernel.org
12918 S:      Maintained
12919 F:      Documentation/driver-api/switchtec.rst
12920 F:      Documentation/ABI/testing/sysfs-class-switchtec
12921 F:      drivers/pci/switch/switchtec*
12922 F:      include/uapi/linux/switchtec_ioctl.h
12923 F:      include/linux/switchtec.h
12924 F:      drivers/ntb/hw/mscc/
12925
12926 PCI DRIVER FOR MOBIVEIL PCIE IP
12927 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
12928 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12929 L:      linux-pci@vger.kernel.org
12930 S:      Supported
12931 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12932 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
12933
12934 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12935 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12936 M:      Jason Cooper <jason@lakedaemon.net>
12937 L:      linux-pci@vger.kernel.org
12938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12939 S:      Maintained
12940 F:      drivers/pci/controller/*mvebu*
12941
12942 PCI DRIVER FOR NVIDIA TEGRA
12943 M:      Thierry Reding <thierry.reding@gmail.com>
12944 L:      linux-tegra@vger.kernel.org
12945 L:      linux-pci@vger.kernel.org
12946 S:      Supported
12947 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12948 F:      drivers/pci/controller/pci-tegra.c
12949
12950 PCI DRIVER FOR RENESAS R-CAR
12951 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
12952 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
12953 L:      linux-pci@vger.kernel.org
12954 L:      linux-renesas-soc@vger.kernel.org
12955 S:      Maintained
12956 F:      drivers/pci/controller/*rcar*
12957
12958 PCI DRIVER FOR SAMSUNG EXYNOS
12959 M:      Jingoo Han <jingoohan1@gmail.com>
12960 L:      linux-pci@vger.kernel.org
12961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12962 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12963 S:      Maintained
12964 F:      drivers/pci/controller/dwc/pci-exynos.c
12965
12966 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12967 M:      Jingoo Han <jingoohan1@gmail.com>
12968 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
12969 L:      linux-pci@vger.kernel.org
12970 S:      Maintained
12971 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12972 F:      drivers/pci/controller/dwc/*designware*
12973
12974 PCI DRIVER FOR TI DRA7XX
12975 M:      Kishon Vijay Abraham I <kishon@ti.com>
12976 L:      linux-omap@vger.kernel.org
12977 L:      linux-pci@vger.kernel.org
12978 S:      Supported
12979 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12980 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12981
12982 PCI DRIVER FOR TI KEYSTONE
12983 M:      Murali Karicheri <m-karicheri2@ti.com>
12984 L:      linux-pci@vger.kernel.org
12985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12986 S:      Maintained
12987 F:      drivers/pci/controller/dwc/pci-keystone.c
12988
12989 PCI ENDPOINT SUBSYSTEM
12990 M:      Kishon Vijay Abraham I <kishon@ti.com>
12991 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12992 L:      linux-pci@vger.kernel.org
12993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12994 S:      Supported
12995 F:      drivers/pci/endpoint/
12996 F:      drivers/misc/pci_endpoint_test.c
12997 F:      tools/pci/
12998
12999 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13000 M:      Russell Currey <ruscur@russell.cc>
13001 M:      Sam Bobroff <sbobroff@linux.ibm.com>
13002 M:      Oliver O'Halloran <oohall@gmail.com>
13003 L:      linuxppc-dev@lists.ozlabs.org
13004 S:      Supported
13005 F:      Documentation/PCI/pci-error-recovery.rst
13006 F:      drivers/pci/pcie/aer.c
13007 F:      drivers/pci/pcie/dpc.c
13008 F:      drivers/pci/pcie/err.c
13009 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13010 F:      arch/powerpc/kernel/eeh*.c
13011 F:      arch/powerpc/platforms/*/eeh*.c
13012 F:      arch/powerpc/include/*/eeh*.h
13013
13014 PCI ERROR RECOVERY
13015 M:      Linas Vepstas <linasvepstas@gmail.com>
13016 L:      linux-pci@vger.kernel.org
13017 S:      Supported
13018 F:      Documentation/PCI/pci-error-recovery.rst
13019
13020 PCI MSI DRIVER FOR ALTERA MSI IP
13021 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13022 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13023 L:      linux-pci@vger.kernel.org
13024 S:      Supported
13025 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13026 F:      drivers/pci/controller/pcie-altera-msi.c
13027
13028 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13029 M:      Toan Le <toan@os.amperecomputing.com>
13030 L:      linux-pci@vger.kernel.org
13031 L:      linux-arm-kernel@lists.infradead.org
13032 S:      Maintained
13033 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13034 F:      drivers/pci/controller/pci-xgene-msi.c
13035
13036 PCI SUBSYSTEM
13037 M:      Bjorn Helgaas <bhelgaas@google.com>
13038 L:      linux-pci@vger.kernel.org
13039 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13041 S:      Supported
13042 F:      Documentation/devicetree/bindings/pci/
13043 F:      Documentation/PCI/
13044 F:      drivers/acpi/pci*
13045 F:      drivers/pci/
13046 F:      include/asm-generic/pci*
13047 F:      include/linux/pci*
13048 F:      include/linux/of_pci.h
13049 F:      include/uapi/linux/pci*
13050 F:      lib/pci*
13051 F:      arch/x86/pci/
13052 F:      arch/x86/kernel/quirks.c
13053 F:      arch/x86/kernel/early-quirks.c
13054
13055 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13056 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13057 R:      Andrew Murray <amurray@thegoodpenguin.co.uk>
13058 L:      linux-pci@vger.kernel.org
13059 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13061 S:      Supported
13062 F:      drivers/pci/controller/
13063
13064 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13065 M:      Jonathan Chocron <jonnyc@amazon.com>
13066 L:      linux-pci@vger.kernel.org
13067 S:      Maintained
13068 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13069 F:      drivers/pci/controller/dwc/pcie-al.c
13070
13071 PCIE DRIVER FOR AMLOGIC MESON
13072 M:      Yue Wang <yue.wang@Amlogic.com>
13073 L:      linux-pci@vger.kernel.org
13074 L:      linux-amlogic@lists.infradead.org
13075 S:      Maintained
13076 F:      drivers/pci/controller/dwc/pci-meson.c
13077
13078 PCIE DRIVER FOR AXIS ARTPEC
13079 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13080 L:      linux-arm-kernel@axis.com
13081 L:      linux-pci@vger.kernel.org
13082 S:      Maintained
13083 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13084 F:      drivers/pci/controller/dwc/*artpec*
13085
13086 PCIE DRIVER FOR CAVIUM THUNDERX
13087 M:      Robert Richter <rrichter@marvell.com>
13088 L:      linux-pci@vger.kernel.org
13089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13090 S:      Supported
13091 F:      drivers/pci/controller/pci-thunder-*
13092
13093 PCIE DRIVER FOR HISILICON
13094 M:      Zhou Wang <wangzhou1@hisilicon.com>
13095 L:      linux-pci@vger.kernel.org
13096 S:      Maintained
13097 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13098 F:      drivers/pci/controller/dwc/pcie-hisi.c
13099
13100 PCIE DRIVER FOR HISILICON KIRIN
13101 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13102 M:      Binghui Wang <wangbinghui@hisilicon.com>
13103 L:      linux-pci@vger.kernel.org
13104 S:      Maintained
13105 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13106 F:      drivers/pci/controller/dwc/pcie-kirin.c
13107
13108 PCIE DRIVER FOR HISILICON STB
13109 M:      Shawn Guo <shawn.guo@linaro.org>
13110 L:      linux-pci@vger.kernel.org
13111 S:      Maintained
13112 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13113 F:      drivers/pci/controller/dwc/pcie-histb.c
13114
13115 PCIE DRIVER FOR MEDIATEK
13116 M:      Ryder Lee <ryder.lee@mediatek.com>
13117 L:      linux-pci@vger.kernel.org
13118 L:      linux-mediatek@lists.infradead.org
13119 S:      Supported
13120 F:      Documentation/devicetree/bindings/pci/mediatek*
13121 F:      drivers/pci/controller/*mediatek*
13122
13123 PCIE DRIVER FOR QUALCOMM MSM
13124 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13125 L:      linux-pci@vger.kernel.org
13126 L:      linux-arm-msm@vger.kernel.org
13127 S:      Maintained
13128 F:      drivers/pci/controller/dwc/*qcom*
13129
13130 PCIE DRIVER FOR ROCKCHIP
13131 M:      Shawn Lin <shawn.lin@rock-chips.com>
13132 L:      linux-pci@vger.kernel.org
13133 L:      linux-rockchip@lists.infradead.org
13134 S:      Maintained
13135 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13136 F:      drivers/pci/controller/pcie-rockchip*
13137
13138 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13139 M:      Linus Walleij <linus.walleij@linaro.org>
13140 L:      linux-pci@vger.kernel.org
13141 S:      Maintained
13142 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13143 F:      drivers/pci/controller/pci-v3-semi.c
13144
13145 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13146 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13147 L:      linux-pci@vger.kernel.org
13148 S:      Maintained
13149 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
13150 F:      drivers/pci/controller/dwc/pcie-uniphier.c
13151
13152 PCIE DRIVER FOR ST SPEAR13XX
13153 M:      Pratyush Anand <pratyush.anand@gmail.com>
13154 L:      linux-pci@vger.kernel.org
13155 S:      Maintained
13156 F:      drivers/pci/controller/dwc/*spear*
13157
13158 PCMCIA SUBSYSTEM
13159 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13161 S:      Odd Fixes
13162 F:      Documentation/pcmcia/
13163 F:      tools/pcmcia/
13164 F:      drivers/pcmcia/
13165 F:      include/pcmcia/
13166
13167 PCNET32 NETWORK DRIVER
13168 M:      Don Fry <pcnet32@frontier.com>
13169 L:      netdev@vger.kernel.org
13170 S:      Maintained
13171 F:      drivers/net/ethernet/amd/pcnet32.c
13172
13173 PCRYPT PARALLEL CRYPTO ENGINE
13174 M:      Steffen Klassert <steffen.klassert@secunet.com>
13175 L:      linux-crypto@vger.kernel.org
13176 S:      Maintained
13177 F:      crypto/pcrypt.c
13178 F:      include/crypto/pcrypt.h
13179
13180 PEAQ WMI HOTKEYS DRIVER
13181 M:      Hans de Goede <hdegoede@redhat.com>
13182 L:      platform-driver-x86@vger.kernel.org
13183 S:      Maintained
13184 F:      drivers/platform/x86/peaq-wmi.c
13185
13186 PENSANDO ETHERNET DRIVERS
13187 M:      Shannon Nelson <snelson@pensando.io>
13188 M:      Pensando Drivers <drivers@pensando.io>
13189 L:      netdev@vger.kernel.org
13190 S:      Supported
13191 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13192 F:      drivers/net/ethernet/pensando/
13193
13194 PER-CPU MEMORY ALLOCATOR
13195 M:      Dennis Zhou <dennis@kernel.org>
13196 M:      Tejun Heo <tj@kernel.org>
13197 M:      Christoph Lameter <cl@linux.com>
13198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13199 S:      Maintained
13200 F:      include/linux/percpu*.h
13201 F:      mm/percpu*.c
13202 F:      arch/*/include/asm/percpu.h
13203
13204 PER-TASK DELAY ACCOUNTING
13205 M:      Balbir Singh <bsingharora@gmail.com>
13206 S:      Maintained
13207 F:      include/linux/delayacct.h
13208 F:      kernel/delayacct.c
13209
13210 PERFORMANCE EVENTS SUBSYSTEM
13211 M:      Peter Zijlstra <peterz@infradead.org>
13212 M:      Ingo Molnar <mingo@redhat.com>
13213 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13214 R:      Mark Rutland <mark.rutland@arm.com>
13215 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13216 R:      Jiri Olsa <jolsa@redhat.com>
13217 R:      Namhyung Kim <namhyung@kernel.org>
13218 L:      linux-kernel@vger.kernel.org
13219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13220 S:      Supported
13221 F:      kernel/events/*
13222 F:      include/linux/perf_event.h
13223 F:      include/uapi/linux/perf_event.h
13224 F:      arch/*/kernel/perf_event*.c
13225 F:      arch/*/kernel/*/perf_event*.c
13226 F:      arch/*/kernel/*/*/perf_event*.c
13227 F:      arch/*/include/asm/perf_event.h
13228 F:      arch/*/kernel/perf_callchain.c
13229 F:      arch/*/events/*
13230 F:      arch/*/events/*/*
13231 F:      tools/perf/
13232
13233 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13234 R:      John Garry <john.garry@huawei.com>
13235 R:      Will Deacon <will@kernel.org>
13236 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13237 S:      Supported
13238 F:      tools/perf/pmu-events/arch/arm64/
13239
13240 PERSONALITY HANDLING
13241 M:      Christoph Hellwig <hch@infradead.org>
13242 L:      linux-abi-devel@lists.sourceforge.net
13243 S:      Maintained
13244 F:      include/linux/personality.h
13245 F:      include/uapi/linux/personality.h
13246
13247 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13248 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13249 L:      linux-input@vger.kernel.org
13250 S:      Maintained
13251 F:      Documentation/input/devices/pxrc.rst
13252 F:      drivers/input/joystick/pxrc.c
13253
13254 FLYSKY FSIA6B RC RECEIVER
13255 M:      Markus Koch <markus@notsyncing.net>
13256 L:      linux-input@vger.kernel.org
13257 S:      Maintained
13258 F:      drivers/input/joystick/fsia6b.c
13259
13260 PHONET PROTOCOL
13261 M:      Remi Denis-Courmont <courmisch@gmail.com>
13262 S:      Supported
13263 F:      Documentation/networking/phonet.txt
13264 F:      include/linux/phonet.h
13265 F:      include/net/phonet/
13266 F:      include/uapi/linux/phonet.h
13267 F:      net/phonet/
13268
13269 PHRAM MTD DRIVER
13270 M:      Joern Engel <joern@lazybastard.org>
13271 L:      linux-mtd@lists.infradead.org
13272 S:      Maintained
13273 F:      drivers/mtd/devices/phram.c
13274
13275 PICOLCD HID DRIVER
13276 M:      Bruno Prémont <bonbons@linux-vserver.org>
13277 L:      linux-input@vger.kernel.org
13278 S:      Maintained
13279 F:      drivers/hid/hid-picolcd*
13280
13281 PICOXCELL SUPPORT
13282 M:      Jamie Iles <jamie@jamieiles.com>
13283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13284 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13285 S:      Supported
13286 F:      arch/arm/boot/dts/picoxcell*
13287 F:      arch/arm/mach-picoxcell/
13288 F:      drivers/crypto/picoxcell*
13289
13290 PIDFD API
13291 M:      Christian Brauner <christian@brauner.io>
13292 L:      linux-kernel@vger.kernel.org
13293 S:      Maintained
13294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13295 F:      samples/pidfd/
13296 F:      tools/testing/selftests/pidfd/
13297 F:      tools/testing/selftests/pid_namespace/
13298 F:      tools/testing/selftests/clone3/
13299 K:      (?i)pidfd
13300 K:      (?i)clone3
13301 K:      \b(clone_args|kernel_clone_args)\b
13302
13303 PIN CONTROL SUBSYSTEM
13304 M:      Linus Walleij <linus.walleij@linaro.org>
13305 L:      linux-gpio@vger.kernel.org
13306 S:      Maintained
13307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13308 F:      Documentation/devicetree/bindings/pinctrl/
13309 F:      Documentation/driver-api/pinctl.rst
13310 F:      drivers/pinctrl/
13311 F:      include/linux/pinctrl/
13312
13313 PIN CONTROLLER - FREESCALE
13314 M:      Dong Aisheng <aisheng.dong@nxp.com>
13315 M:      Fabio Estevam <festevam@gmail.com>
13316 M:      Shawn Guo <shawnguo@kernel.org>
13317 M:      Stefan Agner <stefan@agner.ch>
13318 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13319 L:      linux-gpio@vger.kernel.org
13320 S:      Maintained
13321 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13322 F:      drivers/pinctrl/freescale/
13323
13324 PIN CONTROLLER - INTEL
13325 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13326 M:      Andy Shevchenko <andy@kernel.org>
13327 S:      Maintained
13328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13329 F:      drivers/pinctrl/intel/
13330
13331 PIN CONTROLLER - MEDIATEK
13332 M:      Sean Wang <sean.wang@kernel.org>
13333 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13334 S:      Maintained
13335 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13336 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13337 F:      drivers/pinctrl/mediatek/
13338
13339 PIN CONTROLLER - MICROCHIP AT91
13340 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13342 L:      linux-gpio@vger.kernel.org
13343 S:      Supported
13344 F:      drivers/gpio/gpio-sama5d2-piobu.c
13345 F:      drivers/pinctrl/pinctrl-at91*
13346
13347 PIN CONTROLLER - QUALCOMM
13348 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13349 L:      linux-arm-msm@vger.kernel.org
13350 S:      Maintained
13351 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13352 F:      drivers/pinctrl/qcom/
13353
13354 PIN CONTROLLER - RENESAS
13355 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13356 L:      linux-renesas-soc@vger.kernel.org
13357 S:      Maintained
13358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13359 F:      drivers/pinctrl/pinctrl-rz*
13360 F:      drivers/pinctrl/sh-pfc/
13361
13362 PIN CONTROLLER - SAMSUNG
13363 M:      Tomasz Figa <tomasz.figa@gmail.com>
13364 M:      Krzysztof Kozlowski <krzk@kernel.org>
13365 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13367 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13368 S:      Maintained
13369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13370 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13371 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13372 F:      drivers/pinctrl/samsung/
13373 F:      include/dt-bindings/pinctrl/samsung.h
13374
13375 PIN CONTROLLER - SINGLE
13376 M:      Tony Lindgren <tony@atomide.com>
13377 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13378 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13379 L:      linux-omap@vger.kernel.org
13380 S:      Maintained
13381 F:      drivers/pinctrl/pinctrl-single.c
13382
13383 PIN CONTROLLER - ST SPEAR
13384 M:      Viresh Kumar <vireshk@kernel.org>
13385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13386 S:      Maintained
13387 W:      http://www.st.com/spear
13388 F:      drivers/pinctrl/spear/
13389
13390 PISTACHIO SOC SUPPORT
13391 M:      James Hartley <james.hartley@sondrel.com>
13392 L:      linux-mips@vger.kernel.org
13393 S:      Odd Fixes
13394 F:      arch/mips/pistachio/
13395 F:      arch/mips/include/asm/mach-pistachio/
13396 F:      arch/mips/boot/dts/img/pistachio*
13397 F:      arch/mips/configs/pistachio*_defconfig
13398
13399 PKTCDVD DRIVER
13400 S:      Orphan
13401 M:      linux-block@vger.kernel.org
13402 F:      drivers/block/pktcdvd.c
13403 F:      include/linux/pktcdvd.h
13404 F:      include/uapi/linux/pktcdvd.h
13405
13406 PKUNITY SOC DRIVERS
13407 M:      Guan Xuetao <gxt@pku.edu.cn>
13408 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13409 S:      Maintained
13410 T:      git git://github.com/gxt/linux.git
13411 F:      drivers/input/serio/i8042-unicore32io.h
13412 F:      drivers/i2c/busses/i2c-puv3.c
13413 F:      drivers/video/fbdev/fb-puv3.c
13414 F:      drivers/rtc/rtc-puv3.c
13415
13416 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13417 M:      Tomasz Duszynski <tduszyns@gmail.com>
13418 S:      Maintained
13419 F:      drivers/iio/chemical/pms7003.c
13420 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13421
13422 PLX DMA DRIVER
13423 M:      Logan Gunthorpe <logang@deltatee.com>
13424 S:      Maintained
13425 F:      drivers/dma/plx_dma.c
13426
13427 PMBUS HARDWARE MONITORING DRIVERS
13428 M:      Guenter Roeck <linux@roeck-us.net>
13429 L:      linux-hwmon@vger.kernel.org
13430 W:      http://hwmon.wiki.kernel.org/
13431 W:      http://www.roeck-us.net/linux/drivers/
13432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13433 S:      Maintained
13434 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13435 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13436 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13437 F:      Documentation/hwmon/adm1275.rst
13438 F:      Documentation/hwmon/ibm-cffps.rst
13439 F:      Documentation/hwmon/ir35221.rst
13440 F:      Documentation/hwmon/lm25066.rst
13441 F:      Documentation/hwmon/ltc2978.rst
13442 F:      Documentation/hwmon/ltc3815.rst
13443 F:      Documentation/hwmon/max16064.rst
13444 F:      Documentation/hwmon/max20751.rst
13445 F:      Documentation/hwmon/max31785.rst
13446 F:      Documentation/hwmon/max34440.rst
13447 F:      Documentation/hwmon/max8688.rst
13448 F:      Documentation/hwmon/pmbus.rst
13449 F:      Documentation/hwmon/pmbus-core.rst
13450 F:      Documentation/hwmon/tps40422.rst
13451 F:      Documentation/hwmon/ucd9000.rst
13452 F:      Documentation/hwmon/ucd9200.rst
13453 F:      Documentation/hwmon/zl6100.rst
13454 F:      drivers/hwmon/pmbus/
13455 F:      include/linux/pmbus.h
13456
13457 PMC SIERRA MaxRAID DRIVER
13458 L:      linux-scsi@vger.kernel.org
13459 W:      http://www.pmc-sierra.com/
13460 S:      Orphan
13461 F:      drivers/scsi/pmcraid.*
13462
13463 PMC SIERRA PM8001 DRIVER
13464 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13465 L:      linux-scsi@vger.kernel.org
13466 S:      Supported
13467 F:      drivers/scsi/pm8001/
13468
13469 PM-GRAPH UTILITY
13470 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13471 L:      linux-pm@vger.kernel.org
13472 W:      https://01.org/pm-graph
13473 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13474 T:      git git://github.com/intel/pm-graph
13475 S:      Supported
13476 F:      tools/power/pm-graph
13477
13478 PNI RM3100 IIO DRIVER
13479 M:      Song Qiang <songqiang1304521@gmail.com>
13480 L:      linux-iio@vger.kernel.org
13481 S:      Maintained
13482 F:      drivers/iio/magnetometer/rm3100*
13483 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13484
13485 PNP SUPPORT
13486 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13487 L:      linux-acpi@vger.kernel.org
13488 S:      Maintained
13489 F:      include/linux/pnp.h
13490 F:      drivers/pnp/
13491
13492 POSIX CLOCKS and TIMERS
13493 M:      Thomas Gleixner <tglx@linutronix.de>
13494 L:      linux-kernel@vger.kernel.org
13495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13496 S:      Maintained
13497 F:      fs/timerfd.c
13498 F:      include/linux/timer*
13499 F:      include/linux/time_namespace.h
13500 F:      kernel/time/namespace.c
13501 F:      kernel/time/*timer*
13502
13503 POWER MANAGEMENT CORE
13504 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13505 L:      linux-pm@vger.kernel.org
13506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13507 B:      https://bugzilla.kernel.org
13508 S:      Supported
13509 F:      drivers/base/power/
13510 F:      include/linux/pm.h
13511 F:      include/linux/pm_*
13512 F:      include/linux/powercap.h
13513 F:      include/linux/intel_rapl.h
13514 F:      drivers/powercap/
13515 F:      kernel/configs/nopm.config
13516
13517 POWER STATE COORDINATION INTERFACE (PSCI)
13518 M:      Mark Rutland <mark.rutland@arm.com>
13519 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13520 L:      linux-arm-kernel@lists.infradead.org
13521 S:      Maintained
13522 F:      drivers/firmware/psci/
13523 F:      include/linux/psci.h
13524 F:      include/uapi/linux/psci.h
13525
13526 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13527 M:      Sebastian Reichel <sre@kernel.org>
13528 L:      linux-pm@vger.kernel.org
13529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13530 S:      Maintained
13531 F:      Documentation/ABI/testing/sysfs-class-power
13532 F:      Documentation/devicetree/bindings/power/supply/
13533 F:      include/linux/power_supply.h
13534 F:      drivers/power/supply/
13535
13536 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13537 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13538 L:      linuxppc-dev@lists.ozlabs.org
13539 S:      Maintained
13540 F:      drivers/char/powernv-op-panel.c
13541
13542 PPP OVER ATM (RFC 2364)
13543 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13544 S:      Maintained
13545 F:      net/atm/pppoatm.c
13546 F:      include/uapi/linux/atmppp.h
13547
13548 PPP OVER ETHERNET
13549 M:      Michal Ostrowski <mostrows@earthlink.net>
13550 S:      Maintained
13551 F:      drivers/net/ppp/pppoe.c
13552 F:      drivers/net/ppp/pppox.c
13553
13554 PPP OVER L2TP
13555 M:      James Chapman <jchapman@katalix.com>
13556 S:      Maintained
13557 F:      net/l2tp/l2tp_ppp.c
13558 F:      include/linux/if_pppol2tp.h
13559 F:      include/uapi/linux/if_pppol2tp.h
13560
13561 PPP PROTOCOL DRIVERS AND COMPRESSORS
13562 M:      Paul Mackerras <paulus@samba.org>
13563 L:      linux-ppp@vger.kernel.org
13564 S:      Maintained
13565 F:      drivers/net/ppp/ppp_*
13566
13567 PPS SUPPORT
13568 M:      Rodolfo Giometti <giometti@enneenne.com>
13569 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13570 L:      linuxpps@ml.enneenne.com (subscribers-only)
13571 S:      Maintained
13572 F:      Documentation/driver-api/pps.rst
13573 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13574 F:      Documentation/ABI/testing/sysfs-pps
13575 F:      drivers/pps/
13576 F:      include/linux/pps*.h
13577 F:      include/uapi/linux/pps.h
13578
13579 PPTP DRIVER
13580 M:      Dmitry Kozlov <xeb@mail.ru>
13581 L:      netdev@vger.kernel.org
13582 S:      Maintained
13583 F:      drivers/net/ppp/pptp.c
13584 W:      http://sourceforge.net/projects/accel-pptp
13585
13586 PRINTK
13587 M:      Petr Mladek <pmladek@suse.com>
13588 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13589 R:      Steven Rostedt <rostedt@goodmis.org>
13590 S:      Maintained
13591 F:      kernel/printk/
13592 F:      include/linux/printk.h
13593
13594 PRISM54 WIRELESS DRIVER
13595 M:      Luis Chamberlain <mcgrof@kernel.org>
13596 L:      linux-wireless@vger.kernel.org
13597 W:      http://wireless.kernel.org/en/users/Drivers/p54
13598 S:      Obsolete
13599 F:      drivers/net/wireless/intersil/prism54/
13600
13601 PROC FILESYSTEM
13602 R:      Alexey Dobriyan <adobriyan@gmail.com>
13603 L:      linux-kernel@vger.kernel.org
13604 L:      linux-fsdevel@vger.kernel.org
13605 S:      Maintained
13606 F:      fs/proc/
13607 F:      include/linux/proc_fs.h
13608 F:      tools/testing/selftests/proc/
13609 F:      Documentation/filesystems/proc.rst
13610
13611 PROC SYSCTL
13612 M:      Luis Chamberlain <mcgrof@kernel.org>
13613 M:      Kees Cook <keescook@chromium.org>
13614 M:      Iurii Zaikin <yzaikin@google.com>
13615 L:      linux-kernel@vger.kernel.org
13616 L:      linux-fsdevel@vger.kernel.org
13617 S:      Maintained
13618 F:      fs/proc/proc_sysctl.c
13619 F:      include/linux/sysctl.h
13620 F:      kernel/sysctl.c
13621 F:      kernel/sysctl-test.c
13622 F:      tools/testing/selftests/sysctl/
13623
13624 PS3 NETWORK SUPPORT
13625 M:      Geoff Levand <geoff@infradead.org>
13626 L:      netdev@vger.kernel.org
13627 L:      linuxppc-dev@lists.ozlabs.org
13628 S:      Maintained
13629 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13630
13631 PS3 PLATFORM SUPPORT
13632 M:      Geoff Levand <geoff@infradead.org>
13633 L:      linuxppc-dev@lists.ozlabs.org
13634 S:      Maintained
13635 F:      arch/powerpc/boot/ps3*
13636 F:      arch/powerpc/include/asm/lv1call.h
13637 F:      arch/powerpc/include/asm/ps3*.h
13638 F:      arch/powerpc/platforms/ps3/
13639 F:      drivers/*/ps3*
13640 F:      drivers/ps3/
13641 F:      drivers/rtc/rtc-ps3.c
13642 F:      drivers/usb/host/*ps3.c
13643 F:      sound/ppc/snd_ps3*
13644
13645 PS3VRAM DRIVER
13646 M:      Jim Paris <jim@jtan.com>
13647 M:      Geoff Levand <geoff@infradead.org>
13648 L:      linuxppc-dev@lists.ozlabs.org
13649 S:      Maintained
13650 F:      drivers/block/ps3vram.c
13651
13652 PSAMPLE PACKET SAMPLING SUPPORT
13653 M:      Yotam Gigi <yotam.gi@gmail.com>
13654 S:      Maintained
13655 F:      net/psample
13656 F:      include/net/psample.h
13657 F:      include/uapi/linux/psample.h
13658
13659 PRESSURE STALL INFORMATION (PSI)
13660 M:      Johannes Weiner <hannes@cmpxchg.org>
13661 S:      Maintained
13662 F:      kernel/sched/psi.c
13663 F:      include/linux/psi*
13664
13665 PSTORE FILESYSTEM
13666 M:      Kees Cook <keescook@chromium.org>
13667 M:      Anton Vorontsov <anton@enomsg.org>
13668 M:      Colin Cross <ccross@android.com>
13669 M:      Tony Luck <tony.luck@intel.com>
13670 S:      Maintained
13671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13672 F:      fs/pstore/
13673 F:      include/linux/pstore*
13674 F:      drivers/firmware/efi/efi-pstore.c
13675 F:      drivers/acpi/apei/erst.c
13676 F:      Documentation/admin-guide/ramoops.rst
13677 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13678 K:      \b(pstore|ramoops)
13679
13680 PTP HARDWARE CLOCK SUPPORT
13681 M:      Richard Cochran <richardcochran@gmail.com>
13682 L:      netdev@vger.kernel.org
13683 S:      Maintained
13684 W:      http://linuxptp.sourceforge.net/
13685 F:      Documentation/ABI/testing/sysfs-ptp
13686 F:      Documentation/driver-api/ptp.rst
13687 F:      drivers/net/phy/dp83640*
13688 F:      drivers/ptp/*
13689 F:      include/linux/ptp_cl*
13690
13691 PTRACE SUPPORT
13692 M:      Oleg Nesterov <oleg@redhat.com>
13693 S:      Maintained
13694 F:      include/asm-generic/syscall.h
13695 F:      include/linux/ptrace.h
13696 F:      include/linux/regset.h
13697 F:      include/linux/tracehook.h
13698 F:      include/uapi/linux/ptrace.h
13699 F:      include/uapi/linux/ptrace.h
13700 F:      kernel/ptrace.c
13701 F:      arch/*/ptrace*.c
13702 F:      arch/*/*/ptrace*.c
13703 F:      arch/*/include/asm/ptrace*.h
13704
13705 PULSE8-CEC DRIVER
13706 M:      Hans Verkuil <hverkuil@xs4all.nl>
13707 L:      linux-media@vger.kernel.org
13708 T:      git git://linuxtv.org/media_tree.git
13709 S:      Maintained
13710 F:      drivers/media/usb/pulse8-cec/*
13711 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13712
13713 PVRUSB2 VIDEO4LINUX DRIVER
13714 M:      Mike Isely <isely@pobox.com>
13715 L:      pvrusb2@isely.net       (subscribers-only)
13716 L:      linux-media@vger.kernel.org
13717 W:      http://www.isely.net/pvrusb2/
13718 T:      git git://linuxtv.org/media_tree.git
13719 S:      Maintained
13720 F:      Documentation/media/v4l-drivers/pvrusb2*
13721 F:      drivers/media/usb/pvrusb2/
13722
13723 PWC WEBCAM DRIVER
13724 M:      Hans Verkuil <hverkuil@xs4all.nl>
13725 L:      linux-media@vger.kernel.org
13726 T:      git git://linuxtv.org/media_tree.git
13727 S:      Odd Fixes
13728 F:      drivers/media/usb/pwc/*
13729 F:      include/trace/events/pwc.h
13730
13731 PWM FAN DRIVER
13732 M:      Kamil Debski <kamil@wypas.org>
13733 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13734 L:      linux-hwmon@vger.kernel.org
13735 S:      Supported
13736 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13737 F:      Documentation/hwmon/pwm-fan.rst
13738 F:      drivers/hwmon/pwm-fan.c
13739
13740 PWM IR Transmitter
13741 M:      Sean Young <sean@mess.org>
13742 L:      linux-media@vger.kernel.org
13743 S:      Maintained
13744 F:      drivers/media/rc/pwm-ir-tx.c
13745
13746 PWM SUBSYSTEM
13747 M:      Thierry Reding <thierry.reding@gmail.com>
13748 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13749 L:      linux-pwm@vger.kernel.org
13750 S:      Maintained
13751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13752 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13753 F:      Documentation/driver-api/pwm.rst
13754 F:      Documentation/devicetree/bindings/pwm/
13755 F:      include/linux/pwm.h
13756 F:      drivers/pwm/
13757 F:      drivers/video/backlight/pwm_bl.c
13758 F:      include/linux/pwm_backlight.h
13759 F:      drivers/gpio/gpio-mvebu.c
13760 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13761 K:      pwm_(config|apply_state|ops)
13762
13763 PXA GPIO DRIVER
13764 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13765 L:      linux-gpio@vger.kernel.org
13766 S:      Maintained
13767 F:      drivers/gpio/gpio-pxa.c
13768
13769 PXA MMCI DRIVER
13770 S:      Orphan
13771
13772 PXA RTC DRIVER
13773 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13774 L:      linux-rtc@vger.kernel.org
13775 S:      Maintained
13776
13777 PXA2xx/PXA3xx SUPPORT
13778 M:      Daniel Mack <daniel@zonque.org>
13779 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13780 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13782 T:      git git://github.com/hzhuang1/linux.git
13783 T:      git git://github.com/rjarzmik/linux.git
13784 S:      Maintained
13785 F:      arch/arm/boot/dts/pxa*
13786 F:      arch/arm/mach-pxa/
13787 F:      drivers/dma/pxa*
13788 F:      drivers/pcmcia/pxa2xx*
13789 F:      drivers/pinctrl/pxa/
13790 F:      drivers/spi/spi-pxa2xx*
13791 F:      drivers/usb/gadget/udc/pxa2*
13792 F:      include/sound/pxa2xx-lib.h
13793 F:      sound/arm/pxa*
13794 F:      sound/soc/pxa/
13795
13796 QAT DRIVER
13797 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13798 L:      qat-linux@intel.com
13799 S:      Supported
13800 F:      drivers/crypto/qat/
13801
13802 QCOM AUDIO (ASoC) DRIVERS
13803 M:      Patrick Lai <plai@codeaurora.org>
13804 M:      Banajit Goswami <bgoswami@codeaurora.org>
13805 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13806 S:      Supported
13807 F:      sound/soc/qcom/
13808
13809 QCOM IPA DRIVER
13810 M:      Alex Elder <elder@kernel.org>
13811 L:      netdev@vger.kernel.org
13812 S:      Supported
13813 F:      drivers/net/ipa/
13814
13815 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13816 M:      Gabriel Somlo <somlo@cmu.edu>
13817 M:      "Michael S. Tsirkin" <mst@redhat.com>
13818 L:      qemu-devel@nongnu.org
13819 S:      Maintained
13820 F:      drivers/firmware/qemu_fw_cfg.c
13821 F:      include/uapi/linux/qemu_fw_cfg.h
13822
13823 QIB DRIVER
13824 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13825 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13826 L:      linux-rdma@vger.kernel.org
13827 S:      Supported
13828 F:      drivers/infiniband/hw/qib/
13829
13830 QLOGIC QL41xxx FCOE DRIVER
13831 M:      QLogic-Storage-Upstream@cavium.com
13832 L:      linux-scsi@vger.kernel.org
13833 S:      Supported
13834 F:      drivers/scsi/qedf/
13835
13836 QLOGIC QL41xxx ISCSI DRIVER
13837 M:      QLogic-Storage-Upstream@cavium.com
13838 L:      linux-scsi@vger.kernel.org
13839 S:      Supported
13840 F:      drivers/scsi/qedi/
13841
13842 QLOGIC QL4xxx ETHERNET DRIVER
13843 M:      Ariel Elior <aelior@marvell.com>
13844 M:      GR-everest-linux-l2@marvell.com
13845 L:      netdev@vger.kernel.org
13846 S:      Supported
13847 F:      drivers/net/ethernet/qlogic/qed/
13848 F:      include/linux/qed/
13849 F:      drivers/net/ethernet/qlogic/qede/
13850
13851 QLOGIC QL4xxx RDMA DRIVER
13852 M:      Michal Kalderon <mkalderon@marvell.com>
13853 M:      Ariel Elior <aelior@marvell.com>
13854 L:      linux-rdma@vger.kernel.org
13855 S:      Supported
13856 F:      drivers/infiniband/hw/qedr/
13857 F:      include/uapi/rdma/qedr-abi.h
13858
13859 QLOGIC QLA1280 SCSI DRIVER
13860 M:      Michael Reed <mdr@sgi.com>
13861 L:      linux-scsi@vger.kernel.org
13862 S:      Maintained
13863 F:      drivers/scsi/qla1280.[ch]
13864
13865 QLOGIC QLA2XXX FC-SCSI DRIVER
13866 M:      hmadhani@marvell.com
13867 L:      linux-scsi@vger.kernel.org
13868 S:      Supported
13869 F:      Documentation/scsi/LICENSE.qla2xxx
13870 F:      drivers/scsi/qla2xxx/
13871
13872 QLOGIC QLA3XXX NETWORK DRIVER
13873 M:      GR-Linux-NIC-Dev@marvell.com
13874 L:      netdev@vger.kernel.org
13875 S:      Supported
13876 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13877 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13878
13879 QLOGIC QLA4XXX iSCSI DRIVER
13880 M:      QLogic-Storage-Upstream@qlogic.com
13881 L:      linux-scsi@vger.kernel.org
13882 S:      Supported
13883 F:      Documentation/scsi/LICENSE.qla4xxx
13884 F:      drivers/scsi/qla4xxx/
13885
13886 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13887 M:      Shahed Shaikh <shshaikh@marvell.com>
13888 M:      Manish Chopra <manishc@marvell.com>
13889 M:      GR-Linux-NIC-Dev@marvell.com
13890 L:      netdev@vger.kernel.org
13891 S:      Supported
13892 F:      drivers/net/ethernet/qlogic/qlcnic/
13893
13894 QLOGIC QLGE 10Gb ETHERNET DRIVER
13895 M:      Manish Chopra <manishc@marvell.com>
13896 M:      GR-Linux-NIC-Dev@marvell.com
13897 L:      netdev@vger.kernel.org
13898 S:      Supported
13899 F:      drivers/staging/qlge/
13900
13901 QM1D1B0004 MEDIA DRIVER
13902 M:      Akihiro Tsukada <tskd08@gmail.com>
13903 L:      linux-media@vger.kernel.org
13904 S:      Odd Fixes
13905 F:      drivers/media/tuners/qm1d1b0004*
13906
13907 QM1D1C0042 MEDIA DRIVER
13908 M:      Akihiro Tsukada <tskd08@gmail.com>
13909 L:      linux-media@vger.kernel.org
13910 S:      Odd Fixes
13911 F:      drivers/media/tuners/qm1d1c0042*
13912
13913 QNX4 FILESYSTEM
13914 M:      Anders Larsen <al@alarsen.net>
13915 W:      http://www.alarsen.net/linux/qnx4fs/
13916 S:      Maintained
13917 F:      fs/qnx4/
13918 F:      include/uapi/linux/qnx4_fs.h
13919 F:      include/uapi/linux/qnxtypes.h
13920
13921 QORIQ DPAA2 FSL-MC BUS DRIVER
13922 M:      Stuart Yoder <stuyoder@gmail.com>
13923 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
13924 L:      linux-kernel@vger.kernel.org
13925 S:      Maintained
13926 F:      drivers/bus/fsl-mc/
13927 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13928 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13929
13930 QT1010 MEDIA DRIVER
13931 M:      Antti Palosaari <crope@iki.fi>
13932 L:      linux-media@vger.kernel.org
13933 W:      https://linuxtv.org
13934 W:      http://palosaari.fi/linux/
13935 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13936 T:      git git://linuxtv.org/anttip/media_tree.git
13937 S:      Maintained
13938 F:      drivers/media/tuners/qt1010*
13939
13940 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13941 M:      Kalle Valo <kvalo@codeaurora.org>
13942 L:      ath10k@lists.infradead.org
13943 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13945 S:      Supported
13946 F:      drivers/net/wireless/ath/ath10k/
13947
13948 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
13949 M:      Kalle Valo <kvalo@codeaurora.org>
13950 L:      ath11k@lists.infradead.org
13951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13952 S:      Supported
13953 F:      drivers/net/wireless/ath/ath11k/
13954
13955 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13956 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
13957 L:      linux-wireless@vger.kernel.org
13958 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13959 S:      Supported
13960 F:      drivers/net/wireless/ath/ath9k/
13961
13962 QUALCOMM CAMERA SUBSYSTEM DRIVER
13963 M:      Todor Tomov <todor.too@gmail.com>
13964 L:      linux-media@vger.kernel.org
13965 S:      Maintained
13966 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13967 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13968 F:      drivers/media/platform/qcom/camss/
13969
13970 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13971 M:      Ilia Lin <ilia.lin@kernel.org>
13972 L:      linux-pm@vger.kernel.org
13973 S:      Maintained
13974 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13975 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13976
13977 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
13978 M:      Niklas Cassel <nks@flawful.org>
13979 L:      linux-pm@vger.kernel.org
13980 L:      linux-arm-msm@vger.kernel.org
13981 S:      Maintained
13982 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
13983 F:      drivers/power/avs/qcom-cpr.c
13984
13985 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13986 M:      Timur Tabi <timur@kernel.org>
13987 L:      netdev@vger.kernel.org
13988 S:      Maintained
13989 F:      drivers/net/ethernet/qualcomm/emac/
13990
13991 QUALCOMM ETHQOS ETHERNET DRIVER
13992 M:      Vinod Koul <vkoul@kernel.org>
13993 L:      netdev@vger.kernel.org
13994 S:      Maintained
13995 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13996 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13997
13998 QUALCOMM GENERIC INTERFACE I2C DRIVER
13999 M:      Alok Chauhan <alokc@codeaurora.org>
14000 L:      linux-i2c@vger.kernel.org
14001 L:      linux-arm-msm@vger.kernel.org
14002 S:      Supported
14003 F:      drivers/i2c/busses/i2c-qcom-geni.c
14004
14005 QUALCOMM HEXAGON ARCHITECTURE
14006 M:      Brian Cain <bcain@codeaurora.org>
14007 L:      linux-hexagon@vger.kernel.org
14008 S:      Supported
14009 F:      arch/hexagon/
14010
14011 QUALCOMM HIDMA DRIVER
14012 M:      Sinan Kaya <okaya@kernel.org>
14013 L:      linux-arm-kernel@lists.infradead.org
14014 L:      linux-arm-msm@vger.kernel.org
14015 L:      dmaengine@vger.kernel.org
14016 S:      Supported
14017 F:      drivers/dma/qcom/hidma*
14018
14019 QUALCOMM IOMMU
14020 M:      Rob Clark <robdclark@gmail.com>
14021 L:      iommu@lists.linux-foundation.org
14022 L:      linux-arm-msm@vger.kernel.org
14023 S:      Maintained
14024 F:      drivers/iommu/qcom_iommu.c
14025
14026 QUALCOMM RMNET DRIVER
14027 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14028 M:      Sean Tranchetti <stranche@codeaurora.org>
14029 L:      netdev@vger.kernel.org
14030 S:      Maintained
14031 F:      drivers/net/ethernet/qualcomm/rmnet/
14032 F:      Documentation/networking/device_drivers/qualcomm/rmnet.txt
14033 F:      include/linux/if_rmnet.h
14034
14035 QUALCOMM TSENS THERMAL DRIVER
14036 M:      Amit Kucheria <amit.kucheria@linaro.org>
14037 L:      linux-pm@vger.kernel.org
14038 L:      linux-arm-msm@vger.kernel.org
14039 S:      Maintained
14040 F:      drivers/thermal/qcom/
14041 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14042
14043 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14044 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14045 L:      linux-media@vger.kernel.org
14046 L:      linux-arm-msm@vger.kernel.org
14047 T:      git git://linuxtv.org/media_tree.git
14048 S:      Maintained
14049 F:      drivers/media/platform/qcom/venus/
14050 F:      Documentation/devicetree/bindings/media/*venus*
14051
14052 QUALCOMM WCN36XX WIRELESS DRIVER
14053 M:      Kalle Valo <kvalo@codeaurora.org>
14054 L:      wcn36xx@lists.infradead.org
14055 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
14056 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14057 S:      Supported
14058 F:      drivers/net/wireless/ath/wcn36xx/
14059
14060 QUANTENNA QTNFMAC WIRELESS DRIVER
14061 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14062 M:      Avinash Patil <avinashp@quantenna.com>
14063 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
14064 L:      linux-wireless@vger.kernel.org
14065 S:      Maintained
14066 F:      drivers/net/wireless/quantenna
14067
14068 RADEON and AMDGPU DRM DRIVERS
14069 M:      Alex Deucher <alexander.deucher@amd.com>
14070 M:      Christian König <christian.koenig@amd.com>
14071 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
14072 L:      amd-gfx@lists.freedesktop.org
14073 T:      git git://people.freedesktop.org/~agd5f/linux
14074 S:      Supported
14075 F:      drivers/gpu/drm/radeon/
14076 F:      include/uapi/drm/radeon_drm.h
14077 F:      drivers/gpu/drm/amd/
14078 F:      include/uapi/drm/amdgpu_drm.h
14079
14080 RADEON FRAMEBUFFER DISPLAY DRIVER
14081 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14082 L:      linux-fbdev@vger.kernel.org
14083 S:      Maintained
14084 F:      drivers/video/fbdev/aty/radeon*
14085 F:      include/uapi/linux/radeonfb.h
14086
14087 RADIOSHARK RADIO DRIVER
14088 M:      Hans Verkuil <hverkuil@xs4all.nl>
14089 L:      linux-media@vger.kernel.org
14090 T:      git git://linuxtv.org/media_tree.git
14091 S:      Maintained
14092 F:      drivers/media/radio/radio-shark.c
14093
14094 RADIOSHARK2 RADIO DRIVER
14095 M:      Hans Verkuil <hverkuil@xs4all.nl>
14096 L:      linux-media@vger.kernel.org
14097 T:      git git://linuxtv.org/media_tree.git
14098 S:      Maintained
14099 F:      drivers/media/radio/radio-shark2.c
14100 F:      drivers/media/radio/radio-tea5777.c
14101
14102 RADOS BLOCK DEVICE (RBD)
14103 M:      Ilya Dryomov <idryomov@gmail.com>
14104 M:      Sage Weil <sage@redhat.com>
14105 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14106 L:      ceph-devel@vger.kernel.org
14107 W:      http://ceph.com/
14108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
14109 T:      git git://github.com/ceph/ceph-client.git
14110 S:      Supported
14111 F:      Documentation/ABI/testing/sysfs-bus-rbd
14112 F:      drivers/block/rbd.c
14113 F:      drivers/block/rbd_types.h
14114
14115 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14116 M:      Paul Mackerras <paulus@samba.org>
14117 L:      linux-fbdev@vger.kernel.org
14118 S:      Maintained
14119 F:      drivers/video/fbdev/aty/aty128fb.c
14120
14121 RAINSHADOW-CEC DRIVER
14122 M:      Hans Verkuil <hverkuil@xs4all.nl>
14123 L:      linux-media@vger.kernel.org
14124 T:      git git://linuxtv.org/media_tree.git
14125 S:      Maintained
14126 F:      drivers/media/usb/rainshadow-cec/*
14127
14128 RALINK MIPS ARCHITECTURE
14129 M:      John Crispin <john@phrozen.org>
14130 L:      linux-mips@vger.kernel.org
14131 S:      Maintained
14132 F:      arch/mips/ralink
14133
14134 RALINK RT2X00 WIRELESS LAN DRIVER
14135 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14136 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14137 L:      linux-wireless@vger.kernel.org
14138 S:      Maintained
14139 F:      drivers/net/wireless/ralink/rt2x00/
14140
14141 RAMDISK RAM BLOCK DEVICE DRIVER
14142 M:      Jens Axboe <axboe@kernel.dk>
14143 S:      Maintained
14144 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14145 F:      drivers/block/brd.c
14146
14147 RANCHU VIRTUAL BOARD FOR MIPS
14148 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14149 L:      linux-mips@vger.kernel.org
14150 S:      Supported
14151 F:      arch/mips/generic/board-ranchu.c
14152 F:      arch/mips/configs/generic/board-ranchu.config
14153
14154 RANDOM NUMBER DRIVER
14155 M:      "Theodore Ts'o" <tytso@mit.edu>
14156 S:      Maintained
14157 F:      drivers/char/random.c
14158
14159 RAPIDIO SUBSYSTEM
14160 M:      Matt Porter <mporter@kernel.crashing.org>
14161 M:      Alexandre Bounine <alex.bou9@gmail.com>
14162 S:      Maintained
14163 F:      drivers/rapidio/
14164
14165 RAS INFRASTRUCTURE
14166 M:      Tony Luck <tony.luck@intel.com>
14167 M:      Borislav Petkov <bp@alien8.de>
14168 L:      linux-edac@vger.kernel.org
14169 S:      Maintained
14170 F:      drivers/ras/
14171 F:      include/linux/ras.h
14172 F:      include/ras/ras_event.h
14173 F:      Documentation/admin-guide/ras.rst
14174
14175 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14176 L:      linux-wireless@vger.kernel.org
14177 S:      Orphan
14178 F:      drivers/net/wireless/ray*
14179
14180 RCUTORTURE TEST FRAMEWORK
14181 M:      "Paul E. McKenney" <paulmck@kernel.org>
14182 M:      Josh Triplett <josh@joshtriplett.org>
14183 R:      Steven Rostedt <rostedt@goodmis.org>
14184 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14185 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14186 L:      rcu@vger.kernel.org
14187 S:      Supported
14188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14189 F:      tools/testing/selftests/rcutorture
14190
14191 RDC R-321X SoC
14192 M:      Florian Fainelli <florian@openwrt.org>
14193 S:      Maintained
14194
14195 RDC R6040 FAST ETHERNET DRIVER
14196 M:      Florian Fainelli <f.fainelli@gmail.com>
14197 L:      netdev@vger.kernel.org
14198 S:      Maintained
14199 F:      drivers/net/ethernet/rdc/r6040.c
14200
14201 RDMAVT - RDMA verbs software
14202 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14203 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14204 L:      linux-rdma@vger.kernel.org
14205 S:      Supported
14206 F:      drivers/infiniband/sw/rdmavt
14207
14208 RDS - RELIABLE DATAGRAM SOCKETS
14209 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14210 L:      netdev@vger.kernel.org
14211 L:      linux-rdma@vger.kernel.org
14212 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14213 W:      https://oss.oracle.com/projects/rds/
14214 S:      Supported
14215 F:      net/rds/
14216 F:      Documentation/networking/rds.txt
14217
14218 RDT - RESOURCE ALLOCATION
14219 M:      Fenghua Yu <fenghua.yu@intel.com>
14220 M:      Reinette Chatre <reinette.chatre@intel.com>
14221 L:      linux-kernel@vger.kernel.org
14222 S:      Supported
14223 F:      arch/x86/kernel/cpu/resctrl/
14224 F:      arch/x86/include/asm/resctrl_sched.h
14225 F:      Documentation/x86/resctrl*
14226 F:      tools/testing/selftests/resctrl/
14227
14228 READ-COPY UPDATE (RCU)
14229 M:      "Paul E. McKenney" <paulmck@kernel.org>
14230 M:      Josh Triplett <josh@joshtriplett.org>
14231 R:      Steven Rostedt <rostedt@goodmis.org>
14232 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14233 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14234 R:      Joel Fernandes <joel@joelfernandes.org>
14235 L:      rcu@vger.kernel.org
14236 W:      http://www.rdrop.com/users/paulmck/RCU/
14237 S:      Supported
14238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14239 F:      Documentation/RCU/
14240 X:      Documentation/RCU/torture.txt
14241 F:      include/linux/rcu*
14242 X:      include/linux/srcu*.h
14243 F:      kernel/rcu/
14244 X:      kernel/rcu/srcu*.c
14245
14246 REAL TIME CLOCK (RTC) SUBSYSTEM
14247 M:      Alessandro Zummo <a.zummo@towertech.it>
14248 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14249 L:      linux-rtc@vger.kernel.org
14250 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14252 S:      Maintained
14253 F:      Documentation/devicetree/bindings/rtc/
14254 F:      Documentation/admin-guide/rtc.rst
14255 F:      drivers/rtc/
14256 F:      include/linux/rtc.h
14257 F:      include/uapi/linux/rtc.h
14258 F:      include/linux/rtc/
14259 F:      include/linux/platform_data/rtc-*
14260 F:      tools/testing/selftests/rtc/
14261
14262 REALTEK AUDIO CODECS
14263 M:      Oder Chiou <oder_chiou@realtek.com>
14264 S:      Maintained
14265 F:      sound/soc/codecs/rt*
14266 F:      include/sound/rt*.h
14267
14268 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14269 M:      Linus Walleij <linus.walleij@linaro.org>
14270 S:      Maintained
14271 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14272 F:      drivers/net/dsa/realtek-smi*
14273 F:      drivers/net/dsa/rtl83*
14274
14275 REDPINE WIRELESS DRIVER
14276 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14277 M:      Siva Rebbagondla <siva8118@gmail.com>
14278 L:      linux-wireless@vger.kernel.org
14279 S:      Maintained
14280 F:      drivers/net/wireless/rsi/
14281
14282 REGISTER MAP ABSTRACTION
14283 M:      Mark Brown <broonie@kernel.org>
14284 L:      linux-kernel@vger.kernel.org
14285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14286 S:      Supported
14287 F:      Documentation/devicetree/bindings/regmap/
14288 F:      drivers/base/regmap/
14289 F:      include/linux/regmap.h
14290
14291 REISERFS FILE SYSTEM
14292 L:      reiserfs-devel@vger.kernel.org
14293 S:      Supported
14294 F:      fs/reiserfs/
14295
14296 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14297 M:      Ohad Ben-Cohen <ohad@wizery.com>
14298 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14299 L:      linux-remoteproc@vger.kernel.org
14300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14301 S:      Maintained
14302 F:      Documentation/devicetree/bindings/remoteproc/
14303 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14304 F:      Documentation/remoteproc.txt
14305 F:      drivers/remoteproc/
14306 F:      include/linux/remoteproc.h
14307 F:      include/linux/remoteproc/
14308
14309 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14310 M:      Ohad Ben-Cohen <ohad@wizery.com>
14311 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14312 L:      linux-remoteproc@vger.kernel.org
14313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14314 S:      Maintained
14315 F:      drivers/rpmsg/
14316 F:      Documentation/rpmsg.txt
14317 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14318 F:      include/linux/rpmsg.h
14319 F:      include/linux/rpmsg/
14320 F:      include/uapi/linux/rpmsg.h
14321 F:      samples/rpmsg/
14322
14323 RENESAS CLOCK DRIVERS
14324 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14325 L:      linux-renesas-soc@vger.kernel.org
14326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14327 S:      Supported
14328 F:      drivers/clk/renesas/
14329
14330 RENESAS EMEV2 I2C DRIVER
14331 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14332 S:      Supported
14333 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14334 F:      drivers/i2c/busses/i2c-emev2.c
14335
14336 RENESAS ETHERNET DRIVERS
14337 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
14338 L:      netdev@vger.kernel.org
14339 L:      linux-renesas-soc@vger.kernel.org
14340 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14341 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14342 F:      drivers/net/ethernet/renesas/
14343 F:      include/linux/sh_eth.h
14344
14345 RENESAS R-CAR GYROADC DRIVER
14346 M:      Marek Vasut <marek.vasut@gmail.com>
14347 L:      linux-iio@vger.kernel.org
14348 S:      Supported
14349 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14350 F:      drivers/iio/adc/rcar-gyroadc.c
14351
14352 RENESAS R-CAR I2C DRIVERS
14353 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14354 S:      Supported
14355 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14356 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14357 F:      drivers/i2c/busses/i2c-rcar.c
14358 F:      drivers/i2c/busses/i2c-sh_mobile.c
14359
14360 RENESAS RIIC DRIVER
14361 M:      Chris Brandt <chris.brandt@renesas.com>
14362 S:      Supported
14363 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14364 F:      drivers/i2c/busses/i2c-riic.c
14365
14366 RENESAS USB PHY DRIVER
14367 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14368 L:      linux-renesas-soc@vger.kernel.org
14369 S:      Maintained
14370 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14371
14372 RESET CONTROLLER FRAMEWORK
14373 M:      Philipp Zabel <p.zabel@pengutronix.de>
14374 T:      git git://git.pengutronix.de/git/pza/linux
14375 S:      Maintained
14376 F:      drivers/reset/
14377 F:      Documentation/devicetree/bindings/reset/
14378 F:      include/dt-bindings/reset/
14379 F:      include/linux/reset.h
14380 F:      include/linux/reset/
14381 F:      include/linux/reset-controller.h
14382 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14383
14384 RESTARTABLE SEQUENCES SUPPORT
14385 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14386 M:      Peter Zijlstra <peterz@infradead.org>
14387 M:      "Paul E. McKenney" <paulmck@kernel.org>
14388 M:      Boqun Feng <boqun.feng@gmail.com>
14389 L:      linux-kernel@vger.kernel.org
14390 S:      Supported
14391 F:      kernel/rseq.c
14392 F:      include/uapi/linux/rseq.h
14393 F:      include/trace/events/rseq.h
14394 F:      tools/testing/selftests/rseq/
14395
14396 RFKILL
14397 M:      Johannes Berg <johannes@sipsolutions.net>
14398 L:      linux-wireless@vger.kernel.org
14399 W:      http://wireless.kernel.org/
14400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14402 S:      Maintained
14403 F:      Documentation/driver-api/rfkill.rst
14404 F:      Documentation/ABI/stable/sysfs-class-rfkill
14405 F:      net/rfkill/
14406 F:      include/linux/rfkill.h
14407 F:      include/uapi/linux/rfkill.h
14408
14409 RHASHTABLE
14410 M:      Thomas Graf <tgraf@suug.ch>
14411 M:      Herbert Xu <herbert@gondor.apana.org.au>
14412 L:      netdev@vger.kernel.org
14413 S:      Maintained
14414 F:      lib/rhashtable.c
14415 F:      lib/test_rhashtable.c
14416 F:      include/linux/rhashtable.h
14417 F:      include/linux/rhashtable-types.h
14418
14419 RICOH R5C592 MEMORYSTICK DRIVER
14420 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14421 S:      Maintained
14422 F:      drivers/memstick/host/r592.*
14423
14424 RICOH SMARTMEDIA/XD DRIVER
14425 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14426 S:      Maintained
14427 F:      drivers/mtd/nand/raw/r852.c
14428 F:      drivers/mtd/nand/raw/r852.h
14429
14430 RISC-V ARCHITECTURE
14431 M:      Paul Walmsley <paul.walmsley@sifive.com>
14432 M:      Palmer Dabbelt <palmer@dabbelt.com>
14433 M:      Albert Ou <aou@eecs.berkeley.edu>
14434 L:      linux-riscv@lists.infradead.org
14435 P:      Documentation/riscv/patch-acceptance.rst
14436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14437 S:      Supported
14438 F:      arch/riscv/
14439 K:      riscv
14440 N:      riscv
14441
14442 ROCCAT DRIVERS
14443 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
14444 W:      http://sourceforge.net/projects/roccat/
14445 S:      Maintained
14446 F:      drivers/hid/hid-roccat*
14447 F:      include/linux/hid-roccat*
14448 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14449
14450 ROCKCHIP ISP V1 DRIVER
14451 M:      Helen Koike <helen.koike@collabora.com>
14452 L:      linux-media@vger.kernel.org
14453 S:      Maintained
14454 F:      drivers/staging/media/rkisp1/
14455
14456 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14457 M:      Jacob Chen <jacob-chen@iotwrt.com>
14458 M:      Ezequiel Garcia <ezequiel@collabora.com>
14459 L:      linux-media@vger.kernel.org
14460 S:      Maintained
14461 F:      drivers/media/platform/rockchip/rga/
14462 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
14463
14464 HANTRO VPU CODEC DRIVER
14465 M:      Ezequiel Garcia <ezequiel@collabora.com>
14466 M:      Philipp Zabel <p.zabel@pengutronix.de>
14467 L:      linux-media@vger.kernel.org
14468 L:      linux-rockchip@lists.infradead.org
14469 S:      Maintained
14470 F:      drivers/staging/media/hantro/
14471 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
14472 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
14473
14474 ROCKER DRIVER
14475 M:      Jiri Pirko <jiri@resnulli.us>
14476 L:      netdev@vger.kernel.org
14477 S:      Supported
14478 F:      drivers/net/ethernet/rocker/
14479
14480 ROCKETPORT DRIVER
14481 W:      http://www.comtrol.com
14482 S:      Maintained
14483 F:      Documentation/driver-api/serial/rocket.rst
14484 F:      drivers/tty/rocket*
14485
14486 ROCKETPORT EXPRESS/INFINITY DRIVER
14487 M:      Kevin Cernekee <cernekee@gmail.com>
14488 L:      linux-serial@vger.kernel.org
14489 S:      Odd Fixes
14490 F:      drivers/tty/serial/rp2.*
14491
14492 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14493 M:      Tomasz Duszynski <tduszyns@gmail.com>
14494 S:      Maintained
14495 F:      drivers/iio/light/bh1750.c
14496 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14497
14498 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14499 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14500 L:      linux-kernel@vger.kernel.org
14501 L:      linux-renesas-soc@vger.kernel.org
14502 S:      Supported
14503 F:      drivers/mfd/bd9571mwv.c
14504 F:      drivers/regulator/bd9571mwv-regulator.c
14505 F:      drivers/gpio/gpio-bd9571mwv.c
14506 F:      include/linux/mfd/bd9571mwv.h
14507 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14508
14509 ROSE NETWORK LAYER
14510 M:      Ralf Baechle <ralf@linux-mips.org>
14511 L:      linux-hams@vger.kernel.org
14512 W:      http://www.linux-ax25.org/
14513 S:      Maintained
14514 F:      include/net/rose.h
14515 F:      include/uapi/linux/rose.h
14516 F:      net/rose/
14517
14518 ROTATION DRIVER FOR ALLWINNER A83T
14519 M:      Jernej Skrabec <jernej.skrabec@siol.net>
14520 L:      linux-media@vger.kernel.org
14521 T:      git git://linuxtv.org/media_tree.git
14522 S:      Maintained
14523 F:      drivers/media/platform/sunxi/sun8i-rotate/
14524 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14525
14526 RTL2830 MEDIA DRIVER
14527 M:      Antti Palosaari <crope@iki.fi>
14528 L:      linux-media@vger.kernel.org
14529 W:      https://linuxtv.org
14530 W:      http://palosaari.fi/linux/
14531 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14532 T:      git git://linuxtv.org/anttip/media_tree.git
14533 S:      Maintained
14534 F:      drivers/media/dvb-frontends/rtl2830*
14535
14536 RTL2832 MEDIA DRIVER
14537 M:      Antti Palosaari <crope@iki.fi>
14538 L:      linux-media@vger.kernel.org
14539 W:      https://linuxtv.org
14540 W:      http://palosaari.fi/linux/
14541 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14542 T:      git git://linuxtv.org/anttip/media_tree.git
14543 S:      Maintained
14544 F:      drivers/media/dvb-frontends/rtl2832*
14545
14546 RTL2832_SDR MEDIA DRIVER
14547 M:      Antti Palosaari <crope@iki.fi>
14548 L:      linux-media@vger.kernel.org
14549 W:      https://linuxtv.org
14550 W:      http://palosaari.fi/linux/
14551 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14552 T:      git git://linuxtv.org/anttip/media_tree.git
14553 S:      Maintained
14554 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14555
14556 RTL8180 WIRELESS DRIVER
14557 L:      linux-wireless@vger.kernel.org
14558 W:      http://wireless.kernel.org/
14559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14560 S:      Orphan
14561 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14562
14563 RTL8187 WIRELESS DRIVER
14564 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14565 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14566 M:      Larry Finger <Larry.Finger@lwfinger.net>
14567 L:      linux-wireless@vger.kernel.org
14568 W:      http://wireless.kernel.org/
14569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14570 S:      Maintained
14571 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14572
14573 REALTEK WIRELESS DRIVER (rtlwifi family)
14574 M:      Ping-Ke Shih <pkshih@realtek.com>
14575 L:      linux-wireless@vger.kernel.org
14576 W:      http://wireless.kernel.org/
14577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14578 S:      Maintained
14579 F:      drivers/net/wireless/realtek/rtlwifi/
14580
14581 REALTEK WIRELESS DRIVER (rtw88)
14582 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14583 L:      linux-wireless@vger.kernel.org
14584 S:      Maintained
14585 F:      drivers/net/wireless/realtek/rtw88/
14586
14587 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14588 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14589 L:      linux-wireless@vger.kernel.org
14590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14591 S:      Maintained
14592 F:      drivers/net/wireless/realtek/rtl8xxxu/
14593
14594 RXRPC SOCKETS (AF_RXRPC)
14595 M:      David Howells <dhowells@redhat.com>
14596 L:      linux-afs@lists.infradead.org
14597 S:      Supported
14598 F:      net/rxrpc/
14599 F:      include/keys/rxrpc-type.h
14600 F:      include/net/af_rxrpc.h
14601 F:      include/trace/events/rxrpc.h
14602 F:      include/uapi/linux/rxrpc.h
14603 F:      Documentation/networking/rxrpc.txt
14604 W:      https://www.infradead.org/~dhowells/kafs/
14605
14606 S3 SAVAGE FRAMEBUFFER DRIVER
14607 M:      Antonino Daplas <adaplas@gmail.com>
14608 L:      linux-fbdev@vger.kernel.org
14609 S:      Maintained
14610 F:      drivers/video/fbdev/savage/
14611
14612 S390
14613 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14614 M:      Vasily Gorbik <gor@linux.ibm.com>
14615 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14616 L:      linux-s390@vger.kernel.org
14617 W:      http://www.ibm.com/developerworks/linux/linux390/
14618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14619 S:      Supported
14620 F:      arch/s390/
14621 F:      drivers/s390/
14622 F:      Documentation/s390/
14623 F:      Documentation/driver-api/s390-drivers.rst
14624
14625 S390 COMMON I/O LAYER
14626 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
14627 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14628 L:      linux-s390@vger.kernel.org
14629 W:      http://www.ibm.com/developerworks/linux/linux390/
14630 S:      Supported
14631 F:      drivers/s390/cio/
14632
14633 S390 DASD DRIVER
14634 M:      Stefan Haberland <sth@linux.ibm.com>
14635 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14636 L:      linux-s390@vger.kernel.org
14637 W:      http://www.ibm.com/developerworks/linux/linux390/
14638 S:      Supported
14639 F:      drivers/s390/block/dasd*
14640 F:      block/partitions/ibm.c
14641
14642 S390 IOMMU (PCI)
14643 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14644 L:      linux-s390@vger.kernel.org
14645 W:      http://www.ibm.com/developerworks/linux/linux390/
14646 S:      Supported
14647 F:      drivers/iommu/s390-iommu.c
14648
14649 S390 IUCV NETWORK LAYER
14650 M:      Julian Wiedmann <jwi@linux.ibm.com>
14651 M:      Ursula Braun <ubraun@linux.ibm.com>
14652 L:      linux-s390@vger.kernel.org
14653 W:      http://www.ibm.com/developerworks/linux/linux390/
14654 S:      Supported
14655 F:      drivers/s390/net/*iucv*
14656 F:      include/net/iucv/
14657 F:      net/iucv/
14658
14659 S390 NETWORK DRIVERS
14660 M:      Julian Wiedmann <jwi@linux.ibm.com>
14661 M:      Ursula Braun <ubraun@linux.ibm.com>
14662 L:      linux-s390@vger.kernel.org
14663 W:      http://www.ibm.com/developerworks/linux/linux390/
14664 S:      Supported
14665 F:      drivers/s390/net/
14666
14667 S390 PCI SUBSYSTEM
14668 M:      Niklas Schnelle <schnelle@linux.ibm.com>
14669 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14670 L:      linux-s390@vger.kernel.org
14671 W:      http://www.ibm.com/developerworks/linux/linux390/
14672 S:      Supported
14673 F:      arch/s390/pci/
14674 F:      drivers/pci/hotplug/s390_pci_hpc.c
14675
14676 S390 VFIO-CCW DRIVER
14677 M:      Cornelia Huck <cohuck@redhat.com>
14678 M:      Eric Farman <farman@linux.ibm.com>
14679 R:      Halil Pasic <pasic@linux.ibm.com>
14680 L:      linux-s390@vger.kernel.org
14681 L:      kvm@vger.kernel.org
14682 S:      Supported
14683 F:      drivers/s390/cio/vfio_ccw*
14684 F:      Documentation/s390/vfio-ccw.rst
14685 F:      include/uapi/linux/vfio_ccw.h
14686
14687 S390 ZCRYPT DRIVER
14688 M:      Harald Freudenberger <freude@linux.ibm.com>
14689 L:      linux-s390@vger.kernel.org
14690 W:      http://www.ibm.com/developerworks/linux/linux390/
14691 S:      Supported
14692 F:      drivers/s390/crypto/
14693
14694 S390 VFIO AP DRIVER
14695 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14696 M:      Pierre Morel <pmorel@linux.ibm.com>
14697 M:      Halil Pasic <pasic@linux.ibm.com>
14698 L:      linux-s390@vger.kernel.org
14699 W:      http://www.ibm.com/developerworks/linux/linux390/
14700 S:      Supported
14701 F:      drivers/s390/crypto/vfio_ap_drv.c
14702 F:      drivers/s390/crypto/vfio_ap_private.h
14703 F:      drivers/s390/crypto/vfio_ap_ops.c
14704 F:      Documentation/s390/vfio-ap.rst
14705
14706 S390 ZFCP DRIVER
14707 M:      Steffen Maier <maier@linux.ibm.com>
14708 M:      Benjamin Block <bblock@linux.ibm.com>
14709 L:      linux-s390@vger.kernel.org
14710 W:      http://www.ibm.com/developerworks/linux/linux390/
14711 S:      Supported
14712 F:      drivers/s390/scsi/zfcp_*
14713
14714 S3C24XX SD/MMC Driver
14715 M:      Ben Dooks <ben-linux@fluff.org>
14716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14717 S:      Supported
14718 F:      drivers/mmc/host/s3cmci.*
14719
14720 SAA6588 RDS RECEIVER DRIVER
14721 M:      Hans Verkuil <hverkuil@xs4all.nl>
14722 L:      linux-media@vger.kernel.org
14723 T:      git git://linuxtv.org/media_tree.git
14724 W:      https://linuxtv.org
14725 S:      Odd Fixes
14726 F:      drivers/media/i2c/saa6588*
14727
14728 SAA7134 VIDEO4LINUX DRIVER
14729 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14730 L:      linux-media@vger.kernel.org
14731 W:      https://linuxtv.org
14732 T:      git git://linuxtv.org/media_tree.git
14733 S:      Odd fixes
14734 F:      Documentation/media/v4l-drivers/saa7134*
14735 F:      drivers/media/pci/saa7134/
14736
14737 SAA7146 VIDEO4LINUX-2 DRIVER
14738 M:      Hans Verkuil <hverkuil@xs4all.nl>
14739 L:      linux-media@vger.kernel.org
14740 T:      git git://linuxtv.org/media_tree.git
14741 S:      Maintained
14742 F:      drivers/media/common/saa7146/
14743 F:      drivers/media/pci/saa7146/
14744 F:      include/media/drv-intf/saa7146*
14745
14746 SAFESETID SECURITY MODULE
14747 M:      Micah Morton <mortonm@chromium.org>
14748 S:      Supported
14749 F:      security/safesetid/
14750 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14751
14752 SAMSUNG AUDIO (ASoC) DRIVERS
14753 M:      Krzysztof Kozlowski <krzk@kernel.org>
14754 M:      Sangbeom Kim <sbkim73@samsung.com>
14755 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14756 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14757 S:      Supported
14758 F:      sound/soc/samsung/
14759 F:      Documentation/devicetree/bindings/sound/samsung*
14760
14761 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14762 M:      Krzysztof Kozlowski <krzk@kernel.org>
14763 L:      linux-crypto@vger.kernel.org
14764 L:      linux-samsung-soc@vger.kernel.org
14765 S:      Maintained
14766 F:      drivers/crypto/exynos-rng.c
14767 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14768
14769 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14770 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14771 L:      linux-samsung-soc@vger.kernel.org
14772 S:      Maintained
14773 F:      drivers/char/hw_random/exynos-trng.c
14774 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14775
14776 SAMSUNG FRAMEBUFFER DRIVER
14777 M:      Jingoo Han <jingoohan1@gmail.com>
14778 L:      linux-fbdev@vger.kernel.org
14779 S:      Maintained
14780 F:      drivers/video/fbdev/s3c-fb.c
14781
14782 SAMSUNG LAPTOP DRIVER
14783 M:      Corentin Chary <corentin.chary@gmail.com>
14784 L:      platform-driver-x86@vger.kernel.org
14785 S:      Maintained
14786 F:      drivers/platform/x86/samsung-laptop.c
14787
14788 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14789 M:      Sangbeom Kim <sbkim73@samsung.com>
14790 M:      Krzysztof Kozlowski <krzk@kernel.org>
14791 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14792 L:      linux-kernel@vger.kernel.org
14793 L:      linux-samsung-soc@vger.kernel.org
14794 S:      Supported
14795 F:      drivers/mfd/sec*.c
14796 F:      drivers/regulator/s2m*.c
14797 F:      drivers/regulator/s5m*.c
14798 F:      drivers/clk/clk-s2mps11.c
14799 F:      drivers/rtc/rtc-s5m.c
14800 F:      include/linux/mfd/samsung/
14801 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14802 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14803 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14804 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14805
14806 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14807 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14808 L:      linux-media@vger.kernel.org
14809 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14810 S:      Maintained
14811 F:      drivers/media/platform/s3c-camif/
14812 F:      include/media/drv-intf/s3c_camif.h
14813
14814 SAMSUNG S3FWRN5 NFC DRIVER
14815 M:      Robert Baldyga <r.baldyga@samsung.com>
14816 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
14817 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
14818 S:      Supported
14819 F:      drivers/nfc/s3fwrn5
14820
14821 SAMSUNG S5C73M3 CAMERA DRIVER
14822 M:      Kyungmin Park <kyungmin.park@samsung.com>
14823 M:      Andrzej Hajda <a.hajda@samsung.com>
14824 L:      linux-media@vger.kernel.org
14825 S:      Supported
14826 F:      drivers/media/i2c/s5c73m3/*
14827
14828 SAMSUNG S5K5BAF CAMERA DRIVER
14829 M:      Kyungmin Park <kyungmin.park@samsung.com>
14830 M:      Andrzej Hajda <a.hajda@samsung.com>
14831 L:      linux-media@vger.kernel.org
14832 S:      Supported
14833 F:      drivers/media/i2c/s5k5baf.c
14834
14835 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14836 M:      Krzysztof Kozlowski <krzk@kernel.org>
14837 M:      Vladimir Zapolskiy <vz@mleia.com>
14838 M:      Kamil Konieczny <k.konieczny@samsung.com>
14839 L:      linux-crypto@vger.kernel.org
14840 L:      linux-samsung-soc@vger.kernel.org
14841 S:      Maintained
14842 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
14843 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
14844 F:      drivers/crypto/s5p-sss.c
14845
14846 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14847 M:      Kyungmin Park <kyungmin.park@samsung.com>
14848 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14849 L:      linux-media@vger.kernel.org
14850 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14851 S:      Supported
14852 F:      drivers/media/platform/exynos4-is/
14853
14854 SAMSUNG SOC CLOCK DRIVERS
14855 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14856 M:      Tomasz Figa <tomasz.figa@gmail.com>
14857 M:      Chanwoo Choi <cw00.choi@samsung.com>
14858 S:      Supported
14859 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14861 F:      drivers/clk/samsung/
14862 F:      include/dt-bindings/clock/exynos*.h
14863 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14864 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14865 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14866
14867 SAMSUNG SPI DRIVERS
14868 M:      Kukjin Kim <kgene@kernel.org>
14869 M:      Krzysztof Kozlowski <krzk@kernel.org>
14870 M:      Andi Shyti <andi@etezian.org>
14871 L:      linux-spi@vger.kernel.org
14872 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14873 S:      Maintained
14874 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14875 F:      drivers/spi/spi-s3c*
14876 F:      include/linux/platform_data/spi-s3c64xx.h
14877
14878 SAMSUNG SXGBE DRIVERS
14879 M:      Byungho An <bh74.an@samsung.com>
14880 S:      Supported
14881 L:      netdev@vger.kernel.org
14882 F:      drivers/net/ethernet/samsung/sxgbe/
14883
14884 SAMSUNG THERMAL DRIVER
14885 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14886 L:      linux-pm@vger.kernel.org
14887 L:      linux-samsung-soc@vger.kernel.org
14888 S:      Supported
14889 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14890 F:      drivers/thermal/samsung/
14891
14892 SAMSUNG USB2 PHY DRIVER
14893 M:      Kamil Debski <kamil@wypas.org>
14894 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14895 L:      linux-kernel@vger.kernel.org
14896 S:      Supported
14897 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14898 F:      Documentation/driver-api/phy/samsung-usb2.rst
14899 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14900 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14901 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14902 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14903 F:      drivers/phy/samsung/phy-samsung-usb2.c
14904 F:      drivers/phy/samsung/phy-samsung-usb2.h
14905
14906 SC1200 WDT DRIVER
14907 M:      Zwane Mwaikambo <zwanem@gmail.com>
14908 S:      Maintained
14909 F:      drivers/watchdog/sc1200wdt.c
14910
14911 SCHEDULER
14912 M:      Ingo Molnar <mingo@redhat.com>
14913 M:      Peter Zijlstra <peterz@infradead.org>
14914 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
14915 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
14916 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
14917 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
14918 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
14919 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
14920 L:      linux-kernel@vger.kernel.org
14921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14922 S:      Maintained
14923 F:      kernel/sched/
14924 F:      include/linux/sched.h
14925 F:      include/uapi/linux/sched.h
14926 F:      include/linux/wait.h
14927 F:      include/linux/preempt.h
14928
14929 SCR24X CHIP CARD INTERFACE DRIVER
14930 M:      Lubomir Rintel <lkundrak@v3.sk>
14931 S:      Supported
14932 F:      drivers/char/pcmcia/scr24x_cs.c
14933
14934 SCSI CDROM DRIVER
14935 M:      Jens Axboe <axboe@kernel.dk>
14936 L:      linux-scsi@vger.kernel.org
14937 W:      http://www.kernel.dk
14938 S:      Maintained
14939 F:      drivers/scsi/sr*
14940
14941 SCSI RDMA PROTOCOL (SRP) INITIATOR
14942 M:      Bart Van Assche <bvanassche@acm.org>
14943 L:      linux-rdma@vger.kernel.org
14944 S:      Supported
14945 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14946 F:      drivers/infiniband/ulp/srp/
14947 F:      include/scsi/srp.h
14948
14949 SCSI RDMA PROTOCOL (SRP) TARGET
14950 M:      Bart Van Assche <bvanassche@acm.org>
14951 L:      linux-rdma@vger.kernel.org
14952 L:      target-devel@vger.kernel.org
14953 S:      Supported
14954 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14955 F:      drivers/infiniband/ulp/srpt/
14956
14957 SCSI SG DRIVER
14958 M:      Doug Gilbert <dgilbert@interlog.com>
14959 L:      linux-scsi@vger.kernel.org
14960 W:      http://sg.danny.cz/sg
14961 S:      Maintained
14962 F:      Documentation/scsi/scsi-generic.rst
14963 F:      drivers/scsi/sg.c
14964 F:      include/scsi/sg.h
14965
14966 SCSI SUBSYSTEM
14967 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
14968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14969 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14971 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14972 L:      linux-scsi@vger.kernel.org
14973 S:      Maintained
14974 F:      Documentation/devicetree/bindings/scsi/
14975 F:      drivers/scsi/
14976 F:      include/scsi/
14977
14978 SCSI TAPE DRIVER
14979 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
14980 L:      linux-scsi@vger.kernel.org
14981 S:      Maintained
14982 F:      Documentation/scsi/st.rst
14983 F:      drivers/scsi/st.*
14984 F:      drivers/scsi/st_*.h
14985
14986 SCSI TARGET SUBSYSTEM
14987 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14988 L:      linux-scsi@vger.kernel.org
14989 L:      target-devel@vger.kernel.org
14990 W:      http://www.linux-iscsi.org
14991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14992 Q:      https://patchwork.kernel.org/project/target-devel/list/
14993 S:      Supported
14994 F:      drivers/target/
14995 F:      include/target/
14996 F:      Documentation/target/
14997
14998 SCTP PROTOCOL
14999 M:      Vlad Yasevich <vyasevich@gmail.com>
15000 M:      Neil Horman <nhorman@tuxdriver.com>
15001 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15002 L:      linux-sctp@vger.kernel.org
15003 W:      http://lksctp.sourceforge.net
15004 S:      Maintained
15005 F:      Documentation/networking/sctp.txt
15006 F:      include/linux/sctp.h
15007 F:      include/uapi/linux/sctp.h
15008 F:      include/net/sctp/
15009 F:      net/sctp/
15010
15011 SCx200 CPU SUPPORT
15012 M:      Jim Cromie <jim.cromie@gmail.com>
15013 S:      Odd Fixes
15014 F:      Documentation/i2c/busses/scx200_acb.rst
15015 F:      arch/x86/platform/scx200/
15016 F:      drivers/watchdog/scx200_wdt.c
15017 F:      drivers/i2c/busses/scx200*
15018 F:      drivers/mtd/maps/scx200_docflash.c
15019 F:      include/linux/scx200.h
15020
15021 SCx200 GPIO DRIVER
15022 M:      Jim Cromie <jim.cromie@gmail.com>
15023 S:      Maintained
15024 F:      drivers/char/scx200_gpio.c
15025 F:      include/linux/scx200_gpio.h
15026
15027 SCx200 HRT CLOCKSOURCE DRIVER
15028 M:      Jim Cromie <jim.cromie@gmail.com>
15029 S:      Maintained
15030 F:      drivers/clocksource/scx200_hrt.c
15031
15032 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15033 M:      Sascha Sommer <saschasommer@freenet.de>
15034 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15035 S:      Maintained
15036 F:      drivers/mmc/host/sdricoh_cs.c
15037
15038 SECO BOARDS CEC DRIVER
15039 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15040 S:      Maintained
15041 F:      drivers/media/platform/seco-cec/seco-cec.c
15042 F:      drivers/media/platform/seco-cec/seco-cec.h
15043
15044 SECURE COMPUTING
15045 M:      Kees Cook <keescook@chromium.org>
15046 R:      Andy Lutomirski <luto@amacapital.net>
15047 R:      Will Drewry <wad@chromium.org>
15048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15049 S:      Supported
15050 F:      kernel/seccomp.c
15051 F:      include/uapi/linux/seccomp.h
15052 F:      include/linux/seccomp.h
15053 F:      tools/testing/selftests/seccomp/*
15054 F:      tools/testing/selftests/kselftest_harness.h
15055 F:      Documentation/userspace-api/seccomp_filter.rst
15056 K:      \bsecure_computing
15057 K:      \bTIF_SECCOMP\b
15058
15059 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15060 M:      Al Cooper <alcooperx@gmail.com>
15061 L:      linux-mmc@vger.kernel.org
15062 L:      bcm-kernel-feedback-list@broadcom.com
15063 S:      Maintained
15064 F:      drivers/mmc/host/sdhci-brcmstb*
15065
15066 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15067 M:      Adrian Hunter <adrian.hunter@intel.com>
15068 L:      linux-mmc@vger.kernel.org
15069 S:      Maintained
15070 F:      drivers/mmc/host/sdhci*
15071 F:      include/linux/mmc/sdhci*
15072
15073 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
15074 M:      Adrian Hunter <adrian.hunter@intel.com>
15075 M:      Ritesh Harjani <riteshh@codeaurora.org>
15076 M:      Asutosh Das <asutoshd@codeaurora.org>
15077 L:      linux-mmc@vger.kernel.org
15078 S:      Maintained
15079 F:      drivers/mmc/host/cqhci*
15080
15081 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
15082 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
15083 M:      Manjunath M B <manjumb@synopsys.com>
15084 L:      linux-mmc@vger.kernel.org
15085 S:      Maintained
15086 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
15087
15088 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15089 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15090 L:      linux-mmc@vger.kernel.org
15091 S:      Supported
15092 F:      drivers/mmc/host/sdhci-of-at91.c
15093
15094 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15095 M:      Ben Dooks <ben-linux@fluff.org>
15096 M:      Jaehoon Chung <jh80.chung@samsung.com>
15097 L:      linux-mmc@vger.kernel.org
15098 S:      Maintained
15099 F:      drivers/mmc/host/sdhci-s3c*
15100
15101 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15102 M:      Viresh Kumar <vireshk@kernel.org>
15103 L:      linux-mmc@vger.kernel.org
15104 S:      Maintained
15105 F:      drivers/mmc/host/sdhci-spear.c
15106
15107 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15108 M:      Kishon Vijay Abraham I <kishon@ti.com>
15109 L:      linux-mmc@vger.kernel.org
15110 S:      Maintained
15111 F:      drivers/mmc/host/sdhci-omap.c
15112
15113 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15114 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15115 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15116 L:      linux-block@vger.kernel.org
15117 S:      Supported
15118 F:      block/sed*
15119 F:      block/opal_proto.h
15120 F:      include/linux/sed*
15121 F:      include/uapi/linux/sed*
15122
15123 SECURITY CONTACT
15124 M:      Security Officers <security@kernel.org>
15125 S:      Supported
15126
15127 SECURITY SUBSYSTEM
15128 M:      James Morris <jmorris@namei.org>
15129 M:      "Serge E. Hallyn" <serge@hallyn.com>
15130 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15132 W:      http://kernsec.org/
15133 S:      Supported
15134 F:      security/
15135 X:      security/selinux/
15136
15137 SELINUX SECURITY MODULE
15138 M:      Paul Moore <paul@paul-moore.com>
15139 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15140 M:      Eric Paris <eparis@parisplace.org>
15141 L:      selinux@vger.kernel.org
15142 W:      https://selinuxproject.org
15143 W:      https://github.com/SELinuxProject
15144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15145 S:      Supported
15146 F:      include/uapi/linux/selinux_netlink.h
15147 F:      security/selinux/
15148 F:      scripts/selinux/
15149 F:      Documentation/admin-guide/LSM/SELinux.rst
15150 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15151 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15152
15153 SENSABLE PHANTOM
15154 M:      Jiri Slaby <jirislaby@gmail.com>
15155 S:      Maintained
15156 F:      drivers/misc/phantom.c
15157 F:      include/uapi/linux/phantom.h
15158
15159 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15160 M:      Tomasz Duszynski <tduszyns@gmail.com>
15161 S:      Maintained
15162 F:      drivers/iio/chemical/sps30.c
15163 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15164
15165 SERIAL DEVICE BUS
15166 M:      Rob Herring <robh@kernel.org>
15167 L:      linux-serial@vger.kernel.org
15168 S:      Maintained
15169 F:      Documentation/devicetree/bindings/serial/serial.yaml
15170 F:      drivers/tty/serdev/
15171 F:      include/linux/serdev.h
15172
15173 SERIAL DRIVERS
15174 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15175 L:      linux-serial@vger.kernel.org
15176 S:      Maintained
15177 F:      Documentation/devicetree/bindings/serial/
15178 F:      drivers/tty/serial/
15179
15180 SERIAL IR RECEIVER
15181 M:      Sean Young <sean@mess.org>
15182 L:      linux-media@vger.kernel.org
15183 S:      Maintained
15184 F:      drivers/media/rc/serial_ir.c
15185
15186 SFC NETWORK DRIVER
15187 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15188 M:      Edward Cree <ecree@solarflare.com>
15189 M:      Martin Habets <mhabets@solarflare.com>
15190 L:      netdev@vger.kernel.org
15191 S:      Supported
15192 F:      drivers/net/ethernet/sfc/
15193
15194 SFF/SFP/SFP+ MODULE SUPPORT
15195 M:      Russell King <linux@armlinux.org.uk>
15196 L:      netdev@vger.kernel.org
15197 S:      Maintained
15198 F:      drivers/net/phy/phylink.c
15199 F:      drivers/net/phy/sfp*
15200 F:      include/linux/phylink.h
15201 F:      include/linux/sfp.h
15202 K:      phylink
15203
15204 SGI GRU DRIVER
15205 M:      Dimitri Sivanich <sivanich@sgi.com>
15206 S:      Maintained
15207 F:      drivers/misc/sgi-gru/
15208
15209 SGI XP/XPC/XPNET DRIVER
15210 M:      Cliff Whickman <cpw@sgi.com>
15211 M:      Robin Holt <robinmholt@gmail.com>
15212 S:      Maintained
15213 F:      drivers/misc/sgi-xp/
15214
15215 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15216 M:      Ursula Braun <ubraun@linux.ibm.com>
15217 M:      Karsten Graul <kgraul@linux.ibm.com>
15218 L:      linux-s390@vger.kernel.org
15219 W:      http://www.ibm.com/developerworks/linux/linux390/
15220 S:      Supported
15221 F:      net/smc/
15222
15223 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15224 M:      Linus Walleij <linus.walleij@linaro.org>
15225 L:      linux-iio@vger.kernel.org
15226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15227 S:      Maintained
15228 F:      drivers/iio/light/gp2ap002.c
15229 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15230
15231 SHARP RJ54N1CB0C SENSOR DRIVER
15232 M:      Jacopo Mondi <jacopo@jmondi.org>
15233 L:      linux-media@vger.kernel.org
15234 T:      git git://linuxtv.org/media_tree.git
15235 S:      Odd fixes
15236 F:      drivers/media/i2c/rj54n1cb0c.c
15237 F:      include/media/i2c/rj54n1cb0c.h
15238
15239 SH_VEU V4L2 MEM2MEM DRIVER
15240 L:      linux-media@vger.kernel.org
15241 S:      Orphan
15242 F:      drivers/media/platform/sh_veu.c
15243
15244 SH_VOU V4L2 OUTPUT DRIVER
15245 L:      linux-media@vger.kernel.org
15246 S:      Orphan
15247 F:      drivers/media/platform/sh_vou.c
15248 F:      include/media/drv-intf/sh_vou.h
15249
15250 SI2157 MEDIA DRIVER
15251 M:      Antti Palosaari <crope@iki.fi>
15252 L:      linux-media@vger.kernel.org
15253 W:      https://linuxtv.org
15254 W:      http://palosaari.fi/linux/
15255 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15256 T:      git git://linuxtv.org/anttip/media_tree.git
15257 S:      Maintained
15258 F:      drivers/media/tuners/si2157*
15259
15260 SI2165 MEDIA DRIVER
15261 M:      Matthias Schwarzott <zzam@gentoo.org>
15262 L:      linux-media@vger.kernel.org
15263 W:      https://linuxtv.org
15264 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15265 S:      Maintained
15266 F:      drivers/media/dvb-frontends/si2165*
15267
15268 SI2168 MEDIA DRIVER
15269 M:      Antti Palosaari <crope@iki.fi>
15270 L:      linux-media@vger.kernel.org
15271 W:      https://linuxtv.org
15272 W:      http://palosaari.fi/linux/
15273 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15274 T:      git git://linuxtv.org/anttip/media_tree.git
15275 S:      Maintained
15276 F:      drivers/media/dvb-frontends/si2168*
15277
15278 SI470X FM RADIO RECEIVER I2C DRIVER
15279 M:      Hans Verkuil <hverkuil@xs4all.nl>
15280 L:      linux-media@vger.kernel.org
15281 T:      git git://linuxtv.org/media_tree.git
15282 W:      https://linuxtv.org
15283 S:      Odd Fixes
15284 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15285
15286 SI470X FM RADIO RECEIVER USB DRIVER
15287 M:      Hans Verkuil <hverkuil@xs4all.nl>
15288 L:      linux-media@vger.kernel.org
15289 T:      git git://linuxtv.org/media_tree.git
15290 W:      https://linuxtv.org
15291 S:      Maintained
15292 F:      drivers/media/radio/si470x/radio-si470x-common.c
15293 F:      drivers/media/radio/si470x/radio-si470x.h
15294 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15295
15296 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15297 M:      Eduardo Valentin <edubezval@gmail.com>
15298 L:      linux-media@vger.kernel.org
15299 T:      git git://linuxtv.org/media_tree.git
15300 W:      https://linuxtv.org
15301 S:      Odd Fixes
15302 F:      drivers/media/radio/si4713/si4713.?
15303
15304 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15305 M:      Eduardo Valentin <edubezval@gmail.com>
15306 L:      linux-media@vger.kernel.org
15307 T:      git git://linuxtv.org/media_tree.git
15308 W:      https://linuxtv.org
15309 S:      Odd Fixes
15310 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15311
15312 SI4713 FM RADIO TRANSMITTER USB DRIVER
15313 M:      Hans Verkuil <hverkuil@xs4all.nl>
15314 L:      linux-media@vger.kernel.org
15315 T:      git git://linuxtv.org/media_tree.git
15316 W:      https://linuxtv.org
15317 S:      Maintained
15318 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15319
15320 SIANO DVB DRIVER
15321 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15322 L:      linux-media@vger.kernel.org
15323 W:      https://linuxtv.org
15324 T:      git git://linuxtv.org/media_tree.git
15325 S:      Odd fixes
15326 F:      drivers/media/common/siano/
15327 F:      drivers/media/usb/siano/
15328 F:      drivers/media/usb/siano/
15329 F:      drivers/media/mmc/siano/
15330
15331 SIFIVE PDMA DRIVER
15332 M:      Green Wan <green.wan@sifive.com>
15333 S:      Maintained
15334 F:      drivers/dma/sf-pdma/
15335 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15336
15337 SIFIVE DRIVERS
15338 M:      Palmer Dabbelt <palmer@dabbelt.com>
15339 M:      Paul Walmsley <paul.walmsley@sifive.com>
15340 L:      linux-riscv@lists.infradead.org
15341 T:      git git://github.com/sifive/riscv-linux.git
15342 S:      Supported
15343 K:      [^@]sifive
15344 N:      sifive
15345
15346 SIFIVE FU540 SYSTEM-ON-CHIP
15347 M:      Paul Walmsley <paul.walmsley@sifive.com>
15348 M:      Palmer Dabbelt <palmer@dabbelt.com>
15349 L:      linux-riscv@lists.infradead.org
15350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15351 S:      Supported
15352 K:      fu540
15353 N:      fu540
15354
15355 SILEAD TOUCHSCREEN DRIVER
15356 M:      Hans de Goede <hdegoede@redhat.com>
15357 L:      linux-input@vger.kernel.org
15358 L:      platform-driver-x86@vger.kernel.org
15359 S:      Maintained
15360 F:      drivers/input/touchscreen/silead.c
15361 F:      drivers/platform/x86/touchscreen_dmi.c
15362
15363 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15364 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
15365 S:      Supported
15366 F:      drivers/staging/wfx/
15367
15368 SILICON MOTION SM712 FRAME BUFFER DRIVER
15369 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15370 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15371 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15372 L:      linux-fbdev@vger.kernel.org
15373 S:      Maintained
15374 F:      drivers/video/fbdev/sm712*
15375 F:      Documentation/fb/sm712fb.rst
15376
15377 SIMPLE FIRMWARE INTERFACE (SFI)
15378 W:      http://simplefirmware.org/
15379 S:      Obsolete
15380 F:      arch/x86/platform/sfi/
15381 F:      drivers/sfi/
15382 F:      include/linux/sfi*.h
15383
15384 SIMPLEFB FB DRIVER
15385 M:      Hans de Goede <hdegoede@redhat.com>
15386 L:      linux-fbdev@vger.kernel.org
15387 S:      Maintained
15388 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15389 F:      drivers/video/fbdev/simplefb.c
15390 F:      include/linux/platform_data/simplefb.h
15391
15392 SIMTEC EB110ATX (Chalice CATS)
15393 M:      Vincent Sanders <vince@simtec.co.uk>
15394 M:      Simtec Linux Team <linux@simtec.co.uk>
15395 W:      http://www.simtec.co.uk/products/EB110ATX/
15396 S:      Supported
15397
15398 SIMTEC EB2410ITX (BAST)
15399 M:      Vincent Sanders <vince@simtec.co.uk>
15400 M:      Simtec Linux Team <linux@simtec.co.uk>
15401 W:      http://www.simtec.co.uk/products/EB2410ITX/
15402 S:      Supported
15403 F:      arch/arm/mach-s3c24xx/mach-bast.c
15404 F:      arch/arm/mach-s3c24xx/bast-ide.c
15405 F:      arch/arm/mach-s3c24xx/bast-irq.c
15406
15407 SIPHASH PRF ROUTINES
15408 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15409 S:      Maintained
15410 F:      lib/siphash.c
15411 F:      lib/test_siphash.c
15412 F:      include/linux/siphash.h
15413
15414 SIOX
15415 M:      Thorsten Scherer <t.scherer@eckelmann.de>
15416 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15417 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15418 S:      Supported
15419 F:      drivers/siox/*
15420 F:      drivers/gpio/gpio-siox.c
15421 F:      include/trace/events/siox.h
15422
15423 SIS 190 ETHERNET DRIVER
15424 M:      Francois Romieu <romieu@fr.zoreil.com>
15425 L:      netdev@vger.kernel.org
15426 S:      Maintained
15427 F:      drivers/net/ethernet/sis/sis190.c
15428
15429 SIS 900/7016 FAST ETHERNET DRIVER
15430 M:      Daniele Venzano <venza@brownhat.org>
15431 W:      http://www.brownhat.org/sis900.html
15432 L:      netdev@vger.kernel.org
15433 S:      Maintained
15434 F:      drivers/net/ethernet/sis/sis900.*
15435
15436 SIS FRAMEBUFFER DRIVER
15437 M:      Thomas Winischhofer <thomas@winischhofer.net>
15438 W:      http://www.winischhofer.net/linuxsisvga.shtml
15439 S:      Maintained
15440 F:      Documentation/fb/sisfb.rst
15441 F:      drivers/video/fbdev/sis/
15442 F:      include/video/sisfb.h
15443
15444 SIS USB2VGA DRIVER
15445 M:      Thomas Winischhofer <thomas@winischhofer.net>
15446 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15447 S:      Maintained
15448 F:      drivers/usb/misc/sisusbvga/
15449
15450 SLAB ALLOCATOR
15451 M:      Christoph Lameter <cl@linux.com>
15452 M:      Pekka Enberg <penberg@kernel.org>
15453 M:      David Rientjes <rientjes@google.com>
15454 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
15455 M:      Andrew Morton <akpm@linux-foundation.org>
15456 L:      linux-mm@kvack.org
15457 S:      Maintained
15458 F:      include/linux/sl?b*.h
15459 F:      mm/sl?b*
15460
15461 SLEEPABLE READ-COPY UPDATE (SRCU)
15462 M:      Lai Jiangshan <jiangshanlai@gmail.com>
15463 M:      "Paul E. McKenney" <paulmck@kernel.org>
15464 M:      Josh Triplett <josh@joshtriplett.org>
15465 R:      Steven Rostedt <rostedt@goodmis.org>
15466 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15467 L:      rcu@vger.kernel.org
15468 W:      http://www.rdrop.com/users/paulmck/RCU/
15469 S:      Supported
15470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15471 F:      include/linux/srcu*.h
15472 F:      kernel/rcu/srcu*.c
15473
15474 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15475 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15476 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15477 S:      Maintained
15478 F:      drivers/slimbus/
15479 F:      Documentation/devicetree/bindings/slimbus/
15480 F:      include/linux/slimbus.h
15481
15482 SMACK SECURITY MODULE
15483 M:      Casey Schaufler <casey@schaufler-ca.com>
15484 L:      linux-security-module@vger.kernel.org
15485 W:      http://schaufler-ca.com
15486 T:      git git://github.com/cschaufler/smack-next
15487 S:      Maintained
15488 F:      Documentation/admin-guide/LSM/Smack.rst
15489 F:      security/smack/
15490
15491 SMC91x ETHERNET DRIVER
15492 M:      Nicolas Pitre <nico@fluxnic.net>
15493 S:      Odd Fixes
15494 F:      drivers/net/ethernet/smsc/smc91x.*
15495
15496 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15497 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15498 L:      linux-media@vger.kernel.org
15499 S:      Maintained
15500 F:      drivers/media/i2c/smiapp/
15501 F:      drivers/media/i2c/smiapp-pll.c
15502 F:      drivers/media/i2c/smiapp-pll.h
15503 F:      include/uapi/linux/smiapp.h
15504 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15505
15506 SMM665 HARDWARE MONITOR DRIVER
15507 M:      Guenter Roeck <linux@roeck-us.net>
15508 L:      linux-hwmon@vger.kernel.org
15509 S:      Maintained
15510 F:      Documentation/hwmon/smm665.rst
15511 F:      drivers/hwmon/smm665.c
15512
15513 SMSC EMC2103 HARDWARE MONITOR DRIVER
15514 M:      Steve Glendinning <steve.glendinning@shawell.net>
15515 L:      linux-hwmon@vger.kernel.org
15516 S:      Maintained
15517 F:      Documentation/hwmon/emc2103.rst
15518 F:      drivers/hwmon/emc2103.c
15519
15520 SMSC SCH5627 HARDWARE MONITOR DRIVER
15521 M:      Hans de Goede <hdegoede@redhat.com>
15522 L:      linux-hwmon@vger.kernel.org
15523 S:      Supported
15524 F:      Documentation/hwmon/sch5627.rst
15525 F:      drivers/hwmon/sch5627.c
15526
15527 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15528 M:      Steve Glendinning <steve.glendinning@shawell.net>
15529 L:      linux-fbdev@vger.kernel.org
15530 S:      Maintained
15531 F:      drivers/video/fbdev/smscufx.c
15532
15533 SMSC47B397 HARDWARE MONITOR DRIVER
15534 M:      Jean Delvare <jdelvare@suse.com>
15535 L:      linux-hwmon@vger.kernel.org
15536 S:      Maintained
15537 F:      Documentation/hwmon/smsc47b397.rst
15538 F:      drivers/hwmon/smsc47b397.c
15539
15540 SMSC911x ETHERNET DRIVER
15541 M:      Steve Glendinning <steve.glendinning@shawell.net>
15542 L:      netdev@vger.kernel.org
15543 S:      Maintained
15544 F:      include/linux/smsc911x.h
15545 F:      drivers/net/ethernet/smsc/smsc911x.*
15546
15547 SMSC9420 PCI ETHERNET DRIVER
15548 M:      Steve Glendinning <steve.glendinning@shawell.net>
15549 L:      netdev@vger.kernel.org
15550 S:      Maintained
15551 F:      drivers/net/ethernet/smsc/smsc9420.*
15552
15553 SOC-CAMERA V4L2 SUBSYSTEM
15554 L:      linux-media@vger.kernel.org
15555 T:      git git://linuxtv.org/media_tree.git
15556 S:      Orphan
15557 F:      include/media/soc_camera.h
15558 F:      drivers/staging/media/soc_camera/
15559
15560 SOCIONEXT SYNQUACER I2C DRIVER
15561 M:      Ard Biesheuvel <ardb@kernel.org>
15562 L:      linux-i2c@vger.kernel.org
15563 S:      Maintained
15564 F:      drivers/i2c/busses/i2c-synquacer.c
15565 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15566
15567 SOCIONEXT UNIPHIER SOUND DRIVER
15568 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15569 S:      Orphan
15570 F:      sound/soc/uniphier/
15571
15572 SOEKRIS NET48XX LED SUPPORT
15573 M:      Chris Boot <bootc@bootc.net>
15574 S:      Maintained
15575 F:      drivers/leds/leds-net48xx.c
15576
15577 SOFT-IWARP DRIVER (siw)
15578 M:      Bernard Metzler <bmt@zurich.ibm.com>
15579 L:      linux-rdma@vger.kernel.org
15580 S:      Supported
15581 F:      drivers/infiniband/sw/siw/
15582 F:      include/uapi/rdma/siw-abi.h
15583
15584 SOFT-ROCE DRIVER (rxe)
15585 M:      Zhu Yanjun <yanjunz@mellanox.com>
15586 L:      linux-rdma@vger.kernel.org
15587 S:      Supported
15588 F:      drivers/infiniband/sw/rxe/
15589 F:      include/uapi/rdma/rdma_user_rxe.h
15590
15591 SOFTLOGIC 6x10 MPEG CODEC
15592 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15593 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15594 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15595 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15596 M:      Ismael Luceno <ismael@iodev.co.uk>
15597 L:      linux-media@vger.kernel.org
15598 S:      Supported
15599 F:      drivers/media/pci/solo6x10/
15600
15601 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15602 M:      James Morse <james.morse@arm.com>
15603 L:      linux-arm-kernel@lists.infradead.org
15604 S:      Maintained
15605 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15606 F:      drivers/firmware/arm_sdei.c
15607 F:      include/linux/arm_sdei.h
15608 F:      include/uapi/linux/arm_sdei.h
15609
15610 SOFTWARE RAID (Multiple Disks) SUPPORT
15611 M:      Song Liu <song@kernel.org>
15612 L:      linux-raid@vger.kernel.org
15613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15614 S:      Supported
15615 F:      drivers/md/Makefile
15616 F:      drivers/md/Kconfig
15617 F:      drivers/md/md*
15618 F:      drivers/md/raid*
15619 F:      include/linux/raid/
15620 F:      include/uapi/linux/raid/
15621
15622 SOCIONEXT (SNI) AVE NETWORK DRIVER
15623 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15624 L:      netdev@vger.kernel.org
15625 S:      Maintained
15626 F:      drivers/net/ethernet/socionext/sni_ave.c
15627 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15628
15629 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15630 M:      Jassi Brar <jaswinder.singh@linaro.org>
15631 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15632 L:      netdev@vger.kernel.org
15633 S:      Maintained
15634 F:      drivers/net/ethernet/socionext/netsec.c
15635 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15636
15637 SOCIONEXT (SNI) Synquacer SPI DRIVER
15638 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15639 M:      Jassi Brar <jaswinder.singh@linaro.org>
15640 L:      linux-spi@vger.kernel.org
15641 S:      Maintained
15642 F:      drivers/spi/spi-synquacer.c
15643 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15644
15645 SOLIDRUN CLEARFOG SUPPORT
15646 M:      Russell King <linux@armlinux.org.uk>
15647 S:      Maintained
15648 F:      arch/arm/boot/dts/armada-388-clearfog*
15649 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15650
15651 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15652 M:      Russell King <linux@armlinux.org.uk>
15653 S:      Maintained
15654 F:      arch/arm/boot/dts/imx6*-cubox-i*
15655 F:      arch/arm/boot/dts/imx6*-hummingboard*
15656 F:      arch/arm/boot/dts/imx6*-sr-*
15657
15658 SONIC NETWORK DRIVER
15659 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15660 L:      netdev@vger.kernel.org
15661 S:      Maintained
15662 F:      drivers/net/ethernet/natsemi/sonic.*
15663
15664 SONICS SILICON BACKPLANE DRIVER (SSB)
15665 M:      Michael Buesch <m@bues.ch>
15666 L:      linux-wireless@vger.kernel.org
15667 S:      Maintained
15668 F:      drivers/ssb/
15669 F:      include/linux/ssb/
15670
15671 SONY IMX214 SENSOR DRIVER
15672 M:      Ricardo Ribalda <ricardo.ribalda@gmail.com>
15673 L:      linux-media@vger.kernel.org
15674 T:      git git://linuxtv.org/media_tree.git
15675 S:      Maintained
15676 F:      drivers/media/i2c/imx214.c
15677 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15678
15679 SONY IMX219 SENSOR DRIVER
15680 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15681 L:      linux-media@vger.kernel.org
15682 T:      git git://linuxtv.org/media_tree.git
15683 S:      Maintained
15684 F:      drivers/media/i2c/imx219.c
15685 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15686
15687 SONY IMX258 SENSOR DRIVER
15688 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15689 L:      linux-media@vger.kernel.org
15690 T:      git git://linuxtv.org/media_tree.git
15691 S:      Maintained
15692 F:      drivers/media/i2c/imx258.c
15693
15694 SONY IMX274 SENSOR DRIVER
15695 M:      Leon Luo <leonl@leopardimaging.com>
15696 L:      linux-media@vger.kernel.org
15697 T:      git git://linuxtv.org/media_tree.git
15698 S:      Maintained
15699 F:      drivers/media/i2c/imx274.c
15700 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15701
15702 SONY IMX290 SENSOR DRIVER
15703 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15704 L:      linux-media@vger.kernel.org
15705 T:      git git://linuxtv.org/media_tree.git
15706 S:      Maintained
15707 F:      drivers/media/i2c/imx290.c
15708 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15709
15710 SONY IMX319 SENSOR DRIVER
15711 M:      Bingbu Cao <bingbu.cao@intel.com>
15712 L:      linux-media@vger.kernel.org
15713 T:      git git://linuxtv.org/media_tree.git
15714 S:      Maintained
15715 F:      drivers/media/i2c/imx319.c
15716
15717 SONY IMX355 SENSOR DRIVER
15718 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15719 L:      linux-media@vger.kernel.org
15720 T:      git git://linuxtv.org/media_tree.git
15721 S:      Maintained
15722 F:      drivers/media/i2c/imx355.c
15723
15724 SONY MEMORYSTICK SUBSYSTEM
15725 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15726 M:      Alex Dubov <oakad@yahoo.com>
15727 M:      Ulf Hansson <ulf.hansson@linaro.org>
15728 L:      linux-mmc@vger.kernel.org
15729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15730 S:      Maintained
15731 F:      drivers/memstick/
15732 F:      include/linux/memstick.h
15733
15734 SONY VAIO CONTROL DEVICE DRIVER
15735 M:      Mattia Dongili <malattia@linux.it>
15736 L:      platform-driver-x86@vger.kernel.org
15737 S:      Maintained
15738 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15739 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15740 F:      drivers/char/sonypi.c
15741 F:      drivers/platform/x86/sony-laptop.c
15742 F:      include/linux/sony-laptop.h
15743
15744 SOUND
15745 M:      Jaroslav Kysela <perex@perex.cz>
15746 M:      Takashi Iwai <tiwai@suse.com>
15747 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15748 W:      http://www.alsa-project.org/
15749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15750 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15751 S:      Maintained
15752 F:      Documentation/sound/
15753 F:      include/sound/
15754 F:      include/uapi/sound/
15755 F:      sound/
15756
15757 SOUND - COMPRESSED AUDIO
15758 M:      Vinod Koul <vkoul@kernel.org>
15759 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15761 S:      Supported
15762 F:      Documentation/sound/designs/compress-offload.rst
15763 F:      include/sound/compress_driver.h
15764 F:      include/uapi/sound/compress_*
15765 F:      sound/core/compress_offload.c
15766 F:      sound/soc/soc-compress.c
15767
15768 SOUND - DMAENGINE HELPERS
15769 M:      Lars-Peter Clausen <lars@metafoo.de>
15770 S:      Supported
15771 F:      include/sound/dmaengine_pcm.h
15772 F:      sound/core/pcm_dmaengine.c
15773 F:      sound/soc/soc-generic-dmaengine-pcm.c
15774
15775 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15776 M:      Liam Girdwood <lgirdwood@gmail.com>
15777 M:      Mark Brown <broonie@kernel.org>
15778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15779 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15780 W:      http://alsa-project.org/main/index.php/ASoC
15781 S:      Supported
15782 F:      Documentation/devicetree/bindings/sound/
15783 F:      Documentation/sound/soc/
15784 F:      sound/soc/
15785 F:      include/dt-bindings/sound/
15786 F:      include/sound/soc*
15787
15788 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
15789 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15790 M:      Liam Girdwood <lgirdwood@gmail.com>
15791 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
15792 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
15793 M:      Daniel Baluta <daniel.baluta@nxp.com>
15794 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
15795 W:      https://github.com/thesofproject/linux/
15796 S:      Supported
15797 F:      sound/soc/sof/
15798
15799 SOUNDWIRE SUBSYSTEM
15800 M:      Vinod Koul <vkoul@kernel.org>
15801 M:      Sanyog Kale <sanyog.r.kale@intel.com>
15802 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15803 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15804 S:      Supported
15805 F:      Documentation/driver-api/soundwire/
15806 F:      drivers/soundwire/
15807 F:      include/linux/soundwire/
15808
15809 SP2 MEDIA DRIVER
15810 M:      Olli Salonen <olli.salonen@iki.fi>
15811 L:      linux-media@vger.kernel.org
15812 W:      https://linuxtv.org
15813 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15814 S:      Maintained
15815 F:      drivers/media/dvb-frontends/sp2*
15816
15817 SPARC + UltraSPARC (sparc/sparc64)
15818 M:      "David S. Miller" <davem@davemloft.net>
15819 L:      sparclinux@vger.kernel.org
15820 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15823 S:      Maintained
15824 F:      arch/sparc/
15825 F:      drivers/sbus/
15826
15827 SPARC SERIAL DRIVERS
15828 M:      "David S. Miller" <davem@davemloft.net>
15829 L:      sparclinux@vger.kernel.org
15830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15832 S:      Maintained
15833 F:      include/linux/sunserialcore.h
15834 F:      drivers/tty/serial/suncore.c
15835 F:      drivers/tty/serial/sunhv.c
15836 F:      drivers/tty/serial/sunsab.c
15837 F:      drivers/tty/serial/sunsab.h
15838 F:      drivers/tty/serial/sunsu.c
15839 F:      drivers/tty/serial/sunzilog.c
15840 F:      drivers/tty/serial/sunzilog.h
15841 F:      drivers/tty/vcc.c
15842
15843 SPARSE CHECKER
15844 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15845 L:      linux-sparse@vger.kernel.org
15846 W:      https://sparse.wiki.kernel.org/
15847 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15848 S:      Maintained
15849 F:      include/linux/compiler.h
15850
15851 SPEAR CLOCK FRAMEWORK SUPPORT
15852 M:      Viresh Kumar <vireshk@kernel.org>
15853 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15854 W:      http://www.st.com/spear
15855 S:      Maintained
15856 F:      drivers/clk/spear/
15857
15858 SPEAR PLATFORM SUPPORT
15859 M:      Viresh Kumar <vireshk@kernel.org>
15860 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
15861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15862 W:      http://www.st.com/spear
15863 S:      Maintained
15864 F:      arch/arm/boot/dts/spear*
15865 F:      arch/arm/mach-spear/
15866
15867 SPI NOR SUBSYSTEM
15868 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
15869 L:      linux-mtd@lists.infradead.org
15870 W:      http://www.linux-mtd.infradead.org/
15871 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15873 C:      irc://irc.oftc.net/mtd
15874 S:      Maintained
15875 F:      drivers/mtd/spi-nor/
15876 F:      include/linux/mtd/spi-nor.h
15877
15878 SPI SUBSYSTEM
15879 M:      Mark Brown <broonie@kernel.org>
15880 L:      linux-spi@vger.kernel.org
15881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15882 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15883 S:      Maintained
15884 F:      Documentation/devicetree/bindings/spi/
15885 F:      Documentation/spi/
15886 F:      drivers/spi/
15887 F:      include/linux/spi/
15888 F:      include/uapi/linux/spi/
15889 F:      tools/spi/
15890
15891 SPIDERNET NETWORK DRIVER for CELL
15892 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
15893 L:      netdev@vger.kernel.org
15894 S:      Supported
15895 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15896 F:      drivers/net/ethernet/toshiba/spider_net*
15897
15898 SPMI SUBSYSTEM
15899 R:      Stephen Boyd <sboyd@kernel.org>
15900 L:      linux-arm-msm@vger.kernel.org
15901 F:      Documentation/devicetree/bindings/spmi/
15902 F:      drivers/spmi/
15903 F:      include/dt-bindings/spmi/spmi.h
15904 F:      include/linux/spmi.h
15905 F:      include/trace/events/spmi.h
15906
15907 SPU FILE SYSTEM
15908 M:      Jeremy Kerr <jk@ozlabs.org>
15909 L:      linuxppc-dev@lists.ozlabs.org
15910 W:      http://www.ibm.com/developerworks/power/cell/
15911 S:      Supported
15912 F:      Documentation/filesystems/spufs.txt
15913 F:      arch/powerpc/platforms/cell/spufs/
15914
15915 SQUASHFS FILE SYSTEM
15916 M:      Phillip Lougher <phillip@squashfs.org.uk>
15917 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
15918 W:      http://squashfs.org.uk
15919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15920 S:      Maintained
15921 F:      Documentation/filesystems/squashfs.rst
15922 F:      fs/squashfs/
15923
15924 SRM (Alpha) environment access
15925 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
15926 S:      Maintained
15927 F:      arch/alpha/kernel/srm_env.c
15928
15929 ST LSM6DSx IMU IIO DRIVER
15930 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
15931 L:      linux-iio@vger.kernel.org
15932 W:      http://www.st.com/
15933 S:      Maintained
15934 F:      drivers/iio/imu/st_lsm6dsx/
15935 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15936
15937 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15938 M:      Mickael Guene <mickael.guene@st.com>
15939 L:      linux-media@vger.kernel.org
15940 T:      git git://linuxtv.org/media_tree.git
15941 S:      Maintained
15942 F:      drivers/media/i2c/st-mipid02.c
15943 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15944
15945 ST STM32 I2C/SMBUS DRIVER
15946 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
15947 L:      linux-i2c@vger.kernel.org
15948 S:      Maintained
15949 F:      drivers/i2c/busses/i2c-stm32*
15950
15951 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15952 M:      Song Qiang <songqiang1304521@gmail.com>
15953 L:      linux-iio@vger.kernel.org
15954 S:      Maintained
15955 F:      drivers/iio/proximity/vl53l0x-i2c.c
15956 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15957
15958 STABLE BRANCH
15959 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15960 M:      Sasha Levin <sashal@kernel.org>
15961 L:      stable@vger.kernel.org
15962 S:      Supported
15963 F:      Documentation/process/stable-kernel-rules.rst
15964
15965 STAGING - COMEDI
15966 M:      Ian Abbott <abbotti@mev.co.uk>
15967 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
15968 S:      Odd Fixes
15969 F:      drivers/staging/comedi/
15970
15971 STAGING - FIELDBUS SUBSYSTEM
15972 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15973 S:      Maintained
15974 F:      drivers/staging/fieldbus/*
15975 F:      drivers/staging/fieldbus/Documentation/
15976
15977 STAGING - HMS ANYBUS-S BUS
15978 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15979 S:      Maintained
15980 F:      drivers/staging/fieldbus/anybuss/
15981
15982 STAGING - INDUSTRIAL IO
15983 M:      Jonathan Cameron <jic23@kernel.org>
15984 L:      linux-iio@vger.kernel.org
15985 S:      Odd Fixes
15986 F:      Documentation/devicetree/bindings/staging/iio/
15987 F:      drivers/staging/iio/
15988
15989 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15990 M:      Marc Dietrich <marvin24@gmx.de>
15991 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
15992 L:      linux-tegra@vger.kernel.org
15993 S:      Maintained
15994 F:      drivers/staging/nvec/
15995
15996 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15997 M:      Jens Frederich <jfrederich@gmail.com>
15998 M:      Daniel Drake <dsd@laptop.org>
15999 M:      Jon Nettleton <jon.nettleton@gmail.com>
16000 W:      http://wiki.laptop.org/go/DCON
16001 S:      Maintained
16002 F:      drivers/staging/olpc_dcon/
16003
16004 STAGING - REALTEK RTL8712U DRIVERS
16005 M:      Larry Finger <Larry.Finger@lwfinger.net>
16006 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16007 S:      Odd Fixes
16008 F:      drivers/staging/rtl8712/
16009
16010 STAGING - REALTEK RTL8188EU DRIVERS
16011 M:      Larry Finger <Larry.Finger@lwfinger.net>
16012 S:      Odd Fixes
16013 F:      drivers/staging/rtl8188eu/
16014
16015 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16016 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16017 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16018 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16019 L:      linux-fbdev@vger.kernel.org
16020 S:      Maintained
16021 F:      drivers/staging/sm750fb/
16022
16023 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
16024 M:      William Hubbs <w.d.hubbs@gmail.com>
16025 M:      Chris Brannon <chris@the-brannons.com>
16026 M:      Kirk Reiser <kirk@reisers.ca>
16027 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16028 L:      speakup@linux-speakup.org
16029 W:      http://www.linux-speakup.org/
16030 S:      Odd Fixes
16031 F:      drivers/staging/speakup/
16032
16033 STAGING - VIA VT665X DRIVERS
16034 M:      Forest Bond <forest@alittletooquiet.net>
16035 S:      Odd Fixes
16036 F:      drivers/staging/vt665?/
16037
16038 STAGING - WILC1000 WIFI DRIVER
16039 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
16040 M:      Ajay Singh <ajay.kathat@microchip.com>
16041 L:      linux-wireless@vger.kernel.org
16042 S:      Supported
16043 F:      drivers/staging/wilc1000/
16044
16045 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16046 M:      Michael Hennerich <michael.hennerich@analog.com>
16047 M:      Beniamin Bia <beniamin.bia@analog.com>
16048 L:      linux-fbdev@vger.kernel.org
16049 S:      Supported
16050 F:      drivers/staging/fbtft/fb_seps525.c
16051 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16052
16053 STAGING SUBSYSTEM
16054 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16056 L:      devel@driverdev.osuosl.org
16057 S:      Supported
16058 F:      drivers/staging/
16059
16060 STARFIRE/DURALAN NETWORK DRIVER
16061 M:      Ion Badulescu <ionut@badula.org>
16062 S:      Odd Fixes
16063 F:      drivers/net/ethernet/adaptec/starfire*
16064
16065 STEC S1220 SKD DRIVER
16066 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16067 L:      linux-block@vger.kernel.org
16068 S:      Maintained
16069 F:      drivers/block/skd*[ch]
16070
16071 STI AUDIO (ASoC) DRIVERS
16072 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16073 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16074 S:      Maintained
16075 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16076 F:      sound/soc/sti/
16077
16078 STI CEC DRIVER
16079 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16080 S:      Maintained
16081 F:      drivers/media/platform/sti/cec/
16082 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16083
16084 STK1160 USB VIDEO CAPTURE DRIVER
16085 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16086 L:      linux-media@vger.kernel.org
16087 T:      git git://linuxtv.org/media_tree.git
16088 S:      Maintained
16089 F:      drivers/media/usb/stk1160/
16090
16091 STM32 AUDIO (ASoC) DRIVERS
16092 M:      Olivier Moysan <olivier.moysan@st.com>
16093 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16094 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16095 S:      Maintained
16096 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16097 F:      sound/soc/stm/
16098
16099 STM32 TIMER/LPTIMER DRIVERS
16100 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16101 S:      Maintained
16102 F:      drivers/*/stm32-*timer*
16103 F:      drivers/pwm/pwm-stm32*
16104 F:      include/linux/*/stm32-*tim*
16105 F:      Documentation/ABI/testing/*timer-stm32
16106 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16107
16108 STMMAC ETHERNET DRIVER
16109 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16110 M:      Alexandre Torgue <alexandre.torgue@st.com>
16111 M:      Jose Abreu <joabreu@synopsys.com>
16112 L:      netdev@vger.kernel.org
16113 W:      http://www.stlinux.com
16114 S:      Supported
16115 F:      Documentation/networking/device_drivers/stmicro/
16116 F:      drivers/net/ethernet/stmicro/stmmac/
16117
16118 EXTRA BOOT CONFIG
16119 M:      Masami Hiramatsu <mhiramat@kernel.org>
16120 S:      Maintained
16121 F:      lib/bootconfig.c
16122 F:      fs/proc/bootconfig.c
16123 F:      include/linux/bootconfig.h
16124 F:      tools/bootconfig/*
16125 F:      Documentation/admin-guide/bootconfig.rst
16126
16127 SUN3/3X
16128 M:      Sam Creasey <sammy@sammy.net>
16129 W:      http://sammy.net/sun3/
16130 S:      Maintained
16131 F:      arch/m68k/kernel/*sun3*
16132 F:      arch/m68k/sun3*/
16133 F:      arch/m68k/include/asm/sun3*
16134 F:      drivers/net/ethernet/i825xx/sun3*
16135
16136 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16137 M:      Hans de Goede <hdegoede@redhat.com>
16138 L:      linux-input@vger.kernel.org
16139 S:      Maintained
16140 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16141 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16142
16143 SUNDANCE NETWORK DRIVER
16144 M:      Denis Kirjanov <kda@linux-powerpc.org>
16145 L:      netdev@vger.kernel.org
16146 S:      Maintained
16147 F:      drivers/net/ethernet/dlink/sundance.c
16148
16149 SUPERH
16150 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16151 M:      Rich Felker <dalias@libc.org>
16152 L:      linux-sh@vger.kernel.org
16153 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16154 S:      Maintained
16155 F:      Documentation/sh/
16156 F:      arch/sh/
16157 F:      drivers/sh/
16158
16159 SUSPEND TO RAM
16160 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16161 M:      Len Brown <len.brown@intel.com>
16162 M:      Pavel Machek <pavel@ucw.cz>
16163 L:      linux-pm@vger.kernel.org
16164 B:      https://bugzilla.kernel.org
16165 S:      Supported
16166 F:      Documentation/power/
16167 F:      arch/x86/kernel/acpi/
16168 F:      drivers/base/power/
16169 F:      kernel/power/
16170 F:      include/linux/suspend.h
16171 F:      include/linux/freezer.h
16172 F:      include/linux/pm.h
16173
16174 SVGA HANDLING
16175 M:      Martin Mares <mj@ucw.cz>
16176 L:      linux-video@atrey.karlin.mff.cuni.cz
16177 S:      Maintained
16178 F:      Documentation/admin-guide/svga.rst
16179 F:      arch/x86/boot/video*
16180
16181 SWIOTLB SUBSYSTEM
16182 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16183 L:      iommu@lists.linux-foundation.org
16184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16185 S:      Supported
16186 F:      kernel/dma/swiotlb.c
16187 F:      arch/*/kernel/pci-swiotlb.c
16188 F:      include/linux/swiotlb.h
16189
16190 SWITCHDEV
16191 M:      Jiri Pirko <jiri@resnulli.us>
16192 M:      Ivan Vecera <ivecera@redhat.com>
16193 L:      netdev@vger.kernel.org
16194 S:      Supported
16195 F:      net/switchdev/
16196 F:      include/net/switchdev.h
16197
16198 SY8106A REGULATOR DRIVER
16199 M:      Icenowy Zheng <icenowy@aosc.io>
16200 S:      Maintained
16201 F:      drivers/regulator/sy8106a-regulator.c
16202 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16203
16204 SYNC FILE FRAMEWORK
16205 M:      Sumit Semwal <sumit.semwal@linaro.org>
16206 R:      Gustavo Padovan <gustavo@padovan.org>
16207 S:      Maintained
16208 L:      linux-media@vger.kernel.org
16209 L:      dri-devel@lists.freedesktop.org
16210 F:      drivers/dma-buf/sync_*
16211 F:      drivers/dma-buf/dma-fence*
16212 F:      drivers/dma-buf/sw_sync.c
16213 F:      include/linux/sync_file.h
16214 F:      include/uapi/linux/sync_file.h
16215 F:      Documentation/driver-api/sync_file.rst
16216 T:      git git://anongit.freedesktop.org/drm/drm-misc
16217
16218 SYNOPSYS ARC ARCHITECTURE
16219 M:      Vineet Gupta <vgupta@synopsys.com>
16220 L:      linux-snps-arc@lists.infradead.org
16221 S:      Supported
16222 F:      arch/arc/
16223 F:      Documentation/devicetree/bindings/arc/*
16224 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16225 F:      drivers/clocksource/arc_timer.c
16226 F:      drivers/tty/serial/arc_uart.c
16227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16228
16229 SYNOPSYS ARC HSDK SDP pll clock driver
16230 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16231 S:      Supported
16232 F:      drivers/clk/clk-hsdk-pll.c
16233 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16234
16235 SYNOPSYS ARC SDP clock driver
16236 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16237 S:      Supported
16238 F:      drivers/clk/axs10x/*
16239 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16240
16241 SYNOPSYS ARC SDP platform support
16242 M:      Alexey Brodkin <abrodkin@synopsys.com>
16243 S:      Supported
16244 F:      arch/arc/plat-axs10x
16245 F:      arch/arc/boot/dts/ax*
16246 F:      Documentation/devicetree/bindings/arc/axs10*
16247
16248 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16249 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16250 S:      Supported
16251 F:      drivers/reset/reset-axs10x.c
16252 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16253
16254 SYNOPSYS CREG GPIO DRIVER
16255 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16256 S:      Maintained
16257 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16258 F:      drivers/gpio/gpio-creg-snps.c
16259
16260 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16261 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16262 S:      Maintained
16263 F:      drivers/tty/serial/8250/8250_dw.c
16264 F:      drivers/tty/serial/8250/8250_dwlib.*
16265 F:      drivers/tty/serial/8250/8250_lpss.c
16266
16267 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16268 M:      Hoan Tran <hoan@os.amperecomputing.com>
16269 L:      linux-gpio@vger.kernel.org
16270 S:      Maintained
16271 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
16272 F:      drivers/gpio/gpio-dwapb.c
16273
16274 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16275 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16276 S:      Maintained
16277 F:      drivers/dma/dw-axi-dmac/
16278 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16279
16280 SYNOPSYS DESIGNWARE DMAC DRIVER
16281 M:      Viresh Kumar <vireshk@kernel.org>
16282 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16283 S:      Maintained
16284 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16285 F:      drivers/dma/dw/
16286 F:      include/dt-bindings/dma/dw-dmac.h
16287 F:      include/linux/dma/dw.h
16288 F:      include/linux/platform_data/dma-dw.h
16289
16290 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16291 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16292 L:      netdev@vger.kernel.org
16293 S:      Supported
16294 F:      drivers/net/ethernet/synopsys/
16295
16296 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16297 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16298 L:      netdev@vger.kernel.org
16299 S:      Supported
16300 F:      drivers/net/phy/mdio-xpcs.c
16301 F:      include/linux/mdio-xpcs.h
16302
16303 SYNOPSYS DESIGNWARE I2C DRIVER
16304 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16305 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16306 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16307 L:      linux-i2c@vger.kernel.org
16308 S:      Maintained
16309 F:      drivers/i2c/busses/i2c-designware-*
16310 F:      include/linux/platform_data/i2c-designware.h
16311
16312 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16313 M:      Jaehoon Chung <jh80.chung@samsung.com>
16314 L:      linux-mmc@vger.kernel.org
16315 S:      Maintained
16316 F:      drivers/mmc/host/dw_mmc*
16317
16318 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16319 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16320 S:      Supported
16321 F:      drivers/reset/reset-hsdk.c
16322 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16323 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16324
16325 SYSTEM CONFIGURATION (SYSCON)
16326 M:      Lee Jones <lee.jones@linaro.org>
16327 M:      Arnd Bergmann <arnd@arndb.de>
16328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16329 S:      Supported
16330 F:      drivers/mfd/syscon.c
16331
16332 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16333 M:      Sudeep Holla <sudeep.holla@arm.com>
16334 L:      linux-arm-kernel@lists.infradead.org
16335 S:      Maintained
16336 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16337 F:      drivers/clk/clk-sc[mp]i.c
16338 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16339 F:      drivers/firmware/arm_scpi.c
16340 F:      drivers/firmware/arm_scmi/
16341 F:      drivers/reset/reset-scmi.c
16342 F:      include/linux/sc[mp]i_protocol.h
16343 F:      include/trace/events/scmi.h
16344
16345 SYSTEM RESET/SHUTDOWN DRIVERS
16346 M:      Sebastian Reichel <sre@kernel.org>
16347 L:      linux-pm@vger.kernel.org
16348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16349 S:      Maintained
16350 F:      Documentation/devicetree/bindings/power/reset/
16351 F:      drivers/power/reset/
16352
16353 SYSTEM TRACE MODULE CLASS
16354 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16355 S:      Maintained
16356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16357 F:      Documentation/trace/stm.rst
16358 F:      drivers/hwtracing/stm/
16359 F:      include/linux/stm.h
16360 F:      include/uapi/linux/stm.h
16361
16362 SYSTEM76 ACPI DRIVER
16363 M:      Jeremy Soller <jeremy@system76.com>
16364 M:      System76 Product Development <productdev@system76.com>
16365 L:      platform-driver-x86@vger.kernel.org
16366 S:      Maintained
16367 F:      drivers/platform/x86/system76_acpi.c
16368
16369 SYSV FILESYSTEM
16370 M:      Christoph Hellwig <hch@infradead.org>
16371 S:      Maintained
16372 F:      Documentation/filesystems/sysv-fs.rst
16373 F:      fs/sysv/
16374 F:      include/linux/sysv_fs.h
16375
16376 TASKSTATS STATISTICS INTERFACE
16377 M:      Balbir Singh <bsingharora@gmail.com>
16378 S:      Maintained
16379 F:      Documentation/accounting/taskstats*
16380 F:      include/linux/taskstats*
16381 F:      kernel/taskstats.c
16382
16383 TC subsystem
16384 M:      Jamal Hadi Salim <jhs@mojatatu.com>
16385 M:      Cong Wang <xiyou.wangcong@gmail.com>
16386 M:      Jiri Pirko <jiri@resnulli.us>
16387 L:      netdev@vger.kernel.org
16388 S:      Maintained
16389 F:      include/net/pkt_cls.h
16390 F:      include/net/pkt_sched.h
16391 F:      include/net/tc_act/
16392 F:      include/uapi/linux/pkt_cls.h
16393 F:      include/uapi/linux/pkt_sched.h
16394 F:      include/uapi/linux/tc_act/
16395 F:      include/uapi/linux/tc_ematch/
16396 F:      net/sched/
16397
16398 TC90522 MEDIA DRIVER
16399 M:      Akihiro Tsukada <tskd08@gmail.com>
16400 L:      linux-media@vger.kernel.org
16401 S:      Odd Fixes
16402 F:      drivers/media/dvb-frontends/tc90522*
16403
16404 TCP LOW PRIORITY MODULE
16405 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16406 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16407 W:      http://tcp-lp-mod.sourceforge.net/
16408 S:      Maintained
16409 F:      net/ipv4/tcp_lp.c
16410
16411 TDA10071 MEDIA DRIVER
16412 M:      Antti Palosaari <crope@iki.fi>
16413 L:      linux-media@vger.kernel.org
16414 W:      https://linuxtv.org
16415 W:      http://palosaari.fi/linux/
16416 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16417 T:      git git://linuxtv.org/anttip/media_tree.git
16418 S:      Maintained
16419 F:      drivers/media/dvb-frontends/tda10071*
16420
16421 TDA18212 MEDIA DRIVER
16422 M:      Antti Palosaari <crope@iki.fi>
16423 L:      linux-media@vger.kernel.org
16424 W:      https://linuxtv.org
16425 W:      http://palosaari.fi/linux/
16426 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16427 T:      git git://linuxtv.org/anttip/media_tree.git
16428 S:      Maintained
16429 F:      drivers/media/tuners/tda18212*
16430
16431 TDA18218 MEDIA DRIVER
16432 M:      Antti Palosaari <crope@iki.fi>
16433 L:      linux-media@vger.kernel.org
16434 W:      https://linuxtv.org
16435 W:      http://palosaari.fi/linux/
16436 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16437 T:      git git://linuxtv.org/anttip/media_tree.git
16438 S:      Maintained
16439 F:      drivers/media/tuners/tda18218*
16440
16441 TDA18250 MEDIA DRIVER
16442 M:      Olli Salonen <olli.salonen@iki.fi>
16443 L:      linux-media@vger.kernel.org
16444 W:      https://linuxtv.org
16445 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16446 T:      git git://linuxtv.org/media_tree.git
16447 S:      Maintained
16448 F:      drivers/media/tuners/tda18250*
16449
16450 TDA18271 MEDIA DRIVER
16451 M:      Michael Krufky <mkrufky@linuxtv.org>
16452 L:      linux-media@vger.kernel.org
16453 W:      https://linuxtv.org
16454 W:      http://github.com/mkrufky
16455 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16456 T:      git git://linuxtv.org/mkrufky/tuners.git
16457 S:      Maintained
16458 F:      drivers/media/tuners/tda18271*
16459
16460 TDA1997x MEDIA DRIVER
16461 M:      Tim Harvey <tharvey@gateworks.com>
16462 L:      linux-media@vger.kernel.org
16463 W:      https://linuxtv.org
16464 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16465 S:      Maintained
16466 F:      drivers/media/i2c/tda1997x.*
16467
16468 TDA827x MEDIA DRIVER
16469 M:      Michael Krufky <mkrufky@linuxtv.org>
16470 L:      linux-media@vger.kernel.org
16471 W:      https://linuxtv.org
16472 W:      http://github.com/mkrufky
16473 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16474 T:      git git://linuxtv.org/mkrufky/tuners.git
16475 S:      Maintained
16476 F:      drivers/media/tuners/tda8290.*
16477
16478 TDA8290 MEDIA DRIVER
16479 M:      Michael Krufky <mkrufky@linuxtv.org>
16480 L:      linux-media@vger.kernel.org
16481 W:      https://linuxtv.org
16482 W:      http://github.com/mkrufky
16483 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16484 T:      git git://linuxtv.org/mkrufky/tuners.git
16485 S:      Maintained
16486 F:      drivers/media/tuners/tda8290.*
16487
16488 TDA9840 MEDIA DRIVER
16489 M:      Hans Verkuil <hverkuil@xs4all.nl>
16490 L:      linux-media@vger.kernel.org
16491 T:      git git://linuxtv.org/media_tree.git
16492 W:      https://linuxtv.org
16493 S:      Maintained
16494 F:      drivers/media/i2c/tda9840*
16495
16496 TEA5761 TUNER DRIVER
16497 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16498 L:      linux-media@vger.kernel.org
16499 W:      https://linuxtv.org
16500 T:      git git://linuxtv.org/media_tree.git
16501 S:      Odd fixes
16502 F:      drivers/media/tuners/tea5761.*
16503
16504 TEA5767 TUNER DRIVER
16505 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16506 L:      linux-media@vger.kernel.org
16507 W:      https://linuxtv.org
16508 T:      git git://linuxtv.org/media_tree.git
16509 S:      Maintained
16510 F:      drivers/media/tuners/tea5767.*
16511
16512 TEA6415C MEDIA DRIVER
16513 M:      Hans Verkuil <hverkuil@xs4all.nl>
16514 L:      linux-media@vger.kernel.org
16515 T:      git git://linuxtv.org/media_tree.git
16516 W:      https://linuxtv.org
16517 S:      Maintained
16518 F:      drivers/media/i2c/tea6415c*
16519
16520 TEA6420 MEDIA DRIVER
16521 M:      Hans Verkuil <hverkuil@xs4all.nl>
16522 L:      linux-media@vger.kernel.org
16523 T:      git git://linuxtv.org/media_tree.git
16524 W:      https://linuxtv.org
16525 S:      Maintained
16526 F:      drivers/media/i2c/tea6420*
16527
16528 TEAM DRIVER
16529 M:      Jiri Pirko <jiri@resnulli.us>
16530 L:      netdev@vger.kernel.org
16531 S:      Supported
16532 F:      drivers/net/team/
16533 F:      include/linux/if_team.h
16534 F:      include/uapi/linux/if_team.h
16535
16536 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16537 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16538 S:      Maintained
16539 F:      arch/x86/platform/ts5500/
16540
16541 TECHNOTREND USB IR RECEIVER
16542 M:      Sean Young <sean@mess.org>
16543 L:      linux-media@vger.kernel.org
16544 S:      Maintained
16545 F:      drivers/media/rc/ttusbir.c
16546
16547 TECHWELL TW9910 VIDEO DECODER
16548 L:      linux-media@vger.kernel.org
16549 S:      Orphan
16550 F:      drivers/media/i2c/tw9910.c
16551 F:      include/media/i2c/tw9910.h
16552
16553 TEE SUBSYSTEM
16554 M:      Jens Wiklander <jens.wiklander@linaro.org>
16555 L:      tee-dev@lists.linaro.org
16556 S:      Maintained
16557 F:      include/linux/tee_drv.h
16558 F:      include/uapi/linux/tee.h
16559 F:      drivers/tee/
16560 F:      Documentation/tee.txt
16561
16562 TEGRA ARCHITECTURE SUPPORT
16563 M:      Thierry Reding <thierry.reding@gmail.com>
16564 M:      Jonathan Hunter <jonathanh@nvidia.com>
16565 L:      linux-tegra@vger.kernel.org
16566 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16568 S:      Supported
16569 N:      [^a-z]tegra
16570
16571 TEGRA CLOCK DRIVER
16572 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16573 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16574 S:      Supported
16575 F:      drivers/clk/tegra/
16576
16577 TEGRA DMA DRIVERS
16578 M:      Laxman Dewangan <ldewangan@nvidia.com>
16579 M:      Jon Hunter <jonathanh@nvidia.com>
16580 S:      Supported
16581 F:      drivers/dma/tegra*
16582
16583 TEGRA I2C DRIVER
16584 M:      Laxman Dewangan <ldewangan@nvidia.com>
16585 R:      Dmitry Osipenko <digetx@gmail.com>
16586 S:      Supported
16587 F:      drivers/i2c/busses/i2c-tegra.c
16588
16589 TEGRA IOMMU DRIVERS
16590 M:      Thierry Reding <thierry.reding@gmail.com>
16591 L:      linux-tegra@vger.kernel.org
16592 S:      Supported
16593 F:      drivers/iommu/tegra*
16594
16595 TEGRA KBC DRIVER
16596 M:      Laxman Dewangan <ldewangan@nvidia.com>
16597 S:      Supported
16598 F:      drivers/input/keyboard/tegra-kbc.c
16599
16600 TEGRA NAND DRIVER
16601 M:      Stefan Agner <stefan@agner.ch>
16602 M:      Lucas Stach <dev@lynxeye.de>
16603 S:      Maintained
16604 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16605 F:      drivers/mtd/nand/raw/tegra_nand.c
16606
16607 TEGRA PWM DRIVER
16608 M:      Thierry Reding <thierry.reding@gmail.com>
16609 S:      Supported
16610 F:      drivers/pwm/pwm-tegra.c
16611
16612 TEGRA SERIAL DRIVER
16613 M:      Laxman Dewangan <ldewangan@nvidia.com>
16614 S:      Supported
16615 F:      drivers/tty/serial/serial-tegra.c
16616
16617 TEGRA SPI DRIVER
16618 M:      Laxman Dewangan <ldewangan@nvidia.com>
16619 S:      Supported
16620 F:      drivers/spi/spi-tegra*
16621
16622 TEGRA XUSB PADCTL DRIVER
16623 M:      JC Kuo <jckuo@nvidia.com>
16624 S:      Supported
16625 F:      drivers/phy/tegra/xusb*
16626
16627 TEHUTI ETHERNET DRIVER
16628 M:      Andy Gospodarek <andy@greyhouse.net>
16629 L:      netdev@vger.kernel.org
16630 S:      Supported
16631 F:      drivers/net/ethernet/tehuti/*
16632
16633 Telecom Clock Driver for MCPL0010
16634 M:      Mark Gross <mark.gross@intel.com>
16635 S:      Supported
16636 F:      drivers/char/tlclk.c
16637
16638 TENSILICA XTENSA PORT (xtensa)
16639 M:      Chris Zankel <chris@zankel.net>
16640 M:      Max Filippov <jcmvbkbc@gmail.com>
16641 L:      linux-xtensa@linux-xtensa.org
16642 T:      git git://github.com/czankel/xtensa-linux.git
16643 S:      Maintained
16644 F:      arch/xtensa/
16645 F:      drivers/irqchip/irq-xtensa-*
16646
16647 Texas Instruments' System Control Interface (TISCI) Protocol Driver
16648 M:      Nishanth Menon <nm@ti.com>
16649 M:      Tero Kristo <t-kristo@ti.com>
16650 M:      Santosh Shilimkar <ssantosh@kernel.org>
16651 L:      linux-arm-kernel@lists.infradead.org
16652 S:      Maintained
16653 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16654 F:      drivers/firmware/ti_sci*
16655 F:      include/linux/soc/ti/ti_sci_protocol.h
16656 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16657 F:      drivers/soc/ti/ti_sci_pm_domains.c
16658 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16659 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16660 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16661 F:      drivers/clk/keystone/sci-clk.c
16662 F:      drivers/reset/reset-ti-sci.c
16663 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16664 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16665 F:      drivers/irqchip/irq-ti-sci-intr.c
16666 F:      drivers/irqchip/irq-ti-sci-inta.c
16667 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16668 F:      drivers/soc/ti/ti_sci_inta_msi.c
16669
16670 Texas Instruments ASoC drivers
16671 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16672 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16673 S:      Maintained
16674 F:      sound/soc/ti/
16675
16676 Texas Instruments' DAC7612 DAC Driver
16677 M:      Ricardo Ribalda <ricardo@ribalda.com>
16678 L:      linux-iio@vger.kernel.org
16679 S:      Supported
16680 F:      drivers/iio/dac/ti-dac7612.c
16681 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16682
16683 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16684 M:      Hans Verkuil <hverkuil@xs4all.nl>
16685 L:      linux-media@vger.kernel.org
16686 T:      git git://linuxtv.org/media_tree.git
16687 W:      https://linuxtv.org
16688 S:      Maintained
16689 F:      drivers/media/radio/radio-raremono.c
16690
16691 THERMAL
16692 M:      Zhang Rui <rui.zhang@intel.com>
16693 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16694 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16695 L:      linux-pm@vger.kernel.org
16696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16697 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16698 S:      Supported
16699 F:      drivers/thermal/
16700 F:      include/linux/thermal.h
16701 F:      include/uapi/linux/thermal.h
16702 F:      include/linux/cpu_cooling.h
16703 F:      Documentation/devicetree/bindings/thermal/
16704
16705 THERMAL/CPU_COOLING
16706 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16707 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16708 M:      Viresh Kumar <viresh.kumar@linaro.org>
16709 M:      Javi Merino <javi.merino@kernel.org>
16710 L:      linux-pm@vger.kernel.org
16711 S:      Supported
16712 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16713 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16714 F:      drivers/thermal/cpufreq_cooling.c
16715 F:      drivers/thermal/cpuidle_cooling.c
16716 F:      include/linux/cpu_cooling.h
16717
16718 THERMAL DRIVER FOR AMLOGIC SOCS
16719 M:      Guillaume La Roque <glaroque@baylibre.com>
16720 L:      linux-pm@vger.kernel.org
16721 L:      linux-amlogic@lists.infradead.org
16722 W:      http://linux-meson.com/
16723 S:      Supported
16724 F:      drivers/thermal/amlogic_thermal.c
16725 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16726
16727 THINKPAD ACPI EXTRAS DRIVER
16728 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16729 L:      ibm-acpi-devel@lists.sourceforge.net
16730 L:      platform-driver-x86@vger.kernel.org
16731 S:      Maintained
16732 W:      http://ibm-acpi.sourceforge.net
16733 W:      http://thinkwiki.org/wiki/Ibm-acpi
16734 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16735 F:      drivers/platform/x86/thinkpad_acpi.c
16736
16737 THUNDERBOLT DRIVER
16738 M:      Andreas Noever <andreas.noever@gmail.com>
16739 M:      Michael Jamet <michael.jamet@intel.com>
16740 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16741 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16742 L:      linux-usb@vger.kernel.org
16743 S:      Maintained
16744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16745 F:      Documentation/admin-guide/thunderbolt.rst
16746 F:      drivers/thunderbolt/
16747 F:      include/linux/thunderbolt.h
16748
16749 THUNDERBOLT NETWORK DRIVER
16750 M:      Michael Jamet <michael.jamet@intel.com>
16751 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16752 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16753 L:      netdev@vger.kernel.org
16754 S:      Maintained
16755 F:      drivers/net/thunderbolt.c
16756
16757 THUNDERX GPIO DRIVER
16758 M:      Robert Richter <rrichter@marvell.com>
16759 S:      Maintained
16760 F:      drivers/gpio/gpio-thunderx.c
16761
16762 TI AM437X VPFE DRIVER
16763 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16764 L:      linux-media@vger.kernel.org
16765 W:      https://linuxtv.org
16766 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16767 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16768 S:      Maintained
16769 F:      drivers/media/platform/am437x/
16770
16771 TI BANDGAP AND THERMAL DRIVER
16772 M:      Eduardo Valentin <edubezval@gmail.com>
16773 M:      Keerthy <j-keerthy@ti.com>
16774 L:      linux-pm@vger.kernel.org
16775 L:      linux-omap@vger.kernel.org
16776 S:      Maintained
16777 F:      drivers/thermal/ti-soc-thermal/
16778
16779 TI BQ27XXX POWER SUPPLY DRIVER
16780 R:      Andrew F. Davis <afd@ti.com>
16781 F:      include/linux/power/bq27xxx_battery.h
16782 F:      drivers/power/supply/bq27xxx_battery.c
16783 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16784
16785 TI CDCE706 CLOCK DRIVER
16786 M:      Max Filippov <jcmvbkbc@gmail.com>
16787 S:      Maintained
16788 F:      drivers/clk/clk-cdce706.c
16789
16790 TI CLOCK DRIVER
16791 M:      Tero Kristo <t-kristo@ti.com>
16792 L:      linux-omap@vger.kernel.org
16793 S:      Maintained
16794 F:      drivers/clk/ti/
16795 F:      include/linux/clk/ti.h
16796
16797 TI DAVINCI MACHINE SUPPORT
16798 M:      Sekhar Nori <nsekhar@ti.com>
16799 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
16800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16802 S:      Supported
16803 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16804 F:      arch/arm/mach-davinci/
16805 F:      drivers/i2c/busses/i2c-davinci.c
16806 F:      arch/arm/boot/dts/da850*
16807
16808 TI DAVINCI SERIES CLOCK DRIVER
16809 M:      David Lechner <david@lechnology.com>
16810 R:      Sekhar Nori <nsekhar@ti.com>
16811 S:      Maintained
16812 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16813 F:      drivers/clk/davinci/
16814
16815 TI DAVINCI SERIES GPIO DRIVER
16816 M:      Keerthy <j-keerthy@ti.com>
16817 L:      linux-gpio@vger.kernel.org
16818 S:      Maintained
16819 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16820 F:      drivers/gpio/gpio-davinci.c
16821
16822 TI DAVINCI SERIES MEDIA DRIVER
16823 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16824 L:      linux-media@vger.kernel.org
16825 W:      https://linuxtv.org
16826 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16827 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16828 S:      Maintained
16829 F:      drivers/media/platform/davinci/
16830 F:      include/media/davinci/
16831
16832 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
16833 R:      David Lechner <david@lechnology.com>
16834 L:      linux-iio@vger.kernel.org
16835 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
16836 F:      drivers/counter/ti-eqep.c
16837
16838 TI ETHERNET SWITCH DRIVER (CPSW)
16839 R:      Grygorii Strashko <grygorii.strashko@ti.com>
16840 L:      linux-omap@vger.kernel.org
16841 L:      netdev@vger.kernel.org
16842 S:      Maintained
16843 F:      drivers/net/ethernet/ti/cpsw*
16844 F:      drivers/net/ethernet/ti/davinci*
16845
16846 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16847 M:      Alex Dubov <oakad@yahoo.com>
16848 S:      Maintained
16849 W:      http://tifmxx.berlios.de/
16850 F:      drivers/memstick/host/tifm_ms.c
16851 F:      drivers/misc/tifm*
16852 F:      drivers/mmc/host/tifm_sd.c
16853 F:      include/linux/tifm.h
16854
16855 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16856 M:      Santosh Shilimkar <ssantosh@kernel.org>
16857 L:      linux-kernel@vger.kernel.org
16858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16859 S:      Maintained
16860 F:      drivers/soc/ti/*
16861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16862
16863 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16864 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
16865 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
16866 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16867 S:      Maintained
16868 F:      sound/soc/codecs/lm49453*
16869 F:      sound/soc/codecs/isabelle*
16870
16871 TI LP855x BACKLIGHT DRIVER
16872 M:      Milo Kim <milo.kim@ti.com>
16873 S:      Maintained
16874 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16875 F:      drivers/video/backlight/lp855x_bl.c
16876 F:      include/linux/platform_data/lp855x.h
16877
16878 TI LP8727 CHARGER DRIVER
16879 M:      Milo Kim <milo.kim@ti.com>
16880 S:      Maintained
16881 F:      drivers/power/supply/lp8727_charger.c
16882 F:      include/linux/platform_data/lp8727.h
16883
16884 TI LP8788 MFD DRIVER
16885 M:      Milo Kim <milo.kim@ti.com>
16886 S:      Maintained
16887 F:      drivers/iio/adc/lp8788_adc.c
16888 F:      drivers/leds/leds-lp8788.c
16889 F:      drivers/mfd/lp8788*.c
16890 F:      drivers/power/supply/lp8788-charger.c
16891 F:      drivers/regulator/lp8788-*.c
16892 F:      include/linux/mfd/lp8788*.h
16893
16894 TI NETCP ETHERNET DRIVER
16895 M:      Wingman Kwok <w-kwok2@ti.com>
16896 M:      Murali Karicheri <m-karicheri2@ti.com>
16897 L:      netdev@vger.kernel.org
16898 S:      Maintained
16899 F:      drivers/net/ethernet/ti/netcp*
16900
16901 TI PCM3060 ASoC CODEC DRIVER
16902 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
16903 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16904 S:      Maintained
16905 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16906 F:      sound/soc/codecs/pcm3060*
16907
16908 TI TAS571X FAMILY ASoC CODEC DRIVER
16909 M:      Kevin Cernekee <cernekee@chromium.org>
16910 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16911 S:      Odd Fixes
16912 F:      sound/soc/codecs/tas571x*
16913
16914 TI TCAN4X5X DEVICE DRIVER
16915 M:      Dan Murphy <dmurphy@ti.com>
16916 L:      linux-can@vger.kernel.org
16917 S:      Maintained
16918 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
16919 F:      drivers/net/can/m_can/tcan4x5x.c
16920
16921 TI TRF7970A NFC DRIVER
16922 M:      Mark Greer <mgreer@animalcreek.com>
16923 L:      linux-wireless@vger.kernel.org
16924 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
16925 S:      Supported
16926 F:      drivers/nfc/trf7970a.c
16927 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16928
16929 TI TWL4030 SERIES SOC CODEC DRIVER
16930 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16931 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16932 S:      Maintained
16933 F:      sound/soc/codecs/twl4030*
16934
16935 TI VPE/CAL DRIVERS
16936 M:      Benoit Parrot <bparrot@ti.com>
16937 L:      linux-media@vger.kernel.org
16938 S:      Maintained
16939 W:      http://linuxtv.org/
16940 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16941 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
16942 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
16943 F:      drivers/media/platform/ti-vpe/
16944
16945 TI WILINK WIRELESS DRIVERS
16946 L:      linux-wireless@vger.kernel.org
16947 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16948 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16950 S:      Orphan
16951 F:      drivers/net/wireless/ti/
16952 F:      include/linux/wl12xx.h
16953
16954 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16955 M:      John Stultz <john.stultz@linaro.org>
16956 M:      Thomas Gleixner <tglx@linutronix.de>
16957 R:      Stephen Boyd <sboyd@kernel.org>
16958 L:      linux-kernel@vger.kernel.org
16959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16960 S:      Supported
16961 F:      include/linux/clocksource.h
16962 F:      include/linux/time.h
16963 F:      include/linux/timex.h
16964 F:      include/uapi/linux/time.h
16965 F:      include/uapi/linux/timex.h
16966 F:      kernel/time/clocksource.c
16967 F:      kernel/time/time*.c
16968 F:      kernel/time/alarmtimer.c
16969 F:      kernel/time/ntp.c
16970 F:      tools/testing/selftests/timers/
16971
16972 TIPC NETWORK LAYER
16973 M:      Jon Maloy <jmaloy@redhat.com>
16974 M:      Ying Xue <ying.xue@windriver.com>
16975 L:      netdev@vger.kernel.org (core kernel code)
16976 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
16977 W:      http://tipc.sourceforge.net/
16978 S:      Maintained
16979 F:      include/uapi/linux/tipc*.h
16980 F:      net/tipc/
16981
16982 TLAN NETWORK DRIVER
16983 M:      Samuel Chessman <chessman@tux.org>
16984 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
16985 W:      http://sourceforge.net/projects/tlan/
16986 S:      Maintained
16987 F:      Documentation/networking/device_drivers/ti/tlan.txt
16988 F:      drivers/net/ethernet/ti/tlan.*
16989
16990 TM6000 VIDEO4LINUX DRIVER
16991 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16992 L:      linux-media@vger.kernel.org
16993 W:      https://linuxtv.org
16994 T:      git git://linuxtv.org/media_tree.git
16995 S:      Odd fixes
16996 F:      drivers/media/usb/tm6000/
16997 F:      Documentation/media/v4l-drivers/tm6000*
16998
16999 TMIO/SDHI MMC DRIVER
17000 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17001 L:      linux-mmc@vger.kernel.org
17002 S:      Supported
17003 F:      drivers/mmc/host/tmio_mmc*
17004 F:      drivers/mmc/host/renesas_sdhi*
17005 F:      include/linux/mfd/tmio.h
17006
17007 TMP401 HARDWARE MONITOR DRIVER
17008 M:      Guenter Roeck <linux@roeck-us.net>
17009 L:      linux-hwmon@vger.kernel.org
17010 S:      Maintained
17011 F:      Documentation/hwmon/tmp401.rst
17012 F:      drivers/hwmon/tmp401.c
17013
17014 TMP513 HARDWARE MONITOR DRIVER
17015 M:      Eric Tremblay <etremblay@distech-controls.com>
17016 L:      linux-hwmon@vger.kernel.org
17017 S:      Maintained
17018 F:      Documentation/hwmon/tmp513.rst
17019 F:      drivers/hwmon/tmp513.c
17020
17021 TMPFS (SHMEM FILESYSTEM)
17022 M:      Hugh Dickins <hughd@google.com>
17023 L:      linux-mm@kvack.org
17024 S:      Maintained
17025 F:      include/linux/shmem_fs.h
17026 F:      mm/shmem.c
17027
17028 TOMOYO SECURITY MODULE
17029 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17030 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17031 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17032 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17033 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17034 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17035 W:      https://tomoyo.osdn.jp/
17036 S:      Maintained
17037 F:      security/tomoyo/
17038
17039 TOPSTAR LAPTOP EXTRAS DRIVER
17040 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17041 L:      platform-driver-x86@vger.kernel.org
17042 S:      Maintained
17043 F:      drivers/platform/x86/topstar-laptop.c
17044
17045 TORTURE-TEST MODULES
17046 M:      Davidlohr Bueso <dave@stgolabs.net>
17047 M:      "Paul E. McKenney" <paulmck@kernel.org>
17048 M:      Josh Triplett <josh@joshtriplett.org>
17049 L:      linux-kernel@vger.kernel.org
17050 S:      Supported
17051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17052 F:      Documentation/RCU/torture.txt
17053 F:      kernel/torture.c
17054 F:      kernel/rcu/rcutorture.c
17055 F:      kernel/rcu/rcuperf.c
17056 F:      kernel/locking/locktorture.c
17057
17058 TOSHIBA ACPI EXTRAS DRIVER
17059 M:      Azael Avalos <coproscefalo@gmail.com>
17060 L:      platform-driver-x86@vger.kernel.org
17061 S:      Maintained
17062 F:      drivers/platform/x86/toshiba_acpi.c
17063
17064 TOSHIBA BLUETOOTH DRIVER
17065 M:      Azael Avalos <coproscefalo@gmail.com>
17066 L:      platform-driver-x86@vger.kernel.org
17067 S:      Maintained
17068 F:      drivers/platform/x86/toshiba_bluetooth.c
17069
17070 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17071 M:      Azael Avalos <coproscefalo@gmail.com>
17072 L:      platform-driver-x86@vger.kernel.org
17073 S:      Maintained
17074 F:      drivers/platform/x86/toshiba_haps.c
17075
17076 TOSHIBA SMM DRIVER
17077 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17078 W:      http://www.buzzard.org.uk/toshiba/
17079 S:      Maintained
17080 F:      drivers/char/toshiba.c
17081 F:      include/linux/toshiba.h
17082 F:      include/uapi/linux/toshiba.h
17083
17084 TOSHIBA TC358743 DRIVER
17085 M:      Mats Randgaard <matrandg@cisco.com>
17086 L:      linux-media@vger.kernel.org
17087 S:      Maintained
17088 F:      drivers/media/i2c/tc358743*
17089 F:      include/media/i2c/tc358743.h
17090
17091 TOSHIBA WMI HOTKEYS DRIVER
17092 M:      Azael Avalos <coproscefalo@gmail.com>
17093 L:      platform-driver-x86@vger.kernel.org
17094 S:      Maintained
17095 F:      drivers/platform/x86/toshiba-wmi.c
17096
17097 TPM DEVICE DRIVER
17098 M:      Peter Huewe <peterhuewe@gmx.de>
17099 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
17100 R:      Jason Gunthorpe <jgg@ziepe.ca>
17101 L:      linux-integrity@vger.kernel.org
17102 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17103 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17104 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17105 S:      Maintained
17106 F:      drivers/char/tpm/
17107
17108 TRACING
17109 M:      Steven Rostedt <rostedt@goodmis.org>
17110 M:      Ingo Molnar <mingo@redhat.com>
17111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17112 S:      Maintained
17113 F:      Documentation/trace/ftrace.rst
17114 F:      arch/*/*/*/ftrace.h
17115 F:      arch/*/kernel/ftrace.c
17116 F:      include/*/ftrace.h
17117 F:      include/linux/trace*.h
17118 F:      include/trace/
17119 F:      kernel/trace/
17120 F:      tools/testing/selftests/ftrace/
17121
17122 TRACING MMIO ACCESSES (MMIOTRACE)
17123 M:      Steven Rostedt <rostedt@goodmis.org>
17124 M:      Ingo Molnar <mingo@kernel.org>
17125 R:      Karol Herbst <karolherbst@gmail.com>
17126 R:      Pekka Paalanen <ppaalanen@gmail.com>
17127 S:      Maintained
17128 L:      linux-kernel@vger.kernel.org
17129 L:      nouveau@lists.freedesktop.org
17130 F:      kernel/trace/trace_mmiotrace.c
17131 F:      include/linux/mmiotrace.h
17132 F:      arch/x86/mm/kmmio.c
17133 F:      arch/x86/mm/mmio-mod.c
17134 F:      arch/x86/mm/testmmiotrace.c
17135
17136 TRIVIAL PATCHES
17137 M:      Jiri Kosina <trivial@kernel.org>
17138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17139 S:      Maintained
17140 K:      ^Subject:.*(?i)trivial
17141
17142 TEMPO SEMICONDUCTOR DRIVERS
17143 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17144 S:      Maintained
17145 F:      sound/soc/codecs/tscs*.c
17146 F:      sound/soc/codecs/tscs*.h
17147 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17148
17149 TTY LAYER
17150 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17151 M:      Jiri Slaby <jslaby@suse.com>
17152 S:      Supported
17153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17154 F:      Documentation/driver-api/serial/
17155 F:      drivers/tty/
17156 F:      drivers/tty/serial/serial_core.c
17157 F:      include/linux/serial_core.h
17158 F:      include/linux/serial.h
17159 F:      include/linux/tty.h
17160 F:      include/uapi/linux/serial_core.h
17161 F:      include/uapi/linux/serial.h
17162 F:      include/uapi/linux/tty.h
17163
17164 TUA9001 MEDIA DRIVER
17165 M:      Antti Palosaari <crope@iki.fi>
17166 L:      linux-media@vger.kernel.org
17167 W:      https://linuxtv.org
17168 W:      http://palosaari.fi/linux/
17169 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17170 T:      git git://linuxtv.org/anttip/media_tree.git
17171 S:      Maintained
17172 F:      drivers/media/tuners/tua9001*
17173
17174 TULIP NETWORK DRIVERS
17175 L:      netdev@vger.kernel.org
17176 L:      linux-parisc@vger.kernel.org
17177 S:      Orphan
17178 F:      drivers/net/ethernet/dec/tulip/
17179
17180 TUN/TAP driver
17181 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17182 W:      http://vtun.sourceforge.net/tun
17183 S:      Maintained
17184 F:      Documentation/networking/tuntap.txt
17185 F:      arch/um/os-Linux/drivers/
17186
17187 TURBOCHANNEL SUBSYSTEM
17188 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17189 M:      Ralf Baechle <ralf@linux-mips.org>
17190 L:      linux-mips@vger.kernel.org
17191 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17192 S:      Maintained
17193 F:      drivers/tc/
17194 F:      include/linux/tc.h
17195
17196 TURBOSTAT UTILITY
17197 M:      "Len Brown" <lenb@kernel.org>
17198 L:      linux-pm@vger.kernel.org
17199 B:      https://bugzilla.kernel.org
17200 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17202 S:      Supported
17203 F:      tools/power/x86/turbostat/
17204
17205 TW5864 VIDEO4LINUX DRIVER
17206 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17207 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17208 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17209 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17210 L:      linux-media@vger.kernel.org
17211 S:      Supported
17212 F:      drivers/media/pci/tw5864/
17213
17214 TW68 VIDEO4LINUX DRIVER
17215 M:      Hans Verkuil <hverkuil@xs4all.nl>
17216 L:      linux-media@vger.kernel.org
17217 T:      git git://linuxtv.org/media_tree.git
17218 W:      https://linuxtv.org
17219 S:      Odd Fixes
17220 F:      drivers/media/pci/tw68/
17221
17222 TW686X VIDEO4LINUX DRIVER
17223 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17224 L:      linux-media@vger.kernel.org
17225 T:      git git://linuxtv.org/media_tree.git
17226 W:      http://linuxtv.org
17227 S:      Maintained
17228 F:      drivers/media/pci/tw686x/
17229
17230 UACCE ACCELERATOR FRAMEWORK
17231 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17232 M:      Zhou Wang <wangzhou1@hisilicon.com>
17233 L:      linux-accelerators@lists.ozlabs.org
17234 L:      linux-kernel@vger.kernel.org
17235 S:      Maintained
17236 F:      Documentation/ABI/testing/sysfs-driver-uacce
17237 F:      Documentation/misc-devices/uacce.rst
17238 F:      drivers/misc/uacce/
17239 F:      include/linux/uacce.h
17240 F:      include/uapi/misc/uacce/
17241
17242 UBI FILE SYSTEM (UBIFS)
17243 M:      Richard Weinberger <richard@nod.at>
17244 L:      linux-mtd@lists.infradead.org
17245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17247 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17248 S:      Supported
17249 F:      Documentation/filesystems/ubifs.rst
17250 F:      fs/ubifs/
17251
17252 UCLINUX (M68KNOMMU AND COLDFIRE)
17253 M:      Greg Ungerer <gerg@linux-m68k.org>
17254 W:      http://www.linux-m68k.org/
17255 W:      http://www.uclinux.org/
17256 L:      linux-m68k@lists.linux-m68k.org
17257 L:      uclinux-dev@uclinux.org  (subscribers-only)
17258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17259 S:      Maintained
17260 F:      arch/m68k/coldfire/
17261 F:      arch/m68k/68*/
17262 F:      arch/m68k/*/*_no.*
17263 F:      arch/m68k/include/asm/*_no.*
17264
17265 UDF FILESYSTEM
17266 M:      Jan Kara <jack@suse.com>
17267 S:      Maintained
17268 F:      Documentation/filesystems/udf.rst
17269 F:      fs/udf/
17270
17271 UDRAW TABLET
17272 M:      Bastien Nocera <hadess@hadess.net>
17273 L:      linux-input@vger.kernel.org
17274 S:      Maintained
17275 F:      drivers/hid/hid-udraw-ps3.c
17276
17277 UFS FILESYSTEM
17278 M:      Evgeniy Dushistov <dushistov@mail.ru>
17279 S:      Maintained
17280 F:      Documentation/admin-guide/ufs.rst
17281 F:      fs/ufs/
17282
17283 UHID USERSPACE HID IO DRIVER
17284 M:      David Herrmann <dh.herrmann@googlemail.com>
17285 L:      linux-input@vger.kernel.org
17286 S:      Maintained
17287 F:      drivers/hid/uhid.c
17288 F:      include/uapi/linux/uhid.h
17289
17290 ULPI BUS
17291 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17292 L:      linux-usb@vger.kernel.org
17293 S:      Maintained
17294 F:      drivers/usb/common/ulpi.c
17295 F:      include/linux/ulpi/
17296
17297 UNICODE SUBSYSTEM
17298 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17299 L:      linux-fsdevel@vger.kernel.org
17300 S:      Supported
17301 F:      fs/unicode/
17302
17303 UNICORE32 ARCHITECTURE
17304 M:      Guan Xuetao <gxt@pku.edu.cn>
17305 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17306 S:      Maintained
17307 T:      git git://github.com/gxt/linux.git
17308 F:      arch/unicore32/
17309
17310 UNIFDEF
17311 M:      Tony Finch <dot@dotat.at>
17312 W:      http://dotat.at/prog/unifdef
17313 S:      Maintained
17314 F:      scripts/unifdef.c
17315
17316 UNIFORM CDROM DRIVER
17317 M:      Jens Axboe <axboe@kernel.dk>
17318 W:      http://www.kernel.dk
17319 S:      Maintained
17320 F:      Documentation/cdrom/
17321 F:      drivers/cdrom/cdrom.c
17322 F:      include/linux/cdrom.h
17323 F:      include/uapi/linux/cdrom.h
17324
17325 UNISYS S-PAR DRIVERS
17326 M:      David Kershner <david.kershner@unisys.com>
17327 L:      sparmaintainer@unisys.com (Unisys internal)
17328 S:      Supported
17329 F:      include/linux/visorbus.h
17330 F:      drivers/visorbus/
17331 F:      drivers/staging/unisys/
17332
17333 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17334 R:      Alim Akhtar <alim.akhtar@samsung.com>
17335 R:      Avri Altman <avri.altman@wdc.com>
17336 L:      linux-scsi@vger.kernel.org
17337 S:      Supported
17338 F:      Documentation/scsi/ufs.rst
17339 F:      drivers/scsi/ufs/
17340
17341 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17342 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
17343 L:      linux-scsi@vger.kernel.org
17344 S:      Supported
17345 F:      drivers/scsi/ufs/*dwc*
17346
17347 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17348 M:      Stanley Chu <stanley.chu@mediatek.com>
17349 L:      linux-scsi@vger.kernel.org
17350 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
17351 S:      Maintained
17352 F:      drivers/scsi/ufs/ufs-mediatek*
17353
17354 UNSORTED BLOCK IMAGES (UBI)
17355 M:      Richard Weinberger <richard@nod.at>
17356 W:      http://www.linux-mtd.infradead.org/
17357 L:      linux-mtd@lists.infradead.org
17358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17360 S:      Supported
17361 F:      drivers/mtd/ubi/
17362 F:      include/linux/mtd/ubi.h
17363 F:      include/uapi/mtd/ubi-user.h
17364
17365 USB "USBNET" DRIVER FRAMEWORK
17366 M:      Oliver Neukum <oneukum@suse.com>
17367 L:      netdev@vger.kernel.org
17368 W:      http://www.linux-usb.org/usbnet
17369 S:      Maintained
17370 F:      drivers/net/usb/usbnet.c
17371 F:      include/linux/usb/usbnet.h
17372
17373 USB ACM DRIVER
17374 M:      Oliver Neukum <oneukum@suse.com>
17375 L:      linux-usb@vger.kernel.org
17376 S:      Maintained
17377 F:      Documentation/usb/acm.rst
17378 F:      drivers/usb/class/cdc-acm.*
17379
17380 USB APPLE MFI FASTCHARGE DRIVER
17381 M:      Bastien Nocera <hadess@hadess.net>
17382 L:      linux-usb@vger.kernel.org
17383 S:      Maintained
17384 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17385
17386 USB AR5523 WIRELESS DRIVER
17387 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
17388 L:      linux-wireless@vger.kernel.org
17389 S:      Maintained
17390 F:      drivers/net/wireless/ath/ar5523/
17391
17392 USB ATTACHED SCSI
17393 M:      Oliver Neukum <oneukum@suse.com>
17394 L:      linux-usb@vger.kernel.org
17395 L:      linux-scsi@vger.kernel.org
17396 S:      Maintained
17397 F:      drivers/usb/storage/uas.c
17398
17399 USB CDC ETHERNET DRIVER
17400 M:      Oliver Neukum <oliver@neukum.org>
17401 L:      linux-usb@vger.kernel.org
17402 S:      Maintained
17403 F:      drivers/net/usb/cdc_*.c
17404 F:      include/uapi/linux/usb/cdc.h
17405
17406 USB CHAOSKEY DRIVER
17407 M:      Keith Packard <keithp@keithp.com>
17408 L:      linux-usb@vger.kernel.org
17409 S:      Maintained
17410 F:      drivers/usb/misc/chaoskey.c
17411
17412 USB CYPRESS C67X00 DRIVER
17413 M:      Peter Korsgaard <jacmet@sunsite.dk>
17414 L:      linux-usb@vger.kernel.org
17415 S:      Maintained
17416 F:      drivers/usb/c67x00/
17417
17418 USB DAVICOM DM9601 DRIVER
17419 M:      Peter Korsgaard <jacmet@sunsite.dk>
17420 L:      netdev@vger.kernel.org
17421 W:      http://www.linux-usb.org/usbnet
17422 S:      Maintained
17423 F:      drivers/net/usb/dm9601.c
17424
17425 USB EHCI DRIVER
17426 M:      Alan Stern <stern@rowland.harvard.edu>
17427 L:      linux-usb@vger.kernel.org
17428 S:      Maintained
17429 F:      Documentation/usb/ehci.rst
17430 F:      drivers/usb/host/ehci*
17431
17432 USB GADGET/PERIPHERAL SUBSYSTEM
17433 M:      Felipe Balbi <balbi@kernel.org>
17434 L:      linux-usb@vger.kernel.org
17435 W:      http://www.linux-usb.org/gadget
17436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17437 S:      Maintained
17438 F:      drivers/usb/gadget/
17439 F:      include/linux/usb/gadget*
17440
17441 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17442 M:      Jiri Kosina <jikos@kernel.org>
17443 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
17444 L:      linux-usb@vger.kernel.org
17445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17446 S:      Maintained
17447 F:      Documentation/hid/hiddev.rst
17448 F:      drivers/hid/usbhid/
17449
17450 USB INTEL XHCI ROLE MUX DRIVER
17451 M:      Hans de Goede <hdegoede@redhat.com>
17452 L:      linux-usb@vger.kernel.org
17453 S:      Maintained
17454 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17455
17456 USB IP DRIVER FOR HISILICON KIRIN
17457 M:      Yu Chen <chenyu56@huawei.com>
17458 M:      Binghui Wang <wangbinghui@hisilicon.com>
17459 L:      linux-usb@vger.kernel.org
17460 S:      Maintained
17461 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17462 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17463
17464 USB ISP116X DRIVER
17465 M:      Olav Kongas <ok@artecdesign.ee>
17466 L:      linux-usb@vger.kernel.org
17467 S:      Maintained
17468 F:      drivers/usb/host/isp116x*
17469 F:      include/linux/usb/isp116x.h
17470
17471 USB LAN78XX ETHERNET DRIVER
17472 M:      Woojung Huh <woojung.huh@microchip.com>
17473 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17474 L:      netdev@vger.kernel.org
17475 S:      Maintained
17476 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17477 F:      drivers/net/usb/lan78xx.*
17478 F:      include/dt-bindings/net/microchip-lan78xx.h
17479
17480 USB MASS STORAGE DRIVER
17481 M:      Alan Stern <stern@rowland.harvard.edu>
17482 L:      linux-usb@vger.kernel.org
17483 L:      usb-storage@lists.one-eyed-alien.net
17484 S:      Maintained
17485 F:      drivers/usb/storage/
17486
17487 USB MIDI DRIVER
17488 M:      Clemens Ladisch <clemens@ladisch.de>
17489 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17491 S:      Maintained
17492 F:      sound/usb/midi.*
17493
17494 USB NETWORKING DRIVERS
17495 L:      linux-usb@vger.kernel.org
17496 S:      Odd Fixes
17497 F:      drivers/net/usb/
17498
17499 USB OHCI DRIVER
17500 M:      Alan Stern <stern@rowland.harvard.edu>
17501 L:      linux-usb@vger.kernel.org
17502 S:      Maintained
17503 F:      Documentation/usb/ohci.rst
17504 F:      drivers/usb/host/ohci*
17505
17506 USB OTG FSM (Finite State Machine)
17507 M:      Peter Chen <Peter.Chen@nxp.com>
17508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17509 L:      linux-usb@vger.kernel.org
17510 S:      Maintained
17511 F:      drivers/usb/common/usb-otg-fsm.c
17512
17513 USB OVER IP DRIVER
17514 M:      Valentina Manea <valentina.manea.m@gmail.com>
17515 M:      Shuah Khan <shuah@kernel.org>
17516 M:      Shuah Khan <skhan@linuxfoundation.org>
17517 L:      linux-usb@vger.kernel.org
17518 S:      Maintained
17519 F:      Documentation/usb/usbip_protocol.rst
17520 F:      drivers/usb/usbip/
17521 F:      tools/usb/usbip/
17522 F:      tools/testing/selftests/drivers/usb/usbip/
17523
17524 USB PEGASUS DRIVER
17525 M:      Petko Manolov <petkan@nucleusys.com>
17526 L:      linux-usb@vger.kernel.org
17527 L:      netdev@vger.kernel.org
17528 T:      git git://github.com/petkan/pegasus.git
17529 W:      https://github.com/petkan/pegasus
17530 S:      Maintained
17531 F:      drivers/net/usb/pegasus.*
17532
17533 USB PHY LAYER
17534 M:      Felipe Balbi <balbi@kernel.org>
17535 L:      linux-usb@vger.kernel.org
17536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17537 S:      Maintained
17538 F:      drivers/usb/phy/
17539
17540 USB PRINTER DRIVER (usblp)
17541 M:      Pete Zaitcev <zaitcev@redhat.com>
17542 L:      linux-usb@vger.kernel.org
17543 S:      Supported
17544 F:      drivers/usb/class/usblp.c
17545
17546 USB QMI WWAN NETWORK DRIVER
17547 M:      Bjørn Mork <bjorn@mork.no>
17548 L:      netdev@vger.kernel.org
17549 S:      Maintained
17550 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17551 F:      drivers/net/usb/qmi_wwan.c
17552
17553 USB RTL8150 DRIVER
17554 M:      Petko Manolov <petkan@nucleusys.com>
17555 L:      linux-usb@vger.kernel.org
17556 L:      netdev@vger.kernel.org
17557 T:      git git://github.com/petkan/rtl8150.git
17558 W:      https://github.com/petkan/rtl8150
17559 S:      Maintained
17560 F:      drivers/net/usb/rtl8150.c
17561
17562 USB SERIAL SUBSYSTEM
17563 M:      Johan Hovold <johan@kernel.org>
17564 L:      linux-usb@vger.kernel.org
17565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17566 S:      Maintained
17567 F:      Documentation/usb/usb-serial.rst
17568 F:      drivers/usb/serial/
17569 F:      include/linux/usb/serial.h
17570
17571 USB SMSC75XX ETHERNET DRIVER
17572 M:      Steve Glendinning <steve.glendinning@shawell.net>
17573 L:      netdev@vger.kernel.org
17574 S:      Maintained
17575 F:      drivers/net/usb/smsc75xx.*
17576
17577 USB SMSC95XX ETHERNET DRIVER
17578 M:      Steve Glendinning <steve.glendinning@shawell.net>
17579 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17580 L:      netdev@vger.kernel.org
17581 S:      Maintained
17582 F:      drivers/net/usb/smsc95xx.*
17583
17584 USB SUBSYSTEM
17585 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17586 L:      linux-usb@vger.kernel.org
17587 W:      http://www.linux-usb.org
17588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17589 S:      Supported
17590 F:      Documentation/devicetree/bindings/usb/
17591 F:      Documentation/usb/
17592 F:      drivers/usb/
17593 F:      include/linux/usb.h
17594 F:      include/linux/usb/
17595
17596 USB TYPEC BUS FOR ALTERNATE MODES
17597 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17598 L:      linux-usb@vger.kernel.org
17599 S:      Maintained
17600 F:      Documentation/ABI/testing/sysfs-bus-typec
17601 F:      Documentation/driver-api/usb/typec_bus.rst
17602 F:      drivers/usb/typec/altmodes/
17603 F:      include/linux/usb/typec_altmode.h
17604
17605 USB TYPEC CLASS
17606 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17607 L:      linux-usb@vger.kernel.org
17608 S:      Maintained
17609 F:      Documentation/ABI/testing/sysfs-class-typec
17610 F:      Documentation/driver-api/usb/typec.rst
17611 F:      drivers/usb/typec/
17612 F:      include/linux/usb/typec.h
17613
17614 USB TYPEC PI3USB30532 MUX DRIVER
17615 M:      Hans de Goede <hdegoede@redhat.com>
17616 L:      linux-usb@vger.kernel.org
17617 S:      Maintained
17618 F:      drivers/usb/typec/mux/pi3usb30532.c
17619
17620 USB TYPEC PORT CONTROLLER DRIVERS
17621 M:      Guenter Roeck <linux@roeck-us.net>
17622 L:      linux-usb@vger.kernel.org
17623 S:      Maintained
17624 F:      drivers/usb/typec/tcpm/
17625
17626 USB UHCI DRIVER
17627 M:      Alan Stern <stern@rowland.harvard.edu>
17628 L:      linux-usb@vger.kernel.org
17629 S:      Maintained
17630 F:      drivers/usb/host/uhci*
17631
17632 USB VIDEO CLASS
17633 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17634 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17635 L:      linux-media@vger.kernel.org
17636 T:      git git://linuxtv.org/media_tree.git
17637 W:      http://www.ideasonboard.org/uvc/
17638 S:      Maintained
17639 F:      drivers/media/usb/uvc/
17640 F:      include/uapi/linux/uvcvideo.h
17641
17642 USB VISION DRIVER
17643 M:      Hans Verkuil <hverkuil@xs4all.nl>
17644 L:      linux-media@vger.kernel.org
17645 T:      git git://linuxtv.org/media_tree.git
17646 W:      https://linuxtv.org
17647 S:      Odd Fixes
17648 F:      drivers/staging/media/usbvision/
17649
17650 USB WEBCAM GADGET
17651 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17652 L:      linux-usb@vger.kernel.org
17653 S:      Maintained
17654 F:      drivers/usb/gadget/function/*uvc*
17655 F:      drivers/usb/gadget/legacy/webcam.c
17656 F:      include/uapi/linux/usb/g_uvc.h
17657
17658 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17659 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17660 L:      linux-wireless@vger.kernel.org
17661 S:      Maintained
17662 F:      drivers/net/wireless/rndis_wlan.c
17663
17664 USB XHCI DRIVER
17665 M:      Mathias Nyman <mathias.nyman@intel.com>
17666 L:      linux-usb@vger.kernel.org
17667 S:      Supported
17668 F:      drivers/usb/host/xhci*
17669 F:      drivers/usb/host/pci-quirks*
17670
17671 USB ZD1201 DRIVER
17672 L:      linux-wireless@vger.kernel.org
17673 W:      http://linux-lc100020.sourceforge.net
17674 S:      Orphan
17675 F:      drivers/net/wireless/zydas/zd1201.*
17676
17677 USB ZR364XX DRIVER
17678 M:      Antoine Jacquet <royale@zerezo.com>
17679 L:      linux-usb@vger.kernel.org
17680 L:      linux-media@vger.kernel.org
17681 T:      git git://linuxtv.org/media_tree.git
17682 W:      http://royale.zerezo.com/zr364xx/
17683 S:      Maintained
17684 F:      Documentation/media/v4l-drivers/zr364xx*
17685 F:      drivers/media/usb/zr364xx/
17686
17687 USER-MODE LINUX (UML)
17688 M:      Jeff Dike <jdike@addtoit.com>
17689 M:      Richard Weinberger <richard@nod.at>
17690 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17691 L:      linux-um@lists.infradead.org
17692 W:      http://user-mode-linux.sourceforge.net
17693 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17695 S:      Maintained
17696 F:      Documentation/virt/uml/
17697 F:      arch/um/
17698 F:      arch/x86/um/
17699 F:      fs/hostfs/
17700
17701 USERSPACE COPYIN/COPYOUT (UIOVEC)
17702 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17703 S:      Maintained
17704 F:      lib/iov_iter.c
17705 F:      include/linux/uio.h
17706
17707 USERSPACE DMA BUFFER DRIVER
17708 M:      Gerd Hoffmann <kraxel@redhat.com>
17709 S:      Maintained
17710 L:      dri-devel@lists.freedesktop.org
17711 F:      drivers/dma-buf/udmabuf.c
17712 F:      include/uapi/linux/udmabuf.h
17713 T:      git git://anongit.freedesktop.org/drm/drm-misc
17714
17715 USERSPACE I/O (UIO)
17716 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17717 S:      Maintained
17718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17719 F:      Documentation/driver-api/uio-howto.rst
17720 F:      drivers/uio/
17721 F:      include/linux/uio_driver.h
17722
17723 UTIL-LINUX PACKAGE
17724 M:      Karel Zak <kzak@redhat.com>
17725 L:      util-linux@vger.kernel.org
17726 W:      http://en.wikipedia.org/wiki/Util-linux
17727 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17728 S:      Maintained
17729
17730 UUID HELPERS
17731 M:      Christoph Hellwig <hch@lst.de>
17732 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17733 L:      linux-kernel@vger.kernel.org
17734 T:      git git://git.infradead.org/users/hch/uuid.git
17735 F:      lib/uuid.c
17736 F:      lib/test_uuid.c
17737 F:      include/linux/uuid.h
17738 F:      include/uapi/linux/uuid.h
17739 S:      Maintained
17740
17741 UVESAFB DRIVER
17742 M:      Michal Januszewski <spock@gentoo.org>
17743 L:      linux-fbdev@vger.kernel.org
17744 W:      https://github.com/mjanusz/v86d
17745 S:      Maintained
17746 F:      Documentation/fb/uvesafb.rst
17747 F:      drivers/video/fbdev/uvesafb.*
17748
17749 VF610 NAND DRIVER
17750 M:      Stefan Agner <stefan@agner.ch>
17751 L:      linux-mtd@lists.infradead.org
17752 S:      Supported
17753 F:      drivers/mtd/nand/raw/vf610_nfc.c
17754
17755 VFAT/FAT/MSDOS FILESYSTEM
17756 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17757 S:      Maintained
17758 F:      Documentation/filesystems/vfat.rst
17759 F:      fs/fat/
17760
17761 VFIO DRIVER
17762 M:      Alex Williamson <alex.williamson@redhat.com>
17763 R:      Cornelia Huck <cohuck@redhat.com>
17764 L:      kvm@vger.kernel.org
17765 T:      git git://github.com/awilliam/linux-vfio.git
17766 S:      Maintained
17767 F:      Documentation/driver-api/vfio.rst
17768 F:      drivers/vfio/
17769 F:      include/linux/vfio.h
17770 F:      include/uapi/linux/vfio.h
17771
17772 VFIO MEDIATED DEVICE DRIVERS
17773 M:      Kirti Wankhede <kwankhede@nvidia.com>
17774 L:      kvm@vger.kernel.org
17775 S:      Maintained
17776 F:      Documentation/driver-api/vfio-mediated-device.rst
17777 F:      drivers/vfio/mdev/
17778 F:      include/linux/mdev.h
17779 F:      samples/vfio-mdev/
17780
17781 VFIO PLATFORM DRIVER
17782 M:      Eric Auger <eric.auger@redhat.com>
17783 L:      kvm@vger.kernel.org
17784 S:      Maintained
17785 F:      drivers/vfio/platform/
17786
17787 VGA_SWITCHEROO
17788 R:      Lukas Wunner <lukas@wunner.de>
17789 S:      Maintained
17790 F:      Documentation/gpu/vga-switcheroo.rst
17791 F:      drivers/gpu/vga/vga_switcheroo.c
17792 F:      include/linux/vga_switcheroo.h
17793 T:      git git://anongit.freedesktop.org/drm/drm-misc
17794
17795 VIA RHINE NETWORK DRIVER
17796 S:      Orphan
17797 F:      drivers/net/ethernet/via/via-rhine.c
17798
17799 VIA SD/MMC CARD CONTROLLER DRIVER
17800 M:      Bruce Chang <brucechang@via.com.tw>
17801 M:      Harald Welte <HaraldWelte@viatech.com>
17802 S:      Maintained
17803 F:      drivers/mmc/host/via-sdmmc.c
17804
17805 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17806 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17807 L:      linux-fbdev@vger.kernel.org
17808 S:      Maintained
17809 F:      include/linux/via-core.h
17810 F:      include/linux/via-gpio.h
17811 F:      include/linux/via_i2c.h
17812 F:      drivers/video/fbdev/via/
17813
17814 VIA VELOCITY NETWORK DRIVER
17815 M:      Francois Romieu <romieu@fr.zoreil.com>
17816 L:      netdev@vger.kernel.org
17817 S:      Maintained
17818 F:      drivers/net/ethernet/via/via-velocity.*
17819
17820 VICODEC VIRTUAL CODEC DRIVER
17821 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
17822 L:      linux-media@vger.kernel.org
17823 T:      git git://linuxtv.org/media_tree.git
17824 W:      https://linuxtv.org
17825 S:      Maintained
17826 F:      drivers/media/platform/vicodec/*
17827
17828 VIDEO MULTIPLEXER DRIVER
17829 M:      Philipp Zabel <p.zabel@pengutronix.de>
17830 L:      linux-media@vger.kernel.org
17831 S:      Maintained
17832 F:      drivers/media/platform/video-mux.c
17833
17834 VIDEO I2C POLLING DRIVER
17835 M:      Matt Ranostay <matt.ranostay@konsulko.com>
17836 L:      linux-media@vger.kernel.org
17837 S:      Maintained
17838 F:      drivers/media/i2c/video-i2c.c
17839
17840 VIDEOBUF2 FRAMEWORK
17841 M:      Pawel Osciak <pawel@osciak.com>
17842 M:      Marek Szyprowski <m.szyprowski@samsung.com>
17843 M:      Kyungmin Park <kyungmin.park@samsung.com>
17844 R:      Tomasz Figa <tfiga@chromium.org>
17845 L:      linux-media@vger.kernel.org
17846 S:      Maintained
17847 F:      drivers/media/common/videobuf2/*
17848 F:      include/media/videobuf2-*
17849
17850 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17851 M:      Helen Koike <helen.koike@collabora.com>
17852 R:      Shuah Khan <skhan@linuxfoundation.org>
17853 L:      linux-media@vger.kernel.org
17854 T:      git git://linuxtv.org/media_tree.git
17855 W:      https://linuxtv.org
17856 S:      Maintained
17857 F:      drivers/media/platform/vimc/*
17858
17859 VIRT LIB
17860 M:      Alex Williamson <alex.williamson@redhat.com>
17861 M:      Paolo Bonzini <pbonzini@redhat.com>
17862 L:      kvm@vger.kernel.org
17863 S:      Supported
17864 F:      virt/lib/
17865
17866 VIRTIO AND VHOST VSOCK DRIVER
17867 M:      Stefan Hajnoczi <stefanha@redhat.com>
17868 M:      Stefano Garzarella <sgarzare@redhat.com>
17869 L:      kvm@vger.kernel.org
17870 L:      virtualization@lists.linux-foundation.org
17871 L:      netdev@vger.kernel.org
17872 S:      Maintained
17873 F:      include/linux/virtio_vsock.h
17874 F:      include/uapi/linux/virtio_vsock.h
17875 F:      include/uapi/linux/vsockmon.h
17876 F:      include/uapi/linux/vm_sockets_diag.h
17877 F:      net/vmw_vsock/diag.c
17878 F:      net/vmw_vsock/af_vsock_tap.c
17879 F:      net/vmw_vsock/virtio_transport_common.c
17880 F:      net/vmw_vsock/virtio_transport.c
17881 F:      net/vmw_vsock/vsock_loopback.c
17882 F:      drivers/net/vsockmon.c
17883 F:      drivers/vhost/vsock.c
17884 F:      tools/testing/vsock/
17885
17886 VIRTIO CONSOLE DRIVER
17887 M:      Amit Shah <amit@kernel.org>
17888 L:      virtualization@lists.linux-foundation.org
17889 S:      Maintained
17890 F:      drivers/char/virtio_console.c
17891 F:      include/linux/virtio_console.h
17892 F:      include/uapi/linux/virtio_console.h
17893
17894 VIRTIO CORE AND NET DRIVERS
17895 M:      "Michael S. Tsirkin" <mst@redhat.com>
17896 M:      Jason Wang <jasowang@redhat.com>
17897 L:      virtualization@lists.linux-foundation.org
17898 S:      Maintained
17899 F:      Documentation/devicetree/bindings/virtio/
17900 F:      drivers/virtio/
17901 F:      tools/virtio/
17902 F:      drivers/net/virtio_net.c
17903 F:      drivers/block/virtio_blk.c
17904 F:      include/linux/virtio*.h
17905 F:      include/uapi/linux/virtio_*.h
17906 F:      drivers/crypto/virtio/
17907 F:      mm/balloon_compaction.c
17908
17909 VIRTIO BLOCK AND SCSI DRIVERS
17910 M:      "Michael S. Tsirkin" <mst@redhat.com>
17911 M:      Jason Wang <jasowang@redhat.com>
17912 R:      Paolo Bonzini <pbonzini@redhat.com>
17913 R:      Stefan Hajnoczi <stefanha@redhat.com>
17914 L:      virtualization@lists.linux-foundation.org
17915 S:      Maintained
17916 F:      drivers/block/virtio_blk.c
17917 F:      drivers/scsi/virtio_scsi.c
17918 F:      include/uapi/linux/virtio_blk.h
17919 F:      include/uapi/linux/virtio_scsi.h
17920 F:      drivers/vhost/scsi.c
17921
17922 VIRTIO CRYPTO DRIVER
17923 M:      Gonglei <arei.gonglei@huawei.com>
17924 L:      virtualization@lists.linux-foundation.org
17925 L:      linux-crypto@vger.kernel.org
17926 S:      Maintained
17927 F:      drivers/crypto/virtio/
17928 F:      include/uapi/linux/virtio_crypto.h
17929
17930 VIRTIO DRIVERS FOR S390
17931 M:      Cornelia Huck <cohuck@redhat.com>
17932 M:      Halil Pasic <pasic@linux.ibm.com>
17933 L:      linux-s390@vger.kernel.org
17934 L:      virtualization@lists.linux-foundation.org
17935 L:      kvm@vger.kernel.org
17936 S:      Supported
17937 F:      drivers/s390/virtio/
17938 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17939
17940 VIRTIO FILE SYSTEM
17941 M:      Vivek Goyal <vgoyal@redhat.com>
17942 M:      Stefan Hajnoczi <stefanha@redhat.com>
17943 M:      Miklos Szeredi <miklos@szeredi.hu>
17944 L:      virtualization@lists.linux-foundation.org
17945 L:      linux-fsdevel@vger.kernel.org
17946 W:      https://virtio-fs.gitlab.io/
17947 S:      Supported
17948 F:      fs/fuse/virtio_fs.c
17949 F:      include/uapi/linux/virtio_fs.h
17950 F:      Documentation/filesystems/virtiofs.rst
17951
17952 VIRTIO GPU DRIVER
17953 M:      David Airlie <airlied@linux.ie>
17954 M:      Gerd Hoffmann <kraxel@redhat.com>
17955 L:      dri-devel@lists.freedesktop.org
17956 L:      virtualization@lists.linux-foundation.org
17957 T:      git git://anongit.freedesktop.org/drm/drm-misc
17958 S:      Maintained
17959 F:      drivers/gpu/drm/virtio/
17960 F:      include/uapi/linux/virtio_gpu.h
17961
17962 VIRTIO HOST (VHOST)
17963 M:      "Michael S. Tsirkin" <mst@redhat.com>
17964 M:      Jason Wang <jasowang@redhat.com>
17965 L:      kvm@vger.kernel.org
17966 L:      virtualization@lists.linux-foundation.org
17967 L:      netdev@vger.kernel.org
17968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17969 S:      Maintained
17970 F:      drivers/vhost/
17971 F:      include/uapi/linux/vhost.h
17972
17973 VIRTIO INPUT DRIVER
17974 M:      Gerd Hoffmann <kraxel@redhat.com>
17975 S:      Maintained
17976 F:      drivers/virtio/virtio_input.c
17977 F:      include/uapi/linux/virtio_input.h
17978
17979 VIRTIO IOMMU DRIVER
17980 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
17981 L:      virtualization@lists.linux-foundation.org
17982 S:      Maintained
17983 F:      drivers/iommu/virtio-iommu.c
17984 F:      include/uapi/linux/virtio_iommu.h
17985
17986 VIRTUAL BOX GUEST DEVICE DRIVER
17987 M:      Hans de Goede <hdegoede@redhat.com>
17988 M:      Arnd Bergmann <arnd@arndb.de>
17989 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17990 S:      Maintained
17991 F:      include/linux/vbox_utils.h
17992 F:      include/uapi/linux/vbox*.h
17993 F:      drivers/virt/vboxguest/
17994
17995 VIRTUAL BOX SHARED FOLDER VFS DRIVER
17996 M:      Hans de Goede <hdegoede@redhat.com>
17997 L:      linux-fsdevel@vger.kernel.org
17998 S:      Maintained
17999 F:      fs/vboxsf/*
18000
18001 VIRTUAL SERIO DEVICE DRIVER
18002 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18003 S:      Maintained
18004 F:      drivers/input/serio/userio.c
18005 F:      include/uapi/linux/userio.h
18006
18007 VITESSE FELIX ETHERNET SWITCH DRIVER
18008 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
18009 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
18010 L:      netdev@vger.kernel.org
18011 S:      Maintained
18012 F:      drivers/net/dsa/ocelot/*
18013 F:      net/dsa/tag_ocelot.c
18014
18015 VIVID VIRTUAL VIDEO DRIVER
18016 M:      Hans Verkuil <hverkuil@xs4all.nl>
18017 L:      linux-media@vger.kernel.org
18018 T:      git git://linuxtv.org/media_tree.git
18019 W:      https://linuxtv.org
18020 S:      Maintained
18021 F:      drivers/media/platform/vivid/*
18022
18023 VLYNQ BUS
18024 M:      Florian Fainelli <f.fainelli@gmail.com>
18025 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18026 S:      Maintained
18027 F:      drivers/vlynq/vlynq.c
18028 F:      include/linux/vlynq.h
18029
18030 VME SUBSYSTEM
18031 M:      Martyn Welch <martyn@welchs.me.uk>
18032 M:      Manohar Vanga <manohar.vanga@gmail.com>
18033 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18034 L:      devel@driverdev.osuosl.org
18035 S:      Maintained
18036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18037 F:      Documentation/driver-api/vme.rst
18038 F:      drivers/staging/vme/
18039 F:      drivers/vme/
18040 F:      include/linux/vme*
18041
18042 VMWARE BALLOON DRIVER
18043 M:      Nadav Amit <namit@vmware.com>
18044 M:      "VMware, Inc." <pv-drivers@vmware.com>
18045 L:      linux-kernel@vger.kernel.org
18046 S:      Maintained
18047 F:      drivers/misc/vmw_balloon.c
18048
18049 VMWARE HYPERVISOR INTERFACE
18050 M:      Thomas Hellstrom <thellstrom@vmware.com>
18051 M:      "VMware, Inc." <pv-drivers@vmware.com>
18052 L:      virtualization@lists.linux-foundation.org
18053 S:      Supported
18054 F:      arch/x86/kernel/cpu/vmware.c
18055 F:      arch/x86/include/asm/vmware.h
18056
18057 VMWARE VIRTUAL PTP CLOCK DRIVER
18058 M:      Vivek Thampi <vithampi@vmware.com>
18059 M:      "VMware, Inc." <pv-drivers@vmware.com>
18060 L:      netdev@vger.kernel.org
18061 S:      Supported
18062 F:      drivers/ptp/ptp_vmw.c
18063
18064 VMWARE PVRDMA DRIVER
18065 M:      Adit Ranadive <aditr@vmware.com>
18066 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18067 L:      linux-rdma@vger.kernel.org
18068 S:      Maintained
18069 F:      drivers/infiniband/hw/vmw_pvrdma/
18070
18071 VMware PVSCSI driver
18072 M:      Jim Gill <jgill@vmware.com>
18073 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18074 L:      linux-scsi@vger.kernel.org
18075 S:      Maintained
18076 F:      drivers/scsi/vmw_pvscsi.c
18077 F:      drivers/scsi/vmw_pvscsi.h
18078
18079 VMWARE VMMOUSE SUBDRIVER
18080 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18081 M:      "VMware, Inc." <pv-drivers@vmware.com>
18082 L:      linux-input@vger.kernel.org
18083 S:      Maintained
18084 F:      drivers/input/mouse/vmmouse.c
18085 F:      drivers/input/mouse/vmmouse.h
18086
18087 VMWARE VMXNET3 ETHERNET DRIVER
18088 M:      Ronak Doshi <doshir@vmware.com>
18089 M:      "VMware, Inc." <pv-drivers@vmware.com>
18090 L:      netdev@vger.kernel.org
18091 S:      Maintained
18092 F:      drivers/net/vmxnet3/
18093
18094 VOCORE VOCORE2 BOARD
18095 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18096 L:      linux-mips@vger.kernel.org
18097 S:      Maintained
18098 F:      arch/mips/boot/dts/ralink/vocore2.dts
18099
18100 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18101 M:      Liam Girdwood <lgirdwood@gmail.com>
18102 M:      Mark Brown <broonie@kernel.org>
18103 L:      linux-kernel@vger.kernel.org
18104 W:      http://www.slimlogic.co.uk/?p=48
18105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18106 S:      Supported
18107 F:      Documentation/devicetree/bindings/regulator/
18108 F:      Documentation/power/regulator/
18109 F:      drivers/regulator/
18110 F:      include/dt-bindings/regulator/
18111 F:      include/linux/regulator/
18112 K:      regulator_get_optional
18113
18114 VRF
18115 M:      David Ahern <dsahern@kernel.org>
18116 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18117 L:      netdev@vger.kernel.org
18118 S:      Maintained
18119 F:      drivers/net/vrf.c
18120 F:      Documentation/networking/vrf.txt
18121
18122 VSPRINTF
18123 M:      Petr Mladek <pmladek@suse.com>
18124 M:      Steven Rostedt <rostedt@goodmis.org>
18125 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18126 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18127 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18129 S:      Maintained
18130 F:      lib/vsprintf.c
18131 F:      lib/test_printf.c
18132 F:      Documentation/core-api/printk-formats.rst
18133
18134 VT1211 HARDWARE MONITOR DRIVER
18135 M:      Juerg Haefliger <juergh@gmail.com>
18136 L:      linux-hwmon@vger.kernel.org
18137 S:      Maintained
18138 F:      Documentation/hwmon/vt1211.rst
18139 F:      drivers/hwmon/vt1211.c
18140
18141 VT8231 HARDWARE MONITOR DRIVER
18142 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18143 L:      linux-hwmon@vger.kernel.org
18144 S:      Maintained
18145 F:      drivers/hwmon/vt8231.c
18146
18147 VUB300 USB to SDIO/SD/MMC bridge chip
18148 L:      linux-mmc@vger.kernel.org
18149 S:      Orphan
18150 F:      drivers/mmc/host/vub300.c
18151
18152 W1 DALLAS'S 1-WIRE BUS
18153 M:      Evgeniy Polyakov <zbr@ioremap.net>
18154 S:      Maintained
18155 F:      Documentation/devicetree/bindings/w1/
18156 F:      Documentation/w1/
18157 F:      drivers/w1/
18158 F:      include/linux/w1.h
18159
18160 W83791D HARDWARE MONITORING DRIVER
18161 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18162 L:      linux-hwmon@vger.kernel.org
18163 S:      Maintained
18164 F:      Documentation/hwmon/w83791d.rst
18165 F:      drivers/hwmon/w83791d.c
18166
18167 W83793 HARDWARE MONITORING DRIVER
18168 M:      Rudolf Marek <r.marek@assembler.cz>
18169 L:      linux-hwmon@vger.kernel.org
18170 S:      Maintained
18171 F:      Documentation/hwmon/w83793.rst
18172 F:      drivers/hwmon/w83793.c
18173
18174 W83795 HARDWARE MONITORING DRIVER
18175 M:      Jean Delvare <jdelvare@suse.com>
18176 L:      linux-hwmon@vger.kernel.org
18177 S:      Maintained
18178 F:      drivers/hwmon/w83795.c
18179
18180 W83L51xD SD/MMC CARD INTERFACE DRIVER
18181 M:      Pierre Ossman <pierre@ossman.eu>
18182 S:      Maintained
18183 F:      drivers/mmc/host/wbsd.*
18184
18185 WACOM PROTOCOL 4 SERIAL TABLETS
18186 M:      Julian Squires <julian@cipht.net>
18187 M:      Hans de Goede <hdegoede@redhat.com>
18188 L:      linux-input@vger.kernel.org
18189 S:      Maintained
18190 F:      drivers/input/tablet/wacom_serial4.c
18191
18192 WATCHDOG DEVICE DRIVERS
18193 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18194 M:      Guenter Roeck <linux@roeck-us.net>
18195 L:      linux-watchdog@vger.kernel.org
18196 W:      http://www.linux-watchdog.org/
18197 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18198 S:      Maintained
18199 F:      Documentation/devicetree/bindings/watchdog/
18200 F:      Documentation/watchdog/
18201 F:      drivers/watchdog/
18202 F:      include/linux/watchdog.h
18203 F:      include/uapi/linux/watchdog.h
18204
18205 WHISKEYCOVE PMIC GPIO DRIVER
18206 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18207 L:      linux-gpio@vger.kernel.org
18208 S:      Maintained
18209 F:      drivers/gpio/gpio-wcove.c
18210
18211 WHWAVE RTC DRIVER
18212 M:      Dianlong Li <long17.cool@163.com>
18213 L:      linux-rtc@vger.kernel.org
18214 S:      Maintained
18215 F:      drivers/rtc/rtc-sd3078.c
18216
18217 WIIMOTE HID DRIVER
18218 M:      David Herrmann <dh.herrmann@googlemail.com>
18219 L:      linux-input@vger.kernel.org
18220 S:      Maintained
18221 F:      drivers/hid/hid-wiimote*
18222
18223 WILOCITY WIL6210 WIRELESS DRIVER
18224 M:      Maya Erez <merez@codeaurora.org>
18225 L:      linux-wireless@vger.kernel.org
18226 L:      wil6210@qti.qualcomm.com
18227 S:      Supported
18228 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
18229 F:      drivers/net/wireless/ath/wil6210/
18230
18231 WIMAX STACK
18232 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18233 M:      linux-wimax@intel.com
18234 L:      wimax@linuxwimax.org (subscribers-only)
18235 S:      Supported
18236 W:      http://linuxwimax.org
18237 F:      Documentation/admin-guide/wimax/wimax.rst
18238 F:      include/linux/wimax/debug.h
18239 F:      include/net/wimax.h
18240 F:      include/uapi/linux/wimax.h
18241 F:      net/wimax/
18242
18243 WINBOND CIR DRIVER
18244 M:      David Härdeman <david@hardeman.nu>
18245 S:      Maintained
18246 F:      drivers/media/rc/winbond-cir.c
18247
18248 RCMM REMOTE CONTROLS DECODER
18249 M:      Patrick Lerda <patrick9876@free.fr>
18250 S:      Maintained
18251 F:      drivers/media/rc/ir-rcmm-decoder.c
18252
18253 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18254 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18255 L:      linux-watchdog@vger.kernel.org
18256 S:      Maintained
18257 F:      drivers/watchdog/ebc-c384_wdt.c
18258
18259 WINSYSTEMS WS16C48 GPIO DRIVER
18260 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18261 L:      linux-gpio@vger.kernel.org
18262 S:      Maintained
18263 F:      drivers/gpio/gpio-ws16c48.c
18264
18265 WIREGUARD SECURE NETWORK TUNNEL
18266 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18267 S:      Maintained
18268 F:      drivers/net/wireguard/
18269 F:      tools/testing/selftests/wireguard/
18270 L:      wireguard@lists.zx2c4.com
18271 L:      netdev@vger.kernel.org
18272
18273 WISTRON LAPTOP BUTTON DRIVER
18274 M:      Miloslav Trmac <mitr@volny.cz>
18275 S:      Maintained
18276 F:      drivers/input/misc/wistron_btns.c
18277
18278 WL3501 WIRELESS PCMCIA CARD DRIVER
18279 L:      linux-wireless@vger.kernel.org
18280 S:      Odd fixes
18281 F:      drivers/net/wireless/wl3501*
18282
18283 WOLFSON MICROELECTRONICS DRIVERS
18284 L:      patches@opensource.cirrus.com
18285 T:      git https://github.com/CirrusLogic/linux-drivers.git
18286 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18287 S:      Supported
18288 F:      Documentation/hwmon/wm83??.rst
18289 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
18290 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
18291 F:      Documentation/devicetree/bindings/mfd/arizona.txt
18292 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18293 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
18294 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18295 F:      drivers/clk/clk-wm83*.c
18296 F:      drivers/extcon/extcon-arizona.c
18297 F:      drivers/leds/leds-wm83*.c
18298 F:      drivers/gpio/gpio-*wm*.c
18299 F:      drivers/gpio/gpio-arizona.c
18300 F:      drivers/hwmon/wm83??-hwmon.c
18301 F:      drivers/input/misc/wm831x-on.c
18302 F:      drivers/input/touchscreen/wm831x-ts.c
18303 F:      drivers/input/touchscreen/wm97*.c
18304 F:      drivers/mfd/arizona*
18305 F:      drivers/mfd/wm*.c
18306 F:      drivers/mfd/cs47l24*
18307 F:      drivers/power/supply/wm83*.c
18308 F:      drivers/rtc/rtc-wm83*.c
18309 F:      drivers/regulator/wm8*.c
18310 F:      drivers/regulator/arizona*
18311 F:      drivers/video/backlight/wm83*_bl.c
18312 F:      drivers/watchdog/wm83*_wdt.c
18313 F:      include/linux/mfd/arizona/
18314 F:      include/linux/mfd/wm831x/
18315 F:      include/linux/mfd/wm8350/
18316 F:      include/linux/mfd/wm8400*
18317 F:      include/linux/regulator/arizona*
18318 F:      include/linux/wm97xx.h
18319 F:      include/sound/wm????.h
18320 F:      sound/soc/codecs/arizona.?
18321 F:      sound/soc/codecs/wm*
18322 F:      sound/soc/codecs/cs47l24*
18323
18324 WORKQUEUE
18325 M:      Tejun Heo <tj@kernel.org>
18326 R:      Lai Jiangshan <jiangshanlai@gmail.com>
18327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18328 S:      Maintained
18329 F:      include/linux/workqueue.h
18330 F:      kernel/workqueue.c
18331 F:      Documentation/core-api/workqueue.rst
18332
18333 X-POWERS AXP288 PMIC DRIVERS
18334 M:      Hans de Goede <hdegoede@redhat.com>
18335 S:      Maintained
18336 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18337 N:      axp288
18338
18339 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18340 M:      Chen-Yu Tsai <wens@csie.org>
18341 L:      linux-kernel@vger.kernel.org
18342 S:      Maintained
18343 N:      axp[128]
18344
18345 X.25 NETWORK LAYER
18346 M:      Andrew Hendry <andrew.hendry@gmail.com>
18347 L:      linux-x25@vger.kernel.org
18348 S:      Odd Fixes
18349 F:      Documentation/networking/x25*
18350 F:      include/net/x25*
18351 F:      net/x25/
18352
18353 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18354 M:      Thomas Gleixner <tglx@linutronix.de>
18355 M:      Ingo Molnar <mingo@redhat.com>
18356 M:      Borislav Petkov <bp@alien8.de>
18357 R:      "H. Peter Anvin" <hpa@zytor.com>
18358 M:      x86@kernel.org
18359 L:      linux-kernel@vger.kernel.org
18360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18361 S:      Maintained
18362 F:      Documentation/devicetree/bindings/x86/
18363 F:      Documentation/x86/
18364 F:      arch/x86/
18365
18366 X86 ENTRY CODE
18367 M:      Andy Lutomirski <luto@kernel.org>
18368 L:      linux-kernel@vger.kernel.org
18369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18370 S:      Maintained
18371 F:      arch/x86/entry/
18372
18373 X86 MCE INFRASTRUCTURE
18374 M:      Tony Luck <tony.luck@intel.com>
18375 M:      Borislav Petkov <bp@alien8.de>
18376 L:      linux-edac@vger.kernel.org
18377 S:      Maintained
18378 F:      arch/x86/kernel/cpu/mce/*
18379
18380 X86 MICROCODE UPDATE SUPPORT
18381 M:      Borislav Petkov <bp@alien8.de>
18382 S:      Maintained
18383 F:      arch/x86/kernel/cpu/microcode/*
18384
18385 X86 MM
18386 M:      Dave Hansen <dave.hansen@linux.intel.com>
18387 M:      Andy Lutomirski <luto@kernel.org>
18388 M:      Peter Zijlstra <peterz@infradead.org>
18389 L:      linux-kernel@vger.kernel.org
18390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18391 S:      Maintained
18392 F:      arch/x86/mm/
18393
18394 X86 PLATFORM DRIVERS
18395 M:      Darren Hart <dvhart@infradead.org>
18396 M:      Andy Shevchenko <andy@infradead.org>
18397 L:      platform-driver-x86@vger.kernel.org
18398 S:      Odd Fixes
18399 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18400 F:      drivers/platform/olpc/
18401 F:      drivers/platform/x86/
18402
18403 X86 PLATFORM DRIVERS - ARCH
18404 R:      Darren Hart <dvhart@infradead.org>
18405 R:      Andy Shevchenko <andy@infradead.org>
18406 L:      platform-driver-x86@vger.kernel.org
18407 L:      x86@kernel.org
18408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18409 S:      Maintained
18410 F:      arch/x86/platform
18411
18412 X86 VDSO
18413 M:      Andy Lutomirski <luto@kernel.org>
18414 L:      linux-kernel@vger.kernel.org
18415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18416 S:      Maintained
18417 F:      arch/x86/entry/vdso/
18418
18419 XARRAY
18420 M:      Matthew Wilcox <willy@infradead.org>
18421 L:      linux-fsdevel@vger.kernel.org
18422 S:      Supported
18423 F:      Documentation/core-api/xarray.rst
18424 F:      lib/idr.c
18425 F:      lib/xarray.c
18426 F:      include/linux/idr.h
18427 F:      include/linux/xarray.h
18428 F:      tools/testing/radix-tree
18429
18430 XBOX DVD IR REMOTE
18431 M:      Benjamin Valentin <benpicco@googlemail.com>
18432 S:      Maintained
18433 F:      drivers/media/rc/xbox_remote.c
18434 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18435
18436 XC2028/3028 TUNER DRIVER
18437 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18438 L:      linux-media@vger.kernel.org
18439 W:      https://linuxtv.org
18440 T:      git git://linuxtv.org/media_tree.git
18441 S:      Maintained
18442 F:      drivers/media/tuners/tuner-xc2028.*
18443
18444 XDP (eXpress Data Path)
18445 M:      Alexei Starovoitov <ast@kernel.org>
18446 M:      Daniel Borkmann <daniel@iogearbox.net>
18447 M:      David S. Miller <davem@davemloft.net>
18448 M:      Jakub Kicinski <kuba@kernel.org>
18449 M:      Jesper Dangaard Brouer <hawk@kernel.org>
18450 M:      John Fastabend <john.fastabend@gmail.com>
18451 L:      netdev@vger.kernel.org
18452 L:      bpf@vger.kernel.org
18453 S:      Supported
18454 F:      net/core/xdp.c
18455 F:      include/net/xdp.h
18456 F:      kernel/bpf/devmap.c
18457 F:      kernel/bpf/cpumap.c
18458 F:      include/trace/events/xdp.h
18459 K:      xdp
18460 N:      xdp
18461
18462 XDP SOCKETS (AF_XDP)
18463 M:      Björn Töpel <bjorn.topel@intel.com>
18464 M:      Magnus Karlsson <magnus.karlsson@intel.com>
18465 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
18466 L:      netdev@vger.kernel.org
18467 L:      bpf@vger.kernel.org
18468 S:      Maintained
18469 F:      kernel/bpf/xskmap.c
18470 F:      net/xdp/
18471
18472 XEN BLOCK SUBSYSTEM
18473 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18474 M:      Roger Pau Monné <roger.pau@citrix.com>
18475 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18476 S:      Supported
18477 F:      drivers/block/xen-blkback/*
18478 F:      drivers/block/xen*
18479
18480 XEN HYPERVISOR ARM
18481 M:      Stefano Stabellini <sstabellini@kernel.org>
18482 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18483 S:      Maintained
18484 F:      arch/arm/xen/
18485 F:      arch/arm/include/asm/xen/
18486
18487 XEN HYPERVISOR ARM64
18488 M:      Stefano Stabellini <sstabellini@kernel.org>
18489 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18490 S:      Maintained
18491 F:      arch/arm64/xen/
18492 F:      arch/arm64/include/asm/xen/
18493
18494 XEN HYPERVISOR INTERFACE
18495 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
18496 M:      Juergen Gross <jgross@suse.com>
18497 R:      Stefano Stabellini <sstabellini@kernel.org>
18498 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18500 S:      Supported
18501 F:      arch/x86/xen/
18502 F:      arch/x86/platform/pvh/
18503 F:      drivers/*/xen-*front.c
18504 F:      drivers/xen/
18505 F:      arch/x86/include/asm/xen/
18506 F:      arch/x86/include/asm/pvclock-abi.h
18507 F:      include/xen/
18508 F:      include/uapi/xen/
18509 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18510 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18511
18512 XEN NETWORK BACKEND DRIVER
18513 M:      Wei Liu <wei.liu@kernel.org>
18514 M:      Paul Durrant <paul@xen.org>
18515 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18516 L:      netdev@vger.kernel.org
18517 S:      Supported
18518 F:      drivers/net/xen-netback/*
18519
18520 XEN PCI SUBSYSTEM
18521 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18522 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18523 S:      Supported
18524 F:      arch/x86/pci/*xen*
18525 F:      drivers/pci/*xen*
18526
18527 XEN PVSCSI DRIVERS
18528 M:      Juergen Gross <jgross@suse.com>
18529 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18530 L:      linux-scsi@vger.kernel.org
18531 S:      Supported
18532 F:      drivers/scsi/xen-scsifront.c
18533 F:      drivers/xen/xen-scsiback.c
18534 F:      include/xen/interface/io/vscsiif.h
18535
18536 XEN SWIOTLB SUBSYSTEM
18537 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18538 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18539 L:      iommu@lists.linux-foundation.org
18540 S:      Supported
18541 F:      arch/x86/xen/*swiotlb*
18542 F:      drivers/xen/*swiotlb*
18543
18544 XEN SOUND FRONTEND DRIVER
18545 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18546 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18547 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18548 S:      Supported
18549 F:      sound/xen/*
18550
18551 XFS FILESYSTEM
18552 M:      Darrick J. Wong <darrick.wong@oracle.com>
18553 M:      linux-xfs@vger.kernel.org
18554 L:      linux-xfs@vger.kernel.org
18555 W:      http://xfs.org/
18556 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18557 S:      Supported
18558 F:      Documentation/admin-guide/xfs.rst
18559 F:      Documentation/ABI/testing/sysfs-fs-xfs
18560 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
18561 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
18562 F:      fs/xfs/
18563 F:      include/uapi/linux/dqblk_xfs.h
18564 F:      include/uapi/linux/fsmap.h
18565
18566 XILINX AXI ETHERNET DRIVER
18567 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18568 S:      Maintained
18569 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18570
18571 XILINX CAN DRIVER
18572 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
18573 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
18574 L:      linux-can@vger.kernel.org
18575 S:      Maintained
18576 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18577 F:      drivers/net/can/xilinx_can.c
18578
18579 XILINX UARTLITE SERIAL DRIVER
18580 M:      Peter Korsgaard <jacmet@sunsite.dk>
18581 L:      linux-serial@vger.kernel.org
18582 S:      Maintained
18583 F:      drivers/tty/serial/uartlite.c
18584
18585 XILINX VIDEO IP CORES
18586 M:      Hyun Kwon <hyun.kwon@xilinx.com>
18587 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18588 L:      linux-media@vger.kernel.org
18589 T:      git git://linuxtv.org/media_tree.git
18590 S:      Supported
18591 F:      Documentation/devicetree/bindings/media/xilinx/
18592 F:      drivers/media/platform/xilinx/
18593 F:      include/uapi/linux/xilinx-v4l2-controls.h
18594
18595 XILINX SD-FEC IP CORES
18596 M:      Derek Kiernan <derek.kiernan@xilinx.com>
18597 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
18598 S:      Maintained
18599 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18600 F:      Documentation/misc-devices/xilinx_sdfec.rst
18601 F:      drivers/misc/xilinx_sdfec.c
18602 F:      drivers/misc/Kconfig
18603 F:      drivers/misc/Makefile
18604 F:      include/uapi/misc/xilinx_sdfec.h
18605
18606 XILLYBUS DRIVER
18607 M:      Eli Billauer <eli.billauer@gmail.com>
18608 L:      linux-kernel@vger.kernel.org
18609 S:      Supported
18610 F:      drivers/char/xillybus/
18611
18612 XLP9XX I2C DRIVER
18613 M:      George Cherian <gcherian@marvell.com>
18614 L:      linux-i2c@vger.kernel.org
18615 W:      http://www.marvell.com
18616 S:      Supported
18617 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18618 F:      drivers/i2c/busses/i2c-xlp9xx.c
18619
18620 XRA1403 GPIO EXPANDER
18621 M:      Nandor Han <nandor.han@ge.com>
18622 M:      Semi Malinen <semi.malinen@ge.com>
18623 L:      linux-gpio@vger.kernel.org
18624 S:      Maintained
18625 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18626 F:      drivers/gpio/gpio-xra1403.c
18627
18628 XTENSA XTFPGA PLATFORM SUPPORT
18629 M:      Max Filippov <jcmvbkbc@gmail.com>
18630 L:      linux-xtensa@linux-xtensa.org
18631 S:      Maintained
18632 F:      drivers/spi/spi-xtensa-xtfpga.c
18633 F:      sound/soc/xtensa/xtfpga-i2s.c
18634
18635 YAM DRIVER FOR AX.25
18636 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
18637 L:      linux-hams@vger.kernel.org
18638 S:      Maintained
18639 F:      drivers/net/hamradio/yam*
18640 F:      include/linux/yam.h
18641
18642 YAMA SECURITY MODULE
18643 M:      Kees Cook <keescook@chromium.org>
18644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18645 S:      Supported
18646 F:      security/yama/
18647 F:      Documentation/admin-guide/LSM/Yama.rst
18648
18649 YEALINK PHONE DRIVER
18650 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
18651 L:      usbb2k-api-dev@nongnu.org
18652 S:      Maintained
18653 F:      Documentation/input/devices/yealink.rst
18654 F:      drivers/input/misc/yealink.*
18655
18656 Z8530 DRIVER FOR AX.25
18657 M:      Joerg Reuter <jreuter@yaina.de>
18658 W:      http://yaina.de/jreuter/
18659 W:      http://www.qsl.net/dl1bke/
18660 L:      linux-hams@vger.kernel.org
18661 S:      Maintained
18662 F:      Documentation/networking/z8530drv.txt
18663 F:      drivers/net/hamradio/*scc.c
18664 F:      drivers/net/hamradio/z8530.h
18665
18666 ZBUD COMPRESSED PAGE ALLOCATOR
18667 M:      Seth Jennings <sjenning@redhat.com>
18668 M:      Dan Streetman <ddstreet@ieee.org>
18669 L:      linux-mm@kvack.org
18670 S:      Maintained
18671 F:      mm/zbud.c
18672 F:      include/linux/zbud.h
18673
18674 ZD1211RW WIRELESS DRIVER
18675 M:      Daniel Drake <dsd@gentoo.org>
18676 M:      Ulrich Kunitz <kune@deine-taler.de>
18677 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18678 L:      linux-wireless@vger.kernel.org
18679 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18680 S:      Maintained
18681 F:      drivers/net/wireless/zydas/zd1211rw/
18682
18683 ZD1301 MEDIA DRIVER
18684 M:      Antti Palosaari <crope@iki.fi>
18685 L:      linux-media@vger.kernel.org
18686 W:      https://linuxtv.org/
18687 W:      http://palosaari.fi/linux/
18688 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18689 S:      Maintained
18690 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18691
18692 ZD1301_DEMOD MEDIA DRIVER
18693 M:      Antti Palosaari <crope@iki.fi>
18694 L:      linux-media@vger.kernel.org
18695 W:      https://linuxtv.org/
18696 W:      http://palosaari.fi/linux/
18697 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18698 S:      Maintained
18699 F:      drivers/media/dvb-frontends/zd1301_demod*
18700
18701 ZHAOXIN PROCESSOR SUPPORT
18702 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18703 L:      linux-kernel@vger.kernel.org
18704 S:      Maintained
18705 F:      arch/x86/kernel/cpu/zhaoxin.c
18706
18707 ZONEFS FILESYSTEM
18708 M:      Damien Le Moal <damien.lemoal@wdc.com>
18709 M:      Naohiro Aota <naohiro.aota@wdc.com>
18710 R:      Johannes Thumshirn <jth@kernel.org>
18711 L:      linux-fsdevel@vger.kernel.org
18712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18713 S:      Maintained
18714 F:      fs/zonefs/
18715 F:      Documentation/filesystems/zonefs.rst
18716
18717 ZPOOL COMPRESSED PAGE STORAGE API
18718 M:      Dan Streetman <ddstreet@ieee.org>
18719 L:      linux-mm@kvack.org
18720 S:      Maintained
18721 F:      mm/zpool.c
18722 F:      include/linux/zpool.h
18723
18724 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18725 M:      Minchan Kim <minchan@kernel.org>
18726 M:      Nitin Gupta <ngupta@vflare.org>
18727 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18728 L:      linux-kernel@vger.kernel.org
18729 S:      Maintained
18730 F:      drivers/block/zram/
18731 F:      Documentation/admin-guide/blockdev/zram.rst
18732
18733 ZS DECSTATION Z85C30 SERIAL DRIVER
18734 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18735 S:      Maintained
18736 F:      drivers/tty/serial/zs.*
18737
18738 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18739 M:      Minchan Kim <minchan@kernel.org>
18740 M:      Nitin Gupta <ngupta@vflare.org>
18741 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18742 L:      linux-mm@kvack.org
18743 S:      Maintained
18744 F:      mm/zsmalloc.c
18745 F:      include/linux/zsmalloc.h
18746 F:      Documentation/vm/zsmalloc.rst
18747
18748 ZSWAP COMPRESSED SWAP CACHING
18749 M:      Seth Jennings <sjenning@redhat.com>
18750 M:      Dan Streetman <ddstreet@ieee.org>
18751 M:      Vitaly Wool <vitaly.wool@konsulko.com>
18752 L:      linux-mm@kvack.org
18753 S:      Maintained
18754 F:      mm/zswap.c
18755
18756 THE REST
18757 M:      Linus Torvalds <torvalds@linux-foundation.org>
18758 L:      linux-kernel@vger.kernel.org
18759 Q:      http://patchwork.kernel.org/project/LKML/list/
18760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18761 S:      Buried alive in reporters
18762 F:      *
18763 F:      */