Merge branch 'for-5.5' of git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu
[sfrench/cifs-2.6.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.txt
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.txt
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.txt
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 W:      http://piie.net/?section=acerhdf
307 S:      Maintained
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 W:      https://01.org/linux-acpi
321 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
323 B:      https://bugzilla.kernel.org
324 S:      Supported
325 F:      drivers/acpi/
326 F:      drivers/pnp/pnpacpi/
327 F:      include/linux/acpi.h
328 F:      include/linux/fwnode.h
329 F:      include/acpi/
330 F:      Documentation/firmware-guide/acpi/
331 F:      Documentation/ABI/testing/sysfs-bus-acpi
332 F:      Documentation/ABI/testing/configfs-acpi
333 F:      drivers/pci/*acpi*
334 F:      drivers/pci/*/*acpi*
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 L:      linux-acpi@vger.kernel.org
341 R:      James Morse <james.morse@arm.com>
342 R:      Tony Luck <tony.luck@intel.com>
343 R:      Borislav Petkov <bp@alien8.de>
344 F:      drivers/acpi/apei/
345
346 ACPI COMPONENT ARCHITECTURE (ACPICA)
347 M:      Robert Moore <robert.moore@intel.com>
348 M:      Erik Schmauss <erik.schmauss@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 W:      https://acpica.org/
353 W:      https://github.com/acpica/acpica/
354 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
356 B:      https://bugzilla.kernel.org
357 B:      https://bugs.acpica.org
358 S:      Supported
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 W:      https://01.org/linux-acpi
367 B:      https://bugzilla.kernel.org
368 S:      Supported
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 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
394 B:      https://bugzilla.kernel.org
395 S:      Supported
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 W:      https://01.org/linux-acpi
402 B:      https://bugzilla.kernel.org
403 S:      Supported
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 W:      https://01.org/linux-acpi
410 B:      https://bugzilla.kernel.org
411 S:      Supported
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.txt
544 F:      drivers/scsi/advansys.c
545
546 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
547 M:      Michael Hennerich <michael.hennerich@analog.com>
548 W:      http://wiki.analog.com/ADXL345
549 W:      http://ez.analog.com/community/linux-device-drivers
550 S:      Supported
551 F:      drivers/input/misc/adxl34x.c
552 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.txt
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.txt
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 ALLEGRO DVT VIDEO IP CORE DRIVER
678 M:      Michael Tretter <m.tretter@pengutronix.de>
679 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
680 L:      linux-media@vger.kernel.org
681 S:      Maintained
682 F:      drivers/staging/media/allegro-dvt/
683
684 ALLWINNER CPUFREQ DRIVER
685 M:      Yangtao Li <tiny.windzz@gmail.com>
686 L:      linux-pm@vger.kernel.org
687 S:      Maintained
688 F:      Documentation/devicetree/bindings/opp/sun50i-nvmem-cpufreq.txt
689 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
690
691 ALLWINNER CRYPTO DRIVERS
692 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
693 L:      linux-crypto@vger.kernel.org
694 S:      Maintained
695 F:      drivers/crypto/allwinner/
696
697 ALLWINNER VPU DRIVER
698 M:      Maxime Ripard <mripard@kernel.org>
699 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
700 L:      linux-media@vger.kernel.org
701 S:      Maintained
702 F:      drivers/staging/media/sunxi/cedrus/
703
704 ALPHA PORT
705 M:      Richard Henderson <rth@twiddle.net>
706 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
707 M:      Matt Turner <mattst88@gmail.com>
708 S:      Odd Fixes
709 L:      linux-alpha@vger.kernel.org
710 F:      arch/alpha/
711
712 ALPS PS/2 TOUCHPAD DRIVER
713 R:      Pali Rohár <pali.rohar@gmail.com>
714 F:      drivers/input/mouse/alps.*
715
716 ALTERA I2C CONTROLLER DRIVER
717 M:      Thor Thayer <thor.thayer@linux.intel.com>
718 S:      Maintained
719 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
720 F:      drivers/i2c/busses/i2c-altera.c
721
722 ALTERA MAILBOX DRIVER
723 M:      Ley Foon Tan <lftan@altera.com>
724 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
725 S:      Maintained
726 F:      drivers/mailbox/mailbox-altera.c
727
728 ALTERA PIO DRIVER
729 M:      Tien Hock Loh <thloh@altera.com>
730 L:      linux-gpio@vger.kernel.org
731 S:      Maintained
732 F:      drivers/gpio/gpio-altera.c
733
734 ALTERA SYSTEM MANAGER DRIVER
735 M:      Thor Thayer <thor.thayer@linux.intel.com>
736 S:      Maintained
737 F:      drivers/mfd/altera-sysmgr.c
738 F:      include/linux/mfd/altera-sysmgr.h
739
740 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
741 M:      Thor Thayer <thor.thayer@linux.intel.com>
742 S:      Maintained
743 F:      drivers/gpio/gpio-altera-a10sr.c
744 F:      drivers/mfd/altera-a10sr.c
745 F:      drivers/reset/reset-a10sr.c
746 F:      include/linux/mfd/altera-a10sr.h
747 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
748
749 ALTERA TRIPLE SPEED ETHERNET DRIVER
750 M:      Thor Thayer <thor.thayer@linux.intel.com>
751 L:      netdev@vger.kernel.org
752 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
753 S:      Maintained
754 F:      drivers/net/ethernet/altera/
755
756 ALTERA UART/JTAG UART SERIAL DRIVERS
757 M:      Tobias Klauser <tklauser@distanz.ch>
758 L:      linux-serial@vger.kernel.org
759 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
760 S:      Maintained
761 F:      drivers/tty/serial/altera_uart.c
762 F:      drivers/tty/serial/altera_jtaguart.c
763 F:      include/linux/altera_uart.h
764 F:      include/linux/altera_jtaguart.h
765
766 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
767 M:      Talel Shenhar <talel@amazon.com>
768 S:      Maintained
769 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
770 F:      drivers/thermal/thermal_mmio.c
771
772 AMAZON ETHERNET DRIVERS
773 M:      Netanel Belgazal <netanel@amazon.com>
774 R:      Saeed Bishara <saeedb@amazon.com>
775 R:      Zorik Machulsky <zorik@amazon.com>
776 L:      netdev@vger.kernel.org
777 S:      Supported
778 F:      Documentation/networking/device_drivers/amazon/ena.txt
779 F:      drivers/net/ethernet/amazon/
780
781 AMAZON RDMA EFA DRIVER
782 M:      Gal Pressman <galpress@amazon.com>
783 R:      Yossi Leybovich <sleybo@amazon.com>
784 L:      linux-rdma@vger.kernel.org
785 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
786 S:      Supported
787 F:      drivers/infiniband/hw/efa/
788 F:      include/uapi/rdma/efa-abi.h
789
790 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
791 M:      Tom Lendacky <thomas.lendacky@amd.com>
792 M:      Gary Hook <gary.hook@amd.com>
793 L:      linux-crypto@vger.kernel.org
794 S:      Supported
795 F:      drivers/crypto/ccp/
796 F:      include/linux/ccp.h
797
798 AMD DISPLAY CORE
799 M:      Harry Wentland <harry.wentland@amd.com>
800 M:      Leo Li <sunpeng.li@amd.com>
801 L:      amd-gfx@lists.freedesktop.org
802 T:      git git://people.freedesktop.org/~agd5f/linux
803 S:      Supported
804 F:      drivers/gpu/drm/amd/display/
805
806 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
807 M:      Huang Rui <ray.huang@amd.com>
808 L:      linux-hwmon@vger.kernel.org
809 S:      Supported
810 F:      Documentation/hwmon/fam15h_power.rst
811 F:      drivers/hwmon/fam15h_power.c
812
813 AMD FCH GPIO DRIVER
814 M:      Enrico Weigelt, metux IT consult <info@metux.net>
815 L:      linux-gpio@vger.kernel.org
816 S:      Maintained
817 F:      drivers/gpio/gpio-amd-fch.c
818 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
819
820 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
821 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
822 S:      Orphan
823 F:      drivers/usb/gadget/udc/amd5536udc.*
824
825 AMD GEODE PROCESSOR/CHIPSET SUPPORT
826 M:      Andres Salomon <dilinger@queued.net>
827 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
828 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
829 S:      Supported
830 F:      drivers/char/hw_random/geode-rng.c
831 F:      drivers/crypto/geode*
832 F:      drivers/video/fbdev/geode/
833 F:      arch/x86/include/asm/geode.h
834
835 AMD IOMMU (AMD-VI)
836 M:      Joerg Roedel <joro@8bytes.org>
837 L:      iommu@lists.linux-foundation.org
838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
839 S:      Maintained
840 F:      drivers/iommu/amd_iommu*.[ch]
841 F:      include/linux/amd-iommu.h
842
843 AMD KFD
844 M:      Felix Kuehling <Felix.Kuehling@amd.com>
845 L:      amd-gfx@lists.freedesktop.org
846 T:      git git://people.freedesktop.org/~agd5f/linux
847 S:      Supported
848 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
849 F:      drivers/gpu/drm/amd/amdkfd/
850 F:      drivers/gpu/drm/amd/include/cik_structs.h
851 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
852 F:      drivers/gpu/drm/amd/include/vi_structs.h
853 F:      drivers/gpu/drm/amd/include/v9_structs.h
854 F:      include/uapi/linux/kfd_ioctl.h
855
856 AMD MP2 I2C DRIVER
857 M:      Elie Morisse <syniurge@gmail.com>
858 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
859 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
860 L:      linux-i2c@vger.kernel.org
861 S:      Maintained
862 F:      drivers/i2c/busses/i2c-amd-mp2*
863
864 AMD POWERPLAY
865 M:      Rex Zhu <rex.zhu@amd.com>
866 M:      Evan Quan <evan.quan@amd.com>
867 L:      amd-gfx@lists.freedesktop.org
868 S:      Supported
869 F:      drivers/gpu/drm/amd/powerplay/
870 T:      git git://people.freedesktop.org/~agd5f/linux
871
872 AMD SEATTLE DEVICE TREE SUPPORT
873 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
874 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
875 M:      Tom Lendacky <thomas.lendacky@amd.com>
876 S:      Supported
877 F:      arch/arm64/boot/dts/amd/
878
879 AMD XGBE DRIVER
880 M:      Tom Lendacky <thomas.lendacky@amd.com>
881 L:      netdev@vger.kernel.org
882 S:      Supported
883 F:      drivers/net/ethernet/amd/xgbe/
884 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
885
886 ANALOG DEVICES INC AD5686 DRIVER
887 M:      Stefan Popa <stefan.popa@analog.com>
888 L:      linux-pm@vger.kernel.org
889 W:      http://ez.analog.com/community/linux-device-drivers
890 S:      Supported
891 F:      drivers/iio/dac/ad5686*
892 F:      drivers/iio/dac/ad5696*
893
894 ANALOG DEVICES INC AD5758 DRIVER
895 M:      Stefan Popa <stefan.popa@analog.com>
896 L:      linux-iio@vger.kernel.org
897 W:      http://ez.analog.com/community/linux-device-drivers
898 S:      Supported
899 F:      drivers/iio/dac/ad5758.c
900 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
901
902 ANALOG DEVICES INC AD7124 DRIVER
903 M:      Stefan Popa <stefan.popa@analog.com>
904 L:      linux-iio@vger.kernel.org
905 W:      http://ez.analog.com/community/linux-device-drivers
906 S:      Supported
907 F:      drivers/iio/adc/ad7124.c
908 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
909
910 ANALOG DEVICES INC AD7292 DRIVER
911 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
912 L:      linux-iio@vger.kernel.org
913 W:      http://ez.analog.com/community/linux-device-drivers
914 S:      Supported
915 F:      drivers/iio/adc/ad7292.c
916 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
917
918 ANALOG DEVICES INC AD7606 DRIVER
919 M:      Stefan Popa <stefan.popa@analog.com>
920 M:      Beniamin Bia <beniamin.bia@analog.com>
921 L:      linux-iio@vger.kernel.org
922 W:      http://ez.analog.com/community/linux-device-drivers
923 S:      Supported
924 F:      drivers/iio/adc/ad7606.c
925 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
926
927 ANALOG DEVICES INC AD7768-1 DRIVER
928 M:      Stefan Popa <stefan.popa@analog.com>
929 L:      linux-iio@vger.kernel.org
930 W:      http://ez.analog.com/community/linux-device-drivers
931 S:      Supported
932 F:      drivers/iio/adc/ad7768-1.c
933 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
934
935 ANALOG DEVICES INC AD7780 DRIVER
936 M:      Michael Hennerich <Michael.Hennerich@analog.com>
937 M:      Renato Lui Geh <renatogeh@gmail.com>
938 L:      linux-iio@vger.kernel.org
939 W:      http://ez.analog.com/community/linux-device-drivers
940 S:      Supported
941 F:      drivers/iio/adc/ad7780.c
942 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
943
944 ANALOG DEVICES INC AD9389B DRIVER
945 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
946 L:      linux-media@vger.kernel.org
947 S:      Maintained
948 F:      drivers/media/i2c/ad9389b*
949
950 ANALOG DEVICES INC ADGS1408 DRIVER
951 M:      Mircea Caprioru <mircea.caprioru@analog.com>
952 S:      Supported
953 F:      drivers/mux/adgs1408.c
954 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
955
956 ANALOG DEVICES INC ADIN DRIVER
957 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
958 L:      netdev@vger.kernel.org
959 W:      http://ez.analog.com/community/linux-device-drivers
960 S:      Supported
961 F:      drivers/net/phy/adin.c
962 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
963
964 ANALOG DEVICES INC ADIS DRIVER LIBRARY
965 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
966 S:      Supported
967 L:      linux-iio@vger.kernel.org
968 F:      include/linux/iio/imu/adis.h
969 F:      drivers/iio/imu/adis.c
970
971 ANALOG DEVICES INC ADIS16460 DRIVER
972 M:      Dragos Bogdan <dragos.bogdan@analog.com>
973 S:      Supported
974 L:      linux-iio@vger.kernel.org
975 W:      http://ez.analog.com/community/linux-device-drivers
976 F:      drivers/iio/imu/adis16460.c
977 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
978
979 ANALOG DEVICES INC ADP5061 DRIVER
980 M:      Stefan Popa <stefan.popa@analog.com>
981 L:      linux-pm@vger.kernel.org
982 W:      http://ez.analog.com/community/linux-device-drivers
983 S:      Supported
984 F:      drivers/power/supply/adp5061.c
985
986 ANALOG DEVICES INC ADV7180 DRIVER
987 M:      Lars-Peter Clausen <lars@metafoo.de>
988 L:      linux-media@vger.kernel.org
989 W:      http://ez.analog.com/community/linux-device-drivers
990 S:      Supported
991 F:      drivers/media/i2c/adv7180.c
992
993 ANALOG DEVICES INC ADV748X DRIVER
994 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
995 L:      linux-media@vger.kernel.org
996 S:      Maintained
997 F:      drivers/media/i2c/adv748x/*
998
999 ANALOG DEVICES INC ADV7511 DRIVER
1000 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1001 L:      linux-media@vger.kernel.org
1002 S:      Maintained
1003 F:      drivers/media/i2c/adv7511*
1004
1005 ANALOG DEVICES INC ADV7604 DRIVER
1006 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1007 L:      linux-media@vger.kernel.org
1008 S:      Maintained
1009 F:      drivers/media/i2c/adv7604*
1010
1011 ANALOG DEVICES INC ADV7842 DRIVER
1012 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1013 L:      linux-media@vger.kernel.org
1014 S:      Maintained
1015 F:      drivers/media/i2c/adv7842*
1016
1017 ANALOG DEVICES INC ASOC CODEC DRIVERS
1018 M:      Lars-Peter Clausen <lars@metafoo.de>
1019 M:      Nuno Sá <nuno.sa@analog.com>
1020 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1021 W:      http://wiki.analog.com/
1022 W:      http://ez.analog.com/community/linux-device-drivers
1023 S:      Supported
1024 F:      sound/soc/codecs/adau*
1025 F:      sound/soc/codecs/adav*
1026 F:      sound/soc/codecs/ad1*
1027 F:      sound/soc/codecs/ad7*
1028 F:      sound/soc/codecs/ssm*
1029 F:      sound/soc/codecs/sigmadsp.*
1030
1031 ANALOG DEVICES INC DMA DRIVERS
1032 M:      Lars-Peter Clausen <lars@metafoo.de>
1033 W:      http://ez.analog.com/community/linux-device-drivers
1034 S:      Supported
1035 F:      drivers/dma/dma-axi-dmac.c
1036
1037 ANALOG DEVICES INC IIO DRIVERS
1038 M:      Lars-Peter Clausen <lars@metafoo.de>
1039 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1040 M:      Stefan Popa <stefan.popa@analog.com>
1041 W:      http://wiki.analog.com/
1042 W:      http://ez.analog.com/community/linux-device-drivers
1043 S:      Supported
1044 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1045 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1046 F:      drivers/iio/*/ad*
1047 F:      drivers/iio/adc/ltc2497*
1048 X:      drivers/iio/*/adjd*
1049 F:      drivers/staging/iio/*/ad*
1050
1051 ANALOGBITS PLL LIBRARIES
1052 M:      Paul Walmsley <paul.walmsley@sifive.com>
1053 S:      Supported
1054 F:      drivers/clk/analogbits/*
1055 F:      include/linux/clk/analogbits*
1056
1057 ANDES ARCHITECTURE
1058 M:      Nick Hu <nickhu@andestech.com>
1059 M:      Greentime Hu <green.hu@gmail.com>
1060 M:      Vincent Chen <deanbo422@gmail.com>
1061 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1062 S:      Supported
1063 F:      arch/nds32/
1064 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1065 F:      Documentation/devicetree/bindings/nds32/
1066 K:      nds32
1067 N:      nds32
1068
1069 ANDROID CONFIG FRAGMENTS
1070 M:      Rob Herring <robh@kernel.org>
1071 S:      Supported
1072 F:      kernel/configs/android*
1073
1074 ANDROID DRIVERS
1075 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1076 M:      Arve Hjønnevåg <arve@android.com>
1077 M:      Todd Kjos <tkjos@android.com>
1078 M:      Martijn Coenen <maco@android.com>
1079 M:      Joel Fernandes <joel@joelfernandes.org>
1080 M:      Christian Brauner <christian@brauner.io>
1081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1082 L:      devel@driverdev.osuosl.org
1083 S:      Supported
1084 F:      drivers/android/
1085 F:      drivers/staging/android/
1086
1087 ANDROID GOLDFISH PIC DRIVER
1088 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1089 S:      Supported
1090 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1091 F:      drivers/irqchip/irq-goldfish-pic.c
1092
1093 ANDROID GOLDFISH RTC DRIVER
1094 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1095 S:      Supported
1096 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1097 F:      drivers/rtc/rtc-goldfish.c
1098
1099 ANDROID ION DRIVER
1100 M:      Laura Abbott <labbott@redhat.com>
1101 M:      Sumit Semwal <sumit.semwal@linaro.org>
1102 L:      devel@driverdev.osuosl.org
1103 L:      dri-devel@lists.freedesktop.org
1104 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1105 S:      Supported
1106 F:      drivers/staging/android/ion
1107 F:      drivers/staging/android/uapi/ion.h
1108
1109 AOA (Apple Onboard Audio) ALSA DRIVER
1110 M:      Johannes Berg <johannes@sipsolutions.net>
1111 L:      linuxppc-dev@lists.ozlabs.org
1112 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1113 S:      Maintained
1114 F:      sound/aoa/
1115
1116 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1117 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1118 L:      linux-iio@vger.kernel.org
1119 S:      Maintained
1120 F:      drivers/iio/adc/stx104.c
1121
1122 APM DRIVER
1123 M:      Jiri Kosina <jikos@kernel.org>
1124 S:      Odd fixes
1125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1126 F:      arch/x86/kernel/apm_32.c
1127 F:      include/linux/apm_bios.h
1128 F:      include/uapi/linux/apm_bios.h
1129 F:      drivers/char/apm-emulation.c
1130
1131 APPARMOR SECURITY MODULE
1132 M:      John Johansen <john.johansen@canonical.com>
1133 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1134 W:      wiki.apparmor.net
1135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1136 S:      Supported
1137 F:      security/apparmor/
1138 F:      Documentation/admin-guide/LSM/apparmor.rst
1139
1140 APPLE BCM5974 MULTITOUCH DRIVER
1141 M:      Henrik Rydberg <rydberg@bitmath.org>
1142 L:      linux-input@vger.kernel.org
1143 S:      Odd fixes
1144 F:      drivers/input/mouse/bcm5974.c
1145
1146 APPLE SMC DRIVER
1147 M:      Henrik Rydberg <rydberg@bitmath.org>
1148 L:      linux-hwmon@vger.kernel.org
1149 S:      Odd fixes
1150 F:      drivers/hwmon/applesmc.c
1151
1152 APPLETALK NETWORK LAYER
1153 L:      netdev@vger.kernel.org
1154 S:      Odd fixes
1155 F:      drivers/net/appletalk/
1156 F:      net/appletalk/
1157 F:      include/linux/atalk.h
1158 F:      include/uapi/linux/atalk.h
1159
1160 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1161 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1162 S:      Supported
1163 F:      arch/arm64/boot/dts/apm/
1164
1165 APPLIED MICRO (APM) X-GENE SOC EDAC
1166 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1167 S:      Supported
1168 F:      drivers/edac/xgene_edac.c
1169 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1170
1171 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1172 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1173 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1174 S:      Supported
1175 F:      drivers/net/ethernet/apm/xgene-v2/
1176
1177 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1178 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1179 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1180 M:      Quan Nguyen <quan@os.amperecomputing.com>
1181 S:      Supported
1182 F:      drivers/net/ethernet/apm/xgene/
1183 F:      drivers/net/phy/mdio-xgene.c
1184 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1185 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1186
1187 APPLIED MICRO (APM) X-GENE SOC PMU
1188 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1189 S:      Supported
1190 F:      drivers/perf/xgene_pmu.c
1191 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1192 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1193
1194 APTINA CAMERA SENSOR PLL
1195 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1196 L:      linux-media@vger.kernel.org
1197 S:      Maintained
1198 F:      drivers/media/i2c/aptina-pll.*
1199
1200 AQUANTIA ETHERNET DRIVER (atlantic)
1201 M:      Igor Russkikh <irusskikh@marvell.com>
1202 L:      netdev@vger.kernel.org
1203 S:      Supported
1204 W:      https://www.marvell.com/
1205 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1206 F:      drivers/net/ethernet/aquantia/atlantic/
1207 F:      Documentation/networking/device_drivers/aquantia/atlantic.txt
1208
1209 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1210 M:      Egor Pomozov <epomozov@marvell.com>
1211 L:      netdev@vger.kernel.org
1212 S:      Supported
1213 W:      http://www.aquantia.com
1214 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1215
1216 ARC FRAMEBUFFER DRIVER
1217 M:      Jaya Kumar <jayalk@intworks.biz>
1218 S:      Maintained
1219 F:      drivers/video/fbdev/arcfb.c
1220 F:      drivers/video/fbdev/core/fb_defio.c
1221
1222 ARC PGU DRM DRIVER
1223 M:      Alexey Brodkin <abrodkin@synopsys.com>
1224 S:      Supported
1225 F:      drivers/gpu/drm/arc/
1226 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1227
1228 ARCNET NETWORK LAYER
1229 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1230 L:      netdev@vger.kernel.org
1231 S:      Maintained
1232 F:      drivers/net/arcnet/
1233 F:      include/uapi/linux/if_arcnet.h
1234
1235 ARM ARCHITECTED TIMER DRIVER
1236 M:      Mark Rutland <mark.rutland@arm.com>
1237 M:      Marc Zyngier <maz@kernel.org>
1238 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239 S:      Maintained
1240 F:      arch/arm/include/asm/arch_timer.h
1241 F:      arch/arm64/include/asm/arch_timer.h
1242 F:      drivers/clocksource/arm_arch_timer.c
1243
1244 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1245 M:      Linus Walleij <linus.walleij@linaro.org>
1246 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1247 S:      Maintained
1248 F:      Documentation/devicetree/bindings/arm/arm-boards
1249 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1250 F:      Documentation/devicetree/bindings/clock/arm-integrator.txt
1251 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1252 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1253 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1254 F:      arch/arm/mach-integrator/
1255 F:      arch/arm/mach-realview/
1256 F:      arch/arm/mach-versatile/
1257 F:      arch/arm/plat-versatile/
1258 F:      arch/arm/boot/dts/arm-realview-*
1259 F:      arch/arm/boot/dts/integrator*
1260 F:      arch/arm/boot/dts/versatile*
1261 F:      drivers/clk/versatile/
1262 F:      drivers/i2c/busses/i2c-versatile.c
1263 F:      drivers/irqchip/irq-versatile-fpga.c
1264 F:      drivers/mtd/maps/physmap_of_versatile.c
1265 F:      drivers/power/reset/arm-versatile-reboot.c
1266 F:      drivers/soc/versatile/
1267
1268 ARM HDLCD DRM DRIVER
1269 M:      Liviu Dudau <liviu.dudau@arm.com>
1270 S:      Supported
1271 F:      drivers/gpu/drm/arm/hdlcd_*
1272 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1273
1274 ARM KOMEDA DRM-KMS DRIVER
1275 M:      James (Qian) Wang <james.qian.wang@arm.com>
1276 M:      Liviu Dudau <liviu.dudau@arm.com>
1277 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1278 L:      Mali DP Maintainers <malidp@foss.arm.com>
1279 S:      Supported
1280 T:      git git://anongit.freedesktop.org/drm/drm-misc
1281 F:      drivers/gpu/drm/arm/display/include/
1282 F:      drivers/gpu/drm/arm/display/komeda/
1283 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1284 F:      Documentation/gpu/komeda-kms.rst
1285
1286 ARM MALI-DP DRM DRIVER
1287 M:      Liviu Dudau <liviu.dudau@arm.com>
1288 M:      Brian Starkey <brian.starkey@arm.com>
1289 L:      Mali DP Maintainers <malidp@foss.arm.com>
1290 S:      Supported
1291 T:      git git://anongit.freedesktop.org/drm/drm-misc
1292 F:      drivers/gpu/drm/arm/
1293 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1294 F:      Documentation/gpu/afbc.rst
1295
1296 ARM MALI PANFROST DRM DRIVER
1297 M:      Rob Herring <robh@kernel.org>
1298 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1299 R:      Steven Price <steven.price@arm.com>
1300 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1301 L:      dri-devel@lists.freedesktop.org
1302 S:      Supported
1303 T:      git git://anongit.freedesktop.org/drm/drm-misc
1304 F:      drivers/gpu/drm/panfrost/
1305 F:      include/uapi/drm/panfrost_drm.h
1306
1307 ARM MFM AND FLOPPY DRIVERS
1308 M:      Ian Molton <spyro@f2s.com>
1309 S:      Maintained
1310 F:      arch/arm/mach-rpc/floppydma.S
1311 F:      arch/arm/include/asm/floppy.h
1312
1313 ARM PMU PROFILING AND DEBUGGING
1314 M:      Will Deacon <will@kernel.org>
1315 M:      Mark Rutland <mark.rutland@arm.com>
1316 S:      Maintained
1317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1318 F:      arch/arm*/kernel/perf_*
1319 F:      arch/arm/oprofile/common.c
1320 F:      arch/arm*/kernel/hw_breakpoint.c
1321 F:      arch/arm*/include/asm/hw_breakpoint.h
1322 F:      arch/arm*/include/asm/perf_event.h
1323 F:      drivers/perf/*
1324 F:      include/linux/perf/arm_pmu.h
1325 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1326 F:      Documentation/devicetree/bindings/perf/
1327
1328 ARM PORT
1329 M:      Russell King <linux@armlinux.org.uk>
1330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1331 W:      http://www.armlinux.org.uk/
1332 S:      Odd Fixes
1333 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1334 F:      arch/arm/
1335 X:      arch/arm/boot/dts/
1336
1337 ARM PRIMECELL AACI PL041 DRIVER
1338 M:      Russell King <linux@armlinux.org.uk>
1339 S:      Odd Fixes
1340 F:      sound/arm/aaci.*
1341
1342 ARM PRIMECELL BUS SUPPORT
1343 M:      Russell King <linux@armlinux.org.uk>
1344 S:      Odd Fixes
1345 F:      drivers/amba/
1346 F:      include/linux/amba/bus.h
1347
1348 ARM PRIMECELL CLCD PL110 DRIVER
1349 M:      Russell King <linux@armlinux.org.uk>
1350 S:      Odd Fixes
1351 F:      drivers/video/fbdev/amba-clcd.*
1352
1353 ARM PRIMECELL KMI PL050 DRIVER
1354 M:      Russell King <linux@armlinux.org.uk>
1355 S:      Odd Fixes
1356 F:      drivers/input/serio/ambakmi.*
1357 F:      include/linux/amba/kmi.h
1358
1359 ARM PRIMECELL MMCI PL180/1 DRIVER
1360 M:      Russell King <linux@armlinux.org.uk>
1361 S:      Odd Fixes
1362 F:      drivers/mmc/host/mmci.*
1363 F:      include/linux/amba/mmci.h
1364
1365 ARM PRIMECELL SSP PL022 SPI DRIVER
1366 M:      Linus Walleij <linus.walleij@linaro.org>
1367 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1368 S:      Maintained
1369 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1370 F:      drivers/spi/spi-pl022.c
1371
1372 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1373 M:      Russell King <linux@armlinux.org.uk>
1374 S:      Odd Fixes
1375 F:      drivers/tty/serial/amba-pl01*.c
1376 F:      include/linux/amba/serial.h
1377
1378 ARM PRIMECELL VIC PL190/PL192 DRIVER
1379 M:      Linus Walleij <linus.walleij@linaro.org>
1380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1381 S:      Maintained
1382 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1383 F:      drivers/irqchip/irq-vic.c
1384
1385 AMAZON ANNAPURNA LABS FIC DRIVER
1386 M:      Talel Shenhar <talel@amazon.com>
1387 S:      Maintained
1388 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
1389 F:      drivers/irqchip/irq-al-fic.c
1390
1391 ARM SMMU DRIVERS
1392 M:      Will Deacon <will@kernel.org>
1393 R:      Robin Murphy <robin.murphy@arm.com>
1394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1395 S:      Maintained
1396 F:      drivers/iommu/arm-smmu*
1397 F:      drivers/iommu/io-pgtable-arm.c
1398 F:      drivers/iommu/io-pgtable-arm-v7s.c
1399
1400 ARM SUB-ARCHITECTURES
1401 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1402 S:      Maintained
1403 F:      arch/arm/mach-*/
1404 F:      arch/arm/plat-*/
1405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1406
1407 ARM/ACTIONS SEMI ARCHITECTURE
1408 M:      Andreas Färber <afaerber@suse.de>
1409 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1410 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1411 S:      Maintained
1412 N:      owl
1413 F:      arch/arm/mach-actions/
1414 F:      arch/arm/boot/dts/owl-*
1415 F:      arch/arm64/boot/dts/actions/
1416 F:      drivers/clk/actions/
1417 F:      drivers/clocksource/timer-owl*
1418 F:      drivers/dma/owl-dma.c
1419 F:      drivers/i2c/busses/i2c-owl.c
1420 F:      drivers/mmc/host/owl-mmc.c
1421 F:      drivers/pinctrl/actions/*
1422 F:      drivers/soc/actions/
1423 F:      include/dt-bindings/power/owl-*
1424 F:      include/linux/soc/actions/
1425 F:      Documentation/devicetree/bindings/arm/actions.yaml
1426 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1427 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1428 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1429 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1430 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1431 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1432 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1433
1434 ARM/ADS SPHERE MACHINE SUPPORT
1435 M:      Lennert Buytenhek <kernel@wantstofly.org>
1436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1437 S:      Maintained
1438
1439 ARM/AFEB9260 MACHINE SUPPORT
1440 M:      Sergey Lapin <slapin@ossfans.org>
1441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1442 S:      Maintained
1443
1444 ARM/AJECO 1ARM MACHINE SUPPORT
1445 M:      Lennert Buytenhek <kernel@wantstofly.org>
1446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1447 S:      Maintained
1448
1449 ARM/Allwinner SoC Clock Support
1450 M:      Emilio López <emilio@elopez.com.ar>
1451 S:      Maintained
1452 F:      drivers/clk/sunxi/
1453
1454 ARM/Allwinner sunXi SoC support
1455 M:      Maxime Ripard <mripard@kernel.org>
1456 M:      Chen-Yu Tsai <wens@csie.org>
1457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1458 S:      Maintained
1459 N:      sun[x456789]i
1460 N:      sun50i
1461 F:      arch/arm/mach-sunxi/
1462 F:      arch/arm64/boot/dts/allwinner/
1463 F:      drivers/clk/sunxi-ng/
1464 F:      drivers/pinctrl/sunxi/
1465 F:      drivers/soc/sunxi/
1466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1467
1468 Allwinner A10 CSI driver
1469 M:      Maxime Ripard <mripard@kernel.org>
1470 L:      linux-media@vger.kernel.org
1471 T:      git git://linuxtv.org/media_tree.git
1472 F:      drivers/media/platform/sunxi/sun4i-csi/
1473 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
1474 S:      Maintained
1475
1476 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1477 M:      Neil Armstrong <narmstrong@baylibre.com>
1478 M:      Jerome Brunet <jbrunet@baylibre.com>
1479 L:      linux-amlogic@lists.infradead.org
1480 S:      Maintained
1481 F:      drivers/clk/meson/
1482 F:      include/dt-bindings/clock/meson*
1483 F:      include/dt-bindings/clock/gxbb*
1484 F:      Documentation/devicetree/bindings/clock/amlogic*
1485
1486 ARM/Amlogic Meson SoC support
1487 M:      Kevin Hilman <khilman@baylibre.com>
1488 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1489 L:      linux-amlogic@lists.infradead.org
1490 W:      http://linux-meson.com/
1491 S:      Maintained
1492 F:      arch/arm/mach-meson/
1493 F:      arch/arm/boot/dts/meson*
1494 F:      arch/arm64/boot/dts/amlogic/
1495 F:      drivers/pinctrl/meson/
1496 F:      drivers/mmc/host/meson*
1497 F:      drivers/soc/amlogic/
1498 F:      drivers/rtc/rtc-meson*
1499 N:      meson
1500
1501 ARM/Amlogic Meson SoC Crypto Drivers
1502 M:      Corentin Labbe <clabbe@baylibre.com>
1503 L:      linux-crypto@vger.kernel.org
1504 L:      linux-amlogic@lists.infradead.org
1505 S:      Maintained
1506 F:      drivers/crypto/amlogic/
1507 F:      Documentation/devicetree/bindings/crypto/amlogic*
1508
1509 ARM/Amlogic Meson SoC Sound Drivers
1510 M:      Jerome Brunet <jbrunet@baylibre.com>
1511 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1512 S:      Maintained
1513 F:      sound/soc/meson/
1514 F:      Documentation/devicetree/bindings/sound/amlogic*
1515
1516 ARM/Annapurna Labs ALPINE ARCHITECTURE
1517 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1518 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1520 S:      Maintained
1521 F:      arch/arm/mach-alpine/
1522 F:      arch/arm/boot/dts/alpine*
1523 F:      arch/arm64/boot/dts/al/
1524 F:      drivers/*/*alpine*
1525
1526 ARM/ARTPEC MACHINE SUPPORT
1527 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1528 M:      Lars Persson <lars.persson@axis.com>
1529 S:      Maintained
1530 L:      linux-arm-kernel@axis.com
1531 F:      arch/arm/mach-artpec
1532 F:      arch/arm/boot/dts/artpec6*
1533 F:      drivers/clk/axis
1534 F:      drivers/crypto/axis
1535 F:      drivers/mmc/host/usdhi6rol0.c
1536 F:      drivers/pinctrl/pinctrl-artpec*
1537 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1538
1539 ARM/ASPEED I2C DRIVER
1540 M:      Brendan Higgins <brendanhiggins@google.com>
1541 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1542 R:      Joel Stanley <joel@jms.id.au>
1543 L:      linux-i2c@vger.kernel.org
1544 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1545 S:      Maintained
1546 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1547 F:      drivers/i2c/busses/i2c-aspeed.c
1548 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1549 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1550
1551 ARM/ASPEED MACHINE SUPPORT
1552 M:      Joel Stanley <joel@jms.id.au>
1553 R:      Andrew Jeffery <andrew@aj.id.au>
1554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1555 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1556 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1557 S:      Supported
1558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1559 F:      arch/arm/mach-aspeed/
1560 F:      arch/arm/boot/dts/aspeed-*
1561 N:      aspeed
1562
1563 ARM/BITMAIN ARCHITECTURE
1564 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566 S:      Maintained
1567 F:      arch/arm64/boot/dts/bitmain/
1568 F:      drivers/clk/clk-bm1880.c
1569 F:      drivers/pinctrl/pinctrl-bm1880.c
1570 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1571 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1572 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1573
1574 ARM/CALXEDA HIGHBANK ARCHITECTURE
1575 M:      Rob Herring <robh@kernel.org>
1576 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1577 S:      Maintained
1578 F:      arch/arm/mach-highbank/
1579 F:      arch/arm/boot/dts/highbank.dts
1580 F:      arch/arm/boot/dts/ecx-*.dts*
1581
1582 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1583 M:      Krzysztof Halasa <khalasa@piap.pl>
1584 S:      Maintained
1585 F:      arch/arm/mach-cns3xxx/
1586
1587 ARM/CAVIUM THUNDER NETWORK DRIVER
1588 M:      Sunil Goutham <sgoutham@cavium.com>
1589 M:      Robert Richter <rric@kernel.org>
1590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1591 S:      Supported
1592 F:      drivers/net/ethernet/cavium/thunder/
1593
1594 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1595 M:      Lukasz Majewski <lukma@denx.de>
1596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1597 S:      Maintained
1598 F:      arch/arm/mach-ep93xx/ts72xx.c
1599
1600 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1601 M:      Alexander Shiyan <shc_work@mail.ru>
1602 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1603 S:      Odd Fixes
1604 N:      clps711x
1605
1606 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1607 M:      Lennert Buytenhek <kernel@wantstofly.org>
1608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1609 S:      Maintained
1610
1611 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1612 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1613 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1615 S:      Maintained
1616 F:      arch/arm/mach-ep93xx/
1617 F:      arch/arm/mach-ep93xx/include/mach/
1618
1619 ARM/CLKDEV SUPPORT
1620 M:      Russell King <linux@armlinux.org.uk>
1621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1622 S:      Maintained
1623 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1624 F:      drivers/clk/clkdev.c
1625
1626 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1627 M:      Mike Rapoport <mike@compulab.co.il>
1628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 S:      Maintained
1630
1631 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1632 M:      Baruch Siach <baruch@tkos.co.il>
1633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1634 S:      Maintained
1635 F:      arch/arm/boot/dts/cx92755*
1636 N:      digicolor
1637
1638 ARM/CONTEC MICRO9 MACHINE SUPPORT
1639 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1640 S:      Maintained
1641 F:      arch/arm/mach-ep93xx/micro9.c
1642
1643 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1644 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1645 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1647 S:      Maintained
1648 F:      drivers/hwtracing/coresight/*
1649 F:      Documentation/trace/coresight/*
1650 F:      Documentation/devicetree/bindings/arm/coresight.txt
1651 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1652 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1653 F:      tools/perf/arch/arm/util/pmu.c
1654 F:      tools/perf/arch/arm/util/auxtrace.c
1655 F:      tools/perf/arch/arm/util/cs-etm.c
1656 F:      tools/perf/arch/arm/util/cs-etm.h
1657 F:      tools/perf/util/cs-etm.*
1658 F:      tools/perf/util/cs-etm-decoder/*
1659
1660 ARM/CORGI MACHINE SUPPORT
1661 M:      Richard Purdie <rpurdie@rpsys.net>
1662 S:      Maintained
1663
1664 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1665 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1666 M:      Linus Walleij <linus.walleij@linaro.org>
1667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1668 T:      git git://github.com/ulli-kroll/linux.git
1669 S:      Maintained
1670 F:      Documentation/devicetree/bindings/arm/gemini.txt
1671 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1672 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1673 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1674 F:      arch/arm/mach-gemini/
1675 F:      drivers/net/ethernet/cortina/
1676 F:      drivers/pinctrl/pinctrl-gemini.c
1677 F:      drivers/rtc/rtc-ftrtc010.c
1678
1679 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1680 M:      Barry Song <baohua@kernel.org>
1681 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1683 S:      Maintained
1684 F:      arch/arm/boot/dts/prima2*
1685 F:      arch/arm/mach-prima2/
1686 F:      drivers/clk/sirf/
1687 F:      drivers/clocksource/timer-prima2.c
1688 F:      drivers/clocksource/timer-atlas7.c
1689 N:      [^a-z]sirf
1690 X:      drivers/gnss
1691
1692 ARM/CZ.NIC TURRIS MOX SUPPORT
1693 M:      Marek Behun <marek.behun@nic.cz>
1694 W:      http://mox.turris.cz
1695 S:      Maintained
1696 F:      Documentation/ABI/testing/debugfs-moxtet
1697 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1698 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1699 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1700 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1701 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1702 F:      include/linux/moxtet.h
1703 F:      drivers/bus/moxtet.c
1704 F:      drivers/firmware/turris-mox-rwtm.c
1705 F:      drivers/gpio/gpio-moxtet.c
1706
1707 ARM/EBSA110 MACHINE SUPPORT
1708 M:      Russell King <linux@armlinux.org.uk>
1709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1710 W:      http://www.armlinux.org.uk/
1711 S:      Maintained
1712 F:      arch/arm/mach-ebsa110/
1713 F:      drivers/net/ethernet/amd/am79c961a.*
1714
1715 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1716 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1717 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1719 S:      Maintained
1720 N:      efm32
1721
1722 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1723 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1725 S:      Maintained
1726 F:      arch/arm/mach-pxa/ezx.c
1727
1728 ARM/FARADAY FA526 PORT
1729 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1731 S:      Maintained
1732 T:      git git://git.berlios.de/gemini-board
1733 F:      arch/arm/mm/*-fa*
1734
1735 ARM/FOOTBRIDGE ARCHITECTURE
1736 M:      Russell King <linux@armlinux.org.uk>
1737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1738 W:      http://www.armlinux.org.uk/
1739 S:      Maintained
1740 F:      arch/arm/include/asm/hardware/dec21285.h
1741 F:      arch/arm/mach-footbridge/
1742
1743 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1744 M:      Shawn Guo <shawnguo@kernel.org>
1745 M:      Sascha Hauer <s.hauer@pengutronix.de>
1746 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1747 R:      Fabio Estevam <festevam@gmail.com>
1748 R:      NXP Linux Team <linux-imx@nxp.com>
1749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1750 S:      Maintained
1751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1752 N:      imx
1753 N:      mxs
1754 X:      drivers/media/i2c/
1755
1756 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1757 M:      Shawn Guo <shawnguo@kernel.org>
1758 M:      Sascha Hauer <s.hauer@pengutronix.de>
1759 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1760 R:      Stefan Agner <stefan@agner.ch>
1761 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1762 S:      Maintained
1763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1764 F:      arch/arm/mach-imx/*vf610*
1765 F:      arch/arm/boot/dts/vf*
1766
1767 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1768 M:      Shawn Guo <shawnguo@kernel.org>
1769 M:      Li Yang <leoyang.li@nxp.com>
1770 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1771 S:      Maintained
1772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1773 F:      arch/arm/boot/dts/ls1021a*
1774 F:      arch/arm64/boot/dts/freescale/fsl-*
1775 F:      arch/arm64/boot/dts/freescale/qoriq-*
1776
1777 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1778 M:      Lennert Buytenhek <kernel@wantstofly.org>
1779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1780 S:      Maintained
1781
1782 ARM/GUMSTIX MACHINE SUPPORT
1783 M:      Steve Sakoman <sakoman@gmail.com>
1784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1785 S:      Maintained
1786
1787 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1788 M:      Philipp Zabel <philipp.zabel@gmail.com>
1789 M:      Paul Parsons <lost.distance@yahoo.com>
1790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1791 S:      Maintained
1792 F:      arch/arm/mach-pxa/hx4700.c
1793 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1794 F:      sound/soc/pxa/hx4700.c
1795
1796 ARM/HISILICON SOC SUPPORT
1797 M:      Wei Xu <xuwei5@hisilicon.com>
1798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1799 W:      http://www.hisilicon.com
1800 S:      Supported
1801 T:      git git://github.com/hisilicon/linux-hisi.git
1802 F:      arch/arm/mach-hisi/
1803 F:      arch/arm/boot/dts/hi3*
1804 F:      arch/arm/boot/dts/hip*
1805 F:      arch/arm/boot/dts/hisi*
1806 F:      arch/arm64/boot/dts/hisilicon/
1807
1808 ARM/HP JORNADA 7XX MACHINE SUPPORT
1809 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1810 W:      www.jlime.com
1811 S:      Maintained
1812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1813 F:      arch/arm/mach-sa1100/jornada720.c
1814 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1815
1816 ARM/IGEP MACHINE SUPPORT
1817 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1818 M:      Javier Martinez Canillas <javier@dowhile0.org>
1819 L:      linux-omap@vger.kernel.org
1820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 S:      Maintained
1822 F:      arch/arm/boot/dts/omap3-igep*
1823
1824 ARM/INCOME PXA270 SUPPORT
1825 M:      Marek Vasut <marek.vasut@gmail.com>
1826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1827 S:      Maintained
1828 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1829
1830 ARM/INTEL IOP32X ARM ARCHITECTURE
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/INTEL IQ81342EX MACHINE SUPPORT
1836 M:      Lennert Buytenhek <kernel@wantstofly.org>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 S:      Maintained
1839
1840 ARM/INTEL IXDP2850 MACHINE SUPPORT
1841 M:      Lennert Buytenhek <kernel@wantstofly.org>
1842 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1843 S:      Maintained
1844
1845 ARM/INTEL IXP4XX ARM ARCHITECTURE
1846 M:      Linus Walleij <linusw@kernel.org>
1847 M:      Imre Kaloz <kaloz@openwrt.org>
1848 M:      Krzysztof Halasa <khalasa@piap.pl>
1849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1850 S:      Maintained
1851 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1852 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1853 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1854 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1855 F:      arch/arm/mach-ixp4xx/
1856 F:      drivers/clocksource/timer-ixp4xx.c
1857 F:      drivers/gpio/gpio-ixp4xx.c
1858 F:      drivers/irqchip/irq-ixp4xx.c
1859 F:      include/linux/irqchip/irq-ixp4xx.h
1860 F:      include/linux/platform_data/timer-ixp4xx.h
1861
1862 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1863 M:      Jonathan Cameron <jic23@cam.ac.uk>
1864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1865 S:      Maintained
1866 F:      arch/arm/mach-pxa/stargate2.c
1867 F:      drivers/pcmcia/pxa2xx_stargate2.c
1868
1869 ARM/INTEL XSC3 (MANZANO) ARM CORE
1870 M:      Lennert Buytenhek <kernel@wantstofly.org>
1871 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1872 S:      Maintained
1873
1874 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1875 M:      Lennert Buytenhek <kernel@wantstofly.org>
1876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1877 S:      Maintained
1878
1879 ARM/LG1K ARCHITECTURE
1880 M:      Chanho Min <chanho.min@lge.com>
1881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1882 S:      Maintained
1883 F:      arch/arm64/boot/dts/lg/
1884
1885 ARM/LOGICPD PXA270 MACHINE SUPPORT
1886 M:      Lennert Buytenhek <kernel@wantstofly.org>
1887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1888 S:      Maintained
1889
1890 ARM/LPC18XX ARCHITECTURE
1891 M:      Vladimir Zapolskiy <vz@mleia.com>
1892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1893 S:      Maintained
1894 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1895 F:      arch/arm/boot/dts/lpc43*
1896 F:      drivers/i2c/busses/i2c-lpc2k.c
1897 F:      drivers/memory/pl172.c
1898 F:      drivers/mtd/spi-nor/nxp-spifi.c
1899 F:      drivers/rtc/rtc-lpc24xx.c
1900 N:      lpc18xx
1901
1902 ARM/LPC32XX SOC SUPPORT
1903 M:      Vladimir Zapolskiy <vz@mleia.com>
1904 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1906 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1907 S:      Maintained
1908 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1909 F:      arch/arm/boot/dts/lpc32*
1910 F:      arch/arm/mach-lpc32xx/
1911 F:      drivers/i2c/busses/i2c-pnx.c
1912 F:      drivers/net/ethernet/nxp/lpc_eth.c
1913 F:      drivers/usb/host/ohci-nxp.c
1914 F:      drivers/watchdog/pnx4008_wdt.c
1915 N:      lpc32xx
1916
1917 ARM/MAGICIAN MACHINE SUPPORT
1918 M:      Philipp Zabel <philipp.zabel@gmail.com>
1919 S:      Maintained
1920
1921 ARM/Marvell Dove/MV78xx0/Orion SOC support
1922 M:      Jason Cooper <jason@lakedaemon.net>
1923 M:      Andrew Lunn <andrew@lunn.ch>
1924 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1925 M:      Gregory Clement <gregory.clement@bootlin.com>
1926 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1927 S:      Maintained
1928 F:      Documentation/devicetree/bindings/soc/dove/
1929 F:      arch/arm/mach-dove/
1930 F:      arch/arm/mach-mv78xx0/
1931 F:      arch/arm/mach-orion5x/
1932 F:      arch/arm/plat-orion/
1933 F:      arch/arm/boot/dts/dove*
1934 F:      arch/arm/boot/dts/orion5x*
1935 T:      git git://git.infradead.org/linux-mvebu.git
1936
1937 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1938 M:      Jason Cooper <jason@lakedaemon.net>
1939 M:      Andrew Lunn <andrew@lunn.ch>
1940 M:      Gregory Clement <gregory.clement@bootlin.com>
1941 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1943 S:      Maintained
1944 F:      arch/arm/boot/dts/armada*
1945 F:      arch/arm/boot/dts/kirkwood*
1946 F:      arch/arm/configs/mvebu_*_defconfig
1947 F:      arch/arm/mach-mvebu/
1948 F:      arch/arm64/boot/dts/marvell/armada*
1949 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1950 F:      drivers/cpufreq/armada-8k-cpufreq.c
1951 F:      drivers/cpufreq/mvebu-cpufreq.c
1952 F:      drivers/irqchip/irq-armada-370-xp.c
1953 F:      drivers/irqchip/irq-mvebu-*
1954 F:      drivers/pinctrl/mvebu/
1955 F:      drivers/rtc/rtc-armada38x.c
1956 T:      git git://git.infradead.org/linux-mvebu.git
1957
1958 ARM/Mediatek RTC DRIVER
1959 M:      Eddie Huang <eddie.huang@mediatek.com>
1960 M:      Sean Wang <sean.wang@mediatek.com>
1961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1962 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1963 S:      Maintained
1964 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1965 F:      drivers/rtc/rtc-mt6397.c
1966 F:      drivers/rtc/rtc-mt7622.c
1967
1968 ARM/Mediatek SoC support
1969 M:      Matthias Brugger <matthias.bgg@gmail.com>
1970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1971 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1972 W:      https://mtk.bcnfs.org/
1973 C:      irc://chat.freenode.net/linux-mediatek
1974 S:      Maintained
1975 F:      arch/arm/boot/dts/mt6*
1976 F:      arch/arm/boot/dts/mt7*
1977 F:      arch/arm/boot/dts/mt8*
1978 F:      arch/arm/mach-mediatek/
1979 F:      arch/arm64/boot/dts/mediatek/
1980 F:      drivers/soc/mediatek/
1981 N:      mtk
1982 N:      mt[678]
1983 K:      mediatek
1984
1985 ARM/Mediatek USB3 PHY DRIVER
1986 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1989 S:      Maintained
1990 F:      drivers/phy/mediatek/
1991 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
1992
1993 ARM/Microchip (AT91) SoC support
1994 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
1995 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
1996 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
1997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1998 W:      http://www.linux4sam.org
1999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2000 S:      Supported
2001 N:      at91
2002 N:      atmel
2003 F:      arch/arm/mach-at91/
2004 F:      include/soc/at91/
2005 F:      arch/arm/boot/dts/at91*.dts
2006 F:      arch/arm/boot/dts/at91*.dtsi
2007 F:      arch/arm/boot/dts/sama*.dts
2008 F:      arch/arm/boot/dts/sama*.dtsi
2009 F:      arch/arm/include/debug/at91.S
2010 F:      drivers/memory/atmel*
2011 F:      drivers/watchdog/sama5d4_wdt.c
2012 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2013 X:      drivers/net/wireless/atmel/
2014
2015 ARM/MIOA701 MACHINE SUPPORT
2016 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 F:      arch/arm/mach-pxa/mioa701.c
2019 S:      Maintained
2020
2021 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2022 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2023 S:      Maintained
2024
2025 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2026 M:      Linus Walleij <linus.walleij@linaro.org>
2027 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2028 S:      Maintained
2029 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2030 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2031 F:      arch/arm/mach-nomadik/
2032 F:      arch/arm/mach-u300/
2033 F:      arch/arm/mach-ux500/
2034 F:      drivers/soc/ux500/
2035 F:      arch/arm/boot/dts/ste-*
2036 F:      drivers/clk/clk-nomadik.c
2037 F:      drivers/clk/clk-u300.c
2038 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2039 F:      drivers/clocksource/timer-u300.c
2040 F:      drivers/dma/coh901318*
2041 F:      drivers/dma/ste_dma40*
2042 F:      drivers/hwspinlock/u8500_hsem.c
2043 F:      drivers/i2c/busses/i2c-nomadik.c
2044 F:      drivers/i2c/busses/i2c-stu300.c
2045 F:      drivers/iio/adc/ab8500-gpadc.c
2046 F:      drivers/mfd/ab3100*
2047 F:      drivers/mfd/ab8500*
2048 F:      drivers/mfd/abx500*
2049 F:      drivers/mfd/dbx500*
2050 F:      drivers/mfd/db8500*
2051 F:      drivers/pinctrl/nomadik/
2052 F:      drivers/pinctrl/pinctrl-coh901*
2053 F:      drivers/pinctrl/pinctrl-u300.c
2054 F:      drivers/rtc/rtc-ab3100.c
2055 F:      drivers/rtc/rtc-ab8500.c
2056 F:      drivers/rtc/rtc-coh901331.c
2057 F:      drivers/rtc/rtc-pl031.c
2058 F:      drivers/watchdog/coh901327_wdt.c
2059 F:      Documentation/devicetree/bindings/arm/ste-*
2060 F:      Documentation/devicetree/bindings/arm/ux500/
2061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2062
2063 ARM/NUVOTON NPCM ARCHITECTURE
2064 M:      Avi Fishman <avifishman70@gmail.com>
2065 M:      Tomer Maimon <tmaimon77@gmail.com>
2066 M:      Tali Perry <tali.perry1@gmail.com>
2067 R:      Patrick Venture <venture@google.com>
2068 R:      Nancy Yuen <yuenn@google.com>
2069 R:      Benjamin Fair <benjaminfair@google.com>
2070 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2071 S:      Supported
2072 F:      arch/arm/mach-npcm/
2073 F:      arch/arm/boot/dts/nuvoton-npcm*
2074 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2075 F:      drivers/*/*npcm*
2076 F:      Documentation/devicetree/bindings/*/*npcm*
2077 F:      Documentation/devicetree/bindings/*/*/*npcm*
2078
2079 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2080 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2081 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2082 S:      Orphan
2083 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2084 F:      arch/arm/mach-s3c24xx/gta02.h
2085
2086 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2087 M:      Alexander Clouter <alex@digriz.org.uk>
2088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2089 W:      http://www.digriz.org.uk/ts78xx/kernel
2090 S:      Maintained
2091 F:      arch/arm/mach-orion5x/ts78xx-*
2092
2093 ARM/OXNAS platform support
2094 M:      Neil Armstrong <narmstrong@baylibre.com>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2097 S:      Maintained
2098 F:      arch/arm/mach-oxnas/
2099 F:      arch/arm/boot/dts/ox8*.dts*
2100 N:      oxnas
2101
2102 ARM/PALM TREO SUPPORT
2103 M:      Tomas Cech <sleep_walker@suse.com>
2104 L:      linux-arm-kernel@lists.infradead.org
2105 W:      http://hackndev.com
2106 S:      Maintained
2107 F:      arch/arm/mach-pxa/palmtreo.*
2108
2109 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2110 M:      Marek Vasut <marek.vasut@gmail.com>
2111 L:      linux-arm-kernel@lists.infradead.org
2112 W:      http://hackndev.com
2113 S:      Maintained
2114 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2115 F:      arch/arm/mach-pxa/palmtx.c
2116 F:      arch/arm/mach-pxa/palmt5.*
2117 F:      arch/arm/mach-pxa/include/mach/palmld.h
2118 F:      arch/arm/mach-pxa/palmld.c
2119 F:      arch/arm/mach-pxa/palmte2.*
2120 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2121 F:      arch/arm/mach-pxa/palmtc.c
2122
2123 ARM/PALMZ72 SUPPORT
2124 M:      Sergey Lapin <slapin@ossfans.org>
2125 L:      linux-arm-kernel@lists.infradead.org
2126 W:      http://hackndev.com
2127 S:      Maintained
2128 F:      arch/arm/mach-pxa/palmz72.*
2129
2130 ARM/PLEB SUPPORT
2131 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2132 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2133 S:      Maintained
2134
2135 ARM/PT DIGITAL BOARD PORT
2136 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2138 W:      http://www.armlinux.org.uk/
2139 S:      Maintained
2140
2141 ARM/QUALCOMM SUPPORT
2142 M:      Andy Gross <agross@kernel.org>
2143 L:      linux-arm-msm@vger.kernel.org
2144 S:      Maintained
2145 F:      Documentation/devicetree/bindings/soc/qcom/
2146 F:      Documentation/devicetree/bindings/*/qcom*
2147 F:      arch/arm/boot/dts/qcom-*.dts
2148 F:      arch/arm/boot/dts/qcom-*.dtsi
2149 F:      arch/arm/mach-qcom/
2150 F:      arch/arm64/boot/dts/qcom/
2151 F:      drivers/*/qcom/
2152 F:      drivers/*/qcom*
2153 F:      drivers/*/*/qcom/
2154 F:      drivers/*/*/qcom*
2155 F:      drivers/*/pm8???-*
2156 F:      drivers/bluetooth/btqcomsmd.c
2157 F:      drivers/clocksource/timer-qcom.c
2158 F:      drivers/extcon/extcon-qcom*
2159 F:      drivers/iommu/msm*
2160 F:      drivers/i2c/busses/i2c-qup.c
2161 F:      drivers/i2c/busses/i2c-qcom-geni.c
2162 F:      drivers/mfd/ssbi.c
2163 F:      drivers/mmc/host/mmci_qcom*
2164 F:      drivers/mmc/host/sdhci-msm.c
2165 F:      drivers/pci/controller/dwc/pcie-qcom.c
2166 F:      drivers/phy/qualcomm/
2167 F:      drivers/power/*/msm*
2168 F:      drivers/reset/reset-qcom-*
2169 F:      drivers/scsi/ufs/ufs-qcom.*
2170 F:      drivers/spi/spi-qup.c
2171 F:      drivers/spi/spi-geni-qcom.c
2172 F:      drivers/spi/spi-qcom-qspi.c
2173 F:      drivers/tty/serial/msm_serial.c
2174 F:      drivers/usb/dwc3/dwc3-qcom.c
2175 F:      include/dt-bindings/*/qcom*
2176 F:      include/linux/*/qcom*
2177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2178
2179 ARM/RADISYS ENP2611 MACHINE SUPPORT
2180 M:      Lennert Buytenhek <kernel@wantstofly.org>
2181 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2182 S:      Maintained
2183
2184 ARM/RDA MICRO ARCHITECTURE
2185 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2186 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2187 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2188 S:      Maintained
2189 F:      arch/arm/boot/dts/rda8810pl-*
2190 F:      drivers/clocksource/timer-rda.c
2191 F:      drivers/gpio/gpio-rda.c
2192 F:      drivers/irqchip/irq-rda-intc.c
2193 F:      drivers/tty/serial/rda-uart.c
2194 F:      Documentation/devicetree/bindings/arm/rda.yaml
2195 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2196 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2197 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2198 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2199
2200 ARM/REALTEK ARCHITECTURE
2201 M:      Andreas Färber <afaerber@suse.de>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 S:      Maintained
2204 F:      arch/arm64/boot/dts/realtek/
2205 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2206
2207 ARM/RENESAS ARM64 ARCHITECTURE
2208 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2209 M:      Magnus Damm <magnus.damm@gmail.com>
2210 L:      linux-renesas-soc@vger.kernel.org
2211 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2213 S:      Supported
2214 F:      arch/arm64/boot/dts/renesas/
2215 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2216 F:      drivers/soc/renesas/
2217 F:      include/linux/soc/renesas/
2218
2219 ARM/RISCPC ARCHITECTURE
2220 M:      Russell King <linux@armlinux.org.uk>
2221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2222 W:      http://www.armlinux.org.uk/
2223 S:      Maintained
2224 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2225 F:      arch/arm/include/asm/hardware/ioc.h
2226 F:      arch/arm/include/asm/hardware/iomd.h
2227 F:      arch/arm/include/asm/hardware/memc.h
2228 F:      arch/arm/mach-rpc/
2229 F:      drivers/net/ethernet/8390/etherh.c
2230 F:      drivers/net/ethernet/i825xx/ether1*
2231 F:      drivers/net/ethernet/seeq/ether3*
2232 F:      drivers/scsi/arm/
2233
2234 ARM/Rockchip SoC support
2235 M:      Heiko Stuebner <heiko@sntech.de>
2236 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2237 L:      linux-rockchip@lists.infradead.org
2238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2239 S:      Maintained
2240 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.txt
2241 F:      arch/arm/boot/dts/rk3*
2242 F:      arch/arm/boot/dts/rv1108*
2243 F:      arch/arm/mach-rockchip/
2244 F:      drivers/clk/rockchip/
2245 F:      drivers/i2c/busses/i2c-rk3x.c
2246 F:      drivers/*/*rockchip*
2247 F:      drivers/*/*/*rockchip*
2248 F:      sound/soc/rockchip/
2249 N:      rockchip
2250
2251 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2252 M:      Kukjin Kim <kgene@kernel.org>
2253 M:      Krzysztof Kozlowski <krzk@kernel.org>
2254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2255 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2256 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2257 S:      Maintained
2258 F:      arch/arm/boot/dts/s3c*
2259 F:      arch/arm/boot/dts/s5p*
2260 F:      arch/arm/boot/dts/exynos*
2261 F:      arch/arm64/boot/dts/exynos/
2262 F:      arch/arm/plat-samsung/
2263 F:      arch/arm/mach-s3c24*/
2264 F:      arch/arm/mach-s3c64xx/
2265 F:      arch/arm/mach-s5p*/
2266 F:      arch/arm/mach-exynos*/
2267 F:      drivers/*/*s3c24*
2268 F:      drivers/*/*/*s3c24*
2269 F:      drivers/*/*s3c64xx*
2270 F:      drivers/*/*s5pv210*
2271 F:      drivers/memory/samsung/
2272 F:      drivers/soc/samsung/
2273 F:      include/linux/soc/samsung/
2274 F:      Documentation/arm/samsung/
2275 F:      Documentation/devicetree/bindings/arm/samsung/
2276 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2277 N:      exynos
2278
2279 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2280 M:      Kyungmin Park <kyungmin.park@samsung.com>
2281 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2282 S:      Maintained
2283 F:      arch/arm/mach-s5pv210/
2284
2285 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2286 M:      Kyungmin Park <kyungmin.park@samsung.com>
2287 M:      Kamil Debski <kamil@wypas.org>
2288 M:      Andrzej Hajda <a.hajda@samsung.com>
2289 L:      linux-arm-kernel@lists.infradead.org
2290 L:      linux-media@vger.kernel.org
2291 S:      Maintained
2292 F:      drivers/media/platform/s5p-g2d/
2293
2294 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2295 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2296 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2297 L:      linux-media@vger.kernel.org
2298 S:      Maintained
2299 F:      drivers/media/platform/s5p-cec/
2300 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2301
2302 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2303 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2304 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2305 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2306 L:      linux-arm-kernel@lists.infradead.org
2307 L:      linux-media@vger.kernel.org
2308 S:      Maintained
2309 F:      drivers/media/platform/s5p-jpeg/
2310
2311 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2312 M:      Kyungmin Park <kyungmin.park@samsung.com>
2313 M:      Kamil Debski <kamil@wypas.org>
2314 M:      Jeongtae Park <jtp.park@samsung.com>
2315 M:      Andrzej Hajda <a.hajda@samsung.com>
2316 L:      linux-arm-kernel@lists.infradead.org
2317 L:      linux-media@vger.kernel.org
2318 S:      Maintained
2319 F:      drivers/media/platform/s5p-mfc/
2320
2321 ARM/SHMOBILE ARM ARCHITECTURE
2322 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2323 M:      Magnus Damm <magnus.damm@gmail.com>
2324 L:      linux-renesas-soc@vger.kernel.org
2325 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2327 S:      Supported
2328 F:      arch/arm/boot/dts/emev2*
2329 F:      arch/arm/boot/dts/gr-peach*
2330 F:      arch/arm/boot/dts/iwg20d-q7*
2331 F:      arch/arm/boot/dts/r7s*
2332 F:      arch/arm/boot/dts/r8a*
2333 F:      arch/arm/boot/dts/r9a*
2334 F:      arch/arm/boot/dts/sh*
2335 F:      arch/arm/configs/shmobile_defconfig
2336 F:      arch/arm/include/debug/renesas-scif.S
2337 F:      arch/arm/mach-shmobile/
2338 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2339 F:      drivers/soc/renesas/
2340 F:      include/linux/soc/renesas/
2341
2342 ARM/SOCFPGA ARCHITECTURE
2343 M:      Dinh Nguyen <dinguyen@kernel.org>
2344 S:      Maintained
2345 F:      arch/arm/mach-socfpga/
2346 F:      arch/arm/boot/dts/socfpga*
2347 F:      arch/arm/configs/socfpga_defconfig
2348 F:      arch/arm64/boot/dts/altera/
2349 F:      arch/arm64/boot/dts/intel/
2350 W:      http://www.rocketboards.org
2351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2352
2353 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2354 M:      Dinh Nguyen <dinguyen@kernel.org>
2355 S:      Maintained
2356 F:      drivers/clk/socfpga/
2357
2358 ARM/SOCFPGA EDAC SUPPORT
2359 M:      Thor Thayer <thor.thayer@linux.intel.com>
2360 S:      Maintained
2361 F:      drivers/edac/altera_edac.
2362
2363 ARM/SPREADTRUM SoC SUPPORT
2364 M:      Orson Zhai <orsonzhai@gmail.com>
2365 M:      Baolin Wang <baolin.wang7@gmail.com>
2366 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2367 S:      Maintained
2368 F:      arch/arm64/boot/dts/sprd
2369 N:      sprd
2370 N:      sc27xx
2371 N:      sc2731
2372
2373 ARM/STI ARCHITECTURE
2374 M:      Patrice Chotard <patrice.chotard@st.com>
2375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2376 W:      http://www.stlinux.com
2377 S:      Maintained
2378 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2379 F:      arch/arm/mach-sti/
2380 F:      arch/arm/boot/dts/sti*
2381 F:      drivers/char/hw_random/st-rng.c
2382 F:      drivers/clocksource/arm_global_timer.c
2383 F:      drivers/clocksource/clksrc_st_lpc.c
2384 F:      drivers/cpufreq/sti-cpufreq.c
2385 F:      drivers/dma/st_fdma*
2386 F:      drivers/i2c/busses/i2c-st.c
2387 F:      drivers/media/rc/st_rc.c
2388 F:      drivers/media/platform/sti/c8sectpfe/
2389 F:      drivers/mmc/host/sdhci-st.c
2390 F:      drivers/phy/st/phy-miphy28lp.c
2391 F:      drivers/phy/st/phy-stih407-usb.c
2392 F:      drivers/pinctrl/pinctrl-st.c
2393 F:      drivers/remoteproc/st_remoteproc.c
2394 F:      drivers/remoteproc/st_slim_rproc.c
2395 F:      drivers/reset/sti/
2396 F:      drivers/rtc/rtc-st-lpc.c
2397 F:      drivers/tty/serial/st-asc.c
2398 F:      drivers/usb/dwc3/dwc3-st.c
2399 F:      drivers/usb/host/ehci-st.c
2400 F:      drivers/usb/host/ohci-st.c
2401 F:      drivers/watchdog/st_lpc_wdt.c
2402 F:      drivers/ata/ahci_st.c
2403 F:      include/linux/remoteproc/st_slim_rproc.h
2404
2405 ARM/STM32 ARCHITECTURE
2406 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2407 M:      Alexandre Torgue <alexandre.torgue@st.com>
2408 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2409 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2410 S:      Maintained
2411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2412 N:      stm32
2413 N:      stm
2414 F:      arch/arm/boot/dts/stm32*
2415 F:      arch/arm/mach-stm32/
2416 F:      drivers/clocksource/armv7m_systick.c
2417
2418 ARM/Synaptics SoC support
2419 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2420 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2421 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2422 S:      Maintained
2423 F:      arch/arm/mach-berlin/
2424 F:      arch/arm/boot/dts/berlin*
2425 F:      arch/arm64/boot/dts/synaptics/
2426
2427 ARM/TANGO ARCHITECTURE
2428 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2429 M:      Mans Rullgard <mans@mansr.com>
2430 L:      linux-arm-kernel@lists.infradead.org
2431 S:      Odd Fixes
2432 N:      tango
2433
2434 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2435 M:      Lennert Buytenhek <kernel@wantstofly.org>
2436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2437 S:      Maintained
2438
2439 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2440 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2441 L:      linux-tegra@vger.kernel.org
2442 L:      linux-media@vger.kernel.org
2443 S:      Maintained
2444 F:      drivers/media/platform/tegra-cec/
2445 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2446
2447 ARM/TETON BGA MACHINE SUPPORT
2448 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2449 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2450 S:      Maintained
2451
2452 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2453 M:      Santosh Shilimkar <ssantosh@kernel.org>
2454 L:      linux-kernel@vger.kernel.org
2455 S:      Maintained
2456 F:      drivers/memory/*emif*
2457
2458 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2459 M:      Tero Kristo <t-kristo@ti.com>
2460 M:      Nishanth Menon <nm@ti.com>
2461 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2462 S:      Supported
2463 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2464 F:      arch/arm64/boot/dts/ti/Makefile
2465 F:      arch/arm64/boot/dts/ti/k3-*
2466 F:      include/dt-bindings/pinctrl/k3.h
2467
2468 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2469 M:      Santosh Shilimkar <ssantosh@kernel.org>
2470 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2471 S:      Maintained
2472 F:      arch/arm/mach-keystone/
2473 F:      arch/arm/boot/dts/keystone-*
2474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2475
2476 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2477 M:      Santosh Shilimkar <ssantosh@kernel.org>
2478 L:      linux-kernel@vger.kernel.org
2479 S:      Maintained
2480 F:      drivers/clk/keystone/
2481
2482 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2483 M:      Santosh Shilimkar <ssantosh@kernel.org>
2484 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2485 L:      linux-kernel@vger.kernel.org
2486 S:      Maintained
2487 F:      drivers/clocksource/timer-keystone.c
2488
2489 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2490 M:      Santosh Shilimkar <ssantosh@kernel.org>
2491 L:      linux-kernel@vger.kernel.org
2492 S:      Maintained
2493 F:      drivers/power/reset/keystone-reset.c
2494
2495 ARM/THECUS N2100 MACHINE SUPPORT
2496 M:      Lennert Buytenhek <kernel@wantstofly.org>
2497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2498 S:      Maintained
2499
2500 ARM/TOSA MACHINE SUPPORT
2501 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2502 M:      Dirk Opfer <dirk@opfer-online.de>
2503 S:      Maintained
2504
2505 ARM/UNIPHIER ARCHITECTURE
2506 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2509 S:      Maintained
2510 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.txt
2511 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2512 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2513 F:      arch/arm/boot/dts/uniphier*
2514 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2515 F:      arch/arm/mach-uniphier/
2516 F:      arch/arm/mm/cache-uniphier.c
2517 F:      arch/arm64/boot/dts/socionext/uniphier*
2518 F:      drivers/bus/uniphier-system-bus.c
2519 F:      drivers/clk/uniphier/
2520 F:      drivers/dma/uniphier-mdmac.c
2521 F:      drivers/gpio/gpio-uniphier.c
2522 F:      drivers/i2c/busses/i2c-uniphier*
2523 F:      drivers/irqchip/irq-uniphier-aidet.c
2524 F:      drivers/mmc/host/uniphier-sd.c
2525 F:      drivers/pinctrl/uniphier/
2526 F:      drivers/reset/reset-uniphier.c
2527 F:      drivers/tty/serial/8250/8250_uniphier.c
2528 N:      uniphier
2529
2530 Ux500 CLOCK DRIVERS
2531 M:      Ulf Hansson <ulf.hansson@linaro.org>
2532 L:      linux-clk@vger.kernel.org
2533 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2534 S:      Maintained
2535 F:      drivers/clk/ux500/
2536
2537 ARM/VERSATILE EXPRESS PLATFORM
2538 M:      Liviu Dudau <liviu.dudau@arm.com>
2539 M:      Sudeep Holla <sudeep.holla@arm.com>
2540 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2542 S:      Maintained
2543 F:      arch/arm/boot/dts/vexpress*
2544 F:      arch/arm64/boot/dts/arm/
2545 F:      arch/arm/mach-vexpress/
2546 F:      */*/vexpress*
2547 F:      */*/*/vexpress*
2548 F:      drivers/clk/versatile/clk-vexpress-osc.c
2549 F:      drivers/clocksource/timer-versatile.c
2550 N:      mps2
2551
2552 ARM/VFP SUPPORT
2553 M:      Russell King <linux@armlinux.org.uk>
2554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2555 W:      http://www.armlinux.org.uk/
2556 S:      Maintained
2557 F:      arch/arm/vfp/
2558
2559 ARM/VOIPAC PXA270 SUPPORT
2560 M:      Marek Vasut <marek.vasut@gmail.com>
2561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2562 S:      Maintained
2563 F:      arch/arm/mach-pxa/vpac270.c
2564 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2565
2566 ARM/VT8500 ARM ARCHITECTURE
2567 M:      Tony Prisk <linux@prisktech.co.nz>
2568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2569 S:      Maintained
2570 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2571 F:      arch/arm/mach-vt8500/
2572 F:      drivers/clocksource/timer-vt8500.c
2573 F:      drivers/i2c/busses/i2c-wmt.c
2574 F:      drivers/mmc/host/wmt-sdmmc.c
2575 F:      drivers/pwm/pwm-vt8500.c
2576 F:      drivers/rtc/rtc-vt8500.c
2577 F:      drivers/tty/serial/vt8500_serial.c
2578 F:      drivers/usb/host/ehci-platform.c
2579 F:      drivers/usb/host/uhci-platform.c
2580 F:      drivers/video/fbdev/vt8500lcdfb.*
2581 F:      drivers/video/fbdev/wm8505fb*
2582 F:      drivers/video/fbdev/wmt_ge_rops.*
2583
2584 ARM/ZIPIT Z2 SUPPORT
2585 M:      Marek Vasut <marek.vasut@gmail.com>
2586 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2587 S:      Maintained
2588 F:      arch/arm/mach-pxa/z2.c
2589 F:      arch/arm/mach-pxa/include/mach/z2.h
2590
2591 ARM/ZTE ARCHITECTURE
2592 M:      Jun Nie <jun.nie@linaro.org>
2593 M:      Shawn Guo <shawnguo@kernel.org>
2594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2595 S:      Maintained
2596 F:      arch/arm/boot/dts/zx2967*
2597 F:      arch/arm/mach-zx/
2598 F:      arch/arm64/boot/dts/zte/
2599 F:      drivers/clk/zte/
2600 F:      drivers/dma/zx_dma.c
2601 F:      drivers/gpio/gpio-zx.c
2602 F:      drivers/i2c/busses/i2c-zx2967.c
2603 F:      drivers/mmc/host/dw_mmc-zx.*
2604 F:      drivers/pinctrl/zte/
2605 F:      drivers/soc/zte/
2606 F:      drivers/thermal/zx2967_thermal.c
2607 F:      drivers/watchdog/zx2967_wdt.c
2608 F:      Documentation/devicetree/bindings/arm/zte.yaml
2609 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2610 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2611 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2612 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2613 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2614 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2615 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2616 F:      Documentation/devicetree/bindings/soc/zte/
2617 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2618 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2619 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2620 F:      include/dt-bindings/clock/zx2967*.h
2621 F:      include/dt-bindings/soc/zte,*.h
2622 F:      sound/soc/codecs/zx_aud96p22.c
2623 F:      sound/soc/zte/
2624
2625 ARM/ZYNQ ARCHITECTURE
2626 M:      Michal Simek <michal.simek@xilinx.com>
2627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2628 W:      http://wiki.xilinx.com
2629 T:      git https://github.com/Xilinx/linux-xlnx.git
2630 S:      Supported
2631 F:      arch/arm/mach-zynq/
2632 F:      drivers/cpuidle/cpuidle-zynq.c
2633 F:      drivers/block/xsysace.c
2634 N:      zynq
2635 N:      xilinx
2636 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2637 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2638 F:      drivers/clocksource/timer-cadence-ttc.c
2639 F:      drivers/i2c/busses/i2c-cadence.c
2640 F:      drivers/mmc/host/sdhci-of-arasan.c
2641 F:      drivers/edac/synopsys_edac.c
2642 F:      drivers/i2c/busses/i2c-xiic.c
2643
2644 ARM64 PORT (AARCH64 ARCHITECTURE)
2645 M:      Catalin Marinas <catalin.marinas@arm.com>
2646 M:      Will Deacon <will@kernel.org>
2647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2649 S:      Maintained
2650 F:      arch/arm64/
2651 X:      arch/arm64/boot/dts/
2652 F:      Documentation/arm64/
2653 F:      tools/testing/selftests/arm64/
2654
2655 AS3645A LED FLASH CONTROLLER DRIVER
2656 M:      Sakari Ailus <sakari.ailus@iki.fi>
2657 L:      linux-leds@vger.kernel.org
2658 S:      Maintained
2659 F:      drivers/leds/leds-as3645a.c
2660
2661 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2662 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2663 L:      linux-media@vger.kernel.org
2664 T:      git git://linuxtv.org/media_tree.git
2665 S:      Maintained
2666 F:      drivers/media/i2c/ak7375.c
2667 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2668
2669 ASAHI KASEI AK8974 DRIVER
2670 M:      Linus Walleij <linus.walleij@linaro.org>
2671 L:      linux-iio@vger.kernel.org
2672 W:      http://www.akm.com/
2673 S:      Supported
2674 F:      drivers/iio/magnetometer/ak8974.c
2675
2676 ASC7621 HARDWARE MONITOR DRIVER
2677 M:      George Joseph <george.joseph@fairview5.com>
2678 L:      linux-hwmon@vger.kernel.org
2679 S:      Maintained
2680 F:      Documentation/hwmon/asc7621.rst
2681 F:      drivers/hwmon/asc7621.c
2682
2683 ASPEED PINCTRL DRIVERS
2684 M:      Andrew Jeffery <andrew@aj.id.au>
2685 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2686 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2687 L:      linux-gpio@vger.kernel.org
2688 S:      Maintained
2689 F:      drivers/pinctrl/aspeed/
2690 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2691
2692 ASPEED VIDEO ENGINE DRIVER
2693 M:      Eddie James <eajames@linux.ibm.com>
2694 L:      linux-media@vger.kernel.org
2695 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2696 S:      Maintained
2697 F:      drivers/media/platform/aspeed-video.c
2698 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2699
2700 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2701 M:      Corentin Chary <corentin.chary@gmail.com>
2702 L:      acpi4asus-user@lists.sourceforge.net
2703 L:      platform-driver-x86@vger.kernel.org
2704 W:      http://acpi4asus.sf.net
2705 S:      Maintained
2706 F:      drivers/platform/x86/asus*.c
2707 F:      drivers/platform/x86/eeepc*.c
2708
2709 ASUS WIRELESS RADIO CONTROL DRIVER
2710 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2711 L:      platform-driver-x86@vger.kernel.org
2712 S:      Maintained
2713 F:      drivers/platform/x86/asus-wireless.c
2714
2715 ASYMMETRIC KEYS
2716 M:      David Howells <dhowells@redhat.com>
2717 L:      keyrings@vger.kernel.org
2718 S:      Maintained
2719 F:      Documentation/crypto/asymmetric-keys.txt
2720 F:      include/linux/verification.h
2721 F:      include/crypto/public_key.h
2722 F:      include/crypto/pkcs7.h
2723 F:      crypto/asymmetric_keys/
2724
2725 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2726 R:      Dan Williams <dan.j.williams@intel.com>
2727 W:      http://sourceforge.net/projects/xscaleiop
2728 S:      Odd fixes
2729 F:      Documentation/crypto/async-tx-api.txt
2730 F:      crypto/async_tx/
2731 F:      drivers/dma/
2732 F:      include/linux/dmaengine.h
2733 F:      include/linux/async_tx.h
2734
2735 AT24 EEPROM DRIVER
2736 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2737 L:      linux-i2c@vger.kernel.org
2738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2739 S:      Maintained
2740 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2741 F:      drivers/misc/eeprom/at24.c
2742
2743 ATA OVER ETHERNET (AOE) DRIVER
2744 M:      "Justin Sanders" <justin@coraid.com>
2745 W:      http://www.openaoe.org/
2746 S:      Supported
2747 F:      Documentation/admin-guide/aoe/
2748 F:      drivers/block/aoe/
2749
2750 ATHEROS 71XX/9XXX GPIO DRIVER
2751 M:      Alban Bedel <albeu@free.fr>
2752 W:      https://github.com/AlbanBedel/linux
2753 T:      git git://github.com/AlbanBedel/linux
2754 S:      Maintained
2755 F:      drivers/gpio/gpio-ath79.c
2756 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2757
2758 ATHEROS 71XX/9XXX USB PHY DRIVER
2759 M:      Alban Bedel <albeu@free.fr>
2760 W:      https://github.com/AlbanBedel/linux
2761 T:      git git://github.com/AlbanBedel/linux
2762 S:      Maintained
2763 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2764 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2765
2766 ATHEROS ATH GENERIC UTILITIES
2767 M:      Kalle Valo <kvalo@codeaurora.org>
2768 L:      linux-wireless@vger.kernel.org
2769 S:      Supported
2770 F:      drivers/net/wireless/ath/*
2771
2772 ATHEROS ATH5K WIRELESS DRIVER
2773 M:      Jiri Slaby <jirislaby@gmail.com>
2774 M:      Nick Kossifidis <mickflemm@gmail.com>
2775 M:      Luis Chamberlain <mcgrof@kernel.org>
2776 L:      linux-wireless@vger.kernel.org
2777 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2778 S:      Maintained
2779 F:      drivers/net/wireless/ath/ath5k/
2780
2781 ATHEROS ATH6KL WIRELESS DRIVER
2782 M:      Kalle Valo <kvalo@codeaurora.org>
2783 L:      linux-wireless@vger.kernel.org
2784 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2786 S:      Supported
2787 F:      drivers/net/wireless/ath/ath6kl/
2788
2789 ATI_REMOTE2 DRIVER
2790 M:      Ville Syrjala <syrjala@sci.fi>
2791 S:      Maintained
2792 F:      drivers/input/misc/ati_remote2.c
2793
2794 ATK0110 HWMON DRIVER
2795 M:      Luca Tettamanti <kronos.it@gmail.com>
2796 L:      linux-hwmon@vger.kernel.org
2797 S:      Maintained
2798 F:      drivers/hwmon/asus_atk0110.c
2799
2800 ATLX ETHERNET DRIVERS
2801 M:      Jay Cliburn <jcliburn@gmail.com>
2802 M:      Chris Snook <chris.snook@gmail.com>
2803 L:      netdev@vger.kernel.org
2804 W:      http://sourceforge.net/projects/atl1
2805 W:      http://atl1.sourceforge.net
2806 S:      Maintained
2807 F:      drivers/net/ethernet/atheros/
2808
2809 ATM
2810 M:      Chas Williams <3chas3@gmail.com>
2811 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2812 L:      netdev@vger.kernel.org
2813 W:      http://linux-atm.sourceforge.net
2814 S:      Maintained
2815 F:      drivers/atm/
2816 F:      include/linux/atm*
2817 F:      include/uapi/linux/atm*
2818
2819 ATMEL MACB ETHERNET DRIVER
2820 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2821 S:      Supported
2822 F:      drivers/net/ethernet/cadence/
2823
2824 ATMEL MAXTOUCH DRIVER
2825 M:      Nick Dyer <nick@shmanahar.org>
2826 T:      git git://github.com/ndyer/linux.git
2827 S:      Maintained
2828 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2829 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2830
2831 ATMEL WIRELESS DRIVER
2832 M:      Simon Kelley <simon@thekelleys.org.uk>
2833 L:      linux-wireless@vger.kernel.org
2834 W:      http://www.thekelleys.org.uk/atmel
2835 W:      http://atmelwlandriver.sourceforge.net/
2836 S:      Maintained
2837 F:      drivers/net/wireless/atmel/atmel*
2838
2839 ATOMIC INFRASTRUCTURE
2840 M:      Will Deacon <will@kernel.org>
2841 M:      Peter Zijlstra <peterz@infradead.org>
2842 R:      Boqun Feng <boqun.feng@gmail.com>
2843 L:      linux-kernel@vger.kernel.org
2844 S:      Maintained
2845 F:      arch/*/include/asm/atomic*.h
2846 F:      include/*/atomic*.h
2847 F:      scripts/atomic/
2848
2849 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2850 M:      Bradley Grove <linuxdrivers@attotech.com>
2851 L:      linux-scsi@vger.kernel.org
2852 W:      http://www.attotech.com
2853 S:      Supported
2854 F:      drivers/scsi/esas2r
2855
2856 ATUSB IEEE 802.15.4 RADIO DRIVER
2857 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2858 L:      linux-wpan@vger.kernel.org
2859 S:      Maintained
2860 F:      drivers/net/ieee802154/atusb.c
2861 F:      drivers/net/ieee802154/atusb.h
2862 F:      drivers/net/ieee802154/at86rf230.h
2863
2864 AUDIT SUBSYSTEM
2865 M:      Paul Moore <paul@paul-moore.com>
2866 M:      Eric Paris <eparis@redhat.com>
2867 L:      linux-audit@redhat.com (moderated for non-subscribers)
2868 W:      https://github.com/linux-audit
2869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2870 S:      Supported
2871 F:      include/linux/audit.h
2872 F:      include/uapi/linux/audit.h
2873 F:      kernel/audit*
2874
2875 AUXILIARY DISPLAY DRIVERS
2876 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2877 S:      Maintained
2878 F:      drivers/auxdisplay/
2879 F:      include/linux/cfag12864b.h
2880
2881 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2882 M:      Andreas Klinger <ak@it-klinger.de>
2883 L:      linux-iio@vger.kernel.org
2884 S:      Maintained
2885 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2886 F:      drivers/iio/adc/hx711.c
2887
2888 AX.25 NETWORK LAYER
2889 M:      Ralf Baechle <ralf@linux-mips.org>
2890 L:      linux-hams@vger.kernel.org
2891 W:      http://www.linux-ax25.org/
2892 S:      Maintained
2893 F:      include/uapi/linux/ax25.h
2894 F:      include/net/ax25.h
2895 F:      net/ax25/
2896
2897 AXENTIA ARM DEVICES
2898 M:      Peter Rosin <peda@axentia.se>
2899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2900 S:      Maintained
2901 F:      arch/arm/boot/dts/at91-linea.dtsi
2902 F:      arch/arm/boot/dts/at91-natte.dtsi
2903 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2904 F:      arch/arm/boot/dts/at91-tse850-3.dts
2905
2906 AXENTIA ASOC DRIVERS
2907 M:      Peter Rosin <peda@axentia.se>
2908 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2909 S:      Maintained
2910 F:      Documentation/devicetree/bindings/sound/axentia,*
2911 F:      sound/soc/atmel/tse850-pcm5142.c
2912
2913 AXXIA I2C CONTROLLER
2914 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
2915 L:      linux-i2c@vger.kernel.org
2916 S:      Maintained
2917 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2918 F:      drivers/i2c/busses/i2c-axxia.c
2919
2920 AZ6007 DVB DRIVER
2921 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2922 L:      linux-media@vger.kernel.org
2923 W:      https://linuxtv.org
2924 T:      git git://linuxtv.org/media_tree.git
2925 S:      Maintained
2926 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2927
2928 AZTECH FM RADIO RECEIVER DRIVER
2929 M:      Hans Verkuil <hverkuil@xs4all.nl>
2930 L:      linux-media@vger.kernel.org
2931 T:      git git://linuxtv.org/media_tree.git
2932 W:      https://linuxtv.org
2933 S:      Maintained
2934 F:      drivers/media/radio/radio-aztech*
2935
2936 B43 WIRELESS DRIVER
2937 L:      linux-wireless@vger.kernel.org
2938 L:      b43-dev@lists.infradead.org
2939 W:      http://wireless.kernel.org/en/users/Drivers/b43
2940 S:      Odd Fixes
2941 F:      drivers/net/wireless/broadcom/b43/
2942
2943 B43LEGACY WIRELESS DRIVER
2944 M:      Larry Finger <Larry.Finger@lwfinger.net>
2945 L:      linux-wireless@vger.kernel.org
2946 L:      b43-dev@lists.infradead.org
2947 W:      http://wireless.kernel.org/en/users/Drivers/b43
2948 S:      Maintained
2949 F:      drivers/net/wireless/broadcom/b43legacy/
2950
2951 BACKLIGHT CLASS/SUBSYSTEM
2952 M:      Lee Jones <lee.jones@linaro.org>
2953 M:      Daniel Thompson <daniel.thompson@linaro.org>
2954 M:      Jingoo Han <jingoohan1@gmail.com>
2955 L:      dri-devel@lists.freedesktop.org
2956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2957 S:      Maintained
2958 F:      drivers/video/backlight/
2959 F:      include/linux/backlight.h
2960 F:      include/linux/pwm_backlight.h
2961 F:      Documentation/devicetree/bindings/leds/backlight
2962 F:      Documentation/ABI/stable/sysfs-class-backlight
2963 F:      Documentation/ABI/testing/sysfs-class-backlight
2964
2965 BATMAN ADVANCED
2966 M:      Marek Lindner <mareklindner@neomailbox.ch>
2967 M:      Simon Wunderlich <sw@simonwunderlich.de>
2968 M:      Antonio Quartulli <a@unstable.cc>
2969 M:      Sven Eckelmann <sven@narfation.org>
2970 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2971 W:      https://www.open-mesh.org/
2972 B:      https://www.open-mesh.org/projects/batman-adv/issues
2973 C:      irc://chat.freenode.net/batman
2974 Q:      https://patchwork.open-mesh.org/project/batman/list/
2975 T:      git https://git.open-mesh.org/linux-merge.git
2976 S:      Maintained
2977 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
2978 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
2979 F:      Documentation/networking/batman-adv.rst
2980 F:      include/uapi/linux/batadv_packet.h
2981 F:      include/uapi/linux/batman_adv.h
2982 F:      net/batman-adv/
2983
2984 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2985 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2986 L:      linux-hams@vger.kernel.org
2987 W:      http://www.baycom.org/~tom/ham/ham.html
2988 S:      Maintained
2989 F:      drivers/net/hamradio/baycom*
2990
2991 BCACHE (BLOCK LAYER CACHE)
2992 M:      Coly Li <colyli@suse.de>
2993 M:      Kent Overstreet <kent.overstreet@gmail.com>
2994 L:      linux-bcache@vger.kernel.org
2995 W:      http://bcache.evilpiepirate.org
2996 C:      irc://irc.oftc.net/bcache
2997 S:      Maintained
2998 F:      drivers/md/bcache/
2999
3000 BDISP ST MEDIA DRIVER
3001 M:      Fabien Dessenne <fabien.dessenne@st.com>
3002 L:      linux-media@vger.kernel.org
3003 T:      git git://linuxtv.org/media_tree.git
3004 W:      https://linuxtv.org
3005 S:      Supported
3006 F:      drivers/media/platform/sti/bdisp
3007
3008 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3009 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3010 L:      netdev@vger.kernel.org
3011 S:      Maintained
3012 F:      drivers/net/ethernet/ec_bhf.c
3013
3014 BEFS FILE SYSTEM
3015 M:      Luis de Bethencourt <luisbg@kernel.org>
3016 M:      Salah Triki <salah.triki@gmail.com>
3017 S:      Maintained
3018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3019 F:      Documentation/filesystems/befs.txt
3020 F:      fs/befs/
3021
3022 BFQ I/O SCHEDULER
3023 M:      Paolo Valente <paolo.valente@linaro.org>
3024 M:      Jens Axboe <axboe@kernel.dk>
3025 L:      linux-block@vger.kernel.org
3026 S:      Maintained
3027 F:      block/bfq-*
3028 F:      Documentation/block/bfq-iosched.rst
3029
3030 BFS FILE SYSTEM
3031 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3032 S:      Maintained
3033 F:      Documentation/filesystems/bfs.txt
3034 F:      fs/bfs/
3035 F:      include/uapi/linux/bfs_fs.h
3036
3037 BLINKM RGB LED DRIVER
3038 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3039 S:      Maintained
3040 F:      drivers/leds/leds-blinkm.c
3041
3042 BLOCK LAYER
3043 M:      Jens Axboe <axboe@kernel.dk>
3044 L:      linux-block@vger.kernel.org
3045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3046 S:      Maintained
3047 F:      block/
3048 F:      drivers/block/
3049 F:      kernel/trace/blktrace.c
3050 F:      lib/sbitmap.c
3051
3052 BLOCK2MTD DRIVER
3053 M:      Joern Engel <joern@lazybastard.org>
3054 L:      linux-mtd@lists.infradead.org
3055 S:      Maintained
3056 F:      drivers/mtd/devices/block2mtd.c
3057
3058 BLUETOOTH DRIVERS
3059 M:      Marcel Holtmann <marcel@holtmann.org>
3060 M:      Johan Hedberg <johan.hedberg@gmail.com>
3061 L:      linux-bluetooth@vger.kernel.org
3062 W:      http://www.bluez.org/
3063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3065 S:      Maintained
3066 F:      drivers/bluetooth/
3067
3068 BLUETOOTH SUBSYSTEM
3069 M:      Marcel Holtmann <marcel@holtmann.org>
3070 M:      Johan Hedberg <johan.hedberg@gmail.com>
3071 L:      linux-bluetooth@vger.kernel.org
3072 W:      http://www.bluez.org/
3073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3075 S:      Maintained
3076 F:      net/bluetooth/
3077 F:      include/net/bluetooth/
3078
3079 BONDING DRIVER
3080 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3081 M:      Veaceslav Falico <vfalico@gmail.com>
3082 M:      Andy Gospodarek <andy@greyhouse.net>
3083 L:      netdev@vger.kernel.org
3084 W:      http://sourceforge.net/projects/bonding/
3085 S:      Supported
3086 F:      drivers/net/bonding/
3087 F:      include/uapi/linux/if_bonding.h
3088
3089 BPF (Safe dynamic programs and tools)
3090 M:      Alexei Starovoitov <ast@kernel.org>
3091 M:      Daniel Borkmann <daniel@iogearbox.net>
3092 R:      Martin KaFai Lau <kafai@fb.com>
3093 R:      Song Liu <songliubraving@fb.com>
3094 R:      Yonghong Song <yhs@fb.com>
3095 R:      Andrii Nakryiko <andriin@fb.com>
3096 L:      netdev@vger.kernel.org
3097 L:      bpf@vger.kernel.org
3098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3100 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3101 S:      Supported
3102 F:      arch/*/net/*
3103 F:      Documentation/networking/filter.txt
3104 F:      Documentation/bpf/
3105 F:      include/linux/bpf*
3106 F:      include/linux/filter.h
3107 F:      include/trace/events/xdp.h
3108 F:      include/uapi/linux/bpf*
3109 F:      include/uapi/linux/filter.h
3110 F:      kernel/bpf/
3111 F:      kernel/trace/bpf_trace.c
3112 F:      lib/test_bpf.c
3113 F:      net/bpf/
3114 F:      net/core/filter.c
3115 F:      net/sched/act_bpf.c
3116 F:      net/sched/cls_bpf.c
3117 F:      samples/bpf/
3118 F:      tools/bpf/
3119 F:      tools/lib/bpf/
3120 F:      tools/testing/selftests/bpf/
3121 K:      bpf
3122 N:      bpf
3123
3124 BPF JIT for ARM
3125 M:      Shubham Bansal <illusionist.neo@gmail.com>
3126 L:      netdev@vger.kernel.org
3127 L:      bpf@vger.kernel.org
3128 S:      Maintained
3129 F:      arch/arm/net/
3130
3131 BPF JIT for ARM64
3132 M:      Daniel Borkmann <daniel@iogearbox.net>
3133 M:      Alexei Starovoitov <ast@kernel.org>
3134 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3135 L:      netdev@vger.kernel.org
3136 L:      bpf@vger.kernel.org
3137 S:      Supported
3138 F:      arch/arm64/net/
3139
3140 BPF JIT for MIPS (32-BIT AND 64-BIT)
3141 M:      Paul Burton <paulburton@kernel.org>
3142 L:      netdev@vger.kernel.org
3143 L:      bpf@vger.kernel.org
3144 S:      Maintained
3145 F:      arch/mips/net/
3146
3147 BPF JIT for NFP NICs
3148 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
3149 L:      netdev@vger.kernel.org
3150 L:      bpf@vger.kernel.org
3151 S:      Supported
3152 F:      drivers/net/ethernet/netronome/nfp/bpf/
3153
3154 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3155 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3156 M:      Sandipan Das <sandipan@linux.ibm.com>
3157 L:      netdev@vger.kernel.org
3158 L:      bpf@vger.kernel.org
3159 S:      Maintained
3160 F:      arch/powerpc/net/
3161
3162 BPF JIT for RISC-V (RV64G)
3163 M:      Björn Töpel <bjorn.topel@gmail.com>
3164 L:      netdev@vger.kernel.org
3165 S:      Maintained
3166 F:      arch/riscv/net/
3167
3168 BPF JIT for S390
3169 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3170 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3171 M:      Vasily Gorbik <gor@linux.ibm.com>
3172 L:      netdev@vger.kernel.org
3173 L:      bpf@vger.kernel.org
3174 S:      Maintained
3175 F:      arch/s390/net/
3176 X:      arch/s390/net/pnet.c
3177
3178 BPF JIT for SPARC (32-BIT AND 64-BIT)
3179 M:      David S. Miller <davem@davemloft.net>
3180 L:      netdev@vger.kernel.org
3181 L:      bpf@vger.kernel.org
3182 S:      Maintained
3183 F:      arch/sparc/net/
3184
3185 BPF JIT for X86 32-BIT
3186 M:      Wang YanQing <udknight@gmail.com>
3187 L:      netdev@vger.kernel.org
3188 L:      bpf@vger.kernel.org
3189 S:      Maintained
3190 F:      arch/x86/net/bpf_jit_comp32.c
3191
3192 BPF JIT for X86 64-BIT
3193 M:      Alexei Starovoitov <ast@kernel.org>
3194 M:      Daniel Borkmann <daniel@iogearbox.net>
3195 L:      netdev@vger.kernel.org
3196 L:      bpf@vger.kernel.org
3197 S:      Supported
3198 F:      arch/x86/net/
3199 X:      arch/x86/net/bpf_jit_comp32.c
3200
3201 BROADCOM B44 10/100 ETHERNET DRIVER
3202 M:      Michael Chan <michael.chan@broadcom.com>
3203 L:      netdev@vger.kernel.org
3204 S:      Supported
3205 F:      drivers/net/ethernet/broadcom/b44.*
3206
3207 BROADCOM B53 ETHERNET SWITCH DRIVER
3208 M:      Florian Fainelli <f.fainelli@gmail.com>
3209 L:      netdev@vger.kernel.org
3210 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3211 S:      Supported
3212 F:      drivers/net/dsa/b53/*
3213 F:      include/linux/platform_data/b53.h
3214
3215 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3216 M:      Florian Fainelli <f.fainelli@gmail.com>
3217 M:      Ray Jui <rjui@broadcom.com>
3218 M:      Scott Branden <sbranden@broadcom.com>
3219 M:      bcm-kernel-feedback-list@broadcom.com
3220 T:      git git://github.com/broadcom/mach-bcm
3221 S:      Maintained
3222 N:      bcm281*
3223 N:      bcm113*
3224 N:      bcm216*
3225 N:      kona
3226 F:      arch/arm/mach-bcm/
3227
3228 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3229 M:      Eric Anholt <eric@anholt.net>
3230 M:      Stefan Wahren <wahrenst@gmx.net>
3231 L:      bcm-kernel-feedback-list@broadcom.com
3232 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3234 T:      git git://github.com/anholt/linux
3235 S:      Maintained
3236 N:      bcm2711
3237 N:      bcm2835
3238 F:      drivers/staging/vc04_services
3239
3240 BROADCOM BCM47XX MIPS ARCHITECTURE
3241 M:      Hauke Mehrtens <hauke@hauke-m.de>
3242 M:      Rafał Miłecki <zajec5@gmail.com>
3243 L:      linux-mips@vger.kernel.org
3244 S:      Maintained
3245 F:      Documentation/devicetree/bindings/mips/brcm/
3246 F:      arch/mips/bcm47xx/*
3247 F:      arch/mips/include/asm/mach-bcm47xx/*
3248
3249 BROADCOM BCM5301X ARM ARCHITECTURE
3250 M:      Hauke Mehrtens <hauke@hauke-m.de>
3251 M:      Rafał Miłecki <zajec5@gmail.com>
3252 M:      bcm-kernel-feedback-list@broadcom.com
3253 L:      linux-arm-kernel@lists.infradead.org
3254 S:      Maintained
3255 F:      arch/arm/mach-bcm/bcm_5301x.c
3256 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3257 F:      arch/arm/boot/dts/bcm470*
3258 F:      arch/arm/boot/dts/bcm953012*
3259
3260 BROADCOM BCM53573 ARM ARCHITECTURE
3261 M:      Rafał Miłecki <rafal@milecki.pl>
3262 L:      bcm-kernel-feedback-list@broadcom.com
3263 L:      linux-arm-kernel@lists.infradead.org
3264 S:      Maintained
3265 F:      arch/arm/boot/dts/bcm53573*
3266 F:      arch/arm/boot/dts/bcm47189*
3267
3268 BROADCOM BCM63XX ARM ARCHITECTURE
3269 M:      Florian Fainelli <f.fainelli@gmail.com>
3270 M:      bcm-kernel-feedback-list@broadcom.com
3271 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3272 T:      git git://github.com/broadcom/stblinux.git
3273 S:      Maintained
3274 N:      bcm63xx
3275
3276 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3277 M:      Kevin Cernekee <cernekee@gmail.com>
3278 L:      linux-usb@vger.kernel.org
3279 S:      Maintained
3280 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3281
3282 BROADCOM BCM7XXX ARM ARCHITECTURE
3283 M:      Florian Fainelli <f.fainelli@gmail.com>
3284 M:      bcm-kernel-feedback-list@broadcom.com
3285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3286 T:      git git://github.com/broadcom/stblinux.git
3287 S:      Maintained
3288 F:      arch/arm/mach-bcm/*brcmstb*
3289 F:      arch/arm/boot/dts/bcm7*.dts*
3290 F:      drivers/bus/brcmstb_gisb.c
3291 F:      arch/arm/mm/cache-b15-rac.c
3292 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3293 N:      brcmstb
3294
3295 BROADCOM BMIPS CPUFREQ DRIVER
3296 M:      Markus Mayer <mmayer@broadcom.com>
3297 M:      bcm-kernel-feedback-list@broadcom.com
3298 L:      linux-pm@vger.kernel.org
3299 S:      Maintained
3300 F:      drivers/cpufreq/bmips-cpufreq.c
3301
3302 BROADCOM BMIPS MIPS ARCHITECTURE
3303 M:      Florian Fainelli <f.fainelli@gmail.com>
3304 L:      bcm-kernel-feedback-list@broadcom.com
3305 L:      linux-mips@vger.kernel.org
3306 T:      git git://github.com/broadcom/stblinux.git
3307 S:      Maintained
3308 F:      arch/mips/bmips/*
3309 F:      arch/mips/include/asm/mach-bmips/*
3310 F:      arch/mips/kernel/*bmips*
3311 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3312 F:      drivers/irqchip/irq-bcm63*
3313 F:      drivers/irqchip/irq-bcm7*
3314 F:      drivers/irqchip/irq-brcmstb*
3315 F:      include/linux/bcm963xx_nvram.h
3316 F:      include/linux/bcm963xx_tag.h
3317
3318 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3319 M:      Rasesh Mody <rmody@marvell.com>
3320 M:      GR-Linux-NIC-Dev@marvell.com
3321 L:      netdev@vger.kernel.org
3322 S:      Supported
3323 F:      drivers/net/ethernet/broadcom/bnx2.*
3324 F:      drivers/net/ethernet/broadcom/bnx2_*
3325
3326 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3327 M:      QLogic-Storage-Upstream@qlogic.com
3328 L:      linux-scsi@vger.kernel.org
3329 S:      Supported
3330 F:      drivers/scsi/bnx2fc/
3331
3332 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3333 M:      QLogic-Storage-Upstream@qlogic.com
3334 L:      linux-scsi@vger.kernel.org
3335 S:      Supported
3336 F:      drivers/scsi/bnx2i/
3337
3338 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3339 M:      Ariel Elior <aelior@marvell.com>
3340 M:      Sudarsana Kalluru <skalluru@marvell.com>
3341 M:      GR-everest-linux-l2@marvell.com
3342 L:      netdev@vger.kernel.org
3343 S:      Supported
3344 F:      drivers/net/ethernet/broadcom/bnx2x/
3345
3346 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3347 M:      Michael Chan <michael.chan@broadcom.com>
3348 L:      netdev@vger.kernel.org
3349 S:      Supported
3350 F:      drivers/net/ethernet/broadcom/bnxt/
3351
3352 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3353 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3354 M:      Franky Lin <franky.lin@broadcom.com>
3355 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3356 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3357 M:      Wright Feng <wright.feng@cypress.com>
3358 L:      linux-wireless@vger.kernel.org
3359 L:      brcm80211-dev-list.pdl@broadcom.com
3360 L:      brcm80211-dev-list@cypress.com
3361 S:      Supported
3362 F:      drivers/net/wireless/broadcom/brcm80211/
3363
3364 BROADCOM BRCMSTB GPIO DRIVER
3365 M:      Gregory Fong <gregory.0xf0@gmail.com>
3366 L:      bcm-kernel-feedback-list@broadcom.com
3367 S:      Supported
3368 F:      drivers/gpio/gpio-brcmstb.c
3369 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3370
3371 BROADCOM BRCMSTB I2C DRIVER
3372 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3373 L:      linux-i2c@vger.kernel.org
3374 L:      bcm-kernel-feedback-list@broadcom.com
3375 S:      Supported
3376 F:      drivers/i2c/busses/i2c-brcmstb.c
3377 F:      Documentation/devicetree/bindings/i2c/i2c-brcmstb.txt
3378
3379 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3380 M:      Al Cooper <alcooperx@gmail.com>
3381 L:      linux-kernel@vger.kernel.org
3382 L:      bcm-kernel-feedback-list@broadcom.com
3383 S:      Maintained
3384 F:      drivers/phy/broadcom/phy-brcm-usb*
3385
3386 BROADCOM GENET ETHERNET DRIVER
3387 M:      Doug Berger <opendmb@gmail.com>
3388 M:      Florian Fainelli <f.fainelli@gmail.com>
3389 L:      bcm-kernel-feedback-list@broadcom.com
3390 L:      netdev@vger.kernel.org
3391 S:      Supported
3392 F:      drivers/net/ethernet/broadcom/genet/
3393
3394 BROADCOM IPROC ARM ARCHITECTURE
3395 M:      Ray Jui <rjui@broadcom.com>
3396 M:      Scott Branden <sbranden@broadcom.com>
3397 M:      bcm-kernel-feedback-list@broadcom.com
3398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3399 T:      git git://github.com/broadcom/cygnus-linux.git
3400 S:      Maintained
3401 N:      iproc
3402 N:      cygnus
3403 N:      bcm[-_]nsp
3404 N:      bcm9113*
3405 N:      bcm9583*
3406 N:      bcm9585*
3407 N:      bcm9586*
3408 N:      bcm988312
3409 N:      bcm113*
3410 N:      bcm583*
3411 N:      bcm585*
3412 N:      bcm586*
3413 N:      bcm88312
3414 N:      hr2
3415 N:      stingray
3416 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3417 F:      arch/arm64/boot/dts/broadcom/stingray/*
3418 F:      drivers/clk/bcm/clk-ns*
3419 F:      drivers/clk/bcm/clk-sr*
3420 F:      drivers/pinctrl/bcm/pinctrl-ns*
3421 F:      include/dt-bindings/clock/bcm-sr*
3422
3423 BROADCOM KONA GPIO DRIVER
3424 M:      Ray Jui <rjui@broadcom.com>
3425 L:      bcm-kernel-feedback-list@broadcom.com
3426 S:      Supported
3427 F:      drivers/gpio/gpio-bcm-kona.c
3428 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3429
3430 BROADCOM NETXTREME-E ROCE DRIVER
3431 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3432 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3433 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3434 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3435 L:      linux-rdma@vger.kernel.org
3436 W:      http://www.broadcom.com
3437 S:      Supported
3438 F:      drivers/infiniband/hw/bnxt_re/
3439 F:      include/uapi/rdma/bnxt_re-abi.h
3440
3441 BROADCOM NVRAM DRIVER
3442 M:      Rafał Miłecki <zajec5@gmail.com>
3443 L:      linux-mips@vger.kernel.org
3444 S:      Maintained
3445 F:      drivers/firmware/broadcom/*
3446
3447 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3448 M:      Rafał Miłecki <zajec5@gmail.com>
3449 L:      linux-wireless@vger.kernel.org
3450 S:      Maintained
3451 F:      drivers/bcma/
3452 F:      include/linux/bcma/
3453
3454 BROADCOM STB AVS CPUFREQ DRIVER
3455 M:      Markus Mayer <mmayer@broadcom.com>
3456 M:      bcm-kernel-feedback-list@broadcom.com
3457 L:      linux-pm@vger.kernel.org
3458 S:      Maintained
3459 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3460 F:      drivers/cpufreq/brcmstb*
3461
3462 BROADCOM STB AVS TMON DRIVER
3463 M:      Markus Mayer <mmayer@broadcom.com>
3464 M:      bcm-kernel-feedback-list@broadcom.com
3465 L:      linux-pm@vger.kernel.org
3466 S:      Maintained
3467 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3468 F:      drivers/thermal/broadcom/brcmstb*
3469
3470 BROADCOM STB NAND FLASH DRIVER
3471 M:      Brian Norris <computersforpeace@gmail.com>
3472 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3473 L:      linux-mtd@lists.infradead.org
3474 L:      bcm-kernel-feedback-list@broadcom.com
3475 S:      Maintained
3476 F:      drivers/mtd/nand/raw/brcmnand/
3477
3478 BROADCOM STB DPFE DRIVER
3479 M:      Markus Mayer <mmayer@broadcom.com>
3480 M:      bcm-kernel-feedback-list@broadcom.com
3481 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3482 S:      Maintained
3483 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3484 F:      drivers/memory/brcmstb_dpfe.c
3485
3486 BROADCOM SPI DRIVER
3487 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3488 M:      bcm-kernel-feedback-list@broadcom.com
3489 S:      Maintained
3490 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3491 F:      drivers/spi/spi-bcm-qspi.*
3492 F:      drivers/spi/spi-brcmstb-qspi.c
3493 F:      drivers/spi/spi-iproc-qspi.c
3494
3495 BROADCOM SYSTEMPORT ETHERNET DRIVER
3496 M:      Florian Fainelli <f.fainelli@gmail.com>
3497 L:      bcm-kernel-feedback-list@broadcom.com
3498 L:      netdev@vger.kernel.org
3499 S:      Supported
3500 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3501
3502 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3503 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3504 M:      Prashant Sreedharan <prashant@broadcom.com>
3505 M:      Michael Chan <mchan@broadcom.com>
3506 L:      netdev@vger.kernel.org
3507 S:      Supported
3508 F:      drivers/net/ethernet/broadcom/tg3.*
3509
3510 BROCADE BFA FC SCSI DRIVER
3511 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3512 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3513 L:      linux-scsi@vger.kernel.org
3514 S:      Supported
3515 F:      drivers/scsi/bfa/
3516
3517 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3518 M:      Rasesh Mody <rmody@marvell.com>
3519 M:      Sudarsana Kalluru <skalluru@marvell.com>
3520 M:      GR-Linux-NIC-Dev@marvell.com
3521 L:      netdev@vger.kernel.org
3522 S:      Supported
3523 F:      drivers/net/ethernet/brocade/bna/
3524
3525 BSG (block layer generic sg v4 driver)
3526 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3527 L:      linux-scsi@vger.kernel.org
3528 S:      Supported
3529 F:      block/bsg.c
3530 F:      include/linux/bsg.h
3531 F:      include/uapi/linux/bsg.h
3532
3533 BT87X AUDIO DRIVER
3534 M:      Clemens Ladisch <clemens@ladisch.de>
3535 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3537 S:      Maintained
3538 F:      Documentation/sound/cards/bt87x.rst
3539 F:      sound/pci/bt87x.c
3540
3541 BT8XXGPIO DRIVER
3542 M:      Michael Buesch <m@bues.ch>
3543 W:      http://bu3sch.de/btgpio.php
3544 S:      Maintained
3545 F:      drivers/gpio/gpio-bt8xx.c
3546
3547 BTRFS FILE SYSTEM
3548 M:      Chris Mason <clm@fb.com>
3549 M:      Josef Bacik <josef@toxicpanda.com>
3550 M:      David Sterba <dsterba@suse.com>
3551 L:      linux-btrfs@vger.kernel.org
3552 W:      http://btrfs.wiki.kernel.org/
3553 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3555 S:      Maintained
3556 F:      Documentation/filesystems/btrfs.txt
3557 F:      fs/btrfs/
3558 F:      include/linux/btrfs*
3559 F:      include/uapi/linux/btrfs*
3560
3561 BTTV VIDEO4LINUX DRIVER
3562 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3563 L:      linux-media@vger.kernel.org
3564 W:      https://linuxtv.org
3565 T:      git git://linuxtv.org/media_tree.git
3566 S:      Odd fixes
3567 F:      Documentation/media/v4l-drivers/bttv*
3568 F:      drivers/media/pci/bt8xx/bttv*
3569
3570 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3571 M:      Chanwoo Choi <cw00.choi@samsung.com>
3572 L:      linux-pm@vger.kernel.org
3573 L:      linux-samsung-soc@vger.kernel.org
3574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3575 S:      Maintained
3576 F:      drivers/devfreq/exynos-bus.c
3577 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3578
3579 BUSLOGIC SCSI DRIVER
3580 M:      Khalid Aziz <khalid@gonehiking.org>
3581 L:      linux-scsi@vger.kernel.org
3582 S:      Maintained
3583 F:      drivers/scsi/BusLogic.*
3584 F:      drivers/scsi/FlashPoint.*
3585
3586 C-MEDIA CMI8788 DRIVER
3587 M:      Clemens Ladisch <clemens@ladisch.de>
3588 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3590 S:      Maintained
3591 F:      sound/pci/oxygen/
3592
3593 C-SKY ARCHITECTURE
3594 M:      Guo Ren <guoren@kernel.org>
3595 T:      git https://github.com/c-sky/csky-linux.git
3596 S:      Supported
3597 F:      arch/csky/
3598 F:      Documentation/devicetree/bindings/csky/
3599 F:      drivers/irqchip/irq-csky-*
3600 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3601 F:      drivers/clocksource/timer-gx6605s.c
3602 F:      drivers/clocksource/timer-mp-csky.c
3603 F:      Documentation/devicetree/bindings/timer/csky,*
3604 K:      csky
3605 N:      csky
3606
3607 C6X ARCHITECTURE
3608 M:      Mark Salter <msalter@redhat.com>
3609 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3610 L:      linux-c6x-dev@linux-c6x.org
3611 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3612 S:      Maintained
3613 F:      arch/c6x/
3614
3615 CA8210 IEEE-802.15.4 RADIO DRIVER
3616 M:      Harry Morris <h.morris@cascoda.com>
3617 L:      linux-wpan@vger.kernel.org
3618 W:      https://github.com/Cascoda/ca8210-linux.git
3619 S:      Maintained
3620 F:      drivers/net/ieee802154/ca8210.c
3621 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3622
3623 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3624 M:      David Howells <dhowells@redhat.com>
3625 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3626 S:      Supported
3627 F:      Documentation/filesystems/caching/cachefiles.txt
3628 F:      fs/cachefiles/
3629
3630 CADENCE MIPI-CSI2 BRIDGES
3631 M:      Maxime Ripard <mripard@kernel.org>
3632 L:      linux-media@vger.kernel.org
3633 S:      Maintained
3634 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3635 F:      drivers/media/platform/cadence/cdns-csi2*
3636
3637 CADENCE NAND DRIVER
3638 M:      Piotr Sroka <piotrs@cadence.com>
3639 L:      linux-mtd@lists.infradead.org
3640 S:      Maintained
3641 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3642 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3643
3644 CADET FM/AM RADIO RECEIVER DRIVER
3645 M:      Hans Verkuil <hverkuil@xs4all.nl>
3646 L:      linux-media@vger.kernel.org
3647 T:      git git://linuxtv.org/media_tree.git
3648 W:      https://linuxtv.org
3649 S:      Maintained
3650 F:      drivers/media/radio/radio-cadet*
3651
3652 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3653 M:      Jonathan Corbet <corbet@lwn.net>
3654 L:      linux-media@vger.kernel.org
3655 T:      git git://linuxtv.org/media_tree.git
3656 S:      Maintained
3657 F:      Documentation/media/v4l-drivers/cafe_ccic*
3658 F:      drivers/media/platform/marvell-ccic/
3659
3660 CAIF NETWORK LAYER
3661 L:      netdev@vger.kernel.org
3662 S:      Orphan
3663 F:      Documentation/networking/caif/
3664 F:      drivers/net/caif/
3665 F:      include/uapi/linux/caif/
3666 F:      include/net/caif/
3667 F:      net/caif/
3668
3669 CAKE QDISC
3670 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3671 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3672 S:      Maintained
3673 F:      net/sched/sch_cake.c
3674
3675 CAN NETWORK DRIVERS
3676 M:      Wolfgang Grandegger <wg@grandegger.com>
3677 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3678 L:      linux-can@vger.kernel.org
3679 W:      https://github.com/linux-can
3680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3682 S:      Maintained
3683 F:      Documentation/devicetree/bindings/net/can/
3684 F:      drivers/net/can/
3685 F:      include/linux/can/dev.h
3686 F:      include/linux/can/led.h
3687 F:      include/linux/can/rx-offload.h
3688 F:      include/linux/can/platform/
3689 F:      include/uapi/linux/can/error.h
3690 F:      include/uapi/linux/can/netlink.h
3691 F:      include/uapi/linux/can/vxcan.h
3692
3693 CAN NETWORK LAYER
3694 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3695 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3696 L:      linux-can@vger.kernel.org
3697 W:      https://github.com/linux-can
3698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3700 S:      Maintained
3701 F:      Documentation/networking/can.rst
3702 F:      net/can/
3703 F:      include/linux/can/core.h
3704 F:      include/linux/can/skb.h
3705 F:      include/net/netns/can.h
3706 F:      include/uapi/linux/can.h
3707 F:      include/uapi/linux/can/bcm.h
3708 F:      include/uapi/linux/can/raw.h
3709 F:      include/uapi/linux/can/gw.h
3710
3711 CAN-J1939 NETWORK LAYER
3712 M:      Robin van der Gracht <robin@protonic.nl>
3713 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3714 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3715 L:      linux-can@vger.kernel.org
3716 S:      Maintained
3717 F:      Documentation/networking/j1939.rst
3718 F:      net/can/j1939/
3719 F:      include/uapi/linux/can/j1939.h
3720
3721 CAPABILITIES
3722 M:      Serge Hallyn <serge@hallyn.com>
3723 L:      linux-security-module@vger.kernel.org
3724 S:      Supported
3725 F:      include/linux/capability.h
3726 F:      include/uapi/linux/capability.h
3727 F:      security/commoncap.c
3728 F:      kernel/capability.c
3729
3730 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3731 M:      Kevin Tsai <ktsai@capellamicro.com>
3732 S:      Maintained
3733 F:      drivers/iio/light/cm*
3734
3735 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3736 M:      Christian Lamparter <chunkeey@googlemail.com>
3737 L:      linux-wireless@vger.kernel.org
3738 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3739 S:      Maintained
3740 F:      drivers/net/wireless/ath/carl9170/
3741
3742 CAVIUM I2C DRIVER
3743 M:      Jan Glauber <jglauber@cavium.com>
3744 M:      David Daney <david.daney@cavium.com>
3745 W:      http://www.cavium.com
3746 S:      Supported
3747 F:      drivers/i2c/busses/i2c-octeon*
3748 F:      drivers/i2c/busses/i2c-thunderx*
3749
3750 CAVIUM LIQUIDIO NETWORK DRIVER
3751 M:      Derek Chickles <dchickles@marvell.com>
3752 M:      Satanand Burla <sburla@marvell.com>
3753 M:      Felix Manlunas <fmanlunas@marvell.com>
3754 L:      netdev@vger.kernel.org
3755 W:      http://www.cavium.com
3756 S:      Supported
3757 F:      drivers/net/ethernet/cavium/liquidio/
3758
3759 CAVIUM MMC DRIVER
3760 M:      Jan Glauber <jglauber@cavium.com>
3761 M:      David Daney <david.daney@cavium.com>
3762 M:      Steven J. Hill <Steven.Hill@cavium.com>
3763 W:      http://www.cavium.com
3764 S:      Supported
3765 F:      drivers/mmc/host/cavium*
3766
3767 CAVIUM OCTEON-TX CRYPTO DRIVER
3768 M:      George Cherian <george.cherian@cavium.com>
3769 L:      linux-crypto@vger.kernel.org
3770 W:      http://www.cavium.com
3771 S:      Supported
3772 F:      drivers/crypto/cavium/cpt/
3773
3774 CAVIUM THUNDERX2 ARM64 SOC
3775 M:      Robert Richter <rrichter@cavium.com>
3776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3777 S:      Maintained
3778 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3779 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3780
3781 CC2520 IEEE-802.15.4 RADIO DRIVER
3782 M:      Varka Bhadram <varkabhadram@gmail.com>
3783 L:      linux-wpan@vger.kernel.org
3784 S:      Maintained
3785 F:      drivers/net/ieee802154/cc2520.c
3786 F:      include/linux/spi/cc2520.h
3787 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3788
3789 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3790 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3791 L:      linux-crypto@vger.kernel.org
3792 S:      Supported
3793 F:      drivers/crypto/ccree/
3794 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3795
3796 CEC FRAMEWORK
3797 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3798 L:      linux-media@vger.kernel.org
3799 T:      git git://linuxtv.org/media_tree.git
3800 W:      http://linuxtv.org
3801 S:      Supported
3802 F:      Documentation/media/kapi/cec-core.rst
3803 F:      Documentation/media/uapi/cec
3804 F:      drivers/media/cec/
3805 F:      drivers/media/rc/keymaps/rc-cec.c
3806 F:      include/media/cec.h
3807 F:      include/media/cec-notifier.h
3808 F:      include/uapi/linux/cec.h
3809 F:      include/uapi/linux/cec-funcs.h
3810 F:      Documentation/devicetree/bindings/media/cec.txt
3811 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3812
3813 CEC GPIO DRIVER
3814 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3815 L:      linux-media@vger.kernel.org
3816 T:      git git://linuxtv.org/media_tree.git
3817 W:      http://linuxtv.org
3818 S:      Supported
3819 F:      drivers/media/platform/cec-gpio/
3820 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3821
3822 CELL BROADBAND ENGINE ARCHITECTURE
3823 M:      Arnd Bergmann <arnd@arndb.de>
3824 L:      linuxppc-dev@lists.ozlabs.org
3825 W:      http://www.ibm.com/developerworks/power/cell/
3826 S:      Supported
3827 F:      arch/powerpc/include/asm/cell*.h
3828 F:      arch/powerpc/include/asm/spu*.h
3829 F:      arch/powerpc/include/uapi/asm/spu*.h
3830 F:      arch/powerpc/oprofile/*cell*
3831 F:      arch/powerpc/platforms/cell/
3832
3833 CEPH COMMON CODE (LIBCEPH)
3834 M:      Ilya Dryomov <idryomov@gmail.com>
3835 M:      Jeff Layton <jlayton@kernel.org>
3836 M:      Sage Weil <sage@redhat.com>
3837 L:      ceph-devel@vger.kernel.org
3838 W:      http://ceph.com/
3839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3840 T:      git git://github.com/ceph/ceph-client.git
3841 S:      Supported
3842 F:      net/ceph/
3843 F:      include/linux/ceph/
3844 F:      include/linux/crush/
3845
3846 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3847 M:      Jeff Layton <jlayton@kernel.org>
3848 M:      Sage Weil <sage@redhat.com>
3849 M:      Ilya Dryomov <idryomov@gmail.com>
3850 L:      ceph-devel@vger.kernel.org
3851 W:      http://ceph.com/
3852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3853 T:      git git://github.com/ceph/ceph-client.git
3854 S:      Supported
3855 F:      Documentation/filesystems/ceph.txt
3856 F:      fs/ceph/
3857
3858 CERTIFICATE HANDLING:
3859 M:      David Howells <dhowells@redhat.com>
3860 M:      David Woodhouse <dwmw2@infradead.org>
3861 L:      keyrings@vger.kernel.org
3862 S:      Maintained
3863 F:      Documentation/admin-guide/module-signing.rst
3864 F:      certs/
3865 F:      scripts/sign-file.c
3866 F:      scripts/extract-cert.c
3867
3868 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3869 L:      devel@driverdev.osuosl.org
3870 S:      Obsolete
3871 F:      drivers/staging/wusbcore/
3872
3873 CFAG12864B LCD DRIVER
3874 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3875 S:      Maintained
3876 F:      drivers/auxdisplay/cfag12864b.c
3877 F:      include/linux/cfag12864b.h
3878
3879 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3880 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3881 S:      Maintained
3882 F:      drivers/auxdisplay/cfag12864bfb.c
3883 F:      include/linux/cfag12864b.h
3884
3885 802.11 (including CFG80211/NL80211)
3886 M:      Johannes Berg <johannes@sipsolutions.net>
3887 L:      linux-wireless@vger.kernel.org
3888 W:      http://wireless.kernel.org/
3889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3891 S:      Maintained
3892 F:      net/wireless/
3893 F:      include/uapi/linux/nl80211.h
3894 F:      include/linux/ieee80211.h
3895 F:      include/net/wext.h
3896 F:      include/net/cfg80211.h
3897 F:      include/net/iw_handler.h
3898 F:      include/net/ieee80211_radiotap.h
3899 F:      Documentation/driver-api/80211/cfg80211.rst
3900 F:      Documentation/networking/regulatory.txt
3901
3902 CHAR and MISC DRIVERS
3903 M:      Arnd Bergmann <arnd@arndb.de>
3904 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3906 S:      Supported
3907 F:      drivers/char/
3908 F:      drivers/misc/
3909 F:      include/linux/miscdevice.h
3910
3911 CHECKPATCH
3912 M:      Andy Whitcroft <apw@canonical.com>
3913 M:      Joe Perches <joe@perches.com>
3914 S:      Maintained
3915 F:      scripts/checkpatch.pl
3916
3917 CHINESE DOCUMENTATION
3918 M:      Harry Wei <harryxiyou@gmail.com>
3919 M:      Alex Shi <alex.shi@linux.alibaba.com>
3920 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3921 S:      Maintained
3922 F:      Documentation/translations/zh_CN/
3923
3924 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3925 M:      Peter Chen <Peter.Chen@nxp.com>
3926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3927 L:      linux-usb@vger.kernel.org
3928 S:      Maintained
3929 F:      drivers/usb/chipidea/
3930
3931 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3932 M:      Hans de Goede <hdegoede@redhat.com>
3933 L:      linux-input@vger.kernel.org
3934 S:      Maintained
3935 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3936 F:      drivers/input/touchscreen/chipone_icn8318.c
3937
3938 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
3939 M:      Hans de Goede <hdegoede@redhat.com>
3940 L:      linux-input@vger.kernel.org
3941 S:      Maintained
3942 F:      drivers/input/touchscreen/chipone_icn8505.c
3943
3944 CHROME HARDWARE PLATFORM SUPPORT
3945 M:      Benson Leung <bleung@chromium.org>
3946 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3947 S:      Maintained
3948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
3949 F:      drivers/platform/chrome/
3950
3951 CHROMEOS EC SUBDRIVERS
3952 M:      Benson Leung <bleung@chromium.org>
3953 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3954 R:      Guenter Roeck <groeck@chromium.org>
3955 S:      Maintained
3956 N:      cros_ec
3957 N:      cros-ec
3958 F:      drivers/power/supply/cros_usbpd-charger.c
3959
3960 CHROMEOS EC CODEC DRIVER
3961 M:      Cheng-Yi Chiang <cychiang@chromium.org>
3962 S:      Maintained
3963 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3964 R:      Guenter Roeck <groeck@chromium.org>
3965 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.txt
3966 F:      sound/soc/codecs/cros_ec_codec.*
3967
3968 CIRRUS LOGIC AUDIO CODEC DRIVERS
3969 M:      Brian Austin <brian.austin@cirrus.com>
3970 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3971 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3972 S:      Maintained
3973 F:      sound/soc/codecs/cs*
3974
3975 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3976 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3977 L:      netdev@vger.kernel.org
3978 S:      Maintained
3979 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3980
3981 CIRRUS LOGIC LOCHNAGAR DRIVER
3982 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
3983 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
3984 L:      patches@opensource.cirrus.com
3985 S:      Supported
3986 F:      drivers/clk/clk-lochnagar.c
3987 F:      drivers/hwmon/lochnagar-hwmon.c
3988 F:      drivers/mfd/lochnagar-i2c.c
3989 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
3990 F:      drivers/regulator/lochnagar-regulator.c
3991 F:      sound/soc/codecs/lochnagar-sc.c
3992 F:      include/dt-bindings/clk/lochnagar.h
3993 F:      include/dt-bindings/pinctrl/lochnagar.h
3994 F:      include/linux/mfd/lochnagar*
3995 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
3996 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
3997 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
3998 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
3999 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
4000 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
4001 F:      Documentation/hwmon/lochnagar.rst
4002
4003 CISCO FCOE HBA DRIVER
4004 M:      Satish Kharat <satishkh@cisco.com>
4005 M:      Sesidhar Baddela <sebaddel@cisco.com>
4006 M:      Karan Tilak Kumar <kartilak@cisco.com>
4007 L:      linux-scsi@vger.kernel.org
4008 S:      Supported
4009 F:      drivers/scsi/fnic/
4010
4011 CISCO SCSI HBA DRIVER
4012 M:      Karan Tilak Kumar <kartilak@cisco.com>
4013 M:      Sesidhar Baddela <sebaddel@cisco.com>
4014 L:      linux-scsi@vger.kernel.org
4015 S:      Supported
4016 F:      drivers/scsi/snic/
4017
4018 CISCO VIC ETHERNET NIC DRIVER
4019 M:      Christian Benvenuti <benve@cisco.com>
4020 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4021 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4022 S:      Supported
4023 F:      drivers/net/ethernet/cisco/enic/
4024
4025 CISCO VIC LOW LATENCY NIC DRIVER
4026 M:      Christian Benvenuti <benve@cisco.com>
4027 M:      Nelson Escobar <neescoba@cisco.com>
4028 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4029 S:      Supported
4030 F:      drivers/infiniband/hw/usnic/
4031
4032 CIRRUS LOGIC MADERA CODEC DRIVERS
4033 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4034 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4035 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4036 L:      patches@opensource.cirrus.com
4037 T:      git https://github.com/CirrusLogic/linux-drivers.git
4038 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4039 S:      Supported
4040 F:      Documentation/devicetree/bindings/mfd/madera.txt
4041 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4042 F:      Documentation/devicetree/bindings/sound/madera.txt
4043 F:      include/dt-bindings/sound/madera*
4044 F:      include/linux/irqchip/irq-madera*
4045 F:      include/linux/mfd/madera/*
4046 F:      include/sound/madera*
4047 F:      drivers/gpio/gpio-madera*
4048 F:      drivers/irqchip/irq-madera*
4049 F:      drivers/mfd/madera*
4050 F:      drivers/mfd/cs47l*
4051 F:      drivers/pinctrl/cirrus/*
4052 F:      sound/soc/codecs/cs47l*
4053 F:      sound/soc/codecs/madera*
4054
4055 CLANG-FORMAT FILE
4056 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4057 S:      Maintained
4058 F:      .clang-format
4059
4060 CLANG/LLVM BUILD SUPPORT
4061 L:      clang-built-linux@googlegroups.com
4062 W:      https://clangbuiltlinux.github.io/
4063 B:      https://github.com/ClangBuiltLinux/linux/issues
4064 C:      irc://chat.freenode.net/clangbuiltlinux
4065 S:      Supported
4066 K:      \b(?i:clang|llvm)\b
4067
4068 CLEANCACHE API
4069 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4070 L:      linux-kernel@vger.kernel.org
4071 S:      Maintained
4072 F:      mm/cleancache.c
4073 F:      include/linux/cleancache.h
4074
4075 CLK API
4076 M:      Russell King <linux@armlinux.org.uk>
4077 L:      linux-clk@vger.kernel.org
4078 S:      Maintained
4079 F:      include/linux/clk.h
4080
4081 CLOCKSOURCE, CLOCKEVENT DRIVERS
4082 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4083 M:      Thomas Gleixner <tglx@linutronix.de>
4084 L:      linux-kernel@vger.kernel.org
4085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4086 S:      Supported
4087 F:      drivers/clocksource/
4088 F:      Documentation/devicetree/bindings/timer/
4089
4090 CMPC ACPI DRIVER
4091 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4092 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4093 L:      platform-driver-x86@vger.kernel.org
4094 S:      Supported
4095 F:      drivers/platform/x86/classmate-laptop.c
4096
4097 COBALT MEDIA DRIVER
4098 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4099 L:      linux-media@vger.kernel.org
4100 T:      git git://linuxtv.org/media_tree.git
4101 W:      https://linuxtv.org
4102 S:      Supported
4103 F:      drivers/media/pci/cobalt/
4104
4105 COCCINELLE/Semantic Patches (SmPL)
4106 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4107 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4108 M:      Nicolas Palix <nicolas.palix@imag.fr>
4109 M:      Michal Marek <michal.lkml@markovi.net>
4110 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4112 W:      http://coccinelle.lip6.fr/
4113 S:      Supported
4114 F:      Documentation/dev-tools/coccinelle.rst
4115 F:      scripts/coccinelle/
4116 F:      scripts/coccicheck
4117
4118 CODA FILE SYSTEM
4119 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4120 M:      coda@cs.cmu.edu
4121 L:      codalist@coda.cs.cmu.edu
4122 W:      http://www.coda.cs.cmu.edu/
4123 S:      Maintained
4124 F:      Documentation/filesystems/coda.txt
4125 F:      fs/coda/
4126 F:      include/linux/coda*.h
4127 F:      include/uapi/linux/coda*.h
4128
4129 CODA V4L2 MEM2MEM DRIVER
4130 M:      Philipp Zabel <p.zabel@pengutronix.de>
4131 L:      linux-media@vger.kernel.org
4132 S:      Maintained
4133 F:      Documentation/devicetree/bindings/media/coda.txt
4134 F:      drivers/media/platform/coda/
4135
4136 CODE OF CONDUCT
4137 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4138 S:      Supported
4139 F:      Documentation/process/code-of-conduct.rst
4140 F:      Documentation/process/code-of-conduct-interpretation.rst
4141
4142 COMMON CLK FRAMEWORK
4143 M:      Michael Turquette <mturquette@baylibre.com>
4144 M:      Stephen Boyd <sboyd@kernel.org>
4145 L:      linux-clk@vger.kernel.org
4146 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4148 S:      Maintained
4149 F:      Documentation/devicetree/bindings/clock/
4150 F:      drivers/clk/
4151 X:      drivers/clk/clkdev.c
4152 F:      include/linux/clk-pr*
4153 F:      include/linux/clk/
4154 F:      include/linux/of_clk.h
4155
4156 COMMON INTERNET FILE SYSTEM (CIFS)
4157 M:      Steve French <sfrench@samba.org>
4158 L:      linux-cifs@vger.kernel.org
4159 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4160 W:      http://linux-cifs.samba.org/
4161 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4162 S:      Supported
4163 F:      Documentation/admin-guide/cifs/
4164 F:      fs/cifs/
4165
4166 COMPACTPCI HOTPLUG CORE
4167 M:      Scott Murray <scott@spiteful.org>
4168 L:      linux-pci@vger.kernel.org
4169 S:      Maintained
4170 F:      drivers/pci/hotplug/cpci_hotplug*
4171
4172 COMPACTPCI HOTPLUG GENERIC DRIVER
4173 M:      Scott Murray <scott@spiteful.org>
4174 L:      linux-pci@vger.kernel.org
4175 S:      Maintained
4176 F:      drivers/pci/hotplug/cpcihp_generic.c
4177
4178 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4179 M:      Scott Murray <scott@spiteful.org>
4180 L:      linux-pci@vger.kernel.org
4181 S:      Maintained
4182 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4183
4184 COMPAL LAPTOP SUPPORT
4185 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4186 L:      platform-driver-x86@vger.kernel.org
4187 S:      Maintained
4188 F:      drivers/platform/x86/compal-laptop.c
4189
4190 COMPILER ATTRIBUTES
4191 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4192 S:      Maintained
4193 F:      include/linux/compiler_attributes.h
4194
4195 CONEXANT ACCESSRUNNER USB DRIVER
4196 L:      accessrunner-general@lists.sourceforge.net
4197 W:      http://accessrunner.sourceforge.net/
4198 S:      Orphan
4199 F:      drivers/usb/atm/cxacru.c
4200
4201 CONFIGFS
4202 M:      Joel Becker <jlbec@evilplan.org>
4203 M:      Christoph Hellwig <hch@lst.de>
4204 T:      git git://git.infradead.org/users/hch/configfs.git
4205 S:      Supported
4206 F:      fs/configfs/
4207 F:      include/linux/configfs.h
4208
4209 CONNECTOR
4210 M:      Evgeniy Polyakov <zbr@ioremap.net>
4211 L:      netdev@vger.kernel.org
4212 S:      Maintained
4213 F:      drivers/connector/
4214
4215 CONTROL GROUP (CGROUP)
4216 M:      Tejun Heo <tj@kernel.org>
4217 M:      Li Zefan <lizefan@huawei.com>
4218 M:      Johannes Weiner <hannes@cmpxchg.org>
4219 L:      cgroups@vger.kernel.org
4220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4221 S:      Maintained
4222 F:      Documentation/admin-guide/cgroup-v2.rst
4223 F:      Documentation/admin-guide/cgroup-v1/
4224 F:      include/linux/cgroup*
4225 F:      kernel/cgroup/
4226
4227 CONTROL GROUP - CPUSET
4228 M:      Li Zefan <lizefan@huawei.com>
4229 L:      cgroups@vger.kernel.org
4230 W:      http://www.bullopensource.org/cpuset/
4231 W:      http://oss.sgi.com/projects/cpusets/
4232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4233 S:      Maintained
4234 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4235 F:      include/linux/cpuset.h
4236 F:      kernel/cgroup/cpuset.c
4237
4238 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4239 M:      Johannes Weiner <hannes@cmpxchg.org>
4240 M:      Michal Hocko <mhocko@kernel.org>
4241 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4242 L:      cgroups@vger.kernel.org
4243 L:      linux-mm@kvack.org
4244 S:      Maintained
4245 F:      mm/memcontrol.c
4246 F:      mm/swap_cgroup.c
4247
4248 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4249 M:      Tejun Heo <tj@kernel.org>
4250 M:      Jens Axboe <axboe@kernel.dk>
4251 L:      cgroups@vger.kernel.org
4252 L:      linux-block@vger.kernel.org
4253 T:      git git://git.kernel.dk/linux-block
4254 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4255 F:      block/blk-cgroup.c
4256 F:      include/linux/blk-cgroup.h
4257 F:      block/blk-throttle.c
4258 F:      block/blk-iolatency.c
4259 F:      block/bfq-cgroup.c
4260
4261 CORETEMP HARDWARE MONITORING DRIVER
4262 M:      Fenghua Yu <fenghua.yu@intel.com>
4263 L:      linux-hwmon@vger.kernel.org
4264 S:      Maintained
4265 F:      Documentation/hwmon/coretemp.rst
4266 F:      drivers/hwmon/coretemp.c
4267
4268 COSA/SRP SYNC SERIAL DRIVER
4269 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4270 W:      http://www.fi.muni.cz/~kas/cosa/
4271 S:      Maintained
4272 F:      drivers/net/wan/cosa*
4273
4274 COUNTER SUBSYSTEM
4275 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4276 L:      linux-iio@vger.kernel.org
4277 S:      Maintained
4278 F:      Documentation/ABI/testing/sysfs-bus-counter*
4279 F:      Documentation/driver-api/generic-counter.rst
4280 F:      drivers/counter/
4281 F:      include/linux/counter.h
4282 F:      include/linux/counter_enum.h
4283
4284 CPMAC ETHERNET DRIVER
4285 M:      Florian Fainelli <f.fainelli@gmail.com>
4286 L:      netdev@vger.kernel.org
4287 S:      Maintained
4288 F:      drivers/net/ethernet/ti/cpmac.c
4289
4290 CPU FREQUENCY SCALING FRAMEWORK
4291 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4292 M:      Viresh Kumar <viresh.kumar@linaro.org>
4293 L:      linux-pm@vger.kernel.org
4294 S:      Maintained
4295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4297 B:      https://bugzilla.kernel.org
4298 F:      Documentation/admin-guide/pm/cpufreq.rst
4299 F:      Documentation/admin-guide/pm/intel_pstate.rst
4300 F:      Documentation/cpu-freq/
4301 F:      Documentation/devicetree/bindings/cpufreq/
4302 F:      drivers/cpufreq/
4303 F:      kernel/sched/cpufreq*.c
4304 F:      include/linux/cpufreq.h
4305 F:      include/linux/sched/cpufreq.h
4306 F:      tools/testing/selftests/cpufreq/
4307
4308 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4309 M:      Viresh Kumar <viresh.kumar@linaro.org>
4310 M:      Sudeep Holla <sudeep.holla@arm.com>
4311 L:      linux-pm@vger.kernel.org
4312 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4313 S:      Maintained
4314 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4315
4316 CPU POWER MONITORING SUBSYSTEM
4317 M:      Thomas Renninger <trenn@suse.com>
4318 M:      Shuah Khan <shuah@kernel.org>
4319 M:      Shuah Khan <skhan@linuxfoundation.org>
4320 L:      linux-pm@vger.kernel.org
4321 S:      Maintained
4322 F:      tools/power/cpupower/
4323
4324 CPUID/MSR DRIVER
4325 M:      "H. Peter Anvin" <hpa@zytor.com>
4326 S:      Maintained
4327 F:      arch/x86/kernel/cpuid.c
4328 F:      arch/x86/kernel/msr.c
4329
4330 CPUIDLE DRIVER - ARM BIG LITTLE
4331 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4332 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4333 L:      linux-pm@vger.kernel.org
4334 L:      linux-arm-kernel@lists.infradead.org
4335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4336 S:      Maintained
4337 F:      drivers/cpuidle/cpuidle-big_little.c
4338
4339 CPUIDLE DRIVER - ARM EXYNOS
4340 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4341 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4342 M:      Kukjin Kim <kgene@kernel.org>
4343 L:      linux-pm@vger.kernel.org
4344 L:      linux-samsung-soc@vger.kernel.org
4345 S:      Supported
4346 F:      drivers/cpuidle/cpuidle-exynos.c
4347 F:      arch/arm/mach-exynos/pm.c
4348
4349 CPUIDLE DRIVER - ARM PSCI
4350 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4351 M:      Sudeep Holla <sudeep.holla@arm.com>
4352 L:      linux-pm@vger.kernel.org
4353 L:      linux-arm-kernel@lists.infradead.org
4354 S:      Supported
4355 F:      drivers/cpuidle/cpuidle-psci.c
4356
4357 CPU IDLE TIME MANAGEMENT FRAMEWORK
4358 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4359 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4360 L:      linux-pm@vger.kernel.org
4361 S:      Maintained
4362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4363 B:      https://bugzilla.kernel.org
4364 F:      Documentation/admin-guide/pm/cpuidle.rst
4365 F:      Documentation/driver-api/pm/cpuidle.rst
4366 F:      drivers/cpuidle/*
4367 F:      include/linux/cpuidle.h
4368
4369 CRAMFS FILESYSTEM
4370 M:      Nicolas Pitre <nico@fluxnic.net>
4371 S:      Maintained
4372 F:      Documentation/filesystems/cramfs.txt
4373 F:      fs/cramfs/
4374
4375 CREATIVE SB0540
4376 M:      Bastien Nocera <hadess@hadess.net>
4377 L:      linux-input@vger.kernel.org
4378 S:      Maintained
4379 F:      drivers/hid/hid-creative-sb0540.c
4380
4381 CRYPTO API
4382 M:      Herbert Xu <herbert@gondor.apana.org.au>
4383 M:      "David S. Miller" <davem@davemloft.net>
4384 L:      linux-crypto@vger.kernel.org
4385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4387 S:      Maintained
4388 F:      Documentation/crypto/
4389 F:      Documentation/devicetree/bindings/crypto/
4390 F:      arch/*/crypto/
4391 F:      crypto/
4392 F:      drivers/crypto/
4393 F:      include/crypto/
4394 F:      include/linux/crypto*
4395 F:      lib/crypto/
4396
4397 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4398 M:      Neil Horman <nhorman@tuxdriver.com>
4399 L:      linux-crypto@vger.kernel.org
4400 S:      Maintained
4401 F:      crypto/ansi_cprng.c
4402 F:      crypto/rng.c
4403
4404 CS3308 MEDIA DRIVER
4405 M:      Hans Verkuil <hverkuil@xs4all.nl>
4406 L:      linux-media@vger.kernel.org
4407 T:      git git://linuxtv.org/media_tree.git
4408 W:      http://linuxtv.org
4409 S:      Odd Fixes
4410 F:      drivers/media/i2c/cs3308.c
4411
4412 CS5535 Audio ALSA driver
4413 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4414 S:      Maintained
4415 F:      sound/pci/cs5535audio/
4416
4417 CSI DRIVERS FOR ALLWINNER V3s
4418 M:      Yong Deng <yong.deng@magewell.com>
4419 L:      linux-media@vger.kernel.org
4420 T:      git git://linuxtv.org/media_tree.git
4421 S:      Maintained
4422 F:      drivers/media/platform/sunxi/sun6i-csi/
4423 F:      Documentation/devicetree/bindings/media/sun6i-csi.txt
4424
4425 CW1200 WLAN driver
4426 M:      Solomon Peachy <pizza@shaftnet.org>
4427 S:      Maintained
4428 F:      drivers/net/wireless/st/cw1200/
4429
4430 CX18 VIDEO4LINUX DRIVER
4431 M:      Andy Walls <awalls@md.metrocast.net>
4432 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
4433 L:      linux-media@vger.kernel.org
4434 T:      git git://linuxtv.org/media_tree.git
4435 W:      https://linuxtv.org
4436 W:      http://www.ivtvdriver.org/index.php/Cx18
4437 S:      Maintained
4438 F:      Documentation/media/v4l-drivers/cx18*
4439 F:      drivers/media/pci/cx18/
4440 F:      include/uapi/linux/ivtv*
4441
4442 CX2341X MPEG ENCODER HELPER MODULE
4443 M:      Hans Verkuil <hverkuil@xs4all.nl>
4444 L:      linux-media@vger.kernel.org
4445 T:      git git://linuxtv.org/media_tree.git
4446 W:      https://linuxtv.org
4447 S:      Maintained
4448 F:      drivers/media/common/cx2341x*
4449 F:      include/media/drv-intf/cx2341x.h
4450
4451 CX24120 MEDIA DRIVER
4452 M:      Jemma Denson <jdenson@gmail.com>
4453 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4454 L:      linux-media@vger.kernel.org
4455 W:      https://linuxtv.org
4456 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4457 S:      Maintained
4458 F:      drivers/media/dvb-frontends/cx24120*
4459
4460 CX88 VIDEO4LINUX DRIVER
4461 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4462 L:      linux-media@vger.kernel.org
4463 W:      https://linuxtv.org
4464 T:      git git://linuxtv.org/media_tree.git
4465 S:      Odd fixes
4466 F:      Documentation/media/v4l-drivers/cx88*
4467 F:      drivers/media/pci/cx88/
4468
4469 CXD2820R MEDIA DRIVER
4470 M:      Antti Palosaari <crope@iki.fi>
4471 L:      linux-media@vger.kernel.org
4472 W:      https://linuxtv.org
4473 W:      http://palosaari.fi/linux/
4474 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4475 T:      git git://linuxtv.org/anttip/media_tree.git
4476 S:      Maintained
4477 F:      drivers/media/dvb-frontends/cxd2820r*
4478
4479 CXGB3 ETHERNET DRIVER (CXGB3)
4480 M:      Vishal Kulkarni <vishal@chelsio.com>
4481 L:      netdev@vger.kernel.org
4482 W:      http://www.chelsio.com
4483 S:      Supported
4484 F:      drivers/net/ethernet/chelsio/cxgb3/
4485
4486 CXGB3 ISCSI DRIVER (CXGB3I)
4487 M:      Karen Xie <kxie@chelsio.com>
4488 L:      linux-scsi@vger.kernel.org
4489 W:      http://www.chelsio.com
4490 S:      Supported
4491 F:      drivers/scsi/cxgbi/cxgb3i
4492
4493 CXGB4 CRYPTO DRIVER (chcr)
4494 M:      Atul Gupta <atul.gupta@chelsio.com>
4495 L:      linux-crypto@vger.kernel.org
4496 W:      http://www.chelsio.com
4497 S:      Supported
4498 F:      drivers/crypto/chelsio
4499
4500 CXGB4 ETHERNET DRIVER (CXGB4)
4501 M:      Vishal Kulkarni <vishal@chelsio.com>
4502 L:      netdev@vger.kernel.org
4503 W:      http://www.chelsio.com
4504 S:      Supported
4505 F:      drivers/net/ethernet/chelsio/cxgb4/
4506
4507 CXGB4 ISCSI DRIVER (CXGB4I)
4508 M:      Karen Xie <kxie@chelsio.com>
4509 L:      linux-scsi@vger.kernel.org
4510 W:      http://www.chelsio.com
4511 S:      Supported
4512 F:      drivers/scsi/cxgbi/cxgb4i
4513
4514 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4515 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4516 L:      linux-rdma@vger.kernel.org
4517 W:      http://www.openfabrics.org
4518 S:      Supported
4519 F:      drivers/infiniband/hw/cxgb4/
4520 F:      include/uapi/rdma/cxgb4-abi.h
4521
4522 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4523 M:      Casey Leedom <leedom@chelsio.com>
4524 L:      netdev@vger.kernel.org
4525 W:      http://www.chelsio.com
4526 S:      Supported
4527 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4528
4529 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4530 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4531 M:      Andrew Donnellan <ajd@linux.ibm.com>
4532 L:      linuxppc-dev@lists.ozlabs.org
4533 S:      Supported
4534 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4535 F:      drivers/misc/cxl/
4536 F:      include/misc/cxl*
4537 F:      include/uapi/misc/cxl.h
4538 F:      Documentation/powerpc/cxl.rst
4539 F:      Documentation/ABI/testing/sysfs-class-cxl
4540
4541 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4542 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4543 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4544 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4545 L:      linux-scsi@vger.kernel.org
4546 S:      Supported
4547 F:      drivers/scsi/cxlflash/
4548 F:      include/uapi/scsi/cxlflash_ioctl.h
4549 F:      Documentation/powerpc/cxlflash.rst
4550
4551 CYBERPRO FB DRIVER
4552 M:      Russell King <linux@armlinux.org.uk>
4553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4554 W:      http://www.armlinux.org.uk/
4555 S:      Maintained
4556 F:      drivers/video/fbdev/cyber2000fb.*
4557
4558 CYCLADES ASYNC MUX DRIVER
4559 W:      http://www.cyclades.com/
4560 S:      Orphan
4561 F:      drivers/tty/cyclades.c
4562 F:      include/linux/cyclades.h
4563 F:      include/uapi/linux/cyclades.h
4564
4565 CYCLADES PC300 DRIVER
4566 W:      http://www.cyclades.com/
4567 S:      Orphan
4568 F:      drivers/net/wan/pc300*
4569
4570 CYPRESS_FIRMWARE MEDIA DRIVER
4571 M:      Antti Palosaari <crope@iki.fi>
4572 L:      linux-media@vger.kernel.org
4573 W:      https://linuxtv.org
4574 W:      http://palosaari.fi/linux/
4575 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4576 T:      git git://linuxtv.org/anttip/media_tree.git
4577 S:      Maintained
4578 F:      drivers/media/common/cypress_firmware*
4579
4580 CYTTSP TOUCHSCREEN DRIVER
4581 M:      Ferruh Yigit <fery@cypress.com>
4582 L:      linux-input@vger.kernel.org
4583 S:      Supported
4584 F:      drivers/input/touchscreen/cyttsp*
4585 F:      include/linux/input/cyttsp.h
4586
4587 D-LINK DIR-685 TOUCHKEYS DRIVER
4588 M:      Linus Walleij <linus.walleij@linaro.org>
4589 L:      linux-input@vger.kernel.org
4590 S:      Supported
4591 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4592
4593 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4594 M:      Joshua Kinard <kumba@gentoo.org>
4595 S:      Maintained
4596 F:      drivers/rtc/rtc-ds1685.c
4597 F:      include/linux/rtc/ds1685.h
4598
4599 DAMA SLAVE for AX.25
4600 M:      Joerg Reuter <jreuter@yaina.de>
4601 W:      http://yaina.de/jreuter/
4602 W:      http://www.qsl.net/dl1bke/
4603 L:      linux-hams@vger.kernel.org
4604 S:      Maintained
4605 F:      net/ax25/af_ax25.c
4606 F:      net/ax25/ax25_dev.c
4607 F:      net/ax25/ax25_ds_*
4608 F:      net/ax25/ax25_in.c
4609 F:      net/ax25/ax25_out.c
4610 F:      net/ax25/ax25_timer.c
4611 F:      net/ax25/sysctl_net_ax25.c
4612
4613 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4614 L:      netdev@vger.kernel.org
4615 S:      Orphan
4616 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4617 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4618
4619 DC390/AM53C974 SCSI driver
4620 M:      Hannes Reinecke <hare@suse.com>
4621 L:      linux-scsi@vger.kernel.org
4622 S:      Maintained
4623 F:      drivers/scsi/am53c974.c
4624
4625 DC395x SCSI driver
4626 M:      Oliver Neukum <oliver@neukum.org>
4627 M:      Ali Akcaagac <aliakc@web.de>
4628 M:      Jamie Lenehan <lenehan@twibble.org>
4629 L:      dc395x@twibble.org
4630 W:      http://twibble.org/dist/dc395x/
4631 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4632 S:      Maintained
4633 F:      Documentation/scsi/dc395x.txt
4634 F:      drivers/scsi/dc395x.*
4635
4636 DCCP PROTOCOL
4637 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4638 L:      dccp@vger.kernel.org
4639 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4640 S:      Maintained
4641 F:      include/linux/dccp.h
4642 F:      include/uapi/linux/dccp.h
4643 F:      include/linux/tfrc.h
4644 F:      net/dccp/
4645
4646 DECnet NETWORK LAYER
4647 W:      http://linux-decnet.sourceforge.net
4648 L:      linux-decnet-user@lists.sourceforge.net
4649 S:      Orphan
4650 F:      Documentation/networking/decnet.txt
4651 F:      net/decnet/
4652
4653 DECSTATION PLATFORM SUPPORT
4654 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4655 L:      linux-mips@vger.kernel.org
4656 W:      http://www.linux-mips.org/wiki/DECstation
4657 S:      Maintained
4658 F:      arch/mips/dec/
4659 F:      arch/mips/include/asm/dec/
4660 F:      arch/mips/include/asm/mach-dec/
4661
4662 DEFXX FDDI NETWORK DRIVER
4663 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4664 S:      Maintained
4665 F:      drivers/net/fddi/defxx.*
4666
4667 DEINTERLACE DRIVERS FOR ALLWINNER H3
4668 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4669 L:      linux-media@vger.kernel.org
4670 T:      git git://linuxtv.org/media_tree.git
4671 S:      Maintained
4672 F:      drivers/media/platform/sunxi/sun8i-di/
4673 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4674
4675 DELL SMBIOS DRIVER
4676 M:      Pali Rohár <pali.rohar@gmail.com>
4677 M:      Mario Limonciello <mario.limonciello@dell.com>
4678 L:      platform-driver-x86@vger.kernel.org
4679 S:      Maintained
4680 F:      drivers/platform/x86/dell-smbios.*
4681
4682 DELL SMBIOS SMM DRIVER
4683 M:      Mario Limonciello <mario.limonciello@dell.com>
4684 L:      platform-driver-x86@vger.kernel.org
4685 S:      Maintained
4686 F:      drivers/platform/x86/dell-smbios-smm.c
4687
4688 DELL SMBIOS WMI DRIVER
4689 M:      Mario Limonciello <mario.limonciello@dell.com>
4690 L:      platform-driver-x86@vger.kernel.org
4691 S:      Maintained
4692 F:      drivers/platform/x86/dell-smbios-wmi.c
4693 F:      tools/wmi/dell-smbios-example.c
4694
4695 DEFZA FDDI NETWORK DRIVER
4696 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4697 S:      Maintained
4698 F:      drivers/net/fddi/defza.*
4699
4700 DELL LAPTOP DRIVER
4701 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4702 M:      Pali Rohár <pali.rohar@gmail.com>
4703 L:      platform-driver-x86@vger.kernel.org
4704 S:      Maintained
4705 F:      drivers/platform/x86/dell-laptop.c
4706
4707 DELL LAPTOP FREEFALL DRIVER
4708 M:      Pali Rohár <pali.rohar@gmail.com>
4709 S:      Maintained
4710 F:      drivers/platform/x86/dell-smo8800.c
4711
4712 DELL LAPTOP RBTN DRIVER
4713 M:      Pali Rohár <pali.rohar@gmail.com>
4714 S:      Maintained
4715 F:      drivers/platform/x86/dell-rbtn.*
4716
4717 DELL REMOTE BIOS UPDATE DRIVER
4718 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4719 L:      platform-driver-x86@vger.kernel.org
4720 S:      Maintained
4721 F:      drivers/platform/x86/dell_rbu.c
4722
4723 DELL LAPTOP SMM DRIVER
4724 M:      Pali Rohár <pali.rohar@gmail.com>
4725 S:      Maintained
4726 F:      drivers/hwmon/dell-smm-hwmon.c
4727 F:      include/uapi/linux/i8k.h
4728
4729 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4730 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4731 L:      platform-driver-x86@vger.kernel.org
4732 S:      Maintained
4733 F:      Documentation/driver-api/dcdbas.rst
4734 F:      drivers/platform/x86/dcdbas.*
4735
4736 DELL WMI NOTIFICATIONS DRIVER
4737 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4738 M:      Pali Rohár <pali.rohar@gmail.com>
4739 S:      Maintained
4740 F:      drivers/platform/x86/dell-wmi.c
4741
4742 DELL WMI DESCRIPTOR DRIVER
4743 M:      Mario Limonciello <mario.limonciello@dell.com>
4744 S:      Maintained
4745 F:      drivers/platform/x86/dell-wmi-descriptor.c
4746
4747 DELTA ST MEDIA DRIVER
4748 M:      Hugues Fruchet <hugues.fruchet@st.com>
4749 L:      linux-media@vger.kernel.org
4750 T:      git git://linuxtv.org/media_tree.git
4751 W:      https://linuxtv.org
4752 S:      Supported
4753 F:      drivers/media/platform/sti/delta
4754
4755 DENALI NAND DRIVER
4756 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4757 L:      linux-mtd@lists.infradead.org
4758 S:      Supported
4759 F:      drivers/mtd/nand/raw/denali*
4760
4761 DESIGNWARE EDMA CORE IP DRIVER
4762 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4763 L:      dmaengine@vger.kernel.org
4764 S:      Maintained
4765 F:      drivers/dma/dw-edma/
4766 F:      include/linux/dma/edma.h
4767
4768 DESIGNWARE USB2 DRD IP DRIVER
4769 M:      Minas Harutyunyan <hminas@synopsys.com>
4770 L:      linux-usb@vger.kernel.org
4771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4772 S:      Maintained
4773 F:      drivers/usb/dwc2/
4774
4775 DESIGNWARE USB3 DRD IP DRIVER
4776 M:      Felipe Balbi <balbi@kernel.org>
4777 L:      linux-usb@vger.kernel.org
4778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4779 S:      Maintained
4780 F:      drivers/usb/dwc3/
4781
4782 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4783 M:      Andreas Klinger <ak@it-klinger.de>
4784 L:      linux-iio@vger.kernel.org
4785 S:      Maintained
4786 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4787 F:      drivers/iio/proximity/srf*.c
4788
4789 DEVICE COREDUMP (DEV_COREDUMP)
4790 M:      Johannes Berg <johannes@sipsolutions.net>
4791 L:      linux-kernel@vger.kernel.org
4792 S:      Maintained
4793 F:      drivers/base/devcoredump.c
4794 F:      include/linux/devcoredump.h
4795
4796 DEVICE FREQUENCY (DEVFREQ)
4797 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4798 M:      Kyungmin Park <kyungmin.park@samsung.com>
4799 M:      Chanwoo Choi <cw00.choi@samsung.com>
4800 L:      linux-pm@vger.kernel.org
4801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4802 S:      Maintained
4803 F:      drivers/devfreq/
4804 F:      include/linux/devfreq.h
4805 F:      Documentation/devicetree/bindings/devfreq/
4806 F:      include/trace/events/devfreq.h
4807
4808 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4809 M:      Chanwoo Choi <cw00.choi@samsung.com>
4810 L:      linux-pm@vger.kernel.org
4811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4812 S:      Supported
4813 F:      drivers/devfreq/event/
4814 F:      drivers/devfreq/devfreq-event.c
4815 F:      include/dt-bindings/pmu/exynos_ppmu.h
4816 F:      include/linux/devfreq-event.h
4817 F:      Documentation/devicetree/bindings/devfreq/event/
4818
4819 DEVICE NUMBER REGISTRY
4820 M:      Torben Mathiasen <device@lanana.org>
4821 W:      http://lanana.org/docs/device-list/index.html
4822 S:      Maintained
4823
4824 DEVICE-MAPPER  (LVM)
4825 M:      Alasdair Kergon <agk@redhat.com>
4826 M:      Mike Snitzer <snitzer@redhat.com>
4827 M:      dm-devel@redhat.com
4828 L:      dm-devel@redhat.com
4829 W:      http://sources.redhat.com/dm
4830 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4832 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4833 S:      Maintained
4834 F:      Documentation/admin-guide/device-mapper/
4835 F:      drivers/md/Makefile
4836 F:      drivers/md/Kconfig
4837 F:      drivers/md/dm*
4838 F:      drivers/md/persistent-data/
4839 F:      include/linux/device-mapper.h
4840 F:      include/linux/dm-*.h
4841 F:      include/uapi/linux/dm-*.h
4842
4843 DEVLINK
4844 M:      Jiri Pirko <jiri@mellanox.com>
4845 L:      netdev@vger.kernel.org
4846 S:      Supported
4847 F:      net/core/devlink.c
4848 F:      include/net/devlink.h
4849 F:      include/uapi/linux/devlink.h
4850
4851 DIALOG SEMICONDUCTOR DRIVERS
4852 M:      Support Opensource <support.opensource@diasemi.com>
4853 W:      http://www.dialog-semiconductor.com/products
4854 S:      Supported
4855 F:      Documentation/hwmon/da90??.rst
4856 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4857 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4858 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4859 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4860 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4861 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4862 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4863 F:      drivers/gpio/gpio-da90??.c
4864 F:      drivers/hwmon/da90??-hwmon.c
4865 F:      drivers/iio/adc/da91??-*.c
4866 F:      drivers/input/misc/da90??_onkey.c
4867 F:      drivers/input/touchscreen/da9052_tsi.c
4868 F:      drivers/leds/leds-da90??.c
4869 F:      drivers/mfd/da903x.c
4870 F:      drivers/mfd/da90??-*.c
4871 F:      drivers/mfd/da91??-*.c
4872 F:      drivers/power/supply/da9052-battery.c
4873 F:      drivers/power/supply/da91??-*.c
4874 F:      drivers/regulator/da903x.c
4875 F:      drivers/regulator/da9???-regulator.[ch]
4876 F:      drivers/regulator/slg51000-regulator.[ch]
4877 F:      drivers/thermal/da90??-thermal.c
4878 F:      drivers/rtc/rtc-da90??.c
4879 F:      drivers/video/backlight/da90??_bl.c
4880 F:      drivers/watchdog/da90??_wdt.c
4881 F:      include/linux/mfd/da903x.h
4882 F:      include/linux/mfd/da9052/
4883 F:      include/linux/mfd/da9055/
4884 F:      include/linux/mfd/da9062/
4885 F:      include/linux/mfd/da9063/
4886 F:      include/linux/mfd/da9150/
4887 F:      include/linux/regulator/da9211.h
4888 F:      include/sound/da[79]*.h
4889 F:      sound/soc/codecs/da[79]*.[ch]
4890
4891 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4892 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4893 L:      linux-gpio@vger.kernel.org
4894 S:      Maintained
4895 F:      drivers/gpio/gpio-gpio-mm.c
4896
4897 DIOLAN U2C-12 I2C DRIVER
4898 M:      Guenter Roeck <linux@roeck-us.net>
4899 L:      linux-i2c@vger.kernel.org
4900 S:      Maintained
4901 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4902
4903 FILESYSTEM DIRECT ACCESS (DAX)
4904 M:      Dan Williams <dan.j.williams@intel.com>
4905 R:      Matthew Wilcox <willy@infradead.org>
4906 R:      Jan Kara <jack@suse.cz>
4907 L:      linux-fsdevel@vger.kernel.org
4908 L:      linux-nvdimm@lists.01.org
4909 S:      Supported
4910 F:      fs/dax.c
4911 F:      include/linux/dax.h
4912 F:      include/trace/events/fs_dax.h
4913
4914 DEVICE DIRECT ACCESS (DAX)
4915 M:      Dan Williams <dan.j.williams@intel.com>
4916 M:      Vishal Verma <vishal.l.verma@intel.com>
4917 M:      Dave Jiang <dave.jiang@intel.com>
4918 L:      linux-nvdimm@lists.01.org
4919 S:      Supported
4920 F:      drivers/dax/
4921
4922 DIRECTORY NOTIFICATION (DNOTIFY)
4923 M:      Jan Kara <jack@suse.cz>
4924 R:      Amir Goldstein <amir73il@gmail.com>
4925 L:      linux-fsdevel@vger.kernel.org
4926 S:      Maintained
4927 F:      Documentation/filesystems/dnotify.txt
4928 F:      fs/notify/dnotify/
4929 F:      include/linux/dnotify.h
4930
4931 DISK GEOMETRY AND PARTITION HANDLING
4932 M:      Andries Brouwer <aeb@cwi.nl>
4933 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4934 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4935 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4936 S:      Maintained
4937
4938 DISKQUOTA
4939 M:      Jan Kara <jack@suse.com>
4940 S:      Maintained
4941 F:      Documentation/filesystems/quota.txt
4942 F:      fs/quota/
4943 F:      include/linux/quota*.h
4944 F:      include/uapi/linux/quota*.h
4945
4946 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4947 M:      Bernie Thompson <bernie@plugable.com>
4948 L:      linux-fbdev@vger.kernel.org
4949 S:      Maintained
4950 W:      http://plugable.com/category/projects/udlfb/
4951 F:      drivers/video/fbdev/udlfb.c
4952 F:      include/video/udlfb.h
4953 F:      Documentation/fb/udlfb.rst
4954
4955 DISTRIBUTED LOCK MANAGER (DLM)
4956 M:      Christine Caulfield <ccaulfie@redhat.com>
4957 M:      David Teigland <teigland@redhat.com>
4958 L:      cluster-devel@redhat.com
4959 W:      http://sources.redhat.com/cluster/
4960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4961 S:      Supported
4962 F:      fs/dlm/
4963
4964 DMA BUFFER SHARING FRAMEWORK
4965 M:      Sumit Semwal <sumit.semwal@linaro.org>
4966 S:      Maintained
4967 L:      linux-media@vger.kernel.org
4968 L:      dri-devel@lists.freedesktop.org
4969 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4970 F:      drivers/dma-buf/
4971 F:      include/linux/dma-buf*
4972 F:      include/linux/reservation.h
4973 F:      include/linux/*fence.h
4974 F:      Documentation/driver-api/dma-buf.rst
4975 T:      git git://anongit.freedesktop.org/drm/drm-misc
4976
4977 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4978 M:      Vinod Koul <vkoul@kernel.org>
4979 L:      dmaengine@vger.kernel.org
4980 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4981 S:      Maintained
4982 F:      drivers/dma/
4983 F:      include/linux/dmaengine.h
4984 F:      include/linux/of_dma.h
4985 F:      Documentation/devicetree/bindings/dma/
4986 F:      Documentation/driver-api/dmaengine/
4987 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4988
4989 DMA MAPPING HELPERS
4990 M:      Christoph Hellwig <hch@lst.de>
4991 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4992 R:      Robin Murphy <robin.murphy@arm.com>
4993 L:      iommu@lists.linux-foundation.org
4994 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4995 W:      http://git.infradead.org/users/hch/dma-mapping.git
4996 S:      Supported
4997 F:      kernel/dma/
4998 F:      include/asm-generic/dma-mapping.h
4999 F:      include/linux/dma-direct.h
5000 F:      include/linux/dma-mapping.h
5001 F:      include/linux/dma-noncoherent.h
5002
5003 DME1737 HARDWARE MONITOR DRIVER
5004 M:      Juerg Haefliger <juergh@gmail.com>
5005 L:      linux-hwmon@vger.kernel.org
5006 S:      Maintained
5007 F:      Documentation/hwmon/dme1737.rst
5008 F:      drivers/hwmon/dme1737.c
5009
5010 DMI/SMBIOS SUPPORT
5011 M:      Jean Delvare <jdelvare@suse.com>
5012 S:      Maintained
5013 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5014 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5015 F:      drivers/firmware/dmi-id.c
5016 F:      drivers/firmware/dmi_scan.c
5017 F:      include/linux/dmi.h
5018
5019 DOCUMENTATION
5020 M:      Jonathan Corbet <corbet@lwn.net>
5021 L:      linux-doc@vger.kernel.org
5022 S:      Maintained
5023 F:      Documentation/
5024 F:      scripts/documentation-file-ref-check
5025 F:      scripts/kernel-doc
5026 F:      scripts/sphinx-pre-install
5027 X:      Documentation/ABI/
5028 X:      Documentation/firmware-guide/acpi/
5029 X:      Documentation/devicetree/
5030 X:      Documentation/i2c/
5031 X:      Documentation/media/
5032 X:      Documentation/power/
5033 X:      Documentation/spi/
5034 T:      git git://git.lwn.net/linux.git docs-next
5035
5036 DOCUMENTATION/ITALIAN
5037 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5038 L:      linux-doc@vger.kernel.org
5039 S:      Maintained
5040 F:      Documentation/translations/it_IT
5041
5042 DOCUMENTATION SCRIPTS
5043 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5044 L:      linux-doc@vger.kernel.org
5045 S:      Maintained
5046 F:      scripts/documentation-file-ref-check
5047 F:      scripts/sphinx-pre-install
5048 F:      Documentation/sphinx/parse-headers.pl
5049
5050 DONGWOON DW9714 LENS VOICE COIL DRIVER
5051 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5052 L:      linux-media@vger.kernel.org
5053 T:      git git://linuxtv.org/media_tree.git
5054 S:      Maintained
5055 F:      drivers/media/i2c/dw9714.c
5056 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5057
5058 DONGWOON DW9807 LENS VOICE COIL DRIVER
5059 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5060 L:      linux-media@vger.kernel.org
5061 T:      git git://linuxtv.org/media_tree.git
5062 S:      Maintained
5063 F:      drivers/media/i2c/dw9807-vcm.c
5064 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5065
5066 DOUBLETALK DRIVER
5067 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5068 L:      blinux-list@redhat.com
5069 S:      Maintained
5070 F:      drivers/char/dtlk.c
5071 F:      include/linux/dtlk.h
5072
5073 DPAA2 DATAPATH I/O (DPIO) DRIVER
5074 M:      Roy Pledge <Roy.Pledge@nxp.com>
5075 L:      linux-kernel@vger.kernel.org
5076 S:      Maintained
5077 F:      drivers/soc/fsl/dpio
5078
5079 DPAA2 ETHERNET DRIVER
5080 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5081 L:      netdev@vger.kernel.org
5082 S:      Maintained
5083 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5084 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5085 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5086 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5087 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5088 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5089 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5090 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5091 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5092
5093 DPAA2 ETHERNET SWITCH DRIVER
5094 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5095 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5096 L:      linux-kernel@vger.kernel.org
5097 S:      Maintained
5098 F:      drivers/staging/fsl-dpaa2/ethsw
5099
5100 DPT_I2O SCSI RAID DRIVER
5101 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5102 L:      linux-scsi@vger.kernel.org
5103 W:      http://www.adaptec.com/
5104 S:      Maintained
5105 F:      drivers/scsi/dpt*
5106 F:      drivers/scsi/dpt/
5107
5108 DRBD DRIVER
5109 M:      Philipp Reisner <philipp.reisner@linbit.com>
5110 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5111 L:      drbd-dev@lists.linbit.com
5112 W:      http://www.drbd.org
5113 T:      git git://git.linbit.com/linux-drbd.git
5114 T:      git git://git.linbit.com/drbd-8.4.git
5115 S:      Supported
5116 F:      drivers/block/drbd/
5117 F:      lib/lru_cache.c
5118 F:      Documentation/admin-guide/blockdev/
5119
5120 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5121 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5122 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5124 S:      Supported
5125 F:      Documentation/kobject.txt
5126 F:      drivers/base/
5127 F:      fs/debugfs/
5128 F:      fs/sysfs/
5129 F:      include/linux/debugfs.h
5130 F:      include/linux/kobj*
5131 F:      lib/kobj*
5132
5133 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5134 M:      Kevin Hilman <khilman@kernel.org>
5135 M:      Nishanth Menon <nm@ti.com>
5136 S:      Maintained
5137 F:      drivers/power/avs/
5138 F:      include/linux/power/smartreflex.h
5139 L:      linux-pm@vger.kernel.org
5140
5141 DRM DRIVER FOR ARM PL111 CLCD
5142 M:      Eric Anholt <eric@anholt.net>
5143 T:      git git://anongit.freedesktop.org/drm/drm-misc
5144 S:      Supported
5145 F:      drivers/gpu/drm/pl111/
5146
5147 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5148 M:      Linus Walleij <linus.walleij@linaro.org>
5149 T:      git git://anongit.freedesktop.org/drm/drm-misc
5150 S:      Maintained
5151 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5152 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5153
5154 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5155 M:      Dave Airlie <airlied@redhat.com>
5156 S:      Odd Fixes
5157 F:      drivers/gpu/drm/ast/
5158
5159 DRM DRIVER FOR ASPEED BMC GFX
5160 M:      Joel Stanley <joel@jms.id.au>
5161 L:      linux-aspeed@lists.ozlabs.org
5162 T:      git git://anongit.freedesktop.org/drm/drm-misc
5163 S:      Supported
5164 F:      drivers/gpu/drm/aspeed/
5165 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5166
5167 DRM DRIVER FOR BOCHS VIRTUAL GPU
5168 M:      Gerd Hoffmann <kraxel@redhat.com>
5169 L:      virtualization@lists.linux-foundation.org
5170 T:      git git://anongit.freedesktop.org/drm/drm-misc
5171 S:      Maintained
5172 F:      drivers/gpu/drm/bochs/
5173
5174 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5175 M:      Linus Walleij <linus.walleij@linaro.org>
5176 T:      git git://anongit.freedesktop.org/drm/drm-misc
5177 S:      Maintained
5178 F:      drivers/gpu/drm/tve200/
5179
5180 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5181 M:      Jagan Teki <jagan@amarulasolutions.com>
5182 S:      Maintained
5183 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5184 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5185
5186 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5187 M:      Hans de Goede <hdegoede@redhat.com>
5188 T:      git git://anongit.freedesktop.org/drm/drm-misc
5189 S:      Maintained
5190 F:      drivers/gpu/drm/tiny/gm12u320.c
5191
5192 DRM DRIVER FOR ILITEK ILI9225 PANELS
5193 M:      David Lechner <david@lechnology.com>
5194 T:      git git://anongit.freedesktop.org/drm/drm-misc
5195 S:      Maintained
5196 F:      drivers/gpu/drm/tiny/ili9225.c
5197 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5198
5199 DRM DRIVER FOR HX8357D PANELS
5200 M:      Eric Anholt <eric@anholt.net>
5201 T:      git git://anongit.freedesktop.org/drm/drm-misc
5202 S:      Maintained
5203 F:      drivers/gpu/drm/tiny/hx8357d.c
5204 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5205
5206 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5207 S:      Orphan / Obsolete
5208 F:      drivers/gpu/drm/i810/
5209 F:      include/uapi/drm/i810_drm.h
5210
5211 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5212 S:      Orphan / Obsolete
5213 F:      drivers/gpu/drm/mga/
5214 F:      include/uapi/drm/mga_drm.h
5215
5216 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5217 M:      Dave Airlie <airlied@redhat.com>
5218 S:      Odd Fixes
5219 F:      drivers/gpu/drm/mgag200/
5220
5221 DRM DRIVER FOR MI0283QT
5222 M:      Noralf Trønnes <noralf@tronnes.org>
5223 T:      git git://anongit.freedesktop.org/drm/drm-misc
5224 S:      Maintained
5225 F:      drivers/gpu/drm/tiny/mi0283qt.c
5226 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5227
5228 DRM DRIVER FOR MSM ADRENO GPU
5229 M:      Rob Clark <robdclark@gmail.com>
5230 M:      Sean Paul <sean@poorly.run>
5231 L:      linux-arm-msm@vger.kernel.org
5232 L:      dri-devel@lists.freedesktop.org
5233 L:      freedreno@lists.freedesktop.org
5234 T:      git https://gitlab.freedesktop.org/drm/msm.git
5235 S:      Maintained
5236 F:      drivers/gpu/drm/msm/
5237 F:      include/uapi/drm/msm_drm.h
5238 F:      Documentation/devicetree/bindings/display/msm/
5239
5240 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5241 M:      Ben Skeggs <bskeggs@redhat.com>
5242 L:      dri-devel@lists.freedesktop.org
5243 L:      nouveau@lists.freedesktop.org
5244 T:      git git://github.com/skeggsb/linux
5245 S:      Supported
5246 F:      drivers/gpu/drm/nouveau/
5247 F:      include/uapi/drm/nouveau_drm.h
5248
5249 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5250 M:      Stefan Mavrodiev <stefan@olimex.com>
5251 S:      Maintained
5252 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5253 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5254
5255 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5256 M:      Noralf Trønnes <noralf@tronnes.org>
5257 T:      git git://anongit.freedesktop.org/drm/drm-misc
5258 S:      Maintained
5259 F:      drivers/gpu/drm/tiny/repaper.c
5260 F:      Documentation/devicetree/bindings/display/repaper.txt
5261
5262 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5263 M:      Dave Airlie <airlied@redhat.com>
5264 M:      Gerd Hoffmann <kraxel@redhat.com>
5265 L:      virtualization@lists.linux-foundation.org
5266 T:      git git://anongit.freedesktop.org/drm/drm-misc
5267 S:      Obsolete
5268 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5269 F:      drivers/gpu/drm/cirrus/
5270
5271 DRM DRIVER FOR QXL VIRTUAL GPU
5272 M:      Dave Airlie <airlied@redhat.com>
5273 M:      Gerd Hoffmann <kraxel@redhat.com>
5274 L:      virtualization@lists.linux-foundation.org
5275 L:      spice-devel@lists.freedesktop.org
5276 T:      git git://anongit.freedesktop.org/drm/drm-misc
5277 S:      Maintained
5278 F:      drivers/gpu/drm/qxl/
5279 F:      include/uapi/drm/qxl_drm.h
5280
5281 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5282 M:      Robert Chiras <robert.chiras@nxp.com>
5283 S:      Maintained
5284 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5285 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5286
5287 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5288 S:      Orphan / Obsolete
5289 F:      drivers/gpu/drm/r128/
5290 F:      include/uapi/drm/r128_drm.h
5291
5292 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5293 M:      Guido Günther <agx@sigxcpu.org>
5294 R:      Purism Kernel Team <kernel@puri.sm>
5295 S:      Maintained
5296 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5297 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5298
5299 DRM DRIVER FOR SAVAGE VIDEO CARDS
5300 S:      Orphan / Obsolete
5301 F:      drivers/gpu/drm/savage/
5302 F:      include/uapi/drm/savage_drm.h
5303
5304 DRM DRIVER FOR SIS VIDEO CARDS
5305 S:      Orphan / Obsolete
5306 F:      drivers/gpu/drm/sis/
5307 F:      include/uapi/drm/sis_drm.h
5308
5309 DRM DRIVER FOR SITRONIX ST7701 PANELS
5310 M:      Jagan Teki <jagan@amarulasolutions.com>
5311 S:      Maintained
5312 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5313 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5314
5315 DRM DRIVER FOR SITRONIX ST7586 PANELS
5316 M:      David Lechner <david@lechnology.com>
5317 T:      git git://anongit.freedesktop.org/drm/drm-misc
5318 S:      Maintained
5319 F:      drivers/gpu/drm/tiny/st7586.c
5320 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5321
5322 DRM DRIVER FOR SITRONIX ST7735R PANELS
5323 M:      David Lechner <david@lechnology.com>
5324 T:      git git://anongit.freedesktop.org/drm/drm-misc
5325 S:      Maintained
5326 F:      drivers/gpu/drm/tiny/st7735r.c
5327 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.txt
5328
5329 DRM DRIVER FOR ST-ERICSSON MCDE
5330 M:      Linus Walleij <linus.walleij@linaro.org>
5331 T:      git git://anongit.freedesktop.org/drm/drm-misc
5332 S:      Maintained
5333 F:      drivers/gpu/drm/mcde/
5334 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5335
5336 DRM DRIVER FOR TDFX VIDEO CARDS
5337 S:      Orphan / Obsolete
5338 F:      drivers/gpu/drm/tdfx/
5339
5340 DRM DRIVER FOR TPO TPG110 PANELS
5341 M:      Linus Walleij <linus.walleij@linaro.org>
5342 T:      git git://anongit.freedesktop.org/drm/drm-misc
5343 S:      Maintained
5344 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5345 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5346
5347 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5348 M:      Dave Airlie <airlied@redhat.com>
5349 R:      Sean Paul <sean@poorly.run>
5350 L:      dri-devel@lists.freedesktop.org
5351 S:      Odd Fixes
5352 F:      drivers/gpu/drm/udl/
5353 T:      git git://anongit.freedesktop.org/drm/drm-misc
5354
5355 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5356 M:      Hans de Goede <hdegoede@redhat.com>
5357 L:      dri-devel@lists.freedesktop.org
5358 S:      Maintained
5359 F:      drivers/gpu/drm/vboxvideo/
5360 T:      git git://anongit.freedesktop.org/drm/drm-misc
5361
5362 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5363 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5364 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5365 R:      Daniel Vetter <daniel@ffwll.ch>
5366 T:      git git://anongit.freedesktop.org/drm/drm-misc
5367 S:      Maintained
5368 L:      dri-devel@lists.freedesktop.org
5369 F:      drivers/gpu/drm/vkms/
5370 F:      Documentation/gpu/vkms.rst
5371
5372 DRM DRIVER FOR VMWARE VIRTUAL GPU
5373 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5374 M:      Thomas Hellstrom <thellstrom@vmware.com>
5375 L:      dri-devel@lists.freedesktop.org
5376 T:      git git://people.freedesktop.org/~thomash/linux
5377 S:      Supported
5378 F:      drivers/gpu/drm/vmwgfx/
5379 F:      include/uapi/drm/vmwgfx_drm.h
5380
5381 DRM DRIVERS
5382 M:      David Airlie <airlied@linux.ie>
5383 M:      Daniel Vetter <daniel@ffwll.ch>
5384 L:      dri-devel@lists.freedesktop.org
5385 T:      git git://anongit.freedesktop.org/drm/drm
5386 B:      https://bugs.freedesktop.org/
5387 C:      irc://chat.freenode.net/dri-devel
5388 S:      Maintained
5389 F:      drivers/gpu/drm/
5390 F:      drivers/gpu/vga/
5391 F:      Documentation/devicetree/bindings/display/
5392 F:      Documentation/devicetree/bindings/gpu/
5393 F:      Documentation/gpu/
5394 F:      include/drm/
5395 F:      include/uapi/drm/
5396 F:      include/linux/vga*
5397
5398 DRM DRIVERS AND MISC GPU PATCHES
5399 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5400 M:      Maxime Ripard <mripard@kernel.org>
5401 M:      Sean Paul <sean@poorly.run>
5402 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5403 S:      Maintained
5404 T:      git git://anongit.freedesktop.org/drm/drm-misc
5405 F:      Documentation/gpu/
5406 F:      drivers/gpu/vga/
5407 F:      drivers/gpu/drm/*
5408 F:      include/drm/drm*
5409 F:      include/uapi/drm/drm*
5410 F:      include/linux/vga*
5411
5412 DRM DRIVERS FOR ALLWINNER A10
5413 M:      Maxime Ripard <mripard@kernel.org>
5414 M:      Chen-Yu Tsai <wens@csie.org>
5415 L:      dri-devel@lists.freedesktop.org
5416 S:      Supported
5417 F:      drivers/gpu/drm/sun4i/
5418 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5419 T:      git git://anongit.freedesktop.org/drm/drm-misc
5420
5421 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5422 M:      Maxime Ripard <mripard@kernel.org>
5423 M:      Chen-Yu Tsai <wens@csie.org>
5424 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5425 L:      dri-devel@lists.freedesktop.org
5426 S:      Supported
5427 F:      drivers/gpu/drm/sun4i/sun8i*
5428 T:      git git://anongit.freedesktop.org/drm/drm-misc
5429
5430 DRM DRIVERS FOR AMLOGIC SOCS
5431 M:      Neil Armstrong <narmstrong@baylibre.com>
5432 L:      dri-devel@lists.freedesktop.org
5433 L:      linux-amlogic@lists.infradead.org
5434 W:      http://linux-meson.com/
5435 S:      Supported
5436 F:      drivers/gpu/drm/meson/
5437 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5438 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5439 F:      Documentation/gpu/meson.rst
5440 T:      git git://anongit.freedesktop.org/drm/drm-misc
5441
5442 DRM DRIVERS FOR ATMEL HLCDC
5443 M:      Sam Ravnborg <sam@ravnborg.org>
5444 M:      Boris Brezillon <bbrezillon@kernel.org>
5445 L:      dri-devel@lists.freedesktop.org
5446 S:      Supported
5447 F:      drivers/gpu/drm/atmel-hlcdc/
5448 F:      Documentation/devicetree/bindings/display/atmel/
5449 T:      git git://anongit.freedesktop.org/drm/drm-misc
5450
5451 DRM DRIVERS FOR BRIDGE CHIPS
5452 M:      Andrzej Hajda <a.hajda@samsung.com>
5453 M:      Neil Armstrong <narmstrong@baylibre.com>
5454 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5455 R:      Jonas Karlman <jonas@kwiboo.se>
5456 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5457 S:      Maintained
5458 T:      git git://anongit.freedesktop.org/drm/drm-misc
5459 F:      drivers/gpu/drm/bridge/
5460
5461 DRM DRIVERS FOR EXYNOS
5462 M:      Inki Dae <inki.dae@samsung.com>
5463 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5464 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5465 M:      Kyungmin Park <kyungmin.park@samsung.com>
5466 L:      dri-devel@lists.freedesktop.org
5467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5468 S:      Supported
5469 F:      drivers/gpu/drm/exynos/
5470 F:      include/uapi/drm/exynos_drm.h
5471 F:      Documentation/devicetree/bindings/display/exynos/
5472
5473 DRM DRIVERS FOR FREESCALE DCU
5474 M:      Stefan Agner <stefan@agner.ch>
5475 M:      Alison Wang <alison.wang@nxp.com>
5476 L:      dri-devel@lists.freedesktop.org
5477 S:      Supported
5478 F:      drivers/gpu/drm/fsl-dcu/
5479 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5480 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5481 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19-05b.txt
5482 T:      git git://anongit.freedesktop.org/drm/drm-misc
5483
5484 DRM DRIVERS FOR FREESCALE IMX
5485 M:      Philipp Zabel <p.zabel@pengutronix.de>
5486 L:      dri-devel@lists.freedesktop.org
5487 S:      Maintained
5488 F:      drivers/gpu/drm/imx/
5489 F:      drivers/gpu/ipu-v3/
5490 F:      Documentation/devicetree/bindings/display/imx/
5491
5492 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5493 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5494 L:      dri-devel@lists.freedesktop.org
5495 T:      git git://github.com/patjak/drm-gma500
5496 S:      Maintained
5497 F:      drivers/gpu/drm/gma500/
5498
5499 DRM DRIVERS FOR HISILICON
5500 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
5501 M:      Rongrong Zou <zourongrong@gmail.com>
5502 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5503 R:      Chen Feng <puck.chen@hisilicon.com>
5504 L:      dri-devel@lists.freedesktop.org
5505 T:      git git://github.com/xin3liang/linux.git
5506 S:      Maintained
5507 F:      drivers/gpu/drm/hisilicon/
5508 F:      Documentation/devicetree/bindings/display/hisilicon/
5509
5510 DRM DRIVERS FOR LIMA
5511 M:      Qiang Yu <yuq825@gmail.com>
5512 L:      dri-devel@lists.freedesktop.org
5513 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5514 S:      Maintained
5515 F:      drivers/gpu/drm/lima/
5516 F:      include/uapi/drm/lima_drm.h
5517 T:      git git://anongit.freedesktop.org/drm/drm-misc
5518
5519 DRM DRIVERS FOR MEDIATEK
5520 M:      CK Hu <ck.hu@mediatek.com>
5521 M:      Philipp Zabel <p.zabel@pengutronix.de>
5522 L:      dri-devel@lists.freedesktop.org
5523 S:      Supported
5524 F:      drivers/gpu/drm/mediatek/
5525 F:      Documentation/devicetree/bindings/display/mediatek/
5526
5527 DRM DRIVERS FOR NVIDIA TEGRA
5528 M:      Thierry Reding <thierry.reding@gmail.com>
5529 L:      dri-devel@lists.freedesktop.org
5530 L:      linux-tegra@vger.kernel.org
5531 T:      git git://anongit.freedesktop.org/tegra/linux.git
5532 S:      Supported
5533 F:      drivers/gpu/drm/tegra/
5534 F:      drivers/gpu/host1x/
5535 F:      include/linux/host1x.h
5536 F:      include/uapi/drm/tegra_drm.h
5537 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5538
5539 DRM DRIVERS FOR RENESAS
5540 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5541 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5542 L:      dri-devel@lists.freedesktop.org
5543 L:      linux-renesas-soc@vger.kernel.org
5544 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5545 S:      Supported
5546 F:      drivers/gpu/drm/rcar-du/
5547 F:      drivers/gpu/drm/shmobile/
5548 F:      include/linux/platform_data/shmob_drm.h
5549 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5550 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5551 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5552
5553 DRM DRIVERS FOR ROCKCHIP
5554 M:      Sandy Huang <hjc@rock-chips.com>
5555 M:      Heiko Stübner <heiko@sntech.de>
5556 L:      dri-devel@lists.freedesktop.org
5557 S:      Maintained
5558 F:      drivers/gpu/drm/rockchip/
5559 F:      Documentation/devicetree/bindings/display/rockchip/
5560 T:      git git://anongit.freedesktop.org/drm/drm-misc
5561
5562 DRM DRIVERS FOR STI
5563 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5564 M:      Vincent Abriou <vincent.abriou@st.com>
5565 L:      dri-devel@lists.freedesktop.org
5566 T:      git git://anongit.freedesktop.org/drm/drm-misc
5567 S:      Maintained
5568 F:      drivers/gpu/drm/sti
5569 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5570
5571 DRM DRIVERS FOR STM
5572 M:      Yannick Fertre <yannick.fertre@st.com>
5573 M:      Philippe Cornu <philippe.cornu@st.com>
5574 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5575 M:      Vincent Abriou <vincent.abriou@st.com>
5576 L:      dri-devel@lists.freedesktop.org
5577 T:      git git://anongit.freedesktop.org/drm/drm-misc
5578 S:      Maintained
5579 F:      drivers/gpu/drm/stm
5580 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
5581
5582 DRM DRIVERS FOR TI LCDC
5583 M:      Jyri Sarha <jsarha@ti.com>
5584 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5585 L:      dri-devel@lists.freedesktop.org
5586 S:      Maintained
5587 F:      drivers/gpu/drm/tilcdc/
5588 F:      Documentation/devicetree/bindings/display/tilcdc/
5589
5590 DRM DRIVERS FOR TI OMAP
5591 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5592 L:      dri-devel@lists.freedesktop.org
5593 S:      Maintained
5594 F:      drivers/gpu/drm/omapdrm/
5595 F:      Documentation/devicetree/bindings/display/ti/
5596
5597 DRM DRIVERS FOR V3D
5598 M:      Eric Anholt <eric@anholt.net>
5599 S:      Supported
5600 F:      drivers/gpu/drm/v3d/
5601 F:      include/uapi/drm/v3d_drm.h
5602 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5603 T:      git git://anongit.freedesktop.org/drm/drm-misc
5604
5605 DRM DRIVERS FOR VC4
5606 M:      Eric Anholt <eric@anholt.net>
5607 T:      git git://github.com/anholt/linux
5608 S:      Supported
5609 F:      drivers/gpu/drm/vc4/
5610 F:      include/uapi/drm/vc4_drm.h
5611 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5612 T:      git git://anongit.freedesktop.org/drm/drm-misc
5613
5614 DRM DRIVERS FOR VIVANTE GPU IP
5615 M:      Lucas Stach <l.stach@pengutronix.de>
5616 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5617 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5618 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5619 L:      dri-devel@lists.freedesktop.org
5620 S:      Maintained
5621 F:      drivers/gpu/drm/etnaviv/
5622 F:      include/uapi/drm/etnaviv_drm.h
5623 F:      Documentation/devicetree/bindings/display/etnaviv/
5624
5625 DRM DRIVERS FOR ZTE ZX
5626 M:      Shawn Guo <shawnguo@kernel.org>
5627 L:      dri-devel@lists.freedesktop.org
5628 S:      Maintained
5629 F:      drivers/gpu/drm/zte/
5630 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5631 T:      git git://anongit.freedesktop.org/drm/drm-misc
5632
5633 DRM PANEL DRIVERS
5634 M:      Thierry Reding <thierry.reding@gmail.com>
5635 R:      Sam Ravnborg <sam@ravnborg.org>
5636 L:      dri-devel@lists.freedesktop.org
5637 T:      git git://anongit.freedesktop.org/drm/drm-misc
5638 S:      Maintained
5639 F:      drivers/gpu/drm/drm_panel.c
5640 F:      drivers/gpu/drm/panel/
5641 F:      include/drm/drm_panel.h
5642 F:      Documentation/devicetree/bindings/display/panel/
5643
5644 DRM DRIVERS FOR XEN
5645 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5646 T:      git git://anongit.freedesktop.org/drm/drm-misc
5647 L:      dri-devel@lists.freedesktop.org
5648 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5649 S:      Supported
5650 F:      drivers/gpu/drm/xen/
5651 F:      Documentation/gpu/xen-front.rst
5652
5653 DRM TTM SUBSYSTEM
5654 M:      Christian Koenig <christian.koenig@amd.com>
5655 M:      Huang Rui <ray.huang@amd.com>
5656 T:      git git://people.freedesktop.org/~agd5f/linux
5657 S:      Maintained
5658 L:      dri-devel@lists.freedesktop.org
5659 F:      include/drm/ttm/
5660 F:      drivers/gpu/drm/ttm/
5661
5662 DSBR100 USB FM RADIO DRIVER
5663 M:      Alexey Klimov <klimov.linux@gmail.com>
5664 L:      linux-media@vger.kernel.org
5665 T:      git git://linuxtv.org/media_tree.git
5666 S:      Maintained
5667 F:      drivers/media/radio/dsbr100.c
5668
5669 DT3155 MEDIA DRIVER
5670 M:      Hans Verkuil <hverkuil@xs4all.nl>
5671 L:      linux-media@vger.kernel.org
5672 T:      git git://linuxtv.org/media_tree.git
5673 W:      https://linuxtv.org
5674 S:      Odd Fixes
5675 F:      drivers/media/pci/dt3155/
5676
5677 DVB_USB_AF9015 MEDIA DRIVER
5678 M:      Antti Palosaari <crope@iki.fi>
5679 L:      linux-media@vger.kernel.org
5680 W:      https://linuxtv.org
5681 W:      http://palosaari.fi/linux/
5682 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5683 T:      git git://linuxtv.org/anttip/media_tree.git
5684 S:      Maintained
5685 F:      drivers/media/usb/dvb-usb-v2/af9015*
5686
5687 DVB_USB_AF9035 MEDIA DRIVER
5688 M:      Antti Palosaari <crope@iki.fi>
5689 L:      linux-media@vger.kernel.org
5690 W:      https://linuxtv.org
5691 W:      http://palosaari.fi/linux/
5692 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5693 T:      git git://linuxtv.org/anttip/media_tree.git
5694 S:      Maintained
5695 F:      drivers/media/usb/dvb-usb-v2/af9035*
5696
5697 DVB_USB_ANYSEE MEDIA DRIVER
5698 M:      Antti Palosaari <crope@iki.fi>
5699 L:      linux-media@vger.kernel.org
5700 W:      https://linuxtv.org
5701 W:      http://palosaari.fi/linux/
5702 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5703 T:      git git://linuxtv.org/anttip/media_tree.git
5704 S:      Maintained
5705 F:      drivers/media/usb/dvb-usb-v2/anysee*
5706
5707 DVB_USB_AU6610 MEDIA DRIVER
5708 M:      Antti Palosaari <crope@iki.fi>
5709 L:      linux-media@vger.kernel.org
5710 W:      https://linuxtv.org
5711 W:      http://palosaari.fi/linux/
5712 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5713 T:      git git://linuxtv.org/anttip/media_tree.git
5714 S:      Maintained
5715 F:      drivers/media/usb/dvb-usb-v2/au6610*
5716
5717 DVB_USB_CE6230 MEDIA DRIVER
5718 M:      Antti Palosaari <crope@iki.fi>
5719 L:      linux-media@vger.kernel.org
5720 W:      https://linuxtv.org
5721 W:      http://palosaari.fi/linux/
5722 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5723 T:      git git://linuxtv.org/anttip/media_tree.git
5724 S:      Maintained
5725 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5726
5727 DVB_USB_CXUSB MEDIA DRIVER
5728 M:      Michael Krufky <mkrufky@linuxtv.org>
5729 L:      linux-media@vger.kernel.org
5730 W:      https://linuxtv.org
5731 W:      http://github.com/mkrufky
5732 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5733 T:      git git://linuxtv.org/media_tree.git
5734 S:      Maintained
5735 F:      drivers/media/usb/dvb-usb/cxusb*
5736
5737 DVB_USB_EC168 MEDIA DRIVER
5738 M:      Antti Palosaari <crope@iki.fi>
5739 L:      linux-media@vger.kernel.org
5740 W:      https://linuxtv.org
5741 W:      http://palosaari.fi/linux/
5742 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5743 T:      git git://linuxtv.org/anttip/media_tree.git
5744 S:      Maintained
5745 F:      drivers/media/usb/dvb-usb-v2/ec168*
5746
5747 DVB_USB_GL861 MEDIA DRIVER
5748 M:      Antti Palosaari <crope@iki.fi>
5749 L:      linux-media@vger.kernel.org
5750 W:      https://linuxtv.org
5751 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5752 T:      git git://linuxtv.org/anttip/media_tree.git
5753 S:      Maintained
5754 F:      drivers/media/usb/dvb-usb-v2/gl861*
5755
5756 DVB_USB_MXL111SF MEDIA DRIVER
5757 M:      Michael Krufky <mkrufky@linuxtv.org>
5758 L:      linux-media@vger.kernel.org
5759 W:      https://linuxtv.org
5760 W:      http://github.com/mkrufky
5761 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5762 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5763 S:      Maintained
5764 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5765
5766 DVB_USB_RTL28XXU MEDIA DRIVER
5767 M:      Antti Palosaari <crope@iki.fi>
5768 L:      linux-media@vger.kernel.org
5769 W:      https://linuxtv.org
5770 W:      http://palosaari.fi/linux/
5771 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5772 T:      git git://linuxtv.org/anttip/media_tree.git
5773 S:      Maintained
5774 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5775
5776 DVB_USB_V2 MEDIA DRIVER
5777 M:      Antti Palosaari <crope@iki.fi>
5778 L:      linux-media@vger.kernel.org
5779 W:      https://linuxtv.org
5780 W:      http://palosaari.fi/linux/
5781 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5782 T:      git git://linuxtv.org/anttip/media_tree.git
5783 S:      Maintained
5784 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5785 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5786
5787 DYNAMIC DEBUG
5788 M:      Jason Baron <jbaron@akamai.com>
5789 S:      Maintained
5790 F:      lib/dynamic_debug.c
5791 F:      include/linux/dynamic_debug.h
5792
5793 DYNAMIC INTERRUPT MODERATION
5794 M:      Tal Gilboa <talgi@mellanox.com>
5795 S:      Maintained
5796 F:      include/linux/dim.h
5797 F:      lib/dim/
5798
5799 DZ DECSTATION DZ11 SERIAL DRIVER
5800 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
5801 S:      Maintained
5802 F:      drivers/tty/serial/dz.*
5803
5804 E3X0 POWER BUTTON DRIVER
5805 M:      Moritz Fischer <moritz.fischer@ettus.com>
5806 L:      usrp-users@lists.ettus.com
5807 W:      http://www.ettus.com
5808 S:      Supported
5809 F:      drivers/input/misc/e3x0-button.c
5810 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5811
5812 E4000 MEDIA DRIVER
5813 M:      Antti Palosaari <crope@iki.fi>
5814 L:      linux-media@vger.kernel.org
5815 W:      https://linuxtv.org
5816 W:      http://palosaari.fi/linux/
5817 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5818 T:      git git://linuxtv.org/anttip/media_tree.git
5819 S:      Maintained
5820 F:      drivers/media/tuners/e4000*
5821
5822 EARTH_PT1 MEDIA DRIVER
5823 M:      Akihiro Tsukada <tskd08@gmail.com>
5824 L:      linux-media@vger.kernel.org
5825 S:      Odd Fixes
5826 F:      drivers/media/pci/pt1/
5827
5828 EARTH_PT3 MEDIA DRIVER
5829 M:      Akihiro Tsukada <tskd08@gmail.com>
5830 L:      linux-media@vger.kernel.org
5831 S:      Odd Fixes
5832 F:      drivers/media/pci/pt3/
5833
5834 EC100 MEDIA DRIVER
5835 M:      Antti Palosaari <crope@iki.fi>
5836 L:      linux-media@vger.kernel.org
5837 W:      https://linuxtv.org
5838 W:      http://palosaari.fi/linux/
5839 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5840 T:      git git://linuxtv.org/anttip/media_tree.git
5841 S:      Maintained
5842 F:      drivers/media/dvb-frontends/ec100*
5843
5844 ECRYPT FILE SYSTEM
5845 M:      Tyler Hicks <tyhicks@canonical.com>
5846 L:      ecryptfs@vger.kernel.org
5847 W:      http://ecryptfs.org
5848 W:      https://launchpad.net/ecryptfs
5849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5850 S:      Supported
5851 F:      Documentation/filesystems/ecryptfs.txt
5852 F:      fs/ecryptfs/
5853
5854 EDAC-AMD64
5855 M:      Borislav Petkov <bp@alien8.de>
5856 L:      linux-edac@vger.kernel.org
5857 S:      Maintained
5858 F:      drivers/edac/amd64_edac*
5859
5860 EDAC-ARMADA
5861 M:      Jan Luebbe <jlu@pengutronix.de>
5862 L:      linux-edac@vger.kernel.org
5863 S:      Maintained
5864 F:      drivers/edac/armada_xp_*
5865
5866 EDAC-AST2500
5867 M:      Stefan Schaeckeler <sschaeck@cisco.com>
5868 S:      Supported
5869 F:      drivers/edac/aspeed_edac.c
5870 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
5871
5872 EDAC-BLUEFIELD
5873 M:      Shravan Kumar Ramani <sramani@mellanox.com>
5874 S:      Supported
5875 F:      drivers/edac/bluefield_edac.c
5876
5877 EDAC-CALXEDA
5878 M:      Robert Richter <rric@kernel.org>
5879 L:      linux-edac@vger.kernel.org
5880 S:      Maintained
5881 F:      drivers/edac/highbank*
5882
5883 EDAC-CAVIUM OCTEON
5884 M:      Ralf Baechle <ralf@linux-mips.org>
5885 M:      David Daney <david.daney@cavium.com>
5886 L:      linux-edac@vger.kernel.org
5887 L:      linux-mips@vger.kernel.org
5888 S:      Supported
5889 F:      drivers/edac/octeon_edac*
5890
5891 EDAC-CAVIUM THUNDERX
5892 M:      David Daney <david.daney@cavium.com>
5893 M:      Jan Glauber <jglauber@cavium.com>
5894 L:      linux-edac@vger.kernel.org
5895 S:      Supported
5896 F:      drivers/edac/thunderx_edac*
5897
5898 EDAC-CORE
5899 M:      Borislav Petkov <bp@alien8.de>
5900 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5901 M:      Tony Luck <tony.luck@intel.com>
5902 R:      James Morse <james.morse@arm.com>
5903 R:      Robert Richter <rrichter@marvell.com>
5904 L:      linux-edac@vger.kernel.org
5905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
5906 S:      Supported
5907 F:      Documentation/admin-guide/ras.rst
5908 F:      Documentation/driver-api/edac.rst
5909 F:      drivers/edac/
5910 F:      include/linux/edac.h
5911
5912 EDAC-E752X
5913 M:      Mark Gross <mark.gross@intel.com>
5914 L:      linux-edac@vger.kernel.org
5915 S:      Maintained
5916 F:      drivers/edac/e752x_edac.c
5917
5918 EDAC-E7XXX
5919 L:      linux-edac@vger.kernel.org
5920 S:      Maintained
5921 F:      drivers/edac/e7xxx_edac.c
5922
5923 EDAC-FSL_DDR
5924 M:      York Sun <york.sun@nxp.com>
5925 L:      linux-edac@vger.kernel.org
5926 S:      Maintained
5927 F:      drivers/edac/fsl_ddr_edac.*
5928
5929 EDAC-GHES
5930 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5931 L:      linux-edac@vger.kernel.org
5932 S:      Maintained
5933 F:      drivers/edac/ghes_edac.c
5934
5935 EDAC-I10NM
5936 M:      Tony Luck <tony.luck@intel.com>
5937 L:      linux-edac@vger.kernel.org
5938 S:      Maintained
5939 F:      drivers/edac/i10nm_base.c
5940
5941 EDAC-I3000
5942 L:      linux-edac@vger.kernel.org
5943 S:      Orphan
5944 F:      drivers/edac/i3000_edac.c
5945
5946 EDAC-I5000
5947 L:      linux-edac@vger.kernel.org
5948 S:      Maintained
5949 F:      drivers/edac/i5000_edac.c
5950
5951 EDAC-I5400
5952 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5953 L:      linux-edac@vger.kernel.org
5954 S:      Maintained
5955 F:      drivers/edac/i5400_edac.c
5956
5957 EDAC-I7300
5958 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5959 L:      linux-edac@vger.kernel.org
5960 S:      Maintained
5961 F:      drivers/edac/i7300_edac.c
5962
5963 EDAC-I7CORE
5964 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5965 L:      linux-edac@vger.kernel.org
5966 S:      Maintained
5967 F:      drivers/edac/i7core_edac.c
5968
5969 EDAC-I82443BXGX
5970 M:      Tim Small <tim@buttersideup.com>
5971 L:      linux-edac@vger.kernel.org
5972 S:      Maintained
5973 F:      drivers/edac/i82443bxgx_edac.c
5974
5975 EDAC-I82975X
5976 M:      "Arvind R." <arvino55@gmail.com>
5977 L:      linux-edac@vger.kernel.org
5978 S:      Maintained
5979 F:      drivers/edac/i82975x_edac.c
5980
5981 EDAC-IE31200
5982 M:      Jason Baron <jbaron@akamai.com>
5983 L:      linux-edac@vger.kernel.org
5984 S:      Maintained
5985 F:      drivers/edac/ie31200_edac.c
5986
5987 EDAC-MPC85XX
5988 M:      Johannes Thumshirn <morbidrsa@gmail.com>
5989 L:      linux-edac@vger.kernel.org
5990 S:      Maintained
5991 F:      drivers/edac/mpc85xx_edac.[ch]
5992
5993 EDAC-PASEMI
5994 M:      Egor Martovetsky <egor@pasemi.com>
5995 L:      linux-edac@vger.kernel.org
5996 S:      Maintained
5997 F:      drivers/edac/pasemi_edac.c
5998
5999 EDAC-PND2
6000 M:      Tony Luck <tony.luck@intel.com>
6001 L:      linux-edac@vger.kernel.org
6002 S:      Maintained
6003 F:      drivers/edac/pnd2_edac.[ch]
6004
6005 EDAC-R82600
6006 M:      Tim Small <tim@buttersideup.com>
6007 L:      linux-edac@vger.kernel.org
6008 S:      Maintained
6009 F:      drivers/edac/r82600_edac.c
6010
6011 EDAC-SBRIDGE
6012 M:      Tony Luck <tony.luck@intel.com>
6013 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6014 L:      linux-edac@vger.kernel.org
6015 S:      Maintained
6016 F:      drivers/edac/sb_edac.c
6017
6018 EDAC-SIFIVE
6019 M:      Yash Shah <yash.shah@sifive.com>
6020 L:      linux-edac@vger.kernel.org
6021 S:      Supported
6022 F:      drivers/edac/sifive_edac.c
6023
6024 EDAC-SKYLAKE
6025 M:      Tony Luck <tony.luck@intel.com>
6026 L:      linux-edac@vger.kernel.org
6027 S:      Maintained
6028 F:      drivers/edac/skx_*.c
6029
6030 EDAC-TI
6031 M:      Tero Kristo <t-kristo@ti.com>
6032 L:      linux-edac@vger.kernel.org
6033 S:      Maintained
6034 F:      drivers/edac/ti_edac.c
6035
6036 EDAC-QCOM
6037 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6038 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6039 L:      linux-arm-msm@vger.kernel.org
6040 L:      linux-edac@vger.kernel.org
6041 S:      Maintained
6042 F:      drivers/edac/qcom_edac.c
6043
6044 EDIROL UA-101/UA-1000 DRIVER
6045 M:      Clemens Ladisch <clemens@ladisch.de>
6046 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6048 S:      Maintained
6049 F:      sound/usb/misc/ua101.c
6050
6051 EFI TEST DRIVER
6052 L:      linux-efi@vger.kernel.org
6053 M:      Ivan Hu <ivan.hu@canonical.com>
6054 M:      Ard Biesheuvel <ardb@kernel.org>
6055 S:      Maintained
6056 F:      drivers/firmware/efi/test/
6057
6058 EFI VARIABLE FILESYSTEM
6059 M:      Matthew Garrett <matthew.garrett@nebula.com>
6060 M:      Jeremy Kerr <jk@ozlabs.org>
6061 M:      Ard Biesheuvel <ardb@kernel.org>
6062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6063 L:      linux-efi@vger.kernel.org
6064 S:      Maintained
6065 F:      fs/efivarfs/
6066
6067 EFIFB FRAMEBUFFER DRIVER
6068 L:      linux-fbdev@vger.kernel.org
6069 M:      Peter Jones <pjones@redhat.com>
6070 S:      Maintained
6071 F:      drivers/video/fbdev/efifb.c
6072
6073 EFS FILESYSTEM
6074 W:      http://aeschi.ch.eu.org/efs/
6075 S:      Orphan
6076 F:      fs/efs/
6077
6078 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6079 M:      Douglas Miller <dougmill@linux.ibm.com>
6080 L:      netdev@vger.kernel.org
6081 S:      Maintained
6082 F:      drivers/net/ethernet/ibm/ehea/
6083
6084 EM28XX VIDEO4LINUX DRIVER
6085 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6086 L:      linux-media@vger.kernel.org
6087 W:      https://linuxtv.org
6088 T:      git git://linuxtv.org/media_tree.git
6089 S:      Maintained
6090 F:      drivers/media/usb/em28xx/
6091 F:      Documentation/media/v4l-drivers/em28xx*
6092
6093 EMBEDDED LINUX
6094 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6095 M:      Matt Mackall <mpm@selenic.com>
6096 M:      David Woodhouse <dwmw2@infradead.org>
6097 L:      linux-embedded@vger.kernel.org
6098 S:      Maintained
6099
6100 Emulex 10Gbps iSCSI - OneConnect DRIVER
6101 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6102 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6103 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6104 L:      linux-scsi@vger.kernel.org
6105 W:      http://www.broadcom.com
6106 S:      Supported
6107 F:      drivers/scsi/be2iscsi/
6108
6109 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6110 M:      Sathya Perla <sathya.perla@broadcom.com>
6111 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6112 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6113 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6114 L:      netdev@vger.kernel.org
6115 W:      http://www.emulex.com
6116 S:      Supported
6117 F:      drivers/net/ethernet/emulex/benet/
6118
6119 EMULEX ONECONNECT ROCE DRIVER
6120 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6121 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6122 L:      linux-rdma@vger.kernel.org
6123 W:      http://www.broadcom.com
6124 S:      Odd Fixes
6125 F:      drivers/infiniband/hw/ocrdma/
6126 F:      include/uapi/rdma/ocrdma-abi.h
6127
6128 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6129 M:      James Smart <james.smart@broadcom.com>
6130 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6131 L:      linux-scsi@vger.kernel.org
6132 W:      http://www.broadcom.com
6133 S:      Supported
6134 F:      drivers/scsi/lpfc/
6135
6136 ENE CB710 FLASH CARD READER DRIVER
6137 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6138 S:      Maintained
6139 F:      drivers/misc/cb710/
6140 F:      drivers/mmc/host/cb710-mmc.*
6141 F:      include/linux/cb710.h
6142
6143 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6144 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6145 S:      Maintained
6146 F:      drivers/media/rc/ene_ir.*
6147
6148 EPSON S1D13XXX FRAMEBUFFER DRIVER
6149 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6150 S:      Maintained
6151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6152 F:      drivers/video/fbdev/s1d13xxxfb.c
6153 F:      include/video/s1d13xxxfb.h
6154
6155 EROFS FILE SYSTEM
6156 M:      Gao Xiang <gaoxiang25@huawei.com>
6157 M:      Chao Yu <yuchao0@huawei.com>
6158 L:      linux-erofs@lists.ozlabs.org
6159 S:      Maintained
6160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6161 F:      Documentation/filesystems/erofs.txt
6162 F:      fs/erofs/
6163 F:      include/trace/events/erofs.h
6164
6165 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6166 M:      Jeff Layton <jlayton@kernel.org>
6167 S:      Maintained
6168 F:      lib/errseq.c
6169 F:      include/linux/errseq.h
6170
6171 ET131X NETWORK DRIVER
6172 M:      Mark Einon <mark.einon@gmail.com>
6173 S:      Odd Fixes
6174 F:      drivers/net/ethernet/agere/
6175
6176 ETHERNET BRIDGE
6177 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6178 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6179 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6180 L:      netdev@vger.kernel.org
6181 W:      http://www.linuxfoundation.org/en/Net:Bridge
6182 S:      Maintained
6183 F:      include/linux/netfilter_bridge/
6184 F:      net/bridge/
6185
6186 ETHERNET PHY LIBRARY
6187 M:      Andrew Lunn <andrew@lunn.ch>
6188 M:      Florian Fainelli <f.fainelli@gmail.com>
6189 M:      Heiner Kallweit <hkallweit1@gmail.com>
6190 L:      netdev@vger.kernel.org
6191 S:      Maintained
6192 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6193 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6194 F:      Documentation/devicetree/bindings/net/mdio*
6195 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6196 F:      Documentation/networking/phy.rst
6197 F:      drivers/net/phy/
6198 F:      drivers/of/of_mdio.c
6199 F:      drivers/of/of_net.c
6200 F:      include/dt-bindings/net/qca-ar803x.h
6201 F:      include/linux/*mdio*.h
6202 F:      include/linux/of_net.h
6203 F:      include/linux/phy.h
6204 F:      include/linux/phy_fixed.h
6205 F:      include/linux/platform_data/mdio-bcm-unimac.h
6206 F:      include/linux/platform_data/mdio-gpio.h
6207 F:      include/trace/events/mdio.h
6208 F:      include/uapi/linux/mdio.h
6209 F:      include/uapi/linux/mii.h
6210
6211 EXFAT FILE SYSTEM
6212 M:      Valdis Kletnieks <valdis.kletnieks@vt.edu>
6213 L:      linux-fsdevel@vger.kernel.org
6214 S:      Maintained
6215 F:      drivers/staging/exfat/
6216
6217 EXT2 FILE SYSTEM
6218 M:      Jan Kara <jack@suse.com>
6219 L:      linux-ext4@vger.kernel.org
6220 S:      Maintained
6221 F:      Documentation/filesystems/ext2.txt
6222 F:      fs/ext2/
6223 F:      include/linux/ext2*
6224
6225 EXT4 FILE SYSTEM
6226 M:      "Theodore Ts'o" <tytso@mit.edu>
6227 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6228 L:      linux-ext4@vger.kernel.org
6229 W:      http://ext4.wiki.kernel.org
6230 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6232 S:      Maintained
6233 F:      Documentation/filesystems/ext4/
6234 F:      fs/ext4/
6235
6236 Extended Verification Module (EVM)
6237 M:      Mimi Zohar <zohar@linux.ibm.com>
6238 L:      linux-integrity@vger.kernel.org
6239 S:      Supported
6240 F:      security/integrity/evm/
6241
6242 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6243 M:      Ard Biesheuvel <ardb@kernel.org>
6244 L:      linux-efi@vger.kernel.org
6245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6246 S:      Maintained
6247 F:      Documentation/admin-guide/efi-stub.rst
6248 F:      arch/*/kernel/efi.c
6249 F:      arch/x86/boot/compressed/eboot.[ch]
6250 F:      arch/*/include/asm/efi.h
6251 F:      arch/x86/platform/efi/
6252 F:      drivers/firmware/efi/
6253 F:      include/linux/efi*.h
6254 F:      arch/arm/boot/compressed/efi-header.S
6255 F:      arch/arm64/kernel/efi-entry.S
6256
6257 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6258 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6259 M:      Chanwoo Choi <cw00.choi@samsung.com>
6260 L:      linux-kernel@vger.kernel.org
6261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6262 S:      Maintained
6263 F:      drivers/extcon/
6264 F:      include/linux/extcon/
6265 F:      include/linux/extcon.h
6266 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6267 F:      Documentation/devicetree/bindings/extcon/
6268
6269 EXYNOS DP DRIVER
6270 M:      Jingoo Han <jingoohan1@gmail.com>
6271 L:      dri-devel@lists.freedesktop.org
6272 S:      Maintained
6273 F:      drivers/gpu/drm/exynos/exynos_dp*
6274
6275 EXYNOS SYSMMU (IOMMU) driver
6276 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6277 L:      iommu@lists.linux-foundation.org
6278 S:      Maintained
6279 F:      drivers/iommu/exynos-iommu.c
6280
6281 EZchip NPS platform support
6282 M:      Vineet Gupta <vgupta@synopsys.com>
6283 M:      Ofer Levi <oferle@mellanox.com>
6284 S:      Supported
6285 F:      arch/arc/plat-eznps
6286 F:      arch/arc/boot/dts/eznps.dts
6287
6288 F2FS FILE SYSTEM
6289 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6290 M:      Chao Yu <yuchao0@huawei.com>
6291 L:      linux-f2fs-devel@lists.sourceforge.net
6292 W:      https://f2fs.wiki.kernel.org/
6293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6294 S:      Maintained
6295 F:      Documentation/filesystems/f2fs.txt
6296 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6297 F:      fs/f2fs/
6298 F:      include/linux/f2fs_fs.h
6299 F:      include/trace/events/f2fs.h
6300
6301 F71805F HARDWARE MONITORING DRIVER
6302 M:      Jean Delvare <jdelvare@suse.com>
6303 L:      linux-hwmon@vger.kernel.org
6304 S:      Maintained
6305 F:      Documentation/hwmon/f71805f.rst
6306 F:      drivers/hwmon/f71805f.c
6307
6308 FADDR2LINE
6309 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6310 S:      Maintained
6311 F:      scripts/faddr2line
6312
6313 FAILOVER MODULE
6314 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6315 L:      netdev@vger.kernel.org
6316 S:      Supported
6317 F:      net/core/failover.c
6318 F:      include/net/failover.h
6319 F:      Documentation/networking/failover.rst
6320
6321 FANOTIFY
6322 M:      Jan Kara <jack@suse.cz>
6323 R:      Amir Goldstein <amir73il@gmail.com>
6324 L:      linux-fsdevel@vger.kernel.org
6325 S:      Maintained
6326 F:      fs/notify/fanotify/
6327 F:      include/linux/fanotify.h
6328 F:      include/uapi/linux/fanotify.h
6329
6330 FARSYNC SYNCHRONOUS DRIVER
6331 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6332 W:      http://www.farsite.co.uk/
6333 S:      Supported
6334 F:      drivers/net/wan/farsync.*
6335
6336 FAULT INJECTION SUPPORT
6337 M:      Akinobu Mita <akinobu.mita@gmail.com>
6338 S:      Supported
6339 F:      Documentation/fault-injection/
6340 F:      lib/fault-inject.c
6341
6342 FBTFT Framebuffer drivers
6343 S:      Orphan
6344 L:      dri-devel@lists.freedesktop.org
6345 L:      linux-fbdev@vger.kernel.org
6346 F:      drivers/staging/fbtft/
6347
6348 FC0011 TUNER DRIVER
6349 M:      Michael Buesch <m@bues.ch>
6350 L:      linux-media@vger.kernel.org
6351 S:      Maintained
6352 F:      drivers/media/tuners/fc0011.h
6353 F:      drivers/media/tuners/fc0011.c
6354
6355 FC2580 MEDIA DRIVER
6356 M:      Antti Palosaari <crope@iki.fi>
6357 L:      linux-media@vger.kernel.org
6358 W:      https://linuxtv.org
6359 W:      http://palosaari.fi/linux/
6360 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6361 T:      git git://linuxtv.org/anttip/media_tree.git
6362 S:      Maintained
6363 F:      drivers/media/tuners/fc2580*
6364
6365 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6366 M:      Hannes Reinecke <hare@suse.de>
6367 L:      linux-scsi@vger.kernel.org
6368 W:      www.Open-FCoE.org
6369 S:      Supported
6370 F:      drivers/scsi/libfc/
6371 F:      drivers/scsi/fcoe/
6372 F:      include/scsi/fc/
6373 F:      include/scsi/libfc.h
6374 F:      include/scsi/libfcoe.h
6375 F:      include/uapi/scsi/fc/
6376
6377 FILE LOCKING (flock() and fcntl()/lockf())
6378 M:      Jeff Layton <jlayton@kernel.org>
6379 M:      "J. Bruce Fields" <bfields@fieldses.org>
6380 L:      linux-fsdevel@vger.kernel.org
6381 S:      Maintained
6382 F:      include/linux/fcntl.h
6383 F:      include/uapi/linux/fcntl.h
6384 F:      fs/fcntl.c
6385 F:      fs/locks.c
6386
6387 FILESYSTEMS (VFS and infrastructure)
6388 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6389 L:      linux-fsdevel@vger.kernel.org
6390 S:      Maintained
6391 F:      fs/*
6392 F:      include/linux/fs.h
6393 F:      include/linux/fs_types.h
6394 F:      include/uapi/linux/fs.h
6395
6396 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6397 M:      Riku Voipio <riku.voipio@iki.fi>
6398 L:      linux-hwmon@vger.kernel.org
6399 S:      Maintained
6400 F:      drivers/hwmon/f75375s.c
6401 F:      include/linux/f75375s.h
6402
6403 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6404 M:      Clemens Ladisch <clemens@ladisch.de>
6405 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6406 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6408 S:      Maintained
6409 F:      sound/firewire/
6410 F:      include/uapi/sound/firewire.h
6411
6412 FIREWIRE MEDIA DRIVERS (firedtv)
6413 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6414 L:      linux-media@vger.kernel.org
6415 L:      linux1394-devel@lists.sourceforge.net
6416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6417 S:      Maintained
6418 F:      drivers/media/firewire/
6419
6420 FIREWIRE SBP-2 TARGET
6421 M:      Chris Boot <bootc@bootc.net>
6422 L:      linux-scsi@vger.kernel.org
6423 L:      target-devel@vger.kernel.org
6424 L:      linux1394-devel@lists.sourceforge.net
6425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6426 S:      Maintained
6427 F:      drivers/target/sbp/
6428
6429 FIREWIRE SUBSYSTEM
6430 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6431 L:      linux1394-devel@lists.sourceforge.net
6432 W:      http://ieee1394.wiki.kernel.org/
6433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6434 S:      Maintained
6435 F:      drivers/firewire/
6436 F:      include/linux/firewire.h
6437 F:      include/uapi/linux/firewire*.h
6438 F:      tools/firewire/
6439
6440 FIRMWARE LOADER (request_firmware)
6441 M:      Luis Chamberlain <mcgrof@kernel.org>
6442 L:      linux-kernel@vger.kernel.org
6443 S:      Maintained
6444 F:      Documentation/firmware_class/
6445 F:      drivers/base/firmware_loader/
6446 F:      include/linux/firmware.h
6447
6448 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6449 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6450 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6451 S:      Maintained
6452 F:      drivers/block/rsxx/
6453
6454 FLEXTIMER FTM-QUADDEC DRIVER
6455 M:      Patrick Havelange <patrick.havelange@essensium.com>
6456 L:      linux-iio@vger.kernel.org
6457 S:      Maintained
6458 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6459 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6460 F:      drivers/counter/ftm-quaddec.c
6461
6462 FLOPPY DRIVER
6463 M:      Denis Efremov <efremov@linux.com>
6464 S:      Odd Fixes
6465 L:      linux-block@vger.kernel.org
6466 F:      drivers/block/floppy.c
6467
6468 FPGA MANAGER FRAMEWORK
6469 M:      Moritz Fischer <mdf@kernel.org>
6470 L:      linux-fpga@vger.kernel.org
6471 S:      Maintained
6472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6473 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6474 F:      Documentation/fpga/
6475 F:      Documentation/driver-api/fpga/
6476 F:      Documentation/devicetree/bindings/fpga/
6477 F:      drivers/fpga/
6478 F:      include/linux/fpga/
6479 W:      http://www.rocketboards.org
6480
6481 FPGA DFL DRIVERS
6482 M:      Wu Hao <hao.wu@intel.com>
6483 L:      linux-fpga@vger.kernel.org
6484 S:      Maintained
6485 F:      Documentation/fpga/dfl.rst
6486 F:      include/uapi/linux/fpga-dfl.h
6487 F:      drivers/fpga/dfl*
6488
6489 FPU EMULATOR
6490 M:      Bill Metzenthen <billm@melbpc.org.au>
6491 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6492 S:      Maintained
6493 F:      arch/x86/math-emu/
6494
6495 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6496 L:      netdev@vger.kernel.org
6497 S:      Orphan
6498 F:      drivers/net/wan/dlci.c
6499 F:      drivers/net/wan/sdla.c
6500
6501 FRAMEBUFFER LAYER
6502 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6503 L:      dri-devel@lists.freedesktop.org
6504 L:      linux-fbdev@vger.kernel.org
6505 T:      git git://anongit.freedesktop.org/drm/drm-misc
6506 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6507 S:      Maintained
6508 F:      Documentation/fb/
6509 F:      drivers/video/
6510 F:      include/video/
6511 F:      include/linux/fb.h
6512 F:      include/uapi/video/
6513 F:      include/uapi/linux/fb.h
6514
6515 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6516 M:      Horia Geantă <horia.geanta@nxp.com>
6517 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6518 L:      linux-crypto@vger.kernel.org
6519 S:      Maintained
6520 F:      drivers/crypto/caam/
6521 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6522
6523 FREESCALE DIU FRAMEBUFFER DRIVER
6524 M:      Timur Tabi <timur@kernel.org>
6525 L:      linux-fbdev@vger.kernel.org
6526 S:      Maintained
6527 F:      drivers/video/fbdev/fsl-diu-fb.*
6528
6529 FREESCALE DMA DRIVER
6530 M:      Li Yang <leoyang.li@nxp.com>
6531 M:      Zhang Wei <zw@zh-kernel.org>
6532 L:      linuxppc-dev@lists.ozlabs.org
6533 S:      Maintained
6534 F:      drivers/dma/fsldma.*
6535
6536 FREESCALE ENETC ETHERNET DRIVERS
6537 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6538 L:      netdev@vger.kernel.org
6539 S:      Maintained
6540 F:      drivers/net/ethernet/freescale/enetc/
6541
6542 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6543 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6544 L:      netdev@vger.kernel.org
6545 S:      Maintained
6546 F:      drivers/net/ethernet/freescale/gianfar*
6547 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6548
6549 FREESCALE GPMI NAND DRIVER
6550 M:      Han Xu <han.xu@nxp.com>
6551 L:      linux-mtd@lists.infradead.org
6552 S:      Maintained
6553 F:      drivers/mtd/nand/raw/gpmi-nand/*
6554
6555 FREESCALE I2C CPM DRIVER
6556 M:      Jochen Friedrich <jochen@scram.de>
6557 L:      linuxppc-dev@lists.ozlabs.org
6558 L:      linux-i2c@vger.kernel.org
6559 S:      Maintained
6560 F:      drivers/i2c/busses/i2c-cpm.c
6561
6562 FREESCALE IMX DDR PMU DRIVER
6563 M:      Frank Li <Frank.li@nxp.com>
6564 L:      linux-arm-kernel@lists.infradead.org
6565 S:      Maintained
6566 F:      drivers/perf/fsl_imx8_ddr_perf.c
6567 F:      Documentation/admin-guide/perf/imx-ddr.rst
6568 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6569
6570 FREESCALE IMX I2C DRIVER
6571 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6572 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6573 L:      linux-i2c@vger.kernel.org
6574 S:      Maintained
6575 F:      drivers/i2c/busses/i2c-imx.c
6576 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6577
6578 FREESCALE IMX LPI2C DRIVER
6579 M:      Dong Aisheng <aisheng.dong@nxp.com>
6580 L:      linux-i2c@vger.kernel.org
6581 L:      linux-imx@nxp.com
6582 S:      Maintained
6583 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6584 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6585
6586 FREESCALE IMX / MXC FEC DRIVER
6587 M:      Fugang Duan <fugang.duan@nxp.com>
6588 L:      netdev@vger.kernel.org
6589 S:      Maintained
6590 F:      drivers/net/ethernet/freescale/fec_main.c
6591 F:      drivers/net/ethernet/freescale/fec_ptp.c
6592 F:      drivers/net/ethernet/freescale/fec.h
6593 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6594
6595 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6596 M:      Sascha Hauer <s.hauer@pengutronix.de>
6597 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6598 L:      linux-fbdev@vger.kernel.org
6599 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6600 S:      Maintained
6601 F:      include/linux/platform_data/video-imxfb.h
6602 F:      drivers/video/fbdev/imxfb.c
6603
6604 FREESCALE QORIQ DPAA ETHERNET DRIVER
6605 M:      Madalin Bucur <madalin.bucur@nxp.com>
6606 L:      netdev@vger.kernel.org
6607 S:      Maintained
6608 F:      drivers/net/ethernet/freescale/dpaa
6609
6610 FREESCALE QORIQ DPAA FMAN DRIVER
6611 M:      Madalin Bucur <madalin.bucur@nxp.com>
6612 L:      netdev@vger.kernel.org
6613 S:      Maintained
6614 F:      drivers/net/ethernet/freescale/fman
6615 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6616
6617 FREESCALE QORIQ PTP CLOCK DRIVER
6618 M:      Yangbo Lu <yangbo.lu@nxp.com>
6619 L:      netdev@vger.kernel.org
6620 S:      Maintained
6621 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6622 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6623 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6624 F:      drivers/ptp/ptp_qoriq.c
6625 F:      drivers/ptp/ptp_qoriq_debugfs.c
6626 F:      include/linux/fsl/ptp_qoriq.h
6627 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6628
6629 FREESCALE QUAD SPI DRIVER
6630 M:      Han Xu <han.xu@nxp.com>
6631 L:      linux-spi@vger.kernel.org
6632 S:      Maintained
6633 F:      drivers/spi/spi-fsl-qspi.c
6634
6635 FREESCALE QUICC ENGINE LIBRARY
6636 M:      Qiang Zhao <qiang.zhao@nxp.com>
6637 L:      linuxppc-dev@lists.ozlabs.org
6638 S:      Maintained
6639 F:      drivers/soc/fsl/qe/
6640 F:      include/soc/fsl/*qe*.h
6641 F:      include/soc/fsl/*ucc*.h
6642
6643 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6644 M:      Li Yang <leoyang.li@nxp.com>
6645 L:      netdev@vger.kernel.org
6646 L:      linuxppc-dev@lists.ozlabs.org
6647 S:      Maintained
6648 F:      drivers/net/ethernet/freescale/ucc_geth*
6649
6650 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6651 M:      Zhao Qiang <qiang.zhao@nxp.com>
6652 L:      netdev@vger.kernel.org
6653 L:      linuxppc-dev@lists.ozlabs.org
6654 S:      Maintained
6655 F:      drivers/net/wan/fsl_ucc_hdlc*
6656
6657 FREESCALE QUICC ENGINE UCC UART DRIVER
6658 M:      Timur Tabi <timur@kernel.org>
6659 L:      linuxppc-dev@lists.ozlabs.org
6660 S:      Maintained
6661 F:      drivers/tty/serial/ucc_uart.c
6662
6663 FREESCALE SOC DRIVERS
6664 M:      Li Yang <leoyang.li@nxp.com>
6665 L:      linuxppc-dev@lists.ozlabs.org
6666 L:      linux-arm-kernel@lists.infradead.org
6667 S:      Maintained
6668 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6669 F:      Documentation/devicetree/bindings/soc/fsl/
6670 F:      drivers/soc/fsl/
6671 F:      include/linux/fsl/
6672
6673 FREESCALE SOC FS_ENET DRIVER
6674 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6675 L:      linuxppc-dev@lists.ozlabs.org
6676 L:      netdev@vger.kernel.org
6677 S:      Maintained
6678 F:      drivers/net/ethernet/freescale/fs_enet/
6679 F:      include/linux/fs_enet_pd.h
6680
6681 FREESCALE SOC SOUND DRIVERS
6682 M:      Timur Tabi <timur@kernel.org>
6683 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6684 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6685 R:      Fabio Estevam <festevam@gmail.com>
6686 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6687 L:      linuxppc-dev@lists.ozlabs.org
6688 S:      Maintained
6689 F:      sound/soc/fsl/fsl*
6690 F:      sound/soc/fsl/imx*
6691 F:      sound/soc/fsl/mpc8610_hpcd.c
6692
6693 FREESCALE USB PERIPHERAL DRIVERS
6694 M:      Li Yang <leoyang.li@nxp.com>
6695 L:      linux-usb@vger.kernel.org
6696 L:      linuxppc-dev@lists.ozlabs.org
6697 S:      Maintained
6698 F:      drivers/usb/gadget/udc/fsl*
6699
6700 FREEVXFS FILESYSTEM
6701 M:      Christoph Hellwig <hch@infradead.org>
6702 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6703 S:      Maintained
6704 F:      fs/freevxfs/
6705
6706 FREEZER
6707 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6708 M:      Pavel Machek <pavel@ucw.cz>
6709 L:      linux-pm@vger.kernel.org
6710 S:      Supported
6711 F:      Documentation/power/freezing-of-tasks.rst
6712 F:      include/linux/freezer.h
6713 F:      kernel/freezer.c
6714
6715 FRONTSWAP API
6716 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6717 L:      linux-kernel@vger.kernel.org
6718 S:      Maintained
6719 F:      mm/frontswap.c
6720 F:      include/linux/frontswap.h
6721
6722 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6723 M:      David Howells <dhowells@redhat.com>
6724 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6725 S:      Supported
6726 F:      Documentation/filesystems/caching/
6727 F:      fs/fscache/
6728 F:      include/linux/fscache*.h
6729
6730 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6731 M:      Theodore Y. Ts'o <tytso@mit.edu>
6732 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6733 M:      Eric Biggers <ebiggers@kernel.org>
6734 L:      linux-fscrypt@vger.kernel.org
6735 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6736 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6737 S:      Supported
6738 F:      fs/crypto/
6739 F:      include/linux/fscrypt*.h
6740 F:      include/uapi/linux/fscrypt.h
6741 F:      Documentation/filesystems/fscrypt.rst
6742
6743 FSI SUBSYSTEM
6744 M:      Jeremy Kerr <jk@ozlabs.org>
6745 M:      Joel Stanley <joel@jms.id.au>
6746 R:      Alistar Popple <alistair@popple.id.au>
6747 R:      Eddie James <eajames@linux.ibm.com>
6748 L:      linux-fsi@lists.ozlabs.org
6749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6750 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6751 S:      Supported
6752 F:      drivers/fsi/
6753 F:      include/linux/fsi*.h
6754 F:      include/trace/events/fsi*.h
6755
6756 FSI-ATTACHED I2C DRIVER
6757 M:      Eddie James <eajames@linux.ibm.com>
6758 L:      linux-i2c@vger.kernel.org
6759 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
6760 S:      Maintained
6761 F:      drivers/i2c/busses/i2c-fsi.c
6762 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6763
6764 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6765 M:      Jan Kara <jack@suse.cz>
6766 R:      Amir Goldstein <amir73il@gmail.com>
6767 L:      linux-fsdevel@vger.kernel.org
6768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
6769 S:      Maintained
6770 F:      fs/notify/
6771 F:      include/linux/fsnotify*.h
6772
6773 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
6774 M:      Eric Biggers <ebiggers@kernel.org>
6775 M:      Theodore Y. Ts'o <tytso@mit.edu>
6776 L:      linux-fscrypt@vger.kernel.org
6777 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6778 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
6779 S:      Supported
6780 F:      fs/verity/
6781 F:      include/linux/fsverity.h
6782 F:      include/uapi/linux/fsverity.h
6783 F:      Documentation/filesystems/fsverity.rst
6784
6785 FUJITSU LAPTOP EXTRAS
6786 M:      Jonathan Woithe <jwoithe@just42.net>
6787 L:      platform-driver-x86@vger.kernel.org
6788 S:      Maintained
6789 F:      drivers/platform/x86/fujitsu-laptop.c
6790
6791 FUJITSU M-5MO LS CAMERA ISP DRIVER
6792 M:      Kyungmin Park <kyungmin.park@samsung.com>
6793 M:      Heungjun Kim <riverful.kim@samsung.com>
6794 L:      linux-media@vger.kernel.org
6795 S:      Maintained
6796 F:      drivers/media/i2c/m5mols/
6797 F:      include/media/i2c/m5mols.h
6798
6799 FUJITSU TABLET EXTRAS
6800 M:      Robert Gerlach <khnz@gmx.de>
6801 L:      platform-driver-x86@vger.kernel.org
6802 S:      Maintained
6803 F:      drivers/platform/x86/fujitsu-tablet.c
6804
6805 FUSE: FILESYSTEM IN USERSPACE
6806 M:      Miklos Szeredi <miklos@szeredi.hu>
6807 L:      linux-fsdevel@vger.kernel.org
6808 W:      http://fuse.sourceforge.net/
6809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6810 S:      Maintained
6811 F:      fs/fuse/
6812 F:      include/uapi/linux/fuse.h
6813 F:      Documentation/filesystems/fuse.txt
6814
6815 FUTEX SUBSYSTEM
6816 M:      Thomas Gleixner <tglx@linutronix.de>
6817 M:      Ingo Molnar <mingo@redhat.com>
6818 R:      Peter Zijlstra <peterz@infradead.org>
6819 R:      Darren Hart <dvhart@infradead.org>
6820 L:      linux-kernel@vger.kernel.org
6821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
6822 S:      Maintained
6823 F:      kernel/futex.c
6824 F:      include/asm-generic/futex.h
6825 F:      include/linux/futex.h
6826 F:      include/uapi/linux/futex.h
6827 F:      tools/testing/selftests/futex/
6828 F:      tools/perf/bench/futex*
6829 F:      Documentation/*futex*
6830
6831 GCC PLUGINS
6832 M:      Kees Cook <keescook@chromium.org>
6833 R:      Emese Revfy <re.emese@gmail.com>
6834 L:      kernel-hardening@lists.openwall.com
6835 S:      Maintained
6836 F:      scripts/gcc-plugins/
6837 F:      scripts/gcc-plugin.sh
6838 F:      scripts/Makefile.gcc-plugins
6839 F:      Documentation/core-api/gcc-plugins.rst
6840
6841 GASKET DRIVER FRAMEWORK
6842 M:      Rob Springer <rspringer@google.com>
6843 M:      Todd Poynor <toddpoynor@google.com>
6844 M:      Ben Chan <benchan@chromium.org>
6845 S:      Maintained
6846 F:      drivers/staging/gasket/
6847
6848 GCOV BASED KERNEL PROFILING
6849 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
6850 S:      Maintained
6851 F:      kernel/gcov/
6852 F:      Documentation/dev-tools/gcov.rst
6853
6854 GDB KERNEL DEBUGGING HELPER SCRIPTS
6855 M:      Jan Kiszka <jan.kiszka@siemens.com>
6856 M:      Kieran Bingham <kbingham@kernel.org>
6857 S:      Supported
6858 F:      scripts/gdb/
6859
6860 GDT SCSI DISK ARRAY CONTROLLER DRIVER
6861 M:      Achim Leubner <achim_leubner@adaptec.com>
6862 L:      linux-scsi@vger.kernel.org
6863 W:      http://www.icp-vortex.com/
6864 S:      Supported
6865 F:      drivers/scsi/gdt*
6866
6867 GEMTEK FM RADIO RECEIVER DRIVER
6868 M:      Hans Verkuil <hverkuil@xs4all.nl>
6869 L:      linux-media@vger.kernel.org
6870 T:      git git://linuxtv.org/media_tree.git
6871 W:      https://linuxtv.org
6872 S:      Maintained
6873 F:      drivers/media/radio/radio-gemtek*
6874
6875 GENERIC ARCHITECTURE TOPOLOGY
6876 M:      Sudeep Holla <sudeep.holla@arm.com>
6877 L:      linux-kernel@vger.kernel.org
6878 S:      Maintained
6879 F:      drivers/base/arch_topology.c
6880 F:      include/linux/arch_topology.h
6881
6882 GENERIC GPIO I2C DRIVER
6883 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6884 S:      Supported
6885 F:      drivers/i2c/busses/i2c-gpio.c
6886 F:      include/linux/platform_data/i2c-gpio.h
6887
6888 GENERIC GPIO I2C MULTIPLEXER DRIVER
6889 M:      Peter Korsgaard <peter.korsgaard@barco.com>
6890 L:      linux-i2c@vger.kernel.org
6891 S:      Supported
6892 F:      drivers/i2c/muxes/i2c-mux-gpio.c
6893 F:      include/linux/platform_data/i2c-mux-gpio.h
6894 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
6895
6896 GENERIC HDLC (WAN) DRIVERS
6897 M:      Krzysztof Halasa <khc@pm.waw.pl>
6898 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
6899 S:      Maintained
6900 F:      drivers/net/wan/c101.c
6901 F:      drivers/net/wan/hd6457*
6902 F:      drivers/net/wan/hdlc*
6903 F:      drivers/net/wan/n2.c
6904 F:      drivers/net/wan/pc300too.c
6905 F:      drivers/net/wan/pci200syn.c
6906 F:      drivers/net/wan/wanxl*
6907
6908 GENERIC INCLUDE/ASM HEADER FILES
6909 M:      Arnd Bergmann <arnd@arndb.de>
6910 L:      linux-arch@vger.kernel.org
6911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
6912 S:      Maintained
6913 F:      include/asm-generic/
6914 F:      include/uapi/asm-generic/
6915
6916 GENERIC PHY FRAMEWORK
6917 M:      Kishon Vijay Abraham I <kishon@ti.com>
6918 L:      linux-kernel@vger.kernel.org
6919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
6920 S:      Supported
6921 F:      drivers/phy/
6922 F:      include/linux/phy/
6923 F:      Documentation/devicetree/bindings/phy/
6924
6925 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
6926 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6927 S:      Supported
6928 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
6929
6930 GENERIC PM DOMAINS
6931 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6932 M:      Kevin Hilman <khilman@kernel.org>
6933 M:      Ulf Hansson <ulf.hansson@linaro.org>
6934 L:      linux-pm@vger.kernel.org
6935 S:      Supported
6936 F:      drivers/base/power/domain*.c
6937 F:      include/linux/pm_domain.h
6938 F:      Documentation/devicetree/bindings/power/power?domain*
6939
6940 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
6941 M:      Eugen Hristev <eugen.hristev@microchip.com>
6942 L:      linux-input@vger.kernel.org
6943 S:      Maintained
6944 F:      drivers/input/touchscreen/resistive-adc-touch.c
6945
6946 GENERIC UIO DRIVER FOR PCI DEVICES
6947 M:      "Michael S. Tsirkin" <mst@redhat.com>
6948 L:      kvm@vger.kernel.org
6949 S:      Supported
6950 F:      drivers/uio/uio_pci_generic.c
6951
6952 GENERIC VDSO LIBRARY:
6953 M:      Andy Lutomirski <luto@kernel.org>
6954 M:      Thomas Gleixner <tglx@linutronix.de>
6955 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
6956 L:      linux-kernel@vger.kernel.org
6957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
6958 S:      Maintained
6959 F:      lib/vdso/
6960 F:      kernel/time/vsyscall.c
6961 F:      include/vdso/
6962 F:      include/asm-generic/vdso/vsyscall.h
6963
6964 GENWQE (IBM Generic Workqueue Card)
6965 M:      Frank Haverkamp <haver@linux.ibm.com>
6966 S:      Supported
6967 F:      drivers/misc/genwqe/
6968
6969 GET_MAINTAINER SCRIPT
6970 M:      Joe Perches <joe@perches.com>
6971 S:      Maintained
6972 F:      scripts/get_maintainer.pl
6973
6974 GFS2 FILE SYSTEM
6975 M:      Bob Peterson <rpeterso@redhat.com>
6976 M:      Andreas Gruenbacher <agruenba@redhat.com>
6977 L:      cluster-devel@redhat.com
6978 W:      http://sources.redhat.com/cluster/
6979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
6980 S:      Supported
6981 F:      Documentation/filesystems/gfs2*.txt
6982 F:      fs/gfs2/
6983 F:      include/uapi/linux/gfs2_ondisk.h
6984
6985 GNSS SUBSYSTEM
6986 M:      Johan Hovold <johan@kernel.org>
6987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
6988 S:      Maintained
6989 F:      Documentation/ABI/testing/sysfs-class-gnss
6990 F:      Documentation/devicetree/bindings/gnss/
6991 F:      drivers/gnss/
6992 F:      include/linux/gnss.h
6993
6994 GO7007 MPEG CODEC
6995 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
6996 L:      linux-media@vger.kernel.org
6997 S:      Maintained
6998 F:      drivers/media/usb/go7007/
6999
7000 GOODIX TOUCHSCREEN
7001 M:      Bastien Nocera <hadess@hadess.net>
7002 L:      linux-input@vger.kernel.org
7003 S:      Maintained
7004 F:      drivers/input/touchscreen/goodix.c
7005
7006 GOOGLE ETHERNET DRIVERS
7007 M:      Catherine Sullivan <csully@google.com>
7008 R:      Sagi Shahar <sagis@google.com>
7009 R:      Jon Olson <jonolson@google.com>
7010 L:      netdev@vger.kernel.org
7011 S:      Supported
7012 F:      Documentation/networking/device_drivers/google/gve.rst
7013 F:      drivers/net/ethernet/google
7014
7015 GPD POCKET FAN DRIVER
7016 M:      Hans de Goede <hdegoede@redhat.com>
7017 L:      platform-driver-x86@vger.kernel.org
7018 S:      Maintained
7019 F:      drivers/platform/x86/gpd-pocket-fan.c
7020
7021 GPIO ACPI SUPPORT
7022 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7023 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7024 L:      linux-gpio@vger.kernel.org
7025 L:      linux-acpi@vger.kernel.org
7026 S:      Maintained
7027 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7028 F:      drivers/gpio/gpiolib-acpi.c
7029
7030 GPIO IR Transmitter
7031 M:      Sean Young <sean@mess.org>
7032 L:      linux-media@vger.kernel.org
7033 S:      Maintained
7034 F:      drivers/media/rc/gpio-ir-tx.c
7035
7036 GPIO MOCKUP DRIVER
7037 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7038 L:      linux-gpio@vger.kernel.org
7039 S:      Maintained
7040 F:      drivers/gpio/gpio-mockup.c
7041 F:      tools/testing/selftests/gpio/
7042
7043 GPIO SUBSYSTEM
7044 M:      Linus Walleij <linus.walleij@linaro.org>
7045 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7046 L:      linux-gpio@vger.kernel.org
7047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7048 S:      Maintained
7049 F:      Documentation/devicetree/bindings/gpio/
7050 F:      Documentation/driver-api/gpio/
7051 F:      Documentation/admin-guide/gpio/
7052 F:      Documentation/ABI/testing/gpio-cdev
7053 F:      Documentation/ABI/obsolete/sysfs-gpio
7054 F:      drivers/gpio/
7055 F:      include/linux/gpio/
7056 F:      include/linux/gpio.h
7057 F:      include/linux/of_gpio.h
7058 F:      include/asm-generic/gpio.h
7059 F:      include/uapi/linux/gpio.h
7060 F:      tools/gpio/
7061
7062 GRE DEMULTIPLEXER DRIVER
7063 M:      Dmitry Kozlov <xeb@mail.ru>
7064 L:      netdev@vger.kernel.org
7065 S:      Maintained
7066 F:      net/ipv4/gre_demux.c
7067 F:      net/ipv4/gre_offload.c
7068 F:      include/net/gre.h
7069
7070 GRETH 10/100/1G Ethernet MAC device driver
7071 M:      Andreas Larsson <andreas@gaisler.com>
7072 L:      netdev@vger.kernel.org
7073 S:      Maintained
7074 F:      drivers/net/ethernet/aeroflex/
7075
7076 GREYBUS AUDIO PROTOCOLS DRIVERS
7077 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7078 M:      Mark Greer <mgreer@animalcreek.com>
7079 S:      Maintained
7080 F:      drivers/staging/greybus/audio_apbridgea.c
7081 F:      drivers/staging/greybus/audio_apbridgea.h
7082 F:      drivers/staging/greybus/audio_codec.c
7083 F:      drivers/staging/greybus/audio_codec.h
7084 F:      drivers/staging/greybus/audio_gb.c
7085 F:      drivers/staging/greybus/audio_manager.c
7086 F:      drivers/staging/greybus/audio_manager.h
7087 F:      drivers/staging/greybus/audio_manager_module.c
7088 F:      drivers/staging/greybus/audio_manager_private.h
7089 F:      drivers/staging/greybus/audio_manager_sysfs.c
7090 F:      drivers/staging/greybus/audio_module.c
7091 F:      drivers/staging/greybus/audio_topology.c
7092
7093 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7094 M:      Viresh Kumar <vireshk@kernel.org>
7095 S:      Maintained
7096 F:      drivers/staging/greybus/authentication.c
7097 F:      drivers/staging/greybus/bootrom.c
7098 F:      drivers/staging/greybus/firmware.h
7099 F:      drivers/staging/greybus/fw-core.c
7100 F:      drivers/staging/greybus/fw-download.c
7101 F:      drivers/staging/greybus/fw-management.c
7102 F:      drivers/staging/greybus/greybus_authentication.h
7103 F:      drivers/staging/greybus/greybus_firmware.h
7104 F:      drivers/staging/greybus/hid.c
7105 F:      drivers/staging/greybus/i2c.c
7106 F:      drivers/staging/greybus/spi.c
7107 F:      drivers/staging/greybus/spilib.c
7108 F:      drivers/staging/greybus/spilib.h
7109
7110 GREYBUS LOOPBACK DRIVER
7111 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7112 S:      Maintained
7113 F:      drivers/staging/greybus/loopback.c
7114
7115 GREYBUS PLATFORM DRIVERS
7116 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7117 S:      Maintained
7118 F:      drivers/staging/greybus/arche-platform.c
7119 F:      drivers/staging/greybus/arche-apb-ctrl.c
7120 F:      drivers/staging/greybus/arche_platform.h
7121
7122 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7123 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7124 S:      Maintained
7125 F:      drivers/staging/greybus/sdio.c
7126 F:      drivers/staging/greybus/light.c
7127 F:      drivers/staging/greybus/gpio.c
7128 F:      drivers/staging/greybus/power_supply.c
7129 F:      drivers/staging/greybus/spi.c
7130 F:      drivers/staging/greybus/spilib.c
7131
7132 GREYBUS SUBSYSTEM
7133 M:      Johan Hovold <johan@kernel.org>
7134 M:      Alex Elder <elder@kernel.org>
7135 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7136 S:      Maintained
7137 F:      drivers/staging/greybus/
7138 F:      drivers/greybus/
7139 F:      include/linux/greybus.h
7140 F:      include/linux/greybus/
7141 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7142
7143 GREYBUS UART PROTOCOLS DRIVERS
7144 M:      David Lin <dtwlin@gmail.com>
7145 S:      Maintained
7146 F:      drivers/staging/greybus/uart.c
7147 F:      drivers/staging/greybus/log.c
7148
7149 GS1662 VIDEO SERIALIZER
7150 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7151 L:      linux-media@vger.kernel.org
7152 T:      git git://linuxtv.org/media_tree.git
7153 S:      Maintained
7154 F:      drivers/media/spi/gs1662.c
7155
7156 GSPCA FINEPIX SUBDRIVER
7157 M:      Frank Zago <frank@zago.net>
7158 L:      linux-media@vger.kernel.org
7159 T:      git git://linuxtv.org/media_tree.git
7160 S:      Maintained
7161 F:      drivers/media/usb/gspca/finepix.c
7162
7163 GSPCA GL860 SUBDRIVER
7164 M:      Olivier Lorin <o.lorin@laposte.net>
7165 L:      linux-media@vger.kernel.org
7166 T:      git git://linuxtv.org/media_tree.git
7167 S:      Maintained
7168 F:      drivers/media/usb/gspca/gl860/
7169
7170 GSPCA M5602 SUBDRIVER
7171 M:      Erik Andren <erik.andren@gmail.com>
7172 L:      linux-media@vger.kernel.org
7173 T:      git git://linuxtv.org/media_tree.git
7174 S:      Maintained
7175 F:      drivers/media/usb/gspca/m5602/
7176
7177 GSPCA PAC207 SONIXB SUBDRIVER
7178 M:      Hans Verkuil <hverkuil@xs4all.nl>
7179 L:      linux-media@vger.kernel.org
7180 T:      git git://linuxtv.org/media_tree.git
7181 S:      Odd Fixes
7182 F:      drivers/media/usb/gspca/pac207.c
7183
7184 GSPCA SN9C20X SUBDRIVER
7185 M:      Brian Johnson <brijohn@gmail.com>
7186 L:      linux-media@vger.kernel.org
7187 T:      git git://linuxtv.org/media_tree.git
7188 S:      Maintained
7189 F:      drivers/media/usb/gspca/sn9c20x.c
7190
7191 GSPCA T613 SUBDRIVER
7192 M:      Leandro Costantino <lcostantino@gmail.com>
7193 L:      linux-media@vger.kernel.org
7194 T:      git git://linuxtv.org/media_tree.git
7195 S:      Maintained
7196 F:      drivers/media/usb/gspca/t613.c
7197
7198 GSPCA USB WEBCAM DRIVER
7199 M:      Hans Verkuil <hverkuil@xs4all.nl>
7200 L:      linux-media@vger.kernel.org
7201 T:      git git://linuxtv.org/media_tree.git
7202 S:      Odd Fixes
7203 F:      drivers/media/usb/gspca/
7204
7205 GTP (GPRS Tunneling Protocol)
7206 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7207 M:      Harald Welte <laforge@gnumonks.org>
7208 L:      osmocom-net-gprs@lists.osmocom.org
7209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7210 S:      Maintained
7211 F:      drivers/net/gtp.c
7212
7213 GUID PARTITION TABLE (GPT)
7214 M:      Davidlohr Bueso <dave@stgolabs.net>
7215 L:      linux-efi@vger.kernel.org
7216 S:      Maintained
7217 F:      block/partitions/efi.*
7218
7219 H8/300 ARCHITECTURE
7220 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7221 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7222 W:      http://uclinux-h8.sourceforge.jp
7223 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7224 S:      Maintained
7225 F:      arch/h8300/
7226 F:      drivers/clocksource/h8300_*.c
7227 F:      drivers/clk/h8300/
7228 F:      drivers/irqchip/irq-renesas-h8*.c
7229
7230 HABANALABS PCI DRIVER
7231 M:      Oded Gabbay <oded.gabbay@gmail.com>
7232 T:      git https://github.com/HabanaAI/linux.git
7233 S:      Supported
7234 F:      drivers/misc/habanalabs/
7235 F:      include/uapi/misc/habanalabs.h
7236 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7237 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7238
7239 HACKRF MEDIA DRIVER
7240 M:      Antti Palosaari <crope@iki.fi>
7241 L:      linux-media@vger.kernel.org
7242 W:      https://linuxtv.org
7243 W:      http://palosaari.fi/linux/
7244 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7245 T:      git git://linuxtv.org/anttip/media_tree.git
7246 S:      Maintained
7247 F:      drivers/media/usb/hackrf/
7248
7249 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7250 M:      Frank Seidel <frank@f-seidel.de>
7251 L:      platform-driver-x86@vger.kernel.org
7252 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7253 S:      Maintained
7254 F:      drivers/platform/x86/hdaps.c
7255
7256 HARDWARE MONITORING
7257 M:      Jean Delvare <jdelvare@suse.com>
7258 M:      Guenter Roeck <linux@roeck-us.net>
7259 L:      linux-hwmon@vger.kernel.org
7260 W:      http://hwmon.wiki.kernel.org/
7261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7262 S:      Maintained
7263 F:      Documentation/devicetree/bindings/hwmon/
7264 F:      Documentation/hwmon/
7265 F:      drivers/hwmon/
7266 F:      include/linux/hwmon*.h
7267 F:      include/trace/events/hwmon*.h
7268
7269 HARDWARE RANDOM NUMBER GENERATOR CORE
7270 M:      Matt Mackall <mpm@selenic.com>
7271 M:      Herbert Xu <herbert@gondor.apana.org.au>
7272 L:      linux-crypto@vger.kernel.org
7273 S:      Odd fixes
7274 F:      Documentation/devicetree/bindings/rng/
7275 F:      Documentation/admin-guide/hw_random.rst
7276 F:      drivers/char/hw_random/
7277 F:      include/linux/hw_random.h
7278
7279 HARDWARE TRACING FACILITIES
7280 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7281 S:      Maintained
7282 F:      drivers/hwtracing/
7283
7284 HARDWARE SPINLOCK CORE
7285 M:      Ohad Ben-Cohen <ohad@wizery.com>
7286 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7287 L:      linux-remoteproc@vger.kernel.org
7288 S:      Maintained
7289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7290 F:      Documentation/devicetree/bindings/hwlock/
7291 F:      Documentation/hwspinlock.txt
7292 F:      drivers/hwspinlock/
7293 F:      include/linux/hwspinlock.h
7294
7295 HARMONY SOUND DRIVER
7296 L:      linux-parisc@vger.kernel.org
7297 S:      Maintained
7298 F:      sound/parisc/harmony.*
7299
7300 HDPVR USB VIDEO ENCODER DRIVER
7301 M:      Hans Verkuil <hverkuil@xs4all.nl>
7302 L:      linux-media@vger.kernel.org
7303 T:      git git://linuxtv.org/media_tree.git
7304 W:      https://linuxtv.org
7305 S:      Odd Fixes
7306 F:      drivers/media/usb/hdpvr/
7307
7308 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7309 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7310 S:      Supported
7311 F:      Documentation/watchdog/hpwdt.rst
7312 F:      drivers/watchdog/hpwdt.c
7313
7314 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7315 M:      Don Brace <don.brace@microsemi.com>
7316 L:      esc.storagedev@microsemi.com
7317 L:      linux-scsi@vger.kernel.org
7318 S:      Supported
7319 F:      Documentation/scsi/hpsa.txt
7320 F:      drivers/scsi/hpsa*.[ch]
7321 F:      include/linux/cciss*.h
7322 F:      include/uapi/linux/cciss*.h
7323
7324 HFI1 DRIVER
7325 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7326 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7327 L:      linux-rdma@vger.kernel.org
7328 S:      Supported
7329 F:      drivers/infiniband/hw/hfi1
7330
7331 HFS FILESYSTEM
7332 L:      linux-fsdevel@vger.kernel.org
7333 S:      Orphan
7334 F:      Documentation/filesystems/hfs.txt
7335 F:      fs/hfs/
7336
7337 HFSPLUS FILESYSTEM
7338 L:      linux-fsdevel@vger.kernel.org
7339 S:      Orphan
7340 F:      Documentation/filesystems/hfsplus.txt
7341 F:      fs/hfsplus/
7342
7343 HGA FRAMEBUFFER DRIVER
7344 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7345 L:      linux-nvidia@lists.surfsouth.com
7346 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7347 S:      Maintained
7348 F:      drivers/video/fbdev/hgafb.c
7349
7350 HIBERNATION (aka Software Suspend, aka swsusp)
7351 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7352 M:      Pavel Machek <pavel@ucw.cz>
7353 L:      linux-pm@vger.kernel.org
7354 B:      https://bugzilla.kernel.org
7355 S:      Supported
7356 F:      arch/x86/power/
7357 F:      drivers/base/power/
7358 F:      kernel/power/
7359 F:      include/linux/suspend.h
7360 F:      include/linux/freezer.h
7361 F:      include/linux/pm.h
7362 F:      arch/*/include/asm/suspend*.h
7363
7364 HID CORE LAYER
7365 M:      Jiri Kosina <jikos@kernel.org>
7366 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7367 L:      linux-input@vger.kernel.org
7368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7369 S:      Maintained
7370 F:      drivers/hid/
7371 F:      include/linux/hid*
7372 F:      include/uapi/linux/hid*
7373
7374 HID SENSOR HUB DRIVERS
7375 M:      Jiri Kosina <jikos@kernel.org>
7376 M:      Jonathan Cameron <jic23@kernel.org>
7377 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7378 L:      linux-input@vger.kernel.org
7379 L:      linux-iio@vger.kernel.org
7380 S:      Maintained
7381 F:      Documentation/hid/hid-sensor*
7382 F:      drivers/hid/hid-sensor-*
7383 F:      drivers/iio/*/hid-*
7384 F:      include/linux/hid-sensor-*
7385
7386 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7387 M:      Thomas Gleixner <tglx@linutronix.de>
7388 L:      linux-kernel@vger.kernel.org
7389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7390 S:      Maintained
7391 F:      Documentation/timers/
7392 F:      kernel/time/hrtimer.c
7393 F:      kernel/time/clockevents.c
7394 F:      kernel/time/timer_*.c
7395 F:      include/linux/clockchips.h
7396 F:      include/linux/hrtimer.h
7397
7398 HIGH-SPEED SCC DRIVER FOR AX.25
7399 L:      linux-hams@vger.kernel.org
7400 S:      Orphan
7401 F:      drivers/net/hamradio/dmascc.c
7402 F:      drivers/net/hamradio/scc.c
7403
7404 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7405 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7406 W:      http://www.highpoint-tech.com
7407 S:      Supported
7408 F:      Documentation/scsi/hptiop.txt
7409 F:      drivers/scsi/hptiop.c
7410
7411 HIPPI
7412 M:      Jes Sorensen <jes@trained-monkey.org>
7413 L:      linux-hippi@sunsite.dk
7414 S:      Maintained
7415 F:      include/linux/hippidevice.h
7416 F:      include/uapi/linux/if_hippi.h
7417 F:      net/802/hippi.c
7418 F:      drivers/net/hippi/
7419
7420 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7421 M:      Zaibo Xu <xuzaibo@huawei.com>
7422 L:      linux-crypto@vger.kernel.org
7423 S:      Maintained
7424 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7425 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7426 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7427 F:      drivers/crypto/hisilicon/sec2/sec.h
7428 F:      Documentation/ABI/testing/debugfs-hisi-sec
7429
7430 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7431 M:      Zaibo Xu <xuzaibo@huawei.com>
7432 L:      linux-crypto@vger.kernel.org
7433 S:      Maintained
7434 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7435 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7436 F:      drivers/crypto/hisilicon/hpre/hpre.h
7437 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7438
7439 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7440 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7441 M:      Salil Mehta <salil.mehta@huawei.com>
7442 L:      netdev@vger.kernel.org
7443 W:      http://www.hisilicon.com
7444 S:      Maintained
7445 F:      drivers/net/ethernet/hisilicon/hns3/
7446
7447 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7448 M:      Zaibo Xu <xuzaibo@huawei.com>
7449 S:      Maintained
7450 F:      drivers/char/hw_random/hisi-trng-v2.c
7451
7452 HISILICON LPC BUS DRIVER
7453 M:      john.garry@huawei.com
7454 W:      http://www.hisilicon.com
7455 S:      Maintained
7456 F:      drivers/bus/hisi_lpc.c
7457 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7458
7459 HISILICON NETWORK SUBSYSTEM DRIVER
7460 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7461 M:      Salil Mehta <salil.mehta@huawei.com>
7462 L:      netdev@vger.kernel.org
7463 W:      http://www.hisilicon.com
7464 S:      Maintained
7465 F:      drivers/net/ethernet/hisilicon/
7466 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7467
7468 HISILICON PMU DRIVER
7469 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7470 W:      http://www.hisilicon.com
7471 S:      Supported
7472 F:      drivers/perf/hisilicon
7473 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7474
7475 HISILICON ROCE DRIVER
7476 M:      Lijun Ou <oulijun@huawei.com>
7477 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
7478 L:      linux-rdma@vger.kernel.org
7479 S:      Maintained
7480 F:      drivers/infiniband/hw/hns/
7481 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7482
7483 HISILICON SAS Controller
7484 M:      John Garry <john.garry@huawei.com>
7485 W:      http://www.hisilicon.com
7486 S:      Supported
7487 F:      drivers/scsi/hisi_sas/
7488 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7489
7490 HISILICON QM AND ZIP Controller DRIVER
7491 M:      Zhou Wang <wangzhou1@hisilicon.com>
7492 L:      linux-crypto@vger.kernel.org
7493 S:      Maintained
7494 F:      drivers/crypto/hisilicon/qm.c
7495 F:      drivers/crypto/hisilicon/qm.h
7496 F:      drivers/crypto/hisilicon/sgl.c
7497 F:      drivers/crypto/hisilicon/zip/
7498 F:      Documentation/ABI/testing/debugfs-hisi-zip
7499
7500 HMM - Heterogeneous Memory Management
7501 M:      Jérôme Glisse <jglisse@redhat.com>
7502 L:      linux-mm@kvack.org
7503 S:      Maintained
7504 F:      mm/hmm*
7505 F:      include/linux/hmm*
7506 F:      Documentation/vm/hmm.rst
7507
7508 HOST AP DRIVER
7509 M:      Jouni Malinen <j@w1.fi>
7510 L:      linux-wireless@vger.kernel.org
7511 W:      http://w1.fi/hostap-driver.html
7512 S:      Obsolete
7513 F:      drivers/net/wireless/intersil/hostap/
7514
7515 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7516 L:      platform-driver-x86@vger.kernel.org
7517 S:      Orphan
7518 F:      drivers/platform/x86/tc1100-wmi.c
7519
7520 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7521 M:      Jaroslav Kysela <perex@perex.cz>
7522 S:      Obsolete
7523 F:      drivers/staging/hp/hp100.*
7524
7525 HPET:   High Precision Event Timers driver
7526 M:      Clemens Ladisch <clemens@ladisch.de>
7527 S:      Maintained
7528 F:      Documentation/timers/hpet.rst
7529 F:      drivers/char/hpet.c
7530 F:      include/linux/hpet.h
7531 F:      include/uapi/linux/hpet.h
7532
7533 HPET:   x86
7534 S:      Orphan
7535 F:      arch/x86/kernel/hpet.c
7536 F:      arch/x86/include/asm/hpet.h
7537
7538 HPFS FILESYSTEM
7539 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7540 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7541 S:      Maintained
7542 F:      fs/hpfs/
7543
7544 HSI SUBSYSTEM
7545 M:      Sebastian Reichel <sre@kernel.org>
7546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7547 S:      Maintained
7548 F:      Documentation/ABI/testing/sysfs-bus-hsi
7549 F:      Documentation/driver-api/hsi.rst
7550 F:      drivers/hsi/
7551 F:      include/linux/hsi/
7552 F:      include/uapi/linux/hsi/
7553
7554 HSO 3G MODEM DRIVER
7555 L:      linux-usb@vger.kernel.org
7556 S:      Orphan
7557 F:      drivers/net/usb/hso.c
7558
7559 HSR NETWORK PROTOCOL
7560 M:      Arvid Brodin <arvid.brodin@alten.se>
7561 L:      netdev@vger.kernel.org
7562 S:      Maintained
7563 F:      net/hsr/
7564
7565 HT16K33 LED CONTROLLER DRIVER
7566 M:      Robin van der Gracht <robin@protonic.nl>
7567 S:      Maintained
7568 F:      drivers/auxdisplay/ht16k33.c
7569 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7570
7571 HTCPEN TOUCHSCREEN DRIVER
7572 M:      Pau Oliva Fora <pof@eslack.org>
7573 L:      linux-input@vger.kernel.org
7574 S:      Maintained
7575 F:      drivers/input/touchscreen/htcpen.c
7576
7577 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7578 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7579 L:      linux-iio@vger.kernel.org
7580 W:      http://www.st.com/
7581 S:      Maintained
7582 F:      drivers/iio/humidity/hts221*
7583 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7584
7585 HUAWEI ETHERNET DRIVER
7586 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
7587 L:      netdev@vger.kernel.org
7588 S:      Supported
7589 F:      Documentation/networking/hinic.txt
7590 F:      drivers/net/ethernet/huawei/hinic/
7591
7592 HUGETLB FILESYSTEM
7593 M:      Mike Kravetz <mike.kravetz@oracle.com>
7594 L:      linux-mm@kvack.org
7595 S:      Maintained
7596 F:      fs/hugetlbfs/
7597 F:      mm/hugetlb.c
7598 F:      include/linux/hugetlb.h
7599 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7600 F:      Documentation/vm/hugetlbfs_reserv.rst
7601 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7602
7603 HVA ST MEDIA DRIVER
7604 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7605 L:      linux-media@vger.kernel.org
7606 T:      git git://linuxtv.org/media_tree.git
7607 W:      https://linuxtv.org
7608 S:      Supported
7609 F:      drivers/media/platform/sti/hva
7610
7611 HWPOISON MEMORY FAILURE HANDLING
7612 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
7613 L:      linux-mm@kvack.org
7614 S:      Maintained
7615 F:      mm/memory-failure.c
7616 F:      mm/hwpoison-inject.c
7617
7618 HYGON PROCESSOR SUPPORT
7619 M:      Pu Wen <puwen@hygon.cn>
7620 L:      linux-kernel@vger.kernel.org
7621 S:      Maintained
7622 F:      arch/x86/kernel/cpu/hygon.c
7623
7624 HYNIX HI556 SENSOR DRIVER
7625 M:      Shawn Tu <shawnx.tu@intel.com>
7626 L:      linux-media@vger.kernel.org
7627 T:      git git://linuxtv.org/media_tree.git
7628 S:      Maintained
7629 F:      drivers/media/i2c/hi556.c
7630
7631 Hyper-V CORE AND DRIVERS
7632 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7633 M:      Haiyang Zhang <haiyangz@microsoft.com>
7634 M:      Stephen Hemminger <sthemmin@microsoft.com>
7635 M:      Sasha Levin <sashal@kernel.org>
7636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7637 L:      linux-hyperv@vger.kernel.org
7638 S:      Supported
7639 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7640 F:      arch/x86/include/asm/mshyperv.h
7641 F:      arch/x86/include/asm/trace/hyperv.h
7642 F:      arch/x86/include/asm/hyperv-tlfs.h
7643 F:      arch/x86/kernel/cpu/mshyperv.c
7644 F:      arch/x86/hyperv
7645 F:      drivers/clocksource/hyperv_timer.c
7646 F:      drivers/hid/hid-hyperv.c
7647 F:      drivers/hv/
7648 F:      drivers/input/serio/hyperv-keyboard.c
7649 F:      drivers/pci/controller/pci-hyperv.c
7650 F:      drivers/pci/controller/pci-hyperv-intf.c
7651 F:      drivers/net/hyperv/
7652 F:      drivers/scsi/storvsc_drv.c
7653 F:      drivers/uio/uio_hv_generic.c
7654 F:      drivers/video/fbdev/hyperv_fb.c
7655 F:      drivers/iommu/hyperv-iommu.c
7656 F:      net/vmw_vsock/hyperv_transport.c
7657 F:      include/clocksource/hyperv_timer.h
7658 F:      include/linux/hyperv.h
7659 F:      include/uapi/linux/hyperv.h
7660 F:      include/asm-generic/mshyperv.h
7661 F:      tools/hv/
7662 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7663 F:      Documentation/ABI/testing/debugfs-hyperv
7664
7665 HYPERBUS SUPPORT
7666 M:      Vignesh Raghavendra <vigneshr@ti.com>
7667 S:      Supported
7668 F:      drivers/mtd/hyperbus/
7669 F:      include/linux/mtd/hyperbus.h
7670 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7671 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7672
7673 HYPERVISOR VIRTUAL CONSOLE DRIVER
7674 L:      linuxppc-dev@lists.ozlabs.org
7675 S:      Odd Fixes
7676 F:      drivers/tty/hvc/
7677
7678 I2C ACPI SUPPORT
7679 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7680 L:      linux-i2c@vger.kernel.org
7681 L:      linux-acpi@vger.kernel.org
7682 S:      Maintained
7683 F:      drivers/i2c/i2c-core-acpi.c
7684
7685 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7686 M:      Ajay Gupta <ajayg@nvidia.com>
7687 L:      linux-i2c@vger.kernel.org
7688 S:      Maintained
7689 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7690 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7691
7692 I2C MUXES
7693 M:      Peter Rosin <peda@axentia.se>
7694 L:      linux-i2c@vger.kernel.org
7695 S:      Maintained
7696 F:      Documentation/i2c/i2c-topology.rst
7697 F:      Documentation/i2c/muxes/
7698 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7699 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7700 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7701 F:      drivers/i2c/i2c-mux.c
7702 F:      drivers/i2c/muxes/
7703 F:      include/linux/i2c-mux.h
7704
7705 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7706 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
7707 L:      linux-i2c@vger.kernel.org
7708 S:      Maintained
7709 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7710 F:      drivers/i2c/busses/i2c-mv64xxx.c
7711
7712 I2C OVER PARALLEL PORT
7713 M:      Jean Delvare <jdelvare@suse.com>
7714 L:      linux-i2c@vger.kernel.org
7715 S:      Maintained
7716 F:      Documentation/i2c/busses/i2c-parport.rst
7717 F:      Documentation/i2c/busses/i2c-parport-light.rst
7718 F:      drivers/i2c/busses/i2c-parport.c
7719 F:      drivers/i2c/busses/i2c-parport-light.c
7720
7721 I2C SUBSYSTEM
7722 M:      Wolfram Sang <wsa@the-dreams.de>
7723 L:      linux-i2c@vger.kernel.org
7724 W:      https://i2c.wiki.kernel.org/
7725 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7727 S:      Maintained
7728 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7729 F:      Documentation/i2c/
7730 F:      drivers/i2c/*
7731 F:      include/linux/i2c.h
7732 F:      include/linux/i2c-dev.h
7733 F:      include/linux/i2c-smbus.h
7734 F:      include/uapi/linux/i2c.h
7735 F:      include/uapi/linux/i2c-*.h
7736
7737 I2C SUBSYSTEM HOST DRIVERS
7738 L:      linux-i2c@vger.kernel.org
7739 W:      https://i2c.wiki.kernel.org/
7740 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7742 S:      Odd Fixes
7743 F:      Documentation/devicetree/bindings/i2c/
7744 F:      drivers/i2c/algos/
7745 F:      drivers/i2c/busses/
7746
7747 I2C-TAOS-EVM DRIVER
7748 M:      Jean Delvare <jdelvare@suse.com>
7749 L:      linux-i2c@vger.kernel.org
7750 S:      Maintained
7751 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7752 F:      drivers/i2c/busses/i2c-taos-evm.c
7753
7754 I2C-TINY-USB DRIVER
7755 M:      Till Harbaum <till@harbaum.org>
7756 L:      linux-i2c@vger.kernel.org
7757 W:      http://www.harbaum.org/till/i2c_tiny_usb
7758 S:      Maintained
7759 F:      drivers/i2c/busses/i2c-tiny-usb.c
7760
7761 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7762 M:      Jean Delvare <jdelvare@suse.com>
7763 L:      linux-i2c@vger.kernel.org
7764 S:      Maintained
7765 F:      Documentation/i2c/busses/i2c-ali1535.rst
7766 F:      Documentation/i2c/busses/i2c-ali1563.rst
7767 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7768 F:      Documentation/i2c/busses/i2c-amd756.rst
7769 F:      Documentation/i2c/busses/i2c-amd8111.rst
7770 F:      Documentation/i2c/busses/i2c-i801.rst
7771 F:      Documentation/i2c/busses/i2c-nforce2.rst
7772 F:      Documentation/i2c/busses/i2c-piix4.rst
7773 F:      Documentation/i2c/busses/i2c-sis5595.rst
7774 F:      Documentation/i2c/busses/i2c-sis630.rst
7775 F:      Documentation/i2c/busses/i2c-sis96x.rst
7776 F:      Documentation/i2c/busses/i2c-via.rst
7777 F:      Documentation/i2c/busses/i2c-viapro.rst
7778 F:      drivers/i2c/busses/i2c-ali1535.c
7779 F:      drivers/i2c/busses/i2c-ali1563.c
7780 F:      drivers/i2c/busses/i2c-ali15x3.c
7781 F:      drivers/i2c/busses/i2c-amd756.c
7782 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7783 F:      drivers/i2c/busses/i2c-amd8111.c
7784 F:      drivers/i2c/busses/i2c-i801.c
7785 F:      drivers/i2c/busses/i2c-isch.c
7786 F:      drivers/i2c/busses/i2c-nforce2.c
7787 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7788 F:      drivers/i2c/busses/i2c-piix4.c
7789 F:      drivers/i2c/busses/i2c-sis5595.c
7790 F:      drivers/i2c/busses/i2c-sis630.c
7791 F:      drivers/i2c/busses/i2c-sis96x.c
7792 F:      drivers/i2c/busses/i2c-via.c
7793 F:      drivers/i2c/busses/i2c-viapro.c
7794
7795 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7796 M:      Hans de Goede <hdegoede@redhat.com>
7797 L:      linux-i2c@vger.kernel.org
7798 S:      Maintained
7799 F:      drivers/i2c/busses/i2c-cht-wc.c
7800
7801 I2C/SMBUS ISMT DRIVER
7802 M:      Seth Heasley <seth.heasley@intel.com>
7803 M:      Neil Horman <nhorman@tuxdriver.com>
7804 L:      linux-i2c@vger.kernel.org
7805 F:      drivers/i2c/busses/i2c-ismt.c
7806 F:      Documentation/i2c/busses/i2c-ismt.rst
7807
7808 I2C/SMBUS STUB DRIVER
7809 M:      Jean Delvare <jdelvare@suse.com>
7810 L:      linux-i2c@vger.kernel.org
7811 S:      Maintained
7812 F:      drivers/i2c/i2c-stub.c
7813
7814 I3C SUBSYSTEM
7815 M:      Boris Brezillon <bbrezillon@kernel.org>
7816 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
7817 C:      irc://chat.freenode.net/linux-i3c
7818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
7819 S:      Maintained
7820 F:      Documentation/ABI/testing/sysfs-bus-i3c
7821 F:      Documentation/devicetree/bindings/i3c/
7822 F:      Documentation/driver-api/i3c
7823 F:      drivers/i3c/
7824 F:      include/linux/i3c/
7825
7826 I3C DRIVER FOR SYNOPSYS DESIGNWARE
7827 M:      Vitor Soares <vitor.soares@synopsys.com>
7828 S:      Maintained
7829 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
7830 F:      drivers/i3c/master/dw*
7831
7832 I3C DRIVER FOR CADENCE I3C MASTER IP
7833 M:      Przemysław Gaj <pgaj@cadence.com>
7834 S:      Maintained
7835 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
7836 F:      drivers/i3c/master/i3c-master-cdns.c
7837
7838 IA64 (Itanium) PLATFORM
7839 M:      Tony Luck <tony.luck@intel.com>
7840 M:      Fenghua Yu <fenghua.yu@intel.com>
7841 L:      linux-ia64@vger.kernel.org
7842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
7843 S:      Maintained
7844 F:      arch/ia64/
7845
7846 IBM Power 842 compression accelerator
7847 M:      Haren Myneni <haren@us.ibm.com>
7848 S:      Supported
7849 F:      drivers/crypto/nx/Makefile
7850 F:      drivers/crypto/nx/Kconfig
7851 F:      drivers/crypto/nx/nx-842*
7852 F:      include/linux/sw842.h
7853 F:      crypto/842.c
7854 F:      lib/842/
7855
7856 IBM Power in-Nest Crypto Acceleration
7857 M:      Breno Leitão <leitao@debian.org>
7858 M:      Nayna Jain <nayna@linux.ibm.com>
7859 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7860 L:      linux-crypto@vger.kernel.org
7861 S:      Supported
7862 F:      drivers/crypto/nx/Makefile
7863 F:      drivers/crypto/nx/Kconfig
7864 F:      drivers/crypto/nx/nx-aes*
7865 F:      drivers/crypto/nx/nx-sha*
7866 F:      drivers/crypto/nx/nx.*
7867 F:      drivers/crypto/nx/nx_csbcpb.h
7868 F:      drivers/crypto/nx/nx_debugfs.c
7869
7870 IBM Power Linux RAID adapter
7871 M:      Brian King <brking@us.ibm.com>
7872 S:      Supported
7873 F:      drivers/scsi/ipr.*
7874
7875 IBM Power SRIOV Virtual NIC Device Driver
7876 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7877 M:      John Allen <jallen@linux.ibm.com>
7878 L:      netdev@vger.kernel.org
7879 S:      Supported
7880 F:      drivers/net/ethernet/ibm/ibmvnic.*
7881
7882 IBM Power Virtual Accelerator Switchboard
7883 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
7884 L:      linuxppc-dev@lists.ozlabs.org
7885 S:      Supported
7886 F:      arch/powerpc/platforms/powernv/vas*
7887 F:      arch/powerpc/platforms/powernv/copy-paste.h
7888 F:      arch/powerpc/include/asm/vas.h
7889
7890 IBM Power Virtual Ethernet Device Driver
7891 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7892 L:      netdev@vger.kernel.org
7893 S:      Supported
7894 F:      drivers/net/ethernet/ibm/ibmveth.*
7895
7896 IBM Power Virtual FC Device Drivers
7897 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7898 L:      linux-scsi@vger.kernel.org
7899 S:      Supported
7900 F:      drivers/scsi/ibmvscsi/ibmvfc*
7901
7902 IBM Power Virtual Management Channel Driver
7903 M:      Steven Royer <seroyer@linux.ibm.com>
7904 S:      Supported
7905 F:      drivers/misc/ibmvmc.*
7906
7907 IBM Power Virtual SCSI Device Drivers
7908 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7909 L:      linux-scsi@vger.kernel.org
7910 S:      Supported
7911 F:      drivers/scsi/ibmvscsi/ibmvscsi*
7912 F:      include/scsi/viosrp.h
7913
7914 IBM Power Virtual SCSI Device Target Driver
7915 M:      Michael Cyr <mikecyr@linux.ibm.com>
7916 L:      linux-scsi@vger.kernel.org
7917 L:      target-devel@vger.kernel.org
7918 S:      Supported
7919 F:      drivers/scsi/ibmvscsi_tgt/
7920
7921 IBM Power VMX Cryptographic instructions
7922 M:      Breno Leitão <leitao@debian.org>
7923 M:      Nayna Jain <nayna@linux.ibm.com>
7924 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7925 L:      linux-crypto@vger.kernel.org
7926 S:      Supported
7927 F:      drivers/crypto/vmx/Makefile
7928 F:      drivers/crypto/vmx/Kconfig
7929 F:      drivers/crypto/vmx/vmx.c
7930 F:      drivers/crypto/vmx/aes*
7931 F:      drivers/crypto/vmx/ghash*
7932 F:      drivers/crypto/vmx/ppc-xlate.pl
7933
7934 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
7935 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7936 L:      linux-pci@vger.kernel.org
7937 L:      linuxppc-dev@lists.ozlabs.org
7938 S:      Supported
7939 F:      drivers/pci/hotplug/rpaphp*
7940
7941 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
7942 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7943 L:      linux-pci@vger.kernel.org
7944 L:      linuxppc-dev@lists.ozlabs.org
7945 S:      Supported
7946 F:      drivers/pci/hotplug/rpadlpar*
7947
7948 IBM ServeRAID RAID DRIVER
7949 S:      Orphan
7950 F:      drivers/scsi/ips.*
7951
7952 ICH LPC AND GPIO DRIVER
7953 M:      Peter Tyser <ptyser@xes-inc.com>
7954 S:      Maintained
7955 F:      drivers/mfd/lpc_ich.c
7956 F:      drivers/gpio/gpio-ich.c
7957
7958 ICY I2C DRIVER
7959 M:      Max Staudt <max@enpas.org>
7960 L:      linux-i2c@vger.kernel.org
7961 S:      Maintained
7962 F:      drivers/i2c/busses/i2c-icy.c
7963
7964 IDE SUBSYSTEM
7965 M:      "David S. Miller" <davem@davemloft.net>
7966 L:      linux-ide@vger.kernel.org
7967 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
7968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
7969 S:      Maintained
7970 F:      Documentation/ide/
7971 F:      drivers/ide/
7972 F:      include/linux/ide.h
7973
7974 IDE/ATAPI DRIVERS
7975 M:      Borislav Petkov <bp@alien8.de>
7976 L:      linux-ide@vger.kernel.org
7977 S:      Maintained
7978 F:      Documentation/cdrom/ide-cd.rst
7979 F:      drivers/ide/ide-cd*
7980
7981 IDEAPAD LAPTOP EXTRAS DRIVER
7982 M:      Ike Panhc <ike.pan@canonical.com>
7983 L:      platform-driver-x86@vger.kernel.org
7984 W:      http://launchpad.net/ideapad-laptop
7985 S:      Maintained
7986 F:      drivers/platform/x86/ideapad-laptop.c
7987
7988 IDEAPAD LAPTOP SLIDEBAR DRIVER
7989 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
7990 L:      linux-input@vger.kernel.org
7991 W:      https://github.com/o2genum/ideapad-slidebar
7992 S:      Maintained
7993 F:      drivers/input/misc/ideapad_slidebar.c
7994
7995 IDT VersaClock 5 CLOCK DRIVER
7996 M:      Marek Vasut <marek.vasut@gmail.com>
7997 S:      Maintained
7998 F:      drivers/clk/clk-versaclock5.c
7999
8000 IEEE 802.15.4 SUBSYSTEM
8001 M:      Alexander Aring <alex.aring@gmail.com>
8002 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8003 L:      linux-wpan@vger.kernel.org
8004 W:      http://wpan.cakelab.org/
8005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8007 S:      Maintained
8008 F:      net/ieee802154/
8009 F:      net/mac802154/
8010 F:      drivers/net/ieee802154/
8011 F:      include/linux/nl802154.h
8012 F:      include/linux/ieee802154.h
8013 F:      include/net/nl802154.h
8014 F:      include/net/mac802154.h
8015 F:      include/net/af_ieee802154.h
8016 F:      include/net/cfg802154.h
8017 F:      include/net/ieee802154_netdev.h
8018 F:      Documentation/networking/ieee802154.rst
8019
8020 IFE PROTOCOL
8021 M:      Yotam Gigi <yotam.gi@gmail.com>
8022 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8023 F:      net/ife
8024 F:      include/net/ife.h
8025 F:      include/uapi/linux/ife.h
8026
8027 IGORPLUG-USB IR RECEIVER
8028 M:      Sean Young <sean@mess.org>
8029 L:      linux-media@vger.kernel.org
8030 S:      Maintained
8031 F:      drivers/media/rc/igorplugusb.c
8032
8033 IGUANAWORKS USB IR TRANSCEIVER
8034 M:      Sean Young <sean@mess.org>
8035 L:      linux-media@vger.kernel.org
8036 S:      Maintained
8037 F:      drivers/media/rc/iguanair.c
8038
8039 IIO DIGITAL POTENTIOMETER DAC
8040 M:      Peter Rosin <peda@axentia.se>
8041 L:      linux-iio@vger.kernel.org
8042 S:      Maintained
8043 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8044 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8045 F:      drivers/iio/dac/dpot-dac.c
8046
8047 IIO ENVELOPE DETECTOR
8048 M:      Peter Rosin <peda@axentia.se>
8049 L:      linux-iio@vger.kernel.org
8050 S:      Maintained
8051 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8052 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8053 F:      drivers/iio/adc/envelope-detector.c
8054
8055 IIO MULTIPLEXER
8056 M:      Peter Rosin <peda@axentia.se>
8057 L:      linux-iio@vger.kernel.org
8058 S:      Maintained
8059 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8060 F:      drivers/iio/multiplexer/iio-mux.c
8061
8062 IIO SUBSYSTEM AND DRIVERS
8063 M:      Jonathan Cameron <jic23@kernel.org>
8064 R:      Hartmut Knaack <knaack.h@gmx.de>
8065 R:      Lars-Peter Clausen <lars@metafoo.de>
8066 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8067 L:      linux-iio@vger.kernel.org
8068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8069 S:      Maintained
8070 F:      Documentation/ABI/testing/configfs-iio*
8071 F:      Documentation/ABI/testing/sysfs-bus-iio*
8072 F:      Documentation/devicetree/bindings/iio/
8073 F:      drivers/iio/
8074 F:      drivers/staging/iio/
8075 F:      include/linux/iio/
8076 F:      tools/iio/
8077
8078 IIO UNIT CONVERTER
8079 M:      Peter Rosin <peda@axentia.se>
8080 L:      linux-iio@vger.kernel.org
8081 S:      Maintained
8082 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8083 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8084 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8085 F:      drivers/iio/afe/iio-rescale.c
8086
8087 IKANOS/ADI EAGLE ADSL USB DRIVER
8088 M:      Matthieu Castet <castet.matthieu@free.fr>
8089 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8090 S:      Maintained
8091 F:      drivers/usb/atm/ueagle-atm.c
8092
8093 IMGTEC ASCII LCD DRIVER
8094 M:      Paul Burton <paulburton@kernel.org>
8095 S:      Maintained
8096 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8097 F:      drivers/auxdisplay/img-ascii-lcd.c
8098
8099 IMGTEC IR DECODER DRIVER
8100 M:      James Hogan <jhogan@kernel.org>
8101 S:      Maintained
8102 F:      drivers/media/rc/img-ir/
8103
8104 IMON SOUNDGRAPH USB IR RECEIVER
8105 M:      Sean Young <sean@mess.org>
8106 L:      linux-media@vger.kernel.org
8107 S:      Maintained
8108 F:      drivers/media/rc/imon_raw.c
8109 F:      drivers/media/rc/imon.c
8110
8111 IMS TWINTURBO FRAMEBUFFER DRIVER
8112 L:      linux-fbdev@vger.kernel.org
8113 S:      Orphan
8114 F:      drivers/video/fbdev/imsttfb.c
8115
8116 INA209 HARDWARE MONITOR DRIVER
8117 M:      Guenter Roeck <linux@roeck-us.net>
8118 L:      linux-hwmon@vger.kernel.org
8119 S:      Maintained
8120 F:      Documentation/hwmon/ina209.rst
8121 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8122 F:      drivers/hwmon/ina209.c
8123
8124 INA2XX HARDWARE MONITOR DRIVER
8125 M:      Guenter Roeck <linux@roeck-us.net>
8126 L:      linux-hwmon@vger.kernel.org
8127 S:      Maintained
8128 F:      Documentation/hwmon/ina2xx.rst
8129 F:      drivers/hwmon/ina2xx.c
8130 F:      include/linux/platform_data/ina2xx.h
8131
8132 INDUSTRY PACK SUBSYSTEM (IPACK)
8133 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8134 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8135 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8136 L:      industrypack-devel@lists.sourceforge.net
8137 W:      http://industrypack.sourceforge.net
8138 S:      Maintained
8139 F:      drivers/ipack/
8140
8141 INFINEON DPS310 Driver
8142 M:      Eddie James <eajames@linux.ibm.com>
8143 L:      linux-iio@vger.kernel.org
8144 F:      drivers/iio/pressure/dps310.c
8145 S:      Maintained
8146
8147 INFINIBAND SUBSYSTEM
8148 M:      Doug Ledford <dledford@redhat.com>
8149 M:      Jason Gunthorpe <jgg@mellanox.com>
8150 L:      linux-rdma@vger.kernel.org
8151 W:      https://github.com/linux-rdma/rdma-core
8152 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8154 S:      Supported
8155 F:      Documentation/devicetree/bindings/infiniband/
8156 F:      Documentation/infiniband/
8157 F:      drivers/infiniband/
8158 F:      include/uapi/linux/if_infiniband.h
8159 F:      include/uapi/rdma/
8160 F:      include/rdma/
8161 F:      include/trace/events/ib_mad.h
8162 F:      include/trace/events/ib_umad.h
8163 F:      samples/bpf/ibumad_kern.c
8164 F:      samples/bpf/ibumad_user.c
8165
8166 INGENIC JZ4780 DMA Driver
8167 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8168 S:      Maintained
8169 F:      drivers/dma/dma-jz4780.c
8170
8171 INGENIC JZ4780 NAND DRIVER
8172 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8173 L:      linux-mtd@lists.infradead.org
8174 S:      Maintained
8175 F:      drivers/mtd/nand/raw/ingenic/
8176
8177 INGENIC JZ47xx SoCs
8178 M:      Paul Cercueil <paul@crapouillou.net>
8179 S:      Maintained
8180 F:      arch/mips/boot/dts/ingenic/
8181 F:      arch/mips/include/asm/mach-jz4740/
8182 F:      arch/mips/jz4740/
8183 F:      drivers/clk/ingenic/
8184 F:      drivers/dma/dma-jz4780.c
8185 F:      drivers/gpu/drm/ingenic/
8186 F:      drivers/i2c/busses/i2c-jz4780.c
8187 F:      drivers/iio/adc/ingenic-adc.c
8188 F:      drivers/irqchip/irq-ingenic.c
8189 F:      drivers/memory/jz4780-nemc.c
8190 F:      drivers/mmc/host/jz4740_mmc.c
8191 F:      drivers/mtd/nand/raw/ingenic/
8192 F:      drivers/pinctrl/pinctrl-ingenic.c
8193 F:      drivers/power/supply/ingenic-battery.c
8194 F:      drivers/pwm/pwm-jz4740.c
8195 F:      drivers/rtc/rtc-jz4740.c
8196 F:      drivers/tty/serial/8250/8250_ingenic.c
8197 F:      drivers/usb/musb/jz4740.c
8198 F:      drivers/watchdog/jz4740_wdt.c
8199 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8200 F:      include/linux/mfd/ingenic-tcu.h
8201 F:      sound/soc/jz4740/
8202 F:      sound/soc/codecs/jz47*
8203
8204 INOTIFY
8205 M:      Jan Kara <jack@suse.cz>
8206 R:      Amir Goldstein <amir73il@gmail.com>
8207 L:      linux-fsdevel@vger.kernel.org
8208 S:      Maintained
8209 F:      Documentation/filesystems/inotify.txt
8210 F:      fs/notify/inotify/
8211 F:      include/linux/inotify.h
8212 F:      include/uapi/linux/inotify.h
8213
8214 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8215 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8216 L:      linux-input@vger.kernel.org
8217 Q:      http://patchwork.kernel.org/project/linux-input/list/
8218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8219 S:      Maintained
8220 F:      drivers/input/
8221 F:      include/linux/input.h
8222 F:      include/uapi/linux/input.h
8223 F:      include/uapi/linux/input-event-codes.h
8224 F:      include/linux/input/
8225 F:      Documentation/devicetree/bindings/input/
8226 F:      Documentation/devicetree/bindings/serio/
8227 F:      Documentation/input/
8228
8229 INPUT MULTITOUCH (MT) PROTOCOL
8230 M:      Henrik Rydberg <rydberg@bitmath.org>
8231 L:      linux-input@vger.kernel.org
8232 S:      Odd fixes
8233 F:      Documentation/input/multi-touch-protocol.rst
8234 F:      drivers/input/input-mt.c
8235 K:      \b(ABS|SYN)_MT_
8236
8237 INSIDE SECURE CRYPTO DRIVER
8238 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8239 F:      drivers/crypto/inside-secure/
8240 S:      Maintained
8241 L:      linux-crypto@vger.kernel.org
8242
8243 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8244 M:      Mimi Zohar <zohar@linux.ibm.com>
8245 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8246 L:      linux-integrity@vger.kernel.org
8247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8248 S:      Supported
8249 F:      security/integrity/ima/
8250
8251 INTEL 810/815 FRAMEBUFFER DRIVER
8252 M:      Antonino Daplas <adaplas@gmail.com>
8253 L:      linux-fbdev@vger.kernel.org
8254 S:      Maintained
8255 F:      drivers/video/fbdev/i810/
8256
8257 INTEL ASoC DRIVERS
8258 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8259 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8260 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8261 M:      Jie Yang <yang.jie@linux.intel.com>
8262 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8263 S:      Supported
8264 F:      sound/soc/intel/
8265
8266 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8267 M:      Hans de Goede <hdegoede@redhat.com>
8268 L:      platform-driver-x86@vger.kernel.org
8269 S:      Maintained
8270 F:      drivers/platform/x86/intel_atomisp2_pm.c
8271
8272 INTEL C600 SERIES SAS CONTROLLER DRIVER
8273 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8274 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8275 L:      linux-scsi@vger.kernel.org
8276 T:      git git://git.code.sf.net/p/intel-sas/isci
8277 S:      Supported
8278 F:      drivers/scsi/isci/
8279
8280 INTEL CPU family model numbers
8281 M:      Tony Luck <tony.luck@intel.com>
8282 M:      x86@kernel.org
8283 L:      linux-kernel@vger.kernel.org
8284 S:      Supported
8285 F:      arch/x86/include/asm/intel-family.h
8286
8287 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8288 M:      Jani Nikula <jani.nikula@linux.intel.com>
8289 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8290 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8291 L:      intel-gfx@lists.freedesktop.org
8292 W:      https://01.org/linuxgraphics/
8293 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
8294 C:      irc://chat.freenode.net/intel-gfx
8295 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8296 T:      git git://anongit.freedesktop.org/drm-intel
8297 S:      Supported
8298 F:      drivers/gpu/drm/i915/
8299 F:      include/drm/i915*
8300 F:      include/uapi/drm/i915_drm.h
8301 F:      Documentation/gpu/i915.rst
8302
8303 INTEL ETHERNET DRIVERS
8304 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8305 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8306 W:      http://www.intel.com/support/feedback.htm
8307 W:      http://e1000.sourceforge.net/
8308 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8311 S:      Supported
8312 F:      Documentation/networking/device_drivers/intel/e100.rst
8313 F:      Documentation/networking/device_drivers/intel/e1000.rst
8314 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8315 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8316 F:      Documentation/networking/device_drivers/intel/igb.rst
8317 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8318 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8319 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8320 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8321 F:      Documentation/networking/device_drivers/intel/i40e.rst
8322 F:      Documentation/networking/device_drivers/intel/iavf.rst
8323 F:      Documentation/networking/device_drivers/intel/ice.rst
8324 F:      drivers/net/ethernet/intel/
8325 F:      drivers/net/ethernet/intel/*/
8326 F:      include/linux/avf/virtchnl.h
8327
8328 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8329 M:      Maik Broemme <mbroemme@libmpq.org>
8330 L:      linux-fbdev@vger.kernel.org
8331 S:      Maintained
8332 F:      Documentation/fb/intelfb.rst
8333 F:      drivers/video/fbdev/intelfb/
8334
8335 INTEL GPIO DRIVERS
8336 M:      Andy Shevchenko <andy@kernel.org>
8337 L:      linux-gpio@vger.kernel.org
8338 S:      Maintained
8339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8340 F:      drivers/gpio/gpio-ich.c
8341 F:      drivers/gpio/gpio-intel-mid.c
8342 F:      drivers/gpio/gpio-lynxpoint.c
8343 F:      drivers/gpio/gpio-merrifield.c
8344 F:      drivers/gpio/gpio-ml-ioh.c
8345 F:      drivers/gpio/gpio-pch.c
8346 F:      drivers/gpio/gpio-sch.c
8347 F:      drivers/gpio/gpio-sodaville.c
8348
8349 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8350 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8351 M:      Zhi Wang <zhi.a.wang@intel.com>
8352 L:      intel-gvt-dev@lists.freedesktop.org
8353 L:      intel-gfx@lists.freedesktop.org
8354 W:      https://01.org/igvt-g
8355 T:      git https://github.com/intel/gvt-linux.git
8356 S:      Supported
8357 F:      drivers/gpu/drm/i915/gvt/
8358
8359 INTEL HID EVENT DRIVER
8360 M:      Alex Hung <alex.hung@canonical.com>
8361 L:      platform-driver-x86@vger.kernel.org
8362 S:      Maintained
8363 F:      drivers/platform/x86/intel-hid.c
8364
8365 INTEL I/OAT DMA DRIVER
8366 M:      Dave Jiang <dave.jiang@intel.com>
8367 R:      Dan Williams <dan.j.williams@intel.com>
8368 L:      dmaengine@vger.kernel.org
8369 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8370 S:      Supported
8371 F:      drivers/dma/ioat*
8372
8373 INTEL IDLE DRIVER
8374 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8375 M:      Len Brown <lenb@kernel.org>
8376 L:      linux-pm@vger.kernel.org
8377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8378 B:      https://bugzilla.kernel.org
8379 S:      Supported
8380 F:      drivers/idle/intel_idle.c
8381
8382 INTEL INTEGRATED SENSOR HUB DRIVER
8383 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8384 M:      Jiri Kosina <jikos@kernel.org>
8385 L:      linux-input@vger.kernel.org
8386 S:      Maintained
8387 F:      drivers/hid/intel-ish-hid/
8388
8389 INTEL IOMMU (VT-d)
8390 M:      David Woodhouse <dwmw2@infradead.org>
8391 M:      Lu Baolu <baolu.lu@linux.intel.com>
8392 L:      iommu@lists.linux-foundation.org
8393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8394 S:      Supported
8395 F:      drivers/iommu/dmar.c
8396 F:      drivers/iommu/intel*.[ch]
8397 F:      include/linux/intel-iommu.h
8398 F:      include/linux/intel-svm.h
8399
8400 INTEL IOP-ADMA DMA DRIVER
8401 R:      Dan Williams <dan.j.williams@intel.com>
8402 S:      Odd fixes
8403 F:      drivers/dma/iop-adma.c
8404
8405 INTEL IPU3 CSI-2 CIO2 DRIVER
8406 M:      Yong Zhi <yong.zhi@intel.com>
8407 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8408 M:      Bingbu Cao <bingbu.cao@intel.com>
8409 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8410 L:      linux-media@vger.kernel.org
8411 S:      Maintained
8412 F:      drivers/media/pci/intel/ipu3/
8413 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8414
8415 INTEL IPU3 CSI-2 IMGU DRIVER
8416 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8417 L:      linux-media@vger.kernel.org
8418 S:      Maintained
8419 F:      drivers/staging/media/ipu3/
8420 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8421 F:      Documentation/media/v4l-drivers/ipu3.rst
8422 F:      Documentation/media/v4l-drivers/ipu3_rcb.svg
8423
8424 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8425 M:      Krzysztof Halasa <khalasa@piap.pl>
8426 S:      Maintained
8427 F:      include/linux/soc/ixp4xx/qmgr.h
8428 F:      include/linux/soc/ixp4xx/npe.h
8429 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8430 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8431 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8432 F:      drivers/net/wan/ixp4xx_hss.c
8433
8434 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8435 M:      Deepak Saxena <dsaxena@plexity.net>
8436 S:      Maintained
8437 F:      drivers/char/hw_random/ixp4xx-rng.c
8438
8439 INTEL MANAGEMENT ENGINE (mei)
8440 M:      Tomas Winkler <tomas.winkler@intel.com>
8441 L:      linux-kernel@vger.kernel.org
8442 S:      Supported
8443 F:      include/uapi/linux/mei.h
8444 F:      include/linux/mei_cl_bus.h
8445 F:      drivers/misc/mei/*
8446 F:      drivers/watchdog/mei_wdt.c
8447 F:      Documentation/driver-api/mei/*
8448 F:      samples/mei/*
8449
8450 INTEL MENLOW THERMAL DRIVER
8451 M:      Sujith Thomas <sujith.thomas@intel.com>
8452 L:      platform-driver-x86@vger.kernel.org
8453 W:      https://01.org/linux-acpi
8454 S:      Supported
8455 F:      drivers/platform/x86/intel_menlow.c
8456
8457 INTEL MIC DRIVERS (mic)
8458 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8459 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8460 S:      Supported
8461 W:      https://github.com/sudeepdutt/mic
8462 W:      http://software.intel.com/en-us/mic-developer
8463 F:      include/linux/mic_bus.h
8464 F:      include/linux/scif.h
8465 F:      include/uapi/linux/mic_common.h
8466 F:      include/uapi/linux/mic_ioctl.h
8467 F:      include/uapi/linux/scif_ioctl.h
8468 F:      drivers/misc/mic/
8469 F:      drivers/dma/mic_x100_dma.c
8470 F:      drivers/dma/mic_x100_dma.h
8471 F:      Documentation/mic/
8472
8473 INTEL PMC CORE DRIVER
8474 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8475 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8476 L:      platform-driver-x86@vger.kernel.org
8477 S:      Maintained
8478 F:      drivers/platform/x86/intel_pmc_core*
8479
8480 INTEL PMC/P-Unit IPC DRIVER
8481 M:      Zha Qipeng<qipeng.zha@intel.com>
8482 L:      platform-driver-x86@vger.kernel.org
8483 S:      Maintained
8484 F:      drivers/platform/x86/intel_pmc_ipc.c
8485 F:      drivers/platform/x86/intel_punit_ipc.c
8486 F:      arch/x86/include/asm/intel_pmc_ipc.h
8487 F:      arch/x86/include/asm/intel_punit_ipc.h
8488
8489 INTEL PMIC GPIO DRIVERS
8490 M:      Andy Shevchenko <andy@kernel.org>
8491 S:      Maintained
8492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8493 F:      drivers/gpio/gpio-*cove.c
8494 F:      drivers/gpio/gpio-msic.c
8495
8496 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8497 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8498 S:      Maintained
8499 F:      drivers/mfd/intel_msic.c
8500 F:      drivers/mfd/intel_soc_pmic*
8501 F:      include/linux/mfd/intel_msic.h
8502 F:      include/linux/mfd/intel_soc_pmic*
8503
8504 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8505 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8506 L:      linux-wireless@vger.kernel.org
8507 S:      Maintained
8508 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8509 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8510 F:      drivers/net/wireless/intel/ipw2x00/
8511
8512 INTEL PSTATE DRIVER
8513 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8514 M:      Len Brown <lenb@kernel.org>
8515 L:      linux-pm@vger.kernel.org
8516 S:      Supported
8517 F:      drivers/cpufreq/intel_pstate.c
8518
8519 INTEL RDMA RNIC DRIVER
8520 M:      Faisal Latif <faisal.latif@intel.com>
8521 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8522 L:      linux-rdma@vger.kernel.org
8523 S:      Supported
8524 F:      drivers/infiniband/hw/i40iw/
8525 F:      include/uapi/rdma/i40iw-abi.h
8526
8527 INTEL SPEED SELECT TECHNOLOGY
8528 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8529 L:      platform-driver-x86@vger.kernel.org
8530 S:      Maintained
8531 F:      drivers/platform/x86/intel_speed_select_if/
8532 F:      tools/power/x86/intel-speed-select/
8533 F:      include/uapi/linux/isst_if.h
8534
8535 INTEL STRATIX10 FIRMWARE DRIVERS
8536 M:      Richard Gong <richard.gong@linux.intel.com>
8537 L:      linux-kernel@vger.kernel.org
8538 S:      Maintained
8539 F:      drivers/firmware/stratix10-rsu.c
8540 F:      drivers/firmware/stratix10-svc.c
8541 F:      include/linux/firmware/intel/stratix10-smc.h
8542 F:      include/linux/firmware/intel/stratix10-svc-client.h
8543 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8544 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8545
8546 INTEL TELEMETRY DRIVER
8547 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8548 M:      "David E. Box" <david.e.box@linux.intel.com>
8549 L:      platform-driver-x86@vger.kernel.org
8550 S:      Maintained
8551 F:      arch/x86/include/asm/intel_telemetry.h
8552 F:      drivers/platform/x86/intel_telemetry*
8553
8554 INTEL VIRTUAL BUTTON DRIVER
8555 M:      AceLan Kao <acelan.kao@canonical.com>
8556 L:      platform-driver-x86@vger.kernel.org
8557 S:      Maintained
8558 F:      drivers/platform/x86/intel-vbtn.c
8559
8560 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8561 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8562 L:      linux-wireless@vger.kernel.org
8563 S:      Supported
8564 F:      drivers/net/wireless/intel/iwlegacy/
8565
8566 INTEL WIRELESS WIFI LINK (iwlwifi)
8567 M:      Johannes Berg <johannes.berg@intel.com>
8568 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8569 M:      Luca Coelho <luciano.coelho@intel.com>
8570 M:      Intel Linux Wireless <linuxwifi@intel.com>
8571 L:      linux-wireless@vger.kernel.org
8572 W:      http://intellinuxwireless.org
8573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8574 S:      Supported
8575 F:      drivers/net/wireless/intel/iwlwifi/
8576
8577 INTEL WIRELESS WIMAX CONNECTION 2400
8578 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8579 M:      linux-wimax@intel.com
8580 L:      wimax@linuxwimax.org (subscribers-only)
8581 S:      Supported
8582 W:      http://linuxwimax.org
8583 F:      Documentation/admin-guide/wimax/i2400m.rst
8584 F:      drivers/net/wimax/i2400m/
8585 F:      include/uapi/linux/wimax/i2400m.h
8586
8587 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8588 M:      Mario Limonciello <mario.limonciello@dell.com>
8589 S:      Maintained
8590 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8591
8592 INTEL(R) TRACE HUB
8593 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8594 S:      Supported
8595 F:      Documentation/trace/intel_th.rst
8596 F:      drivers/hwtracing/intel_th/
8597 F:      include/linux/intel_th.h
8598
8599 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8600 M:      Ning Sun <ning.sun@intel.com>
8601 L:      tboot-devel@lists.sourceforge.net
8602 W:      http://tboot.sourceforge.net
8603 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8604 S:      Supported
8605 F:      Documentation/x86/intel_txt.rst
8606 F:      include/linux/tboot.h
8607 F:      arch/x86/kernel/tboot.c
8608
8609 INTERCONNECT API
8610 M:      Georgi Djakov <georgi.djakov@linaro.org>
8611 L:      linux-pm@vger.kernel.org
8612 S:      Maintained
8613 F:      Documentation/driver-api/interconnect.rst
8614 F:      Documentation/devicetree/bindings/interconnect/
8615 F:      drivers/interconnect/
8616 F:      include/dt-bindings/interconnect/
8617 F:      include/linux/interconnect-provider.h
8618 F:      include/linux/interconnect.h
8619
8620 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8621 M:      Linus Walleij <linus.walleij@linaro.org>
8622 L:      linux-iio@vger.kernel.org
8623 S:      Maintained
8624 F:      drivers/iio/gyro/mpu3050*
8625 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8626
8627 IOC3 ETHERNET DRIVER
8628 M:      Ralf Baechle <ralf@linux-mips.org>
8629 L:      linux-mips@vger.kernel.org
8630 S:      Maintained
8631 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8632
8633 IOMAP FILESYSTEM LIBRARY
8634 M:      Christoph Hellwig <hch@infradead.org>
8635 M:      Darrick J. Wong <darrick.wong@oracle.com>
8636 M:      linux-xfs@vger.kernel.org
8637 M:      linux-fsdevel@vger.kernel.org
8638 L:      linux-xfs@vger.kernel.org
8639 L:      linux-fsdevel@vger.kernel.org
8640 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8641 S:      Supported
8642 F:      fs/iomap/
8643 F:      include/linux/iomap.h
8644
8645 IOMMU DRIVERS
8646 M:      Joerg Roedel <joro@8bytes.org>
8647 L:      iommu@lists.linux-foundation.org
8648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8649 S:      Maintained
8650 F:      Documentation/devicetree/bindings/iommu/
8651 F:      drivers/iommu/
8652 F:      include/linux/iommu.h
8653 F:      include/linux/of_iommu.h
8654 F:      include/linux/iova.h
8655
8656 IO_URING
8657 M:      Jens Axboe <axboe@kernel.dk>
8658 L:      io-uring@vger.kernel.org
8659 T:      git git://git.kernel.dk/linux-block
8660 T:      git git://git.kernel.dk/liburing
8661 S:      Maintained
8662 F:      fs/io_uring.c
8663 F:      fs/io-wq.c
8664 F:      fs/io-wq.h
8665 F:      include/uapi/linux/io_uring.h
8666
8667 IPMI SUBSYSTEM
8668 M:      Corey Minyard <minyard@acm.org>
8669 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
8670 W:      http://openipmi.sourceforge.net/
8671 S:      Supported
8672 F:      Documentation/devicetree/bindings/ipmi/
8673 F:      Documentation/IPMI.txt
8674 F:      drivers/char/ipmi/
8675 F:      include/linux/ipmi*
8676 F:      include/uapi/linux/ipmi*
8677
8678 IPS SCSI RAID DRIVER
8679 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
8680 L:      linux-scsi@vger.kernel.org
8681 W:      http://www.adaptec.com/
8682 S:      Maintained
8683 F:      drivers/scsi/ips*
8684
8685 IPVS
8686 M:      Wensong Zhang <wensong@linux-vs.org>
8687 M:      Simon Horman <horms@verge.net.au>
8688 M:      Julian Anastasov <ja@ssi.bg>
8689 L:      netdev@vger.kernel.org
8690 L:      lvs-devel@vger.kernel.org
8691 S:      Maintained
8692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8694 F:      Documentation/networking/ipvs-sysctl.txt
8695 F:      include/net/ip_vs.h
8696 F:      include/uapi/linux/ip_vs.h
8697 F:      net/netfilter/ipvs/
8698
8699 IPWIRELESS DRIVER
8700 M:      Jiri Kosina <jikos@kernel.org>
8701 M:      David Sterba <dsterba@suse.com>
8702 S:      Odd Fixes
8703 F:      drivers/tty/ipwireless/
8704
8705 IPX NETWORK LAYER
8706 L:      netdev@vger.kernel.org
8707 S:      Obsolete
8708 F:      include/uapi/linux/ipx.h
8709
8710 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8711 M:      Marc Zyngier <maz@kernel.org>
8712 S:      Maintained
8713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8714 F:      Documentation/IRQ-domain.txt
8715 F:      include/linux/irqdomain.h
8716 F:      kernel/irq/irqdomain.c
8717 F:      kernel/irq/msi.c
8718
8719 IRQ SUBSYSTEM
8720 M:      Thomas Gleixner <tglx@linutronix.de>
8721 L:      linux-kernel@vger.kernel.org
8722 S:      Maintained
8723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8724 F:      kernel/irq/
8725
8726 IRQCHIP DRIVERS
8727 M:      Thomas Gleixner <tglx@linutronix.de>
8728 M:      Jason Cooper <jason@lakedaemon.net>
8729 M:      Marc Zyngier <maz@kernel.org>
8730 L:      linux-kernel@vger.kernel.org
8731 S:      Maintained
8732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8733 F:      Documentation/devicetree/bindings/interrupt-controller/
8734 F:      drivers/irqchip/
8735
8736 ISA
8737 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8738 S:      Maintained
8739 F:      Documentation/driver-api/isa.rst
8740 F:      drivers/base/isa.c
8741 F:      include/linux/isa.h
8742
8743 ISA RADIO MODULE
8744 M:      Hans Verkuil <hverkuil@xs4all.nl>
8745 L:      linux-media@vger.kernel.org
8746 T:      git git://linuxtv.org/media_tree.git
8747 W:      https://linuxtv.org
8748 S:      Maintained
8749 F:      drivers/media/radio/radio-isa*
8750
8751 ISAPNP
8752 M:      Jaroslav Kysela <perex@perex.cz>
8753 S:      Maintained
8754 F:      Documentation/driver-api/isapnp.rst
8755 F:      drivers/pnp/isapnp/
8756 F:      include/linux/isapnp.h
8757
8758 ISCSI
8759 M:      Lee Duncan <lduncan@suse.com>
8760 M:      Chris Leech <cleech@redhat.com>
8761 L:      open-iscsi@googlegroups.com
8762 W:      www.open-iscsi.com
8763 S:      Maintained
8764 F:      drivers/scsi/*iscsi*
8765 F:      include/scsi/*iscsi*
8766
8767 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8768 M:      Peter Jones <pjones@redhat.com>
8769 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
8770 S:      Maintained
8771 F:      drivers/firmware/iscsi_ibft*
8772
8773 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8774 M:      Sagi Grimberg <sagi@grimberg.me>
8775 M:      Max Gurtovoy <maxg@mellanox.com>
8776 L:      linux-rdma@vger.kernel.org
8777 S:      Supported
8778 W:      http://www.openfabrics.org
8779 W:      www.open-iscsi.org
8780 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8781 F:      drivers/infiniband/ulp/iser/
8782
8783 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
8784 M:      Sagi Grimberg <sagi@grimberg.me>
8785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
8786 L:      linux-rdma@vger.kernel.org
8787 L:      target-devel@vger.kernel.org
8788 S:      Supported
8789 W:      http://www.linux-iscsi.org
8790 F:      drivers/infiniband/ulp/isert
8791
8792 ISDN/mISDN SUBSYSTEM
8793 M:      Karsten Keil <isdn@linux-pingi.de>
8794 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8795 L:      netdev@vger.kernel.org
8796 W:      http://www.isdn4linux.de
8797 S:      Maintained
8798 F:      drivers/isdn/mISDN
8799 F:      drivers/isdn/hardware
8800
8801 ISDN/CAPI SUBSYSTEM
8802 M:      Karsten Keil <isdn@linux-pingi.de>
8803 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8804 L:      netdev@vger.kernel.org
8805 W:      http://www.isdn4linux.de
8806 S:      Odd Fixes
8807 F:      Documentation/isdn/
8808 F:      drivers/isdn/capi/
8809 F:      drivers/staging/isdn/
8810 F:      net/bluetooth/cmtp/
8811 F:      include/linux/isdn/
8812 F:      include/uapi/linux/isdn/
8813
8814 IT87 HARDWARE MONITORING DRIVER
8815 M:      Jean Delvare <jdelvare@suse.com>
8816 L:      linux-hwmon@vger.kernel.org
8817 S:      Maintained
8818 F:      Documentation/hwmon/it87.rst
8819 F:      drivers/hwmon/it87.c
8820
8821 IT913X MEDIA DRIVER
8822 M:      Antti Palosaari <crope@iki.fi>
8823 L:      linux-media@vger.kernel.org
8824 W:      https://linuxtv.org
8825 W:      http://palosaari.fi/linux/
8826 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8827 T:      git git://linuxtv.org/anttip/media_tree.git
8828 S:      Maintained
8829 F:      drivers/media/tuners/it913x*
8830
8831 IVTV VIDEO4LINUX DRIVER
8832 M:      Andy Walls <awalls@md.metrocast.net>
8833 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
8834 L:      linux-media@vger.kernel.org
8835 T:      git git://linuxtv.org/media_tree.git
8836 W:      http://www.ivtvdriver.org
8837 S:      Maintained
8838 F:      Documentation/media/v4l-drivers/ivtv*
8839 F:      drivers/media/pci/ivtv/
8840 F:      include/uapi/linux/ivtv*
8841
8842 IX2505V MEDIA DRIVER
8843 M:      Malcolm Priestley <tvboxspy@gmail.com>
8844 L:      linux-media@vger.kernel.org
8845 W:      https://linuxtv.org
8846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8847 S:      Maintained
8848 F:      drivers/media/dvb-frontends/ix2505v*
8849
8850 JAILHOUSE HYPERVISOR INTERFACE
8851 M:      Jan Kiszka <jan.kiszka@siemens.com>
8852 L:      jailhouse-dev@googlegroups.com
8853 S:      Maintained
8854 F:      arch/x86/kernel/jailhouse.c
8855 F:      arch/x86/include/asm/jailhouse_para.h
8856
8857 JC42.4 TEMPERATURE SENSOR DRIVER
8858 M:      Guenter Roeck <linux@roeck-us.net>
8859 L:      linux-hwmon@vger.kernel.org
8860 S:      Maintained
8861 F:      drivers/hwmon/jc42.c
8862 F:      Documentation/hwmon/jc42.rst
8863
8864 JFS FILESYSTEM
8865 M:      Dave Kleikamp <shaggy@kernel.org>
8866 L:      jfs-discussion@lists.sourceforge.net
8867 W:      http://jfs.sourceforge.net/
8868 T:      git git://github.com/kleikamp/linux-shaggy.git
8869 S:      Maintained
8870 F:      Documentation/admin-guide/jfs.rst
8871 F:      fs/jfs/
8872
8873 JME NETWORK DRIVER
8874 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
8875 L:      netdev@vger.kernel.org
8876 S:      Maintained
8877 F:      drivers/net/ethernet/jme.*
8878
8879 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
8880 M:      David Woodhouse <dwmw2@infradead.org>
8881 M:      Richard Weinberger <richard@nod.at>
8882 L:      linux-mtd@lists.infradead.org
8883 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
8884 T:      git git://git.infradead.org/ubifs-2.6.git
8885 S:      Odd Fixes
8886 F:      fs/jffs2/
8887 F:      include/uapi/linux/jffs2.h
8888
8889 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
8890 M:      "Theodore Ts'o" <tytso@mit.edu>
8891 M:      Jan Kara <jack@suse.com>
8892 L:      linux-ext4@vger.kernel.org
8893 S:      Maintained
8894 F:      fs/jbd2/
8895 F:      include/linux/jbd2.h
8896
8897 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
8898 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
8899 L:      linux-media@vger.kernel.org
8900 S:      Maintained
8901 F:      drivers/media/platform/rcar_jpu.c
8902
8903 JSM Neo PCI based serial card
8904 L:      linux-serial@vger.kernel.org
8905 S:      Orphan
8906 F:      drivers/tty/serial/jsm/
8907
8908 K10TEMP HARDWARE MONITORING DRIVER
8909 M:      Clemens Ladisch <clemens@ladisch.de>
8910 L:      linux-hwmon@vger.kernel.org
8911 S:      Maintained
8912 F:      Documentation/hwmon/k10temp.rst
8913 F:      drivers/hwmon/k10temp.c
8914
8915 K8TEMP HARDWARE MONITORING DRIVER
8916 M:      Rudolf Marek <r.marek@assembler.cz>
8917 L:      linux-hwmon@vger.kernel.org
8918 S:      Maintained
8919 F:      Documentation/hwmon/k8temp.rst
8920 F:      drivers/hwmon/k8temp.c
8921
8922 KASAN
8923 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
8924 R:      Alexander Potapenko <glider@google.com>
8925 R:      Dmitry Vyukov <dvyukov@google.com>
8926 L:      kasan-dev@googlegroups.com
8927 S:      Maintained
8928 F:      arch/*/include/asm/kasan.h
8929 F:      arch/*/mm/kasan_init*
8930 F:      Documentation/dev-tools/kasan.rst
8931 F:      include/linux/kasan*.h
8932 F:      lib/test_kasan.c
8933 F:      mm/kasan/
8934 F:      scripts/Makefile.kasan
8935
8936 KCONFIG
8937 M:      Masahiro Yamada <masahiroy@kernel.org>
8938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
8939 L:      linux-kbuild@vger.kernel.org
8940 S:      Maintained
8941 F:      Documentation/kbuild/kconfig*
8942 F:      scripts/kconfig/
8943 F:      scripts/Kconfig.include
8944
8945 KDUMP
8946 M:      Dave Young <dyoung@redhat.com>
8947 M:      Baoquan He <bhe@redhat.com>
8948 R:      Vivek Goyal <vgoyal@redhat.com>
8949 L:      kexec@lists.infradead.org
8950 W:      http://lse.sourceforge.net/kdump/
8951 S:      Maintained
8952 F:      Documentation/admin-guide/kdump/
8953
8954 KEENE FM RADIO TRANSMITTER DRIVER
8955 M:      Hans Verkuil <hverkuil@xs4all.nl>
8956 L:      linux-media@vger.kernel.org
8957 T:      git git://linuxtv.org/media_tree.git
8958 W:      https://linuxtv.org
8959 S:      Maintained
8960 F:      drivers/media/radio/radio-keene*
8961
8962 KERNEL AUTOMOUNTER
8963 M:      Ian Kent <raven@themaw.net>
8964 L:      autofs@vger.kernel.org
8965 S:      Maintained
8966 F:      fs/autofs/
8967
8968 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
8969 M:      Masahiro Yamada <masahiroy@kernel.org>
8970 M:      Michal Marek <michal.lkml@markovi.net>
8971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
8972 L:      linux-kbuild@vger.kernel.org
8973 S:      Maintained
8974 F:      Documentation/kbuild/
8975 F:      Makefile
8976 F:      scripts/Kbuild*
8977 F:      scripts/Makefile*
8978 F:      scripts/basic/
8979 F:      scripts/mk*
8980 F:      scripts/*vmlinux*
8981 F:      scripts/mod/
8982 F:      scripts/package/
8983
8984 KERNEL JANITORS
8985 L:      kernel-janitors@vger.kernel.org
8986 W:      http://kernelnewbies.org/KernelJanitors
8987 S:      Odd Fixes
8988
8989 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
8990 M:      "J. Bruce Fields" <bfields@fieldses.org>
8991 M:      Chuck Lever <chuck.lever@oracle.com>
8992 L:      linux-nfs@vger.kernel.org
8993 W:      http://nfs.sourceforge.net/
8994 T:      git git://linux-nfs.org/~bfields/linux.git
8995 S:      Supported
8996 F:      fs/nfsd/
8997 F:      include/uapi/linux/nfsd/
8998 F:      fs/lockd/
8999 F:      fs/nfs_common/
9000 F:      net/sunrpc/
9001 F:      include/linux/lockd/
9002 F:      include/linux/sunrpc/
9003 F:      include/uapi/linux/sunrpc/
9004
9005 KERNEL SELFTEST FRAMEWORK
9006 M:      Shuah Khan <shuah@kernel.org>
9007 M:      Shuah Khan <skhan@linuxfoundation.org>
9008 L:      linux-kselftest@vger.kernel.org
9009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9010 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9011 S:      Maintained
9012 F:      tools/testing/selftests/
9013 F:      Documentation/dev-tools/kselftest*
9014
9015 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9016 M:      Brendan Higgins <brendanhiggins@google.com>
9017 L:      linux-kselftest@vger.kernel.org
9018 L:      kunit-dev@googlegroups.com
9019 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9020 S:      Maintained
9021 F:      Documentation/dev-tools/kunit/
9022 F:      include/kunit/
9023 F:      lib/kunit/
9024 F:      tools/testing/kunit/
9025
9026 KERNEL USERMODE HELPER
9027 M:      Luis Chamberlain <mcgrof@kernel.org>
9028 L:      linux-kernel@vger.kernel.org
9029 S:      Maintained
9030 F:      kernel/umh.c
9031 F:      include/linux/umh.h
9032
9033 KERNEL VIRTUAL MACHINE (KVM)
9034 M:      Paolo Bonzini <pbonzini@redhat.com>
9035 M:      Radim Krčmář <rkrcmar@redhat.com>
9036 L:      kvm@vger.kernel.org
9037 W:      http://www.linux-kvm.org
9038 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9039 S:      Supported
9040 F:      Documentation/virt/kvm/
9041 F:      include/trace/events/kvm.h
9042 F:      include/uapi/asm-generic/kvm*
9043 F:      include/uapi/linux/kvm*
9044 F:      include/asm-generic/kvm*
9045 F:      include/linux/kvm*
9046 F:      include/kvm/iodev.h
9047 F:      virt/kvm/*
9048 F:      tools/kvm/
9049 F:      tools/testing/selftests/kvm/
9050
9051 KERNEL VIRTUAL MACHINE FOR ARM/ARM64 (KVM/arm, KVM/arm64)
9052 M:      Marc Zyngier <maz@kernel.org>
9053 R:      James Morse <james.morse@arm.com>
9054 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9055 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9056 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9057 L:      kvmarm@lists.cs.columbia.edu
9058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9059 S:      Maintained
9060 F:      arch/arm/include/uapi/asm/kvm*
9061 F:      arch/arm/include/asm/kvm*
9062 F:      arch/arm/kvm/
9063 F:      arch/arm64/include/uapi/asm/kvm*
9064 F:      arch/arm64/include/asm/kvm*
9065 F:      arch/arm64/kvm/
9066 F:      virt/kvm/arm/
9067 F:      include/kvm/arm_*
9068
9069 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9070 M:      James Hogan <jhogan@kernel.org>
9071 L:      linux-mips@vger.kernel.org
9072 S:      Supported
9073 F:      arch/mips/include/uapi/asm/kvm*
9074 F:      arch/mips/include/asm/kvm*
9075 F:      arch/mips/kvm/
9076
9077 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9078 M:      Paul Mackerras <paulus@ozlabs.org>
9079 L:      kvm-ppc@vger.kernel.org
9080 W:      http://www.linux-kvm.org/
9081 T:      git git://github.com/agraf/linux-2.6.git
9082 S:      Supported
9083 F:      arch/powerpc/include/uapi/asm/kvm*
9084 F:      arch/powerpc/include/asm/kvm*
9085 F:      arch/powerpc/kvm/
9086 F:      arch/powerpc/kernel/kvm*
9087
9088 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9089 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9090 M:      Janosch Frank <frankja@linux.ibm.com>
9091 R:      David Hildenbrand <david@redhat.com>
9092 R:      Cornelia Huck <cohuck@redhat.com>
9093 L:      kvm@vger.kernel.org
9094 W:      http://www.ibm.com/developerworks/linux/linux390/
9095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9096 S:      Supported
9097 F:      arch/s390/include/uapi/asm/kvm*
9098 F:      arch/s390/include/asm/gmap.h
9099 F:      arch/s390/include/asm/kvm*
9100 F:      arch/s390/kvm/
9101 F:      arch/s390/mm/gmap.c
9102 F:      tools/testing/selftests/kvm/s390x/
9103 F:      tools/testing/selftests/kvm/*/s390x/
9104
9105 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9106 M:      Paolo Bonzini <pbonzini@redhat.com>
9107 M:      Radim Krčmář <rkrcmar@redhat.com>
9108 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9109 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9110 R:      Wanpeng Li <wanpengli@tencent.com>
9111 R:      Jim Mattson <jmattson@google.com>
9112 R:      Joerg Roedel <joro@8bytes.org>
9113 L:      kvm@vger.kernel.org
9114 W:      http://www.linux-kvm.org
9115 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9116 S:      Supported
9117 F:      arch/x86/kvm/
9118 F:      arch/x86/kvm/*/
9119 F:      arch/x86/include/uapi/asm/kvm*
9120 F:      arch/x86/include/uapi/asm/vmx.h
9121 F:      arch/x86/include/uapi/asm/svm.h
9122 F:      arch/x86/include/asm/kvm*
9123 F:      arch/x86/include/asm/pvclock-abi.h
9124 F:      arch/x86/include/asm/svm.h
9125 F:      arch/x86/include/asm/vmx.h
9126 F:      arch/x86/kernel/kvm.c
9127 F:      arch/x86/kernel/kvmclock.c
9128
9129 KERNFS
9130 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9131 M:      Tejun Heo <tj@kernel.org>
9132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9133 S:      Supported
9134 F:      include/linux/kernfs.h
9135 F:      fs/kernfs/
9136
9137 KEXEC
9138 M:      Eric Biederman <ebiederm@xmission.com>
9139 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9140 L:      kexec@lists.infradead.org
9141 S:      Maintained
9142 F:      include/linux/kexec.h
9143 F:      include/uapi/linux/kexec.h
9144 F:      kernel/kexec*
9145
9146 KEYS-ENCRYPTED
9147 M:      Mimi Zohar <zohar@linux.ibm.com>
9148 L:      linux-integrity@vger.kernel.org
9149 L:      keyrings@vger.kernel.org
9150 S:      Supported
9151 F:      Documentation/security/keys/trusted-encrypted.rst
9152 F:      include/keys/encrypted-type.h
9153 F:      security/keys/encrypted-keys/
9154
9155 KEYS-TRUSTED
9156 M:      James Bottomley <jejb@linux.ibm.com>
9157 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9158 M:      Mimi Zohar <zohar@linux.ibm.com>
9159 L:      linux-integrity@vger.kernel.org
9160 L:      keyrings@vger.kernel.org
9161 S:      Supported
9162 F:      Documentation/security/keys/trusted-encrypted.rst
9163 F:      include/keys/trusted-type.h
9164 F:      security/keys/trusted.c
9165 F:      include/keys/trusted.h
9166
9167 KEYS/KEYRINGS:
9168 M:      David Howells <dhowells@redhat.com>
9169 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9170 L:      keyrings@vger.kernel.org
9171 S:      Maintained
9172 F:      Documentation/security/keys/core.rst
9173 F:      include/linux/key.h
9174 F:      include/linux/key-type.h
9175 F:      include/linux/keyctl.h
9176 F:      include/uapi/linux/keyctl.h
9177 F:      include/keys/
9178 F:      security/keys/
9179
9180 KGDB / KDB /debug_core
9181 M:      Jason Wessel <jason.wessel@windriver.com>
9182 M:      Daniel Thompson <daniel.thompson@linaro.org>
9183 R:      Douglas Anderson <dianders@chromium.org>
9184 W:      http://kgdb.wiki.kernel.org/
9185 L:      kgdb-bugreport@lists.sourceforge.net
9186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9187 S:      Maintained
9188 F:      Documentation/dev-tools/kgdb.rst
9189 F:      drivers/misc/kgdbts.c
9190 F:      drivers/tty/serial/kgdboc.c
9191 F:      include/linux/kdb.h
9192 F:      include/linux/kgdb.h
9193 F:      kernel/debug/
9194
9195 KMEMLEAK
9196 M:      Catalin Marinas <catalin.marinas@arm.com>
9197 S:      Maintained
9198 F:      Documentation/dev-tools/kmemleak.rst
9199 F:      include/linux/kmemleak.h
9200 F:      mm/kmemleak.c
9201 F:      mm/kmemleak-test.c
9202
9203 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9204 M:      Luis Chamberlain <mcgrof@kernel.org>
9205 L:      linux-kernel@vger.kernel.org
9206 S:      Maintained
9207 F:      kernel/kmod.c
9208 F:      include/linux/kmod.h
9209 F:      lib/test_kmod.c
9210 F:      tools/testing/selftests/kmod/
9211
9212 KPROBES
9213 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9214 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9215 M:      "David S. Miller" <davem@davemloft.net>
9216 M:      Masami Hiramatsu <mhiramat@kernel.org>
9217 S:      Maintained
9218 F:      Documentation/kprobes.txt
9219 F:      include/linux/kprobes.h
9220 F:      include/asm-generic/kprobes.h
9221 F:      kernel/kprobes.c
9222
9223 KS0108 LCD CONTROLLER DRIVER
9224 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9225 S:      Maintained
9226 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9227 F:      drivers/auxdisplay/ks0108.c
9228 F:      include/linux/ks0108.h
9229
9230 L3MDEV
9231 M:      David Ahern <dsahern@kernel.org>
9232 L:      netdev@vger.kernel.org
9233 S:      Maintained
9234 F:      net/l3mdev
9235 F:      include/net/l3mdev.h
9236
9237 L7 BPF FRAMEWORK
9238 M:      John Fastabend <john.fastabend@gmail.com>
9239 M:      Daniel Borkmann <daniel@iogearbox.net>
9240 L:      netdev@vger.kernel.org
9241 L:      bpf@vger.kernel.org
9242 S:      Maintained
9243 F:      include/linux/skmsg.h
9244 F:      net/core/skmsg.c
9245 F:      net/core/sock_map.c
9246 F:      net/ipv4/tcp_bpf.c
9247
9248 LANTIQ / INTEL Ethernet drivers
9249 M:      Hauke Mehrtens <hauke@hauke-m.de>
9250 L:      netdev@vger.kernel.org
9251 S:      Maintained
9252 F:      net/dsa/tag_gswip.c
9253 F:      drivers/net/ethernet/lantiq_xrx200.c
9254 F:      drivers/net/dsa/lantiq_pce.h
9255 F:      drivers/net/dsa/lantiq_gswip.c
9256
9257 LANTIQ MIPS ARCHITECTURE
9258 M:      John Crispin <john@phrozen.org>
9259 L:      linux-mips@vger.kernel.org
9260 S:      Maintained
9261 F:      arch/mips/lantiq
9262 F:      drivers/soc/lantiq
9263
9264 LAPB module
9265 L:      linux-x25@vger.kernel.org
9266 S:      Orphan
9267 F:      Documentation/networking/lapb-module.txt
9268 F:      include/*/lapb.h
9269 F:      net/lapb/
9270
9271 LASI 53c700 driver for PARISC
9272 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9273 L:      linux-scsi@vger.kernel.org
9274 S:      Maintained
9275 F:      Documentation/scsi/53c700.txt
9276 F:      drivers/scsi/53c700*
9277
9278 LEAKING_ADDRESSES
9279 M:      Tobin C. Harding <me@tobin.cc>
9280 M:      Tycho Andersen <tycho@tycho.ws>
9281 L:      kernel-hardening@lists.openwall.com
9282 S:      Maintained
9283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9284 F:      scripts/leaking_addresses.pl
9285
9286 LED SUBSYSTEM
9287 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9288 M:      Pavel Machek <pavel@ucw.cz>
9289 R:      Dan Murphy <dmurphy@ti.com>
9290 L:      linux-leds@vger.kernel.org
9291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9293 S:      Maintained
9294 F:      Documentation/devicetree/bindings/leds/
9295 F:      drivers/leds/
9296 F:      include/linux/leds.h
9297
9298 LEGACY EEPROM DRIVER
9299 M:      Jean Delvare <jdelvare@suse.com>
9300 S:      Maintained
9301 F:      Documentation/misc-devices/eeprom.rst
9302 F:      drivers/misc/eeprom/eeprom.c
9303
9304 LEGO MINDSTORMS EV3
9305 R:      David Lechner <david@lechnology.com>
9306 S:      Maintained
9307 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9308 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9309 F:      drivers/power/supply/lego_ev3_battery.c
9310
9311 LEGO USB Tower driver
9312 M:      Juergen Stuber <starblue@users.sourceforge.net>
9313 L:      legousb-devel@lists.sourceforge.net
9314 W:      http://legousb.sourceforge.net/
9315 S:      Maintained
9316 F:      drivers/usb/misc/legousbtower.c
9317
9318 LG LAPTOP EXTRAS
9319 M:      Matan Ziv-Av <matan@svgalib.org>
9320 L:      platform-driver-x86@vger.kernel.org
9321 S:      Maintained
9322 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9323 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9324 F:      drivers/platform/x86/lg-laptop.c
9325
9326 LG2160 MEDIA DRIVER
9327 M:      Michael Krufky <mkrufky@linuxtv.org>
9328 L:      linux-media@vger.kernel.org
9329 W:      https://linuxtv.org
9330 W:      http://github.com/mkrufky
9331 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9332 T:      git git://linuxtv.org/mkrufky/tuners.git
9333 S:      Maintained
9334 F:      drivers/media/dvb-frontends/lg2160.*
9335
9336 LGDT3305 MEDIA DRIVER
9337 M:      Michael Krufky <mkrufky@linuxtv.org>
9338 L:      linux-media@vger.kernel.org
9339 W:      https://linuxtv.org
9340 W:      http://github.com/mkrufky
9341 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9342 T:      git git://linuxtv.org/mkrufky/tuners.git
9343 S:      Maintained
9344 F:      drivers/media/dvb-frontends/lgdt3305.*
9345
9346 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9347 M:      Viresh Kumar <vireshk@kernel.org>
9348 L:      linux-ide@vger.kernel.org
9349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9350 S:      Maintained
9351 F:      include/linux/pata_arasan_cf_data.h
9352 F:      drivers/ata/pata_arasan_cf.c
9353
9354 LIBATA PATA DRIVERS
9355 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9356 M:      Jens Axboe <axboe@kernel.dk>
9357 L:      linux-ide@vger.kernel.org
9358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9359 S:      Maintained
9360 F:      drivers/ata/pata_*.c
9361 F:      drivers/ata/ata_generic.c
9362
9363 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9364 M:      Linus Walleij <linus.walleij@linaro.org>
9365 L:      linux-ide@vger.kernel.org
9366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9367 S:      Maintained
9368 F:      drivers/ata/pata_ftide010.c
9369 F:      drivers/ata/sata_gemini.c
9370 F:      drivers/ata/sata_gemini.h
9371
9372 LIBATA SATA AHCI PLATFORM devices support
9373 M:      Hans de Goede <hdegoede@redhat.com>
9374 M:      Jens Axboe <axboe@kernel.dk>
9375 L:      linux-ide@vger.kernel.org
9376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9377 S:      Maintained
9378 F:      drivers/ata/ahci_platform.c
9379 F:      drivers/ata/libahci_platform.c
9380 F:      include/linux/ahci_platform.h
9381
9382 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9383 M:      Mikael Pettersson <mikpelinux@gmail.com>
9384 L:      linux-ide@vger.kernel.org
9385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9386 S:      Maintained
9387 F:      drivers/ata/sata_promise.*
9388
9389 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9390 M:      Jens Axboe <axboe@kernel.dk>
9391 L:      linux-ide@vger.kernel.org
9392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9393 S:      Maintained
9394 F:      drivers/ata/
9395 F:      include/linux/ata.h
9396 F:      include/linux/libata.h
9397 F:      Documentation/devicetree/bindings/ata/
9398
9399 LIBLOCKDEP
9400 M:      Sasha Levin <alexander.levin@microsoft.com>
9401 S:      Maintained
9402 F:      tools/lib/lockdep/
9403
9404 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9405 M:      Dan Williams <dan.j.williams@intel.com>
9406 M:      Vishal Verma <vishal.l.verma@intel.com>
9407 M:      Dave Jiang <dave.jiang@intel.com>
9408 L:      linux-nvdimm@lists.01.org
9409 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9410 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9411 S:      Supported
9412 F:      drivers/nvdimm/blk.c
9413 F:      drivers/nvdimm/region_devs.c
9414
9415 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9416 M:      Vishal Verma <vishal.l.verma@intel.com>
9417 M:      Dan Williams <dan.j.williams@intel.com>
9418 M:      Dave Jiang <dave.jiang@intel.com>
9419 L:      linux-nvdimm@lists.01.org
9420 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9421 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9422 S:      Supported
9423 F:      drivers/nvdimm/btt*
9424
9425 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9426 M:      Dan Williams <dan.j.williams@intel.com>
9427 M:      Vishal Verma <vishal.l.verma@intel.com>
9428 M:      Dave Jiang <dave.jiang@intel.com>
9429 L:      linux-nvdimm@lists.01.org
9430 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9431 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9432 S:      Supported
9433 F:      drivers/nvdimm/pmem*
9434
9435 LIBNVDIMM: DEVICETREE BINDINGS
9436 M:      Oliver O'Halloran <oohall@gmail.com>
9437 L:      linux-nvdimm@lists.01.org
9438 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9439 S:      Supported
9440 F:      drivers/nvdimm/of_pmem.c
9441 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9442
9443 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9444 M:      Dan Williams <dan.j.williams@intel.com>
9445 M:      Vishal Verma <vishal.l.verma@intel.com>
9446 M:      Dave Jiang <dave.jiang@intel.com>
9447 M:      Ira Weiny <ira.weiny@intel.com>
9448 L:      linux-nvdimm@lists.01.org
9449 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9450 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9452 S:      Supported
9453 F:      drivers/nvdimm/*
9454 F:      drivers/acpi/nfit/*
9455 F:      include/linux/nd.h
9456 F:      include/linux/libnvdimm.h
9457 F:      include/uapi/linux/ndctl.h
9458
9459 LICENSES and SPDX stuff
9460 M:      Thomas Gleixner <tglx@linutronix.de>
9461 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9462 L:      linux-spdx@vger.kernel.org
9463 S:      Maintained
9464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9465 F:      COPYING
9466 F:      Documentation/process/license-rules.rst
9467 F:      LICENSES/
9468 F:      scripts/spdxcheck-test.sh
9469 F:      scripts/spdxcheck.py
9470
9471 LIGHTNVM PLATFORM SUPPORT
9472 M:      Matias Bjorling <mb@lightnvm.io>
9473 W:      http://github/OpenChannelSSD
9474 L:      linux-block@vger.kernel.org
9475 S:      Maintained
9476 F:      drivers/lightnvm/
9477 F:      include/linux/lightnvm.h
9478 F:      include/uapi/linux/lightnvm.h
9479
9480 LINUX FOR POWER MACINTOSH
9481 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9482 W:      http://www.penguinppc.org/
9483 L:      linuxppc-dev@lists.ozlabs.org
9484 S:      Maintained
9485 F:      arch/powerpc/platforms/powermac/
9486 F:      drivers/macintosh/
9487
9488 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9489 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9490 M:      Paul Mackerras <paulus@samba.org>
9491 M:      Michael Ellerman <mpe@ellerman.id.au>
9492 W:      https://github.com/linuxppc/linux/wiki
9493 L:      linuxppc-dev@lists.ozlabs.org
9494 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9496 S:      Supported
9497 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9498 F:      Documentation/devicetree/bindings/powerpc/
9499 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9500 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9501 F:      Documentation/powerpc/
9502 F:      arch/powerpc/
9503 F:      drivers/char/tpm/tpm_ibmvtpm*
9504 F:      drivers/crypto/nx/
9505 F:      drivers/crypto/vmx/
9506 F:      drivers/i2c/busses/i2c-opal.c
9507 F:      drivers/net/ethernet/ibm/ibmveth.*
9508 F:      drivers/net/ethernet/ibm/ibmvnic.*
9509 F:      drivers/pci/hotplug/pnv_php.c
9510 F:      drivers/pci/hotplug/rpa*
9511 F:      drivers/rtc/rtc-opal.c
9512 F:      drivers/scsi/ibmvscsi/
9513 F:      drivers/tty/hvc/hvc_opal.c
9514 F:      drivers/watchdog/wdrtas.c
9515 F:      tools/testing/selftests/powerpc
9516 N:      /pmac
9517 N:      powermac
9518 N:      powernv
9519 N:      [^a-z0-9]ps3
9520 N:      pseries
9521
9522 LINUX FOR POWERPC EMBEDDED MPC5XXX
9523 M:      Anatolij Gustschin <agust@denx.de>
9524 L:      linuxppc-dev@lists.ozlabs.org
9525 T:      git git://git.denx.de/linux-denx-agust.git
9526 S:      Maintained
9527 F:      arch/powerpc/platforms/512x/
9528 F:      arch/powerpc/platforms/52xx/
9529
9530 LINUX FOR POWERPC EMBEDDED PPC4XX
9531 M:      Alistair Popple <alistair@popple.id.au>
9532 M:      Matt Porter <mporter@kernel.crashing.org>
9533 W:      http://www.penguinppc.org/
9534 L:      linuxppc-dev@lists.ozlabs.org
9535 S:      Maintained
9536 F:      arch/powerpc/platforms/40x/
9537 F:      arch/powerpc/platforms/44x/
9538
9539 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9540 M:      Scott Wood <oss@buserror.net>
9541 M:      Kumar Gala <galak@kernel.crashing.org>
9542 W:      http://www.penguinppc.org/
9543 L:      linuxppc-dev@lists.ozlabs.org
9544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9545 S:      Maintained
9546 F:      arch/powerpc/platforms/83xx/
9547 F:      arch/powerpc/platforms/85xx/
9548 F:      Documentation/devicetree/bindings/powerpc/fsl/
9549
9550 LINUX FOR POWERPC EMBEDDED PPC8XX
9551 M:      Vitaly Bordug <vitb@kernel.crashing.org>
9552 W:      http://www.penguinppc.org/
9553 L:      linuxppc-dev@lists.ozlabs.org
9554 S:      Maintained
9555 F:      arch/powerpc/platforms/8xx/
9556
9557 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
9558 L:      linuxppc-dev@lists.ozlabs.org
9559 S:      Orphan
9560 F:      arch/powerpc/*/*virtex*
9561 F:      arch/powerpc/*/*/*virtex*
9562
9563 LINUX FOR POWERPC PA SEMI PWRFICIENT
9564 L:      linuxppc-dev@lists.ozlabs.org
9565 S:      Orphan
9566 F:      arch/powerpc/platforms/pasemi/
9567 F:      drivers/*/*pasemi*
9568 F:      drivers/*/*/*pasemi*
9569
9570 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9571 M:      Kees Cook <keescook@chromium.org>
9572 S:      Maintained
9573 F:      drivers/misc/lkdtm/*
9574
9575 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9576 M:      Alan Stern <stern@rowland.harvard.edu>
9577 M:      Andrea Parri <parri.andrea@gmail.com>
9578 M:      Will Deacon <will@kernel.org>
9579 M:      Peter Zijlstra <peterz@infradead.org>
9580 M:      Boqun Feng <boqun.feng@gmail.com>
9581 M:      Nicholas Piggin <npiggin@gmail.com>
9582 M:      David Howells <dhowells@redhat.com>
9583 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9584 M:      Luc Maranget <luc.maranget@inria.fr>
9585 M:      "Paul E. McKenney" <paulmck@kernel.org>
9586 R:      Akira Yokosawa <akiyks@gmail.com>
9587 R:      Daniel Lustig <dlustig@nvidia.com>
9588 L:      linux-kernel@vger.kernel.org
9589 L:      linux-arch@vger.kernel.org
9590 S:      Supported
9591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9592 F:      tools/memory-model/
9593 F:      Documentation/atomic_bitops.txt
9594 F:      Documentation/atomic_t.txt
9595 F:      Documentation/core-api/atomic_ops.rst
9596 F:      Documentation/core-api/refcount-vs-atomic.rst
9597 F:      Documentation/memory-barriers.txt
9598
9599 LIS3LV02D ACCELEROMETER DRIVER
9600 M:      Eric Piel <eric.piel@tremplin-utc.net>
9601 S:      Maintained
9602 F:      Documentation/misc-devices/lis3lv02d.rst
9603 F:      drivers/misc/lis3lv02d/
9604 F:      drivers/platform/x86/hp_accel.c
9605
9606 LIST KUNIT TEST
9607 M:      David Gow <davidgow@google.com>
9608 L:      linux-kselftest@vger.kernel.org
9609 L:      kunit-dev@googlegroups.com
9610 S:      Maintained
9611 F:      lib/list-test.c
9612
9613 LIVE PATCHING
9614 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9615 M:      Jiri Kosina <jikos@kernel.org>
9616 M:      Miroslav Benes <mbenes@suse.cz>
9617 M:      Petr Mladek <pmladek@suse.com>
9618 R:      Joe Lawrence <joe.lawrence@redhat.com>
9619 S:      Maintained
9620 F:      kernel/livepatch/
9621 F:      include/linux/livepatch.h
9622 F:      arch/x86/include/asm/livepatch.h
9623 F:      arch/x86/kernel/livepatch.c
9624 F:      Documentation/livepatch/
9625 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9626 F:      samples/livepatch/
9627 F:      tools/testing/selftests/livepatch/
9628 L:      live-patching@vger.kernel.org
9629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9630
9631 LLC (802.2)
9632 L:      netdev@vger.kernel.org
9633 S:      Odd fixes
9634 F:      include/linux/llc.h
9635 F:      include/uapi/linux/llc.h
9636 F:      include/net/llc*
9637 F:      net/llc/
9638
9639 LM73 HARDWARE MONITOR DRIVER
9640 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
9641 L:      linux-hwmon@vger.kernel.org
9642 S:      Maintained
9643 F:      drivers/hwmon/lm73.c
9644
9645 LM78 HARDWARE MONITOR DRIVER
9646 M:      Jean Delvare <jdelvare@suse.com>
9647 L:      linux-hwmon@vger.kernel.org
9648 S:      Maintained
9649 F:      Documentation/hwmon/lm78.rst
9650 F:      drivers/hwmon/lm78.c
9651
9652 LM83 HARDWARE MONITOR DRIVER
9653 M:      Jean Delvare <jdelvare@suse.com>
9654 L:      linux-hwmon@vger.kernel.org
9655 S:      Maintained
9656 F:      Documentation/hwmon/lm83.rst
9657 F:      drivers/hwmon/lm83.c
9658
9659 LM90 HARDWARE MONITOR DRIVER
9660 M:      Jean Delvare <jdelvare@suse.com>
9661 L:      linux-hwmon@vger.kernel.org
9662 S:      Maintained
9663 F:      Documentation/hwmon/lm90.rst
9664 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9665 F:      drivers/hwmon/lm90.c
9666 F:      include/dt-bindings/thermal/lm90.h
9667
9668 LM95234 HARDWARE MONITOR DRIVER
9669 M:      Guenter Roeck <linux@roeck-us.net>
9670 L:      linux-hwmon@vger.kernel.org
9671 S:      Maintained
9672 F:      Documentation/hwmon/lm95234.rst
9673 F:      drivers/hwmon/lm95234.c
9674
9675 LME2510 MEDIA DRIVER
9676 M:      Malcolm Priestley <tvboxspy@gmail.com>
9677 L:      linux-media@vger.kernel.org
9678 W:      https://linuxtv.org
9679 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9680 S:      Maintained
9681 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9682
9683 LOADPIN SECURITY MODULE
9684 M:      Kees Cook <keescook@chromium.org>
9685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9686 S:      Supported
9687 F:      security/loadpin/
9688 F:      Documentation/admin-guide/LSM/LoadPin.rst
9689
9690 LOCKING PRIMITIVES
9691 M:      Peter Zijlstra <peterz@infradead.org>
9692 M:      Ingo Molnar <mingo@redhat.com>
9693 M:      Will Deacon <will@kernel.org>
9694 L:      linux-kernel@vger.kernel.org
9695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9696 S:      Maintained
9697 F:      Documentation/locking/
9698 F:      include/linux/lockdep.h
9699 F:      include/linux/spinlock*.h
9700 F:      arch/*/include/asm/spinlock*.h
9701 F:      include/linux/rwlock*.h
9702 F:      include/linux/mutex*.h
9703 F:      include/linux/rwsem*.h
9704 F:      include/linux/seqlock.h
9705 F:      lib/locking*.[ch]
9706 F:      kernel/locking/
9707 X:      kernel/locking/locktorture.c
9708
9709 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9710 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
9711 L:      linux-ntfs-dev@lists.sourceforge.net
9712 W:      http://www.linux-ntfs.org/content/view/19/37/
9713 S:      Maintained
9714 F:      Documentation/admin-guide/ldm.rst
9715 F:      block/partitions/ldm.*
9716
9717 LOGITECH HID GAMING KEYBOARDS
9718 M:      Hans de Goede <hdegoede@redhat.com>
9719 L:      linux-input@vger.kernel.org
9720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9721 S:      Maintained
9722 F:      drivers/hid/hid-lg-g15.c
9723
9724 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9725 M:      Sathya Prakash <sathya.prakash@broadcom.com>
9726 M:      Chaitra P B <chaitra.basappa@broadcom.com>
9727 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
9728 L:      MPT-FusionLinux.pdl@broadcom.com
9729 L:      linux-scsi@vger.kernel.org
9730 W:      http://www.avagotech.com/support/
9731 S:      Supported
9732 F:      drivers/message/fusion/
9733 F:      drivers/scsi/mpt3sas/
9734
9735 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9736 M:      Matthew Wilcox <willy@infradead.org>
9737 L:      linux-scsi@vger.kernel.org
9738 S:      Maintained
9739 F:      drivers/scsi/sym53c8xx_2/
9740
9741 LTC1660 DAC DRIVER
9742 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9743 L:      linux-iio@vger.kernel.org
9744 S:      Maintained
9745 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
9746 F:      drivers/iio/dac/ltc1660.c
9747
9748 LTC2983 IIO TEMPERATURE DRIVER
9749 M:      Nuno Sá <nuno.sa@analog.com>
9750 W:      http://ez.analog.com/community/linux-device-drivers
9751 L:      linux-iio@vger.kernel.org
9752 S:      Supported
9753 F:      drivers/iio/temperature/ltc2983.c
9754 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
9755
9756 LTC4261 HARDWARE MONITOR DRIVER
9757 M:      Guenter Roeck <linux@roeck-us.net>
9758 L:      linux-hwmon@vger.kernel.org
9759 S:      Maintained
9760 F:      Documentation/hwmon/ltc4261.rst
9761 F:      drivers/hwmon/ltc4261.c
9762
9763 LTC2947 HARDWARE MONITOR DRIVER
9764 M:      Nuno Sá <nuno.sa@analog.com>
9765 W:      http://ez.analog.com/community/linux-device-drivers
9766 L:      linux-hwmon@vger.kernel.org
9767 S:      Supported
9768 F:      drivers/hwmon/ltc2947-core.c
9769 F:      drivers/hwmon/ltc2947-spi.c
9770 F:      drivers/hwmon/ltc2947-i2c.c
9771 F:      drivers/hwmon/ltc2947.h
9772 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
9773
9774 LTC4306 I2C MULTIPLEXER DRIVER
9775 M:      Michael Hennerich <michael.hennerich@analog.com>
9776 W:      http://ez.analog.com/community/linux-device-drivers
9777 L:      linux-i2c@vger.kernel.org
9778 S:      Supported
9779 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9780 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9781
9782 LTP (Linux Test Project)
9783 M:      Mike Frysinger <vapier@gentoo.org>
9784 M:      Cyril Hrubis <chrubis@suse.cz>
9785 M:      Wanlong Gao <wanlong.gao@gmail.com>
9786 M:      Jan Stancek <jstancek@redhat.com>
9787 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
9788 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
9789 L:      ltp@lists.linux.it (subscribers-only)
9790 W:      http://linux-test-project.github.io/
9791 T:      git git://github.com/linux-test-project/ltp.git
9792 S:      Maintained
9793
9794 M68K ARCHITECTURE
9795 M:      Geert Uytterhoeven <geert@linux-m68k.org>
9796 L:      linux-m68k@lists.linux-m68k.org
9797 W:      http://www.linux-m68k.org/
9798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9799 S:      Maintained
9800 F:      arch/m68k/
9801 F:      drivers/zorro/
9802
9803 M68K ON APPLE MACINTOSH
9804 M:      Joshua Thompson <funaho@jurai.org>
9805 W:      http://www.mac.linux-m68k.org/
9806 L:      linux-m68k@lists.linux-m68k.org
9807 S:      Maintained
9808 F:      arch/m68k/mac/
9809
9810 M68K ON HP9000/300
9811 M:      Philip Blundell <philb@gnu.org>
9812 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
9813 S:      Maintained
9814 F:      arch/m68k/hp300/
9815
9816 M88DS3103 MEDIA DRIVER
9817 M:      Antti Palosaari <crope@iki.fi>
9818 L:      linux-media@vger.kernel.org
9819 W:      https://linuxtv.org
9820 W:      http://palosaari.fi/linux/
9821 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9822 T:      git git://linuxtv.org/anttip/media_tree.git
9823 S:      Maintained
9824 F:      drivers/media/dvb-frontends/m88ds3103*
9825
9826 M88RS2000 MEDIA DRIVER
9827 M:      Malcolm Priestley <tvboxspy@gmail.com>
9828 L:      linux-media@vger.kernel.org
9829 W:      https://linuxtv.org
9830 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9831 S:      Maintained
9832 F:      drivers/media/dvb-frontends/m88rs2000*
9833
9834 MA901 MASTERKIT USB FM RADIO DRIVER
9835 M:      Alexey Klimov <klimov.linux@gmail.com>
9836 L:      linux-media@vger.kernel.org
9837 T:      git git://linuxtv.org/media_tree.git
9838 S:      Maintained
9839 F:      drivers/media/radio/radio-ma901.c
9840
9841 MAC80211
9842 M:      Johannes Berg <johannes@sipsolutions.net>
9843 L:      linux-wireless@vger.kernel.org
9844 W:      http://wireless.kernel.org/
9845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9847 S:      Maintained
9848 F:      Documentation/networking/mac80211-injection.txt
9849 F:      include/net/mac80211.h
9850 F:      net/mac80211/
9851 F:      drivers/net/wireless/mac80211_hwsim.[ch]
9852 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
9853
9854 MAILBOX API
9855 M:      Jassi Brar <jassisinghbrar@gmail.com>
9856 L:      linux-kernel@vger.kernel.org
9857 S:      Maintained
9858 F:      drivers/mailbox/
9859 F:      include/linux/mailbox_client.h
9860 F:      include/linux/mailbox_controller.h
9861
9862 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
9863 M:      Michael Kerrisk <mtk.manpages@gmail.com>
9864 W:      http://www.kernel.org/doc/man-pages
9865 L:      linux-man@vger.kernel.org
9866 S:      Maintained
9867
9868 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
9869 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
9870 L:      linux-mips@vger.kernel.org
9871 S:      Maintained
9872 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
9873
9874 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
9875 M:      Andrew Lunn <andrew@lunn.ch>
9876 M:      Vivien Didelot <vivien.didelot@gmail.com>
9877 L:      netdev@vger.kernel.org
9878 S:      Maintained
9879 F:      drivers/net/dsa/mv88e6xxx/
9880 F:      include/linux/platform_data/mv88e6xxx.h
9881 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
9882 F:      Documentation/networking/devlink-params-mv88e6xxx.txt
9883
9884 MARVELL ARMADA DRM SUPPORT
9885 M:      Russell King <linux@armlinux.org.uk>
9886 S:      Maintained
9887 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
9888 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
9889 F:      drivers/gpu/drm/armada/
9890 F:      include/uapi/drm/armada_drm.h
9891 F:      Documentation/devicetree/bindings/display/armada/
9892
9893 MARVELL ARMADA 3700 PHY DRIVERS
9894 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9895 S:      Maintained
9896 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
9897 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
9898 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
9899 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
9900
9901 MARVELL CRYPTO DRIVER
9902 M:      Boris Brezillon <bbrezillon@kernel.org>
9903 M:      Arnaud Ebalard <arno@natisbad.org>
9904 F:      drivers/crypto/marvell/
9905 S:      Maintained
9906 L:      linux-crypto@vger.kernel.org
9907
9908 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
9909 M:      Mirko Lindner <mlindner@marvell.com>
9910 M:      Stephen Hemminger <stephen@networkplumber.org>
9911 L:      netdev@vger.kernel.org
9912 S:      Maintained
9913 F:      drivers/net/ethernet/marvell/sk*
9914
9915 MARVELL LIBERTAS WIRELESS DRIVER
9916 L:      libertas-dev@lists.infradead.org
9917 S:      Orphan
9918 F:      drivers/net/wireless/marvell/libertas/
9919
9920 MARVELL MACCHIATOBIN SUPPORT
9921 M:      Russell King <linux@armlinux.org.uk>
9922 L:      linux-arm-kernel@lists.infradead.org
9923 S:      Maintained
9924 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
9925
9926 MARVELL MV643XX ETHERNET DRIVER
9927 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
9928 L:      netdev@vger.kernel.org
9929 S:      Maintained
9930 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
9931 F:      include/linux/mv643xx.h
9932
9933 MARVELL MV88X3310 PHY DRIVER
9934 M:      Russell King <linux@armlinux.org.uk>
9935 L:      netdev@vger.kernel.org
9936 S:      Maintained
9937 F:      drivers/net/phy/marvell10g.c
9938
9939 MARVELL MVEBU THERMAL DRIVER
9940 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9941 S:      Maintained
9942 F:      drivers/thermal/armada_thermal.c
9943
9944 MARVELL MVNETA ETHERNET DRIVER
9945 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
9946 L:      netdev@vger.kernel.org
9947 S:      Maintained
9948 F:      drivers/net/ethernet/marvell/mvneta.*
9949
9950 MARVELL MWIFIEX WIRELESS DRIVER
9951 M:      Amitkumar Karwar <amitkarwar@gmail.com>
9952 M:      Nishant Sarmukadam <nishants@marvell.com>
9953 M:      Ganapathi Bhat <gbhat@marvell.com>
9954 M:      Xinming Hu <huxinming820@gmail.com>
9955 L:      linux-wireless@vger.kernel.org
9956 S:      Maintained
9957 F:      drivers/net/wireless/marvell/mwifiex/
9958
9959 MARVELL MWL8K WIRELESS DRIVER
9960 M:      Lennert Buytenhek <buytenh@wantstofly.org>
9961 L:      linux-wireless@vger.kernel.org
9962 S:      Odd Fixes
9963 F:      drivers/net/wireless/marvell/mwl8k.c
9964
9965 MARVELL NAND CONTROLLER DRIVER
9966 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9967 L:      linux-mtd@lists.infradead.org
9968 S:      Maintained
9969 F:      drivers/mtd/nand/raw/marvell_nand.c
9970 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
9971
9972 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
9973 M:      Nicolas Pitre <nico@fluxnic.net>
9974 S:      Odd Fixes
9975 F:      drivers/mmc/host/mvsdio.*
9976
9977 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
9978 M:      Hu Ziji <huziji@marvell.com>
9979 L:      linux-mmc@vger.kernel.org
9980 S:      Supported
9981 F:      drivers/mmc/host/sdhci-xenon*
9982 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
9983
9984 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
9985 M:      Sunil Goutham <sgoutham@marvell.com>
9986 M:      Linu Cherian <lcherian@marvell.com>
9987 M:      Geetha sowjanya <gakula@marvell.com>
9988 M:      Jerin Jacob <jerinj@marvell.com>
9989 L:      netdev@vger.kernel.org
9990 S:      Supported
9991 F:      drivers/net/ethernet/marvell/octeontx2/af/
9992
9993 MATROX FRAMEBUFFER DRIVER
9994 L:      linux-fbdev@vger.kernel.org
9995 S:      Orphan
9996 F:      drivers/video/fbdev/matrox/matroxfb_*
9997 F:      include/uapi/linux/matroxfb.h
9998
9999 MAX16065 HARDWARE MONITOR DRIVER
10000 M:      Guenter Roeck <linux@roeck-us.net>
10001 L:      linux-hwmon@vger.kernel.org
10002 S:      Maintained
10003 F:      Documentation/hwmon/max16065.rst
10004 F:      drivers/hwmon/max16065.c
10005
10006 MAX2175 SDR TUNER DRIVER
10007 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10008 L:      linux-media@vger.kernel.org
10009 T:      git git://linuxtv.org/media_tree.git
10010 S:      Maintained
10011 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10012 F:      Documentation/media/v4l-drivers/max2175.rst
10013 F:      drivers/media/i2c/max2175*
10014 F:      include/uapi/linux/max2175.h
10015
10016 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10017 L:      linux-hwmon@vger.kernel.org
10018 S:      Orphan
10019 F:      Documentation/hwmon/max6650.rst
10020 F:      drivers/hwmon/max6650.c
10021
10022 MAX6697 HARDWARE MONITOR DRIVER
10023 M:      Guenter Roeck <linux@roeck-us.net>
10024 L:      linux-hwmon@vger.kernel.org
10025 S:      Maintained
10026 F:      Documentation/hwmon/max6697.rst
10027 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10028 F:      drivers/hwmon/max6697.c
10029 F:      include/linux/platform_data/max6697.h
10030
10031 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10032 M:      Peter Rosin <peda@axentia.se>
10033 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10034 S:      Maintained
10035 F:      Documentation/devicetree/bindings/sound/max9860.txt
10036 F:      sound/soc/codecs/max9860.*
10037
10038 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10039 M:      Andreas Klinger <ak@it-klinger.de>
10040 L:      linux-iio@vger.kernel.org
10041 S:      Maintained
10042 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.txt
10043 F:      drivers/iio/proximity/mb1232.c
10044
10045 MAXIM MAX77650 PMIC MFD DRIVER
10046 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10047 L:      linux-kernel@vger.kernel.org
10048 S:      Maintained
10049 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10050 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10051 F:      include/linux/mfd/max77650.h
10052 F:      drivers/mfd/max77650.c
10053 F:      drivers/regulator/max77650-regulator.c
10054 F:      drivers/power/supply/max77650-charger.c
10055 F:      drivers/input/misc/max77650-onkey.c
10056 F:      drivers/leds/leds-max77650.c
10057 F:      drivers/gpio/gpio-max77650.c
10058
10059 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10060 M:      Javier Martinez Canillas <javier@dowhile0.org>
10061 L:      linux-kernel@vger.kernel.org
10062 S:      Supported
10063 F:      drivers/regulator/max77802-regulator.c
10064 F:      Documentation/devicetree/bindings/*/*max77802.txt
10065 F:      include/dt-bindings/*/*max77802.h
10066
10067 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10068 M:      Krzysztof Kozlowski <krzk@kernel.org>
10069 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10070 L:      linux-pm@vger.kernel.org
10071 S:      Supported
10072 F:      drivers/power/supply/max14577_charger.c
10073 F:      drivers/power/supply/max77693_charger.c
10074
10075 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10076 M:      Chanwoo Choi <cw00.choi@samsung.com>
10077 M:      Krzysztof Kozlowski <krzk@kernel.org>
10078 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10079 L:      linux-kernel@vger.kernel.org
10080 S:      Supported
10081 F:      drivers/*/max14577*.c
10082 F:      drivers/*/max77686*.c
10083 F:      drivers/*/max77693*.c
10084 F:      drivers/extcon/extcon-max14577.c
10085 F:      drivers/extcon/extcon-max77693.c
10086 F:      drivers/rtc/rtc-max77686.c
10087 F:      drivers/clk/clk-max77686.c
10088 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10089 F:      Documentation/devicetree/bindings/*/max77686.txt
10090 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10091 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10092 F:      include/linux/mfd/max14577*.h
10093 F:      include/linux/mfd/max77686*.h
10094 F:      include/linux/mfd/max77693*.h
10095
10096 MAXIRADIO FM RADIO RECEIVER DRIVER
10097 M:      Hans Verkuil <hverkuil@xs4all.nl>
10098 L:      linux-media@vger.kernel.org
10099 T:      git git://linuxtv.org/media_tree.git
10100 W:      https://linuxtv.org
10101 S:      Maintained
10102 F:      drivers/media/radio/radio-maxiradio*
10103
10104 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10105 M:      Peter Rosin <peda@axentia.se>
10106 L:      linux-iio@vger.kernel.org
10107 S:      Maintained
10108 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10109 F:      drivers/iio/potentiometer/mcp4018.c
10110 F:      drivers/iio/potentiometer/mcp4531.c
10111
10112 MCR20A IEEE-802.15.4 RADIO DRIVER
10113 M:      Xue Liu <liuxuenetmail@gmail.com>
10114 L:      linux-wpan@vger.kernel.org
10115 W:      https://github.com/xueliu/mcr20a-linux
10116 S:      Maintained
10117 F:      drivers/net/ieee802154/mcr20a.c
10118 F:      drivers/net/ieee802154/mcr20a.h
10119 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10120
10121 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10122 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10123 L:      linux-iio@vger.kernel.org
10124 S:      Maintained
10125 F:      drivers/iio/dac/cio-dac.c
10126
10127 MEDIA CONTROLLER FRAMEWORK
10128 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10129 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10130 L:      linux-media@vger.kernel.org
10131 W:      https://www.linuxtv.org
10132 T:      git git://linuxtv.org/media_tree.git
10133 S:      Supported
10134 F:      drivers/media/mc/
10135 F:      include/media/media-*.h
10136 F:      include/uapi/linux/media.h
10137
10138 MEDIA DRIVERS FOR ASCOT2E
10139 M:      Sergey Kozlov <serjk@netup.ru>
10140 M:      Abylay Ospan <aospan@netup.ru>
10141 L:      linux-media@vger.kernel.org
10142 W:      https://linuxtv.org
10143 W:      http://netup.tv/
10144 T:      git git://linuxtv.org/media_tree.git
10145 S:      Supported
10146 F:      drivers/media/dvb-frontends/ascot2e*
10147
10148 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10149 M:      Jasmin Jessich <jasmin@anw.at>
10150 L:      linux-media@vger.kernel.org
10151 W:      https://linuxtv.org
10152 T:      git git://linuxtv.org/media_tree.git
10153 S:      Maintained
10154 F:      drivers/media/dvb-frontends/cxd2099*
10155
10156 MEDIA DRIVERS FOR CXD2841ER
10157 M:      Sergey Kozlov <serjk@netup.ru>
10158 M:      Abylay Ospan <aospan@netup.ru>
10159 L:      linux-media@vger.kernel.org
10160 W:      https://linuxtv.org
10161 W:      http://netup.tv/
10162 T:      git git://linuxtv.org/media_tree.git
10163 S:      Supported
10164 F:      drivers/media/dvb-frontends/cxd2841er*
10165
10166 MEDIA DRIVERS FOR CXD2880
10167 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10168 L:      linux-media@vger.kernel.org
10169 W:      http://linuxtv.org/
10170 T:      git git://linuxtv.org/media_tree.git
10171 S:      Supported
10172 F:      drivers/media/dvb-frontends/cxd2880/*
10173 F:      drivers/media/spi/cxd2880*
10174
10175 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10176 L:      linux-media@vger.kernel.org
10177 W:      https://linuxtv.org
10178 T:      git git://linuxtv.org/media_tree.git
10179 S:      Orphan
10180 F:      drivers/media/pci/ddbridge/*
10181
10182 MEDIA DRIVERS FOR FREESCALE IMX
10183 M:      Steve Longerbeam <slongerbeam@gmail.com>
10184 M:      Philipp Zabel <p.zabel@pengutronix.de>
10185 L:      linux-media@vger.kernel.org
10186 T:      git git://linuxtv.org/media_tree.git
10187 S:      Maintained
10188 F:      Documentation/devicetree/bindings/media/imx.txt
10189 F:      Documentation/media/v4l-drivers/imx.rst
10190 F:      drivers/staging/media/imx/
10191 F:      include/linux/imx-media.h
10192 F:      include/media/imx.h
10193
10194 MEDIA DRIVER FOR FREESCALE IMX PXP
10195 M:      Philipp Zabel <p.zabel@pengutronix.de>
10196 L:      linux-media@vger.kernel.org
10197 T:      git git://linuxtv.org/media_tree.git
10198 S:      Maintained
10199 F:      drivers/media/platform/imx-pxp.[ch]
10200
10201 MEDIA DRIVERS FOR FREESCALE IMX7
10202 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10203 L:      linux-media@vger.kernel.org
10204 T:      git git://linuxtv.org/media_tree.git
10205 S:      Maintained
10206 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10207 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10208 F:      Documentation/media/v4l-drivers/imx7.rst
10209 F:      drivers/staging/media/imx/imx7-media-csi.c
10210 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10211
10212 MEDIA DRIVERS FOR HELENE
10213 M:      Abylay Ospan <aospan@netup.ru>
10214 L:      linux-media@vger.kernel.org
10215 W:      https://linuxtv.org
10216 W:      http://netup.tv/
10217 T:      git git://linuxtv.org/media_tree.git
10218 S:      Supported
10219 F:      drivers/media/dvb-frontends/helene*
10220
10221 MEDIA DRIVERS FOR HORUS3A
10222 M:      Sergey Kozlov <serjk@netup.ru>
10223 M:      Abylay Ospan <aospan@netup.ru>
10224 L:      linux-media@vger.kernel.org
10225 W:      https://linuxtv.org
10226 W:      http://netup.tv/
10227 T:      git git://linuxtv.org/media_tree.git
10228 S:      Supported
10229 F:      drivers/media/dvb-frontends/horus3a*
10230
10231 MEDIA DRIVERS FOR LNBH25
10232 M:      Sergey Kozlov <serjk@netup.ru>
10233 M:      Abylay Ospan <aospan@netup.ru>
10234 L:      linux-media@vger.kernel.org
10235 W:      https://linuxtv.org
10236 W:      http://netup.tv/
10237 T:      git git://linuxtv.org/media_tree.git
10238 S:      Supported
10239 F:      drivers/media/dvb-frontends/lnbh25*
10240
10241 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10242 L:      linux-media@vger.kernel.org
10243 W:      https://linuxtv.org
10244 T:      git git://linuxtv.org/media_tree.git
10245 S:      Orphan
10246 F:      drivers/media/dvb-frontends/mxl5xx*
10247
10248 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10249 M:      Sergey Kozlov <serjk@netup.ru>
10250 M:      Abylay Ospan <aospan@netup.ru>
10251 L:      linux-media@vger.kernel.org
10252 W:      https://linuxtv.org
10253 W:      http://netup.tv/
10254 T:      git git://linuxtv.org/media_tree.git
10255 S:      Supported
10256 F:      drivers/media/pci/netup_unidvb/*
10257
10258 MEDIA DRIVERS FOR RENESAS - CEU
10259 M:      Jacopo Mondi <jacopo@jmondi.org>
10260 L:      linux-media@vger.kernel.org
10261 L:      linux-renesas-soc@vger.kernel.org
10262 T:      git git://linuxtv.org/media_tree.git
10263 S:      Supported
10264 F:      Documentation/devicetree/bindings/media/renesas,ceu.txt
10265 F:      drivers/media/platform/renesas-ceu.c
10266 F:      include/media/drv-intf/renesas-ceu.h
10267
10268 MEDIA DRIVERS FOR RENESAS - DRIF
10269 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10270 L:      linux-media@vger.kernel.org
10271 L:      linux-renesas-soc@vger.kernel.org
10272 T:      git git://linuxtv.org/media_tree.git
10273 S:      Supported
10274 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10275 F:      drivers/media/platform/rcar_drif.c
10276
10277 MEDIA DRIVERS FOR RENESAS - FCP
10278 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10279 L:      linux-media@vger.kernel.org
10280 L:      linux-renesas-soc@vger.kernel.org
10281 T:      git git://linuxtv.org/media_tree.git
10282 S:      Supported
10283 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10284 F:      drivers/media/platform/rcar-fcp.c
10285 F:      include/media/rcar-fcp.h
10286
10287 MEDIA DRIVERS FOR RENESAS - FDP1
10288 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10289 L:      linux-media@vger.kernel.org
10290 L:      linux-renesas-soc@vger.kernel.org
10291 T:      git git://linuxtv.org/media_tree.git
10292 S:      Supported
10293 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10294 F:      drivers/media/platform/rcar_fdp1.c
10295
10296 MEDIA DRIVERS FOR RENESAS - VIN
10297 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10298 L:      linux-media@vger.kernel.org
10299 L:      linux-renesas-soc@vger.kernel.org
10300 T:      git git://linuxtv.org/media_tree.git
10301 S:      Supported
10302 F:      Documentation/devicetree/bindings/media/renesas,csi2.txt
10303 F:      Documentation/devicetree/bindings/media/renesas,vin.txt
10304 F:      drivers/media/platform/rcar-vin/
10305
10306 MEDIA DRIVERS FOR RENESAS - VSP1
10307 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10308 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10309 L:      linux-media@vger.kernel.org
10310 L:      linux-renesas-soc@vger.kernel.org
10311 T:      git git://linuxtv.org/media_tree.git
10312 S:      Supported
10313 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10314 F:      drivers/media/platform/vsp1/
10315
10316 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10317 L:      linux-media@vger.kernel.org
10318 W:      https://linuxtv.org
10319 T:      git git://linuxtv.org/media_tree.git
10320 S:      Orphan
10321 F:      drivers/media/dvb-frontends/stv0910*
10322
10323 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10324 L:      linux-media@vger.kernel.org
10325 W:      https://linuxtv.org
10326 T:      git git://linuxtv.org/media_tree.git
10327 S:      Orphan
10328 F:      drivers/media/dvb-frontends/stv6111*
10329
10330 MEDIA DRIVERS FOR STM32 - DCMI
10331 M:      Hugues Fruchet <hugues.fruchet@st.com>
10332 L:      linux-media@vger.kernel.org
10333 T:      git git://linuxtv.org/media_tree.git
10334 S:      Supported
10335 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.txt
10336 F:      drivers/media/platform/stm32/stm32-dcmi.c
10337
10338 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10339 M:      Dmitry Osipenko <digetx@gmail.com>
10340 L:      linux-media@vger.kernel.org
10341 L:      linux-tegra@vger.kernel.org
10342 T:      git git://linuxtv.org/media_tree.git
10343 S:      Maintained
10344 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10345 F:      drivers/staging/media/tegra-vde/
10346
10347 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10348 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10349 L:      linux-media@vger.kernel.org
10350 W:      https://linuxtv.org
10351 Q:      http://patchwork.kernel.org/project/linux-media/list/
10352 T:      git git://linuxtv.org/media_tree.git
10353 S:      Maintained
10354 F:      Documentation/devicetree/bindings/media/
10355 F:      Documentation/media/
10356 F:      drivers/media/
10357 F:      drivers/staging/media/
10358 F:      include/linux/platform_data/media/
10359 F:      include/media/
10360 F:      include/uapi/linux/dvb/
10361 F:      include/uapi/linux/videodev2.h
10362 F:      include/uapi/linux/media.h
10363 F:      include/uapi/linux/v4l2-*
10364 F:      include/uapi/linux/meye.h
10365 F:      include/uapi/linux/ivtv*
10366 F:      include/uapi/linux/uvcvideo.h
10367
10368 MEDIATEK BLUETOOTH DRIVER
10369 M:      Sean Wang <sean.wang@mediatek.com>
10370 L:      linux-bluetooth@vger.kernel.org
10371 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10372 S:      Maintained
10373 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10374 F:      drivers/bluetooth/btmtkuart.c
10375
10376 MEDIATEK CIR DRIVER
10377 M:      Sean Wang <sean.wang@mediatek.com>
10378 S:      Maintained
10379 F:      drivers/media/rc/mtk-cir.c
10380
10381 MEDIATEK DMA DRIVER
10382 M:      Sean Wang <sean.wang@mediatek.com>
10383 L:      dmaengine@vger.kernel.org
10384 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10385 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10386 S:      Maintained
10387 F:      Documentation/devicetree/bindings/dma/mtk-*
10388 F:      drivers/dma/mediatek/
10389
10390 MEDIATEK PMIC LED DRIVER
10391 M:      Sean Wang <sean.wang@mediatek.com>
10392 S:      Maintained
10393 F:      drivers/leds/leds-mt6323.c
10394 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10395
10396 MEDIATEK ETHERNET DRIVER
10397 M:      Felix Fietkau <nbd@openwrt.org>
10398 M:      John Crispin <john@phrozen.org>
10399 M:      Sean Wang <sean.wang@mediatek.com>
10400 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10401 L:      netdev@vger.kernel.org
10402 S:      Maintained
10403 F:      drivers/net/ethernet/mediatek/
10404
10405 MEDIATEK SWITCH DRIVER
10406 M:      Sean Wang <sean.wang@mediatek.com>
10407 L:      netdev@vger.kernel.org
10408 S:      Maintained
10409 F:      drivers/net/dsa/mt7530.*
10410 F:      net/dsa/tag_mtk.c
10411
10412 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10413 M:      Sean Wang <sean.wang@mediatek.com>
10414 L:      linux-pm@vger.kernel.org
10415 S:      Maintained
10416 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10417 F:      drivers/power/reset/mt6323-poweroff.c
10418
10419 MEDIATEK JPEG DRIVER
10420 M:      Rick Chang <rick.chang@mediatek.com>
10421 M:      Bin Liu <bin.liu@mediatek.com>
10422 S:      Supported
10423 F:      drivers/media/platform/mtk-jpeg/
10424 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10425
10426 MEDIATEK MDP DRIVER
10427 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10428 M:      Houlong Wei <houlong.wei@mediatek.com>
10429 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10430 S:      Supported
10431 F:      drivers/media/platform/mtk-mdp/
10432 F:      drivers/media/platform/mtk-vpu/
10433 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10434
10435 MEDIATEK MEDIA DRIVER
10436 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10437 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10438 S:      Supported
10439 F:      drivers/media/platform/mtk-vcodec/
10440 F:      drivers/media/platform/mtk-vpu/
10441 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10442 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10443
10444 MEDIATEK MMC/SD/SDIO DRIVER
10445 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10446 S:      Maintained
10447 F:      drivers/mmc/host/mtk-sd.c
10448 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10449
10450 MEDIATEK MT76 WIRELESS LAN DRIVER
10451 M:      Felix Fietkau <nbd@nbd.name>
10452 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10453 R:      Ryder Lee <ryder.lee@mediatek.com>
10454 R:      Roy Luo <royluo@google.com>
10455 L:      linux-wireless@vger.kernel.org
10456 S:      Maintained
10457 F:      drivers/net/wireless/mediatek/mt76/
10458
10459 MEDIATEK MT7601U WIRELESS LAN DRIVER
10460 M:      Jakub Kicinski <kubakici@wp.pl>
10461 L:      linux-wireless@vger.kernel.org
10462 S:      Maintained
10463 F:      drivers/net/wireless/mediatek/mt7601u/
10464
10465 MEDIATEK MT7621/28/88 I2C DRIVER
10466 M:      Stefan Roese <sr@denx.de>
10467 L:      linux-i2c@vger.kernel.org
10468 S:      Maintained
10469 F:      drivers/i2c/busses/i2c-mt7621.c
10470 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10471
10472 MEDIATEK NAND CONTROLLER DRIVER
10473 M:      Xiaolei Li <xiaolei.li@mediatek.com>
10474 L:      linux-mtd@lists.infradead.org
10475 S:      Maintained
10476 F:      drivers/mtd/nand/raw/mtk_*
10477 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10478
10479 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10480 M:      Sean Wang <sean.wang@mediatek.com>
10481 S:      Maintained
10482 F:      drivers/char/hw_random/mtk-rng.c
10483
10484 MEDIATEK USB3 DRD IP DRIVER
10485 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10486 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10488 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10489 S:      Maintained
10490 F:      drivers/usb/mtu3/
10491
10492 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10493 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10494 M:      Martin Donnelly <martin.donnelly@ge.com>
10495 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10496 S:      Maintained
10497 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10498 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10499
10500 MEGARAID SCSI/SAS DRIVERS
10501 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10502 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10503 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10504 L:      megaraidlinux.pdl@broadcom.com
10505 L:      linux-scsi@vger.kernel.org
10506 W:      http://www.avagotech.com/support/
10507 S:      Maintained
10508 F:      Documentation/scsi/megaraid.txt
10509 F:      drivers/scsi/megaraid.*
10510 F:      drivers/scsi/megaraid/
10511
10512 MELEXIS MLX90614 DRIVER
10513 M:      Crt Mori <cmo@melexis.com>
10514 L:      linux-iio@vger.kernel.org
10515 W:      http://www.melexis.com
10516 S:      Supported
10517 F:      drivers/iio/temperature/mlx90614.c
10518
10519 MELEXIS MLX90632 DRIVER
10520 M:      Crt Mori <cmo@melexis.com>
10521 L:      linux-iio@vger.kernel.org
10522 W:      http://www.melexis.com
10523 S:      Supported
10524 F:      drivers/iio/temperature/mlx90632.c
10525
10526 MELFAS MIP4 TOUCHSCREEN DRIVER
10527 M:      Sangwon Jee <jeesw@melfas.com>
10528 W:      http://www.melfas.com
10529 S:      Supported
10530 F:      drivers/input/touchscreen/melfas_mip4.c
10531 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10532
10533 MELLANOX ETHERNET DRIVER (mlx4_en)
10534 M:      Tariq Toukan <tariqt@mellanox.com>
10535 L:      netdev@vger.kernel.org
10536 S:      Supported
10537 W:      http://www.mellanox.com
10538 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10539 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10540
10541 MELLANOX ETHERNET DRIVER (mlx5e)
10542 M:      Saeed Mahameed <saeedm@mellanox.com>
10543 L:      netdev@vger.kernel.org
10544 S:      Supported
10545 W:      http://www.mellanox.com
10546 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10547 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10548
10549 MELLANOX ETHERNET INNOVA DRIVERS
10550 R:      Boris Pismenny <borisp@mellanox.com>
10551 L:      netdev@vger.kernel.org
10552 S:      Supported
10553 W:      http://www.mellanox.com
10554 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10555 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10556 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10557 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10558 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10559
10560 MELLANOX ETHERNET SWITCH DRIVERS
10561 M:      Jiri Pirko <jiri@mellanox.com>
10562 M:      Ido Schimmel <idosch@mellanox.com>
10563 L:      netdev@vger.kernel.org
10564 S:      Supported
10565 W:      http://www.mellanox.com
10566 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10567 F:      drivers/net/ethernet/mellanox/mlxsw/
10568 F:      tools/testing/selftests/drivers/net/mlxsw/
10569
10570 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10571 M:      mlxsw@mellanox.com
10572 L:      netdev@vger.kernel.org
10573 S:      Supported
10574 W:      http://www.mellanox.com
10575 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10576 F:      drivers/net/ethernet/mellanox/mlxfw/
10577
10578 MELLANOX HARDWARE PLATFORM SUPPORT
10579 M:      Andy Shevchenko <andy@infradead.org>
10580 M:      Darren Hart <dvhart@infradead.org>
10581 M:      Vadim Pasternak <vadimp@mellanox.com>
10582 L:      platform-driver-x86@vger.kernel.org
10583 S:      Supported
10584 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
10585 F:      drivers/platform/mellanox/
10586 F:      include/linux/platform_data/mlxreg.h
10587
10588 MELLANOX MLX4 core VPI driver
10589 M:      Tariq Toukan <tariqt@mellanox.com>
10590 L:      netdev@vger.kernel.org
10591 L:      linux-rdma@vger.kernel.org
10592 W:      http://www.mellanox.com
10593 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10594 S:      Supported
10595 F:      drivers/net/ethernet/mellanox/mlx4/
10596 F:      include/linux/mlx4/
10597
10598 MELLANOX MLX4 IB driver
10599 M:      Yishai Hadas <yishaih@mellanox.com>
10600 L:      linux-rdma@vger.kernel.org
10601 W:      http://www.mellanox.com
10602 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10603 S:      Supported
10604 F:      drivers/infiniband/hw/mlx4/
10605 F:      include/linux/mlx4/
10606 F:      include/uapi/rdma/mlx4-abi.h
10607
10608 MELLANOX MLX5 core VPI driver
10609 M:      Saeed Mahameed <saeedm@mellanox.com>
10610 M:      Leon Romanovsky <leonro@mellanox.com>
10611 L:      netdev@vger.kernel.org
10612 L:      linux-rdma@vger.kernel.org
10613 W:      http://www.mellanox.com
10614 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10615 S:      Supported
10616 F:      drivers/net/ethernet/mellanox/mlx5/core/
10617 F:      include/linux/mlx5/
10618 F:      Documentation/networking/device_drivers/mellanox/
10619
10620 MELLANOX MLX5 IB driver
10621 M:      Leon Romanovsky <leonro@mellanox.com>
10622 L:      linux-rdma@vger.kernel.org
10623 W:      http://www.mellanox.com
10624 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10625 S:      Supported
10626 F:      drivers/infiniband/hw/mlx5/
10627 F:      include/linux/mlx5/
10628 F:      include/uapi/rdma/mlx5-abi.h
10629
10630 MELLANOX MLXCPLD I2C AND MUX DRIVER
10631 M:      Vadim Pasternak <vadimp@mellanox.com>
10632 M:      Michael Shych <michaelsh@mellanox.com>
10633 L:      linux-i2c@vger.kernel.org
10634 S:      Supported
10635 F:      drivers/i2c/busses/i2c-mlxcpld.c
10636 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10637 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10638
10639 MELLANOX MLXCPLD LED DRIVER
10640 M:      Vadim Pasternak <vadimp@mellanox.com>
10641 L:      linux-leds@vger.kernel.org
10642 S:      Supported
10643 F:      drivers/leds/leds-mlxcpld.c
10644 F:      drivers/leds/leds-mlxreg.c
10645 F:      Documentation/leds/leds-mlxcpld.rst
10646
10647 MELLANOX PLATFORM DRIVER
10648 M:      Vadim Pasternak <vadimp@mellanox.com>
10649 L:      platform-driver-x86@vger.kernel.org
10650 S:      Supported
10651 F:      drivers/platform/x86/mlx-platform.c
10652
10653 MEMBARRIER SUPPORT
10654 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10655 M:      "Paul E. McKenney" <paulmck@kernel.org>
10656 L:      linux-kernel@vger.kernel.org
10657 S:      Supported
10658 F:      kernel/sched/membarrier.c
10659 F:      include/uapi/linux/membarrier.h
10660 F:      arch/powerpc/include/asm/membarrier.h
10661
10662 MEMBLOCK
10663 M:      Mike Rapoport <rppt@linux.ibm.com>
10664 L:      linux-mm@kvack.org
10665 S:      Maintained
10666 F:      include/linux/memblock.h
10667 F:      mm/memblock.c
10668 F:      Documentation/core-api/boot-time-mm.rst
10669
10670 MEMORY MANAGEMENT
10671 M:      Andrew Morton <akpm@linux-foundation.org>
10672 L:      linux-mm@kvack.org
10673 W:      http://www.linux-mm.org
10674 T:      quilt https://ozlabs.org/~akpm/mmotm/
10675 T:      quilt https://ozlabs.org/~akpm/mmots/
10676 T:      git git://github.com/hnaz/linux-mm.git
10677 S:      Maintained
10678 F:      include/linux/mm.h
10679 F:      include/linux/gfp.h
10680 F:      include/linux/mmzone.h
10681 F:      include/linux/memory_hotplug.h
10682 F:      include/linux/vmalloc.h
10683 F:      mm/
10684
10685 MEMORY TECHNOLOGY DEVICES (MTD)
10686 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10687 M:      Richard Weinberger <richard@nod.at>
10688 M:      Vignesh Raghavendra <vigneshr@ti.com>
10689 L:      linux-mtd@lists.infradead.org
10690 W:      http://www.linux-mtd.infradead.org/
10691 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10692 C:      irc://irc.oftc.net/mtd
10693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10695 S:      Maintained
10696 F:      Documentation/devicetree/bindings/mtd/
10697 F:      drivers/mtd/
10698 F:      include/linux/mtd/
10699 F:      include/uapi/mtd/
10700
10701 MEN A21 WATCHDOG DRIVER
10702 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10703 L:      linux-watchdog@vger.kernel.org
10704 S:      Maintained
10705 F:      drivers/watchdog/mena21_wdt.c
10706
10707 MEN CHAMELEON BUS (mcb)
10708 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10709 S:      Maintained
10710 F:      drivers/mcb/
10711 F:      include/linux/mcb.h
10712 F:      Documentation/driver-api/men-chameleon-bus.rst
10713
10714 MEN F21BMC (Board Management Controller)
10715 M:      Andreas Werner <andreas.werner@men.de>
10716 S:      Supported
10717 F:      drivers/mfd/menf21bmc.c
10718 F:      drivers/watchdog/menf21bmc_wdt.c
10719 F:      drivers/leds/leds-menf21bmc.c
10720 F:      drivers/hwmon/menf21bmc_hwmon.c
10721 F:      Documentation/hwmon/menf21bmc.rst
10722
10723 MEN Z069 WATCHDOG DRIVER
10724 M:      Johannes Thumshirn <jth@kernel.org>
10725 L:      linux-watchdog@vger.kernel.org
10726 S:      Maintained
10727 F:      drivers/watchdog/menz69_wdt.c
10728
10729 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10730 M:      Neil Armstrong <narmstrong@baylibre.com>
10731 L:      linux-media@vger.kernel.org
10732 L:      linux-amlogic@lists.infradead.org
10733 W:      http://linux-meson.com/
10734 S:      Supported
10735 F:      drivers/media/platform/meson/ao-cec.c
10736 F:      drivers/media/platform/meson/ao-cec-g12a.c
10737 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
10738 T:      git git://linuxtv.org/media_tree.git
10739
10740 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10741 M:      Liang Yang <liang.yang@amlogic.com>
10742 L:      linux-mtd@lists.infradead.org
10743 S:      Maintained
10744 F:      drivers/mtd/nand/raw/meson_*
10745 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10746
10747 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10748 M:      Maxime Jourdan <mjourdan@baylibre.com>
10749 L:      linux-media@vger.kernel.org
10750 L:      linux-amlogic@lists.infradead.org
10751 S:      Supported
10752 F:      drivers/staging/media/meson/vdec/
10753 T:      git git://linuxtv.org/media_tree.git
10754
10755 METHODE UDPU SUPPORT
10756 M:      Vladimir Vid <vladimir.vid@sartura.hr>
10757 S:      Maintained
10758 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10759
10760 MICROBLAZE ARCHITECTURE
10761 M:      Michal Simek <monstr@monstr.eu>
10762 W:      http://www.monstr.eu/fdt/
10763 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
10764 S:      Supported
10765 F:      arch/microblaze/
10766
10767 MICROCHIP AT91 SERIAL DRIVER
10768 M:      Richard Genoud <richard.genoud@gmail.com>
10769 S:      Maintained
10770 F:      drivers/tty/serial/atmel_serial.c
10771 F:      drivers/tty/serial/atmel_serial.h
10772 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10773
10774 MICROCHIP AUDIO ASOC DRIVERS
10775 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
10776 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10777 S:      Supported
10778 F:      sound/soc/atmel
10779
10780 MICROCHIP DMA DRIVER
10781 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10782 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10783 L:      dmaengine@vger.kernel.org
10784 S:      Supported
10785 F:      drivers/dma/at_hdmac.c
10786 F:      drivers/dma/at_hdmac_regs.h
10787 F:      include/linux/platform_data/dma-atmel.h
10788 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
10789 F:      include/dt-bindings/dma/at91.h
10790
10791 MICROCHIP ECC DRIVER
10792 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10793 L:      linux-crypto@vger.kernel.org
10794 S:      Maintained
10795 F:      drivers/crypto/atmel-ecc.*
10796
10797 MICROCHIP I2C DRIVER
10798 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10799 L:      linux-i2c@vger.kernel.org
10800 S:      Supported
10801 F:      drivers/i2c/busses/i2c-at91.h
10802 F:      drivers/i2c/busses/i2c-at91-*.c
10803
10804 MICROCHIP ISC DRIVER
10805 M:      Eugen Hristev <eugen.hristev@microchip.com>
10806 L:      linux-media@vger.kernel.org
10807 S:      Supported
10808 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
10809 F:      drivers/media/platform/atmel/atmel-isc.h
10810 F:      drivers/media/platform/atmel/atmel-isc-base.c
10811 F:      drivers/media/platform/atmel/atmel-isc-regs.h
10812 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
10813
10814 MICROCHIP ISI DRIVER
10815 M:      Eugen Hristev <eugen.hristev@microchip.com>
10816 L:      linux-media@vger.kernel.org
10817 S:      Supported
10818 F:      drivers/media/platform/atmel/atmel-isi.c
10819 F:      drivers/media/platform/atmel/atmel-isi.h
10820
10821 MICROCHIP AT91 USART MFD DRIVER
10822 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10823 L:      linux-kernel@vger.kernel.org
10824 S:      Supported
10825 F:      drivers/mfd/at91-usart.c
10826 F:      include/dt-bindings/mfd/at91-usart.h
10827 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10828
10829 MICROCHIP AT91 USART SPI DRIVER
10830 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10831 L:      linux-spi@vger.kernel.org
10832 S:      Supported
10833 F:      drivers/spi/spi-at91-usart.c
10834 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10835
10836 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
10837 M:      Woojung Huh <woojung.huh@microchip.com>
10838 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10839 L:      netdev@vger.kernel.org
10840 S:      Maintained
10841 F:      net/dsa/tag_ksz.c
10842 F:      drivers/net/dsa/microchip/*
10843 F:      include/linux/platform_data/microchip-ksz.h
10844 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
10845
10846 MICROCHIP LAN743X ETHERNET DRIVER
10847 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
10848 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10849 L:      netdev@vger.kernel.org
10850 S:      Maintained
10851 F:      drivers/net/ethernet/microchip/lan743x_*
10852
10853 MICROCHIP LCDFB DRIVER
10854 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10855 L:      linux-fbdev@vger.kernel.org
10856 S:      Maintained
10857 F:      drivers/video/fbdev/atmel_lcdfb.c
10858 F:      include/video/atmel_lcdc.h
10859
10860 MICROCHIP MMC/SD/SDIO MCI DRIVER
10861 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10862 S:      Maintained
10863 F:      drivers/mmc/host/atmel-mci.c
10864
10865 MICROCHIP MCP16502 PMIC DRIVER
10866 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
10867 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10868 S:      Maintained
10869 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
10870 F:      drivers/regulator/mcp16502.c
10871
10872 MICROCHIP MCP3911 ADC DRIVER
10873 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10874 M:      Kent Gustavsson <kent@minoris.se>
10875 L:      linux-iio@vger.kernel.org
10876 S:      Supported
10877 F:      drivers/iio/adc/mcp3911.c
10878 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
10879
10880 MICROCHIP NAND DRIVER
10881 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10882 L:      linux-mtd@lists.infradead.org
10883 S:      Supported
10884 F:      drivers/mtd/nand/raw/atmel/*
10885 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
10886
10887 MICROCHIP PWM DRIVER
10888 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
10889 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10890 L:      linux-pwm@vger.kernel.org
10891 S:      Supported
10892 F:      drivers/pwm/pwm-atmel.c
10893 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
10894
10895 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
10896 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10897 M:      Eugen Hristev <eugen.hristev@microchip.com>
10898 L:      linux-iio@vger.kernel.org
10899 S:      Supported
10900 F:      drivers/iio/adc/at91-sama5d2_adc.c
10901 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
10902 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
10903
10904 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
10905 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10906 S:      Supported
10907 F:      drivers/power/reset/at91-sama5d2_shdwc.c
10908
10909 MICROCHIP SPI DRIVER
10910 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10911 S:      Supported
10912 F:      drivers/spi/spi-atmel.*
10913
10914 MICROCHIP SSC DRIVER
10915 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10917 S:      Supported
10918 F:      drivers/misc/atmel-ssc.c
10919 F:      include/linux/atmel-ssc.h
10920
10921 MICROCHIP USBA UDC DRIVER
10922 M:      Cristian Birsan <cristian.birsan@microchip.com>
10923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10924 S:      Supported
10925 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
10926
10927 MICROCHIP USB251XB DRIVER
10928 M:      Richard Leitner <richard.leitner@skidata.com>
10929 L:      linux-usb@vger.kernel.org
10930 S:      Maintained
10931 F:      drivers/usb/misc/usb251xb.c
10932 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
10933
10934 MICROCHIP XDMA DRIVER
10935 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10936 L:      linux-arm-kernel@lists.infradead.org
10937 L:      dmaengine@vger.kernel.org
10938 S:      Supported
10939 F:      drivers/dma/at_xdmac.c
10940
10941 MICROSEMI MIPS SOCS
10942 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10943 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10944 L:      linux-mips@vger.kernel.org
10945 S:      Supported
10946 F:      arch/mips/generic/board-ocelot.c
10947 F:      arch/mips/configs/generic/board-ocelot.config
10948 F:      arch/mips/boot/dts/mscc/
10949 F:      Documentation/devicetree/bindings/mips/mscc.txt
10950
10951 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
10952 M:      Don Brace <don.brace@microsemi.com>
10953 L:      esc.storagedev@microsemi.com
10954 L:      linux-scsi@vger.kernel.org
10955 S:      Supported
10956 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
10957 F:      drivers/scsi/smartpqi/Kconfig
10958 F:      drivers/scsi/smartpqi/Makefile
10959 F:      include/linux/cciss*.h
10960 F:      include/uapi/linux/cciss*.h
10961 F:      Documentation/scsi/smartpqi.txt
10962
10963 MICROSEMI ETHERNET SWITCH DRIVER
10964 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10965 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10966 L:      netdev@vger.kernel.org
10967 S:      Supported
10968 F:      drivers/net/ethernet/mscc/
10969 F:      include/soc/mscc/ocelot*
10970
10971 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
10972 M:      Chen Yu <yu.c.chen@intel.com>
10973 L:      platform-driver-x86@vger.kernel.org
10974 S:      Supported
10975 F:      drivers/platform/x86/surfacepro3_button.c
10976
10977 MICROTEK X6 SCANNER
10978 M:      Oliver Neukum <oliver@neukum.org>
10979 S:      Maintained
10980 F:      drivers/usb/image/microtek.*
10981
10982 MIPS
10983 M:      Ralf Baechle <ralf@linux-mips.org>
10984 M:      Paul Burton <paulburton@kernel.org>
10985 M:      James Hogan <jhogan@kernel.org>
10986 L:      linux-mips@vger.kernel.org
10987 W:      http://www.linux-mips.org/
10988 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
10989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
10990 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10991 S:      Supported
10992 F:      Documentation/devicetree/bindings/mips/
10993 F:      Documentation/mips/
10994 F:      arch/mips/
10995 F:      drivers/platform/mips/
10996
10997 MIPS BOSTON DEVELOPMENT BOARD
10998 M:      Paul Burton <paulburton@kernel.org>
10999 L:      linux-mips@vger.kernel.org
11000 S:      Maintained
11001 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11002 F:      arch/mips/boot/dts/img/boston.dts
11003 F:      arch/mips/configs/generic/board-boston.config
11004 F:      drivers/clk/imgtec/clk-boston.c
11005 F:      include/dt-bindings/clock/boston-clock.h
11006
11007 MIPS GENERIC PLATFORM
11008 M:      Paul Burton <paulburton@kernel.org>
11009 L:      linux-mips@vger.kernel.org
11010 S:      Supported
11011 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11012 F:      arch/mips/generic/
11013 F:      arch/mips/tools/generic-board-config.sh
11014
11015 MIPS/LOONGSON1 ARCHITECTURE
11016 M:      Keguang Zhang <keguang.zhang@gmail.com>
11017 L:      linux-mips@vger.kernel.org
11018 S:      Maintained
11019 F:      arch/mips/loongson32/
11020 F:      arch/mips/include/asm/mach-loongson32/
11021 F:      drivers/*/*loongson1*
11022 F:      drivers/*/*/*loongson1*
11023
11024 MIPS/LOONGSON2EF ARCHITECTURE
11025 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11026 L:      linux-mips@vger.kernel.org
11027 S:      Maintained
11028 F:      arch/mips/loongson2ef/
11029 F:      arch/mips/include/asm/mach-loongson2ef/
11030 F:      drivers/*/*loongson2*
11031 F:      drivers/*/*/*loongson2*
11032
11033 MIPS/LOONGSON64 ARCHITECTURE
11034 M:      Huacai Chen <chenhc@lemote.com>
11035 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11036 L:      linux-mips@vger.kernel.org
11037 S:      Maintained
11038 F:      arch/mips/loongson64/
11039 F:      arch/mips/include/asm/mach-loongson64/
11040 F:      drivers/platform/mips/cpu_hwmon.c
11041 F:      drivers/*/*loongson3*
11042 F:      drivers/*/*/*loongson3*
11043
11044 MIPS RINT INSTRUCTION EMULATION
11045 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11046 L:      linux-mips@vger.kernel.org
11047 S:      Supported
11048 F:      arch/mips/math-emu/sp_rint.c
11049 F:      arch/mips/math-emu/dp_rint.c
11050
11051 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11052 M:      Hans Verkuil <hverkuil@xs4all.nl>
11053 L:      linux-media@vger.kernel.org
11054 T:      git git://linuxtv.org/media_tree.git
11055 W:      https://linuxtv.org
11056 S:      Odd Fixes
11057 F:      drivers/media/radio/radio-miropcm20*
11058
11059 MMP SUPPORT
11060 R:      Lubomir Rintel <lkundrak@v3.sk>
11061 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11062 S:      Odd Fixes
11063 F:      arch/arm/boot/dts/mmp*
11064 F:      arch/arm/mach-mmp/
11065
11066 MMU GATHER AND TLB INVALIDATION
11067 M:      Will Deacon <will@kernel.org>
11068 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11069 M:      Andrew Morton <akpm@linux-foundation.org>
11070 M:      Nick Piggin <npiggin@gmail.com>
11071 M:      Peter Zijlstra <peterz@infradead.org>
11072 L:      linux-arch@vger.kernel.org
11073 L:      linux-mm@kvack.org
11074 S:      Maintained
11075 F:      arch/*/include/asm/tlb.h
11076 F:      include/asm-generic/tlb.h
11077 F:      mm/mmu_gather.c
11078
11079 MN88472 MEDIA DRIVER
11080 M:      Antti Palosaari <crope@iki.fi>
11081 L:      linux-media@vger.kernel.org
11082 W:      https://linuxtv.org
11083 W:      http://palosaari.fi/linux/
11084 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11085 S:      Maintained
11086 F:      drivers/media/dvb-frontends/mn88472*
11087
11088 MN88473 MEDIA DRIVER
11089 M:      Antti Palosaari <crope@iki.fi>
11090 L:      linux-media@vger.kernel.org
11091 W:      https://linuxtv.org
11092 W:      http://palosaari.fi/linux/
11093 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11094 S:      Maintained
11095 F:      drivers/media/dvb-frontends/mn88473*
11096
11097 MODULE SUPPORT
11098 M:      Jessica Yu <jeyu@kernel.org>
11099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11100 S:      Maintained
11101 F:      include/linux/module.h
11102 F:      kernel/module.c
11103
11104 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11105 W:      http://popies.net/meye/
11106 S:      Orphan
11107 F:      Documentation/media/v4l-drivers/meye*
11108 F:      drivers/media/pci/meye/
11109 F:      include/uapi/linux/meye.h
11110
11111 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11112 M:      Jiri Slaby <jirislaby@gmail.com>
11113 S:      Maintained
11114 F:      Documentation/driver-api/serial/moxa-smartio.rst
11115 F:      drivers/tty/mxser.*
11116
11117 MR800 AVERMEDIA USB FM RADIO DRIVER
11118 M:      Alexey Klimov <klimov.linux@gmail.com>
11119 L:      linux-media@vger.kernel.org
11120 T:      git git://linuxtv.org/media_tree.git
11121 S:      Maintained
11122 F:      drivers/media/radio/radio-mr800.c
11123
11124 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11125 M:      Alan Ott <alan@signal11.us>
11126 L:      linux-wpan@vger.kernel.org
11127 S:      Maintained
11128 F:      drivers/net/ieee802154/mrf24j40.c
11129 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11130
11131 MSI LAPTOP SUPPORT
11132 M:      "Lee, Chun-Yi" <jlee@suse.com>
11133 L:      platform-driver-x86@vger.kernel.org
11134 S:      Maintained
11135 F:      drivers/platform/x86/msi-laptop.c
11136
11137 MSI WMI SUPPORT
11138 L:      platform-driver-x86@vger.kernel.org
11139 S:      Orphan
11140 F:      drivers/platform/x86/msi-wmi.c
11141
11142 MSI001 MEDIA DRIVER
11143 M:      Antti Palosaari <crope@iki.fi>
11144 L:      linux-media@vger.kernel.org
11145 W:      https://linuxtv.org
11146 W:      http://palosaari.fi/linux/
11147 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11148 T:      git git://linuxtv.org/anttip/media_tree.git
11149 S:      Maintained
11150 F:      drivers/media/tuners/msi001*
11151
11152 MSI2500 MEDIA DRIVER
11153 M:      Antti Palosaari <crope@iki.fi>
11154 L:      linux-media@vger.kernel.org
11155 W:      https://linuxtv.org
11156 W:      http://palosaari.fi/linux/
11157 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11158 T:      git git://linuxtv.org/anttip/media_tree.git
11159 S:      Maintained
11160 F:      drivers/media/usb/msi2500/
11161
11162 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11163 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11164 L:      linux-mtd@lists.infradead.org
11165 S:      Maintained
11166 F:      drivers/mtd/devices/docg3*
11167
11168 MT9M032 APTINA SENSOR DRIVER
11169 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11170 L:      linux-media@vger.kernel.org
11171 T:      git git://linuxtv.org/media_tree.git
11172 S:      Maintained
11173 F:      drivers/media/i2c/mt9m032.c
11174 F:      include/media/i2c/mt9m032.h
11175
11176 MT9P031 APTINA CAMERA SENSOR
11177 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11178 L:      linux-media@vger.kernel.org
11179 T:      git git://linuxtv.org/media_tree.git
11180 S:      Maintained
11181 F:      drivers/media/i2c/mt9p031.c
11182 F:      include/media/i2c/mt9p031.h
11183
11184 MT9T001 APTINA CAMERA SENSOR
11185 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11186 L:      linux-media@vger.kernel.org
11187 T:      git git://linuxtv.org/media_tree.git
11188 S:      Maintained
11189 F:      drivers/media/i2c/mt9t001.c
11190 F:      include/media/i2c/mt9t001.h
11191
11192 MT9T112 APTINA CAMERA SENSOR
11193 M:      Jacopo Mondi <jacopo@jmondi.org>
11194 L:      linux-media@vger.kernel.org
11195 T:      git git://linuxtv.org/media_tree.git
11196 S:      Odd Fixes
11197 F:      drivers/media/i2c/mt9t112.c
11198 F:      include/media/i2c/mt9t112.h
11199
11200 MT9V032 APTINA CAMERA SENSOR
11201 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11202 L:      linux-media@vger.kernel.org
11203 T:      git git://linuxtv.org/media_tree.git
11204 S:      Maintained
11205 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11206 F:      drivers/media/i2c/mt9v032.c
11207 F:      include/media/i2c/mt9v032.h
11208
11209 MT9V111 APTINA CAMERA SENSOR
11210 M:      Jacopo Mondi <jacopo@jmondi.org>
11211 L:      linux-media@vger.kernel.org
11212 T:      git git://linuxtv.org/media_tree.git
11213 S:      Maintained
11214 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11215 F:      drivers/media/i2c/mt9v111.c
11216
11217 MULTIFUNCTION DEVICES (MFD)
11218 M:      Lee Jones <lee.jones@linaro.org>
11219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11220 S:      Supported
11221 F:      Documentation/devicetree/bindings/mfd/
11222 F:      drivers/mfd/
11223 F:      include/linux/mfd/
11224 F:      include/dt-bindings/mfd/
11225
11226 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11227 S:      Orphan
11228 F:      drivers/mmc/host/mmc_spi.c
11229 F:      include/linux/spi/mmc_spi.h
11230
11231 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11232 M:      Ulf Hansson <ulf.hansson@linaro.org>
11233 L:      linux-mmc@vger.kernel.org
11234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11235 S:      Maintained
11236 F:      Documentation/devicetree/bindings/mmc/
11237 F:      drivers/mmc/
11238 F:      include/linux/mmc/
11239 F:      include/uapi/linux/mmc/
11240
11241 MULTIPLEXER SUBSYSTEM
11242 M:      Peter Rosin <peda@axentia.se>
11243 S:      Maintained
11244 F:      Documentation/ABI/testing/sysfs-class-mux*
11245 F:      Documentation/devicetree/bindings/mux/
11246 F:      include/dt-bindings/mux/
11247 F:      include/linux/mux/
11248 F:      drivers/mux/
11249
11250 MULTITECH MULTIPORT CARD (ISICOM)
11251 S:      Orphan
11252 F:      drivers/tty/isicom.c
11253 F:      include/linux/isicom.h
11254
11255 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11256 M:      Bin Liu <b-liu@ti.com>
11257 L:      linux-usb@vger.kernel.org
11258 S:      Maintained
11259 F:      drivers/usb/musb/
11260
11261 MXL301RF MEDIA DRIVER
11262 M:      Akihiro Tsukada <tskd08@gmail.com>
11263 L:      linux-media@vger.kernel.org
11264 S:      Odd Fixes
11265 F:      drivers/media/tuners/mxl301rf*
11266
11267 MXL5007T MEDIA DRIVER
11268 M:      Michael Krufky <mkrufky@linuxtv.org>
11269 L:      linux-media@vger.kernel.org
11270 W:      https://linuxtv.org
11271 W:      http://github.com/mkrufky
11272 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11273 T:      git git://linuxtv.org/mkrufky/tuners.git
11274 S:      Maintained
11275 F:      drivers/media/tuners/mxl5007t.*
11276
11277 MXSFB DRM DRIVER
11278 M:      Marek Vasut <marex@denx.de>
11279 M:      Stefan Agner <stefan@agner.ch>
11280 L:      dri-devel@lists.freedesktop.org
11281 S:      Supported
11282 F:      drivers/gpu/drm/mxsfb/
11283 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11284 T:      git git://anongit.freedesktop.org/drm/drm-misc
11285
11286 MYLEX DAC960 PCI RAID Controller
11287 M:      Hannes Reinecke <hare@kernel.org>
11288 L:      linux-scsi@vger.kernel.org
11289 S:      Supported
11290 F:      drivers/scsi/myrb.*
11291 F:      drivers/scsi/myrs.*
11292
11293 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11294 M:      Chris Lee <christopher.lee@cspi.com>
11295 L:      netdev@vger.kernel.org
11296 W:      https://www.cspi.com/ethernet-products/support/downloads/
11297 S:      Supported
11298 F:      drivers/net/ethernet/myricom/myri10ge/
11299
11300 NAND FLASH SUBSYSTEM
11301 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11302 R:      Richard Weinberger <richard@nod.at>
11303 L:      linux-mtd@lists.infradead.org
11304 W:      http://www.linux-mtd.infradead.org/
11305 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11307 S:      Maintained
11308 F:      drivers/mtd/nand/
11309 F:      include/linux/mtd/*nand*.h
11310
11311 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11312 M:      Daniel Mack <zonque@gmail.com>
11313 S:      Maintained
11314 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11315 W:      http://www.native-instruments.com
11316 F:      sound/usb/caiaq/
11317
11318 NATSEMI ETHERNET DRIVER (DP8381x)
11319 S:      Orphan
11320 F:      drivers/net/ethernet/natsemi/natsemi.c
11321
11322 NCR 5380 SCSI DRIVERS
11323 M:      Finn Thain <fthain@telegraphics.com.au>
11324 M:      Michael Schmitz <schmitzmic@gmail.com>
11325 L:      linux-scsi@vger.kernel.org
11326 S:      Maintained
11327 F:      Documentation/scsi/g_NCR5380.txt
11328 F:      drivers/scsi/NCR5380.*
11329 F:      drivers/scsi/arm/cumana_1.c
11330 F:      drivers/scsi/arm/oak.c
11331 F:      drivers/scsi/atari_scsi.*
11332 F:      drivers/scsi/dmx3191d.c
11333 F:      drivers/scsi/g_NCR5380.*
11334 F:      drivers/scsi/mac_scsi.*
11335 F:      drivers/scsi/sun3_scsi.*
11336 F:      drivers/scsi/sun3_scsi_vme.c
11337
11338 NCSI LIBRARY:
11339 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11340 S:      Maintained
11341 F:      net/ncsi/
11342
11343 NCT6775 HARDWARE MONITOR DRIVER
11344 M:      Guenter Roeck <linux@roeck-us.net>
11345 L:      linux-hwmon@vger.kernel.org
11346 S:      Maintained
11347 F:      Documentation/hwmon/nct6775.rst
11348 F:      drivers/hwmon/nct6775.c
11349
11350 NET_FAILOVER MODULE
11351 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
11352 L:      netdev@vger.kernel.org
11353 S:      Supported
11354 F:      drivers/net/net_failover.c
11355 F:      include/net/net_failover.h
11356 F:      Documentation/networking/net_failover.rst
11357
11358 NETEM NETWORK EMULATOR
11359 M:      Stephen Hemminger <stephen@networkplumber.org>
11360 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
11361 S:      Maintained
11362 F:      net/sched/sch_netem.c
11363
11364 NETERION 10GbE DRIVERS (s2io/vxge)
11365 M:      Jon Mason <jdmason@kudzu.us>
11366 L:      netdev@vger.kernel.org
11367 S:      Supported
11368 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11369 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11370 F:      drivers/net/ethernet/neterion/
11371
11372 NETFILTER
11373 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11374 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11375 M:      Florian Westphal <fw@strlen.de>
11376 L:      netfilter-devel@vger.kernel.org
11377 L:      coreteam@netfilter.org
11378 W:      http://www.netfilter.org/
11379 W:      http://www.iptables.org/
11380 W:      http://www.nftables.org/
11381 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11384 S:      Maintained
11385 F:      include/linux/netfilter*
11386 F:      include/linux/netfilter/
11387 F:      include/net/netfilter/
11388 F:      include/uapi/linux/netfilter*
11389 F:      include/uapi/linux/netfilter/
11390 F:      net/*/netfilter.c
11391 F:      net/*/netfilter/
11392 F:      net/netfilter/
11393 F:      net/bridge/br_netfilter*.c
11394
11395 NETROM NETWORK LAYER
11396 M:      Ralf Baechle <ralf@linux-mips.org>
11397 L:      linux-hams@vger.kernel.org
11398 W:      http://www.linux-ax25.org/
11399 S:      Maintained
11400 F:      include/net/netrom.h
11401 F:      include/uapi/linux/netrom.h
11402 F:      net/netrom/
11403
11404 NETRONOME ETHERNET DRIVERS
11405 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11406 L:      oss-drivers@netronome.com
11407 S:      Maintained
11408 F:      drivers/net/ethernet/netronome/
11409
11410 NETWORK BLOCK DEVICE (NBD)
11411 M:      Josef Bacik <josef@toxicpanda.com>
11412 S:      Maintained
11413 L:      linux-block@vger.kernel.org
11414 L:      nbd@other.debian.org
11415 F:      Documentation/admin-guide/blockdev/nbd.rst
11416 F:      drivers/block/nbd.c
11417 F:      include/trace/events/nbd.h
11418 F:      include/uapi/linux/nbd.h
11419
11420 NETWORK DROP MONITOR
11421 M:      Neil Horman <nhorman@tuxdriver.com>
11422 L:      netdev@vger.kernel.org
11423 S:      Maintained
11424 W:      https://fedorahosted.org/dropwatch/
11425 F:      net/core/drop_monitor.c
11426 F:      include/uapi/linux/net_dropmon.h
11427 F:      include/net/drop_monitor.h
11428
11429 NETWORKING DRIVERS
11430 M:      "David S. Miller" <davem@davemloft.net>
11431 L:      netdev@vger.kernel.org
11432 W:      http://www.linuxfoundation.org/en/Net
11433 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11436 S:      Odd Fixes
11437 F:      Documentation/devicetree/bindings/net/
11438 F:      drivers/net/
11439 F:      include/linux/if_*
11440 F:      include/linux/netdevice.h
11441 F:      include/linux/etherdevice.h
11442 F:      include/linux/fcdevice.h
11443 F:      include/linux/fddidevice.h
11444 F:      include/linux/hippidevice.h
11445 F:      include/linux/inetdevice.h
11446 F:      include/uapi/linux/if_*
11447 F:      include/uapi/linux/netdevice.h
11448
11449 NETWORKING DRIVERS (WIRELESS)
11450 M:      Kalle Valo <kvalo@codeaurora.org>
11451 L:      linux-wireless@vger.kernel.org
11452 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11455 S:      Maintained
11456 F:      Documentation/devicetree/bindings/net/wireless/
11457 F:      drivers/net/wireless/
11458
11459 NETWORKING [DSA]
11460 M:      Andrew Lunn <andrew@lunn.ch>
11461 M:      Vivien Didelot <vivien.didelot@gmail.com>
11462 M:      Florian Fainelli <f.fainelli@gmail.com>
11463 S:      Maintained
11464 F:      Documentation/devicetree/bindings/net/dsa/
11465 F:      net/dsa/
11466 F:      include/net/dsa.h
11467 F:      include/linux/dsa/
11468 F:      include/linux/platform_data/dsa.h
11469 F:      drivers/net/dsa/
11470
11471 NETWORKING [GENERAL]
11472 M:      "David S. Miller" <davem@davemloft.net>
11473 L:      netdev@vger.kernel.org
11474 W:      http://www.linuxfoundation.org/en/Net
11475 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11478 B:      mailto:netdev@vger.kernel.org
11479 S:      Maintained
11480 F:      net/
11481 F:      include/net/
11482 F:      include/linux/in.h
11483 F:      include/linux/net.h
11484 F:      include/linux/netdevice.h
11485 F:      include/uapi/linux/in.h
11486 F:      include/uapi/linux/net.h
11487 F:      include/uapi/linux/netdevice.h
11488 F:      include/uapi/linux/net_namespace.h
11489 F:      tools/testing/selftests/net/
11490 F:      lib/net_utils.c
11491 F:      lib/random32.c
11492 F:      Documentation/networking/
11493
11494 NETWORKING [IPSEC]
11495 M:      Steffen Klassert <steffen.klassert@secunet.com>
11496 M:      Herbert Xu <herbert@gondor.apana.org.au>
11497 M:      "David S. Miller" <davem@davemloft.net>
11498 L:      netdev@vger.kernel.org
11499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11501 S:      Maintained
11502 F:      net/xfrm/
11503 F:      net/key/
11504 F:      net/ipv4/xfrm*
11505 F:      net/ipv4/esp4*
11506 F:      net/ipv4/ah4.c
11507 F:      net/ipv4/ipcomp.c
11508 F:      net/ipv4/ip_vti.c
11509 F:      net/ipv6/xfrm*
11510 F:      net/ipv6/esp6*
11511 F:      net/ipv6/ah6.c
11512 F:      net/ipv6/ipcomp6.c
11513 F:      net/ipv6/ip6_vti.c
11514 F:      include/uapi/linux/xfrm.h
11515 F:      include/net/xfrm.h
11516
11517 NETWORKING [IPv4/IPv6]
11518 M:      "David S. Miller" <davem@davemloft.net>
11519 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11520 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11521 L:      netdev@vger.kernel.org
11522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11523 S:      Maintained
11524 F:      net/ipv4/
11525 F:      net/ipv6/
11526 F:      include/net/ip*
11527 F:      arch/x86/net/*
11528
11529 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11530 M:      Paul Moore <paul@paul-moore.com>
11531 W:      https://github.com/netlabel
11532 L:      netdev@vger.kernel.org
11533 L:      linux-security-module@vger.kernel.org
11534 S:      Maintained
11535 F:      Documentation/netlabel/
11536 F:      include/net/calipso.h
11537 F:      include/net/cipso_ipv4.h
11538 F:      include/net/netlabel.h
11539 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11540 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11541 F:      net/netlabel/
11542 F:      net/ipv4/cipso_ipv4.c
11543 F:      net/ipv6/calipso.c
11544 F:      net/netfilter/xt_CONNSECMARK.c
11545 F:      net/netfilter/xt_SECMARK.c
11546
11547 NETWORKING [TCP]
11548 M:      Eric Dumazet <edumazet@google.com>
11549 L:      netdev@vger.kernel.org
11550 S:      Maintained
11551 F:      net/ipv4/tcp*.c
11552 F:      net/ipv4/syncookies.c
11553 F:      net/ipv6/tcp*.c
11554 F:      net/ipv6/syncookies.c
11555 F:      include/uapi/linux/tcp.h
11556 F:      include/net/tcp.h
11557 F:      include/linux/tcp.h
11558 F:      include/trace/events/tcp.h
11559
11560 NETWORKING [TLS]
11561 M:      Boris Pismenny <borisp@mellanox.com>
11562 M:      Aviad Yehezkel <aviadye@mellanox.com>
11563 M:      John Fastabend <john.fastabend@gmail.com>
11564 M:      Daniel Borkmann <daniel@iogearbox.net>
11565 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11566 L:      netdev@vger.kernel.org
11567 S:      Maintained
11568 F:      net/tls/*
11569 F:      include/uapi/linux/tls.h
11570 F:      include/net/tls.h
11571
11572 NETWORKING [WIRELESS]
11573 L:      linux-wireless@vger.kernel.org
11574 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11575
11576 NETDEVSIM
11577 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11578 S:      Maintained
11579 F:      drivers/net/netdevsim/*
11580
11581 NETXEN (1/10) GbE SUPPORT
11582 M:      Manish Chopra <manishc@marvell.com>
11583 M:      Rahul Verma <rahulv@marvell.com>
11584 M:      GR-Linux-NIC-Dev@marvell.com
11585 L:      netdev@vger.kernel.org
11586 S:      Supported
11587 F:      drivers/net/ethernet/qlogic/netxen/
11588
11589 NEXTHOP
11590 M:      David Ahern <dsahern@kernel.org>
11591 L:      netdev@vger.kernel.org
11592 S:      Maintained
11593 F:      include/net/nexthop.h
11594 F:      include/uapi/linux/nexthop.h
11595 F:      include/net/netns/nexthop.h
11596 F:      net/ipv4/nexthop.c
11597
11598 NFC SUBSYSTEM
11599 L:      netdev@vger.kernel.org
11600 S:      Orphan
11601 F:      net/nfc/
11602 F:      include/net/nfc/
11603 F:      include/uapi/linux/nfc.h
11604 F:      drivers/nfc/
11605 F:      include/linux/platform_data/nfcmrvl.h
11606 F:      Documentation/devicetree/bindings/net/nfc/
11607
11608 NFS, SUNRPC, AND LOCKD CLIENTS
11609 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
11610 M:      Anna Schumaker <anna.schumaker@netapp.com>
11611 L:      linux-nfs@vger.kernel.org
11612 W:      http://client.linux-nfs.org
11613 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11614 S:      Maintained
11615 F:      fs/lockd/
11616 F:      fs/nfs/
11617 F:      fs/nfs_common/
11618 F:      net/sunrpc/
11619 F:      include/linux/lockd/
11620 F:      include/linux/nfs*
11621 F:      include/linux/sunrpc/
11622 F:      include/uapi/linux/nfs*
11623 F:      include/uapi/linux/sunrpc/
11624
11625 NILFS2 FILESYSTEM
11626 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
11627 L:      linux-nilfs@vger.kernel.org
11628 W:      https://nilfs.sourceforge.io/
11629 W:      https://nilfs.osdn.jp/
11630 T:      git git://github.com/konis/nilfs2.git
11631 S:      Supported
11632 F:      Documentation/filesystems/nilfs2.txt
11633 F:      fs/nilfs2/
11634 F:      include/trace/events/nilfs2.h
11635 F:      include/uapi/linux/nilfs2_api.h
11636 F:      include/uapi/linux/nilfs2_ondisk.h
11637
11638 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11639 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11640 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11641 S:      Maintained
11642 F:      Documentation/scsi/NinjaSCSI.txt
11643 F:      drivers/scsi/pcmcia/nsp_*
11644
11645 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11646 M:      GOTO Masanori <gotom@debian.or.jp>
11647 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11648 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11649 S:      Maintained
11650 F:      Documentation/scsi/NinjaSCSI.txt
11651 F:      drivers/scsi/nsp32*
11652
11653 NIOS2 ARCHITECTURE
11654 M:      Ley Foon Tan <lftan@altera.com>
11655 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
11656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11657 S:      Maintained
11658 F:      arch/nios2/
11659
11660 NOHZ, DYNTICKS SUPPORT
11661 M:      Frederic Weisbecker <fweisbec@gmail.com>
11662 M:      Thomas Gleixner <tglx@linutronix.de>
11663 M:      Ingo Molnar <mingo@kernel.org>
11664 L:      linux-kernel@vger.kernel.org
11665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11666 S:      Maintained
11667 F:      kernel/time/tick*.*
11668 F:      include/linux/tick.h
11669 F:      include/linux/sched/nohz.h
11670
11671 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11672 M:      Pavel Machek <pavel@ucw.cz>
11673 M:      Sakari Ailus <sakari.ailus@iki.fi>
11674 L:      linux-media@vger.kernel.org
11675 S:      Maintained
11676 F:      drivers/media/i2c/et8ek8
11677 F:      drivers/media/i2c/ad5820.c
11678
11679 NOKIA N900 POWER SUPPLY DRIVERS
11680 R:      Pali Rohár <pali.rohar@gmail.com>
11681 F:      include/linux/power/bq2415x_charger.h
11682 F:      include/linux/power/bq27xxx_battery.h
11683 F:      drivers/power/supply/bq2415x_charger.c
11684 F:      drivers/power/supply/bq27xxx_battery.c
11685 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11686 F:      drivers/power/supply/isp1704_charger.c
11687 F:      drivers/power/supply/rx51_battery.c
11688
11689 NOLIBC HEADER FILE
11690 M:      Willy Tarreau <w@1wt.eu>
11691 S:      Maintained
11692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11693 F:      tools/include/nolibc/
11694
11695 NSDEPS
11696 M:      Matthias Maennich <maennich@google.com>
11697 S:      Maintained
11698 F:      scripts/nsdeps
11699 F:      Documentation/core-api/symbol-namespaces.rst
11700
11701 NTB AMD DRIVER
11702 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
11703 L:      linux-ntb@googlegroups.com
11704 S:      Supported
11705 F:      drivers/ntb/hw/amd/
11706
11707 NTB DRIVER CORE
11708 M:      Jon Mason <jdmason@kudzu.us>
11709 M:      Dave Jiang <dave.jiang@intel.com>
11710 M:      Allen Hubbe <allenbh@gmail.com>
11711 L:      linux-ntb@googlegroups.com
11712 S:      Supported
11713 W:      https://github.com/jonmason/ntb/wiki
11714 T:      git git://github.com/jonmason/ntb.git
11715 F:      drivers/ntb/
11716 F:      drivers/net/ntb_netdev.c
11717 F:      include/linux/ntb.h
11718 F:      include/linux/ntb_transport.h
11719 F:      tools/testing/selftests/ntb/
11720
11721 NTB IDT DRIVER
11722 M:      Serge Semin <fancer.lancer@gmail.com>
11723 L:      linux-ntb@googlegroups.com
11724 S:      Supported
11725 F:      drivers/ntb/hw/idt/
11726
11727 NTB INTEL DRIVER
11728 M:      Dave Jiang <dave.jiang@intel.com>
11729 L:      linux-ntb@googlegroups.com
11730 S:      Supported
11731 W:      https://github.com/davejiang/linux/wiki
11732 T:      git https://github.com/davejiang/linux.git
11733 F:      drivers/ntb/hw/intel/
11734
11735 NTFS FILESYSTEM
11736 M:      Anton Altaparmakov <anton@tuxera.com>
11737 L:      linux-ntfs-dev@lists.sourceforge.net
11738 W:      http://www.tuxera.com/
11739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
11740 S:      Supported
11741 F:      Documentation/filesystems/ntfs.txt
11742 F:      fs/ntfs/
11743
11744 NUBUS SUBSYSTEM
11745 M:      Finn Thain <fthain@telegraphics.com.au>
11746 L:      linux-m68k@lists.linux-m68k.org
11747 S:      Maintained
11748 F:      arch/*/include/asm/nubus.h
11749 F:      drivers/nubus/
11750 F:      include/linux/nubus.h
11751 F:      include/uapi/linux/nubus.h
11752
11753 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
11754 M:      Antonino Daplas <adaplas@gmail.com>
11755 L:      linux-fbdev@vger.kernel.org
11756 S:      Maintained
11757 F:      drivers/video/fbdev/riva/
11758 F:      drivers/video/fbdev/nvidia/
11759
11760 NVM EXPRESS DRIVER
11761 M:      Keith Busch <kbusch@kernel.org>
11762 M:      Jens Axboe <axboe@fb.com>
11763 M:      Christoph Hellwig <hch@lst.de>
11764 M:      Sagi Grimberg <sagi@grimberg.me>
11765 L:      linux-nvme@lists.infradead.org
11766 T:      git://git.infradead.org/nvme.git
11767 W:      http://git.infradead.org/nvme.git
11768 S:      Supported
11769 F:      drivers/nvme/host/
11770 F:      include/linux/nvme.h
11771 F:      include/uapi/linux/nvme_ioctl.h
11772
11773 NVM EXPRESS FC TRANSPORT DRIVERS
11774 M:      James Smart <james.smart@broadcom.com>
11775 L:      linux-nvme@lists.infradead.org
11776 S:      Supported
11777 F:      include/linux/nvme-fc.h
11778 F:      include/linux/nvme-fc-driver.h
11779 F:      drivers/nvme/host/fc.c
11780 F:      drivers/nvme/target/fc.c
11781 F:      drivers/nvme/target/fcloop.c
11782
11783 NVM EXPRESS TARGET DRIVER
11784 M:      Christoph Hellwig <hch@lst.de>
11785 M:      Sagi Grimberg <sagi@grimberg.me>
11786 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
11787 L:      linux-nvme@lists.infradead.org
11788 T:      git://git.infradead.org/nvme.git
11789 W:      http://git.infradead.org/nvme.git
11790 S:      Supported
11791 F:      drivers/nvme/target/
11792
11793 NVMEM FRAMEWORK
11794 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
11795 S:      Maintained
11796 F:      drivers/nvmem/
11797 F:      Documentation/devicetree/bindings/nvmem/
11798 F:      Documentation/ABI/stable/sysfs-bus-nvmem
11799 F:      include/linux/nvmem-consumer.h
11800 F:      include/linux/nvmem-provider.h
11801
11802 NXP FXAS21002C DRIVER
11803 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11804 L:      linux-iio@vger.kernel.org
11805 S:      Maintained
11806 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
11807 F:      drivers/iio/gyro/fxas21002c_core.c
11808 F:      drivers/iio/gyro/fxas21002c.h
11809 F:      drivers/iio/gyro/fxas21002c_i2c.c
11810 F:      drivers/iio/gyro/fxas21002c_spi.c
11811
11812 NXP SGTL5000 DRIVER
11813 M:      Fabio Estevam <festevam@gmail.com>
11814 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11815 S:      Maintained
11816 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
11817 F:      sound/soc/codecs/sgtl5000*
11818
11819 NXP SJA1105 ETHERNET SWITCH DRIVER
11820 M:      Vladimir Oltean <olteanv@gmail.com>
11821 L:      linux-kernel@vger.kernel.org
11822 S:      Maintained
11823 F:      drivers/net/dsa/sja1105
11824
11825 NXP TDA998X DRM DRIVER
11826 M:      Russell King <linux@armlinux.org.uk>
11827 S:      Maintained
11828 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
11829 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
11830 F:      drivers/gpu/drm/i2c/tda998x_drv.c
11831 F:      include/drm/i2c/tda998x.h
11832 F:      include/dt-bindings/display/tda998x.h
11833 K:      "nxp,tda998x"
11834
11835 NXP TFA9879 DRIVER
11836 M:      Peter Rosin <peda@axentia.se>
11837 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11838 S:      Maintained
11839 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
11840 F:      sound/soc/codecs/tfa9879*
11841
11842 NXP-NCI NFC DRIVER
11843 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
11844 R:      Charles Gorand <charles.gorand@effinnov.com>
11845 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
11846 S:      Supported
11847 F:      drivers/nfc/nxp-nci
11848
11849 OBJAGG
11850 M:      Jiri Pirko <jiri@mellanox.com>
11851 L:      netdev@vger.kernel.org
11852 S:      Supported
11853 F:      lib/objagg.c
11854 F:      lib/test_objagg.c
11855 F:      include/linux/objagg.h
11856
11857 NXP FSPI DRIVER
11858 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
11859 M:      Ashish Kumar <ashish.kumar@nxp.com>
11860 L:      linux-spi@vger.kernel.org
11861 S:      Maintained
11862 F:      drivers/spi/spi-nxp-fspi.c
11863 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
11864
11865 OBJTOOL
11866 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11867 M:      Peter Zijlstra <peterz@infradead.org>
11868 S:      Supported
11869 F:      tools/objtool/
11870
11871 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
11872 M:      Frederic Barrat <fbarrat@linux.ibm.com>
11873 M:      Andrew Donnellan <ajd@linux.ibm.com>
11874 L:      linuxppc-dev@lists.ozlabs.org
11875 S:      Supported
11876 F:      arch/powerpc/platforms/powernv/ocxl.c
11877 F:      arch/powerpc/include/asm/pnv-ocxl.h
11878 F:      drivers/misc/ocxl/
11879 F:      include/misc/ocxl*
11880 F:      include/uapi/misc/ocxl.h
11881 F:      Documentation/userspace-api/accelerators/ocxl.rst
11882
11883 OMAP AUDIO SUPPORT
11884 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11885 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
11886 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11887 L:      linux-omap@vger.kernel.org
11888 S:      Maintained
11889 F:      sound/soc/ti/omap*
11890 F:      sound/soc/ti/rx51.c
11891 F:      sound/soc/ti/n810.c
11892 F:      sound/soc/ti/sdma-pcm.*
11893
11894 OMAP CLOCK FRAMEWORK SUPPORT
11895 M:      Paul Walmsley <paul@pwsan.com>
11896 L:      linux-omap@vger.kernel.org
11897 S:      Maintained
11898 F:      arch/arm/*omap*/*clock*
11899
11900 OMAP DEVICE TREE SUPPORT
11901 M:      Benoît Cousson <bcousson@baylibre.com>
11902 M:      Tony Lindgren <tony@atomide.com>
11903 L:      linux-omap@vger.kernel.org
11904 L:      devicetree@vger.kernel.org
11905 S:      Maintained
11906 F:      arch/arm/boot/dts/*omap*
11907 F:      arch/arm/boot/dts/*am3*
11908 F:      arch/arm/boot/dts/*am4*
11909 F:      arch/arm/boot/dts/*am5*
11910 F:      arch/arm/boot/dts/*dra7*
11911
11912 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
11913 L:      linux-omap@vger.kernel.org
11914 L:      linux-fbdev@vger.kernel.org
11915 S:      Orphan
11916 F:      drivers/video/fbdev/omap2/
11917 F:      Documentation/arm/omap/dss.rst
11918
11919 OMAP FRAMEBUFFER SUPPORT
11920 L:      linux-fbdev@vger.kernel.org
11921 L:      linux-omap@vger.kernel.org
11922 S:      Orphan
11923 F:      drivers/video/fbdev/omap/
11924
11925 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
11926 M:      Roger Quadros <rogerq@ti.com>
11927 M:      Tony Lindgren <tony@atomide.com>
11928 L:      linux-omap@vger.kernel.org
11929 S:      Maintained
11930 F:      drivers/memory/omap-gpmc.c
11931 F:      arch/arm/mach-omap2/*gpmc*
11932
11933 OMAP GPIO DRIVER
11934 M:      Grygorii Strashko <grygorii.strashko@ti.com>
11935 M:      Santosh Shilimkar <ssantosh@kernel.org>
11936 M:      Kevin Hilman <khilman@kernel.org>
11937 L:      linux-omap@vger.kernel.org
11938 S:      Maintained
11939 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
11940 F:      drivers/gpio/gpio-omap.c
11941
11942 OMAP HARDWARE SPINLOCK SUPPORT
11943 M:      Ohad Ben-Cohen <ohad@wizery.com>
11944 L:      linux-omap@vger.kernel.org
11945 S:      Maintained
11946 F:      drivers/hwspinlock/omap_hwspinlock.c
11947
11948 OMAP HS MMC SUPPORT
11949 L:      linux-mmc@vger.kernel.org
11950 L:      linux-omap@vger.kernel.org
11951 S:      Orphan
11952 F:      drivers/mmc/host/omap_hsmmc.c
11953
11954 OMAP HWMOD DATA
11955 M:      Paul Walmsley <paul@pwsan.com>
11956 L:      linux-omap@vger.kernel.org
11957 S:      Maintained
11958 F:      arch/arm/mach-omap2/omap_hwmod*data*
11959
11960 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
11961 M:      Benoît Cousson <bcousson@baylibre.com>
11962 L:      linux-omap@vger.kernel.org
11963 S:      Maintained
11964 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
11965
11966 OMAP HWMOD SUPPORT
11967 M:      Benoît Cousson <bcousson@baylibre.com>
11968 M:      Paul Walmsley <paul@pwsan.com>
11969 L:      linux-omap@vger.kernel.org
11970 S:      Maintained
11971 F:      arch/arm/mach-omap2/omap_hwmod.*
11972
11973 OMAP I2C DRIVER
11974 M:      Vignesh R <vigneshr@ti.com>
11975 L:      linux-omap@vger.kernel.org
11976 L:      linux-i2c@vger.kernel.org
11977 S:      Maintained
11978 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
11979 F:      drivers/i2c/busses/i2c-omap.c
11980
11981 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
11982 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11983 L:      linux-media@vger.kernel.org
11984 S:      Maintained
11985 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
11986 F:      drivers/media/platform/omap3isp/
11987 F:      drivers/staging/media/omap4iss/
11988
11989 OMAP MMC SUPPORT
11990 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11991 L:      linux-omap@vger.kernel.org
11992 S:      Odd Fixes
11993 F:      drivers/mmc/host/omap.c
11994
11995 OMAP POWER MANAGEMENT SUPPORT
11996 M:      Kevin Hilman <khilman@kernel.org>
11997 L:      linux-omap@vger.kernel.org
11998 S:      Maintained
11999 F:      arch/arm/*omap*/*pm*
12000 F:      drivers/cpufreq/omap-cpufreq.c
12001
12002 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12003 M:      Rajendra Nayak <rnayak@codeaurora.org>
12004 M:      Paul Walmsley <paul@pwsan.com>
12005 L:      linux-omap@vger.kernel.org
12006 S:      Maintained
12007 F:      arch/arm/mach-omap2/prm*
12008
12009 OMAP RANDOM NUMBER GENERATOR SUPPORT
12010 M:      Deepak Saxena <dsaxena@plexity.net>
12011 S:      Maintained
12012 F:      drivers/char/hw_random/omap-rng.c
12013
12014 OMAP USB SUPPORT
12015 L:      linux-usb@vger.kernel.org
12016 L:      linux-omap@vger.kernel.org
12017 S:      Orphan
12018 F:      drivers/usb/*/*omap*
12019 F:      arch/arm/*omap*/usb*
12020
12021 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12022 M:      Mark Jackson <mpfj@newflow.co.uk>
12023 L:      linux-omap@vger.kernel.org
12024 S:      Maintained
12025 F:      arch/arm/boot/dts/am335x-nano.dts
12026
12027 OMAP1 SUPPORT
12028 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12029 M:      Tony Lindgren <tony@atomide.com>
12030 L:      linux-omap@vger.kernel.org
12031 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12033 S:      Maintained
12034 F:      arch/arm/mach-omap1/
12035 F:      arch/arm/plat-omap/
12036 F:      arch/arm/configs/omap1_defconfig
12037 F:      drivers/i2c/busses/i2c-omap.c
12038 F:      include/linux/platform_data/i2c-omap.h
12039 F:      include/linux/platform_data/ams-delta-fiq.h
12040
12041 OMAP2+ SUPPORT
12042 M:      Tony Lindgren <tony@atomide.com>
12043 L:      linux-omap@vger.kernel.org
12044 W:      http://www.muru.com/linux/omap/
12045 W:      http://linux.omap.com/
12046 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12048 S:      Maintained
12049 F:      arch/arm/mach-omap2/
12050 F:      arch/arm/plat-omap/
12051 F:      arch/arm/configs/omap2plus_defconfig
12052 F:      drivers/bus/ti-sysc.c
12053 F:      drivers/i2c/busses/i2c-omap.c
12054 F:      drivers/irqchip/irq-omap-intc.c
12055 F:      drivers/mfd/*omap*.c
12056 F:      drivers/mfd/menelaus.c
12057 F:      drivers/mfd/palmas.c
12058 F:      drivers/mfd/tps65217.c
12059 F:      drivers/mfd/tps65218.c
12060 F:      drivers/mfd/tps65910.c
12061 F:      drivers/mfd/twl-core.[ch]
12062 F:      drivers/mfd/twl4030*.c
12063 F:      drivers/mfd/twl6030*.c
12064 F:      drivers/mfd/twl6040*.c
12065 F:      drivers/regulator/palmas-regulator*.c
12066 F:      drivers/regulator/pbias-regulator.c
12067 F:      drivers/regulator/tps65217-regulator.c
12068 F:      drivers/regulator/tps65218-regulator.c
12069 F:      drivers/regulator/tps65910-regulator.c
12070 F:      drivers/regulator/twl-regulator.c
12071 F:      drivers/regulator/twl6030-regulator.c
12072 F:      include/linux/platform_data/i2c-omap.h
12073 F:      include/linux/platform_data/ti-sysc.h
12074
12075 ONION OMEGA2+ BOARD
12076 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
12077 L:      linux-mips@vger.kernel.org
12078 S:      Maintained
12079 F:      arch/mips/boot/dts/ralink/omega2p.dts
12080
12081 OMFS FILESYSTEM
12082 M:      Bob Copeland <me@bobcopeland.com>
12083 L:      linux-karma-devel@lists.sourceforge.net
12084 S:      Maintained
12085 F:      Documentation/filesystems/omfs.txt
12086 F:      fs/omfs/
12087
12088 OMNIKEY CARDMAN 4000 DRIVER
12089 M:      Harald Welte <laforge@gnumonks.org>
12090 S:      Maintained
12091 F:      drivers/char/pcmcia/cm4000_cs.c
12092 F:      include/linux/cm4000_cs.h
12093 F:      include/uapi/linux/cm4000_cs.h
12094
12095 OMNIKEY CARDMAN 4040 DRIVER
12096 M:      Harald Welte <laforge@gnumonks.org>
12097 S:      Maintained
12098 F:      drivers/char/pcmcia/cm4040_cs.*
12099
12100 OMNIVISION OV13858 SENSOR DRIVER
12101 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12102 L:      linux-media@vger.kernel.org
12103 T:      git git://linuxtv.org/media_tree.git
12104 S:      Maintained
12105 F:      drivers/media/i2c/ov13858.c
12106
12107 OMNIVISION OV2680 SENSOR DRIVER
12108 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12109 L:      linux-media@vger.kernel.org
12110 T:      git git://linuxtv.org/media_tree.git
12111 S:      Maintained
12112 F:      drivers/media/i2c/ov2680.c
12113 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12114
12115 OMNIVISION OV2685 SENSOR DRIVER
12116 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12117 L:      linux-media@vger.kernel.org
12118 T:      git git://linuxtv.org/media_tree.git
12119 S:      Maintained
12120 F:      drivers/media/i2c/ov2685.c
12121
12122 OMNIVISION OV5640 SENSOR DRIVER
12123 M:      Steve Longerbeam <slongerbeam@gmail.com>
12124 L:      linux-media@vger.kernel.org
12125 T:      git git://linuxtv.org/media_tree.git
12126 S:      Maintained
12127 F:      drivers/media/i2c/ov5640.c
12128
12129 OMNIVISION OV5647 SENSOR DRIVER
12130 M:      Luis Oliveira <lolivei@synopsys.com>
12131 L:      linux-media@vger.kernel.org
12132 T:      git git://linuxtv.org/media_tree.git
12133 S:      Maintained
12134 F:      drivers/media/i2c/ov5647.c
12135
12136 OMNIVISION OV5670 SENSOR DRIVER
12137 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12138 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12139 L:      linux-media@vger.kernel.org
12140 T:      git git://linuxtv.org/media_tree.git
12141 S:      Maintained
12142 F:      drivers/media/i2c/ov5670.c
12143
12144 OMNIVISION OV5675 SENSOR DRIVER
12145 M:      Shawn Tu <shawnx.tu@intel.com>
12146 L:      linux-media@vger.kernel.org
12147 T:      git git://linuxtv.org/media_tree.git
12148 S:      Maintained
12149 F:      drivers/media/i2c/ov5675.c
12150
12151 OMNIVISION OV5695 SENSOR DRIVER
12152 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12153 L:      linux-media@vger.kernel.org
12154 T:      git git://linuxtv.org/media_tree.git
12155 S:      Maintained
12156 F:      drivers/media/i2c/ov5695.c
12157
12158 OMNIVISION OV7670 SENSOR DRIVER
12159 M:      Jonathan Corbet <corbet@lwn.net>
12160 L:      linux-media@vger.kernel.org
12161 T:      git git://linuxtv.org/media_tree.git
12162 S:      Maintained
12163 F:      drivers/media/i2c/ov7670.c
12164 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12165
12166 OMNIVISION OV772x SENSOR DRIVER
12167 M:      Jacopo Mondi <jacopo@jmondi.org>
12168 L:      linux-media@vger.kernel.org
12169 T:      git git://linuxtv.org/media_tree.git
12170 S:      Odd fixes
12171 F:      drivers/media/i2c/ov772x.c
12172 F:      include/media/i2c/ov772x.h
12173 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12174
12175 OMNIVISION OV7740 SENSOR DRIVER
12176 M:      Wenyou Yang <wenyou.yang@microchip.com>
12177 L:      linux-media@vger.kernel.org
12178 T:      git git://linuxtv.org/media_tree.git
12179 S:      Maintained
12180 F:      drivers/media/i2c/ov7740.c
12181 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12182
12183 OMNIVISION OV9640 SENSOR DRIVER
12184 M:      Petr Cvek <petrcvekcz@gmail.com>
12185 L:      linux-media@vger.kernel.org
12186 S:      Maintained
12187 F:      drivers/media/i2c/ov9640.*
12188
12189 OMNIVISION OV8856 SENSOR DRIVER
12190 M:      Ben Kao <ben.kao@intel.com>
12191 L:      linux-media@vger.kernel.org
12192 T:      git git://linuxtv.org/media_tree.git
12193 S:      Maintained
12194 F:      drivers/media/i2c/ov8856.c
12195
12196 OMNIVISION OV9650 SENSOR DRIVER
12197 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12198 R:      Akinobu Mita <akinobu.mita@gmail.com>
12199 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12200 L:      linux-media@vger.kernel.org
12201 T:      git git://linuxtv.org/media_tree.git
12202 S:      Maintained
12203 F:      drivers/media/i2c/ov9650.c
12204 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12205
12206 ONENAND FLASH DRIVER
12207 M:      Kyungmin Park <kyungmin.park@samsung.com>
12208 L:      linux-mtd@lists.infradead.org
12209 S:      Maintained
12210 F:      drivers/mtd/nand/onenand/
12211 F:      include/linux/mtd/onenand*.h
12212
12213 OP-TEE DRIVER
12214 M:      Jens Wiklander <jens.wiklander@linaro.org>
12215 L:      tee-dev@lists.linaro.org
12216 S:      Maintained
12217 F:      drivers/tee/optee/
12218
12219 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12220 M:      Sumit Garg <sumit.garg@linaro.org>
12221 L:      tee-dev@lists.linaro.org
12222 S:      Maintained
12223 F:      drivers/char/hw_random/optee-rng.c
12224
12225 OPA-VNIC DRIVER
12226 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12227 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12228 L:      linux-rdma@vger.kernel.org
12229 S:      Supported
12230 F:      drivers/infiniband/ulp/opa_vnic
12231
12232 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12233 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12234 M:      Frank Rowand <frowand.list@gmail.com>
12235 L:      devicetree@vger.kernel.org
12236 S:      Maintained
12237 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12238 F:      Documentation/devicetree/overlay-notes.txt
12239 F:      drivers/of/overlay.c
12240 F:      drivers/of/resolver.c
12241 K:      of_overlay_notifier_
12242
12243 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12244 M:      Rob Herring <robh+dt@kernel.org>
12245 M:      Frank Rowand <frowand.list@gmail.com>
12246 L:      devicetree@vger.kernel.org
12247 W:      http://www.devicetree.org/
12248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12249 S:      Maintained
12250 F:      drivers/of/
12251 F:      include/linux/of*.h
12252 F:      scripts/dtc/
12253 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12254
12255 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12256 M:      Rob Herring <robh+dt@kernel.org>
12257 M:      Mark Rutland <mark.rutland@arm.com>
12258 L:      devicetree@vger.kernel.org
12259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12260 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12261 S:      Maintained
12262 F:      Documentation/devicetree/
12263 F:      arch/*/boot/dts/
12264 F:      include/dt-bindings/
12265
12266 OPENCORES I2C BUS DRIVER
12267 M:      Peter Korsgaard <peter@korsgaard.com>
12268 M:      Andrew Lunn <andrew@lunn.ch>
12269 L:      linux-i2c@vger.kernel.org
12270 S:      Maintained
12271 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12272 F:      Documentation/i2c/busses/i2c-ocores.rst
12273 F:      drivers/i2c/busses/i2c-ocores.c
12274 F:      include/linux/platform_data/i2c-ocores.h
12275
12276 OPENRISC ARCHITECTURE
12277 M:      Jonas Bonn <jonas@southpole.se>
12278 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12279 M:      Stafford Horne <shorne@gmail.com>
12280 T:      git git://github.com/openrisc/linux.git
12281 L:      openrisc@lists.librecores.org
12282 W:      http://openrisc.io
12283 S:      Maintained
12284 F:      Documentation/devicetree/bindings/openrisc/
12285 F:      Documentation/openrisc/
12286 F:      arch/openrisc/
12287 F:      drivers/irqchip/irq-ompic.c
12288 F:      drivers/irqchip/irq-or1k-*
12289
12290 OPENVSWITCH
12291 M:      Pravin B Shelar <pshelar@ovn.org>
12292 L:      netdev@vger.kernel.org
12293 L:      dev@openvswitch.org
12294 W:      http://openvswitch.org
12295 S:      Maintained
12296 F:      net/openvswitch/
12297 F:      include/uapi/linux/openvswitch.h
12298
12299 OPERATING PERFORMANCE POINTS (OPP)
12300 M:      Viresh Kumar <vireshk@kernel.org>
12301 M:      Nishanth Menon <nm@ti.com>
12302 M:      Stephen Boyd <sboyd@kernel.org>
12303 L:      linux-pm@vger.kernel.org
12304 S:      Maintained
12305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12306 F:      drivers/opp/
12307 F:      include/linux/pm_opp.h
12308 F:      Documentation/power/opp.rst
12309 F:      Documentation/devicetree/bindings/opp/
12310
12311 OPL4 DRIVER
12312 M:      Clemens Ladisch <clemens@ladisch.de>
12313 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12315 S:      Maintained
12316 F:      sound/drivers/opl4/
12317
12318 OPROFILE
12319 M:      Robert Richter <rric@kernel.org>
12320 L:      oprofile-list@lists.sf.net
12321 S:      Maintained
12322 F:      arch/*/include/asm/oprofile*.h
12323 F:      arch/*/oprofile/
12324 F:      drivers/oprofile/
12325 F:      include/linux/oprofile.h
12326
12327 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12328 M:      Mark Fasheh <mark@fasheh.com>
12329 M:      Joel Becker <jlbec@evilplan.org>
12330 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12331 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12332 W:      http://ocfs2.wiki.kernel.org
12333 S:      Supported
12334 F:      Documentation/filesystems/ocfs2.txt
12335 F:      Documentation/filesystems/dlmfs.txt
12336 F:      fs/ocfs2/
12337
12338 ORANGEFS FILESYSTEM
12339 M:      Mike Marshall <hubcap@omnibond.com>
12340 R:      Martin Brandenburg <martin@omnibond.com>
12341 L:      devel@lists.orangefs.org
12342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12343 S:      Supported
12344 F:      fs/orangefs/
12345 F:      Documentation/filesystems/orangefs.txt
12346
12347 ORINOCO DRIVER
12348 L:      linux-wireless@vger.kernel.org
12349 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12350 W:      http://www.nongnu.org/orinoco/
12351 S:      Orphan
12352 F:      drivers/net/wireless/intersil/orinoco/
12353
12354 OV2659 OMNIVISION SENSOR DRIVER
12355 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12356 L:      linux-media@vger.kernel.org
12357 W:      https://linuxtv.org
12358 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12359 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12360 S:      Maintained
12361 F:      drivers/media/i2c/ov2659.c
12362 F:      include/media/i2c/ov2659.h
12363
12364 OVERLAY FILESYSTEM
12365 M:      Miklos Szeredi <miklos@szeredi.hu>
12366 L:      linux-unionfs@vger.kernel.org
12367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12368 S:      Supported
12369 F:      fs/overlayfs/
12370 F:      Documentation/filesystems/overlayfs.txt
12371
12372 P54 WIRELESS DRIVER
12373 M:      Christian Lamparter <chunkeey@googlemail.com>
12374 L:      linux-wireless@vger.kernel.org
12375 W:      http://wireless.kernel.org/en/users/Drivers/p54
12376 S:      Maintained
12377 F:      drivers/net/wireless/intersil/p54/
12378
12379 PA SEMI ETHERNET DRIVER
12380 L:      netdev@vger.kernel.org
12381 S:      Orphan
12382 F:      drivers/net/ethernet/pasemi/*
12383
12384 PA SEMI SMBUS DRIVER
12385 L:      linux-i2c@vger.kernel.org
12386 S:      Orphan
12387 F:      drivers/i2c/busses/i2c-pasemi.c
12388
12389 PACKING
12390 M:      Vladimir Oltean <olteanv@gmail.com>
12391 L:      netdev@vger.kernel.org
12392 S:      Supported
12393 F:      lib/packing.c
12394 F:      include/linux/packing.h
12395 F:      Documentation/core-api/packing.rst
12396
12397 PADATA PARALLEL EXECUTION MECHANISM
12398 M:      Steffen Klassert <steffen.klassert@secunet.com>
12399 L:      linux-crypto@vger.kernel.org
12400 S:      Maintained
12401 F:      kernel/padata.c
12402 F:      include/linux/padata.h
12403 F:      Documentation/padata.txt
12404
12405 PAGE POOL
12406 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12407 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12408 L:      netdev@vger.kernel.org
12409 S:      Supported
12410 F:      net/core/page_pool.c
12411 F:      include/net/page_pool.h
12412
12413 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12414 M:      Harald Welte <laforge@gnumonks.org>
12415 L:      platform-driver-x86@vger.kernel.org
12416 S:      Maintained
12417 F:      drivers/platform/x86/panasonic-laptop.c
12418
12419 PARALLEL LCD/KEYPAD PANEL DRIVER
12420 M:      Willy Tarreau <willy@haproxy.com>
12421 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12422 S:      Odd Fixes
12423 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12424 F:      drivers/auxdisplay/panel.c
12425
12426 PARALLEL PORT SUBSYSTEM
12427 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12428 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12429 L:      linux-parport@lists.infradead.org (subscribers-only)
12430 S:      Maintained
12431 F:      drivers/parport/
12432 F:      include/linux/parport*.h
12433 F:      drivers/char/ppdev.c
12434 F:      include/uapi/linux/ppdev.h
12435 F:      Documentation/driver-api/parport*.rst
12436
12437 PARAVIRT_OPS INTERFACE
12438 M:      Juergen Gross <jgross@suse.com>
12439 M:      Thomas Hellstrom <thellstrom@vmware.com>
12440 M:      "VMware, Inc." <pv-drivers@vmware.com>
12441 L:      virtualization@lists.linux-foundation.org
12442 S:      Supported
12443 F:      Documentation/virt/paravirt_ops.rst
12444 F:      arch/*/kernel/paravirt*
12445 F:      arch/*/include/asm/paravirt*.h
12446 F:      include/linux/hypervisor.h
12447
12448 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12449 M:      Tim Waugh <tim@cyberelk.net>
12450 L:      linux-parport@lists.infradead.org (subscribers-only)
12451 S:      Maintained
12452 F:      Documentation/admin-guide/blockdev/paride.rst
12453 F:      drivers/block/paride/
12454
12455 PARISC ARCHITECTURE
12456 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12457 M:      Helge Deller <deller@gmx.de>
12458 L:      linux-parisc@vger.kernel.org
12459 W:      http://www.parisc-linux.org/
12460 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12463 S:      Maintained
12464 F:      arch/parisc/
12465 F:      Documentation/parisc/
12466 F:      drivers/parisc/
12467 F:      drivers/char/agp/parisc-agp.c
12468 F:      drivers/input/misc/hp_sdc_rtc.c
12469 F:      drivers/input/serio/gscps2.c
12470 F:      drivers/input/serio/hp_sdc*
12471 F:      drivers/parport/parport_gsc.*
12472 F:      drivers/tty/serial/8250/8250_gsc.c
12473 F:      drivers/video/fbdev/sti*
12474 F:      drivers/video/console/sti*
12475 F:      drivers/video/logo/logo_parisc*
12476 F:      include/linux/hp_sdc.h
12477
12478 PARMAN
12479 M:      Jiri Pirko <jiri@mellanox.com>
12480 L:      netdev@vger.kernel.org
12481 S:      Supported
12482 F:      lib/parman.c
12483 F:      lib/test_parman.c
12484 F:      include/linux/parman.h
12485
12486 PC ENGINES APU BOARD DRIVER
12487 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12488 S:      Maintained
12489 F:      drivers/platform/x86/pcengines-apuv2.c
12490
12491 PC87360 HARDWARE MONITORING DRIVER
12492 M:      Jim Cromie <jim.cromie@gmail.com>
12493 L:      linux-hwmon@vger.kernel.org
12494 S:      Maintained
12495 F:      Documentation/hwmon/pc87360.rst
12496 F:      drivers/hwmon/pc87360.c
12497
12498 PC8736x GPIO DRIVER
12499 M:      Jim Cromie <jim.cromie@gmail.com>
12500 S:      Maintained
12501 F:      drivers/char/pc8736x_gpio.c
12502
12503 PC87427 HARDWARE MONITORING DRIVER
12504 M:      Jean Delvare <jdelvare@suse.com>
12505 L:      linux-hwmon@vger.kernel.org
12506 S:      Maintained
12507 F:      Documentation/hwmon/pc87427.rst
12508 F:      drivers/hwmon/pc87427.c
12509
12510 PCA9532 LED DRIVER
12511 M:      Riku Voipio <riku.voipio@iki.fi>
12512 S:      Maintained
12513 F:      drivers/leds/leds-pca9532.c
12514 F:      include/linux/leds-pca9532.h
12515
12516 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12517 M:      Guenter Roeck <linux@roeck-us.net>
12518 L:      linux-i2c@vger.kernel.org
12519 S:      Maintained
12520 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12521
12522 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12523 M:      Khalid Aziz <khalid@gonehiking.org>
12524 S:      Maintained
12525 F:      drivers/firmware/pcdp.*
12526
12527 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12528 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12529 L:      linux-pci@vger.kernel.org
12530 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12531 S:      Maintained
12532 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12533 F:      drivers/pci/controller/pci-aardvark.c
12534
12535 PCI DRIVER FOR ALTERA PCIE IP
12536 M:      Ley Foon Tan <lftan@altera.com>
12537 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12538 L:      linux-pci@vger.kernel.org
12539 S:      Supported
12540 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12541 F:      drivers/pci/controller/pcie-altera.c
12542
12543 PCI DRIVER FOR APPLIEDMICRO XGENE
12544 M:      Toan Le <toan@os.amperecomputing.com>
12545 L:      linux-pci@vger.kernel.org
12546 L:      linux-arm-kernel@lists.infradead.org
12547 S:      Maintained
12548 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12549 F:      drivers/pci/controller/pci-xgene.c
12550
12551 PCI DRIVER FOR ARM VERSATILE PLATFORM
12552 M:      Rob Herring <robh@kernel.org>
12553 L:      linux-pci@vger.kernel.org
12554 L:      linux-arm-kernel@lists.infradead.org
12555 S:      Maintained
12556 F:      Documentation/devicetree/bindings/pci/versatile.txt
12557 F:      drivers/pci/controller/pci-versatile.c
12558
12559 PCI DRIVER FOR ARMADA 8K
12560 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12561 L:      linux-pci@vger.kernel.org
12562 L:      linux-arm-kernel@lists.infradead.org
12563 S:      Maintained
12564 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12565 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12566
12567 PCI DRIVER FOR CADENCE PCIE IP
12568 M:      Tom Joseph <tjoseph@cadence.com>
12569 L:      linux-pci@vger.kernel.org
12570 S:      Maintained
12571 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
12572 F:      drivers/pci/controller/pcie-cadence*
12573
12574 PCI DRIVER FOR FREESCALE LAYERSCAPE
12575 M:      Minghuan Lian <minghuan.Lian@nxp.com>
12576 M:      Mingkai Hu <mingkai.hu@nxp.com>
12577 M:      Roy Zang <roy.zang@nxp.com>
12578 L:      linuxppc-dev@lists.ozlabs.org
12579 L:      linux-pci@vger.kernel.org
12580 L:      linux-arm-kernel@lists.infradead.org
12581 S:      Maintained
12582 F:      drivers/pci/controller/dwc/*layerscape*
12583
12584 PCI DRIVER FOR GENERIC OF HOSTS
12585 M:      Will Deacon <will@kernel.org>
12586 L:      linux-pci@vger.kernel.org
12587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12588 S:      Maintained
12589 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
12590 F:      drivers/pci/controller/pci-host-common.c
12591 F:      drivers/pci/controller/pci-host-generic.c
12592
12593 PCI DRIVER FOR IMX6
12594 M:      Richard Zhu <hongxing.zhu@nxp.com>
12595 M:      Lucas Stach <l.stach@pengutronix.de>
12596 L:      linux-pci@vger.kernel.org
12597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12598 S:      Maintained
12599 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12600 F:      drivers/pci/controller/dwc/*imx6*
12601
12602 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12603 M:      Keith Busch <keith.busch@intel.com>
12604 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12605 L:      linux-pci@vger.kernel.org
12606 S:      Supported
12607 F:      drivers/pci/controller/vmd.c
12608
12609 PCI DRIVER FOR MICROSEMI SWITCHTEC
12610 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
12611 M:      Logan Gunthorpe <logang@deltatee.com>
12612 L:      linux-pci@vger.kernel.org
12613 S:      Maintained
12614 F:      Documentation/driver-api/switchtec.rst
12615 F:      Documentation/ABI/testing/sysfs-class-switchtec
12616 F:      drivers/pci/switch/switchtec*
12617 F:      include/uapi/linux/switchtec_ioctl.h
12618 F:      include/linux/switchtec.h
12619 F:      drivers/ntb/hw/mscc/
12620
12621 PCI DRIVER FOR MOBIVEIL PCIE IP
12622 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
12623 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12624 L:      linux-pci@vger.kernel.org
12625 S:      Supported
12626 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12627 F:      drivers/pci/controller/pcie-mobiveil.c
12628
12629 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12630 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12631 M:      Jason Cooper <jason@lakedaemon.net>
12632 L:      linux-pci@vger.kernel.org
12633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12634 S:      Maintained
12635 F:      drivers/pci/controller/*mvebu*
12636
12637 PCI DRIVER FOR NVIDIA TEGRA
12638 M:      Thierry Reding <thierry.reding@gmail.com>
12639 L:      linux-tegra@vger.kernel.org
12640 L:      linux-pci@vger.kernel.org
12641 S:      Supported
12642 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12643 F:      drivers/pci/controller/pci-tegra.c
12644
12645 PCI DRIVER FOR RENESAS R-CAR
12646 M:      Simon Horman <horms@verge.net.au>
12647 L:      linux-pci@vger.kernel.org
12648 L:      linux-renesas-soc@vger.kernel.org
12649 S:      Maintained
12650 F:      drivers/pci/controller/*rcar*
12651
12652 PCI DRIVER FOR SAMSUNG EXYNOS
12653 M:      Jingoo Han <jingoohan1@gmail.com>
12654 L:      linux-pci@vger.kernel.org
12655 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12656 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12657 S:      Maintained
12658 F:      drivers/pci/controller/dwc/pci-exynos.c
12659
12660 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12661 M:      Jingoo Han <jingoohan1@gmail.com>
12662 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
12663 L:      linux-pci@vger.kernel.org
12664 S:      Maintained
12665 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12666 F:      drivers/pci/controller/dwc/*designware*
12667
12668 PCI DRIVER FOR TI DRA7XX
12669 M:      Kishon Vijay Abraham I <kishon@ti.com>
12670 L:      linux-omap@vger.kernel.org
12671 L:      linux-pci@vger.kernel.org
12672 S:      Supported
12673 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12674 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12675
12676 PCI DRIVER FOR TI KEYSTONE
12677 M:      Murali Karicheri <m-karicheri2@ti.com>
12678 L:      linux-pci@vger.kernel.org
12679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12680 S:      Maintained
12681 F:      drivers/pci/controller/dwc/pci-keystone.c
12682
12683 PCI ENDPOINT SUBSYSTEM
12684 M:      Kishon Vijay Abraham I <kishon@ti.com>
12685 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12686 L:      linux-pci@vger.kernel.org
12687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12688 S:      Supported
12689 F:      drivers/pci/endpoint/
12690 F:      drivers/misc/pci_endpoint_test.c
12691 F:      tools/pci/
12692
12693 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12694 M:      Russell Currey <ruscur@russell.cc>
12695 M:      Sam Bobroff <sbobroff@linux.ibm.com>
12696 M:      Oliver O'Halloran <oohall@gmail.com>
12697 L:      linuxppc-dev@lists.ozlabs.org
12698 S:      Supported
12699 F:      Documentation/PCI/pci-error-recovery.rst
12700 F:      drivers/pci/pcie/aer.c
12701 F:      drivers/pci/pcie/dpc.c
12702 F:      drivers/pci/pcie/err.c
12703 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
12704 F:      arch/powerpc/kernel/eeh*.c
12705 F:      arch/powerpc/platforms/*/eeh*.c
12706 F:      arch/powerpc/include/*/eeh*.h
12707
12708 PCI ERROR RECOVERY
12709 M:      Linas Vepstas <linasvepstas@gmail.com>
12710 L:      linux-pci@vger.kernel.org
12711 S:      Supported
12712 F:      Documentation/PCI/pci-error-recovery.rst
12713
12714 PCI MSI DRIVER FOR ALTERA MSI IP
12715 M:      Ley Foon Tan <lftan@altera.com>
12716 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12717 L:      linux-pci@vger.kernel.org
12718 S:      Supported
12719 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
12720 F:      drivers/pci/controller/pcie-altera-msi.c
12721
12722 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
12723 M:      Toan Le <toan@os.amperecomputing.com>
12724 L:      linux-pci@vger.kernel.org
12725 L:      linux-arm-kernel@lists.infradead.org
12726 S:      Maintained
12727 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
12728 F:      drivers/pci/controller/pci-xgene-msi.c
12729
12730 PCI SUBSYSTEM
12731 M:      Bjorn Helgaas <bhelgaas@google.com>
12732 L:      linux-pci@vger.kernel.org
12733 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
12735 S:      Supported
12736 F:      Documentation/devicetree/bindings/pci/
12737 F:      Documentation/PCI/
12738 F:      drivers/acpi/pci*
12739 F:      drivers/pci/
12740 F:      include/asm-generic/pci*
12741 F:      include/linux/pci*
12742 F:      include/linux/of_pci.h
12743 F:      include/uapi/linux/pci*
12744 F:      lib/pci*
12745 F:      arch/x86/pci/
12746 F:      arch/x86/kernel/quirks.c
12747 F:      arch/x86/kernel/early-quirks.c
12748
12749 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
12750 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12751 R:      Andrew Murray <andrew.murray@arm.com>
12752 L:      linux-pci@vger.kernel.org
12753 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
12755 S:      Supported
12756 F:      drivers/pci/controller/
12757
12758 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
12759 M:      Jonathan Chocron <jonnyc@amazon.com>
12760 L:      linux-pci@vger.kernel.org
12761 S:      Maintained
12762 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
12763 F:      drivers/pci/controller/dwc/pcie-al.c
12764
12765 PCIE DRIVER FOR AMLOGIC MESON
12766 M:      Yue Wang <yue.wang@Amlogic.com>
12767 L:      linux-pci@vger.kernel.org
12768 L:      linux-amlogic@lists.infradead.org
12769 S:      Maintained
12770 F:      drivers/pci/controller/dwc/pci-meson.c
12771
12772 PCIE DRIVER FOR AXIS ARTPEC
12773 M:      Jesper Nilsson <jesper.nilsson@axis.com>
12774 L:      linux-arm-kernel@axis.com
12775 L:      linux-pci@vger.kernel.org
12776 S:      Maintained
12777 F:      Documentation/devicetree/bindings/pci/axis,artpec*
12778 F:      drivers/pci/controller/dwc/*artpec*
12779
12780 PCIE DRIVER FOR CAVIUM THUNDERX
12781 M:      David Daney <david.daney@cavium.com>
12782 L:      linux-pci@vger.kernel.org
12783 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12784 S:      Supported
12785 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
12786 F:      drivers/pci/controller/pci-thunder-*
12787
12788 PCIE DRIVER FOR HISILICON
12789 M:      Zhou Wang <wangzhou1@hisilicon.com>
12790 L:      linux-pci@vger.kernel.org
12791 S:      Maintained
12792 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
12793 F:      drivers/pci/controller/dwc/pcie-hisi.c
12794
12795 PCIE DRIVER FOR HISILICON KIRIN
12796 M:      Xiaowei Song <songxiaowei@hisilicon.com>
12797 M:      Binghui Wang <wangbinghui@hisilicon.com>
12798 L:      linux-pci@vger.kernel.org
12799 S:      Maintained
12800 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
12801 F:      drivers/pci/controller/dwc/pcie-kirin.c
12802
12803 PCIE DRIVER FOR HISILICON STB
12804 M:      Shawn Guo <shawn.guo@linaro.org>
12805 L:      linux-pci@vger.kernel.org
12806 S:      Maintained
12807 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
12808 F:      drivers/pci/controller/dwc/pcie-histb.c
12809
12810 PCIE DRIVER FOR MEDIATEK
12811 M:      Ryder Lee <ryder.lee@mediatek.com>
12812 L:      linux-pci@vger.kernel.org
12813 L:      linux-mediatek@lists.infradead.org
12814 S:      Supported
12815 F:      Documentation/devicetree/bindings/pci/mediatek*
12816 F:      drivers/pci/controller/*mediatek*
12817
12818 PCIE DRIVER FOR QUALCOMM MSM
12819 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
12820 L:      linux-pci@vger.kernel.org
12821 L:      linux-arm-msm@vger.kernel.org
12822 S:      Maintained
12823 F:      drivers/pci/controller/dwc/*qcom*
12824
12825 PCIE DRIVER FOR ROCKCHIP
12826 M:      Shawn Lin <shawn.lin@rock-chips.com>
12827 L:      linux-pci@vger.kernel.org
12828 L:      linux-rockchip@lists.infradead.org
12829 S:      Maintained
12830 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
12831 F:      drivers/pci/controller/pcie-rockchip*
12832
12833 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
12834 M:      Linus Walleij <linus.walleij@linaro.org>
12835 L:      linux-pci@vger.kernel.org
12836 S:      Maintained
12837 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
12838 F:      drivers/pci/controller/pci-v3-semi.c
12839
12840 PCIE DRIVER FOR SOCIONEXT UNIPHIER
12841 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
12842 L:      linux-pci@vger.kernel.org
12843 S:      Maintained
12844 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
12845 F:      drivers/pci/controller/dwc/pcie-uniphier.c
12846
12847 PCIE DRIVER FOR ST SPEAR13XX
12848 M:      Pratyush Anand <pratyush.anand@gmail.com>
12849 L:      linux-pci@vger.kernel.org
12850 S:      Maintained
12851 F:      drivers/pci/controller/dwc/*spear*
12852
12853 PCMCIA SUBSYSTEM
12854 M:      Dominik Brodowski <linux@dominikbrodowski.net>
12855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
12856 S:      Odd Fixes
12857 F:      Documentation/pcmcia/
12858 F:      tools/pcmcia/
12859 F:      drivers/pcmcia/
12860 F:      include/pcmcia/
12861
12862 PCNET32 NETWORK DRIVER
12863 M:      Don Fry <pcnet32@frontier.com>
12864 L:      netdev@vger.kernel.org
12865 S:      Maintained
12866 F:      drivers/net/ethernet/amd/pcnet32.c
12867
12868 PCRYPT PARALLEL CRYPTO ENGINE
12869 M:      Steffen Klassert <steffen.klassert@secunet.com>
12870 L:      linux-crypto@vger.kernel.org
12871 S:      Maintained
12872 F:      crypto/pcrypt.c
12873 F:      include/crypto/pcrypt.h
12874
12875 PEAQ WMI HOTKEYS DRIVER
12876 M:      Hans de Goede <hdegoede@redhat.com>
12877 L:      platform-driver-x86@vger.kernel.org
12878 S:      Maintained
12879 F:      drivers/platform/x86/peaq-wmi.c
12880
12881 PENSANDO ETHERNET DRIVERS
12882 M:      Shannon Nelson <snelson@pensando.io>
12883 M:      Pensando Drivers <drivers@pensando.io>
12884 L:      netdev@vger.kernel.org
12885 S:      Supported
12886 F:      Documentation/networking/device_drivers/pensando/ionic.rst
12887 F:      drivers/net/ethernet/pensando/
12888
12889 PER-CPU MEMORY ALLOCATOR
12890 M:      Dennis Zhou <dennis@kernel.org>
12891 M:      Tejun Heo <tj@kernel.org>
12892 M:      Christoph Lameter <cl@linux.com>
12893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
12894 S:      Maintained
12895 F:      include/linux/percpu*.h
12896 F:      mm/percpu*.c
12897 F:      arch/*/include/asm/percpu.h
12898
12899 PER-TASK DELAY ACCOUNTING
12900 M:      Balbir Singh <bsingharora@gmail.com>
12901 S:      Maintained
12902 F:      include/linux/delayacct.h
12903 F:      kernel/delayacct.c
12904
12905 PERFORMANCE EVENTS SUBSYSTEM
12906 M:      Peter Zijlstra <peterz@infradead.org>
12907 M:      Ingo Molnar <mingo@redhat.com>
12908 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
12909 R:      Mark Rutland <mark.rutland@arm.com>
12910 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
12911 R:      Jiri Olsa <jolsa@redhat.com>
12912 R:      Namhyung Kim <namhyung@kernel.org>
12913 L:      linux-kernel@vger.kernel.org
12914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
12915 S:      Supported
12916 F:      kernel/events/*
12917 F:      include/linux/perf_event.h
12918 F:      include/uapi/linux/perf_event.h
12919 F:      arch/*/kernel/perf_event*.c
12920 F:      arch/*/kernel/*/perf_event*.c
12921 F:      arch/*/kernel/*/*/perf_event*.c
12922 F:      arch/*/include/asm/perf_event.h
12923 F:      arch/*/kernel/perf_callchain.c
12924 F:      arch/*/events/*
12925 F:      arch/*/events/*/*
12926 F:      tools/perf/
12927
12928 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
12929 R:      John Garry <john.garry@huawei.com>
12930 R:      Will Deacon <will@kernel.org>
12931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12932 S:      Supported
12933 F:      tools/perf/pmu-events/arch/arm64/
12934
12935 PERSONALITY HANDLING
12936 M:      Christoph Hellwig <hch@infradead.org>
12937 L:      linux-abi-devel@lists.sourceforge.net
12938 S:      Maintained
12939 F:      include/linux/personality.h
12940 F:      include/uapi/linux/personality.h
12941
12942 PHOENIX RC FLIGHT CONTROLLER ADAPTER
12943 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12944 L:      linux-input@vger.kernel.org
12945 S:      Maintained
12946 F:      Documentation/input/devices/pxrc.rst
12947 F:      drivers/input/joystick/pxrc.c
12948
12949 FLYSKY FSIA6B RC RECEIVER
12950 M:      Markus Koch <markus@notsyncing.net>
12951 L:      linux-input@vger.kernel.org
12952 S:      Maintained
12953 F:      drivers/input/joystick/fsia6b.c
12954
12955 PHONET PROTOCOL
12956 M:      Remi Denis-Courmont <courmisch@gmail.com>
12957 S:      Supported
12958 F:      Documentation/networking/phonet.txt
12959 F:      include/linux/phonet.h
12960 F:      include/net/phonet/
12961 F:      include/uapi/linux/phonet.h
12962 F:      net/phonet/
12963
12964 PHRAM MTD DRIVER
12965 M:      Joern Engel <joern@lazybastard.org>
12966 L:      linux-mtd@lists.infradead.org
12967 S:      Maintained
12968 F:      drivers/mtd/devices/phram.c
12969
12970 PICOLCD HID DRIVER
12971 M:      Bruno Prémont <bonbons@linux-vserver.org>
12972 L:      linux-input@vger.kernel.org
12973 S:      Maintained
12974 F:      drivers/hid/hid-picolcd*
12975
12976 PICOXCELL SUPPORT
12977 M:      Jamie Iles <jamie@jamieiles.com>
12978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12979 T:      git git://github.com/jamieiles/linux-2.6-ji.git
12980 S:      Supported
12981 F:      arch/arm/boot/dts/picoxcell*
12982 F:      arch/arm/mach-picoxcell/
12983 F:      drivers/crypto/picoxcell*
12984
12985 PIDFD API
12986 M:      Christian Brauner <christian@brauner.io>
12987 L:      linux-kernel@vger.kernel.org
12988 S:      Maintained
12989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
12990 F:      samples/pidfd/
12991 F:      tools/testing/selftests/pidfd/
12992 F:      tools/testing/selftests/clone3/
12993 K:      (?i)pidfd
12994 K:      (?i)clone3
12995 K:      \b(clone_args|kernel_clone_args)\b
12996
12997 PIN CONTROL SUBSYSTEM
12998 M:      Linus Walleij <linus.walleij@linaro.org>
12999 L:      linux-gpio@vger.kernel.org
13000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13001 S:      Maintained
13002 F:      Documentation/devicetree/bindings/pinctrl/
13003 F:      Documentation/driver-api/pinctl.rst
13004 F:      drivers/pinctrl/
13005 F:      include/linux/pinctrl/
13006
13007 PIN CONTROLLER - MICROCHIP AT91
13008 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13009 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13010 L:      linux-gpio@vger.kernel.org
13011 S:      Supported
13012 F:      drivers/pinctrl/pinctrl-at91*
13013 F:      drivers/gpio/gpio-sama5d2-piobu.c
13014
13015 PIN CONTROLLER - FREESCALE
13016 M:      Dong Aisheng <aisheng.dong@nxp.com>
13017 M:      Fabio Estevam <festevam@gmail.com>
13018 M:      Shawn Guo <shawnguo@kernel.org>
13019 M:      Stefan Agner <stefan@agner.ch>
13020 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13021 L:      linux-gpio@vger.kernel.org
13022 S:      Maintained
13023 F:      drivers/pinctrl/freescale/
13024 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13025
13026 PIN CONTROLLER - INTEL
13027 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13028 M:      Andy Shevchenko <andy@kernel.org>
13029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13030 S:      Maintained
13031 F:      drivers/pinctrl/intel/
13032
13033 PIN CONTROLLER - MEDIATEK
13034 M:      Sean Wang <sean.wang@kernel.org>
13035 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13036 S:      Maintained
13037 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13038 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13039 F:      drivers/pinctrl/mediatek/
13040
13041 PIN CONTROLLER - QUALCOMM
13042 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13043 S:      Maintained
13044 L:      linux-arm-msm@vger.kernel.org
13045 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13046 F:      drivers/pinctrl/qcom/
13047
13048 PIN CONTROLLER - RENESAS
13049 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13050 L:      linux-renesas-soc@vger.kernel.org
13051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13052 S:      Maintained
13053 F:      drivers/pinctrl/pinctrl-rz*
13054 F:      drivers/pinctrl/sh-pfc/
13055
13056 PIN CONTROLLER - SAMSUNG
13057 M:      Tomasz Figa <tomasz.figa@gmail.com>
13058 M:      Krzysztof Kozlowski <krzk@kernel.org>
13059 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13061 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13062 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13064 S:      Maintained
13065 F:      drivers/pinctrl/samsung/
13066 F:      include/dt-bindings/pinctrl/samsung.h
13067 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13068
13069 PIN CONTROLLER - SINGLE
13070 M:      Tony Lindgren <tony@atomide.com>
13071 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13073 L:      linux-omap@vger.kernel.org
13074 S:      Maintained
13075 F:      drivers/pinctrl/pinctrl-single.c
13076
13077 PIN CONTROLLER - ST SPEAR
13078 M:      Viresh Kumar <vireshk@kernel.org>
13079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13080 W:      http://www.st.com/spear
13081 S:      Maintained
13082 F:      drivers/pinctrl/spear/
13083
13084 PISTACHIO SOC SUPPORT
13085 M:      James Hartley <james.hartley@sondrel.com>
13086 L:      linux-mips@vger.kernel.org
13087 S:      Odd Fixes
13088 F:      arch/mips/pistachio/
13089 F:      arch/mips/include/asm/mach-pistachio/
13090 F:      arch/mips/boot/dts/img/pistachio*
13091 F:      arch/mips/configs/pistachio*_defconfig
13092
13093 PKTCDVD DRIVER
13094 S:      Orphan
13095 M:      linux-block@vger.kernel.org
13096 F:      drivers/block/pktcdvd.c
13097 F:      include/linux/pktcdvd.h
13098 F:      include/uapi/linux/pktcdvd.h
13099
13100 PKUNITY SOC DRIVERS
13101 M:      Guan Xuetao <gxt@pku.edu.cn>
13102 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13103 S:      Maintained
13104 T:      git git://github.com/gxt/linux.git
13105 F:      drivers/input/serio/i8042-unicore32io.h
13106 F:      drivers/i2c/busses/i2c-puv3.c
13107 F:      drivers/video/fbdev/fb-puv3.c
13108 F:      drivers/rtc/rtc-puv3.c
13109
13110 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13111 M:      Tomasz Duszynski <tduszyns@gmail.com>
13112 S:      Maintained
13113 F:      drivers/iio/chemical/pms7003.c
13114 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13115
13116 PMBUS HARDWARE MONITORING DRIVERS
13117 M:      Guenter Roeck <linux@roeck-us.net>
13118 L:      linux-hwmon@vger.kernel.org
13119 W:      http://hwmon.wiki.kernel.org/
13120 W:      http://www.roeck-us.net/linux/drivers/
13121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13122 S:      Maintained
13123 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13124 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13125 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13126 F:      Documentation/hwmon/adm1275.rst
13127 F:      Documentation/hwmon/ibm-cffps.rst
13128 F:      Documentation/hwmon/ir35221.rst
13129 F:      Documentation/hwmon/lm25066.rst
13130 F:      Documentation/hwmon/ltc2978.rst
13131 F:      Documentation/hwmon/ltc3815.rst
13132 F:      Documentation/hwmon/max16064.rst
13133 F:      Documentation/hwmon/max20751.rst
13134 F:      Documentation/hwmon/max31785.rst
13135 F:      Documentation/hwmon/max34440.rst
13136 F:      Documentation/hwmon/max8688.rst
13137 F:      Documentation/hwmon/pmbus.rst
13138 F:      Documentation/hwmon/pmbus-core.rst
13139 F:      Documentation/hwmon/tps40422.rst
13140 F:      Documentation/hwmon/ucd9000.rst
13141 F:      Documentation/hwmon/ucd9200.rst
13142 F:      Documentation/hwmon/zl6100.rst
13143 F:      drivers/hwmon/pmbus/
13144 F:      include/linux/pmbus.h
13145
13146 PMC SIERRA MaxRAID DRIVER
13147 L:      linux-scsi@vger.kernel.org
13148 W:      http://www.pmc-sierra.com/
13149 S:      Orphan
13150 F:      drivers/scsi/pmcraid.*
13151
13152 PMC SIERRA PM8001 DRIVER
13153 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13154 L:      linux-scsi@vger.kernel.org
13155 S:      Supported
13156 F:      drivers/scsi/pm8001/
13157
13158 PM-GRAPH UTILITY
13159 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13160 L:      linux-pm@vger.kernel.org
13161 W:      https://01.org/pm-graph
13162 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13163 T:      git git://github.com/intel/pm-graph
13164 S:      Supported
13165 F:      tools/power/pm-graph
13166
13167 PNP SUPPORT
13168 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13169 S:      Maintained
13170 F:      drivers/pnp/
13171
13172 PNI RM3100 IIO DRIVER
13173 M:      Song Qiang <songqiang1304521@gmail.com>
13174 L:      linux-iio@vger.kernel.org
13175 S:      Maintained
13176 F:      drivers/iio/magnetometer/rm3100*
13177 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13178
13179 POSIX CLOCKS and TIMERS
13180 M:      Thomas Gleixner <tglx@linutronix.de>
13181 L:      linux-kernel@vger.kernel.org
13182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13183 S:      Maintained
13184 F:      fs/timerfd.c
13185 F:      include/linux/timer*
13186 F:      kernel/time/*timer*
13187
13188 POWER MANAGEMENT CORE
13189 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13190 L:      linux-pm@vger.kernel.org
13191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13192 B:      https://bugzilla.kernel.org
13193 S:      Supported
13194 F:      drivers/base/power/
13195 F:      include/linux/pm.h
13196 F:      include/linux/pm_*
13197 F:      include/linux/powercap.h
13198 F:      include/linux/intel_rapl.h
13199 F:      drivers/powercap/
13200 F:      kernel/configs/nopm.config
13201
13202 POWER STATE COORDINATION INTERFACE (PSCI)
13203 M:      Mark Rutland <mark.rutland@arm.com>
13204 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13205 L:      linux-arm-kernel@lists.infradead.org
13206 S:      Maintained
13207 F:      drivers/firmware/psci/
13208 F:      include/linux/psci.h
13209 F:      include/uapi/linux/psci.h
13210
13211 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13212 M:      Sebastian Reichel <sre@kernel.org>
13213 L:      linux-pm@vger.kernel.org
13214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13215 S:      Maintained
13216 F:      Documentation/ABI/testing/sysfs-class-power
13217 F:      Documentation/devicetree/bindings/power/supply/
13218 F:      include/linux/power_supply.h
13219 F:      drivers/power/supply/
13220
13221 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13222 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13223 L:      linuxppc-dev@lists.ozlabs.org
13224 S:      Maintained
13225 F:      drivers/char/powernv-op-panel.c
13226
13227 PPP OVER ATM (RFC 2364)
13228 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13229 S:      Maintained
13230 F:      net/atm/pppoatm.c
13231 F:      include/uapi/linux/atmppp.h
13232
13233 PPP OVER ETHERNET
13234 M:      Michal Ostrowski <mostrows@earthlink.net>
13235 S:      Maintained
13236 F:      drivers/net/ppp/pppoe.c
13237 F:      drivers/net/ppp/pppox.c
13238
13239 PPP OVER L2TP
13240 M:      James Chapman <jchapman@katalix.com>
13241 S:      Maintained
13242 F:      net/l2tp/l2tp_ppp.c
13243 F:      include/linux/if_pppol2tp.h
13244 F:      include/uapi/linux/if_pppol2tp.h
13245
13246 PPP PROTOCOL DRIVERS AND COMPRESSORS
13247 M:      Paul Mackerras <paulus@samba.org>
13248 L:      linux-ppp@vger.kernel.org
13249 S:      Maintained
13250 F:      drivers/net/ppp/ppp_*
13251
13252 PPS SUPPORT
13253 M:      Rodolfo Giometti <giometti@enneenne.com>
13254 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13255 L:      linuxpps@ml.enneenne.com (subscribers-only)
13256 S:      Maintained
13257 F:      Documentation/driver-api/pps.rst
13258 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13259 F:      Documentation/ABI/testing/sysfs-pps
13260 F:      drivers/pps/
13261 F:      include/linux/pps*.h
13262 F:      include/uapi/linux/pps.h
13263
13264 PPTP DRIVER
13265 M:      Dmitry Kozlov <xeb@mail.ru>
13266 L:      netdev@vger.kernel.org
13267 S:      Maintained
13268 F:      drivers/net/ppp/pptp.c
13269 W:      http://sourceforge.net/projects/accel-pptp
13270
13271 PRINTK
13272 M:      Petr Mladek <pmladek@suse.com>
13273 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13274 R:      Steven Rostedt <rostedt@goodmis.org>
13275 S:      Maintained
13276 F:      kernel/printk/
13277 F:      include/linux/printk.h
13278
13279 PRISM54 WIRELESS DRIVER
13280 M:      Luis Chamberlain <mcgrof@kernel.org>
13281 L:      linux-wireless@vger.kernel.org
13282 W:      http://wireless.kernel.org/en/users/Drivers/p54
13283 S:      Obsolete
13284 F:      drivers/net/wireless/intersil/prism54/
13285
13286 PROC FILESYSTEM
13287 R:      Alexey Dobriyan <adobriyan@gmail.com>
13288 L:      linux-kernel@vger.kernel.org
13289 L:      linux-fsdevel@vger.kernel.org
13290 S:      Maintained
13291 F:      fs/proc/
13292 F:      include/linux/proc_fs.h
13293 F:      tools/testing/selftests/proc/
13294 F:      Documentation/filesystems/proc.txt
13295
13296 PROC SYSCTL
13297 M:      Luis Chamberlain <mcgrof@kernel.org>
13298 M:      Kees Cook <keescook@chromium.org>
13299 M:      Iurii Zaikin <yzaikin@google.com>
13300 L:      linux-kernel@vger.kernel.org
13301 L:      linux-fsdevel@vger.kernel.org
13302 S:      Maintained
13303 F:      fs/proc/proc_sysctl.c
13304 F:      include/linux/sysctl.h
13305 F:      kernel/sysctl.c
13306 F:      kernel/sysctl-test.c
13307 F:      tools/testing/selftests/sysctl/
13308
13309 PS3 NETWORK SUPPORT
13310 M:      Geoff Levand <geoff@infradead.org>
13311 L:      netdev@vger.kernel.org
13312 L:      linuxppc-dev@lists.ozlabs.org
13313 S:      Maintained
13314 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13315
13316 PS3 PLATFORM SUPPORT
13317 M:      Geoff Levand <geoff@infradead.org>
13318 L:      linuxppc-dev@lists.ozlabs.org
13319 S:      Maintained
13320 F:      arch/powerpc/boot/ps3*
13321 F:      arch/powerpc/include/asm/lv1call.h
13322 F:      arch/powerpc/include/asm/ps3*.h
13323 F:      arch/powerpc/platforms/ps3/
13324 F:      drivers/*/ps3*
13325 F:      drivers/ps3/
13326 F:      drivers/rtc/rtc-ps3.c
13327 F:      drivers/usb/host/*ps3.c
13328 F:      sound/ppc/snd_ps3*
13329
13330 PS3VRAM DRIVER
13331 M:      Jim Paris <jim@jtan.com>
13332 M:      Geoff Levand <geoff@infradead.org>
13333 L:      linuxppc-dev@lists.ozlabs.org
13334 S:      Maintained
13335 F:      drivers/block/ps3vram.c
13336
13337 PSAMPLE PACKET SAMPLING SUPPORT:
13338 M:      Yotam Gigi <yotam.gi@gmail.com>
13339 S:      Maintained
13340 F:      net/psample
13341 F:      include/net/psample.h
13342 F:      include/uapi/linux/psample.h
13343
13344 PSTORE FILESYSTEM
13345 M:      Kees Cook <keescook@chromium.org>
13346 M:      Anton Vorontsov <anton@enomsg.org>
13347 M:      Colin Cross <ccross@android.com>
13348 M:      Tony Luck <tony.luck@intel.com>
13349 S:      Maintained
13350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13351 F:      fs/pstore/
13352 F:      include/linux/pstore*
13353 F:      drivers/firmware/efi/efi-pstore.c
13354 F:      drivers/acpi/apei/erst.c
13355 F:      Documentation/admin-guide/ramoops.rst
13356 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13357 K:      \b(pstore|ramoops)
13358
13359 PTP HARDWARE CLOCK SUPPORT
13360 M:      Richard Cochran <richardcochran@gmail.com>
13361 L:      netdev@vger.kernel.org
13362 S:      Maintained
13363 W:      http://linuxptp.sourceforge.net/
13364 F:      Documentation/ABI/testing/sysfs-ptp
13365 F:      Documentation/driver-api/ptp.rst
13366 F:      drivers/net/phy/dp83640*
13367 F:      drivers/ptp/*
13368 F:      include/linux/ptp_cl*
13369
13370 PTRACE SUPPORT
13371 M:      Oleg Nesterov <oleg@redhat.com>
13372 S:      Maintained
13373 F:      include/asm-generic/syscall.h
13374 F:      include/linux/ptrace.h
13375 F:      include/linux/regset.h
13376 F:      include/linux/tracehook.h
13377 F:      include/uapi/linux/ptrace.h
13378 F:      include/uapi/linux/ptrace.h
13379 F:      kernel/ptrace.c
13380 F:      arch/*/ptrace*.c
13381 F:      arch/*/*/ptrace*.c
13382 F:      arch/*/include/asm/ptrace*.h
13383
13384 PULSE8-CEC DRIVER
13385 M:      Hans Verkuil <hverkuil@xs4all.nl>
13386 L:      linux-media@vger.kernel.org
13387 T:      git git://linuxtv.org/media_tree.git
13388 S:      Maintained
13389 F:      drivers/media/usb/pulse8-cec/*
13390 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13391
13392 PVRUSB2 VIDEO4LINUX DRIVER
13393 M:      Mike Isely <isely@pobox.com>
13394 L:      pvrusb2@isely.net       (subscribers-only)
13395 L:      linux-media@vger.kernel.org
13396 W:      http://www.isely.net/pvrusb2/
13397 T:      git git://linuxtv.org/media_tree.git
13398 S:      Maintained
13399 F:      Documentation/media/v4l-drivers/pvrusb2*
13400 F:      drivers/media/usb/pvrusb2/
13401
13402 PWC WEBCAM DRIVER
13403 M:      Hans Verkuil <hverkuil@xs4all.nl>
13404 L:      linux-media@vger.kernel.org
13405 T:      git git://linuxtv.org/media_tree.git
13406 S:      Odd Fixes
13407 F:      drivers/media/usb/pwc/*
13408 F:      include/trace/events/pwc.h
13409
13410 PWM FAN DRIVER
13411 M:      Kamil Debski <kamil@wypas.org>
13412 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13413 L:      linux-hwmon@vger.kernel.org
13414 S:      Supported
13415 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13416 F:      Documentation/hwmon/pwm-fan.rst
13417 F:      drivers/hwmon/pwm-fan.c
13418
13419 PWM IR Transmitter
13420 M:      Sean Young <sean@mess.org>
13421 L:      linux-media@vger.kernel.org
13422 S:      Maintained
13423 F:      drivers/media/rc/pwm-ir-tx.c
13424
13425 PWM SUBSYSTEM
13426 M:      Thierry Reding <thierry.reding@gmail.com>
13427 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13428 L:      linux-pwm@vger.kernel.org
13429 S:      Maintained
13430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13431 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13432 F:      Documentation/driver-api/pwm.rst
13433 F:      Documentation/devicetree/bindings/pwm/
13434 F:      include/linux/pwm.h
13435 F:      drivers/pwm/
13436 F:      drivers/video/backlight/pwm_bl.c
13437 F:      include/linux/pwm_backlight.h
13438 F:      drivers/gpio/gpio-mvebu.c
13439 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13440 K:      pwm_(config|apply_state|ops)
13441
13442 PXA GPIO DRIVER
13443 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13444 L:      linux-gpio@vger.kernel.org
13445 S:      Maintained
13446 F:      drivers/gpio/gpio-pxa.c
13447
13448 PXA MMCI DRIVER
13449 S:      Orphan
13450
13451 PXA RTC DRIVER
13452 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13453 L:      linux-rtc@vger.kernel.org
13454 S:      Maintained
13455
13456 PXA2xx/PXA3xx SUPPORT
13457 M:      Daniel Mack <daniel@zonque.org>
13458 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13459 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13461 T:      git git://github.com/hzhuang1/linux.git
13462 T:      git git://github.com/rjarzmik/linux.git
13463 S:      Maintained
13464 F:      arch/arm/boot/dts/pxa*
13465 F:      arch/arm/mach-pxa/
13466 F:      drivers/dma/pxa*
13467 F:      drivers/pcmcia/pxa2xx*
13468 F:      drivers/pinctrl/pxa/
13469 F:      drivers/spi/spi-pxa2xx*
13470 F:      drivers/usb/gadget/udc/pxa2*
13471 F:      include/sound/pxa2xx-lib.h
13472 F:      sound/arm/pxa*
13473 F:      sound/soc/pxa/
13474
13475 QAT DRIVER
13476 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13477 L:      qat-linux@intel.com
13478 S:      Supported
13479 F:      drivers/crypto/qat/
13480
13481 QCOM AUDIO (ASoC) DRIVERS
13482 M:      Patrick Lai <plai@codeaurora.org>
13483 M:      Banajit Goswami <bgoswami@codeaurora.org>
13484 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13485 S:      Supported
13486 F:      sound/soc/qcom/
13487
13488 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13489 M:      Gabriel Somlo <somlo@cmu.edu>
13490 M:      "Michael S. Tsirkin" <mst@redhat.com>
13491 L:      qemu-devel@nongnu.org
13492 S:      Maintained
13493 F:      drivers/firmware/qemu_fw_cfg.c
13494 F:      include/uapi/linux/qemu_fw_cfg.h
13495
13496 QIB DRIVER
13497 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13498 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13499 L:      linux-rdma@vger.kernel.org
13500 S:      Supported
13501 F:      drivers/infiniband/hw/qib/
13502
13503 QLOGIC QL41xxx FCOE DRIVER
13504 M:      QLogic-Storage-Upstream@cavium.com
13505 L:      linux-scsi@vger.kernel.org
13506 S:      Supported
13507 F:      drivers/scsi/qedf/
13508
13509 QLOGIC QL41xxx ISCSI DRIVER
13510 M:      QLogic-Storage-Upstream@cavium.com
13511 L:      linux-scsi@vger.kernel.org
13512 S:      Supported
13513 F:      drivers/scsi/qedi/
13514
13515 QLOGIC QL4xxx ETHERNET DRIVER
13516 M:      Ariel Elior <aelior@marvell.com>
13517 M:      GR-everest-linux-l2@marvell.com
13518 L:      netdev@vger.kernel.org
13519 S:      Supported
13520 F:      drivers/net/ethernet/qlogic/qed/
13521 F:      include/linux/qed/
13522 F:      drivers/net/ethernet/qlogic/qede/
13523
13524 QLOGIC QL4xxx RDMA DRIVER
13525 M:      Michal Kalderon <mkalderon@marvell.com>
13526 M:      Ariel Elior <aelior@marvell.com>
13527 L:      linux-rdma@vger.kernel.org
13528 S:      Supported
13529 F:      drivers/infiniband/hw/qedr/
13530 F:      include/uapi/rdma/qedr-abi.h
13531
13532 QLOGIC QLA1280 SCSI DRIVER
13533 M:      Michael Reed <mdr@sgi.com>
13534 L:      linux-scsi@vger.kernel.org
13535 S:      Maintained
13536 F:      drivers/scsi/qla1280.[ch]
13537
13538 QLOGIC QLA2XXX FC-SCSI DRIVER
13539 M:      hmadhani@marvell.com
13540 L:      linux-scsi@vger.kernel.org
13541 S:      Supported
13542 F:      Documentation/scsi/LICENSE.qla2xxx
13543 F:      drivers/scsi/qla2xxx/
13544
13545 QLOGIC QLA3XXX NETWORK DRIVER
13546 M:      GR-Linux-NIC-Dev@marvell.com
13547 L:      netdev@vger.kernel.org
13548 S:      Supported
13549 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13550 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13551
13552 QLOGIC QLA4XXX iSCSI DRIVER
13553 M:      QLogic-Storage-Upstream@qlogic.com
13554 L:      linux-scsi@vger.kernel.org
13555 S:      Supported
13556 F:      Documentation/scsi/LICENSE.qla4xxx
13557 F:      drivers/scsi/qla4xxx/
13558
13559 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13560 M:      Shahed Shaikh <shshaikh@marvell.com>
13561 M:      Manish Chopra <manishc@marvell.com>
13562 M:      GR-Linux-NIC-Dev@marvell.com
13563 L:      netdev@vger.kernel.org
13564 S:      Supported
13565 F:      drivers/net/ethernet/qlogic/qlcnic/
13566
13567 QLOGIC QLGE 10Gb ETHERNET DRIVER
13568 M:      Manish Chopra <manishc@marvell.com>
13569 M:      GR-Linux-NIC-Dev@marvell.com
13570 L:      netdev@vger.kernel.org
13571 S:      Supported
13572 F:      drivers/staging/qlge/
13573
13574 QM1D1B0004 MEDIA DRIVER
13575 M:      Akihiro Tsukada <tskd08@gmail.com>
13576 L:      linux-media@vger.kernel.org
13577 S:      Odd Fixes
13578 F:      drivers/media/tuners/qm1d1b0004*
13579
13580 QM1D1C0042 MEDIA DRIVER
13581 M:      Akihiro Tsukada <tskd08@gmail.com>
13582 L:      linux-media@vger.kernel.org
13583 S:      Odd Fixes
13584 F:      drivers/media/tuners/qm1d1c0042*
13585
13586 QNX4 FILESYSTEM
13587 M:      Anders Larsen <al@alarsen.net>
13588 W:      http://www.alarsen.net/linux/qnx4fs/
13589 S:      Maintained
13590 F:      fs/qnx4/
13591 F:      include/uapi/linux/qnx4_fs.h
13592 F:      include/uapi/linux/qnxtypes.h
13593
13594 QORIQ DPAA2 FSL-MC BUS DRIVER
13595 M:      Stuart Yoder <stuyoder@gmail.com>
13596 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
13597 L:      linux-kernel@vger.kernel.org
13598 S:      Maintained
13599 F:      drivers/bus/fsl-mc/
13600 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13601 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13602
13603 QT1010 MEDIA DRIVER
13604 M:      Antti Palosaari <crope@iki.fi>
13605 L:      linux-media@vger.kernel.org
13606 W:      https://linuxtv.org
13607 W:      http://palosaari.fi/linux/
13608 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13609 T:      git git://linuxtv.org/anttip/media_tree.git
13610 S:      Maintained
13611 F:      drivers/media/tuners/qt1010*
13612
13613 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13614 M:      Kalle Valo <kvalo@codeaurora.org>
13615 L:      ath10k@lists.infradead.org
13616 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13618 S:      Supported
13619 F:      drivers/net/wireless/ath/ath10k/
13620
13621 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13622 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
13623 L:      linux-wireless@vger.kernel.org
13624 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13625 S:      Supported
13626 F:      drivers/net/wireless/ath/ath9k/
13627
13628 QUALCOMM CAMERA SUBSYSTEM DRIVER
13629 M:      Todor Tomov <todor.too@gmail.com>
13630 L:      linux-media@vger.kernel.org
13631 S:      Maintained
13632 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13633 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13634 F:      drivers/media/platform/qcom/camss/
13635
13636 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13637 M:      Ilia Lin <ilia.lin@kernel.org>
13638 L:      linux-pm@vger.kernel.org
13639 S:      Maintained
13640 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13641 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13642
13643 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13644 M:      Timur Tabi <timur@kernel.org>
13645 L:      netdev@vger.kernel.org
13646 S:      Maintained
13647 F:      drivers/net/ethernet/qualcomm/emac/
13648
13649 QUALCOMM ETHQOS ETHERNET DRIVER
13650 M:      Vinod Koul <vkoul@kernel.org>
13651 M:      Niklas Cassel <niklas.cassel@linaro.org>
13652 L:      netdev@vger.kernel.org
13653 S:      Maintained
13654 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13655 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13656
13657 QUALCOMM GENERIC INTERFACE I2C DRIVER
13658 M:      Alok Chauhan <alokc@codeaurora.org>
13659 L:      linux-i2c@vger.kernel.org
13660 L:      linux-arm-msm@vger.kernel.org
13661 S:      Supported
13662 F:      drivers/i2c/busses/i2c-qcom-geni.c
13663
13664 QUALCOMM HEXAGON ARCHITECTURE
13665 M:      Brian Cain <bcain@codeaurora.org>
13666 L:      linux-hexagon@vger.kernel.org
13667 S:      Supported
13668 F:      arch/hexagon/
13669
13670 QUALCOMM HIDMA DRIVER
13671 M:      Sinan Kaya <okaya@kernel.org>
13672 L:      linux-arm-kernel@lists.infradead.org
13673 L:      linux-arm-msm@vger.kernel.org
13674 L:      dmaengine@vger.kernel.org
13675 S:      Supported
13676 F:      drivers/dma/qcom/hidma*
13677
13678 QUALCOMM IOMMU
13679 M:      Rob Clark <robdclark@gmail.com>
13680 L:      iommu@lists.linux-foundation.org
13681 L:      linux-arm-msm@vger.kernel.org
13682 S:      Maintained
13683 F:      drivers/iommu/qcom_iommu.c
13684
13685 QUALCOMM TSENS THERMAL DRIVER
13686 M:      Amit Kucheria <amit.kucheria@linaro.org>
13687 L:      linux-pm@vger.kernel.org
13688 L:      linux-arm-msm@vger.kernel.org
13689 S:      Maintained
13690 F:      drivers/thermal/qcom/
13691
13692 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
13693 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
13694 L:      linux-media@vger.kernel.org
13695 L:      linux-arm-msm@vger.kernel.org
13696 T:      git git://linuxtv.org/media_tree.git
13697 S:      Maintained
13698 F:      drivers/media/platform/qcom/venus/
13699
13700 QUALCOMM WCN36XX WIRELESS DRIVER
13701 M:      Kalle Valo <kvalo@codeaurora.org>
13702 L:      wcn36xx@lists.infradead.org
13703 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
13704 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
13705 S:      Supported
13706 F:      drivers/net/wireless/ath/wcn36xx/
13707
13708 QUANTENNA QTNFMAC WIRELESS DRIVER
13709 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
13710 M:      Avinash Patil <avinashp@quantenna.com>
13711 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
13712 L:      linux-wireless@vger.kernel.org
13713 S:      Maintained
13714 F:      drivers/net/wireless/quantenna
13715
13716 RADEON and AMDGPU DRM DRIVERS
13717 M:      Alex Deucher <alexander.deucher@amd.com>
13718 M:      Christian König <christian.koenig@amd.com>
13719 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
13720 L:      amd-gfx@lists.freedesktop.org
13721 T:      git git://people.freedesktop.org/~agd5f/linux
13722 S:      Supported
13723 F:      drivers/gpu/drm/radeon/
13724 F:      include/uapi/drm/radeon_drm.h
13725 F:      drivers/gpu/drm/amd/
13726 F:      include/uapi/drm/amdgpu_drm.h
13727
13728 RADEON FRAMEBUFFER DISPLAY DRIVER
13729 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
13730 L:      linux-fbdev@vger.kernel.org
13731 S:      Maintained
13732 F:      drivers/video/fbdev/aty/radeon*
13733 F:      include/uapi/linux/radeonfb.h
13734
13735 RADIOSHARK RADIO DRIVER
13736 M:      Hans Verkuil <hverkuil@xs4all.nl>
13737 L:      linux-media@vger.kernel.org
13738 T:      git git://linuxtv.org/media_tree.git
13739 S:      Maintained
13740 F:      drivers/media/radio/radio-shark.c
13741
13742 RADIOSHARK2 RADIO DRIVER
13743 M:      Hans Verkuil <hverkuil@xs4all.nl>
13744 L:      linux-media@vger.kernel.org
13745 T:      git git://linuxtv.org/media_tree.git
13746 S:      Maintained
13747 F:      drivers/media/radio/radio-shark2.c
13748 F:      drivers/media/radio/radio-tea5777.c
13749
13750 RADOS BLOCK DEVICE (RBD)
13751 M:      Ilya Dryomov <idryomov@gmail.com>
13752 M:      Sage Weil <sage@redhat.com>
13753 M:      Alex Elder <elder@kernel.org>
13754 L:      ceph-devel@vger.kernel.org
13755 W:      http://ceph.com/
13756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
13757 T:      git git://github.com/ceph/ceph-client.git
13758 S:      Supported
13759 F:      Documentation/ABI/testing/sysfs-bus-rbd
13760 F:      drivers/block/rbd.c
13761 F:      drivers/block/rbd_types.h
13762
13763 RAGE128 FRAMEBUFFER DISPLAY DRIVER
13764 M:      Paul Mackerras <paulus@samba.org>
13765 L:      linux-fbdev@vger.kernel.org
13766 S:      Maintained
13767 F:      drivers/video/fbdev/aty/aty128fb.c
13768
13769 RAINSHADOW-CEC DRIVER
13770 M:      Hans Verkuil <hverkuil@xs4all.nl>
13771 L:      linux-media@vger.kernel.org
13772 T:      git git://linuxtv.org/media_tree.git
13773 S:      Maintained
13774 F:      drivers/media/usb/rainshadow-cec/*
13775
13776 RALINK MIPS ARCHITECTURE
13777 M:      John Crispin <john@phrozen.org>
13778 L:      linux-mips@vger.kernel.org
13779 S:      Maintained
13780 F:      arch/mips/ralink
13781
13782 RALINK RT2X00 WIRELESS LAN DRIVER
13783 M:      Stanislaw Gruszka <sgruszka@redhat.com>
13784 M:      Helmut Schaa <helmut.schaa@googlemail.com>
13785 L:      linux-wireless@vger.kernel.org
13786 S:      Maintained
13787 F:      drivers/net/wireless/ralink/rt2x00/
13788
13789 RAMDISK RAM BLOCK DEVICE DRIVER
13790 M:      Jens Axboe <axboe@kernel.dk>
13791 S:      Maintained
13792 F:      Documentation/admin-guide/blockdev/ramdisk.rst
13793 F:      drivers/block/brd.c
13794
13795 RANCHU VIRTUAL BOARD FOR MIPS
13796 M:      Miodrag Dinic <miodrag.dinic@mips.com>
13797 L:      linux-mips@vger.kernel.org
13798 S:      Supported
13799 F:      arch/mips/generic/board-ranchu.c
13800 F:      arch/mips/configs/generic/board-ranchu.config
13801
13802 RANDOM NUMBER DRIVER
13803 M:      "Theodore Ts'o" <tytso@mit.edu>
13804 S:      Maintained
13805 F:      drivers/char/random.c
13806
13807 RAPIDIO SUBSYSTEM
13808 M:      Matt Porter <mporter@kernel.crashing.org>
13809 M:      Alexandre Bounine <alex.bou9@gmail.com>
13810 S:      Maintained
13811 F:      drivers/rapidio/
13812
13813 RAS INFRASTRUCTURE
13814 M:      Tony Luck <tony.luck@intel.com>
13815 M:      Borislav Petkov <bp@alien8.de>
13816 L:      linux-edac@vger.kernel.org
13817 S:      Maintained
13818 F:      drivers/ras/
13819 F:      include/linux/ras.h
13820 F:      include/ras/ras_event.h
13821 F:      Documentation/admin-guide/ras.rst
13822
13823 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
13824 L:      linux-wireless@vger.kernel.org
13825 S:      Orphan
13826 F:      drivers/net/wireless/ray*
13827
13828 RCUTORTURE TEST FRAMEWORK
13829 M:      "Paul E. McKenney" <paulmck@kernel.org>
13830 M:      Josh Triplett <josh@joshtriplett.org>
13831 R:      Steven Rostedt <rostedt@goodmis.org>
13832 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13833 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13834 L:      rcu@vger.kernel.org
13835 S:      Supported
13836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13837 F:      tools/testing/selftests/rcutorture
13838
13839 RDC R-321X SoC
13840 M:      Florian Fainelli <florian@openwrt.org>
13841 S:      Maintained
13842
13843 RDC R6040 FAST ETHERNET DRIVER
13844 M:      Florian Fainelli <f.fainelli@gmail.com>
13845 L:      netdev@vger.kernel.org
13846 S:      Maintained
13847 F:      drivers/net/ethernet/rdc/r6040.c
13848
13849 RDMAVT - RDMA verbs software
13850 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13851 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13852 L:      linux-rdma@vger.kernel.org
13853 S:      Supported
13854 F:      drivers/infiniband/sw/rdmavt
13855
13856 RDS - RELIABLE DATAGRAM SOCKETS
13857 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
13858 L:      netdev@vger.kernel.org
13859 L:      linux-rdma@vger.kernel.org
13860 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
13861 W:      https://oss.oracle.com/projects/rds/
13862 S:      Supported
13863 F:      net/rds/
13864 F:      Documentation/networking/rds.txt
13865
13866 RDT - RESOURCE ALLOCATION
13867 M:      Fenghua Yu <fenghua.yu@intel.com>
13868 M:      Reinette Chatre <reinette.chatre@intel.com>
13869 L:      linux-kernel@vger.kernel.org
13870 S:      Supported
13871 F:      arch/x86/kernel/cpu/resctrl/
13872 F:      arch/x86/include/asm/resctrl_sched.h
13873 F:      Documentation/x86/resctrl*
13874
13875 READ-COPY UPDATE (RCU)
13876 M:      "Paul E. McKenney" <paulmck@kernel.org>
13877 M:      Josh Triplett <josh@joshtriplett.org>
13878 R:      Steven Rostedt <rostedt@goodmis.org>
13879 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13880 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13881 R:      Joel Fernandes <joel@joelfernandes.org>
13882 L:      rcu@vger.kernel.org
13883 W:      http://www.rdrop.com/users/paulmck/RCU/
13884 S:      Supported
13885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13886 F:      Documentation/RCU/
13887 X:      Documentation/RCU/torture.txt
13888 F:      include/linux/rcu*
13889 X:      include/linux/srcu*.h
13890 F:      kernel/rcu/
13891 X:      kernel/rcu/srcu*.c
13892
13893 REAL TIME CLOCK (RTC) SUBSYSTEM
13894 M:      Alessandro Zummo <a.zummo@towertech.it>
13895 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13896 L:      linux-rtc@vger.kernel.org
13897 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
13898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
13899 S:      Maintained
13900 F:      Documentation/devicetree/bindings/rtc/
13901 F:      Documentation/admin-guide/rtc.rst
13902 F:      drivers/rtc/
13903 F:      include/linux/rtc.h
13904 F:      include/uapi/linux/rtc.h
13905 F:      include/linux/rtc/
13906 F:      include/linux/platform_data/rtc-*
13907 F:      tools/testing/selftests/rtc/
13908
13909 REALTEK AUDIO CODECS
13910 M:      Bard Liao <bardliao@realtek.com>
13911 M:      Oder Chiou <oder_chiou@realtek.com>
13912 S:      Maintained
13913 F:      sound/soc/codecs/rt*
13914 F:      include/sound/rt*.h
13915
13916 REALTEK RTL83xx SMI DSA ROUTER CHIPS
13917 M:      Linus Walleij <linus.walleij@linaro.org>
13918 S:      Maintained
13919 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
13920 F:      drivers/net/dsa/realtek-smi*
13921 F:      drivers/net/dsa/rtl83*
13922
13923 REDPINE WIRELESS DRIVER
13924 M:      Amitkumar Karwar <amitkarwar@gmail.com>
13925 M:      Siva Rebbagondla <siva8118@gmail.com>
13926 L:      linux-wireless@vger.kernel.org
13927 S:      Maintained
13928 F:      drivers/net/wireless/rsi/
13929
13930 REGISTER MAP ABSTRACTION
13931 M:      Mark Brown <broonie@kernel.org>
13932 L:      linux-kernel@vger.kernel.org
13933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
13934 S:      Supported
13935 F:      Documentation/devicetree/bindings/regmap/
13936 F:      drivers/base/regmap/
13937 F:      include/linux/regmap.h
13938
13939 REISERFS FILE SYSTEM
13940 L:      reiserfs-devel@vger.kernel.org
13941 S:      Supported
13942 F:      fs/reiserfs/
13943
13944 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
13945 M:      Ohad Ben-Cohen <ohad@wizery.com>
13946 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13947 L:      linux-remoteproc@vger.kernel.org
13948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
13949 S:      Maintained
13950 F:      Documentation/devicetree/bindings/remoteproc/
13951 F:      Documentation/ABI/testing/sysfs-class-remoteproc
13952 F:      Documentation/remoteproc.txt
13953 F:      drivers/remoteproc/
13954 F:      include/linux/remoteproc.h
13955 F:      include/linux/remoteproc/
13956
13957 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
13958 M:      Ohad Ben-Cohen <ohad@wizery.com>
13959 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13960 L:      linux-remoteproc@vger.kernel.org
13961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
13962 S:      Maintained
13963 F:      drivers/rpmsg/
13964 F:      Documentation/rpmsg.txt
13965 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
13966 F:      include/linux/rpmsg.h
13967 F:      include/linux/rpmsg/
13968 F:      include/uapi/linux/rpmsg.h
13969 F:      samples/rpmsg/
13970
13971 RENESAS CLOCK DRIVERS
13972 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13973 L:      linux-renesas-soc@vger.kernel.org
13974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
13975 S:      Supported
13976 F:      drivers/clk/renesas/
13977
13978 RENESAS EMEV2 I2C DRIVER
13979 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13980 S:      Supported
13981 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
13982 F:      drivers/i2c/busses/i2c-emev2.c
13983
13984 RENESAS ETHERNET DRIVERS
13985 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
13986 L:      netdev@vger.kernel.org
13987 L:      linux-renesas-soc@vger.kernel.org
13988 F:      Documentation/devicetree/bindings/net/renesas,*.txt
13989 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
13990 F:      drivers/net/ethernet/renesas/
13991 F:      include/linux/sh_eth.h
13992
13993 RENESAS R-CAR GYROADC DRIVER
13994 M:      Marek Vasut <marek.vasut@gmail.com>
13995 L:      linux-iio@vger.kernel.org
13996 S:      Supported
13997 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
13998 F:      drivers/iio/adc/rcar-gyroadc.c
13999
14000 RENESAS R-CAR I2C DRIVERS
14001 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14002 S:      Supported
14003 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14004 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14005 F:      drivers/i2c/busses/i2c-rcar.c
14006 F:      drivers/i2c/busses/i2c-sh_mobile.c
14007
14008 RENESAS RIIC DRIVER
14009 M:      Chris Brandt <chris.brandt@renesas.com>
14010 S:      Supported
14011 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14012 F:      drivers/i2c/busses/i2c-riic.c
14013
14014 RENESAS USB PHY DRIVER
14015 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14016 L:      linux-renesas-soc@vger.kernel.org
14017 S:      Maintained
14018 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14019
14020 RESET CONTROLLER FRAMEWORK
14021 M:      Philipp Zabel <p.zabel@pengutronix.de>
14022 T:      git git://git.pengutronix.de/git/pza/linux
14023 S:      Maintained
14024 F:      drivers/reset/
14025 F:      Documentation/devicetree/bindings/reset/
14026 F:      include/dt-bindings/reset/
14027 F:      include/linux/reset.h
14028 F:      include/linux/reset/
14029 F:      include/linux/reset-controller.h
14030
14031 RESTARTABLE SEQUENCES SUPPORT
14032 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14033 M:      Peter Zijlstra <peterz@infradead.org>
14034 M:      "Paul E. McKenney" <paulmck@kernel.org>
14035 M:      Boqun Feng <boqun.feng@gmail.com>
14036 L:      linux-kernel@vger.kernel.org
14037 S:      Supported
14038 F:      kernel/rseq.c
14039 F:      include/uapi/linux/rseq.h
14040 F:      include/trace/events/rseq.h
14041 F:      tools/testing/selftests/rseq/
14042
14043 RFKILL
14044 M:      Johannes Berg <johannes@sipsolutions.net>
14045 L:      linux-wireless@vger.kernel.org
14046 W:      http://wireless.kernel.org/
14047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14049 S:      Maintained
14050 F:      Documentation/driver-api/rfkill.rst
14051 F:      Documentation/ABI/stable/sysfs-class-rfkill
14052 F:      net/rfkill/
14053 F:      include/linux/rfkill.h
14054 F:      include/uapi/linux/rfkill.h
14055
14056 RHASHTABLE
14057 M:      Thomas Graf <tgraf@suug.ch>
14058 M:      Herbert Xu <herbert@gondor.apana.org.au>
14059 L:      netdev@vger.kernel.org
14060 S:      Maintained
14061 F:      lib/rhashtable.c
14062 F:      lib/test_rhashtable.c
14063 F:      include/linux/rhashtable.h
14064 F:      include/linux/rhashtable-types.h
14065
14066 RICOH R5C592 MEMORYSTICK DRIVER
14067 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14068 S:      Maintained
14069 F:      drivers/memstick/host/r592.*
14070
14071 RICOH SMARTMEDIA/XD DRIVER
14072 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14073 S:      Maintained
14074 F:      drivers/mtd/nand/raw/r852.c
14075 F:      drivers/mtd/nand/raw/r852.h
14076
14077 RISC-V ARCHITECTURE
14078 M:      Paul Walmsley <paul.walmsley@sifive.com>
14079 M:      Palmer Dabbelt <palmer@dabbelt.com>
14080 M:      Albert Ou <aou@eecs.berkeley.edu>
14081 L:      linux-riscv@lists.infradead.org
14082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14083 S:      Supported
14084 F:      arch/riscv/
14085 K:      riscv
14086 N:      riscv
14087
14088 ROCCAT DRIVERS
14089 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
14090 W:      http://sourceforge.net/projects/roccat/
14091 S:      Maintained
14092 F:      drivers/hid/hid-roccat*
14093 F:      include/linux/hid-roccat*
14094 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14095
14096 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14097 M:      Jacob Chen <jacob-chen@iotwrt.com>
14098 M:      Ezequiel Garcia <ezequiel@collabora.com>
14099 L:      linux-media@vger.kernel.org
14100 S:      Maintained
14101 F:      drivers/media/platform/rockchip/rga/
14102 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
14103
14104 HANTRO VPU CODEC DRIVER
14105 M:      Ezequiel Garcia <ezequiel@collabora.com>
14106 L:      linux-media@vger.kernel.org
14107 S:      Maintained
14108 F:      drivers/staging/media/hantro/
14109 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
14110
14111 ROCKER DRIVER
14112 M:      Jiri Pirko <jiri@resnulli.us>
14113 L:      netdev@vger.kernel.org
14114 S:      Supported
14115 F:      drivers/net/ethernet/rocker/
14116
14117 ROCKETPORT DRIVER
14118 W:      http://www.comtrol.com
14119 S:      Maintained
14120 F:      Documentation/driver-api/serial/rocket.rst
14121 F:      drivers/tty/rocket*
14122
14123 ROCKETPORT EXPRESS/INFINITY DRIVER
14124 M:      Kevin Cernekee <cernekee@gmail.com>
14125 L:      linux-serial@vger.kernel.org
14126 S:      Odd Fixes
14127 F:      drivers/tty/serial/rp2.*
14128
14129 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14130 M:      Tomasz Duszynski <tduszyns@gmail.com>
14131 S:      Maintained
14132 F:      drivers/iio/light/bh1750.c
14133 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14134
14135 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14136 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14137 L:      linux-kernel@vger.kernel.org
14138 L:      linux-renesas-soc@vger.kernel.org
14139 S:      Supported
14140 F:      drivers/mfd/bd9571mwv.c
14141 F:      drivers/regulator/bd9571mwv-regulator.c
14142 F:      drivers/gpio/gpio-bd9571mwv.c
14143 F:      include/linux/mfd/bd9571mwv.h
14144 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14145
14146 ROSE NETWORK LAYER
14147 M:      Ralf Baechle <ralf@linux-mips.org>
14148 L:      linux-hams@vger.kernel.org
14149 W:      http://www.linux-ax25.org/
14150 S:      Maintained
14151 F:      include/net/rose.h
14152 F:      include/uapi/linux/rose.h
14153 F:      net/rose/
14154
14155 RTL2830 MEDIA DRIVER
14156 M:      Antti Palosaari <crope@iki.fi>
14157 L:      linux-media@vger.kernel.org
14158 W:      https://linuxtv.org
14159 W:      http://palosaari.fi/linux/
14160 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14161 T:      git git://linuxtv.org/anttip/media_tree.git
14162 S:      Maintained
14163 F:      drivers/media/dvb-frontends/rtl2830*
14164
14165 RTL2832 MEDIA DRIVER
14166 M:      Antti Palosaari <crope@iki.fi>
14167 L:      linux-media@vger.kernel.org
14168 W:      https://linuxtv.org
14169 W:      http://palosaari.fi/linux/
14170 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14171 T:      git git://linuxtv.org/anttip/media_tree.git
14172 S:      Maintained
14173 F:      drivers/media/dvb-frontends/rtl2832*
14174
14175 RTL2832_SDR MEDIA DRIVER
14176 M:      Antti Palosaari <crope@iki.fi>
14177 L:      linux-media@vger.kernel.org
14178 W:      https://linuxtv.org
14179 W:      http://palosaari.fi/linux/
14180 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14181 T:      git git://linuxtv.org/anttip/media_tree.git
14182 S:      Maintained
14183 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14184
14185 RTL8180 WIRELESS DRIVER
14186 L:      linux-wireless@vger.kernel.org
14187 W:      http://wireless.kernel.org/
14188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14189 S:      Orphan
14190 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14191
14192 RTL8187 WIRELESS DRIVER
14193 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14194 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14195 M:      Larry Finger <Larry.Finger@lwfinger.net>
14196 L:      linux-wireless@vger.kernel.org
14197 W:      http://wireless.kernel.org/
14198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14199 S:      Maintained
14200 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14201
14202 REALTEK WIRELESS DRIVER (rtlwifi family)
14203 M:      Ping-Ke Shih <pkshih@realtek.com>
14204 L:      linux-wireless@vger.kernel.org
14205 W:      http://wireless.kernel.org/
14206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14207 S:      Maintained
14208 F:      drivers/net/wireless/realtek/rtlwifi/
14209
14210 REALTEK WIRELESS DRIVER (rtw88)
14211 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14212 L:      linux-wireless@vger.kernel.org
14213 S:      Maintained
14214 F:      drivers/net/wireless/realtek/rtw88/
14215
14216 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14217 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14218 L:      linux-wireless@vger.kernel.org
14219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14220 S:      Maintained
14221 F:      drivers/net/wireless/realtek/rtl8xxxu/
14222
14223 RXRPC SOCKETS (AF_RXRPC)
14224 M:      David Howells <dhowells@redhat.com>
14225 L:      linux-afs@lists.infradead.org
14226 S:      Supported
14227 F:      net/rxrpc/
14228 F:      include/keys/rxrpc-type.h
14229 F:      include/net/af_rxrpc.h
14230 F:      include/trace/events/rxrpc.h
14231 F:      include/uapi/linux/rxrpc.h
14232 F:      Documentation/networking/rxrpc.txt
14233 W:      https://www.infradead.org/~dhowells/kafs/
14234
14235 S3 SAVAGE FRAMEBUFFER DRIVER
14236 M:      Antonino Daplas <adaplas@gmail.com>
14237 L:      linux-fbdev@vger.kernel.org
14238 S:      Maintained
14239 F:      drivers/video/fbdev/savage/
14240
14241 S390
14242 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14243 M:      Vasily Gorbik <gor@linux.ibm.com>
14244 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14245 L:      linux-s390@vger.kernel.org
14246 W:      http://www.ibm.com/developerworks/linux/linux390/
14247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14248 S:      Supported
14249 F:      arch/s390/
14250 F:      drivers/s390/
14251 F:      Documentation/s390/
14252 F:      Documentation/driver-api/s390-drivers.rst
14253
14254 S390 COMMON I/O LAYER
14255 M:      Sebastian Ott <sebott@linux.ibm.com>
14256 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14257 L:      linux-s390@vger.kernel.org
14258 W:      http://www.ibm.com/developerworks/linux/linux390/
14259 S:      Supported
14260 F:      drivers/s390/cio/
14261
14262 S390 DASD DRIVER
14263 M:      Stefan Haberland <sth@linux.ibm.com>
14264 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14265 L:      linux-s390@vger.kernel.org
14266 W:      http://www.ibm.com/developerworks/linux/linux390/
14267 S:      Supported
14268 F:      drivers/s390/block/dasd*
14269 F:      block/partitions/ibm.c
14270
14271 S390 IOMMU (PCI)
14272 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14273 L:      linux-s390@vger.kernel.org
14274 W:      http://www.ibm.com/developerworks/linux/linux390/
14275 S:      Supported
14276 F:      drivers/iommu/s390-iommu.c
14277
14278 S390 IUCV NETWORK LAYER
14279 M:      Julian Wiedmann <jwi@linux.ibm.com>
14280 M:      Ursula Braun <ubraun@linux.ibm.com>
14281 L:      linux-s390@vger.kernel.org
14282 W:      http://www.ibm.com/developerworks/linux/linux390/
14283 S:      Supported
14284 F:      drivers/s390/net/*iucv*
14285 F:      include/net/iucv/
14286 F:      net/iucv/
14287
14288 S390 NETWORK DRIVERS
14289 M:      Julian Wiedmann <jwi@linux.ibm.com>
14290 M:      Ursula Braun <ubraun@linux.ibm.com>
14291 L:      linux-s390@vger.kernel.org
14292 W:      http://www.ibm.com/developerworks/linux/linux390/
14293 S:      Supported
14294 F:      drivers/s390/net/
14295
14296 S390 PCI SUBSYSTEM
14297 M:      Sebastian Ott <sebott@linux.ibm.com>
14298 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14299 L:      linux-s390@vger.kernel.org
14300 W:      http://www.ibm.com/developerworks/linux/linux390/
14301 S:      Supported
14302 F:      arch/s390/pci/
14303 F:      drivers/pci/hotplug/s390_pci_hpc.c
14304
14305 S390 VFIO-CCW DRIVER
14306 M:      Cornelia Huck <cohuck@redhat.com>
14307 M:      Eric Farman <farman@linux.ibm.com>
14308 R:      Halil Pasic <pasic@linux.ibm.com>
14309 L:      linux-s390@vger.kernel.org
14310 L:      kvm@vger.kernel.org
14311 S:      Supported
14312 F:      drivers/s390/cio/vfio_ccw*
14313 F:      Documentation/s390/vfio-ccw.rst
14314 F:      include/uapi/linux/vfio_ccw.h
14315
14316 S390 ZCRYPT DRIVER
14317 M:      Harald Freudenberger <freude@linux.ibm.com>
14318 L:      linux-s390@vger.kernel.org
14319 W:      http://www.ibm.com/developerworks/linux/linux390/
14320 S:      Supported
14321 F:      drivers/s390/crypto/
14322
14323 S390 VFIO AP DRIVER
14324 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14325 M:      Pierre Morel <pmorel@linux.ibm.com>
14326 M:      Halil Pasic <pasic@linux.ibm.com>
14327 L:      linux-s390@vger.kernel.org
14328 W:      http://www.ibm.com/developerworks/linux/linux390/
14329 S:      Supported
14330 F:      drivers/s390/crypto/vfio_ap_drv.c
14331 F:      drivers/s390/crypto/vfio_ap_private.h
14332 F:      drivers/s390/crypto/vfio_ap_ops.c
14333 F:      Documentation/s390/vfio-ap.rst
14334
14335 S390 ZFCP DRIVER
14336 M:      Steffen Maier <maier@linux.ibm.com>
14337 M:      Benjamin Block <bblock@linux.ibm.com>
14338 L:      linux-s390@vger.kernel.org
14339 W:      http://www.ibm.com/developerworks/linux/linux390/
14340 S:      Supported
14341 F:      drivers/s390/scsi/zfcp_*
14342
14343 S3C24XX SD/MMC Driver
14344 M:      Ben Dooks <ben-linux@fluff.org>
14345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14346 S:      Supported
14347 F:      drivers/mmc/host/s3cmci.*
14348
14349 SAA6588 RDS RECEIVER DRIVER
14350 M:      Hans Verkuil <hverkuil@xs4all.nl>
14351 L:      linux-media@vger.kernel.org
14352 T:      git git://linuxtv.org/media_tree.git
14353 W:      https://linuxtv.org
14354 S:      Odd Fixes
14355 F:      drivers/media/i2c/saa6588*
14356
14357 SAA7134 VIDEO4LINUX DRIVER
14358 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14359 L:      linux-media@vger.kernel.org
14360 W:      https://linuxtv.org
14361 T:      git git://linuxtv.org/media_tree.git
14362 S:      Odd fixes
14363 F:      Documentation/media/v4l-drivers/saa7134*
14364 F:      drivers/media/pci/saa7134/
14365
14366 SAA7146 VIDEO4LINUX-2 DRIVER
14367 M:      Hans Verkuil <hverkuil@xs4all.nl>
14368 L:      linux-media@vger.kernel.org
14369 T:      git git://linuxtv.org/media_tree.git
14370 S:      Maintained
14371 F:      drivers/media/common/saa7146/
14372 F:      drivers/media/pci/saa7146/
14373 F:      include/media/drv-intf/saa7146*
14374
14375 SAFESETID SECURITY MODULE
14376 M:     Micah Morton <mortonm@chromium.org>
14377 S:     Supported
14378 F:     security/safesetid/
14379 F:     Documentation/admin-guide/LSM/SafeSetID.rst
14380
14381 SAMSUNG AUDIO (ASoC) DRIVERS
14382 M:      Krzysztof Kozlowski <krzk@kernel.org>
14383 M:      Sangbeom Kim <sbkim73@samsung.com>
14384 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14385 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14386 S:      Supported
14387 F:      sound/soc/samsung/
14388 F:      Documentation/devicetree/bindings/sound/samsung*
14389
14390 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14391 M:      Krzysztof Kozlowski <krzk@kernel.org>
14392 L:      linux-crypto@vger.kernel.org
14393 L:      linux-samsung-soc@vger.kernel.org
14394 S:      Maintained
14395 F:      drivers/crypto/exynos-rng.c
14396 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14397
14398 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14399 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14400 L:      linux-samsung-soc@vger.kernel.org
14401 S:      Maintained
14402 F:      drivers/char/hw_random/exynos-trng.c
14403 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14404
14405 SAMSUNG FRAMEBUFFER DRIVER
14406 M:      Jingoo Han <jingoohan1@gmail.com>
14407 L:      linux-fbdev@vger.kernel.org
14408 S:      Maintained
14409 F:      drivers/video/fbdev/s3c-fb.c
14410
14411 SAMSUNG LAPTOP DRIVER
14412 M:      Corentin Chary <corentin.chary@gmail.com>
14413 L:      platform-driver-x86@vger.kernel.org
14414 S:      Maintained
14415 F:      drivers/platform/x86/samsung-laptop.c
14416
14417 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14418 M:      Sangbeom Kim <sbkim73@samsung.com>
14419 M:      Krzysztof Kozlowski <krzk@kernel.org>
14420 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14421 L:      linux-kernel@vger.kernel.org
14422 L:      linux-samsung-soc@vger.kernel.org
14423 S:      Supported
14424 F:      drivers/mfd/sec*.c
14425 F:      drivers/regulator/s2m*.c
14426 F:      drivers/regulator/s5m*.c
14427 F:      drivers/clk/clk-s2mps11.c
14428 F:      drivers/rtc/rtc-s5m.c
14429 F:      include/linux/mfd/samsung/
14430 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14431 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14432 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14433 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14434
14435 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14436 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14437 L:      linux-media@vger.kernel.org
14438 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14439 S:      Maintained
14440 F:      drivers/media/platform/s3c-camif/
14441 F:      include/media/drv-intf/s3c_camif.h
14442
14443 SAMSUNG S3FWRN5 NFC DRIVER
14444 M:      Robert Baldyga <r.baldyga@samsung.com>
14445 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
14446 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
14447 S:      Supported
14448 F:      drivers/nfc/s3fwrn5
14449
14450 SAMSUNG S5C73M3 CAMERA DRIVER
14451 M:      Kyungmin Park <kyungmin.park@samsung.com>
14452 M:      Andrzej Hajda <a.hajda@samsung.com>
14453 L:      linux-media@vger.kernel.org
14454 S:      Supported
14455 F:      drivers/media/i2c/s5c73m3/*
14456
14457 SAMSUNG S5K5BAF CAMERA DRIVER
14458 M:      Kyungmin Park <kyungmin.park@samsung.com>
14459 M:      Andrzej Hajda <a.hajda@samsung.com>
14460 L:      linux-media@vger.kernel.org
14461 S:      Supported
14462 F:      drivers/media/i2c/s5k5baf.c
14463
14464 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14465 M:      Krzysztof Kozlowski <krzk@kernel.org>
14466 M:      Vladimir Zapolskiy <vz@mleia.com>
14467 M:      Kamil Konieczny <k.konieczny@partner.samsung.com>
14468 L:      linux-crypto@vger.kernel.org
14469 L:      linux-samsung-soc@vger.kernel.org
14470 S:      Maintained
14471 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
14472 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
14473 F:      drivers/crypto/s5p-sss.c
14474
14475 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14476 M:      Kyungmin Park <kyungmin.park@samsung.com>
14477 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14478 L:      linux-media@vger.kernel.org
14479 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14480 S:      Supported
14481 F:      drivers/media/platform/exynos4-is/
14482
14483 SAMSUNG SOC CLOCK DRIVERS
14484 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14485 M:      Tomasz Figa <tomasz.figa@gmail.com>
14486 M:      Chanwoo Choi <cw00.choi@samsung.com>
14487 S:      Supported
14488 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14490 F:      drivers/clk/samsung/
14491 F:      include/dt-bindings/clock/exynos*.h
14492 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14493 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14494 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14495
14496 SAMSUNG SPI DRIVERS
14497 M:      Kukjin Kim <kgene@kernel.org>
14498 M:      Krzysztof Kozlowski <krzk@kernel.org>
14499 M:      Andi Shyti <andi@etezian.org>
14500 L:      linux-spi@vger.kernel.org
14501 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14502 S:      Maintained
14503 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14504 F:      drivers/spi/spi-s3c*
14505 F:      include/linux/platform_data/spi-s3c64xx.h
14506
14507 SAMSUNG SXGBE DRIVERS
14508 M:      Byungho An <bh74.an@samsung.com>
14509 M:      Girish K S <ks.giri@samsung.com>
14510 M:      Vipul Pandya <vipul.pandya@samsung.com>
14511 S:      Supported
14512 L:      netdev@vger.kernel.org
14513 F:      drivers/net/ethernet/samsung/sxgbe/
14514
14515 SAMSUNG THERMAL DRIVER
14516 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14517 L:      linux-pm@vger.kernel.org
14518 L:      linux-samsung-soc@vger.kernel.org
14519 S:      Supported
14520 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14521 F:      drivers/thermal/samsung/
14522
14523 SAMSUNG USB2 PHY DRIVER
14524 M:      Kamil Debski <kamil@wypas.org>
14525 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14526 L:      linux-kernel@vger.kernel.org
14527 S:      Supported
14528 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14529 F:      Documentation/driver-api/phy/samsung-usb2.rst
14530 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14531 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14532 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14533 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14534 F:      drivers/phy/samsung/phy-samsung-usb2.c
14535 F:      drivers/phy/samsung/phy-samsung-usb2.h
14536
14537 SC1200 WDT DRIVER
14538 M:      Zwane Mwaikambo <zwanem@gmail.com>
14539 S:      Maintained
14540 F:      drivers/watchdog/sc1200wdt.c
14541
14542 SCHEDULER
14543 M:      Ingo Molnar <mingo@redhat.com>
14544 M:      Peter Zijlstra <peterz@infradead.org>
14545 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
14546 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
14547 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
14548 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
14549 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
14550 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
14551 L:      linux-kernel@vger.kernel.org
14552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14553 S:      Maintained
14554 F:      kernel/sched/
14555 F:      include/linux/sched.h
14556 F:      include/uapi/linux/sched.h
14557 F:      include/linux/wait.h
14558 F:      include/linux/preempt.h
14559
14560 SCR24X CHIP CARD INTERFACE DRIVER
14561 M:      Lubomir Rintel <lkundrak@v3.sk>
14562 S:      Supported
14563 F:      drivers/char/pcmcia/scr24x_cs.c
14564
14565 SCSI CDROM DRIVER
14566 M:      Jens Axboe <axboe@kernel.dk>
14567 L:      linux-scsi@vger.kernel.org
14568 W:      http://www.kernel.dk
14569 S:      Maintained
14570 F:      drivers/scsi/sr*
14571
14572 SCSI RDMA PROTOCOL (SRP) INITIATOR
14573 M:      Bart Van Assche <bvanassche@acm.org>
14574 L:      linux-rdma@vger.kernel.org
14575 S:      Supported
14576 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14577 F:      drivers/infiniband/ulp/srp/
14578 F:      include/scsi/srp.h
14579
14580 SCSI RDMA PROTOCOL (SRP) TARGET
14581 M:      Bart Van Assche <bvanassche@acm.org>
14582 L:      linux-rdma@vger.kernel.org
14583 L:      target-devel@vger.kernel.org
14584 S:      Supported
14585 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14586 F:      drivers/infiniband/ulp/srpt/
14587
14588 SCSI SG DRIVER
14589 M:      Doug Gilbert <dgilbert@interlog.com>
14590 L:      linux-scsi@vger.kernel.org
14591 W:      http://sg.danny.cz/sg
14592 S:      Maintained
14593 F:      Documentation/scsi/scsi-generic.txt
14594 F:      drivers/scsi/sg.c
14595 F:      include/scsi/sg.h
14596
14597 SCSI SUBSYSTEM
14598 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
14599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14600 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14602 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14603 L:      linux-scsi@vger.kernel.org
14604 S:      Maintained
14605 F:      Documentation/devicetree/bindings/scsi/
14606 F:      drivers/scsi/
14607 F:      include/scsi/
14608
14609 SCSI TAPE DRIVER
14610 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
14611 L:      linux-scsi@vger.kernel.org
14612 S:      Maintained
14613 F:      Documentation/scsi/st.txt
14614 F:      drivers/scsi/st.*
14615 F:      drivers/scsi/st_*.h
14616
14617 SCSI TARGET SUBSYSTEM
14618 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14619 L:      linux-scsi@vger.kernel.org
14620 L:      target-devel@vger.kernel.org
14621 W:      http://www.linux-iscsi.org
14622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14623 Q:      https://patchwork.kernel.org/project/target-devel/list/
14624 S:      Supported
14625 F:      drivers/target/
14626 F:      include/target/
14627 F:      Documentation/target/
14628
14629 SCTP PROTOCOL
14630 M:      Vlad Yasevich <vyasevich@gmail.com>
14631 M:      Neil Horman <nhorman@tuxdriver.com>
14632 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
14633 L:      linux-sctp@vger.kernel.org
14634 W:      http://lksctp.sourceforge.net
14635 S:      Maintained
14636 F:      Documentation/networking/sctp.txt
14637 F:      include/linux/sctp.h
14638 F:      include/uapi/linux/sctp.h
14639 F:      include/net/sctp/
14640 F:      net/sctp/
14641
14642 SCx200 CPU SUPPORT
14643 M:      Jim Cromie <jim.cromie@gmail.com>
14644 S:      Odd Fixes
14645 F:      Documentation/i2c/busses/scx200_acb.rst
14646 F:      arch/x86/platform/scx200/
14647 F:      drivers/watchdog/scx200_wdt.c
14648 F:      drivers/i2c/busses/scx200*
14649 F:      drivers/mtd/maps/scx200_docflash.c
14650 F:      include/linux/scx200.h
14651
14652 SCx200 GPIO DRIVER
14653 M:      Jim Cromie <jim.cromie@gmail.com>
14654 S:      Maintained
14655 F:      drivers/char/scx200_gpio.c
14656 F:      include/linux/scx200_gpio.h
14657
14658 SCx200 HRT CLOCKSOURCE DRIVER
14659 M:      Jim Cromie <jim.cromie@gmail.com>
14660 S:      Maintained
14661 F:      drivers/clocksource/scx200_hrt.c
14662
14663 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
14664 M:      Sascha Sommer <saschasommer@freenet.de>
14665 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
14666 S:      Maintained
14667 F:      drivers/mmc/host/sdricoh_cs.c
14668
14669 SECO BOARDS CEC DRIVER
14670 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
14671 S:      Maintained
14672 F:      drivers/media/platform/seco-cec/seco-cec.c
14673 F:      drivers/media/platform/seco-cec/seco-cec.h
14674
14675 SECURE COMPUTING
14676 M:      Kees Cook <keescook@chromium.org>
14677 R:      Andy Lutomirski <luto@amacapital.net>
14678 R:      Will Drewry <wad@chromium.org>
14679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
14680 S:      Supported
14681 F:      kernel/seccomp.c
14682 F:      include/uapi/linux/seccomp.h
14683 F:      include/linux/seccomp.h
14684 F:      tools/testing/selftests/seccomp/*
14685 F:      tools/testing/selftests/kselftest_harness.h
14686 F:      Documentation/userspace-api/seccomp_filter.rst
14687 K:      \bsecure_computing
14688 K:      \bTIF_SECCOMP\b
14689
14690 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
14691 M:      Al Cooper <alcooperx@gmail.com>
14692 L:      linux-mmc@vger.kernel.org
14693 L:      bcm-kernel-feedback-list@broadcom.com
14694 S:      Maintained
14695 F:      drivers/mmc/host/sdhci-brcmstb*
14696
14697 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
14698 M:      Adrian Hunter <adrian.hunter@intel.com>
14699 L:      linux-mmc@vger.kernel.org
14700 S:      Maintained
14701 F:      drivers/mmc/host/sdhci*
14702 F:      include/linux/mmc/sdhci*
14703
14704 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
14705 M:      Adrian Hunter <adrian.hunter@intel.com>
14706 M:      Ritesh Harjani <riteshh@codeaurora.org>
14707 M:      Asutosh Das <asutoshd@codeaurora.org>
14708 L:      linux-mmc@vger.kernel.org
14709 S:      Maintained
14710 F:      drivers/mmc/host/cqhci*
14711
14712 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
14713 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
14714 M:      Manjunath M B <manjumb@synopsys.com>
14715 L:      linux-mmc@vger.kernel.org
14716 S:      Maintained
14717 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
14718
14719 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
14720 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14721 L:      linux-mmc@vger.kernel.org
14722 S:      Supported
14723 F:      drivers/mmc/host/sdhci-of-at91.c
14724
14725 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
14726 M:      Ben Dooks <ben-linux@fluff.org>
14727 M:      Jaehoon Chung <jh80.chung@samsung.com>
14728 L:      linux-mmc@vger.kernel.org
14729 S:      Maintained
14730 F:      drivers/mmc/host/sdhci-s3c*
14731
14732 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
14733 M:      Viresh Kumar <vireshk@kernel.org>
14734 L:      linux-mmc@vger.kernel.org
14735 S:      Maintained
14736 F:      drivers/mmc/host/sdhci-spear.c
14737
14738 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
14739 M:      Kishon Vijay Abraham I <kishon@ti.com>
14740 L:      linux-mmc@vger.kernel.org
14741 S:      Maintained
14742 F:      drivers/mmc/host/sdhci-omap.c
14743
14744 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
14745 M:      Scott Bauer <scott.bauer@intel.com>
14746 M:      Jonathan Derrick <jonathan.derrick@intel.com>
14747 L:      linux-block@vger.kernel.org
14748 S:      Supported
14749 F:      block/sed*
14750 F:      block/opal_proto.h
14751 F:      include/linux/sed*
14752 F:      include/uapi/linux/sed*
14753
14754 SECURITY CONTACT
14755 M:      Security Officers <security@kernel.org>
14756 S:      Supported
14757
14758 SECURITY SUBSYSTEM
14759 M:      James Morris <jmorris@namei.org>
14760 M:      "Serge E. Hallyn" <serge@hallyn.com>
14761 L:      linux-security-module@vger.kernel.org (suggested Cc:)
14762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
14763 W:      http://kernsec.org/
14764 S:      Supported
14765 F:      security/
14766 X:      security/selinux/
14767
14768 SELINUX SECURITY MODULE
14769 M:      Paul Moore <paul@paul-moore.com>
14770 M:      Stephen Smalley <sds@tycho.nsa.gov>
14771 M:      Eric Paris <eparis@parisplace.org>
14772 L:      selinux@vger.kernel.org
14773 W:      https://selinuxproject.org
14774 W:      https://github.com/SELinuxProject
14775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
14776 S:      Supported
14777 F:      include/uapi/linux/selinux_netlink.h
14778 F:      security/selinux/
14779 F:      scripts/selinux/
14780 F:      Documentation/admin-guide/LSM/SELinux.rst
14781
14782 SENSABLE PHANTOM
14783 M:      Jiri Slaby <jirislaby@gmail.com>
14784 S:      Maintained
14785 F:      drivers/misc/phantom.c
14786 F:      include/uapi/linux/phantom.h
14787
14788 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
14789 M:      Tomasz Duszynski <tduszyns@gmail.com>
14790 S:      Maintained
14791 F:      drivers/iio/chemical/sps30.c
14792 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
14793
14794 SERIAL DEVICE BUS
14795 M:      Rob Herring <robh@kernel.org>
14796 L:      linux-serial@vger.kernel.org
14797 S:      Maintained
14798 F:      Documentation/devicetree/bindings/serial/slave-device.txt
14799 F:      drivers/tty/serdev/
14800 F:      include/linux/serdev.h
14801
14802 SERIAL DRIVERS
14803 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14804 L:      linux-serial@vger.kernel.org
14805 S:      Maintained
14806 F:      Documentation/devicetree/bindings/serial/
14807 F:      drivers/tty/serial/
14808
14809 SERIAL IR RECEIVER
14810 M:      Sean Young <sean@mess.org>
14811 L:      linux-media@vger.kernel.org
14812 S:      Maintained
14813 F:      drivers/media/rc/serial_ir.c
14814
14815 SFC NETWORK DRIVER
14816 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
14817 M:      Edward Cree <ecree@solarflare.com>
14818 M:      Martin Habets <mhabets@solarflare.com>
14819 L:      netdev@vger.kernel.org
14820 S:      Supported
14821 F:      drivers/net/ethernet/sfc/
14822
14823 SFF/SFP/SFP+ MODULE SUPPORT
14824 M:      Russell King <linux@armlinux.org.uk>
14825 L:      netdev@vger.kernel.org
14826 S:      Maintained
14827 F:      drivers/net/phy/phylink.c
14828 F:      drivers/net/phy/sfp*
14829 F:      include/linux/phylink.h
14830 F:      include/linux/sfp.h
14831 K:      phylink
14832
14833 SGI GRU DRIVER
14834 M:      Dimitri Sivanich <sivanich@sgi.com>
14835 S:      Maintained
14836 F:      drivers/misc/sgi-gru/
14837
14838 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
14839 M:      Pat Gefre <pfg@sgi.com>
14840 L:      linux-ia64@vger.kernel.org
14841 S:      Supported
14842 F:      Documentation/ia64/serial.rst
14843 F:      drivers/tty/serial/ioc?_serial.c
14844 F:      include/linux/ioc?.h
14845
14846 SGI XP/XPC/XPNET DRIVER
14847 M:      Cliff Whickman <cpw@sgi.com>
14848 M:      Robin Holt <robinmholt@gmail.com>
14849 S:      Maintained
14850 F:      drivers/misc/sgi-xp/
14851
14852 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
14853 M:      Ursula Braun <ubraun@linux.ibm.com>
14854 M:      Karsten Graul <kgraul@linux.ibm.com>
14855 L:      linux-s390@vger.kernel.org
14856 W:      http://www.ibm.com/developerworks/linux/linux390/
14857 S:      Supported
14858 F:      net/smc/
14859
14860 SHARP RJ54N1CB0C SENSOR DRIVER
14861 M:      Jacopo Mondi <jacopo@jmondi.org>
14862 L:      linux-media@vger.kernel.org
14863 T:      git git://linuxtv.org/media_tree.git
14864 S:      Odd fixes
14865 F:      drivers/media/i2c/rj54n1cb0c.c
14866 F:      include/media/i2c/rj54n1cb0c.h
14867
14868 SH_VEU V4L2 MEM2MEM DRIVER
14869 L:      linux-media@vger.kernel.org
14870 S:      Orphan
14871 F:      drivers/media/platform/sh_veu.c
14872
14873 SH_VOU V4L2 OUTPUT DRIVER
14874 L:      linux-media@vger.kernel.org
14875 S:      Orphan
14876 F:      drivers/media/platform/sh_vou.c
14877 F:      include/media/drv-intf/sh_vou.h
14878
14879 SI2157 MEDIA DRIVER
14880 M:      Antti Palosaari <crope@iki.fi>
14881 L:      linux-media@vger.kernel.org
14882 W:      https://linuxtv.org
14883 W:      http://palosaari.fi/linux/
14884 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14885 T:      git git://linuxtv.org/anttip/media_tree.git
14886 S:      Maintained
14887 F:      drivers/media/tuners/si2157*
14888
14889 SI2165 MEDIA DRIVER
14890 M:      Matthias Schwarzott <zzam@gentoo.org>
14891 L:      linux-media@vger.kernel.org
14892 W:      https://linuxtv.org
14893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14894 S:      Maintained
14895 F:      drivers/media/dvb-frontends/si2165*
14896
14897 SI2168 MEDIA DRIVER
14898 M:      Antti Palosaari <crope@iki.fi>
14899 L:      linux-media@vger.kernel.org
14900 W:      https://linuxtv.org
14901 W:      http://palosaari.fi/linux/
14902 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14903 T:      git git://linuxtv.org/anttip/media_tree.git
14904 S:      Maintained
14905 F:      drivers/media/dvb-frontends/si2168*
14906
14907 SI470X FM RADIO RECEIVER I2C DRIVER
14908 M:      Hans Verkuil <hverkuil@xs4all.nl>
14909 L:      linux-media@vger.kernel.org
14910 T:      git git://linuxtv.org/media_tree.git
14911 W:      https://linuxtv.org
14912 S:      Odd Fixes
14913 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
14914
14915 SI470X FM RADIO RECEIVER USB DRIVER
14916 M:      Hans Verkuil <hverkuil@xs4all.nl>
14917 L:      linux-media@vger.kernel.org
14918 T:      git git://linuxtv.org/media_tree.git
14919 W:      https://linuxtv.org
14920 S:      Maintained
14921 F:      drivers/media/radio/si470x/radio-si470x-common.c
14922 F:      drivers/media/radio/si470x/radio-si470x.h
14923 F:      drivers/media/radio/si470x/radio-si470x-usb.c
14924
14925 SI4713 FM RADIO TRANSMITTER I2C DRIVER
14926 M:      Eduardo Valentin <edubezval@gmail.com>
14927 L:      linux-media@vger.kernel.org
14928 T:      git git://linuxtv.org/media_tree.git
14929 W:      https://linuxtv.org
14930 S:      Odd Fixes
14931 F:      drivers/media/radio/si4713/si4713.?
14932
14933 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
14934 M:      Eduardo Valentin <edubezval@gmail.com>
14935 L:      linux-media@vger.kernel.org
14936 T:      git git://linuxtv.org/media_tree.git
14937 W:      https://linuxtv.org
14938 S:      Odd Fixes
14939 F:      drivers/media/radio/si4713/radio-platform-si4713.c
14940
14941 SI4713 FM RADIO TRANSMITTER USB DRIVER
14942 M:      Hans Verkuil <hverkuil@xs4all.nl>
14943 L:      linux-media@vger.kernel.org
14944 T:      git git://linuxtv.org/media_tree.git
14945 W:      https://linuxtv.org
14946 S:      Maintained
14947 F:      drivers/media/radio/si4713/radio-usb-si4713.c
14948
14949 SIANO DVB DRIVER
14950 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14951 L:      linux-media@vger.kernel.org
14952 W:      https://linuxtv.org
14953 T:      git git://linuxtv.org/media_tree.git
14954 S:      Odd fixes
14955 F:      drivers/media/common/siano/
14956 F:      drivers/media/usb/siano/
14957 F:      drivers/media/usb/siano/
14958 F:      drivers/media/mmc/siano/
14959
14960 SIFIVE PDMA DRIVER
14961 M:      Green Wan <green.wan@sifive.com>
14962 S:      Maintained
14963 F:      drivers/dma/sf-pdma/
14964 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
14965
14966 SIFIVE DRIVERS
14967 M:      Palmer Dabbelt <palmer@dabbelt.com>
14968 M:      Paul Walmsley <paul.walmsley@sifive.com>
14969 L:      linux-riscv@lists.infradead.org
14970 T:      git git://github.com/sifive/riscv-linux.git
14971 S:      Supported
14972 K:      [^@]sifive
14973 N:      sifive
14974
14975 SIFIVE FU540 SYSTEM-ON-CHIP
14976 M:      Paul Walmsley <paul.walmsley@sifive.com>
14977 M:      Palmer Dabbelt <palmer@dabbelt.com>
14978 L:      linux-riscv@lists.infradead.org
14979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
14980 S:      Supported
14981 K:      fu540
14982 N:      fu540
14983
14984 SILEAD TOUCHSCREEN DRIVER
14985 M:      Hans de Goede <hdegoede@redhat.com>
14986 L:      linux-input@vger.kernel.org
14987 L:      platform-driver-x86@vger.kernel.org
14988 S:      Maintained
14989 F:      drivers/input/touchscreen/silead.c
14990 F:      drivers/platform/x86/touchscreen_dmi.c
14991
14992 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
14993 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
14994 S:      Supported
14995 F:      drivers/staging/wfx/
14996
14997 SILICON MOTION SM712 FRAME BUFFER DRIVER
14998 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14999 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15000 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15001 L:      linux-fbdev@vger.kernel.org
15002 S:      Maintained
15003 F:      drivers/video/fbdev/sm712*
15004 F:      Documentation/fb/sm712fb.rst
15005
15006 SIMPLE FIRMWARE INTERFACE (SFI)
15007 M:      Len Brown <lenb@kernel.org>
15008 L:      sfi-devel@simplefirmware.org
15009 W:      http://simplefirmware.org/
15010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
15011 S:      Supported
15012 F:      arch/x86/platform/sfi/
15013 F:      drivers/sfi/
15014 F:      include/linux/sfi*.h
15015
15016 SIMPLEFB FB DRIVER
15017 M:      Hans de Goede <hdegoede@redhat.com>
15018 L:      linux-fbdev@vger.kernel.org
15019 S:      Maintained
15020 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15021 F:      drivers/video/fbdev/simplefb.c
15022 F:      include/linux/platform_data/simplefb.h
15023
15024 SIMTEC EB110ATX (Chalice CATS)
15025 M:      Vincent Sanders <vince@simtec.co.uk>
15026 M:      Simtec Linux Team <linux@simtec.co.uk>
15027 W:      http://www.simtec.co.uk/products/EB110ATX/
15028 S:      Supported
15029
15030 SIMTEC EB2410ITX (BAST)
15031 M:      Vincent Sanders <vince@simtec.co.uk>
15032 M:      Simtec Linux Team <linux@simtec.co.uk>
15033 W:      http://www.simtec.co.uk/products/EB2410ITX/
15034 S:      Supported
15035 F:      arch/arm/mach-s3c24xx/mach-bast.c
15036 F:      arch/arm/mach-s3c24xx/bast-ide.c
15037 F:      arch/arm/mach-s3c24xx/bast-irq.c
15038
15039 SIPHASH PRF ROUTINES
15040 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15041 S:      Maintained
15042 F:      lib/siphash.c
15043 F:      lib/test_siphash.c
15044 F:      include/linux/siphash.h
15045
15046 SIOX
15047 M:      Thorsten Scherer <t.scherer@eckelmann.de>
15048 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15049 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15050 S:      Supported
15051 F:      drivers/siox/*
15052 F:      drivers/gpio/gpio-siox.c
15053 F:      include/trace/events/siox.h
15054
15055 SIS 190 ETHERNET DRIVER
15056 M:      Francois Romieu <romieu@fr.zoreil.com>
15057 L:      netdev@vger.kernel.org
15058 S:      Maintained
15059 F:      drivers/net/ethernet/sis/sis190.c
15060
15061 SIS 900/7016 FAST ETHERNET DRIVER
15062 M:      Daniele Venzano <venza@brownhat.org>
15063 W:      http://www.brownhat.org/sis900.html
15064 L:      netdev@vger.kernel.org
15065 S:      Maintained
15066 F:      drivers/net/ethernet/sis/sis900.*
15067
15068 SIS FRAMEBUFFER DRIVER
15069 M:      Thomas Winischhofer <thomas@winischhofer.net>
15070 W:      http://www.winischhofer.net/linuxsisvga.shtml
15071 S:      Maintained
15072 F:      Documentation/fb/sisfb.rst
15073 F:      drivers/video/fbdev/sis/
15074 F:      include/video/sisfb.h
15075
15076 SIS USB2VGA DRIVER
15077 M:      Thomas Winischhofer <thomas@winischhofer.net>
15078 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15079 S:      Maintained
15080 F:      drivers/usb/misc/sisusbvga/
15081
15082 SLAB ALLOCATOR
15083 M:      Christoph Lameter <cl@linux.com>
15084 M:      Pekka Enberg <penberg@kernel.org>
15085 M:      David Rientjes <rientjes@google.com>
15086 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
15087 M:      Andrew Morton <akpm@linux-foundation.org>
15088 L:      linux-mm@kvack.org
15089 S:      Maintained
15090 F:      include/linux/sl?b*.h
15091 F:      mm/sl?b*
15092
15093 SLEEPABLE READ-COPY UPDATE (SRCU)
15094 M:      Lai Jiangshan <jiangshanlai@gmail.com>
15095 M:      "Paul E. McKenney" <paulmck@kernel.org>
15096 M:      Josh Triplett <josh@joshtriplett.org>
15097 R:      Steven Rostedt <rostedt@goodmis.org>
15098 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15099 L:      rcu@vger.kernel.org
15100 W:      http://www.rdrop.com/users/paulmck/RCU/
15101 S:      Supported
15102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15103 F:      include/linux/srcu*.h
15104 F:      kernel/rcu/srcu*.c
15105
15106 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15107 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15108 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15109 S:      Maintained
15110 F:      drivers/slimbus/
15111 F:      Documentation/devicetree/bindings/slimbus/
15112 F:      include/linux/slimbus.h
15113
15114 SMACK SECURITY MODULE
15115 M:      Casey Schaufler <casey@schaufler-ca.com>
15116 L:      linux-security-module@vger.kernel.org
15117 W:      http://schaufler-ca.com
15118 T:      git git://github.com/cschaufler/smack-next
15119 S:      Maintained
15120 F:      Documentation/admin-guide/LSM/Smack.rst
15121 F:      security/smack/
15122
15123 SMC91x ETHERNET DRIVER
15124 M:      Nicolas Pitre <nico@fluxnic.net>
15125 S:      Odd Fixes
15126 F:      drivers/net/ethernet/smsc/smc91x.*
15127
15128 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15129 M:      Sakari Ailus <sakari.ailus@iki.fi>
15130 L:      linux-media@vger.kernel.org
15131 S:      Maintained
15132 F:      drivers/media/i2c/smiapp/
15133 F:      include/media/i2c/smiapp.h
15134 F:      drivers/media/i2c/smiapp-pll.c
15135 F:      drivers/media/i2c/smiapp-pll.h
15136 F:      include/uapi/linux/smiapp.h
15137 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15138
15139 SMM665 HARDWARE MONITOR DRIVER
15140 M:      Guenter Roeck <linux@roeck-us.net>
15141 L:      linux-hwmon@vger.kernel.org
15142 S:      Maintained
15143 F:      Documentation/hwmon/smm665.rst
15144 F:      drivers/hwmon/smm665.c
15145
15146 SMSC EMC2103 HARDWARE MONITOR DRIVER
15147 M:      Steve Glendinning <steve.glendinning@shawell.net>
15148 L:      linux-hwmon@vger.kernel.org
15149 S:      Maintained
15150 F:      Documentation/hwmon/emc2103.rst
15151 F:      drivers/hwmon/emc2103.c
15152
15153 SMSC SCH5627 HARDWARE MONITOR DRIVER
15154 M:      Hans de Goede <hdegoede@redhat.com>
15155 L:      linux-hwmon@vger.kernel.org
15156 S:      Supported
15157 F:      Documentation/hwmon/sch5627.rst
15158 F:      drivers/hwmon/sch5627.c
15159
15160 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15161 M:      Steve Glendinning <steve.glendinning@shawell.net>
15162 L:      linux-fbdev@vger.kernel.org
15163 S:      Maintained
15164 F:      drivers/video/fbdev/smscufx.c
15165
15166 SMSC47B397 HARDWARE MONITOR DRIVER
15167 M:      Jean Delvare <jdelvare@suse.com>
15168 L:      linux-hwmon@vger.kernel.org
15169 S:      Maintained
15170 F:      Documentation/hwmon/smsc47b397.rst
15171 F:      drivers/hwmon/smsc47b397.c
15172
15173 SMSC911x ETHERNET DRIVER
15174 M:      Steve Glendinning <steve.glendinning@shawell.net>
15175 L:      netdev@vger.kernel.org
15176 S:      Maintained
15177 F:      include/linux/smsc911x.h
15178 F:      drivers/net/ethernet/smsc/smsc911x.*
15179
15180 SMSC9420 PCI ETHERNET DRIVER
15181 M:      Steve Glendinning <steve.glendinning@shawell.net>
15182 L:      netdev@vger.kernel.org
15183 S:      Maintained
15184 F:      drivers/net/ethernet/smsc/smsc9420.*
15185
15186 SOC-CAMERA V4L2 SUBSYSTEM
15187 L:      linux-media@vger.kernel.org
15188 T:      git git://linuxtv.org/media_tree.git
15189 S:      Orphan
15190 F:      include/media/soc_camera.h
15191 F:      drivers/staging/media/soc_camera/
15192
15193 SOCIONEXT SYNQUACER I2C DRIVER
15194 M:      Ard Biesheuvel <ardb@kernel.org>
15195 L:      linux-i2c@vger.kernel.org
15196 S:      Maintained
15197 F:      drivers/i2c/busses/i2c-synquacer.c
15198 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15199
15200 SOCIONEXT UNIPHIER SOUND DRIVER
15201 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15202 S:      Orphan
15203 F:      sound/soc/uniphier/
15204
15205 SOEKRIS NET48XX LED SUPPORT
15206 M:      Chris Boot <bootc@bootc.net>
15207 S:      Maintained
15208 F:      drivers/leds/leds-net48xx.c
15209
15210 SOFT-IWARP DRIVER (siw)
15211 M:      Bernard Metzler <bmt@zurich.ibm.com>
15212 L:      linux-rdma@vger.kernel.org
15213 S:      Supported
15214 F:      drivers/infiniband/sw/siw/
15215 F:      include/uapi/rdma/siw-abi.h
15216
15217 SOFT-ROCE DRIVER (rxe)
15218 M:      Moni Shoua <monis@mellanox.com>
15219 L:      linux-rdma@vger.kernel.org
15220 S:      Supported
15221 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
15222 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15223 F:      drivers/infiniband/sw/rxe/
15224 F:      include/uapi/rdma/rdma_user_rxe.h
15225
15226 SOFTLOGIC 6x10 MPEG CODEC
15227 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15228 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15229 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15230 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15231 M:      Ismael Luceno <ismael@iodev.co.uk>
15232 L:      linux-media@vger.kernel.org
15233 S:      Supported
15234 F:      drivers/media/pci/solo6x10/
15235
15236 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15237 M:      James Morse <james.morse@arm.com>
15238 L:      linux-arm-kernel@lists.infradead.org
15239 S:      Maintained
15240 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15241 F:      drivers/firmware/arm_sdei.c
15242 F:      include/linux/arm_sdei.h
15243 F:      include/uapi/linux/arm_sdei.h
15244
15245 SOFTWARE RAID (Multiple Disks) SUPPORT
15246 M:      Song Liu <song@kernel.org>
15247 L:      linux-raid@vger.kernel.org
15248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15249 S:      Supported
15250 F:      drivers/md/Makefile
15251 F:      drivers/md/Kconfig
15252 F:      drivers/md/md*
15253 F:      drivers/md/raid*
15254 F:      include/linux/raid/
15255 F:      include/uapi/linux/raid/
15256
15257 SOCIONEXT (SNI) AVE NETWORK DRIVER
15258 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15259 L:      netdev@vger.kernel.org
15260 S:      Maintained
15261 F:      drivers/net/ethernet/socionext/sni_ave.c
15262 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15263
15264 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15265 M:      Jassi Brar <jaswinder.singh@linaro.org>
15266 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15267 L:      netdev@vger.kernel.org
15268 S:      Maintained
15269 F:      drivers/net/ethernet/socionext/netsec.c
15270 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15271
15272 SOCIONEXT (SNI) Synquacer SPI DRIVER
15273 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15274 M:      Jassi Brar <jaswinder.singh@linaro.org>
15275 L:      linux-spi@vger.kernel.org
15276 S:      Maintained
15277 F:      drivers/spi/spi-synquacer.c
15278 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15279
15280 SOLIDRUN CLEARFOG SUPPORT
15281 M:      Russell King <linux@armlinux.org.uk>
15282 S:      Maintained
15283 F:      arch/arm/boot/dts/armada-388-clearfog*
15284 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15285
15286 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15287 M:      Russell King <linux@armlinux.org.uk>
15288 S:      Maintained
15289 F:      arch/arm/boot/dts/imx6*-cubox-i*
15290 F:      arch/arm/boot/dts/imx6*-hummingboard*
15291 F:      arch/arm/boot/dts/imx6*-sr-*
15292
15293 SONIC NETWORK DRIVER
15294 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15295 L:      netdev@vger.kernel.org
15296 S:      Maintained
15297 F:      drivers/net/ethernet/natsemi/sonic.*
15298
15299 SONICS SILICON BACKPLANE DRIVER (SSB)
15300 M:      Michael Buesch <m@bues.ch>
15301 L:      linux-wireless@vger.kernel.org
15302 S:      Maintained
15303 F:      drivers/ssb/
15304 F:      include/linux/ssb/
15305
15306 SONY IMX214 SENSOR DRIVER
15307 M:      Ricardo Ribalda <ricardo.ribalda@gmail.com>
15308 L:      linux-media@vger.kernel.org
15309 T:      git git://linuxtv.org/media_tree.git
15310 S:      Maintained
15311 F:      drivers/media/i2c/imx214.c
15312 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15313
15314 SONY IMX258 SENSOR DRIVER
15315 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15316 L:      linux-media@vger.kernel.org
15317 T:      git git://linuxtv.org/media_tree.git
15318 S:      Maintained
15319 F:      drivers/media/i2c/imx258.c
15320
15321 SONY IMX274 SENSOR DRIVER
15322 M:      Leon Luo <leonl@leopardimaging.com>
15323 L:      linux-media@vger.kernel.org
15324 T:      git git://linuxtv.org/media_tree.git
15325 S:      Maintained
15326 F:      drivers/media/i2c/imx274.c
15327 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15328
15329 SONY IMX290 SENSOR DRIVER
15330 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15331 L:      linux-media@vger.kernel.org
15332 T:      git git://linuxtv.org/media_tree.git
15333 S:      Maintained
15334 F:      drivers/media/i2c/imx290.c
15335 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15336
15337 SONY IMX319 SENSOR DRIVER
15338 M:      Bingbu Cao <bingbu.cao@intel.com>
15339 L:      linux-media@vger.kernel.org
15340 T:      git git://linuxtv.org/media_tree.git
15341 S:      Maintained
15342 F:      drivers/media/i2c/imx319.c
15343
15344 SONY IMX355 SENSOR DRIVER
15345 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15346 L:      linux-media@vger.kernel.org
15347 T:      git git://linuxtv.org/media_tree.git
15348 S:      Maintained
15349 F:      drivers/media/i2c/imx355.c
15350
15351 SONY MEMORYSTICK SUBSYSTEM
15352 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15353 M:      Alex Dubov <oakad@yahoo.com>
15354 M:      Ulf Hansson <ulf.hansson@linaro.org>
15355 L:      linux-mmc@vger.kernel.org
15356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15357 S:      Maintained
15358 F:      drivers/memstick/
15359 F:      include/linux/memstick.h
15360
15361 SONY VAIO CONTROL DEVICE DRIVER
15362 M:      Mattia Dongili <malattia@linux.it>
15363 L:      platform-driver-x86@vger.kernel.org
15364 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15365 S:      Maintained
15366 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15367 F:      drivers/char/sonypi.c
15368 F:      drivers/platform/x86/sony-laptop.c
15369 F:      include/linux/sony-laptop.h
15370
15371 SOUND
15372 M:      Jaroslav Kysela <perex@perex.cz>
15373 M:      Takashi Iwai <tiwai@suse.com>
15374 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15375 W:      http://www.alsa-project.org/
15376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15377 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15378 S:      Maintained
15379 F:      Documentation/sound/
15380 F:      include/sound/
15381 F:      include/uapi/sound/
15382 F:      sound/
15383
15384 SOUND - COMPRESSED AUDIO
15385 M:      Vinod Koul <vkoul@kernel.org>
15386 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15388 S:      Supported
15389 F:      Documentation/sound/designs/compress-offload.rst
15390 F:      include/sound/compress_driver.h
15391 F:      include/uapi/sound/compress_*
15392 F:      sound/core/compress_offload.c
15393 F:      sound/soc/soc-compress.c
15394
15395 SOUND - DMAENGINE HELPERS
15396 M:      Lars-Peter Clausen <lars@metafoo.de>
15397 S:      Supported
15398 F:      include/sound/dmaengine_pcm.h
15399 F:      sound/core/pcm_dmaengine.c
15400 F:      sound/soc/soc-generic-dmaengine-pcm.c
15401
15402 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15403 M:      Liam Girdwood <lgirdwood@gmail.com>
15404 M:      Mark Brown <broonie@kernel.org>
15405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15406 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15407 W:      http://alsa-project.org/main/index.php/ASoC
15408 S:      Supported
15409 F:      Documentation/devicetree/bindings/sound/
15410 F:      Documentation/sound/soc/
15411 F:      sound/soc/
15412 F:      include/dt-bindings/sound/
15413 F:      include/sound/soc*
15414
15415 SOUNDWIRE SUBSYSTEM
15416 M:      Vinod Koul <vkoul@kernel.org>
15417 M:      Sanyog Kale <sanyog.r.kale@intel.com>
15418 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15419 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15420 S:      Supported
15421 F:      Documentation/driver-api/soundwire/
15422 F:      drivers/soundwire/
15423 F:      include/linux/soundwire/
15424
15425 SP2 MEDIA DRIVER
15426 M:      Olli Salonen <olli.salonen@iki.fi>
15427 L:      linux-media@vger.kernel.org
15428 W:      https://linuxtv.org
15429 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15430 S:      Maintained
15431 F:      drivers/media/dvb-frontends/sp2*
15432
15433 SPARC + UltraSPARC (sparc/sparc64)
15434 M:      "David S. Miller" <davem@davemloft.net>
15435 L:      sparclinux@vger.kernel.org
15436 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15439 S:      Maintained
15440 F:      arch/sparc/
15441 F:      drivers/sbus/
15442
15443 SPARC SERIAL DRIVERS
15444 M:      "David S. Miller" <davem@davemloft.net>
15445 L:      sparclinux@vger.kernel.org
15446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15448 S:      Maintained
15449 F:      include/linux/sunserialcore.h
15450 F:      drivers/tty/serial/suncore.c
15451 F:      drivers/tty/serial/sunhv.c
15452 F:      drivers/tty/serial/sunsab.c
15453 F:      drivers/tty/serial/sunsab.h
15454 F:      drivers/tty/serial/sunsu.c
15455 F:      drivers/tty/serial/sunzilog.c
15456 F:      drivers/tty/serial/sunzilog.h
15457 F:      drivers/tty/vcc.c
15458
15459 SPARSE CHECKER
15460 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15461 L:      linux-sparse@vger.kernel.org
15462 W:      https://sparse.wiki.kernel.org/
15463 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15464 S:      Maintained
15465 F:      include/linux/compiler.h
15466
15467 SPEAR CLOCK FRAMEWORK SUPPORT
15468 M:      Viresh Kumar <vireshk@kernel.org>
15469 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15470 W:      http://www.st.com/spear
15471 S:      Maintained
15472 F:      drivers/clk/spear/
15473
15474 SPEAR PLATFORM SUPPORT
15475 M:      Viresh Kumar <vireshk@kernel.org>
15476 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
15477 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15478 W:      http://www.st.com/spear
15479 S:      Maintained
15480 F:      arch/arm/boot/dts/spear*
15481 F:      arch/arm/mach-spear/
15482
15483 SPI NOR SUBSYSTEM
15484 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
15485 L:      linux-mtd@lists.infradead.org
15486 W:      http://www.linux-mtd.infradead.org/
15487 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15489 S:      Maintained
15490 F:      drivers/mtd/spi-nor/
15491 F:      include/linux/mtd/spi-nor.h
15492
15493 SPI SUBSYSTEM
15494 M:      Mark Brown <broonie@kernel.org>
15495 L:      linux-spi@vger.kernel.org
15496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15497 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15498 S:      Maintained
15499 F:      Documentation/devicetree/bindings/spi/
15500 F:      Documentation/spi/
15501 F:      drivers/spi/
15502 F:      include/linux/spi/
15503 F:      include/uapi/linux/spi/
15504 F:      tools/spi/
15505
15506 SPIDERNET NETWORK DRIVER for CELL
15507 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
15508 L:      netdev@vger.kernel.org
15509 S:      Supported
15510 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15511 F:      drivers/net/ethernet/toshiba/spider_net*
15512
15513 SPMI SUBSYSTEM
15514 R:      Stephen Boyd <sboyd@kernel.org>
15515 L:      linux-arm-msm@vger.kernel.org
15516 F:      Documentation/devicetree/bindings/spmi/
15517 F:      drivers/spmi/
15518 F:      include/dt-bindings/spmi/spmi.h
15519 F:      include/linux/spmi.h
15520 F:      include/trace/events/spmi.h
15521
15522 SPU FILE SYSTEM
15523 M:      Jeremy Kerr <jk@ozlabs.org>
15524 L:      linuxppc-dev@lists.ozlabs.org
15525 W:      http://www.ibm.com/developerworks/power/cell/
15526 S:      Supported
15527 F:      Documentation/filesystems/spufs.txt
15528 F:      arch/powerpc/platforms/cell/spufs/
15529
15530 SQUASHFS FILE SYSTEM
15531 M:      Phillip Lougher <phillip@squashfs.org.uk>
15532 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
15533 W:      http://squashfs.org.uk
15534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15535 S:      Maintained
15536 F:      Documentation/filesystems/squashfs.txt
15537 F:      fs/squashfs/
15538
15539 SRM (Alpha) environment access
15540 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
15541 S:      Maintained
15542 F:      arch/alpha/kernel/srm_env.c
15543
15544 ST LSM6DSx IMU IIO DRIVER
15545 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
15546 L:      linux-iio@vger.kernel.org
15547 W:      http://www.st.com/
15548 S:      Maintained
15549 F:      drivers/iio/imu/st_lsm6dsx/
15550 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15551
15552 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15553 M:      Mickael Guene <mickael.guene@st.com>
15554 L:      linux-media@vger.kernel.org
15555 T:      git git://linuxtv.org/media_tree.git
15556 S:      Maintained
15557 F:      drivers/media/i2c/st-mipid02.c
15558 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15559
15560 ST STM32 I2C/SMBUS DRIVER
15561 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
15562 L:      linux-i2c@vger.kernel.org
15563 S:      Maintained
15564 F:      drivers/i2c/busses/i2c-stm32*
15565
15566 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15567 M:      Song Qiang <songqiang1304521@gmail.com>
15568 L:      linux-iio@vger.kernel.org
15569 S:      Maintained
15570 F:      drivers/iio/proximity/vl53l0x-i2c.c
15571 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15572
15573 STABLE BRANCH
15574 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15575 M:      Sasha Levin <sashal@kernel.org>
15576 L:      stable@vger.kernel.org
15577 S:      Supported
15578 F:      Documentation/process/stable-kernel-rules.rst
15579
15580 STAGING - COMEDI
15581 M:      Ian Abbott <abbotti@mev.co.uk>
15582 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
15583 S:      Odd Fixes
15584 F:      drivers/staging/comedi/
15585
15586 STAGING - FIELDBUS SUBSYSTEM
15587 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15588 S:      Maintained
15589 F:      drivers/staging/fieldbus/*
15590 F:      drivers/staging/fieldbus/Documentation/
15591
15592 STAGING - HMS ANYBUS-S BUS
15593 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15594 S:      Maintained
15595 F:      drivers/staging/fieldbus/anybuss/
15596
15597 STAGING - INDUSTRIAL IO
15598 M:      Jonathan Cameron <jic23@kernel.org>
15599 L:      linux-iio@vger.kernel.org
15600 S:      Odd Fixes
15601 F:      Documentation/devicetree/bindings/staging/iio/
15602 F:      drivers/staging/iio/
15603
15604 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15605 M:      Marc Dietrich <marvin24@gmx.de>
15606 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
15607 L:      linux-tegra@vger.kernel.org
15608 S:      Maintained
15609 F:      drivers/staging/nvec/
15610
15611 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15612 M:      Jens Frederich <jfrederich@gmail.com>
15613 M:      Daniel Drake <dsd@laptop.org>
15614 M:      Jon Nettleton <jon.nettleton@gmail.com>
15615 W:      http://wiki.laptop.org/go/DCON
15616 S:      Maintained
15617 F:      drivers/staging/olpc_dcon/
15618
15619 STAGING - REALTEK RTL8712U DRIVERS
15620 M:      Larry Finger <Larry.Finger@lwfinger.net>
15621 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
15622 S:      Odd Fixes
15623 F:      drivers/staging/rtl8712/
15624
15625 STAGING - REALTEK RTL8188EU DRIVERS
15626 M:      Larry Finger <Larry.Finger@lwfinger.net>
15627 S:      Odd Fixes
15628 F:      drivers/staging/rtl8188eu/
15629
15630 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15631 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15632 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15633 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15634 L:      linux-fbdev@vger.kernel.org
15635 S:      Maintained
15636 F:      drivers/staging/sm750fb/
15637
15638 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
15639 M:      William Hubbs <w.d.hubbs@gmail.com>
15640 M:      Chris Brannon <chris@the-brannons.com>
15641 M:      Kirk Reiser <kirk@reisers.ca>
15642 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
15643 L:      speakup@linux-speakup.org
15644 W:      http://www.linux-speakup.org/
15645 S:      Odd Fixes
15646 F:      drivers/staging/speakup/
15647
15648 STAGING - VIA VT665X DRIVERS
15649 M:      Forest Bond <forest@alittletooquiet.net>
15650 S:      Odd Fixes
15651 F:      drivers/staging/vt665?/
15652
15653 STAGING - WILC1000 WIFI DRIVER
15654 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
15655 M:      Ajay Singh <ajay.kathat@microchip.com>
15656 L:      linux-wireless@vger.kernel.org
15657 S:      Supported
15658 F:      drivers/staging/wilc1000/
15659
15660 STAGING - SEPS525 LCD CONTROLLER DRIVERS
15661 M:      Michael Hennerich <michael.hennerich@analog.com>
15662 M:      Beniamin Bia <beniamin.bia@analog.com>
15663 L:      linux-fbdev@vger.kernel.org
15664 S:      Supported
15665 F:      drivers/staging/fbtft/fb_seps525.c
15666 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
15667
15668 STAGING SUBSYSTEM
15669 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
15671 L:      devel@driverdev.osuosl.org
15672 S:      Supported
15673 F:      drivers/staging/
15674
15675 STARFIRE/DURALAN NETWORK DRIVER
15676 M:      Ion Badulescu <ionut@badula.org>
15677 S:      Odd Fixes
15678 F:      drivers/net/ethernet/adaptec/starfire*
15679
15680 STEC S1220 SKD DRIVER
15681 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
15682 L:      linux-block@vger.kernel.org
15683 S:      Maintained
15684 F:      drivers/block/skd*[ch]
15685
15686 STI AUDIO (ASoC) DRIVERS
15687 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15688 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15689 S:      Maintained
15690 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
15691 F:      sound/soc/sti/
15692
15693 STI CEC DRIVER
15694 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
15695 S:      Maintained
15696 F:      drivers/media/platform/sti/cec/
15697 F:      Documentation/devicetree/bindings/media/stih-cec.txt
15698
15699 STK1160 USB VIDEO CAPTURE DRIVER
15700 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
15701 L:      linux-media@vger.kernel.org
15702 T:      git git://linuxtv.org/media_tree.git
15703 S:      Maintained
15704 F:      drivers/media/usb/stk1160/
15705
15706 STM32 AUDIO (ASoC) DRIVERS
15707 M:      Olivier Moysan <olivier.moysan@st.com>
15708 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15709 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15710 S:      Maintained
15711 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
15712 F:      sound/soc/stm/
15713
15714 STM32 TIMER/LPTIMER DRIVERS
15715 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
15716 S:      Maintained
15717 F:      drivers/*/stm32-*timer*
15718 F:      drivers/pwm/pwm-stm32*
15719 F:      include/linux/*/stm32-*tim*
15720 F:      Documentation/ABI/testing/*timer-stm32
15721 F:      Documentation/devicetree/bindings/*/stm32-*timer*
15722 F:      Documentation/devicetree/bindings/pwm/pwm-stm32*
15723
15724 STMMAC ETHERNET DRIVER
15725 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
15726 M:      Alexandre Torgue <alexandre.torgue@st.com>
15727 M:      Jose Abreu <joabreu@synopsys.com>
15728 L:      netdev@vger.kernel.org
15729 W:      http://www.stlinux.com
15730 S:      Supported
15731 F:      drivers/net/ethernet/stmicro/stmmac/
15732
15733 SUN3/3X
15734 M:      Sam Creasey <sammy@sammy.net>
15735 W:      http://sammy.net/sun3/
15736 S:      Maintained
15737 F:      arch/m68k/kernel/*sun3*
15738 F:      arch/m68k/sun3*/
15739 F:      arch/m68k/include/asm/sun3*
15740 F:      drivers/net/ethernet/i825xx/sun3*
15741
15742 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
15743 M:      Hans de Goede <hdegoede@redhat.com>
15744 L:      linux-input@vger.kernel.org
15745 S:      Maintained
15746 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
15747 F:      drivers/input/keyboard/sun4i-lradc-keys.c
15748
15749 SUNDANCE NETWORK DRIVER
15750 M:      Denis Kirjanov <kda@linux-powerpc.org>
15751 L:      netdev@vger.kernel.org
15752 S:      Maintained
15753 F:      drivers/net/ethernet/dlink/sundance.c
15754
15755 SUPERH
15756 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
15757 M:      Rich Felker <dalias@libc.org>
15758 L:      linux-sh@vger.kernel.org
15759 Q:      http://patchwork.kernel.org/project/linux-sh/list/
15760 S:      Maintained
15761 F:      Documentation/sh/
15762 F:      arch/sh/
15763 F:      drivers/sh/
15764
15765 SUSPEND TO RAM
15766 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
15767 M:      Len Brown <len.brown@intel.com>
15768 M:      Pavel Machek <pavel@ucw.cz>
15769 L:      linux-pm@vger.kernel.org
15770 B:      https://bugzilla.kernel.org
15771 S:      Supported
15772 F:      Documentation/power/
15773 F:      arch/x86/kernel/acpi/
15774 F:      drivers/base/power/
15775 F:      kernel/power/
15776 F:      include/linux/suspend.h
15777 F:      include/linux/freezer.h
15778 F:      include/linux/pm.h
15779
15780 SVGA HANDLING
15781 M:      Martin Mares <mj@ucw.cz>
15782 L:      linux-video@atrey.karlin.mff.cuni.cz
15783 S:      Maintained
15784 F:      Documentation/admin-guide/svga.rst
15785 F:      arch/x86/boot/video*
15786
15787 SWIOTLB SUBSYSTEM
15788 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15789 L:      iommu@lists.linux-foundation.org
15790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
15791 S:      Supported
15792 F:      kernel/dma/swiotlb.c
15793 F:      arch/*/kernel/pci-swiotlb.c
15794 F:      include/linux/swiotlb.h
15795
15796 SWITCHDEV
15797 M:      Jiri Pirko <jiri@resnulli.us>
15798 M:      Ivan Vecera <ivecera@redhat.com>
15799 L:      netdev@vger.kernel.org
15800 S:      Supported
15801 F:      net/switchdev/
15802 F:      include/net/switchdev.h
15803
15804 SY8106A REGULATOR DRIVER
15805 M:      Icenowy Zheng <icenowy@aosc.io>
15806 S:      Maintained
15807 F:      drivers/regulator/sy8106a-regulator.c
15808 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
15809
15810 SYNC FILE FRAMEWORK
15811 M:      Sumit Semwal <sumit.semwal@linaro.org>
15812 R:      Gustavo Padovan <gustavo@padovan.org>
15813 S:      Maintained
15814 L:      linux-media@vger.kernel.org
15815 L:      dri-devel@lists.freedesktop.org
15816 F:      drivers/dma-buf/sync_*
15817 F:      drivers/dma-buf/dma-fence*
15818 F:      drivers/dma-buf/sw_sync.c
15819 F:      include/linux/sync_file.h
15820 F:      include/uapi/linux/sync_file.h
15821 F:      Documentation/driver-api/sync_file.rst
15822 T:      git git://anongit.freedesktop.org/drm/drm-misc
15823
15824 SYNOPSYS ARC ARCHITECTURE
15825 M:      Vineet Gupta <vgupta@synopsys.com>
15826 L:      linux-snps-arc@lists.infradead.org
15827 S:      Supported
15828 F:      arch/arc/
15829 F:      Documentation/devicetree/bindings/arc/*
15830 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
15831 F:      drivers/clocksource/arc_timer.c
15832 F:      drivers/tty/serial/arc_uart.c
15833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
15834
15835 SYNOPSYS ARC HSDK SDP pll clock driver
15836 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15837 S:      Supported
15838 F:      drivers/clk/clk-hsdk-pll.c
15839 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
15840
15841 SYNOPSYS ARC SDP clock driver
15842 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15843 S:      Supported
15844 F:      drivers/clk/axs10x/*
15845 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
15846
15847 SYNOPSYS ARC SDP platform support
15848 M:      Alexey Brodkin <abrodkin@synopsys.com>
15849 S:      Supported
15850 F:      arch/arc/plat-axs10x
15851 F:      arch/arc/boot/dts/ax*
15852 F:      Documentation/devicetree/bindings/arc/axs10*
15853
15854 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
15855 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15856 S:      Supported
15857 F:      drivers/reset/reset-axs10x.c
15858 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
15859
15860 SYNOPSYS CREG GPIO DRIVER
15861 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15862 S:      Maintained
15863 F:      drivers/gpio/gpio-creg-snps.c
15864 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
15865
15866 SYNOPSYS DESIGNWARE 8250 UART DRIVER
15867 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15868 S:      Maintained
15869 F:      drivers/tty/serial/8250/8250_dw.c
15870
15871 SYNOPSYS DESIGNWARE APB GPIO DRIVER
15872 M:      Hoan Tran <hoan@os.amperecomputing.com>
15873 L:      linux-gpio@vger.kernel.org
15874 S:      Maintained
15875 F:      drivers/gpio/gpio-dwapb.c
15876 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
15877
15878 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
15879 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15880 S:      Maintained
15881 F:      drivers/dma/dw-axi-dmac/
15882 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
15883
15884 SYNOPSYS DESIGNWARE DMAC DRIVER
15885 M:      Viresh Kumar <vireshk@kernel.org>
15886 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15887 S:      Maintained
15888 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
15889 F:      drivers/dma/dw/
15890 F:      include/dt-bindings/dma/dw-dmac.h
15891 F:      include/linux/dma/dw.h
15892 F:      include/linux/platform_data/dma-dw.h
15893
15894 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
15895 M:      Jose Abreu <Jose.Abreu@synopsys.com>
15896 L:      netdev@vger.kernel.org
15897 S:      Supported
15898 F:      drivers/net/ethernet/synopsys/
15899
15900 SYNOPSYS DESIGNWARE I2C DRIVER
15901 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
15902 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15903 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
15904 L:      linux-i2c@vger.kernel.org
15905 S:      Maintained
15906 F:      drivers/i2c/busses/i2c-designware-*
15907 F:      include/linux/platform_data/i2c-designware.h
15908
15909 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
15910 M:      Jaehoon Chung <jh80.chung@samsung.com>
15911 L:      linux-mmc@vger.kernel.org
15912 S:      Maintained
15913 F:      drivers/mmc/host/dw_mmc*
15914
15915 SYNOPSYS HSDK RESET CONTROLLER DRIVER
15916 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15917 S:      Supported
15918 F:      drivers/reset/reset-hsdk.c
15919 F:      include/dt-bindings/reset/snps,hsdk-reset.h
15920 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
15921
15922 SYSTEM CONFIGURATION (SYSCON)
15923 M:      Lee Jones <lee.jones@linaro.org>
15924 M:      Arnd Bergmann <arnd@arndb.de>
15925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
15926 S:      Supported
15927 F:      drivers/mfd/syscon.c
15928
15929 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
15930 M:      Sudeep Holla <sudeep.holla@arm.com>
15931 L:      linux-arm-kernel@lists.infradead.org
15932 S:      Maintained
15933 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
15934 F:      drivers/clk/clk-sc[mp]i.c
15935 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
15936 F:      drivers/firmware/arm_scpi.c
15937 F:      drivers/firmware/arm_scmi/
15938 F:      drivers/reset/reset-scmi.c
15939 F:      include/linux/sc[mp]i_protocol.h
15940
15941 SYSTEM RESET/SHUTDOWN DRIVERS
15942 M:      Sebastian Reichel <sre@kernel.org>
15943 L:      linux-pm@vger.kernel.org
15944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15945 S:      Maintained
15946 F:      Documentation/devicetree/bindings/power/reset/
15947 F:      drivers/power/reset/
15948
15949 SYSTEM TRACE MODULE CLASS
15950 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15951 S:      Maintained
15952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
15953 F:      Documentation/trace/stm.rst
15954 F:      drivers/hwtracing/stm/
15955 F:      include/linux/stm.h
15956 F:      include/uapi/linux/stm.h
15957
15958 SYSTEM76 ACPI DRIVER
15959 M:      Jeremy Soller <jeremy@system76.com>
15960 M:      System76 Product Development <productdev@system76.com>
15961 L:      platform-driver-x86@vger.kernel.org
15962 S:      Maintained
15963 F:      drivers/platform/x86/system76_acpi.c
15964
15965 SYSV FILESYSTEM
15966 M:      Christoph Hellwig <hch@infradead.org>
15967 S:      Maintained
15968 F:      Documentation/filesystems/sysv-fs.txt
15969 F:      fs/sysv/
15970 F:      include/linux/sysv_fs.h
15971
15972 TASKSTATS STATISTICS INTERFACE
15973 M:      Balbir Singh <bsingharora@gmail.com>
15974 S:      Maintained
15975 F:      Documentation/accounting/taskstats*
15976 F:      include/linux/taskstats*
15977 F:      kernel/taskstats.c
15978
15979 TC subsystem
15980 M:      Jamal Hadi Salim <jhs@mojatatu.com>
15981 M:      Cong Wang <xiyou.wangcong@gmail.com>
15982 M:      Jiri Pirko <jiri@resnulli.us>
15983 L:      netdev@vger.kernel.org
15984 S:      Maintained
15985 F:      include/net/pkt_cls.h
15986 F:      include/net/pkt_sched.h
15987 F:      include/net/tc_act/
15988 F:      include/uapi/linux/pkt_cls.h
15989 F:      include/uapi/linux/pkt_sched.h
15990 F:      include/uapi/linux/tc_act/
15991 F:      include/uapi/linux/tc_ematch/
15992 F:      net/sched/
15993
15994 TC90522 MEDIA DRIVER
15995 M:      Akihiro Tsukada <tskd08@gmail.com>
15996 L:      linux-media@vger.kernel.org
15997 S:      Odd Fixes
15998 F:      drivers/media/dvb-frontends/tc90522*
15999
16000 TCP LOW PRIORITY MODULE
16001 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16002 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16003 W:      http://tcp-lp-mod.sourceforge.net/
16004 S:      Maintained
16005 F:      net/ipv4/tcp_lp.c
16006
16007 TDA10071 MEDIA DRIVER
16008 M:      Antti Palosaari <crope@iki.fi>
16009 L:      linux-media@vger.kernel.org
16010 W:      https://linuxtv.org
16011 W:      http://palosaari.fi/linux/
16012 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16013 T:      git git://linuxtv.org/anttip/media_tree.git
16014 S:      Maintained
16015 F:      drivers/media/dvb-frontends/tda10071*
16016
16017 TDA18212 MEDIA DRIVER
16018 M:      Antti Palosaari <crope@iki.fi>
16019 L:      linux-media@vger.kernel.org
16020 W:      https://linuxtv.org
16021 W:      http://palosaari.fi/linux/
16022 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16023 T:      git git://linuxtv.org/anttip/media_tree.git
16024 S:      Maintained
16025 F:      drivers/media/tuners/tda18212*
16026
16027 TDA18218 MEDIA DRIVER
16028 M:      Antti Palosaari <crope@iki.fi>
16029 L:      linux-media@vger.kernel.org
16030 W:      https://linuxtv.org
16031 W:      http://palosaari.fi/linux/
16032 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16033 T:      git git://linuxtv.org/anttip/media_tree.git
16034 S:      Maintained
16035 F:      drivers/media/tuners/tda18218*
16036
16037 TDA18250 MEDIA DRIVER
16038 M:      Olli Salonen <olli.salonen@iki.fi>
16039 L:      linux-media@vger.kernel.org
16040 W:      https://linuxtv.org
16041 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16042 T:      git git://linuxtv.org/media_tree.git
16043 S:      Maintained
16044 F:      drivers/media/tuners/tda18250*
16045
16046 TDA18271 MEDIA DRIVER
16047 M:      Michael Krufky <mkrufky@linuxtv.org>
16048 L:      linux-media@vger.kernel.org
16049 W:      https://linuxtv.org
16050 W:      http://github.com/mkrufky
16051 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16052 T:      git git://linuxtv.org/mkrufky/tuners.git
16053 S:      Maintained
16054 F:      drivers/media/tuners/tda18271*
16055
16056 TDA1997x MEDIA DRIVER
16057 M:      Tim Harvey <tharvey@gateworks.com>
16058 L:      linux-media@vger.kernel.org
16059 W:      https://linuxtv.org
16060 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16061 S:      Maintained
16062 F:      drivers/media/i2c/tda1997x.*
16063
16064 TDA827x MEDIA DRIVER
16065 M:      Michael Krufky <mkrufky@linuxtv.org>
16066 L:      linux-media@vger.kernel.org
16067 W:      https://linuxtv.org
16068 W:      http://github.com/mkrufky
16069 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16070 T:      git git://linuxtv.org/mkrufky/tuners.git
16071 S:      Maintained
16072 F:      drivers/media/tuners/tda8290.*
16073
16074 TDA8290 MEDIA DRIVER
16075 M:      Michael Krufky <mkrufky@linuxtv.org>
16076 L:      linux-media@vger.kernel.org
16077 W:      https://linuxtv.org
16078 W:      http://github.com/mkrufky
16079 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16080 T:      git git://linuxtv.org/mkrufky/tuners.git
16081 S:      Maintained
16082 F:      drivers/media/tuners/tda8290.*
16083
16084 TDA9840 MEDIA DRIVER
16085 M:      Hans Verkuil <hverkuil@xs4all.nl>
16086 L:      linux-media@vger.kernel.org
16087 T:      git git://linuxtv.org/media_tree.git
16088 W:      https://linuxtv.org
16089 S:      Maintained
16090 F:      drivers/media/i2c/tda9840*
16091
16092 TEA5761 TUNER DRIVER
16093 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16094 L:      linux-media@vger.kernel.org
16095 W:      https://linuxtv.org
16096 T:      git git://linuxtv.org/media_tree.git
16097 S:      Odd fixes
16098 F:      drivers/media/tuners/tea5761.*
16099
16100 TEA5767 TUNER DRIVER
16101 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16102 L:      linux-media@vger.kernel.org
16103 W:      https://linuxtv.org
16104 T:      git git://linuxtv.org/media_tree.git
16105 S:      Maintained
16106 F:      drivers/media/tuners/tea5767.*
16107
16108 TEA6415C MEDIA DRIVER
16109 M:      Hans Verkuil <hverkuil@xs4all.nl>
16110 L:      linux-media@vger.kernel.org
16111 T:      git git://linuxtv.org/media_tree.git
16112 W:      https://linuxtv.org
16113 S:      Maintained
16114 F:      drivers/media/i2c/tea6415c*
16115
16116 TEA6420 MEDIA DRIVER
16117 M:      Hans Verkuil <hverkuil@xs4all.nl>
16118 L:      linux-media@vger.kernel.org
16119 T:      git git://linuxtv.org/media_tree.git
16120 W:      https://linuxtv.org
16121 S:      Maintained
16122 F:      drivers/media/i2c/tea6420*
16123
16124 TEAM DRIVER
16125 M:      Jiri Pirko <jiri@resnulli.us>
16126 L:      netdev@vger.kernel.org
16127 S:      Supported
16128 F:      drivers/net/team/
16129 F:      include/linux/if_team.h
16130 F:      include/uapi/linux/if_team.h
16131
16132 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16133 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16134 S:      Maintained
16135 F:      arch/x86/platform/ts5500/
16136
16137 TECHNOTREND USB IR RECEIVER
16138 M:      Sean Young <sean@mess.org>
16139 L:      linux-media@vger.kernel.org
16140 S:      Maintained
16141 F:      drivers/media/rc/ttusbir.c
16142
16143 TECHWELL TW9910 VIDEO DECODER
16144 L:      linux-media@vger.kernel.org
16145 S:      Orphan
16146 F:      drivers/media/i2c/tw9910.c
16147 F:      include/media/i2c/tw9910.h
16148
16149 TEE SUBSYSTEM
16150 M:      Jens Wiklander <jens.wiklander@linaro.org>
16151 L:      tee-dev@lists.linaro.org
16152 S:      Maintained
16153 F:      include/linux/tee_drv.h
16154 F:      include/uapi/linux/tee.h
16155 F:      drivers/tee/
16156 F:      Documentation/tee.txt
16157
16158 TEGRA ARCHITECTURE SUPPORT
16159 M:      Thierry Reding <thierry.reding@gmail.com>
16160 M:      Jonathan Hunter <jonathanh@nvidia.com>
16161 L:      linux-tegra@vger.kernel.org
16162 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16164 S:      Supported
16165 N:      [^a-z]tegra
16166
16167 TEGRA CLOCK DRIVER
16168 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16169 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16170 S:      Supported
16171 F:      drivers/clk/tegra/
16172
16173 TEGRA DMA DRIVERS
16174 M:      Laxman Dewangan <ldewangan@nvidia.com>
16175 M:      Jon Hunter <jonathanh@nvidia.com>
16176 S:      Supported
16177 F:      drivers/dma/tegra*
16178
16179 TEGRA I2C DRIVER
16180 M:      Laxman Dewangan <ldewangan@nvidia.com>
16181 R:      Dmitry Osipenko <digetx@gmail.com>
16182 S:      Supported
16183 F:      drivers/i2c/busses/i2c-tegra.c
16184
16185 TEGRA IOMMU DRIVERS
16186 M:      Thierry Reding <thierry.reding@gmail.com>
16187 L:      linux-tegra@vger.kernel.org
16188 S:      Supported
16189 F:      drivers/iommu/tegra*
16190
16191 TEGRA KBC DRIVER
16192 M:      Laxman Dewangan <ldewangan@nvidia.com>
16193 S:      Supported
16194 F:      drivers/input/keyboard/tegra-kbc.c
16195
16196 TEGRA NAND DRIVER
16197 M:      Stefan Agner <stefan@agner.ch>
16198 M:      Lucas Stach <dev@lynxeye.de>
16199 S:      Maintained
16200 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16201 F:      drivers/mtd/nand/raw/tegra_nand.c
16202
16203 TEGRA PWM DRIVER
16204 M:      Thierry Reding <thierry.reding@gmail.com>
16205 S:      Supported
16206 F:      drivers/pwm/pwm-tegra.c
16207
16208 TEGRA SERIAL DRIVER
16209 M:      Laxman Dewangan <ldewangan@nvidia.com>
16210 S:      Supported
16211 F:      drivers/tty/serial/serial-tegra.c
16212
16213 TEGRA SPI DRIVER
16214 M:      Laxman Dewangan <ldewangan@nvidia.com>
16215 S:      Supported
16216 F:      drivers/spi/spi-tegra*
16217
16218 TEGRA XUSB PADCTL DRIVER
16219 M:      JC Kuo <jckuo@nvidia.com>
16220 S:      Supported
16221 F:      drivers/phy/tegra/xusb*
16222
16223 TEHUTI ETHERNET DRIVER
16224 M:      Andy Gospodarek <andy@greyhouse.net>
16225 L:      netdev@vger.kernel.org
16226 S:      Supported
16227 F:      drivers/net/ethernet/tehuti/*
16228
16229 Telecom Clock Driver for MCPL0010
16230 M:      Mark Gross <mark.gross@intel.com>
16231 S:      Supported
16232 F:      drivers/char/tlclk.c
16233
16234 TENSILICA XTENSA PORT (xtensa)
16235 M:      Chris Zankel <chris@zankel.net>
16236 M:      Max Filippov <jcmvbkbc@gmail.com>
16237 L:      linux-xtensa@linux-xtensa.org
16238 T:      git git://github.com/czankel/xtensa-linux.git
16239 S:      Maintained
16240 F:      arch/xtensa/
16241 F:      drivers/irqchip/irq-xtensa-*
16242
16243 Texas Instruments' System Control Interface (TISCI) Protocol Driver
16244 M:      Nishanth Menon <nm@ti.com>
16245 M:      Tero Kristo <t-kristo@ti.com>
16246 M:      Santosh Shilimkar <ssantosh@kernel.org>
16247 L:      linux-arm-kernel@lists.infradead.org
16248 S:      Maintained
16249 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16250 F:      drivers/firmware/ti_sci*
16251 F:      include/linux/soc/ti/ti_sci_protocol.h
16252 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16253 F:      drivers/soc/ti/ti_sci_pm_domains.c
16254 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16255 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16256 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16257 F:      drivers/clk/keystone/sci-clk.c
16258 F:      drivers/reset/reset-ti-sci.c
16259 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16260 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16261 F:      drivers/irqchip/irq-ti-sci-intr.c
16262 F:      drivers/irqchip/irq-ti-sci-inta.c
16263 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16264 F:      drivers/soc/ti/ti_sci_inta_msi.c
16265
16266 Texas Instruments ASoC drivers
16267 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16268 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16269 S:      Maintained
16270 F:      sound/soc/ti/
16271
16272 Texas Instruments' DAC7612 DAC Driver
16273 M:      Ricardo Ribalda <ricardo@ribalda.com>
16274 L:      linux-iio@vger.kernel.org
16275 S:      Supported
16276 F:      drivers/iio/dac/ti-dac7612.c
16277 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16278
16279 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16280 M:      Hans Verkuil <hverkuil@xs4all.nl>
16281 L:      linux-media@vger.kernel.org
16282 T:      git git://linuxtv.org/media_tree.git
16283 W:      https://linuxtv.org
16284 S:      Maintained
16285 F:      drivers/media/radio/radio-raremono.c
16286
16287 THERMAL
16288 M:      Zhang Rui <rui.zhang@intel.com>
16289 M:      Eduardo Valentin <edubezval@gmail.com>
16290 R:      Daniel Lezcano <daniel.lezcano@linaro.org>
16291 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16292 L:      linux-pm@vger.kernel.org
16293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
16294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
16295 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16296 S:      Supported
16297 F:      drivers/thermal/
16298 F:      include/linux/thermal.h
16299 F:      include/uapi/linux/thermal.h
16300 F:      include/linux/cpu_cooling.h
16301 F:      Documentation/devicetree/bindings/thermal/
16302
16303 THERMAL/CPU_COOLING
16304 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16305 M:      Viresh Kumar <viresh.kumar@linaro.org>
16306 M:      Javi Merino <javi.merino@kernel.org>
16307 L:      linux-pm@vger.kernel.org
16308 S:      Supported
16309 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16310 F:      drivers/thermal/cpu_cooling.c
16311 F:      include/linux/cpu_cooling.h
16312
16313 THINKPAD ACPI EXTRAS DRIVER
16314 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16315 L:      ibm-acpi-devel@lists.sourceforge.net
16316 L:      platform-driver-x86@vger.kernel.org
16317 W:      http://ibm-acpi.sourceforge.net
16318 W:      http://thinkwiki.org/wiki/Ibm-acpi
16319 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16320 S:      Maintained
16321 F:      drivers/platform/x86/thinkpad_acpi.c
16322
16323 THUNDERBOLT DRIVER
16324 M:      Andreas Noever <andreas.noever@gmail.com>
16325 M:      Michael Jamet <michael.jamet@intel.com>
16326 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16327 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16329 S:      Maintained
16330 F:      Documentation/admin-guide/thunderbolt.rst
16331 F:      drivers/thunderbolt/
16332 F:      include/linux/thunderbolt.h
16333
16334 THUNDERBOLT NETWORK DRIVER
16335 M:      Michael Jamet <michael.jamet@intel.com>
16336 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16337 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16338 L:      netdev@vger.kernel.org
16339 S:      Maintained
16340 F:      drivers/net/thunderbolt.c
16341
16342 THUNDERX GPIO DRIVER
16343 M:      David Daney <david.daney@cavium.com>
16344 S:      Maintained
16345 F:      drivers/gpio/gpio-thunderx.c
16346
16347 TI AM437X VPFE DRIVER
16348 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16349 L:      linux-media@vger.kernel.org
16350 W:      https://linuxtv.org
16351 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16352 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16353 S:      Maintained
16354 F:      drivers/media/platform/am437x/
16355
16356 TI BANDGAP AND THERMAL DRIVER
16357 M:      Eduardo Valentin <edubezval@gmail.com>
16358 M:      Keerthy <j-keerthy@ti.com>
16359 L:      linux-pm@vger.kernel.org
16360 L:      linux-omap@vger.kernel.org
16361 S:      Maintained
16362 F:      drivers/thermal/ti-soc-thermal/
16363
16364 TI BQ27XXX POWER SUPPLY DRIVER
16365 R:      Andrew F. Davis <afd@ti.com>
16366 F:      include/linux/power/bq27xxx_battery.h
16367 F:      drivers/power/supply/bq27xxx_battery.c
16368 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16369
16370 TI CDCE706 CLOCK DRIVER
16371 M:      Max Filippov <jcmvbkbc@gmail.com>
16372 S:      Maintained
16373 F:      drivers/clk/clk-cdce706.c
16374
16375 TI CLOCK DRIVER
16376 M:      Tero Kristo <t-kristo@ti.com>
16377 L:      linux-omap@vger.kernel.org
16378 S:      Maintained
16379 F:      drivers/clk/ti/
16380 F:      include/linux/clk/ti.h
16381
16382 TI DAVINCI MACHINE SUPPORT
16383 M:      Sekhar Nori <nsekhar@ti.com>
16384 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
16385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16387 S:      Supported
16388 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16389 F:      arch/arm/mach-davinci/
16390 F:      drivers/i2c/busses/i2c-davinci.c
16391 F:      arch/arm/boot/dts/da850*
16392
16393 TI DAVINCI SERIES CLOCK DRIVER
16394 M:      David Lechner <david@lechnology.com>
16395 R:      Sekhar Nori <nsekhar@ti.com>
16396 S:      Maintained
16397 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16398 F:      drivers/clk/davinci/
16399
16400 TI DAVINCI SERIES GPIO DRIVER
16401 M:      Keerthy <j-keerthy@ti.com>
16402 L:      linux-gpio@vger.kernel.org
16403 S:      Maintained
16404 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16405 F:      drivers/gpio/gpio-davinci.c
16406
16407 TI DAVINCI SERIES MEDIA DRIVER
16408 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16409 L:      linux-media@vger.kernel.org
16410 W:      https://linuxtv.org
16411 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16412 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16413 S:      Maintained
16414 F:      drivers/media/platform/davinci/
16415 F:      include/media/davinci/
16416
16417 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
16418 R:      David Lechner <david@lechnology.com>
16419 L:      linux-iio@vger.kernel.org
16420 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
16421 F:      drivers/counter/ti-eqep.c
16422
16423 TI ETHERNET SWITCH DRIVER (CPSW)
16424 R:      Grygorii Strashko <grygorii.strashko@ti.com>
16425 L:      linux-omap@vger.kernel.org
16426 L:      netdev@vger.kernel.org
16427 S:      Maintained
16428 F:      drivers/net/ethernet/ti/cpsw*
16429 F:      drivers/net/ethernet/ti/davinci*
16430
16431 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16432 M:      Alex Dubov <oakad@yahoo.com>
16433 S:      Maintained
16434 W:      http://tifmxx.berlios.de/
16435 F:      drivers/memstick/host/tifm_ms.c
16436 F:      drivers/misc/tifm*
16437 F:      drivers/mmc/host/tifm_sd.c
16438 F:      include/linux/tifm.h
16439
16440 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16441 M:      Santosh Shilimkar <ssantosh@kernel.org>
16442 L:      linux-kernel@vger.kernel.org
16443 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16444 S:      Maintained
16445 F:      drivers/soc/ti/*
16446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16447
16448 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16449 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
16450 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
16451 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16452 S:      Maintained
16453 F:      sound/soc/codecs/lm49453*
16454 F:      sound/soc/codecs/isabelle*
16455
16456 TI LP855x BACKLIGHT DRIVER
16457 M:      Milo Kim <milo.kim@ti.com>
16458 S:      Maintained
16459 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16460 F:      drivers/video/backlight/lp855x_bl.c
16461 F:      include/linux/platform_data/lp855x.h
16462
16463 TI LP8727 CHARGER DRIVER
16464 M:      Milo Kim <milo.kim@ti.com>
16465 S:      Maintained
16466 F:      drivers/power/supply/lp8727_charger.c
16467 F:      include/linux/platform_data/lp8727.h
16468
16469 TI LP8788 MFD DRIVER
16470 M:      Milo Kim <milo.kim@ti.com>
16471 S:      Maintained
16472 F:      drivers/iio/adc/lp8788_adc.c
16473 F:      drivers/leds/leds-lp8788.c
16474 F:      drivers/mfd/lp8788*.c
16475 F:      drivers/power/supply/lp8788-charger.c
16476 F:      drivers/regulator/lp8788-*.c
16477 F:      include/linux/mfd/lp8788*.h
16478
16479 TI NETCP ETHERNET DRIVER
16480 M:      Wingman Kwok <w-kwok2@ti.com>
16481 M:      Murali Karicheri <m-karicheri2@ti.com>
16482 L:      netdev@vger.kernel.org
16483 S:      Maintained
16484 F:      drivers/net/ethernet/ti/netcp*
16485
16486 TI PCM3060 ASoC CODEC DRIVER
16487 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
16488 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16489 S:      Maintained
16490 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16491 F:      sound/soc/codecs/pcm3060*
16492
16493 TI TAS571X FAMILY ASoC CODEC DRIVER
16494 M:      Kevin Cernekee <cernekee@chromium.org>
16495 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16496 S:      Odd Fixes
16497 F:      sound/soc/codecs/tas571x*
16498
16499 TI TRF7970A NFC DRIVER
16500 M:      Mark Greer <mgreer@animalcreek.com>
16501 L:      linux-wireless@vger.kernel.org
16502 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
16503 S:      Supported
16504 F:      drivers/nfc/trf7970a.c
16505 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16506
16507 TI TWL4030 SERIES SOC CODEC DRIVER
16508 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16509 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16510 S:      Maintained
16511 F:      sound/soc/codecs/twl4030*
16512
16513 TI VPE/CAL DRIVERS
16514 M:      Benoit Parrot <bparrot@ti.com>
16515 L:      linux-media@vger.kernel.org
16516 W:      http://linuxtv.org/
16517 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16518 S:      Maintained
16519 F:      drivers/media/platform/ti-vpe/
16520 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
16521
16522 TI WILINK WIRELESS DRIVERS
16523 L:      linux-wireless@vger.kernel.org
16524 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16525 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16527 S:      Orphan
16528 F:      drivers/net/wireless/ti/
16529 F:      include/linux/wl12xx.h
16530
16531 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16532 M:      John Stultz <john.stultz@linaro.org>
16533 M:      Thomas Gleixner <tglx@linutronix.de>
16534 R:      Stephen Boyd <sboyd@kernel.org>
16535 L:      linux-kernel@vger.kernel.org
16536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16537 S:      Supported
16538 F:      include/linux/clocksource.h
16539 F:      include/linux/time.h
16540 F:      include/linux/timex.h
16541 F:      include/uapi/linux/time.h
16542 F:      include/uapi/linux/timex.h
16543 F:      kernel/time/clocksource.c
16544 F:      kernel/time/time*.c
16545 F:      kernel/time/alarmtimer.c
16546 F:      kernel/time/ntp.c
16547 F:      tools/testing/selftests/timers/
16548
16549 TIPC NETWORK LAYER
16550 M:      Jon Maloy <jon.maloy@ericsson.com>
16551 M:      Ying Xue <ying.xue@windriver.com>
16552 L:      netdev@vger.kernel.org (core kernel code)
16553 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
16554 W:      http://tipc.sourceforge.net/
16555 S:      Maintained
16556 F:      include/uapi/linux/tipc*.h
16557 F:      net/tipc/
16558
16559 TLAN NETWORK DRIVER
16560 M:      Samuel Chessman <chessman@tux.org>
16561 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
16562 W:      http://sourceforge.net/projects/tlan/
16563 S:      Maintained
16564 F:      Documentation/networking/device_drivers/ti/tlan.txt
16565 F:      drivers/net/ethernet/ti/tlan.*
16566
16567 TM6000 VIDEO4LINUX DRIVER
16568 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16569 L:      linux-media@vger.kernel.org
16570 W:      https://linuxtv.org
16571 T:      git git://linuxtv.org/media_tree.git
16572 S:      Odd fixes
16573 F:      drivers/media/usb/tm6000/
16574 F:      Documentation/media/v4l-drivers/tm6000*
16575
16576 TMIO/SDHI MMC DRIVER
16577 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16578 L:      linux-mmc@vger.kernel.org
16579 S:      Supported
16580 F:      drivers/mmc/host/tmio_mmc*
16581 F:      drivers/mmc/host/renesas_sdhi*
16582 F:      include/linux/mfd/tmio.h
16583
16584 TMP401 HARDWARE MONITOR DRIVER
16585 M:      Guenter Roeck <linux@roeck-us.net>
16586 L:      linux-hwmon@vger.kernel.org
16587 S:      Maintained
16588 F:      Documentation/hwmon/tmp401.rst
16589 F:      drivers/hwmon/tmp401.c
16590
16591 TMP513 HARDWARE MONITOR DRIVER
16592 M:      Eric Tremblay <etremblay@distech-controls.com>
16593 L:      linux-hwmon@vger.kernel.org
16594 S:      Maintained
16595 F:      Documentation/hwmon/tmp513.rst
16596 F:      drivers/hwmon/tmp513.c
16597
16598 TMPFS (SHMEM FILESYSTEM)
16599 M:      Hugh Dickins <hughd@google.com>
16600 L:      linux-mm@kvack.org
16601 S:      Maintained
16602 F:      include/linux/shmem_fs.h
16603 F:      mm/shmem.c
16604
16605 TOMOYO SECURITY MODULE
16606 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
16607 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
16608 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
16609 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
16610 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
16611 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
16612 W:      https://tomoyo.osdn.jp/
16613 S:      Maintained
16614 F:      security/tomoyo/
16615
16616 TOPSTAR LAPTOP EXTRAS DRIVER
16617 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16618 L:      platform-driver-x86@vger.kernel.org
16619 S:      Maintained
16620 F:      drivers/platform/x86/topstar-laptop.c
16621
16622 TORTURE-TEST MODULES
16623 M:      Davidlohr Bueso <dave@stgolabs.net>
16624 M:      "Paul E. McKenney" <paulmck@kernel.org>
16625 M:      Josh Triplett <josh@joshtriplett.org>
16626 L:      linux-kernel@vger.kernel.org
16627 S:      Supported
16628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16629 F:      Documentation/RCU/torture.txt
16630 F:      kernel/torture.c
16631 F:      kernel/rcu/rcutorture.c
16632 F:      kernel/rcu/rcuperf.c
16633 F:      kernel/locking/locktorture.c
16634
16635 TOSHIBA ACPI EXTRAS DRIVER
16636 M:      Azael Avalos <coproscefalo@gmail.com>
16637 L:      platform-driver-x86@vger.kernel.org
16638 S:      Maintained
16639 F:      drivers/platform/x86/toshiba_acpi.c
16640
16641 TOSHIBA BLUETOOTH DRIVER
16642 M:      Azael Avalos <coproscefalo@gmail.com>
16643 L:      platform-driver-x86@vger.kernel.org
16644 S:      Maintained
16645 F:      drivers/platform/x86/toshiba_bluetooth.c
16646
16647 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
16648 M:      Azael Avalos <coproscefalo@gmail.com>
16649 L:      platform-driver-x86@vger.kernel.org
16650 S:      Maintained
16651 F:      drivers/platform/x86/toshiba_haps.c
16652
16653 TOSHIBA SMM DRIVER
16654 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
16655 W:      http://www.buzzard.org.uk/toshiba/
16656 S:      Maintained
16657 F:      drivers/char/toshiba.c
16658 F:      include/linux/toshiba.h
16659 F:      include/uapi/linux/toshiba.h
16660
16661 TOSHIBA TC358743 DRIVER
16662 M:      Mats Randgaard <matrandg@cisco.com>
16663 L:      linux-media@vger.kernel.org
16664 S:      Maintained
16665 F:      drivers/media/i2c/tc358743*
16666 F:      include/media/i2c/tc358743.h
16667
16668 TOSHIBA WMI HOTKEYS DRIVER
16669 M:      Azael Avalos <coproscefalo@gmail.com>
16670 L:      platform-driver-x86@vger.kernel.org
16671 S:      Maintained
16672 F:      drivers/platform/x86/toshiba-wmi.c
16673
16674 TPM DEVICE DRIVER
16675 M:      Peter Huewe <peterhuewe@gmx.de>
16676 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
16677 R:      Jason Gunthorpe <jgg@ziepe.ca>
16678 L:      linux-integrity@vger.kernel.org
16679 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
16680 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
16681 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
16682 S:      Maintained
16683 F:      drivers/char/tpm/
16684
16685 TRACING
16686 M:      Steven Rostedt <rostedt@goodmis.org>
16687 M:      Ingo Molnar <mingo@redhat.com>
16688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16689 S:      Maintained
16690 F:      Documentation/trace/ftrace.rst
16691 F:      arch/*/*/*/ftrace.h
16692 F:      arch/*/kernel/ftrace.c
16693 F:      include/*/ftrace.h
16694 F:      include/linux/trace*.h
16695 F:      include/trace/
16696 F:      kernel/trace/
16697 F:      tools/testing/selftests/ftrace/
16698
16699 TRACING MMIO ACCESSES (MMIOTRACE)
16700 M:      Steven Rostedt <rostedt@goodmis.org>
16701 M:      Ingo Molnar <mingo@kernel.org>
16702 R:      Karol Herbst <karolherbst@gmail.com>
16703 R:      Pekka Paalanen <ppaalanen@gmail.com>
16704 S:      Maintained
16705 L:      linux-kernel@vger.kernel.org
16706 L:      nouveau@lists.freedesktop.org
16707 F:      kernel/trace/trace_mmiotrace.c
16708 F:      include/linux/mmiotrace.h
16709 F:      arch/x86/mm/kmmio.c
16710 F:      arch/x86/mm/mmio-mod.c
16711 F:      arch/x86/mm/testmmiotrace.c
16712
16713 TRIVIAL PATCHES
16714 M:      Jiri Kosina <trivial@kernel.org>
16715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
16716 S:      Maintained
16717 K:      ^Subject:.*(?i)trivial
16718
16719 TEMPO SEMICONDUCTOR DRIVERS
16720 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16721 S:      Maintained
16722 F:      sound/soc/codecs/tscs*.c
16723 F:      sound/soc/codecs/tscs*.h
16724 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16725
16726 TTY LAYER
16727 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16728 M:      Jiri Slaby <jslaby@suse.com>
16729 S:      Supported
16730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
16731 F:      Documentation/driver-api/serial/
16732 F:      drivers/tty/
16733 F:      drivers/tty/serial/serial_core.c
16734 F:      include/linux/serial_core.h
16735 F:      include/linux/serial.h
16736 F:      include/linux/tty.h
16737 F:      include/uapi/linux/serial_core.h
16738 F:      include/uapi/linux/serial.h
16739 F:      include/uapi/linux/tty.h
16740
16741 TUA9001 MEDIA DRIVER
16742 M:      Antti Palosaari <crope@iki.fi>
16743 L:      linux-media@vger.kernel.org
16744 W:      https://linuxtv.org
16745 W:      http://palosaari.fi/linux/
16746 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16747 T:      git git://linuxtv.org/anttip/media_tree.git
16748 S:      Maintained
16749 F:      drivers/media/tuners/tua9001*
16750
16751 TULIP NETWORK DRIVERS
16752 L:      netdev@vger.kernel.org
16753 L:      linux-parisc@vger.kernel.org
16754 S:      Orphan
16755 F:      drivers/net/ethernet/dec/tulip/
16756
16757 TUN/TAP driver
16758 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
16759 W:      http://vtun.sourceforge.net/tun
16760 S:      Maintained
16761 F:      Documentation/networking/tuntap.txt
16762 F:      arch/um/os-Linux/drivers/
16763
16764 TURBOCHANNEL SUBSYSTEM
16765 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
16766 M:      Ralf Baechle <ralf@linux-mips.org>
16767 L:      linux-mips@vger.kernel.org
16768 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
16769 S:      Maintained
16770 F:      drivers/tc/
16771 F:      include/linux/tc.h
16772
16773 TURBOSTAT UTILITY
16774 M:      "Len Brown" <lenb@kernel.org>
16775 L:      linux-pm@vger.kernel.org
16776 B:      https://bugzilla.kernel.org
16777 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
16779 S:      Supported
16780 F:      tools/power/x86/turbostat/
16781
16782 TW5864 VIDEO4LINUX DRIVER
16783 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16784 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16785 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
16786 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16787 L:      linux-media@vger.kernel.org
16788 S:      Supported
16789 F:      drivers/media/pci/tw5864/
16790
16791 TW68 VIDEO4LINUX DRIVER
16792 M:      Hans Verkuil <hverkuil@xs4all.nl>
16793 L:      linux-media@vger.kernel.org
16794 T:      git git://linuxtv.org/media_tree.git
16795 W:      https://linuxtv.org
16796 S:      Odd Fixes
16797 F:      drivers/media/pci/tw68/
16798
16799 TW686X VIDEO4LINUX DRIVER
16800 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16801 L:      linux-media@vger.kernel.org
16802 T:      git git://linuxtv.org/media_tree.git
16803 W:      http://linuxtv.org
16804 S:      Maintained
16805 F:      drivers/media/pci/tw686x/
16806
16807 UBI FILE SYSTEM (UBIFS)
16808 M:      Richard Weinberger <richard@nod.at>
16809 L:      linux-mtd@lists.infradead.org
16810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
16811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
16812 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
16813 S:      Supported
16814 F:      Documentation/filesystems/ubifs.txt
16815 F:      fs/ubifs/
16816
16817 UCLINUX (M68KNOMMU AND COLDFIRE)
16818 M:      Greg Ungerer <gerg@linux-m68k.org>
16819 W:      http://www.linux-m68k.org/
16820 W:      http://www.uclinux.org/
16821 L:      linux-m68k@lists.linux-m68k.org
16822 L:      uclinux-dev@uclinux.org  (subscribers-only)
16823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
16824 S:      Maintained
16825 F:      arch/m68k/coldfire/
16826 F:      arch/m68k/68*/
16827 F:      arch/m68k/*/*_no.*
16828 F:      arch/m68k/include/asm/*_no.*
16829
16830 UDF FILESYSTEM
16831 M:      Jan Kara <jack@suse.com>
16832 S:      Maintained
16833 F:      Documentation/filesystems/udf.txt
16834 F:      fs/udf/
16835
16836 UDRAW TABLET
16837 M:      Bastien Nocera <hadess@hadess.net>
16838 L:      linux-input@vger.kernel.org
16839 S:      Maintained
16840 F:      drivers/hid/hid-udraw-ps3.c
16841
16842 UFS FILESYSTEM
16843 M:      Evgeniy Dushistov <dushistov@mail.ru>
16844 S:      Maintained
16845 F:      Documentation/admin-guide/ufs.rst
16846 F:      fs/ufs/
16847
16848 UHID USERSPACE HID IO DRIVER:
16849 M:      David Herrmann <dh.herrmann@googlemail.com>
16850 L:      linux-input@vger.kernel.org
16851 S:      Maintained
16852 F:      drivers/hid/uhid.c
16853 F:      include/uapi/linux/uhid.h
16854
16855 ULPI BUS
16856 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16857 L:      linux-usb@vger.kernel.org
16858 S:      Maintained
16859 F:      drivers/usb/common/ulpi.c
16860 F:      include/linux/ulpi/
16861
16862 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
16863 L:      devel@driverdev.osuosl.org
16864 S:      Obsolete
16865 F:      drivers/staging/uwb/
16866
16867 UNICODE SUBSYSTEM:
16868 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
16869 L:      linux-fsdevel@vger.kernel.org
16870 S:      Supported
16871 F:      fs/unicode/
16872
16873 UNICORE32 ARCHITECTURE:
16874 M:      Guan Xuetao <gxt@pku.edu.cn>
16875 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
16876 S:      Maintained
16877 T:      git git://github.com/gxt/linux.git
16878 F:      arch/unicore32/
16879
16880 UNIFDEF
16881 M:      Tony Finch <dot@dotat.at>
16882 W:      http://dotat.at/prog/unifdef
16883 S:      Maintained
16884 F:      scripts/unifdef.c
16885
16886 UNIFORM CDROM DRIVER
16887 M:      Jens Axboe <axboe@kernel.dk>
16888 W:      http://www.kernel.dk
16889 S:      Maintained
16890 F:      Documentation/cdrom/
16891 F:      drivers/cdrom/cdrom.c
16892 F:      include/linux/cdrom.h
16893 F:      include/uapi/linux/cdrom.h
16894
16895 UNISYS S-PAR DRIVERS
16896 M:      David Kershner <david.kershner@unisys.com>
16897 L:      sparmaintainer@unisys.com (Unisys internal)
16898 S:      Supported
16899 F:      include/linux/visorbus.h
16900 F:      drivers/visorbus/
16901 F:      drivers/staging/unisys/
16902
16903 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
16904 R:      Alim Akhtar <alim.akhtar@samsung.com>
16905 R:      Avri Altman <avri.altman@wdc.com>
16906 R:      Pedro Sousa <pedrom.sousa@synopsys.com>
16907 L:      linux-scsi@vger.kernel.org
16908 S:      Supported
16909 F:      Documentation/scsi/ufs.txt
16910 F:      drivers/scsi/ufs/
16911
16912 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
16913 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
16914 L:      linux-scsi@vger.kernel.org
16915 S:      Supported
16916 F:      drivers/scsi/ufs/*dwc*
16917
16918 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
16919 M:      Stanley Chu <stanley.chu@mediatek.com>
16920 L:      linux-scsi@vger.kernel.org
16921 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16922 S:      Maintained
16923 F:      drivers/scsi/ufs/ufs-mediatek*
16924
16925 UNSORTED BLOCK IMAGES (UBI)
16926 M:      Richard Weinberger <richard@nod.at>
16927 W:      http://www.linux-mtd.infradead.org/
16928 L:      linux-mtd@lists.infradead.org
16929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
16930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
16931 S:      Supported
16932 F:      drivers/mtd/ubi/
16933 F:      include/linux/mtd/ubi.h
16934 F:      include/uapi/mtd/ubi-user.h
16935
16936 USB "USBNET" DRIVER FRAMEWORK
16937 M:      Oliver Neukum <oneukum@suse.com>
16938 L:      netdev@vger.kernel.org
16939 W:      http://www.linux-usb.org/usbnet
16940 S:      Maintained
16941 F:      drivers/net/usb/usbnet.c
16942 F:      include/linux/usb/usbnet.h
16943
16944 USB ACM DRIVER
16945 M:      Oliver Neukum <oneukum@suse.com>
16946 L:      linux-usb@vger.kernel.org
16947 S:      Maintained
16948 F:      Documentation/usb/acm.rst
16949 F:      drivers/usb/class/cdc-acm.*
16950
16951 USB AR5523 WIRELESS DRIVER
16952 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
16953 L:      linux-wireless@vger.kernel.org
16954 S:      Maintained
16955 F:      drivers/net/wireless/ath/ar5523/
16956
16957 USB ATTACHED SCSI
16958 M:      Oliver Neukum <oneukum@suse.com>
16959 L:      linux-usb@vger.kernel.org
16960 L:      linux-scsi@vger.kernel.org
16961 S:      Maintained
16962 F:      drivers/usb/storage/uas.c
16963
16964 USB CDC ETHERNET DRIVER
16965 M:      Oliver Neukum <oliver@neukum.org>
16966 L:      linux-usb@vger.kernel.org
16967 S:      Maintained
16968 F:      drivers/net/usb/cdc_*.c
16969 F:      include/uapi/linux/usb/cdc.h
16970
16971 USB CHAOSKEY DRIVER
16972 M:      Keith Packard <keithp@keithp.com>
16973 L:      linux-usb@vger.kernel.org
16974 S:      Maintained
16975 F:      drivers/usb/misc/chaoskey.c
16976
16977 USB CYPRESS C67X00 DRIVER
16978 M:      Peter Korsgaard <jacmet@sunsite.dk>
16979 L:      linux-usb@vger.kernel.org
16980 S:      Maintained
16981 F:      drivers/usb/c67x00/
16982
16983 USB DAVICOM DM9601 DRIVER
16984 M:      Peter Korsgaard <jacmet@sunsite.dk>
16985 L:      netdev@vger.kernel.org
16986 W:      http://www.linux-usb.org/usbnet
16987 S:      Maintained
16988 F:      drivers/net/usb/dm9601.c
16989
16990 USB EHCI DRIVER
16991 M:      Alan Stern <stern@rowland.harvard.edu>
16992 L:      linux-usb@vger.kernel.org
16993 S:      Maintained
16994 F:      Documentation/usb/ehci.rst
16995 F:      drivers/usb/host/ehci*
16996
16997 USB GADGET/PERIPHERAL SUBSYSTEM
16998 M:      Felipe Balbi <balbi@kernel.org>
16999 L:      linux-usb@vger.kernel.org
17000 W:      http://www.linux-usb.org/gadget
17001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17002 S:      Maintained
17003 F:      drivers/usb/gadget/
17004 F:      include/linux/usb/gadget*
17005
17006 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17007 M:      Jiri Kosina <jikos@kernel.org>
17008 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
17009 L:      linux-usb@vger.kernel.org
17010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17011 S:      Maintained
17012 F:      Documentation/hid/hiddev.rst
17013 F:      drivers/hid/usbhid/
17014
17015 USB INTEL XHCI ROLE MUX DRIVER
17016 M:      Hans de Goede <hdegoede@redhat.com>
17017 L:      linux-usb@vger.kernel.org
17018 S:      Maintained
17019 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17020
17021 USB IP DRIVER FOR HISILICON KIRIN
17022 M:      Yu Chen <chenyu56@huawei.com>
17023 M:      Binghui Wang <wangbinghui@hisilicon.com>
17024 L:      linux-usb@vger.kernel.org
17025 S:      Maintained
17026 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17027 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17028
17029 USB ISP116X DRIVER
17030 M:      Olav Kongas <ok@artecdesign.ee>
17031 L:      linux-usb@vger.kernel.org
17032 S:      Maintained
17033 F:      drivers/usb/host/isp116x*
17034 F:      include/linux/usb/isp116x.h
17035
17036 USB LAN78XX ETHERNET DRIVER
17037 M:      Woojung Huh <woojung.huh@microchip.com>
17038 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17039 L:      netdev@vger.kernel.org
17040 S:      Maintained
17041 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17042 F:      drivers/net/usb/lan78xx.*
17043 F:      include/dt-bindings/net/microchip-lan78xx.h
17044
17045 USB MASS STORAGE DRIVER
17046 M:      Alan Stern <stern@rowland.harvard.edu>
17047 L:      linux-usb@vger.kernel.org
17048 L:      usb-storage@lists.one-eyed-alien.net
17049 S:      Maintained
17050 F:      drivers/usb/storage/
17051
17052 USB MIDI DRIVER
17053 M:      Clemens Ladisch <clemens@ladisch.de>
17054 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17056 S:      Maintained
17057 F:      sound/usb/midi.*
17058
17059 USB NETWORKING DRIVERS
17060 L:      linux-usb@vger.kernel.org
17061 S:      Odd Fixes
17062 F:      drivers/net/usb/
17063
17064 USB OHCI DRIVER
17065 M:      Alan Stern <stern@rowland.harvard.edu>
17066 L:      linux-usb@vger.kernel.org
17067 S:      Maintained
17068 F:      Documentation/usb/ohci.rst
17069 F:      drivers/usb/host/ohci*
17070
17071 USB OTG FSM (Finite State Machine)
17072 M:      Peter Chen <Peter.Chen@nxp.com>
17073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17074 L:      linux-usb@vger.kernel.org
17075 S:      Maintained
17076 F:      drivers/usb/common/usb-otg-fsm.c
17077
17078 USB OVER IP DRIVER
17079 M:      Valentina Manea <valentina.manea.m@gmail.com>
17080 M:      Shuah Khan <shuah@kernel.org>
17081 M:      Shuah Khan <skhan@linuxfoundation.org>
17082 L:      linux-usb@vger.kernel.org
17083 S:      Maintained
17084 F:      Documentation/usb/usbip_protocol.rst
17085 F:      drivers/usb/usbip/
17086 F:      tools/usb/usbip/
17087 F:      tools/testing/selftests/drivers/usb/usbip/
17088
17089 USB PEGASUS DRIVER
17090 M:      Petko Manolov <petkan@nucleusys.com>
17091 L:      linux-usb@vger.kernel.org
17092 L:      netdev@vger.kernel.org
17093 T:      git git://github.com/petkan/pegasus.git
17094 W:      https://github.com/petkan/pegasus
17095 S:      Maintained
17096 F:      drivers/net/usb/pegasus.*
17097
17098 USB PHY LAYER
17099 M:      Felipe Balbi <balbi@kernel.org>
17100 L:      linux-usb@vger.kernel.org
17101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17102 S:      Maintained
17103 F:      drivers/usb/phy/
17104
17105 USB PRINTER DRIVER (usblp)
17106 M:      Pete Zaitcev <zaitcev@redhat.com>
17107 L:      linux-usb@vger.kernel.org
17108 S:      Supported
17109 F:      drivers/usb/class/usblp.c
17110
17111 USB QMI WWAN NETWORK DRIVER
17112 M:      Bjørn Mork <bjorn@mork.no>
17113 L:      netdev@vger.kernel.org
17114 S:      Maintained
17115 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17116 F:      drivers/net/usb/qmi_wwan.c
17117
17118 USB RTL8150 DRIVER
17119 M:      Petko Manolov <petkan@nucleusys.com>
17120 L:      linux-usb@vger.kernel.org
17121 L:      netdev@vger.kernel.org
17122 T:      git git://github.com/petkan/rtl8150.git
17123 W:      https://github.com/petkan/rtl8150
17124 S:      Maintained
17125 F:      drivers/net/usb/rtl8150.c
17126
17127 USB SERIAL SUBSYSTEM
17128 M:      Johan Hovold <johan@kernel.org>
17129 L:      linux-usb@vger.kernel.org
17130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17131 S:      Maintained
17132 F:      Documentation/usb/usb-serial.rst
17133 F:      drivers/usb/serial/
17134 F:      include/linux/usb/serial.h
17135
17136 USB SMSC75XX ETHERNET DRIVER
17137 M:      Steve Glendinning <steve.glendinning@shawell.net>
17138 L:      netdev@vger.kernel.org
17139 S:      Maintained
17140 F:      drivers/net/usb/smsc75xx.*
17141
17142 USB SMSC95XX ETHERNET DRIVER
17143 M:      Steve Glendinning <steve.glendinning@shawell.net>
17144 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17145 L:      netdev@vger.kernel.org
17146 S:      Maintained
17147 F:      drivers/net/usb/smsc95xx.*
17148
17149 USB SUBSYSTEM
17150 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17151 L:      linux-usb@vger.kernel.org
17152 W:      http://www.linux-usb.org
17153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17154 S:      Supported
17155 F:      Documentation/devicetree/bindings/usb/
17156 F:      Documentation/usb/
17157 F:      drivers/usb/
17158 F:      include/linux/usb.h
17159 F:      include/linux/usb/
17160
17161 USB TYPEC PI3USB30532 MUX DRIVER
17162 M:      Hans de Goede <hdegoede@redhat.com>
17163 L:      linux-usb@vger.kernel.org
17164 S:      Maintained
17165 F:      drivers/usb/typec/mux/pi3usb30532.c
17166
17167 USB TYPEC CLASS
17168 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17169 L:      linux-usb@vger.kernel.org
17170 S:      Maintained
17171 F:      Documentation/ABI/testing/sysfs-class-typec
17172 F:      Documentation/driver-api/usb/typec.rst
17173 F:      drivers/usb/typec/
17174 F:      include/linux/usb/typec.h
17175
17176 USB TYPEC BUS FOR ALTERNATE MODES
17177 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17178 L:      linux-usb@vger.kernel.org
17179 S:      Maintained
17180 F:      Documentation/ABI/testing/sysfs-bus-typec
17181 F:      Documentation/driver-api/usb/typec_bus.rst
17182 F:      drivers/usb/typec/altmodes/
17183 F:      include/linux/usb/typec_altmode.h
17184
17185 USB TYPEC PORT CONTROLLER DRIVERS
17186 M:      Guenter Roeck <linux@roeck-us.net>
17187 L:      linux-usb@vger.kernel.org
17188 S:      Maintained
17189 F:      drivers/usb/typec/tcpm/
17190
17191 USB UHCI DRIVER
17192 M:      Alan Stern <stern@rowland.harvard.edu>
17193 L:      linux-usb@vger.kernel.org
17194 S:      Maintained
17195 F:      drivers/usb/host/uhci*
17196
17197 USB VIDEO CLASS
17198 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17199 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17200 L:      linux-media@vger.kernel.org
17201 T:      git git://linuxtv.org/media_tree.git
17202 W:      http://www.ideasonboard.org/uvc/
17203 S:      Maintained
17204 F:      drivers/media/usb/uvc/
17205 F:      include/uapi/linux/uvcvideo.h
17206
17207 USB VISION DRIVER
17208 M:      Hans Verkuil <hverkuil@xs4all.nl>
17209 L:      linux-media@vger.kernel.org
17210 T:      git git://linuxtv.org/media_tree.git
17211 W:      https://linuxtv.org
17212 S:      Odd Fixes
17213 F:      drivers/media/usb/usbvision/
17214
17215 USB WEBCAM GADGET
17216 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17217 L:      linux-usb@vger.kernel.org
17218 S:      Maintained
17219 F:      drivers/usb/gadget/function/*uvc*
17220 F:      drivers/usb/gadget/legacy/webcam.c
17221 F:      include/uapi/linux/usb/g_uvc.h
17222
17223 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17224 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17225 L:      linux-wireless@vger.kernel.org
17226 S:      Maintained
17227 F:      drivers/net/wireless/rndis_wlan.c
17228
17229 USB XHCI DRIVER
17230 M:      Mathias Nyman <mathias.nyman@intel.com>
17231 L:      linux-usb@vger.kernel.org
17232 S:      Supported
17233 F:      drivers/usb/host/xhci*
17234 F:      drivers/usb/host/pci-quirks*
17235
17236 USB ZD1201 DRIVER
17237 L:      linux-wireless@vger.kernel.org
17238 W:      http://linux-lc100020.sourceforge.net
17239 S:      Orphan
17240 F:      drivers/net/wireless/zydas/zd1201.*
17241
17242 USB ZR364XX DRIVER
17243 M:      Antoine Jacquet <royale@zerezo.com>
17244 L:      linux-usb@vger.kernel.org
17245 L:      linux-media@vger.kernel.org
17246 T:      git git://linuxtv.org/media_tree.git
17247 W:      http://royale.zerezo.com/zr364xx/
17248 S:      Maintained
17249 F:      Documentation/media/v4l-drivers/zr364xx*
17250 F:      drivers/media/usb/zr364xx/
17251
17252 USER-MODE LINUX (UML)
17253 M:      Jeff Dike <jdike@addtoit.com>
17254 M:      Richard Weinberger <richard@nod.at>
17255 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17256 L:      linux-um@lists.infradead.org
17257 W:      http://user-mode-linux.sourceforge.net
17258 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17260 S:      Maintained
17261 F:      Documentation/virt/uml/
17262 F:      arch/um/
17263 F:      arch/x86/um/
17264 F:      fs/hostfs/
17265
17266 USERSPACE COPYIN/COPYOUT (UIOVEC)
17267 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17268 S:      Maintained
17269 F:      lib/iov_iter.c
17270 F:      include/linux/uio.h
17271
17272 USERSPACE DMA BUFFER DRIVER
17273 M:      Gerd Hoffmann <kraxel@redhat.com>
17274 S:      Maintained
17275 L:      dri-devel@lists.freedesktop.org
17276 F:      drivers/dma-buf/udmabuf.c
17277 F:      include/uapi/linux/udmabuf.h
17278 T:      git git://anongit.freedesktop.org/drm/drm-misc
17279
17280 USERSPACE I/O (UIO)
17281 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17282 S:      Maintained
17283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17284 F:      Documentation/driver-api/uio-howto.rst
17285 F:      drivers/uio/
17286 F:      include/linux/uio_driver.h
17287
17288 UTIL-LINUX PACKAGE
17289 M:      Karel Zak <kzak@redhat.com>
17290 L:      util-linux@vger.kernel.org
17291 W:      http://en.wikipedia.org/wiki/Util-linux
17292 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17293 S:      Maintained
17294
17295 UUID HELPERS
17296 M:      Christoph Hellwig <hch@lst.de>
17297 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17298 L:      linux-kernel@vger.kernel.org
17299 T:      git git://git.infradead.org/users/hch/uuid.git
17300 F:      lib/uuid.c
17301 F:      lib/test_uuid.c
17302 F:      include/linux/uuid.h
17303 F:      include/uapi/linux/uuid.h
17304 S:      Maintained
17305
17306 UVESAFB DRIVER
17307 M:      Michal Januszewski <spock@gentoo.org>
17308 L:      linux-fbdev@vger.kernel.org
17309 W:      https://github.com/mjanusz/v86d
17310 S:      Maintained
17311 F:      Documentation/fb/uvesafb.rst
17312 F:      drivers/video/fbdev/uvesafb.*
17313
17314 VF610 NAND DRIVER
17315 M:      Stefan Agner <stefan@agner.ch>
17316 L:      linux-mtd@lists.infradead.org
17317 S:      Supported
17318 F:      drivers/mtd/nand/raw/vf610_nfc.c
17319
17320 VFAT/FAT/MSDOS FILESYSTEM
17321 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17322 S:      Maintained
17323 F:      Documentation/filesystems/vfat.txt
17324 F:      fs/fat/
17325
17326 VFIO DRIVER
17327 M:      Alex Williamson <alex.williamson@redhat.com>
17328 R:      Cornelia Huck <cohuck@redhat.com>
17329 L:      kvm@vger.kernel.org
17330 T:      git git://github.com/awilliam/linux-vfio.git
17331 S:      Maintained
17332 F:      Documentation/driver-api/vfio.rst
17333 F:      drivers/vfio/
17334 F:      include/linux/vfio.h
17335 F:      include/uapi/linux/vfio.h
17336
17337 VFIO MEDIATED DEVICE DRIVERS
17338 M:      Kirti Wankhede <kwankhede@nvidia.com>
17339 L:      kvm@vger.kernel.org
17340 S:      Maintained
17341 F:      Documentation/driver-api/vfio-mediated-device.rst
17342 F:      drivers/vfio/mdev/
17343 F:      include/linux/mdev.h
17344 F:      samples/vfio-mdev/
17345
17346 VFIO PLATFORM DRIVER
17347 M:      Eric Auger <eric.auger@redhat.com>
17348 L:      kvm@vger.kernel.org
17349 S:      Maintained
17350 F:      drivers/vfio/platform/
17351
17352 VGA_SWITCHEROO
17353 R:      Lukas Wunner <lukas@wunner.de>
17354 S:      Maintained
17355 F:      Documentation/gpu/vga-switcheroo.rst
17356 F:      drivers/gpu/vga/vga_switcheroo.c
17357 F:      include/linux/vga_switcheroo.h
17358 T:      git git://anongit.freedesktop.org/drm/drm-misc
17359
17360 VIA RHINE NETWORK DRIVER
17361 S:      Orphan
17362 F:      drivers/net/ethernet/via/via-rhine.c
17363
17364 VIA SD/MMC CARD CONTROLLER DRIVER
17365 M:      Bruce Chang <brucechang@via.com.tw>
17366 M:      Harald Welte <HaraldWelte@viatech.com>
17367 S:      Maintained
17368 F:      drivers/mmc/host/via-sdmmc.c
17369
17370 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17371 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17372 L:      linux-fbdev@vger.kernel.org
17373 S:      Maintained
17374 F:      include/linux/via-core.h
17375 F:      include/linux/via-gpio.h
17376 F:      include/linux/via_i2c.h
17377 F:      drivers/video/fbdev/via/
17378
17379 VIA VELOCITY NETWORK DRIVER
17380 M:      Francois Romieu <romieu@fr.zoreil.com>
17381 L:      netdev@vger.kernel.org
17382 S:      Maintained
17383 F:      drivers/net/ethernet/via/via-velocity.*
17384
17385 VICODEC VIRTUAL CODEC DRIVER
17386 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
17387 L:      linux-media@vger.kernel.org
17388 T:      git git://linuxtv.org/media_tree.git
17389 W:      https://linuxtv.org
17390 S:      Maintained
17391 F:      drivers/media/platform/vicodec/*
17392
17393 VIDEO MULTIPLEXER DRIVER
17394 M:      Philipp Zabel <p.zabel@pengutronix.de>
17395 L:      linux-media@vger.kernel.org
17396 S:      Maintained
17397 F:      drivers/media/platform/video-mux.c
17398
17399 VIDEO I2C POLLING DRIVER
17400 M:      Matt Ranostay <matt.ranostay@konsulko.com>
17401 L:      linux-media@vger.kernel.org
17402 S:      Maintained
17403 F:      drivers/media/i2c/video-i2c.c
17404
17405 VIDEOBUF2 FRAMEWORK
17406 M:      Pawel Osciak <pawel@osciak.com>
17407 M:      Marek Szyprowski <m.szyprowski@samsung.com>
17408 M:      Kyungmin Park <kyungmin.park@samsung.com>
17409 R:      Tomasz Figa <tfiga@chromium.org>
17410 L:      linux-media@vger.kernel.org
17411 S:      Maintained
17412 F:      drivers/media/common/videobuf2/*
17413 F:      include/media/videobuf2-*
17414
17415 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17416 M:      Helen Koike <helen.koike@collabora.com>
17417 R:      Shuah Khan <skhan@linuxfoundation.org>
17418 L:      linux-media@vger.kernel.org
17419 T:      git git://linuxtv.org/media_tree.git
17420 W:      https://linuxtv.org
17421 S:      Maintained
17422 F:      drivers/media/platform/vimc/*
17423
17424 VIRT LIB
17425 M:      Alex Williamson <alex.williamson@redhat.com>
17426 M:      Paolo Bonzini <pbonzini@redhat.com>
17427 L:      kvm@vger.kernel.org
17428 S:      Supported
17429 F:      virt/lib/
17430
17431 VIRTIO AND VHOST VSOCK DRIVER
17432 M:      Stefan Hajnoczi <stefanha@redhat.com>
17433 M:      Stefano Garzarella <sgarzare@redhat.com>
17434 L:      kvm@vger.kernel.org
17435 L:      virtualization@lists.linux-foundation.org
17436 L:      netdev@vger.kernel.org
17437 S:      Maintained
17438 F:      include/linux/virtio_vsock.h
17439 F:      include/uapi/linux/virtio_vsock.h
17440 F:      include/uapi/linux/vsockmon.h
17441 F:      include/uapi/linux/vm_sockets_diag.h
17442 F:      net/vmw_vsock/diag.c
17443 F:      net/vmw_vsock/af_vsock_tap.c
17444 F:      net/vmw_vsock/virtio_transport_common.c
17445 F:      net/vmw_vsock/virtio_transport.c
17446 F:      drivers/net/vsockmon.c
17447 F:      drivers/vhost/vsock.c
17448 F:      tools/testing/vsock/
17449
17450 VIRTIO CONSOLE DRIVER
17451 M:      Amit Shah <amit@kernel.org>
17452 L:      virtualization@lists.linux-foundation.org
17453 S:      Maintained
17454 F:      drivers/char/virtio_console.c
17455 F:      include/linux/virtio_console.h
17456 F:      include/uapi/linux/virtio_console.h
17457
17458 VIRTIO CORE AND NET DRIVERS
17459 M:      "Michael S. Tsirkin" <mst@redhat.com>
17460 M:      Jason Wang <jasowang@redhat.com>
17461 L:      virtualization@lists.linux-foundation.org
17462 S:      Maintained
17463 F:      Documentation/devicetree/bindings/virtio/
17464 F:      drivers/virtio/
17465 F:      tools/virtio/
17466 F:      drivers/net/virtio_net.c
17467 F:      drivers/block/virtio_blk.c
17468 F:      include/linux/virtio*.h
17469 F:      include/uapi/linux/virtio_*.h
17470 F:      drivers/crypto/virtio/
17471 F:      mm/balloon_compaction.c
17472
17473 VIRTIO BLOCK AND SCSI DRIVERS
17474 M:      "Michael S. Tsirkin" <mst@redhat.com>
17475 M:      Jason Wang <jasowang@redhat.com>
17476 R:      Paolo Bonzini <pbonzini@redhat.com>
17477 R:      Stefan Hajnoczi <stefanha@redhat.com>
17478 L:      virtualization@lists.linux-foundation.org
17479 S:      Maintained
17480 F:      drivers/block/virtio_blk.c
17481 F:      drivers/scsi/virtio_scsi.c
17482 F:      include/uapi/linux/virtio_blk.h
17483 F:      include/uapi/linux/virtio_scsi.h
17484 F:      drivers/vhost/scsi.c
17485
17486 VIRTIO CRYPTO DRIVER
17487 M:      Gonglei <arei.gonglei@huawei.com>
17488 L:      virtualization@lists.linux-foundation.org
17489 L:      linux-crypto@vger.kernel.org
17490 S:      Maintained
17491 F:      drivers/crypto/virtio/
17492 F:      include/uapi/linux/virtio_crypto.h
17493
17494 VIRTIO DRIVERS FOR S390
17495 M:      Cornelia Huck <cohuck@redhat.com>
17496 M:      Halil Pasic <pasic@linux.ibm.com>
17497 L:      linux-s390@vger.kernel.org
17498 L:      virtualization@lists.linux-foundation.org
17499 L:      kvm@vger.kernel.org
17500 S:      Supported
17501 F:      drivers/s390/virtio/
17502 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17503
17504 VIRTIO FILE SYSTEM
17505 M:      Vivek Goyal <vgoyal@redhat.com>
17506 M:      Stefan Hajnoczi <stefanha@redhat.com>
17507 M:      Miklos Szeredi <miklos@szeredi.hu>
17508 L:      virtualization@lists.linux-foundation.org
17509 L:      linux-fsdevel@vger.kernel.org
17510 W:      https://virtio-fs.gitlab.io/
17511 S:      Supported
17512 F:      fs/fuse/virtio_fs.c
17513 F:      include/uapi/linux/virtio_fs.h
17514 F:      Documentation/filesystems/virtiofs.rst
17515
17516 VIRTIO GPU DRIVER
17517 M:      David Airlie <airlied@linux.ie>
17518 M:      Gerd Hoffmann <kraxel@redhat.com>
17519 L:      dri-devel@lists.freedesktop.org
17520 L:      virtualization@lists.linux-foundation.org
17521 T:      git git://anongit.freedesktop.org/drm/drm-misc
17522 S:      Maintained
17523 F:      drivers/gpu/drm/virtio/
17524 F:      include/uapi/linux/virtio_gpu.h
17525
17526 VIRTIO HOST (VHOST)
17527 M:      "Michael S. Tsirkin" <mst@redhat.com>
17528 M:      Jason Wang <jasowang@redhat.com>
17529 L:      kvm@vger.kernel.org
17530 L:      virtualization@lists.linux-foundation.org
17531 L:      netdev@vger.kernel.org
17532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17533 S:      Maintained
17534 F:      drivers/vhost/
17535 F:      include/uapi/linux/vhost.h
17536
17537 VIRTIO INPUT DRIVER
17538 M:      Gerd Hoffmann <kraxel@redhat.com>
17539 S:      Maintained
17540 F:      drivers/virtio/virtio_input.c
17541 F:      include/uapi/linux/virtio_input.h
17542
17543 VIRTIO IOMMU DRIVER
17544 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
17545 L:      virtualization@lists.linux-foundation.org
17546 S:      Maintained
17547 F:      drivers/iommu/virtio-iommu.c
17548 F:      include/uapi/linux/virtio_iommu.h
17549
17550 VIRTUAL BOX GUEST DEVICE DRIVER
17551 M:      Hans de Goede <hdegoede@redhat.com>
17552 M:      Arnd Bergmann <arnd@arndb.de>
17553 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17554 S:      Maintained
17555 F:      include/linux/vbox_utils.h
17556 F:      include/uapi/linux/vbox*.h
17557 F:      drivers/virt/vboxguest/
17558
17559 VIRTUAL SERIO DEVICE DRIVER
17560 M:      Stephen Chandler Paul <thatslyude@gmail.com>
17561 S:      Maintained
17562 F:      drivers/input/serio/userio.c
17563 F:      include/uapi/linux/userio.h
17564
17565 VITESSE FELIX ETHERNET SWITCH DRIVER
17566 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
17567 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
17568 L:      netdev@vger.kernel.org
17569 S:      Maintained
17570 F:      drivers/net/dsa/ocelot/*
17571 F:      net/dsa/tag_ocelot.c
17572
17573 VIVID VIRTUAL VIDEO DRIVER
17574 M:      Hans Verkuil <hverkuil@xs4all.nl>
17575 L:      linux-media@vger.kernel.org
17576 T:      git git://linuxtv.org/media_tree.git
17577 W:      https://linuxtv.org
17578 S:      Maintained
17579 F:      drivers/media/platform/vivid/*
17580
17581 VLYNQ BUS
17582 M:      Florian Fainelli <f.fainelli@gmail.com>
17583 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
17584 S:      Maintained
17585 F:      drivers/vlynq/vlynq.c
17586 F:      include/linux/vlynq.h
17587
17588 VME SUBSYSTEM
17589 M:      Martyn Welch <martyn@welchs.me.uk>
17590 M:      Manohar Vanga <manohar.vanga@gmail.com>
17591 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17592 L:      devel@driverdev.osuosl.org
17593 S:      Maintained
17594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17595 F:      Documentation/driver-api/vme.rst
17596 F:      drivers/staging/vme/
17597 F:      drivers/vme/
17598 F:      include/linux/vme*
17599
17600 VMWARE BALLOON DRIVER
17601 M:      Nadav Amit <namit@vmware.com>
17602 M:      "VMware, Inc." <pv-drivers@vmware.com>
17603 L:      linux-kernel@vger.kernel.org
17604 S:      Maintained
17605 F:      drivers/misc/vmw_balloon.c
17606
17607 VMWARE HYPERVISOR INTERFACE
17608 M:      Thomas Hellstrom <thellstrom@vmware.com>
17609 M:      "VMware, Inc." <pv-drivers@vmware.com>
17610 L:      virtualization@lists.linux-foundation.org
17611 S:      Supported
17612 F:      arch/x86/kernel/cpu/vmware.c
17613 F:      arch/x86/include/asm/vmware.h
17614
17615 VMWARE PVRDMA DRIVER
17616 M:      Adit Ranadive <aditr@vmware.com>
17617 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17618 L:      linux-rdma@vger.kernel.org
17619 S:      Maintained
17620 F:      drivers/infiniband/hw/vmw_pvrdma/
17621
17622 VMware PVSCSI driver
17623 M:      Jim Gill <jgill@vmware.com>
17624 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17625 L:      linux-scsi@vger.kernel.org
17626 S:      Maintained
17627 F:      drivers/scsi/vmw_pvscsi.c
17628 F:      drivers/scsi/vmw_pvscsi.h
17629
17630 VMWARE VMMOUSE SUBDRIVER
17631 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
17632 M:      "VMware, Inc." <pv-drivers@vmware.com>
17633 L:      linux-input@vger.kernel.org
17634 S:      Maintained
17635 F:      drivers/input/mouse/vmmouse.c
17636 F:      drivers/input/mouse/vmmouse.h
17637
17638 VMWARE VMXNET3 ETHERNET DRIVER
17639 M:      Ronak Doshi <doshir@vmware.com>
17640 M:      "VMware, Inc." <pv-drivers@vmware.com>
17641 L:      netdev@vger.kernel.org
17642 S:      Maintained
17643 F:      drivers/net/vmxnet3/
17644
17645 VOCORE VOCORE2 BOARD
17646 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
17647 L:      linux-mips@vger.kernel.org
17648 S:      Maintained
17649 F:      arch/mips/boot/dts/ralink/vocore2.dts
17650
17651 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
17652 M:      Liam Girdwood <lgirdwood@gmail.com>
17653 M:      Mark Brown <broonie@kernel.org>
17654 L:      linux-kernel@vger.kernel.org
17655 W:      http://www.slimlogic.co.uk/?p=48
17656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
17657 S:      Supported
17658 F:      Documentation/devicetree/bindings/regulator/
17659 F:      Documentation/power/regulator/
17660 F:      drivers/regulator/
17661 F:      include/dt-bindings/regulator/
17662 F:      include/linux/regulator/
17663 K:      regulator_get_optional
17664
17665 VRF
17666 M:      David Ahern <dsahern@kernel.org>
17667 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
17668 L:      netdev@vger.kernel.org
17669 S:      Maintained
17670 F:      drivers/net/vrf.c
17671 F:      Documentation/networking/vrf.txt
17672
17673 VSPRINTF
17674 M:      Petr Mladek <pmladek@suse.com>
17675 M:      Steven Rostedt <rostedt@goodmis.org>
17676 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
17677 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17678 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
17679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
17680 S:      Maintained
17681 F:      lib/vsprintf.c
17682 F:      lib/test_printf.c
17683 F:      Documentation/core-api/printk-formats.rst
17684
17685 VT1211 HARDWARE MONITOR DRIVER
17686 M:      Juerg Haefliger <juergh@gmail.com>
17687 L:      linux-hwmon@vger.kernel.org
17688 S:      Maintained
17689 F:      Documentation/hwmon/vt1211.rst
17690 F:      drivers/hwmon/vt1211.c
17691
17692 VT8231 HARDWARE MONITOR DRIVER
17693 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
17694 L:      linux-hwmon@vger.kernel.org
17695 S:      Maintained
17696 F:      drivers/hwmon/vt8231.c
17697
17698 VUB300 USB to SDIO/SD/MMC bridge chip
17699 L:      linux-mmc@vger.kernel.org
17700 S:      Orphan
17701 F:      drivers/mmc/host/vub300.c
17702
17703 W1 DALLAS'S 1-WIRE BUS
17704 M:      Evgeniy Polyakov <zbr@ioremap.net>
17705 S:      Maintained
17706 F:      Documentation/devicetree/bindings/w1/
17707 F:      Documentation/w1/
17708 F:      drivers/w1/
17709 F:      include/linux/w1.h
17710
17711 W83791D HARDWARE MONITORING DRIVER
17712 M:      Marc Hulsman <m.hulsman@tudelft.nl>
17713 L:      linux-hwmon@vger.kernel.org
17714 S:      Maintained
17715 F:      Documentation/hwmon/w83791d.rst
17716 F:      drivers/hwmon/w83791d.c
17717
17718 W83793 HARDWARE MONITORING DRIVER
17719 M:      Rudolf Marek <r.marek@assembler.cz>
17720 L:      linux-hwmon@vger.kernel.org
17721 S:      Maintained
17722 F:      Documentation/hwmon/w83793.rst
17723 F:      drivers/hwmon/w83793.c
17724
17725 W83795 HARDWARE MONITORING DRIVER
17726 M:      Jean Delvare <jdelvare@suse.com>
17727 L:      linux-hwmon@vger.kernel.org
17728 S:      Maintained
17729 F:      drivers/hwmon/w83795.c
17730
17731 W83L51xD SD/MMC CARD INTERFACE DRIVER
17732 M:      Pierre Ossman <pierre@ossman.eu>
17733 S:      Maintained
17734 F:      drivers/mmc/host/wbsd.*
17735
17736 WACOM PROTOCOL 4 SERIAL TABLETS
17737 M:      Julian Squires <julian@cipht.net>
17738 M:      Hans de Goede <hdegoede@redhat.com>
17739 L:      linux-input@vger.kernel.org
17740 S:      Maintained
17741 F:      drivers/input/tablet/wacom_serial4.c
17742
17743 WATCHDOG DEVICE DRIVERS
17744 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
17745 M:      Guenter Roeck <linux@roeck-us.net>
17746 L:      linux-watchdog@vger.kernel.org
17747 W:      http://www.linux-watchdog.org/
17748 T:      git git://www.linux-watchdog.org/linux-watchdog.git
17749 S:      Maintained
17750 F:      Documentation/devicetree/bindings/watchdog/
17751 F:      Documentation/watchdog/
17752 F:      drivers/watchdog/
17753 F:      include/linux/watchdog.h
17754 F:      include/uapi/linux/watchdog.h
17755
17756 WHISKEYCOVE PMIC GPIO DRIVER
17757 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
17758 L:      linux-gpio@vger.kernel.org
17759 S:      Maintained
17760 F:      drivers/gpio/gpio-wcove.c
17761
17762 WHWAVE RTC DRIVER
17763 M:      Dianlong Li <long17.cool@163.com>
17764 L:      linux-rtc@vger.kernel.org
17765 S:      Maintained
17766 F:      drivers/rtc/rtc-sd3078.c
17767
17768 WIIMOTE HID DRIVER
17769 M:      David Herrmann <dh.herrmann@googlemail.com>
17770 L:      linux-input@vger.kernel.org
17771 S:      Maintained
17772 F:      drivers/hid/hid-wiimote*
17773
17774 WILOCITY WIL6210 WIRELESS DRIVER
17775 M:      Maya Erez <merez@codeaurora.org>
17776 L:      linux-wireless@vger.kernel.org
17777 L:      wil6210@qti.qualcomm.com
17778 S:      Supported
17779 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
17780 F:      drivers/net/wireless/ath/wil6210/
17781
17782 WIMAX STACK
17783 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
17784 M:      linux-wimax@intel.com
17785 L:      wimax@linuxwimax.org (subscribers-only)
17786 S:      Supported
17787 W:      http://linuxwimax.org
17788 F:      Documentation/admin-guide/wimax/wimax.rst
17789 F:      include/linux/wimax/debug.h
17790 F:      include/net/wimax.h
17791 F:      include/uapi/linux/wimax.h
17792 F:      net/wimax/
17793
17794 WINBOND CIR DRIVER
17795 M:      David Härdeman <david@hardeman.nu>
17796 S:      Maintained
17797 F:      drivers/media/rc/winbond-cir.c
17798
17799 RCMM REMOTE CONTROLS DECODER
17800 M:      Patrick Lerda <patrick9876@free.fr>
17801 S:      Maintained
17802 F:      drivers/media/rc/ir-rcmm-decoder.c
17803
17804 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
17805 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17806 L:      linux-watchdog@vger.kernel.org
17807 S:      Maintained
17808 F:      drivers/watchdog/ebc-c384_wdt.c
17809
17810 WINSYSTEMS WS16C48 GPIO DRIVER
17811 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17812 L:      linux-gpio@vger.kernel.org
17813 S:      Maintained
17814 F:      drivers/gpio/gpio-ws16c48.c
17815
17816 WISTRON LAPTOP BUTTON DRIVER
17817 M:      Miloslav Trmac <mitr@volny.cz>
17818 S:      Maintained
17819 F:      drivers/input/misc/wistron_btns.c
17820
17821 WL3501 WIRELESS PCMCIA CARD DRIVER
17822 L:      linux-wireless@vger.kernel.org
17823 S:      Odd fixes
17824 F:      drivers/net/wireless/wl3501*
17825
17826 WOLFSON MICROELECTRONICS DRIVERS
17827 L:      patches@opensource.cirrus.com
17828 T:      git https://github.com/CirrusLogic/linux-drivers.git
17829 W:      https://github.com/CirrusLogic/linux-drivers/wiki
17830 S:      Supported
17831 F:      Documentation/hwmon/wm83??.rst
17832 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
17833 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
17834 F:      Documentation/devicetree/bindings/mfd/arizona.txt
17835 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
17836 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
17837 F:      arch/arm/mach-s3c64xx/mach-crag6410*
17838 F:      drivers/clk/clk-wm83*.c
17839 F:      drivers/extcon/extcon-arizona.c
17840 F:      drivers/leds/leds-wm83*.c
17841 F:      drivers/gpio/gpio-*wm*.c
17842 F:      drivers/gpio/gpio-arizona.c
17843 F:      drivers/hwmon/wm83??-hwmon.c
17844 F:      drivers/input/misc/wm831x-on.c
17845 F:      drivers/input/touchscreen/wm831x-ts.c
17846 F:      drivers/input/touchscreen/wm97*.c
17847 F:      drivers/mfd/arizona*
17848 F:      drivers/mfd/wm*.c
17849 F:      drivers/mfd/cs47l24*
17850 F:      drivers/power/supply/wm83*.c
17851 F:      drivers/rtc/rtc-wm83*.c
17852 F:      drivers/regulator/wm8*.c
17853 F:      drivers/regulator/arizona*
17854 F:      drivers/video/backlight/wm83*_bl.c
17855 F:      drivers/watchdog/wm83*_wdt.c
17856 F:      include/linux/mfd/arizona/
17857 F:      include/linux/mfd/wm831x/
17858 F:      include/linux/mfd/wm8350/
17859 F:      include/linux/mfd/wm8400*
17860 F:      include/linux/regulator/arizona*
17861 F:      include/linux/wm97xx.h
17862 F:      include/sound/wm????.h
17863 F:      sound/soc/codecs/arizona.?
17864 F:      sound/soc/codecs/wm*
17865 F:      sound/soc/codecs/cs47l24*
17866
17867 WORKQUEUE
17868 M:      Tejun Heo <tj@kernel.org>
17869 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
17871 S:      Maintained
17872 F:      include/linux/workqueue.h
17873 F:      kernel/workqueue.c
17874 F:      Documentation/core-api/workqueue.rst
17875
17876 X-POWERS AXP288 PMIC DRIVERS
17877 M:      Hans de Goede <hdegoede@redhat.com>
17878 S:      Maintained
17879 N:      axp288
17880 F:      drivers/acpi/pmic/intel_pmic_xpower.c
17881
17882 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
17883 M:      Chen-Yu Tsai <wens@csie.org>
17884 L:      linux-kernel@vger.kernel.org
17885 S:      Maintained
17886 N:      axp[128]
17887
17888 X.25 NETWORK LAYER
17889 M:      Andrew Hendry <andrew.hendry@gmail.com>
17890 L:      linux-x25@vger.kernel.org
17891 S:      Odd Fixes
17892 F:      Documentation/networking/x25*
17893 F:      include/net/x25*
17894 F:      net/x25/
17895
17896 X86 ARCHITECTURE (32-BIT AND 64-BIT)
17897 M:      Thomas Gleixner <tglx@linutronix.de>
17898 M:      Ingo Molnar <mingo@redhat.com>
17899 M:      Borislav Petkov <bp@alien8.de>
17900 R:      "H. Peter Anvin" <hpa@zytor.com>
17901 M:      x86@kernel.org
17902 L:      linux-kernel@vger.kernel.org
17903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17904 S:      Maintained
17905 F:      Documentation/devicetree/bindings/x86/
17906 F:      Documentation/x86/
17907 F:      arch/x86/
17908
17909 X86 ENTRY CODE
17910 M:      Andy Lutomirski <luto@kernel.org>
17911 L:      linux-kernel@vger.kernel.org
17912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
17913 S:      Maintained
17914 F:      arch/x86/entry/
17915
17916 X86 MCE INFRASTRUCTURE
17917 M:      Tony Luck <tony.luck@intel.com>
17918 M:      Borislav Petkov <bp@alien8.de>
17919 L:      linux-edac@vger.kernel.org
17920 S:      Maintained
17921 F:      arch/x86/kernel/cpu/mce/*
17922
17923 X86 MICROCODE UPDATE SUPPORT
17924 M:      Borislav Petkov <bp@alien8.de>
17925 S:      Maintained
17926 F:      arch/x86/kernel/cpu/microcode/*
17927
17928 X86 MM
17929 M:      Dave Hansen <dave.hansen@linux.intel.com>
17930 M:      Andy Lutomirski <luto@kernel.org>
17931 M:      Peter Zijlstra <peterz@infradead.org>
17932 L:      linux-kernel@vger.kernel.org
17933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
17934 S:      Maintained
17935 F:      arch/x86/mm/
17936
17937 X86 PLATFORM DRIVERS
17938 M:      Darren Hart <dvhart@infradead.org>
17939 M:      Andy Shevchenko <andy@infradead.org>
17940 L:      platform-driver-x86@vger.kernel.org
17941 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
17942 S:      Odd Fixes
17943 F:      drivers/platform/x86/
17944 F:      drivers/platform/olpc/
17945
17946 X86 PLATFORM DRIVERS - ARCH
17947 R:      Darren Hart <dvhart@infradead.org>
17948 R:      Andy Shevchenko <andy@infradead.org>
17949 L:      platform-driver-x86@vger.kernel.org
17950 L:      x86@kernel.org
17951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17952 S:      Maintained
17953 F:      arch/x86/platform
17954
17955 X86 VDSO
17956 M:      Andy Lutomirski <luto@kernel.org>
17957 L:      linux-kernel@vger.kernel.org
17958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
17959 S:      Maintained
17960 F:      arch/x86/entry/vdso/
17961
17962 XARRAY
17963 M:      Matthew Wilcox <willy@infradead.org>
17964 L:      linux-fsdevel@vger.kernel.org
17965 S:      Supported
17966 F:      Documentation/core-api/xarray.rst
17967 F:      lib/idr.c
17968 F:      lib/xarray.c
17969 F:      include/linux/idr.h
17970 F:      include/linux/xarray.h
17971 F:      tools/testing/radix-tree
17972
17973 XBOX DVD IR REMOTE
17974 M:      Benjamin Valentin <benpicco@googlemail.com>
17975 S:      Maintained
17976 F:      drivers/media/rc/xbox_remote.c
17977 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
17978
17979 XC2028/3028 TUNER DRIVER
17980 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17981 L:      linux-media@vger.kernel.org
17982 W:      https://linuxtv.org
17983 T:      git git://linuxtv.org/media_tree.git
17984 S:      Maintained
17985 F:      drivers/media/tuners/tuner-xc2028.*
17986
17987 XDP (eXpress Data Path)
17988 M:      Alexei Starovoitov <ast@kernel.org>
17989 M:      Daniel Borkmann <daniel@iogearbox.net>
17990 M:      David S. Miller <davem@davemloft.net>
17991 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
17992 M:      Jesper Dangaard Brouer <hawk@kernel.org>
17993 M:      John Fastabend <john.fastabend@gmail.com>
17994 L:      netdev@vger.kernel.org
17995 L:      bpf@vger.kernel.org
17996 S:      Supported
17997 F:      net/core/xdp.c
17998 F:      include/net/xdp.h
17999 F:      kernel/bpf/devmap.c
18000 F:      kernel/bpf/cpumap.c
18001 F:      include/trace/events/xdp.h
18002 K:      xdp
18003 N:      xdp
18004
18005 XDP SOCKETS (AF_XDP)
18006 M:      Björn Töpel <bjorn.topel@intel.com>
18007 M:      Magnus Karlsson <magnus.karlsson@intel.com>
18008 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
18009 L:      netdev@vger.kernel.org
18010 L:      bpf@vger.kernel.org
18011 S:      Maintained
18012 F:      kernel/bpf/xskmap.c
18013 F:      net/xdp/
18014
18015 XEN BLOCK SUBSYSTEM
18016 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18017 M:      Roger Pau Monné <roger.pau@citrix.com>
18018 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18019 S:      Supported
18020 F:      drivers/block/xen-blkback/*
18021 F:      drivers/block/xen*
18022
18023 XEN HYPERVISOR ARM
18024 M:      Stefano Stabellini <sstabellini@kernel.org>
18025 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18026 S:      Maintained
18027 F:      arch/arm/xen/
18028 F:      arch/arm/include/asm/xen/
18029
18030 XEN HYPERVISOR ARM64
18031 M:      Stefano Stabellini <sstabellini@kernel.org>
18032 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18033 S:      Maintained
18034 F:      arch/arm64/xen/
18035 F:      arch/arm64/include/asm/xen/
18036
18037 XEN HYPERVISOR INTERFACE
18038 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
18039 M:      Juergen Gross <jgross@suse.com>
18040 R:      Stefano Stabellini <sstabellini@kernel.org>
18041 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18043 S:      Supported
18044 F:      arch/x86/xen/
18045 F:      arch/x86/platform/pvh/
18046 F:      drivers/*/xen-*front.c
18047 F:      drivers/xen/
18048 F:      arch/x86/include/asm/xen/
18049 F:      arch/x86/include/asm/pvclock-abi.h
18050 F:      include/xen/
18051 F:      include/uapi/xen/
18052 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18053 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18054
18055 XEN NETWORK BACKEND DRIVER
18056 M:      Wei Liu <wei.liu@kernel.org>
18057 M:      Paul Durrant <paul@xen.org>
18058 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18059 L:      netdev@vger.kernel.org
18060 S:      Supported
18061 F:      drivers/net/xen-netback/*
18062
18063 XEN PCI SUBSYSTEM
18064 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18065 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18066 S:      Supported
18067 F:      arch/x86/pci/*xen*
18068 F:      drivers/pci/*xen*
18069
18070 XEN PVSCSI DRIVERS
18071 M:      Juergen Gross <jgross@suse.com>
18072 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18073 L:      linux-scsi@vger.kernel.org
18074 S:      Supported
18075 F:      drivers/scsi/xen-scsifront.c
18076 F:      drivers/xen/xen-scsiback.c
18077 F:      include/xen/interface/io/vscsiif.h
18078
18079 XEN SWIOTLB SUBSYSTEM
18080 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18081 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18082 L:      iommu@lists.linux-foundation.org
18083 S:      Supported
18084 F:      arch/x86/xen/*swiotlb*
18085 F:      drivers/xen/*swiotlb*
18086
18087 XEN SOUND FRONTEND DRIVER
18088 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18089 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18090 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18091 S:      Supported
18092 F:      sound/xen/*
18093
18094 XFS FILESYSTEM
18095 M:      Darrick J. Wong <darrick.wong@oracle.com>
18096 M:      linux-xfs@vger.kernel.org
18097 L:      linux-xfs@vger.kernel.org
18098 W:      http://xfs.org/
18099 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18100 S:      Supported
18101 F:      Documentation/admin-guide/xfs.rst
18102 F:      Documentation/ABI/testing/sysfs-fs-xfs
18103 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
18104 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
18105 F:      fs/xfs/
18106 F:      include/uapi/linux/dqblk_xfs.h
18107 F:      include/uapi/linux/fsmap.h
18108
18109 XILINX AXI ETHERNET DRIVER
18110 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18111 S:      Maintained
18112 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18113
18114 XILINX UARTLITE SERIAL DRIVER
18115 M:      Peter Korsgaard <jacmet@sunsite.dk>
18116 L:      linux-serial@vger.kernel.org
18117 S:      Maintained
18118 F:      drivers/tty/serial/uartlite.c
18119
18120 XILINX VIDEO IP CORES
18121 M:      Hyun Kwon <hyun.kwon@xilinx.com>
18122 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18123 L:      linux-media@vger.kernel.org
18124 T:      git git://linuxtv.org/media_tree.git
18125 S:      Supported
18126 F:      Documentation/devicetree/bindings/media/xilinx/
18127 F:      drivers/media/platform/xilinx/
18128 F:      include/uapi/linux/xilinx-v4l2-controls.h
18129
18130 XILINX SD-FEC IP CORES
18131 M:      Derek Kiernan <derek.kiernan@xilinx.com>
18132 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
18133 S:      Maintained
18134 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18135 F:      Documentation/misc-devices/xilinx_sdfec.rst
18136 F:      drivers/misc/xilinx_sdfec.c
18137 F:      drivers/misc/Kconfig
18138 F:      drivers/misc/Makefile
18139 F:      include/uapi/misc/xilinx_sdfec.h
18140
18141 XILLYBUS DRIVER
18142 M:      Eli Billauer <eli.billauer@gmail.com>
18143 L:      linux-kernel@vger.kernel.org
18144 S:      Supported
18145 F:      drivers/char/xillybus/
18146
18147 XLP9XX I2C DRIVER
18148 M:      George Cherian <george.cherian@cavium.com>
18149 M:      Jan Glauber <jglauber@cavium.com>
18150 L:      linux-i2c@vger.kernel.org
18151 W:      http://www.cavium.com
18152 S:      Supported
18153 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18154 F:      drivers/i2c/busses/i2c-xlp9xx.c
18155
18156 XRA1403 GPIO EXPANDER
18157 M:      Nandor Han <nandor.han@ge.com>
18158 M:      Semi Malinen <semi.malinen@ge.com>
18159 L:      linux-gpio@vger.kernel.org
18160 S:      Maintained
18161 F:      drivers/gpio/gpio-xra1403.c
18162 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18163
18164 XTENSA XTFPGA PLATFORM SUPPORT
18165 M:      Max Filippov <jcmvbkbc@gmail.com>
18166 L:      linux-xtensa@linux-xtensa.org
18167 S:      Maintained
18168 F:      drivers/spi/spi-xtensa-xtfpga.c
18169 F:      sound/soc/xtensa/xtfpga-i2s.c
18170
18171 YAM DRIVER FOR AX.25
18172 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
18173 L:      linux-hams@vger.kernel.org
18174 S:      Maintained
18175 F:      drivers/net/hamradio/yam*
18176 F:      include/linux/yam.h
18177
18178 YAMA SECURITY MODULE
18179 M:      Kees Cook <keescook@chromium.org>
18180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18181 S:      Supported
18182 F:      security/yama/
18183 F:      Documentation/admin-guide/LSM/Yama.rst
18184
18185 YEALINK PHONE DRIVER
18186 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
18187 L:      usbb2k-api-dev@nongnu.org
18188 S:      Maintained
18189 F:      Documentation/input/devices/yealink.rst
18190 F:      drivers/input/misc/yealink.*
18191
18192 Z8530 DRIVER FOR AX.25
18193 M:      Joerg Reuter <jreuter@yaina.de>
18194 W:      http://yaina.de/jreuter/
18195 W:      http://www.qsl.net/dl1bke/
18196 L:      linux-hams@vger.kernel.org
18197 S:      Maintained
18198 F:      Documentation/networking/z8530drv.txt
18199 F:      drivers/net/hamradio/*scc.c
18200 F:      drivers/net/hamradio/z8530.h
18201
18202 ZBUD COMPRESSED PAGE ALLOCATOR
18203 M:      Seth Jennings <sjenning@redhat.com>
18204 M:      Dan Streetman <ddstreet@ieee.org>
18205 L:      linux-mm@kvack.org
18206 S:      Maintained
18207 F:      mm/zbud.c
18208 F:      include/linux/zbud.h
18209
18210 ZD1211RW WIRELESS DRIVER
18211 M:      Daniel Drake <dsd@gentoo.org>
18212 M:      Ulrich Kunitz <kune@deine-taler.de>
18213 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18214 L:      linux-wireless@vger.kernel.org
18215 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18216 S:      Maintained
18217 F:      drivers/net/wireless/zydas/zd1211rw/
18218
18219 ZD1301 MEDIA DRIVER
18220 M:      Antti Palosaari <crope@iki.fi>
18221 L:      linux-media@vger.kernel.org
18222 W:      https://linuxtv.org/
18223 W:      http://palosaari.fi/linux/
18224 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18225 S:      Maintained
18226 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18227
18228 ZD1301_DEMOD MEDIA DRIVER
18229 M:      Antti Palosaari <crope@iki.fi>
18230 L:      linux-media@vger.kernel.org
18231 W:      https://linuxtv.org/
18232 W:      http://palosaari.fi/linux/
18233 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18234 S:      Maintained
18235 F:      drivers/media/dvb-frontends/zd1301_demod*
18236
18237 ZHAOXIN PROCESSOR SUPPORT
18238 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18239 L:      linux-kernel@vger.kernel.org
18240 S:      Maintained
18241 F:      arch/x86/kernel/cpu/zhaoxin.c
18242
18243 ZPOOL COMPRESSED PAGE STORAGE API
18244 M:      Dan Streetman <ddstreet@ieee.org>
18245 L:      linux-mm@kvack.org
18246 S:      Maintained
18247 F:      mm/zpool.c
18248 F:      include/linux/zpool.h
18249
18250 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18251 M:      Minchan Kim <minchan@kernel.org>
18252 M:      Nitin Gupta <ngupta@vflare.org>
18253 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18254 L:      linux-kernel@vger.kernel.org
18255 S:      Maintained
18256 F:      drivers/block/zram/
18257 F:      Documentation/admin-guide/blockdev/zram.rst
18258
18259 ZS DECSTATION Z85C30 SERIAL DRIVER
18260 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18261 S:      Maintained
18262 F:      drivers/tty/serial/zs.*
18263
18264 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18265 M:      Minchan Kim <minchan@kernel.org>
18266 M:      Nitin Gupta <ngupta@vflare.org>
18267 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18268 L:      linux-mm@kvack.org
18269 S:      Maintained
18270 F:      mm/zsmalloc.c
18271 F:      include/linux/zsmalloc.h
18272 F:      Documentation/vm/zsmalloc.rst
18273
18274 ZSWAP COMPRESSED SWAP CACHING
18275 M:      Seth Jennings <sjenning@redhat.com>
18276 M:      Dan Streetman <ddstreet@ieee.org>
18277 M:      Vitaly Wool <vitaly.wool@konsulko.com>
18278 L:      linux-mm@kvack.org
18279 S:      Maintained
18280 F:      mm/zswap.c
18281
18282 THE REST
18283 M:      Linus Torvalds <torvalds@linux-foundation.org>
18284 L:      linux-kernel@vger.kernel.org
18285 Q:      http://patchwork.kernel.org/project/LKML/list/
18286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18287 S:      Buried alive in reporters
18288 F:      *
18289 F:      */